2 May 2017

Data transformation

Introduction

  • Preparing data is the most time consuming part of of data analysis

dplyr in a nutshell

  • dplyr is a tool box for working with data in tibbles/data frames
  • The most import data manipulation operations are covered
    • Selection and manipulation of observation, variables and values
    • Summarizing
    • Grouping
    • Joining and intersecting tibbles
  • In a workflow typically follows reshaping operations from tidyr
  • Fast, in particular for in-memory data by writing key pieces in C++ (using Rcpp)
  • Standard interface to work with data in a data.frame, a data.table or database.

Learning objectives

dplyr in a nutshell

  • Learn the basic vocabulary of dplyr
  • Exercise commands

dplyr

Introduction: Cheat sheets

dplyr

Introduction: Cheat sheets (cont.)

Installation

  • dplyr is included in the tidyverse package
  • biomaRt is part of bioconductor (check)
install.packages("dplyr")
# OR
install.packages("tidyverse")

source("https://bioconductor.org/biocLite.R")
biocLite("biomaRt")

Retrieving sample data

Gene from chromosome 21 from biomaRt

# Load the library
library(biomaRt)
gene_mart <- useMart(biomart="ENSEMBL_MART_ENSEMBL", host="www.ensembl.org")
gene_set <- useDataset(gene_mart , dataset="hsapiens_gene_ensembl")

gene_by_exon <- getBM(
  mart = gene_set,
  attributes = c(
    "ensembl_gene_id",
    "ensembl_transcript_id",
    "ensembl_exon_id",
    "chromosome_name",
    "start_position",
    "end_position",
    "hgnc_symbol",
    "hgnc_id",
    "strand",
    "gene_biotype"
    ), 
  filter = "chromosome_name",
  value = "21"
  )




#Biomart

as_tibble()

Important with large tables

as_tibble(gene_by_exon)
# A tibble: 13,978 × 10
   ensembl_gene_id ensembl_transcript_id ensembl_exon_id chromosome_name
             <chr>                 <chr>           <chr>           <int>
1  ENSG00000264452       ENST00000583496 ENSE00002709519              21
2  ENSG00000274046       ENST00000617336 ENSE00003722332              21
3  ENSG00000278775       ENST00000619112 ENSE00003751812              21
4  ENSG00000276873       ENST00000616808 ENSE00003730872              21
5  ENSG00000236545       ENST00000458654 ENSE00001729372              21
6  ENSG00000236545       ENST00000458654 ENSE00001673061              21
7  ENSG00000160255       ENST00000302347 ENSE00003791070              21
8  ENSG00000160255       ENST00000302347 ENSE00003688153              21
9  ENSG00000160255       ENST00000302347 ENSE00003784896              21
10 ENSG00000160255       ENST00000302347 ENSE00003569344              21
# ... with 13,968 more rows, and 6 more variables: start_position <int>,
#   end_position <int>, hgnc_symbol <chr>, hgnc_id <chr>, strand <int>,
#   gene_biotype <chr>

glimpse()

Inspect data frames / tibbles

  • Use glimpse() to show some values and types per column.
  • The Environment tab in RStudio tab does it too
glimpse(gene_by_exon)
Observations: 13,978
Variables: 10
$ ensembl_gene_id       <chr> "ENSG00000264452", "ENSG00000274046", "E...
$ ensembl_transcript_id <chr> "ENST00000583496", "ENST00000617336", "E...
$ ensembl_exon_id       <chr> "ENSE00002709519", "ENSE00003722332", "E...
$ chromosome_name       <int> 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, ...
$ start_position        <int> 44439035, 7092616, 8433085, 39171462, 41...
$ end_position          <int> 44439110, 7092716, 8433174, 39171560, 41...
$ hgnc_symbol           <chr> "", "", "", "", "", "", "ITGB2", "ITGB2"...
$ hgnc_id               <chr> "", "", "", "", "", "", "HGNC:6155", "HG...
$ strand                <int> 1, 1, 1, -1, 1, 1, -1, -1, -1, -1, -1, -...
$ gene_biotype          <chr> "snoRNA", "misc_RNA", "misc_RNA", "misc_...

Pipes in R

magrittr

filter()

inspect subsets of data

  • Take a look at the amyloid precursor protein gene APP
  • Note the rendering of the data.frame, not a tibble.
gene_by_exon %>%
  filter(hgnc_symbol == "APP")
    ensembl_gene_id ensembl_transcript_id ensembl_exon_id chromosome_name
1   ENSG00000142192       ENST00000346798 ENSE00001909719              21
2   ENSG00000142192       ENST00000346798 ENSE00003537029              21
3   ENSG00000142192       ENST00000346798 ENSE00003491735              21
4   ENSG00000142192       ENST00000346798 ENSE00003586713              21
5   ENSG00000142192       ENST00000346798 ENSE00003595661              21
6   ENSG00000142192       ENST00000346798 ENSE00003527715              21
7   ENSG00000142192       ENST00000346798 ENSE00003691723              21
8   ENSG00000142192       ENST00000346798 ENSE00001309322              21
9   ENSG00000142192       ENST00000346798 ENSE00001017338              21
10  ENSG00000142192       ENST00000346798 ENSE00001608815              21
11  ENSG00000142192       ENST00000346798 ENSE00001017350              21
12  ENSG00000142192       ENST00000346798 ENSE00001299537              21
13  ENSG00000142192       ENST00000346798 ENSE00001299406              21
14  ENSG00000142192       ENST00000346798 ENSE00001299617              21
15  ENSG00000142192       ENST00000346798 ENSE00001324614              21
16  ENSG00000142192       ENST00000346798 ENSE00001318724              21
17  ENSG00000142192       ENST00000346798 ENSE00003548276              21
18  ENSG00000142192       ENST00000346798 ENSE00001725664              21
19  ENSG00000142192       ENST00000354192 ENSE00003491735              21
20  ENSG00000142192       ENST00000354192 ENSE00003586713              21
21  ENSG00000142192       ENST00000354192 ENSE00003595661              21
22  ENSG00000142192       ENST00000354192 ENSE00003527715              21
23  ENSG00000142192       ENST00000354192 ENSE00001017338              21
24  ENSG00000142192       ENST00000354192 ENSE00001608815              21
25  ENSG00000142192       ENST00000354192 ENSE00001017350              21
26  ENSG00000142192       ENST00000354192 ENSE00001299537              21
27  ENSG00000142192       ENST00000354192 ENSE00001299406              21
28  ENSG00000142192       ENST00000354192 ENSE00001299617              21
29  ENSG00000142192       ENST00000354192 ENSE00001324614              21
30  ENSG00000142192       ENST00000354192 ENSE00001318724              21
31  ENSG00000142192       ENST00000354192 ENSE00003548276              21
32  ENSG00000142192       ENST00000354192 ENSE00001725664              21
33  ENSG00000142192       ENST00000354192 ENSE00001704412              21
34  ENSG00000142192       ENST00000348990 ENSE00003537029              21
35  ENSG00000142192       ENST00000348990 ENSE00003491735              21
36  ENSG00000142192       ENST00000348990 ENSE00003586713              21
37  ENSG00000142192       ENST00000348990 ENSE00003595661              21
38  ENSG00000142192       ENST00000348990 ENSE00003527715              21
39  ENSG00000142192       ENST00000348990 ENSE00001017338              21
40  ENSG00000142192       ENST00000348990 ENSE00001608815              21
41  ENSG00000142192       ENST00000348990 ENSE00001017350              21
42  ENSG00000142192       ENST00000348990 ENSE00001299537              21
43  ENSG00000142192       ENST00000348990 ENSE00001299406              21
44  ENSG00000142192       ENST00000348990 ENSE00001299617              21
45  ENSG00000142192       ENST00000348990 ENSE00001324614              21
46  ENSG00000142192       ENST00000348990 ENSE00001318724              21
47  ENSG00000142192       ENST00000348990 ENSE00003548276              21
48  ENSG00000142192       ENST00000348990 ENSE00001725664              21
49  ENSG00000142192       ENST00000348990 ENSE00001901307              21
50  ENSG00000142192       ENST00000357903 ENSE00003537029              21
51  ENSG00000142192       ENST00000357903 ENSE00003491735              21
52  ENSG00000142192       ENST00000357903 ENSE00003586713              21
53  ENSG00000142192       ENST00000357903 ENSE00003595661              21
54  ENSG00000142192       ENST00000357903 ENSE00003527715              21
55  ENSG00000142192       ENST00000357903 ENSE00003691723              21
56  ENSG00000142192       ENST00000357903 ENSE00001017338              21
57  ENSG00000142192       ENST00000357903 ENSE00001608815              21
58  ENSG00000142192       ENST00000357903 ENSE00001017350              21
59  ENSG00000142192       ENST00000357903 ENSE00001299537              21
60  ENSG00000142192       ENST00000357903 ENSE00001299406              21
61  ENSG00000142192       ENST00000357903 ENSE00001299617              21
62  ENSG00000142192       ENST00000357903 ENSE00001324614              21
63  ENSG00000142192       ENST00000357903 ENSE00001318724              21
64  ENSG00000142192       ENST00000357903 ENSE00003548276              21
65  ENSG00000142192       ENST00000357903 ENSE00001725664              21
66  ENSG00000142192       ENST00000357903 ENSE00001895535              21
67  ENSG00000142192       ENST00000440126 ENSE00003537029              21
68  ENSG00000142192       ENST00000440126 ENSE00003491735              21
69  ENSG00000142192       ENST00000440126 ENSE00003586713              21
70  ENSG00000142192       ENST00000440126 ENSE00003595661              21
71  ENSG00000142192       ENST00000440126 ENSE00003527715              21
72  ENSG00000142192       ENST00000440126 ENSE00003691723              21
73  ENSG00000142192       ENST00000440126 ENSE00001017338              21
74  ENSG00000142192       ENST00000440126 ENSE00001608815              21
75  ENSG00000142192       ENST00000440126 ENSE00001017350              21
76  ENSG00000142192       ENST00000440126 ENSE00001299537              21
77  ENSG00000142192       ENST00000440126 ENSE00001299406              21
78  ENSG00000142192       ENST00000440126 ENSE00001299617              21
79  ENSG00000142192       ENST00000440126 ENSE00001324614              21
80  ENSG00000142192       ENST00000440126 ENSE00001318724              21
81  ENSG00000142192       ENST00000440126 ENSE00003548276              21
82  ENSG00000142192       ENST00000440126 ENSE00001790512              21
83  ENSG00000142192       ENST00000440126 ENSE00002224094              21
84  ENSG00000142192       ENST00000439274 ENSE00001909719              21
85  ENSG00000142192       ENST00000439274 ENSE00003491735              21
86  ENSG00000142192       ENST00000439274 ENSE00003586713              21
87  ENSG00000142192       ENST00000439274 ENSE00003595661              21
88  ENSG00000142192       ENST00000439274 ENSE00003527715              21
89  ENSG00000142192       ENST00000439274 ENSE00003691723              21
90  ENSG00000142192       ENST00000439274 ENSE00001309322              21
91  ENSG00000142192       ENST00000439274 ENSE00001017338              21
92  ENSG00000142192       ENST00000439274 ENSE00001608815              21
93  ENSG00000142192       ENST00000439274 ENSE00001017350              21
94  ENSG00000142192       ENST00000439274 ENSE00001299537              21
95  ENSG00000142192       ENST00000439274 ENSE00001299406              21
96  ENSG00000142192       ENST00000439274 ENSE00001299617              21
97  ENSG00000142192       ENST00000439274 ENSE00001324614              21
98  ENSG00000142192       ENST00000439274 ENSE00001318724              21
99  ENSG00000142192       ENST00000439274 ENSE00003548276              21
100 ENSG00000142192       ENST00000439274 ENSE00002105951              21
101 ENSG00000142192       ENST00000464867 ENSE00001948125              21
102 ENSG00000142192       ENST00000464867 ENSE00003549951              21
103 ENSG00000142192       ENST00000464867 ENSE00001854652              21
104 ENSG00000142192       ENST00000358918 ENSE00003537029              21
105 ENSG00000142192       ENST00000358918 ENSE00003491735              21
106 ENSG00000142192       ENST00000358918 ENSE00003586713              21
107 ENSG00000142192       ENST00000358918 ENSE00003595661              21
108 ENSG00000142192       ENST00000358918 ENSE00003527715              21
109 ENSG00000142192       ENST00000358918 ENSE00003691723              21
110 ENSG00000142192       ENST00000358918 ENSE00001309322              21
111 ENSG00000142192       ENST00000358918 ENSE00001017338              21
112 ENSG00000142192       ENST00000358918 ENSE00001608815              21
113 ENSG00000142192       ENST00000358918 ENSE00001017350              21
114 ENSG00000142192       ENST00000358918 ENSE00001299537              21
115 ENSG00000142192       ENST00000358918 ENSE00001299406              21
116 ENSG00000142192       ENST00000358918 ENSE00001299617              21
117 ENSG00000142192       ENST00000358918 ENSE00001318724              21
118 ENSG00000142192       ENST00000358918 ENSE00003548276              21
119 ENSG00000142192       ENST00000358918 ENSE00001404309              21
120 ENSG00000142192       ENST00000358918 ENSE00002281438              21
121 ENSG00000142192       ENST00000448850 ENSE00003586713              21
122 ENSG00000142192       ENST00000448850 ENSE00003595661              21
123 ENSG00000142192       ENST00000448850 ENSE00003527715              21
124 ENSG00000142192       ENST00000448850 ENSE00003691723              21
125 ENSG00000142192       ENST00000448850 ENSE00001017338              21
126 ENSG00000142192       ENST00000448850 ENSE00001608815              21
127 ENSG00000142192       ENST00000448850 ENSE00001017350              21
128 ENSG00000142192       ENST00000448850 ENSE00001299537              21
129 ENSG00000142192       ENST00000448850 ENSE00001299406              21
130 ENSG00000142192       ENST00000448850 ENSE00001649492              21
131 ENSG00000142192       ENST00000448850 ENSE00001713040              21
132 ENSG00000142192       ENST00000415997 ENSE00003527715              21
133 ENSG00000142192       ENST00000415997 ENSE00001309322              21
134 ENSG00000142192       ENST00000415997 ENSE00001017338              21
135 ENSG00000142192       ENST00000415997 ENSE00001608815              21
136 ENSG00000142192       ENST00000415997 ENSE00001736500              21
137 ENSG00000142192       ENST00000415997 ENSE00001622476              21
138 ENSG00000142192       ENST00000491395 ENSE00001913538              21
139 ENSG00000142192       ENST00000491395 ENSE00003576750              21
140 ENSG00000142192       ENST00000491395 ENSE00003592035              21
141 ENSG00000142192       ENST00000491395 ENSE00001920764              21
142 ENSG00000142192       ENST00000474136 ENSE00003576750              21
143 ENSG00000142192       ENST00000474136 ENSE00001898787              21
144 ENSG00000142192       ENST00000474136 ENSE00003509738              21
145 ENSG00000142192       ENST00000474136 ENSE00003583288              21
146 ENSG00000142192       ENST00000474136 ENSE00003531840              21
147 ENSG00000142192       ENST00000474136 ENSE00003525570              21
148 ENSG00000142192       ENST00000474136 ENSE00001882581              21
149 ENSG00000142192       ENST00000463070 ENSE00003525570              21
150 ENSG00000142192       ENST00000463070 ENSE00001952161              21
151 ENSG00000142192       ENST00000463070 ENSE00001842592              21
152 ENSG00000142192       ENST00000548570 ENSE00003531840              21
153 ENSG00000142192       ENST00000548570 ENSE00002337095              21
154 ENSG00000142192       ENST00000548570 ENSE00002364109              21
155 ENSG00000142192       ENST00000462267 ENSE00001855859              21
156 ENSG00000142192       ENST00000462267 ENSE00001833309              21
157 ENSG00000142192       ENST00000466453 ENSE00001850860              21
158 ENSG00000142192       ENST00000466453 ENSE00001851707              21
159 ENSG00000142192       ENST00000359726 ENSE00003491735              21
160 ENSG00000142192       ENST00000359726 ENSE00003586713              21
161 ENSG00000142192       ENST00000359726 ENSE00003595661              21
162 ENSG00000142192       ENST00000359726 ENSE00003527715              21
163 ENSG00000142192       ENST00000359726 ENSE00001017338              21
164 ENSG00000142192       ENST00000359726 ENSE00001608815              21
165 ENSG00000142192       ENST00000359726 ENSE00001017350              21
166 ENSG00000142192       ENST00000359726 ENSE00001299537              21
167 ENSG00000142192       ENST00000359726 ENSE00001299406              21
168 ENSG00000142192       ENST00000359726 ENSE00001299617              21
169 ENSG00000142192       ENST00000359726 ENSE00001324614              21
170 ENSG00000142192       ENST00000359726 ENSE00001318724              21
171 ENSG00000142192       ENST00000359726 ENSE00003548276              21
172 ENSG00000142192       ENST00000359726 ENSE00001797859              21
173 ENSG00000142192       ENST00000359726 ENSE00003475190              21
174 ENSG00000142192       ENST00000359726 ENSE00001324453              21
    start_position end_position hgnc_symbol  hgnc_id strand   gene_biotype
1         25880550     26171128         APP HGNC:620     -1 protein_coding
2         25880550     26171128         APP HGNC:620     -1 protein_coding
3         25880550     26171128         APP HGNC:620     -1 protein_coding
4         25880550     26171128         APP HGNC:620     -1 protein_coding
5         25880550     26171128         APP HGNC:620     -1 protein_coding
6         25880550     26171128         APP HGNC:620     -1 protein_coding
7         25880550     26171128         APP HGNC:620     -1 protein_coding
8         25880550     26171128         APP HGNC:620     -1 protein_coding
9         25880550     26171128         APP HGNC:620     -1 protein_coding
10        25880550     26171128         APP HGNC:620     -1 protein_coding
11        25880550     26171128         APP HGNC:620     -1 protein_coding
12        25880550     26171128         APP HGNC:620     -1 protein_coding
13        25880550     26171128         APP HGNC:620     -1 protein_coding
14        25880550     26171128         APP HGNC:620     -1 protein_coding
15        25880550     26171128         APP HGNC:620     -1 protein_coding
16        25880550     26171128         APP HGNC:620     -1 protein_coding
17        25880550     26171128         APP HGNC:620     -1 protein_coding
18        25880550     26171128         APP HGNC:620     -1 protein_coding
19        25880550     26171128         APP HGNC:620     -1 protein_coding
20        25880550     26171128         APP HGNC:620     -1 protein_coding
21        25880550     26171128         APP HGNC:620     -1 protein_coding
22        25880550     26171128         APP HGNC:620     -1 protein_coding
23        25880550     26171128         APP HGNC:620     -1 protein_coding
24        25880550     26171128         APP HGNC:620     -1 protein_coding
25        25880550     26171128         APP HGNC:620     -1 protein_coding
26        25880550     26171128         APP HGNC:620     -1 protein_coding
27        25880550     26171128         APP HGNC:620     -1 protein_coding
28        25880550     26171128         APP HGNC:620     -1 protein_coding
29        25880550     26171128         APP HGNC:620     -1 protein_coding
30        25880550     26171128         APP HGNC:620     -1 protein_coding
31        25880550     26171128         APP HGNC:620     -1 protein_coding
32        25880550     26171128         APP HGNC:620     -1 protein_coding
33        25880550     26171128         APP HGNC:620     -1 protein_coding
34        25880550     26171128         APP HGNC:620     -1 protein_coding
35        25880550     26171128         APP HGNC:620     -1 protein_coding
36        25880550     26171128         APP HGNC:620     -1 protein_coding
37        25880550     26171128         APP HGNC:620     -1 protein_coding
38        25880550     26171128         APP HGNC:620     -1 protein_coding
39        25880550     26171128         APP HGNC:620     -1 protein_coding
40        25880550     26171128         APP HGNC:620     -1 protein_coding
41        25880550     26171128         APP HGNC:620     -1 protein_coding
42        25880550     26171128         APP HGNC:620     -1 protein_coding
43        25880550     26171128         APP HGNC:620     -1 protein_coding
44        25880550     26171128         APP HGNC:620     -1 protein_coding
45        25880550     26171128         APP HGNC:620     -1 protein_coding
46        25880550     26171128         APP HGNC:620     -1 protein_coding
47        25880550     26171128         APP HGNC:620     -1 protein_coding
48        25880550     26171128         APP HGNC:620     -1 protein_coding
49        25880550     26171128         APP HGNC:620     -1 protein_coding
50        25880550     26171128         APP HGNC:620     -1 protein_coding
51        25880550     26171128         APP HGNC:620     -1 protein_coding
52        25880550     26171128         APP HGNC:620     -1 protein_coding
53        25880550     26171128         APP HGNC:620     -1 protein_coding
54        25880550     26171128         APP HGNC:620     -1 protein_coding
55        25880550     26171128         APP HGNC:620     -1 protein_coding
56        25880550     26171128         APP HGNC:620     -1 protein_coding
57        25880550     26171128         APP HGNC:620     -1 protein_coding
58        25880550     26171128         APP HGNC:620     -1 protein_coding
59        25880550     26171128         APP HGNC:620     -1 protein_coding
60        25880550     26171128         APP HGNC:620     -1 protein_coding
61        25880550     26171128         APP HGNC:620     -1 protein_coding
62        25880550     26171128         APP HGNC:620     -1 protein_coding
63        25880550     26171128         APP HGNC:620     -1 protein_coding
64        25880550     26171128         APP HGNC:620     -1 protein_coding
65        25880550     26171128         APP HGNC:620     -1 protein_coding
66        25880550     26171128         APP HGNC:620     -1 protein_coding
67        25880550     26171128         APP HGNC:620     -1 protein_coding
68        25880550     26171128         APP HGNC:620     -1 protein_coding
69        25880550     26171128         APP HGNC:620     -1 protein_coding
70        25880550     26171128         APP HGNC:620     -1 protein_coding
71        25880550     26171128         APP HGNC:620     -1 protein_coding
72        25880550     26171128         APP HGNC:620     -1 protein_coding
73        25880550     26171128         APP HGNC:620     -1 protein_coding
74        25880550     26171128         APP HGNC:620     -1 protein_coding
75        25880550     26171128         APP HGNC:620     -1 protein_coding
76        25880550     26171128         APP HGNC:620     -1 protein_coding
77        25880550     26171128         APP HGNC:620     -1 protein_coding
78        25880550     26171128         APP HGNC:620     -1 protein_coding
79        25880550     26171128         APP HGNC:620     -1 protein_coding
80        25880550     26171128         APP HGNC:620     -1 protein_coding
81        25880550     26171128         APP HGNC:620     -1 protein_coding
82        25880550     26171128         APP HGNC:620     -1 protein_coding
83        25880550     26171128         APP HGNC:620     -1 protein_coding
84        25880550     26171128         APP HGNC:620     -1 protein_coding
85        25880550     26171128         APP HGNC:620     -1 protein_coding
86        25880550     26171128         APP HGNC:620     -1 protein_coding
87        25880550     26171128         APP HGNC:620     -1 protein_coding
88        25880550     26171128         APP HGNC:620     -1 protein_coding
89        25880550     26171128         APP HGNC:620     -1 protein_coding
90        25880550     26171128         APP HGNC:620     -1 protein_coding
91        25880550     26171128         APP HGNC:620     -1 protein_coding
92        25880550     26171128         APP HGNC:620     -1 protein_coding
93        25880550     26171128         APP HGNC:620     -1 protein_coding
94        25880550     26171128         APP HGNC:620     -1 protein_coding
95        25880550     26171128         APP HGNC:620     -1 protein_coding
96        25880550     26171128         APP HGNC:620     -1 protein_coding
97        25880550     26171128         APP HGNC:620     -1 protein_coding
98        25880550     26171128         APP HGNC:620     -1 protein_coding
99        25880550     26171128         APP HGNC:620     -1 protein_coding
100       25880550     26171128         APP HGNC:620     -1 protein_coding
101       25880550     26171128         APP HGNC:620     -1 protein_coding
102       25880550     26171128         APP HGNC:620     -1 protein_coding
103       25880550     26171128         APP HGNC:620     -1 protein_coding
104       25880550     26171128         APP HGNC:620     -1 protein_coding
105       25880550     26171128         APP HGNC:620     -1 protein_coding
106       25880550     26171128         APP HGNC:620     -1 protein_coding
107       25880550     26171128         APP HGNC:620     -1 protein_coding
108       25880550     26171128         APP HGNC:620     -1 protein_coding
109       25880550     26171128         APP HGNC:620     -1 protein_coding
110       25880550     26171128         APP HGNC:620     -1 protein_coding
111       25880550     26171128         APP HGNC:620     -1 protein_coding
112       25880550     26171128         APP HGNC:620     -1 protein_coding
113       25880550     26171128         APP HGNC:620     -1 protein_coding
114       25880550     26171128         APP HGNC:620     -1 protein_coding
115       25880550     26171128         APP HGNC:620     -1 protein_coding
116       25880550     26171128         APP HGNC:620     -1 protein_coding
117       25880550     26171128         APP HGNC:620     -1 protein_coding
118       25880550     26171128         APP HGNC:620     -1 protein_coding
119       25880550     26171128         APP HGNC:620     -1 protein_coding
120       25880550     26171128         APP HGNC:620     -1 protein_coding
121       25880550     26171128         APP HGNC:620     -1 protein_coding
122       25880550     26171128         APP HGNC:620     -1 protein_coding
123       25880550     26171128         APP HGNC:620     -1 protein_coding
124       25880550     26171128         APP HGNC:620     -1 protein_coding
125       25880550     26171128         APP HGNC:620     -1 protein_coding
126       25880550     26171128         APP HGNC:620     -1 protein_coding
127       25880550     26171128         APP HGNC:620     -1 protein_coding
128       25880550     26171128         APP HGNC:620     -1 protein_coding
129       25880550     26171128         APP HGNC:620     -1 protein_coding
130       25880550     26171128         APP HGNC:620     -1 protein_coding
131       25880550     26171128         APP HGNC:620     -1 protein_coding
132       25880550     26171128         APP HGNC:620     -1 protein_coding
133       25880550     26171128         APP HGNC:620     -1 protein_coding
134       25880550     26171128         APP HGNC:620     -1 protein_coding
135       25880550     26171128         APP HGNC:620     -1 protein_coding
136       25880550     26171128         APP HGNC:620     -1 protein_coding
137       25880550     26171128         APP HGNC:620     -1 protein_coding
138       25880550     26171128         APP HGNC:620     -1 protein_coding
139       25880550     26171128         APP HGNC:620     -1 protein_coding
140       25880550     26171128         APP HGNC:620     -1 protein_coding
141       25880550     26171128         APP HGNC:620     -1 protein_coding
142       25880550     26171128         APP HGNC:620     -1 protein_coding
143       25880550     26171128         APP HGNC:620     -1 protein_coding
144       25880550     26171128         APP HGNC:620     -1 protein_coding
145       25880550     26171128         APP HGNC:620     -1 protein_coding
146       25880550     26171128         APP HGNC:620     -1 protein_coding
147       25880550     26171128         APP HGNC:620     -1 protein_coding
148       25880550     26171128         APP HGNC:620     -1 protein_coding
149       25880550     26171128         APP HGNC:620     -1 protein_coding
150       25880550     26171128         APP HGNC:620     -1 protein_coding
151       25880550     26171128         APP HGNC:620     -1 protein_coding
152       25880550     26171128         APP HGNC:620     -1 protein_coding
153       25880550     26171128         APP HGNC:620     -1 protein_coding
154       25880550     26171128         APP HGNC:620     -1 protein_coding
155       25880550     26171128         APP HGNC:620     -1 protein_coding
156       25880550     26171128         APP HGNC:620     -1 protein_coding
157       25880550     26171128         APP HGNC:620     -1 protein_coding
158       25880550     26171128         APP HGNC:620     -1 protein_coding
159       25880550     26171128         APP HGNC:620     -1 protein_coding
160       25880550     26171128         APP HGNC:620     -1 protein_coding
161       25880550     26171128         APP HGNC:620     -1 protein_coding
162       25880550     26171128         APP HGNC:620     -1 protein_coding
163       25880550     26171128         APP HGNC:620     -1 protein_coding
164       25880550     26171128         APP HGNC:620     -1 protein_coding
165       25880550     26171128         APP HGNC:620     -1 protein_coding
166       25880550     26171128         APP HGNC:620     -1 protein_coding
167       25880550     26171128         APP HGNC:620     -1 protein_coding
168       25880550     26171128         APP HGNC:620     -1 protein_coding
169       25880550     26171128         APP HGNC:620     -1 protein_coding
170       25880550     26171128         APP HGNC:620     -1 protein_coding
171       25880550     26171128         APP HGNC:620     -1 protein_coding
172       25880550     26171128         APP HGNC:620     -1 protein_coding
173       25880550     26171128         APP HGNC:620     -1 protein_coding
174       25880550     26171128         APP HGNC:620     -1 protein_coding

filter()

Multiple conditions, AND (&)

Genes in a particular range

# Comma separated conditions are combined with '&'
gene_by_exon %>%
   filter(start_position > 10000000, end_position < 12000000)
    ensembl_gene_id ensembl_transcript_id ensembl_exon_id chromosome_name
1   ENSG00000277282       ENST00000622028 ENSE00003742120              21
2   ENSG00000277282       ENST00000622028 ENSE00003753345              21
3   ENSG00000187172       ENST00000474011 ENSE00001825894              21
4   ENSG00000187172       ENST00000474011 ENSE00002021537              21
5   ENSG00000187172       ENST00000474011 ENSE00001887197              21
6   ENSG00000187172       ENST00000470054 ENSE00002021537              21
7   ENSG00000187172       ENST00000470054 ENSE00001647801              21
8   ENSG00000187172       ENST00000470054 ENSE00001849458              21
9   ENSG00000187172       ENST00000470054 ENSE00001810225              21
10  ENSG00000187172       ENST00000470054 ENSE00001755570              21
11  ENSG00000187172       ENST00000470054 ENSE00001543692              21
12  ENSG00000187172       ENST00000470054 ENSE00001603325              21
13  ENSG00000187172       ENST00000470054 ENSE00003487684              21
14  ENSG00000187172       ENST00000470054 ENSE00003517925              21
15  ENSG00000187172       ENST00000470054 ENSE00001624265              21
16  ENSG00000187172       ENST00000496773 ENSE00001849458              21
17  ENSG00000187172       ENST00000496773 ENSE00001810225              21
18  ENSG00000187172       ENST00000496773 ENSE00001755570              21
19  ENSG00000187172       ENST00000496773 ENSE00001603325              21
20  ENSG00000187172       ENST00000496773 ENSE00003487684              21
21  ENSG00000187172       ENST00000496773 ENSE00003517925              21
22  ENSG00000187172       ENST00000496773 ENSE00001915801              21
23  ENSG00000187172       ENST00000496773 ENSE00003606441              21
24  ENSG00000187172       ENST00000496773 ENSE00001949088              21
25  ENSG00000187172       ENST00000496773 ENSE00003570996              21
26  ENSG00000187172       ENST00000496773 ENSE00001888942              21
27  ENSG00000187172       ENST00000496773 ENSE00003578317              21
28  ENSG00000187172       ENST00000496773 ENSE00003576287              21
29  ENSG00000187172       ENST00000496773 ENSE00003603249              21
30  ENSG00000187172       ENST00000496773 ENSE00001862587              21
31  ENSG00000273840       ENST00000612267 ENSE00003727672              21
32  ENSG00000273840       ENST00000612267 ENSE00003753642              21
33  ENSG00000273840       ENST00000612267 ENSE00003723237              21
34  ENSG00000273840       ENST00000612267 ENSE00003716806              21
35  ENSG00000273840       ENST00000612267 ENSE00003713734              21
36  ENSG00000273840       ENST00000612267 ENSE00003734889              21
37  ENSG00000273840       ENST00000612267 ENSE00003730485              21
38  ENSG00000273840       ENST00000612267 ENSE00003751106              21
39  ENSG00000273840       ENST00000612267 ENSE00003749042              21
40  ENSG00000273840       ENST00000612267 ENSE00003728386              21
41  ENSG00000273840       ENST00000612267 ENSE00003727587              21
42  ENSG00000273840       ENST00000612267 ENSE00003713188              21
43  ENSG00000273840       ENST00000612267 ENSE00003731375              21
44  ENSG00000273840       ENST00000612267 ENSE00003739126              21
45  ENSG00000273840       ENST00000612267 ENSE00003746433              21
46  ENSG00000273840       ENST00000612267 ENSE00003748108              21
47  ENSG00000273840       ENST00000612267 ENSE00003742886              21
48  ENSG00000273840       ENST00000612267 ENSE00003748985              21
49  ENSG00000273840       ENST00000612267 ENSE00003736211              21
50  ENSG00000273840       ENST00000612267 ENSE00003741368              21
51  ENSG00000273840       ENST00000612267 ENSE00003724907              21
52  ENSG00000273840       ENST00000612267 ENSE00003753886              21
53  ENSG00000273840       ENST00000612267 ENSE00003742017              21
54  ENSG00000273840       ENST00000612267 ENSE00003711609              21
55  ENSG00000273840       ENST00000612267 ENSE00003750830              21
56  ENSG00000273840       ENST00000612267 ENSE00003713860              21
57  ENSG00000273840       ENST00000612267 ENSE00003742508              21
58  ENSG00000273840       ENST00000612267 ENSE00003742077              21
59  ENSG00000273840       ENST00000612267 ENSE00003738954              21
60  ENSG00000273840       ENST00000612267 ENSE00003754829              21
61  ENSG00000273840       ENST00000612267 ENSE00003734750              21
62  ENSG00000273840       ENST00000612267 ENSE00003721228              21
63  ENSG00000278106       ENST00000612331 ENSE00003752928              21
64  ENSG00000277693       ENST00000622592 ENSE00003717148              21
65  ENSG00000277693       ENST00000622592 ENSE00003714071              21
66  ENSG00000277693       ENST00000622592 ENSE00003720003              21
67  ENSG00000277693       ENST00000622592 ENSE00003716827              21
68  ENSG00000277693       ENST00000616952 ENSE00003740779              21
69  ENSG00000277693       ENST00000616952 ENSE00003726864              21
70  ENSG00000279062       ENST00000623954 ENSE00003758525              21
71  ENSG00000273872       ENST00000614260 ENSE00003713742              21
72  ENSG00000273872       ENST00000614260 ENSE00003742888              21
73  ENSG00000278678       ENST00000616920 ENSE00003715679              21
74  ENSG00000274391       ENST00000622113 ENSE00003729301              21
75  ENSG00000274391       ENST00000622113 ENSE00002206977              21
76  ENSG00000274391       ENST00000622113 ENSE00003737287              21
77  ENSG00000274391       ENST00000622113 ENSE00003735534              21
78  ENSG00000274391       ENST00000622113 ENSE00002295075              21
79  ENSG00000274391       ENST00000622113 ENSE00003754579              21
80  ENSG00000274391       ENST00000622113 ENSE00003751023              21
81  ENSG00000274391       ENST00000622113 ENSE00001703755              21
82  ENSG00000274391       ENST00000622113 ENSE00002234792              21
83  ENSG00000274391       ENST00000622113 ENSE00002208831              21
84  ENSG00000274391       ENST00000622113 ENSE00001610754              21
85  ENSG00000274391       ENST00000622113 ENSE00001657155              21
86  ENSG00000274391       ENST00000622113 ENSE00002229894              21
87  ENSG00000274391       ENST00000622113 ENSE00003738903              21
88  ENSG00000274391       ENST00000622113 ENSE00001659869              21
89  ENSG00000274391       ENST00000622113 ENSE00002240871              21
90  ENSG00000274391       ENST00000622113 ENSE00001774660              21
91  ENSG00000274391       ENST00000622113 ENSE00002221583              21
92  ENSG00000274391       ENST00000622113 ENSE00002311810              21
93  ENSG00000274391       ENST00000622113 ENSE00003741695              21
94  ENSG00000274391       ENST00000622113 ENSE00002303771              21
95  ENSG00000274391       ENST00000622113 ENSE00003745006              21
96  ENSG00000274391       ENST00000622113 ENSE00003718158              21
97  ENSG00000274391       ENST00000612957 ENSE00002206977              21
98  ENSG00000274391       ENST00000612957 ENSE00003737287              21
99  ENSG00000274391       ENST00000612957 ENSE00003735534              21
100 ENSG00000274391       ENST00000612957 ENSE00002295075              21
101 ENSG00000274391       ENST00000612957 ENSE00003751023              21
102 ENSG00000274391       ENST00000612957 ENSE00001703755              21
103 ENSG00000274391       ENST00000612957 ENSE00002234792              21
104 ENSG00000274391       ENST00000612957 ENSE00003743959              21
105 ENSG00000274391       ENST00000612957 ENSE00003751571              21
106 ENSG00000274391       ENST00000612957 ENSE00003730242              21
107 ENSG00000274391       ENST00000618007 ENSE00002206977              21
108 ENSG00000274391       ENST00000618007 ENSE00003737287              21
109 ENSG00000274391       ENST00000618007 ENSE00003735534              21
110 ENSG00000274391       ENST00000618007 ENSE00002295075              21
111 ENSG00000274391       ENST00000618007 ENSE00003754579              21
112 ENSG00000274391       ENST00000618007 ENSE00003751023              21
113 ENSG00000274391       ENST00000618007 ENSE00001703755              21
114 ENSG00000274391       ENST00000618007 ENSE00002234792              21
115 ENSG00000274391       ENST00000618007 ENSE00002208831              21
116 ENSG00000274391       ENST00000618007 ENSE00001610754              21
117 ENSG00000274391       ENST00000618007 ENSE00001657155              21
118 ENSG00000274391       ENST00000618007 ENSE00002229894              21
119 ENSG00000274391       ENST00000618007 ENSE00003738903              21
120 ENSG00000274391       ENST00000618007 ENSE00001659869              21
121 ENSG00000274391       ENST00000618007 ENSE00002240871              21
122 ENSG00000274391       ENST00000618007 ENSE00001774660              21
123 ENSG00000274391       ENST00000618007 ENSE00002221583              21
124 ENSG00000274391       ENST00000618007 ENSE00002311810              21
125 ENSG00000274391       ENST00000618007 ENSE00003741695              21
126 ENSG00000274391       ENST00000618007 ENSE00002303771              21
127 ENSG00000274391       ENST00000618007 ENSE00003745006              21
128 ENSG00000274391       ENST00000618007 ENSE00003751571              21
129 ENSG00000274391       ENST00000618007 ENSE00003739511              21
130 ENSG00000274391       ENST00000618007 ENSE00003725568              21
131 ENSG00000274391       ENST00000427445 ENSE00002206977              21
132 ENSG00000274391       ENST00000427445 ENSE00003737287              21
133 ENSG00000274391       ENST00000427445 ENSE00003735534              21
134 ENSG00000274391       ENST00000427445 ENSE00002295075              21
135 ENSG00000274391       ENST00000427445 ENSE00003754579              21
136 ENSG00000274391       ENST00000427445 ENSE00001703755              21
137 ENSG00000274391       ENST00000427445 ENSE00002234792              21
138 ENSG00000274391       ENST00000427445 ENSE00002208831              21
139 ENSG00000274391       ENST00000427445 ENSE00001610754              21
140 ENSG00000274391       ENST00000427445 ENSE00001657155              21
141 ENSG00000274391       ENST00000427445 ENSE00002229894              21
142 ENSG00000274391       ENST00000427445 ENSE00003738903              21
143 ENSG00000274391       ENST00000427445 ENSE00001659869              21
144 ENSG00000274391       ENST00000427445 ENSE00002240871              21
145 ENSG00000274391       ENST00000427445 ENSE00001774660              21
146 ENSG00000274391       ENST00000427445 ENSE00002221583              21
147 ENSG00000274391       ENST00000427445 ENSE00002311810              21
148 ENSG00000274391       ENST00000427445 ENSE00003741695              21
149 ENSG00000274391       ENST00000427445 ENSE00002303771              21
150 ENSG00000274391       ENST00000427445 ENSE00003745006              21
151 ENSG00000274391       ENST00000427445 ENSE00003739511              21
152 ENSG00000274391       ENST00000427445 ENSE00003725568              21
153 ENSG00000274391       ENST00000612746 ENSE00002206977              21
154 ENSG00000274391       ENST00000612746 ENSE00003737287              21
155 ENSG00000274391       ENST00000612746 ENSE00002208831              21
156 ENSG00000274391       ENST00000612746 ENSE00001610754              21
157 ENSG00000274391       ENST00000612746 ENSE00001657155              21
158 ENSG00000274391       ENST00000612746 ENSE00002229894              21
159 ENSG00000274391       ENST00000612746 ENSE00003738903              21
160 ENSG00000274391       ENST00000612746 ENSE00001659869              21
161 ENSG00000274391       ENST00000612746 ENSE00002240871              21
162 ENSG00000274391       ENST00000612746 ENSE00001774660              21
163 ENSG00000274391       ENST00000612746 ENSE00002221583              21
164 ENSG00000274391       ENST00000612746 ENSE00002311810              21
165 ENSG00000274391       ENST00000612746 ENSE00003741695              21
166 ENSG00000274391       ENST00000612746 ENSE00002303771              21
167 ENSG00000274391       ENST00000612746 ENSE00003745006              21
168 ENSG00000274391       ENST00000612746 ENSE00003739511              21
169 ENSG00000274391       ENST00000612746 ENSE00003725568              21
170 ENSG00000274391       ENST00000612746 ENSE00003749715              21
171 ENSG00000274391       ENST00000612746 ENSE00003733864              21
172 ENSG00000275592       ENST00000619242 ENSE00003745303              21
173 ENSG00000275592       ENST00000619242 ENSE00003719370              21
174 ENSG00000275945       ENST00000613970 ENSE00003717335              21
175 ENSG00000280372       ENST00000624662 ENSE00003757507              21
176 ENSG00000279851       ENST00000623370 ENSE00003758722              21
177 ENSG00000279851       ENST00000623370 ENSE00003755764              21
178 ENSG00000276556       ENST00000611755 ENSE00003747824              21
    start_position end_position hgnc_symbol    hgnc_id strand
1         10649400     10649835 IGHV1OR21-1 HGNC:38040     -1
2         10649400     10649835 IGHV1OR21-1 HGNC:38040     -1
3         10413477     10516431       BAGE2 HGNC:15723      1
4         10413477     10516431       BAGE2 HGNC:15723      1
5         10413477     10516431       BAGE2 HGNC:15723      1
6         10413477     10516431       BAGE2 HGNC:15723      1
7         10413477     10516431       BAGE2 HGNC:15723      1
8         10413477     10516431       BAGE2 HGNC:15723      1
9         10413477     10516431       BAGE2 HGNC:15723      1
10        10413477     10516431       BAGE2 HGNC:15723      1
11        10413477     10516431       BAGE2 HGNC:15723      1
12        10413477     10516431       BAGE2 HGNC:15723      1
13        10413477     10516431       BAGE2 HGNC:15723      1
14        10413477     10516431       BAGE2 HGNC:15723      1
15        10413477     10516431       BAGE2 HGNC:15723      1
16        10413477     10516431       BAGE2 HGNC:15723      1
17        10413477     10516431       BAGE2 HGNC:15723      1
18        10413477     10516431       BAGE2 HGNC:15723      1
19        10413477     10516431       BAGE2 HGNC:15723      1
20        10413477     10516431       BAGE2 HGNC:15723      1
21        10413477     10516431       BAGE2 HGNC:15723      1
22        10413477     10516431       BAGE2 HGNC:15723      1
23        10413477     10516431       BAGE2 HGNC:15723      1
24        10413477     10516431       BAGE2 HGNC:15723      1
25        10413477     10516431       BAGE2 HGNC:15723      1
26        10413477     10516431       BAGE2 HGNC:15723      1
27        10413477     10516431       BAGE2 HGNC:15723      1
28        10413477     10516431       BAGE2 HGNC:15723      1
29        10413477     10516431       BAGE2 HGNC:15723      1
30        10413477     10516431       BAGE2 HGNC:15723      1
31        10482738     10605716                             1
32        10482738     10605716                             1
33        10482738     10605716                             1
34        10482738     10605716                             1
35        10482738     10605716                             1
36        10482738     10605716                             1
37        10482738     10605716                             1
38        10482738     10605716                             1
39        10482738     10605716                             1
40        10482738     10605716                             1
41        10482738     10605716                             1
42        10482738     10605716                             1
43        10482738     10605716                             1
44        10482738     10605716                             1
45        10482738     10605716                             1
46        10482738     10605716                             1
47        10482738     10605716                             1
48        10482738     10605716                             1
49        10482738     10605716                             1
50        10482738     10605716                             1
51        10482738     10605716                             1
52        10482738     10605716                             1
53        10482738     10605716                             1
54        10482738     10605716                             1
55        10482738     10605716                             1
56        10482738     10605716                             1
57        10482738     10605716                             1
58        10482738     10605716                             1
59        10482738     10605716                             1
60        10482738     10605716                             1
61        10482738     10605716                             1
62        10482738     10605716                             1
63        10397644     10397778                             1
64        10328411     10342737                            -1
65        10328411     10342737                            -1
66        10328411     10342737                            -1
67        10328411     10342737                            -1
68        10328411     10342737                            -1
69        10328411     10342737                            -1
70        10136419     10137004                             1
71        10612455     10613379  SLC25A15P4 HGNC:39845     -1
72        10612455     10613379  SLC25A15P4 HGNC:39845     -1
73        10576292     10576587     CYCSP41  HGNC:2580      1
74        10521553     10606140        TPTE HGNC:12023      1
75        10521553     10606140        TPTE HGNC:12023      1
76        10521553     10606140        TPTE HGNC:12023      1
77        10521553     10606140        TPTE HGNC:12023      1
78        10521553     10606140        TPTE HGNC:12023      1
79        10521553     10606140        TPTE HGNC:12023      1
80        10521553     10606140        TPTE HGNC:12023      1
81        10521553     10606140        TPTE HGNC:12023      1
82        10521553     10606140        TPTE HGNC:12023      1
83        10521553     10606140        TPTE HGNC:12023      1
84        10521553     10606140        TPTE HGNC:12023      1
85        10521553     10606140        TPTE HGNC:12023      1
86        10521553     10606140        TPTE HGNC:12023      1
87        10521553     10606140        TPTE HGNC:12023      1
88        10521553     10606140        TPTE HGNC:12023      1
89        10521553     10606140        TPTE HGNC:12023      1
90        10521553     10606140        TPTE HGNC:12023      1
91        10521553     10606140        TPTE HGNC:12023      1
92        10521553     10606140        TPTE HGNC:12023      1
93        10521553     10606140        TPTE HGNC:12023      1
94        10521553     10606140        TPTE HGNC:12023      1
95        10521553     10606140        TPTE HGNC:12023      1
96        10521553     10606140        TPTE HGNC:12023      1
97        10521553     10606140        TPTE HGNC:12023      1
98        10521553     10606140        TPTE HGNC:12023      1
99        10521553     10606140        TPTE HGNC:12023      1
100       10521553     10606140        TPTE HGNC:12023      1
101       10521553     10606140        TPTE HGNC:12023      1
102       10521553     10606140        TPTE HGNC:12023      1
103       10521553     10606140        TPTE HGNC:12023      1
104       10521553     10606140        TPTE HGNC:12023      1
105       10521553     10606140        TPTE HGNC:12023      1
106       10521553     10606140        TPTE HGNC:12023      1
107       10521553     10606140        TPTE HGNC:12023      1
108       10521553     10606140        TPTE HGNC:12023      1
109       10521553     10606140        TPTE HGNC:12023      1
110       10521553     10606140        TPTE HGNC:12023      1
111       10521553     10606140        TPTE HGNC:12023      1
112       10521553     10606140        TPTE HGNC:12023      1
113       10521553     10606140        TPTE HGNC:12023      1
114       10521553     10606140        TPTE HGNC:12023      1
115       10521553     10606140        TPTE HGNC:12023      1
116       10521553     10606140        TPTE HGNC:12023      1
117       10521553     10606140        TPTE HGNC:12023      1
118       10521553     10606140        TPTE HGNC:12023      1
119       10521553     10606140        TPTE HGNC:12023      1
120       10521553     10606140        TPTE HGNC:12023      1
121       10521553     10606140        TPTE HGNC:12023      1
122       10521553     10606140        TPTE HGNC:12023      1
123       10521553     10606140        TPTE HGNC:12023      1
124       10521553     10606140        TPTE HGNC:12023      1
125       10521553     10606140        TPTE HGNC:12023      1
126       10521553     10606140        TPTE HGNC:12023      1
127       10521553     10606140        TPTE HGNC:12023      1
128       10521553     10606140        TPTE HGNC:12023      1
129       10521553     10606140        TPTE HGNC:12023      1
130       10521553     10606140        TPTE HGNC:12023      1
131       10521553     10606140        TPTE HGNC:12023      1
132       10521553     10606140        TPTE HGNC:12023      1
133       10521553     10606140        TPTE HGNC:12023      1
134       10521553     10606140        TPTE HGNC:12023      1
135       10521553     10606140        TPTE HGNC:12023      1
136       10521553     10606140        TPTE HGNC:12023      1
137       10521553     10606140        TPTE HGNC:12023      1
138       10521553     10606140        TPTE HGNC:12023      1
139       10521553     10606140        TPTE HGNC:12023      1
140       10521553     10606140        TPTE HGNC:12023      1
141       10521553     10606140        TPTE HGNC:12023      1
142       10521553     10606140        TPTE HGNC:12023      1
143       10521553     10606140        TPTE HGNC:12023      1
144       10521553     10606140        TPTE HGNC:12023      1
145       10521553     10606140        TPTE HGNC:12023      1
146       10521553     10606140        TPTE HGNC:12023      1
147       10521553     10606140        TPTE HGNC:12023      1
148       10521553     10606140        TPTE HGNC:12023      1
149       10521553     10606140        TPTE HGNC:12023      1
150       10521553     10606140        TPTE HGNC:12023      1
151       10521553     10606140        TPTE HGNC:12023      1
152       10521553     10606140        TPTE HGNC:12023      1
153       10521553     10606140        TPTE HGNC:12023      1
154       10521553     10606140        TPTE HGNC:12023      1
155       10521553     10606140        TPTE HGNC:12023      1
156       10521553     10606140        TPTE HGNC:12023      1
157       10521553     10606140        TPTE HGNC:12023      1
158       10521553     10606140        TPTE HGNC:12023      1
159       10521553     10606140        TPTE HGNC:12023      1
160       10521553     10606140        TPTE HGNC:12023      1
161       10521553     10606140        TPTE HGNC:12023      1
162       10521553     10606140        TPTE HGNC:12023      1
163       10521553     10606140        TPTE HGNC:12023      1
164       10521553     10606140        TPTE HGNC:12023      1
165       10521553     10606140        TPTE HGNC:12023      1
166       10521553     10606140        TPTE HGNC:12023      1
167       10521553     10606140        TPTE HGNC:12023      1
168       10521553     10606140        TPTE HGNC:12023      1
169       10521553     10606140        TPTE HGNC:12023      1
170       10521553     10606140        TPTE HGNC:12023      1
171       10521553     10606140        TPTE HGNC:12023      1
172       10357400     10358620      VN1R7P  HGNC:8496      1
173       10357400     10358620      VN1R7P  HGNC:8496      1
174       10330732     10331537     EIF3FP1  HGNC:3276      1
175       10028361     10029855                            -1
176       10122273     10129029                             1
177       10122273     10129029                             1
178       10640028     10640338                            -1
                          gene_biotype
1                            IG_V_gene
2                            IG_V_gene
3   transcribed_unprocessed_pseudogene
4   transcribed_unprocessed_pseudogene
5   transcribed_unprocessed_pseudogene
6   transcribed_unprocessed_pseudogene
7   transcribed_unprocessed_pseudogene
8   transcribed_unprocessed_pseudogene
9   transcribed_unprocessed_pseudogene
10  transcribed_unprocessed_pseudogene
11  transcribed_unprocessed_pseudogene
12  transcribed_unprocessed_pseudogene
13  transcribed_unprocessed_pseudogene
14  transcribed_unprocessed_pseudogene
15  transcribed_unprocessed_pseudogene
16  transcribed_unprocessed_pseudogene
17  transcribed_unprocessed_pseudogene
18  transcribed_unprocessed_pseudogene
19  transcribed_unprocessed_pseudogene
20  transcribed_unprocessed_pseudogene
21  transcribed_unprocessed_pseudogene
22  transcribed_unprocessed_pseudogene
23  transcribed_unprocessed_pseudogene
24  transcribed_unprocessed_pseudogene
25  transcribed_unprocessed_pseudogene
26  transcribed_unprocessed_pseudogene
27  transcribed_unprocessed_pseudogene
28  transcribed_unprocessed_pseudogene
29  transcribed_unprocessed_pseudogene
30  transcribed_unprocessed_pseudogene
31                processed_transcript
32                processed_transcript
33                processed_transcript
34                processed_transcript
35                processed_transcript
36                processed_transcript
37                processed_transcript
38                processed_transcript
39                processed_transcript
40                processed_transcript
41                processed_transcript
42                processed_transcript
43                processed_transcript
44                processed_transcript
45                processed_transcript
46                processed_transcript
47                processed_transcript
48                processed_transcript
49                processed_transcript
50                processed_transcript
51                processed_transcript
52                processed_transcript
53                processed_transcript
54                processed_transcript
55                processed_transcript
56                processed_transcript
57                processed_transcript
58                processed_transcript
59                processed_transcript
60                processed_transcript
61                processed_transcript
62                processed_transcript
63              unprocessed_pseudogene
64                             lincRNA
65                             lincRNA
66                             lincRNA
67                             lincRNA
68                             lincRNA
69                             lincRNA
70              unprocessed_pseudogene
71              unprocessed_pseudogene
72              unprocessed_pseudogene
73                processed_pseudogene
74                      protein_coding
75                      protein_coding
76                      protein_coding
77                      protein_coding
78                      protein_coding
79                      protein_coding
80                      protein_coding
81                      protein_coding
82                      protein_coding
83                      protein_coding
84                      protein_coding
85                      protein_coding
86                      protein_coding
87                      protein_coding
88                      protein_coding
89                      protein_coding
90                      protein_coding
91                      protein_coding
92                      protein_coding
93                      protein_coding
94                      protein_coding
95                      protein_coding
96                      protein_coding
97                      protein_coding
98                      protein_coding
99                      protein_coding
100                     protein_coding
101                     protein_coding
102                     protein_coding
103                     protein_coding
104                     protein_coding
105                     protein_coding
106                     protein_coding
107                     protein_coding
108                     protein_coding
109                     protein_coding
110                     protein_coding
111                     protein_coding
112                     protein_coding
113                     protein_coding
114                     protein_coding
115                     protein_coding
116                     protein_coding
117                     protein_coding
118                     protein_coding
119                     protein_coding
120                     protein_coding
121                     protein_coding
122                     protein_coding
123                     protein_coding
124                     protein_coding
125                     protein_coding
126                     protein_coding
127                     protein_coding
128                     protein_coding
129                     protein_coding
130                     protein_coding
131                     protein_coding
132                     protein_coding
133                     protein_coding
134                     protein_coding
135                     protein_coding
136                     protein_coding
137                     protein_coding
138                     protein_coding
139                     protein_coding
140                     protein_coding
141                     protein_coding
142                     protein_coding
143                     protein_coding
144                     protein_coding
145                     protein_coding
146                     protein_coding
147                     protein_coding
148                     protein_coding
149                     protein_coding
150                     protein_coding
151                     protein_coding
152                     protein_coding
153                     protein_coding
154                     protein_coding
155                     protein_coding
156                     protein_coding
157                     protein_coding
158                     protein_coding
159                     protein_coding
160                     protein_coding
161                     protein_coding
162                     protein_coding
163                     protein_coding
164                     protein_coding
165                     protein_coding
166                     protein_coding
167                     protein_coding
168                     protein_coding
169                     protein_coding
170                     protein_coding
171                     protein_coding
172               processed_pseudogene
173               processed_pseudogene
174               processed_pseudogene
175                                TEC
176                            lincRNA
177                            lincRNA
178             unprocessed_pseudogene

filter()

Multiple conditions, OR (|)

Genes at the close to the telomers

gene_by_exon %>%
  filter(start_position < 100000 | end_position >46665124 )

Set operations

For more complicated checks. The following 2 are equivalent:

gene_by_exon %>%
  filter(is.element(hgnc_symbol, c("APP", "ATP50", "PRMT2")))
gene_by_exon %>%
  filter(hgnc_symbol %in% c("APP", "ATP50", "PRMT2"))

arrange()

Sort columns

Perform a nested sorting of all Genes:

1. hgnc_symbol
2. gene_biotype
3. end_position
gene_by_exon %>%
  arrange(hgnc_symbol, gene_biotype, end_position) %>% 
  dplyr::select(hgnc_symbol, gene_biotype, end_position, everything())
       hgnc_symbol                       gene_biotype end_position
1                                           antisense      5087867
2                                           antisense      5087867
3                                           antisense     14144468
4                                           antisense     14144468
5                                           antisense     14144468
6                                           antisense     14144468
7                                           antisense     14144468
8                                           antisense     14144468
9                                           antisense     14144468
10                                          antisense     14144468
11                                          antisense     14144468
12                                          antisense     14947096
13                                          antisense     14947096
14                                          antisense     14964233
15                                          antisense     14964233
16                                          antisense     14992854
17                                          antisense     14992854
18                                          antisense     14992854
19                                          antisense     17810845
20                                          antisense     17810845
21                                          antisense     17810845
22                                          antisense     17810845
23                                          antisense     21226829
24                                          antisense     21226829
25                                          antisense     25583326
26                                          antisense     26175824
27                                          antisense     26175824
28                                          antisense     26471698
29                                          antisense     26471698
30                                          antisense     26471698
31                                          antisense     26471698
32                                          antisense     26471698
33                                          antisense     26471698
34                                          antisense     26471698
35                                          antisense     26471698
36                                          antisense     26471698
37                                          antisense     26471698
38                                          antisense     26471698
39                                          antisense     26471698
40                                          antisense     26471698
41                                          antisense     26471698
42                                          antisense     26939742
43                                          antisense     26939742
44                                          antisense     26939742
45                                          antisense     29024890
46                                          antisense     29187795
47                                          antisense     29187795
48                                          antisense     29657831
49                                          antisense     31560487
50                                          antisense     31560487
51                                          antisense     31667247
52                                          antisense     32308737
53                                          antisense     32308737
54                                          antisense     32849934
55                                          antisense     32849934
56                                          antisense     33071104
57                                          antisense     33071104
58                                          antisense     33159110
59                                          antisense     33159110
60                                          antisense     33484258
61                                          antisense     33484258
62                                          antisense     33484258
63                                          antisense     34375348
64                                          antisense     34375348
65                                          antisense     36064408
66                                          antisense     36064408
67                                          antisense     36064408
68                                          antisense     36320670
69                                          antisense     36481070
70                                          antisense     36481070
71                                          antisense     36532408
72                                          antisense     36532408
73                                          antisense     36532408
74                                          antisense     36532408
75                                          antisense     36701564
76                                          antisense     36701564
77                                          antisense     37268497
78                                          antisense     37365932
79                                          antisense     39184899
80                                          antisense     41186788
81                                          antisense     41186788
82                                          antisense     41186788
83                                          antisense     41186788
84                                          antisense     41186788
85                                          antisense     41186788
86                                          antisense     41186788
87                                          antisense     41186788
88                                          antisense     41186788
89                                          antisense     41186788
90                                          antisense     41445708
91                                          antisense     41445708
92                                          antisense     41445708
93                                          antisense     41741308
94                                          antisense     41741308
95                                          antisense     41872054
96                                          antisense     41872054
97                                          antisense     42561934
98                                          antisense     42561934
99                                          antisense     42651244
100                                         antisense     42651244
101                                         antisense     42741758
102                                         antisense     42741758
103                                         antisense     42965363
104                                         antisense     42965363
105                                         antisense     44202696
106                                         antisense     44202696
107                                         antisense     44251520
108                                         antisense     44251520
109                                         antisense     44335851
110                                         antisense     44335851
111                                         antisense     44340470
112                                         antisense     44340470
113                                         antisense     44936954
114                                         antisense     45379635
115                                         antisense     45379635
116                                         antisense     45379635
117                                         antisense     45379635
118                                         antisense     45763758
119                                         antisense     45836419
120                                         antisense     45836419
121                                         antisense     45836419
122                                         antisense     46097530
123                                         antisense     46097530
124                                         antisense     46188941
125                                         antisense     46188941
126                                         antisense     46225364
127                                         antisense     46225364
128                                         antisense     46225364
129                                         antisense     46225364
130                                         antisense     46225364
131                                         antisense     46225364
132                                         antisense     46247682
133                                         antisense     46247682
134                                         antisense     46254133
135                                         antisense     46254133
136                                         antisense     46254133
137                                         antisense     46254133
138                                           lincRNA      5243833
139                                           lincRNA      5243833
140                                           lincRNA      5614880
141                                           lincRNA      5614880
142                                           lincRNA      5614880
143                                           lincRNA      5614880
144                                           lincRNA      5614880
145                                           lincRNA      5614880
146                                           lincRNA      5614880
147                                           lincRNA      5614880
148                                           lincRNA      5614880
149                                           lincRNA      5614880
150                                           lincRNA      5614880
151                                           lincRNA      5614880
152                                           lincRNA      5614880
153                                           lincRNA      5614880
154                                           lincRNA      5614880
155                                           lincRNA      5614880
156                                           lincRNA      5614880
157                                           lincRNA      5614880
158                                           lincRNA      5614880
159                                           lincRNA      5614880
160                                           lincRNA      5614880
161                                           lincRNA      5614880
162                                           lincRNA      5614880
163                                           lincRNA      5614880
164                                           lincRNA      5614880
165                                           lincRNA      5614880
166                                           lincRNA      5614880
167                                           lincRNA      5614880
168                                           lincRNA      5614880
169                                           lincRNA      5614880
170                                           lincRNA      5614880
171                                           lincRNA      5614880
172                                           lincRNA      5614880
173                                           lincRNA      5614880
174                                           lincRNA      5614880
175                                           lincRNA      5614880
176                                           lincRNA      5614880
177                                           lincRNA      5614880
178                                           lincRNA      5614880
179                                           lincRNA      5614880
180                                           lincRNA      5707160
181                                           lincRNA      5707160
182                                           lincRNA      5709456
183                                           lincRNA      5709456
184                                           lincRNA      6082585
185                                           lincRNA      6082585
186                                           lincRNA      6091407
187                                           lincRNA      6091407
188                                           lincRNA      6091407
189                                           lincRNA      6091407
190                                           lincRNA      6091407
191                                           lincRNA      6091407
192                                           lincRNA      6091407
193                                           lincRNA      6267317
194                                           lincRNA      6267317
195                                           lincRNA      6267317
196                                           lincRNA      6267317
197                                           lincRNA      6267317
198                                           lincRNA      6267317
199                                           lincRNA      6267317
200                                           lincRNA      6267317
201                                           lincRNA      6267317
202                                           lincRNA      6267317
203                                           lincRNA      6267317
204                                           lincRNA      6267317
205                                           lincRNA      6267317
206                                           lincRNA      6267317
207                                           lincRNA      6267317
208                                           lincRNA      6267317
209                                           lincRNA      6267317
210                                           lincRNA      6267317
211                                           lincRNA      6267317
212                                           lincRNA      6267317
213                                           lincRNA      6267317
214                                           lincRNA      6360415
215                                           lincRNA      6360415
216                                           lincRNA      6360415
217                                           lincRNA      6360415
218                                           lincRNA      6360415
219                                           lincRNA      6360415
220                                           lincRNA      6360415
221                                           lincRNA      6360415
222                                           lincRNA      6360415
223                                           lincRNA      6360415
224                                           lincRNA      6360415
225                                           lincRNA      6360415
226                                           lincRNA      6360415
227                                           lincRNA      6360415
228                                           lincRNA      6360415
229                                           lincRNA      6360415
230                                           lincRNA      6360415
231                                           lincRNA      6360415
232                                           lincRNA      6553955
233                                           lincRNA      6553955
234                                           lincRNA      6553955
235                                           lincRNA      6670667
236                                           lincRNA      6670667
237                                           lincRNA      6670667
238                                           lincRNA      6670667
239                                           lincRNA      6670667
240                                           lincRNA      6670695
241                                           lincRNA      6670695
242                                           lincRNA      6670695
243                                           lincRNA      6670695
244                                           lincRNA      6670695
245                                           lincRNA      6670695
246                                           lincRNA      6670695
247                                           lincRNA      6670695
248                                           lincRNA      6670695
249                                           lincRNA      6670695
250                                           lincRNA      6670695
251                                           lincRNA      6670695
252                                           lincRNA      6670695
253                                           lincRNA      6670695
254                                           lincRNA      6670695
255                                           lincRNA      6670695
256                                           lincRNA      6670695
257                                           lincRNA      6670695
258                                           lincRNA      6670695
259                                           lincRNA      6670695
260                                           lincRNA      6670695
261                                           lincRNA      6670695
262                                           lincRNA      6670695
263                                           lincRNA      6670695
264                                           lincRNA      6670695
265                                           lincRNA      6725209
266                                           lincRNA      6725209
267                                           lincRNA      6725209
268                                           lincRNA      6812297
269                                           lincRNA      6812297
270                                           lincRNA      6812297
271                                           lincRNA      6897263
272                                           lincRNA      6897263
273                                           lincRNA      6897263
274                                           lincRNA      6906692
275                                           lincRNA      6906692
276                                           lincRNA      6997737
277                                           lincRNA      6997737
278                                           lincRNA      6997737
279                                           lincRNA      6997765
280                                           lincRNA      6997765
281                                           lincRNA      6997765
282                                           lincRNA      6997765
283                                           lincRNA      6997765
284                                           lincRNA      6997765
285                                           lincRNA      6997765
286                                           lincRNA      6997765
287                                           lincRNA      6997765
288                                           lincRNA      6997765
289                                           lincRNA      6997765
290                                           lincRNA      7025166
291                                           lincRNA      7025166
292                                           lincRNA      7087229
293                                           lincRNA      7087229
294                                           lincRNA      7087229
295                                           lincRNA      7087229
296                                           lincRNA      7087229
297                                           lincRNA      7087229
298                                           lincRNA      7087229
299                                           lincRNA      7087229
300                                           lincRNA      7087229
301                                           lincRNA      7087229
302                                           lincRNA      7087229
303                                           lincRNA      7087229
304                                           lincRNA      7087229
305                                           lincRNA      7087229
306                                           lincRNA      7087229
307                                           lincRNA      7087229
308                                           lincRNA      7087229
309                                           lincRNA      7087229
310                                           lincRNA      7087229
311                                           lincRNA      7469007
312                                           lincRNA      7469007
313                                           lincRNA      7469007
314                                           lincRNA      7469007
315                                           lincRNA      7469007
316                                           lincRNA      7469007
317                                           lincRNA      7469007
318                                           lincRNA      7469007
319                                           lincRNA      7469007
320                                           lincRNA      7469007
321                                           lincRNA      7469007
322                                           lincRNA      7469007
323                                           lincRNA      7469007
324                                           lincRNA      7469007
325                                           lincRNA      7469007
326                                           lincRNA      7469007
327                                           lincRNA      7469007
328                                           lincRNA      7469007
329                                           lincRNA      7469007
330                                           lincRNA      7469007
331                                           lincRNA      7469007
332                                           lincRNA      7469007
333                                           lincRNA      7469007
334                                           lincRNA      7681742
335                                           lincRNA      7681742
336                                           lincRNA      7681742
337                                           lincRNA      7681742
338                                           lincRNA      7681742
339                                           lincRNA      7681742
340                                           lincRNA      7681742
341                                           lincRNA      7681742
342                                           lincRNA      7681742
343                                           lincRNA      7681742
344                                           lincRNA      7681742
345                                           lincRNA      7681742
346                                           lincRNA      7681742
347                                           lincRNA      7681742
348                                           lincRNA      7681742
349                                           lincRNA      7681742
350                                           lincRNA      7681742
351                                           lincRNA      7681742
352                                           lincRNA      7681742
353                                           lincRNA      7681742
354                                           lincRNA      7681742
355                                           lincRNA      8211306
356                                           lincRNA      8227646
357                                           lincRNA      8227646
358                                           lincRNA      8227646
359                                           lincRNA      8227646
360                                           lincRNA      8227646
361                                           lincRNA      8227646
362                                           lincRNA      8227646
363                                           lincRNA      8255514
364                                           lincRNA      8394341
365                                           lincRNA      8410645
366                                           lincRNA      8410645
367                                           lincRNA      8410645
368                                           lincRNA      8410645
369                                           lincRNA      8410645
370                                           lincRNA      8410645
371                                           lincRNA      8410645
372                                           lincRNA      8438551
373                                           lincRNA      9018670
374                                           lincRNA      9018670
375                                           lincRNA      9368775
376                                           lincRNA      9368775
377                                           lincRNA      9368775
378                                           lincRNA      9368775
379                                           lincRNA      9368775
380                                           lincRNA      9368775
381                                           lincRNA      9368775
382                                           lincRNA      9368775
383                                           lincRNA      9368775
384                                           lincRNA      9368775
385                                           lincRNA      9368775
386                                           lincRNA      9368775
387                                           lincRNA      9368775
388                                           lincRNA      9368775
389                                           lincRNA      9368775
390                                           lincRNA      9368775
391                                           lincRNA      9368775
392                                           lincRNA      9368775
393                                           lincRNA      9368775
394                                           lincRNA      9368775
395                                           lincRNA      9914846
396                                           lincRNA      9914846
397                                           lincRNA      9914846
398                                           lincRNA      9914846
399                                           lincRNA      9914846
400                                           lincRNA     10129029
401                                           lincRNA     10129029
402                                           lincRNA     10342737
403                                           lincRNA     10342737
404                                           lincRNA     10342737
405                                           lincRNA     10342737
406                                           lincRNA     10342737
407                                           lincRNA     10342737
408                                           lincRNA     13016692
409                                           lincRNA     13016692
410                                           lincRNA     13314944
411                                           lincRNA     13314944
412                                           lincRNA     13771740
413                                           lincRNA     13771740
414                                           lincRNA     14753863
415                                           lincRNA     14753863
416                                           lincRNA     14753863
417                                           lincRNA     14753863
418                                           lincRNA     14753863
419                                           lincRNA     14753863
420                                           lincRNA     14763090
421                                           lincRNA     14763090
422                                           lincRNA     14918552
423                                           lincRNA     14918552
424                                           lincRNA     14918552
425                                           lincRNA     14918552
426                                           lincRNA     14918552
427                                           lincRNA     14918552
428                                           lincRNA     14918552
429                                           lincRNA     14918552
430                                           lincRNA     14918552
431                                           lincRNA     14918552
432                                           lincRNA     14918552
433                                           lincRNA     14918552
434                                           lincRNA     14918552
435                                           lincRNA     14918552
436                                           lincRNA     14918552
437                                           lincRNA     14918552
438                                           lincRNA     14918552
439                                           lincRNA     14918552
440                                           lincRNA     14918552
441                                           lincRNA     14918552
442                                           lincRNA     14918552
443                                           lincRNA     14918552
444                                           lincRNA     14918552
445                                           lincRNA     15014430
446                                           lincRNA     15014430
447                                           lincRNA     15014430
448                                           lincRNA     15014430
449                                           lincRNA     15067837
450                                           lincRNA     15067837
451                                           lincRNA     15496124
452                                           lincRNA     15496124
453                                           lincRNA     15627342
454                                           lincRNA     15627342
455                                           lincRNA     15627342
456                                           lincRNA     15627342
457                                           lincRNA     15627342
458                                           lincRNA     15627342
459                                           lincRNA     15627342
460                                           lincRNA     15627342
461                                           lincRNA     15627342
462                                           lincRNA     15627342
463                                           lincRNA     15627342
464                                           lincRNA     15627342
465                                           lincRNA     15627342
466                                           lincRNA     15627342
467                                           lincRNA     15627342
468                                           lincRNA     15627342
469                                           lincRNA     15627342
470                                           lincRNA     15627342
471                                           lincRNA     15627342
472                                           lincRNA     15627342
473                                           lincRNA     15627342
474                                           lincRNA     15627342
475                                           lincRNA     15627342
476                                           lincRNA     15627342
477                                           lincRNA     15627342
478                                           lincRNA     15627342
479                                           lincRNA     15627342
480                                           lincRNA     15627342
481                                           lincRNA     15627342
482                                           lincRNA     15627342
483                                           lincRNA     15627342
484                                           lincRNA     15627342
485                                           lincRNA     15627342
486                                           lincRNA     15627342
487                                           lincRNA     15627342
488                                           lincRNA     15627342
489                                           lincRNA     15627342
490                                           lincRNA     15627342
491                                           lincRNA     15627342
492                                           lincRNA     15627342
493                                           lincRNA     15627342
494                                           lincRNA     15627342
495                                           lincRNA     15627342
496                                           lincRNA     15627342
497                                           lincRNA     15627342
498                                           lincRNA     15627342
499                                           lincRNA     15627342
500                                           lincRNA     15627342
501                                           lincRNA     15627342
502                                           lincRNA     15627342
503                                           lincRNA     15627342
504                                           lincRNA     15627342
505                                           lincRNA     15627342
506                                           lincRNA     15627342
507                                           lincRNA     15627342
508                                           lincRNA     15627342
509                                           lincRNA     15627342
510                                           lincRNA     15627342
511                                           lincRNA     15627342
512                                           lincRNA     15627342
513                                           lincRNA     15627342
514                                           lincRNA     15627342
515                                           lincRNA     15627342
516                                           lincRNA     15627342
517                                           lincRNA     15627342
518                                           lincRNA     15627342
519                                           lincRNA     15627342
520                                           lincRNA     15627342
521                                           lincRNA     15627342
522                                           lincRNA     15627342
523                                           lincRNA     15627342
524                                           lincRNA     16308133
525                                           lincRNA     16308133
526                                           lincRNA     16308133
527                                           lincRNA     16419080
528                                           lincRNA     16419080
529                                           lincRNA     16419080
530                                           lincRNA     16582637
531                                           lincRNA     16582637
532                                           lincRNA     16640683
533                                           lincRNA     16640683
534                                           lincRNA     16640683
535                                           lincRNA     16640683
536                                           lincRNA     16645065
537                                           lincRNA     16815688
538                                           lincRNA     16815688
539                                           lincRNA     16815688
540                                           lincRNA     16873691
541                                           lincRNA     16873691
542                                           lincRNA     16873691
543                                           lincRNA     16873691
544                                           lincRNA     17660384
545                                           lincRNA     17660384
546                                           lincRNA     18114904
547                                           lincRNA     18114904
548                                           lincRNA     18114904
549                                           lincRNA     18114904
550                                           lincRNA     18114904
551                                           lincRNA     18650360
552                                           lincRNA     18650360
553                                           lincRNA     18650360
554                                           lincRNA     18935859
555                                           lincRNA     18935859
556                                           lincRNA     18967058
557                                           lincRNA     18967058
558                                           lincRNA     19047684
559                                           lincRNA     19047684
560                                           lincRNA     19134423
561                                           lincRNA     19134423
562                                           lincRNA     19303739
563                                           lincRNA     19303739
564                                           lincRNA     20258820
565                                           lincRNA     20258820
566                                           lincRNA     21615437
567                                           lincRNA     21615437
568                                           lincRNA     21686329
569                                           lincRNA     21686329
570                                           lincRNA     21686329
571                                           lincRNA     21686329
572                                           lincRNA     21686329
573                                           lincRNA     21975681
574                                           lincRNA     21975681
575                                           lincRNA     21975681
576                                           lincRNA     22420819
577                                           lincRNA     22420819
578                                           lincRNA     22420819
579                                           lincRNA     22520058
580                                           lincRNA     22520058
581                                           lincRNA     22520058
582                                           lincRNA     23131206
583                                           lincRNA     23131206
584                                           lincRNA     23131206
585                                           lincRNA     23131206
586                                           lincRNA     23131206
587                                           lincRNA     23384861
588                                           lincRNA     23384861
589                                           lincRNA     23384861
590                                           lincRNA     23384861
591                                           lincRNA     23384861
592                                           lincRNA     23490724
593                                           lincRNA     23490724
594                                           lincRNA     23890541
595                                           lincRNA     23890541
596                                           lincRNA     23890541
597                                           lincRNA     23967273
598                                           lincRNA     23967273
599                                           lincRNA     24050286
600                                           lincRNA     24050286
601                                           lincRNA     24050286
602                                           lincRNA     24050286
603                                           lincRNA     24188342
604                                           lincRNA     24188342
605                                           lincRNA     24188342
606                                           lincRNA     24902756
607                                           lincRNA     24902756
608                                           lincRNA     24992817
609                                           lincRNA     24992817
610                                           lincRNA     24992817
611                                           lincRNA     24992817
612                                           lincRNA     24992817
613                                           lincRNA     24992817
614                                           lincRNA     25069906
615                                           lincRNA     25069906
616                                           lincRNA     25069906
617                                           lincRNA     25069906
618                                           lincRNA     25103670
619                                           lincRNA     25103670
620                                           lincRNA     25103670
621                                           lincRNA     25103670
622                                           lincRNA     25103670
623                                           lincRNA     25103670
624                                           lincRNA     25135247
625                                           lincRNA     25135247
626                                           lincRNA     25135247
627                                           lincRNA     25135247
628                                           lincRNA     25333825
629                                           lincRNA     25333825
630                                           lincRNA     25333825
631                                           lincRNA     25333825
632                                           lincRNA     25518338
633                                           lincRNA     25518338
634                                           lincRNA     26217381
635                                           lincRNA     26217381
636                                           lincRNA     26217381
637                                           lincRNA     26217381
638                                           lincRNA     26217381
639                                           lincRNA     26217381
640                                           lincRNA     26217381
641                                           lincRNA     26350634
642                                           lincRNA     26350634
643                                           lincRNA     26460214
644                                           lincRNA     27395787
645                                           lincRNA     27395787
646                                           lincRNA     27395787
647                                           lincRNA     27395787
648                                           lincRNA     27395787
649                                           lincRNA     27448579
650                                           lincRNA     27448579
651                                           lincRNA     27448579
652                                           lincRNA     27448579
653                                           lincRNA     27985295
654                                           lincRNA     27985295
655                                           lincRNA     27985295
656                                           lincRNA     28674848
657                                           lincRNA     28674848
658                                           lincRNA     28674848
659                                           lincRNA     28674848
660                                           lincRNA     28674848
661                                           lincRNA     28674848
662                                           lincRNA     28674848
663                                           lincRNA     28674848
664                                           lincRNA     28674848
665                                           lincRNA     28674848
666                                           lincRNA     28674848
667                                           lincRNA     28674848
668                                           lincRNA     30097836
669                                           lincRNA     30097836
670                                           lincRNA     31659500
671                                           lincRNA     31659500
672                                           lincRNA     31659500
673                                           lincRNA     31736407
674                                           lincRNA     32261585
675                                           lincRNA     32960566
676                                           lincRNA     32960566
677                                           lincRNA     33123703
678                                           lincRNA     33123703
679                                           lincRNA     33123703
680                                           lincRNA     33968573
681                                           lincRNA     33968573
682                                           lincRNA     34325034
683                                           lincRNA     34325034
684                                           lincRNA     34325034
685                                           lincRNA     34325034
686                                           lincRNA     34325034
687                                           lincRNA     34412587
688                                           lincRNA     34426017
689                                           lincRNA     35139222
690                                           lincRNA     35139222
691                                           lincRNA     35732942
692                                           lincRNA     35732942
693                                           lincRNA     36090414
694                                           lincRNA     36090414
695                                           lincRNA     36109690
696                                           lincRNA     36109690
697                                           lincRNA     36637033
698                                           lincRNA     36637033
699                                           lincRNA     36975164
700                                           lincRNA     36975164
701                                           lincRNA     36975164
702                                           lincRNA     36975164
703                                           lincRNA     36975164
704                                           lincRNA     36975164
705                                           lincRNA     36975164
706                                           lincRNA     36975164
707                                           lincRNA     37237744
708                                           lincRNA     37237744
709                                           lincRNA     38238201
710                                           lincRNA     38238201
711                                           lincRNA     38848644
712                                           lincRNA     38848644
713                                           lincRNA     38903905
714                                           lincRNA     38903905
715                                           lincRNA     38956467
716                                           lincRNA     38956467
717                                           lincRNA     38956467
718                                           lincRNA     38956467
719                                           lincRNA     38956467
720                                           lincRNA     38956467
721                                           lincRNA     38956467
722                                           lincRNA     38956467
723                                           lincRNA     38956467
724                                           lincRNA     38956467
725                                           lincRNA     38956467
726                                           lincRNA     38956467
727                                           lincRNA     38956467
728                                           lincRNA     38956467
729                                           lincRNA     38956467
730                                           lincRNA     38956467
731                                           lincRNA     38956467
732                                           lincRNA     38956467
733                                           lincRNA     38956467
734                                           lincRNA     38956467
735                                           lincRNA     38956467
736                                           lincRNA     38956467
737                                           lincRNA     38956467
738                                           lincRNA     38956467
739                                           lincRNA     38956467
740                                           lincRNA     38956467
741                                           lincRNA     38956467
742                                           lincRNA     39006153
743                                           lincRNA     39006153
744                                           lincRNA     39006153
745                                           lincRNA     39011329
746                                           lincRNA     39011329
747                                           lincRNA     39011329
748                                           lincRNA     39029128
749                                           lincRNA     39029128
750                                           lincRNA     39730680
751                                           lincRNA     39730680
752                                           lincRNA     39730680
753                                           lincRNA     39730680
754                                           lincRNA     39730680
755                                           lincRNA     41562958
756                                           lincRNA     41562958
757                                           lincRNA     41562958
758                                           lincRNA     41581319
759                                           lincRNA     41581319
760                                           lincRNA     42782229
761                                           lincRNA     42782229
762                                           lincRNA     42836477
763                                           lincRNA     42836477
764                                           lincRNA     42836477
765                                           lincRNA     43162277
766                                           lincRNA     43162277
767                                           lincRNA     43162277
768                                           lincRNA     43366566
769                                           lincRNA     43366566
770                                           lincRNA     43467298
771                                           lincRNA     43467298
772                                           lincRNA     44176453
773                                           lincRNA     44176453
774                                           lincRNA     44207399
775                                           lincRNA     44207399
776                                           lincRNA     44242081
777                                           lincRNA     44244993
778                                           lincRNA     44348295
779                                           lincRNA     44478493
780                                           lincRNA     44490288
781                                           lincRNA     44490288
782                                           lincRNA     44495519
783                                           lincRNA     44979274
784                                           lincRNA     45101094
785                                           lincRNA     45338665
786                                           lincRNA     45338665
787                                           lincRNA     45404369
788                                           lincRNA     45974953
789                                           lincRNA     46039807
790                                           lincRNA     46039807
791                                           lincRNA     46053105
792                                           lincRNA     46053105
793                                           lincRNA     46057567
794                                           lincRNA     46057567
795                                          misc_RNA      5597490
796                                          misc_RNA      6223580
797                                          misc_RNA      6366055
798                                          misc_RNA      7092716
799                                          misc_RNA      7474494
800                                          misc_RNA      7664011
801                                          misc_RNA      8205940
802                                          misc_RNA      8250149
803                                          misc_RNA      8388987
804                                          misc_RNA      8433174
805                                          misc_RNA     14076038
806                                          misc_RNA     17527247
807                                          misc_RNA     17576906
808                                          misc_RNA     23432282
809                                          misc_RNA     29139384
810                                          misc_RNA     36986851
811                                          misc_RNA     39171560
812                                          misc_RNA     39344628
813                              processed_pseudogene      6008810
814                              processed_pseudogene      6507389
815                              processed_pseudogene      6899280
816                              processed_pseudogene      7130287
817                              processed_pseudogene      7627528
818                              processed_pseudogene      8680934
819                              processed_pseudogene      8701562
820                              processed_pseudogene      9027329
821                              processed_pseudogene      9083101
822                              processed_pseudogene      9088391
823                              processed_pseudogene      9559155
824                              processed_pseudogene      9580415
825                              processed_pseudogene      9810503
826                              processed_pseudogene      9810848
827                              processed_pseudogene     13120807
828                              processed_pseudogene     13654356
829                              processed_pseudogene     13705518
830                              processed_pseudogene     17296596
831                              processed_pseudogene     19621545
832                              processed_pseudogene     19740150
833                              processed_pseudogene     20598163
834                              processed_pseudogene     22136083
835                              processed_pseudogene     22154299
836                              processed_pseudogene     22884000
837                              processed_pseudogene     22884000
838                              processed_pseudogene     22884000
839                              processed_pseudogene     25031529
840                              processed_pseudogene     31453223
841                              processed_pseudogene     32625096
842                              processed_pseudogene     32625096
843                              processed_pseudogene     32841811
844                              processed_pseudogene     39529855
845                              processed_pseudogene     39529855
846                              processed_pseudogene     44686629
847                              processed_transcript     10605716
848                              processed_transcript     10605716
849                              processed_transcript     10605716
850                              processed_transcript     10605716
851                              processed_transcript     10605716
852                              processed_transcript     10605716
853                              processed_transcript     10605716
854                              processed_transcript     10605716
855                              processed_transcript     10605716
856                              processed_transcript     10605716
857                              processed_transcript     10605716
858                              processed_transcript     10605716
859                              processed_transcript     10605716
860                              processed_transcript     10605716
861                              processed_transcript     10605716
862                              processed_transcript     10605716
863                              processed_transcript     10605716
864                              processed_transcript     10605716
865                              processed_transcript     10605716
866                              processed_transcript     10605716
867                              processed_transcript     10605716
868                              processed_transcript     10605716
869                              processed_transcript     10605716
870                              processed_transcript     10605716
871                              processed_transcript     10605716
872                              processed_transcript     10605716
873                              processed_transcript     10605716
874                              processed_transcript     10605716
875                              processed_transcript     10605716
876                              processed_transcript     10605716
877                              processed_transcript     10605716
878                              processed_transcript     10605716
879                              processed_transcript     17633199
880                              processed_transcript     17633199
881                              processed_transcript     17633199
882                              processed_transcript     17633199
883                              processed_transcript     25942686
884                              processed_transcript     25942686
885                              processed_transcript     25942686
886                              processed_transcript     25942686
887                              processed_transcript     25942686
888                              processed_transcript     25942686
889                              processed_transcript     25942686
890                              processed_transcript     25942686
891                              processed_transcript     25942686
892                              processed_transcript     25942686
893                              processed_transcript     25942686
894                              processed_transcript     25942686
895                              processed_transcript     25942686
896                              processed_transcript     25942686
897                              processed_transcript     25942686
898                              processed_transcript     25942686
899                              processed_transcript     34360033
900                              processed_transcript     34360033
901                              processed_transcript     34360033
902                              processed_transcript     34360033
903                              processed_transcript     34360033
904                              processed_transcript     34360033
905                              processed_transcript     45291738
906                              processed_transcript     45291738
907                              processed_transcript     45291738
908                              processed_transcript     45291738
909                              processed_transcript     45291738
910                              processed_transcript     45291738
911                                    protein_coding      5017145
912                                    protein_coding      5017145
913                                    protein_coding      5017145
914                                    protein_coding      5017145
915                                    protein_coding      5040666
916                                    protein_coding      5040666
917                                    protein_coding      5040666
918                                    protein_coding      5040666
919                                    protein_coding      5040666
920                                    protein_coding      5040666
921                                    protein_coding      5040666
922                                    protein_coding      5040666
923                                    protein_coding      5040666
924                                    protein_coding      5040666
925                                    protein_coding      5040666
926                                    protein_coding      5040666
927                                    protein_coding      5040666
928                                    protein_coding      5040666
929                                    protein_coding      5040666
930                                    protein_coding      5040666
931                                    protein_coding      5040666
932                                    protein_coding      5040666
933                                    protein_coding      5040666
934                                    protein_coding      5040666
935                                    protein_coding      5040666
936                                    protein_coding      5040666
937                                    protein_coding      5040666
938                                    protein_coding      5040666
939                                    protein_coding      5040666
940                                    protein_coding      5040666
941                                    protein_coding      5040666
942                                    protein_coding      5040666
943                                    protein_coding      5040666
944                                    protein_coding      5040666
945                                    protein_coding      5040666
946                                    protein_coding      5040666
947                                    protein_coding      5040666
948                                    protein_coding      5128425
949                                    protein_coding      5128425
950                                    protein_coding      5128425
951                                    protein_coding      5128425
952                                    protein_coding      5128425
953                                    protein_coding      5128425
954                                    protein_coding      5128425
955                                    protein_coding      5128425
956                                    protein_coding      5128425
957                                    protein_coding      5128425
958                                    protein_coding      5128425
959                                    protein_coding      5128425
960                                    protein_coding      5128425
961                                    protein_coding      5128425
962                                    protein_coding      5128425
963                                    protein_coding      5128425
964                                    protein_coding      5128425
965                                    protein_coding      5128425
966                                    protein_coding      5128425
967                                    protein_coding      5128425
968                                    protein_coding      5128425
969                                    protein_coding      5128425
970                                    protein_coding      5128425
971                                    protein_coding      5128425
972                                    protein_coding      5128425
973                                    protein_coding      5128425
974                                    protein_coding      5128425
975                                    protein_coding      5128425
976                                    protein_coding      5128425
977                                    protein_coding      5128425
978                                    protein_coding      5128425
979                                    protein_coding      5128425
980                                    protein_coding      5128425
981                                    protein_coding      5128425
982                                    protein_coding      5128425
983                                    protein_coding      5128425
984                                    protein_coding      5128425
985                                    protein_coding      5128425
986                                    protein_coding      5128425
987                                    protein_coding      5128425
988                                    protein_coding      5128425
989                                    protein_coding      5128425
990                                    protein_coding      5128425
991                                    protein_coding      5128425
992                                    protein_coding      5128425
993                                    protein_coding      5128425
994                                    protein_coding      5128425
995                                    protein_coding      5128425
996                                    protein_coding      5128425
997                                    protein_coding      5128425
998                                    protein_coding      5128425
999                                    protein_coding      5128425
1000                                   protein_coding      5128425
1001                                   protein_coding      5128425
1002                                   protein_coding      5128425
1003                                   protein_coding      5133805
1004                                   protein_coding      5133805
1005                                   protein_coding      5133805
1006                                   protein_coding      5133805
1007                                   protein_coding      5133805
1008                                   protein_coding      5133805
1009                                   protein_coding      5133805
1010                                   protein_coding      5154734
1011                                   protein_coding      5154734
1012                                   protein_coding      5154734
1013                                   protein_coding      5154734
1014                                   protein_coding      5154734
1015                                   protein_coding      5154734
1016                                   protein_coding      5154734
1017                                   protein_coding      5154734
1018                                   protein_coding      5154734
1019                                   protein_coding      5154734
1020                                   protein_coding      5154734
1021                                   protein_coding      5154734
1022                                   protein_coding      5154734
1023                                   protein_coding      5154734
1024                                   protein_coding      5154734
1025                                   protein_coding      5154734
1026                                   protein_coding      5154734
1027                                   protein_coding      5154734
1028                                   protein_coding      5154734
1029                                   protein_coding      5154734
1030                                   protein_coding      5154734
1031                                   protein_coding      5154734
1032                                   protein_coding      5154734
1033                                   protein_coding      5154734
1034                                   protein_coding      5154734
1035                                   protein_coding      5154734
1036                                   protein_coding      5154734
1037                                   protein_coding      5154734
1038                                   protein_coding      5154734
1039                                   protein_coding      5154734
1040                                   protein_coding      5154734
1041                                   protein_coding      5154734
1042                                   protein_coding      5154734
1043                                   protein_coding      5154734
1044                                   protein_coding      5154734
1045                                   protein_coding      5154734
1046                                   protein_coding      5154734
1047                                   protein_coding      5154734
1048                                   protein_coding      5154734
1049                                   protein_coding      5154734
1050                                   protein_coding      5154734
1051                                   protein_coding      5154734
1052                                   protein_coding      5154734
1053                                   protein_coding      5154734
1054                                   protein_coding      5154734
1055                                   protein_coding      5154734
1056                                   protein_coding      5154734
1057                                   protein_coding      5154734
1058                                   protein_coding      5154734
1059                                   protein_coding      5154734
1060                                   protein_coding      5154734
1061                                   protein_coding      5165472
1062                                   protein_coding      5165472
1063                                   protein_coding      5165472
1064                                   protein_coding      5165472
1065                                   protein_coding      5165472
1066                                   protein_coding      5165472
1067                                   protein_coding      5973383
1068                                   protein_coding      6123739
1069                                   protein_coding      6123739
1070                                   protein_coding      6123739
1071                                   protein_coding      6123739
1072                                   protein_coding      6123739
1073                                   protein_coding      6123739
1074                                   protein_coding      6123739
1075                                   protein_coding      6123739
1076                                   protein_coding      6123739
1077                                   protein_coding      6123739
1078                                   protein_coding      6123739
1079                                   protein_coding      6123739
1080                                   protein_coding      6123739
1081                                   protein_coding      6123739
1082                                   protein_coding      6123739
1083                                   protein_coding      6123739
1084                                   protein_coding      6123739
1085                                   protein_coding      6564489
1086                                   protein_coding      6564489
1087                                   protein_coding      6564489
1088                                   protein_coding      6564489
1089                                   protein_coding      6564489
1090                                   protein_coding      6564489
1091                                   protein_coding      6564489
1092                                   protein_coding      6564489
1093                                   protein_coding      6564489
1094                                   protein_coding      6564489
1095                                   protein_coding      6564489
1096                                   protein_coding      7770591
1097                                   protein_coding      7793954
1098                                   protein_coding      7793954
1099                                   protein_coding     14658821
1100                                   protein_coding     14658821
1101                                   protein_coding     14658821
1102                                   protein_coding     14658821
1103                                   protein_coding     14658821
1104                                   protein_coding     14658821
1105                                   protein_coding     14658821
1106                                   protein_coding     14658821
1107                                   protein_coding     14658821
1108                                   protein_coding     14658821
1109                                   protein_coding     14658821
1110                                   protein_coding     14658821
1111                                   protein_coding     14658821
1112                                   protein_coding     14658821
1113                                   protein_coding     14658821
1114                                   protein_coding     14658821
1115                                   protein_coding     14658821
1116                                   protein_coding     14658821
1117                                   protein_coding     14658821
1118                                   protein_coding     32612281
1119                                   protein_coding     32612281
1120                                   protein_coding     32612281
1121                                   protein_coding     32612281
1122                                   protein_coding     32612281
1123                                   protein_coding     32612281
1124                                   protein_coding     32612281
1125                                   protein_coding     32612281
1126                                   protein_coding     32612281
1127                                   protein_coding     32612281
1128                                   protein_coding     32612281
1129                                   protein_coding     32612281
1130                                   protein_coding     32612281
1131                                   protein_coding     32612281
1132                                   protein_coding     32612281
1133                                   protein_coding     33283212
1134                                   protein_coding     33283212
1135                                   protein_coding     33283212
1136                                   protein_coding     33283212
1137                                   protein_coding     33283212
1138                                   protein_coding     33283212
1139                                   protein_coding     33283212
1140                                   protein_coding     33283212
1141                                   protein_coding     33283212
1142                                   protein_coding     33283212
1143                                   protein_coding     33283212
1144                                   protein_coding     33283212
1145                                   protein_coding     33931607
1146                                   protein_coding     33931607
1147                                   protein_coding     33931607
1148                                   protein_coding     33931607
1149                                   protein_coding     33931607
1150                                   protein_coding     33931607
1151                                   protein_coding     33931607
1152                                   protein_coding     33931607
1153                                   protein_coding     34423966
1154                                   protein_coding     34423966
1155                                       pseudogene     43748468
1156                                       pseudogene     43748468
1157                                   sense_intronic     29060095
1158                                   sense_intronic     29060095
1159                                   sense_intronic     29359453
1160                                   sense_intronic     36126640
1161                                   sense_intronic     36126640
1162                                   sense_intronic     36126640
1163                                   sense_intronic     36126640
1164                                   sense_intronic     36126640
1165                                   sense_intronic     36126640
1166                                   sense_intronic     37101343
1167                                   sense_intronic     41877613
1168                                   sense_intronic     41877613
1169                                   sense_intronic     41877613
1170                                   sense_intronic     42497443
1171                                   sense_intronic     42497443
1172                                   sense_intronic     42497443
1173                                   sense_intronic     42509661
1174                                   sense_intronic     42509661
1175                                   sense_intronic     42509661
1176                                   sense_intronic     42509661
1177                                   sense_intronic     44930112
1178                                   sense_intronic     45873345
1179                                sense_overlapping     18486599
1180                                sense_overlapping     18486599
1181                                sense_overlapping     36362040
1182                                sense_overlapping     36362040
1183                                sense_overlapping     39726085
1184                                sense_overlapping     39726085
1185                                sense_overlapping     39726085
1186                                sense_overlapping     44330221
1187                                sense_overlapping     44330221
1188                                sense_overlapping     44330221
1189                                sense_overlapping     44330221
1190                                sense_overlapping     44330221
1191                                sense_overlapping     45919483
1192                                sense_overlapping     45919483
1193                                sense_overlapping     45919483
1194                                           snoRNA      7826225
1195                                           snoRNA      9908010
1196                                           snoRNA     16284768
1197                                           snoRNA     29180639
1198                                           snoRNA     31664482
1199                                           snoRNA     32538434
1200                                           snoRNA     32841995
1201                                           snoRNA     34456237
1202                                           snoRNA     38894867
1203                                           snoRNA     40513279
1204                                           snoRNA     41539326
1205                                           snoRNA     41882300
1206                                           snoRNA     44437175
1207                                           snoRNA     44439110
1208                                            snRNA      9647000
1209                                            snRNA     28743291
1210                                              TEC      5705637
1211                                              TEC      6036093
1212                                              TEC      6520670
1213                                              TEC      7137789
1214                                              TEC      8103706
1215                                              TEC     10029855
1216                                              TEC     13681138
1217                                              TEC     15052379
1218                                              TEC     15346738
1219                                              TEC     16527019
1220                                              TEC     17707455
1221                                              TEC     18917429
1222                                              TEC     25372043
1223                                              TEC     32791504
1224                                              TEC     36487760
1225                 transcribed_processed_pseudogene     10119309
1226                 transcribed_processed_pseudogene     10119309
1227                 transcribed_processed_pseudogene     10119309
1228                 transcribed_processed_pseudogene     10119309
1229                 transcribed_processed_pseudogene     10119309
1230                 transcribed_processed_pseudogene     10119309
1231                 transcribed_processed_pseudogene     10119309
1232                 transcribed_processed_pseudogene     10119309
1233                 transcribed_processed_pseudogene     10119309
1234                 transcribed_processed_pseudogene     10119309
1235                 transcribed_processed_pseudogene     10119309
1236                 transcribed_processed_pseudogene     10119309
1237                 transcribed_processed_pseudogene     38206080
1238                 transcribed_processed_pseudogene     38206080
1239                           unprocessed_pseudogene      6276532
1240                           unprocessed_pseudogene      6276532
1241                           unprocessed_pseudogene      6276532
1242                           unprocessed_pseudogene      6276532
1243                           unprocessed_pseudogene      6276532
1244                           unprocessed_pseudogene      6276532
1245                           unprocessed_pseudogene      6276532
1246                           unprocessed_pseudogene      6276532
1247                           unprocessed_pseudogene      6276532
1248                           unprocessed_pseudogene      6276532
1249                           unprocessed_pseudogene      6312948
1250                           unprocessed_pseudogene      6312948
1251                           unprocessed_pseudogene      6312948
1252                           unprocessed_pseudogene      6312948
1253                           unprocessed_pseudogene      6312948
1254                           unprocessed_pseudogene      6312948
1255                           unprocessed_pseudogene      6679962
1256                           unprocessed_pseudogene      6679962
1257                           unprocessed_pseudogene      6679962
1258                           unprocessed_pseudogene      6679962
1259                           unprocessed_pseudogene      6679962
1260                           unprocessed_pseudogene      6679962
1261                           unprocessed_pseudogene      6679962
1262                           unprocessed_pseudogene      6679962
1263                           unprocessed_pseudogene      6679962
1264                           unprocessed_pseudogene      6716361
1265                           unprocessed_pseudogene      6716361
1266                           unprocessed_pseudogene      6716361
1267                           unprocessed_pseudogene      6716361
1268                           unprocessed_pseudogene      6716361
1269                           unprocessed_pseudogene      6716361
1270                           unprocessed_pseudogene      6716361
1271                           unprocessed_pseudogene      6716361
1272                           unprocessed_pseudogene      7007022
1273                           unprocessed_pseudogene      7007022
1274                           unprocessed_pseudogene      7007022
1275                           unprocessed_pseudogene      7007022
1276                           unprocessed_pseudogene      7007022
1277                           unprocessed_pseudogene      7007022
1278                           unprocessed_pseudogene      7007022
1279                           unprocessed_pseudogene      7007022
1280                           unprocessed_pseudogene      7007022
1281                           unprocessed_pseudogene      7388799
1282                           unprocessed_pseudogene      7388799
1283                           unprocessed_pseudogene      7388799
1284                           unprocessed_pseudogene      7388799
1285                           unprocessed_pseudogene      7388799
1286                           unprocessed_pseudogene      7388799
1287                           unprocessed_pseudogene      7388799
1288                           unprocessed_pseudogene      7388799
1289                           unprocessed_pseudogene      7388799
1290                           unprocessed_pseudogene      7425839
1291                           unprocessed_pseudogene      7425839
1292                           unprocessed_pseudogene      7425839
1293                           unprocessed_pseudogene      7425839
1294                           unprocessed_pseudogene      7425839
1295                           unprocessed_pseudogene      7425839
1296                           unprocessed_pseudogene      7425839
1297                           unprocessed_pseudogene      7425839
1298                           unprocessed_pseudogene      7425839
1299                           unprocessed_pseudogene      7425839
1300                           unprocessed_pseudogene      8880976
1301                           unprocessed_pseudogene      8880976
1302                           unprocessed_pseudogene      8880976
1303                           unprocessed_pseudogene      8880976
1304                           unprocessed_pseudogene      8880976
1305                           unprocessed_pseudogene      8880976
1306                           unprocessed_pseudogene      8880976
1307                           unprocessed_pseudogene      8880976
1308                           unprocessed_pseudogene      8880976
1309                           unprocessed_pseudogene      9059060
1310                           unprocessed_pseudogene      9059060
1311                           unprocessed_pseudogene      9376645
1312                           unprocessed_pseudogene      9376645
1313                           unprocessed_pseudogene      9376645
1314                           unprocessed_pseudogene      9376645
1315                           unprocessed_pseudogene     10137004
1316                           unprocessed_pseudogene     10397778
1317                           unprocessed_pseudogene     10640338
1318                           unprocessed_pseudogene     30526701
1319                           unprocessed_pseudogene     30762882
1320         AATBC                          antisense     43812567
1321         AATBC                          antisense     43812567
1322         AATBC                          antisense     43812567
1323         AATBC                          antisense     43812567
1324         AATBC                          antisense     43812567
1325         AATBC                          antisense     43812567
1326         AATBC                          antisense     43812567
1327         AATBC                          antisense     43812567
1328        ABCC13 transcribed_unprocessed_pseudogene     14362754
1329        ABCC13 transcribed_unprocessed_pseudogene     14362754
1330        ABCC13 transcribed_unprocessed_pseudogene     14362754
1331        ABCC13 transcribed_unprocessed_pseudogene     14362754
1332        ABCC13 transcribed_unprocessed_pseudogene     14362754
1333        ABCC13 transcribed_unprocessed_pseudogene     14362754
1334        ABCC13 transcribed_unprocessed_pseudogene     14362754
1335        ABCC13 transcribed_unprocessed_pseudogene     14362754
1336        ABCC13 transcribed_unprocessed_pseudogene     14362754
1337        ABCC13 transcribed_unprocessed_pseudogene     14362754
1338        ABCC13 transcribed_unprocessed_pseudogene     14362754
1339        ABCC13 transcribed_unprocessed_pseudogene     14362754
1340        ABCC13 transcribed_unprocessed_pseudogene     14362754
1341        ABCC13 transcribed_unprocessed_pseudogene     14362754
1342        ABCC13 transcribed_unprocessed_pseudogene     14362754
1343        ABCC13 transcribed_unprocessed_pseudogene     14362754
1344        ABCC13 transcribed_unprocessed_pseudogene     14362754
1345        ABCC13 transcribed_unprocessed_pseudogene     14362754
1346        ABCC13 transcribed_unprocessed_pseudogene     14362754
1347        ABCC13 transcribed_unprocessed_pseudogene     14362754
1348        ABCC13 transcribed_unprocessed_pseudogene     14362754
1349        ABCC13 transcribed_unprocessed_pseudogene     14362754
1350        ABCC13 transcribed_unprocessed_pseudogene     14362754
1351        ABCC13 transcribed_unprocessed_pseudogene     14362754
1352        ABCC13 transcribed_unprocessed_pseudogene     14362754
1353        ABCC13 transcribed_unprocessed_pseudogene     14362754
1354        ABCC13 transcribed_unprocessed_pseudogene     14362754
1355        ABCC13 transcribed_unprocessed_pseudogene     14362754
1356        ABCC13 transcribed_unprocessed_pseudogene     14362754
1357        ABCC13 transcribed_unprocessed_pseudogene     14362754
1358        ABCC13 transcribed_unprocessed_pseudogene     14362754
1359        ABCC13 transcribed_unprocessed_pseudogene     14362754
1360        ABCC13 transcribed_unprocessed_pseudogene     14362754
1361        ABCC13 transcribed_unprocessed_pseudogene     14362754
1362        ABCC13 transcribed_unprocessed_pseudogene     14362754
1363        ABCC13 transcribed_unprocessed_pseudogene     14362754
1364        ABCC13 transcribed_unprocessed_pseudogene     14362754
1365        ABCC13 transcribed_unprocessed_pseudogene     14362754
1366        ABCC13 transcribed_unprocessed_pseudogene     14362754
1367        ABCC13 transcribed_unprocessed_pseudogene     14362754
1368        ABCC13 transcribed_unprocessed_pseudogene     14362754
1369        ABCC13 transcribed_unprocessed_pseudogene     14362754
1370        ABCC13 transcribed_unprocessed_pseudogene     14362754
1371        ABCC13 transcribed_unprocessed_pseudogene     14362754
1372        ABCC13 transcribed_unprocessed_pseudogene     14362754
1373        ABCC13 transcribed_unprocessed_pseudogene     14362754
1374        ABCC13 transcribed_unprocessed_pseudogene     14362754
1375        ABCC13 transcribed_unprocessed_pseudogene     14362754
1376        ABCC13 transcribed_unprocessed_pseudogene     14362754
1377        ABCC13 transcribed_unprocessed_pseudogene     14362754
1378        ABCC13 transcribed_unprocessed_pseudogene     14362754
1379        ABCC13 transcribed_unprocessed_pseudogene     14362754
1380        ABCC13 transcribed_unprocessed_pseudogene     14362754
1381        ABCC13 transcribed_unprocessed_pseudogene     14362754
1382        ABCC13 transcribed_unprocessed_pseudogene     14362754
1383        ABCC13 transcribed_unprocessed_pseudogene     14362754
1384        ABCC13 transcribed_unprocessed_pseudogene     14362754
1385        ABCC13 transcribed_unprocessed_pseudogene     14362754
1386        ABCC13 transcribed_unprocessed_pseudogene     14362754
1387        ABCC13 transcribed_unprocessed_pseudogene     14362754
1388        ABCC13 transcribed_unprocessed_pseudogene     14362754
1389        ABCC13 transcribed_unprocessed_pseudogene     14362754
1390        ABCC13 transcribed_unprocessed_pseudogene     14362754
1391         ABCG1                     protein_coding     42297244
1392         ABCG1                     protein_coding     42297244
1393         ABCG1                     protein_coding     42297244
1394         ABCG1                     protein_coding     42297244
1395         ABCG1                     protein_coding     42297244
1396         ABCG1                     protein_coding     42297244
1397         ABCG1                     protein_coding     42297244
1398         ABCG1                     protein_coding     42297244
1399         ABCG1                     protein_coding     42297244
1400         ABCG1                     protein_coding     42297244
1401         ABCG1                     protein_coding     42297244
1402         ABCG1                     protein_coding     42297244
1403         ABCG1                     protein_coding     42297244
1404         ABCG1                     protein_coding     42297244
1405         ABCG1                     protein_coding     42297244
1406         ABCG1                     protein_coding     42297244
1407         ABCG1                     protein_coding     42297244
1408         ABCG1                     protein_coding     42297244
1409         ABCG1                     protein_coding     42297244
1410         ABCG1                     protein_coding     42297244
1411         ABCG1                     protein_coding     42297244
1412         ABCG1                     protein_coding     42297244
1413         ABCG1                     protein_coding     42297244
1414         ABCG1                     protein_coding     42297244
1415         ABCG1                     protein_coding     42297244
1416         ABCG1                     protein_coding     42297244
1417         ABCG1                     protein_coding     42297244
1418         ABCG1                     protein_coding     42297244
1419         ABCG1                     protein_coding     42297244
1420         ABCG1                     protein_coding     42297244
1421         ABCG1                     protein_coding     42297244
1422         ABCG1                     protein_coding     42297244
1423         ABCG1                     protein_coding     42297244
1424         ABCG1                     protein_coding     42297244
1425         ABCG1                     protein_coding     42297244
1426         ABCG1                     protein_coding     42297244
1427         ABCG1                     protein_coding     42297244
1428         ABCG1                     protein_coding     42297244
1429         ABCG1                     protein_coding     42297244
1430         ABCG1                     protein_coding     42297244
1431         ABCG1                     protein_coding     42297244
1432         ABCG1                     protein_coding     42297244
1433         ABCG1                     protein_coding     42297244
1434         ABCG1                     protein_coding     42297244
1435         ABCG1                     protein_coding     42297244
1436         ABCG1                     protein_coding     42297244
1437         ABCG1                     protein_coding     42297244
1438         ABCG1                     protein_coding     42297244
1439         ABCG1                     protein_coding     42297244
1440         ABCG1                     protein_coding     42297244
1441         ABCG1                     protein_coding     42297244
1442         ABCG1                     protein_coding     42297244
1443         ABCG1                     protein_coding     42297244
1444         ABCG1                     protein_coding     42297244
1445         ABCG1                     protein_coding     42297244
1446         ABCG1                     protein_coding     42297244
1447         ABCG1                     protein_coding     42297244
1448         ABCG1                     protein_coding     42297244
1449         ABCG1                     protein_coding     42297244
1450         ABCG1                     protein_coding     42297244
1451         ABCG1                     protein_coding     42297244
1452         ABCG1                     protein_coding     42297244
1453         ABCG1                     protein_coding     42297244
1454         ABCG1                     protein_coding     42297244
1455         ABCG1                     protein_coding     42297244
1456         ABCG1                     protein_coding     42297244
1457         ABCG1                     protein_coding     42297244
1458         ABCG1                     protein_coding     42297244
1459         ABCG1                     protein_coding     42297244
1460         ABCG1                     protein_coding     42297244
1461         ABCG1                     protein_coding     42297244
1462         ABCG1                     protein_coding     42297244
1463         ABCG1                     protein_coding     42297244
1464         ABCG1                     protein_coding     42297244
1465         ABCG1                     protein_coding     42297244
1466         ABCG1                     protein_coding     42297244
1467         ABCG1                     protein_coding     42297244
1468         ABCG1                     protein_coding     42297244
1469         ABCG1                     protein_coding     42297244
1470         ABCG1                     protein_coding     42297244
1471         ABCG1                     protein_coding     42297244
1472         ABCG1                     protein_coding     42297244
1473         ABCG1                     protein_coding     42297244
1474         ABCG1                     protein_coding     42297244
1475         ABCG1                     protein_coding     42297244
1476         ABCG1                     protein_coding     42297244
1477         ABCG1                     protein_coding     42297244
1478         ABCG1                     protein_coding     42297244
1479         ABCG1                     protein_coding     42297244
1480         ABCG1                     protein_coding     42297244
1481         ABCG1                     protein_coding     42297244
1482         ABCG1                     protein_coding     42297244
1483         ABCG1                     protein_coding     42297244
1484         ABCG1                     protein_coding     42297244
1485         ABCG1                     protein_coding     42297244
1486         ABCG1                     protein_coding     42297244
1487         ABCG1                     protein_coding     42297244
1488         ABCG1                     protein_coding     42297244
1489         ABCG1                     protein_coding     42297244
1490         ABCG1                     protein_coding     42297244
1491         ABCG1                     protein_coding     42297244
1492         ABCG1                     protein_coding     42297244
1493         ABCG1                     protein_coding     42297244
1494         ABCG1                     protein_coding     42297244
1495         ABCG1                     protein_coding     42297244
1496         ABCG1                     protein_coding     42297244
1497         ABCG1                     protein_coding     42297244
1498         ABCG1                     protein_coding     42297244
1499         ABCG1                     protein_coding     42297244
1500         ABCG1                     protein_coding     42297244
1501         ABCG1                     protein_coding     42297244
1502         ABCG1                     protein_coding     42297244
1503         ABCG1                     protein_coding     42297244
1504         ABCG1                     protein_coding     42297244
1505         ABCG1                     protein_coding     42297244
1506         ABCG1                     protein_coding     42297244
1507         ABCG1                     protein_coding     42297244
1508         ABCG1                     protein_coding     42297244
1509         ABCG1                     protein_coding     42297244
1510         ABCG1                     protein_coding     42297244
1511         ABCG1                     protein_coding     42297244
1512         ABCG1                     protein_coding     42297244
1513         ABCG1                     protein_coding     42297244
1514         ABCG1                     protein_coding     42297244
1515         ABCG1                     protein_coding     42297244
1516         ABCG1                     protein_coding     42297244
1517         ABCG1                     protein_coding     42297244
1518         ABCG1                     protein_coding     42297244
1519         ABCG1                     protein_coding     42297244
1520         ABCG1                     protein_coding     42297244
1521         ABCG1                     protein_coding     42297244
1522         ABCG1                     protein_coding     42297244
1523         ABCG1                     protein_coding     42297244
1524         ABCG1                     protein_coding     42297244
1525         ABCG1                     protein_coding     42297244
1526         ABCG1                     protein_coding     42297244
1527       ADAMTS1                     protein_coding     26845409
1528       ADAMTS1                     protein_coding     26845409
1529       ADAMTS1                     protein_coding     26845409
1530       ADAMTS1                     protein_coding     26845409
1531       ADAMTS1                     protein_coding     26845409
1532       ADAMTS1                     protein_coding     26845409
1533       ADAMTS1                     protein_coding     26845409
1534       ADAMTS1                     protein_coding     26845409
1535       ADAMTS1                     protein_coding     26845409
1536       ADAMTS1                     protein_coding     26845409
1537       ADAMTS1                     protein_coding     26845409
1538       ADAMTS1                     protein_coding     26845409
1539       ADAMTS1                     protein_coding     26845409
1540       ADAMTS1                     protein_coding     26845409
1541       ADAMTS1                     protein_coding     26845409
1542       ADAMTS1                     protein_coding     26845409
1543       ADAMTS1                     protein_coding     26845409
1544       ADAMTS1                     protein_coding     26845409
1545       ADAMTS1                     protein_coding     26845409
1546       ADAMTS1                     protein_coding     26845409
1547       ADAMTS1                     protein_coding     26845409
1548       ADAMTS1                     protein_coding     26845409
1549       ADAMTS1                     protein_coding     26845409
1550       ADAMTS1                     protein_coding     26845409
1551       ADAMTS1                     protein_coding     26845409
1552       ADAMTS1                     protein_coding     26845409
1553       ADAMTS1                     protein_coding     26845409
1554       ADAMTS1                     protein_coding     26845409
1555       ADAMTS5                     protein_coding     26966513
1556       ADAMTS5                     protein_coding     26966513
1557       ADAMTS5                     protein_coding     26966513
1558       ADAMTS5                     protein_coding     26966513
1559       ADAMTS5                     protein_coding     26966513
1560       ADAMTS5                     protein_coding     26966513
1561       ADAMTS5                     protein_coding     26966513
1562       ADAMTS5                     protein_coding     26966513
1563        ADARB1                     protein_coding     45226560
1564        ADARB1                     protein_coding     45226560
1565        ADARB1                     protein_coding     45226560
1566        ADARB1                     protein_coding     45226560
1567        ADARB1                     protein_coding     45226560
1568        ADARB1                     protein_coding     45226560
1569        ADARB1                     protein_coding     45226560
1570        ADARB1                     protein_coding     45226560
1571        ADARB1                     protein_coding     45226560
1572        ADARB1                     protein_coding     45226560
1573        ADARB1                     protein_coding     45226560
1574        ADARB1                     protein_coding     45226560
1575        ADARB1                     protein_coding     45226560
1576        ADARB1                     protein_coding     45226560
1577        ADARB1                     protein_coding     45226560
1578        ADARB1                     protein_coding     45226560
1579        ADARB1                     protein_coding     45226560
1580        ADARB1                     protein_coding     45226560
1581        ADARB1                     protein_coding     45226560
1582        ADARB1                     protein_coding     45226560
1583        ADARB1                     protein_coding     45226560
1584        ADARB1                     protein_coding     45226560
1585        ADARB1                     protein_coding     45226560
1586        ADARB1                     protein_coding     45226560
1587        ADARB1                     protein_coding     45226560
1588        ADARB1                     protein_coding     45226560
1589        ADARB1                     protein_coding     45226560
1590        ADARB1                     protein_coding     45226560
1591        ADARB1                     protein_coding     45226560
1592        ADARB1                     protein_coding     45226560
1593        ADARB1                     protein_coding     45226560
1594        ADARB1                     protein_coding     45226560
1595        ADARB1                     protein_coding     45226560
1596        ADARB1                     protein_coding     45226560
1597        ADARB1                     protein_coding     45226560
1598        ADARB1                     protein_coding     45226560
1599        ADARB1                     protein_coding     45226560
1600        ADARB1                     protein_coding     45226560
1601        ADARB1                     protein_coding     45226560
1602        ADARB1                     protein_coding     45226560
1603        ADARB1                     protein_coding     45226560
1604        ADARB1                     protein_coding     45226560
1605        ADARB1                     protein_coding     45226560
1606        ADARB1                     protein_coding     45226560
1607        ADARB1                     protein_coding     45226560
1608        ADARB1                     protein_coding     45226560
1609        ADARB1                     protein_coding     45226560
1610        ADARB1                     protein_coding     45226560
1611        ADARB1                     protein_coding     45226560
1612        ADARB1                     protein_coding     45226560
1613        ADARB1                     protein_coding     45226560
1614        ADARB1                     protein_coding     45226560
1615        ADARB1                     protein_coding     45226560
1616        ADARB1                     protein_coding     45226560
1617        ADARB1                     protein_coding     45226560
1618        ADARB1                     protein_coding     45226560
1619        ADARB1                     protein_coding     45226560
1620        ADARB1                     protein_coding     45226560
1621        ADARB1                     protein_coding     45226560
1622        ADARB1                     protein_coding     45226560
1623        ADARB1                     protein_coding     45226560
1624        ADARB1                     protein_coding     45226560
1625        ADARB1                     protein_coding     45226560
1626        ADARB1                     protein_coding     45226560
1627        ADARB1                     protein_coding     45226560
1628        ADARB1                     protein_coding     45226560
1629        ADARB1                     protein_coding     45226560
1630        ADARB1                     protein_coding     45226560
1631        ADARB1                     protein_coding     45226560
1632        ADARB1                     protein_coding     45226560
1633        ADARB1                     protein_coding     45226560
1634        ADARB1                     protein_coding     45226560
1635        ADARB1                     protein_coding     45226560
1636        ADARB1                     protein_coding     45226560
1637        ADARB1                     protein_coding     45226560
1638        ADARB1                     protein_coding     45226560
1639        ADARB1                     protein_coding     45226560
1640        ADARB1                     protein_coding     45226560
1641        ADARB1                     protein_coding     45226560
1642        ADARB1                     protein_coding     45226560
1643        ADARB1                     protein_coding     45226560
1644        ADARB1                     protein_coding     45226560
1645        ADARB1                     protein_coding     45226560
1646        ADARB1                     protein_coding     45226560
1647        ADARB1                     protein_coding     45226560
1648        ADARB1                     protein_coding     45226560
1649        ADARB1                     protein_coding     45226560
1650        ADARB1                     protein_coding     45226560
1651        ADARB1                     protein_coding     45226560
1652        ADARB1                     protein_coding     45226560
1653        ADARB1                     protein_coding     45226560
1654        ADARB1                     protein_coding     45226560
1655        ADARB1                     protein_coding     45226560
1656        ADARB1                     protein_coding     45226560
1657        ADARB1                     protein_coding     45226560
1658        ADARB1                     protein_coding     45226560
1659        ADARB1                     protein_coding     45226560
1660        ADARB1                     protein_coding     45226560
1661        ADARB1                     protein_coding     45226560
1662        ADARB1                     protein_coding     45226560
1663        ADARB1                     protein_coding     45226560
1664        ADARB1                     protein_coding     45226560
1665        ADARB1                     protein_coding     45226560
1666        ADARB1                     protein_coding     45226560
1667        ADARB1                     protein_coding     45226560
1668        ADARB1                     protein_coding     45226560
1669        ADARB1                     protein_coding     45226560
1670        ADARB1                     protein_coding     45226560
1671        ADARB1                     protein_coding     45226560
1672        ADARB1                     protein_coding     45226560
1673        ADARB1                     protein_coding     45226560
1674        ADARB1                     protein_coding     45226560
1675        ADARB1                     protein_coding     45226560
1676        ADARB1                     protein_coding     45226560
1677        ADARB1                     protein_coding     45226560
1678        ADARB1                     protein_coding     45226560
1679        ADARB1                     protein_coding     45226560
1680        ADARB1                     protein_coding     45226560
1681        ADARB1                     protein_coding     45226560
1682        ADARB1                     protein_coding     45226560
1683        ADARB1                     protein_coding     45226560
1684        ADARB1                     protein_coding     45226560
1685        ADARB1                     protein_coding     45226560
1686        ADARB1                     protein_coding     45226560
1687        ADARB1                     protein_coding     45226560
1688        AGPAT3                     protein_coding     43986536
1689        AGPAT3                     protein_coding     43986536
1690        AGPAT3                     protein_coding     43986536
1691        AGPAT3                     protein_coding     43986536
1692        AGPAT3                     protein_coding     43986536
1693        AGPAT3                     protein_coding     43986536
1694        AGPAT3                     protein_coding     43986536
1695        AGPAT3                     protein_coding     43986536
1696        AGPAT3                     protein_coding     43986536
1697        AGPAT3                     protein_coding     43986536
1698        AGPAT3                     protein_coding     43986536
1699        AGPAT3                     protein_coding     43986536
1700        AGPAT3                     protein_coding     43986536
1701        AGPAT3                     protein_coding     43986536
1702        AGPAT3                     protein_coding     43986536
1703        AGPAT3                     protein_coding     43986536
1704        AGPAT3                     protein_coding     43986536
1705        AGPAT3                     protein_coding     43986536
1706        AGPAT3                     protein_coding     43986536
1707        AGPAT3                     protein_coding     43986536
1708        AGPAT3                     protein_coding     43986536
1709        AGPAT3                     protein_coding     43986536
1710        AGPAT3                     protein_coding     43986536
1711        AGPAT3                     protein_coding     43986536
1712        AGPAT3                     protein_coding     43986536
1713        AGPAT3                     protein_coding     43986536
1714        AGPAT3                     protein_coding     43986536
1715        AGPAT3                     protein_coding     43986536
1716        AGPAT3                     protein_coding     43986536
1717        AGPAT3                     protein_coding     43986536
1718        AGPAT3                     protein_coding     43986536
1719        AGPAT3                     protein_coding     43986536
1720        AGPAT3                     protein_coding     43986536
1721        AGPAT3                     protein_coding     43986536
1722        AGPAT3                     protein_coding     43986536
1723        AGPAT3                     protein_coding     43986536
1724        AGPAT3                     protein_coding     43986536
1725        AGPAT3                     protein_coding     43986536
1726        AGPAT3                     protein_coding     43986536
1727        AGPAT3                     protein_coding     43986536
1728        AGPAT3                     protein_coding     43986536
1729        AGPAT3                     protein_coding     43986536
1730        AGPAT3                     protein_coding     43986536
1731        AGPAT3                     protein_coding     43986536
1732        AGPAT3                     protein_coding     43986536
1733        AGPAT3                     protein_coding     43986536
1734        AGPAT3                     protein_coding     43986536
1735        AGPAT3                     protein_coding     43986536
1736        AGPAT3                     protein_coding     43986536
1737        AGPAT3                     protein_coding     43986536
1738        AGPAT3                     protein_coding     43986536
1739        AGPAT3                     protein_coding     43986536
1740        AGPAT3                     protein_coding     43986536
1741        AGPAT3                     protein_coding     43986536
1742        AGPAT3                     protein_coding     43986536
1743        AGPAT3                     protein_coding     43986536
1744        AGPAT3                     protein_coding     43986536
1745        AGPAT3                     protein_coding     43986536
1746        AGPAT3                     protein_coding     43986536
1747        AGPAT3                     protein_coding     43986536
1748        AGPAT3                     protein_coding     43986536
1749        AGPAT3                     protein_coding     43986536
1750        AGPAT3                     protein_coding     43986536
1751        AGPAT3                     protein_coding     43986536
1752        AGPAT3                     protein_coding     43986536
1753        AGPAT3                     protein_coding     43986536
1754        AGPAT3                     protein_coding     43986536
1755        AGPAT3                     protein_coding     43986536
1756        AGPAT3                     protein_coding     43986536
1757        AGPAT3                     protein_coding     43986536
1758        AGPAT3                     protein_coding     43986536
1759        AGPAT3                     protein_coding     43986536
1760        AGPAT3                     protein_coding     43986536
1761        AGPAT3                     protein_coding     43986536
1762        AGPAT3                     protein_coding     43986536
1763        AGPAT3                     protein_coding     43986536
1764        AGPAT3                     protein_coding     43986536
1765        AGPAT3                     protein_coding     43986536
1766        AGPAT3                     protein_coding     43986536
1767        AGPAT3                     protein_coding     43986536
1768        AGPAT3                     protein_coding     43986536
1769        AGPAT3                     protein_coding     43986536
1770        AGPAT3                     protein_coding     43986536
1771        AGPAT3                     protein_coding     43986536
1772        AGPAT3                     protein_coding     43986536
1773        AGPAT3                     protein_coding     43986536
1774        AGPAT3                     protein_coding     43986536
1775        AGPAT3                     protein_coding     43986536
1776        AGPAT3                     protein_coding     43986536
1777        AGPAT3                     protein_coding     43986536
1778        AGPAT3                     protein_coding     43986536
1779        AGPAT3                     protein_coding     43986536
1780        AGPAT3                     protein_coding     43986536
1781        AGPAT3                     protein_coding     43986536
1782        AGPAT3                     protein_coding     43986536
1783        AGPAT3                     protein_coding     43986536
1784        AGPAT3                     protein_coding     43986536
1785        AGPAT3                     protein_coding     43986536
1786        AGPAT3                     protein_coding     43986536
1787        AGPAT3                     protein_coding     43986536
1788        AGPAT3                     protein_coding     43986536
1789        AGPAT3                     protein_coding     43986536
1790        AGPAT3                     protein_coding     43986536
1791        AGPAT3                     protein_coding     43986536
1792        AGPAT3                     protein_coding     43986536
1793        AGPAT3                     protein_coding     43986536
1794        AGPAT3                     protein_coding     43986536
1795        AGPAT3                     protein_coding     43986536
1796        AGPAT3                     protein_coding     43986536
1797        AGPAT3                     protein_coding     43986536
1798        AGPAT3                     protein_coding     43986536
1799        AGPAT3                     protein_coding     43986536
1800        AGPAT3                     protein_coding     43986536
1801          AIRE                     protein_coding     44298648
1802          AIRE                     protein_coding     44298648
1803          AIRE                     protein_coding     44298648
1804          AIRE                     protein_coding     44298648
1805          AIRE                     protein_coding     44298648
1806          AIRE                     protein_coding     44298648
1807          AIRE                     protein_coding     44298648
1808          AIRE                     protein_coding     44298648
1809          AIRE                     protein_coding     44298648
1810          AIRE                     protein_coding     44298648
1811          AIRE                     protein_coding     44298648
1812          AIRE                     protein_coding     44298648
1813          AIRE                     protein_coding     44298648
1814          AIRE                     protein_coding     44298648
1815          AIRE                     protein_coding     44298648
1816          AIRE                     protein_coding     44298648
1817          AIRE                     protein_coding     44298648
1818          AIRE                     protein_coding     44298648
1819          AIRE                     protein_coding     44298648
1820          AIRE                     protein_coding     44298648
1821          AIRE                     protein_coding     44298648
1822          AIRE                     protein_coding     44298648
1823          AIRE                     protein_coding     44298648
1824          AIRE                     protein_coding     44298648
1825          AIRE                     protein_coding     44298648
1826          AIRE                     protein_coding     44298648
1827          AIRE                     protein_coding     44298648
1828          AIRE                     protein_coding     44298648
1829          AIRE                     protein_coding     44298648
1830          AIRE                     protein_coding     44298648
1831          AIRE                     protein_coding     44298648
1832          AIRE                     protein_coding     44298648
1833          AIRE                     protein_coding     44298648
1834          AIRE                     protein_coding     44298648
1835          AIRE                     protein_coding     44298648
1836          AIRE                     protein_coding     44298648
1837          AIRE                     protein_coding     44298648
1838          AIRE                     protein_coding     44298648
1839          AIRE                     protein_coding     44298648
1840          AIRE                     protein_coding     44298648
1841          AIRE                     protein_coding     44298648
1842          AIRE                     protein_coding     44298648
1843          AIRE                     protein_coding     44298648
1844          AIRE                     protein_coding     44298648
1845          AIRE                     protein_coding     44298648
1846          AIRE                     protein_coding     44298648
1847          AIRE                     protein_coding     44298648
1848          AIRE                     protein_coding     44298648
1849          AIRE                     protein_coding     44298648
1850          AIRE                     protein_coding     44298648
1851          AIRE                     protein_coding     44298648
1852          AIRE                     protein_coding     44298648
1853          AIRE                     protein_coding     44298648
1854          AIRE                     protein_coding     44298648
1855          AIRE                     protein_coding     44298648
1856   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1857   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1858   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1859   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1860   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1861   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1862   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1863   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1864   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1865   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1866   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1867   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1868   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1869   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1870   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1871   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1872   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1873   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1874   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1875   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1876   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1877   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1878   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1879   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1880   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1881   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1882   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1883   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1884   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1885   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1886   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1887   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1888   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1889   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1890   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1891   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1892   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1893   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1894   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1895   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1896   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1897   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1898   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1899   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1900   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1901   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1902   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1903   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1904   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1905   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1906   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1907   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1908   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1909   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1910   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1911   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1912   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1913   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1914   ANKRD20A11P transcribed_unprocessed_pseudogene     13980437
1915   ANKRD20A18P             unprocessed_pseudogene     14069087
1916   ANKRD20A18P             unprocessed_pseudogene     14069087
1917   ANKRD20A18P             unprocessed_pseudogene     14069087
1918    ANKRD30BP1             unprocessed_pseudogene     13427773
1919    ANKRD30BP1             unprocessed_pseudogene     13427773
1920    ANKRD30BP1             unprocessed_pseudogene     13427773
1921    ANKRD30BP1             unprocessed_pseudogene     13427773
1922    ANKRD30BP1             unprocessed_pseudogene     13427773
1923    ANKRD30BP1             unprocessed_pseudogene     13427773
1924    ANKRD30BP1             unprocessed_pseudogene     13427773
1925    ANKRD30BP1             unprocessed_pseudogene     13427773
1926    ANKRD30BP1             unprocessed_pseudogene     13427773
1927    ANKRD30BP1             unprocessed_pseudogene     13427773
1928    ANKRD30BP1             unprocessed_pseudogene     13427773
1929    ANKRD30BP1             unprocessed_pseudogene     13427773
1930    ANKRD30BP1             unprocessed_pseudogene     13427773
1931    ANKRD30BP1             unprocessed_pseudogene     13427773
1932    ANKRD30BP1             unprocessed_pseudogene     13427773
1933    ANKRD30BP1             unprocessed_pseudogene     13427773
1934    ANKRD30BP1             unprocessed_pseudogene     13427773
1935    ANKRD30BP1             unprocessed_pseudogene     13427773
1936    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1937    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1938    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1939    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1940    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1941    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1942    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1943    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1944    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1945    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1946    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1947    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1948    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1949    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1950    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1951    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1952    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1953    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1954    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1955    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1956    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1957    ANKRD30BP2 transcribed_unprocessed_pseudogene     13067033
1958           APP                     protein_coding     26171128
1959           APP                     protein_coding     26171128
1960           APP                     protein_coding     26171128
1961           APP                     protein_coding     26171128
1962           APP                     protein_coding     26171128
1963           APP                     protein_coding     26171128
1964           APP                     protein_coding     26171128
1965           APP                     protein_coding     26171128
1966           APP                     protein_coding     26171128
1967           APP                     protein_coding     26171128
1968           APP                     protein_coding     26171128
1969           APP                     protein_coding     26171128
1970           APP                     protein_coding     26171128
1971           APP                     protein_coding     26171128
1972           APP                     protein_coding     26171128
1973           APP                     protein_coding     26171128
1974           APP                     protein_coding     26171128
1975           APP                     protein_coding     26171128
1976           APP                     protein_coding     26171128
1977           APP                     protein_coding     26171128
1978           APP                     protein_coding     26171128
1979           APP                     protein_coding     26171128
1980           APP                     protein_coding     26171128
1981           APP                     protein_coding     26171128
1982           APP                     protein_coding     26171128
1983           APP                     protein_coding     26171128
1984           APP                     protein_coding     26171128
1985           APP                     protein_coding     26171128
1986           APP                     protein_coding     26171128
1987           APP                     protein_coding     26171128
1988           APP                     protein_coding     26171128
1989           APP                     protein_coding     26171128
1990           APP                     protein_coding     26171128
1991           APP                     protein_coding     26171128
1992           APP                     protein_coding     26171128
1993           APP                     protein_coding     26171128
1994           APP                     protein_coding     26171128
1995           APP                     protein_coding     26171128
1996           APP                     protein_coding     26171128
1997           APP                     protein_coding     26171128
1998           APP                     protein_coding     26171128
1999           APP                     protein_coding     26171128
2000           APP                     protein_coding     26171128
2001           APP                     protein_coding     26171128
2002           APP                     protein_coding     26171128
2003           APP                     protein_coding     26171128
2004           APP                     protein_coding     26171128
2005           APP                     protein_coding     26171128
2006           APP                     protein_coding     26171128
2007           APP                     protein_coding     26171128
2008           APP                     protein_coding     26171128
2009           APP                     protein_coding     26171128
2010           APP                     protein_coding     26171128
2011           APP                     protein_coding     26171128
2012           APP                     protein_coding     26171128
2013           APP                     protein_coding     26171128
2014           APP                     protein_coding     26171128
2015           APP                     protein_coding     26171128
2016           APP                     protein_coding     26171128
2017           APP                     protein_coding     26171128
2018           APP                     protein_coding     26171128
2019           APP                     protein_coding     26171128
2020           APP                     protein_coding     26171128
2021           APP                     protein_coding     26171128
2022           APP                     protein_coding     26171128
2023           APP                     protein_coding     26171128
2024           APP                     protein_coding     26171128
2025           APP                     protein_coding     26171128
2026           APP                     protein_coding     26171128
2027           APP                     protein_coding     26171128
2028           APP                     protein_coding     26171128
2029           APP                     protein_coding     26171128
2030           APP                     protein_coding     26171128
2031           APP                     protein_coding     26171128
2032           APP                     protein_coding     26171128
2033           APP                     protein_coding     26171128
2034           APP                     protein_coding     26171128
2035           APP                     protein_coding     26171128
2036           APP                     protein_coding     26171128
2037           APP                     protein_coding     26171128
2038           APP                     protein_coding     26171128
2039           APP                     protein_coding     26171128
2040           APP                     protein_coding     26171128
2041           APP                     protein_coding     26171128
2042           APP                     protein_coding     26171128
2043           APP                     protein_coding     26171128
2044           APP                     protein_coding     26171128
2045           APP                     protein_coding     26171128
2046           APP                     protein_coding     26171128
2047           APP                     protein_coding     26171128
2048           APP                     protein_coding     26171128
2049           APP                     protein_coding     26171128
2050           APP                     protein_coding     26171128
2051           APP                     protein_coding     26171128
2052           APP                     protein_coding     26171128
2053           APP                     protein_coding     26171128
2054           APP                     protein_coding     26171128
2055           APP                     protein_coding     26171128
2056           APP                     protein_coding     26171128
2057           APP                     protein_coding     26171128
2058           APP                     protein_coding     26171128
2059           APP                     protein_coding     26171128
2060           APP                     protein_coding     26171128
2061           APP                     protein_coding     26171128
2062           APP                     protein_coding     26171128
2063           APP                     protein_coding     26171128
2064           APP                     protein_coding     26171128
2065           APP                     protein_coding     26171128
2066           APP                     protein_coding     26171128
2067           APP                     protein_coding     26171128
2068           APP                     protein_coding     26171128
2069           APP                     protein_coding     26171128
2070           APP                     protein_coding     26171128
2071           APP                     protein_coding     26171128
2072           APP                     protein_coding     26171128
2073           APP                     protein_coding     26171128
2074           APP                     protein_coding     26171128
2075           APP                     protein_coding     26171128
2076           APP                     protein_coding     26171128
2077           APP                     protein_coding     26171128
2078           APP                     protein_coding     26171128
2079           APP                     protein_coding     26171128
2080           APP                     protein_coding     26171128
2081           APP                     protein_coding     26171128
2082           APP                     protein_coding     26171128
2083           APP                     protein_coding     26171128
2084           APP                     protein_coding     26171128
2085           APP                     protein_coding     26171128
2086           APP                     protein_coding     26171128
2087           APP                     protein_coding     26171128
2088           APP                     protein_coding     26171128
2089           APP                     protein_coding     26171128
2090           APP                     protein_coding     26171128
2091           APP                     protein_coding     26171128
2092           APP                     protein_coding     26171128
2093           APP                     protein_coding     26171128
2094           APP                     protein_coding     26171128
2095           APP                     protein_coding     26171128
2096           APP                     protein_coding     26171128
2097           APP                     protein_coding     26171128
2098           APP                     protein_coding     26171128
2099           APP                     protein_coding     26171128
2100           APP                     protein_coding     26171128
2101           APP                     protein_coding     26171128
2102           APP                     protein_coding     26171128
2103           APP                     protein_coding     26171128
2104           APP                     protein_coding     26171128
2105           APP                     protein_coding     26171128
2106           APP                     protein_coding     26171128
2107           APP                     protein_coding     26171128
2108           APP                     protein_coding     26171128
2109           APP                     protein_coding     26171128
2110           APP                     protein_coding     26171128
2111           APP                     protein_coding     26171128
2112           APP                     protein_coding     26171128
2113           APP                     protein_coding     26171128
2114           APP                     protein_coding     26171128
2115           APP                     protein_coding     26171128
2116           APP                     protein_coding     26171128
2117           APP                     protein_coding     26171128
2118           APP                     protein_coding     26171128
2119           APP                     protein_coding     26171128
2120           APP                     protein_coding     26171128
2121           APP                     protein_coding     26171128
2122           APP                     protein_coding     26171128
2123           APP                     protein_coding     26171128
2124           APP                     protein_coding     26171128
2125           APP                     protein_coding     26171128
2126           APP                     protein_coding     26171128
2127           APP                     protein_coding     26171128
2128           APP                     protein_coding     26171128
2129           APP                     protein_coding     26171128
2130           APP                     protein_coding     26171128
2131           APP                     protein_coding     26171128
2132         ATP5J                     protein_coding     25735673
2133         ATP5J                     protein_coding     25735673
2134         ATP5J                     protein_coding     25735673
2135         ATP5J                     protein_coding     25735673
2136         ATP5J                     protein_coding     25735673
2137         ATP5J                     protein_coding     25735673
2138         ATP5J                     protein_coding     25735673
2139         ATP5J                     protein_coding     25735673
2140         ATP5J                     protein_coding     25735673
2141         ATP5J                     protein_coding     25735673
2142         ATP5J                     protein_coding     25735673
2143         ATP5J                     protein_coding     25735673
2144         ATP5J                     protein_coding     25735673
2145         ATP5J                     protein_coding     25735673
2146         ATP5J                     protein_coding     25735673
2147         ATP5J                     protein_coding     25735673
2148         ATP5J                     protein_coding     25735673
2149         ATP5J                     protein_coding     25735673
2150         ATP5J                     protein_coding     25735673
2151         ATP5J                     protein_coding     25735673
2152         ATP5J                     protein_coding     25735673
2153         ATP5J                     protein_coding     25735673
2154         ATP5J                     protein_coding     25735673
2155         ATP5J                     protein_coding     25735673
2156         ATP5J                     protein_coding     25735673
2157         ATP5J                     protein_coding     25735673
2158         ATP5J                     protein_coding     25735673
2159         ATP5J                     protein_coding     25735673
2160         ATP5J                     protein_coding     25735673
2161         ATP5J                     protein_coding     25735673
2162         ATP5J                     protein_coding     25735673
2163         ATP5J                     protein_coding     25735673
2164         ATP5J                     protein_coding     25735673
2165      ATP5J2LP               processed_pseudogene     36389112
2166         ATP5O                     protein_coding     33915980
2167         ATP5O                     protein_coding     33915980
2168         ATP5O                     protein_coding     33915980
2169         ATP5O                     protein_coding     33915980
2170         ATP5O                     protein_coding     33915980
2171         ATP5O                     protein_coding     33915980
2172         ATP5O                     protein_coding     33915980
2173         ATP5O                     protein_coding     33915980
2174         ATP5O                     protein_coding     33915980
2175         ATP5O                     protein_coding     33915980
2176         ATP5O                     protein_coding     33915980
2177         ATP5O                     protein_coding     33915980
2178         ATP5O                     protein_coding     33915980
2179         ATP5O                     protein_coding     33915980
2180         ATP5O                     protein_coding     33915980
2181         ATP5O                     protein_coding     33915980
2182         ATP5O                     protein_coding     33915980
2183         ATP5O                     protein_coding     33915980
2184         ATP5O                     protein_coding     33915980
2185         ATP5O                     protein_coding     33915980
2186         ATP5O                     protein_coding     33915980
2187         ATP5O                     protein_coding     33915980
2188         ATP5O                     protein_coding     33915980
2189         ATP5O                     protein_coding     33915980
2190         ATP5O                     protein_coding     33915980
2191         ATP5O                     protein_coding     33915980
2192         ATP5O                     protein_coding     33915980
2193         ATP5O                     protein_coding     33915980
2194         ATP5O                     protein_coding     33915980
2195         ATP5O                     protein_coding     33915980
2196         ATP5O                     protein_coding     33915980
2197         ATP5O                     protein_coding     33915980
2198         ATP5O                     protein_coding     33915980
2199         ATP5O                     protein_coding     33915980
2200         ATP5O                     protein_coding     33915980
2201         ATP5O                     protein_coding     33915980
2202         ATP5O                     protein_coding     33915980
2203         ATP5O                     protein_coding     33915980
2204         ATP5O                     protein_coding     33915980
2205         ATP5O                     protein_coding     33915980
2206         ATP5O                     protein_coding     33915980
2207         ATP5O                     protein_coding     33915980
2208         ATP5O                     protein_coding     33915980
2209         ATP5O                     protein_coding     33915980
2210         ATP5O                     protein_coding     33915980
2211       B3GALT5                     protein_coding     39673137
2212       B3GALT5                     protein_coding     39673137
2213       B3GALT5                     protein_coding     39673137
2214       B3GALT5                     protein_coding     39673137
2215       B3GALT5                     protein_coding     39673137
2216       B3GALT5                     protein_coding     39673137
2217       B3GALT5                     protein_coding     39673137
2218       B3GALT5                     protein_coding     39673137
2219       B3GALT5                     protein_coding     39673137
2220       B3GALT5                     protein_coding     39673137
2221       B3GALT5                     protein_coding     39673137
2222       B3GALT5                     protein_coding     39673137
2223       B3GALT5                     protein_coding     39673137
2224       B3GALT5                     protein_coding     39673137
2225       B3GALT5                     protein_coding     39673137
2226       B3GALT5                     protein_coding     39673137
2227       B3GALT5                     protein_coding     39673137
2228       B3GALT5                     protein_coding     39673137
2229   B3GALT5-AS1                          antisense     39612821
2230   B3GALT5-AS1                          antisense     39612821
2231   B3GALT5-AS1                          antisense     39612821
2232   B3GALT5-AS1                          antisense     39612821
2233   B3GALT5-AS1                          antisense     39612821
2234   B3GALT5-AS1                          antisense     39612821
2235   B3GALT5-AS1                          antisense     39612821
2236   B3GALT5-AS1                          antisense     39612821
2237   B3GALT5-AS1                          antisense     39612821
2238   B3GALT5-AS1                          antisense     39612821
2239   B3GALT5-AS1                          antisense     39612821
2240         BACE2                     protein_coding     41282518
2241         BACE2                     protein_coding     41282518
2242         BACE2                     protein_coding     41282518
2243         BACE2                     protein_coding     41282518
2244         BACE2                     protein_coding     41282518
2245         BACE2                     protein_coding     41282518
2246         BACE2                     protein_coding     41282518
2247         BACE2                     protein_coding     41282518
2248         BACE2                     protein_coding     41282518
2249         BACE2                     protein_coding     41282518
2250         BACE2                     protein_coding     41282518
2251         BACE2                     protein_coding     41282518
2252         BACE2                     protein_coding     41282518
2253         BACE2                     protein_coding     41282518
2254         BACE2                     protein_coding     41282518
2255         BACE2                     protein_coding     41282518
2256         BACE2                     protein_coding     41282518
2257         BACE2                     protein_coding     41282518
2258         BACE2                     protein_coding     41282518
2259         BACE2                     protein_coding     41282518
2260         BACE2                     protein_coding     41282518
2261         BACE2                     protein_coding     41282518
2262         BACE2                     protein_coding     41282518
2263         BACE2                     protein_coding     41282518
2264         BACE2                     protein_coding     41282518
2265         BACE2                     protein_coding     41282518
2266         BACE2                     protein_coding     41282518
2267         BACE2                     protein_coding     41282518
2268         BACE2                     protein_coding     41282518
2269         BACE2                     protein_coding     41282518
2270         BACE2                     protein_coding     41282518
2271         BACE2                     protein_coding     41282518
2272         BACE2                     protein_coding     41282518
2273         BACE2                     protein_coding     41282518
2274         BACE2                     protein_coding     41282518
2275         BACE2                     protein_coding     41282518
2276         BACE2                     protein_coding     41282518
2277         BACE2                     protein_coding     41282518
2278         BACE2                     protein_coding     41282518
2279         BACE2                     protein_coding     41282518
2280         BACE2                     protein_coding     41282518
2281         BACE2                     protein_coding     41282518
2282         BACE2                     protein_coding     41282518
2283         BACE2                     protein_coding     41282518
2284         BACE2                     protein_coding     41282518
2285         BACE2                     protein_coding     41282518
2286         BACE2                     protein_coding     41282518
2287         BACE2                     protein_coding     41282518
2288         BACE2                     protein_coding     41282518
2289         BACE2                     protein_coding     41282518
2290         BACE2                     protein_coding     41282518
2291         BACE2                     protein_coding     41282518
2292         BACE2                     protein_coding     41282518
2293         BACE2                     protein_coding     41282518
2294         BACE2                     protein_coding     41282518
2295         BACE2                     protein_coding     41282518
2296         BACE2                     protein_coding     41282518
2297         BACE2                     protein_coding     41282518
2298         BACE2                     protein_coding     41282518
2299         BACE2                     protein_coding     41282518
2300         BACE2                     protein_coding     41282518
2301         BACE2                     protein_coding     41282518
2302         BACE2                     protein_coding     41282518
2303         BACE2                     protein_coding     41282518
2304         BACE2                     protein_coding     41282518
2305     BACE2-IT1                          antisense     41180626
2306     BACE2-IT1                          antisense     41180626
2307         BACH1                     protein_coding     29630751
2308         BACH1                     protein_coding     29630751
2309         BACH1                     protein_coding     29630751
2310         BACH1                     protein_coding     29630751
2311         BACH1                     protein_coding     29630751
2312         BACH1                     protein_coding     29630751
2313         BACH1                     protein_coding     29630751
2314         BACH1                     protein_coding     29630751
2315         BACH1                     protein_coding     29630751
2316         BACH1                     protein_coding     29630751
2317         BACH1                     protein_coding     29630751
2318         BACH1                     protein_coding     29630751
2319         BACH1                     protein_coding     29630751
2320         BACH1                     protein_coding     29630751
2321         BACH1                     protein_coding     29630751
2322         BACH1                     protein_coding     29630751
2323         BACH1                     protein_coding     29630751
2324         BACH1                     protein_coding     29630751
2325         BACH1                     protein_coding     29630751
2326         BACH1                     protein_coding     29630751
2327         BACH1                     protein_coding     29630751
2328         BACH1                     protein_coding     29630751
2329         BACH1                     protein_coding     29630751
2330         BACH1                     protein_coding     29630751
2331         BACH1                     protein_coding     29630751
2332         BACH1                     protein_coding     29630751
2333         BACH1                     protein_coding     29630751
2334         BACH1                     protein_coding     29630751
2335         BACH1                     protein_coding     29630751
2336         BACH1                     protein_coding     29630751
2337         BACH1                     protein_coding     29630751
2338         BACH1                     protein_coding     29630751
2339         BACH1                     protein_coding     29630751
2340         BACH1                     protein_coding     29630751
2341         BACH1                     protein_coding     29630751
2342         BACH1                     protein_coding     29630751
2343         BACH1                     protein_coding     29630751
2344         BACH1                     protein_coding     29630751
2345         BACH1                     protein_coding     29630751
2346         BACH1                     protein_coding     29630751
2347         BACH1                     protein_coding     29630751
2348         BACH1                     protein_coding     29630751
2349         BACH1                     protein_coding     29630751
2350         BACH1                     protein_coding     29630751
2351         BACH1                     protein_coding     29630751
2352     BACH1-AS1                            lincRNA     29376339
2353     BACH1-AS1                            lincRNA     29376339
2354     BACH1-AS1                            lincRNA     29376339
2355     BACH1-AS1                            lincRNA     29376339
2356     BACH1-IT1                     sense_intronic     29361894
2357     BACH1-IT1                     sense_intronic     29361894
2358     BACH1-IT1                     sense_intronic     29361894
2359     BACH1-IT1                     sense_intronic     29361894
2360     BACH1-IT2                            lincRNA     29373709
2361     BACH1-IT2                            lincRNA     29373709
2362     BACH1-IT2                            lincRNA     29373709
2363     BACH1-IT2                            lincRNA     29373709
2364     BACH1-IT2                            lincRNA     29373709
2365     BACH1-IT2                            lincRNA     29373709
2366     BACH1-IT2                            lincRNA     29373709
2367     BACH1-IT2                            lincRNA     29373709
2368     BACH1-IT3                     sense_intronic     29500386
2369     BACH1-IT3                     sense_intronic     29500386
2370         BAGE2 transcribed_unprocessed_pseudogene     10516431
2371         BAGE2 transcribed_unprocessed_pseudogene     10516431
2372         BAGE2 transcribed_unprocessed_pseudogene     10516431
2373         BAGE2 transcribed_unprocessed_pseudogene     10516431
2374         BAGE2 transcribed_unprocessed_pseudogene     10516431
2375         BAGE2 transcribed_unprocessed_pseudogene     10516431
2376         BAGE2 transcribed_unprocessed_pseudogene     10516431
2377         BAGE2 transcribed_unprocessed_pseudogene     10516431
2378         BAGE2 transcribed_unprocessed_pseudogene     10516431
2379         BAGE2 transcribed_unprocessed_pseudogene     10516431
2380         BAGE2 transcribed_unprocessed_pseudogene     10516431
2381         BAGE2 transcribed_unprocessed_pseudogene     10516431
2382         BAGE2 transcribed_unprocessed_pseudogene     10516431
2383         BAGE2 transcribed_unprocessed_pseudogene     10516431
2384         BAGE2 transcribed_unprocessed_pseudogene     10516431
2385         BAGE2 transcribed_unprocessed_pseudogene     10516431
2386         BAGE2 transcribed_unprocessed_pseudogene     10516431
2387         BAGE2 transcribed_unprocessed_pseudogene     10516431
2388         BAGE2 transcribed_unprocessed_pseudogene     10516431
2389         BAGE2 transcribed_unprocessed_pseudogene     10516431
2390         BAGE2 transcribed_unprocessed_pseudogene     10516431
2391         BAGE2 transcribed_unprocessed_pseudogene     10516431
2392         BAGE2 transcribed_unprocessed_pseudogene     10516431
2393         BAGE2 transcribed_unprocessed_pseudogene     10516431
2394         BAGE2 transcribed_unprocessed_pseudogene     10516431
2395         BAGE2 transcribed_unprocessed_pseudogene     10516431
2396         BAGE2 transcribed_unprocessed_pseudogene     10516431
2397         BAGE2 transcribed_unprocessed_pseudogene     10516431
2398         BRWD1                     protein_coding     39321559
2399         BRWD1                     protein_coding     39321559
2400         BRWD1                     protein_coding     39321559
2401         BRWD1                     protein_coding     39321559
2402         BRWD1                     protein_coding     39321559
2403         BRWD1                     protein_coding     39321559
2404         BRWD1                     protein_coding     39321559
2405         BRWD1                     protein_coding     39321559
2406         BRWD1                     protein_coding     39321559
2407         BRWD1                     protein_coding     39321559
2408         BRWD1                     protein_coding     39321559
2409         BRWD1                     protein_coding     39321559
2410         BRWD1                     protein_coding     39321559
2411         BRWD1                     protein_coding     39321559
2412         BRWD1                     protein_coding     39321559
2413         BRWD1                     protein_coding     39321559
2414         BRWD1                     protein_coding     39321559
2415         BRWD1                     protein_coding     39321559
2416         BRWD1                     protein_coding     39321559
2417         BRWD1                     protein_coding     39321559
2418         BRWD1                     protein_coding     39321559
2419         BRWD1                     protein_coding     39321559
2420         BRWD1                     protein_coding     39321559
2421         BRWD1                     protein_coding     39321559
2422         BRWD1                     protein_coding     39321559
2423         BRWD1                     protein_coding     39321559
2424         BRWD1                     protein_coding     39321559
2425         BRWD1                     protein_coding     39321559
2426         BRWD1                     protein_coding     39321559
2427         BRWD1                     protein_coding     39321559
2428         BRWD1                     protein_coding     39321559
2429         BRWD1                     protein_coding     39321559
2430         BRWD1                     protein_coding     39321559
2431         BRWD1                     protein_coding     39321559
2432         BRWD1                     protein_coding     39321559
2433         BRWD1                     protein_coding     39321559
2434         BRWD1                     protein_coding     39321559
2435         BRWD1                     protein_coding     39321559
2436         BRWD1                     protein_coding     39321559
2437         BRWD1                     protein_coding     39321559
2438         BRWD1                     protein_coding     39321559
2439         BRWD1                     protein_coding     39321559
2440         BRWD1                     protein_coding     39321559
2441         BRWD1                     protein_coding     39321559
2442         BRWD1                     protein_coding     39321559
2443         BRWD1                     protein_coding     39321559
2444         BRWD1                     protein_coding     39321559
2445         BRWD1                     protein_coding     39321559
2446         BRWD1                     protein_coding     39321559
2447         BRWD1                     protein_coding     39321559
2448         BRWD1                     protein_coding     39321559
2449         BRWD1                     protein_coding     39321559
2450         BRWD1                     protein_coding     39321559
2451         BRWD1                     protein_coding     39321559
2452         BRWD1                     protein_coding     39321559
2453         BRWD1                     protein_coding     39321559
2454         BRWD1                     protein_coding     39321559
2455         BRWD1                     protein_coding     39321559
2456         BRWD1                     protein_coding     39321559
2457         BRWD1                     protein_coding     39321559
2458         BRWD1                     protein_coding     39321559
2459         BRWD1                     protein_coding     39321559
2460         BRWD1                     protein_coding     39321559
2461         BRWD1                     protein_coding     39321559
2462         BRWD1                     protein_coding     39321559
2463         BRWD1                     protein_coding     39321559
2464         BRWD1                     protein_coding     39321559
2465         BRWD1                     protein_coding     39321559
2466         BRWD1                     protein_coding     39321559
2467         BRWD1                     protein_coding     39321559
2468         BRWD1                     protein_coding     39321559
2469         BRWD1                     protein_coding     39321559
2470         BRWD1                     protein_coding     39321559
2471         BRWD1                     protein_coding     39321559
2472         BRWD1                     protein_coding     39321559
2473         BRWD1                     protein_coding     39321559
2474         BRWD1                     protein_coding     39321559
2475         BRWD1                     protein_coding     39321559
2476         BRWD1                     protein_coding     39321559
2477         BRWD1                     protein_coding     39321559
2478         BRWD1                     protein_coding     39321559
2479         BRWD1                     protein_coding     39321559
2480         BRWD1                     protein_coding     39321559
2481         BRWD1                     protein_coding     39321559
2482         BRWD1                     protein_coding     39321559
2483         BRWD1                     protein_coding     39321559
2484         BRWD1                     protein_coding     39321559
2485         BRWD1                     protein_coding     39321559
2486         BRWD1                     protein_coding     39321559
2487         BRWD1                     protein_coding     39321559
2488         BRWD1                     protein_coding     39321559
2489         BRWD1                     protein_coding     39321559
2490         BRWD1                     protein_coding     39321559
2491         BRWD1                     protein_coding     39321559
2492         BRWD1                     protein_coding     39321559
2493         BRWD1                     protein_coding     39321559
2494         BRWD1                     protein_coding     39321559
2495         BRWD1                     protein_coding     39321559
2496         BRWD1                     protein_coding     39321559
2497         BRWD1                     protein_coding     39321559
2498         BRWD1                     protein_coding     39321559
2499         BRWD1                     protein_coding     39321559
2500         BRWD1                     protein_coding     39321559
2501         BRWD1                     protein_coding     39321559
2502         BRWD1                     protein_coding     39321559
2503         BRWD1                     protein_coding     39321559
2504         BRWD1                     protein_coding     39321559
2505         BRWD1                     protein_coding     39321559
2506         BRWD1                     protein_coding     39321559
2507         BRWD1                     protein_coding     39321559
2508         BRWD1                     protein_coding     39321559
2509         BRWD1                     protein_coding     39321559
2510         BRWD1                     protein_coding     39321559
2511         BRWD1                     protein_coding     39321559
2512         BRWD1                     protein_coding     39321559
2513         BRWD1                     protein_coding     39321559
2514         BRWD1                     protein_coding     39321559
2515         BRWD1                     protein_coding     39321559
2516         BRWD1                     protein_coding     39321559
2517         BRWD1                     protein_coding     39321559
2518         BRWD1                     protein_coding     39321559
2519         BRWD1                     protein_coding     39321559
2520         BRWD1                     protein_coding     39321559
2521         BRWD1                     protein_coding     39321559
2522         BRWD1                     protein_coding     39321559
2523         BRWD1                     protein_coding     39321559
2524         BRWD1                     protein_coding     39321559
2525         BRWD1                     protein_coding     39321559
2526         BRWD1                     protein_coding     39321559
2527         BRWD1                     protein_coding     39321559
2528         BRWD1                     protein_coding     39321559
2529         BRWD1                     protein_coding     39321559
2530         BRWD1                     protein_coding     39321559
2531         BRWD1                     protein_coding     39321559
2532         BRWD1                     protein_coding     39321559
2533         BRWD1                     protein_coding     39321559
2534         BRWD1                     protein_coding     39321559
2535         BRWD1                     protein_coding     39321559
2536         BRWD1                     protein_coding     39321559
2537         BRWD1                     protein_coding     39321559
2538         BRWD1                     protein_coding     39321559
2539         BRWD1                     protein_coding     39321559
2540         BRWD1                     protein_coding     39321559
2541         BRWD1                     protein_coding     39321559
2542         BRWD1                     protein_coding     39321559
2543         BRWD1                     protein_coding     39321559
2544         BRWD1                     protein_coding     39321559
2545         BRWD1                     protein_coding     39321559
2546         BRWD1                     protein_coding     39321559
2547         BRWD1                     protein_coding     39321559
2548         BRWD1                     protein_coding     39321559
2549         BRWD1                     protein_coding     39321559
2550         BRWD1                     protein_coding     39321559
2551         BRWD1                     protein_coding     39321559
2552         BRWD1                     protein_coding     39321559
2553         BRWD1                     protein_coding     39321559
2554         BRWD1                     protein_coding     39321559
2555         BRWD1                     protein_coding     39321559
2556         BRWD1                     protein_coding     39321559
2557         BRWD1                     protein_coding     39321559
2558         BRWD1                     protein_coding     39321559
2559         BRWD1                     protein_coding     39321559
2560         BRWD1                     protein_coding     39321559
2561         BRWD1                     protein_coding     39321559
2562         BRWD1                     protein_coding     39321559
2563         BRWD1                     protein_coding     39321559
2564         BRWD1                     protein_coding     39321559
2565         BRWD1                     protein_coding     39321559
2566         BRWD1                     protein_coding     39321559
2567         BRWD1                     protein_coding     39321559
2568         BRWD1                     protein_coding     39321559
2569         BRWD1                     protein_coding     39321559
2570         BRWD1                     protein_coding     39321559
2571         BRWD1                     protein_coding     39321559
2572         BRWD1                     protein_coding     39321559
2573         BRWD1                     protein_coding     39321559
2574         BRWD1                     protein_coding     39321559
2575         BRWD1                     protein_coding     39321559
2576         BRWD1                     protein_coding     39321559
2577         BRWD1                     protein_coding     39321559
2578         BRWD1                     protein_coding     39321559
2579         BRWD1                     protein_coding     39321559
2580         BRWD1                     protein_coding     39321559
2581         BRWD1                     protein_coding     39321559
2582         BRWD1                     protein_coding     39321559
2583         BRWD1                     protein_coding     39321559
2584         BRWD1                     protein_coding     39321559
2585         BRWD1                     protein_coding     39321559
2586         BRWD1                     protein_coding     39321559
2587         BRWD1                     protein_coding     39321559
2588         BRWD1                     protein_coding     39321559
2589         BRWD1                     protein_coding     39321559
2590         BRWD1                     protein_coding     39321559
2591         BRWD1                     protein_coding     39321559
2592         BRWD1                     protein_coding     39321559
2593         BRWD1                     protein_coding     39321559
2594         BRWD1                     protein_coding     39321559
2595         BRWD1                     protein_coding     39321559
2596         BRWD1                     protein_coding     39321559
2597         BRWD1                     protein_coding     39321559
2598         BRWD1                     protein_coding     39321559
2599         BRWD1                     protein_coding     39321559
2600         BRWD1                     protein_coding     39321559
2601         BRWD1                     protein_coding     39321559
2602         BRWD1                     protein_coding     39321559
2603         BRWD1                     protein_coding     39321559
2604         BRWD1                     protein_coding     39321559
2605         BRWD1                     protein_coding     39321559
2606         BRWD1                     protein_coding     39321559
2607         BRWD1                     protein_coding     39321559
2608         BRWD1                     protein_coding     39321559
2609         BRWD1                     protein_coding     39321559
2610         BRWD1                     protein_coding     39321559
2611         BRWD1                     protein_coding     39321559
2612         BRWD1                     protein_coding     39321559
2613         BRWD1                     protein_coding     39321559
2614         BRWD1                     protein_coding     39321559
2615         BRWD1                     protein_coding     39321559
2616         BRWD1                     protein_coding     39321559
2617         BRWD1                     protein_coding     39321559
2618         BRWD1                     protein_coding     39321559
2619         BRWD1                     protein_coding     39321559
2620         BRWD1                     protein_coding     39321559
2621         BRWD1                     protein_coding     39321559
2622         BRWD1                     protein_coding     39321559
2623         BRWD1                     protein_coding     39321559
2624         BRWD1                     protein_coding     39321559
2625         BRWD1                     protein_coding     39321559
2626         BRWD1                     protein_coding     39321559
2627         BRWD1                     protein_coding     39321559
2628         BRWD1                     protein_coding     39321559
2629         BRWD1                     protein_coding     39321559
2630         BRWD1                     protein_coding     39321559
2631         BRWD1                     protein_coding     39321559
2632         BRWD1                     protein_coding     39321559
2633         BRWD1                     protein_coding     39321559
2634         BRWD1                     protein_coding     39321559
2635         BRWD1                     protein_coding     39321559
2636         BRWD1                     protein_coding     39321559
2637         BRWD1                     protein_coding     39321559
2638         BRWD1                     protein_coding     39321559
2639         BRWD1                     protein_coding     39321559
2640         BRWD1                     protein_coding     39321559
2641         BRWD1                     protein_coding     39321559
2642         BRWD1                     protein_coding     39321559
2643         BRWD1                     protein_coding     39321559
2644         BRWD1                     protein_coding     39321559
2645         BRWD1                     protein_coding     39321559
2646         BRWD1                     protein_coding     39321559
2647         BRWD1                     protein_coding     39321559
2648         BRWD1                     protein_coding     39321559
2649         BRWD1                     protein_coding     39321559
2650         BRWD1                     protein_coding     39321559
2651         BRWD1                     protein_coding     39321559
2652         BRWD1                     protein_coding     39321559
2653         BRWD1                     protein_coding     39321559
2654         BRWD1                     protein_coding     39321559
2655         BRWD1                     protein_coding     39321559
2656         BRWD1                     protein_coding     39321559
2657         BRWD1                     protein_coding     39321559
2658     BRWD1-AS1                          antisense     39323218
2659     BRWD1-AS1                          antisense     39323218
2660     BRWD1-AS1                          antisense     39323218
2661     BRWD1-AS2                          antisense     39314962
2662     BRWD1-IT1                  sense_overlapping     39219805
2663     BRWD1-IT1                  sense_overlapping     39219805
2664      BTF3L4P1               processed_pseudogene     17518993
2665        BTF3P6               processed_pseudogene     33519108
2666          BTG3                     protein_coding     17612947
2667          BTG3                     protein_coding     17612947
2668          BTG3                     protein_coding     17612947
2669          BTG3                     protein_coding     17612947
2670          BTG3                     protein_coding     17612947
2671          BTG3                     protein_coding     17612947
2672          BTG3                     protein_coding     17612947
2673          BTG3                     protein_coding     17612947
2674          BTG3                     protein_coding     17612947
2675          BTG3                     protein_coding     17612947
2676          BTG3                     protein_coding     17612947
2677          BTG3                     protein_coding     17612947
2678          BTG3                     protein_coding     17612947
2679          BTG3                     protein_coding     17612947
2680          BTG3                     protein_coding     17612947
2681          BTG3                     protein_coding     17612947
2682          BTG3                     protein_coding     17612947
2683          BTG3                     protein_coding     17612947
2684          BTG3                     protein_coding     17612947
2685          BTG3                     protein_coding     17612947
2686       C1QBPP1               processed_pseudogene     19760128
2687     C21orf140                     protein_coding     34401072
2688       C21orf2                     protein_coding     44339402
2689       C21orf2                     protein_coding     44339402
2690       C21orf2                     protein_coding     44339402
2691       C21orf2                     protein_coding     44339402
2692       C21orf2                     protein_coding     44339402
2693       C21orf2                     protein_coding     44339402
2694       C21orf2                     protein_coding     44339402
2695       C21orf2                     protein_coding     44339402
2696       C21orf2                     protein_coding     44339402
2697       C21orf2                     protein_coding     44339402
2698       C21orf2                     protein_coding     44339402
2699       C21orf2                     protein_coding     44339402
2700       C21orf2                     protein_coding     44339402
2701       C21orf2                     protein_coding     44339402
2702       C21orf2                     protein_coding     44339402
2703       C21orf2                     protein_coding     44339402
2704       C21orf2                     protein_coding     44339402
2705       C21orf2                     protein_coding     44339402
2706       C21orf2                     protein_coding     44339402
2707       C21orf2                     protein_coding     44339402
2708       C21orf2                     protein_coding     44339402
2709       C21orf2                     protein_coding     44339402
2710       C21orf2                     protein_coding     44339402
2711       C21orf2                     protein_coding     44339402
2712       C21orf2                     protein_coding     44339402
2713       C21orf2                     protein_coding     44339402
2714       C21orf2                     protein_coding     44339402
2715       C21orf2                     protein_coding     44339402
2716       C21orf2                     protein_coding     44339402
2717       C21orf2                     protein_coding     44339402
2718       C21orf2                     protein_coding     44339402
2719       C21orf2                     protein_coding     44339402
2720       C21orf2                     protein_coding     44339402
2721       C21orf2                     protein_coding     44339402
2722       C21orf2                     protein_coding     44339402
2723       C21orf2                     protein_coding     44339402
2724       C21orf2                     protein_coding     44339402
2725       C21orf2                     protein_coding     44339402
2726       C21orf2                     protein_coding     44339402
2727       C21orf2                     protein_coding     44339402
2728      C21orf33                     protein_coding     44145723
2729      C21orf33                     protein_coding     44145723
2730      C21orf33                     protein_coding     44145723
2731      C21orf33                     protein_coding     44145723
2732      C21orf33                     protein_coding     44145723
2733      C21orf33                     protein_coding     44145723
2734      C21orf33                     protein_coding     44145723
2735      C21orf33                     protein_coding     44145723
2736      C21orf33                     protein_coding     44145723
2737      C21orf33                     protein_coding     44145723
2738      C21orf33                     protein_coding     44145723
2739      C21orf33                     protein_coding     44145723
2740      C21orf33                     protein_coding     44145723
2741      C21orf33                     protein_coding     44145723
2742      C21orf33                     protein_coding     44145723
2743      C21orf33                     protein_coding     44145723
2744      C21orf33                     protein_coding     44145723
2745      C21orf33                     protein_coding     44145723
2746      C21orf33                     protein_coding     44145723
2747      C21orf33                     protein_coding     44145723
2748      C21orf33                     protein_coding     44145723
2749      C21orf33                     protein_coding     44145723
2750      C21orf33                     protein_coding     44145723
2751      C21orf33                     protein_coding     44145723
2752      C21orf33                     protein_coding     44145723
2753      C21orf33                     protein_coding     44145723
2754      C21orf33                     protein_coding     44145723
2755      C21orf33                     protein_coding     44145723
2756      C21orf33                     protein_coding     44145723
2757      C21orf33                     protein_coding     44145723
2758      C21orf33                     protein_coding     44145723
2759      C21orf33                     protein_coding     44145723
2760      C21orf33                     protein_coding     44145723
2761      C21orf33                     protein_coding     44145723
2762      C21orf33                     protein_coding     44145723
2763      C21orf33                     protein_coding     44145723
2764      C21orf33                     protein_coding     44145723
2765      C21orf33                     protein_coding     44145723
2766      C21orf33                     protein_coding     44145723
2767      C21orf33                     protein_coding     44145723
2768      C21orf33                     protein_coding     44145723
2769      C21orf33                     protein_coding     44145723
2770      C21orf33                     protein_coding     44145723
2771      C21orf33                     protein_coding     44145723
2772      C21orf33                     protein_coding     44145723
2773      C21orf33                     protein_coding     44145723
2774      C21orf33                     protein_coding     44145723
2775      C21orf33                     protein_coding     44145723
2776      C21orf33                     protein_coding     44145723
2777      C21orf33                     protein_coding     44145723
2778      C21orf33                     protein_coding     44145723
2779      C21orf33                     protein_coding     44145723
2780      C21orf33                     protein_coding     44145723
2781      C21orf33                     protein_coding     44145723
2782      C21orf33                     protein_coding     44145723
2783      C21orf33                     protein_coding     44145723
2784      C21orf33                     protein_coding     44145723
2785      C21orf33                     protein_coding     44145723
2786      C21orf58                     protein_coding     46323875
2787      C21orf58                     protein_coding     46323875
2788      C21orf58                     protein_coding     46323875
2789      C21orf58                     protein_coding     46323875
2790      C21orf58                     protein_coding     46323875
2791      C21orf58                     protein_coding     46323875
2792      C21orf58                     protein_coding     46323875
2793      C21orf58                     protein_coding     46323875
2794      C21orf58                     protein_coding     46323875
2795      C21orf58                     protein_coding     46323875
2796      C21orf58                     protein_coding     46323875
2797      C21orf58                     protein_coding     46323875
2798      C21orf58                     protein_coding     46323875
2799      C21orf58                     protein_coding     46323875
2800      C21orf58                     protein_coding     46323875
2801      C21orf58                     protein_coding     46323875
2802      C21orf58                     protein_coding     46323875
2803      C21orf58                     protein_coding     46323875
2804      C21orf58                     protein_coding     46323875
2805      C21orf58                     protein_coding     46323875
2806      C21orf58                     protein_coding     46323875
2807      C21orf58                     protein_coding     46323875
2808      C21orf58                     protein_coding     46323875
2809      C21orf58                     protein_coding     46323875
2810      C21orf58                     protein_coding     46323875
2811      C21orf58                     protein_coding     46323875
2812      C21orf58                     protein_coding     46323875
2813      C21orf58                     protein_coding     46323875
2814      C21orf58                     protein_coding     46323875
2815      C21orf58                     protein_coding     46323875
2816      C21orf58                     protein_coding     46323875
2817      C21orf58                     protein_coding     46323875
2818      C21orf58                     protein_coding     46323875
2819      C21orf58                     protein_coding     46323875
2820      C21orf58                     protein_coding     46323875
2821      C21orf58                     protein_coding     46323875
2822      C21orf58                     protein_coding     46323875
2823      C21orf58                     protein_coding     46323875
2824      C21orf58                     protein_coding     46323875
2825      C21orf58                     protein_coding     46323875
2826      C21orf58                     protein_coding     46323875
2827      C21orf58                     protein_coding     46323875
2828      C21orf58                     protein_coding     46323875
2829      C21orf58                     protein_coding     46323875
2830      C21orf58                     protein_coding     46323875
2831      C21orf58                     protein_coding     46323875
2832      C21orf58                     protein_coding     46323875
2833      C21orf58                     protein_coding     46323875
2834      C21orf58                     protein_coding     46323875
2835      C21orf58                     protein_coding     46323875
2836      C21orf58                     protein_coding     46323875
2837      C21orf58                     protein_coding     46323875
2838      C21orf58                     protein_coding     46323875
2839      C21orf58                     protein_coding     46323875
2840      C21orf58                     protein_coding     46323875
2841      C21orf58                     protein_coding     46323875
2842      C21orf58                     protein_coding     46323875
2843      C21orf58                     protein_coding     46323875
2844      C21orf58                     protein_coding     46323875
2845      C21orf58                     protein_coding     46323875
2846      C21orf58                     protein_coding     46323875
2847      C21orf58                     protein_coding     46323875
2848      C21orf58                     protein_coding     46323875
2849      C21orf58                     protein_coding     46323875
2850      C21orf58                     protein_coding     46323875
2851      C21orf58                     protein_coding     46323875
2852      C21orf58                     protein_coding     46323875
2853      C21orf58                     protein_coding     46323875
2854      C21orf58                     protein_coding     46323875
2855      C21orf58                     protein_coding     46323875
2856      C21orf59                     protein_coding     32612866
2857      C21orf59                     protein_coding     32612866
2858      C21orf59                     protein_coding     32612866
2859      C21orf59                     protein_coding     32612866
2860      C21orf59                     protein_coding     32612866
2861      C21orf59                     protein_coding     32612866
2862      C21orf59                     protein_coding     32612866
2863      C21orf59                     protein_coding     32612866
2864      C21orf59                     protein_coding     32612866
2865      C21orf59                     protein_coding     32612866
2866      C21orf59                     protein_coding     32612866
2867      C21orf59                     protein_coding     32612866
2868      C21orf59                     protein_coding     32612866
2869      C21orf59                     protein_coding     32612866
2870      C21orf59                     protein_coding     32612866
2871      C21orf59                     protein_coding     32612866
2872      C21orf59                     protein_coding     32612866
2873      C21orf59                     protein_coding     32612866
2874      C21orf59                     protein_coding     32612866
2875      C21orf59                     protein_coding     32612866
2876      C21orf59                     protein_coding     32612866
2877      C21orf59                     protein_coding     32612866
2878      C21orf59                     protein_coding     32612866
2879      C21orf59                     protein_coding     32612866
2880      C21orf59                     protein_coding     32612866
2881      C21orf59                     protein_coding     32612866
2882      C21orf59                     protein_coding     32612866
2883      C21orf59                     protein_coding     32612866
2884      C21orf59                     protein_coding     32612866
2885      C21orf59                     protein_coding     32612866
2886      C21orf59                     protein_coding     32612866
2887      C21orf59                     protein_coding     32612866
2888      C21orf59                     protein_coding     32612866
2889      C21orf59                     protein_coding     32612866
2890      C21orf59                     protein_coding     32612866
2891      C21orf59                     protein_coding     32612866
2892      C21orf62                     protein_coding     32813743
2893      C21orf62                     protein_coding     32813743
2894      C21orf62                     protein_coding     32813743
2895      C21orf62                     protein_coding     32813743
2896      C21orf62                     protein_coding     32813743
2897      C21orf62                     protein_coding     32813743
2898      C21orf62                     protein_coding     32813743
2899      C21orf62                     protein_coding     32813743
2900      C21orf62                     protein_coding     32813743
2901      C21orf62                     protein_coding     32813743
2902      C21orf62                     protein_coding     32813743
2903      C21orf62                     protein_coding     32813743
2904  C21orf62-AS1                          antisense     32893735
2905  C21orf62-AS1                          antisense     32893735
2906  C21orf62-AS1                          antisense     32893735
2907  C21orf62-AS1                          antisense     32893735
2908  C21orf62-AS1                          antisense     32893735
2909  C21orf62-AS1                          antisense     32893735
2910  C21orf62-AS1                          antisense     32893735
2911  C21orf62-AS1                          antisense     32893735
2912  C21orf62-AS1                          antisense     32893735
2913  C21orf62-AS1                          antisense     32893735
2914  C21orf62-AS1                          antisense     32893735
2915  C21orf62-AS1                          antisense     32893735
2916  C21orf62-AS1                          antisense     32893735
2917  C21orf62-AS1                          antisense     32893735
2918  C21orf62-AS1                          antisense     32893735
2919  C21orf62-AS1                          antisense     32893735
2920  C21orf62-AS1                          antisense     32893735
2921  C21orf62-AS1                          antisense     32893735
2922  C21orf62-AS1                          antisense     32893735
2923  C21orf62-AS1                          antisense     32893735
2924  C21orf62-AS1                          antisense     32893735
2925  C21orf62-AS1                          antisense     32893735
2926  C21orf62-AS1                          antisense     32893735
2927      C21orf91                     protein_coding     17819386
2928      C21orf91                     protein_coding     17819386
2929      C21orf91                     protein_coding     17819386
2930      C21orf91                     protein_coding     17819386
2931      C21orf91                     protein_coding     17819386
2932      C21orf91                     protein_coding     17819386
2933      C21orf91                     protein_coding     17819386
2934      C21orf91                     protein_coding     17819386
2935      C21orf91                     protein_coding     17819386
2936      C21orf91                     protein_coding     17819386
2937      C21orf91                     protein_coding     17819386
2938      C21orf91                     protein_coding     17819386
2939      C21orf91                     protein_coding     17819386
2940      C21orf91                     protein_coding     17819386
2941      C21orf91                     protein_coding     17819386
2942      C21orf91                     protein_coding     17819386
2943      C21orf91                     protein_coding     17819386
2944      C21orf91                     protein_coding     17819386
2945      C21orf91                     protein_coding     17819386
2946      C21orf91                     protein_coding     17819386
2947      C21orf91                     protein_coding     17819386
2948      C21orf91                     protein_coding     17819386
2949      C21orf91                     protein_coding     17819386
2950      C21orf91                     protein_coding     17819386
2951      C21orf91                     protein_coding     17819386
2952  C21orf91-OT1                            lincRNA     17792523
2953  C21orf91-OT1                            lincRNA     17792523
2954  C21orf91-OT1                            lincRNA     17792523
2955  C21orf91-OT1                            lincRNA     17792523
2956  C21orf91-OT1                            lincRNA     17792523
2957  C21orf91-OT1                            lincRNA     17792523
2958  C21orf91-OT1                            lincRNA     17792523
2959  C21orf91-OT1                            lincRNA     17792523
2960  C21orf91-OT1                            lincRNA     17792523
2961  C21orf91-OT1                            lincRNA     17792523
2962  C21orf91-OT1                            lincRNA     17792523
2963  C21orf91-OT1                            lincRNA     17792523
2964         C2CD2                     protein_coding     41953890
2965         C2CD2                     protein_coding     41953890
2966         C2CD2                     protein_coding     41953890
2967         C2CD2                     protein_coding     41953890
2968         C2CD2                     protein_coding     41953890
2969         C2CD2                     protein_coding     41953890
2970         C2CD2                     protein_coding     41953890
2971         C2CD2                     protein_coding     41953890
2972         C2CD2                     protein_coding     41953890
2973         C2CD2                     protein_coding     41953890
2974         C2CD2                     protein_coding     41953890
2975         C2CD2                     protein_coding     41953890
2976         C2CD2                     protein_coding     41953890
2977         C2CD2                     protein_coding     41953890
2978         C2CD2                     protein_coding     41953890
2979         C2CD2                     protein_coding     41953890
2980         C2CD2                     protein_coding     41953890
2981         C2CD2                     protein_coding     41953890
2982         C2CD2                     protein_coding     41953890
2983         C2CD2                     protein_coding     41953890
2984         C2CD2                     protein_coding     41953890
2985         C2CD2                     protein_coding     41953890
2986         C2CD2                     protein_coding     41953890
2987         C2CD2                     protein_coding     41953890
2988         C2CD2                     protein_coding     41953890
2989         C2CD2                     protein_coding     41953890
2990         C2CD2                     protein_coding     41953890
2991         C2CD2                     protein_coding     41953890
2992         C2CD2                     protein_coding     41953890
2993         C2CD2                     protein_coding     41953890
2994         C2CD2                     protein_coding     41953890
2995         C2CD2                     protein_coding     41953890
2996         C2CD2                     protein_coding     41953890
2997         C2CD2                     protein_coding     41953890
2998         C2CD2                     protein_coding     41953890
2999         C2CD2                     protein_coding     41953890
3000         C2CD2                     protein_coding     41953890
3001         C2CD2                     protein_coding     41953890
3002         C2CD2                     protein_coding     41953890
3003         C2CD2                     protein_coding     41953890
3004         C2CD2                     protein_coding     41953890
3005         C2CD2                     protein_coding     41953890
3006         C2CD2                     protein_coding     41953890
3007         C2CD2                     protein_coding     41953890
3008         C2CD2                     protein_coding     41953890
3009         C2CD2                     protein_coding     41953890
3010         C2CD2                     protein_coding     41953890
3011         C2CD2                     protein_coding     41953890
3012         C2CD2                     protein_coding     41953890
3013         C2CD2                     protein_coding     41953890
3014         C2CD2                     protein_coding     41953890
3015         C2CD2                     protein_coding     41953890
3016         C2CD2                     protein_coding     41953890
3017         C2CD2                     protein_coding     41953890
3018         C2CD2                     protein_coding     41953890
3019         C2CD2                     protein_coding     41953890
3020         C2CD2                     protein_coding     41953890
3021         C2CD2                     protein_coding     41953890
3022         C2CD2                     protein_coding     41953890
3023         C2CD2                     protein_coding     41953890
3024         C2CD2                     protein_coding     41953890
3025         C2CD2                     protein_coding     41953890
3026         C2CD2                     protein_coding     41953890
3027         C2CD2                     protein_coding     41953890
3028         C2CD2                     protein_coding     41953890
3029         C2CD2                     protein_coding     41953890
3030          CBR1                     protein_coding     36073166
3031          CBR1                     protein_coding     36073166
3032          CBR1                     protein_coding     36073166
3033          CBR1                     protein_coding     36073166
3034          CBR1                     protein_coding     36073166
3035          CBR1                     protein_coding     36073166
3036          CBR1                     protein_coding     36073166
3037          CBR1                     protein_coding     36073166
3038          CBR1                     protein_coding     36073166
3039          CBR1                     protein_coding     36073166
3040          CBR1                     protein_coding     36073166
3041          CBR1                     protein_coding     36073166
3042          CBR1                     protein_coding     36073166
3043          CBR1                     protein_coding     36073166
3044          CBR3                     protein_coding     36146566
3045          CBR3                     protein_coding     36146566
3046          CBR3                     protein_coding     36146566
3047      CBR3-AS1               processed_transcript     36175815
3048      CBR3-AS1               processed_transcript     36175815
3049      CBR3-AS1               processed_transcript     36175815
3050      CBR3-AS1               processed_transcript     36175815
3051      CBR3-AS1               processed_transcript     36175815
3052      CBR3-AS1               processed_transcript     36175815
3053      CBR3-AS1               processed_transcript     36175815
3054      CBR3-AS1               processed_transcript     36175815
3055      CBR3-AS1               processed_transcript     36175815
3056      CBR3-AS1               processed_transcript     36175815
3057      CBR3-AS1               processed_transcript     36175815
3058      CBR3-AS1               processed_transcript     36175815
3059      CBR3-AS1               processed_transcript     36175815
3060      CBR3-AS1               processed_transcript     36175815
3061      CBR3-AS1               processed_transcript     36175815
3062      CBR3-AS1               processed_transcript     36175815
3063      CBR3-AS1               processed_transcript     36175815
3064      CBR3-AS1               processed_transcript     36175815
3065      CBR3-AS1               processed_transcript     36175815
3066      CBR3-AS1               processed_transcript     36175815
3067      CBR3-AS1               processed_transcript     36175815
3068      CBR3-AS1               processed_transcript     36175815
3069      CBR3-AS1               processed_transcript     36175815
3070      CBR3-AS1               processed_transcript     36175815
3071      CBR3-AS1               processed_transcript     36175815
3072      CBR3-AS1               processed_transcript     36175815
3073      CBR3-AS1               processed_transcript     36175815
3074      CBR3-AS1               processed_transcript     36175815
3075      CBR3-AS1               processed_transcript     36175815
3076      CBR3-AS1               processed_transcript     36175815
3077      CBR3-AS1               processed_transcript     36175815
3078      CBR3-AS1               processed_transcript     36175815
3079      CBR3-AS1               processed_transcript     36175815
3080      CBR3-AS1               processed_transcript     36175815
3081      CBR3-AS1               processed_transcript     36175815
3082      CBR3-AS1               processed_transcript     36175815
3083      CBR3-AS1               processed_transcript     36175815
3084      CBR3-AS1               processed_transcript     36175815
3085      CBR3-AS1               processed_transcript     36175815
3086      CBR3-AS1               processed_transcript     36175815
3087      CBR3-AS1               processed_transcript     36175815
3088      CBR3-AS1               processed_transcript     36175815
3089      CBR3-AS1               processed_transcript     36175815
3090      CBR3-AS1               processed_transcript     36175815
3091      CBR3-AS1               processed_transcript     36175815
3092      CBR3-AS1               processed_transcript     36175815
3093      CBR3-AS1               processed_transcript     36175815
3094      CBR3-AS1               processed_transcript     36175815
3095      CBR3-AS1               processed_transcript     36175815
3096      CBR3-AS1               processed_transcript     36175815
3097      CBR3-AS1               processed_transcript     36175815
3098      CBR3-AS1               processed_transcript     36175815
3099      CBR3-AS1               processed_transcript     36175815
3100      CBR3-AS1               processed_transcript     36175815
3101      CBR3-AS1               processed_transcript     36175815
3102      CBR3-AS1               processed_transcript     36175815
3103      CBR3-AS1               processed_transcript     36175815
3104           CBS                     protein_coding     43076943
3105           CBS                     protein_coding     43076943
3106           CBS                     protein_coding     43076943
3107           CBS                     protein_coding     43076943
3108           CBS                     protein_coding     43076943
3109           CBS                     protein_coding     43076943
3110           CBS                     protein_coding     43076943
3111           CBS                     protein_coding     43076943
3112           CBS                     protein_coding     43076943
3113           CBS                     protein_coding     43076943
3114           CBS                     protein_coding     43076943
3115           CBS                     protein_coding     43076943
3116           CBS                     protein_coding     43076943
3117           CBS                     protein_coding     43076943
3118           CBS                     protein_coding     43076943
3119           CBS                     protein_coding     43076943
3120           CBS                     protein_coding     43076943
3121           CBS                     protein_coding     43076943
3122           CBS                     protein_coding     43076943
3123           CBS                     protein_coding     43076943
3124           CBS                     protein_coding     43076943
3125           CBS                     protein_coding     43076943
3126           CBS                     protein_coding     43076943
3127           CBS                     protein_coding     43076943
3128           CBS                     protein_coding     43076943
3129           CBS                     protein_coding     43076943
3130           CBS                     protein_coding     43076943
3131           CBS                     protein_coding     43076943
3132           CBS                     protein_coding     43076943
3133           CBS                     protein_coding     43076943
3134           CBS                     protein_coding     43076943
3135           CBS                     protein_coding     43076943
3136           CBS                     protein_coding     43076943
3137           CBS                     protein_coding     43076943
3138           CBS                     protein_coding     43076943
3139           CBS                     protein_coding     43076943
3140           CBS                     protein_coding     43076943
3141           CBS                     protein_coding     43076943
3142           CBS                     protein_coding     43076943
3143           CBS                     protein_coding     43076943
3144           CBS                     protein_coding     43076943
3145           CBS                     protein_coding     43076943
3146           CBS                     protein_coding     43076943
3147           CBS                     protein_coding     43076943
3148           CBS                     protein_coding     43076943
3149           CBS                     protein_coding     43076943
3150           CBS                     protein_coding     43076943
3151           CBS                     protein_coding     43076943
3152           CBS                     protein_coding     43076943
3153           CBS                     protein_coding     43076943
3154           CBS                     protein_coding     43076943
3155           CBS                     protein_coding     43076943
3156           CBS                     protein_coding     43076943
3157           CBS                     protein_coding     43076943
3158           CBS                     protein_coding     43076943
3159           CBS                     protein_coding     43076943
3160           CBS                     protein_coding     43076943
3161           CBS                     protein_coding     43076943
3162           CBS                     protein_coding     43076943
3163           CBS                     protein_coding     43076943
3164           CBS                     protein_coding     43076943
3165           CBS                     protein_coding     43076943
3166           CBS                     protein_coding     43076943
3167           CBS                     protein_coding     43076943
3168           CBS                     protein_coding     43076943
3169           CBS                     protein_coding     43076943
3170           CBS                     protein_coding     43076943
3171           CBS                     protein_coding     43076943
3172           CBS                     protein_coding     43076943
3173           CBS                     protein_coding     43076943
3174           CBS                     protein_coding     43076943
3175           CBS                     protein_coding     43076943
3176           CBS                     protein_coding     43076943
3177           CBS                     protein_coding     43076943
3178           CBS                     protein_coding     43076943
3179           CBS                     protein_coding     43076943
3180           CBS                     protein_coding     43076943
3181           CBS                     protein_coding     43076943
3182           CBS                     protein_coding     43076943
3183           CBS                     protein_coding     43076943
3184           CBS                     protein_coding     43076943
3185           CBS                     protein_coding     43076943
3186           CBS                     protein_coding     43076943
3187           CBS                     protein_coding     43076943
3188           CBS                     protein_coding     43076943
3189           CBS                     protein_coding     43076943
3190           CBS                     protein_coding     43076943
3191           CBS                     protein_coding     43076943
3192           CBS                     protein_coding     43076943
3193           CBS                     protein_coding     43076943
3194           CBS                     protein_coding     43076943
3195           CBS                     protein_coding     43076943
3196           CBS                     protein_coding     43076943
3197           CBS                     protein_coding     43076943
3198           CBS                     protein_coding     43076943
3199           CBS                     protein_coding     43076943
3200           CBS                     protein_coding     43076943
3201           CBS                     protein_coding     43076943
3202           CBS                     protein_coding     43076943
3203           CBS                     protein_coding     43076943
3204           CBS                     protein_coding     43076943
3205           CBS                     protein_coding     43076943
3206           CBS                     protein_coding     43076943
3207           CBS                     protein_coding     43076943
3208           CBS                     protein_coding     43076943
3209           CBS                     protein_coding     43076943
3210           CBS                     protein_coding     43076943
3211           CBS                     protein_coding     43076943
3212           CBS                     protein_coding     43076943
3213           CBS                     protein_coding     43076943
3214           CBS                     protein_coding     43076943
3215           CBS                     protein_coding     43076943
3216           CBS                     protein_coding     43076943
3217           CBS                     protein_coding     43076943
3218           CBS                     protein_coding     43076943
3219           CBS                     protein_coding     43076943
3220           CBS                     protein_coding     43076943
3221           CBS                     protein_coding     43076943
3222           CBS                     protein_coding     43076943
3223           CBS                     protein_coding     43076943
3224           CBS                     protein_coding     43076943
3225           CBS                     protein_coding     43076943
3226           CBS                     protein_coding     43076943
3227           CBS                     protein_coding     43076943
3228           CBS                     protein_coding     43076943
3229           CBS                     protein_coding     43076943
3230           CBS                     protein_coding     43076943
3231           CBS                     protein_coding     43076943
3232           CBS                     protein_coding     43076943
3233           CBS                     protein_coding     43076943
3234           CBS                     protein_coding     43076943
3235           CBS                     protein_coding     43076943
3236           CBS                     protein_coding     43076943
3237           CBS                     protein_coding     43076943
3238           CBS                     protein_coding     43076943
3239           CBS                     protein_coding     43076943
3240           CBS                     protein_coding     43076943
3241           CBS                     protein_coding     43076943
3242           CBS                     protein_coding     43076943
3243          CBSL                     protein_coding      6468040
3244          CBSL                     protein_coding      6468040
3245          CBSL                     protein_coding      6468040
3246          CBSL                     protein_coding      6468040
3247          CBSL                     protein_coding      6468040
3248          CBSL                     protein_coding      6468040
3249          CBSL                     protein_coding      6468040
3250          CBSL                     protein_coding      6468040
3251          CBSL                     protein_coding      6468040
3252          CBSL                     protein_coding      6468040
3253          CBSL                     protein_coding      6468040
3254          CBSL                     protein_coding      6468040
3255          CBSL                     protein_coding      6468040
3256          CBSL                     protein_coding      6468040
3257          CBSL                     protein_coding      6468040
3258          CBSL                     protein_coding      6468040
3259          CBSL                     protein_coding      6468040
3260          CBSL                     protein_coding      6468040
3261          CBSL                     protein_coding      6468040
3262          CBSL                     protein_coding      6468040
3263          CBSL                     protein_coding      6468040
3264          CBSL                     protein_coding      6468040
3265          CBSL                     protein_coding      6468040
3266          CBSL                     protein_coding      6468040
3267          CBSL                     protein_coding      6468040
3268          CBSL                     protein_coding      6468040
3269          CBSL                     protein_coding      6468040
3270          CBSL                     protein_coding      6468040
3271          CBSL                     protein_coding      6468040
3272          CBSL                     protein_coding      6468040
3273          CBSL                     protein_coding      6468040
3274          CBSL                     protein_coding      6468040
3275          CBSL                     protein_coding      6468040
3276          CBSL                     protein_coding      6468040
3277          CBSL                     protein_coding      6468040
3278          CBSL                     protein_coding      6468040
3279          CBSL                     protein_coding      6468040
3280          CBSL                     protein_coding      6468040
3281          CBSL                     protein_coding      6468040
3282          CBSL                     protein_coding      6468040
3283          CBSL                     protein_coding      6468040
3284          CBSL                     protein_coding      6468040
3285          CBSL                     protein_coding      6468040
3286          CBSL                     protein_coding      6468040
3287          CBSL                     protein_coding      6468040
3288          CBSL                     protein_coding      6468040
3289          CBSL                     protein_coding      6468040
3290          CBSL                     protein_coding      6468040
3291          CBSL                     protein_coding      6468040
3292          CBSL                     protein_coding      6468040
3293          CBSL                     protein_coding      6468040
3294          CBSL                     protein_coding      6468040
3295          CBSL                     protein_coding      6468040
3296          CBSL                     protein_coding      6468040
3297          CBSL                     protein_coding      6468040
3298          CBSL                     protein_coding      6468040
3299          CBSL                     protein_coding      6468040
3300          CBSL                     protein_coding      6468040
3301          CBSL                     protein_coding      6468040
3302          CBSL                     protein_coding      6468040
3303          CBSL                     protein_coding      6468040
3304          CBSL                     protein_coding      6468040
3305          CBSL                     protein_coding      6468040
3306          CBSL                     protein_coding      6468040
3307          CBSL                     protein_coding      6468040
3308          CBSL                     protein_coding      6468040
3309          CBSL                     protein_coding      6468040
3310          CBSL                     protein_coding      6468040
3311          CBSL                     protein_coding      6468040
3312          CBSL                     protein_coding      6468040
3313          CBSL                     protein_coding      6468040
3314          CBSL                     protein_coding      6468040
3315          CBSL                     protein_coding      6468040
3316          CBSL                     protein_coding      6468040
3317          CBSL                     protein_coding      6468040
3318          CBSL                     protein_coding      6468040
3319          CBSL                     protein_coding      6468040
3320          CBSL                     protein_coding      6468040
3321          CBSL                     protein_coding      6468040
3322          CBSL                     protein_coding      6468040
3323          CBSL                     protein_coding      6468040
3324          CBSL                     protein_coding      6468040
3325          CBSL                     protein_coding      6468040
3326          CBSL                     protein_coding      6468040
3327          CBSL                     protein_coding      6468040
3328          CBSL                     protein_coding      6468040
3329          CBSL                     protein_coding      6468040
3330          CBSL                     protein_coding      6468040
3331          CBSL                     protein_coding      6468040
3332          CBSL                     protein_coding      6468040
3333          CBSL                     protein_coding      6468040
3334          CBSL                     protein_coding      6468040
3335          CBSL                     protein_coding      6468040
3336          CBSL                     protein_coding      6468040
3337          CBSL                     protein_coding      6468040
3338          CBSL                     protein_coding      6468040
3339          CBSL                     protein_coding      6468040
3340          CBSL                     protein_coding      6468040
3341          CBSL                     protein_coding      6468040
3342          CBSL                     protein_coding      6468040
3343          CBSL                     protein_coding      6468040
3344          CBSL                     protein_coding      6468040
3345          CBSL                     protein_coding      6468040
3346          CBSL                     protein_coding      6468040
3347          CBSL                     protein_coding      6468040
3348          CBSL                     protein_coding      6468040
3349          CBSL                     protein_coding      6468040
3350          CBSL                     protein_coding      6468040
3351          CBSL                     protein_coding      6468040
3352          CBSL                     protein_coding      6468040
3353          CBSL                     protein_coding      6468040
3354          CBSL                     protein_coding      6468040
3355          CBSL                     protein_coding      6468040
3356          CBSL                     protein_coding      6468040
3357          CBSL                     protein_coding      6468040
3358          CBSL                     protein_coding      6468040
3359          CBSL                     protein_coding      6468040
3360          CBSL                     protein_coding      6468040
3361          CBSL                     protein_coding      6468040
3362          CBSL                     protein_coding      6468040
3363          CCT8                     protein_coding     29073797
3364          CCT8                     protein_coding     29073797
3365          CCT8                     protein_coding     29073797
3366          CCT8                     protein_coding     29073797
3367          CCT8                     protein_coding     29073797
3368          CCT8                     protein_coding     29073797
3369          CCT8                     protein_coding     29073797
3370          CCT8                     protein_coding     29073797
3371          CCT8                     protein_coding     29073797
3372          CCT8                     protein_coding     29073797
3373          CCT8                     protein_coding     29073797
3374          CCT8                     protein_coding     29073797
3375          CCT8                     protein_coding     29073797
3376          CCT8                     protein_coding     29073797
3377          CCT8                     protein_coding     29073797
3378          CCT8                     protein_coding     29073797
3379          CCT8                     protein_coding     29073797
3380          CCT8                     protein_coding     29073797
3381          CCT8                     protein_coding     29073797
3382          CCT8                     protein_coding     29073797
3383          CCT8                     protein_coding     29073797
3384          CCT8                     protein_coding     29073797
3385          CCT8                     protein_coding     29073797
3386          CCT8                     protein_coding     29073797
3387          CCT8                     protein_coding     29073797
3388          CCT8                     protein_coding     29073797
3389          CCT8                     protein_coding     29073797
3390          CCT8                     protein_coding     29073797
3391          CCT8                     protein_coding     29073797
3392          CCT8                     protein_coding     29073797
3393          CCT8                     protein_coding     29073797
3394          CCT8                     protein_coding     29073797
3395          CCT8                     protein_coding     29073797
3396          CCT8                     protein_coding     29073797
3397          CCT8                     protein_coding     29073797
3398          CCT8                     protein_coding     29073797
3399          CCT8                     protein_coding     29073797
3400          CCT8                     protein_coding     29073797
3401          CCT8                     protein_coding     29073797
3402          CCT8                     protein_coding     29073797
3403          CCT8                     protein_coding     29073797
3404          CCT8                     protein_coding     29073797
3405          CCT8                     protein_coding     29073797
3406          CCT8                     protein_coding     29073797
3407          CCT8                     protein_coding     29073797
3408          CCT8                     protein_coding     29073797
3409          CCT8                     protein_coding     29073797
3410          CCT8                     protein_coding     29073797
3411          CCT8                     protein_coding     29073797
3412          CCT8                     protein_coding     29073797
3413          CCT8                     protein_coding     29073797
3414          CCT8                     protein_coding     29073797
3415          CCT8                     protein_coding     29073797
3416          CCT8                     protein_coding     29073797
3417          CCT8                     protein_coding     29073797
3418          CCT8                     protein_coding     29073797
3419          CCT8                     protein_coding     29073797
3420          CCT8                     protein_coding     29073797
3421          CCT8                     protein_coding     29073797
3422          CCT8                     protein_coding     29073797
3423          CCT8                     protein_coding     29073797
3424          CCT8                     protein_coding     29073797
3425          CCT8                     protein_coding     29073797
3426          CCT8                     protein_coding     29073797
3427          CCT8                     protein_coding     29073797
3428          CCT8                     protein_coding     29073797
3429          CCT8                     protein_coding     29073797
3430          CCT8                     protein_coding     29073797
3431          CCT8                     protein_coding     29073797
3432          CCT8                     protein_coding     29073797
3433          CCT8                     protein_coding     29073797
3434          CCT8                     protein_coding     29073797
3435          CCT8                     protein_coding     29073797
3436          CCT8                     protein_coding     29073797
3437          CCT8                     protein_coding     29073797
3438          CCT8                     protein_coding     29073797
3439          CCT8                     protein_coding     29073797
3440          CCT8                     protein_coding     29073797
3441          CCT8                     protein_coding     29073797
3442          CCT8                     protein_coding     29073797
3443          CCT8                     protein_coding     29073797
3444          CCT8                     protein_coding     29073797
3445          CCT8                     protein_coding     29073797
3446          CCT8                     protein_coding     29073797
3447          CCT8                     protein_coding     29073797
3448          CCT8                     protein_coding     29073797
3449          CCT8                     protein_coding     29073797
3450          CCT8                     protein_coding     29073797
3451          CCT8                     protein_coding     29073797
3452          CCT8                     protein_coding     29073797
3453          CCT8                     protein_coding     29073797
3454          CCT8                     protein_coding     29073797
3455          CCT8                     protein_coding     29073797
3456          CCT8                     protein_coding     29073797
3457          CCT8                     protein_coding     29073797
3458          CCT8                     protein_coding     29073797
3459          CCT8                     protein_coding     29073797
3460          CCT8                     protein_coding     29073797
3461          CCT8                     protein_coding     29073797
3462          CCT8                     protein_coding     29073797
3463          CCT8                     protein_coding     29073797
3464          CCT8                     protein_coding     29073797
3465        CHAF1B                     protein_coding     36419015
3466        CHAF1B                     protein_coding     36419015
3467        CHAF1B                     protein_coding     36419015
3468        CHAF1B                     protein_coding     36419015
3469        CHAF1B                     protein_coding     36419015
3470        CHAF1B                     protein_coding     36419015
3471        CHAF1B                     protein_coding     36419015
3472        CHAF1B                     protein_coding     36419015
3473        CHAF1B                     protein_coding     36419015
3474        CHAF1B                     protein_coding     36419015
3475        CHAF1B                     protein_coding     36419015
3476        CHAF1B                     protein_coding     36419015
3477        CHAF1B                     protein_coding     36419015
3478        CHAF1B                     protein_coding     36419015
3479        CHAF1B                     protein_coding     36419015
3480        CHAF1B                     protein_coding     36419015
3481        CHAF1B                     protein_coding     36419015
3482        CHAF1B                     protein_coding     36419015
3483        CHAF1B                     protein_coding     36419015
3484        CHAF1B                     protein_coding     36419015
3485        CHAF1B                     protein_coding     36419015
3486        CHAF1B                     protein_coding     36419015
3487        CHAF1B                     protein_coding     36419015
3488        CHAF1B                     protein_coding     36419015
3489         CHODL                     protein_coding     18267373
3490         CHODL                     protein_coding     18267373
3491         CHODL                     protein_coding     18267373
3492         CHODL                     protein_coding     18267373
3493         CHODL                     protein_coding     18267373
3494         CHODL                     protein_coding     18267373
3495         CHODL                     protein_coding     18267373
3496         CHODL                     protein_coding     18267373
3497         CHODL                     protein_coding     18267373
3498         CHODL                     protein_coding     18267373
3499         CHODL                     protein_coding     18267373
3500         CHODL                     protein_coding     18267373
3501         CHODL                     protein_coding     18267373
3502         CHODL                     protein_coding     18267373
3503         CHODL                     protein_coding     18267373
3504         CHODL                     protein_coding     18267373
3505         CHODL                     protein_coding     18267373
3506         CHODL                     protein_coding     18267373
3507         CHODL                     protein_coding     18267373
3508         CHODL                     protein_coding     18267373
3509         CHODL                     protein_coding     18267373
3510         CHODL                     protein_coding     18267373
3511         CHODL                     protein_coding     18267373
3512         CHODL                     protein_coding     18267373
3513         CHODL                     protein_coding     18267373
3514         CHODL                     protein_coding     18267373
3515         CHODL                     protein_coding     18267373
3516         CHODL                     protein_coding     18267373
3517         CHODL                     protein_coding     18267373
3518         CHODL                     protein_coding     18267373
3519         CHODL                     protein_coding     18267373
3520         CHODL                     protein_coding     18267373
3521         CHODL                     protein_coding     18267373
3522         CHODL                     protein_coding     18267373
3523         CHODL                     protein_coding     18267373
3524         CHODL                     protein_coding     18267373
3525         CHODL                     protein_coding     18267373
3526         CHODL                     protein_coding     18267373
3527         CHODL                     protein_coding     18267373
3528         CHODL                     protein_coding     18267373
3529         CHODL                     protein_coding     18267373
3530     CHODL-AS1                            lincRNA     17885608
3531     CHODL-AS1                            lincRNA     17885608
3532     CHODL-AS1                            lincRNA     17885608
3533        CLDN14                     protein_coding     36576569
3534        CLDN14                     protein_coding     36576569
3535        CLDN14                     protein_coding     36576569
3536        CLDN14                     protein_coding     36576569
3537        CLDN14                     protein_coding     36576569
3538        CLDN14                     protein_coding     36576569
3539        CLDN14                     protein_coding     36576569
3540        CLDN14                     protein_coding     36576569
3541        CLDN14                     protein_coding     36576569
3542        CLDN14                     protein_coding     36576569
3543        CLDN14                     protein_coding     36576569
3544        CLDN14                     protein_coding     36576569
3545        CLDN14                     protein_coding     36576569
3546        CLDN14                     protein_coding     36576569
3547        CLDN14                     protein_coding     36576569
3548        CLDN17                     protein_coding     30166756
3549         CLDN8                     protein_coding     30216073
3550         CLIC6                     protein_coding     34718227
3551         CLIC6                     protein_coding     34718227
3552         CLIC6                     protein_coding     34718227
3553         CLIC6                     protein_coding     34718227
3554         CLIC6                     protein_coding     34718227
3555         CLIC6                     protein_coding     34718227
3556         CLIC6                     protein_coding     34718227
3557         CLIC6                     protein_coding     34718227
3558         CLIC6                     protein_coding     34718227
3559         CLIC6                     protein_coding     34718227
3560         CLIC6                     protein_coding     34718227
3561         CLIC6                     protein_coding     34718227
3562         CLIC6                     protein_coding     34718227
3563        CNN2P7               processed_pseudogene     13827627
3564       COL18A1                     protein_coding     45513720
3565       COL18A1                     protein_coding     45513720
3566       COL18A1                     protein_coding     45513720
3567       COL18A1                     protein_coding     45513720
3568       COL18A1                     protein_coding     45513720
3569       COL18A1                     protein_coding     45513720
3570       COL18A1                     protein_coding     45513720
3571       COL18A1                     protein_coding     45513720
3572       COL18A1                     protein_coding     45513720
3573       COL18A1                     protein_coding     45513720
3574       COL18A1                     protein_coding     45513720
3575       COL18A1                     protein_coding     45513720
3576       COL18A1                     protein_coding     45513720
3577       COL18A1                     protein_coding     45513720
3578       COL18A1                     protein_coding     45513720
3579       COL18A1                     protein_coding     45513720
3580       COL18A1                     protein_coding     45513720
3581       COL18A1                     protein_coding     45513720
3582       COL18A1                     protein_coding     45513720
3583       COL18A1                     protein_coding     45513720
3584       COL18A1                     protein_coding     45513720
3585       COL18A1                     protein_coding     45513720
3586       COL18A1                     protein_coding     45513720
3587       COL18A1                     protein_coding     45513720
3588       COL18A1                     protein_coding     45513720
3589       COL18A1                     protein_coding     45513720
3590       COL18A1                     protein_coding     45513720
3591       COL18A1                     protein_coding     45513720
3592       COL18A1                     protein_coding     45513720
3593       COL18A1                     protein_coding     45513720
3594       COL18A1                     protein_coding     45513720
3595       COL18A1                     protein_coding     45513720
3596       COL18A1                     protein_coding     45513720
3597       COL18A1                     protein_coding     45513720
3598       COL18A1                     protein_coding     45513720
3599       COL18A1                     protein_coding     45513720
3600       COL18A1                     protein_coding     45513720
3601       COL18A1                     protein_coding     45513720
3602       COL18A1                     protein_coding     45513720
3603       COL18A1                     protein_coding     45513720
3604       COL18A1                     protein_coding     45513720
3605       COL18A1                     protein_coding     45513720
3606       COL18A1                     protein_coding     45513720
3607       COL18A1                     protein_coding     45513720
3608       COL18A1                     protein_coding     45513720
3609       COL18A1                     protein_coding     45513720
3610       COL18A1                     protein_coding     45513720
3611       COL18A1                     protein_coding     45513720
3612       COL18A1                     protein_coding     45513720
3613       COL18A1                     protein_coding     45513720
3614       COL18A1                     protein_coding     45513720
3615       COL18A1                     protein_coding     45513720
3616       COL18A1                     protein_coding     45513720
3617       COL18A1                     protein_coding     45513720
3618       COL18A1                     protein_coding     45513720
3619       COL18A1                     protein_coding     45513720
3620       COL18A1                     protein_coding     45513720
3621       COL18A1                     protein_coding     45513720
3622       COL18A1                     protein_coding     45513720
3623       COL18A1                     protein_coding     45513720
3624       COL18A1                     protein_coding     45513720
3625       COL18A1                     protein_coding     45513720
3626       COL18A1                     protein_coding     45513720
3627       COL18A1                     protein_coding     45513720
3628       COL18A1                     protein_coding     45513720
3629       COL18A1                     protein_coding     45513720
3630       COL18A1                     protein_coding     45513720
3631       COL18A1                     protein_coding     45513720
3632       COL18A1                     protein_coding     45513720
3633       COL18A1                     protein_coding     45513720
3634       COL18A1                     protein_coding     45513720
3635       COL18A1                     protein_coding     45513720
3636       COL18A1                     protein_coding     45513720
3637       COL18A1                     protein_coding     45513720
3638       COL18A1                     protein_coding     45513720
3639       COL18A1                     protein_coding     45513720
3640       COL18A1                     protein_coding     45513720
3641       COL18A1                     protein_coding     45513720
3642       COL18A1                     protein_coding     45513720
3643       COL18A1                     protein_coding     45513720
3644       COL18A1                     protein_coding     45513720
3645       COL18A1                     protein_coding     45513720
3646       COL18A1                     protein_coding     45513720
3647       COL18A1                     protein_coding     45513720
3648       COL18A1                     protein_coding     45513720
3649       COL18A1                     protein_coding     45513720
3650       COL18A1                     protein_coding     45513720
3651       COL18A1                     protein_coding     45513720
3652       COL18A1                     protein_coding     45513720
3653       COL18A1                     protein_coding     45513720
3654       COL18A1                     protein_coding     45513720
3655       COL18A1                     protein_coding     45513720
3656       COL18A1                     protein_coding     45513720
3657       COL18A1                     protein_coding     45513720
3658       COL18A1                     protein_coding     45513720
3659       COL18A1                     protein_coding     45513720
3660       COL18A1                     protein_coding     45513720
3661       COL18A1                     protein_coding     45513720
3662       COL18A1                     protein_coding     45513720
3663       COL18A1                     protein_coding     45513720
3664       COL18A1                     protein_coding     45513720
3665       COL18A1                     protein_coding     45513720
3666       COL18A1                     protein_coding     45513720
3667       COL18A1                     protein_coding     45513720
3668       COL18A1                     protein_coding     45513720
3669       COL18A1                     protein_coding     45513720
3670       COL18A1                     protein_coding     45513720
3671       COL18A1                     protein_coding     45513720
3672       COL18A1                     protein_coding     45513720
3673       COL18A1                     protein_coding     45513720
3674       COL18A1                     protein_coding     45513720
3675       COL18A1                     protein_coding     45513720
3676       COL18A1                     protein_coding     45513720
3677       COL18A1                     protein_coding     45513720
3678       COL18A1                     protein_coding     45513720
3679       COL18A1                     protein_coding     45513720
3680       COL18A1                     protein_coding     45513720
3681       COL18A1                     protein_coding     45513720
3682       COL18A1                     protein_coding     45513720
3683       COL18A1                     protein_coding     45513720
3684       COL18A1                     protein_coding     45513720
3685       COL18A1                     protein_coding     45513720
3686       COL18A1                     protein_coding     45513720
3687       COL18A1                     protein_coding     45513720
3688       COL18A1                     protein_coding     45513720
3689       COL18A1                     protein_coding     45513720
3690       COL18A1                     protein_coding     45513720
3691       COL18A1                     protein_coding     45513720
3692       COL18A1                     protein_coding     45513720
3693       COL18A1                     protein_coding     45513720
3694       COL18A1                     protein_coding     45513720
3695       COL18A1                     protein_coding     45513720
3696       COL18A1                     protein_coding     45513720
3697       COL18A1                     protein_coding     45513720
3698       COL18A1                     protein_coding     45513720
3699       COL18A1                     protein_coding     45513720
3700       COL18A1                     protein_coding     45513720
3701       COL18A1                     protein_coding     45513720
3702       COL18A1                     protein_coding     45513720
3703       COL18A1                     protein_coding     45513720
3704       COL18A1                     protein_coding     45513720
3705       COL18A1                     protein_coding     45513720
3706       COL18A1                     protein_coding     45513720
3707       COL18A1                     protein_coding     45513720
3708       COL18A1                     protein_coding     45513720
3709       COL18A1                     protein_coding     45513720
3710       COL18A1                     protein_coding     45513720
3711       COL18A1                     protein_coding     45513720
3712       COL18A1                     protein_coding     45513720
3713       COL18A1                     protein_coding     45513720
3714       COL18A1                     protein_coding     45513720
3715       COL18A1                     protein_coding     45513720
3716       COL18A1                     protein_coding     45513720
3717       COL18A1                     protein_coding     45513720
3718       COL18A1                     protein_coding     45513720
3719       COL18A1                     protein_coding     45513720
3720       COL18A1                     protein_coding     45513720
3721       COL18A1                     protein_coding     45513720
3722       COL18A1                     protein_coding     45513720
3723       COL18A1                     protein_coding     45513720
3724       COL18A1                     protein_coding     45513720
3725       COL18A1                     protein_coding     45513720
3726       COL18A1                     protein_coding     45513720
3727       COL18A1                     protein_coding     45513720
3728       COL18A1                     protein_coding     45513720
3729       COL18A1                     protein_coding     45513720
3730   COL18A1-AS1                          antisense     45425070
3731   COL18A1-AS1                          antisense     45425070
3732   COL18A1-AS1                          antisense     45425070
3733   COL18A1-AS1                          antisense     45425070
3734   COL18A1-AS1                          antisense     45425070
3735   COL18A1-AS1                          antisense     45425070
3736   COL18A1-AS2                          antisense     45410065
3737   COL18A1-AS2                          antisense     45410065
3738   COL18A1-AS2                          antisense     45410065
3739   COL18A1-AS2                          antisense     45410065
3740        COL6A1                     protein_coding     46005050
3741        COL6A1                     protein_coding     46005050
3742        COL6A1                     protein_coding     46005050
3743        COL6A1                     protein_coding     46005050
3744        COL6A1                     protein_coding     46005050
3745        COL6A1                     protein_coding     46005050
3746        COL6A1                     protein_coding     46005050
3747        COL6A1                     protein_coding     46005050
3748        COL6A1                     protein_coding     46005050
3749        COL6A1                     protein_coding     46005050
3750        COL6A1                     protein_coding     46005050
3751        COL6A1                     protein_coding     46005050
3752        COL6A1                     protein_coding     46005050
3753        COL6A1                     protein_coding     46005050
3754        COL6A1                     protein_coding     46005050
3755        COL6A1                     protein_coding     46005050
3756        COL6A1                     protein_coding     46005050
3757        COL6A1                     protein_coding     46005050
3758        COL6A1                     protein_coding     46005050
3759        COL6A1                     protein_coding     46005050
3760        COL6A1                     protein_coding     46005050
3761        COL6A1                     protein_coding     46005050
3762        COL6A1                     protein_coding     46005050
3763        COL6A1                     protein_coding     46005050
3764        COL6A1                     protein_coding     46005050
3765        COL6A1                     protein_coding     46005050
3766        COL6A1                     protein_coding     46005050
3767        COL6A1                     protein_coding     46005050
3768        COL6A1                     protein_coding     46005050
3769        COL6A1                     protein_coding     46005050
3770        COL6A1                     protein_coding     46005050
3771        COL6A1                     protein_coding     46005050
3772        COL6A1                     protein_coding     46005050
3773        COL6A1                     protein_coding     46005050
3774        COL6A1                     protein_coding     46005050
3775        COL6A1                     protein_coding     46005050
3776        COL6A1                     protein_coding     46005050
3777        COL6A1                     protein_coding     46005050
3778        COL6A1                     protein_coding     46005050
3779        COL6A1                     protein_coding     46005050
3780        COL6A1                     protein_coding     46005050
3781        COL6A1                     protein_coding     46005050
3782        COL6A1                     protein_coding     46005050
3783        COL6A1                     protein_coding     46005050
3784        COL6A1                     protein_coding     46005050
3785        COL6A1                     protein_coding     46005050
3786        COL6A1                     protein_coding     46005050
3787        COL6A1                     protein_coding     46005050
3788        COL6A1                     protein_coding     46005050
3789        COL6A1                     protein_coding     46005050
3790        COL6A1                     protein_coding     46005050
3791        COL6A1                     protein_coding     46005050
3792        COL6A1                     protein_coding     46005050
3793        COL6A1                     protein_coding     46005050
3794        COL6A1                     protein_coding     46005050
3795        COL6A1                     protein_coding     46005050
3796        COL6A1                     protein_coding     46005050
3797        COL6A1                     protein_coding     46005050
3798        COL6A1                     protein_coding     46005050
3799        COL6A1                     protein_coding     46005050
3800        COL6A1                     protein_coding     46005050
3801        COL6A1                     protein_coding     46005050
3802        COL6A1                     protein_coding     46005050
3803        COL6A1                     protein_coding     46005050
3804        COL6A1                     protein_coding     46005050
3805        COL6A1                     protein_coding     46005050
3806        COL6A1                     protein_coding     46005050
3807        COL6A1                     protein_coding     46005050
3808        COL6A1                     protein_coding     46005050
3809        COL6A1                     protein_coding     46005050
3810        COL6A1                     protein_coding     46005050
3811        COL6A1                     protein_coding     46005050
3812        COL6A1                     protein_coding     46005050
3813        COL6A1                     protein_coding     46005050
3814        COL6A1                     protein_coding     46005050
3815        COL6A1                     protein_coding     46005050
3816        COL6A1                     protein_coding     46005050
3817        COL6A1                     protein_coding     46005050
3818        COL6A1                     protein_coding     46005050
3819        COL6A1                     protein_coding     46005050
3820        COL6A1                     protein_coding     46005050
3821        COL6A1                     protein_coding     46005050
3822        COL6A1                     protein_coding     46005050
3823        COL6A1                     protein_coding     46005050
3824        COL6A1                     protein_coding     46005050
3825        COL6A1                     protein_coding     46005050
3826        COL6A1                     protein_coding     46005050
3827        COL6A1                     protein_coding     46005050
3828        COL6A1                     protein_coding     46005050
3829        COL6A2                     protein_coding     46132849
3830        COL6A2                     protein_coding     46132849
3831        COL6A2                     protein_coding     46132849
3832        COL6A2                     protein_coding     46132849
3833        COL6A2                     protein_coding     46132849
3834        COL6A2                     protein_coding     46132849
3835        COL6A2                     protein_coding     46132849
3836        COL6A2                     protein_coding     46132849
3837        COL6A2                     protein_coding     46132849
3838        COL6A2                     protein_coding     46132849
3839        COL6A2                     protein_coding     46132849
3840        COL6A2                     protein_coding     46132849
3841        COL6A2                     protein_coding     46132849
3842        COL6A2                     protein_coding     46132849
3843        COL6A2                     protein_coding     46132849
3844        COL6A2                     protein_coding     46132849
3845        COL6A2                     protein_coding     46132849
3846        COL6A2                     protein_coding     46132849
3847        COL6A2                     protein_coding     46132849
3848        COL6A2                     protein_coding     46132849
3849        COL6A2                     protein_coding     46132849
3850        COL6A2                     protein_coding     46132849
3851        COL6A2                     protein_coding     46132849
3852        COL6A2                     protein_coding     46132849
3853        COL6A2                     protein_coding     46132849
3854        COL6A2                     protein_coding     46132849
3855        COL6A2                     protein_coding     46132849
3856        COL6A2                     protein_coding     46132849
3857        COL6A2                     protein_coding     46132849
3858        COL6A2                     protein_coding     46132849
3859        COL6A2                     protein_coding     46132849
3860        COL6A2                     protein_coding     46132849
3861        COL6A2                     protein_coding     46132849
3862        COL6A2                     protein_coding     46132849
3863        COL6A2                     protein_coding     46132849
3864        COL6A2                     protein_coding     46132849
3865        COL6A2                     protein_coding     46132849
3866        COL6A2                     protein_coding     46132849
3867        COL6A2                     protein_coding     46132849
3868        COL6A2                     protein_coding     46132849
3869        COL6A2                     protein_coding     46132849
3870        COL6A2                     protein_coding     46132849
3871        COL6A2                     protein_coding     46132849
3872        COL6A2                     protein_coding     46132849
3873        COL6A2                     protein_coding     46132849
3874        COL6A2                     protein_coding     46132849
3875        COL6A2                     protein_coding     46132849
3876        COL6A2                     protein_coding     46132849
3877        COL6A2                     protein_coding     46132849
3878        COL6A2                     protein_coding     46132849
3879        COL6A2                     protein_coding     46132849
3880        COL6A2                     protein_coding     46132849
3881        COL6A2                     protein_coding     46132849
3882        COL6A2                     protein_coding     46132849
3883        COL6A2                     protein_coding     46132849
3884        COL6A2                     protein_coding     46132849
3885        COL6A2                     protein_coding     46132849
3886        COL6A2                     protein_coding     46132849
3887        COL6A2                     protein_coding     46132849
3888        COL6A2                     protein_coding     46132849
3889        COL6A2                     protein_coding     46132849
3890        COL6A2                     protein_coding     46132849
3891        COL6A2                     protein_coding     46132849
3892        COL6A2                     protein_coding     46132849
3893        COL6A2                     protein_coding     46132849
3894        COL6A2                     protein_coding     46132849
3895        COL6A2                     protein_coding     46132849
3896        COL6A2                     protein_coding     46132849
3897        COL6A2                     protein_coding     46132849
3898        COL6A2                     protein_coding     46132849
3899        COL6A2                     protein_coding     46132849
3900        COL6A2                     protein_coding     46132849
3901        COL6A2                     protein_coding     46132849
3902        COL6A2                     protein_coding     46132849
3903        COL6A2                     protein_coding     46132849
3904        COL6A2                     protein_coding     46132849
3905        COL6A2                     protein_coding     46132849
3906        COL6A2                     protein_coding     46132849
3907        COL6A2                     protein_coding     46132849
3908        COL6A2                     protein_coding     46132849
3909        COL6A2                     protein_coding     46132849
3910        COL6A2                     protein_coding     46132849
3911        COL6A2                     protein_coding     46132849
3912        COL6A2                     protein_coding     46132849
3913        COL6A2                     protein_coding     46132849
3914        COL6A2                     protein_coding     46132849
3915        COL6A2                     protein_coding     46132849
3916        COL6A2                     protein_coding     46132849
3917        COL6A2                     protein_coding     46132849
3918        COL6A2                     protein_coding     46132849
3919        COL6A2                     protein_coding     46132849
3920        COL6A2                     protein_coding     46132849
3921        COL6A2                     protein_coding     46132849
3922        COL6A2                     protein_coding     46132849
3923        COL6A2                     protein_coding     46132849
3924        COL6A2                     protein_coding     46132849
3925        COL6A2                     protein_coding     46132849
3926        COL6A2                     protein_coding     46132849
3927        COL6A2                     protein_coding     46132849
3928        COL6A2                     protein_coding     46132849
3929        COL6A2                     protein_coding     46132849
3930        COL6A2                     protein_coding     46132849
3931        COL6A2                     protein_coding     46132849
3932        COL6A2                     protein_coding     46132849
3933        COL6A2                     protein_coding     46132849
3934        COL6A2                     protein_coding     46132849
3935        COL6A2                     protein_coding     46132849
3936        COL6A2                     protein_coding     46132849
3937        COL6A2                     protein_coding     46132849
3938        COL6A2                     protein_coding     46132849
3939        COL6A2                     protein_coding     46132849
3940        COL6A2                     protein_coding     46132849
3941        COL6A2                     protein_coding     46132849
3942        COL6A2                     protein_coding     46132849
3943        COL6A2                     protein_coding     46132849
3944        COL6A2                     protein_coding     46132849
3945        COL6A2                     protein_coding     46132849
3946        COL6A2                     protein_coding     46132849
3947        COL6A2                     protein_coding     46132849
3948        COL6A2                     protein_coding     46132849
3949        COL6A2                     protein_coding     46132849
3950        COL6A2                     protein_coding     46132849
3951        COL6A2                     protein_coding     46132849
3952        COL6A2                     protein_coding     46132849
3953        COL6A2                     protein_coding     46132849
3954        COL6A2                     protein_coding     46132849
3955        COL6A2                     protein_coding     46132849
3956        COL6A2                     protein_coding     46132849
3957        COL6A2                     protein_coding     46132849
3958        COL6A2                     protein_coding     46132849
3959        COL6A2                     protein_coding     46132849
3960        COL6A2                     protein_coding     46132849
3961        COL6A2                     protein_coding     46132849
3962         CRYAA                     protein_coding     43172805
3963         CRYAA                     protein_coding     43172805
3964         CRYAA                     protein_coding     43172805
3965         CRYAA                     protein_coding     43172805
3966         CRYAA                     protein_coding     43172805
3967         CRYAA                     protein_coding     43172805
3968         CRYAA                     protein_coding     43172805
3969         CRYAA                     protein_coding     43172805
3970         CRYAA                     protein_coding     43172805
3971         CRYAA                     protein_coding     43172805
3972         CRYAA                     protein_coding     43172805
3973         CRYAA                     protein_coding     43172805
3974         CRYAA                     protein_coding     43172805
3975         CRYAA                     protein_coding     43172805
3976         CRYAA                     protein_coding     43172805
3977        CRYZL1                     protein_coding     33643926
3978        CRYZL1                     protein_coding     33643926
3979        CRYZL1                     protein_coding     33643926
3980        CRYZL1                     protein_coding     33643926
3981        CRYZL1                     protein_coding     33643926
3982        CRYZL1                     protein_coding     33643926
3983        CRYZL1                     protein_coding     33643926
3984        CRYZL1                     protein_coding     33643926
3985        CRYZL1                     protein_coding     33643926
3986        CRYZL1                     protein_coding     33643926
3987        CRYZL1                     protein_coding     33643926
3988        CRYZL1                     protein_coding     33643926
3989        CRYZL1                     protein_coding     33643926
3990        CRYZL1                     protein_coding     33643926
3991        CRYZL1                     protein_coding     33643926
3992        CRYZL1                     protein_coding     33643926
3993        CRYZL1                     protein_coding     33643926
3994        CRYZL1                     protein_coding     33643926
3995        CRYZL1                     protein_coding     33643926
3996        CRYZL1                     protein_coding     33643926
3997        CRYZL1                     protein_coding     33643926
3998        CRYZL1                     protein_coding     33643926
3999        CRYZL1                     protein_coding     33643926
4000        CRYZL1                     protein_coding     33643926
4001        CRYZL1                     protein_coding     33643926
4002        CRYZL1                     protein_coding     33643926
4003        CRYZL1                     protein_coding     33643926
4004        CRYZL1                     protein_coding     33643926
4005        CRYZL1                     protein_coding     33643926
4006        CRYZL1                     protein_coding     33643926
4007        CRYZL1                     protein_coding     33643926
4008        CRYZL1                     protein_coding     33643926
4009        CRYZL1                     protein_coding     33643926
4010        CRYZL1                     protein_coding     33643926
4011        CRYZL1                     protein_coding     33643926
4012        CRYZL1                     protein_coding     33643926
4013        CRYZL1                     protein_coding     33643926
4014        CRYZL1                     protein_coding     33643926
4015        CRYZL1                     protein_coding     33643926
4016        CRYZL1                     protein_coding     33643926
4017        CRYZL1                     protein_coding     33643926
4018        CRYZL1                     protein_coding     33643926
4019        CRYZL1                     protein_coding     33643926
4020        CRYZL1                     protein_coding     33643926
4021        CRYZL1                     protein_coding     33643926
4022        CRYZL1                     protein_coding     33643926
4023        CRYZL1                     protein_coding     33643926
4024        CRYZL1                     protein_coding     33643926
4025        CRYZL1                     protein_coding     33643926
4026        CRYZL1                     protein_coding     33643926
4027        CRYZL1                     protein_coding     33643926
4028        CRYZL1                     protein_coding     33643926
4029        CRYZL1                     protein_coding     33643926
4030        CRYZL1                     protein_coding     33643926
4031        CRYZL1                     protein_coding     33643926
4032        CRYZL1                     protein_coding     33643926
4033        CRYZL1                     protein_coding     33643926
4034        CRYZL1                     protein_coding     33643926
4035        CRYZL1                     protein_coding     33643926
4036        CRYZL1                     protein_coding     33643926
4037        CRYZL1                     protein_coding     33643926
4038        CRYZL1                     protein_coding     33643926
4039        CRYZL1                     protein_coding     33643926
4040        CRYZL1                     protein_coding     33643926
4041        CRYZL1                     protein_coding     33643926
4042        CRYZL1                     protein_coding     33643926
4043        CRYZL1                     protein_coding     33643926
4044        CRYZL1                     protein_coding     33643926
4045        CRYZL1                     protein_coding     33643926
4046        CRYZL1                     protein_coding     33643926
4047        CRYZL1                     protein_coding     33643926
4048        CRYZL1                     protein_coding     33643926
4049        CRYZL1                     protein_coding     33643926
4050        CRYZL1                     protein_coding     33643926
4051        CRYZL1                     protein_coding     33643926
4052        CRYZL1                     protein_coding     33643926
4053        CRYZL1                     protein_coding     33643926
4054        CRYZL1                     protein_coding     33643926
4055        CRYZL1                     protein_coding     33643926
4056        CRYZL1                     protein_coding     33643926
4057        CRYZL1                     protein_coding     33643926
4058        CRYZL1                     protein_coding     33643926
4059        CRYZL1                     protein_coding     33643926
4060        CRYZL1                     protein_coding     33643926
4061        CRYZL1                     protein_coding     33643926
4062        CRYZL1                     protein_coding     33643926
4063        CRYZL1                     protein_coding     33643926
4064        CRYZL1                     protein_coding     33643926
4065        CRYZL1                     protein_coding     33643926
4066        CRYZL1                     protein_coding     33643926
4067        CRYZL1                     protein_coding     33643926
4068        CRYZL1                     protein_coding     33643926
4069        CRYZL1                     protein_coding     33643926
4070        CRYZL1                     protein_coding     33643926
4071        CRYZL1                     protein_coding     33643926
4072        CRYZL1                     protein_coding     33643926
4073        CRYZL1                     protein_coding     33643926
4074        CRYZL1                     protein_coding     33643926
4075        CRYZL1                     protein_coding     33643926
4076        CRYZL1                     protein_coding     33643926
4077        CRYZL1                     protein_coding     33643926
4078        CRYZL1                     protein_coding     33643926
4079        CRYZL1                     protein_coding     33643926
4080        CRYZL1                     protein_coding     33643926
4081        CRYZL1                     protein_coding     33643926
4082        CRYZL1                     protein_coding     33643926
4083        CRYZL1                     protein_coding     33643926
4084        CRYZL1                     protein_coding     33643926
4085        CRYZL1                     protein_coding     33643926
4086        CRYZL1                     protein_coding     33643926
4087        CRYZL1                     protein_coding     33643926
4088        CRYZL1                     protein_coding     33643926
4089        CRYZL1                     protein_coding     33643926
4090        CRYZL1                     protein_coding     33643926
4091        CRYZL1                     protein_coding     33643926
4092        CRYZL1                     protein_coding     33643926
4093        CRYZL1                     protein_coding     33643926
4094        CRYZL1                     protein_coding     33643926
4095        CRYZL1                     protein_coding     33643926
4096        CRYZL1                     protein_coding     33643926
4097        CRYZL1                     protein_coding     33643926
4098        CRYZL1                     protein_coding     33643926
4099        CRYZL1                     protein_coding     33643926
4100        CRYZL1                     protein_coding     33643926
4101        CRYZL1                     protein_coding     33643926
4102        CRYZL1                     protein_coding     33643926
4103        CRYZL1                     protein_coding     33643926
4104        CRYZL1                     protein_coding     33643926
4105        CRYZL1                     protein_coding     33643926
4106        CRYZL1                     protein_coding     33643926
4107        CRYZL1                     protein_coding     33643926
4108        CRYZL1                     protein_coding     33643926
4109        CRYZL1                     protein_coding     33643926
4110        CRYZL1                     protein_coding     33643926
4111        CRYZL1                     protein_coding     33643926
4112        CRYZL1                     protein_coding     33643926
4113        CRYZL1                     protein_coding     33643926
4114        CRYZL1                     protein_coding     33643926
4115        CRYZL1                     protein_coding     33643926
4116        CRYZL1                     protein_coding     33643926
4117        CRYZL1                     protein_coding     33643926
4118        CRYZL1                     protein_coding     33643926
4119        CRYZL1                     protein_coding     33643926
4120        CRYZL1                     protein_coding     33643926
4121        CRYZL1                     protein_coding     33643926
4122        CRYZL1                     protein_coding     33643926
4123        CRYZL1                     protein_coding     33643926
4124        CRYZL1                     protein_coding     33643926
4125        CRYZL1                     protein_coding     33643926
4126        CRYZL1                     protein_coding     33643926
4127        CRYZL1                     protein_coding     33643926
4128        CRYZL1                     protein_coding     33643926
4129        CRYZL1                     protein_coding     33643926
4130        CRYZL1                     protein_coding     33643926
4131        CRYZL1                     protein_coding     33643926
4132        CRYZL1                     protein_coding     33643926
4133        CRYZL1                     protein_coding     33643926
4134        CRYZL1                     protein_coding     33643926
4135        CRYZL1                     protein_coding     33643926
4136        CRYZL1                     protein_coding     33643926
4137        CRYZL1                     protein_coding     33643926
4138        CRYZL1                     protein_coding     33643926
4139        CRYZL1                     protein_coding     33643926
4140        CRYZL1                     protein_coding     33643926
4141        CRYZL1                     protein_coding     33643926
4142        CRYZL1                     protein_coding     33643926
4143        CRYZL1                     protein_coding     33643926
4144        CRYZL1                     protein_coding     33643926
4145          CSTB                     protein_coding     43776445
4146          CSTB                     protein_coding     43776445
4147          CSTB                     protein_coding     43776445
4148          CSTB                     protein_coding     43776445
4149          CSTB                     protein_coding     43776445
4150          CSTB                     protein_coding     43776445
4151          CSTB                     protein_coding     43776445
4152          CSTB                     protein_coding     43776445
4153         CXADR                     protein_coding     17593579
4154         CXADR                     protein_coding     17593579
4155         CXADR                     protein_coding     17593579
4156         CXADR                     protein_coding     17593579
4157         CXADR                     protein_coding     17593579
4158         CXADR                     protein_coding     17593579
4159         CXADR                     protein_coding     17593579
4160         CXADR                     protein_coding     17593579
4161         CXADR                     protein_coding     17593579
4162         CXADR                     protein_coding     17593579
4163         CXADR                     protein_coding     17593579
4164         CXADR                     protein_coding     17593579
4165         CXADR                     protein_coding     17593579
4166         CXADR                     protein_coding     17593579
4167         CXADR                     protein_coding     17593579
4168         CXADR                     protein_coding     17593579
4169         CXADR                     protein_coding     17593579
4170         CXADR                     protein_coding     17593579
4171         CXADR                     protein_coding     17593579
4172         CXADR                     protein_coding     17593579
4173         CXADR                     protein_coding     17593579
4174         CXADR                     protein_coding     17593579
4175         CXADR                     protein_coding     17593579
4176         CXADR                     protein_coding     17593579
4177         CXADR                     protein_coding     17593579
4178         CXADR                     protein_coding     17593579
4179         CXADR                     protein_coding     17593579
4180       CXADRP1               processed_pseudogene     13677116
4181       CYCSP41               processed_pseudogene     10576587
4182       CYCSP42               processed_pseudogene     15490767
4183      CYP4F29P transcribed_unprocessed_pseudogene     13848364
4184      CYP4F29P transcribed_unprocessed_pseudogene     13848364
4185      CYP4F29P transcribed_unprocessed_pseudogene     13848364
4186      CYP4F29P transcribed_unprocessed_pseudogene     13848364
4187      CYP4F29P transcribed_unprocessed_pseudogene     13848364
4188      CYP4F29P transcribed_unprocessed_pseudogene     13848364
4189      CYP4F29P transcribed_unprocessed_pseudogene     13848364
4190      CYP4F29P transcribed_unprocessed_pseudogene     13848364
4191      CYP4F29P transcribed_unprocessed_pseudogene     13848364
4192      CYP4F29P transcribed_unprocessed_pseudogene     13848364
4193      CYP4F29P transcribed_unprocessed_pseudogene     13848364
4194      CYP4F29P transcribed_unprocessed_pseudogene     13848364
4195         CYYR1                     protein_coding     26573284
4196         CYYR1                     protein_coding     26573284
4197         CYYR1                     protein_coding     26573284
4198         CYYR1                     protein_coding     26573284
4199         CYYR1                     protein_coding     26573284
4200         CYYR1                     protein_coding     26573284
4201         CYYR1                     protein_coding     26573284
4202         CYYR1                     protein_coding     26573284
4203     CYYR1-AS1                          antisense     26569252
4204     CYYR1-AS1                          antisense     26569252
4205     CYYR1-AS1                          antisense     26569252
4206     CYYR1-AS1                          antisense     26569252
4207     CYYR1-AS1                          antisense     26569252
4208     CYYR1-AS1                          antisense     26569252
4209     CYYR1-AS1                          antisense     26569252
4210     CYYR1-AS1                          antisense     26569252
4211         DIP2A                     protein_coding     46569852
4212         DIP2A                     protein_coding     46569852
4213         DIP2A                     protein_coding     46569852
4214         DIP2A                     protein_coding     46569852
4215         DIP2A                     protein_coding     46569852
4216         DIP2A                     protein_coding     46569852
4217         DIP2A                     protein_coding     46569852
4218         DIP2A                     protein_coding     46569852
4219         DIP2A                     protein_coding     46569852
4220         DIP2A                     protein_coding     46569852
4221         DIP2A                     protein_coding     46569852
4222         DIP2A                     protein_coding     46569852
4223         DIP2A                     protein_coding     46569852
4224         DIP2A                     protein_coding     46569852
4225         DIP2A                     protein_coding     46569852
4226         DIP2A                     protein_coding     46569852
4227         DIP2A                     protein_coding     46569852
4228         DIP2A                     protein_coding     46569852
4229         DIP2A                     protein_coding     46569852
4230         DIP2A                     protein_coding     46569852
4231         DIP2A                     protein_coding     46569852
4232         DIP2A                     protein_coding     46569852
4233         DIP2A                     protein_coding     46569852
4234         DIP2A                     protein_coding     46569852
4235         DIP2A                     protein_coding     46569852
4236         DIP2A                     protein_coding     46569852
4237         DIP2A                     protein_coding     46569852
4238         DIP2A                     protein_coding     46569852
4239         DIP2A                     protein_coding     46569852
4240         DIP2A                     protein_coding     46569852
4241         DIP2A                     protein_coding     46569852
4242         DIP2A                     protein_coding     46569852
4243         DIP2A                     protein_coding     46569852
4244         DIP2A                     protein_coding     46569852
4245         DIP2A                     protein_coding     46569852
4246         DIP2A                     protein_coding     46569852
4247         DIP2A                     protein_coding     46569852
4248         DIP2A                     protein_coding     46569852
4249         DIP2A                     protein_coding     46569852
4250         DIP2A                     protein_coding     46569852
4251         DIP2A                     protein_coding     46569852
4252         DIP2A                     protein_coding     46569852
4253         DIP2A                     protein_coding     46569852
4254         DIP2A                     protein_coding     46569852
4255         DIP2A                     protein_coding     46569852
4256         DIP2A                     protein_coding     46569852
4257         DIP2A                     protein_coding     46569852
4258         DIP2A                     protein_coding     46569852
4259         DIP2A                     protein_coding     46569852
4260         DIP2A                     protein_coding     46569852
4261         DIP2A                     protein_coding     46569852
4262         DIP2A                     protein_coding     46569852
4263         DIP2A                     protein_coding     46569852
4264         DIP2A                     protein_coding     46569852
4265         DIP2A                     protein_coding     46569852
4266         DIP2A                     protein_coding     46569852
4267         DIP2A                     protein_coding     46569852
4268         DIP2A                     protein_coding     46569852
4269         DIP2A                     protein_coding     46569852
4270         DIP2A                     protein_coding     46569852
4271         DIP2A                     protein_coding     46569852
4272         DIP2A                     protein_coding     46569852
4273         DIP2A                     protein_coding     46569852
4274         DIP2A                     protein_coding     46569852
4275         DIP2A                     protein_coding     46569852
4276         DIP2A                     protein_coding     46569852
4277         DIP2A                     protein_coding     46569852
4278         DIP2A                     protein_coding     46569852
4279         DIP2A                     protein_coding     46569852
4280         DIP2A                     protein_coding     46569852
4281         DIP2A                     protein_coding     46569852
4282         DIP2A                     protein_coding     46569852
4283         DIP2A                     protein_coding     46569852
4284         DIP2A                     protein_coding     46569852
4285         DIP2A                     protein_coding     46569852
4286         DIP2A                     protein_coding     46569852
4287         DIP2A                     protein_coding     46569852
4288         DIP2A                     protein_coding     46569852
4289         DIP2A                     protein_coding     46569852
4290         DIP2A                     protein_coding     46569852
4291         DIP2A                     protein_coding     46569852
4292         DIP2A                     protein_coding     46569852
4293         DIP2A                     protein_coding     46569852
4294         DIP2A                     protein_coding     46569852
4295         DIP2A                     protein_coding     46569852
4296         DIP2A                     protein_coding     46569852
4297         DIP2A                     protein_coding     46569852
4298         DIP2A                     protein_coding     46569852
4299         DIP2A                     protein_coding     46569852
4300         DIP2A                     protein_coding     46569852
4301         DIP2A                     protein_coding     46569852
4302         DIP2A                     protein_coding     46569852
4303         DIP2A                     protein_coding     46569852
4304         DIP2A                     protein_coding     46569852
4305         DIP2A                     protein_coding     46569852
4306         DIP2A                     protein_coding     46569852
4307         DIP2A                     protein_coding     46569852
4308         DIP2A                     protein_coding     46569852
4309         DIP2A                     protein_coding     46569852
4310         DIP2A                     protein_coding     46569852
4311         DIP2A                     protein_coding     46569852
4312         DIP2A                     protein_coding     46569852
4313         DIP2A                     protein_coding     46569852
4314         DIP2A                     protein_coding     46569852
4315         DIP2A                     protein_coding     46569852
4316         DIP2A                     protein_coding     46569852
4317         DIP2A                     protein_coding     46569852
4318         DIP2A                     protein_coding     46569852
4319         DIP2A                     protein_coding     46569852
4320         DIP2A                     protein_coding     46569852
4321         DIP2A                     protein_coding     46569852
4322         DIP2A                     protein_coding     46569852
4323         DIP2A                     protein_coding     46569852
4324         DIP2A                     protein_coding     46569852
4325         DIP2A                     protein_coding     46569852
4326         DIP2A                     protein_coding     46569852
4327         DIP2A                     protein_coding     46569852
4328         DIP2A                     protein_coding     46569852
4329         DIP2A                     protein_coding     46569852
4330         DIP2A                     protein_coding     46569852
4331         DIP2A                     protein_coding     46569852
4332         DIP2A                     protein_coding     46569852
4333         DIP2A                     protein_coding     46569852
4334         DIP2A                     protein_coding     46569852
4335         DIP2A                     protein_coding     46569852
4336         DIP2A                     protein_coding     46569852
4337         DIP2A                     protein_coding     46569852
4338         DIP2A                     protein_coding     46569852
4339         DIP2A                     protein_coding     46569852
4340         DIP2A                     protein_coding     46569852
4341         DIP2A                     protein_coding     46569852
4342         DIP2A                     protein_coding     46569852
4343         DIP2A                     protein_coding     46569852
4344         DIP2A                     protein_coding     46569852
4345         DIP2A                     protein_coding     46569852
4346         DIP2A                     protein_coding     46569852
4347         DIP2A                     protein_coding     46569852
4348         DIP2A                     protein_coding     46569852
4349         DIP2A                     protein_coding     46569852
4350         DIP2A                     protein_coding     46569852
4351         DIP2A                     protein_coding     46569852
4352         DIP2A                     protein_coding     46569852
4353         DIP2A                     protein_coding     46569852
4354         DIP2A                     protein_coding     46569852
4355         DIP2A                     protein_coding     46569852
4356         DIP2A                     protein_coding     46569852
4357         DIP2A                     protein_coding     46569852
4358         DIP2A                     protein_coding     46569852
4359         DIP2A                     protein_coding     46569852
4360         DIP2A                     protein_coding     46569852
4361         DIP2A                     protein_coding     46569852
4362         DIP2A                     protein_coding     46569852
4363         DIP2A                     protein_coding     46569852
4364         DIP2A                     protein_coding     46569852
4365         DIP2A                     protein_coding     46569852
4366         DIP2A                     protein_coding     46569852
4367         DIP2A                     protein_coding     46569852
4368         DIP2A                     protein_coding     46569852
4369         DIP2A                     protein_coding     46569852
4370         DIP2A                     protein_coding     46569852
4371         DIP2A                     protein_coding     46569852
4372         DIP2A                     protein_coding     46569852
4373         DIP2A                     protein_coding     46569852
4374         DIP2A                     protein_coding     46569852
4375         DIP2A                     protein_coding     46569852
4376         DIP2A                     protein_coding     46569852
4377         DIP2A                     protein_coding     46569852
4378         DIP2A                     protein_coding     46569852
4379         DIP2A                     protein_coding     46569852
4380         DIP2A                     protein_coding     46569852
4381         DIP2A                     protein_coding     46569852
4382         DIP2A                     protein_coding     46569852
4383         DIP2A                     protein_coding     46569852
4384         DIP2A                     protein_coding     46569852
4385         DIP2A                     protein_coding     46569852
4386         DIP2A                     protein_coding     46569852
4387         DIP2A                     protein_coding     46569852
4388         DIP2A                     protein_coding     46569852
4389         DIP2A                     protein_coding     46569852
4390         DIP2A                     protein_coding     46569852
4391         DIP2A                     protein_coding     46569852
4392         DIP2A                     protein_coding     46569852
4393         DIP2A                     protein_coding     46569852
4394         DIP2A                     protein_coding     46569852
4395         DIP2A                     protein_coding     46569852
4396         DIP2A                     protein_coding     46569852
4397         DIP2A                     protein_coding     46569852
4398         DIP2A                     protein_coding     46569852
4399         DIP2A                     protein_coding     46569852
4400         DIP2A                     protein_coding     46569852
4401         DIP2A                     protein_coding     46569852
4402     DIP2A-IT1                     sense_intronic     46469306
4403     DIP2A-IT1                     sense_intronic     46469306
4404     DIP2A-IT1                     sense_intronic     46469306
4405     DIP2A-IT1                     sense_intronic     46469306
4406       DNAJC28                     protein_coding     33491720
4407       DNAJC28                     protein_coding     33491720
4408       DNAJC28                     protein_coding     33491720
4409       DNAJC28                     protein_coding     33491720
4410       DNAJC28                     protein_coding     33491720
4411       DNAJC28                     protein_coding     33491720
4412       DNAJC28                     protein_coding     33491720
4413       DNAJC28                     protein_coding     33491720
4414       DNAJC28                     protein_coding     33491720
4415        DNMT3L                     protein_coding     44262216
4416        DNMT3L                     protein_coding     44262216
4417        DNMT3L                     protein_coding     44262216
4418        DNMT3L                     protein_coding     44262216
4419        DNMT3L                     protein_coding     44262216
4420        DNMT3L                     protein_coding     44262216
4421        DNMT3L                     protein_coding     44262216
4422        DNMT3L                     protein_coding     44262216
4423        DNMT3L                     protein_coding     44262216
4424        DNMT3L                     protein_coding     44262216
4425        DNMT3L                     protein_coding     44262216
4426        DNMT3L                     protein_coding     44262216
4427        DNMT3L                     protein_coding     44262216
4428        DNMT3L                     protein_coding     44262216
4429        DNMT3L                     protein_coding     44262216
4430        DNMT3L                     protein_coding     44262216
4431        DNMT3L                     protein_coding     44262216
4432        DNMT3L                     protein_coding     44262216
4433        DNMT3L                     protein_coding     44262216
4434        DNMT3L                     protein_coding     44262216
4435        DNMT3L                     protein_coding     44262216
4436        DNMT3L                     protein_coding     44262216
4437        DNMT3L                     protein_coding     44262216
4438        DNMT3L                     protein_coding     44262216
4439        DNMT3L                     protein_coding     44262216
4440        DNMT3L                     protein_coding     44262216
4441        DNMT3L                     protein_coding     44262216
4442        DNMT3L                     protein_coding     44262216
4443        DNMT3L                     protein_coding     44262216
4444        DNMT3L                     protein_coding     44262216
4445        DNMT3L                     protein_coding     44262216
4446        DNMT3L                     protein_coding     44262216
4447        DNMT3L                     protein_coding     44262216
4448        DNMT3L                     protein_coding     44262216
4449        DNMT3L                     protein_coding     44262216
4450        DNMT3L                     protein_coding     44262216
4451        DNMT3L                     protein_coding     44262216
4452        DONSON                     protein_coding     33588708
4453        DONSON                     protein_coding     33588708
4454        DONSON                     protein_coding     33588708
4455        DONSON                     protein_coding     33588708
4456        DONSON                     protein_coding     33588708
4457        DONSON                     protein_coding     33588708
4458        DONSON                     protein_coding     33588708
4459        DONSON                     protein_coding     33588708
4460        DONSON                     protein_coding     33588708
4461        DONSON                     protein_coding     33588708
4462        DONSON                     protein_coding     33588708
4463        DONSON                     protein_coding     33588708
4464        DONSON                     protein_coding     33588708
4465        DONSON                     protein_coding     33588708
4466        DONSON                     protein_coding     33588708
4467        DONSON                     protein_coding     33588708
4468        DONSON                     protein_coding     33588708
4469        DONSON                     protein_coding     33588708
4470        DONSON                     protein_coding     33588708
4471        DONSON                     protein_coding     33588708
4472        DONSON                     protein_coding     33588708
4473        DONSON                     protein_coding     33588708
4474        DONSON                     protein_coding     33588708
4475        DONSON                     protein_coding     33588708
4476        DONSON                     protein_coding     33588708
4477        DONSON                     protein_coding     33588708
4478        DONSON                     protein_coding     33588708
4479        DONSON                     protein_coding     33588708
4480        DONSON                     protein_coding     33588708
4481        DONSON                     protein_coding     33588708
4482        DONSON                     protein_coding     33588708
4483        DONSON                     protein_coding     33588708
4484        DONSON                     protein_coding     33588708
4485        DONSON                     protein_coding     33588708
4486        DONSON                     protein_coding     33588708
4487        DONSON                     protein_coding     33588708
4488        DONSON                     protein_coding     33588708
4489        DONSON                     protein_coding     33588708
4490        DONSON                     protein_coding     33588708
4491        DONSON                     protein_coding     33588708
4492        DONSON                     protein_coding     33588708
4493        DONSON                     protein_coding     33588708
4494        DONSON                     protein_coding     33588708
4495        DONSON                     protein_coding     33588708
4496        DONSON                     protein_coding     33588708
4497        DONSON                     protein_coding     33588708
4498        DONSON                     protein_coding     33588708
4499        DONSON                     protein_coding     33588708
4500        DONSON                     protein_coding     33588708
4501        DONSON                     protein_coding     33588708
4502        DONSON                     protein_coding     33588708
4503        DONSON                     protein_coding     33588708
4504        DONSON                     protein_coding     33588708
4505        DONSON                     protein_coding     33588708
4506        DONSON                     protein_coding     33588708
4507        DONSON                     protein_coding     33588708
4508        DONSON                     protein_coding     33588708
4509        DONSON                     protein_coding     33588708
4510        DONSON                     protein_coding     33588708
4511        DONSON                     protein_coding     33588708
4512        DONSON                     protein_coding     33588708
4513        DONSON                     protein_coding     33588708
4514        DONSON                     protein_coding     33588708
4515        DONSON                     protein_coding     33588708
4516        DONSON                     protein_coding     33588708
4517        DONSON                     protein_coding     33588708
4518        DONSON                     protein_coding     33588708
4519        DONSON                     protein_coding     33588708
4520        DONSON                     protein_coding     33588708
4521        DONSON                     protein_coding     33588708
4522        DONSON                     protein_coding     33588708
4523        DONSON                     protein_coding     33588708
4524        DONSON                     protein_coding     33588708
4525        DONSON                     protein_coding     33588708
4526        DONSON                     protein_coding     33588708
4527        DONSON                     protein_coding     33588708
4528        DONSON                     protein_coding     33588708
4529        DONSON                     protein_coding     33588708
4530        DONSON                     protein_coding     33588708
4531        DONSON                     protein_coding     33588708
4532        DONSON                     protein_coding     33588708
4533        DONSON                     protein_coding     33588708
4534        DONSON                     protein_coding     33588708
4535        DONSON                     protein_coding     33588708
4536        DONSON                     protein_coding     33588708
4537        DONSON                     protein_coding     33588708
4538        DONSON                     protein_coding     33588708
4539        DONSON                     protein_coding     33588708
4540        DONSON                     protein_coding     33588708
4541        DONSON                     protein_coding     33588708
4542        DONSON                     protein_coding     33588708
4543        DONSON                     protein_coding     33588708
4544        DONSON                     protein_coding     33588708
4545        DOPEY2                     protein_coding     36294274
4546        DOPEY2                     protein_coding     36294274
4547        DOPEY2                     protein_coding     36294274
4548        DOPEY2                     protein_coding     36294274
4549        DOPEY2                     protein_coding     36294274
4550        DOPEY2                     protein_coding     36294274
4551        DOPEY2                     protein_coding     36294274
4552        DOPEY2                     protein_coding     36294274
4553        DOPEY2                     protein_coding     36294274
4554        DOPEY2                     protein_coding     36294274
4555        DOPEY2                     protein_coding     36294274
4556        DOPEY2                     protein_coding     36294274
4557        DOPEY2                     protein_coding     36294274
4558        DOPEY2                     protein_coding     36294274
4559        DOPEY2                     protein_coding     36294274
4560        DOPEY2                     protein_coding     36294274
4561        DOPEY2                     protein_coding     36294274
4562        DOPEY2                     protein_coding     36294274
4563        DOPEY2                     protein_coding     36294274
4564        DOPEY2                     protein_coding     36294274
4565        DOPEY2                     protein_coding     36294274
4566        DOPEY2                     protein_coding     36294274
4567        DOPEY2                     protein_coding     36294274
4568        DOPEY2                     protein_coding     36294274
4569        DOPEY2                     protein_coding     36294274
4570        DOPEY2                     protein_coding     36294274
4571        DOPEY2                     protein_coding     36294274
4572        DOPEY2                     protein_coding     36294274
4573        DOPEY2                     protein_coding     36294274
4574        DOPEY2                     protein_coding     36294274
4575        DOPEY2                     protein_coding     36294274
4576        DOPEY2                     protein_coding     36294274
4577        DOPEY2                     protein_coding     36294274
4578        DOPEY2                     protein_coding     36294274
4579        DOPEY2                     protein_coding     36294274
4580        DOPEY2                     protein_coding     36294274
4581        DOPEY2                     protein_coding     36294274
4582        DOPEY2                     protein_coding     36294274
4583        DOPEY2                     protein_coding     36294274
4584        DOPEY2                     protein_coding     36294274
4585        DOPEY2                     protein_coding     36294274
4586        DOPEY2                     protein_coding     36294274
4587        DOPEY2                     protein_coding     36294274
4588        DOPEY2                     protein_coding     36294274
4589        DOPEY2                     protein_coding     36294274
4590        DOPEY2                     protein_coding     36294274
4591        DOPEY2                     protein_coding     36294274
4592        DOPEY2                     protein_coding     36294274
4593        DOPEY2                     protein_coding     36294274
4594        DOPEY2                     protein_coding     36294274
4595        DOPEY2                     protein_coding     36294274
4596        DPRXP5               processed_pseudogene     36944125
4597        DPRXP5               processed_pseudogene     36944125
4598         DSCAM                     protein_coding     40847139
4599         DSCAM                     protein_coding     40847139
4600         DSCAM                     protein_coding     40847139
4601         DSCAM                     protein_coding     40847139
4602         DSCAM                     protein_coding     40847139
4603         DSCAM                     protein_coding     40847139
4604         DSCAM                     protein_coding     40847139
4605         DSCAM                     protein_coding     40847139
4606         DSCAM                     protein_coding     40847139
4607         DSCAM                     protein_coding     40847139
4608         DSCAM                     protein_coding     40847139
4609         DSCAM                     protein_coding     40847139
4610         DSCAM                     protein_coding     40847139
4611         DSCAM                     protein_coding     40847139
4612         DSCAM                     protein_coding     40847139
4613         DSCAM                     protein_coding     40847139
4614         DSCAM                     protein_coding     40847139
4615         DSCAM                     protein_coding     40847139
4616         DSCAM                     protein_coding     40847139
4617         DSCAM                     protein_coding     40847139
4618         DSCAM                     protein_coding     40847139
4619         DSCAM                     protein_coding     40847139
4620         DSCAM                     protein_coding     40847139
4621         DSCAM                     protein_coding     40847139
4622         DSCAM                     protein_coding     40847139
4623         DSCAM                     protein_coding     40847139
4624         DSCAM                     protein_coding     40847139
4625         DSCAM                     protein_coding     40847139
4626         DSCAM                     protein_coding     40847139
4627         DSCAM                     protein_coding     40847139
4628         DSCAM                     protein_coding     40847139
4629         DSCAM                     protein_coding     40847139
4630         DSCAM                     protein_coding     40847139
4631         DSCAM                     protein_coding     40847139
4632         DSCAM                     protein_coding     40847139
4633         DSCAM                     protein_coding     40847139
4634         DSCAM                     protein_coding     40847139
4635         DSCAM                     protein_coding     40847139
4636         DSCAM                     protein_coding     40847139
4637         DSCAM                     protein_coding     40847139
4638         DSCAM                     protein_coding     40847139
4639         DSCAM                     protein_coding     40847139
4640         DSCAM                     protein_coding     40847139
4641         DSCAM                     protein_coding     40847139
4642         DSCAM                     protein_coding     40847139
4643         DSCAM                     protein_coding     40847139
4644         DSCAM                     protein_coding     40847139
4645         DSCAM                     protein_coding     40847139
4646         DSCAM                     protein_coding     40847139
4647         DSCAM                     protein_coding     40847139
4648         DSCAM                     protein_coding     40847139
4649         DSCAM                     protein_coding     40847139
4650         DSCAM                     protein_coding     40847139
4651         DSCAM                     protein_coding     40847139
4652         DSCAM                     protein_coding     40847139
4653         DSCAM                     protein_coding     40847139
4654         DSCAM                     protein_coding     40847139
4655         DSCAM                     protein_coding     40847139
4656         DSCAM                     protein_coding     40847139
4657         DSCAM                     protein_coding     40847139
4658         DSCAM                     protein_coding     40847139
4659         DSCAM                     protein_coding     40847139
4660         DSCAM                     protein_coding     40847139
4661         DSCAM                     protein_coding     40847139
4662         DSCAM                     protein_coding     40847139
4663         DSCAM                     protein_coding     40847139
4664         DSCAM                     protein_coding     40847139
4665         DSCAM                     protein_coding     40847139
4666         DSCAM                     protein_coding     40847139
4667         DSCAM                     protein_coding     40847139
4668         DSCAM                     protein_coding     40847139
4669         DSCAM                     protein_coding     40847139
4670         DSCAM                     protein_coding     40847139
4671         DSCAM                     protein_coding     40847139
4672         DSCAM                     protein_coding     40847139
4673         DSCAM                     protein_coding     40847139
4674         DSCAM                     protein_coding     40847139
4675         DSCAM                     protein_coding     40847139
4676         DSCAM                     protein_coding     40847139
4677         DSCAM                     protein_coding     40847139
4678         DSCAM                     protein_coding     40847139
4679         DSCAM                     protein_coding     40847139
4680         DSCAM                     protein_coding     40847139
4681         DSCAM                     protein_coding     40847139
4682         DSCAM                     protein_coding     40847139
4683         DSCAM                     protein_coding     40847139
4684         DSCAM                     protein_coding     40847139
4685         DSCAM                     protein_coding     40847139
4686         DSCAM                     protein_coding     40847139
4687         DSCAM                     protein_coding     40847139
4688         DSCAM                     protein_coding     40847139
4689         DSCAM                     protein_coding     40847139
4690     DSCAM-AS1                          antisense     40385358
4691     DSCAM-AS1                          antisense     40385358
4692     DSCAM-AS1                          antisense     40385358
4693     DSCAM-AS1                          antisense     40385358
4694     DSCAM-AS1                          antisense     40385358
4695     DSCAM-AS1                          antisense     40385358
4696     DSCAM-AS1                          antisense     40385358
4697     DSCAM-AS1                          antisense     40385358
4698     DSCAM-AS1                          antisense     40385358
4699     DSCAM-AS1                          antisense     40385358
4700     DSCAM-IT1                     sense_intronic     40630767
4701     DSCAM-IT1                     sense_intronic     40630767
4702     DSCAM-IT1                     sense_intronic     40630767
4703     DSCAM-IT1                     sense_intronic     40630767
4704     DSCAM-IT1                     sense_intronic     40630767
4705     DSCAM-IT1                     sense_intronic     40630767
4706     DSCAM-IT1                     sense_intronic     40630767
4707     DSCAM-IT1                     sense_intronic     40630767
4708        DSCR10                     sense_intronic     38208644
4709        DSCR10                     sense_intronic     38208644
4710        DSCR10                     sense_intronic     38208644
4711         DSCR3                     protein_coding     37267919
4712         DSCR3                     protein_coding     37267919
4713         DSCR3                     protein_coding     37267919
4714         DSCR3                     protein_coding     37267919
4715         DSCR3                     protein_coding     37267919
4716         DSCR3                     protein_coding     37267919
4717         DSCR3                     protein_coding     37267919
4718         DSCR3                     protein_coding     37267919
4719         DSCR3                     protein_coding     37267919
4720         DSCR3                     protein_coding     37267919
4721         DSCR3                     protein_coding     37267919
4722         DSCR3                     protein_coding     37267919
4723         DSCR3                     protein_coding     37267919
4724         DSCR3                     protein_coding     37267919
4725         DSCR3                     protein_coding     37267919
4726         DSCR3                     protein_coding     37267919
4727         DSCR3                     protein_coding     37267919
4728         DSCR3                     protein_coding     37267919
4729         DSCR3                     protein_coding     37267919
4730         DSCR3                     protein_coding     37267919
4731         DSCR3                     protein_coding     37267919
4732         DSCR3                     protein_coding     37267919
4733         DSCR3                     protein_coding     37267919
4734         DSCR3                     protein_coding     37267919
4735         DSCR3                     protein_coding     37267919
4736         DSCR3                     protein_coding     37267919
4737         DSCR3                     protein_coding     37267919
4738         DSCR3                     protein_coding     37267919
4739         DSCR3                     protein_coding     37267919
4740         DSCR3                     protein_coding     37267919
4741         DSCR3                     protein_coding     37267919
4742         DSCR3                     protein_coding     37267919
4743         DSCR3                     protein_coding     37267919
4744         DSCR3                     protein_coding     37267919
4745         DSCR3                     protein_coding     37267919
4746         DSCR3                     protein_coding     37267919
4747         DSCR3                     protein_coding     37267919
4748         DSCR3                     protein_coding     37267919
4749         DSCR3                     protein_coding     37267919
4750         DSCR3                     protein_coding     37267919
4751         DSCR3                     protein_coding     37267919
4752         DSCR3                     protein_coding     37267919
4753         DSCR3                     protein_coding     37267919
4754         DSCR3                     protein_coding     37267919
4755         DSCR3                     protein_coding     37267919
4756         DSCR3                     protein_coding     37267919
4757         DSCR3                     protein_coding     37267919
4758         DSCR3                     protein_coding     37267919
4759         DSCR3                     protein_coding     37267919
4760         DSCR3                     protein_coding     37267919
4761         DSCR3                     protein_coding     37267919
4762         DSCR3                     protein_coding     37267919
4763         DSCR3                     protein_coding     37267919
4764         DSCR3                     protein_coding     37267919
4765         DSCR3                     protein_coding     37267919
4766         DSCR3                     protein_coding     37267919
4767         DSCR3                     protein_coding     37267919
4768         DSCR3                     protein_coding     37267919
4769         DSCR3                     protein_coding     37267919
4770         DSCR3                     protein_coding     37267919
4771         DSCR3                     protein_coding     37267919
4772         DSCR3                     protein_coding     37267919
4773         DSCR3                     protein_coding     37267919
4774         DSCR3                     protein_coding     37267919
4775         DSCR3                     protein_coding     37267919
4776         DSCR4                     protein_coding     38121360
4777         DSCR4                     protein_coding     38121360
4778         DSCR4                     protein_coding     38121360
4779         DSCR4                     protein_coding     38121360
4780         DSCR4                     protein_coding     38121360
4781         DSCR4                     protein_coding     38121360
4782         DSCR4                     protein_coding     38121360
4783         DSCR4                     protein_coding     38121360
4784         DSCR4                     protein_coding     38121360
4785         DSCR4                     protein_coding     38121360
4786         DSCR4                     protein_coding     38121360
4787         DSCR4                     protein_coding     38121360
4788         DSCR4                     protein_coding     38121360
4789     DSCR4-IT1                     sense_intronic     38010618
4790     DSCR4-IT1                     sense_intronic     38010618
4791         DSCR8                     protein_coding     38188016
4792         DSCR8                     protein_coding     38188016
4793         DSCR8                     protein_coding     38188016
4794         DSCR8                     protein_coding     38188016
4795         DSCR8                     protein_coding     38188016
4796         DSCR8                     protein_coding     38188016
4797         DSCR8                     protein_coding     38188016
4798         DSCR8                     protein_coding     38188016
4799         DSCR8                     protein_coding     38188016
4800         DSCR8                     protein_coding     38188016
4801         DSCR8                     protein_coding     38188016
4802         DSCR8                     protein_coding     38188016
4803         DSCR8                     protein_coding     38188016
4804         DSCR8                     protein_coding     38188016
4805         DSCR8                     protein_coding     38188016
4806         DSCR8                     protein_coding     38188016
4807         DSCR8                     protein_coding     38188016
4808         DSCR8                     protein_coding     38188016
4809         DSCR8                     protein_coding     38188016
4810         DSCR8                     protein_coding     38188016
4811         DSCR8                     protein_coding     38188016
4812         DSCR8                     protein_coding     38188016
4813         DSCR8                     protein_coding     38188016
4814         DSCR8                     protein_coding     38188016
4815         DSCR8                     protein_coding     38188016
4816         DSCR8                     protein_coding     38188016
4817         DSCR8                     protein_coding     38188016
4818         DSCR8                     protein_coding     38188016
4819         DSCR8                     protein_coding     38188016
4820         DSCR8                     protein_coding     38188016
4821         DSCR9                            lincRNA     37221736
4822         DSCR9                            lincRNA     37221736
4823         DSCR9                            lincRNA     37221736
4824         DSCR9                            lincRNA     37221736
4825         DSCR9                            lincRNA     37221736
4826         DSCR9                            lincRNA     37221736
4827         DSCR9                            lincRNA     37221736
4828         DSCR9                            lincRNA     37221736
4829         DSCR9                            lincRNA     37221736
4830         DSCR9                            lincRNA     37221736
4831         DSCR9                            lincRNA     37221736
4832         DSCR9                            lincRNA     37221736
4833         DSCR9                            lincRNA     37221736
4834         DSCR9                            lincRNA     37221736
4835         DSCR9                            lincRNA     37221736
4836         DSCR9                            lincRNA     37221736
4837         DSCR9                            lincRNA     37221736
4838         DSCR9                            lincRNA     37221736
4839         DSCR9                            lincRNA     37221736
4840         DSCR9                            lincRNA     37221736
4841         DSCR9                            lincRNA     37221736
4842        DSTNP1               processed_pseudogene     46654022
4843        DYRK1A                     protein_coding     37517450
4844        DYRK1A                     protein_coding     37517450
4845        DYRK1A                     protein_coding     37517450
4846        DYRK1A                     protein_coding     37517450
4847        DYRK1A                     protein_coding     37517450
4848        DYRK1A                     protein_coding     37517450
4849        DYRK1A                     protein_coding     37517450
4850        DYRK1A                     protein_coding     37517450
4851        DYRK1A                     protein_coding     37517450
4852        DYRK1A                     protein_coding     37517450
4853        DYRK1A                     protein_coding     37517450
4854        DYRK1A                     protein_coding     37517450
4855        DYRK1A                     protein_coding     37517450
4856        DYRK1A                     protein_coding     37517450
4857        DYRK1A                     protein_coding     37517450
4858        DYRK1A                     protein_coding     37517450
4859        DYRK1A                     protein_coding     37517450
4860        DYRK1A                     protein_coding     37517450
4861        DYRK1A                     protein_coding     37517450
4862        DYRK1A                     protein_coding     37517450
4863        DYRK1A                     protein_coding     37517450
4864        DYRK1A                     protein_coding     37517450
4865        DYRK1A                     protein_coding     37517450
4866        DYRK1A                     protein_coding     37517450
4867        DYRK1A                     protein_coding     37517450
4868        DYRK1A                     protein_coding     37517450
4869        DYRK1A                     protein_coding     37517450
4870        DYRK1A                     protein_coding     37517450
4871        DYRK1A                     protein_coding     37517450
4872        DYRK1A                     protein_coding     37517450
4873        DYRK1A                     protein_coding     37517450
4874        DYRK1A                     protein_coding     37517450
4875        DYRK1A                     protein_coding     37517450
4876        DYRK1A                     protein_coding     37517450
4877        DYRK1A                     protein_coding     37517450
4878        DYRK1A                     protein_coding     37517450
4879        DYRK1A                     protein_coding     37517450
4880        DYRK1A                     protein_coding     37517450
4881        DYRK1A                     protein_coding     37517450
4882        DYRK1A                     protein_coding     37517450
4883        DYRK1A                     protein_coding     37517450
4884        DYRK1A                     protein_coding     37517450
4885        DYRK1A                     protein_coding     37517450
4886        DYRK1A                     protein_coding     37517450
4887        DYRK1A                     protein_coding     37517450
4888        DYRK1A                     protein_coding     37517450
4889        DYRK1A                     protein_coding     37517450
4890        DYRK1A                     protein_coding     37517450
4891        DYRK1A                     protein_coding     37517450
4892        DYRK1A                     protein_coding     37517450
4893        DYRK1A                     protein_coding     37517450
4894        DYRK1A                     protein_coding     37517450
4895        DYRK1A                     protein_coding     37517450
4896        DYRK1A                     protein_coding     37517450
4897        DYRK1A                     protein_coding     37517450
4898        DYRK1A                     protein_coding     37517450
4899        DYRK1A                     protein_coding     37517450
4900        DYRK1A                     protein_coding     37517450
4901        DYRK1A                     protein_coding     37517450
4902        DYRK1A                     protein_coding     37517450
4903        DYRK1A                     protein_coding     37517450
4904        DYRK1A                     protein_coding     37517450
4905        DYRK1A                     protein_coding     37517450
4906        DYRK1A                     protein_coding     37517450
4907      EEF1A1P1               processed_pseudogene     23390996
4908       EIF3FP1               processed_pseudogene     10331537
4909      EIF4A1P1               processed_pseudogene     27367947
4910           ERG                     protein_coding     38661780
4911           ERG                     protein_coding     38661780
4912           ERG                     protein_coding     38661780
4913           ERG                     protein_coding     38661780
4914           ERG                     protein_coding     38661780
4915           ERG                     protein_coding     38661780
4916           ERG                     protein_coding     38661780
4917           ERG                     protein_coding     38661780
4918           ERG                     protein_coding     38661780
4919           ERG                     protein_coding     38661780
4920           ERG                     protein_coding     38661780
4921           ERG                     protein_coding     38661780
4922           ERG                     protein_coding     38661780
4923           ERG                     protein_coding     38661780
4924           ERG                     protein_coding     38661780
4925           ERG                     protein_coding     38661780
4926           ERG                     protein_coding     38661780
4927           ERG                     protein_coding     38661780
4928           ERG                     protein_coding     38661780
4929           ERG                     protein_coding     38661780
4930           ERG                     protein_coding     38661780
4931           ERG                     protein_coding     38661780
4932           ERG                     protein_coding     38661780
4933           ERG                     protein_coding     38661780
4934           ERG                     protein_coding     38661780
4935           ERG                     protein_coding     38661780
4936           ERG                     protein_coding     38661780
4937           ERG                     protein_coding     38661780
4938           ERG                     protein_coding     38661780
4939           ERG                     protein_coding     38661780
4940           ERG                     protein_coding     38661780
4941           ERG                     protein_coding     38661780
4942           ERG                     protein_coding     38661780
4943           ERG                     protein_coding     38661780
4944           ERG                     protein_coding     38661780
4945           ERG                     protein_coding     38661780
4946           ERG                     protein_coding     38661780
4947           ERG                     protein_coding     38661780
4948           ERG                     protein_coding     38661780
4949           ERG                     protein_coding     38661780
4950           ERG                     protein_coding     38661780
4951           ERG                     protein_coding     38661780
4952           ERG                     protein_coding     38661780
4953           ERG                     protein_coding     38661780
4954           ERG                     protein_coding     38661780
4955           ERG                     protein_coding     38661780
4956           ERG                     protein_coding     38661780
4957           ERG                     protein_coding     38661780
4958           ERG                     protein_coding     38661780
4959           ERG                     protein_coding     38661780
4960           ERG                     protein_coding     38661780
4961           ERG                     protein_coding     38661780
4962           ERG                     protein_coding     38661780
4963           ERG                     protein_coding     38661780
4964           ERG                     protein_coding     38661780
4965           ERG                     protein_coding     38661780
4966           ERG                     protein_coding     38661780
4967           ERG                     protein_coding     38661780
4968           ERG                     protein_coding     38661780
4969           ERG                     protein_coding     38661780
4970           ERG                     protein_coding     38661780
4971           ERG                     protein_coding     38661780
4972           ERG                     protein_coding     38661780
4973           ERG                     protein_coding     38661780
4974           ERG                     protein_coding     38661780
4975           ERG                     protein_coding     38661780
4976           ERG                     protein_coding     38661780
4977           ERG                     protein_coding     38661780
4978           ERG                     protein_coding     38661780
4979           ERG                     protein_coding     38661780
4980           ERG                     protein_coding     38661780
4981           ERG                     protein_coding     38661780
4982           ERG                     protein_coding     38661780
4983           ERG                     protein_coding     38661780
4984           ERG                     protein_coding     38661780
4985           ERG                     protein_coding     38661780
4986           ERG                     protein_coding     38661780
4987           ERG                     protein_coding     38661780
4988           ERG                     protein_coding     38661780
4989           ERG                     protein_coding     38661780
4990           ERG                     protein_coding     38661780
4991           ERG                     protein_coding     38661780
4992           ERG                     protein_coding     38661780
4993           ERG                     protein_coding     38661780
4994           ERG                     protein_coding     38661780
4995           ERG                     protein_coding     38661780
4996           ERG                     protein_coding     38661780
4997           ERG                     protein_coding     38661780
4998           ERG                     protein_coding     38661780
4999           ERG                     protein_coding     38661780
5000           ERG                     protein_coding     38661780
5001           ERG                     protein_coding     38661780
5002           ERG                     protein_coding     38661780
5003           ERG                     protein_coding     38661780
5004           ERG                     protein_coding     38661780
5005           ERG                     protein_coding     38661780
5006           ERG                     protein_coding     38661780
5007           ERG                     protein_coding     38661780
5008           ERG                     protein_coding     38661780
5009           ERG                     protein_coding     38661780
5010           ERG                     protein_coding     38661780
5011           ERG                     protein_coding     38661780
5012           ERG                     protein_coding     38661780
5013           ERG                     protein_coding     38661780
5014           ERG                     protein_coding     38661780
5015           ERG                     protein_coding     38661780
5016           ERG                     protein_coding     38661780
5017           ERG                     protein_coding     38661780
5018           ERG                     protein_coding     38661780
5019           ERG                     protein_coding     38661780
5020           ERG                     protein_coding     38661780
5021           ERG                     protein_coding     38661780
5022           ERG                     protein_coding     38661780
5023           ERG                     protein_coding     38661780
5024           ERG                     protein_coding     38661780
5025           ERG                     protein_coding     38661780
5026           ERG                     protein_coding     38661780
5027           ERG                     protein_coding     38661780
5028           ERG                     protein_coding     38661780
5029           ERG                     protein_coding     38661780
5030           ERG                     protein_coding     38661780
5031           ERG                     protein_coding     38661780
5032           ERG                     protein_coding     38661780
5033           ERG                     protein_coding     38661780
5034           ERG                     protein_coding     38661780
5035           ERG                     protein_coding     38661780
5036           ERG                     protein_coding     38661780
5037           ERG                     protein_coding     38661780
5038           ERG                     protein_coding     38661780
5039           ERG                     protein_coding     38661780
5040           ERG                     protein_coding     38661780
5041           ERG                     protein_coding     38661780
5042           ERG                     protein_coding     38661780
5043           ERG                     protein_coding     38661780
5044           ERG                     protein_coding     38661780
5045           ERG                     protein_coding     38661780
5046           ERG                     protein_coding     38661780
5047           ERG                     protein_coding     38661780
5048           ERG                     protein_coding     38661780
5049           ERG                     protein_coding     38661780
5050           ERG                     protein_coding     38661780
5051           ERG                     protein_coding     38661780
5052      ERLEC1P1               processed_pseudogene     14144158
5053      ERVH48-1                            lincRNA     42925646
5054      ERVH48-1                            lincRNA     42925646
5055      ERVH48-1                            lincRNA     42925646
5056          ETS2                     protein_coding     38824955
5057          ETS2                     protein_coding     38824955
5058          ETS2                     protein_coding     38824955
5059          ETS2                     protein_coding     38824955
5060          ETS2                     protein_coding     38824955
5061          ETS2                     protein_coding     38824955
5062          ETS2                     protein_coding     38824955
5063          ETS2                     protein_coding     38824955
5064          ETS2                     protein_coding     38824955
5065          ETS2                     protein_coding     38824955
5066          ETS2                     protein_coding     38824955
5067          ETS2                     protein_coding     38824955
5068          ETS2                     protein_coding     38824955
5069          ETS2                     protein_coding     38824955
5070          ETS2                     protein_coding     38824955
5071          ETS2                     protein_coding     38824955
5072          ETS2                     protein_coding     38824955
5073          ETS2                     protein_coding     38824955
5074          ETS2                     protein_coding     38824955
5075          ETS2                     protein_coding     38824955
5076          ETS2                     protein_coding     38824955
5077          ETS2                     protein_coding     38824955
5078          ETS2                     protein_coding     38824955
5079          ETS2                     protein_coding     38824955
5080          ETS2                     protein_coding     38824955
5081          ETS2                     protein_coding     38824955
5082          ETS2                     protein_coding     38824955
5083          ETS2                     protein_coding     38824955
5084          ETS2                     protein_coding     38824955
5085          ETS2                     protein_coding     38824955
5086          ETS2                     protein_coding     38824955
5087          ETS2                     protein_coding     38824955
5088          ETS2                     protein_coding     38824955
5089          ETS2                     protein_coding     38824955
5090         EVA1C                     protein_coding     32515397
5091         EVA1C                     protein_coding     32515397
5092         EVA1C                     protein_coding     32515397
5093         EVA1C                     protein_coding     32515397
5094         EVA1C                     protein_coding     32515397
5095         EVA1C                     protein_coding     32515397
5096         EVA1C                     protein_coding     32515397
5097         EVA1C                     protein_coding     32515397
5098         EVA1C                     protein_coding     32515397
5099         EVA1C                     protein_coding     32515397
5100         EVA1C                     protein_coding     32515397
5101         EVA1C                     protein_coding     32515397
5102         EVA1C                     protein_coding     32515397
5103         EVA1C                     protein_coding     32515397
5104         EVA1C                     protein_coding     32515397
5105         EVA1C                     protein_coding     32515397
5106         EVA1C                     protein_coding     32515397
5107         EVA1C                     protein_coding     32515397
5108         EVA1C                     protein_coding     32515397
5109         EVA1C                     protein_coding     32515397
5110         EVA1C                     protein_coding     32515397
5111         EVA1C                     protein_coding     32515397
5112         EVA1C                     protein_coding     32515397
5113         EVA1C                     protein_coding     32515397
5114         EVA1C                     protein_coding     32515397
5115         EVA1C                     protein_coding     32515397
5116         EVA1C                     protein_coding     32515397
5117         EVA1C                     protein_coding     32515397
5118         EVA1C                     protein_coding     32515397
5119         EVA1C                     protein_coding     32515397
5120         EVA1C                     protein_coding     32515397
5121         EVA1C                     protein_coding     32515397
5122         EVA1C                     protein_coding     32515397
5123         EVA1C                     protein_coding     32515397
5124         EVA1C                     protein_coding     32515397
5125         EVA1C                     protein_coding     32515397
5126         EVA1C                     protein_coding     32515397
5127         EVA1C                     protein_coding     32515397
5128         EVA1C                     protein_coding     32515397
5129         EVA1C                     protein_coding     32515397
5130         EVA1C                     protein_coding     32515397
5131         EVA1C                     protein_coding     32515397
5132         EVA1C                     protein_coding     32515397
5133         EVA1C                     protein_coding     32515397
5134         EVA1C                     protein_coding     32515397
5135         EVA1C                     protein_coding     32515397
5136         EVA1C                     protein_coding     32515397
5137         EVA1C                     protein_coding     32515397
5138         EVA1C                     protein_coding     32515397
5139         EVA1C                     protein_coding     32515397
5140         EVA1C                     protein_coding     32515397
5141         EVA1C                     protein_coding     32515397
5142         EVA1C                     protein_coding     32515397
5143         EVA1C                     protein_coding     32515397
5144         EVA1C                     protein_coding     32515397
5145         EVA1C                     protein_coding     32515397
5146         EVA1C                     protein_coding     32515397
5147         EVA1C                     protein_coding     32515397
5148         EVA1C                     protein_coding     32515397
5149         EVA1C                     protein_coding     32515397
5150         EVA1C                     protein_coding     32515397
5151         EVA1C                     protein_coding     32515397
5152         EVA1C                     protein_coding     32515397
5153         EVA1C                     protein_coding     32515397
5154         EVA1C                     protein_coding     32515397
5155         EVA1C                     protein_coding     32515397
5156         EVA1C                     protein_coding     32515397
5157         EVA1C                     protein_coding     32515397
5158         EVA1C                     protein_coding     32515397
5159         EVA1C                     protein_coding     32515397
5160         EVA1C                     protein_coding     32515397
5161         EVA1C                     protein_coding     32515397
5162         EVA1C                     protein_coding     32515397
5163      EXOSC3P1               processed_pseudogene     32497311
5164        EZH2P1               processed_pseudogene     35600022
5165       FAM207A                     protein_coding     44976989
5166       FAM207A                     protein_coding     44976989
5167       FAM207A                     protein_coding     44976989
5168       FAM207A                     protein_coding     44976989
5169       FAM207A                     protein_coding     44976989
5170       FAM207A                     protein_coding     44976989
5171       FAM207A                     protein_coding     44976989
5172       FAM207A                     protein_coding     44976989
5173       FAM207A                     protein_coding     44976989
5174       FAM207A                     protein_coding     44976989
5175       FAM207A                     protein_coding     44976989
5176       FAM207A                     protein_coding     44976989
5177       FAM207A                     protein_coding     44976989
5178       FAM207A                     protein_coding     44976989
5179       FAM207A                     protein_coding     44976989
5180       FAM207A                     protein_coding     44976989
5181       FAM207A                     protein_coding     44976989
5182       FAM207A                     protein_coding     44976989
5183       FAM207A                     protein_coding     44976989
5184       FAM207A                     protein_coding     44976989
5185       FAM207A                     protein_coding     44976989
5186       FAM207A                     protein_coding     44976989
5187       FAM207A                     protein_coding     44976989
5188       FAM207A                     protein_coding     44976989
5189      FAM207CP               processed_pseudogene     13793141
5190         FAM3B                     protein_coding     41357431
5191         FAM3B                     protein_coding     41357431
5192         FAM3B                     protein_coding     41357431
5193         FAM3B                     protein_coding     41357431
5194         FAM3B                     protein_coding     41357431
5195         FAM3B                     protein_coding     41357431
5196         FAM3B                     protein_coding     41357431
5197         FAM3B                     protein_coding     41357431
5198         FAM3B                     protein_coding     41357431
5199         FAM3B                     protein_coding     41357431
5200         FAM3B                     protein_coding     41357431
5201         FAM3B                     protein_coding     41357431
5202         FAM3B                     protein_coding     41357431
5203         FAM3B                     protein_coding     41357431
5204         FAM3B                     protein_coding     41357431
5205         FAM3B                     protein_coding     41357431
5206         FAM3B                     protein_coding     41357431
5207         FAM3B                     protein_coding     41357431
5208         FAM3B                     protein_coding     41357431
5209         FAM3B                     protein_coding     41357431
5210         FAM3B                     protein_coding     41357431
5211         FAM3B                     protein_coding     41357431
5212         FAM3B                     protein_coding     41357431
5213         FAM3B                     protein_coding     41357431
5214         FAM3B                     protein_coding     41357431
5215         FAM3B                     protein_coding     41357431
5216         FAM3B                     protein_coding     41357431
5217         FAM3B                     protein_coding     41357431
5218         FAM3B                     protein_coding     41357431
5219         FAM3B                     protein_coding     41357431
5220         FAM3B                     protein_coding     41357431
5221         FAM3B                     protein_coding     41357431
5222         FAM3B                     protein_coding     41357431
5223         FAM3B                     protein_coding     41357431
5224         FAM3B                     protein_coding     41357431
5225         FAM3B                     protein_coding     41357431
5226         FAM3B                     protein_coding     41357431
5227         FAM3B                     protein_coding     41357431
5228         FAM3B                     protein_coding     41357431
5229         FAM3B                     protein_coding     41357431
5230         FAM3B                     protein_coding     41357431
5231         FAM3B                     protein_coding     41357431
5232         FAM3B                     protein_coding     41357431
5233         FAM3B                     protein_coding     41357431
5234         FAM3B                     protein_coding     41357431
5235         FAM3B                     protein_coding     41357431
5236      FBXW11P1               processed_pseudogene     31628600
5237        FDPSP6               processed_pseudogene     20388845
5238        FDX1P2               processed_pseudogene     25692554
5239       FEM1AP1               processed_pseudogene     13764332
5240        FGF7P2             unprocessed_pseudogene     13350648
5241        FGF7P2             unprocessed_pseudogene     13350648
5242        FRG2MP               processed_pseudogene     14020725
5243        FRG2MP               processed_pseudogene     14020725
5244        FRG2MP               processed_pseudogene     14020725
5245        FRG2MP               processed_pseudogene     14020725
5246         FRGCA                          antisense     43141092
5247         FRGCA                          antisense     43141092
5248          FTCD                     protein_coding     46155567
5249          FTCD                     protein_coding     46155567
5250          FTCD                     protein_coding     46155567
5251          FTCD                     protein_coding     46155567
5252          FTCD                     protein_coding     46155567
5253          FTCD                     protein_coding     46155567
5254          FTCD                     protein_coding     46155567
5255          FTCD                     protein_coding     46155567
5256          FTCD                     protein_coding     46155567
5257          FTCD                     protein_coding     46155567
5258          FTCD                     protein_coding     46155567
5259          FTCD                     protein_coding     46155567
5260          FTCD                     protein_coding     46155567
5261          FTCD                     protein_coding     46155567
5262          FTCD                     protein_coding     46155567
5263          FTCD                     protein_coding     46155567
5264          FTCD                     protein_coding     46155567
5265          FTCD                     protein_coding     46155567
5266          FTCD                     protein_coding     46155567
5267          FTCD                     protein_coding     46155567
5268          FTCD                     protein_coding     46155567
5269          FTCD                     protein_coding     46155567
5270          FTCD                     protein_coding     46155567
5271          FTCD                     protein_coding     46155567
5272          FTCD                     protein_coding     46155567
5273          FTCD                     protein_coding     46155567
5274          FTCD                     protein_coding     46155567
5275          FTCD                     protein_coding     46155567
5276          FTCD                     protein_coding     46155567
5277          FTCD                     protein_coding     46155567
5278          FTCD                     protein_coding     46155567
5279          FTCD                     protein_coding     46155567
5280          FTCD                     protein_coding     46155567
5281          FTCD                     protein_coding     46155567
5282          FTCD                     protein_coding     46155567
5283          FTCD                     protein_coding     46155567
5284          FTCD                     protein_coding     46155567
5285          FTCD                     protein_coding     46155567
5286          FTCD                     protein_coding     46155567
5287          FTCD                     protein_coding     46155567
5288          FTCD                     protein_coding     46155567
5289          FTCD                     protein_coding     46155567
5290          FTCD                     protein_coding     46155567
5291          FTCD                     protein_coding     46155567
5292          FTCD                     protein_coding     46155567
5293          FTCD                     protein_coding     46155567
5294          FTCD                     protein_coding     46155567
5295          FTCD                     protein_coding     46155567
5296          FTCD                     protein_coding     46155567
5297          FTCD                     protein_coding     46155567
5298          FTCD                     protein_coding     46155567
5299          FTCD                     protein_coding     46155567
5300          FTCD                     protein_coding     46155567
5301          FTCD                     protein_coding     46155567
5302          FTCD                     protein_coding     46155567
5303          FTCD                     protein_coding     46155567
5304          FTCD                     protein_coding     46155567
5305          FTCD                     protein_coding     46155567
5306          FTCD                     protein_coding     46155567
5307          FTCD                     protein_coding     46155567
5308          FTCD                     protein_coding     46155567
5309          FTCD                     protein_coding     46155567
5310          FTCD                     protein_coding     46155567
5311          FTCD                     protein_coding     46155567
5312          FTCD                     protein_coding     46155567
5313          FTCD                     protein_coding     46155567
5314          FTCD                     protein_coding     46155567
5315          FTCD                     protein_coding     46155567
5316          FTCD                     protein_coding     46155567
5317          FTCD                     protein_coding     46155567
5318          FTCD                     protein_coding     46155567
5319          FTCD                     protein_coding     46155567
5320          FTCD                     protein_coding     46155567
5321          FTCD                     protein_coding     46155567
5322          FTCD                     protein_coding     46155567
5323          FTCD                     protein_coding     46155567
5324          FTCD                     protein_coding     46155567
5325          FTCD                     protein_coding     46155567
5326          FTCD                     protein_coding     46155567
5327          FTCD                     protein_coding     46155567
5328          FTCD                     protein_coding     46155567
5329          FTCD                     protein_coding     46155567
5330          FTCD                     protein_coding     46155567
5331          FTCD                     protein_coding     46155567
5332          FTCD                     protein_coding     46155567
5333          FTCD                     protein_coding     46155567
5334          FTCD                     protein_coding     46155567
5335          FTCD                     protein_coding     46155567
5336          FTCD                     protein_coding     46155567
5337          FTCD                     protein_coding     46155567
5338          FTCD                     protein_coding     46155567
5339          FTCD                     protein_coding     46155567
5340          FTCD                     protein_coding     46155567
5341          FTCD                     protein_coding     46155567
5342          FTCD                     protein_coding     46155567
5343      FTCD-AS1                          antisense     46152647
5344      FTCD-AS1                          antisense     46152647
5345         GABPA                     protein_coding     25772460
5346         GABPA                     protein_coding     25772460
5347         GABPA                     protein_coding     25772460
5348         GABPA                     protein_coding     25772460
5349         GABPA                     protein_coding     25772460
5350         GABPA                     protein_coding     25772460
5351         GABPA                     protein_coding     25772460
5352         GABPA                     protein_coding     25772460
5353         GABPA                     protein_coding     25772460
5354         GABPA                     protein_coding     25772460
5355         GABPA                     protein_coding     25772460
5356         GABPA                     protein_coding     25772460
5357         GABPA                     protein_coding     25772460
5358         GABPA                     protein_coding     25772460
5359         GABPA                     protein_coding     25772460
5360         GABPA                     protein_coding     25772460
5361         GABPA                     protein_coding     25772460
5362         GABPA                     protein_coding     25772460
5363         GABPA                     protein_coding     25772460
5364         GABPA                     protein_coding     25772460
5365         GABPA                     protein_coding     25772460
5366         GABPA                     protein_coding     25772460
5367         GABPA                     protein_coding     25772460
5368         GABPA                     protein_coding     25772460
5369      GAPDHP14               processed_pseudogene     29223257
5370      GAPDHP16               processed_pseudogene     14775262
5371          GART                     protein_coding     33543491
5372          GART                     protein_coding     33543491
5373          GART                     protein_coding     33543491
5374          GART                     protein_coding     33543491
5375          GART                     protein_coding     33543491
5376          GART                     protein_coding     33543491
5377          GART                     protein_coding     33543491
5378          GART                     protein_coding     33543491
5379          GART                     protein_coding     33543491
5380          GART                     protein_coding     33543491
5381          GART                     protein_coding     33543491
5382          GART                     protein_coding     33543491
5383          GART                     protein_coding     33543491
5384          GART                     protein_coding     33543491
5385          GART                     protein_coding     33543491
5386          GART                     protein_coding     33543491
5387          GART                     protein_coding     33543491
5388          GART                     protein_coding     33543491
5389          GART                     protein_coding     33543491
5390          GART                     protein_coding     33543491
5391          GART                     protein_coding     33543491
5392          GART                     protein_coding     33543491
5393          GART                     protein_coding     33543491
5394          GART                     protein_coding     33543491
5395          GART                     protein_coding     33543491
5396          GART                     protein_coding     33543491
5397          GART                     protein_coding     33543491
5398          GART                     protein_coding     33543491
5399          GART                     protein_coding     33543491
5400          GART                     protein_coding     33543491
5401          GART                     protein_coding     33543491
5402          GART                     protein_coding     33543491
5403          GART                     protein_coding     33543491
5404          GART                     protein_coding     33543491
5405          GART                     protein_coding     33543491
5406          GART                     protein_coding     33543491
5407          GART                     protein_coding     33543491
5408          GART                     protein_coding     33543491
5409          GART                     protein_coding     33543491
5410          GART                     protein_coding     33543491
5411          GART                     protein_coding     33543491
5412          GART                     protein_coding     33543491
5413          GART                     protein_coding     33543491
5414          GART                     protein_coding     33543491
5415          GART                     protein_coding     33543491
5416          GART                     protein_coding     33543491
5417          GART                     protein_coding     33543491
5418          GART                     protein_coding     33543491
5419          GART                     protein_coding     33543491
5420          GART                     protein_coding     33543491
5421          GART                     protein_coding     33543491
5422          GART                     protein_coding     33543491
5423          GART                     protein_coding     33543491
5424          GART                     protein_coding     33543491
5425          GART                     protein_coding     33543491
5426          GART                     protein_coding     33543491
5427          GART                     protein_coding     33543491
5428          GART                     protein_coding     33543491
5429          GART                     protein_coding     33543491
5430          GART                     protein_coding     33543491
5431          GART                     protein_coding     33543491
5432          GART                     protein_coding     33543491
5433          GART                     protein_coding     33543491
5434          GART                     protein_coding     33543491
5435          GART                     protein_coding     33543491
5436          GART                     protein_coding     33543491
5437          GART                     protein_coding     33543491
5438          GART                     protein_coding     33543491
5439          GART                     protein_coding     33543491
5440          GART                     protein_coding     33543491
5441          GART                     protein_coding     33543491
5442          GART                     protein_coding     33543491
5443          GART                     protein_coding     33543491
5444          GART                     protein_coding     33543491
5445          GART                     protein_coding     33543491
5446          GART                     protein_coding     33543491
5447          GART                     protein_coding     33543491
5448          GART                     protein_coding     33543491
5449          GART                     protein_coding     33543491
5450          GART                     protein_coding     33543491
5451          GART                     protein_coding     33543491
5452          GART                     protein_coding     33543491
5453          GART                     protein_coding     33543491
5454          GART                     protein_coding     33543491
5455          GART                     protein_coding     33543491
5456          GART                     protein_coding     33543491
5457          GART                     protein_coding     33543491
5458          GART                     protein_coding     33543491
5459          GART                     protein_coding     33543491
5460          GART                     protein_coding     33543491
5461          GART                     protein_coding     33543491
5462          GART                     protein_coding     33543491
5463          GART                     protein_coding     33543491
5464          GART                     protein_coding     33543491
5465          GART                     protein_coding     33543491
5466          GART                     protein_coding     33543491
5467          GART                     protein_coding     33543491
5468          GART                     protein_coding     33543491
5469          GART                     protein_coding     33543491
5470          GART                     protein_coding     33543491
5471          GART                     protein_coding     33543491
5472          GART                     protein_coding     33543491
5473          GART                     protein_coding     33543491
5474          GART                     protein_coding     33543491
5475          GART                     protein_coding     33543491
5476          GART                     protein_coding     33543491
5477          GART                     protein_coding     33543491
5478          GART                     protein_coding     33543491
5479          GART                     protein_coding     33543491
5480          GART                     protein_coding     33543491
5481          GART                     protein_coding     33543491
5482          GART                     protein_coding     33543491
5483          GART                     protein_coding     33543491
5484          GART                     protein_coding     33543491
5485          GART                     protein_coding     33543491
5486          GART                     protein_coding     33543491
5487          GART                     protein_coding     33543491
5488          GART                     protein_coding     33543491
5489          GART                     protein_coding     33543491
5490          GART                     protein_coding     33543491
5491          GART                     protein_coding     33543491
5492          GART                     protein_coding     33543491
5493          GART                     protein_coding     33543491
5494          GART                     protein_coding     33543491
5495          GART                     protein_coding     33543491
5496          GART                     protein_coding     33543491
5497          GART                     protein_coding     33543491
5498          GART                     protein_coding     33543491
5499          GART                     protein_coding     33543491
5500          GART                     protein_coding     33543491
5501          GART                     protein_coding     33543491
5502          GART                     protein_coding     33543491
5503          GART                     protein_coding     33543491
5504          GART                     protein_coding     33543491
5505          GART                     protein_coding     33543491
5506          GART                     protein_coding     33543491
5507          GART                     protein_coding     33543491
5508          GART                     protein_coding     33543491
5509          GART                     protein_coding     33543491
5510          GART                     protein_coding     33543491
5511          GART                     protein_coding     33543491
5512          GART                     protein_coding     33543491
5513          GART                     protein_coding     33543491
5514          GART                     protein_coding     33543491
5515          GART                     protein_coding     33543491
5516          GART                     protein_coding     33543491
5517          GART                     protein_coding     33543491
5518          GART                     protein_coding     33543491
5519          GART                     protein_coding     33543491
5520          GART                     protein_coding     33543491
5521          GART                     protein_coding     33543491
5522          GART                     protein_coding     33543491
5523          GART                     protein_coding     33543491
5524          GART                     protein_coding     33543491
5525          GART                     protein_coding     33543491
5526        GPX1P2               processed_pseudogene     27143949
5527      GRAMD4P1               processed_pseudogene     13667546
5528      GRAMD4P1               processed_pseudogene     13667546
5529         GRIK1                     protein_coding     29940033
5530         GRIK1                     protein_coding     29940033
5531         GRIK1                     protein_coding     29940033
5532         GRIK1                     protein_coding     29940033
5533         GRIK1                     protein_coding     29940033
5534         GRIK1                     protein_coding     29940033
5535         GRIK1                     protein_coding     29940033
5536         GRIK1                     protein_coding     29940033
5537         GRIK1                     protein_coding     29940033
5538         GRIK1                     protein_coding     29940033
5539         GRIK1                     protein_coding     29940033
5540         GRIK1                     protein_coding     29940033
5541         GRIK1                     protein_coding     29940033
5542         GRIK1                     protein_coding     29940033
5543         GRIK1                     protein_coding     29940033
5544         GRIK1                     protein_coding     29940033
5545         GRIK1                     protein_coding     29940033
5546         GRIK1                     protein_coding     29940033
5547         GRIK1                     protein_coding     29940033
5548         GRIK1                     protein_coding     29940033
5549         GRIK1                     protein_coding     29940033
5550         GRIK1                     protein_coding     29940033
5551         GRIK1                     protein_coding     29940033
5552         GRIK1                     protein_coding     29940033
5553         GRIK1                     protein_coding     29940033
5554         GRIK1                     protein_coding     29940033
5555         GRIK1                     protein_coding     29940033
5556         GRIK1                     protein_coding     29940033
5557         GRIK1                     protein_coding     29940033
5558         GRIK1                     protein_coding     29940033
5559         GRIK1                     protein_coding     29940033
5560         GRIK1                     protein_coding     29940033
5561         GRIK1                     protein_coding     29940033
5562         GRIK1                     protein_coding     29940033
5563         GRIK1                     protein_coding     29940033
5564         GRIK1                     protein_coding     29940033
5565         GRIK1                     protein_coding     29940033
5566         GRIK1                     protein_coding     29940033
5567         GRIK1                     protein_coding     29940033
5568         GRIK1                     protein_coding     29940033
5569         GRIK1                     protein_coding     29940033
5570         GRIK1                     protein_coding     29940033
5571         GRIK1                     protein_coding     29940033
5572         GRIK1                     protein_coding     29940033
5573         GRIK1                     protein_coding     29940033
5574         GRIK1                     protein_coding     29940033
5575         GRIK1                     protein_coding     29940033
5576         GRIK1                     protein_coding     29940033
5577         GRIK1                     protein_coding     29940033
5578         GRIK1                     protein_coding     29940033
5579         GRIK1                     protein_coding     29940033
5580         GRIK1                     protein_coding     29940033
5581         GRIK1                     protein_coding     29940033
5582         GRIK1                     protein_coding     29940033
5583         GRIK1                     protein_coding     29940033
5584         GRIK1                     protein_coding     29940033
5585         GRIK1                     protein_coding     29940033
5586         GRIK1                     protein_coding     29940033
5587         GRIK1                     protein_coding     29940033
5588         GRIK1                     protein_coding     29940033
5589         GRIK1                     protein_coding     29940033
5590         GRIK1                     protein_coding     29940033
5591         GRIK1                     protein_coding     29940033
5592         GRIK1                     protein_coding     29940033
5593         GRIK1                     protein_coding     29940033
5594         GRIK1                     protein_coding     29940033
5595         GRIK1                     protein_coding     29940033
5596         GRIK1                     protein_coding     29940033
5597         GRIK1                     protein_coding     29940033
5598         GRIK1                     protein_coding     29940033
5599         GRIK1                     protein_coding     29940033
5600         GRIK1                     protein_coding     29940033
5601         GRIK1                     protein_coding     29940033
5602         GRIK1                     protein_coding     29940033
5603         GRIK1                     protein_coding     29940033
5604         GRIK1                     protein_coding     29940033
5605         GRIK1                     protein_coding     29940033
5606         GRIK1                     protein_coding     29940033
5607         GRIK1                     protein_coding     29940033
5608         GRIK1                     protein_coding     29940033
5609         GRIK1                     protein_coding     29940033
5610         GRIK1                     protein_coding     29940033
5611         GRIK1                     protein_coding     29940033
5612         GRIK1                     protein_coding     29940033
5613         GRIK1                     protein_coding     29940033
5614         GRIK1                     protein_coding     29940033
5615         GRIK1                     protein_coding     29940033
5616         GRIK1                     protein_coding     29940033
5617         GRIK1                     protein_coding     29940033
5618         GRIK1                     protein_coding     29940033
5619         GRIK1                     protein_coding     29940033
5620         GRIK1                     protein_coding     29940033
5621         GRIK1                     protein_coding     29940033
5622         GRIK1                     protein_coding     29940033
5623         GRIK1                     protein_coding     29940033
5624         GRIK1                     protein_coding     29940033
5625         GRIK1                     protein_coding     29940033
5626         GRIK1                     protein_coding     29940033
5627         GRIK1                     protein_coding     29940033
5628         GRIK1                     protein_coding     29940033
5629         GRIK1                     protein_coding     29940033
5630         GRIK1                     protein_coding     29940033
5631         GRIK1                     protein_coding     29940033
5632         GRIK1                     protein_coding     29940033
5633         GRIK1                     protein_coding     29940033
5634         GRIK1                     protein_coding     29940033
5635         GRIK1                     protein_coding     29940033
5636         GRIK1                     protein_coding     29940033
5637         GRIK1                     protein_coding     29940033
5638         GRIK1                     protein_coding     29940033
5639         GRIK1                     protein_coding     29940033
5640         GRIK1                     protein_coding     29940033
5641         GRIK1                     protein_coding     29940033
5642         GRIK1                     protein_coding     29940033
5643         GRIK1                     protein_coding     29940033
5644         GRIK1                     protein_coding     29940033
5645         GRIK1                     protein_coding     29940033
5646         GRIK1                     protein_coding     29940033
5647         GRIK1                     protein_coding     29940033
5648         GRIK1                     protein_coding     29940033
5649         GRIK1                     protein_coding     29940033
5650         GRIK1                     protein_coding     29940033
5651         GRIK1                     protein_coding     29940033
5652         GRIK1                     protein_coding     29940033
5653         GRIK1                     protein_coding     29940033
5654         GRIK1                     protein_coding     29940033
5655     GRIK1-AS1                          antisense     29764002
5656     GRIK1-AS1                          antisense     29764002
5657     GRIK1-AS1                          antisense     29764002
5658     GRIK1-AS1                          antisense     29764002
5659     GRIK1-AS1                          antisense     29764002
5660     GRIK1-AS1                          antisense     29764002
5661     GRIK1-AS1                          antisense     29764002
5662     GRIK1-AS1                          antisense     29764002
5663     GRIK1-AS1                          antisense     29764002
5664     GRIK1-AS1                          antisense     29764002
5665     GRIK1-AS1                          antisense     29764002
5666     GRIK1-AS1                          antisense     29764002
5667     GRIK1-AS1                          antisense     29764002
5668     GRIK1-AS1                          antisense     29764002
5669     GRIK1-AS1                          antisense     29764002
5670     GRIK1-AS1                          antisense     29764002
5671       GTF2IP2             unprocessed_pseudogene     13489176
5672       GTF2IP2             unprocessed_pseudogene     13489176
5673       GTF2IP2             unprocessed_pseudogene     13489176
5674       GTF2IP2             unprocessed_pseudogene     13489176
5675       GTF2IP2             unprocessed_pseudogene     13489176
5676       GTF2IP2             unprocessed_pseudogene     13489176
5677      GXYLT1P2               processed_pseudogene     13825635
5678       H2AFZP1               processed_pseudogene     44047041
5679       H2AFZP1               processed_pseudogene     44047041
5680         H2BFS                     protein_coding     43565648
5681          HLCS                     protein_coding     36990236
5682          HLCS                     protein_coding     36990236
5683          HLCS                     protein_coding     36990236
5684          HLCS                     protein_coding     36990236
5685          HLCS                     protein_coding     36990236
5686          HLCS                     protein_coding     36990236
5687          HLCS                     protein_coding     36990236
5688          HLCS                     protein_coding     36990236
5689          HLCS                     protein_coding     36990236
5690          HLCS                     protein_coding     36990236
5691          HLCS                     protein_coding     36990236
5692          HLCS                     protein_coding     36990236
5693          HLCS                     protein_coding     36990236
5694          HLCS                     protein_coding     36990236
5695          HLCS                     protein_coding     36990236
5696          HLCS                     protein_coding     36990236
5697          HLCS                     protein_coding     36990236
5698          HLCS                     protein_coding     36990236
5699          HLCS                     protein_coding     36990236
5700          HLCS                     protein_coding     36990236
5701          HLCS                     protein_coding     36990236
5702          HLCS                     protein_coding     36990236
5703          HLCS                     protein_coding     36990236
5704          HLCS                     protein_coding     36990236
5705          HLCS                     protein_coding     36990236
5706          HLCS                     protein_coding     36990236
5707          HLCS                     protein_coding     36990236
5708          HLCS                     protein_coding     36990236
5709          HLCS                     protein_coding     36990236
5710          HLCS                     protein_coding     36990236
5711          HLCS                     protein_coding     36990236
5712          HLCS                     protein_coding     36990236
5713          HLCS                     protein_coding     36990236
5714          HLCS                     protein_coding     36990236
5715          HLCS                     protein_coding     36990236
5716          HLCS                     protein_coding     36990236
5717          HLCS                     protein_coding     36990236
5718          HLCS                     protein_coding     36990236
5719          HLCS                     protein_coding     36990236
5720          HLCS                     protein_coding     36990236
5721          HLCS                     protein_coding     36990236
5722          HLCS                     protein_coding     36990236
5723          HLCS                     protein_coding     36990236
5724          HLCS                     protein_coding     36990236
5725          HLCS                     protein_coding     36990236
5726          HLCS                     protein_coding     36990236
5727          HLCS                     protein_coding     36990236
5728          HLCS                     protein_coding     36990236
5729          HLCS                     protein_coding     36990236
5730          HLCS                     protein_coding     36990236
5731          HLCS                     protein_coding     36990236
5732      HLCS-IT1                     sense_intronic     36806284
5733      HLCS-IT1                     sense_intronic     36806284
5734         HMGN1                     protein_coding     39349647
5735         HMGN1                     protein_coding     39349647
5736         HMGN1                     protein_coding     39349647
5737         HMGN1                     protein_coding     39349647
5738         HMGN1                     protein_coding     39349647
5739         HMGN1                     protein_coding     39349647
5740         HMGN1                     protein_coding     39349647
5741         HMGN1                     protein_coding     39349647
5742         HMGN1                     protein_coding     39349647
5743         HMGN1                     protein_coding     39349647
5744         HMGN1                     protein_coding     39349647
5745         HMGN1                     protein_coding     39349647
5746         HMGN1                     protein_coding     39349647
5747         HMGN1                     protein_coding     39349647
5748         HMGN1                     protein_coding     39349647
5749         HMGN1                     protein_coding     39349647
5750         HMGN1                     protein_coding     39349647
5751         HMGN1                     protein_coding     39349647
5752         HMGN1                     protein_coding     39349647
5753         HMGN1                     protein_coding     39349647
5754         HMGN1                     protein_coding     39349647
5755         HMGN1                     protein_coding     39349647
5756         HMGN1                     protein_coding     39349647
5757         HMGN1                     protein_coding     39349647
5758         HMGN1                     protein_coding     39349647
5759         HMGN1                     protein_coding     39349647
5760         HMGN1                     protein_coding     39349647
5761         HMGN1                     protein_coding     39349647
5762         HMGN1                     protein_coding     39349647
5763         HMGN1                     protein_coding     39349647
5764         HMGN1                     protein_coding     39349647
5765         HMGN1                     protein_coding     39349647
5766         HMGN1                     protein_coding     39349647
5767         HMGN1                     protein_coding     39349647
5768         HMGN1                     protein_coding     39349647
5769         HMGN1                     protein_coding     39349647
5770         HMGN1                     protein_coding     39349647
5771         HMGN1                     protein_coding     39349647
5772         HMGN1                     protein_coding     39349647
5773         HMGN1                     protein_coding     39349647
5774         HMGN1                     protein_coding     39349647
5775         HMGN1                     protein_coding     39349647
5776         HMGN1                     protein_coding     39349647
5777         HMGN1                     protein_coding     39349647
5778         HMGN1                     protein_coding     39349647
5779         HMGN1                     protein_coding     39349647
5780         HMGN1                     protein_coding     39349647
5781         HMGN1                     protein_coding     39349647
5782         HMGN1                     protein_coding     39349647
5783         HMGN1                     protein_coding     39349647
5784         HMGN1                     protein_coding     39349647
5785         HMGN1                     protein_coding     39349647
5786         HMGN1                     protein_coding     39349647
5787         HMGN1                     protein_coding     39349647
5788         HMGN1                     protein_coding     39349647
5789         HMGN1                     protein_coding     39349647
5790         HMGN1                     protein_coding     39349647
5791         HMGN1                     protein_coding     39349647
5792         HMGN1                     protein_coding     39349647
5793         HMGN1                     protein_coding     39349647
5794         HMGN1                     protein_coding     39349647
5795         HMGN1                     protein_coding     39349647
5796         HMGN1                     protein_coding     39349647
5797         HMGN1                     protein_coding     39349647
5798         HMGN1                     protein_coding     39349647
5799         HMGN1                     protein_coding     39349647
5800         HMGN1                     protein_coding     39349647
5801         HMGN1                     protein_coding     39349647
5802         HMGN1                     protein_coding     39349647
5803         HMGN1                     protein_coding     39349647
5804         HMGN1                     protein_coding     39349647
5805         HMGN1                     protein_coding     39349647
5806         HMGN1                     protein_coding     39349647
5807         HMGN1                     protein_coding     39349647
5808         HMGN1                     protein_coding     39349647
5809         HMGN1                     protein_coding     39349647
5810         HMGN1                     protein_coding     39349647
5811         HMGN1                     protein_coding     39349647
5812         HMGN1                     protein_coding     39349647
5813         HMGN1                     protein_coding     39349647
5814         HMGN1                     protein_coding     39349647
5815         HMGN1                     protein_coding     39349647
5816         HMGN1                     protein_coding     39349647
5817         HMGN1                     protein_coding     39349647
5818         HMGN1                     protein_coding     39349647
5819         HMGN1                     protein_coding     39349647
5820         HMGN1                     protein_coding     39349647
5821         HMGN1                     protein_coding     39349647
5822         HMGN1                     protein_coding     39349647
5823         HMGN1                     protein_coding     39349647
5824         HMGN1                     protein_coding     39349647
5825         HMGN1                     protein_coding     39349647
5826         HMGN1                     protein_coding     39349647
5827         HMGN1                     protein_coding     39349647
5828         HMGN1                     protein_coding     39349647
5829         HMGN1                     protein_coding     39349647
5830         HMGN1                     protein_coding     39349647
5831         HMGN1                     protein_coding     39349647
5832         HMGN1                     protein_coding     39349647
5833         HMGN1                     protein_coding     39349647
5834         HMGN1                     protein_coding     39349647
5835         HMGN1                     protein_coding     39349647
5836         HMGN1                     protein_coding     39349647
5837         HMGN1                     protein_coding     39349647
5838         HMGN1                     protein_coding     39349647
5839         HMGN1                     protein_coding     39349647
5840         HMGN1                     protein_coding     39349647
5841         HMGN1                     protein_coding     39349647
5842         HMGN1                     protein_coding     39349647
5843         HMGN1                     protein_coding     39349647
5844         HMGN1                     protein_coding     39349647
5845         HMGN1                     protein_coding     39349647
5846         HMGN1                     protein_coding     39349647
5847         HMGN1                     protein_coding     39349647
5848         HMGN1                     protein_coding     39349647
5849         HMGN1                     protein_coding     39349647
5850         HMGN1                     protein_coding     39349647
5851       HMGN1P2               processed_pseudogene     31706864
5852        HSF2BP                     protein_coding     43659493
5853        HSF2BP                     protein_coding     43659493
5854        HSF2BP                     protein_coding     43659493
5855        HSF2BP                     protein_coding     43659493
5856        HSF2BP                     protein_coding     43659493
5857        HSF2BP                     protein_coding     43659493
5858        HSF2BP                     protein_coding     43659493
5859        HSF2BP                     protein_coding     43659493
5860        HSF2BP                     protein_coding     43659493
5861        HSF2BP                     protein_coding     43659493
5862        HSF2BP                     protein_coding     43659493
5863        HSF2BP                     protein_coding     43659493
5864        HSF2BP                     protein_coding     43659493
5865        HSF2BP                     protein_coding     43659493
5866        HSF2BP                     protein_coding     43659493
5867        HSF2BP                     protein_coding     43659493
5868        HSPA13                     protein_coding     14383484
5869        HSPA13                     protein_coding     14383484
5870        HSPA13                     protein_coding     14383484
5871        HSPA13                     protein_coding     14383484
5872        HSPA13                     protein_coding     14383484
5873        HSPA13                     protein_coding     14383484
5874        HSPA13                     protein_coding     14383484
5875        HSPA13                     protein_coding     14383484
5876       HSPD1P7               processed_pseudogene     28889272
5877       HSPD1P7               processed_pseudogene     28889272
5878          HUNK                     protein_coding     32044633
5879          HUNK                     protein_coding     32044633
5880          HUNK                     protein_coding     32044633
5881          HUNK                     protein_coding     32044633
5882          HUNK                     protein_coding     32044633
5883          HUNK                     protein_coding     32044633
5884          HUNK                     protein_coding     32044633
5885          HUNK                     protein_coding     32044633
5886          HUNK                     protein_coding     32044633
5887          HUNK                     protein_coding     32044633
5888          HUNK                     protein_coding     32044633
5889          HUNK                     protein_coding     32044633
5890          HUNK                     protein_coding     32044633
5891          HUNK                     protein_coding     32044633
5892          HUNK                     protein_coding     32044633
5893          HUNK                     protein_coding     32044633
5894          HUNK                     protein_coding     32044633
5895          HUNK                     protein_coding     32044633
5896          HUNK                     protein_coding     32044633
5897          HUNK                     protein_coding     32044633
5898          HUNK                     protein_coding     32044633
5899          HUNK                     protein_coding     32044633
5900          HUNK                     protein_coding     32044633
5901          HUNK                     protein_coding     32044633
5902      HUNK-AS1                          antisense     32021782
5903      HUNK-AS1                          antisense     32021782
5904        ICOSLG                     protein_coding     44240966
5905        ICOSLG                     protein_coding     44240966
5906        ICOSLG                     protein_coding     44240966
5907        ICOSLG                     protein_coding     44240966
5908        ICOSLG                     protein_coding     44240966
5909        ICOSLG                     protein_coding     44240966
5910        ICOSLG                     protein_coding     44240966
5911        ICOSLG                     protein_coding     44240966
5912        ICOSLG                     protein_coding     44240966
5913        ICOSLG                     protein_coding     44240966
5914        ICOSLG                     protein_coding     44240966
5915        ICOSLG                     protein_coding     44240966
5916        ICOSLG                     protein_coding     44240966
5917        ICOSLG                     protein_coding     44240966
5918        ICOSLG                     protein_coding     44240966
5919        ICOSLG                     protein_coding     44240966
5920        ICOSLG                     protein_coding     44240966
5921        ICOSLG                     protein_coding     44240966
5922        ICOSLG                     protein_coding     44240966
5923        ICOSLG                     protein_coding     44240966
5924        ICOSLG                     protein_coding     44240966
5925        ICOSLG                     protein_coding     44240966
5926        ICOSLG                     protein_coding     44240966
5927        ICOSLG                     protein_coding     44240966
5928        ICOSLG                     protein_coding     44240966
5929        ICOSLG                     protein_coding     44240966
5930        IFNAR1                     protein_coding     33359862
5931        IFNAR1                     protein_coding     33359862
5932        IFNAR1                     protein_coding     33359862
5933        IFNAR1                     protein_coding     33359862
5934        IFNAR1                     protein_coding     33359862
5935        IFNAR1                     protein_coding     33359862
5936        IFNAR1                     protein_coding     33359862
5937        IFNAR1                     protein_coding     33359862
5938        IFNAR1                     protein_coding     33359862
5939        IFNAR1                     protein_coding     33359862
5940        IFNAR1                     protein_coding     33359862
5941        IFNAR1                     protein_coding     33359862
5942        IFNAR1                     protein_coding     33359862
5943        IFNAR1                     protein_coding     33359862
5944        IFNAR1                     protein_coding     33359862
5945        IFNAR1                     protein_coding     33359862
5946        IFNAR1                     protein_coding     33359862
5947        IFNAR2                     protein_coding     33265675
5948        IFNAR2                     protein_coding     33265675
5949        IFNAR2                     protein_coding     33265675
5950        IFNAR2                     protein_coding     33265675
5951        IFNAR2                     protein_coding     33265675
5952        IFNAR2                     protein_coding     33265675
5953        IFNAR2                     protein_coding     33265675
5954        IFNAR2                     protein_coding     33265675
5955        IFNAR2                     protein_coding     33265675
5956        IFNAR2                     protein_coding     33265675
5957        IFNAR2                     protein_coding     33265675
5958        IFNAR2                     protein_coding     33265675
5959        IFNAR2                     protein_coding     33265675
5960        IFNAR2                     protein_coding     33265675
5961        IFNAR2                     protein_coding     33265675
5962        IFNAR2                     protein_coding     33265675
5963        IFNAR2                     protein_coding     33265675
5964        IFNAR2                     protein_coding     33265675
5965        IFNAR2                     protein_coding     33265675
5966        IFNAR2                     protein_coding     33265675
5967        IFNAR2                     protein_coding     33265675
5968        IFNAR2                     protein_coding     33265675
5969        IFNAR2                     protein_coding     33265675
5970        IFNAR2                     protein_coding     33265675
5971        IFNAR2                     protein_coding     33265675
5972        IFNAR2                     protein_coding     33265675
5973        IFNAR2                     protein_coding     33265675
5974        IFNAR2                     protein_coding     33265675
5975        IFNAR2                     protein_coding     33265675
5976        IFNAR2                     protein_coding     33265675
5977        IFNAR2                     protein_coding     33265675
5978        IFNAR2                     protein_coding     33265675
5979        IFNAR2                     protein_coding     33265675
5980        IFNAR2                     protein_coding     33265675
5981        IFNAR2                     protein_coding     33265675
5982        IFNAR2                     protein_coding     33265675
5983        IFNAR2                     protein_coding     33265675
5984        IFNAR2                     protein_coding     33265675
5985        IFNAR2                     protein_coding     33265675
5986        IFNAR2                     protein_coding     33265675
5987        IFNAR2                     protein_coding     33265675
5988        IFNAR2                     protein_coding     33265675
5989        IFNAR2                     protein_coding     33265675
5990        IFNAR2                     protein_coding     33265675
5991        IFNAR2                     protein_coding     33265675
5992        IFNAR2                     protein_coding     33265675
5993        IFNAR2                     protein_coding     33265675
5994        IFNAR2                     protein_coding     33265675
5995        IFNAR2                     protein_coding     33265675
5996        IFNAR2                     protein_coding     33265675
5997        IFNAR2                     protein_coding     33265675
5998        IFNAR2                     protein_coding     33265675
5999        IFNAR2                     protein_coding     33265675
6000        IFNAR2                     protein_coding     33265675
6001        IFNAR2                     protein_coding     33265675
6002        IFNAR2                     protein_coding     33265675
6003        IFNAR2                     protein_coding     33265675
6004        IFNAR2                     protein_coding     33265675
6005        IFNAR2                     protein_coding     33265675
6006        IFNAR2                     protein_coding     33265675
6007        IFNAR2                     protein_coding     33265675
6008        IFNAR2                     protein_coding     33265675
6009        IFNAR2                     protein_coding     33265675
6010        IFNAR2                     protein_coding     33265675
6011        IFNAR2                     protein_coding     33265675
6012        IFNAR2                     protein_coding     33265675
6013        IFNAR2                     protein_coding     33265675
6014        IFNAR2                     protein_coding     33265675
6015        IFNAR2                     protein_coding     33265675
6016        IFNAR2                     protein_coding     33265675
6017        IFNAR2                     protein_coding     33265675
6018        IFNAR2                     protein_coding     33265675
6019        IFNAR2                     protein_coding     33265675
6020        IFNGR2                     protein_coding     33479348
6021        IFNGR2                     protein_coding     33479348
6022        IFNGR2                     protein_coding     33479348
6023        IFNGR2                     protein_coding     33479348
6024        IFNGR2                     protein_coding     33479348
6025        IFNGR2                     protein_coding     33479348
6026        IFNGR2                     protein_coding     33479348
6027        IFNGR2                     protein_coding     33479348
6028        IFNGR2                     protein_coding     33479348
6029        IFNGR2                     protein_coding     33479348
6030        IFNGR2                     protein_coding     33479348
6031        IFNGR2                     protein_coding     33479348
6032        IFNGR2                     protein_coding     33479348
6033        IFNGR2                     protein_coding     33479348
6034        IFNGR2                     protein_coding     33479348
6035        IFNGR2                     protein_coding     33479348
6036        IFNGR2                     protein_coding     33479348
6037        IFNGR2                     protein_coding     33479348
6038        IFNGR2                     protein_coding     33479348
6039        IFNGR2                     protein_coding     33479348
6040        IFNGR2                     protein_coding     33479348
6041        IFNGR2                     protein_coding     33479348
6042        IFNGR2                     protein_coding     33479348
6043        IFNGR2                     protein_coding     33479348
6044        IFNGR2                     protein_coding     33479348
6045        IFNGR2                     protein_coding     33479348
6046        IFNGR2                     protein_coding     33479348
6047        IFNGR2                     protein_coding     33479348
6048        IFNGR2                     protein_coding     33479348
6049        IFNGR2                     protein_coding     33479348
6050        IFNGR2                     protein_coding     33479348
6051        IFNGR2                     protein_coding     33479348
6052        IFNGR2                     protein_coding     33479348
6053        IFNGR2                     protein_coding     33479348
6054        IFNGR2                     protein_coding     33479348
6055        IFNGR2                     protein_coding     33479348
6056        IFNGR2                     protein_coding     33479348
6057        IFNGR2                     protein_coding     33479348
6058        IFNGR2                     protein_coding     33479348
6059   IGHV1OR21-1                          IG_V_gene     10649835
6060   IGHV1OR21-1                          IG_V_gene     10649835
6061         IGSF5                     protein_coding     39802096
6062         IGSF5                     protein_coding     39802096
6063         IGSF5                     protein_coding     39802096
6064         IGSF5                     protein_coding     39802096
6065         IGSF5                     protein_coding     39802096
6066         IGSF5                     protein_coding     39802096
6067         IGSF5                     protein_coding     39802096
6068         IGSF5                     protein_coding     39802096
6069         IGSF5                     protein_coding     39802096
6070         IGSF5                     protein_coding     39802096
6071         IGSF5                     protein_coding     39802096
6072         IGSF5                     protein_coding     39802096
6073         IGSF5                     protein_coding     39802096
6074         IGSF5                     protein_coding     39802096
6075         IGSF5                     protein_coding     39802096
6076         IGSF5                     protein_coding     39802096
6077         IGSF5                     protein_coding     39802096
6078        IL10RB                     protein_coding     33310187
6079        IL10RB                     protein_coding     33310187
6080        IL10RB                     protein_coding     33310187
6081        IL10RB                     protein_coding     33310187
6082        IL10RB                     protein_coding     33310187
6083        IL10RB                     protein_coding     33310187
6084        IL10RB                     protein_coding     33310187
6085        IL10RB                     protein_coding     33310187
6086        IL10RB                     protein_coding     33310187
6087        IL10RB                     protein_coding     33310187
6088        IL10RB                     protein_coding     33310187
6089        IL10RB                     protein_coding     33310187
6090        IL10RB                     protein_coding     33310187
6091        IL10RB                     protein_coding     33310187
6092        IL10RB                     protein_coding     33310187
6093        IL10RB                     protein_coding     33310187
6094        IL10RB                     protein_coding     33310187
6095        IL10RB                     protein_coding     33310187
6096        IL10RB                     protein_coding     33310187
6097        IL10RB                     protein_coding     33310187
6098        IL10RB                     protein_coding     33310187
6099        IL10RB                     protein_coding     33310187
6100        IL10RB                     protein_coding     33310187
6101        IL10RB                     protein_coding     33310187
6102        IL10RB                     protein_coding     33310187
6103        IL10RB                     protein_coding     33310187
6104        IL10RB                     protein_coding     33310187
6105        IL10RB                     protein_coding     33310187
6106        IL10RB                     protein_coding     33310187
6107        IL10RB                     protein_coding     33310187
6108        IL10RB                     protein_coding     33310187
6109        IL10RB                     protein_coding     33310187
6110        IL10RB                     protein_coding     33310187
6111    IL10RB-AS1                          antisense     33266260
6112    IL10RB-AS1                          antisense     33266260
6113        IMMTP1               processed_pseudogene     44678086
6114         ITGB2                     protein_coding     44931989
6115         ITGB2                     protein_coding     44931989
6116         ITGB2                     protein_coding     44931989
6117         ITGB2                     protein_coding     44931989
6118         ITGB2                     protein_coding     44931989
6119         ITGB2                     protein_coding     44931989
6120         ITGB2                     protein_coding     44931989
6121         ITGB2                     protein_coding     44931989
6122         ITGB2                     protein_coding     44931989
6123         ITGB2                     protein_coding     44931989
6124         ITGB2                     protein_coding     44931989
6125         ITGB2                     protein_coding     44931989
6126         ITGB2                     protein_coding     44931989
6127         ITGB2                     protein_coding     44931989
6128         ITGB2                     protein_coding     44931989
6129         ITGB2                     protein_coding     44931989
6130         ITGB2                     protein_coding     44931989
6131         ITGB2                     protein_coding     44931989
6132         ITGB2                     protein_coding     44931989
6133         ITGB2                     protein_coding     44931989
6134         ITGB2                     protein_coding     44931989
6135         ITGB2                     protein_coding     44931989
6136         ITGB2                     protein_coding     44931989
6137         ITGB2                     protein_coding     44931989
6138         ITGB2                     protein_coding     44931989
6139         ITGB2                     protein_coding     44931989
6140         ITGB2                     protein_coding     44931989
6141         ITGB2                     protein_coding     44931989
6142         ITGB2                     protein_coding     44931989
6143         ITGB2                     protein_coding     44931989
6144         ITGB2                     protein_coding     44931989
6145         ITGB2                     protein_coding     44931989
6146         ITGB2                     protein_coding     44931989
6147         ITGB2                     protein_coding     44931989
6148         ITGB2                     protein_coding     44931989
6149         ITGB2                     protein_coding     44931989
6150         ITGB2                     protein_coding     44931989
6151         ITGB2                     protein_coding     44931989
6152         ITGB2                     protein_coding     44931989
6153         ITGB2                     protein_coding     44931989
6154         ITGB2                     protein_coding     44931989
6155         ITGB2                     protein_coding     44931989
6156         ITGB2                     protein_coding     44931989
6157         ITGB2                     protein_coding     44931989
6158         ITGB2                     protein_coding     44931989
6159         ITGB2                     protein_coding     44931989
6160         ITGB2                     protein_coding     44931989
6161         ITGB2                     protein_coding     44931989
6162         ITGB2                     protein_coding     44931989
6163         ITGB2                     protein_coding     44931989
6164         ITGB2                     protein_coding     44931989
6165         ITGB2                     protein_coding     44931989
6166         ITGB2                     protein_coding     44931989
6167         ITGB2                     protein_coding     44931989
6168         ITGB2                     protein_coding     44931989
6169         ITGB2                     protein_coding     44931989
6170         ITGB2                     protein_coding     44931989
6171         ITGB2                     protein_coding     44931989
6172         ITGB2                     protein_coding     44931989
6173         ITGB2                     protein_coding     44931989
6174         ITGB2                     protein_coding     44931989
6175         ITGB2                     protein_coding     44931989
6176         ITGB2                     protein_coding     44931989
6177         ITGB2                     protein_coding     44931989
6178         ITGB2                     protein_coding     44931989
6179         ITGB2                     protein_coding     44931989
6180         ITGB2                     protein_coding     44931989
6181         ITGB2                     protein_coding     44931989
6182         ITGB2                     protein_coding     44931989
6183         ITGB2                     protein_coding     44931989
6184         ITGB2                     protein_coding     44931989
6185         ITGB2                     protein_coding     44931989
6186         ITGB2                     protein_coding     44931989
6187         ITGB2                     protein_coding     44931989
6188         ITGB2                     protein_coding     44931989
6189         ITGB2                     protein_coding     44931989
6190         ITGB2                     protein_coding     44931989
6191         ITGB2                     protein_coding     44931989
6192         ITGB2                     protein_coding     44931989
6193         ITGB2                     protein_coding     44931989
6194         ITGB2                     protein_coding     44931989
6195         ITGB2                     protein_coding     44931989
6196         ITGB2                     protein_coding     44931989
6197         ITGB2                     protein_coding     44931989
6198         ITGB2                     protein_coding     44931989
6199         ITGB2                     protein_coding     44931989
6200         ITGB2                     protein_coding     44931989
6201         ITGB2                     protein_coding     44931989
6202         ITGB2                     protein_coding     44931989
6203         ITGB2                     protein_coding     44931989
6204         ITGB2                     protein_coding     44931989
6205         ITGB2                     protein_coding     44931989
6206         ITGB2                     protein_coding     44931989
6207         ITGB2                     protein_coding     44931989
6208         ITGB2                     protein_coding     44931989
6209         ITGB2                     protein_coding     44931989
6210         ITGB2                     protein_coding     44931989
6211         ITGB2                     protein_coding     44931989
6212         ITGB2                     protein_coding     44931989
6213         ITGB2                     protein_coding     44931989
6214         ITGB2                     protein_coding     44931989
6215         ITGB2                     protein_coding     44931989
6216         ITGB2                     protein_coding     44931989
6217         ITGB2                     protein_coding     44931989
6218         ITGB2                     protein_coding     44931989
6219         ITGB2                     protein_coding     44931989
6220         ITGB2                     protein_coding     44931989
6221         ITGB2                     protein_coding     44931989
6222         ITGB2                     protein_coding     44931989
6223         ITGB2                     protein_coding     44931989
6224         ITGB2                     protein_coding     44931989
6225         ITGB2                     protein_coding     44931989
6226         ITGB2                     protein_coding     44931989
6227         ITGB2                     protein_coding     44931989
6228         ITGB2                     protein_coding     44931989
6229         ITGB2                     protein_coding     44931989
6230         ITGB2                     protein_coding     44931989
6231         ITGB2                     protein_coding     44931989
6232         ITGB2                     protein_coding     44931989
6233         ITGB2                     protein_coding     44931989
6234         ITGB2                     protein_coding     44931989
6235         ITGB2                     protein_coding     44931989
6236         ITGB2                     protein_coding     44931989
6237         ITGB2                     protein_coding     44931989
6238         ITGB2                     protein_coding     44931989
6239         ITGB2                     protein_coding     44931989
6240         ITGB2                     protein_coding     44931989
6241         ITGB2                     protein_coding     44931989
6242         ITGB2                     protein_coding     44931989
6243         ITGB2                     protein_coding     44931989
6244         ITGB2                     protein_coding     44931989
6245         ITGB2                     protein_coding     44931989
6246         ITGB2                     protein_coding     44931989
6247         ITGB2                     protein_coding     44931989
6248         ITGB2                     protein_coding     44931989
6249         ITGB2                     protein_coding     44931989
6250         ITGB2                     protein_coding     44931989
6251         ITGB2                     protein_coding     44931989
6252         ITGB2                     protein_coding     44931989
6253         ITGB2                     protein_coding     44931989
6254         ITGB2                     protein_coding     44931989
6255         ITGB2                     protein_coding     44931989
6256         ITGB2                     protein_coding     44931989
6257         ITGB2                     protein_coding     44931989
6258         ITGB2                     protein_coding     44931989
6259         ITGB2                     protein_coding     44931989
6260         ITGB2                     protein_coding     44931989
6261         ITGB2                     protein_coding     44931989
6262         ITGB2                     protein_coding     44931989
6263         ITGB2                     protein_coding     44931989
6264         ITGB2                     protein_coding     44931989
6265         ITGB2                     protein_coding     44931989
6266         ITGB2                     protein_coding     44931989
6267         ITGB2                     protein_coding     44931989
6268         ITGB2                     protein_coding     44931989
6269         ITGB2                     protein_coding     44931989
6270         ITGB2                     protein_coding     44931989
6271         ITGB2                     protein_coding     44931989
6272         ITGB2                     protein_coding     44931989
6273         ITGB2                     protein_coding     44931989
6274         ITGB2                     protein_coding     44931989
6275         ITGB2                     protein_coding     44931989
6276         ITGB2                     protein_coding     44931989
6277         ITGB2                     protein_coding     44931989
6278         ITGB2                     protein_coding     44931989
6279         ITGB2                     protein_coding     44931989
6280         ITGB2                     protein_coding     44931989
6281         ITGB2                     protein_coding     44931989
6282         ITGB2                     protein_coding     44931989
6283         ITGB2                     protein_coding     44931989
6284         ITGB2                     protein_coding     44931989
6285         ITGB2                     protein_coding     44931989
6286         ITGB2                     protein_coding     44931989
6287         ITGB2                     protein_coding     44931989
6288         ITGB2                     protein_coding     44931989
6289         ITGB2                     protein_coding     44931989
6290         ITGB2                     protein_coding     44931989
6291         ITGB2                     protein_coding     44931989
6292         ITGB2                     protein_coding     44931989
6293         ITGB2                     protein_coding     44931989
6294         ITGB2                     protein_coding     44931989
6295         ITGB2                     protein_coding     44931989
6296         ITGB2                     protein_coding     44931989
6297         ITGB2                     protein_coding     44931989
6298         ITGB2                     protein_coding     44931989
6299         ITGB2                     protein_coding     44931989
6300         ITGB2                     protein_coding     44931989
6301         ITGB2                     protein_coding     44931989
6302         ITGB2                     protein_coding     44931989
6303         ITGB2                     protein_coding     44931989
6304         ITGB2                     protein_coding     44931989
6305         ITGB2                     protein_coding     44931989
6306         ITGB2                     protein_coding     44931989
6307         ITGB2                     protein_coding     44931989
6308         ITGB2                     protein_coding     44931989
6309         ITGB2                     protein_coding     44931989
6310     ITGB2-AS1                          antisense     44929678
6311     ITGB2-AS1                          antisense     44929678
6312     ITGB2-AS1                          antisense     44929678
6313     ITGB2-AS1                          antisense     44929678
6314     ITGB2-AS1                          antisense     44929678
6315     ITGB2-AS1                          antisense     44929678
6316     ITGB2-AS1                          antisense     44929678
6317     ITGB2-AS1                          antisense     44929678
6318     ITGB2-AS1                          antisense     44929678
6319     ITGB2-AS1                          antisense     44929678
6320     ITGB2-AS1                          antisense     44929678
6321     ITGB2-AS1                          antisense     44929678
6322     ITGB2-AS1                          antisense     44929678
6323     ITGB2-AS1                          antisense     44929678
6324     ITGB2-AS1                          antisense     44929678
6325     ITGB2-AS1                          antisense     44929678
6326     ITGB2-AS1                          antisense     44929678
6327     ITGB2-AS1                          antisense     44929678
6328     ITGB2-AS1                          antisense     44929678
6329     ITGB2-AS1                          antisense     44929678
6330     ITGB2-AS1                          antisense     44929678
6331     ITGB2-AS1                          antisense     44929678
6332         ITSN1                     protein_coding     33899861
6333         ITSN1                     protein_coding     33899861
6334         ITSN1                     protein_coding     33899861
6335         ITSN1                     protein_coding     33899861
6336         ITSN1                     protein_coding     33899861
6337         ITSN1                     protein_coding     33899861
6338         ITSN1                     protein_coding     33899861
6339         ITSN1                     protein_coding     33899861
6340         ITSN1                     protein_coding     33899861
6341         ITSN1                     protein_coding     33899861
6342         ITSN1                     protein_coding     33899861
6343         ITSN1                     protein_coding     33899861
6344         ITSN1                     protein_coding     33899861
6345         ITSN1                     protein_coding     33899861
6346         ITSN1                     protein_coding     33899861
6347         ITSN1                     protein_coding     33899861
6348         ITSN1                     protein_coding     33899861
6349         ITSN1                     protein_coding     33899861
6350         ITSN1                     protein_coding     33899861
6351         ITSN1                     protein_coding     33899861
6352         ITSN1                     protein_coding     33899861
6353         ITSN1                     protein_coding     33899861
6354         ITSN1                     protein_coding     33899861
6355         ITSN1                     protein_coding     33899861
6356         ITSN1                     protein_coding     33899861
6357         ITSN1                     protein_coding     33899861
6358         ITSN1                     protein_coding     33899861
6359         ITSN1                     protein_coding     33899861
6360         ITSN1                     protein_coding     33899861
6361         ITSN1                     protein_coding     33899861
6362         ITSN1                     protein_coding     33899861
6363         ITSN1                     protein_coding     33899861
6364         ITSN1                     protein_coding     33899861
6365         ITSN1                     protein_coding     33899861
6366         ITSN1                     protein_coding     33899861
6367         ITSN1                     protein_coding     33899861
6368         ITSN1                     protein_coding     33899861
6369         ITSN1                     protein_coding     33899861
6370         ITSN1                     protein_coding     33899861
6371         ITSN1                     protein_coding     33899861
6372         ITSN1                     protein_coding     33899861
6373         ITSN1                     protein_coding     33899861
6374         ITSN1                     protein_coding     33899861
6375         ITSN1                     protein_coding     33899861
6376         ITSN1                     protein_coding     33899861
6377         ITSN1                     protein_coding     33899861
6378         ITSN1                     protein_coding     33899861
6379         ITSN1                     protein_coding     33899861
6380         ITSN1                     protein_coding     33899861
6381         ITSN1                     protein_coding     33899861
6382         ITSN1                     protein_coding     33899861
6383         ITSN1                     protein_coding     33899861
6384         ITSN1                     protein_coding     33899861
6385         ITSN1                     protein_coding     33899861
6386         ITSN1                     protein_coding     33899861
6387         ITSN1                     protein_coding     33899861
6388         ITSN1                     protein_coding     33899861
6389         ITSN1                     protein_coding     33899861
6390         ITSN1                     protein_coding     33899861
6391         ITSN1                     protein_coding     33899861
6392         ITSN1                     protein_coding     33899861
6393         ITSN1                     protein_coding     33899861
6394         ITSN1                     protein_coding     33899861
6395         ITSN1                     protein_coding     33899861
6396         ITSN1                     protein_coding     33899861
6397         ITSN1                     protein_coding     33899861
6398         ITSN1                     protein_coding     33899861
6399         ITSN1                     protein_coding     33899861
6400         ITSN1                     protein_coding     33899861
6401         ITSN1                     protein_coding     33899861
6402         ITSN1                     protein_coding     33899861
6403         ITSN1                     protein_coding     33899861
6404         ITSN1                     protein_coding     33899861
6405         ITSN1                     protein_coding     33899861
6406         ITSN1                     protein_coding     33899861
6407         ITSN1                     protein_coding     33899861
6408         ITSN1                     protein_coding     33899861
6409         ITSN1                     protein_coding     33899861
6410         ITSN1                     protein_coding     33899861
6411         ITSN1                     protein_coding     33899861
6412         ITSN1                     protein_coding     33899861
6413         ITSN1                     protein_coding     33899861
6414         ITSN1                     protein_coding     33899861
6415         ITSN1                     protein_coding     33899861
6416         ITSN1                     protein_coding     33899861
6417         ITSN1                     protein_coding     33899861
6418         ITSN1                     protein_coding     33899861
6419         ITSN1                     protein_coding     33899861
6420         ITSN1                     protein_coding     33899861
6421         ITSN1                     protein_coding     33899861
6422         ITSN1                     protein_coding     33899861
6423         ITSN1                     protein_coding     33899861
6424         ITSN1                     protein_coding     33899861
6425         ITSN1                     protein_coding     33899861
6426         ITSN1                     protein_coding     33899861
6427         ITSN1                     protein_coding     33899861
6428         ITSN1                     protein_coding     33899861
6429         ITSN1                     protein_coding     33899861
6430         ITSN1                     protein_coding     33899861
6431         ITSN1                     protein_coding     33899861
6432         ITSN1                     protein_coding     33899861
6433         ITSN1                     protein_coding     33899861
6434         ITSN1                     protein_coding     33899861
6435         ITSN1                     protein_coding     33899861
6436         ITSN1                     protein_coding     33899861
6437         ITSN1                     protein_coding     33899861
6438         ITSN1                     protein_coding     33899861
6439         ITSN1                     protein_coding     33899861
6440         ITSN1                     protein_coding     33899861
6441         ITSN1                     protein_coding     33899861
6442         ITSN1                     protein_coding     33899861
6443         ITSN1                     protein_coding     33899861
6444         ITSN1                     protein_coding     33899861
6445         ITSN1                     protein_coding     33899861
6446         ITSN1                     protein_coding     33899861
6447         ITSN1                     protein_coding     33899861
6448         ITSN1                     protein_coding     33899861
6449         ITSN1                     protein_coding     33899861
6450         ITSN1                     protein_coding     33899861
6451         ITSN1                     protein_coding     33899861
6452         ITSN1                     protein_coding     33899861
6453         ITSN1                     protein_coding     33899861
6454         ITSN1                     protein_coding     33899861
6455         ITSN1                     protein_coding     33899861
6456         ITSN1                     protein_coding     33899861
6457         ITSN1                     protein_coding     33899861
6458         ITSN1                     protein_coding     33899861
6459         ITSN1                     protein_coding     33899861
6460         ITSN1                     protein_coding     33899861
6461         ITSN1                     protein_coding     33899861
6462         ITSN1                     protein_coding     33899861
6463         ITSN1                     protein_coding     33899861
6464         ITSN1                     protein_coding     33899861
6465         ITSN1                     protein_coding     33899861
6466         ITSN1                     protein_coding     33899861
6467         ITSN1                     protein_coding     33899861
6468         ITSN1                     protein_coding     33899861
6469         ITSN1                     protein_coding     33899861
6470         ITSN1                     protein_coding     33899861
6471         ITSN1                     protein_coding     33899861
6472         ITSN1                     protein_coding     33899861
6473         ITSN1                     protein_coding     33899861
6474         ITSN1                     protein_coding     33899861
6475         ITSN1                     protein_coding     33899861
6476         ITSN1                     protein_coding     33899861
6477         ITSN1                     protein_coding     33899861
6478         ITSN1                     protein_coding     33899861
6479         ITSN1                     protein_coding     33899861
6480         ITSN1                     protein_coding     33899861
6481         ITSN1                     protein_coding     33899861
6482         ITSN1                     protein_coding     33899861
6483         ITSN1                     protein_coding     33899861
6484         ITSN1                     protein_coding     33899861
6485         ITSN1                     protein_coding     33899861
6486         ITSN1                     protein_coding     33899861
6487         ITSN1                     protein_coding     33899861
6488         ITSN1                     protein_coding     33899861
6489         ITSN1                     protein_coding     33899861
6490         ITSN1                     protein_coding     33899861
6491         ITSN1                     protein_coding     33899861
6492         ITSN1                     protein_coding     33899861
6493         ITSN1                     protein_coding     33899861
6494         ITSN1                     protein_coding     33899861
6495         ITSN1                     protein_coding     33899861
6496         ITSN1                     protein_coding     33899861
6497         ITSN1                     protein_coding     33899861
6498         ITSN1                     protein_coding     33899861
6499         ITSN1                     protein_coding     33899861
6500         ITSN1                     protein_coding     33899861
6501         ITSN1                     protein_coding     33899861
6502         ITSN1                     protein_coding     33899861
6503         ITSN1                     protein_coding     33899861
6504         ITSN1                     protein_coding     33899861
6505         ITSN1                     protein_coding     33899861
6506         ITSN1                     protein_coding     33899861
6507         ITSN1                     protein_coding     33899861
6508         ITSN1                     protein_coding     33899861
6509         ITSN1                     protein_coding     33899861
6510         ITSN1                     protein_coding     33899861
6511         ITSN1                     protein_coding     33899861
6512         ITSN1                     protein_coding     33899861
6513         ITSN1                     protein_coding     33899861
6514         ITSN1                     protein_coding     33899861
6515         ITSN1                     protein_coding     33899861
6516         ITSN1                     protein_coding     33899861
6517         ITSN1                     protein_coding     33899861
6518         ITSN1                     protein_coding     33899861
6519         ITSN1                     protein_coding     33899861
6520         ITSN1                     protein_coding     33899861
6521         ITSN1                     protein_coding     33899861
6522         ITSN1                     protein_coding     33899861
6523         ITSN1                     protein_coding     33899861
6524         ITSN1                     protein_coding     33899861
6525         ITSN1                     protein_coding     33899861
6526         ITSN1                     protein_coding     33899861
6527         ITSN1                     protein_coding     33899861
6528         ITSN1                     protein_coding     33899861
6529         ITSN1                     protein_coding     33899861
6530         ITSN1                     protein_coding     33899861
6531         ITSN1                     protein_coding     33899861
6532         ITSN1                     protein_coding     33899861
6533         ITSN1                     protein_coding     33899861
6534         ITSN1                     protein_coding     33899861
6535         ITSN1                     protein_coding     33899861
6536         ITSN1                     protein_coding     33899861
6537         ITSN1                     protein_coding     33899861
6538         ITSN1                     protein_coding     33899861
6539         ITSN1                     protein_coding     33899861
6540         ITSN1                     protein_coding     33899861
6541         ITSN1                     protein_coding     33899861
6542         ITSN1                     protein_coding     33899861
6543         ITSN1                     protein_coding     33899861
6544         ITSN1                     protein_coding     33899861
6545         ITSN1                     protein_coding     33899861
6546         ITSN1                     protein_coding     33899861
6547         ITSN1                     protein_coding     33899861
6548         ITSN1                     protein_coding     33899861
6549         ITSN1                     protein_coding     33899861
6550         ITSN1                     protein_coding     33899861
6551         ITSN1                     protein_coding     33899861
6552         ITSN1                     protein_coding     33899861
6553         ITSN1                     protein_coding     33899861
6554         ITSN1                     protein_coding     33899861
6555         ITSN1                     protein_coding     33899861
6556         ITSN1                     protein_coding     33899861
6557         ITSN1                     protein_coding     33899861
6558         ITSN1                     protein_coding     33899861
6559         ITSN1                     protein_coding     33899861
6560         ITSN1                     protein_coding     33899861
6561         ITSN1                     protein_coding     33899861
6562         ITSN1                     protein_coding     33899861
6563         ITSN1                     protein_coding     33899861
6564         ITSN1                     protein_coding     33899861
6565         ITSN1                     protein_coding     33899861
6566         ITSN1                     protein_coding     33899861
6567         ITSN1                     protein_coding     33899861
6568         ITSN1                     protein_coding     33899861
6569         ITSN1                     protein_coding     33899861
6570         ITSN1                     protein_coding     33899861
6571         ITSN1                     protein_coding     33899861
6572         ITSN1                     protein_coding     33899861
6573         ITSN1                     protein_coding     33899861
6574         ITSN1                     protein_coding     33899861
6575         ITSN1                     protein_coding     33899861
6576         ITSN1                     protein_coding     33899861
6577         ITSN1                     protein_coding     33899861
6578         ITSN1                     protein_coding     33899861
6579         ITSN1                     protein_coding     33899861
6580         ITSN1                     protein_coding     33899861
6581         ITSN1                     protein_coding     33899861
6582         ITSN1                     protein_coding     33899861
6583         ITSN1                     protein_coding     33899861
6584         ITSN1                     protein_coding     33899861
6585         ITSN1                     protein_coding     33899861
6586         ITSN1                     protein_coding     33899861
6587         ITSN1                     protein_coding     33899861
6588         ITSN1                     protein_coding     33899861
6589         ITSN1                     protein_coding     33899861
6590         ITSN1                     protein_coding     33899861
6591         ITSN1                     protein_coding     33899861
6592         ITSN1                     protein_coding     33899861
6593         ITSN1                     protein_coding     33899861
6594         ITSN1                     protein_coding     33899861
6595         ITSN1                     protein_coding     33899861
6596         ITSN1                     protein_coding     33899861
6597         ITSN1                     protein_coding     33899861
6598         ITSN1                     protein_coding     33899861
6599         ITSN1                     protein_coding     33899861
6600         ITSN1                     protein_coding     33899861
6601         ITSN1                     protein_coding     33899861
6602         ITSN1                     protein_coding     33899861
6603         ITSN1                     protein_coding     33899861
6604         ITSN1                     protein_coding     33899861
6605         ITSN1                     protein_coding     33899861
6606         ITSN1                     protein_coding     33899861
6607         ITSN1                     protein_coding     33899861
6608         ITSN1                     protein_coding     33899861
6609         ITSN1                     protein_coding     33899861
6610         ITSN1                     protein_coding     33899861
6611         ITSN1                     protein_coding     33899861
6612         ITSN1                     protein_coding     33899861
6613         ITSN1                     protein_coding     33899861
6614         ITSN1                     protein_coding     33899861
6615         ITSN1                     protein_coding     33899861
6616         ITSN1                     protein_coding     33899861
6617         ITSN1                     protein_coding     33899861
6618         ITSN1                     protein_coding     33899861
6619         ITSN1                     protein_coding     33899861
6620         ITSN1                     protein_coding     33899861
6621         ITSN1                     protein_coding     33899861
6622         ITSN1                     protein_coding     33899861
6623         ITSN1                     protein_coding     33899861
6624         ITSN1                     protein_coding     33899861
6625         ITSN1                     protein_coding     33899861
6626         ITSN1                     protein_coding     33899861
6627         ITSN1                     protein_coding     33899861
6628         ITSN1                     protein_coding     33899861
6629         ITSN1                     protein_coding     33899861
6630         ITSN1                     protein_coding     33899861
6631         ITSN1                     protein_coding     33899861
6632         ITSN1                     protein_coding     33899861
6633         ITSN1                     protein_coding     33899861
6634         ITSN1                     protein_coding     33899861
6635         ITSN1                     protein_coding     33899861
6636         ITSN1                     protein_coding     33899861
6637         ITSN1                     protein_coding     33899861
6638         ITSN1                     protein_coding     33899861
6639         ITSN1                     protein_coding     33899861
6640         ITSN1                     protein_coding     33899861
6641         ITSN1                     protein_coding     33899861
6642         ITSN1                     protein_coding     33899861
6643         ITSN1                     protein_coding     33899861
6644         ITSN1                     protein_coding     33899861
6645         ITSN1                     protein_coding     33899861
6646         ITSN1                     protein_coding     33899861
6647         ITSN1                     protein_coding     33899861
6648         ITSN1                     protein_coding     33899861
6649         ITSN1                     protein_coding     33899861
6650         ITSN1                     protein_coding     33899861
6651         ITSN1                     protein_coding     33899861
6652         ITSN1                     protein_coding     33899861
6653         ITSN1                     protein_coding     33899861
6654         ITSN1                     protein_coding     33899861
6655         ITSN1                     protein_coding     33899861
6656         ITSN1                     protein_coding     33899861
6657         ITSN1                     protein_coding     33899861
6658         ITSN1                     protein_coding     33899861
6659         ITSN1                     protein_coding     33899861
6660         ITSN1                     protein_coding     33899861
6661         ITSN1                     protein_coding     33899861
6662         ITSN1                     protein_coding     33899861
6663         ITSN1                     protein_coding     33899861
6664         ITSN1                     protein_coding     33899861
6665         ITSN1                     protein_coding     33899861
6666         ITSN1                     protein_coding     33899861
6667         ITSN1                     protein_coding     33899861
6668         ITSN1                     protein_coding     33899861
6669         ITSN1                     protein_coding     33899861
6670         ITSN1                     protein_coding     33899861
6671         ITSN1                     protein_coding     33899861
6672         ITSN1                     protein_coding     33899861
6673         ITSN1                     protein_coding     33899861
6674         ITSN1                     protein_coding     33899861
6675         ITSN1                     protein_coding     33899861
6676         ITSN1                     protein_coding     33899861
6677         ITSN1                     protein_coding     33899861
6678         ITSN1                     protein_coding     33899861
6679         ITSN1                     protein_coding     33899861
6680         ITSN1                     protein_coding     33899861
6681         ITSN1                     protein_coding     33899861
6682         ITSN1                     protein_coding     33899861
6683         ITSN1                     protein_coding     33899861
6684         ITSN1                     protein_coding     33899861
6685         ITSN1                     protein_coding     33899861
6686         ITSN1                     protein_coding     33899861
6687         ITSN1                     protein_coding     33899861
6688         ITSN1                     protein_coding     33899861
6689         ITSN1                     protein_coding     33899861
6690         ITSN1                     protein_coding     33899861
6691         ITSN1                     protein_coding     33899861
6692         ITSN1                     protein_coding     33899861
6693         ITSN1                     protein_coding     33899861
6694         ITSN1                     protein_coding     33899861
6695         ITSN1                     protein_coding     33899861
6696         ITSN1                     protein_coding     33899861
6697         ITSN1                     protein_coding     33899861
6698         ITSN1                     protein_coding     33899861
6699         ITSN1                     protein_coding     33899861
6700         ITSN1                     protein_coding     33899861
6701         ITSN1                     protein_coding     33899861
6702         ITSN1                     protein_coding     33899861
6703         ITSN1                     protein_coding     33899861
6704         ITSN1                     protein_coding     33899861
6705         ITSN1                     protein_coding     33899861
6706         ITSN1                     protein_coding     33899861
6707         ITSN1                     protein_coding     33899861
6708         ITSN1                     protein_coding     33899861
6709         ITSN1                     protein_coding     33899861
6710         ITSN1                     protein_coding     33899861
6711         ITSN1                     protein_coding     33899861
6712         ITSN1                     protein_coding     33899861
6713         ITSN1                     protein_coding     33899861
6714         ITSN1                     protein_coding     33899861
6715         ITSN1                     protein_coding     33899861
6716         ITSN1                     protein_coding     33899861
6717         ITSN1                     protein_coding     33899861
6718         ITSN1                     protein_coding     33899861
6719         ITSN1                     protein_coding     33899861
6720         ITSN1                     protein_coding     33899861
6721         ITSN1                     protein_coding     33899861
6722         ITSN1                     protein_coding     33899861
6723         ITSN1                     protein_coding     33899861
6724         ITSN1                     protein_coding     33899861
6725         ITSN1                     protein_coding     33899861
6726         ITSN1                     protein_coding     33899861
6727         ITSN1                     protein_coding     33899861
6728         ITSN1                     protein_coding     33899861
6729         ITSN1                     protein_coding     33899861
6730         ITSN1                     protein_coding     33899861
6731         ITSN1                     protein_coding     33899861
6732         ITSN1                     protein_coding     33899861
6733         ITSN1                     protein_coding     33899861
6734         ITSN1                     protein_coding     33899861
6735         ITSN1                     protein_coding     33899861
6736         ITSN1                     protein_coding     33899861
6737         ITSN1                     protein_coding     33899861
6738         ITSN1                     protein_coding     33899861
6739         ITSN1                     protein_coding     33899861
6740         ITSN1                     protein_coding     33899861
6741          JAM2                     protein_coding     25717562
6742          JAM2                     protein_coding     25717562
6743          JAM2                     protein_coding     25717562
6744          JAM2                     protein_coding     25717562
6745          JAM2                     protein_coding     25717562
6746          JAM2                     protein_coding     25717562
6747          JAM2                     protein_coding     25717562
6748          JAM2                     protein_coding     25717562
6749          JAM2                     protein_coding     25717562
6750          JAM2                     protein_coding     25717562
6751          JAM2                     protein_coding     25717562
6752          JAM2                     protein_coding     25717562
6753          JAM2                     protein_coding     25717562
6754          JAM2                     protein_coding     25717562
6755          JAM2                     protein_coding     25717562
6756          JAM2                     protein_coding     25717562
6757          JAM2                     protein_coding     25717562
6758          JAM2                     protein_coding     25717562
6759          JAM2                     protein_coding     25717562
6760          JAM2                     protein_coding     25717562
6761          JAM2                     protein_coding     25717562
6762          JAM2                     protein_coding     25717562
6763          JAM2                     protein_coding     25717562
6764          JAM2                     protein_coding     25717562
6765          JAM2                     protein_coding     25717562
6766          JAM2                     protein_coding     25717562
6767          JAM2                     protein_coding     25717562
6768          JAM2                     protein_coding     25717562
6769          JAM2                     protein_coding     25717562
6770          JAM2                     protein_coding     25717562
6771          JAM2                     protein_coding     25717562
6772          JAM2                     protein_coding     25717562
6773          JAM2                     protein_coding     25717562
6774          JAM2                     protein_coding     25717562
6775          JAM2                     protein_coding     25717562
6776          JAM2                     protein_coding     25717562
6777          JAM2                     protein_coding     25717562
6778          JAM2                     protein_coding     25717562
6779          JAM2                     protein_coding     25717562
6780          JAM2                     protein_coding     25717562
6781          JAM2                     protein_coding     25717562
6782          JAM2                     protein_coding     25717562
6783          JAM2                     protein_coding     25717562
6784          JAM2                     protein_coding     25717562
6785          JAM2                     protein_coding     25717562
6786          JAM2                     protein_coding     25717562
6787         KCNE1                     protein_coding     34512275
6788         KCNE1                     protein_coding     34512275
6789         KCNE1                     protein_coding     34512275
6790         KCNE1                     protein_coding     34512275
6791         KCNE1                     protein_coding     34512275
6792         KCNE1                     protein_coding     34512275
6793         KCNE1                     protein_coding     34512275
6794         KCNE1                     protein_coding     34512275
6795         KCNE1                     protein_coding     34512275
6796         KCNE1                     protein_coding     34512275
6797         KCNE1                     protein_coding     34512275
6798         KCNE1                     protein_coding     34512275
6799         KCNE1                     protein_coding     34512275
6800         KCNE1                     protein_coding     34512275
6801         KCNE1                     protein_coding     34512275
6802         KCNE1                     protein_coding     34512275
6803         KCNE1                     protein_coding     34512275
6804         KCNE1                     protein_coding     34512275
6805         KCNE1                     protein_coding     34512275
6806         KCNE1                     protein_coding     34512275
6807         KCNE1                     protein_coding     34512275
6808         KCNE1                     protein_coding     34512275
6809         KCNE1                     protein_coding     34512275
6810         KCNE1                     protein_coding     34512275
6811         KCNE1                     protein_coding     34512275
6812        KCNE1B                     protein_coding      7829926
6813        KCNE1B                     protein_coding      7829926
6814        KCNE1B                     protein_coding      7829926
6815        KCNE1B                     protein_coding      7829926
6816        KCNE1B                     protein_coding      7829926
6817        KCNE1B                     protein_coding      7829926
6818        KCNE1B                     protein_coding      7829926
6819        KCNE1B                     protein_coding      7829926
6820        KCNE1B                     protein_coding      7829926
6821        KCNE1B                     protein_coding      7829926
6822        KCNE1B                     protein_coding      7829926
6823         KCNE2                     protein_coding     34371389
6824         KCNE2                     protein_coding     34371389
6825        KCNJ15                     protein_coding     38307357
6826        KCNJ15                     protein_coding     38307357
6827        KCNJ15                     protein_coding     38307357
6828        KCNJ15                     protein_coding     38307357
6829        KCNJ15                     protein_coding     38307357
6830        KCNJ15                     protein_coding     38307357
6831        KCNJ15                     protein_coding     38307357
6832        KCNJ15                     protein_coding     38307357
6833        KCNJ15                     protein_coding     38307357
6834        KCNJ15                     protein_coding     38307357
6835        KCNJ15                     protein_coding     38307357
6836        KCNJ15                     protein_coding     38307357
6837        KCNJ15                     protein_coding     38307357
6838        KCNJ15                     protein_coding     38307357
6839        KCNJ15                     protein_coding     38307357
6840        KCNJ15                     protein_coding     38307357
6841        KCNJ15                     protein_coding     38307357
6842        KCNJ15                     protein_coding     38307357
6843        KCNJ15                     protein_coding     38307357
6844        KCNJ15                     protein_coding     38307357
6845        KCNJ15                     protein_coding     38307357
6846        KCNJ15                     protein_coding     38307357
6847        KCNJ15                     protein_coding     38307357
6848        KCNJ15                     protein_coding     38307357
6849        KCNJ15                     protein_coding     38307357
6850        KCNJ15                     protein_coding     38307357
6851        KCNJ15                     protein_coding     38307357
6852        KCNJ15                     protein_coding     38307357
6853        KCNJ15                     protein_coding     38307357
6854        KCNJ15                     protein_coding     38307357
6855        KCNJ15                     protein_coding     38307357
6856        KCNJ15                     protein_coding     38307357
6857        KCNJ15                     protein_coding     38307357
6858        KCNJ15                     protein_coding     38307357
6859        KCNJ15                     protein_coding     38307357
6860        KCNJ15                     protein_coding     38307357
6861        KCNJ15                     protein_coding     38307357
6862        KCNJ15                     protein_coding     38307357
6863        KCNJ15                     protein_coding     38307357
6864        KCNJ15                     protein_coding     38307357
6865        KCNJ15                     protein_coding     38307357
6866        KCNJ15                     protein_coding     38307357
6867        KCNJ15                     protein_coding     38307357
6868        KCNJ15                     protein_coding     38307357
6869        KCNJ15                     protein_coding     38307357
6870        KCNJ15                     protein_coding     38307357
6871        KCNJ15                     protein_coding     38307357
6872        KCNJ15                     protein_coding     38307357
6873        KCNJ15                     protein_coding     38307357
6874        KCNJ15                     protein_coding     38307357
6875        KCNJ15                     protein_coding     38307357
6876        KCNJ15                     protein_coding     38307357
6877        KCNJ15                     protein_coding     38307357
6878        KCNJ15                     protein_coding     38307357
6879        KCNJ15                     protein_coding     38307357
6880        KCNJ15                     protein_coding     38307357
6881        KCNJ15                     protein_coding     38307357
6882        KCNJ15                     protein_coding     38307357
6883        KCNJ15                     protein_coding     38307357
6884        KCNJ15                     protein_coding     38307357
6885        KCNJ15                     protein_coding     38307357
6886        KCNJ15                     protein_coding     38307357
6887        KCNJ15                     protein_coding     38307357
6888        KCNJ15                     protein_coding     38307357
6889        KCNJ15                     protein_coding     38307357
6890        KCNJ15                     protein_coding     38307357
6891        KCNJ15                     protein_coding     38307357
6892        KCNJ15                     protein_coding     38307357
6893        KCNJ15                     protein_coding     38307357
6894        KCNJ15                     protein_coding     38307357
6895        KCNJ15                     protein_coding     38307357
6896        KCNJ15                     protein_coding     38307357
6897        KCNJ15                     protein_coding     38307357
6898        KCNJ15                     protein_coding     38307357
6899        KCNJ15                     protein_coding     38307357
6900        KCNJ15                     protein_coding     38307357
6901        KCNJ15                     protein_coding     38307357
6902        KCNJ15                     protein_coding     38307357
6903        KCNJ15                     protein_coding     38307357
6904        KCNJ15                     protein_coding     38307357
6905        KCNJ15                     protein_coding     38307357
6906        KCNJ15                     protein_coding     38307357
6907        KCNJ15                     protein_coding     38307357
6908        KCNJ15                     protein_coding     38307357
6909        KCNJ15                     protein_coding     38307357
6910        KCNJ15                     protein_coding     38307357
6911        KCNJ15                     protein_coding     38307357
6912        KCNJ15                     protein_coding     38307357
6913        KCNJ15                     protein_coding     38307357
6914        KCNJ15                     protein_coding     38307357
6915         KCNJ6                     protein_coding     37916446
6916         KCNJ6                     protein_coding     37916446
6917         KCNJ6                     protein_coding     37916446
6918         KCNJ6                     protein_coding     37916446
6919     KCNJ6-AS1                     sense_intronic     37719569
6920     KCNJ6-AS1                     sense_intronic     37719569
6921       KRT18P2               processed_pseudogene     20426206
6922     KRTAP10-1                     protein_coding     44540195
6923    KRTAP10-10                     protein_coding     44638455
6924    KRTAP10-11                     protein_coding     44647650
6925    KRTAP10-12                     protein_coding     44698044
6926    KRTAP10-12                     protein_coding     44698044
6927    KRTAP10-12                     protein_coding     44698044
6928    KRTAP10-12                     protein_coding     44698044
6929   KRTAP10-13P             unprocessed_pseudogene     44702791
6930     KRTAP10-2                     protein_coding     44551505
6931     KRTAP10-2                     protein_coding     44551505
6932     KRTAP10-2                     protein_coding     44551505
6933     KRTAP10-3                     protein_coding     44558760
6934     KRTAP10-4                     protein_coding     44638284
6935     KRTAP10-4                     protein_coding     44638284
6936     KRTAP10-4                     protein_coding     44638284
6937     KRTAP10-4                     protein_coding     44638284
6938     KRTAP10-4                     protein_coding     44638284
6939     KRTAP10-4                     protein_coding     44638284
6940     KRTAP10-4                     protein_coding     44638284
6941     KRTAP10-4                     protein_coding     44638284
6942     KRTAP10-4                     protein_coding     44638284
6943     KRTAP10-4                     protein_coding     44638284
6944     KRTAP10-5                     protein_coding     44580604
6945     KRTAP10-6                     protein_coding     44592505
6946     KRTAP10-7                     protein_coding     44602174
6947     KRTAP10-8                     protein_coding     44612954
6948     KRTAP10-9                     protein_coding     44628293
6949     KRTAP10-9                     protein_coding     44628293
6950     KRTAP10-9                     protein_coding     44628293
6951     KRTAP10-9                     protein_coding     44628293
6952     KRTAP10-9                     protein_coding     44628293
6953     KRTAP10-9                     protein_coding     44628293
6954     KRTAP11-1                     protein_coding     30881555
6955     KRTAP12-1                     protein_coding     44682163
6956     KRTAP12-2                     protein_coding     44666927
6957     KRTAP12-3                     protein_coding     44658341
6958     KRTAP12-4                     protein_coding     44654659
6959     KRTAP13-1                     protein_coding     30396822
6960     KRTAP13-2                     protein_coding     30372257
6961     KRTAP13-3                     protein_coding     30425968
6962     KRTAP13-4                     protein_coding     30431026
6963    KRTAP13-5P             unprocessed_pseudogene     30436964
6964    KRTAP13-6P             unprocessed_pseudogene     30356885
6965     KRTAP15-1                     protein_coding     30440945
6966     KRTAP19-1                     protein_coding     30480344
6967   KRTAP19-10P             unprocessed_pseudogene     30514799
6968   KRTAP19-11P             unprocessed_pseudogene     30537381
6969     KRTAP19-2                     protein_coding     30487436
6970     KRTAP19-3                     protein_coding     30491985
6971     KRTAP19-4                     protein_coding     30497133
6972     KRTAP19-5                     protein_coding     30502117
6973     KRTAP19-6                     protein_coding     30541864
6974     KRTAP19-7                     protein_coding     30561314
6975     KRTAP19-8                     protein_coding     31038476
6976    KRTAP19-9P             unprocessed_pseudogene     30510497
6977     KRTAP20-1                     protein_coding     30616699
6978     KRTAP20-2                     protein_coding     30635619
6979     KRTAP20-3                     protein_coding     30643136
6980     KRTAP20-4                     protein_coding     30620850
6981     KRTAP21-1                     protein_coding     30755428
6982     KRTAP21-2                     protein_coding     30747233
6983     KRTAP21-3                     protein_coding     30718777
6984    KRTAP21-4P             unprocessed_pseudogene     30742595
6985     KRTAP22-1                     protein_coding     30601382
6986     KRTAP22-2                     protein_coding     30590397
6987     KRTAP23-1                     protein_coding     30348609
6988     KRTAP24-1                     protein_coding     30282958
6989     KRTAP25-1                     protein_coding     30289514
6990     KRTAP26-1                     protein_coding     30320316
6991     KRTAP27-1                     protein_coding     30337694
6992      KRTAP6-1                     protein_coding     30613930
6993      KRTAP6-2                     protein_coding     30598902
6994      KRTAP6-3                     protein_coding     30593075
6995      KRTAP7-1                     protein_coding     30829759
6996      KRTAP8-1                     protein_coding     30813252
6997     KRTAP8-2P             unprocessed_pseudogene     30802427
6998     KRTAP8-3P             unprocessed_pseudogene     30807119
6999         LCA5L                     protein_coding     39445805
7000         LCA5L                     protein_coding     39445805
7001         LCA5L                     protein_coding     39445805
7002         LCA5L                     protein_coding     39445805
7003         LCA5L                     protein_coding     39445805
7004         LCA5L                     protein_coding     39445805
7005         LCA5L                     protein_coding     39445805
7006         LCA5L                     protein_coding     39445805
7007         LCA5L                     protein_coding     39445805
7008         LCA5L                     protein_coding     39445805
7009         LCA5L                     protein_coding     39445805
7010         LCA5L                     protein_coding     39445805
7011         LCA5L                     protein_coding     39445805
7012         LCA5L                     protein_coding     39445805
7013         LCA5L                     protein_coding     39445805
7014         LCA5L                     protein_coding     39445805
7015         LCA5L                     protein_coding     39445805
7016         LCA5L                     protein_coding     39445805
7017         LCA5L                     protein_coding     39445805
7018         LCA5L                     protein_coding     39445805
7019         LCA5L                     protein_coding     39445805
7020         LCA5L                     protein_coding     39445805
7021         LCA5L                     protein_coding     39445805
7022         LCA5L                     protein_coding     39445805
7023         LCA5L                     protein_coding     39445805
7024         LCA5L                     protein_coding     39445805
7025         LCA5L                     protein_coding     39445805
7026         LCA5L                     protein_coding     39445805
7027         LCA5L                     protein_coding     39445805
7028         LCA5L                     protein_coding     39445805
7029         LCA5L                     protein_coding     39445805
7030         LCA5L                     protein_coding     39445805
7031         LCA5L                     protein_coding     39445805
7032         LCA5L                     protein_coding     39445805
7033         LCA5L                     protein_coding     39445805
7034         LCA5L                     protein_coding     39445805
7035         LCA5L                     protein_coding     39445805
7036         LCA5L                     protein_coding     39445805
7037         LCA5L                     protein_coding     39445805
7038         LCA5L                     protein_coding     39445805
7039         LCA5L                     protein_coding     39445805
7040         LCA5L                     protein_coding     39445805
7041         LCA5L                     protein_coding     39445805
7042         LCA5L                     protein_coding     39445805
7043         LCA5L                     protein_coding     39445805
7044         LCA5L                     protein_coding     39445805
7045         LCA5L                     protein_coding     39445805
7046         LCA5L                     protein_coding     39445805
7047         LCA5L                     protein_coding     39445805
7048         LCA5L                     protein_coding     39445805
7049         LCA5L                     protein_coding     39445805
7050         LCA5L                     protein_coding     39445805
7051         LCA5L                     protein_coding     39445805
7052         LCA5L                     protein_coding     39445805
7053         LCA5L                     protein_coding     39445805
7054         LCA5L                     protein_coding     39445805
7055         LCA5L                     protein_coding     39445805
7056         LCA5L                     protein_coding     39445805
7057         LCA5L                     protein_coding     39445805
7058         LCA5L                     protein_coding     39445805
7059         LCA5L                     protein_coding     39445805
7060         LCA5L                     protein_coding     39445805
7061         LCA5L                     protein_coding     39445805
7062         LCA5L                     protein_coding     39445805
7063         LCA5L                     protein_coding     39445805
7064         LCA5L                     protein_coding     39445805
7065         LCA5L                     protein_coding     39445805
7066         LCA5L                     protein_coding     39445805
7067         LCA5L                     protein_coding     39445805
7068         LCA5L                     protein_coding     39445805
7069         LCA5L                     protein_coding     39445805
7070         LCA5L                     protein_coding     39445805
7071         LCA5L                     protein_coding     39445805
7072         LCA5L                     protein_coding     39445805
7073         LCA5L                     protein_coding     39445805
7074         LCA5L                     protein_coding     39445805
7075         LCA5L                     protein_coding     39445805
7076         LCA5L                     protein_coding     39445805
7077         LCA5L                     protein_coding     39445805
7078         LCA5L                     protein_coding     39445805
7079         LCA5L                     protein_coding     39445805
7080         LCA5L                     protein_coding     39445805
7081         LCA5L                     protein_coding     39445805
7082         LCA5L                     protein_coding     39445805
7083         LCA5L                     protein_coding     39445805
7084         LCA5L                     protein_coding     39445805
7085         LCA5L                     protein_coding     39445805
7086         LCA5L                     protein_coding     39445805
7087         LCA5L                     protein_coding     39445805
7088         LCA5L                     protein_coding     39445805
7089         LCA5L                     protein_coding     39445805
7090         LCA5L                     protein_coding     39445805
7091         LCA5L                     protein_coding     39445805
7092         LCA5L                     protein_coding     39445805
7093         LCA5L                     protein_coding     39445805
7094         LCA5L                     protein_coding     39445805
7095         LCA5L                     protein_coding     39445805
7096         LCA5L                     protein_coding     39445805
7097         LCA5L                     protein_coding     39445805
7098         LCA5L                     protein_coding     39445805
7099         LCA5L                     protein_coding     39445805
7100         LCA5L                     protein_coding     39445805
7101         LCA5L                     protein_coding     39445805
7102         LCA5L                     protein_coding     39445805
7103         LCA5L                     protein_coding     39445805
7104         LCA5L                     protein_coding     39445805
7105         LCA5L                     protein_coding     39445805
7106         LCA5L                     protein_coding     39445805
7107         LCA5L                     protein_coding     39445805
7108         LCA5L                     protein_coding     39445805
7109         LCA5L                     protein_coding     39445805
7110         LCA5L                     protein_coding     39445805
7111         LCA5L                     protein_coding     39445805
7112         LCA5L                     protein_coding     39445805
7113         LCA5L                     protein_coding     39445805
7114         LCA5L                     protein_coding     39445805
7115         LCA5L                     protein_coding     39445805
7116     LINC00111                            lincRNA     41697336
7117     LINC00111                            lincRNA     41697336
7118     LINC00111                            lincRNA     41697336
7119     LINC00112                          antisense     41717580
7120     LINC00112                          antisense     41717580
7121     LINC00112                          antisense     41717580
7122     LINC00113                            lincRNA     27751233
7123     LINC00113                            lincRNA     27751233
7124     LINC00113                            lincRNA     27751233
7125     LINC00113                            lincRNA     27751233
7126     LINC00113                            lincRNA     27751233
7127     LINC00113                            lincRNA     27751233
7128     LINC00113                            lincRNA     27751233
7129     LINC00113                            lincRNA     27751233
7130     LINC00113                            lincRNA     27751233
7131     LINC00113                            lincRNA     27751233
7132     LINC00113                            lincRNA     27751233
7133     LINC00113                            lincRNA     27751233
7134     LINC00114                            lincRNA     38747460
7135     LINC00114                            lincRNA     38747460
7136     LINC00114                            lincRNA     38747460
7137     LINC00114                            lincRNA     38747460
7138     LINC00114                            lincRNA     38747460
7139     LINC00114                            lincRNA     38747460
7140     LINC00114                            lincRNA     38747460
7141     LINC00114                            lincRNA     38747460
7142     LINC00114                            lincRNA     38747460
7143     LINC00114                            lincRNA     38747460
7144     LINC00114                            lincRNA     38747460
7145     LINC00114                            lincRNA     38747460
7146     LINC00114                            lincRNA     38747460
7147     LINC00114                            lincRNA     38747460
7148     LINC00114                            lincRNA     38747460
7149     LINC00158                            lincRNA     25431701
7150     LINC00158                            lincRNA     25431701
7151     LINC00158                            lincRNA     25431701
7152     LINC00158                            lincRNA     25431701
7153     LINC00158                            lincRNA     25431701
7154     LINC00158                            lincRNA     25431701
7155     LINC00158                            lincRNA     25431701
7156     LINC00158                            lincRNA     25431701
7157     LINC00158                            lincRNA     25431701
7158     LINC00158                            lincRNA     25431701
7159     LINC00158                            lincRNA     25431701
7160     LINC00158                            lincRNA     25431701
7161     LINC00158                            lincRNA     25431701
7162     LINC00158                            lincRNA     25431701
7163     LINC00158                            lincRNA     25431701
7164     LINC00158                            lincRNA     25431701
7165     LINC00159                            lincRNA     32197813
7166     LINC00159                            lincRNA     32197813
7167     LINC00159                            lincRNA     32197813
7168     LINC00159                            lincRNA     32197813
7169     LINC00159                            lincRNA     32197813
7170     LINC00159                            lincRNA     32197813
7171     LINC00159                            lincRNA     32197813
7172     LINC00160                            lincRNA     34737181
7173     LINC00160                            lincRNA     34737181
7174     LINC00160                            lincRNA     34737181
7175     LINC00160                            lincRNA     34737181
7176     LINC00160                            lincRNA     34737181
7177     LINC00160                            lincRNA     34737181
7178     LINC00161                            lincRNA     28540355
7179     LINC00161                            lincRNA     28540355
7180     LINC00161                            lincRNA     28540355
7181     LINC00161                            lincRNA     28540355
7182     LINC00163                            lincRNA     44994086
7183     LINC00163                            lincRNA     44994086
7184     LINC00163                            lincRNA     44994086
7185     LINC00163                            lincRNA     44994086
7186     LINC00165                            lincRNA     44995185
7187     LINC00189                  sense_overlapping     29288205
7188     LINC00189                  sense_overlapping     29288205
7189     LINC00189                  sense_overlapping     29288205
7190     LINC00189                  sense_overlapping     29288205
7191     LINC00189                  sense_overlapping     29288205
7192     LINC00189                  sense_overlapping     29288205
7193     LINC00189                  sense_overlapping     29288205
7194     LINC00189                  sense_overlapping     29288205
7195     LINC00205                            lincRNA     45297354
7196     LINC00205                            lincRNA     45297354
7197     LINC00307                            lincRNA     30211783
7198     LINC00307                            lincRNA     30211783
7199     LINC00307                            lincRNA     30211783
7200     LINC00308                            lincRNA     22116528
7201     LINC00308                            lincRNA     22116528
7202     LINC00308                            lincRNA     22116528
7203     LINC00308                            lincRNA     22116528
7204     LINC00308                            lincRNA     22116528
7205     LINC00308                            lincRNA     22116528
7206     LINC00310                            lincRNA     34190244
7207     LINC00310                            lincRNA     34190244
7208     LINC00310                            lincRNA     34190244
7209     LINC00310                            lincRNA     34190244
7210     LINC00310                            lincRNA     34190244
7211     LINC00310                            lincRNA     34190244
7212     LINC00310                            lincRNA     34190244
7213     LINC00310                            lincRNA     34190244
7214     LINC00310                            lincRNA     34190244
7215     LINC00310                            lincRNA     34190244
7216     LINC00310                            lincRNA     34190244
7217     LINC00310                            lincRNA     34190244
7218     LINC00310                            lincRNA     34190244
7219     LINC00310                            lincRNA     34190244
7220     LINC00310                            lincRNA     34190244
7221     LINC00310                            lincRNA     34190244
7222     LINC00310                            lincRNA     34190244
7223     LINC00310                            lincRNA     34190244
7224     LINC00310                            lincRNA     34190244
7225     LINC00310                            lincRNA     34190244
7226     LINC00310                            lincRNA     34190244
7227     LINC00313                            lincRNA     43479534
7228     LINC00313                            lincRNA     43479534
7229     LINC00313                            lincRNA     43479534
7230     LINC00313                            lincRNA     43479534
7231     LINC00313                            lincRNA     43479534
7232     LINC00313                            lincRNA     43479534
7233     LINC00313                            lincRNA     43479534
7234     LINC00313                            lincRNA     43479534
7235     LINC00313                            lincRNA     43479534
7236     LINC00313                            lincRNA     43479534
7237     LINC00313                            lincRNA     43479534
7238     LINC00313                            lincRNA     43479534
7239     LINC00313                            lincRNA     43479534
7240     LINC00313                            lincRNA     43479534
7241     LINC00313                            lincRNA     43479534
7242     LINC00313                            lincRNA     43479534
7243     LINC00313                            lincRNA     43479534
7244     LINC00313                            lincRNA     43479534
7245     LINC00313                            lincRNA     43479534
7246     LINC00313                            lincRNA     43479534
7247     LINC00313                            lincRNA     43479534
7248     LINC00313                            lincRNA     43479534
7249     LINC00314                            lincRNA     28023233
7250     LINC00314                            lincRNA     28023233
7251     LINC00315                            lincRNA     45305257
7252     LINC00315                            lincRNA     45305257
7253     LINC00315                            lincRNA     45305257
7254     LINC00316                            lincRNA     45341990
7255     LINC00316                            lincRNA     45341990
7256     LINC00317                            lincRNA     21737319
7257     LINC00317                            lincRNA     21737319
7258     LINC00317                            lincRNA     21737319
7259     LINC00319                            lincRNA     43453893
7260     LINC00319                            lincRNA     43453893
7261     LINC00319                            lincRNA     43453893
7262     LINC00319                            lincRNA     43453893
7263     LINC00319                            lincRNA     43453893
7264     LINC00319                            lincRNA     43453893
7265     LINC00319                            lincRNA     43453893
7266     LINC00320                            lincRNA     20803216
7267     LINC00320                            lincRNA     20803216
7268     LINC00320                            lincRNA     20803216
7269     LINC00320                            lincRNA     20803216
7270     LINC00320                            lincRNA     20803216
7271     LINC00320                            lincRNA     20803216
7272     LINC00320                            lincRNA     20803216
7273     LINC00320                            lincRNA     20803216
7274     LINC00320                            lincRNA     20803216
7275     LINC00320                            lincRNA     20803216
7276     LINC00320                            lincRNA     20803216
7277     LINC00320                            lincRNA     20803216
7278     LINC00320                            lincRNA     20803216
7279     LINC00320                            lincRNA     20803216
7280     LINC00320                            lincRNA     20803216
7281     LINC00320                            lincRNA     20803216
7282     LINC00320                            lincRNA     20803216
7283     LINC00320                            lincRNA     20803216
7284     LINC00320                            lincRNA     20803216
7285     LINC00320                            lincRNA     20803216
7286     LINC00320                            lincRNA     20803216
7287     LINC00320                            lincRNA     20803216
7288     LINC00320                            lincRNA     20803216
7289     LINC00320                            lincRNA     20803216
7290     LINC00320                            lincRNA     20803216
7291     LINC00320                            lincRNA     20803216
7292     LINC00320                            lincRNA     20803216
7293     LINC00320                            lincRNA     20803216
7294     LINC00320                            lincRNA     20803216
7295     LINC00320                            lincRNA     20803216
7296     LINC00320                            lincRNA     20803216
7297     LINC00320                            lincRNA     20803216
7298     LINC00320                            lincRNA     20803216
7299     LINC00320                            lincRNA     20803216
7300     LINC00320                            lincRNA     20803216
7301     LINC00320                            lincRNA     20803216
7302     LINC00320                            lincRNA     20803216
7303     LINC00322                            lincRNA     43332039
7304     LINC00322                            lincRNA     43332039
7305     LINC00322                            lincRNA     43332039
7306     LINC00323                          antisense     41148133
7307     LINC00323                          antisense     41148133
7308     LINC00323                          antisense     41148133
7309     LINC00323                          antisense     41148133
7310     LINC00323                          antisense     41148133
7311     LINC00323                          antisense     41148133
7312     LINC00323                          antisense     41148133
7313     LINC00334                            lincRNA     45264548
7314     LINC00334                            lincRNA     45264548
7315     LINC00334                            lincRNA     45264548
7316     LINC00334                            lincRNA     45264548
7317     LINC00334                            lincRNA     45264548
7318     LINC00334                            lincRNA     45264548
7319     LINC00334                            lincRNA     45264548
7320     LINC00334                            lincRNA     45264548
7321     LINC00334                            lincRNA     45264548
7322     LINC00334                            lincRNA     45264548
7323     LINC00479                            lincRNA     41715775
7324     LINC00479                            lincRNA     41715775
7325     LINC00479                            lincRNA     41715775
7326     LINC00479                            lincRNA     41715775
7327     LINC00479                            lincRNA     41715775
7328     LINC00479                            lincRNA     41715775
7329     LINC00479                            lincRNA     41715775
7330     LINC00479                            lincRNA     41715775
7331     LINC00479                            lincRNA     41715775
7332     LINC00479                            lincRNA     41715775
7333     LINC00479                            lincRNA     41715775
7334     LINC00479                            lincRNA     41715775
7335     LINC00479                            lincRNA     41715775
7336     LINC00479                            lincRNA     41715775
7337     LINC00479                            lincRNA     41715775
7338     LINC00479                            lincRNA     41715775
7339     LINC00479                            lincRNA     41715775
7340     LINC00479                            lincRNA     41715775
7341     LINC00479                            lincRNA     41715775
7342     LINC00479                            lincRNA     41715775
7343     LINC00649                          antisense     33977691
7344     LINC00649                          antisense     33977691
7345     LINC00649                          antisense     33977691
7346     LINC00649                          antisense     33977691
7347     LINC00649                          antisense     33977691
7348     LINC00649                          antisense     33977691
7349     LINC00649                          antisense     33977691
7350     LINC00649                          antisense     33977691
7351     LINC00649                          antisense     33977691
7352     LINC00649                          antisense     33977691
7353     LINC00649                          antisense     33977691
7354     LINC00649                          antisense     33977691
7355     LINC00649                          antisense     33977691
7356     LINC00649                          antisense     33977691
7357     LINC00649                          antisense     33977691
7358     LINC00649                          antisense     33977691
7359     LINC00649                          antisense     33977691
7360     LINC00649                          antisense     33977691
7361     LINC00649                          antisense     33977691
7362     LINC00649                          antisense     33977691
7363     LINC00649                          antisense     33977691
7364     LINC00649                          antisense     33977691
7365     LINC00649                          antisense     33977691
7366     LINC00649                          antisense     33977691
7367     LINC00649                          antisense     33977691
7368     LINC00649                          antisense     33977691
7369     LINC00649                          antisense     33977691
7370     LINC00649                          antisense     33977691
7371     LINC00649                          antisense     33977691
7372     LINC00649                          antisense     33977691
7373     LINC00649                          antisense     33977691
7374     LINC00649                          antisense     33977691
7375     LINC00649                          antisense     33977691
7376     LINC00649                          antisense     33977691
7377     LINC00649                          antisense     33977691
7378     LINC00649                          antisense     33977691
7379     LINC00649                          antisense     33977691
7380     LINC00649                          antisense     33977691
7381     LINC00649                          antisense     33977691
7382     LINC00649                          antisense     33977691
7383     LINC00649                          antisense     33977691
7384     LINC00649                          antisense     33977691
7385     LINC00649                          antisense     33977691
7386     LINC00649                          antisense     33977691
7387     LINC00649                          antisense     33977691
7388     LINC00649                          antisense     33977691
7389     LINC00649                          antisense     33977691
7390     LINC00649                          antisense     33977691
7391     LINC00649                          antisense     33977691
7392     LINC00649                          antisense     33977691
7393     LINC00649                          antisense     33977691
7394     LINC00649                          antisense     33977691
7395     LINC00649                          antisense     33977691
7396     LINC00649                          antisense     33977691
7397     LINC00649                          antisense     33977691
7398     LINC00649                          antisense     33977691
7399     LINC00846           3prime_overlapping_ncRNA     32575881
7400     LINC00846           3prime_overlapping_ncRNA     32575881
7401     LINC00846           3prime_overlapping_ncRNA     32575881
7402     LINC00846           3prime_overlapping_ncRNA     32575881
7403     LINC00945                            lincRNA     33064983
7404     LINC00945                            lincRNA     33064983
7405     LINC00945                            lincRNA     33064983
7406     LINC00945                            lincRNA     33064983
7407     LINC00945                            lincRNA     33064983
7408     LINC01423                            lincRNA     38333421
7409     LINC01423                            lincRNA     38333421
7410     LINC01423                            lincRNA     38333421
7411     LINC01423                            lincRNA     38333421
7412     LINC01423                            lincRNA     38333421
7413     LINC01423                            lincRNA     38333421
7414     LINC01423                            lincRNA     38333421
7415     LINC01423                            lincRNA     38333421
7416     LINC01423                            lincRNA     38333421
7417     LINC01424                          antisense     44804717
7418     LINC01424                          antisense     44804717
7419     LINC01425                            lincRNA     21797415
7420     LINC01425                            lincRNA     21797415
7421     LINC01425                            lincRNA     21797415
7422     LINC01425                            lincRNA     21797415
7423     LINC01425                            lincRNA     21797415
7424     LINC01425                            lincRNA     21797415
7425     LINC01425                            lincRNA     21797415
7426     LINC01425                            lincRNA     21797415
7427     LINC01425                            lincRNA     21797415
7428     LINC01426                          antisense     34784886
7429     LINC01426                          antisense     34784886
7430     LINC01426                          antisense     34784886
7431     LINC01426                          antisense     34784886
7432     LINC01426                          antisense     34784886
7433     LINC01436                            lincRNA     36007838
7434     LINC01436                            lincRNA     36007838
7435     LINC01547                            lincRNA     44939913
7436     LINC01547                            lincRNA     44939913
7437     LINC01547                            lincRNA     44939913
7438     LINC01547                            lincRNA     44939913
7439     LINC01547                            lincRNA     44939913
7440     LINC01547                            lincRNA     44939913
7441     LINC01547                            lincRNA     44939913
7442     LINC01547                            lincRNA     44939913
7443     LINC01547                            lincRNA     44939913
7444     LINC01547                            lincRNA     44939913
7445     LINC01548                            lincRNA     33170649
7446     LINC01548                            lincRNA     33170649
7447     LINC01548                            lincRNA     33170649
7448     LINC01548                            lincRNA     33170649
7449     LINC01548                            lincRNA     33170649
7450     LINC01548                            lincRNA     33170649
7451     LINC01548                            lincRNA     33170649
7452     LINC01548                            lincRNA     33170649
7453     LINC01548                            lincRNA     33170649
7454     LINC01549                            lincRNA     17449185
7455     LINC01549                            lincRNA     17449185
7456     LINC01549                            lincRNA     17449185
7457     LINC01549                            lincRNA     17449185
7458     LINC01549                            lincRNA     17449185
7459     LINC01549                            lincRNA     17449185
7460     LINC01549                            lincRNA     17449185
7461     LINC01666                            lincRNA      8761335
7462     LINC01666                            lincRNA      8761335
7463     LINC01666                            lincRNA      8761335
7464     LINC01666                            lincRNA      8761335
7465     LINC01667                            lincRNA      9814009
7466     LINC01667                            lincRNA      9814009
7467     LINC01667                            lincRNA      9814009
7468     LINC01667                            lincRNA      9814009
7469     LINC01667                            lincRNA      9814009
7470     LINC01667                            lincRNA      9814009
7471     LINC01667                            lincRNA      9814009
7472     LINC01667                            lincRNA      9814009
7473     LINC01667                            lincRNA      9814009
7474     LINC01667                            lincRNA      9814009
7475     LINC01667                            lincRNA      9814009
7476     LINC01667                            lincRNA      9814009
7477     LINC01667                            lincRNA      9814009
7478     LINC01667                            lincRNA      9814009
7479     LINC01668                            lincRNA     42779994
7480     LINC01668                            lincRNA     42779994
7481     LINC01668                            lincRNA     42779994
7482     LINC01669                            lincRNA      6076305
7483     LINC01669                            lincRNA      6076305
7484     LINC01669                            lincRNA      6076305
7485     LINC01669                            lincRNA      6076305
7486     LINC01669                            lincRNA      6076305
7487     LINC01669                            lincRNA      6076305
7488     LINC01669                            lincRNA      6076305
7489     LINC01669                            lincRNA      6076305
7490     LINC01669                            lincRNA      6076305
7491     LINC01669                            lincRNA      6076305
7492     LINC01669                            lincRNA      6076305
7493     LINC01669                            lincRNA      6076305
7494     LINC01669                            lincRNA      6076305
7495     LINC01669                            lincRNA      6076305
7496     LINC01669                            lincRNA      6076305
7497     LINC01670                            lincRNA      5502542
7498     LINC01670                            lincRNA      5502542
7499     LINC01670                            lincRNA      5502542
7500     LINC01670                            lincRNA      5502542
7501     LINC01670                            lincRNA      5502542
7502     LINC01670                            lincRNA      5502542
7503     LINC01670                            lincRNA      5502542
7504     LINC01670                            lincRNA      5502542
7505     LINC01671                            lincRNA     42615058
7506     LINC01671                            lincRNA     42615058
7507     LINC01673                            lincRNA     27653491
7508     LINC01673                            lincRNA     27653491
7509     LINC01673                            lincRNA     27653491
7510     LINC01674                            lincRNA     13558461
7511     LINC01674                            lincRNA     13558461
7512     LINC01674                            lincRNA     13558461
7513     LINC01674                            lincRNA     13558461
7514     LINC01678                            lincRNA     44160076
7515     LINC01678                            lincRNA     44160076
7516     LINC01678                            lincRNA     44160076
7517     LINC01678                            lincRNA     44160076
7518     LINC01678                            lincRNA     44160076
7519     LINC01679                            lincRNA     43362349
7520     LINC01679                            lincRNA     43362349
7521     LINC01683                            lincRNA     19899755
7522     LINC01683                            lincRNA     19899755
7523     LINC01683                            lincRNA     19899755
7524     LINC01684                            lincRNA     24547942
7525     LINC01684                            lincRNA     24547942
7526     LINC01684                            lincRNA     24547942
7527     LINC01684                            lincRNA     24547942
7528     LINC01684                            lincRNA     24547942
7529     LINC01684                            lincRNA     24547942
7530     LINC01684                            lincRNA     24547942
7531     LINC01684                            lincRNA     24547942
7532     LINC01684                            lincRNA     24547942
7533     LINC01684                            lincRNA     24547942
7534     LINC01684                            lincRNA     24547942
7535     LINC01684                            lincRNA     24547942
7536     LINC01687                            lincRNA     22098459
7537     LINC01687                            lincRNA     22098459
7538     LINC01687                            lincRNA     22098459
7539     LINC01687                            lincRNA     22098459
7540     LINC01687                            lincRNA     22098459
7541     LINC01687                            lincRNA     22098459
7542     LINC01687                            lincRNA     22098459
7543     LINC01687                            lincRNA     22098459
7544     LINC01687                            lincRNA     22098459
7545     LINC01687                            lincRNA     22098459
7546     LINC01687                            lincRNA     22098459
7547     LINC01687                            lincRNA     22098459
7548     LINC01689                            lincRNA     24321377
7549     LINC01689                            lincRNA     24321377
7550     LINC01689                            lincRNA     24321377
7551     LINC01689                            lincRNA     24321377
7552     LINC01692                            lincRNA     25057746
7553     LINC01692                            lincRNA     25057746
7554     LINC01692                            lincRNA     25057746
7555     LINC01692                            lincRNA     25057746
7556     LINC01694                            lincRNA     45603056
7557     LINC01694                            lincRNA     45603056
7558     LINC01694                            lincRNA     45603056
7559     LINC01694                            lincRNA     45603056
7560     LINC01694                            lincRNA     45603056
7561     LINC01695                            lincRNA     28228667
7562     LINC01695                            lincRNA     28228667
7563     LINC01695                            lincRNA     28228667
7564     LINC01695                            lincRNA     28228667
7565     LINC01695                            lincRNA     28228667
7566     LINC01695                            lincRNA     28228667
7567     LINC01695                            lincRNA     28228667
7568     LINC01695                            lincRNA     28228667
7569     LINC01695                            lincRNA     28228667
7570     LINC01695                            lincRNA     28228667
7571     LINC01695                            lincRNA     28228667
7572     LINC01695                            lincRNA     28228667
7573     LINC01695                            lincRNA     28228667
7574     LINC01697               processed_transcript     28137611
7575     LINC01697               processed_transcript     28137611
7576     LINC01697               processed_transcript     28137611
7577     LINC01697               processed_transcript     28137611
7578     LINC01697               processed_transcript     28137611
7579     LINC01697               processed_transcript     28137611
7580     LINC01697               processed_transcript     28137611
7581     LINC01697               processed_transcript     28137611
7582     LINC01697               processed_transcript     28137611
7583     LINC01697               processed_transcript     28137611
7584     LINC01697               processed_transcript     28137611
7585     LINC01697               processed_transcript     28137611
7586     LINC01697               processed_transcript     28137611
7587     LINC01697               processed_transcript     28137611
7588     LINC01697               processed_transcript     28137611
7589     LINC01697               processed_transcript     28137611
7590     LINC01697               processed_transcript     28137611
7591     LINC01697               processed_transcript     28137611
7592     LINC01697               processed_transcript     28137611
7593     LINC01697               processed_transcript     28137611
7594     LINC01700                            lincRNA     38977774
7595     LINC01700                            lincRNA     38977774
7596     LINC01700                            lincRNA     38977774
7597          LIPI                     protein_coding     14210891
7598          LIPI                     protein_coding     14210891
7599          LIPI                     protein_coding     14210891
7600          LIPI                     protein_coding     14210891
7601          LIPI                     protein_coding     14210891
7602          LIPI                     protein_coding     14210891
7603          LIPI                     protein_coding     14210891
7604          LIPI                     protein_coding     14210891
7605          LIPI                     protein_coding     14210891
7606          LIPI                     protein_coding     14210891
7607          LIPI                     protein_coding     14210891
7608          LIPI                     protein_coding     14210891
7609          LIPI                     protein_coding     14210891
7610          LIPI                     protein_coding     14210891
7611          LIPI                     protein_coding     14210891
7612          LIPI                     protein_coding     14210891
7613          LIPI                     protein_coding     14210891
7614          LIPI                     protein_coding     14210891
7615          LIPI                     protein_coding     14210891
7616          LIPI                     protein_coding     14210891
7617          LIPI                     protein_coding     14210891
7618          LIPI                     protein_coding     14210891
7619          LIPI                     protein_coding     14210891
7620          LIPI                     protein_coding     14210891
7621          LIPI                     protein_coding     14210891
7622          LIPI                     protein_coding     14210891
7623          LIPI                     protein_coding     14210891
7624          LIPI                     protein_coding     14210891
7625          LIPI                     protein_coding     14210891
7626          LIPI                     protein_coding     14210891
7627          LIPI                     protein_coding     14210891
7628          LIPI                     protein_coding     14210891
7629          LIPI                     protein_coding     14210891
7630        LLPHP2               processed_pseudogene     25763333
7631         LRRC3                     protein_coding     44462196
7632         LRRC3                     protein_coding     44462196
7633     LRRC3-AS1                          antisense     44455284
7634     LRRC3-AS1                          antisense     44455284
7635     LRRC3-AS1                          antisense     44455284
7636     LRRC3-AS1                          antisense     44455284
7637           LSS                     protein_coding     46228824
7638           LSS                     protein_coding     46228824
7639           LSS                     protein_coding     46228824
7640           LSS                     protein_coding     46228824
7641           LSS                     protein_coding     46228824
7642           LSS                     protein_coding     46228824
7643           LSS                     protein_coding     46228824
7644           LSS                     protein_coding     46228824
7645           LSS                     protein_coding     46228824
7646           LSS                     protein_coding     46228824
7647           LSS                     protein_coding     46228824
7648           LSS                     protein_coding     46228824
7649           LSS                     protein_coding     46228824
7650           LSS                     protein_coding     46228824
7651           LSS                     protein_coding     46228824
7652           LSS                     protein_coding     46228824
7653           LSS                     protein_coding     46228824
7654           LSS                     protein_coding     46228824
7655           LSS                     protein_coding     46228824
7656           LSS                     protein_coding     46228824
7657           LSS                     protein_coding     46228824
7658           LSS                     protein_coding     46228824
7659           LSS                     protein_coding     46228824
7660           LSS                     protein_coding     46228824
7661           LSS                     protein_coding     46228824
7662           LSS                     protein_coding     46228824
7663           LSS                     protein_coding     46228824
7664           LSS                     protein_coding     46228824
7665           LSS                     protein_coding     46228824
7666           LSS                     protein_coding     46228824
7667           LSS                     protein_coding     46228824
7668           LSS                     protein_coding     46228824
7669           LSS                     protein_coding     46228824
7670           LSS                     protein_coding     46228824
7671           LSS                     protein_coding     46228824
7672           LSS                     protein_coding     46228824
7673           LSS                     protein_coding     46228824
7674           LSS                     protein_coding     46228824
7675           LSS                     protein_coding     46228824
7676           LSS                     protein_coding     46228824
7677           LSS                     protein_coding     46228824
7678           LSS                     protein_coding     46228824
7679           LSS                     protein_coding     46228824
7680           LSS                     protein_coding     46228824
7681           LSS                     protein_coding     46228824
7682           LSS                     protein_coding     46228824
7683           LSS                     protein_coding     46228824
7684           LSS                     protein_coding     46228824
7685           LSS                     protein_coding     46228824
7686           LSS                     protein_coding     46228824
7687           LSS                     protein_coding     46228824
7688           LSS                     protein_coding     46228824
7689           LSS                     protein_coding     46228824
7690           LSS                     protein_coding     46228824
7691           LSS                     protein_coding     46228824
7692           LSS                     protein_coding     46228824
7693           LSS                     protein_coding     46228824
7694           LSS                     protein_coding     46228824
7695           LSS                     protein_coding     46228824
7696           LSS                     protein_coding     46228824
7697           LSS                     protein_coding     46228824
7698           LSS                     protein_coding     46228824
7699           LSS                     protein_coding     46228824
7700           LSS                     protein_coding     46228824
7701           LSS                     protein_coding     46228824
7702           LSS                     protein_coding     46228824
7703           LSS                     protein_coding     46228824
7704           LSS                     protein_coding     46228824
7705           LSS                     protein_coding     46228824
7706           LSS                     protein_coding     46228824
7707           LSS                     protein_coding     46228824
7708           LSS                     protein_coding     46228824
7709           LSS                     protein_coding     46228824
7710           LSS                     protein_coding     46228824
7711           LSS                     protein_coding     46228824
7712           LSS                     protein_coding     46228824
7713           LSS                     protein_coding     46228824
7714           LSS                     protein_coding     46228824
7715           LSS                     protein_coding     46228824
7716           LSS                     protein_coding     46228824
7717           LSS                     protein_coding     46228824
7718           LSS                     protein_coding     46228824
7719           LSS                     protein_coding     46228824
7720           LSS                     protein_coding     46228824
7721           LSS                     protein_coding     46228824
7722           LSS                     protein_coding     46228824
7723           LSS                     protein_coding     46228824
7724           LSS                     protein_coding     46228824
7725           LSS                     protein_coding     46228824
7726           LSS                     protein_coding     46228824
7727           LSS                     protein_coding     46228824
7728           LSS                     protein_coding     46228824
7729           LSS                     protein_coding     46228824
7730           LSS                     protein_coding     46228824
7731           LSS                     protein_coding     46228824
7732           LSS                     protein_coding     46228824
7733           LSS                     protein_coding     46228824
7734           LSS                     protein_coding     46228824
7735           LSS                     protein_coding     46228824
7736           LSS                     protein_coding     46228824
7737           LSS                     protein_coding     46228824
7738           LSS                     protein_coding     46228824
7739           LSS                     protein_coding     46228824
7740           LSS                     protein_coding     46228824
7741           LSS                     protein_coding     46228824
7742           LSS                     protein_coding     46228824
7743           LSS                     protein_coding     46228824
7744           LSS                     protein_coding     46228824
7745           LSS                     protein_coding     46228824
7746           LSS                     protein_coding     46228824
7747           LSS                     protein_coding     46228824
7748           LSS                     protein_coding     46228824
7749           LSS                     protein_coding     46228824
7750           LSS                     protein_coding     46228824
7751           LSS                     protein_coding     46228824
7752          LTN1                     protein_coding     28992956
7753          LTN1                     protein_coding     28992956
7754          LTN1                     protein_coding     28992956
7755          LTN1                     protein_coding     28992956
7756          LTN1                     protein_coding     28992956
7757          LTN1                     protein_coding     28992956
7758          LTN1                     protein_coding     28992956
7759          LTN1                     protein_coding     28992956
7760          LTN1                     protein_coding     28992956
7761          LTN1                     protein_coding     28992956
7762          LTN1                     protein_coding     28992956
7763          LTN1                     protein_coding     28992956
7764          LTN1                     protein_coding     28992956
7765          LTN1                     protein_coding     28992956
7766          LTN1                     protein_coding     28992956
7767          LTN1                     protein_coding     28992956
7768          LTN1                     protein_coding     28992956
7769          LTN1                     protein_coding     28992956
7770          LTN1                     protein_coding     28992956
7771          LTN1                     protein_coding     28992956
7772          LTN1                     protein_coding     28992956
7773          LTN1                     protein_coding     28992956
7774          LTN1                     protein_coding     28992956
7775          LTN1                     protein_coding     28992956
7776          LTN1                     protein_coding     28992956
7777          LTN1                     protein_coding     28992956
7778          LTN1                     protein_coding     28992956
7779          LTN1                     protein_coding     28992956
7780          LTN1                     protein_coding     28992956
7781          LTN1                     protein_coding     28992956
7782          LTN1                     protein_coding     28992956
7783          LTN1                     protein_coding     28992956
7784          LTN1                     protein_coding     28992956
7785          LTN1                     protein_coding     28992956
7786          LTN1                     protein_coding     28992956
7787          LTN1                     protein_coding     28992956
7788          LTN1                     protein_coding     28992956
7789          LTN1                     protein_coding     28992956
7790          LTN1                     protein_coding     28992956
7791          LTN1                     protein_coding     28992956
7792          LTN1                     protein_coding     28992956
7793          LTN1                     protein_coding     28992956
7794          LTN1                     protein_coding     28992956
7795          LTN1                     protein_coding     28992956
7796          LTN1                     protein_coding     28992956
7797          LTN1                     protein_coding     28992956
7798          LTN1                     protein_coding     28992956
7799          LTN1                     protein_coding     28992956
7800          LTN1                     protein_coding     28992956
7801          LTN1                     protein_coding     28992956
7802          LTN1                     protein_coding     28992956
7803          LTN1                     protein_coding     28992956
7804          LTN1                     protein_coding     28992956
7805          LTN1                     protein_coding     28992956
7806          LTN1                     protein_coding     28992956
7807          LTN1                     protein_coding     28992956
7808          LTN1                     protein_coding     28992956
7809          LTN1                     protein_coding     28992956
7810          LTN1                     protein_coding     28992956
7811          LTN1                     protein_coding     28992956
7812          LTN1                     protein_coding     28992956
7813          LTN1                     protein_coding     28992956
7814          LTN1                     protein_coding     28992956
7815          LTN1                     protein_coding     28992956
7816          LTN1                     protein_coding     28992956
7817          LTN1                     protein_coding     28992956
7818          LTN1                     protein_coding     28992956
7819          LTN1                     protein_coding     28992956
7820          LTN1                     protein_coding     28992956
7821          LTN1                     protein_coding     28992956
7822          LTN1                     protein_coding     28992956
7823          LTN1                     protein_coding     28992956
7824          LTN1                     protein_coding     28992956
7825          LTN1                     protein_coding     28992956
7826          LTN1                     protein_coding     28992956
7827          LTN1                     protein_coding     28992956
7828          LTN1                     protein_coding     28992956
7829          LTN1                     protein_coding     28992956
7830          LTN1                     protein_coding     28992956
7831          LTN1                     protein_coding     28992956
7832          LTN1                     protein_coding     28992956
7833          LTN1                     protein_coding     28992956
7834          LTN1                     protein_coding     28992956
7835          LTN1                     protein_coding     28992956
7836          LTN1                     protein_coding     28992956
7837          LTN1                     protein_coding     28992956
7838          LTN1                     protein_coding     28992956
7839          LTN1                     protein_coding     28992956
7840          LTN1                     protein_coding     28992956
7841          LTN1                     protein_coding     28992956
7842          LTN1                     protein_coding     28992956
7843          LTN1                     protein_coding     28992956
7844          LTN1                     protein_coding     28992956
7845          LTN1                     protein_coding     28992956
7846          LTN1                     protein_coding     28992956
7847          LTN1                     protein_coding     28992956
7848          LTN1                     protein_coding     28992956
7849          LTN1                     protein_coding     28992956
7850          LTN1                     protein_coding     28992956
7851          LTN1                     protein_coding     28992956
7852          LTN1                     protein_coding     28992956
7853          LTN1                     protein_coding     28992956
7854          LTN1                     protein_coding     28992956
7855          LTN1                     protein_coding     28992956
7856          LTN1                     protein_coding     28992956
7857          LTN1                     protein_coding     28992956
7858          LTN1                     protein_coding     28992956
7859          LTN1                     protein_coding     28992956
7860          LTN1                     protein_coding     28992956
7861          LTN1                     protein_coding     28992956
7862          LTN1                     protein_coding     28992956
7863          LTN1                     protein_coding     28992956
7864          LTN1                     protein_coding     28992956
7865          LTN1                     protein_coding     28992956
7866          LTN1                     protein_coding     28992956
7867          LTN1                     protein_coding     28992956
7868          LTN1                     protein_coding     28992956
7869          LTN1                     protein_coding     28992956
7870      MAP3K7CL                     protein_coding     29175889
7871      MAP3K7CL                     protein_coding     29175889
7872      MAP3K7CL                     protein_coding     29175889
7873      MAP3K7CL                     protein_coding     29175889
7874      MAP3K7CL                     protein_coding     29175889
7875      MAP3K7CL                     protein_coding     29175889
7876      MAP3K7CL                     protein_coding     29175889
7877      MAP3K7CL                     protein_coding     29175889
7878      MAP3K7CL                     protein_coding     29175889
7879      MAP3K7CL                     protein_coding     29175889
7880      MAP3K7CL                     protein_coding     29175889
7881      MAP3K7CL                     protein_coding     29175889
7882      MAP3K7CL                     protein_coding     29175889
7883      MAP3K7CL                     protein_coding     29175889
7884      MAP3K7CL                     protein_coding     29175889
7885      MAP3K7CL                     protein_coding     29175889
7886      MAP3K7CL                     protein_coding     29175889
7887      MAP3K7CL                     protein_coding     29175889
7888      MAP3K7CL                     protein_coding     29175889
7889      MAP3K7CL                     protein_coding     29175889
7890      MAP3K7CL                     protein_coding     29175889
7891      MAP3K7CL                     protein_coding     29175889
7892      MAP3K7CL                     protein_coding     29175889
7893      MAP3K7CL                     protein_coding     29175889
7894      MAP3K7CL                     protein_coding     29175889
7895      MAP3K7CL                     protein_coding     29175889
7896      MAP3K7CL                     protein_coding     29175889
7897      MAP3K7CL                     protein_coding     29175889
7898      MAP3K7CL                     protein_coding     29175889
7899      MAP3K7CL                     protein_coding     29175889
7900      MAP3K7CL                     protein_coding     29175889
7901      MAP3K7CL                     protein_coding     29175889
7902      MAP3K7CL                     protein_coding     29175889
7903      MAP3K7CL                     protein_coding     29175889
7904      MAP3K7CL                     protein_coding     29175889
7905      MAP3K7CL                     protein_coding     29175889
7906      MAP3K7CL                     protein_coding     29175889
7907      MAP3K7CL                     protein_coding     29175889
7908      MAP3K7CL                     protein_coding     29175889
7909      MAP3K7CL                     protein_coding     29175889
7910      MAP3K7CL                     protein_coding     29175889
7911      MAP3K7CL                     protein_coding     29175889
7912      MAP3K7CL                     protein_coding     29175889
7913      MAP3K7CL                     protein_coding     29175889
7914      MAP3K7CL                     protein_coding     29175889
7915      MAP3K7CL                     protein_coding     29175889
7916      MAP3K7CL                     protein_coding     29175889
7917      MAP3K7CL                     protein_coding     29175889
7918      MAP3K7CL                     protein_coding     29175889
7919      MAP3K7CL                     protein_coding     29175889
7920      MAP3K7CL                     protein_coding     29175889
7921      MAP3K7CL                     protein_coding     29175889
7922      MAP3K7CL                     protein_coding     29175889
7923      MAP3K7CL                     protein_coding     29175889
7924      MAP3K7CL                     protein_coding     29175889
7925      MAP3K7CL                     protein_coding     29175889
7926      MAP3K7CL                     protein_coding     29175889
7927      MAP3K7CL                     protein_coding     29175889
7928      MAP3K7CL                     protein_coding     29175889
7929      MAP3K7CL                     protein_coding     29175889
7930      MAP3K7CL                     protein_coding     29175889
7931      MAP3K7CL                     protein_coding     29175889
7932      MAP3K7CL                     protein_coding     29175889
7933      MAP3K7CL                     protein_coding     29175889
7934      MAP3K7CL                     protein_coding     29175889
7935      MAP3K7CL                     protein_coding     29175889
7936      MAP3K7CL                     protein_coding     29175889
7937      MAP3K7CL                     protein_coding     29175889
7938      MAP3K7CL                     protein_coding     29175889
7939      MAP3K7CL                     protein_coding     29175889
7940      MAP3K7CL                     protein_coding     29175889
7941      MAP3K7CL                     protein_coding     29175889
7942      MAP3K7CL                     protein_coding     29175889
7943      MAP3K7CL                     protein_coding     29175889
7944      MAP3K7CL                     protein_coding     29175889
7945      MAP3K7CL                     protein_coding     29175889
7946      MAP3K7CL                     protein_coding     29175889
7947      MAP3K7CL                     protein_coding     29175889
7948      MAP3K7CL                     protein_coding     29175889
7949      MAP3K7CL                     protein_coding     29175889
7950      MAP3K7CL                     protein_coding     29175889
7951      MAP3K7CL                     protein_coding     29175889
7952      MAP3K7CL                     protein_coding     29175889
7953      MAP3K7CL                     protein_coding     29175889
7954      MAP3K7CL                     protein_coding     29175889
7955      MAP3K7CL                     protein_coding     29175889
7956      MAP3K7CL                     protein_coding     29175889
7957      MAP3K7CL                     protein_coding     29175889
7958      MAP3K7CL                     protein_coding     29175889
7959      MAP3K7CL                     protein_coding     29175889
7960      MAP3K7CL                     protein_coding     29175889
7961      MAP3K7CL                     protein_coding     29175889
7962      MAP3K7CL                     protein_coding     29175889
7963      MAP3K7CL                     protein_coding     29175889
7964      MAP3K7CL                     protein_coding     29175889
7965      MAP3K7CL                     protein_coding     29175889
7966      MAP3K7CL                     protein_coding     29175889
7967      MAP3K7CL                     protein_coding     29175889
7968      MAP3K7CL                     protein_coding     29175889
7969      MAP3K7CL                     protein_coding     29175889
7970      MAPK6PS2               processed_pseudogene     22438349
7971        MCM3AP                     protein_coding     46286297
7972        MCM3AP                     protein_coding     46286297
7973        MCM3AP                     protein_coding     46286297
7974        MCM3AP                     protein_coding     46286297
7975        MCM3AP                     protein_coding     46286297
7976        MCM3AP                     protein_coding     46286297
7977        MCM3AP                     protein_coding     46286297
7978        MCM3AP                     protein_coding     46286297
7979        MCM3AP                     protein_coding     46286297
7980        MCM3AP                     protein_coding     46286297
7981        MCM3AP                     protein_coding     46286297
7982        MCM3AP                     protein_coding     46286297
7983        MCM3AP                     protein_coding     46286297
7984        MCM3AP                     protein_coding     46286297
7985        MCM3AP                     protein_coding     46286297
7986        MCM3AP                     protein_coding     46286297
7987        MCM3AP                     protein_coding     46286297
7988        MCM3AP                     protein_coding     46286297
7989        MCM3AP                     protein_coding     46286297
7990        MCM3AP                     protein_coding     46286297
7991        MCM3AP                     protein_coding     46286297
7992        MCM3AP                     protein_coding     46286297
7993        MCM3AP                     protein_coding     46286297
7994        MCM3AP                     protein_coding     46286297
7995        MCM3AP                     protein_coding     46286297
7996        MCM3AP                     protein_coding     46286297
7997        MCM3AP                     protein_coding     46286297
7998        MCM3AP                     protein_coding     46286297
7999        MCM3AP                     protein_coding     46286297
8000        MCM3AP                     protein_coding     46286297
8001        MCM3AP                     protein_coding     46286297
8002        MCM3AP                     protein_coding     46286297
8003        MCM3AP                     protein_coding     46286297
8004        MCM3AP                     protein_coding     46286297
8005        MCM3AP                     protein_coding     46286297
8006        MCM3AP                     protein_coding     46286297
8007        MCM3AP                     protein_coding     46286297
8008        MCM3AP                     protein_coding     46286297
8009        MCM3AP                     protein_coding     46286297
8010        MCM3AP                     protein_coding     46286297
8011        MCM3AP                     protein_coding     46286297
8012        MCM3AP                     protein_coding     46286297
8013        MCM3AP                     protein_coding     46286297
8014        MCM3AP                     protein_coding     46286297
8015        MCM3AP                     protein_coding     46286297
8016        MCM3AP                     protein_coding     46286297
8017        MCM3AP                     protein_coding     46286297
8018        MCM3AP                     protein_coding     46286297
8019        MCM3AP                     protein_coding     46286297
8020        MCM3AP                     protein_coding     46286297
8021        MCM3AP                     protein_coding     46286297
8022        MCM3AP                     protein_coding     46286297
8023        MCM3AP                     protein_coding     46286297
8024        MCM3AP                     protein_coding     46286297
8025        MCM3AP                     protein_coding     46286297
8026        MCM3AP                     protein_coding     46286297
8027        MCM3AP                     protein_coding     46286297
8028        MCM3AP                     protein_coding     46286297
8029        MCM3AP                     protein_coding     46286297
8030        MCM3AP                     protein_coding     46286297
8031        MCM3AP                     protein_coding     46286297
8032        MCM3AP                     protein_coding     46286297
8033        MCM3AP                     protein_coding     46286297
8034        MCM3AP                     protein_coding     46286297
8035        MCM3AP                     protein_coding     46286297
8036        MCM3AP                     protein_coding     46286297
8037        MCM3AP                     protein_coding     46286297
8038        MCM3AP                     protein_coding     46286297
8039        MCM3AP                     protein_coding     46286297
8040        MCM3AP                     protein_coding     46286297
8041        MCM3AP                     protein_coding     46286297
8042        MCM3AP                     protein_coding     46286297
8043        MCM3AP                     protein_coding     46286297
8044        MCM3AP                     protein_coding     46286297
8045        MCM3AP                     protein_coding     46286297
8046        MCM3AP                     protein_coding     46286297
8047        MCM3AP                     protein_coding     46286297
8048        MCM3AP                     protein_coding     46286297
8049        MCM3AP                     protein_coding     46286297
8050        MCM3AP                     protein_coding     46286297
8051        MCM3AP                     protein_coding     46286297
8052        MCM3AP                     protein_coding     46286297
8053        MCM3AP                     protein_coding     46286297
8054        MCM3AP                     protein_coding     46286297
8055        MCM3AP                     protein_coding     46286297
8056        MCM3AP                     protein_coding     46286297
8057        MCM3AP                     protein_coding     46286297
8058        MCM3AP                     protein_coding     46286297
8059        MCM3AP                     protein_coding     46286297
8060        MCM3AP                     protein_coding     46286297
8061        MCM3AP                     protein_coding     46286297
8062        MCM3AP                     protein_coding     46286297
8063        MCM3AP                     protein_coding     46286297
8064        MCM3AP                     protein_coding     46286297
8065        MCM3AP                     protein_coding     46286297
8066        MCM3AP                     protein_coding     46286297
8067        MCM3AP                     protein_coding     46286297
8068        MCM3AP                     protein_coding     46286297
8069        MCM3AP                     protein_coding     46286297
8070        MCM3AP                     protein_coding     46286297
8071        MCM3AP                     protein_coding     46286297
8072        MCM3AP                     protein_coding     46286297
8073        MCM3AP                     protein_coding     46286297
8074        MCM3AP                     protein_coding     46286297
8075        MCM3AP                     protein_coding     46286297
8076        MCM3AP                     protein_coding     46286297
8077        MCM3AP                     protein_coding     46286297
8078        MCM3AP                     protein_coding     46286297
8079        MCM3AP                     protein_coding     46286297
8080        MCM3AP                     protein_coding     46286297
8081        MCM3AP                     protein_coding     46286297
8082        MCM3AP                     protein_coding     46286297
8083        MCM3AP                     protein_coding     46286297
8084        MCM3AP                     protein_coding     46286297
8085        MCM3AP                     protein_coding     46286297
8086        MCM3AP                     protein_coding     46286297
8087        MCM3AP                     protein_coding     46286297
8088        MCM3AP                     protein_coding     46286297
8089    MCM3AP-AS1                          antisense     46259390
8090    MCM3AP-AS1                          antisense     46259390
8091    MCM3AP-AS1                          antisense     46259390
8092    MCM3AP-AS1                          antisense     46259390
8093    MCM3AP-AS1                          antisense     46259390
8094    MCM3AP-AS1                          antisense     46259390
8095    MCM3AP-AS1                          antisense     46259390
8096    MCM3AP-AS1                          antisense     46259390
8097    MCM3AP-AS1                          antisense     46259390
8098    MCM3AP-AS1                          antisense     46259390
8099    MCM3AP-AS1                          antisense     46259390
8100    MCM3AP-AS1                          antisense     46259390
8101    MCM3AP-AS1                          antisense     46259390
8102    MCM3AP-AS1                          antisense     46259390
8103    MCM3AP-AS1                          antisense     46259390
8104    MCM3AP-AS1                          antisense     46259390
8105    MCM3AP-AS1                          antisense     46259390
8106    MCM3AP-AS1                          antisense     46259390
8107    MCM3AP-AS1                          antisense     46259390
8108    MCM3AP-AS1                          antisense     46259390
8109    MCM3AP-AS1                          antisense     46259390
8110    MCM3AP-AS1                          antisense     46259390
8111    MCM3AP-AS1                          antisense     46259390
8112    MCM3AP-AS1                          antisense     46259390
8113    MCM3AP-AS1                          antisense     46259390
8114       MEMO1P1               processed_pseudogene     36131376
8115    METTL21AP1               processed_pseudogene     39236020
8116      MIR125B2                              miRNA     16590325
8117        MIR155                              miRNA     25574044
8118      MIR155HG                            lincRNA     25575168
8119      MIR155HG                            lincRNA     25575168
8120      MIR155HG                            lincRNA     25575168
8121      MIR155HG                            lincRNA     25575168
8122     MIR3118-1                              miRNA     13644850
8123     MIR3156-3                              miRNA     13406460
8124       MIR3197                              miRNA     41167629
8125     MIR3648-1                              miRNA      8208652
8126     MIR3648-2                              miRNA      8987178
8127     MIR3687-1                              miRNA      8208904
8128     MIR3687-2                              miRNA      8987430
8129       MIR4327                              miRNA     30375378
8130       MIR4759                              miRNA     26954043
8131       MIR4760                              miRNA     40212431
8132       MIR548X                              miRNA     18686164
8133     MIR548XHG                            lincRNA     18760003
8134     MIR548XHG                            lincRNA     18760003
8135     MIR548XHG                            lincRNA     18760003
8136     MIR548XHG                            lincRNA     18760003
8137     MIR548XHG                            lincRNA     18760003
8138     MIR548XHG                            lincRNA     18760003
8139     MIR548XHG                            lincRNA     18760003
8140     MIR548XHG                            lincRNA     18760003
8141     MIR548XHG                            lincRNA     18760003
8142     MIR548XHG                            lincRNA     18760003
8143     MIR548XHG                            lincRNA     18760003
8144     MIR548XHG                            lincRNA     18760003
8145      MIR5692B                              miRNA     42951014
8146       MIR6070                              miRNA     43609989
8147       MIR6130                              miRNA     23079392
8148       MIR6501                              miRNA     33550728
8149       MIR6508                              miRNA     39447069
8150     MIR6724-1                              miRNA      8205406
8151     MIR6724-2                              miRNA      8249596
8152     MIR6724-3                              miRNA      8388453
8153     MIR6724-4                              miRNA      8432621
8154       MIR6814                              miRNA     41746841
8155       MIR6815                              miRNA     45478326
8156        MIR802                              miRNA     35720808
8157     MIR8069-1                              miRNA      6859256
8158     MIR8069-2                              miRNA     13724274
8159        MIR99A                              miRNA     16539169
8160      MIR99AHG                            lincRNA     16627397
8161      MIR99AHG                            lincRNA     16627397
8162      MIR99AHG                            lincRNA     16627397
8163      MIR99AHG                            lincRNA     16627397
8164      MIR99AHG                            lincRNA     16627397
8165      MIR99AHG                            lincRNA     16627397
8166      MIR99AHG                            lincRNA     16627397
8167      MIR99AHG                            lincRNA     16627397
8168      MIR99AHG                            lincRNA     16627397
8169      MIR99AHG                            lincRNA     16627397
8170      MIR99AHG                            lincRNA     16627397
8171      MIR99AHG                            lincRNA     16627397
8172      MIR99AHG                            lincRNA     16627397
8173      MIR99AHG                            lincRNA     16627397
8174      MIR99AHG                            lincRNA     16627397
8175      MIR99AHG                            lincRNA     16627397
8176      MIR99AHG                            lincRNA     16627397
8177      MIR99AHG                            lincRNA     16627397
8178      MIR99AHG                            lincRNA     16627397
8179      MIR99AHG                            lincRNA     16627397
8180      MIR99AHG                            lincRNA     16627397
8181      MIR99AHG                            lincRNA     16627397
8182      MIR99AHG                            lincRNA     16627397
8183      MIR99AHG                            lincRNA     16627397
8184      MIR99AHG                            lincRNA     16627397
8185      MIR99AHG                            lincRNA     16627397
8186      MIR99AHG                            lincRNA     16627397
8187      MIR99AHG                            lincRNA     16627397
8188      MIR99AHG                            lincRNA     16627397
8189      MIR99AHG                            lincRNA     16627397
8190      MIR99AHG                            lincRNA     16627397
8191      MIR99AHG                            lincRNA     16627397
8192      MIR99AHG                            lincRNA     16627397
8193      MIR99AHG                            lincRNA     16627397
8194      MIR99AHG                            lincRNA     16627397
8195      MIR99AHG                            lincRNA     16627397
8196      MIR99AHG                            lincRNA     16627397
8197      MIR99AHG                            lincRNA     16627397
8198      MIR99AHG                            lincRNA     16627397
8199      MIR99AHG                            lincRNA     16627397
8200      MIR99AHG                            lincRNA     16627397
8201      MIR99AHG                            lincRNA     16627397
8202      MIR99AHG                            lincRNA     16627397
8203      MIR99AHG                            lincRNA     16627397
8204      MIR99AHG                            lincRNA     16627397
8205      MIR99AHG                            lincRNA     16627397
8206      MIR99AHG                            lincRNA     16627397
8207      MIR99AHG                            lincRNA     16627397
8208      MIR99AHG                            lincRNA     16627397
8209      MIR99AHG                            lincRNA     16627397
8210      MIR99AHG                            lincRNA     16627397
8211      MIR99AHG                            lincRNA     16627397
8212      MIR99AHG                            lincRNA     16627397
8213      MIR99AHG                            lincRNA     16627397
8214      MIR99AHG                            lincRNA     16627397
8215      MIR99AHG                            lincRNA     16627397
8216      MIR99AHG                            lincRNA     16627397
8217      MIR99AHG                            lincRNA     16627397
8218      MIR99AHG                            lincRNA     16627397
8219      MIR99AHG                            lincRNA     16627397
8220      MIR99AHG                            lincRNA     16627397
8221      MIR99AHG                            lincRNA     16627397
8222      MIR99AHG                            lincRNA     16627397
8223      MIR99AHG                            lincRNA     16627397
8224      MIR99AHG                            lincRNA     16627397
8225      MIR99AHG                            lincRNA     16627397
8226      MIR99AHG                            lincRNA     16627397
8227      MIR99AHG                            lincRNA     16627397
8228      MIR99AHG                            lincRNA     16627397
8229      MIR99AHG                            lincRNA     16627397
8230      MIR99AHG                            lincRNA     16627397
8231      MIR99AHG                            lincRNA     16627397
8232      MIR99AHG                            lincRNA     16627397
8233      MIR99AHG                            lincRNA     16627397
8234      MIR99AHG                            lincRNA     16627397
8235      MIR99AHG                            lincRNA     16627397
8236      MIR99AHG                            lincRNA     16627397
8237      MIR99AHG                            lincRNA     16627397
8238      MIR99AHG                            lincRNA     16627397
8239      MIR99AHG                            lincRNA     16627397
8240      MIR99AHG                            lincRNA     16627397
8241      MIR99AHG                            lincRNA     16627397
8242      MIR99AHG                            lincRNA     16627397
8243      MIR99AHG                            lincRNA     16627397
8244      MIR99AHG                            lincRNA     16627397
8245      MIR99AHG                            lincRNA     16627397
8246      MIR99AHG                            lincRNA     16627397
8247      MIR99AHG                            lincRNA     16627397
8248      MIR99AHG                            lincRNA     16627397
8249      MIR99AHG                            lincRNA     16627397
8250      MIR99AHG                            lincRNA     16627397
8251      MIR99AHG                            lincRNA     16627397
8252      MIR99AHG                            lincRNA     16627397
8253      MIR99AHG                            lincRNA     16627397
8254      MIR99AHG                            lincRNA     16627397
8255      MIR99AHG                            lincRNA     16627397
8256      MIR99AHG                            lincRNA     16627397
8257      MIR99AHG                            lincRNA     16627397
8258      MIR99AHG                            lincRNA     16627397
8259      MIR99AHG                            lincRNA     16627397
8260      MIR99AHG                            lincRNA     16627397
8261      MIRLET7C                              miRNA     16539911
8262        MIS18A                     protein_coding     32279069
8263        MIS18A                     protein_coding     32279069
8264        MIS18A                     protein_coding     32279069
8265        MIS18A                     protein_coding     32279069
8266        MIS18A                     protein_coding     32279069
8267        MIS18A                     protein_coding     32279069
8268        MIS18A                     protein_coding     32279069
8269    MIS18A-AS1                          antisense     32280988
8270    MIS18A-AS1                          antisense     32280988
8271    MIS18A-AS1                          antisense     32280988
8272         MORC3                     protein_coding     36386148
8273         MORC3                     protein_coding     36386148
8274         MORC3                     protein_coding     36386148
8275         MORC3                     protein_coding     36386148
8276         MORC3                     protein_coding     36386148
8277         MORC3                     protein_coding     36386148
8278         MORC3                     protein_coding     36386148
8279         MORC3                     protein_coding     36386148
8280         MORC3                     protein_coding     36386148
8281         MORC3                     protein_coding     36386148
8282         MORC3                     protein_coding     36386148
8283         MORC3                     protein_coding     36386148
8284         MORC3                     protein_coding     36386148
8285         MORC3                     protein_coding     36386148
8286         MORC3                     protein_coding     36386148
8287         MORC3                     protein_coding     36386148
8288         MORC3                     protein_coding     36386148
8289         MORC3                     protein_coding     36386148
8290         MORC3                     protein_coding     36386148
8291         MORC3                     protein_coding     36386148
8292         MORC3                     protein_coding     36386148
8293         MORC3                     protein_coding     36386148
8294         MORC3                     protein_coding     36386148
8295         MORC3                     protein_coding     36386148
8296         MORC3                     protein_coding     36386148
8297         MORC3                     protein_coding     36386148
8298         MORC3                     protein_coding     36386148
8299         MORC3                     protein_coding     36386148
8300         MORC3                     protein_coding     36386148
8301         MORC3                     protein_coding     36386148
8302         MORC3                     protein_coding     36386148
8303         MORC3                     protein_coding     36386148
8304         MORC3                     protein_coding     36386148
8305         MORC3                     protein_coding     36386148
8306         MORC3                     protein_coding     36386148
8307         MORC3                     protein_coding     36386148
8308         MORC3                     protein_coding     36386148
8309         MORC3                     protein_coding     36386148
8310         MORC3                     protein_coding     36386148
8311         MORC3                     protein_coding     36386148
8312         MORC3                     protein_coding     36386148
8313         MORC3                     protein_coding     36386148
8314         MORC3                     protein_coding     36386148
8315         MORC3                     protein_coding     36386148
8316         MORC3                     protein_coding     36386148
8317         MORC3                     protein_coding     36386148
8318         MORC3                     protein_coding     36386148
8319         MORC3                     protein_coding     36386148
8320         MORC3                     protein_coding     36386148
8321         MORC3                     protein_coding     36386148
8322         MORC3                     protein_coding     36386148
8323         MORC3                     protein_coding     36386148
8324         MORC3                     protein_coding     36386148
8325         MORC3                     protein_coding     36386148
8326         MORC3                     protein_coding     36386148
8327         MORC3                     protein_coding     36386148
8328         MORC3                     protein_coding     36386148
8329         MORC3                     protein_coding     36386148
8330         MORC3                     protein_coding     36386148
8331         MORC3                     protein_coding     36386148
8332         MORC3                     protein_coding     36386148
8333         MORC3                     protein_coding     36386148
8334         MORC3                     protein_coding     36386148
8335         MORC3                     protein_coding     36386148
8336         MORC3                     protein_coding     36386148
8337         MORC3                     protein_coding     36386148
8338         MORC3                     protein_coding     36386148
8339         MORC3                     protein_coding     36386148
8340         MORC3                     protein_coding     36386148
8341         MORC3                     protein_coding     36386148
8342         MORC3                     protein_coding     36386148
8343         MORC3                     protein_coding     36386148
8344         MORC3                     protein_coding     36386148
8345         MORC3                     protein_coding     36386148
8346         MORC3                     protein_coding     36386148
8347         MORC3                     protein_coding     36386148
8348         MORC3                     protein_coding     36386148
8349         MORC3                     protein_coding     36386148
8350         MORC3                     protein_coding     36386148
8351         MORC3                     protein_coding     36386148
8352         MORC3                     protein_coding     36386148
8353         MORC3                     protein_coding     36386148
8354         MORC3                     protein_coding     36386148
8355          MRAP                     protein_coding     32314784
8356          MRAP                     protein_coding     32314784
8357          MRAP                     protein_coding     32314784
8358          MRAP                     protein_coding     32314784
8359          MRAP                     protein_coding     32314784
8360          MRAP                     protein_coding     32314784
8361          MRAP                     protein_coding     32314784
8362          MRAP                     protein_coding     32314784
8363          MRAP                     protein_coding     32314784
8364          MRAP                     protein_coding     32314784
8365          MRAP                     protein_coding     32314784
8366          MRAP                     protein_coding     32314784
8367          MRAP                     protein_coding     32314784
8368          MRAP                     protein_coding     32314784
8369          MRAP                     protein_coding     32314784
8370      MRPL20P1               processed_pseudogene     36995075
8371        MRPL39                     protein_coding     25607517
8372        MRPL39                     protein_coding     25607517
8373        MRPL39                     protein_coding     25607517
8374        MRPL39                     protein_coding     25607517
8375        MRPL39                     protein_coding     25607517
8376        MRPL39                     protein_coding     25607517
8377        MRPL39                     protein_coding     25607517
8378        MRPL39                     protein_coding     25607517
8379        MRPL39                     protein_coding     25607517
8380        MRPL39                     protein_coding     25607517
8381        MRPL39                     protein_coding     25607517
8382        MRPL39                     protein_coding     25607517
8383        MRPL39                     protein_coding     25607517
8384        MRPL39                     protein_coding     25607517
8385        MRPL39                     protein_coding     25607517
8386        MRPL39                     protein_coding     25607517
8387        MRPL39                     protein_coding     25607517
8388        MRPL39                     protein_coding     25607517
8389        MRPL39                     protein_coding     25607517
8390        MRPL39                     protein_coding     25607517
8391        MRPL39                     protein_coding     25607517
8392        MRPL39                     protein_coding     25607517
8393        MRPL39                     protein_coding     25607517
8394        MRPL39                     protein_coding     25607517
8395        MRPL39                     protein_coding     25607517
8396        MRPL39                     protein_coding     25607517
8397        MRPL39                     protein_coding     25607517
8398        MRPL39                     protein_coding     25607517
8399        MRPL39                     protein_coding     25607517
8400      MRPL51P2               processed_pseudogene     43115709
8401         MRPS6                     protein_coding     34143034
8402         MRPS6                     protein_coding     34143034
8403         MRPS6                     protein_coding     34143034
8404         MRPS6                     protein_coding     34143034
8405         MRPS6                     protein_coding     34143034
8406         MRPS6                     protein_coding     34143034
8407         MRPS6                     protein_coding     34143034
8408         MRPS6                     protein_coding     34143034
8409         MRPS6                     protein_coding     34143034
8410         MRPS6                     protein_coding     34143034
8411         MRPS6                     protein_coding     34143034
8412         MRPS6                     protein_coding     34143034
8413         MRPS6                     protein_coding     34143034
8414         MRPS6                     protein_coding     34143034
8415         MRPS6                     protein_coding     34143034
8416         MRPS6                     protein_coding     34143034
8417         MRPS6                     protein_coding     34143034
8418         MRPS6                     protein_coding     34143034
8419     MSANTD2P1               processed_pseudogene     23103074
8420     MSANTD2P1               processed_pseudogene     23103074
8421     MSANTD2P1               processed_pseudogene     23103074
8422       MTCO1P1               processed_pseudogene      8846646
8423       MTCO1P3               processed_pseudogene     45376382
8424      MTCYBP21               processed_pseudogene     44472516
8425      MTCYBP21               processed_pseudogene     44472516
8426      MTCYBP21               processed_pseudogene     44472516
8427       MTND5P1               processed_pseudogene     44475097
8428      MTND6P21               processed_pseudogene     44473739
8429      MTND6P21               processed_pseudogene     44473739
8430           MX1                     protein_coding     41459214
8431           MX1                     protein_coding     41459214
8432           MX1                     protein_coding     41459214
8433           MX1                     protein_coding     41459214
8434           MX1                     protein_coding     41459214
8435           MX1                     protein_coding     41459214
8436           MX1                     protein_coding     41459214
8437           MX1                     protein_coding     41459214
8438           MX1                     protein_coding     41459214
8439           MX1                     protein_coding     41459214
8440           MX1                     protein_coding     41459214
8441           MX1                     protein_coding     41459214
8442           MX1                     protein_coding     41459214
8443           MX1                     protein_coding     41459214
8444           MX1                     protein_coding     41459214
8445           MX1                     protein_coding     41459214
8446           MX1                     protein_coding     41459214
8447           MX1                     protein_coding     41459214
8448           MX1                     protein_coding     41459214
8449           MX1                     protein_coding     41459214
8450           MX1                     protein_coding     41459214
8451           MX1                     protein_coding     41459214
8452           MX1                     protein_coding     41459214
8453           MX1                     protein_coding     41459214
8454           MX1                     protein_coding     41459214
8455           MX1                     protein_coding     41459214
8456           MX1                     protein_coding     41459214
8457           MX1                     protein_coding     41459214
8458           MX1                     protein_coding     41459214
8459           MX1                     protein_coding     41459214
8460           MX1                     protein_coding     41459214
8461           MX1                     protein_coding     41459214
8462           MX1                     protein_coding     41459214
8463           MX1                     protein_coding     41459214
8464           MX1                     protein_coding     41459214
8465           MX1                     protein_coding     41459214
8466           MX1                     protein_coding     41459214
8467           MX1                     protein_coding     41459214
8468           MX1                     protein_coding     41459214
8469           MX1                     protein_coding     41459214
8470           MX1                     protein_coding     41459214
8471           MX1                     protein_coding     41459214
8472           MX1                     protein_coding     41459214
8473           MX1                     protein_coding     41459214
8474           MX1                     protein_coding     41459214
8475           MX1                     protein_coding     41459214
8476           MX1                     protein_coding     41459214
8477           MX1                     protein_coding     41459214
8478           MX1                     protein_coding     41459214
8479           MX1                     protein_coding     41459214
8480           MX1                     protein_coding     41459214
8481           MX1                     protein_coding     41459214
8482           MX1                     protein_coding     41459214
8483           MX1                     protein_coding     41459214
8484           MX1                     protein_coding     41459214
8485           MX1                     protein_coding     41459214
8486           MX1                     protein_coding     41459214
8487           MX1                     protein_coding     41459214
8488           MX1                     protein_coding     41459214
8489           MX1                     protein_coding     41459214
8490           MX1                     protein_coding     41459214
8491           MX1                     protein_coding     41459214
8492           MX1                     protein_coding     41459214
8493           MX1                     protein_coding     41459214
8494           MX1                     protein_coding     41459214
8495           MX1                     protein_coding     41459214
8496           MX1                     protein_coding     41459214
8497           MX1                     protein_coding     41459214
8498           MX1                     protein_coding     41459214
8499           MX1                     protein_coding     41459214
8500           MX1                     protein_coding     41459214
8501           MX1                     protein_coding     41459214
8502           MX1                     protein_coding     41459214
8503           MX1                     protein_coding     41459214
8504           MX1                     protein_coding     41459214
8505           MX1                     protein_coding     41459214
8506           MX1                     protein_coding     41459214
8507           MX1                     protein_coding     41459214
8508           MX1                     protein_coding     41459214
8509           MX1                     protein_coding     41459214
8510           MX1                     protein_coding     41459214
8511           MX1                     protein_coding     41459214
8512           MX1                     protein_coding     41459214
8513           MX1                     protein_coding     41459214
8514           MX1                     protein_coding     41459214
8515           MX1                     protein_coding     41459214
8516           MX1                     protein_coding     41459214
8517           MX1                     protein_coding     41459214
8518           MX1                     protein_coding     41459214
8519           MX1                     protein_coding     41459214
8520           MX1                     protein_coding     41459214
8521           MX1                     protein_coding     41459214
8522           MX1                     protein_coding     41459214
8523           MX1                     protein_coding     41459214
8524           MX1                     protein_coding     41459214
8525           MX1                     protein_coding     41459214
8526           MX1                     protein_coding     41459214
8527           MX1                     protein_coding     41459214
8528           MX1                     protein_coding     41459214
8529           MX1                     protein_coding     41459214
8530           MX1                     protein_coding     41459214
8531           MX1                     protein_coding     41459214
8532           MX1                     protein_coding     41459214
8533           MX1                     protein_coding     41459214
8534           MX1                     protein_coding     41459214
8535           MX1                     protein_coding     41459214
8536           MX1                     protein_coding     41459214
8537           MX1                     protein_coding     41459214
8538           MX1                     protein_coding     41459214
8539           MX1                     protein_coding     41459214
8540           MX1                     protein_coding     41459214
8541           MX1                     protein_coding     41459214
8542           MX1                     protein_coding     41459214
8543           MX1                     protein_coding     41459214
8544           MX1                     protein_coding     41459214
8545           MX1                     protein_coding     41459214
8546           MX1                     protein_coding     41459214
8547           MX1                     protein_coding     41459214
8548           MX1                     protein_coding     41459214
8549           MX1                     protein_coding     41459214
8550           MX1                     protein_coding     41459214
8551           MX1                     protein_coding     41459214
8552           MX1                     protein_coding     41459214
8553           MX1                     protein_coding     41459214
8554           MX1                     protein_coding     41459214
8555           MX1                     protein_coding     41459214
8556           MX1                     protein_coding     41459214
8557           MX1                     protein_coding     41459214
8558           MX1                     protein_coding     41459214
8559           MX1                     protein_coding     41459214
8560           MX1                     protein_coding     41459214
8561           MX1                     protein_coding     41459214
8562           MX2                     protein_coding     41409390
8563           MX2                     protein_coding     41409390
8564           MX2                     protein_coding     41409390
8565           MX2                     protein_coding     41409390
8566           MX2                     protein_coding     41409390
8567           MX2                     protein_coding     41409390
8568           MX2                     protein_coding     41409390
8569           MX2                     protein_coding     41409390
8570           MX2                     protein_coding     41409390
8571           MX2                     protein_coding     41409390
8572           MX2                     protein_coding     41409390
8573           MX2                     protein_coding     41409390
8574           MX2                     protein_coding     41409390
8575           MX2                     protein_coding     41409390
8576           MX2                     protein_coding     41409390
8577           MX2                     protein_coding     41409390
8578           MX2                     protein_coding     41409390
8579           MX2                     protein_coding     41409390
8580           MX2                     protein_coding     41409390
8581           MX2                     protein_coding     41409390
8582           MX2                     protein_coding     41409390
8583           MX2                     protein_coding     41409390
8584           MX2                     protein_coding     41409390
8585           MX2                     protein_coding     41409390
8586           MX2                     protein_coding     41409390
8587           MX2                     protein_coding     41409390
8588           MX2                     protein_coding     41409390
8589           MX2                     protein_coding     41409390
8590           MX2                     protein_coding     41409390
8591           MX2                     protein_coding     41409390
8592           MX2                     protein_coding     41409390
8593           MX2                     protein_coding     41409390
8594           MX2                     protein_coding     41409390
8595           MX2                     protein_coding     41409390
8596           MX2                     protein_coding     41409390
8597           MX2                     protein_coding     41409390
8598           MX2                     protein_coding     41409390
8599           MX2                     protein_coding     41409390
8600           MX2                     protein_coding     41409390
8601           MX2                     protein_coding     41409390
8602           MX2                     protein_coding     41409390
8603           MX2                     protein_coding     41409390
8604           MX2                     protein_coding     41409390
8605           MX2                     protein_coding     41409390
8606           MX2                     protein_coding     41409390
8607           MX2                     protein_coding     41409390
8608           MX2                     protein_coding     41409390
8609           MX2                     protein_coding     41409390
8610           MX2                     protein_coding     41409390
8611           MX2                     protein_coding     41409390
8612           MX2                     protein_coding     41409390
8613           MX2                     protein_coding     41409390
8614           MX2                     protein_coding     41409390
8615           MX2                     protein_coding     41409390
8616           MX2                     protein_coding     41409390
8617           MX2                     protein_coding     41409390
8618           MX2                     protein_coding     41409390
8619           MX2                     protein_coding     41409390
8620           MX2                     protein_coding     41409390
8621           MX2                     protein_coding     41409390
8622           MX2                     protein_coding     41409390
8623           MX2                     protein_coding     41409390
8624        MYL6P1               processed_pseudogene     43856342
8625        MYL6P2               processed_pseudogene     39488760
8626        N6AMT1                     protein_coding     28885371
8627        N6AMT1                     protein_coding     28885371
8628        N6AMT1                     protein_coding     28885371
8629        N6AMT1                     protein_coding     28885371
8630        N6AMT1                     protein_coding     28885371
8631        N6AMT1                     protein_coding     28885371
8632        N6AMT1                     protein_coding     28885371
8633        N6AMT1                     protein_coding     28885371
8634        N6AMT1                     protein_coding     28885371
8635        N6AMT1                     protein_coding     28885371
8636        N6AMT1                     protein_coding     28885371
8637        N6AMT1                     protein_coding     28885371
8638        N6AMT1                     protein_coding     28885371
8639        N6AMT1                     protein_coding     28885371
8640        N6AMT1                     protein_coding     28885371
8641        N6AMT1                     protein_coding     28885371
8642        N6AMT1                     protein_coding     28885371
8643        N6AMT1                     protein_coding     28885371
8644         NCAM2                     protein_coding     21543329
8645         NCAM2                     protein_coding     21543329
8646         NCAM2                     protein_coding     21543329
8647         NCAM2                     protein_coding     21543329
8648         NCAM2                     protein_coding     21543329
8649         NCAM2                     protein_coding     21543329
8650         NCAM2                     protein_coding     21543329
8651         NCAM2                     protein_coding     21543329
8652         NCAM2                     protein_coding     21543329
8653         NCAM2                     protein_coding     21543329
8654         NCAM2                     protein_coding     21543329
8655         NCAM2                     protein_coding     21543329
8656         NCAM2                     protein_coding     21543329
8657         NCAM2                     protein_coding     21543329
8658         NCAM2                     protein_coding     21543329
8659         NCAM2                     protein_coding     21543329
8660         NCAM2                     protein_coding     21543329
8661         NCAM2                     protein_coding     21543329
8662         NCAM2                     protein_coding     21543329
8663         NCAM2                     protein_coding     21543329
8664         NCAM2                     protein_coding     21543329
8665         NCAM2                     protein_coding     21543329
8666         NCAM2                     protein_coding     21543329
8667         NCAM2                     protein_coding     21543329
8668         NCAM2                     protein_coding     21543329
8669         NCAM2                     protein_coding     21543329
8670         NCAM2                     protein_coding     21543329
8671         NCAM2                     protein_coding     21543329
8672         NCAM2                     protein_coding     21543329
8673         NCAM2                     protein_coding     21543329
8674         NCAM2                     protein_coding     21543329
8675         NCAM2                     protein_coding     21543329
8676         NCAM2                     protein_coding     21543329
8677         NCAM2                     protein_coding     21543329
8678         NCAM2                     protein_coding     21543329
8679         NCAM2                     protein_coding     21543329
8680         NCAM2                     protein_coding     21543329
8681         NCAM2                     protein_coding     21543329
8682         NCAM2                     protein_coding     21543329
8683         NCAM2                     protein_coding     21543329
8684         NCAM2                     protein_coding     21543329
8685         NCAM2                     protein_coding     21543329
8686         NCAM2                     protein_coding     21543329
8687         NCAM2                     protein_coding     21543329
8688         NCAM2                     protein_coding     21543329
8689         NCAM2                     protein_coding     21543329
8690         NCAM2                     protein_coding     21543329
8691         NCAM2                     protein_coding     21543329
8692       NCSTNP1               processed_pseudogene     27492261
8693        NDUFV3                     protein_coding     42913304
8694        NDUFV3                     protein_coding     42913304
8695        NDUFV3                     protein_coding     42913304
8696        NDUFV3                     protein_coding     42913304
8697        NDUFV3                     protein_coding     42913304
8698        NDUFV3                     protein_coding     42913304
8699        NDUFV3                     protein_coding     42913304
8700        NDUFV3                     protein_coding     42913304
8701        NDUFV3                     protein_coding     42913304
8702        NDUFV3                     protein_coding     42913304
8703        NDUFV3                     protein_coding     42913304
8704        NDUFV3                     protein_coding     42913304
8705        NDUFV3                     protein_coding     42913304
8706        NDUFV3                     protein_coding     42913304
8707        NDUFV3                     protein_coding     42913304
8708        NEK4P1               processed_pseudogene     17211347
8709         NF1P3             unprocessed_pseudogene     14005279
8710         NF1P3             unprocessed_pseudogene     14005279
8711         NF1P3             unprocessed_pseudogene     14005279
8712         NF1P3             unprocessed_pseudogene     14005279
8713         NRIP1                     protein_coding     15065936
8714         NRIP1                     protein_coding     15065936
8715         NRIP1                     protein_coding     15065936
8716         NRIP1                     protein_coding     15065936
8717         NRIP1                     protein_coding     15065936
8718         NRIP1                     protein_coding     15065936
8719         NRIP1                     protein_coding     15065936
8720         NRIP1                     protein_coding     15065936
8721         NRIP1                     protein_coding     15065936
8722         NRIP1                     protein_coding     15065936
8723         NRIP1                     protein_coding     15065936
8724         NRIP1                     protein_coding     15065936
8725         NRIP1                     protein_coding     15065936
8726         NRIP1                     protein_coding     15065936
8727         NRIP1                     protein_coding     15065936
8728         NRIP1                     protein_coding     15065936
8729         NRIP1                     protein_coding     15065936
8730         NRIP1                     protein_coding     15065936
8731         NRIP1                     protein_coding     15065936
8732         NRIP1                     protein_coding     15065936
8733         NRIP1                     protein_coding     15065936
8734         NRIP1                     protein_coding     15065936
8735         NRIP1                     protein_coding     15065936
8736         OLIG1                     protein_coding     33072420
8737         OLIG1                     protein_coding     33072420
8738         OLIG1                     protein_coding     33072420
8739         OLIG1                     protein_coding     33072420
8740         OLIG1                     protein_coding     33072420
8741         OLIG2                     protein_coding     33029196
8742         OLIG2                     protein_coding     33029196
8743         OLIG2                     protein_coding     33029196
8744         OLIG2                     protein_coding     33029196
8745         OLIG2                     protein_coding     33029196
8746       OR4K11P               processed_pseudogene     13545185
8747       OR4K12P               processed_pseudogene     13582004
8748       OR7E23P               processed_pseudogene     32622096
8749        PAXBP1                     protein_coding     32771858
8750        PAXBP1                     protein_coding     32771858
8751        PAXBP1                     protein_coding     32771858
8752        PAXBP1                     protein_coding     32771858
8753        PAXBP1                     protein_coding     32771858
8754        PAXBP1                     protein_coding     32771858
8755        PAXBP1                     protein_coding     32771858
8756        PAXBP1                     protein_coding     32771858
8757        PAXBP1                     protein_coding     32771858
8758        PAXBP1                     protein_coding     32771858
8759        PAXBP1                     protein_coding     32771858
8760        PAXBP1                     protein_coding     32771858
8761        PAXBP1                     protein_coding     32771858
8762        PAXBP1                     protein_coding     32771858
8763        PAXBP1                     protein_coding     32771858
8764        PAXBP1                     protein_coding     32771858
8765        PAXBP1                     protein_coding     32771858
8766        PAXBP1                     protein_coding     32771858
8767        PAXBP1                     protein_coding     32771858
8768        PAXBP1                     protein_coding     32771858
8769        PAXBP1                     protein_coding     32771858
8770        PAXBP1                     protein_coding     32771858
8771        PAXBP1                     protein_coding     32771858
8772        PAXBP1                     protein_coding     32771858
8773        PAXBP1                     protein_coding     32771858
8774        PAXBP1                     protein_coding     32771858
8775        PAXBP1                     protein_coding     32771858
8776        PAXBP1                     protein_coding     32771858
8777        PAXBP1                     protein_coding     32771858
8778        PAXBP1                     protein_coding     32771858
8779        PAXBP1                     protein_coding     32771858
8780        PAXBP1                     protein_coding     32771858
8781        PAXBP1                     protein_coding     32771858
8782        PAXBP1                     protein_coding     32771858
8783        PAXBP1                     protein_coding     32771858
8784        PAXBP1                     protein_coding     32771858
8785        PAXBP1                     protein_coding     32771858
8786        PAXBP1                     protein_coding     32771858
8787        PAXBP1                     protein_coding     32771858
8788        PAXBP1                     protein_coding     32771858
8789        PAXBP1                     protein_coding     32771858
8790        PAXBP1                     protein_coding     32771858
8791        PAXBP1                     protein_coding     32771858
8792        PAXBP1                     protein_coding     32771858
8793        PAXBP1                     protein_coding     32771858
8794        PAXBP1                     protein_coding     32771858
8795        PAXBP1                     protein_coding     32771858
8796        PAXBP1                     protein_coding     32771858
8797        PAXBP1                     protein_coding     32771858
8798        PAXBP1                     protein_coding     32771858
8799        PAXBP1                     protein_coding     32771858
8800        PAXBP1                     protein_coding     32771858
8801        PAXBP1                     protein_coding     32771858
8802        PAXBP1                     protein_coding     32771858
8803        PAXBP1                     protein_coding     32771858
8804        PAXBP1                     protein_coding     32771858
8805        PAXBP1                     protein_coding     32771858
8806        PAXBP1                     protein_coding     32771858
8807        PAXBP1                     protein_coding     32771858
8808        PAXBP1                     protein_coding     32771858
8809        PAXBP1                     protein_coding     32771858
8810        PAXBP1                     protein_coding     32771858
8811        PAXBP1                     protein_coding     32771858
8812        PAXBP1                     protein_coding     32771858
8813        PAXBP1                     protein_coding     32771858
8814        PAXBP1                     protein_coding     32771858
8815        PAXBP1                     protein_coding     32771858
8816        PAXBP1                     protein_coding     32771858
8817        PAXBP1                     protein_coding     32771858
8818        PAXBP1                     protein_coding     32771858
8819        PAXBP1                     protein_coding     32771858
8820        PAXBP1                     protein_coding     32771858
8821        PAXBP1                     protein_coding     32771858
8822        PAXBP1                     protein_coding     32771858
8823        PAXBP1                     protein_coding     32771858
8824        PAXBP1                     protein_coding     32771858
8825        PAXBP1                     protein_coding     32771858
8826        PAXBP1                     protein_coding     32771858
8827        PAXBP1                     protein_coding     32771858
8828        PAXBP1                     protein_coding     32771858
8829        PAXBP1                     protein_coding     32771858
8830        PAXBP1                     protein_coding     32771858
8831        PAXBP1                     protein_coding     32771858
8832        PAXBP1                     protein_coding     32771858
8833        PAXBP1                     protein_coding     32771858
8834        PAXBP1                     protein_coding     32771858
8835        PAXBP1                     protein_coding     32771858
8836        PAXBP1                     protein_coding     32771858
8837        PAXBP1                     protein_coding     32771858
8838        PAXBP1                     protein_coding     32771858
8839        PAXBP1                     protein_coding     32771858
8840        PAXBP1                     protein_coding     32771858
8841        PAXBP1                     protein_coding     32771858
8842        PAXBP1                     protein_coding     32771858
8843    PAXBP1-AS1                          antisense     32743122
8844    PAXBP1-AS1                          antisense     32743122
8845    PAXBP1-AS1                          antisense     32743122
8846    PAXBP1-AS1                          antisense     32743122
8847    PAXBP1-AS1                          antisense     32743122
8848    PAXBP1-AS1                          antisense     32743122
8849    PAXBP1-AS1                          antisense     32743122
8850    PAXBP1-AS1                          antisense     32743122
8851    PAXBP1-AS1                          antisense     32743122
8852       PCBP2P1               processed_pseudogene     39172106
8853         PCBP3                     protein_coding     45942454
8854         PCBP3                     protein_coding     45942454
8855         PCBP3                     protein_coding     45942454
8856         PCBP3                     protein_coding     45942454
8857         PCBP3                     protein_coding     45942454
8858         PCBP3                     protein_coding     45942454
8859         PCBP3                     protein_coding     45942454
8860         PCBP3                     protein_coding     45942454
8861         PCBP3                     protein_coding     45942454
8862         PCBP3                     protein_coding     45942454
8863         PCBP3                     protein_coding     45942454
8864         PCBP3                     protein_coding     45942454
8865         PCBP3                     protein_coding     45942454
8866         PCBP3                     protein_coding     45942454
8867         PCBP3                     protein_coding     45942454
8868         PCBP3                     protein_coding     45942454
8869         PCBP3                     protein_coding     45942454
8870         PCBP3                     protein_coding     45942454
8871         PCBP3                     protein_coding     45942454
8872         PCBP3                     protein_coding     45942454
8873         PCBP3                     protein_coding     45942454
8874         PCBP3                     protein_coding     45942454
8875         PCBP3                     protein_coding     45942454
8876         PCBP3                     protein_coding     45942454
8877         PCBP3                     protein_coding     45942454
8878         PCBP3                     protein_coding     45942454
8879         PCBP3                     protein_coding     45942454
8880         PCBP3                     protein_coding     45942454
8881         PCBP3                     protein_coding     45942454
8882         PCBP3                     protein_coding     45942454
8883         PCBP3                     protein_coding     45942454
8884         PCBP3                     protein_coding     45942454
8885         PCBP3                     protein_coding     45942454
8886         PCBP3                     protein_coding     45942454
8887         PCBP3                     protein_coding     45942454
8888         PCBP3                     protein_coding     45942454
8889         PCBP3                     protein_coding     45942454
8890         PCBP3                     protein_coding     45942454
8891         PCBP3                     protein_coding     45942454
8892         PCBP3                     protein_coding     45942454
8893         PCBP3                     protein_coding     45942454
8894         PCBP3                     protein_coding     45942454
8895         PCBP3                     protein_coding     45942454
8896         PCBP3                     protein_coding     45942454
8897         PCBP3                     protein_coding     45942454
8898         PCBP3                     protein_coding     45942454
8899         PCBP3                     protein_coding     45942454
8900         PCBP3                     protein_coding     45942454
8901         PCBP3                     protein_coding     45942454
8902         PCBP3                     protein_coding     45942454
8903         PCBP3                     protein_coding     45942454
8904         PCBP3                     protein_coding     45942454
8905         PCBP3                     protein_coding     45942454
8906         PCBP3                     protein_coding     45942454
8907         PCBP3                     protein_coding     45942454
8908         PCBP3                     protein_coding     45942454
8909         PCBP3                     protein_coding     45942454
8910         PCBP3                     protein_coding     45942454
8911         PCBP3                     protein_coding     45942454
8912         PCBP3                     protein_coding     45942454
8913         PCBP3                     protein_coding     45942454
8914         PCBP3                     protein_coding     45942454
8915         PCBP3                     protein_coding     45942454
8916         PCBP3                     protein_coding     45942454
8917         PCBP3                     protein_coding     45942454
8918         PCBP3                     protein_coding     45942454
8919         PCBP3                     protein_coding     45942454
8920         PCBP3                     protein_coding     45942454
8921         PCBP3                     protein_coding     45942454
8922         PCBP3                     protein_coding     45942454
8923         PCBP3                     protein_coding     45942454
8924         PCBP3                     protein_coding     45942454
8925         PCBP3                     protein_coding     45942454
8926         PCBP3                     protein_coding     45942454
8927         PCBP3                     protein_coding     45942454
8928         PCBP3                     protein_coding     45942454
8929         PCBP3                     protein_coding     45942454
8930         PCBP3                     protein_coding     45942454
8931         PCBP3                     protein_coding     45942454
8932         PCBP3                     protein_coding     45942454
8933         PCBP3                     protein_coding     45942454
8934         PCBP3                     protein_coding     45942454
8935         PCBP3                     protein_coding     45942454
8936         PCBP3                     protein_coding     45942454
8937         PCBP3                     protein_coding     45942454
8938         PCBP3                     protein_coding     45942454
8939         PCBP3                     protein_coding     45942454
8940         PCBP3                     protein_coding     45942454
8941         PCBP3                     protein_coding     45942454
8942         PCBP3                     protein_coding     45942454
8943         PCBP3                     protein_coding     45942454
8944         PCBP3                     protein_coding     45942454
8945         PCBP3                     protein_coding     45942454
8946         PCBP3                     protein_coding     45942454
8947         PCBP3                     protein_coding     45942454
8948         PCBP3                     protein_coding     45942454
8949         PCBP3                     protein_coding     45942454
8950         PCBP3                     protein_coding     45942454
8951         PCBP3                     protein_coding     45942454
8952         PCBP3                     protein_coding     45942454
8953         PCBP3                     protein_coding     45942454
8954         PCBP3                     protein_coding     45942454
8955         PCBP3                     protein_coding     45942454
8956         PCBP3                     protein_coding     45942454
8957         PCBP3                     protein_coding     45942454
8958         PCBP3                     protein_coding     45942454
8959         PCBP3                     protein_coding     45942454
8960         PCBP3                     protein_coding     45942454
8961         PCBP3                     protein_coding     45942454
8962         PCBP3                     protein_coding     45942454
8963         PCBP3                     protein_coding     45942454
8964         PCBP3                     protein_coding     45942454
8965         PCBP3                     protein_coding     45942454
8966         PCBP3                     protein_coding     45942454
8967         PCBP3                     protein_coding     45942454
8968         PCBP3                     protein_coding     45942454
8969         PCBP3                     protein_coding     45942454
8970         PCBP3                     protein_coding     45942454
8971         PCBP3                     protein_coding     45942454
8972         PCBP3                     protein_coding     45942454
8973         PCBP3                     protein_coding     45942454
8974         PCBP3                     protein_coding     45942454
8975         PCBP3                     protein_coding     45942454
8976         PCBP3                     protein_coding     45942454
8977         PCBP3                     protein_coding     45942454
8978         PCBP3                     protein_coding     45942454
8979         PCBP3                     protein_coding     45942454
8980         PCBP3                     protein_coding     45942454
8981         PCBP3                     protein_coding     45942454
8982         PCBP3                     protein_coding     45942454
8983         PCBP3                     protein_coding     45942454
8984         PCBP3                     protein_coding     45942454
8985         PCBP3                     protein_coding     45942454
8986         PCBP3                     protein_coding     45942454
8987         PCBP3                     protein_coding     45942454
8988         PCBP3                     protein_coding     45942454
8989         PCBP3                     protein_coding     45942454
8990         PCBP3                     protein_coding     45942454
8991         PCBP3                     protein_coding     45942454
8992         PCBP3                     protein_coding     45942454
8993         PCBP3                     protein_coding     45942454
8994         PCBP3                     protein_coding     45942454
8995         PCBP3                     protein_coding     45942454
8996         PCBP3                     protein_coding     45942454
8997         PCBP3                     protein_coding     45942454
8998         PCBP3                     protein_coding     45942454
8999         PCBP3                     protein_coding     45942454
9000         PCBP3                     protein_coding     45942454
9001         PCBP3                     protein_coding     45942454
9002         PCBP3                     protein_coding     45942454
9003         PCBP3                     protein_coding     45942454
9004          PCNT                     protein_coding     46445769
9005          PCNT                     protein_coding     46445769
9006          PCNT                     protein_coding     46445769
9007          PCNT                     protein_coding     46445769
9008          PCNT                     protein_coding     46445769
9009          PCNT                     protein_coding     46445769
9010          PCNT                     protein_coding     46445769
9011          PCNT                     protein_coding     46445769
9012          PCNT                     protein_coding     46445769
9013          PCNT                     protein_coding     46445769
9014          PCNT                     protein_coding     46445769
9015          PCNT                     protein_coding     46445769
9016          PCNT                     protein_coding     46445769
9017          PCNT                     protein_coding     46445769
9018          PCNT                     protein_coding     46445769
9019          PCNT                     protein_coding     46445769
9020          PCNT                     protein_coding     46445769
9021          PCNT                     protein_coding     46445769
9022          PCNT                     protein_coding     46445769
9023          PCNT                     protein_coding     46445769
9024          PCNT                     protein_coding     46445769
9025          PCNT                     protein_coding     46445769
9026          PCNT                     protein_coding     46445769
9027          PCNT                     protein_coding     46445769
9028          PCNT                     protein_coding     46445769
9029          PCNT                     protein_coding     46445769
9030          PCNT                     protein_coding     46445769
9031          PCNT                     protein_coding     46445769
9032          PCNT                     protein_coding     46445769
9033          PCNT                     protein_coding     46445769
9034          PCNT                     protein_coding     46445769
9035          PCNT                     protein_coding     46445769
9036          PCNT                     protein_coding     46445769
9037          PCNT                     protein_coding     46445769
9038          PCNT                     protein_coding     46445769
9039          PCNT                     protein_coding     46445769
9040          PCNT                     protein_coding     46445769
9041          PCNT                     protein_coding     46445769
9042          PCNT                     protein_coding     46445769
9043          PCNT                     protein_coding     46445769
9044          PCNT                     protein_coding     46445769
9045          PCNT                     protein_coding     46445769
9046          PCNT                     protein_coding     46445769
9047          PCNT                     protein_coding     46445769
9048          PCNT                     protein_coding     46445769
9049          PCNT                     protein_coding     46445769
9050          PCNT                     protein_coding     46445769
9051          PCNT                     protein_coding     46445769
9052          PCNT                     protein_coding     46445769
9053          PCNT                     protein_coding     46445769
9054          PCNT                     protein_coding     46445769
9055          PCNT                     protein_coding     46445769
9056          PCNT                     protein_coding     46445769
9057          PCNT                     protein_coding     46445769
9058          PCNT                     protein_coding     46445769
9059          PCNT                     protein_coding     46445769
9060          PCNT                     protein_coding     46445769
9061          PCNT                     protein_coding     46445769
9062          PCNT                     protein_coding     46445769
9063          PCNT                     protein_coding     46445769
9064          PCNT                     protein_coding     46445769
9065          PCNT                     protein_coding     46445769
9066          PCNT                     protein_coding     46445769
9067          PCNT                     protein_coding     46445769
9068          PCNT                     protein_coding     46445769
9069          PCNT                     protein_coding     46445769
9070          PCNT                     protein_coding     46445769
9071          PCNT                     protein_coding     46445769
9072          PCNT                     protein_coding     46445769
9073          PCNT                     protein_coding     46445769
9074          PCNT                     protein_coding     46445769
9075          PCNT                     protein_coding     46445769
9076          PCNT                     protein_coding     46445769
9077          PCNT                     protein_coding     46445769
9078          PCNT                     protein_coding     46445769
9079          PCNT                     protein_coding     46445769
9080          PCNT                     protein_coding     46445769
9081          PCNT                     protein_coding     46445769
9082          PCNT                     protein_coding     46445769
9083          PCNT                     protein_coding     46445769
9084          PCNT                     protein_coding     46445769
9085          PCNT                     protein_coding     46445769
9086          PCNT                     protein_coding     46445769
9087          PCNT                     protein_coding     46445769
9088          PCNT                     protein_coding     46445769
9089          PCNT                     protein_coding     46445769
9090          PCNT                     protein_coding     46445769
9091          PCNT                     protein_coding     46445769
9092          PCNT                     protein_coding     46445769
9093          PCNT                     protein_coding     46445769
9094          PCNT                     protein_coding     46445769
9095          PCNT                     protein_coding     46445769
9096          PCNT                     protein_coding     46445769
9097          PCNT                     protein_coding     46445769
9098          PCNT                     protein_coding     46445769
9099          PCNT                     protein_coding     46445769
9100          PCNT                     protein_coding     46445769
9101          PCNT                     protein_coding     46445769
9102          PCNT                     protein_coding     46445769
9103          PCNT                     protein_coding     46445769
9104          PCNT                     protein_coding     46445769
9105          PCNT                     protein_coding     46445769
9106          PCNT                     protein_coding     46445769
9107          PCNT                     protein_coding     46445769
9108          PCNT                     protein_coding     46445769
9109          PCNT                     protein_coding     46445769
9110          PCNT                     protein_coding     46445769
9111          PCNT                     protein_coding     46445769
9112          PCNT                     protein_coding     46445769
9113          PCNT                     protein_coding     46445769
9114          PCNT                     protein_coding     46445769
9115          PCNT                     protein_coding     46445769
9116          PCNT                     protein_coding     46445769
9117          PCNT                     protein_coding     46445769
9118          PCNT                     protein_coding     46445769
9119          PCNT                     protein_coding     46445769
9120          PCNT                     protein_coding     46445769
9121          PCNT                     protein_coding     46445769
9122          PCNT                     protein_coding     46445769
9123          PCNT                     protein_coding     46445769
9124          PCNT                     protein_coding     46445769
9125          PCNT                     protein_coding     46445769
9126          PCNT                     protein_coding     46445769
9127          PCP4                     protein_coding     39929397
9128          PCP4                     protein_coding     39929397
9129          PCP4                     protein_coding     39929397
9130          PCP4                     protein_coding     39929397
9131          PCP4                     protein_coding     39929397
9132          PCP4                     protein_coding     39929397
9133          PCP4                     protein_coding     39929397
9134          PCP4                     protein_coding     39929397
9135          PCP4                     protein_coding     39929397
9136          PCP4                     protein_coding     39929397
9137          PCP4                     protein_coding     39929397
9138          PCP4                     protein_coding     39929397
9139          PCP4                     protein_coding     39929397
9140          PCP4                     protein_coding     39929397
9141         PDE9A                     protein_coding     42775509
9142         PDE9A                     protein_coding     42775509
9143         PDE9A                     protein_coding     42775509
9144         PDE9A                     protein_coding     42775509
9145         PDE9A                     protein_coding     42775509
9146         PDE9A                     protein_coding     42775509
9147         PDE9A                     protein_coding     42775509
9148         PDE9A                     protein_coding     42775509
9149         PDE9A                     protein_coding     42775509
9150         PDE9A                     protein_coding     42775509
9151         PDE9A                     protein_coding     42775509
9152         PDE9A                     protein_coding     42775509
9153         PDE9A                     protein_coding     42775509
9154         PDE9A                     protein_coding     42775509
9155         PDE9A                     protein_coding     42775509
9156         PDE9A                     protein_coding     42775509
9157         PDE9A                     protein_coding     42775509
9158         PDE9A                     protein_coding     42775509
9159         PDE9A                     protein_coding     42775509
9160         PDE9A                     protein_coding     42775509
9161         PDE9A                     protein_coding     42775509
9162         PDE9A                     protein_coding     42775509
9163         PDE9A                     protein_coding     42775509
9164         PDE9A                     protein_coding     42775509
9165         PDE9A                     protein_coding     42775509
9166         PDE9A                     protein_coding     42775509
9167         PDE9A                     protein_coding     42775509
9168         PDE9A                     protein_coding     42775509
9169         PDE9A                     protein_coding     42775509
9170         PDE9A                     protein_coding     42775509
9171         PDE9A                     protein_coding     42775509
9172         PDE9A                     protein_coding     42775509
9173         PDE9A                     protein_coding     42775509
9174         PDE9A                     protein_coding     42775509
9175         PDE9A                     protein_coding     42775509
9176         PDE9A                     protein_coding     42775509
9177         PDE9A                     protein_coding     42775509
9178         PDE9A                     protein_coding     42775509
9179         PDE9A                     protein_coding     42775509
9180         PDE9A                     protein_coding     42775509
9181         PDE9A                     protein_coding     42775509
9182         PDE9A                     protein_coding     42775509
9183         PDE9A                     protein_coding     42775509
9184         PDE9A                     protein_coding     42775509
9185         PDE9A                     protein_coding     42775509
9186         PDE9A                     protein_coding     42775509
9187         PDE9A                     protein_coding     42775509
9188         PDE9A                     protein_coding     42775509
9189         PDE9A                     protein_coding     42775509
9190         PDE9A                     protein_coding     42775509
9191         PDE9A                     protein_coding     42775509
9192         PDE9A                     protein_coding     42775509
9193         PDE9A                     protein_coding     42775509
9194         PDE9A                     protein_coding     42775509
9195         PDE9A                     protein_coding     42775509
9196         PDE9A                     protein_coding     42775509
9197         PDE9A                     protein_coding     42775509
9198         PDE9A                     protein_coding     42775509
9199         PDE9A                     protein_coding     42775509
9200         PDE9A                     protein_coding     42775509
9201         PDE9A                     protein_coding     42775509
9202         PDE9A                     protein_coding     42775509
9203         PDE9A                     protein_coding     42775509
9204         PDE9A                     protein_coding     42775509
9205         PDE9A                     protein_coding     42775509
9206         PDE9A                     protein_coding     42775509
9207         PDE9A                     protein_coding     42775509
9208         PDE9A                     protein_coding     42775509
9209         PDE9A                     protein_coding     42775509
9210         PDE9A                     protein_coding     42775509
9211         PDE9A                     protein_coding     42775509
9212         PDE9A                     protein_coding     42775509
9213         PDE9A                     protein_coding     42775509
9214         PDE9A                     protein_coding     42775509
9215         PDE9A                     protein_coding     42775509
9216         PDE9A                     protein_coding     42775509
9217         PDE9A                     protein_coding     42775509
9218         PDE9A                     protein_coding     42775509
9219         PDE9A                     protein_coding     42775509
9220         PDE9A                     protein_coding     42775509
9221         PDE9A                     protein_coding     42775509
9222         PDE9A                     protein_coding     42775509
9223         PDE9A                     protein_coding     42775509
9224         PDE9A                     protein_coding     42775509
9225         PDE9A                     protein_coding     42775509
9226         PDE9A                     protein_coding     42775509
9227         PDE9A                     protein_coding     42775509
9228         PDE9A                     protein_coding     42775509
9229         PDE9A                     protein_coding     42775509
9230         PDE9A                     protein_coding     42775509
9231         PDE9A                     protein_coding     42775509
9232         PDE9A                     protein_coding     42775509
9233         PDE9A                     protein_coding     42775509
9234         PDE9A                     protein_coding     42775509
9235         PDE9A                     protein_coding     42775509
9236         PDE9A                     protein_coding     42775509
9237         PDE9A                     protein_coding     42775509
9238         PDE9A                     protein_coding     42775509
9239         PDE9A                     protein_coding     42775509
9240         PDE9A                     protein_coding     42775509
9241         PDE9A                     protein_coding     42775509
9242         PDE9A                     protein_coding     42775509
9243         PDE9A                     protein_coding     42775509
9244         PDE9A                     protein_coding     42775509
9245         PDE9A                     protein_coding     42775509
9246         PDE9A                     protein_coding     42775509
9247         PDE9A                     protein_coding     42775509
9248         PDE9A                     protein_coding     42775509
9249         PDE9A                     protein_coding     42775509
9250         PDE9A                     protein_coding     42775509
9251         PDE9A                     protein_coding     42775509
9252         PDE9A                     protein_coding     42775509
9253         PDE9A                     protein_coding     42775509
9254         PDE9A                     protein_coding     42775509
9255         PDE9A                     protein_coding     42775509
9256         PDE9A                     protein_coding     42775509
9257         PDE9A                     protein_coding     42775509
9258         PDE9A                     protein_coding     42775509
9259         PDE9A                     protein_coding     42775509
9260         PDE9A                     protein_coding     42775509
9261         PDE9A                     protein_coding     42775509
9262         PDE9A                     protein_coding     42775509
9263         PDE9A                     protein_coding     42775509
9264         PDE9A                     protein_coding     42775509
9265         PDE9A                     protein_coding     42775509
9266         PDE9A                     protein_coding     42775509
9267         PDE9A                     protein_coding     42775509
9268         PDE9A                     protein_coding     42775509
9269         PDE9A                     protein_coding     42775509
9270         PDE9A                     protein_coding     42775509
9271         PDE9A                     protein_coding     42775509
9272         PDE9A                     protein_coding     42775509
9273         PDE9A                     protein_coding     42775509
9274         PDE9A                     protein_coding     42775509
9275         PDE9A                     protein_coding     42775509
9276         PDE9A                     protein_coding     42775509
9277         PDE9A                     protein_coding     42775509
9278         PDE9A                     protein_coding     42775509
9279         PDE9A                     protein_coding     42775509
9280         PDE9A                     protein_coding     42775509
9281         PDE9A                     protein_coding     42775509
9282         PDE9A                     protein_coding     42775509
9283         PDE9A                     protein_coding     42775509
9284         PDE9A                     protein_coding     42775509
9285         PDE9A                     protein_coding     42775509
9286         PDE9A                     protein_coding     42775509
9287         PDE9A                     protein_coding     42775509
9288         PDE9A                     protein_coding     42775509
9289         PDE9A                     protein_coding     42775509
9290         PDE9A                     protein_coding     42775509
9291         PDE9A                     protein_coding     42775509
9292         PDE9A                     protein_coding     42775509
9293         PDE9A                     protein_coding     42775509
9294         PDE9A                     protein_coding     42775509
9295         PDE9A                     protein_coding     42775509
9296         PDE9A                     protein_coding     42775509
9297         PDE9A                     protein_coding     42775509
9298         PDE9A                     protein_coding     42775509
9299         PDE9A                     protein_coding     42775509
9300         PDE9A                     protein_coding     42775509
9301         PDE9A                     protein_coding     42775509
9302         PDE9A                     protein_coding     42775509
9303         PDE9A                     protein_coding     42775509
9304         PDE9A                     protein_coding     42775509
9305         PDE9A                     protein_coding     42775509
9306         PDE9A                     protein_coding     42775509
9307         PDE9A                     protein_coding     42775509
9308         PDE9A                     protein_coding     42775509
9309         PDE9A                     protein_coding     42775509
9310         PDE9A                     protein_coding     42775509
9311         PDE9A                     protein_coding     42775509
9312         PDE9A                     protein_coding     42775509
9313         PDE9A                     protein_coding     42775509
9314         PDE9A                     protein_coding     42775509
9315         PDE9A                     protein_coding     42775509
9316         PDE9A                     protein_coding     42775509
9317         PDE9A                     protein_coding     42775509
9318         PDE9A                     protein_coding     42775509
9319         PDE9A                     protein_coding     42775509
9320         PDE9A                     protein_coding     42775509
9321         PDE9A                     protein_coding     42775509
9322         PDE9A                     protein_coding     42775509
9323         PDE9A                     protein_coding     42775509
9324         PDE9A                     protein_coding     42775509
9325         PDE9A                     protein_coding     42775509
9326         PDE9A                     protein_coding     42775509
9327         PDE9A                     protein_coding     42775509
9328         PDE9A                     protein_coding     42775509
9329         PDE9A                     protein_coding     42775509
9330         PDE9A                     protein_coding     42775509
9331         PDE9A                     protein_coding     42775509
9332         PDE9A                     protein_coding     42775509
9333         PDE9A                     protein_coding     42775509
9334         PDE9A                     protein_coding     42775509
9335         PDE9A                     protein_coding     42775509
9336         PDE9A                     protein_coding     42775509
9337         PDE9A                     protein_coding     42775509
9338         PDE9A                     protein_coding     42775509
9339         PDE9A                     protein_coding     42775509
9340         PDE9A                     protein_coding     42775509
9341         PDE9A                     protein_coding     42775509
9342         PDE9A                     protein_coding     42775509
9343         PDE9A                     protein_coding     42775509
9344         PDE9A                     protein_coding     42775509
9345         PDE9A                     protein_coding     42775509
9346         PDE9A                     protein_coding     42775509
9347         PDE9A                     protein_coding     42775509
9348         PDE9A                     protein_coding     42775509
9349         PDE9A                     protein_coding     42775509
9350         PDE9A                     protein_coding     42775509
9351         PDE9A                     protein_coding     42775509
9352         PDE9A                     protein_coding     42775509
9353         PDE9A                     protein_coding     42775509
9354         PDE9A                     protein_coding     42775509
9355         PDE9A                     protein_coding     42775509
9356         PDE9A                     protein_coding     42775509
9357         PDE9A                     protein_coding     42775509
9358         PDE9A                     protein_coding     42775509
9359         PDE9A                     protein_coding     42775509
9360         PDE9A                     protein_coding     42775509
9361         PDE9A                     protein_coding     42775509
9362         PDE9A                     protein_coding     42775509
9363         PDE9A                     protein_coding     42775509
9364         PDE9A                     protein_coding     42775509
9365         PDE9A                     protein_coding     42775509
9366         PDE9A                     protein_coding     42775509
9367         PDE9A                     protein_coding     42775509
9368         PDE9A                     protein_coding     42775509
9369         PDE9A                     protein_coding     42775509
9370         PDE9A                     protein_coding     42775509
9371         PDE9A                     protein_coding     42775509
9372         PDE9A                     protein_coding     42775509
9373         PDE9A                     protein_coding     42775509
9374         PDE9A                     protein_coding     42775509
9375         PDE9A                     protein_coding     42775509
9376         PDE9A                     protein_coding     42775509
9377         PDE9A                     protein_coding     42775509
9378         PDE9A                     protein_coding     42775509
9379         PDE9A                     protein_coding     42775509
9380         PDE9A                     protein_coding     42775509
9381         PDE9A                     protein_coding     42775509
9382         PDE9A                     protein_coding     42775509
9383         PDE9A                     protein_coding     42775509
9384         PDE9A                     protein_coding     42775509
9385         PDE9A                     protein_coding     42775509
9386         PDE9A                     protein_coding     42775509
9387         PDE9A                     protein_coding     42775509
9388         PDE9A                     protein_coding     42775509
9389         PDE9A                     protein_coding     42775509
9390         PDE9A                     protein_coding     42775509
9391         PDE9A                     protein_coding     42775509
9392         PDE9A                     protein_coding     42775509
9393         PDE9A                     protein_coding     42775509
9394         PDE9A                     protein_coding     42775509
9395         PDE9A                     protein_coding     42775509
9396         PDE9A                     protein_coding     42775509
9397         PDE9A                     protein_coding     42775509
9398         PDE9A                     protein_coding     42775509
9399         PDE9A                     protein_coding     42775509
9400         PDE9A                     protein_coding     42775509
9401         PDE9A                     protein_coding     42775509
9402         PDE9A                     protein_coding     42775509
9403         PDE9A                     protein_coding     42775509
9404         PDE9A                     protein_coding     42775509
9405         PDE9A                     protein_coding     42775509
9406         PDE9A                     protein_coding     42775509
9407         PDE9A                     protein_coding     42775509
9408         PDE9A                     protein_coding     42775509
9409         PDE9A                     protein_coding     42775509
9410         PDE9A                     protein_coding     42775509
9411         PDE9A                     protein_coding     42775509
9412         PDE9A                     protein_coding     42775509
9413         PDE9A                     protein_coding     42775509
9414         PDE9A                     protein_coding     42775509
9415         PDE9A                     protein_coding     42775509
9416         PDE9A                     protein_coding     42775509
9417         PDE9A                     protein_coding     42775509
9418         PDE9A                     protein_coding     42775509
9419         PDE9A                     protein_coding     42775509
9420         PDE9A                     protein_coding     42775509
9421         PDE9A                     protein_coding     42775509
9422         PDE9A                     protein_coding     42775509
9423         PDE9A                     protein_coding     42775509
9424         PDE9A                     protein_coding     42775509
9425         PDE9A                     protein_coding     42775509
9426         PDE9A                     protein_coding     42775509
9427         PDE9A                     protein_coding     42775509
9428         PDE9A                     protein_coding     42775509
9429         PDE9A                     protein_coding     42775509
9430         PDE9A                     protein_coding     42775509
9431         PDE9A                     protein_coding     42775509
9432         PDE9A                     protein_coding     42775509
9433         PDE9A                     protein_coding     42775509
9434         PDE9A                     protein_coding     42775509
9435         PDE9A                     protein_coding     42775509
9436         PDE9A                     protein_coding     42775509
9437         PDE9A                     protein_coding     42775509
9438         PDE9A                     protein_coding     42775509
9439         PDE9A                     protein_coding     42775509
9440         PDE9A                     protein_coding     42775509
9441         PDE9A                     protein_coding     42775509
9442         PDE9A                     protein_coding     42775509
9443         PDE9A                     protein_coding     42775509
9444         PDE9A                     protein_coding     42775509
9445         PDE9A                     protein_coding     42775509
9446         PDE9A                     protein_coding     42775509
9447         PDE9A                     protein_coding     42775509
9448         PDE9A                     protein_coding     42775509
9449         PDE9A                     protein_coding     42775509
9450         PDE9A                     protein_coding     42775509
9451         PDE9A                     protein_coding     42775509
9452         PDE9A                     protein_coding     42775509
9453         PDE9A                     protein_coding     42775509
9454         PDE9A                     protein_coding     42775509
9455         PDE9A                     protein_coding     42775509
9456         PDE9A                     protein_coding     42775509
9457         PDE9A                     protein_coding     42775509
9458         PDE9A                     protein_coding     42775509
9459         PDE9A                     protein_coding     42775509
9460         PDE9A                     protein_coding     42775509
9461         PDE9A                     protein_coding     42775509
9462         PDE9A                     protein_coding     42775509
9463         PDE9A                     protein_coding     42775509
9464         PDE9A                     protein_coding     42775509
9465         PDE9A                     protein_coding     42775509
9466         PDE9A                     protein_coding     42775509
9467         PDE9A                     protein_coding     42775509
9468         PDE9A                     protein_coding     42775509
9469         PDE9A                     protein_coding     42775509
9470         PDE9A                     protein_coding     42775509
9471         PDE9A                     protein_coding     42775509
9472         PDE9A                     protein_coding     42775509
9473         PDE9A                     protein_coding     42775509
9474         PDE9A                     protein_coding     42775509
9475         PDE9A                     protein_coding     42775509
9476         PDE9A                     protein_coding     42775509
9477         PDE9A                     protein_coding     42775509
9478         PDE9A                     protein_coding     42775509
9479         PDE9A                     protein_coding     42775509
9480         PDE9A                     protein_coding     42775509
9481         PDE9A                     protein_coding     42775509
9482         PDE9A                     protein_coding     42775509
9483         PDE9A                     protein_coding     42775509
9484         PDE9A                     protein_coding     42775509
9485         PDE9A                     protein_coding     42775509
9486         PDE9A                     protein_coding     42775509
9487         PDE9A                     protein_coding     42775509
9488         PDE9A                     protein_coding     42775509
9489         PDE9A                     protein_coding     42775509
9490         PDE9A                     protein_coding     42775509
9491         PDE9A                     protein_coding     42775509
9492         PDE9A                     protein_coding     42775509
9493         PDE9A                     protein_coding     42775509
9494         PDE9A                     protein_coding     42775509
9495         PDE9A                     protein_coding     42775509
9496         PDE9A                     protein_coding     42775509
9497         PDE9A                     protein_coding     42775509
9498         PDE9A                     protein_coding     42775509
9499         PDE9A                     protein_coding     42775509
9500         PDE9A                     protein_coding     42775509
9501         PDE9A                     protein_coding     42775509
9502         PDE9A                     protein_coding     42775509
9503         PDE9A                     protein_coding     42775509
9504         PDE9A                     protein_coding     42775509
9505         PDE9A                     protein_coding     42775509
9506         PDE9A                     protein_coding     42775509
9507         PDE9A                     protein_coding     42775509
9508         PDE9A                     protein_coding     42775509
9509         PDE9A                     protein_coding     42775509
9510         PDE9A                     protein_coding     42775509
9511         PDE9A                     protein_coding     42775509
9512         PDE9A                     protein_coding     42775509
9513         PDE9A                     protein_coding     42775509
9514         PDE9A                     protein_coding     42775509
9515         PDE9A                     protein_coding     42775509
9516         PDE9A                     protein_coding     42775509
9517         PDE9A                     protein_coding     42775509
9518         PDE9A                     protein_coding     42775509
9519         PDE9A                     protein_coding     42775509
9520         PDE9A                     protein_coding     42775509
9521         PDE9A                     protein_coding     42775509
9522         PDE9A                     protein_coding     42775509
9523         PDE9A                     protein_coding     42775509
9524         PDE9A                     protein_coding     42775509
9525         PDE9A                     protein_coding     42775509
9526         PDE9A                     protein_coding     42775509
9527         PDE9A                     protein_coding     42775509
9528         PDE9A                     protein_coding     42775509
9529         PDE9A                     protein_coding     42775509
9530         PDE9A                     protein_coding     42775509
9531         PDE9A                     protein_coding     42775509
9532         PDE9A                     protein_coding     42775509
9533         PDE9A                     protein_coding     42775509
9534         PDE9A                     protein_coding     42775509
9535         PDE9A                     protein_coding     42775509
9536         PDE9A                     protein_coding     42775509
9537         PDE9A                     protein_coding     42775509
9538         PDE9A                     protein_coding     42775509
9539         PDE9A                     protein_coding     42775509
9540         PDE9A                     protein_coding     42775509
9541         PDE9A                     protein_coding     42775509
9542         PDE9A                     protein_coding     42775509
9543         PDE9A                     protein_coding     42775509
9544         PDE9A                     protein_coding     42775509
9545         PDE9A                     protein_coding     42775509
9546         PDE9A                     protein_coding     42775509
9547         PDE9A                     protein_coding     42775509
9548         PDE9A                     protein_coding     42775509
9549         PDE9A                     protein_coding     42775509
9550         PDE9A                     protein_coding     42775509
9551         PDE9A                     protein_coding     42775509
9552         PDE9A                     protein_coding     42775509
9553         PDE9A                     protein_coding     42775509
9554         PDE9A                     protein_coding     42775509
9555         PDE9A                     protein_coding     42775509
9556         PDE9A                     protein_coding     42775509
9557         PDE9A                     protein_coding     42775509
9558         PDE9A                     protein_coding     42775509
9559         PDE9A                     protein_coding     42775509
9560         PDE9A                     protein_coding     42775509
9561         PDE9A                     protein_coding     42775509
9562         PDE9A                     protein_coding     42775509
9563          PDXK                     protein_coding     43762307
9564          PDXK                     protein_coding     43762307
9565          PDXK                     protein_coding     43762307
9566          PDXK                     protein_coding     43762307
9567          PDXK                     protein_coding     43762307
9568          PDXK                     protein_coding     43762307
9569          PDXK                     protein_coding     43762307
9570          PDXK                     protein_coding     43762307
9571          PDXK                     protein_coding     43762307
9572          PDXK                     protein_coding     43762307
9573          PDXK                     protein_coding     43762307
9574          PDXK                     protein_coding     43762307
9575          PDXK                     protein_coding     43762307
9576          PDXK                     protein_coding     43762307
9577          PDXK                     protein_coding     43762307
9578          PDXK                     protein_coding     43762307
9579          PDXK                     protein_coding     43762307
9580          PDXK                     protein_coding     43762307
9581          PDXK                     protein_coding     43762307
9582          PDXK                     protein_coding     43762307
9583          PDXK                     protein_coding     43762307
9584          PDXK                     protein_coding     43762307
9585          PDXK                     protein_coding     43762307
9586          PDXK                     protein_coding     43762307
9587          PDXK                     protein_coding     43762307
9588          PDXK                     protein_coding     43762307
9589          PDXK                     protein_coding     43762307
9590          PDXK                     protein_coding     43762307
9591          PDXK                     protein_coding     43762307
9592          PDXK                     protein_coding     43762307
9593          PDXK                     protein_coding     43762307
9594          PDXK                     protein_coding     43762307
9595          PDXK                     protein_coding     43762307
9596          PDXK                     protein_coding     43762307
9597          PDXK                     protein_coding     43762307
9598          PDXK                     protein_coding     43762307
9599          PDXK                     protein_coding     43762307
9600          PDXK                     protein_coding     43762307
9601          PDXK                     protein_coding     43762307
9602          PDXK                     protein_coding     43762307
9603          PDXK                     protein_coding     43762307
9604          PDXK                     protein_coding     43762307
9605          PDXK                     protein_coding     43762307
9606          PDXK                     protein_coding     43762307
9607          PDXK                     protein_coding     43762307
9608          PDXK                     protein_coding     43762307
9609          PDXK                     protein_coding     43762307
9610          PDXK                     protein_coding     43762307
9611          PDXK                     protein_coding     43762307
9612          PDXK                     protein_coding     43762307
9613          PDXK                     protein_coding     43762307
9614          PDXK                     protein_coding     43762307
9615          PDXK                     protein_coding     43762307
9616          PDXK                     protein_coding     43762307
9617          PDXK                     protein_coding     43762307
9618          PDXK                     protein_coding     43762307
9619          PDXK                     protein_coding     43762307
9620          PDXK                     protein_coding     43762307
9621          PDXK                     protein_coding     43762307
9622          PDXK                     protein_coding     43762307
9623          PDXK                     protein_coding     43762307
9624          PDXK                     protein_coding     43762307
9625          PDXK                     protein_coding     43762307
9626          PDXK                     protein_coding     43762307
9627          PDXK                     protein_coding     43762307
9628          PDXK                     protein_coding     43762307
9629          PDXK                     protein_coding     43762307
9630          PDXK                     protein_coding     43762307
9631          PDXK                     protein_coding     43762307
9632          PDXK                     protein_coding     43762307
9633          PDXK                     protein_coding     43762307
9634          PDXK                     protein_coding     43762307
9635          PDXK                     protein_coding     43762307
9636          PDXK                     protein_coding     43762307
9637          PDXK                     protein_coding     43762307
9638          PDXK                     protein_coding     43762307
9639          PDXK                     protein_coding     43762307
9640          PDXK                     protein_coding     43762307
9641          PDXK                     protein_coding     43762307
9642          PDXK                     protein_coding     43762307
9643          PDXK                     protein_coding     43762307
9644          PDXK                     protein_coding     43762307
9645          PDXK                     protein_coding     43762307
9646          PDXK                     protein_coding     43762307
9647          PDXK                     protein_coding     43762307
9648          PDXK                     protein_coding     43762307
9649          PDXK                     protein_coding     43762307
9650          PDXK                     protein_coding     43762307
9651          PDXK                     protein_coding     43762307
9652          PDXK                     protein_coding     43762307
9653          PDXK                     protein_coding     43762307
9654          PDXK                     protein_coding     43762307
9655          PDXK                     protein_coding     43762307
9656          PDXK                     protein_coding     43762307
9657          PDXK                     protein_coding     43762307
9658          PDXK                     protein_coding     43762307
9659          PDXK                     protein_coding     43762307
9660          PDXK                     protein_coding     43762307
9661          PDXK                     protein_coding     43762307
9662          PDXK                     protein_coding     43762307
9663          PDXK                     protein_coding     43762307
9664          PDXK                     protein_coding     43762307
9665          PDXK                     protein_coding     43762307
9666          PDXK                     protein_coding     43762307
9667          PDXK                     protein_coding     43762307
9668          PDXK                     protein_coding     43762307
9669          PDXK                     protein_coding     43762307
9670          PDXK                     protein_coding     43762307
9671          PDXK                     protein_coding     43762307
9672          PDXK                     protein_coding     43762307
9673          PDXK                     protein_coding     43762307
9674          PDXK                     protein_coding     43762307
9675          PDXK                     protein_coding     43762307
9676          PDXK                     protein_coding     43762307
9677          PDXK                     protein_coding     43762307
9678          PDXK                     protein_coding     43762307
9679          PDXK                     protein_coding     43762307
9680          PDXK                     protein_coding     43762307
9681          PDXK                     protein_coding     43762307
9682          PDXK                     protein_coding     43762307
9683          PDXK                     protein_coding     43762307
9684          PDXK                     protein_coding     43762307
9685          PFKL                     protein_coding     44327376
9686          PFKL                     protein_coding     44327376
9687          PFKL                     protein_coding     44327376
9688          PFKL                     protein_coding     44327376
9689          PFKL                     protein_coding     44327376
9690          PFKL                     protein_coding     44327376
9691          PFKL                     protein_coding     44327376
9692          PFKL                     protein_coding     44327376
9693          PFKL                     protein_coding     44327376
9694          PFKL                     protein_coding     44327376
9695          PFKL                     protein_coding     44327376
9696          PFKL                     protein_coding     44327376
9697          PFKL                     protein_coding     44327376
9698          PFKL                     protein_coding     44327376
9699          PFKL                     protein_coding     44327376
9700          PFKL                     protein_coding     44327376
9701          PFKL                     protein_coding     44327376
9702          PFKL                     protein_coding     44327376
9703          PFKL                     protein_coding     44327376
9704          PFKL                     protein_coding     44327376
9705          PFKL                     protein_coding     44327376
9706          PFKL                     protein_coding     44327376
9707          PFKL                     protein_coding     44327376
9708          PFKL                     protein_coding     44327376
9709          PFKL                     protein_coding     44327376
9710          PFKL                     protein_coding     44327376
9711          PFKL                     protein_coding     44327376
9712          PFKL                     protein_coding     44327376
9713          PFKL                     protein_coding     44327376
9714          PFKL                     protein_coding     44327376
9715          PFKL                     protein_coding     44327376
9716          PFKL                     protein_coding     44327376
9717          PFKL                     protein_coding     44327376
9718          PFKL                     protein_coding     44327376
9719          PFKL                     protein_coding     44327376
9720          PFKL                     protein_coding     44327376
9721          PFKL                     protein_coding     44327376
9722          PFKL                     protein_coding     44327376
9723          PFKL                     protein_coding     44327376
9724          PFKL                     protein_coding     44327376
9725          PFKL                     protein_coding     44327376
9726          PFKL                     protein_coding     44327376
9727          PFKL                     protein_coding     44327376
9728          PFKL                     protein_coding     44327376
9729          PFKL                     protein_coding     44327376
9730          PFKL                     protein_coding     44327376
9731          PFKL                     protein_coding     44327376
9732          PFKL                     protein_coding     44327376
9733          PFKL                     protein_coding     44327376
9734          PFKL                     protein_coding     44327376
9735          PFKL                     protein_coding     44327376
9736          PFKL                     protein_coding     44327376
9737          PFKL                     protein_coding     44327376
9738          PFKL                     protein_coding     44327376
9739          PFKL                     protein_coding     44327376
9740          PFKL                     protein_coding     44327376
9741          PFKL                     protein_coding     44327376
9742          PFKL                     protein_coding     44327376
9743          PFKL                     protein_coding     44327376
9744          PFKL                     protein_coding     44327376
9745          PFKL                     protein_coding     44327376
9746          PFKL                     protein_coding     44327376
9747          PFKL                     protein_coding     44327376
9748          PFKL                     protein_coding     44327376
9749          PFKL                     protein_coding     44327376
9750          PFKL                     protein_coding     44327376
9751          PFKL                     protein_coding     44327376
9752          PFKL                     protein_coding     44327376
9753          PFKL                     protein_coding     44327376
9754          PFKL                     protein_coding     44327376
9755          PFKL                     protein_coding     44327376
9756          PFKL                     protein_coding     44327376
9757          PFKL                     protein_coding     44327376
9758          PFKL                     protein_coding     44327376
9759          PFKL                     protein_coding     44327376
9760          PFKL                     protein_coding     44327376
9761          PFKL                     protein_coding     44327376
9762          PFKL                     protein_coding     44327376
9763          PFKL                     protein_coding     44327376
9764          PFKL                     protein_coding     44327376
9765          PFKL                     protein_coding     44327376
9766          PFKL                     protein_coding     44327376
9767          PFKL                     protein_coding     44327376
9768          PFKL                     protein_coding     44327376
9769          PFKL                     protein_coding     44327376
9770          PFKL                     protein_coding     44327376
9771          PFKL                     protein_coding     44327376
9772          PFKL                     protein_coding     44327376
9773          PFKL                     protein_coding     44327376
9774          PFKL                     protein_coding     44327376
9775          PFKL                     protein_coding     44327376
9776          PFKL                     protein_coding     44327376
9777          PFKL                     protein_coding     44327376
9778          PFKL                     protein_coding     44327376
9779          PFKL                     protein_coding     44327376
9780          PFKL                     protein_coding     44327376
9781          PFKL                     protein_coding     44327376
9782          PFKL                     protein_coding     44327376
9783          PFKL                     protein_coding     44327376
9784          PFKL                     protein_coding     44327376
9785          PFKL                     protein_coding     44327376
9786          PFKL                     protein_coding     44327376
9787          PFKL                     protein_coding     44327376
9788          PFKL                     protein_coding     44327376
9789          PFKL                     protein_coding     44327376
9790          PFKL                     protein_coding     44327376
9791          PFKL                     protein_coding     44327376
9792          PFKL                     protein_coding     44327376
9793          PFKL                     protein_coding     44327376
9794          PFKL                     protein_coding     44327376
9795          PFKL                     protein_coding     44327376
9796          PFKL                     protein_coding     44327376
9797          PFKL                     protein_coding     44327376
9798          PFKL                     protein_coding     44327376
9799          PFKL                     protein_coding     44327376
9800          PFKL                     protein_coding     44327376
9801          PFKL                     protein_coding     44327376
9802          PFKL                     protein_coding     44327376
9803          PFKL                     protein_coding     44327376
9804          PFKL                     protein_coding     44327376
9805          PFKL                     protein_coding     44327376
9806          PFKL                     protein_coding     44327376
9807          PFKL                     protein_coding     44327376
9808          PFKL                     protein_coding     44327376
9809          PFKL                     protein_coding     44327376
9810          PFKL                     protein_coding     44327376
9811          PFKL                     protein_coding     44327376
9812          PFKL                     protein_coding     44327376
9813          PFKL                     protein_coding     44327376
9814          PFKL                     protein_coding     44327376
9815          PFKL                     protein_coding     44327376
9816          PFKL                     protein_coding     44327376
9817          PFKL                     protein_coding     44327376
9818          PFKL                     protein_coding     44327376
9819          PFKL                     protein_coding     44327376
9820          PFKL                     protein_coding     44327376
9821          PFKL                     protein_coding     44327376
9822        PICSAR                            lincRNA     45004727
9823        PICSAR                            lincRNA     45004727
9824          PIGP                     protein_coding     37073170
9825          PIGP                     protein_coding     37073170
9826          PIGP                     protein_coding     37073170
9827          PIGP                     protein_coding     37073170
9828          PIGP                     protein_coding     37073170
9829          PIGP                     protein_coding     37073170
9830          PIGP                     protein_coding     37073170
9831          PIGP                     protein_coding     37073170
9832          PIGP                     protein_coding     37073170
9833          PIGP                     protein_coding     37073170
9834          PIGP                     protein_coding     37073170
9835          PIGP                     protein_coding     37073170
9836          PIGP                     protein_coding     37073170
9837          PIGP                     protein_coding     37073170
9838          PIGP                     protein_coding     37073170
9839          PIGP                     protein_coding     37073170
9840          PIGP                     protein_coding     37073170
9841          PIGP                     protein_coding     37073170
9842          PIGP                     protein_coding     37073170
9843          PIGP                     protein_coding     37073170
9844          PIGP                     protein_coding     37073170
9845          PIGP                     protein_coding     37073170
9846          PIGP                     protein_coding     37073170
9847          PIGP                     protein_coding     37073170
9848          PIGP                     protein_coding     37073170
9849          PIGP                     protein_coding     37073170
9850          PIGP                     protein_coding     37073170
9851          PIGP                     protein_coding     37073170
9852          PIGP                     protein_coding     37073170
9853          PIGP                     protein_coding     37073170
9854          PIGP                     protein_coding     37073170
9855          PIGP                     protein_coding     37073170
9856          PIGP                     protein_coding     37073170
9857        PKNOX1                     protein_coding     43033931
9858        PKNOX1                     protein_coding     43033931
9859        PKNOX1                     protein_coding     43033931
9860        PKNOX1                     protein_coding     43033931
9861        PKNOX1                     protein_coding     43033931
9862        PKNOX1                     protein_coding     43033931
9863        PKNOX1                     protein_coding     43033931
9864        PKNOX1                     protein_coding     43033931
9865        PKNOX1                     protein_coding     43033931
9866        PKNOX1                     protein_coding     43033931
9867        PKNOX1                     protein_coding     43033931
9868        PKNOX1                     protein_coding     43033931
9869        PKNOX1                     protein_coding     43033931
9870        PKNOX1                     protein_coding     43033931
9871        PKNOX1                     protein_coding     43033931
9872        PKNOX1                     protein_coding     43033931
9873        PKNOX1                     protein_coding     43033931
9874        PKNOX1                     protein_coding     43033931
9875        PKNOX1                     protein_coding     43033931
9876        PKNOX1                     protein_coding     43033931
9877        PKNOX1                     protein_coding     43033931
9878        PKNOX1                     protein_coding     43033931
9879        PKNOX1                     protein_coding     43033931
9880        PKNOX1                     protein_coding     43033931
9881        PKNOX1                     protein_coding     43033931
9882        PKNOX1                     protein_coding     43033931
9883        PKNOX1                     protein_coding     43033931
9884        PKNOX1                     protein_coding     43033931
9885        PKNOX1                     protein_coding     43033931
9886        PKNOX1                     protein_coding     43033931
9887        PKNOX1                     protein_coding     43033931
9888        PKNOX1                     protein_coding     43033931
9889        PKNOX1                     protein_coding     43033931
9890        PKNOX1                     protein_coding     43033931
9891        PKNOX1                     protein_coding     43033931
9892        PKNOX1                     protein_coding     43033931
9893        PKNOX1                     protein_coding     43033931
9894        PKNOX1                     protein_coding     43033931
9895        PKNOX1                     protein_coding     43033931
9896        PKNOX1                     protein_coding     43033931
9897        PKNOX1                     protein_coding     43033931
9898        PKNOX1                     protein_coding     43033931
9899        PKNOX1                     protein_coding     43033931
9900        PKNOX1                     protein_coding     43033931
9901        PKNOX1                     protein_coding     43033931
9902        PKNOX1                     protein_coding     43033931
9903        PKNOX1                     protein_coding     43033931
9904        PKNOX1                     protein_coding     43033931
9905        PKNOX1                     protein_coding     43033931
9906        PKNOX1                     protein_coding     43033931
9907        PKNOX1                     protein_coding     43033931
9908        PKNOX1                     protein_coding     43033931
9909        PKNOX1                     protein_coding     43033931
9910        PKNOX1                     protein_coding     43033931
9911        PKNOX1                     protein_coding     43033931
9912        PKNOX1                     protein_coding     43033931
9913        PKNOX1                     protein_coding     43033931
9914        PKNOX1                     protein_coding     43033931
9915        PKNOX1                     protein_coding     43033931
9916         PLAC4                                TEC     41185239
9917         PLAC4                                TEC     41185239
9918        POFUT2                     protein_coding     45287898
9919        POFUT2                     protein_coding     45287898
9920        POFUT2                     protein_coding     45287898
9921        POFUT2                     protein_coding     45287898
9922        POFUT2                     protein_coding     45287898
9923        POFUT2                     protein_coding     45287898
9924        POFUT2                     protein_coding     45287898
9925        POFUT2                     protein_coding     45287898
9926        POFUT2                     protein_coding     45287898
9927        POFUT2                     protein_coding     45287898
9928        POFUT2                     protein_coding     45287898
9929        POFUT2                     protein_coding     45287898
9930        POFUT2                     protein_coding     45287898
9931        POFUT2                     protein_coding     45287898
9932        POFUT2                     protein_coding     45287898
9933        POFUT2                     protein_coding     45287898
9934        POFUT2                     protein_coding     45287898
9935        POFUT2                     protein_coding     45287898
9936        POFUT2                     protein_coding     45287898
9937        POFUT2                     protein_coding     45287898
9938        POFUT2                     protein_coding     45287898
9939        POFUT2                     protein_coding     45287898
9940        POFUT2                     protein_coding     45287898
9941        POFUT2                     protein_coding     45287898
9942        POFUT2                     protein_coding     45287898
9943        POFUT2                     protein_coding     45287898
9944        POFUT2                     protein_coding     45287898
9945        POFUT2                     protein_coding     45287898
9946        POFUT2                     protein_coding     45287898
9947        POFUT2                     protein_coding     45287898
9948        POFUT2                     protein_coding     45287898
9949        POFUT2                     protein_coding     45287898
9950        POFUT2                     protein_coding     45287898
9951        POFUT2                     protein_coding     45287898
9952        POFUT2                     protein_coding     45287898
9953        POFUT2                     protein_coding     45287898
9954        POFUT2                     protein_coding     45287898
9955        POFUT2                     protein_coding     45287898
9956        POFUT2                     protein_coding     45287898
9957        POFUT2                     protein_coding     45287898
9958        POFUT2                     protein_coding     45287898
9959        POFUT2                     protein_coding     45287898
9960        POFUT2                     protein_coding     45287898
9961        POFUT2                     protein_coding     45287898
9962        POFUT2                     protein_coding     45287898
9963        POFUT2                     protein_coding     45287898
9964        POFUT2                     protein_coding     45287898
9965        POFUT2                     protein_coding     45287898
9966        POFUT2                     protein_coding     45287898
9967        POFUT2                     protein_coding     45287898
9968        POFUT2                     protein_coding     45287898
9969        POFUT2                     protein_coding     45287898
9970        POFUT2                     protein_coding     45287898
9971        POFUT2                     protein_coding     45287898
9972        POFUT2                     protein_coding     45287898
9973        POFUT2                     protein_coding     45287898
9974        POFUT2                     protein_coding     45287898
9975        POFUT2                     protein_coding     45287898
9976        POFUT2                     protein_coding     45287898
9977        POFUT2                     protein_coding     45287898
9978        POFUT2                     protein_coding     45287898
9979        POFUT2                     protein_coding     45287898
9980        POFUT2                     protein_coding     45287898
9981        POFUT2                     protein_coding     45287898
9982        POFUT2                     protein_coding     45287898
9983        POFUT2                     protein_coding     45287898
9984        POFUT2                     protein_coding     45287898
9985        POFUT2                     protein_coding     45287898
9986        POFUT2                     protein_coding     45287898
9987        POFUT2                     protein_coding     45287898
9988        POFUT2                     protein_coding     45287898
9989        POFUT2                     protein_coding     45287898
9990        POFUT2                     protein_coding     45287898
9991        POFUT2                     protein_coding     45287898
9992        POFUT2                     protein_coding     45287898
9993        POFUT2                     protein_coding     45287898
9994        POFUT2                     protein_coding     45287898
9995        POFUT2                     protein_coding     45287898
9996        POFUT2                     protein_coding     45287898
9997        POFUT2                     protein_coding     45287898
9998        POFUT2                     protein_coding     45287898
9999        POFUT2                     protein_coding     45287898
      ensembl_gene_id ensembl_transcript_id ensembl_exon_id
1     ENSG00000279687       ENST00000623188 ENSE00003759048
2     ENSG00000279687       ENST00000623188 ENSE00003759260
3     ENSG00000224905       ENST00000428809 ENSE00001608016
4     ENSG00000224905       ENST00000428809 ENSE00001648320
5     ENSG00000224905       ENST00000428809 ENSE00001645386
6     ENSG00000224905       ENST00000432621 ENSE00001608016
7     ENSG00000224905       ENST00000432621 ENSE00001648320
8     ENSG00000224905       ENST00000432621 ENSE00001657041
9     ENSG00000224905       ENST00000448463 ENSE00001648320
10    ENSG00000224905       ENST00000448463 ENSE00001742871
11    ENSG00000224905       ENST00000448463 ENSE00001805372
12    ENSG00000235277       ENST00000430391 ENSE00001786136
13    ENSG00000235277       ENST00000430391 ENSE00001726405
14    ENSG00000229047       ENST00000446301 ENSE00001721303
15    ENSG00000229047       ENST00000446301 ENSE00001679975
16    ENSG00000231201       ENST00000436429 ENSE00001771426
17    ENSG00000231201       ENST00000436429 ENSE00001693515
18    ENSG00000231201       ENST00000436429 ENSE00001607020
19    ENSG00000244676       ENST00000428689 ENSE00001782668
20    ENSG00000244676       ENST00000428689 ENSE00001713116
21    ENSG00000244676       ENST00000454737 ENSE00001713116
22    ENSG00000244676       ENST00000454737 ENSE00001689198
23    ENSG00000226771       ENST00000425058 ENSE00001728521
24    ENSG00000226771       ENST00000425058 ENSE00001700237
25    ENSG00000260583       ENST00000567517 ENSE00002629631
26    ENSG00000224541       ENST00000455275 ENSE00001727831
27    ENSG00000224541       ENST00000455275 ENSE00001777123
28    ENSG00000232692       ENST00000429340 ENSE00001732848
29    ENSG00000232692       ENST00000429340 ENSE00001790439
30    ENSG00000232692       ENST00000429340 ENSE00001596262
31    ENSG00000232692       ENST00000429340 ENSE00001635399
32    ENSG00000232692       ENST00000429340 ENSE00001693292
33    ENSG00000232692       ENST00000429340 ENSE00001737734
34    ENSG00000232692       ENST00000452460 ENSE00001597055
35    ENSG00000232692       ENST00000452460 ENSE00001675911
36    ENSG00000232692       ENST00000452460 ENSE00001782152
37    ENSG00000232692       ENST00000452460 ENSE00001773943
38    ENSG00000232692       ENST00000421771 ENSE00001750896
39    ENSG00000232692       ENST00000421771 ENSE00001729877
40    ENSG00000232692       ENST00000444306 ENSE00001791544
41    ENSG00000232692       ENST00000444306 ENSE00001721258
42    ENSG00000223563       ENST00000426771 ENSE00001802622
43    ENSG00000223563       ENST00000426771 ENSE00001663517
44    ENSG00000223563       ENST00000426771 ENSE00001629263
45    ENSG00000273254       ENST00000608809 ENSE00003703315
46    ENSG00000224649       ENST00000430001 ENSE00001612552
47    ENSG00000224649       ENST00000430001 ENSE00001626475
48    ENSG00000273464       ENST00000608759 ENSE00003708634
49    ENSG00000237594       ENST00000433071 ENSE00001780130
50    ENSG00000237594       ENST00000433071 ENSE00001760430
51    ENSG00000273271       ENST00000609934 ENSE00003710598
52    ENSG00000232623       ENST00000450936 ENSE00001645979
53    ENSG00000232623       ENST00000450936 ENSE00001731915
54    ENSG00000232360       ENST00000427911 ENSE00001675851
55    ENSG00000232360       ENST00000427911 ENSE00001597049
56    ENSG00000227757       ENST00000454622 ENSE00001684089
57    ENSG00000227757       ENST00000454622 ENSE00001688113
58    ENSG00000226433       ENST00000450830 ENSE00001705702
59    ENSG00000226433       ENST00000450830 ENSE00001591842
60    ENSG00000231355       ENST00000450928 ENSE00001709990
61    ENSG00000231355       ENST00000450928 ENSE00002416797
62    ENSG00000231355       ENST00000450928 ENSE00001592400
63    ENSG00000225555       ENST00000440403 ENSE00001655354
64    ENSG00000225555       ENST00000440403 ENSE00001790510
65    ENSG00000236677       ENST00000436303 ENSE00001711920
66    ENSG00000236677       ENST00000436303 ENSE00001788299
67    ENSG00000236677       ENST00000436303 ENSE00001650043
68    ENSG00000273199       ENST00000608391 ENSE00003710961
69    ENSG00000230479       ENST00000429588 ENSE00001669981
70    ENSG00000230479       ENST00000429588 ENSE00001614612
71    ENSG00000233818       ENST00000428667 ENSE00001783093
72    ENSG00000233818       ENST00000428667 ENSE00001763882
73    ENSG00000233818       ENST00000454980 ENSE00001684997
74    ENSG00000233818       ENST00000454980 ENSE00001678542
75    ENSG00000224269       ENST00000430607 ENSE00001664825
76    ENSG00000224269       ENST00000430607 ENSE00001641594
77    ENSG00000272948       ENST00000608405 ENSE00003705623
78    ENSG00000273210       ENST00000608783 ENSE00003705388
79    ENSG00000272991       ENST00000608767 ENSE00003704680
80    ENSG00000225745       ENST00000430327 ENSE00002046002
81    ENSG00000225745       ENST00000430327 ENSE00001802711
82    ENSG00000225745       ENST00000430327 ENSE00002081182
83    ENSG00000225745       ENST00000440221 ENSE00001802711
84    ENSG00000225745       ENST00000440221 ENSE00002087631
85    ENSG00000225745       ENST00000440221 ENSE00003463767
86    ENSG00000225745       ENST00000440221 ENSE00001693577
87    ENSG00000225745       ENST00000414699 ENSE00001752363
88    ENSG00000225745       ENST00000414699 ENSE00001753386
89    ENSG00000225745       ENST00000414699 ENSE00001690352
90    ENSG00000228318       ENST00000411427 ENSE00003718873
91    ENSG00000228318       ENST00000411427 ENSE00001774186
92    ENSG00000228318       ENST00000411427 ENSE00001786815
93    ENSG00000236883       ENST00000423276 ENSE00001804657
94    ENSG00000236883       ENST00000423276 ENSE00001669381
95    ENSG00000236545       ENST00000458654 ENSE00001729372
96    ENSG00000236545       ENST00000458654 ENSE00001673061
97    ENSG00000235772       ENST00000442605 ENSE00001756591
98    ENSG00000235772       ENST00000442605 ENSE00001668551
99    ENSG00000235023       ENST00000424890 ENSE00001780885
100   ENSG00000235023       ENST00000424890 ENSE00001633485
101   ENSG00000225731       ENST00000437426 ENSE00001676523
102   ENSG00000225731       ENST00000437426 ENSE00001709447
103   ENSG00000224100       ENST00000428410 ENSE00001701367
104   ENSG00000224100       ENST00000428410 ENSE00001759374
105   ENSG00000232124       ENST00000437557 ENSE00001601966
106   ENSG00000232124       ENST00000437557 ENSE00001612223
107   ENSG00000232010       ENST00000442785 ENSE00001615938
108   ENSG00000232010       ENST00000442785 ENSE00001605285
109   ENSG00000184441       ENST00000448927 ENSE00001732904
110   ENSG00000184441       ENST00000448927 ENSE00001701875
111   ENSG00000232969       ENST00000426029 ENSE00001737329
112   ENSG00000232969       ENST00000426029 ENSE00001772801
113   ENSG00000272825       ENST00000609953 ENSE00003708308
114   ENSG00000228355       ENST00000456613 ENSE00001737459
115   ENSG00000228355       ENST00000456613 ENSE00001675349
116   ENSG00000228355       ENST00000416468 ENSE00001783160
117   ENSG00000228355       ENST00000416468 ENSE00001653059
118   ENSG00000275139       ENST00000617854 ENSE00003716006
119   ENSG00000205424       ENST00000380008 ENSE00001483375
120   ENSG00000205424       ENST00000380008 ENSE00001483374
121   ENSG00000205424       ENST00000380008 ENSE00001483372
122   ENSG00000227438       ENST00000454245 ENSE00001776573
123   ENSG00000227438       ENST00000454245 ENSE00001661271
124   ENSG00000228404       ENST00000415026 ENSE00001804194
125   ENSG00000228404       ENST00000415026 ENSE00001732405
126   ENSG00000223901       ENST00000418029 ENSE00001619066
127   ENSG00000223901       ENST00000418029 ENSE00003773090
128   ENSG00000223901       ENST00000626933 ENSE00003770624
129   ENSG00000223901       ENST00000626933 ENSE00001656573
130   ENSG00000223901       ENST00000626933 ENSE00003767484
131   ENSG00000223901       ENST00000626933 ENSE00003760665
132   ENSG00000228137       ENST00000444966 ENSE00001791667
133   ENSG00000228137       ENST00000444966 ENSE00001740737
134   ENSG00000239415       ENST00000447037 ENSE00001750338
135   ENSG00000239415       ENST00000447037 ENSE00001666775
136   ENSG00000239415       ENST00000430259 ENSE00001774125
137   ENSG00000239415       ENST00000430259 ENSE00001700485
138   ENSG00000279669       ENST00000623753 ENSE00003756545
139   ENSG00000279669       ENST00000623753 ENSE00003758742
140   ENSG00000274333       ENST00000619252 ENSE00003757879
141   ENSG00000274333       ENST00000619252 ENSE00003736165
142   ENSG00000274333       ENST00000619252 ENSE00003725700
143   ENSG00000274333       ENST00000623449 ENSE00003736165
144   ENSG00000274333       ENST00000623449 ENSE00003758277
145   ENSG00000274333       ENST00000623449 ENSE00003758960
146   ENSG00000274333       ENST00000623449 ENSE00003758361
147   ENSG00000274333       ENST00000623436 ENSE00003759200
148   ENSG00000274333       ENST00000623436 ENSE00003758019
149   ENSG00000274333       ENST00000624627 ENSE00003736165
150   ENSG00000274333       ENST00000624627 ENSE00003759200
151   ENSG00000274333       ENST00000624627 ENSE00003760163
152   ENSG00000274333       ENST00000624627 ENSE00003758631
153   ENSG00000274333       ENST00000624368 ENSE00003736165
154   ENSG00000274333       ENST00000624368 ENSE00003760225
155   ENSG00000274333       ENST00000624368 ENSE00003757773
156   ENSG00000274333       ENST00000624368 ENSE00003756099
157   ENSG00000274333       ENST00000624368 ENSE00003756549
158   ENSG00000274333       ENST00000623914 ENSE00003736165
159   ENSG00000274333       ENST00000623914 ENSE00003756099
160   ENSG00000274333       ENST00000623914 ENSE00003759834
161   ENSG00000274333       ENST00000623914 ENSE00003756599
162   ENSG00000274333       ENST00000624516 ENSE00003759216
163   ENSG00000274333       ENST00000624516 ENSE00003760051
164   ENSG00000274333       ENST00000624412 ENSE00003736165
165   ENSG00000274333       ENST00000624412 ENSE00003743849
166   ENSG00000274333       ENST00000624412 ENSE00003759693
167   ENSG00000274333       ENST00000622939 ENSE00003736165
168   ENSG00000274333       ENST00000622939 ENSE00003755533
169   ENSG00000274333       ENST00000622939 ENSE00003756887
170   ENSG00000274333       ENST00000622939 ENSE00003756347
171   ENSG00000274333       ENST00000623050 ENSE00003736165
172   ENSG00000274333       ENST00000623050 ENSE00003757026
173   ENSG00000274333       ENST00000623050 ENSE00003759657
174   ENSG00000274333       ENST00000624444 ENSE00003757240
175   ENSG00000274333       ENST00000624444 ENSE00003756530
176   ENSG00000274333       ENST00000623887 ENSE00003757844
177   ENSG00000274333       ENST00000623887 ENSE00003756828
178   ENSG00000274333       ENST00000611026 ENSE00003717842
179   ENSG00000274333       ENST00000611026 ENSE00003740631
180   ENSG00000279784       ENST00000623587 ENSE00003758868
181   ENSG00000279784       ENST00000623587 ENSE00003757033
182   ENSG00000279064       ENST00000623723 ENSE00003758212
183   ENSG00000279064       ENST00000623723 ENSE00003756092
184   ENSG00000280095       ENST00000623983 ENSE00003755041
185   ENSG00000280095       ENST00000623983 ENSE00003758873
186   ENSG00000280179       ENST00000623297 ENSE00003759249
187   ENSG00000280179       ENST00000623297 ENSE00003757797
188   ENSG00000280179       ENST00000623297 ENSE00003756788
189   ENSG00000280179       ENST00000624872 ENSE00003760322
190   ENSG00000280179       ENST00000624872 ENSE00003759178
191   ENSG00000280179       ENST00000624872 ENSE00003755582
192   ENSG00000280179       ENST00000624872 ENSE00003759999
193   ENSG00000275496       ENST00000621924 ENSE00003755171
194   ENSG00000275496       ENST00000621924 ENSE00003757852
195   ENSG00000275496       ENST00000621924 ENSE00003737671
196   ENSG00000275496       ENST00000621924 ENSE00003742977
197   ENSG00000275496       ENST00000617746 ENSE00003737671
198   ENSG00000275496       ENST00000617746 ENSE00003748268
199   ENSG00000275496       ENST00000617746 ENSE00003755479
200   ENSG00000275496       ENST00000624446 ENSE00003760365
201   ENSG00000275496       ENST00000624446 ENSE00003756748
202   ENSG00000275496       ENST00000623405 ENSE00003758844
203   ENSG00000275496       ENST00000623405 ENSE00003759109
204   ENSG00000275496       ENST00000623405 ENSE00003755640
205   ENSG00000275496       ENST00000623575 ENSE00003737671
206   ENSG00000275496       ENST00000623575 ENSE00003758900
207   ENSG00000275496       ENST00000623575 ENSE00003758450
208   ENSG00000275496       ENST00000623506 ENSE00003737671
209   ENSG00000275496       ENST00000623506 ENSE00003759109
210   ENSG00000275496       ENST00000623506 ENSE00003756171
211   ENSG00000275496       ENST00000623506 ENSE00003757693
212   ENSG00000275496       ENST00000619488 ENSE00003725671
213   ENSG00000275496       ENST00000619488 ENSE00003721031
214   ENSG00000278903       ENST00000624576 ENSE00003759444
215   ENSG00000278903       ENST00000624576 ENSE00003758561
216   ENSG00000278903       ENST00000624576 ENSE00003755138
217   ENSG00000278903       ENST00000624576 ENSE00003755215
218   ENSG00000278903       ENST00000623738 ENSE00003759419
219   ENSG00000278903       ENST00000623738 ENSE00003759766
220   ENSG00000278903       ENST00000623738 ENSE00003756017
221   ENSG00000278903       ENST00000623738 ENSE00003757618
222   ENSG00000278903       ENST00000623989 ENSE00003759766
223   ENSG00000278903       ENST00000623989 ENSE00003755719
224   ENSG00000278903       ENST00000623989 ENSE00003759266
225   ENSG00000278903       ENST00000624165 ENSE00003755138
226   ENSG00000278903       ENST00000624165 ENSE00003755719
227   ENSG00000278903       ENST00000624165 ENSE00003760095
228   ENSG00000278903       ENST00000624847 ENSE00003757672
229   ENSG00000278903       ENST00000624847 ENSE00003758864
230   ENSG00000278903       ENST00000624847 ENSE00003760072
231   ENSG00000278903       ENST00000624847 ENSE00003755945
232   ENSG00000278927       ENST00000623896 ENSE00003757836
233   ENSG00000278927       ENST00000623896 ENSE00003757781
234   ENSG00000278927       ENST00000623896 ENSE00003755470
235   ENSG00000278878       ENST00000623225 ENSE00003758909
236   ENSG00000278878       ENST00000623225 ENSE00003757409
237   ENSG00000278878       ENST00000623225 ENSE00003755609
238   ENSG00000278878       ENST00000624181 ENSE00003755726
239   ENSG00000278878       ENST00000624181 ENSE00003759608
240   ENSG00000280145       ENST00000623047 ENSE00003758092
241   ENSG00000280145       ENST00000623047 ENSE00003760016
242   ENSG00000280145       ENST00000623106 ENSE00003759956
243   ENSG00000280145       ENST00000623106 ENSE00003757847
244   ENSG00000280145       ENST00000623106 ENSE00003755212
245   ENSG00000280145       ENST00000625185 ENSE00003757847
246   ENSG00000280145       ENST00000625185 ENSE00003755212
247   ENSG00000280145       ENST00000625185 ENSE00003760371
248   ENSG00000280145       ENST00000625185 ENSE00003759895
249   ENSG00000280145       ENST00000624846 ENSE00003757847
250   ENSG00000280145       ENST00000624846 ENSE00003759813
251   ENSG00000280145       ENST00000624846 ENSE00003758976
252   ENSG00000280145       ENST00000623313 ENSE00003759437
253   ENSG00000280145       ENST00000623313 ENSE00003755575
254   ENSG00000280145       ENST00000623313 ENSE00003759281
255   ENSG00000280145       ENST00000623313 ENSE00003758859
256   ENSG00000280145       ENST00000623950 ENSE00003757847
257   ENSG00000280145       ENST00000623950 ENSE00003757374
258   ENSG00000280145       ENST00000623950 ENSE00003760131
259   ENSG00000280145       ENST00000624965 ENSE00003759895
260   ENSG00000280145       ENST00000624965 ENSE00003755769
261   ENSG00000280145       ENST00000624965 ENSE00003757593
262   ENSG00000280145       ENST00000623324 ENSE00003758265
263   ENSG00000280145       ENST00000623324 ENSE00003754969
264   ENSG00000280145       ENST00000623324 ENSE00003757787
265   ENSG00000280164       ENST00000623892 ENSE00003756227
266   ENSG00000280164       ENST00000623892 ENSE00003757738
267   ENSG00000280164       ENST00000623892 ENSE00003759013
268   ENSG00000279998       ENST00000623678 ENSE00003757566
269   ENSG00000279998       ENST00000623678 ENSE00003760176
270   ENSG00000279998       ENST00000623678 ENSE00003757437
271   ENSG00000278955       ENST00000624937 ENSE00003759173
272   ENSG00000278955       ENST00000624937 ENSE00003758401
273   ENSG00000278955       ENST00000624937 ENSE00003759923
274   ENSG00000279751       ENST00000623720 ENSE00003756925
275   ENSG00000279751       ENST00000623720 ENSE00003756884
276   ENSG00000279313       ENST00000623347 ENSE00003756510
277   ENSG00000279313       ENST00000623347 ENSE00003757157
278   ENSG00000279313       ENST00000623347 ENSE00003755088
279   ENSG00000280018       ENST00000623165 ENSE00003755095
280   ENSG00000280018       ENST00000623165 ENSE00003756164
281   ENSG00000280018       ENST00000623165 ENSE00003755730
282   ENSG00000280018       ENST00000623165 ENSE00003756792
283   ENSG00000280018       ENST00000623165 ENSE00003759370
284   ENSG00000280018       ENST00000624519 ENSE00003756164
285   ENSG00000280018       ENST00000624519 ENSE00003755773
286   ENSG00000280018       ENST00000624519 ENSE00003756359
287   ENSG00000280018       ENST00000624728 ENSE00003757442
288   ENSG00000280018       ENST00000624728 ENSE00003757990
289   ENSG00000280018       ENST00000624728 ENSE00003758270
290   ENSG00000278884       ENST00000625184 ENSE00003759051
291   ENSG00000278884       ENST00000625184 ENSE00003755035
292   ENSG00000277067       ENST00000623095 ENSE00003755511
293   ENSG00000277067       ENST00000623095 ENSE00003756819
294   ENSG00000277067       ENST00000623095 ENSE00003744303
295   ENSG00000277067       ENST00000623095 ENSE00003757948
296   ENSG00000277067       ENST00000622911 ENSE00003758925
297   ENSG00000277067       ENST00000622911 ENSE00003759116
298   ENSG00000277067       ENST00000622911 ENSE00003755901
299   ENSG00000277067       ENST00000621909 ENSE00003744303
300   ENSG00000277067       ENST00000621909 ENSE00003728829
301   ENSG00000277067       ENST00000621909 ENSE00003757247
302   ENSG00000277067       ENST00000623394 ENSE00003744303
303   ENSG00000277067       ENST00000623394 ENSE00003759476
304   ENSG00000277067       ENST00000623394 ENSE00003757804
305   ENSG00000277067       ENST00000623394 ENSE00003760366
306   ENSG00000277067       ENST00000624310 ENSE00003744303
307   ENSG00000277067       ENST00000624310 ENSE00003755219
308   ENSG00000277067       ENST00000624310 ENSE00003758184
309   ENSG00000277067       ENST00000615804 ENSE00003751287
310   ENSG00000277067       ENST00000615804 ENSE00003734211
311   ENSG00000276077       ENST00000617062 ENSE00003758495
312   ENSG00000276077       ENST00000617062 ENSE00003714683
313   ENSG00000276077       ENST00000617062 ENSE00003760086
314   ENSG00000276077       ENST00000617062 ENSE00003743759
315   ENSG00000276077       ENST00000625096 ENSE00003714683
316   ENSG00000276077       ENST00000625096 ENSE00003755228
317   ENSG00000276077       ENST00000625096 ENSE00003756892
318   ENSG00000276077       ENST00000625096 ENSE00003758988
319   ENSG00000276077       ENST00000624791 ENSE00003758810
320   ENSG00000276077       ENST00000624791 ENSE00003760207
321   ENSG00000276077       ENST00000624791 ENSE00003756562
322   ENSG00000276077       ENST00000624907 ENSE00003714683
323   ENSG00000276077       ENST00000624907 ENSE00003755312
324   ENSG00000276077       ENST00000624907 ENSE00003758007
325   ENSG00000276077       ENST00000624907 ENSE00003757036
326   ENSG00000276077       ENST00000624461 ENSE00003714683
327   ENSG00000276077       ENST00000624461 ENSE00003759418
328   ENSG00000276077       ENST00000624461 ENSE00003757513
329   ENSG00000276077       ENST00000625115 ENSE00003714683
330   ENSG00000276077       ENST00000625115 ENSE00003755909
331   ENSG00000276077       ENST00000625115 ENSE00003757647
332   ENSG00000276077       ENST00000610988 ENSE00003752093
333   ENSG00000276077       ENST00000610988 ENSE00003712260
334   ENSG00000277991       ENST00000623374 ENSE00003759286
335   ENSG00000277991       ENST00000623374 ENSE00003758559
336   ENSG00000277991       ENST00000624633 ENSE00003758521
337   ENSG00000277991       ENST00000624633 ENSE00003756225
338   ENSG00000277991       ENST00000624633 ENSE00003756579
339   ENSG00000277991       ENST00000623190 ENSE00003751082
340   ENSG00000277991       ENST00000623190 ENSE00003759947
341   ENSG00000277991       ENST00000623637 ENSE00003757494
342   ENSG00000277991       ENST00000623637 ENSE00003757831
343   ENSG00000277991       ENST00000623783 ENSE00003756063
344   ENSG00000277991       ENST00000623783 ENSE00003756532
345   ENSG00000277991       ENST00000625005 ENSE00003756225
346   ENSG00000277991       ENST00000625005 ENSE00003759056
347   ENSG00000277991       ENST00000625005 ENSE00003758752
348   ENSG00000277991       ENST00000625005 ENSE00003756544
349   ENSG00000277991       ENST00000623797 ENSE00003756225
350   ENSG00000277991       ENST00000623797 ENSE00003758872
351   ENSG00000277991       ENST00000623797 ENSE00003759857
352   ENSG00000277991       ENST00000623643 ENSE00003756225
353   ENSG00000277991       ENST00000623643 ENSE00003757556
354   ENSG00000277991       ENST00000623643 ENSE00003755671
355   ENSG00000280800       ENST00000631211 ENSE00003763487
356   ENSG00000278996       ENST00000623664 ENSE00003755016
357   ENSG00000278996       ENST00000623664 ENSE00003756341
358   ENSG00000278996       ENST00000623664 ENSE00003759596
359   ENSG00000278996       ENST00000623664 ENSE00003754954
360   ENSG00000278996       ENST00000623664 ENSE00003759620
361   ENSG00000278996       ENST00000623664 ENSE00003758298
362   ENSG00000278996       ENST00000623664 ENSE00003757619
363   ENSG00000281383       ENST00000629969 ENSE00003768347
364   ENSG00000280614       ENST00000625598 ENSE00003762709
365   ENSG00000280441       ENST00000623860 ENSE00003778050
366   ENSG00000280441       ENST00000623860 ENSE00003757769
367   ENSG00000280441       ENST00000623860 ENSE00003756013
368   ENSG00000280441       ENST00000623860 ENSE00003755168
369   ENSG00000280441       ENST00000623860 ENSE00003757460
370   ENSG00000280441       ENST00000623860 ENSE00003755829
371   ENSG00000280441       ENST00000623860 ENSE00003755242
372   ENSG00000281181       ENST00000627981 ENSE00003767995
373   ENSG00000279501       ENST00000623236 ENSE00003758547
374   ENSG00000279501       ENST00000623236 ENSE00003755361
375   ENSG00000278932       ENST00000622961 ENSE00003758425
376   ENSG00000278932       ENST00000622961 ENSE00003757376
377   ENSG00000278932       ENST00000622961 ENSE00003755531
378   ENSG00000278932       ENST00000622961 ENSE00003759392
379   ENSG00000278932       ENST00000622961 ENSE00003757091
380   ENSG00000278932       ENST00000622961 ENSE00003757885
381   ENSG00000278932       ENST00000622995 ENSE00003756331
382   ENSG00000278932       ENST00000622995 ENSE00003758843
383   ENSG00000278932       ENST00000625153 ENSE00003755531
384   ENSG00000278932       ENST00000625153 ENSE00003755604
385   ENSG00000278932       ENST00000625153 ENSE00003758597
386   ENSG00000278932       ENST00000625153 ENSE00003758394
387   ENSG00000278932       ENST00000625153 ENSE00003758871
388   ENSG00000278932       ENST00000624052 ENSE00003755531
389   ENSG00000278932       ENST00000624052 ENSE00003756373
390   ENSG00000278932       ENST00000624052 ENSE00003757335
391   ENSG00000278932       ENST00000623409 ENSE00003756021
392   ENSG00000278932       ENST00000623409 ENSE00003755461
393   ENSG00000278932       ENST00000624162 ENSE00003758843
394   ENSG00000278932       ENST00000624162 ENSE00003758698
395   ENSG00000279321       ENST00000624226 ENSE00003756791
396   ENSG00000279321       ENST00000624226 ENSE00003756333
397   ENSG00000279321       ENST00000623559 ENSE00003757411
398   ENSG00000279321       ENST00000623559 ENSE00003756388
399   ENSG00000279321       ENST00000623559 ENSE00003758158
400   ENSG00000279851       ENST00000623370 ENSE00003758722
401   ENSG00000279851       ENST00000623370 ENSE00003755764
402   ENSG00000277693       ENST00000622592 ENSE00003717148
403   ENSG00000277693       ENST00000622592 ENSE00003714071
404   ENSG00000277693       ENST00000622592 ENSE00003720003
405   ENSG00000277693       ENST00000622592 ENSE00003716827
406   ENSG00000277693       ENST00000616952 ENSE00003740779
407   ENSG00000277693       ENST00000616952 ENSE00003726864
408   ENSG00000229306       ENST00000457565 ENSE00001750426
409   ENSG00000229306       ENST00000457565 ENSE00001773544
410   ENSG00000280108       ENST00000624445 ENSE00003756290
411   ENSG00000280108       ENST00000624445 ENSE00003755158
412   ENSG00000224922       ENST00000444356 ENSE00001643453
413   ENSG00000224922       ENST00000444356 ENSE00001800469
414   ENSG00000232884       ENST00000455253 ENSE00001663190
415   ENSG00000232884       ENST00000455253 ENSE00003193594
416   ENSG00000232884       ENST00000455253 ENSE00001726636
417   ENSG00000232884       ENST00000454128 ENSE00003193594
418   ENSG00000232884       ENST00000454128 ENSE00001650037
419   ENSG00000232884       ENST00000454128 ENSE00003041661
420   ENSG00000226751       ENST00000435315 ENSE00001639774
421   ENSG00000226751       ENST00000435315 ENSE00001755813
422   ENSG00000281903       ENST00000630354 ENSE00003771565
423   ENSG00000281903       ENST00000630354 ENSE00003773266
424   ENSG00000281903       ENST00000593619 ENSE00003177498
425   ENSG00000281903       ENST00000627623 ENSE00003763131
426   ENSG00000281903       ENST00000627623 ENSE00003765785
427   ENSG00000281903       ENST00000627623 ENSE00003764269
428   ENSG00000281903       ENST00000630211 ENSE00003765785
429   ENSG00000281903       ENST00000630211 ENSE00003768870
430   ENSG00000281903       ENST00000630211 ENSE00003761914
431   ENSG00000281903       ENST00000630211 ENSE00003764202
432   ENSG00000281903       ENST00000630211 ENSE00003766821
433   ENSG00000281903       ENST00000630211 ENSE00003760619
434   ENSG00000281903       ENST00000625278 ENSE00003765785
435   ENSG00000281903       ENST00000625278 ENSE00003766821
436   ENSG00000281903       ENST00000625278 ENSE00003760619
437   ENSG00000281903       ENST00000625278 ENSE00003770108
438   ENSG00000281903       ENST00000412426 ENSE00003766821
439   ENSG00000281903       ENST00000412426 ENSE00001686725
440   ENSG00000281903       ENST00000412426 ENSE00001663376
441   ENSG00000281903       ENST00000412426 ENSE00001746958
442   ENSG00000281903       ENST00000418954 ENSE00003766821
443   ENSG00000281903       ENST00000418954 ENSE00001700572
444   ENSG00000281903       ENST00000418954 ENSE00001662129
445   ENSG00000235609       ENST00000432230 ENSE00003761756
446   ENSG00000235609       ENST00000432230 ENSE00003768951
447   ENSG00000235609       ENST00000432230 ENSE00001784162
448   ENSG00000235609       ENST00000432230 ENSE00001699663
449   ENSG00000236471       ENST00000449746 ENSE00001682401
450   ENSG00000236471       ENST00000449746 ENSE00001752929
451   ENSG00000224247       ENST00000433588 ENSE00001623810
452   ENSG00000224247       ENST00000433588 ENSE00001795303
453   ENSG00000229425       ENST00000634642 ENSE00003787504
454   ENSG00000229425       ENST00000634642 ENSE00001659140
455   ENSG00000229425       ENST00000634642 ENSE00001710474
456   ENSG00000229425       ENST00000634642 ENSE00001638527
457   ENSG00000229425       ENST00000634642 ENSE00001728799
458   ENSG00000229425       ENST00000634642 ENSE00001654015
459   ENSG00000229425       ENST00000634642 ENSE00003788545
460   ENSG00000229425       ENST00000634644 ENSE00001710474
461   ENSG00000229425       ENST00000634644 ENSE00001654015
462   ENSG00000229425       ENST00000634644 ENSE00003788545
463   ENSG00000229425       ENST00000634644 ENSE00003786644
464   ENSG00000229425       ENST00000634644 ENSE00003784445
465   ENSG00000229425       ENST00000634644 ENSE00003785585
466   ENSG00000229425       ENST00000634644 ENSE00003788898
467   ENSG00000229425       ENST00000634644 ENSE00003787463
468   ENSG00000229425       ENST00000634644 ENSE00003789087
469   ENSG00000229425       ENST00000634644 ENSE00003784411
470   ENSG00000229425       ENST00000634644 ENSE00003787546
471   ENSG00000229425       ENST00000634644 ENSE00003789925
472   ENSG00000229425       ENST00000634708 ENSE00001659140
473   ENSG00000229425       ENST00000634708 ENSE00001710474
474   ENSG00000229425       ENST00000634708 ENSE00001638527
475   ENSG00000229425       ENST00000634708 ENSE00001728799
476   ENSG00000229425       ENST00000634708 ENSE00001654015
477   ENSG00000229425       ENST00000634708 ENSE00003786644
478   ENSG00000229425       ENST00000634708 ENSE00003784445
479   ENSG00000229425       ENST00000634708 ENSE00003787463
480   ENSG00000229425       ENST00000634708 ENSE00003790470
481   ENSG00000229425       ENST00000634708 ENSE00003790678
482   ENSG00000229425       ENST00000635621 ENSE00001659140
483   ENSG00000229425       ENST00000635621 ENSE00001710474
484   ENSG00000229425       ENST00000635621 ENSE00001638527
485   ENSG00000229425       ENST00000635621 ENSE00001654015
486   ENSG00000229425       ENST00000635621 ENSE00003785396
487   ENSG00000229425       ENST00000635621 ENSE00003784346
488   ENSG00000229425       ENST00000635621 ENSE00003785759
489   ENSG00000229425       ENST00000635621 ENSE00003785824
490   ENSG00000229425       ENST00000635621 ENSE00003788384
491   ENSG00000229425       ENST00000635621 ENSE00003788904
492   ENSG00000229425       ENST00000635621 ENSE00003787721
493   ENSG00000229425       ENST00000635225 ENSE00001659140
494   ENSG00000229425       ENST00000635225 ENSE00001710474
495   ENSG00000229425       ENST00000635225 ENSE00001638527
496   ENSG00000229425       ENST00000635225 ENSE00001728799
497   ENSG00000229425       ENST00000635225 ENSE00001654015
498   ENSG00000229425       ENST00000635225 ENSE00003784346
499   ENSG00000229425       ENST00000635225 ENSE00003791250
500   ENSG00000229425       ENST00000635225 ENSE00003789706
501   ENSG00000229425       ENST00000635225 ENSE00003788895
502   ENSG00000229425       ENST00000449602 ENSE00001659140
503   ENSG00000229425       ENST00000449602 ENSE00001710474
504   ENSG00000229425       ENST00000449602 ENSE00001638527
505   ENSG00000229425       ENST00000449602 ENSE00001728799
506   ENSG00000229425       ENST00000449602 ENSE00001654015
507   ENSG00000229425       ENST00000449602 ENSE00001721949
508   ENSG00000229425       ENST00000449602 ENSE00001624296
509   ENSG00000229425       ENST00000634659 ENSE00003788054
510   ENSG00000229425       ENST00000634659 ENSE00003787313
511   ENSG00000229425       ENST00000634659 ENSE00003789939
512   ENSG00000229425       ENST00000635525 ENSE00003784445
513   ENSG00000229425       ENST00000635525 ENSE00003788533
514   ENSG00000229425       ENST00000635525 ENSE00003791346
515   ENSG00000229425       ENST00000634853 ENSE00003784445
516   ENSG00000229425       ENST00000634853 ENSE00003790803
517   ENSG00000229425       ENST00000634853 ENSE00003790018
518   ENSG00000229425       ENST00000634853 ENSE00003790759
519   ENSG00000229425       ENST00000634853 ENSE00003788312
520   ENSG00000229425       ENST00000635684 ENSE00003784445
521   ENSG00000229425       ENST00000635684 ENSE00003790018
522   ENSG00000229425       ENST00000635684 ENSE00003787372
523   ENSG00000229425       ENST00000635684 ENSE00003787928
524   ENSG00000270071       ENST00000602921 ENSE00003431949
525   ENSG00000270071       ENST00000602921 ENSE00003279300
526   ENSG00000270071       ENST00000602921 ENSE00003354180
527   ENSG00000270139       ENST00000602454 ENSE00003308634
528   ENSG00000270139       ENST00000602454 ENSE00003315556
529   ENSG00000270139       ENST00000602454 ENSE00003259208
530   ENSG00000269950       ENST00000602654 ENSE00003340104
531   ENSG00000269950       ENST00000602654 ENSE00003317403
532   ENSG00000228798       ENST00000413645 ENSE00001665029
533   ENSG00000228798       ENST00000413645 ENSE00001597851
534   ENSG00000228798       ENST00000438762 ENSE00001804332
535   ENSG00000228798       ENST00000438762 ENSE00001712871
536   ENSG00000270093       ENST00000602659 ENSE00003298469
537   ENSG00000237735       ENST00000444868 ENSE00001602968
538   ENSG00000237735       ENST00000444868 ENSE00001745431
539   ENSG00000237735       ENST00000444868 ENSE00001776707
540   ENSG00000232886       ENST00000430064 ENSE00001605591
541   ENSG00000232886       ENST00000430064 ENSE00001803577
542   ENSG00000232886       ENST00000430064 ENSE00001711567
543   ENSG00000232886       ENST00000430064 ENSE00001638800
544   ENSG00000226956       ENST00000416641 ENSE00001635320
545   ENSG00000226956       ENST00000416641 ENSE00001696952
546   ENSG00000227330       ENST00000432412 ENSE00001782362
547   ENSG00000227330       ENST00000432412 ENSE00001637854
548   ENSG00000227330       ENST00000432412 ENSE00001734485
549   ENSG00000227330       ENST00000432412 ENSE00001631862
550   ENSG00000227330       ENST00000432412 ENSE00001682792
551   ENSG00000230233       ENST00000416002 ENSE00001681783
552   ENSG00000230233       ENST00000416002 ENSE00001717663
553   ENSG00000230233       ENST00000416002 ENSE00001657570
554   ENSG00000232193       ENST00000440372 ENSE00001751294
555   ENSG00000232193       ENST00000440372 ENSE00001747157
556   ENSG00000226204       ENST00000449840 ENSE00001636608
557   ENSG00000226204       ENST00000449840 ENSE00001659767
558   ENSG00000235965       ENST00000450653 ENSE00001668592
559   ENSG00000235965       ENST00000450653 ENSE00001613169
560   ENSG00000229289       ENST00000424219 ENSE00001764290
561   ENSG00000229289       ENST00000424219 ENSE00001666620
562   ENSG00000231620       ENST00000433210 ENSE00001802701
563   ENSG00000231620       ENST00000433210 ENSE00001729938
564   ENSG00000233236       ENST00000436373 ENSE00001642062
565   ENSG00000233236       ENST00000436373 ENSE00001598199
566   ENSG00000234730       ENST00000428205 ENSE00001609710
567   ENSG00000234730       ENST00000428205 ENSE00001712433
568   ENSG00000237527       ENST00000416182 ENSE00001772345
569   ENSG00000237527       ENST00000416182 ENSE00001792306
570   ENSG00000237527       ENST00000416182 ENSE00001749247
571   ENSG00000237527       ENST00000416182 ENSE00001690468
572   ENSG00000237527       ENST00000416182 ENSE00001726600
573   ENSG00000227075       ENST00000452500 ENSE00001794925
574   ENSG00000227075       ENST00000452500 ENSE00001685738
575   ENSG00000227075       ENST00000452500 ENSE00001616092
576   ENSG00000226043       ENST00000444130 ENSE00001742793
577   ENSG00000226043       ENST00000444130 ENSE00001716227
578   ENSG00000226043       ENST00000444130 ENSE00001672780
579   ENSG00000234034       ENST00000441759 ENSE00001616558
580   ENSG00000234034       ENST00000441759 ENSE00001754672
581   ENSG00000234034       ENST00000441759 ENSE00001788920
582   ENSG00000230972       ENST00000421604 ENSE00001649771
583   ENSG00000230972       ENST00000421604 ENSE00001709811
584   ENSG00000230972       ENST00000421604 ENSE00001665289
585   ENSG00000230972       ENST00000421604 ENSE00001669384
586   ENSG00000230972       ENST00000421604 ENSE00001638286
587   ENSG00000228592       ENST00000262354 ENSE00001610852
588   ENSG00000228592       ENST00000262354 ENSE00001599920
589   ENSG00000228592       ENST00000262354 ENSE00001654047
590   ENSG00000228592       ENST00000262354 ENSE00001687865
591   ENSG00000228592       ENST00000262354 ENSE00001530006
592   ENSG00000227716       ENST00000433101 ENSE00001603345
593   ENSG00000227716       ENST00000433101 ENSE00001748641
594   ENSG00000231986       ENST00000441465 ENSE00001736072
595   ENSG00000231986       ENST00000441465 ENSE00001634577
596   ENSG00000231986       ENST00000441465 ENSE00001686731
597   ENSG00000235564       ENST00000447405 ENSE00001739856
598   ENSG00000235564       ENST00000447405 ENSE00001601833
599   ENSG00000226996       ENST00000415269 ENSE00001680734
600   ENSG00000226996       ENST00000415269 ENSE00001723287
601   ENSG00000226996       ENST00000434859 ENSE00001680734
602   ENSG00000226996       ENST00000434859 ENSE00001595801
603   ENSG00000224018       ENST00000448063 ENSE00001778663
604   ENSG00000224018       ENST00000448063 ENSE00001623622
605   ENSG00000224018       ENST00000448063 ENSE00001774177
606   ENSG00000227090       ENST00000446404 ENSE00001773285
607   ENSG00000227090       ENST00000446404 ENSE00001742697
608   ENSG00000230379       ENST00000454182 ENSE00001725640
609   ENSG00000230379       ENST00000454182 ENSE00001714825
610   ENSG00000230379       ENST00000441666 ENSE00001714825
611   ENSG00000230379       ENST00000441666 ENSE00001660760
612   ENSG00000230379       ENST00000444178 ENSE00001714825
613   ENSG00000230379       ENST00000444178 ENSE00001608443
614   ENSG00000244278       ENST00000424017 ENSE00001675625
615   ENSG00000244278       ENST00000424017 ENSE00001756060
616   ENSG00000244278       ENST00000424017 ENSE00001653657
617   ENSG00000244278       ENST00000424017 ENSE00001707134
618   ENSG00000232512       ENST00000453802 ENSE00001606329
619   ENSG00000232512       ENST00000453802 ENSE00001698337
620   ENSG00000232512       ENST00000453802 ENSE00001758328
621   ENSG00000232512       ENST00000418942 ENSE00001758328
622   ENSG00000232512       ENST00000418942 ENSE00001759351
623   ENSG00000232512       ENST00000418942 ENSE00001644223
624   ENSG00000223870       ENST00000426609 ENSE00001710392
625   ENSG00000223870       ENST00000426609 ENSE00001691004
626   ENSG00000223870       ENST00000426609 ENSE00001662061
627   ENSG00000223870       ENST00000426609 ENSE00001615784
628   ENSG00000222042       ENST00000409758 ENSE00001581089
629   ENSG00000222042       ENST00000409758 ENSE00001584935
630   ENSG00000222042       ENST00000409758 ENSE00001580902
631   ENSG00000222042       ENST00000409758 ENSE00001582431
632   ENSG00000229962       ENST00000419694 ENSE00001756409
633   ENSG00000229962       ENST00000419694 ENSE00001669365
634   ENSG00000273492       ENST00000608591 ENSE00003704546
635   ENSG00000273492       ENST00000608591 ENSE00003705072
636   ENSG00000273492       ENST00000608591 ENSE00003708938
637   ENSG00000273492       ENST00000609365 ENSE00003705072
638   ENSG00000273492       ENST00000609365 ENSE00003706385
639   ENSG00000273492       ENST00000609365 ENSE00003706809
640   ENSG00000273492       ENST00000609365 ENSE00003706926
641   ENSG00000229025       ENST00000435878 ENSE00001635673
642   ENSG00000229025       ENST00000435878 ENSE00001755124
643   ENSG00000273115       ENST00000608410 ENSE00003706216
644   ENSG00000236332       ENST00000447384 ENSE00001736200
645   ENSG00000236332       ENST00000447384 ENSE00001708917
646   ENSG00000236332       ENST00000447384 ENSE00001705046
647   ENSG00000236332       ENST00000447384 ENSE00001732213
648   ENSG00000236332       ENST00000447384 ENSE00001784167
649   ENSG00000231236       ENST00000420186 ENSE00001659542
650   ENSG00000231236       ENST00000420186 ENSE00001674422
651   ENSG00000231236       ENST00000420186 ENSE00001702378
652   ENSG00000231236       ENST00000420186 ENSE00001737009
653   ENSG00000234083       ENST00000433344 ENSE00001790340
654   ENSG00000234083       ENST00000433344 ENSE00001511480
655   ENSG00000234083       ENST00000433344 ENSE00001740501
656   ENSG00000232855       ENST00000433310 ENSE00001638522
657   ENSG00000232855       ENST00000433310 ENSE00001745426
658   ENSG00000232855       ENST00000433310 ENSE00001782752
659   ENSG00000232855       ENST00000433310 ENSE00001711357
660   ENSG00000232855       ENST00000433310 ENSE00003703093
661   ENSG00000232855       ENST00000430247 ENSE00001711357
662   ENSG00000232855       ENST00000430247 ENSE00001757273
663   ENSG00000232855       ENST00000430247 ENSE00001674510
664   ENSG00000232855       ENST00000430247 ENSE00001739657
665   ENSG00000232855       ENST00000430247 ENSE00001748114
666   ENSG00000232855       ENST00000452028 ENSE00001621882
667   ENSG00000232855       ENST00000452028 ENSE00001755029
668   ENSG00000259981       ENST00000565564 ENSE00002602410
669   ENSG00000259981       ENST00000565564 ENSE00002594416
670   ENSG00000234509       ENST00000449339 ENSE00001704984
671   ENSG00000234509       ENST00000449339 ENSE00001711083
672   ENSG00000234509       ENST00000449339 ENSE00001553688
673   ENSG00000273091       ENST00000610276 ENSE00003708314
674   ENSG00000261610       ENST00000565959 ENSE00002613058
675   ENSG00000228961       ENST00000424837 ENSE00001798777
676   ENSG00000228961       ENST00000424837 ENSE00001673622
677   ENSG00000226527       ENST00000421051 ENSE00001778262
678   ENSG00000226527       ENST00000421051 ENSE00001650574
679   ENSG00000226527       ENST00000421051 ENSE00001640066
680   ENSG00000273102       ENST00000607953 ENSE00003707731
681   ENSG00000273102       ENST00000607953 ENSE00003706509
682   ENSG00000214955       ENST00000427022 ENSE00001683060
683   ENSG00000214955       ENST00000427022 ENSE00003703688
684   ENSG00000214955       ENST00000427022 ENSE00001595255
685   ENSG00000214955       ENST00000427022 ENSE00003702536
686   ENSG00000214955       ENST00000427022 ENSE00001691804
687   ENSG00000273104       ENST00000608665 ENSE00003706100
688   ENSG00000272958       ENST00000608289 ENSE00003707178
689   ENSG00000234703       ENST00000455028 ENSE00001623290
690   ENSG00000234703       ENST00000455028 ENSE00001764112
691   ENSG00000230794       ENST00000412240 ENSE00001667321
692   ENSG00000230794       ENST00000412240 ENSE00001690811
693   ENSG00000236119       ENST00000445464 ENSE00001680052
694   ENSG00000236119       ENST00000445464 ENSE00001712529
695   ENSG00000233393       ENST00000422473 ENSE00001713087
696   ENSG00000233393       ENST00000422473 ENSE00001723606
697   ENSG00000231324       ENST00000457669 ENSE00001613818
698   ENSG00000231324       ENST00000457669 ENSE00001671260
699   ENSG00000224790       ENST00000637940 ENSE00003797223
700   ENSG00000224790       ENST00000637940 ENSE00001792727
701   ENSG00000224790       ENST00000637940 ENSE00003797030
702   ENSG00000224790       ENST00000637940 ENSE00003800894
703   ENSG00000224790       ENST00000430068 ENSE00001792727
704   ENSG00000224790       ENST00000430068 ENSE00001755883
705   ENSG00000224790       ENST00000430068 ENSE00001741068
706   ENSG00000224790       ENST00000430068 ENSE00001675633
707   ENSG00000242553       ENST00000440629 ENSE00001611756
708   ENSG00000242553       ENST00000440629 ENSE00001775751
709   ENSG00000226012       ENST00000444977 ENSE00001622733
710   ENSG00000226012       ENST00000444977 ENSE00001723018
711   ENSG00000229986       ENST00000416842 ENSE00001774031
712   ENSG00000229986       ENST00000416842 ENSE00001650709
713   ENSG00000229925       ENST00000434589 ENSE00001730152
714   ENSG00000229925       ENST00000434589 ENSE00001761889
715   ENSG00000205622       ENST00000626259 ENSE00003767325
716   ENSG00000205622       ENST00000626259 ENSE00003767488
717   ENSG00000205622       ENST00000626259 ENSE00002440510
718   ENSG00000205622       ENST00000626259 ENSE00003761206
719   ENSG00000205622       ENST00000380931 ENSE00002440510
720   ENSG00000205622       ENST00000380931 ENSE00001543058
721   ENSG00000205622       ENST00000380931 ENSE00001543055
722   ENSG00000205622       ENST00000380931 ENSE00001486856
723   ENSG00000205622       ENST00000415824 ENSE00002440510
724   ENSG00000205622       ENST00000415824 ENSE00001593766
725   ENSG00000205622       ENST00000415824 ENSE00001718319
726   ENSG00000205622       ENST00000415824 ENSE00001635974
727   ENSG00000205622       ENST00000440379 ENSE00001717572
728   ENSG00000205622       ENST00000440379 ENSE00001739866
729   ENSG00000205622       ENST00000623098 ENSE00001543055
730   ENSG00000205622       ENST00000623098 ENSE00003758780
731   ENSG00000205622       ENST00000623098 ENSE00003759506
732   ENSG00000205622       ENST00000623098 ENSE00003757941
733   ENSG00000205622       ENST00000623098 ENSE00003757480
734   ENSG00000205622       ENST00000623098 ENSE00003755442
735   ENSG00000205622       ENST00000623098 ENSE00003722266
736   ENSG00000205622       ENST00000623098 ENSE00003756083
737   ENSG00000205622       ENST00000613045 ENSE00003722266
738   ENSG00000205622       ENST00000613045 ENSE00003726544
739   ENSG00000205622       ENST00000613045 ENSE00003735395
740   ENSG00000205622       ENST00000613045 ENSE00003729674
741   ENSG00000205622       ENST00000615324 ENSE00003717088
742   ENSG00000235888       ENST00000417335 ENSE00001688039
743   ENSG00000235888       ENST00000417335 ENSE00001602024
744   ENSG00000235888       ENST00000417335 ENSE00001798412
745   ENSG00000237721       ENST00000419664 ENSE00001724020
746   ENSG00000237721       ENST00000419664 ENSE00001448635
747   ENSG00000237721       ENST00000419664 ENSE00001795712
748   ENSG00000237609       ENST00000440714 ENSE00001647750
749   ENSG00000237609       ENST00000440714 ENSE00001777592
750   ENSG00000231713       ENST00000457325 ENSE00001726936
751   ENSG00000231713       ENST00000457325 ENSE00001751889
752   ENSG00000231713       ENST00000457325 ENSE00001686404
753   ENSG00000231713       ENST00000419826 ENSE00001793894
754   ENSG00000231713       ENST00000419826 ENSE00001657959
755   ENSG00000232806       ENST00000415820 ENSE00001720802
756   ENSG00000232806       ENST00000415820 ENSE00001665375
757   ENSG00000232806       ENST00000415820 ENSE00001653250
758   ENSG00000223400       ENST00000418874 ENSE00001613842
759   ENSG00000223400       ENST00000418874 ENSE00001647667
760   ENSG00000233754       ENST00000420273 ENSE00001656886
761   ENSG00000233754       ENST00000420273 ENSE00001724127
762   ENSG00000225218       ENST00000431150 ENSE00001753290
763   ENSG00000225218       ENST00000431150 ENSE00001683445
764   ENSG00000225218       ENST00000431150 ENSE00001661955
765   ENSG00000228120       ENST00000433840 ENSE00001606520
766   ENSG00000228120       ENST00000433840 ENSE00002229482
767   ENSG00000228120       ENST00000433840 ENSE00001622616
768   ENSG00000225637       ENST00000435702 ENSE00001758406
769   ENSG00000225637       ENST00000435702 ENSE00001619112
770   ENSG00000223975       ENST00000436359 ENSE00001643004
771   ENSG00000223975       ENST00000436359 ENSE00001609467
772   ENSG00000237604       ENST00000411956 ENSE00001692025
773   ENSG00000237604       ENST00000411956 ENSE00001737581
774   ENSG00000232698       ENST00000423967 ENSE00001685278
775   ENSG00000232698       ENST00000423967 ENSE00001758001
776   ENSG00000278158       ENST00000619053 ENSE00003728435
777   ENSG00000275799       ENST00000620163 ENSE00003725912
778   ENSG00000260256       ENST00000568332 ENSE00002602902
779   ENSG00000274225       ENST00000617205 ENSE00003731552
780   ENSG00000228709       ENST00000449713 ENSE00001752545
781   ENSG00000228709       ENST00000449713 ENSE00001681181
782   ENSG00000277352       ENST00000622854 ENSE00003747804
783   ENSG00000276529       ENST00000616815 ENSE00003741934
784   ENSG00000267857       ENST00000596207 ENSE00002984309
785   ENSG00000229382       ENST00000445242 ENSE00001670187
786   ENSG00000229382       ENST00000445242 ENSE00001632818
787   ENSG00000273796       ENST00000617004 ENSE00003752057
788   ENSG00000274248       ENST00000621707 ENSE00003725750
789   ENSG00000224413       ENST00000451618 ENSE00001746523
790   ENSG00000224413       ENST00000451618 ENSE00001806459
791   ENSG00000228235       ENST00000429512 ENSE00001613855
792   ENSG00000228235       ENST00000429512 ENSE00001801618
793   ENSG00000226115       ENST00000435738 ENSE00001648638
794   ENSG00000226115       ENST00000435738 ENSE00001764024
795   ENSG00000277777       ENST00000610788 ENSE00003748388
796   ENSG00000274790       ENST00000616522 ENSE00003748067
797   ENSG00000276902       ENST00000615262 ENSE00003749199
798   ENSG00000274046       ENST00000617336 ENSE00003722332
799   ENSG00000274484       ENST00000613803 ENSE00003725839
800   ENSG00000276546       ENST00000619005 ENSE00003732689
801   ENSG00000275664       ENST00000610482 ENSE00003750218
802   ENSG00000277671       ENST00000618423 ENSE00003724872
803   ENSG00000274868       ENST00000612139 ENSE00003747157
804   ENSG00000278775       ENST00000619112 ENSE00003751812
805   ENSG00000277572       ENST00000613590 ENSE00003734365
806   ENSG00000200754       ENST00000363884 ENSE00001808378
807   ENSG00000199962       ENST00000363092 ENSE00001437855
808   ENSG00000199698       ENST00000362828 ENSE00001807697
809   ENSG00000201984       ENST00000365114 ENSE00001807733
810   ENSG00000207416       ENST00000384685 ENSE00001499693
811   ENSG00000276873       ENST00000616808 ENSE00003730872
812   ENSG00000252915       ENST00000517106 ENSE00002089383
813   ENSG00000280013       ENST00000623928 ENSE00003755553
814   ENSG00000280346       ENST00000624353 ENSE00003756736
815   ENSG00000280172       ENST00000623131 ENSE00003755973
816   ENSG00000280330       ENST00000624153 ENSE00003756284
817   ENSG00000279177       ENST00000624906 ENSE00003756514
818   ENSG00000279615       ENST00000624852 ENSE00003755073
819   ENSG00000279167       ENST00000625098 ENSE00003755255
820   ENSG00000279414       ENST00000623182 ENSE00003757896
821   ENSG00000279720       ENST00000624968 ENSE00003756974
822   ENSG00000279381       ENST00000623217 ENSE00003756016
823   ENSG00000279864       ENST00000624736 ENSE00003758964
824   ENSG00000279211       ENST00000623408 ENSE00003757696
825   ENSG00000280075       ENST00000623929 ENSE00003755561
826   ENSG00000279783       ENST00000624130 ENSE00003758105
827   ENSG00000237202       ENST00000424255 ENSE00001727607
828   ENSG00000278381       ENST00000613704 ENSE00003712820
829   ENSG00000273692       ENST00000619798 ENSE00003737220
830   ENSG00000278181       ENST00000620221 ENSE00003748822
831   ENSG00000271486       ENST00000603349 ENSE00003648479
832   ENSG00000229336       ENST00000282964 ENSE00001759787
833   ENSG00000276738       ENST00000615444 ENSE00003734790
834   ENSG00000234340       ENST00000433524 ENSE00001635068
835   ENSG00000231136       ENST00000454567 ENSE00001558212
836   ENSG00000225906       ENST00000438328 ENSE00001739640
837   ENSG00000225906       ENST00000438328 ENSE00001591721
838   ENSG00000225906       ENST00000438328 ENSE00001675402
839   ENSG00000237444       ENST00000423389 ENSE00001619928
840   ENSG00000237325       ENST00000490865 ENSE00001827958
841   ENSG00000238220       ENST00000411943 ENSE00001610520
842   ENSG00000238220       ENST00000411943 ENSE00001713056
843   ENSG00000224427       ENST00000444036 ENSE00001800916
844   ENSG00000235012       ENST00000411867 ENSE00001734064
845   ENSG00000235012       ENST00000411867 ENSE00001760174
846   ENSG00000276647       ENST00000617417 ENSE00003754561
847   ENSG00000273840       ENST00000612267 ENSE00003727672
848   ENSG00000273840       ENST00000612267 ENSE00003753642
849   ENSG00000273840       ENST00000612267 ENSE00003723237
850   ENSG00000273840       ENST00000612267 ENSE00003716806
851   ENSG00000273840       ENST00000612267 ENSE00003713734
852   ENSG00000273840       ENST00000612267 ENSE00003734889
853   ENSG00000273840       ENST00000612267 ENSE00003730485
854   ENSG00000273840       ENST00000612267 ENSE00003751106
855   ENSG00000273840       ENST00000612267 ENSE00003749042
856   ENSG00000273840       ENST00000612267 ENSE00003728386
857   ENSG00000273840       ENST00000612267 ENSE00003727587
858   ENSG00000273840       ENST00000612267 ENSE00003713188
859   ENSG00000273840       ENST00000612267 ENSE00003731375
860   ENSG00000273840       ENST00000612267 ENSE00003739126
861   ENSG00000273840       ENST00000612267 ENSE00003746433
862   ENSG00000273840       ENST00000612267 ENSE00003748108
863   ENSG00000273840       ENST00000612267 ENSE00003742886
864   ENSG00000273840       ENST00000612267 ENSE00003748985
865   ENSG00000273840       ENST00000612267 ENSE00003736211
866   ENSG00000273840       ENST00000612267 ENSE00003741368
867   ENSG00000273840       ENST00000612267 ENSE00003724907
868   ENSG00000273840       ENST00000612267 ENSE00003753886
869   ENSG00000273840       ENST00000612267 ENSE00003742017
870   ENSG00000273840       ENST00000612267 ENSE00003711609
871   ENSG00000273840       ENST00000612267 ENSE00003750830
872   ENSG00000273840       ENST00000612267 ENSE00003713860
873   ENSG00000273840       ENST00000612267 ENSE00003742508
874   ENSG00000273840       ENST00000612267 ENSE00003742077
875   ENSG00000273840       ENST00000612267 ENSE00003738954
876   ENSG00000273840       ENST00000612267 ENSE00003754829
877   ENSG00000273840       ENST00000612267 ENSE00003734750
878   ENSG00000273840       ENST00000612267 ENSE00003721228
879   ENSG00000280594       ENST00000626994 ENSE00003773795
880   ENSG00000280594       ENST00000626994 ENSE00003773426
881   ENSG00000280594       ENST00000626994 ENSE00003774205
882   ENSG00000280594       ENST00000630155 ENSE00003761532
883   ENSG00000233783       ENST00000617755 ENSE00003721654
884   ENSG00000233783       ENST00000617755 ENSE00003729179
885   ENSG00000233783       ENST00000456904 ENSE00001671478
886   ENSG00000233783       ENST00000456904 ENSE00001713364
887   ENSG00000233783       ENST00000596385 ENSE00003109767
888   ENSG00000233783       ENST00000596385 ENSE00003083608
889   ENSG00000233783       ENST00000596385 ENSE00003136544
890   ENSG00000233783       ENST00000596385 ENSE00003049972
891   ENSG00000233783       ENST00000599572 ENSE00003181057
892   ENSG00000233783       ENST00000599572 ENSE00003217932
893   ENSG00000233783       ENST00000597894 ENSE00003084698
894   ENSG00000233783       ENST00000597894 ENSE00003118771
895   ENSG00000233783       ENST00000600590 ENSE00003083608
896   ENSG00000233783       ENST00000600590 ENSE00003147751
897   ENSG00000233783       ENST00000600590 ENSE00003067081
898   ENSG00000233783       ENST00000596669 ENSE00003221941
899   ENSG00000272657       ENST00000362077 ENSE00001487691
900   ENSG00000272657       ENST00000362077 ENSE00003562879
901   ENSG00000272657       ENST00000362077 ENSE00003709584
902   ENSG00000272657       ENST00000362077 ENSE00001614815
903   ENSG00000272657       ENST00000362077 ENSE00003709071
904   ENSG00000272657       ENST00000362077 ENSE00001789350
905   ENSG00000215447       ENST00000454115 ENSE00001542586
906   ENSG00000215447       ENST00000454115 ENSE00001714446
907   ENSG00000215447       ENST00000454115 ENSE00001668643
908   ENSG00000215447       ENST00000400362 ENSE00001714446
909   ENSG00000215447       ENST00000400362 ENSE00001697127
910   ENSG00000215447       ENST00000400362 ENSE00001542583
911   ENSG00000279493       ENST00000624081 ENSE00003760288
912   ENSG00000279493       ENST00000624081 ENSE00003758404
913   ENSG00000279493       ENST00000624081 ENSE00003755466
914   ENSG00000279493       ENST00000624081 ENSE00003755385
915   ENSG00000277117       ENST00000612610 ENSE00003716400
916   ENSG00000277117       ENST00000612610 ENSE00003742034
917   ENSG00000277117       ENST00000612610 ENSE00003714757
918   ENSG00000277117       ENST00000612610 ENSE00003728725
919   ENSG00000277117       ENST00000612610 ENSE00003746700
920   ENSG00000277117       ENST00000612610 ENSE00003753253
921   ENSG00000277117       ENST00000612610 ENSE00003756380
922   ENSG00000277117       ENST00000623960 ENSE00003742034
923   ENSG00000277117       ENST00000623960 ENSE00003714757
924   ENSG00000277117       ENST00000623960 ENSE00003728725
925   ENSG00000277117       ENST00000623960 ENSE00003746700
926   ENSG00000277117       ENST00000623960 ENSE00003753253
927   ENSG00000277117       ENST00000623960 ENSE00003758987
928   ENSG00000277117       ENST00000623960 ENSE00003759057
929   ENSG00000277117       ENST00000623903 ENSE00003742034
930   ENSG00000277117       ENST00000623903 ENSE00003755585
931   ENSG00000277117       ENST00000623903 ENSE00003757607
932   ENSG00000277117       ENST00000623903 ENSE00003760332
933   ENSG00000277117       ENST00000623903 ENSE00003759504
934   ENSG00000277117       ENST00000623903 ENSE00003757428
935   ENSG00000277117       ENST00000623903 ENSE00003755111
936   ENSG00000277117       ENST00000623795 ENSE00003742034
937   ENSG00000277117       ENST00000623795 ENSE00003728725
938   ENSG00000277117       ENST00000623795 ENSE00003746700
939   ENSG00000277117       ENST00000623795 ENSE00003753253
940   ENSG00000277117       ENST00000623795 ENSE00003759226
941   ENSG00000277117       ENST00000623795 ENSE00003760325
942   ENSG00000277117       ENST00000620481 ENSE00003716400
943   ENSG00000277117       ENST00000620481 ENSE00003742034
944   ENSG00000277117       ENST00000620481 ENSE00003728725
945   ENSG00000277117       ENST00000620481 ENSE00003746700
946   ENSG00000277117       ENST00000620481 ENSE00003753253
947   ENSG00000277117       ENST00000620481 ENSE00003717023
948   ENSG00000280071       ENST00000624810 ENSE00003760139
949   ENSG00000280071       ENST00000624810 ENSE00003759878
950   ENSG00000280071       ENST00000624810 ENSE00003754178
951   ENSG00000280071       ENST00000624810 ENSE00003724593
952   ENSG00000280071       ENST00000624810 ENSE00003759383
953   ENSG00000280071       ENST00000624810 ENSE00003760307
954   ENSG00000280071       ENST00000625036 ENSE00003760139
955   ENSG00000280071       ENST00000625036 ENSE00003759878
956   ENSG00000280071       ENST00000625036 ENSE00003754178
957   ENSG00000280071       ENST00000625036 ENSE00003759383
958   ENSG00000280071       ENST00000625036 ENSE00003760307
959   ENSG00000280071       ENST00000620015 ENSE00003754178
960   ENSG00000280071       ENST00000620015 ENSE00003724593
961   ENSG00000280071       ENST00000620015 ENSE00003756626
962   ENSG00000280071       ENST00000620015 ENSE00003756707
963   ENSG00000280071       ENST00000620015 ENSE00003722853
964   ENSG00000280071       ENST00000620015 ENSE00003747879
965   ENSG00000280071       ENST00000620528 ENSE00003759878
966   ENSG00000280071       ENST00000620528 ENSE00003754178
967   ENSG00000280071       ENST00000620528 ENSE00003724593
968   ENSG00000280071       ENST00000620528 ENSE00003722853
969   ENSG00000280071       ENST00000620528 ENSE00003747879
970   ENSG00000280071       ENST00000620528 ENSE00003752103
971   ENSG00000280071       ENST00000620528 ENSE00003727348
972   ENSG00000280071       ENST00000624120 ENSE00003759878
973   ENSG00000280071       ENST00000624120 ENSE00003754178
974   ENSG00000280071       ENST00000624120 ENSE00003722853
975   ENSG00000280071       ENST00000624120 ENSE00003727348
976   ENSG00000280071       ENST00000624120 ENSE00003759666
977   ENSG00000280071       ENST00000624120 ENSE00003758207
978   ENSG00000280071       ENST00000624748 ENSE00003755477
979   ENSG00000280071       ENST00000624748 ENSE00003756645
980   ENSG00000280071       ENST00000624748 ENSE00003755419
981   ENSG00000280071       ENST00000624648 ENSE00003759878
982   ENSG00000280071       ENST00000624648 ENSE00003754178
983   ENSG00000280071       ENST00000624648 ENSE00003724593
984   ENSG00000280071       ENST00000624648 ENSE00003727348
985   ENSG00000280071       ENST00000624648 ENSE00003758926
986   ENSG00000280071       ENST00000624648 ENSE00003755057
987   ENSG00000280071       ENST00000623810 ENSE00003757584
988   ENSG00000280071       ENST00000623810 ENSE00003755477
989   ENSG00000280071       ENST00000623810 ENSE00003758517
990   ENSG00000280071       ENST00000623810 ENSE00003781030
991   ENSG00000280071       ENST00000623810 ENSE00003760243
992   ENSG00000280071       ENST00000624714 ENSE00003758703
993   ENSG00000280071       ENST00000624714 ENSE00003758611
994   ENSG00000280071       ENST00000624714 ENSE00003757584
995   ENSG00000280071       ENST00000624714 ENSE00003756995
996   ENSG00000280071       ENST00000624714 ENSE00003759960
997   ENSG00000280071       ENST00000623390 ENSE00003758611
998   ENSG00000280071       ENST00000623390 ENSE00003757584
999   ENSG00000280071       ENST00000623390 ENSE00003754910
1000  ENSG00000280071       ENST00000623390 ENSE00003756808
1001  ENSG00000280071       ENST00000622915 ENSE00003759301
1002  ENSG00000280071       ENST00000622915 ENSE00003758934
1003  ENSG00000276612       ENST00000623476 ENSE00003777763
1004  ENSG00000276612       ENST00000623476 ENSE00003755072
1005  ENSG00000276612       ENST00000623476 ENSE00003759460
1006  ENSG00000276612       ENST00000623476 ENSE00003757983
1007  ENSG00000276612       ENST00000623476 ENSE00003760127
1008  ENSG00000276612       ENST00000623476 ENSE00003759299
1009  ENSG00000276612       ENST00000623476 ENSE00003757086
1010  ENSG00000275464       ENST00000617716 ENSE00003726066
1011  ENSG00000275464       ENST00000617716 ENSE00003746673
1012  ENSG00000275464       ENST00000617716 ENSE00003741495
1013  ENSG00000275464       ENST00000617716 ENSE00003735185
1014  ENSG00000275464       ENST00000617716 ENSE00003723956
1015  ENSG00000275464       ENST00000617716 ENSE00003716502
1016  ENSG00000275464       ENST00000617716 ENSE00003720550
1017  ENSG00000275464       ENST00000617716 ENSE00003719765
1018  ENSG00000275464       ENST00000617716 ENSE00003736452
1019  ENSG00000275464       ENST00000617716 ENSE00003722093
1020  ENSG00000275464       ENST00000617716 ENSE00003744264
1021  ENSG00000275464       ENST00000617716 ENSE00003754065
1022  ENSG00000275464       ENST00000617716 ENSE00003752208
1023  ENSG00000275464       ENST00000617716 ENSE00003746456
1024  ENSG00000275464       ENST00000617716 ENSE00003731399
1025  ENSG00000275464       ENST00000617716 ENSE00003725608
1026  ENSG00000275464       ENST00000617716 ENSE00003727820
1027  ENSG00000275464       ENST00000617716 ENSE00003735444
1028  ENSG00000275464       ENST00000617716 ENSE00003741065
1029  ENSG00000275464       ENST00000617716 ENSE00003715825
1030  ENSG00000275464       ENST00000617716 ENSE00003718829
1031  ENSG00000275464       ENST00000632537 ENSE00003725608
1032  ENSG00000275464       ENST00000632537 ENSE00003727820
1033  ENSG00000275464       ENST00000632537 ENSE00003780753
1034  ENSG00000275464       ENST00000632537 ENSE00003782531
1035  ENSG00000275464       ENST00000632537 ENSE00003759716
1036  ENSG00000275464       ENST00000632537 ENSE00003775733
1037  ENSG00000275464       ENST00000623011 ENSE00003756554
1038  ENSG00000275464       ENST00000623011 ENSE00003755024
1039  ENSG00000275464       ENST00000623011 ENSE00003757184
1040  ENSG00000275464       ENST00000623011 ENSE00003759985
1041  ENSG00000275464       ENST00000623011 ENSE00003759675
1042  ENSG00000275464       ENST00000623011 ENSE00003756393
1043  ENSG00000275464       ENST00000624312 ENSE00003758237
1044  ENSG00000275464       ENST00000624312 ENSE00003756875
1045  ENSG00000275464       ENST00000633442 ENSE00003776830
1046  ENSG00000275464       ENST00000633442 ENSE00003778186
1047  ENSG00000275464       ENST00000633442 ENSE00003776945
1048  ENSG00000275464       ENST00000633593 ENSE00003778186
1049  ENSG00000275464       ENST00000633593 ENSE00003776945
1050  ENSG00000275464       ENST00000633593 ENSE00003777768
1051  ENSG00000275464       ENST00000634020 ENSE00003777868
1052  ENSG00000275464       ENST00000634020 ENSE00003782733
1053  ENSG00000275464       ENST00000634020 ENSE00003779772
1054  ENSG00000275464       ENST00000634020 ENSE00003782084
1055  ENSG00000275464       ENST00000634020 ENSE00003781998
1056  ENSG00000275464       ENST00000634021 ENSE00003782733
1057  ENSG00000275464       ENST00000634021 ENSE00003779772
1058  ENSG00000275464       ENST00000634021 ENSE00003782084
1059  ENSG00000275464       ENST00000634021 ENSE00003783072
1060  ENSG00000275464       ENST00000634021 ENSE00003776674
1061  ENSG00000280433       ENST00000623998 ENSE00003756000
1062  ENSG00000280433       ENST00000623998 ENSE00003757796
1063  ENSG00000280433       ENST00000623998 ENSE00003755430
1064  ENSG00000280433       ENST00000623744 ENSE00003758857
1065  ENSG00000280433       ENST00000623744 ENSE00003758141
1066  ENSG00000280433       ENST00000623744 ENSE00003758852
1067  ENSG00000274559       ENST00000464664 ENSE00002211850
1068  ENSG00000275993       ENST00000613488 ENSE00003719700
1069  ENSG00000275993       ENST00000613488 ENSE00003721870
1070  ENSG00000275993       ENST00000613488 ENSE00003732806
1071  ENSG00000275993       ENST00000613488 ENSE00003751307
1072  ENSG00000275993       ENST00000613488 ENSE00003734764
1073  ENSG00000275993       ENST00000613488 ENSE00003715068
1074  ENSG00000275993       ENST00000613488 ENSE00003730883
1075  ENSG00000275993       ENST00000613488 ENSE00003738075
1076  ENSG00000275993       ENST00000613488 ENSE00003745922
1077  ENSG00000275993       ENST00000613488 ENSE00003714437
1078  ENSG00000275993       ENST00000613488 ENSE00003715905
1079  ENSG00000275993       ENST00000613488 ENSE00003752597
1080  ENSG00000275993       ENST00000613488 ENSE00003754375
1081  ENSG00000275993       ENST00000613488 ENSE00003742007
1082  ENSG00000275993       ENST00000624077 ENSE00003757113
1083  ENSG00000275993       ENST00000624077 ENSE00003756648
1084  ENSG00000275993       ENST00000624077 ENSE00003758830
1085  ENSG00000276076       ENST00000619537 ENSE00003716393
1086  ENSG00000276076       ENST00000619537 ENSE00003745946
1087  ENSG00000276076       ENST00000619537 ENSE00003751475
1088  ENSG00000276076       ENST00000624019 ENSE00003745946
1089  ENSG00000276076       ENST00000624019 ENSE00003758215
1090  ENSG00000276076       ENST00000624019 ENSE00003757854
1091  ENSG00000276076       ENST00000624901 ENSE00003755715
1092  ENSG00000276076       ENST00000624901 ENSE00003755354
1093  ENSG00000276076       ENST00000624932 ENSE00003745946
1094  ENSG00000276076       ENST00000624932 ENSE00003755371
1095  ENSG00000276076       ENST00000624932 ENSE00003757511
1096  ENSG00000277277       ENST00000613894 ENSE00003726287
1097  ENSG00000278961       ENST00000624951 ENSE00003759970
1098  ENSG00000278961       ENST00000624951 ENSE00003755793
1099  ENSG00000243440       ENST00000435732 ENSE00001543502
1100  ENSG00000243440       ENST00000435732 ENSE00003598244
1101  ENSG00000243440       ENST00000435732 ENSE00003688243
1102  ENSG00000243440       ENST00000435732 ENSE00003203998
1103  ENSG00000243440       ENST00000435732 ENSE00003094519
1104  ENSG00000243440       ENST00000435732 ENSE00003122886
1105  ENSG00000243440       ENST00000435732 ENSE00001731205
1106  ENSG00000243440       ENST00000400562 ENSE00001543502
1107  ENSG00000243440       ENST00000400562 ENSE00003598244
1108  ENSG00000243440       ENST00000400562 ENSE00003688243
1109  ENSG00000243440       ENST00000400562 ENSE00003203998
1110  ENSG00000243440       ENST00000400562 ENSE00003094519
1111  ENSG00000243440       ENST00000400562 ENSE00001543504
1112  ENSG00000243440       ENST00000400562 ENSE00001543496
1113  ENSG00000243440       ENST00000469393 ENSE00003606206
1114  ENSG00000243440       ENST00000469393 ENSE00003626471
1115  ENSG00000243440       ENST00000469393 ENSE00001852661
1116  ENSG00000243440       ENST00000467280 ENSE00003606206
1117  ENSG00000243440       ENST00000467280 ENSE00001899848
1118  ENSG00000265590       ENST00000431216 ENSE00001615040
1119  ENSG00000265590       ENST00000431216 ENSE00003618708
1120  ENSG00000265590       ENST00000431216 ENSE00003688974
1121  ENSG00000265590       ENST00000431216 ENSE00003493751
1122  ENSG00000265590       ENST00000431216 ENSE00003574105
1123  ENSG00000265590       ENST00000431216 ENSE00003512651
1124  ENSG00000265590       ENST00000431216 ENSE00003708208
1125  ENSG00000265590       ENST00000431216 ENSE00001679581
1126  ENSG00000265590       ENST00000553001 ENSE00003618708
1127  ENSG00000265590       ENST00000553001 ENSE00003688974
1128  ENSG00000265590       ENST00000553001 ENSE00003493751
1129  ENSG00000265590       ENST00000553001 ENSE00003574105
1130  ENSG00000265590       ENST00000553001 ENSE00003708208
1131  ENSG00000265590       ENST00000553001 ENSE00002358368
1132  ENSG00000265590       ENST00000553001 ENSE00002334338
1133  ENSG00000249624       ENST00000433395 ENSE00002049868
1134  ENSG00000249624       ENST00000433395 ENSE00003501549
1135  ENSG00000249624       ENST00000433395 ENSE00003475219
1136  ENSG00000249624       ENST00000433395 ENSE00003552959
1137  ENSG00000249624       ENST00000433395 ENSE00003498140
1138  ENSG00000249624       ENST00000433395 ENSE00003518321
1139  ENSG00000249624       ENST00000433395 ENSE00003659878
1140  ENSG00000249624       ENST00000432231 ENSE00003475219
1141  ENSG00000249624       ENST00000432231 ENSE00001767466
1142  ENSG00000249624       ENST00000432231 ENSE00003508281
1143  ENSG00000249624       ENST00000432231 ENSE00003608542
1144  ENSG00000249624       ENST00000432231 ENSE00003543645
1145  ENSG00000249209       ENST00000429238 ENSE00003756449
1146  ENSG00000249209       ENST00000429238 ENSE00003756201
1147  ENSG00000249209       ENST00000429238 ENSE00003757768
1148  ENSG00000249209       ENST00000429238 ENSE00001713270
1149  ENSG00000249209       ENST00000429238 ENSE00003619177
1150  ENSG00000249209       ENST00000429238 ENSE00003476113
1151  ENSG00000249209       ENST00000429238 ENSE00003484190
1152  ENSG00000249209       ENST00000429238 ENSE00001767773
1153  ENSG00000243627       ENST00000450895 ENSE00001721013
1154  ENSG00000243627       ENST00000450895 ENSE00001791276
1155  ENSG00000281420       ENST00000626421 ENSE00003764467
1156  ENSG00000281420       ENST00000626421 ENSE00003762175
1157  ENSG00000231125       ENST00000457162 ENSE00001599010
1158  ENSG00000231125       ENST00000457162 ENSE00001613545
1159  ENSG00000273017       ENST00000609910 ENSE00003709418
1160  ENSG00000230212       ENST00000535199 ENSE00002324295
1161  ENSG00000230212       ENST00000535199 ENSE00002234089
1162  ENSG00000230212       ENST00000535199 ENSE00002675369
1163  ENSG00000230212       ENST00000535199 ENSE00002205771
1164  ENSG00000230212       ENST00000415147 ENSE00002675369
1165  ENSG00000230212       ENST00000415147 ENSE00001597545
1166  ENSG00000270116       ENST00000602568 ENSE00003455069
1167  ENSG00000227698       ENST00000432411 ENSE00001721524
1168  ENSG00000227698       ENST00000432411 ENSE00001797065
1169  ENSG00000227698       ENST00000432411 ENSE00001739053
1170  ENSG00000239930       ENST00000416179 ENSE00001742222
1171  ENSG00000239930       ENST00000416179 ENSE00001740000
1172  ENSG00000239930       ENST00000416179 ENSE00001594678
1173  ENSG00000231867       ENST00000429903 ENSE00001643895
1174  ENSG00000231867       ENST00000429903 ENSE00001720226
1175  ENSG00000231867       ENST00000455116 ENSE00001613306
1176  ENSG00000231867       ENST00000455116 ENSE00001757076
1177  ENSG00000273027       ENST00000609461 ENSE00003708573
1178  ENSG00000276633       ENST00000618749 ENSE00003740681
1179  ENSG00000228708       ENST00000455391 ENSE00001730401
1180  ENSG00000228708       ENST00000455391 ENSE00001608535
1181  ENSG00000228107       ENST00000397184 ENSE00001723336
1182  ENSG00000228107       ENST00000397184 ENSE00001627362
1183  ENSG00000225330       ENST00000416555 ENSE00001719289
1184  ENSG00000225330       ENST00000416555 ENSE00001615190
1185  ENSG00000225330       ENST00000416555 ENSE00001782898
1186  ENSG00000241728       ENST00000444409 ENSE00001610727
1187  ENSG00000241728       ENST00000444409 ENSE00001601990
1188  ENSG00000241728       ENST00000444409 ENSE00001778009
1189  ENSG00000241728       ENST00000422357 ENSE00001736116
1190  ENSG00000241728       ENST00000422357 ENSE00001610727
1191  ENSG00000280604       ENST00000626237 ENSE00003774066
1192  ENSG00000280604       ENST00000626237 ENSE00003763886
1193  ENSG00000280604       ENST00000626237 ENSE00003760972
1194  ENSG00000273614       ENST00000619030 ENSE00003736182
1195  ENSG00000252199       ENST00000516390 ENSE00002088667
1196  ENSG00000201025       ENST00000364155 ENSE00001438918
1197  ENSG00000212479       ENST00000391177 ENSE00001508961
1198  ENSG00000238390       ENST00000458922 ENSE00001807404
1199  ENSG00000252045       ENST00000516236 ENSE00002088513
1200  ENSG00000207098       ENST00000384370 ENSE00001808734
1201  ENSG00000221398       ENST00000408471 ENSE00001565106
1202  ENSG00000272015       ENST00000606322 ENSE00003696709
1203  ENSG00000207147       ENST00000384418 ENSE00001499426
1204  ENSG00000207503       ENST00000384772 ENSE00001807952
1205  ENSG00000251778       ENST00000515969 ENSE00002088246
1206  ENSG00000266692       ENST00000581669 ENSE00002724833
1207  ENSG00000264452       ENST00000583496 ENSE00002709519
1208  ENSG00000275631       ENST00000620684 ENSE00003719021
1209  ENSG00000283300       ENST00000637157 ENSE00003800948
1210  ENSG00000279186       ENST00000624506 ENSE00003756739
1211  ENSG00000279769       ENST00000624240 ENSE00003757253
1212  ENSG00000279226       ENST00000623061 ENSE00003756704
1213  ENSG00000279303       ENST00000623962 ENSE00003756385
1214  ENSG00000279967       ENST00000624806 ENSE00003758113
1215  ENSG00000280372       ENST00000624662 ENSE00003757507
1216  ENSG00000279773       ENST00000624520 ENSE00003759030
1217  ENSG00000279390       ENST00000623352 ENSE00003758400
1218  ENSG00000280082       ENST00000623768 ENSE00003759741
1219  ENSG00000280432       ENST00000624971 ENSE00003757355
1220  ENSG00000279648       ENST00000624164 ENSE00003754996
1221  ENSG00000279156       ENST00000623771 ENSE00003758460
1222  ENSG00000279534       ENST00000624405 ENSE00003755537
1223  ENSG00000279690       ENST00000624800 ENSE00003755953
1224  ENSG00000279365       ENST00000624669 ENSE00003759761
1225  ENSG00000270533       ENST00000625012 ENSE00003759705
1226  ENSG00000270533       ENST00000625012 ENSE00003757052
1227  ENSG00000270533       ENST00000625012 ENSE00003756807
1228  ENSG00000270533       ENST00000625012 ENSE00003760353
1229  ENSG00000270533       ENST00000625012 ENSE00003754925
1230  ENSG00000270533       ENST00000625012 ENSE00003755961
1231  ENSG00000270533       ENST00000625012 ENSE00003759885
1232  ENSG00000270533       ENST00000625012 ENSE00003759507
1233  ENSG00000270533       ENST00000625012 ENSE00003755278
1234  ENSG00000270533       ENST00000625012 ENSE00003755213
1235  ENSG00000270533       ENST00000625012 ENSE00003755783
1236  ENSG00000270533       ENST00000604687 ENSE00003684849
1237  ENSG00000270835       ENST00000632732 ENSE00003783744
1238  ENSG00000270835       ENST00000605450 ENSE00003531011
1239  ENSG00000280019       ENST00000624484 ENSE00003758953
1240  ENSG00000280019       ENST00000624484 ENSE00003759077
1241  ENSG00000280019       ENST00000624484 ENSE00003756023
1242  ENSG00000280019       ENST00000624484 ENSE00003758373
1243  ENSG00000280019       ENST00000624484 ENSE00003755687
1244  ENSG00000280019       ENST00000624484 ENSE00003759438
1245  ENSG00000280019       ENST00000624484 ENSE00003756613
1246  ENSG00000280019       ENST00000624484 ENSE00003757220
1247  ENSG00000280019       ENST00000624484 ENSE00003759611
1248  ENSG00000280019       ENST00000624484 ENSE00003758587
1249  ENSG00000279709       ENST00000623377 ENSE00003760287
1250  ENSG00000279709       ENST00000623377 ENSE00003755605
1251  ENSG00000279709       ENST00000623377 ENSE00003756426
1252  ENSG00000279709       ENST00000623377 ENSE00003755878
1253  ENSG00000279709       ENST00000623377 ENSE00003755120
1254  ENSG00000279709       ENST00000623377 ENSE00003758733
1255  ENSG00000279788       ENST00000624266 ENSE00003758739
1256  ENSG00000279788       ENST00000624266 ENSE00003758671
1257  ENSG00000279788       ENST00000624266 ENSE00003756773
1258  ENSG00000279788       ENST00000624266 ENSE00003759000
1259  ENSG00000279788       ENST00000624266 ENSE00003757866
1260  ENSG00000279788       ENST00000624266 ENSE00003757734
1261  ENSG00000279788       ENST00000624266 ENSE00003755969
1262  ENSG00000279788       ENST00000624266 ENSE00003757842
1263  ENSG00000279788       ENST00000624266 ENSE00003760032
1264  ENSG00000279728       ENST00000623809 ENSE00003760235
1265  ENSG00000279728       ENST00000623809 ENSE00003756609
1266  ENSG00000279728       ENST00000623809 ENSE00003756282
1267  ENSG00000279728       ENST00000623809 ENSE00003759964
1268  ENSG00000279728       ENST00000623809 ENSE00003759867
1269  ENSG00000279728       ENST00000623809 ENSE00003756135
1270  ENSG00000279728       ENST00000623809 ENSE00003760015
1271  ENSG00000279728       ENST00000623809 ENSE00003756399
1272  ENSG00000279477       ENST00000623518 ENSE00003757180
1273  ENSG00000279477       ENST00000623518 ENSE00003760093
1274  ENSG00000279477       ENST00000623518 ENSE00003760314
1275  ENSG00000279477       ENST00000623518 ENSE00003756126
1276  ENSG00000279477       ENST00000623518 ENSE00003758804
1277  ENSG00000279477       ENST00000623518 ENSE00003759143
1278  ENSG00000279477       ENST00000623518 ENSE00003760299
1279  ENSG00000279477       ENST00000623518 ENSE00003754951
1280  ENSG00000279477       ENST00000623518 ENSE00003758686
1281  ENSG00000279647       ENST00000624595 ENSE00003760385
1282  ENSG00000279647       ENST00000624595 ENSE00003755396
1283  ENSG00000279647       ENST00000624595 ENSE00003760148
1284  ENSG00000279647       ENST00000624595 ENSE00003759555
1285  ENSG00000279647       ENST00000624595 ENSE00003757473
1286  ENSG00000279647       ENST00000624595 ENSE00003758114
1287  ENSG00000279647       ENST00000624595 ENSE00003757251
1288  ENSG00000279647       ENST00000624595 ENSE00003756028
1289  ENSG00000279647       ENST00000624595 ENSE00003760387
1290  ENSG00000279895       ENST00000624042 ENSE00003756446
1291  ENSG00000279895       ENST00000624042 ENSE00003755060
1292  ENSG00000279895       ENST00000624042 ENSE00003759023
1293  ENSG00000279895       ENST00000624042 ENSE00003755612
1294  ENSG00000279895       ENST00000624042 ENSE00003756572
1295  ENSG00000279895       ENST00000624042 ENSE00003758063
1296  ENSG00000279895       ENST00000624042 ENSE00003757344
1297  ENSG00000279895       ENST00000624042 ENSE00003758582
1298  ENSG00000279895       ENST00000624042 ENSE00003760305
1299  ENSG00000279895       ENST00000624042 ENSE00003756621
1300  ENSG00000278931       ENST00000624291 ENSE00003757202
1301  ENSG00000278931       ENST00000624291 ENSE00003755639
1302  ENSG00000278931       ENST00000624291 ENSE00003759425
1303  ENSG00000278931       ENST00000624291 ENSE00003756490
1304  ENSG00000278931       ENST00000624291 ENSE00003759904
1305  ENSG00000278931       ENST00000624291 ENSE00003758439
1306  ENSG00000278931       ENST00000624291 ENSE00003759751
1307  ENSG00000278931       ENST00000624291 ENSE00003756776
1308  ENSG00000278931       ENST00000624291 ENSE00003757232
1309  ENSG00000280436       ENST00000623201 ENSE00003759391
1310  ENSG00000280436       ENST00000623201 ENSE00003760174
1311  ENSG00000279208       ENST00000624041 ENSE00003760392
1312  ENSG00000279208       ENST00000624041 ENSE00003756674
1313  ENSG00000279208       ENST00000624041 ENSE00003755508
1314  ENSG00000279208       ENST00000624041 ENSE00003756492
1315  ENSG00000279062       ENST00000623954 ENSE00003758525
1316  ENSG00000278106       ENST00000612331 ENSE00003752928
1317  ENSG00000276556       ENST00000611755 ENSE00003747824
1318  ENSG00000218125       ENST00000406413 ENSE00001556267
1319  ENSG00000238257       ENST00000424582 ENSE00001699208
1320  ENSG00000215458       ENST00000437258 ENSE00001696564
1321  ENSG00000215458       ENST00000437258 ENSE00001542670
1322  ENSG00000215458       ENST00000448247 ENSE00001542670
1323  ENSG00000215458       ENST00000448247 ENSE00003678800
1324  ENSG00000215458       ENST00000448247 ENSE00001684957
1325  ENSG00000215458       ENST00000448247 ENSE00001538942
1326  ENSG00000215458       ENST00000400385 ENSE00001542670
1327  ENSG00000215458       ENST00000400385 ENSE00001542671
1328  ENSG00000243064       ENST00000429114 ENSE00001602011
1329  ENSG00000243064       ENST00000429114 ENSE00001685786
1330  ENSG00000243064       ENST00000429114 ENSE00001749100
1331  ENSG00000243064       ENST00000429114 ENSE00001595237
1332  ENSG00000243064       ENST00000429114 ENSE00003548683
1333  ENSG00000243064       ENST00000482980 ENSE00003548683
1334  ENSG00000243064       ENST00000482980 ENSE00003486510
1335  ENSG00000243064       ENST00000482980 ENSE00003655188
1336  ENSG00000243064       ENST00000482980 ENSE00003668380
1337  ENSG00000243064       ENST00000482980 ENSE00003465925
1338  ENSG00000243064       ENST00000482980 ENSE00003654218
1339  ENSG00000243064       ENST00000482980 ENSE00003494827
1340  ENSG00000243064       ENST00000482980 ENSE00003518649
1341  ENSG00000243064       ENST00000482980 ENSE00001861485
1342  ENSG00000243064       ENST00000482980 ENSE00001851664
1343  ENSG00000243064       ENST00000482980 ENSE00001941127
1344  ENSG00000243064       ENST00000482980 ENSE00001862267
1345  ENSG00000243064       ENST00000482980 ENSE00001868303
1346  ENSG00000243064       ENST00000482980 ENSE00001809374
1347  ENSG00000243064       ENST00000481582 ENSE00003548683
1348  ENSG00000243064       ENST00000481582 ENSE00003655188
1349  ENSG00000243064       ENST00000481582 ENSE00001860371
1350  ENSG00000243064       ENST00000481582 ENSE00001852478
1351  ENSG00000243064       ENST00000481582 ENSE00001833363
1352  ENSG00000243064       ENST00000467409 ENSE00003548683
1353  ENSG00000243064       ENST00000467409 ENSE00003655188
1354  ENSG00000243064       ENST00000467409 ENSE00003668380
1355  ENSG00000243064       ENST00000467409 ENSE00003465925
1356  ENSG00000243064       ENST00000467409 ENSE00001888386
1357  ENSG00000243064       ENST00000467409 ENSE00001809825
1358  ENSG00000243064       ENST00000471902 ENSE00003548683
1359  ENSG00000243064       ENST00000471902 ENSE00003655188
1360  ENSG00000243064       ENST00000471902 ENSE00003668380
1361  ENSG00000243064       ENST00000471902 ENSE00001882870
1362  ENSG00000243064       ENST00000471902 ENSE00001925104
1363  ENSG00000243064       ENST00000463099 ENSE00003548683
1364  ENSG00000243064       ENST00000463099 ENSE00003655188
1365  ENSG00000243064       ENST00000463099 ENSE00003668380
1366  ENSG00000243064       ENST00000463099 ENSE00003465925
1367  ENSG00000243064       ENST00000463099 ENSE00003654218
1368  ENSG00000243064       ENST00000463099 ENSE00003494827
1369  ENSG00000243064       ENST00000463099 ENSE00003518649
1370  ENSG00000243064       ENST00000463099 ENSE00001941127
1371  ENSG00000243064       ENST00000463099 ENSE00001868303
1372  ENSG00000243064       ENST00000463099 ENSE00001856952
1373  ENSG00000243064       ENST00000463099 ENSE00001880249
1374  ENSG00000243064       ENST00000463099 ENSE00001889039
1375  ENSG00000243064       ENST00000463099 ENSE00001844190
1376  ENSG00000243064       ENST00000463099 ENSE00001857549
1377  ENSG00000243064       ENST00000463099 ENSE00001845742
1378  ENSG00000243064       ENST00000463099 ENSE00001913535
1379  ENSG00000243064       ENST00000463099 ENSE00001882947
1380  ENSG00000243064       ENST00000463099 ENSE00001907632
1381  ENSG00000243064       ENST00000463099 ENSE00001854008
1382  ENSG00000243064       ENST00000463099 ENSE00001881574
1383  ENSG00000243064       ENST00000463099 ENSE00001914404
1384  ENSG00000243064       ENST00000463099 ENSE00001957758
1385  ENSG00000243064       ENST00000463099 ENSE00001860265
1386  ENSG00000243064       ENST00000463099 ENSE00001946890
1387  ENSG00000243064       ENST00000463099 ENSE00001927536
1388  ENSG00000243064       ENST00000463099 ENSE00001870240
1389  ENSG00000243064       ENST00000463099 ENSE00001856887
1390  ENSG00000243064       ENST00000463099 ENSE00001916507
1391  ENSG00000160179       ENST00000398457 ENSE00001533348
1392  ENSG00000160179       ENST00000398457 ENSE00003482497
1393  ENSG00000160179       ENST00000398457 ENSE00003506666
1394  ENSG00000160179       ENST00000398457 ENSE00003523195
1395  ENSG00000160179       ENST00000398457 ENSE00003543273
1396  ENSG00000160179       ENST00000398457 ENSE00003477889
1397  ENSG00000160179       ENST00000398457 ENSE00003547441
1398  ENSG00000160179       ENST00000398457 ENSE00003689634
1399  ENSG00000160179       ENST00000398457 ENSE00003505582
1400  ENSG00000160179       ENST00000398457 ENSE00003553101
1401  ENSG00000160179       ENST00000398457 ENSE00003544349
1402  ENSG00000160179       ENST00000398457 ENSE00003688085
1403  ENSG00000160179       ENST00000398457 ENSE00003670239
1404  ENSG00000160179       ENST00000398457 ENSE00003496464
1405  ENSG00000160179       ENST00000398457 ENSE00003674298
1406  ENSG00000160179       ENST00000398457 ENSE00003688526
1407  ENSG00000160179       ENST00000462050 ENSE00001917295
1408  ENSG00000160179       ENST00000462050 ENSE00003486574
1409  ENSG00000160179       ENST00000462050 ENSE00001848792
1410  ENSG00000160179       ENST00000462050 ENSE00003603253
1411  ENSG00000160179       ENST00000462050 ENSE00003610461
1412  ENSG00000160179       ENST00000462050 ENSE00003531861
1413  ENSG00000160179       ENST00000462050 ENSE00003611951
1414  ENSG00000160179       ENST00000462050 ENSE00003619236
1415  ENSG00000160179       ENST00000462050 ENSE00003502441
1416  ENSG00000160179       ENST00000462050 ENSE00003634060
1417  ENSG00000160179       ENST00000462050 ENSE00003472929
1418  ENSG00000160179       ENST00000462050 ENSE00003665058
1419  ENSG00000160179       ENST00000462050 ENSE00003640764
1420  ENSG00000160179       ENST00000462050 ENSE00003624267
1421  ENSG00000160179       ENST00000462050 ENSE00003531087
1422  ENSG00000160179       ENST00000462050 ENSE00003605681
1423  ENSG00000160179       ENST00000462050 ENSE00003499091
1424  ENSG00000160179       ENST00000347800 ENSE00003506666
1425  ENSG00000160179       ENST00000347800 ENSE00003523195
1426  ENSG00000160179       ENST00000347800 ENSE00003543273
1427  ENSG00000160179       ENST00000347800 ENSE00003477889
1428  ENSG00000160179       ENST00000347800 ENSE00003547441
1429  ENSG00000160179       ENST00000347800 ENSE00003689634
1430  ENSG00000160179       ENST00000347800 ENSE00003505582
1431  ENSG00000160179       ENST00000347800 ENSE00003553101
1432  ENSG00000160179       ENST00000347800 ENSE00003544349
1433  ENSG00000160179       ENST00000347800 ENSE00003688085
1434  ENSG00000160179       ENST00000347800 ENSE00003670239
1435  ENSG00000160179       ENST00000347800 ENSE00003496464
1436  ENSG00000160179       ENST00000347800 ENSE00003674298
1437  ENSG00000160179       ENST00000347800 ENSE00003688526
1438  ENSG00000160179       ENST00000347800 ENSE00001887087
1439  ENSG00000160179       ENST00000450121 ENSE00003506666
1440  ENSG00000160179       ENST00000450121 ENSE00003523195
1441  ENSG00000160179       ENST00000450121 ENSE00003543273
1442  ENSG00000160179       ENST00000450121 ENSE00003547441
1443  ENSG00000160179       ENST00000450121 ENSE00001533208
1444  ENSG00000160179       ENST00000450121 ENSE00001704849
1445  ENSG00000160179       ENST00000398449 ENSE00003506666
1446  ENSG00000160179       ENST00000398449 ENSE00003523195
1447  ENSG00000160179       ENST00000398449 ENSE00003543273
1448  ENSG00000160179       ENST00000398449 ENSE00003477889
1449  ENSG00000160179       ENST00000398449 ENSE00003547441
1450  ENSG00000160179       ENST00000398449 ENSE00003689634
1451  ENSG00000160179       ENST00000398449 ENSE00003505582
1452  ENSG00000160179       ENST00000398449 ENSE00003553101
1453  ENSG00000160179       ENST00000398449 ENSE00003544349
1454  ENSG00000160179       ENST00000398449 ENSE00003688085
1455  ENSG00000160179       ENST00000398449 ENSE00003670239
1456  ENSG00000160179       ENST00000398449 ENSE00003496464
1457  ENSG00000160179       ENST00000398449 ENSE00003674298
1458  ENSG00000160179       ENST00000398449 ENSE00003688526
1459  ENSG00000160179       ENST00000398449 ENSE00001179278
1460  ENSG00000160179       ENST00000361802 ENSE00003506666
1461  ENSG00000160179       ENST00000361802 ENSE00003523195
1462  ENSG00000160179       ENST00000361802 ENSE00003543273
1463  ENSG00000160179       ENST00000361802 ENSE00003477889
1464  ENSG00000160179       ENST00000361802 ENSE00003547441
1465  ENSG00000160179       ENST00000361802 ENSE00003689634
1466  ENSG00000160179       ENST00000361802 ENSE00003505582
1467  ENSG00000160179       ENST00000361802 ENSE00003544349
1468  ENSG00000160179       ENST00000361802 ENSE00003688085
1469  ENSG00000160179       ENST00000361802 ENSE00003670239
1470  ENSG00000160179       ENST00000361802 ENSE00003496464
1471  ENSG00000160179       ENST00000361802 ENSE00003674298
1472  ENSG00000160179       ENST00000361802 ENSE00003688526
1473  ENSG00000160179       ENST00000361802 ENSE00001179278
1474  ENSG00000160179       ENST00000361802 ENSE00003586318
1475  ENSG00000160179       ENST00000343687 ENSE00003506666
1476  ENSG00000160179       ENST00000343687 ENSE00003523195
1477  ENSG00000160179       ENST00000343687 ENSE00003543273
1478  ENSG00000160179       ENST00000343687 ENSE00003477889
1479  ENSG00000160179       ENST00000343687 ENSE00003547441
1480  ENSG00000160179       ENST00000343687 ENSE00003689634
1481  ENSG00000160179       ENST00000343687 ENSE00003505582
1482  ENSG00000160179       ENST00000343687 ENSE00003553101
1483  ENSG00000160179       ENST00000343687 ENSE00003544349
1484  ENSG00000160179       ENST00000343687 ENSE00003688085
1485  ENSG00000160179       ENST00000343687 ENSE00003670239
1486  ENSG00000160179       ENST00000343687 ENSE00003496464
1487  ENSG00000160179       ENST00000343687 ENSE00003674298
1488  ENSG00000160179       ENST00000343687 ENSE00003688526
1489  ENSG00000160179       ENST00000343687 ENSE00001384388
1490  ENSG00000160179       ENST00000398437 ENSE00003523195
1491  ENSG00000160179       ENST00000398437 ENSE00003543273
1492  ENSG00000160179       ENST00000398437 ENSE00003477889
1493  ENSG00000160179       ENST00000398437 ENSE00003547441
1494  ENSG00000160179       ENST00000398437 ENSE00003689634
1495  ENSG00000160179       ENST00000398437 ENSE00003505582
1496  ENSG00000160179       ENST00000398437 ENSE00003544349
1497  ENSG00000160179       ENST00000398437 ENSE00003688085
1498  ENSG00000160179       ENST00000398437 ENSE00003670239
1499  ENSG00000160179       ENST00000398437 ENSE00003496464
1500  ENSG00000160179       ENST00000398437 ENSE00003674298
1501  ENSG00000160179       ENST00000398437 ENSE00003688526
1502  ENSG00000160179       ENST00000398437 ENSE00003586318
1503  ENSG00000160179       ENST00000398437 ENSE00001109772
1504  ENSG00000160179       ENST00000398437 ENSE00001533178
1505  ENSG00000160179       ENST00000398437 ENSE00001109773
1506  ENSG00000160179       ENST00000472587 ENSE00003619236
1507  ENSG00000160179       ENST00000472587 ENSE00003502441
1508  ENSG00000160179       ENST00000472587 ENSE00003634060
1509  ENSG00000160179       ENST00000472587 ENSE00003665058
1510  ENSG00000160179       ENST00000472587 ENSE00003640764
1511  ENSG00000160179       ENST00000472587 ENSE00003624267
1512  ENSG00000160179       ENST00000472587 ENSE00003531087
1513  ENSG00000160179       ENST00000472587 ENSE00003605681
1514  ENSG00000160179       ENST00000472587 ENSE00003499091
1515  ENSG00000160179       ENST00000472587 ENSE00001866954
1516  ENSG00000160179       ENST00000472587 ENSE00003525583
1517  ENSG00000160179       ENST00000467818 ENSE00003619236
1518  ENSG00000160179       ENST00000467818 ENSE00003502441
1519  ENSG00000160179       ENST00000467818 ENSE00001887535
1520  ENSG00000160179       ENST00000467818 ENSE00001837452
1521  ENSG00000160179       ENST00000496783 ENSE00003640764
1522  ENSG00000160179       ENST00000496783 ENSE00003624267
1523  ENSG00000160179       ENST00000496783 ENSE00003531087
1524  ENSG00000160179       ENST00000496783 ENSE00001827552
1525  ENSG00000160179       ENST00000496783 ENSE00001956350
1526  ENSG00000160179       ENST00000496783 ENSE00001884617
1527  ENSG00000154734       ENST00000284984 ENSE00001017374
1528  ENSG00000154734       ENST00000284984 ENSE00003625470
1529  ENSG00000154734       ENST00000284984 ENSE00001017373
1530  ENSG00000154734       ENST00000284984 ENSE00001017382
1531  ENSG00000154734       ENST00000284984 ENSE00001017378
1532  ENSG00000154734       ENST00000284984 ENSE00001247753
1533  ENSG00000154734       ENST00000284984 ENSE00003588221
1534  ENSG00000154734       ENST00000284984 ENSE00003493504
1535  ENSG00000154734       ENST00000284984 ENSE00003672508
1536  ENSG00000154734       ENST00000464589 ENSE00001940320
1537  ENSG00000154734       ENST00000464589 ENSE00001814855
1538  ENSG00000154734       ENST00000464589 ENSE00001885579
1539  ENSG00000154734       ENST00000464589 ENSE00003667749
1540  ENSG00000154734       ENST00000492656 ENSE00001877730
1541  ENSG00000154734       ENST00000492656 ENSE00003498527
1542  ENSG00000154734       ENST00000492656 ENSE00003537487
1543  ENSG00000154734       ENST00000492656 ENSE00001941307
1544  ENSG00000154734       ENST00000517777 ENSE00001017373
1545  ENSG00000154734       ENST00000517777 ENSE00002096782
1546  ENSG00000154734       ENST00000517777 ENSE00003631063
1547  ENSG00000154734       ENST00000517777 ENSE00002103423
1548  ENSG00000154734       ENST00000451462 ENSE00003625470
1549  ENSG00000154734       ENST00000451462 ENSE00001017373
1550  ENSG00000154734       ENST00000451462 ENSE00001638666
1551  ENSG00000154734       ENST00000451462 ENSE00001763429
1552  ENSG00000154734       ENST00000517452 ENSE00003625470
1553  ENSG00000154734       ENST00000517452 ENSE00001493670
1554  ENSG00000154734       ENST00000517452 ENSE00002401970
1555  ENSG00000154736       ENST00000284987 ENSE00001017391
1556  ENSG00000154736       ENST00000284987 ENSE00001017390
1557  ENSG00000154736       ENST00000284987 ENSE00001017386
1558  ENSG00000154736       ENST00000284987 ENSE00001017392
1559  ENSG00000154736       ENST00000284987 ENSE00001017389
1560  ENSG00000154736       ENST00000284987 ENSE00001017388
1561  ENSG00000154736       ENST00000284987 ENSE00001017393
1562  ENSG00000154736       ENST00000284987 ENSE00001017387
1563  ENSG00000197381       ENST00000462214 ENSE00001840433
1564  ENSG00000197381       ENST00000462214 ENSE00001210927
1565  ENSG00000197381       ENST00000462214 ENSE00003777008
1566  ENSG00000197381       ENST00000462214 ENSE00001825818
1567  ENSG00000197381       ENST00000460734 ENSE00001210927
1568  ENSG00000197381       ENST00000460734 ENSE00003777008
1569  ENSG00000197381       ENST00000460734 ENSE00001890115
1570  ENSG00000197381       ENST00000460734 ENSE00001929777
1571  ENSG00000197381       ENST00000460734 ENSE00001888667
1572  ENSG00000197381       ENST00000460734 ENSE00001864664
1573  ENSG00000197381       ENST00000460734 ENSE00001935775
1574  ENSG00000197381       ENST00000460734 ENSE00001902790
1575  ENSG00000197381       ENST00000460734 ENSE00002456815
1576  ENSG00000197381       ENST00000460734 ENSE00001847313
1577  ENSG00000197381       ENST00000389861 ENSE00001210927
1578  ENSG00000197381       ENST00000389861 ENSE00003777008
1579  ENSG00000197381       ENST00000389861 ENSE00001210936
1580  ENSG00000197381       ENST00000389861 ENSE00003779805
1581  ENSG00000197381       ENST00000389861 ENSE00003781361
1582  ENSG00000197381       ENST00000389861 ENSE00003781814
1583  ENSG00000197381       ENST00000389861 ENSE00003776488
1584  ENSG00000197381       ENST00000389861 ENSE00003781665
1585  ENSG00000197381       ENST00000389861 ENSE00003783846
1586  ENSG00000197381       ENST00000389861 ENSE00003780616
1587  ENSG00000197381       ENST00000389861 ENSE00003782989
1588  ENSG00000197381       ENST00000389861 ENSE00003779854
1589  ENSG00000197381       ENST00000389861 ENSE00003562843
1590  ENSG00000197381       ENST00000492414 ENSE00001210927
1591  ENSG00000197381       ENST00000492414 ENSE00001210936
1592  ENSG00000197381       ENST00000492414 ENSE00003562843
1593  ENSG00000197381       ENST00000492414 ENSE00003625084
1594  ENSG00000197381       ENST00000492414 ENSE00001050989
1595  ENSG00000197381       ENST00000492414 ENSE00003721505
1596  ENSG00000197381       ENST00000492414 ENSE00003721925
1597  ENSG00000197381       ENST00000492414 ENSE00003732074
1598  ENSG00000197381       ENST00000492414 ENSE00003736672
1599  ENSG00000197381       ENST00000492414 ENSE00003745511
1600  ENSG00000197381       ENST00000492414 ENSE00003718967
1601  ENSG00000197381       ENST00000492414 ENSE00003711984
1602  ENSG00000197381       ENST00000496664 ENSE00001210927
1603  ENSG00000197381       ENST00000496664 ENSE00001210936
1604  ENSG00000197381       ENST00000496664 ENSE00003562843
1605  ENSG00000197381       ENST00000496664 ENSE00003625084
1606  ENSG00000197381       ENST00000496664 ENSE00001050989
1607  ENSG00000197381       ENST00000496664 ENSE00003721505
1608  ENSG00000197381       ENST00000496664 ENSE00003721925
1609  ENSG00000197381       ENST00000496664 ENSE00003732074
1610  ENSG00000197381       ENST00000496664 ENSE00003736672
1611  ENSG00000197381       ENST00000496664 ENSE00003745511
1612  ENSG00000197381       ENST00000496664 ENSE00003718967
1613  ENSG00000197381       ENST00000496664 ENSE00003711984
1614  ENSG00000197381       ENST00000496664 ENSE00001507134
1615  ENSG00000197381       ENST00000389863 ENSE00001210927
1616  ENSG00000197381       ENST00000389863 ENSE00001210936
1617  ENSG00000197381       ENST00000389863 ENSE00003625084
1618  ENSG00000197381       ENST00000389863 ENSE00001050989
1619  ENSG00000197381       ENST00000389863 ENSE00003721505
1620  ENSG00000197381       ENST00000389863 ENSE00003721925
1621  ENSG00000197381       ENST00000389863 ENSE00003732074
1622  ENSG00000197381       ENST00000389863 ENSE00003736672
1623  ENSG00000197381       ENST00000389863 ENSE00003745511
1624  ENSG00000197381       ENST00000389863 ENSE00003718967
1625  ENSG00000197381       ENST00000389863 ENSE00001507134
1626  ENSG00000197381       ENST00000389863 ENSE00001507132
1627  ENSG00000197381       ENST00000389863 ENSE00003651172
1628  ENSG00000197381       ENST00000348831 ENSE00001210927
1629  ENSG00000197381       ENST00000348831 ENSE00001210936
1630  ENSG00000197381       ENST00000348831 ENSE00003625084
1631  ENSG00000197381       ENST00000348831 ENSE00001050989
1632  ENSG00000197381       ENST00000348831 ENSE00003721505
1633  ENSG00000197381       ENST00000348831 ENSE00003721925
1634  ENSG00000197381       ENST00000348831 ENSE00003732074
1635  ENSG00000197381       ENST00000348831 ENSE00003736672
1636  ENSG00000197381       ENST00000348831 ENSE00003745511
1637  ENSG00000197381       ENST00000348831 ENSE00003718967
1638  ENSG00000197381       ENST00000348831 ENSE00001530203
1639  ENSG00000197381       ENST00000449478 ENSE00001210927
1640  ENSG00000197381       ENST00000449478 ENSE00003625084
1641  ENSG00000197381       ENST00000449478 ENSE00001631876
1642  ENSG00000197381       ENST00000449478 ENSE00001772958
1643  ENSG00000197381       ENST00000464215 ENSE00003777008
1644  ENSG00000197381       ENST00000464215 ENSE00001832701
1645  ENSG00000197381       ENST00000464215 ENSE00001871618
1646  ENSG00000197381       ENST00000360697 ENSE00001050989
1647  ENSG00000197381       ENST00000360697 ENSE00003721505
1648  ENSG00000197381       ENST00000360697 ENSE00003721925
1649  ENSG00000197381       ENST00000360697 ENSE00003732074
1650  ENSG00000197381       ENST00000360697 ENSE00003736672
1651  ENSG00000197381       ENST00000360697 ENSE00003745511
1652  ENSG00000197381       ENST00000360697 ENSE00003718967
1653  ENSG00000197381       ENST00000360697 ENSE00001507134
1654  ENSG00000197381       ENST00000360697 ENSE00001530203
1655  ENSG00000197381       ENST00000360697 ENSE00001507135
1656  ENSG00000197381       ENST00000481022 ENSE00001817612
1657  ENSG00000197381       ENST00000481022 ENSE00001894242
1658  ENSG00000197381       ENST00000631642 ENSE00003776488
1659  ENSG00000197381       ENST00000631642 ENSE00003782648
1660  ENSG00000197381       ENST00000631642 ENSE00003776594
1661  ENSG00000197381       ENST00000631642 ENSE00003779119
1662  ENSG00000197381       ENST00000437626 ENSE00001210927
1663  ENSG00000197381       ENST00000437626 ENSE00001210936
1664  ENSG00000197381       ENST00000437626 ENSE00003625084
1665  ENSG00000197381       ENST00000437626 ENSE00001050989
1666  ENSG00000197381       ENST00000437626 ENSE00003721505
1667  ENSG00000197381       ENST00000437626 ENSE00003721925
1668  ENSG00000197381       ENST00000437626 ENSE00003732074
1669  ENSG00000197381       ENST00000437626 ENSE00003736672
1670  ENSG00000197381       ENST00000437626 ENSE00003745511
1671  ENSG00000197381       ENST00000437626 ENSE00003718967
1672  ENSG00000197381       ENST00000437626 ENSE00003711984
1673  ENSG00000197381       ENST00000437626 ENSE00001507134
1674  ENSG00000197381       ENST00000437626 ENSE00001612728
1675  ENSG00000197381       ENST00000611195 ENSE00003723523
1676  ENSG00000197381       ENST00000611195 ENSE00003724758
1677  ENSG00000197381       ENST00000629643 ENSE00001050989
1678  ENSG00000197381       ENST00000629643 ENSE00003721505
1679  ENSG00000197381       ENST00000629643 ENSE00003721925
1680  ENSG00000197381       ENST00000629643 ENSE00003732074
1681  ENSG00000197381       ENST00000629643 ENSE00003736672
1682  ENSG00000197381       ENST00000629643 ENSE00003745511
1683  ENSG00000197381       ENST00000629643 ENSE00003718967
1684  ENSG00000197381       ENST00000629643 ENSE00003711984
1685  ENSG00000197381       ENST00000629643 ENSE00001612728
1686  ENSG00000197381       ENST00000629643 ENSE00003769076
1687  ENSG00000197381       ENST00000629643 ENSE00003587995
1688  ENSG00000160216       ENST00000291572 ENSE00001950544
1689  ENSG00000160216       ENST00000291572 ENSE00001137610
1690  ENSG00000160216       ENST00000291572 ENSE00001414183
1691  ENSG00000160216       ENST00000291572 ENSE00003532414
1692  ENSG00000160216       ENST00000291572 ENSE00003635589
1693  ENSG00000160216       ENST00000291572 ENSE00003620755
1694  ENSG00000160216       ENST00000291572 ENSE00003790142
1695  ENSG00000160216       ENST00000291572 ENSE00003500378
1696  ENSG00000160216       ENST00000291572 ENSE00003671315
1697  ENSG00000160216       ENST00000291572 ENSE00001420549
1698  ENSG00000160216       ENST00000474735 ENSE00001892144
1699  ENSG00000160216       ENST00000474735 ENSE00001896051
1700  ENSG00000160216       ENST00000474735 ENSE00001946709
1701  ENSG00000160216       ENST00000474735 ENSE00001957413
1702  ENSG00000160216       ENST00000448287 ENSE00001137610
1703  ENSG00000160216       ENST00000448287 ENSE00001414183
1704  ENSG00000160216       ENST00000448287 ENSE00001769988
1705  ENSG00000160216       ENST00000448287 ENSE00001753604
1706  ENSG00000160216       ENST00000398061 ENSE00001137610
1707  ENSG00000160216       ENST00000398061 ENSE00001414183
1708  ENSG00000160216       ENST00000398061 ENSE00003532414
1709  ENSG00000160216       ENST00000398061 ENSE00003635589
1710  ENSG00000160216       ENST00000398061 ENSE00003620755
1711  ENSG00000160216       ENST00000398061 ENSE00003790142
1712  ENSG00000160216       ENST00000398061 ENSE00003500378
1713  ENSG00000160216       ENST00000398061 ENSE00003671315
1714  ENSG00000160216       ENST00000398061 ENSE00001531383
1715  ENSG00000160216       ENST00000398061 ENSE00001321560
1716  ENSG00000160216       ENST00000327505 ENSE00001414183
1717  ENSG00000160216       ENST00000327505 ENSE00003532414
1718  ENSG00000160216       ENST00000327505 ENSE00003635589
1719  ENSG00000160216       ENST00000327505 ENSE00003620755
1720  ENSG00000160216       ENST00000327505 ENSE00003790142
1721  ENSG00000160216       ENST00000327505 ENSE00003500378
1722  ENSG00000160216       ENST00000327505 ENSE00003671315
1723  ENSG00000160216       ENST00000327505 ENSE00001321560
1724  ENSG00000160216       ENST00000327505 ENSE00001531366
1725  ENSG00000160216       ENST00000445582 ENSE00001414183
1726  ENSG00000160216       ENST00000445582 ENSE00003532414
1727  ENSG00000160216       ENST00000445582 ENSE00001793970
1728  ENSG00000160216       ENST00000445582 ENSE00001768657
1729  ENSG00000160216       ENST00000398063 ENSE00001414183
1730  ENSG00000160216       ENST00000398063 ENSE00003532414
1731  ENSG00000160216       ENST00000398063 ENSE00003635589
1732  ENSG00000160216       ENST00000398063 ENSE00003620755
1733  ENSG00000160216       ENST00000398063 ENSE00003790142
1734  ENSG00000160216       ENST00000398063 ENSE00003500378
1735  ENSG00000160216       ENST00000398063 ENSE00003671315
1736  ENSG00000160216       ENST00000398063 ENSE00001420549
1737  ENSG00000160216       ENST00000398063 ENSE00001531391
1738  ENSG00000160216       ENST00000398058 ENSE00001414183
1739  ENSG00000160216       ENST00000398058 ENSE00003532414
1740  ENSG00000160216       ENST00000398058 ENSE00003635589
1741  ENSG00000160216       ENST00000398058 ENSE00003620755
1742  ENSG00000160216       ENST00000398058 ENSE00003790142
1743  ENSG00000160216       ENST00000398058 ENSE00003500378
1744  ENSG00000160216       ENST00000398058 ENSE00003671315
1745  ENSG00000160216       ENST00000398058 ENSE00001321560
1746  ENSG00000160216       ENST00000398058 ENSE00001531361
1747  ENSG00000160216       ENST00000398058 ENSE00001531359
1748  ENSG00000160216       ENST00000398058 ENSE00001531358
1749  ENSG00000160216       ENST00000457068 ENSE00001414183
1750  ENSG00000160216       ENST00000457068 ENSE00003532414
1751  ENSG00000160216       ENST00000457068 ENSE00003635589
1752  ENSG00000160216       ENST00000457068 ENSE00003620755
1753  ENSG00000160216       ENST00000457068 ENSE00003790142
1754  ENSG00000160216       ENST00000457068 ENSE00001641882
1755  ENSG00000160216       ENST00000448845 ENSE00001600918
1756  ENSG00000160216       ENST00000448845 ENSE00001619416
1757  ENSG00000160216       ENST00000448845 ENSE00001599763
1758  ENSG00000160216       ENST00000498670 ENSE00001931929
1759  ENSG00000160216       ENST00000498670 ENSE00001864296
1760  ENSG00000160216       ENST00000498670 ENSE00001842203
1761  ENSG00000160216       ENST00000422850 ENSE00001414183
1762  ENSG00000160216       ENST00000422850 ENSE00003532414
1763  ENSG00000160216       ENST00000422850 ENSE00003635589
1764  ENSG00000160216       ENST00000422850 ENSE00003620755
1765  ENSG00000160216       ENST00000422850 ENSE00003790142
1766  ENSG00000160216       ENST00000422850 ENSE00001653194
1767  ENSG00000160216       ENST00000497909 ENSE00001926499
1768  ENSG00000160216       ENST00000497909 ENSE00001910758
1769  ENSG00000160216       ENST00000479117 ENSE00001874093
1770  ENSG00000160216       ENST00000479117 ENSE00001925147
1771  ENSG00000160216       ENST00000479117 ENSE00003631068
1772  ENSG00000160216       ENST00000479117 ENSE00003645537
1773  ENSG00000160216       ENST00000479117 ENSE00003636375
1774  ENSG00000160216       ENST00000479117 ENSE00003670715
1775  ENSG00000160216       ENST00000479117 ENSE00003599240
1776  ENSG00000160216       ENST00000479117 ENSE00003557357
1777  ENSG00000160216       ENST00000479117 ENSE00001928991
1778  ENSG00000160216       ENST00000481319 ENSE00001925147
1779  ENSG00000160216       ENST00000481319 ENSE00001838730
1780  ENSG00000160216       ENST00000481319 ENSE00001838240
1781  ENSG00000160216       ENST00000481319 ENSE00001833458
1782  ENSG00000160216       ENST00000467358 ENSE00003645537
1783  ENSG00000160216       ENST00000467358 ENSE00003636375
1784  ENSG00000160216       ENST00000467358 ENSE00003670715
1785  ENSG00000160216       ENST00000467358 ENSE00003599240
1786  ENSG00000160216       ENST00000467358 ENSE00003557357
1787  ENSG00000160216       ENST00000467358 ENSE00001848324
1788  ENSG00000160216       ENST00000467358 ENSE00001869981
1789  ENSG00000160216       ENST00000484865 ENSE00003599240
1790  ENSG00000160216       ENST00000484865 ENSE00001932028
1791  ENSG00000160216       ENST00000484865 ENSE00001896463
1792  ENSG00000160216       ENST00000546158 ENSE00001414183
1793  ENSG00000160216       ENST00000546158 ENSE00003532414
1794  ENSG00000160216       ENST00000546158 ENSE00003635589
1795  ENSG00000160216       ENST00000546158 ENSE00003620755
1796  ENSG00000160216       ENST00000546158 ENSE00003790142
1797  ENSG00000160216       ENST00000546158 ENSE00003500378
1798  ENSG00000160216       ENST00000546158 ENSE00003671315
1799  ENSG00000160216       ENST00000546158 ENSE00002217841
1800  ENSG00000160216       ENST00000546158 ENSE00002251004
1801  ENSG00000160224       ENST00000530812 ENSE00002196264
1802  ENSG00000160224       ENST00000530812 ENSE00003528176
1803  ENSG00000160224       ENST00000530812 ENSE00002149937
1804  ENSG00000160224       ENST00000530812 ENSE00002161949
1805  ENSG00000160224       ENST00000530812 ENSE00003661391
1806  ENSG00000160224       ENST00000530812 ENSE00002177605
1807  ENSG00000160224       ENST00000530812 ENSE00003547168
1808  ENSG00000160224       ENST00000530812 ENSE00003689225
1809  ENSG00000160224       ENST00000530812 ENSE00003565844
1810  ENSG00000160224       ENST00000530812 ENSE00003569029
1811  ENSG00000160224       ENST00000530812 ENSE00003557852
1812  ENSG00000160224       ENST00000530812 ENSE00002143741
1813  ENSG00000160224       ENST00000527919 ENSE00003528176
1814  ENSG00000160224       ENST00000527919 ENSE00002149937
1815  ENSG00000160224       ENST00000527919 ENSE00003661391
1816  ENSG00000160224       ENST00000527919 ENSE00002177605
1817  ENSG00000160224       ENST00000527919 ENSE00003547168
1818  ENSG00000160224       ENST00000527919 ENSE00003689225
1819  ENSG00000160224       ENST00000527919 ENSE00003565844
1820  ENSG00000160224       ENST00000527919 ENSE00003557852
1821  ENSG00000160224       ENST00000527919 ENSE00002157138
1822  ENSG00000160224       ENST00000527919 ENSE00003571459
1823  ENSG00000160224       ENST00000527919 ENSE00002197440
1824  ENSG00000160224       ENST00000527919 ENSE00003641315
1825  ENSG00000160224       ENST00000527919 ENSE00002141811
1826  ENSG00000160224       ENST00000527919 ENSE00002165283
1827  ENSG00000160224       ENST00000291582 ENSE00001050710
1828  ENSG00000160224       ENST00000291582 ENSE00003484440
1829  ENSG00000160224       ENST00000291582 ENSE00001050714
1830  ENSG00000160224       ENST00000291582 ENSE00001050716
1831  ENSG00000160224       ENST00000291582 ENSE00003524824
1832  ENSG00000160224       ENST00000291582 ENSE00003592619
1833  ENSG00000160224       ENST00000291582 ENSE00003685344
1834  ENSG00000160224       ENST00000291582 ENSE00001136688
1835  ENSG00000160224       ENST00000291582 ENSE00003560932
1836  ENSG00000160224       ENST00000291582 ENSE00003569099
1837  ENSG00000160224       ENST00000291582 ENSE00003600226
1838  ENSG00000160224       ENST00000291582 ENSE00003664932
1839  ENSG00000160224       ENST00000291582 ENSE00003586834
1840  ENSG00000160224       ENST00000291582 ENSE00003668332
1841  ENSG00000160224       ENST00000397994 ENSE00003547168
1842  ENSG00000160224       ENST00000397994 ENSE00003565844
1843  ENSG00000160224       ENST00000397994 ENSE00003569029
1844  ENSG00000160224       ENST00000397994 ENSE00003557852
1845  ENSG00000160224       ENST00000397994 ENSE00002168258
1846  ENSG00000160224       ENST00000397994 ENSE00003353237
1847  ENSG00000160224       ENST00000397994 ENSE00003529538
1848  ENSG00000160224       ENST00000397994 ENSE00003624155
1849  ENSG00000160224       ENST00000337909 ENSE00003547168
1850  ENSG00000160224       ENST00000337909 ENSE00003689225
1851  ENSG00000160224       ENST00000337909 ENSE00003565844
1852  ENSG00000160224       ENST00000337909 ENSE00003569029
1853  ENSG00000160224       ENST00000337909 ENSE00003557852
1854  ENSG00000160224       ENST00000337909 ENSE00002168258
1855  ENSG00000160224       ENST00000337909 ENSE00003353237
1856  ENSG00000215559       ENST00000442192 ENSE00001791375
1857  ENSG00000215559       ENST00000442192 ENSE00001681719
1858  ENSG00000215559       ENST00000442192 ENSE00001665902
1859  ENSG00000215559       ENST00000442192 ENSE00001620289
1860  ENSG00000215559       ENST00000442192 ENSE00001625462
1861  ENSG00000215559       ENST00000442192 ENSE00001614206
1862  ENSG00000215559       ENST00000442192 ENSE00001672783
1863  ENSG00000215559       ENST00000451663 ENSE00001681719
1864  ENSG00000215559       ENST00000451663 ENSE00001665902
1865  ENSG00000215559       ENST00000451663 ENSE00001620289
1866  ENSG00000215559       ENST00000451663 ENSE00001625462
1867  ENSG00000215559       ENST00000451663 ENSE00001614206
1868  ENSG00000215559       ENST00000451663 ENSE00001713234
1869  ENSG00000215559       ENST00000451663 ENSE00001788452
1870  ENSG00000215559       ENST00000451663 ENSE00001593380
1871  ENSG00000215559       ENST00000451663 ENSE00001798439
1872  ENSG00000215559       ENST00000451663 ENSE00001679742
1873  ENSG00000215559       ENST00000451663 ENSE00001676461
1874  ENSG00000215559       ENST00000451663 ENSE00001688075
1875  ENSG00000215559       ENST00000451663 ENSE00001666972
1876  ENSG00000215559       ENST00000451663 ENSE00002246698
1877  ENSG00000215559       ENST00000451663 ENSE00002313590
1878  ENSG00000215559       ENST00000451663 ENSE00002303993
1879  ENSG00000215559       ENST00000451663 ENSE00002220543
1880  ENSG00000215559       ENST00000451663 ENSE00001594436
1881  ENSG00000215559       ENST00000451663 ENSE00001550526
1882  ENSG00000215559       ENST00000451663 ENSE00001631085
1883  ENSG00000215559       ENST00000451663 ENSE00001597487
1884  ENSG00000215559       ENST00000451663 ENSE00001660304
1885  ENSG00000215559       ENST00000451663 ENSE00001697613
1886  ENSG00000215559       ENST00000451663 ENSE00001761941
1887  ENSG00000215559       ENST00000451663 ENSE00001722904
1888  ENSG00000215559       ENST00000428576 ENSE00002313590
1889  ENSG00000215559       ENST00000428576 ENSE00002303993
1890  ENSG00000215559       ENST00000428576 ENSE00002220543
1891  ENSG00000215559       ENST00000428576 ENSE00001594436
1892  ENSG00000215559       ENST00000428576 ENSE00001550526
1893  ENSG00000215559       ENST00000428576 ENSE00001593188
1894  ENSG00000215559       ENST00000428576 ENSE00001553086
1895  ENSG00000215559       ENST00000432875 ENSE00002313590
1896  ENSG00000215559       ENST00000432875 ENSE00002303993
1897  ENSG00000215559       ENST00000432875 ENSE00001594436
1898  ENSG00000215559       ENST00000432875 ENSE00001684961
1899  ENSG00000215559       ENST00000432875 ENSE00001759426
1900  ENSG00000215559       ENST00000432875 ENSE00001738451
1901  ENSG00000215559       ENST00000429521 ENSE00001679742
1902  ENSG00000215559       ENST00000429521 ENSE00001676461
1903  ENSG00000215559       ENST00000429521 ENSE00002313590
1904  ENSG00000215559       ENST00000429521 ENSE00002303993
1905  ENSG00000215559       ENST00000429521 ENSE00002220543
1906  ENSG00000215559       ENST00000429521 ENSE00001722425
1907  ENSG00000215559       ENST00000429521 ENSE00001629043
1908  ENSG00000215559       ENST00000429521 ENSE00001591807
1909  ENSG00000215559       ENST00000344693 ENSE00002246698
1910  ENSG00000215559       ENST00000344693 ENSE00002313590
1911  ENSG00000215559       ENST00000344693 ENSE00002303993
1912  ENSG00000215559       ENST00000344693 ENSE00002220543
1913  ENSG00000215559       ENST00000344693 ENSE00002284794
1914  ENSG00000215559       ENST00000344693 ENSE00002227458
1915  ENSG00000249493       ENST00000359341 ENSE00002039080
1916  ENSG00000249493       ENST00000359341 ENSE00001609657
1917  ENSG00000249493       ENST00000359341 ENSE00002057291
1918  ENSG00000175302       ENST00000451052 ENSE00001690047
1919  ENSG00000175302       ENST00000451052 ENSE00001739693
1920  ENSG00000175302       ENST00000451052 ENSE00001609482
1921  ENSG00000175302       ENST00000451052 ENSE00001792240
1922  ENSG00000175302       ENST00000451052 ENSE00001618910
1923  ENSG00000175302       ENST00000451052 ENSE00001719067
1924  ENSG00000175302       ENST00000451052 ENSE00001633226
1925  ENSG00000175302       ENST00000451052 ENSE00001724949
1926  ENSG00000175302       ENST00000451052 ENSE00001761712
1927  ENSG00000175302       ENST00000451052 ENSE00001798958
1928  ENSG00000175302       ENST00000451052 ENSE00001632321
1929  ENSG00000175302       ENST00000451052 ENSE00001696843
1930  ENSG00000175302       ENST00000451052 ENSE00001702645
1931  ENSG00000175302       ENST00000451052 ENSE00001676284
1932  ENSG00000175302       ENST00000451052 ENSE00001625429
1933  ENSG00000175302       ENST00000451052 ENSE00001597354
1934  ENSG00000175302       ENST00000451052 ENSE00001751390
1935  ENSG00000175302       ENST00000451052 ENSE00003684284
1936  ENSG00000224309       ENST00000447861 ENSE00001666223
1937  ENSG00000224309       ENST00000447861 ENSE00001740253
1938  ENSG00000224309       ENST00000447861 ENSE00001602210
1939  ENSG00000224309       ENST00000447861 ENSE00001700951
1940  ENSG00000224309       ENST00000447861 ENSE00001762816
1941  ENSG00000224309       ENST00000435744 ENSE00001740253
1942  ENSG00000224309       ENST00000435744 ENSE00001700951
1943  ENSG00000224309       ENST00000435744 ENSE00001785486
1944  ENSG00000224309       ENST00000435744 ENSE00001782233
1945  ENSG00000224309       ENST00000435744 ENSE00002215833
1946  ENSG00000224309       ENST00000435744 ENSE00001761571
1947  ENSG00000224309       ENST00000435744 ENSE00001634691
1948  ENSG00000224309       ENST00000435744 ENSE00001735545
1949  ENSG00000224309       ENST00000435744 ENSE00001615725
1950  ENSG00000224309       ENST00000435744 ENSE00001665133
1951  ENSG00000224309       ENST00000435744 ENSE00001686977
1952  ENSG00000224309       ENST00000507941 ENSE00002057944
1953  ENSG00000224309       ENST00000507941 ENSE00002049806
1954  ENSG00000224309       ENST00000471407 ENSE00001700951
1955  ENSG00000224309       ENST00000471407 ENSE00001762816
1956  ENSG00000224309       ENST00000471407 ENSE00002215833
1957  ENSG00000224309       ENST00000471407 ENSE00002244026
1958  ENSG00000142192       ENST00000346798 ENSE00001909719
1959  ENSG00000142192       ENST00000346798 ENSE00003537029
1960  ENSG00000142192       ENST00000346798 ENSE00003491735
1961  ENSG00000142192       ENST00000346798 ENSE00003586713
1962  ENSG00000142192       ENST00000346798 ENSE00003595661
1963  ENSG00000142192       ENST00000346798 ENSE00003527715
1964  ENSG00000142192       ENST00000346798 ENSE00003691723
1965  ENSG00000142192       ENST00000346798 ENSE00001309322
1966  ENSG00000142192       ENST00000346798 ENSE00001017338
1967  ENSG00000142192       ENST00000346798 ENSE00001608815
1968  ENSG00000142192       ENST00000346798 ENSE00001017350
1969  ENSG00000142192       ENST00000346798 ENSE00001299537
1970  ENSG00000142192       ENST00000346798 ENSE00001299406
1971  ENSG00000142192       ENST00000346798 ENSE00001299617
1972  ENSG00000142192       ENST00000346798 ENSE00001324614
1973  ENSG00000142192       ENST00000346798 ENSE00001318724
1974  ENSG00000142192       ENST00000346798 ENSE00003548276
1975  ENSG00000142192       ENST00000346798 ENSE00001725664
1976  ENSG00000142192       ENST00000354192 ENSE00003491735
1977  ENSG00000142192       ENST00000354192 ENSE00003586713
1978  ENSG00000142192       ENST00000354192 ENSE00003595661
1979  ENSG00000142192       ENST00000354192 ENSE00003527715
1980  ENSG00000142192       ENST00000354192 ENSE00001017338
1981  ENSG00000142192       ENST00000354192 ENSE00001608815
1982  ENSG00000142192       ENST00000354192 ENSE00001017350
1983  ENSG00000142192       ENST00000354192 ENSE00001299537
1984  ENSG00000142192       ENST00000354192 ENSE00001299406
1985  ENSG00000142192       ENST00000354192 ENSE00001299617
1986  ENSG00000142192       ENST00000354192 ENSE00001324614
1987  ENSG00000142192       ENST00000354192 ENSE00001318724
1988  ENSG00000142192       ENST00000354192 ENSE00003548276
1989  ENSG00000142192       ENST00000354192 ENSE00001725664
1990  ENSG00000142192       ENST00000354192 ENSE00001704412
1991  ENSG00000142192       ENST00000348990 ENSE00003537029
1992  ENSG00000142192       ENST00000348990 ENSE00003491735
1993  ENSG00000142192       ENST00000348990 ENSE00003586713
1994  ENSG00000142192       ENST00000348990 ENSE00003595661
1995  ENSG00000142192       ENST00000348990 ENSE00003527715
1996  ENSG00000142192       ENST00000348990 ENSE00001017338
1997  ENSG00000142192       ENST00000348990 ENSE00001608815
1998  ENSG00000142192       ENST00000348990 ENSE00001017350
1999  ENSG00000142192       ENST00000348990 ENSE00001299537
2000  ENSG00000142192       ENST00000348990 ENSE00001299406
2001  ENSG00000142192       ENST00000348990 ENSE00001299617
2002  ENSG00000142192       ENST00000348990 ENSE00001324614
2003  ENSG00000142192       ENST00000348990 ENSE00001318724
2004  ENSG00000142192       ENST00000348990 ENSE00003548276
2005  ENSG00000142192       ENST00000348990 ENSE00001725664
2006  ENSG00000142192       ENST00000348990 ENSE00001901307
2007  ENSG00000142192       ENST00000357903 ENSE00003537029
2008  ENSG00000142192       ENST00000357903 ENSE00003491735
2009  ENSG00000142192       ENST00000357903 ENSE00003586713
2010  ENSG00000142192       ENST00000357903 ENSE00003595661
2011  ENSG00000142192       ENST00000357903 ENSE00003527715
2012  ENSG00000142192       ENST00000357903 ENSE00003691723
2013  ENSG00000142192       ENST00000357903 ENSE00001017338
2014  ENSG00000142192       ENST00000357903 ENSE00001608815
2015  ENSG00000142192       ENST00000357903 ENSE00001017350
2016  ENSG00000142192       ENST00000357903 ENSE00001299537
2017  ENSG00000142192       ENST00000357903 ENSE00001299406
2018  ENSG00000142192       ENST00000357903 ENSE00001299617
2019  ENSG00000142192       ENST00000357903 ENSE00001324614
2020  ENSG00000142192       ENST00000357903 ENSE00001318724
2021  ENSG00000142192       ENST00000357903 ENSE00003548276
2022  ENSG00000142192       ENST00000357903 ENSE00001725664
2023  ENSG00000142192       ENST00000357903 ENSE00001895535
2024  ENSG00000142192       ENST00000440126 ENSE00003537029
2025  ENSG00000142192       ENST00000440126 ENSE00003491735
2026  ENSG00000142192       ENST00000440126 ENSE00003586713
2027  ENSG00000142192       ENST00000440126 ENSE00003595661
2028  ENSG00000142192       ENST00000440126 ENSE00003527715
2029  ENSG00000142192       ENST00000440126 ENSE00003691723
2030  ENSG00000142192       ENST00000440126 ENSE00001017338
2031  ENSG00000142192       ENST00000440126 ENSE00001608815
2032  ENSG00000142192       ENST00000440126 ENSE00001017350
2033  ENSG00000142192       ENST00000440126 ENSE00001299537
2034  ENSG00000142192       ENST00000440126 ENSE00001299406
2035  ENSG00000142192       ENST00000440126 ENSE00001299617
2036  ENSG00000142192       ENST00000440126 ENSE00001324614
2037  ENSG00000142192       ENST00000440126 ENSE00001318724
2038  ENSG00000142192       ENST00000440126 ENSE00003548276
2039  ENSG00000142192       ENST00000440126 ENSE00001790512
2040  ENSG00000142192       ENST00000440126 ENSE00002224094
2041  ENSG00000142192       ENST00000439274 ENSE00001909719
2042  ENSG00000142192       ENST00000439274 ENSE00003491735
2043  ENSG00000142192       ENST00000439274 ENSE00003586713
2044  ENSG00000142192       ENST00000439274 ENSE00003595661
2045  ENSG00000142192       ENST00000439274 ENSE00003527715
2046  ENSG00000142192       ENST00000439274 ENSE00003691723
2047  ENSG00000142192       ENST00000439274 ENSE00001309322
2048  ENSG00000142192       ENST00000439274 ENSE00001017338
2049  ENSG00000142192       ENST00000439274 ENSE00001608815
2050  ENSG00000142192       ENST00000439274 ENSE00001017350
2051  ENSG00000142192       ENST00000439274 ENSE00001299537
2052  ENSG00000142192       ENST00000439274 ENSE00001299406
2053  ENSG00000142192       ENST00000439274 ENSE00001299617
2054  ENSG00000142192       ENST00000439274 ENSE00001324614
2055  ENSG00000142192       ENST00000439274 ENSE00001318724
2056  ENSG00000142192       ENST00000439274 ENSE00003548276
2057  ENSG00000142192       ENST00000439274 ENSE00002105951
2058  ENSG00000142192       ENST00000464867 ENSE00001948125
2059  ENSG00000142192       ENST00000464867 ENSE00003549951
2060  ENSG00000142192       ENST00000464867 ENSE00001854652
2061  ENSG00000142192       ENST00000358918 ENSE00003537029
2062  ENSG00000142192       ENST00000358918 ENSE00003491735
2063  ENSG00000142192       ENST00000358918 ENSE00003586713
2064  ENSG00000142192       ENST00000358918 ENSE00003595661
2065  ENSG00000142192       ENST00000358918 ENSE00003527715
2066  ENSG00000142192       ENST00000358918 ENSE00003691723
2067  ENSG00000142192       ENST00000358918 ENSE00001309322
2068  ENSG00000142192       ENST00000358918 ENSE00001017338
2069  ENSG00000142192       ENST00000358918 ENSE00001608815
2070  ENSG00000142192       ENST00000358918 ENSE00001017350
2071  ENSG00000142192       ENST00000358918 ENSE00001299537
2072  ENSG00000142192       ENST00000358918 ENSE00001299406
2073  ENSG00000142192       ENST00000358918 ENSE00001299617
2074  ENSG00000142192       ENST00000358918 ENSE00001318724
2075  ENSG00000142192       ENST00000358918 ENSE00003548276
2076  ENSG00000142192       ENST00000358918 ENSE00001404309
2077  ENSG00000142192       ENST00000358918 ENSE00002281438
2078  ENSG00000142192       ENST00000448850 ENSE00003586713
2079  ENSG00000142192       ENST00000448850 ENSE00003595661
2080  ENSG00000142192       ENST00000448850 ENSE00003527715
2081  ENSG00000142192       ENST00000448850 ENSE00003691723
2082  ENSG00000142192       ENST00000448850 ENSE00001017338
2083  ENSG00000142192       ENST00000448850 ENSE00001608815
2084  ENSG00000142192       ENST00000448850 ENSE00001017350
2085  ENSG00000142192       ENST00000448850 ENSE00001299537
2086  ENSG00000142192       ENST00000448850 ENSE00001299406
2087  ENSG00000142192       ENST00000448850 ENSE00001649492
2088  ENSG00000142192       ENST00000448850 ENSE00001713040
2089  ENSG00000142192       ENST00000415997 ENSE00003527715
2090  ENSG00000142192       ENST00000415997 ENSE00001309322
2091  ENSG00000142192       ENST00000415997 ENSE00001017338
2092  ENSG00000142192       ENST00000415997 ENSE00001608815
2093  ENSG00000142192       ENST00000415997 ENSE00001736500
2094  ENSG00000142192       ENST00000415997 ENSE00001622476
2095  ENSG00000142192       ENST00000491395 ENSE00001913538
2096  ENSG00000142192       ENST00000491395 ENSE00003576750
2097  ENSG00000142192       ENST00000491395 ENSE00003592035
2098  ENSG00000142192       ENST00000491395 ENSE00001920764
2099  ENSG00000142192       ENST00000474136 ENSE00003576750
2100  ENSG00000142192       ENST00000474136 ENSE00001898787
2101  ENSG00000142192       ENST00000474136 ENSE00003509738
2102  ENSG00000142192       ENST00000474136 ENSE00003583288
2103  ENSG00000142192       ENST00000474136 ENSE00003531840
2104  ENSG00000142192       ENST00000474136 ENSE00003525570
2105  ENSG00000142192       ENST00000474136 ENSE00001882581
2106  ENSG00000142192       ENST00000463070 ENSE00003525570
2107  ENSG00000142192       ENST00000463070 ENSE00001952161
2108  ENSG00000142192       ENST00000463070 ENSE00001842592
2109  ENSG00000142192       ENST00000548570 ENSE00003531840
2110  ENSG00000142192       ENST00000548570 ENSE00002337095
2111  ENSG00000142192       ENST00000548570 ENSE00002364109
2112  ENSG00000142192       ENST00000462267 ENSE00001855859
2113  ENSG00000142192       ENST00000462267 ENSE00001833309
2114  ENSG00000142192       ENST00000466453 ENSE00001850860
2115  ENSG00000142192       ENST00000466453 ENSE00001851707
2116  ENSG00000142192       ENST00000359726 ENSE00003491735
2117  ENSG00000142192       ENST00000359726 ENSE00003586713
2118  ENSG00000142192       ENST00000359726 ENSE00003595661
2119  ENSG00000142192       ENST00000359726 ENSE00003527715
2120  ENSG00000142192       ENST00000359726 ENSE00001017338
2121  ENSG00000142192       ENST00000359726 ENSE00001608815
2122  ENSG00000142192       ENST00000359726 ENSE00001017350
2123  ENSG00000142192       ENST00000359726 ENSE00001299537
2124  ENSG00000142192       ENST00000359726 ENSE00001299406
2125  ENSG00000142192       ENST00000359726 ENSE00001299617
2126  ENSG00000142192       ENST00000359726 ENSE00001324614
2127  ENSG00000142192       ENST00000359726 ENSE00001318724
2128  ENSG00000142192       ENST00000359726 ENSE00003548276
2129  ENSG00000142192       ENST00000359726 ENSE00001797859
2130  ENSG00000142192       ENST00000359726 ENSE00003475190
2131  ENSG00000142192       ENST00000359726 ENSE00001324453
2132  ENSG00000154723       ENST00000400099 ENSE00001541550
2133  ENSG00000154723       ENST00000400099 ENSE00003475470
2134  ENSG00000154723       ENST00000400099 ENSE00001017309
2135  ENSG00000154723       ENST00000400099 ENSE00001541531
2136  ENSG00000154723       ENST00000400099 ENSE00001541530
2137  ENSG00000154723       ENST00000400094 ENSE00003475470
2138  ENSG00000154723       ENST00000400094 ENSE00001017309
2139  ENSG00000154723       ENST00000400094 ENSE00001541525
2140  ENSG00000154723       ENST00000400094 ENSE00001541523
2141  ENSG00000154723       ENST00000400094 ENSE00001541521
2142  ENSG00000154723       ENST00000284971 ENSE00003475470
2143  ENSG00000154723       ENST00000284971 ENSE00001017309
2144  ENSG00000154723       ENST00000284971 ENSE00001541521
2145  ENSG00000154723       ENST00000284971 ENSE00001017313
2146  ENSG00000154723       ENST00000457143 ENSE00001017309
2147  ENSG00000154723       ENST00000457143 ENSE00001541521
2148  ENSG00000154723       ENST00000457143 ENSE00002218813
2149  ENSG00000154723       ENST00000457143 ENSE00003506826
2150  ENSG00000154723       ENST00000400090 ENSE00003475470
2151  ENSG00000154723       ENST00000400090 ENSE00001017309
2152  ENSG00000154723       ENST00000400090 ENSE00001541521
2153  ENSG00000154723       ENST00000400090 ENSE00001541509
2154  ENSG00000154723       ENST00000400087 ENSE00003475470
2155  ENSG00000154723       ENST00000400087 ENSE00001017309
2156  ENSG00000154723       ENST00000400087 ENSE00001541521
2157  ENSG00000154723       ENST00000400087 ENSE00001541502
2158  ENSG00000154723       ENST00000400093 ENSE00003475470
2159  ENSG00000154723       ENST00000400093 ENSE00001017309
2160  ENSG00000154723       ENST00000400093 ENSE00001541521
2161  ENSG00000154723       ENST00000400093 ENSE00001541511
2162  ENSG00000154723       ENST00000486002 ENSE00001541525
2163  ENSG00000154723       ENST00000486002 ENSE00003573022
2164  ENSG00000154723       ENST00000486002 ENSE00001843205
2165  ENSG00000224421       ENST00000444161 ENSE00001758681
2166  ENSG00000241837       ENST00000431254 ENSE00003686413
2167  ENSG00000241837       ENST00000431254 ENSE00001777826
2168  ENSG00000241837       ENST00000431254 ENSE00003553754
2169  ENSG00000241837       ENST00000431254 ENSE00003664335
2170  ENSG00000241837       ENST00000431254 ENSE00003660834
2171  ENSG00000241837       ENST00000431254 ENSE00003505158
2172  ENSG00000241837       ENST00000491703 ENSE00003686413
2173  ENSG00000241837       ENST00000491703 ENSE00003505158
2174  ENSG00000241837       ENST00000491703 ENSE00001880491
2175  ENSG00000241837       ENST00000491703 ENSE00003484979
2176  ENSG00000241837       ENST00000491703 ENSE00003622069
2177  ENSG00000241837       ENST00000491703 ENSE00001840885
2178  ENSG00000241837       ENST00000290299 ENSE00003553754
2179  ENSG00000241837       ENST00000290299 ENSE00003664335
2180  ENSG00000241837       ENST00000290299 ENSE00001391666
2181  ENSG00000241837       ENST00000290299 ENSE00003658594
2182  ENSG00000241837       ENST00000290299 ENSE00003608641
2183  ENSG00000241837       ENST00000290299 ENSE00003477232
2184  ENSG00000241837       ENST00000290299 ENSE00003503253
2185  ENSG00000241837       ENST00000417181 ENSE00003505158
2186  ENSG00000241837       ENST00000417181 ENSE00001592610
2187  ENSG00000241837       ENST00000417181 ENSE00001688323
2188  ENSG00000241837       ENST00000417181 ENSE00001608844
2189  ENSG00000241837       ENST00000417181 ENSE00001792484
2190  ENSG00000241837       ENST00000418933 ENSE00003608641
2191  ENSG00000241837       ENST00000418933 ENSE00003477232
2192  ENSG00000241837       ENST00000418933 ENSE00002494347
2193  ENSG00000241837       ENST00000418933 ENSE00001714691
2194  ENSG00000241837       ENST00000429064 ENSE00003505158
2195  ENSG00000241837       ENST00000429064 ENSE00001671372
2196  ENSG00000241837       ENST00000429064 ENSE00001717647
2197  ENSG00000241837       ENST00000429064 ENSE00001632641
2198  ENSG00000241837       ENST00000495005 ENSE00003484979
2199  ENSG00000241837       ENST00000495005 ENSE00001868718
2200  ENSG00000241837       ENST00000495005 ENSE00003473248
2201  ENSG00000241837       ENST00000495005 ENSE00001917505
2202  ENSG00000241837       ENST00000496044 ENSE00003473248
2203  ENSG00000241837       ENST00000496044 ENSE00001948435
2204  ENSG00000241837       ENST00000496044 ENSE00001810366
2205  ENSG00000241837       ENST00000484627 ENSE00003473248
2206  ENSG00000241837       ENST00000484627 ENSE00001810366
2207  ENSG00000241837       ENST00000484627 ENSE00001896370
2208  ENSG00000241837       ENST00000487374 ENSE00003473248
2209  ENSG00000241837       ENST00000487374 ENSE00001927911
2210  ENSG00000241837       ENST00000487374 ENSE00001936688
2211  ENSG00000183778       ENST00000380620 ENSE00001485659
2212  ENSG00000183778       ENST00000380620 ENSE00001485658
2213  ENSG00000183778       ENST00000380620 ENSE00001485657
2214  ENSG00000183778       ENST00000380620 ENSE00001485655
2215  ENSG00000183778       ENST00000380620 ENSE00003704093
2216  ENSG00000183778       ENST00000475838 ENSE00001943002
2217  ENSG00000183778       ENST00000475838 ENSE00001813619
2218  ENSG00000183778       ENST00000380618 ENSE00001485655
2219  ENSG00000183778       ENST00000380618 ENSE00001485640
2220  ENSG00000183778       ENST00000380618 ENSE00001485653
2221  ENSG00000183778       ENST00000398714 ENSE00003714074
2222  ENSG00000183778       ENST00000398714 ENSE00003754588
2223  ENSG00000183778       ENST00000615480 ENSE00001485655
2224  ENSG00000183778       ENST00000615480 ENSE00003719844
2225  ENSG00000183778       ENST00000615480 ENSE00003729165
2226  ENSG00000183778       ENST00000343118 ENSE00001485655
2227  ENSG00000183778       ENST00000343118 ENSE00003729165
2228  ENSG00000183778       ENST00000343118 ENSE00001534522
2229  ENSG00000184809       ENST00000489821 ENSE00001867995
2230  ENSG00000184809       ENST00000489821 ENSE00003757115
2231  ENSG00000184809       ENST00000380612 ENSE00003757115
2232  ENSG00000184809       ENST00000380612 ENSE00001811621
2233  ENSG00000184809       ENST00000380612 ENSE00001295606
2234  ENSG00000184809       ENST00000380604 ENSE00001811621
2235  ENSG00000184809       ENST00000380604 ENSE00001295606
2236  ENSG00000184809       ENST00000380604 ENSE00001718741
2237  ENSG00000184809       ENST00000329618 ENSE00001295606
2238  ENSG00000184809       ENST00000329618 ENSE00001316494
2239  ENSG00000184809       ENST00000329618 ENSE00001719814
2240  ENSG00000182240       ENST00000330333 ENSE00001304779
2241  ENSG00000182240       ENST00000330333 ENSE00003469846
2242  ENSG00000182240       ENST00000330333 ENSE00003645299
2243  ENSG00000182240       ENST00000330333 ENSE00003571071
2244  ENSG00000182240       ENST00000330333 ENSE00003499814
2245  ENSG00000182240       ENST00000330333 ENSE00003680958
2246  ENSG00000182240       ENST00000330333 ENSE00003650610
2247  ENSG00000182240       ENST00000330333 ENSE00003625781
2248  ENSG00000182240       ENST00000330333 ENSE00003637712
2249  ENSG00000182240       ENST00000328735 ENSE00001304779
2250  ENSG00000182240       ENST00000328735 ENSE00003469846
2251  ENSG00000182240       ENST00000328735 ENSE00003645299
2252  ENSG00000182240       ENST00000328735 ENSE00003571071
2253  ENSG00000182240       ENST00000328735 ENSE00003499814
2254  ENSG00000182240       ENST00000328735 ENSE00003680958
2255  ENSG00000182240       ENST00000328735 ENSE00003650610
2256  ENSG00000182240       ENST00000328735 ENSE00003625685
2257  ENSG00000182240       ENST00000347667 ENSE00001304779
2258  ENSG00000182240       ENST00000347667 ENSE00003469846
2259  ENSG00000182240       ENST00000347667 ENSE00003645299
2260  ENSG00000182240       ENST00000347667 ENSE00003571071
2261  ENSG00000182240       ENST00000347667 ENSE00003499814
2262  ENSG00000182240       ENST00000347667 ENSE00003680958
2263  ENSG00000182240       ENST00000347667 ENSE00003625781
2264  ENSG00000182240       ENST00000347667 ENSE00003704949
2265  ENSG00000182240       ENST00000470864 ENSE00001817363
2266  ENSG00000182240       ENST00000470864 ENSE00003544662
2267  ENSG00000182240       ENST00000470864 ENSE00003610690
2268  ENSG00000182240       ENST00000470864 ENSE00001861522
2269  ENSG00000182240       ENST00000487994 ENSE00003544662
2270  ENSG00000182240       ENST00000487994 ENSE00003610690
2271  ENSG00000182240       ENST00000487994 ENSE00001845787
2272  ENSG00000182240       ENST00000487994 ENSE00003463382
2273  ENSG00000182240       ENST00000487994 ENSE00003554135
2274  ENSG00000182240       ENST00000487994 ENSE00003491406
2275  ENSG00000182240       ENST00000487994 ENSE00003542620
2276  ENSG00000182240       ENST00000487994 ENSE00002455890
2277  ENSG00000182240       ENST00000491838 ENSE00003610690
2278  ENSG00000182240       ENST00000491838 ENSE00003463382
2279  ENSG00000182240       ENST00000491838 ENSE00001838045
2280  ENSG00000182240       ENST00000491838 ENSE00003506120
2281  ENSG00000182240       ENST00000491838 ENSE00001831325
2282  ENSG00000182240       ENST00000466122 ENSE00003610690
2283  ENSG00000182240       ENST00000466122 ENSE00003463382
2284  ENSG00000182240       ENST00000466122 ENSE00003554135
2285  ENSG00000182240       ENST00000466122 ENSE00003491406
2286  ENSG00000182240       ENST00000466122 ENSE00003542620
2287  ENSG00000182240       ENST00000466122 ENSE00003506120
2288  ENSG00000182240       ENST00000466122 ENSE00001833992
2289  ENSG00000182240       ENST00000466122 ENSE00003634739
2290  ENSG00000182240       ENST00000465326 ENSE00003610690
2291  ENSG00000182240       ENST00000465326 ENSE00003463382
2292  ENSG00000182240       ENST00000465326 ENSE00003554135
2293  ENSG00000182240       ENST00000465326 ENSE00003491406
2294  ENSG00000182240       ENST00000465326 ENSE00003542620
2295  ENSG00000182240       ENST00000465326 ENSE00003506120
2296  ENSG00000182240       ENST00000465326 ENSE00001850438
2297  ENSG00000182240       ENST00000463674 ENSE00003463382
2298  ENSG00000182240       ENST00000463674 ENSE00003554135
2299  ENSG00000182240       ENST00000463674 ENSE00003491406
2300  ENSG00000182240       ENST00000463674 ENSE00003542620
2301  ENSG00000182240       ENST00000463674 ENSE00001893797
2302  ENSG00000182240       ENST00000463674 ENSE00001953820
2303  ENSG00000182240       ENST00000475618 ENSE00003542620
2304  ENSG00000182240       ENST00000475618 ENSE00001930291
2305  ENSG00000224388       ENST00000433378 ENSE00001788165
2306  ENSG00000224388       ENST00000433378 ENSE00001752650
2307  ENSG00000156273       ENST00000548219 ENSE00002371519
2308  ENSG00000156273       ENST00000548219 ENSE00002367409
2309  ENSG00000156273       ENST00000550131 ENSE00002367409
2310  ENSG00000156273       ENST00000550131 ENSE00002344168
2311  ENSG00000156273       ENST00000550131 ENSE00002371634
2312  ENSG00000156273       ENST00000547141 ENSE00002367409
2313  ENSG00000156273       ENST00000547141 ENSE00002344168
2314  ENSG00000156273       ENST00000547141 ENSE00002417182
2315  ENSG00000156273       ENST00000546469 ENSE00002367409
2316  ENSG00000156273       ENST00000546469 ENSE00002344168
2317  ENSG00000156273       ENST00000546469 ENSE00002425143
2318  ENSG00000156273       ENST00000546469 ENSE00002363553
2319  ENSG00000156273       ENST00000286800 ENSE00001376331
2320  ENSG00000156273       ENST00000286800 ENSE00001025546
2321  ENSG00000156273       ENST00000286800 ENSE00001025548
2322  ENSG00000156273       ENST00000286800 ENSE00003204163
2323  ENSG00000156273       ENST00000286800 ENSE00001192071
2324  ENSG00000156273       ENST00000399921 ENSE00001025546
2325  ENSG00000156273       ENST00000399921 ENSE00001025548
2326  ENSG00000156273       ENST00000399921 ENSE00003204163
2327  ENSG00000156273       ENST00000399921 ENSE00001192071
2328  ENSG00000156273       ENST00000399921 ENSE00001540806
2329  ENSG00000156273       ENST00000548467 ENSE00002367409
2330  ENSG00000156273       ENST00000548467 ENSE00002357516
2331  ENSG00000156273       ENST00000451655 ENSE00001025546
2332  ENSG00000156273       ENST00000451655 ENSE00001661027
2333  ENSG00000156273       ENST00000451655 ENSE00001705868
2334  ENSG00000156273       ENST00000447177 ENSE00001025546
2335  ENSG00000156273       ENST00000447177 ENSE00001797717
2336  ENSG00000156273       ENST00000447177 ENSE00001643254
2337  ENSG00000156273       ENST00000435072 ENSE00001025546
2338  ENSG00000156273       ENST00000435072 ENSE00001649814
2339  ENSG00000156273       ENST00000435072 ENSE00001728422
2340  ENSG00000156273       ENST00000422809 ENSE00003204163
2341  ENSG00000156273       ENST00000422809 ENSE00001644051
2342  ENSG00000156273       ENST00000422809 ENSE00001662834
2343  ENSG00000156273       ENST00000422809 ENSE00003499536
2344  ENSG00000156273       ENST00000422809 ENSE00003586991
2345  ENSG00000156273       ENST00000468059 ENSE00003204163
2346  ENSG00000156273       ENST00000468059 ENSE00001890232
2347  ENSG00000156273       ENST00000468059 ENSE00003567462
2348  ENSG00000156273       ENST00000468059 ENSE00003583559
2349  ENSG00000156273       ENST00000462262 ENSE00003542569
2350  ENSG00000156273       ENST00000462262 ENSE00003621620
2351  ENSG00000156273       ENST00000462262 ENSE00003530973
2352  ENSG00000232118       ENST00000449923 ENSE00001743205
2353  ENSG00000232118       ENST00000449923 ENSE00001657359
2354  ENSG00000232118       ENST00000615718 ENSE00003736747
2355  ENSG00000232118       ENST00000615718 ENSE00003754459
2356  ENSG00000248476       ENST00000504298 ENSE00002057091
2357  ENSG00000248476       ENST00000504298 ENSE00002028160
2358  ENSG00000248476       ENST00000504298 ENSE00002047876
2359  ENSG00000248476       ENST00000504298 ENSE00002020319
2360  ENSG00000228817       ENST00000626681 ENSE00003765546
2361  ENSG00000228817       ENST00000608072 ENSE00003704890
2362  ENSG00000228817       ENST00000608072 ENSE00003704865
2363  ENSG00000228817       ENST00000608072 ENSE00003710207
2364  ENSG00000228817       ENST00000608072 ENSE00003711393
2365  ENSG00000228817       ENST00000436529 ENSE00003142988
2366  ENSG00000228817       ENST00000436529 ENSE00001634016
2367  ENSG00000228817       ENST00000436529 ENSE00001673483
2368  ENSG00000234293       ENST00000429843 ENSE00001637321
2369  ENSG00000234293       ENST00000429843 ENSE00001669398
2370  ENSG00000187172       ENST00000474011 ENSE00001825894
2371  ENSG00000187172       ENST00000474011 ENSE00002021537
2372  ENSG00000187172       ENST00000474011 ENSE00001887197
2373  ENSG00000187172       ENST00000470054 ENSE00002021537
2374  ENSG00000187172       ENST00000470054 ENSE00001647801
2375  ENSG00000187172       ENST00000470054 ENSE00001849458
2376  ENSG00000187172       ENST00000470054 ENSE00001810225
2377  ENSG00000187172       ENST00000470054 ENSE00001755570
2378  ENSG00000187172       ENST00000470054 ENSE00001543692
2379  ENSG00000187172       ENST00000470054 ENSE00001603325
2380  ENSG00000187172       ENST00000470054 ENSE00003487684
2381  ENSG00000187172       ENST00000470054 ENSE00003517925
2382  ENSG00000187172       ENST00000470054 ENSE00001624265
2383  ENSG00000187172       ENST00000496773 ENSE00001849458
2384  ENSG00000187172       ENST00000496773 ENSE00001810225
2385  ENSG00000187172       ENST00000496773 ENSE00001755570
2386  ENSG00000187172       ENST00000496773 ENSE00001603325
2387  ENSG00000187172       ENST00000496773 ENSE00003487684
2388  ENSG00000187172       ENST00000496773 ENSE00003517925
2389  ENSG00000187172       ENST00000496773 ENSE00001915801
2390  ENSG00000187172       ENST00000496773 ENSE00003606441
2391  ENSG00000187172       ENST00000496773 ENSE00001949088
2392  ENSG00000187172       ENST00000496773 ENSE00003570996
2393  ENSG00000187172       ENST00000496773 ENSE00001888942
2394  ENSG00000187172       ENST00000496773 ENSE00003578317
2395  ENSG00000187172       ENST00000496773 ENSE00003576287
2396  ENSG00000187172       ENST00000496773 ENSE00003603249
2397  ENSG00000187172       ENST00000496773 ENSE00001862587
2398  ENSG00000185658       ENST00000333229 ENSE00001880434
2399  ENSG00000185658       ENST00000333229 ENSE00003515339
2400  ENSG00000185658       ENST00000333229 ENSE00003653232
2401  ENSG00000185658       ENST00000333229 ENSE00003641761
2402  ENSG00000185658       ENST00000333229 ENSE00002431924
2403  ENSG00000185658       ENST00000333229 ENSE00002497178
2404  ENSG00000185658       ENST00000333229 ENSE00002462623
2405  ENSG00000185658       ENST00000333229 ENSE00002458215
2406  ENSG00000185658       ENST00000333229 ENSE00002465628
2407  ENSG00000185658       ENST00000333229 ENSE00002482303
2408  ENSG00000185658       ENST00000333229 ENSE00002520544
2409  ENSG00000185658       ENST00000333229 ENSE00002433897
2410  ENSG00000185658       ENST00000333229 ENSE00002506458
2411  ENSG00000185658       ENST00000333229 ENSE00002521348
2412  ENSG00000185658       ENST00000333229 ENSE00002497896
2413  ENSG00000185658       ENST00000333229 ENSE00002446887
2414  ENSG00000185658       ENST00000333229 ENSE00003490914
2415  ENSG00000185658       ENST00000333229 ENSE00003536179
2416  ENSG00000185658       ENST00000333229 ENSE00003600281
2417  ENSG00000185658       ENST00000333229 ENSE00003655791
2418  ENSG00000185658       ENST00000333229 ENSE00003519259
2419  ENSG00000185658       ENST00000333229 ENSE00003584341
2420  ENSG00000185658       ENST00000333229 ENSE00002446443
2421  ENSG00000185658       ENST00000333229 ENSE00002470382
2422  ENSG00000185658       ENST00000333229 ENSE00002437169
2423  ENSG00000185658       ENST00000333229 ENSE00001788177
2424  ENSG00000185658       ENST00000333229 ENSE00001674297
2425  ENSG00000185658       ENST00000333229 ENSE00001651462
2426  ENSG00000185658       ENST00000333229 ENSE00001622845
2427  ENSG00000185658       ENST00000333229 ENSE00003582172
2428  ENSG00000185658       ENST00000333229 ENSE00003525602
2429  ENSG00000185658       ENST00000333229 ENSE00003677382
2430  ENSG00000185658       ENST00000333229 ENSE00003529207
2431  ENSG00000185658       ENST00000333229 ENSE00003621343
2432  ENSG00000185658       ENST00000333229 ENSE00003497316
2433  ENSG00000185658       ENST00000333229 ENSE00003520595
2434  ENSG00000185658       ENST00000333229 ENSE00003583448
2435  ENSG00000185658       ENST00000333229 ENSE00003562855
2436  ENSG00000185658       ENST00000333229 ENSE00003674456
2437  ENSG00000185658       ENST00000333229 ENSE00003675873
2438  ENSG00000185658       ENST00000333229 ENSE00003618132
2439  ENSG00000185658       ENST00000333229 ENSE00001780720
2440  ENSG00000185658       ENST00000446924 ENSE00003490914
2441  ENSG00000185658       ENST00000446924 ENSE00003536179
2442  ENSG00000185658       ENST00000446924 ENSE00003600281
2443  ENSG00000185658       ENST00000446924 ENSE00003655791
2444  ENSG00000185658       ENST00000446924 ENSE00003519259
2445  ENSG00000185658       ENST00000446924 ENSE00003584341
2446  ENSG00000185658       ENST00000446924 ENSE00002446443
2447  ENSG00000185658       ENST00000446924 ENSE00002470382
2448  ENSG00000185658       ENST00000446924 ENSE00002437169
2449  ENSG00000185658       ENST00000446924 ENSE00001788177
2450  ENSG00000185658       ENST00000446924 ENSE00001674297
2451  ENSG00000185658       ENST00000446924 ENSE00001651462
2452  ENSG00000185658       ENST00000446924 ENSE00001622845
2453  ENSG00000185658       ENST00000446924 ENSE00001794606
2454  ENSG00000185658       ENST00000446924 ENSE00001706237
2455  ENSG00000185658       ENST00000446924 ENSE00003622298
2456  ENSG00000185658       ENST00000446924 ENSE00003670759
2457  ENSG00000185658       ENST00000446924 ENSE00003580095
2458  ENSG00000185658       ENST00000446924 ENSE00003610171
2459  ENSG00000185658       ENST00000446924 ENSE00003596356
2460  ENSG00000185658       ENST00000446924 ENSE00003612392
2461  ENSG00000185658       ENST00000446924 ENSE00003672997
2462  ENSG00000185658       ENST00000446924 ENSE00003513288
2463  ENSG00000185658       ENST00000446924 ENSE00003545917
2464  ENSG00000185658       ENST00000446924 ENSE00003571434
2465  ENSG00000185658       ENST00000446924 ENSE00001696762
2466  ENSG00000185658       ENST00000342449 ENSE00003515339
2467  ENSG00000185658       ENST00000342449 ENSE00003653232
2468  ENSG00000185658       ENST00000342449 ENSE00003641761
2469  ENSG00000185658       ENST00000342449 ENSE00002431924
2470  ENSG00000185658       ENST00000342449 ENSE00002497178
2471  ENSG00000185658       ENST00000342449 ENSE00002462623
2472  ENSG00000185658       ENST00000342449 ENSE00002458215
2473  ENSG00000185658       ENST00000342449 ENSE00002465628
2474  ENSG00000185658       ENST00000342449 ENSE00002482303
2475  ENSG00000185658       ENST00000342449 ENSE00002520544
2476  ENSG00000185658       ENST00000342449 ENSE00002433897
2477  ENSG00000185658       ENST00000342449 ENSE00002506458
2478  ENSG00000185658       ENST00000342449 ENSE00002521348
2479  ENSG00000185658       ENST00000342449 ENSE00002497896
2480  ENSG00000185658       ENST00000342449 ENSE00002446887
2481  ENSG00000185658       ENST00000342449 ENSE00003490914
2482  ENSG00000185658       ENST00000342449 ENSE00003536179
2483  ENSG00000185658       ENST00000342449 ENSE00003600281
2484  ENSG00000185658       ENST00000342449 ENSE00003655791
2485  ENSG00000185658       ENST00000342449 ENSE00003519259
2486  ENSG00000185658       ENST00000342449 ENSE00003584341
2487  ENSG00000185658       ENST00000342449 ENSE00002446443
2488  ENSG00000185658       ENST00000342449 ENSE00002470382
2489  ENSG00000185658       ENST00000342449 ENSE00002437169
2490  ENSG00000185658       ENST00000342449 ENSE00001788177
2491  ENSG00000185658       ENST00000342449 ENSE00001674297
2492  ENSG00000185658       ENST00000342449 ENSE00001651462
2493  ENSG00000185658       ENST00000342449 ENSE00001622845
2494  ENSG00000185658       ENST00000342449 ENSE00003582172
2495  ENSG00000185658       ENST00000342449 ENSE00003525602
2496  ENSG00000185658       ENST00000342449 ENSE00003677382
2497  ENSG00000185658       ENST00000342449 ENSE00003529207
2498  ENSG00000185658       ENST00000342449 ENSE00003621343
2499  ENSG00000185658       ENST00000342449 ENSE00003497316
2500  ENSG00000185658       ENST00000342449 ENSE00003520595
2501  ENSG00000185658       ENST00000342449 ENSE00003583448
2502  ENSG00000185658       ENST00000342449 ENSE00003562855
2503  ENSG00000185658       ENST00000342449 ENSE00003674456
2504  ENSG00000185658       ENST00000342449 ENSE00003675873
2505  ENSG00000185658       ENST00000342449 ENSE00001883590
2506  ENSG00000185658       ENST00000342449 ENSE00001383767
2507  ENSG00000185658       ENST00000380800 ENSE00003515339
2508  ENSG00000185658       ENST00000380800 ENSE00003653232
2509  ENSG00000185658       ENST00000380800 ENSE00003641761
2510  ENSG00000185658       ENST00000380800 ENSE00002431924
2511  ENSG00000185658       ENST00000380800 ENSE00002497178
2512  ENSG00000185658       ENST00000380800 ENSE00002462623
2513  ENSG00000185658       ENST00000380800 ENSE00002458215
2514  ENSG00000185658       ENST00000380800 ENSE00002465628
2515  ENSG00000185658       ENST00000380800 ENSE00002482303
2516  ENSG00000185658       ENST00000380800 ENSE00002520544
2517  ENSG00000185658       ENST00000380800 ENSE00002433897
2518  ENSG00000185658       ENST00000380800 ENSE00002506458
2519  ENSG00000185658       ENST00000380800 ENSE00002521348
2520  ENSG00000185658       ENST00000380800 ENSE00002497896
2521  ENSG00000185658       ENST00000380800 ENSE00002446887
2522  ENSG00000185658       ENST00000380800 ENSE00003490914
2523  ENSG00000185658       ENST00000380800 ENSE00003536179
2524  ENSG00000185658       ENST00000380800 ENSE00003600281
2525  ENSG00000185658       ENST00000380800 ENSE00003655791
2526  ENSG00000185658       ENST00000380800 ENSE00003519259
2527  ENSG00000185658       ENST00000380800 ENSE00003584341
2528  ENSG00000185658       ENST00000380800 ENSE00002446443
2529  ENSG00000185658       ENST00000380800 ENSE00002470382
2530  ENSG00000185658       ENST00000380800 ENSE00002437169
2531  ENSG00000185658       ENST00000380800 ENSE00001788177
2532  ENSG00000185658       ENST00000380800 ENSE00001674297
2533  ENSG00000185658       ENST00000380800 ENSE00001651462
2534  ENSG00000185658       ENST00000380800 ENSE00001622845
2535  ENSG00000185658       ENST00000380800 ENSE00003582172
2536  ENSG00000185658       ENST00000380800 ENSE00003525602
2537  ENSG00000185658       ENST00000380800 ENSE00003677382
2538  ENSG00000185658       ENST00000380800 ENSE00003529207
2539  ENSG00000185658       ENST00000380800 ENSE00003621343
2540  ENSG00000185658       ENST00000380800 ENSE00003497316
2541  ENSG00000185658       ENST00000380800 ENSE00003520595
2542  ENSG00000185658       ENST00000380800 ENSE00003583448
2543  ENSG00000185658       ENST00000380800 ENSE00003562855
2544  ENSG00000185658       ENST00000380800 ENSE00003674456
2545  ENSG00000185658       ENST00000380800 ENSE00003675873
2546  ENSG00000185658       ENST00000380800 ENSE00003618132
2547  ENSG00000185658       ENST00000380800 ENSE00001897340
2548  ENSG00000185658       ENST00000380800 ENSE00001486321
2549  ENSG00000185658       ENST00000491564 ENSE00001852973
2550  ENSG00000185658       ENST00000491564 ENSE00001865375
2551  ENSG00000185658       ENST00000424441 ENSE00001674297
2552  ENSG00000185658       ENST00000424441 ENSE00001651462
2553  ENSG00000185658       ENST00000424441 ENSE00001622845
2554  ENSG00000185658       ENST00000424441 ENSE00003582172
2555  ENSG00000185658       ENST00000424441 ENSE00003525602
2556  ENSG00000185658       ENST00000424441 ENSE00003677382
2557  ENSG00000185658       ENST00000424441 ENSE00003529207
2558  ENSG00000185658       ENST00000424441 ENSE00003621343
2559  ENSG00000185658       ENST00000424441 ENSE00003520595
2560  ENSG00000185658       ENST00000424441 ENSE00003583448
2561  ENSG00000185658       ENST00000424441 ENSE00001731798
2562  ENSG00000185658       ENST00000424441 ENSE00001623960
2563  ENSG00000185658       ENST00000473813 ENSE00003670759
2564  ENSG00000185658       ENST00000473813 ENSE00003580095
2565  ENSG00000185658       ENST00000473813 ENSE00003686178
2566  ENSG00000185658       ENST00000473813 ENSE00003515471
2567  ENSG00000185658       ENST00000473813 ENSE00003676246
2568  ENSG00000185658       ENST00000473813 ENSE00001862816
2569  ENSG00000185658       ENST00000473813 ENSE00001827867
2570  ENSG00000185658       ENST00000445668 ENSE00002482303
2571  ENSG00000185658       ENST00000445668 ENSE00002520544
2572  ENSG00000185658       ENST00000445668 ENSE00002433897
2573  ENSG00000185658       ENST00000445668 ENSE00002506458
2574  ENSG00000185658       ENST00000445668 ENSE00002521348
2575  ENSG00000185658       ENST00000445668 ENSE00002497896
2576  ENSG00000185658       ENST00000445668 ENSE00002446887
2577  ENSG00000185658       ENST00000445668 ENSE00003490914
2578  ENSG00000185658       ENST00000445668 ENSE00003536179
2579  ENSG00000185658       ENST00000445668 ENSE00001735508
2580  ENSG00000185658       ENST00000445668 ENSE00003616362
2581  ENSG00000185658       ENST00000445668 ENSE00003575172
2582  ENSG00000185658       ENST00000445668 ENSE00003582397
2583  ENSG00000185658       ENST00000445668 ENSE00001619715
2584  ENSG00000185658       ENST00000430093 ENSE00002482303
2585  ENSG00000185658       ENST00000430093 ENSE00002520544
2586  ENSG00000185658       ENST00000430093 ENSE00002433897
2587  ENSG00000185658       ENST00000430093 ENSE00002506458
2588  ENSG00000185658       ENST00000430093 ENSE00002521348
2589  ENSG00000185658       ENST00000430093 ENSE00002497896
2590  ENSG00000185658       ENST00000430093 ENSE00002446887
2591  ENSG00000185658       ENST00000430093 ENSE00001735508
2592  ENSG00000185658       ENST00000430093 ENSE00003575172
2593  ENSG00000185658       ENST00000430093 ENSE00003582397
2594  ENSG00000185658       ENST00000430093 ENSE00001619715
2595  ENSG00000185658       ENST00000430093 ENSE00001783589
2596  ENSG00000185658       ENST00000430093 ENSE00003630425
2597  ENSG00000185658       ENST00000430093 ENSE00003687599
2598  ENSG00000185658       ENST00000430093 ENSE00003675221
2599  ENSG00000185658       ENST00000445245 ENSE00002482303
2600  ENSG00000185658       ENST00000445245 ENSE00002520544
2601  ENSG00000185658       ENST00000445245 ENSE00002433897
2602  ENSG00000185658       ENST00000445245 ENSE00002506458
2603  ENSG00000185658       ENST00000445245 ENSE00002521348
2604  ENSG00000185658       ENST00000445245 ENSE00002497896
2605  ENSG00000185658       ENST00000445245 ENSE00001735508
2606  ENSG00000185658       ENST00000445245 ENSE00003575172
2607  ENSG00000185658       ENST00000445245 ENSE00003582397
2608  ENSG00000185658       ENST00000445245 ENSE00001619715
2609  ENSG00000185658       ENST00000445245 ENSE00003630425
2610  ENSG00000185658       ENST00000445245 ENSE00003687599
2611  ENSG00000185658       ENST00000445245 ENSE00003675221
2612  ENSG00000185658       ENST00000445245 ENSE00001624112
2613  ENSG00000185658       ENST00000445245 ENSE00003495150
2614  ENSG00000185658       ENST00000455867 ENSE00002482303
2615  ENSG00000185658       ENST00000455867 ENSE00002520544
2616  ENSG00000185658       ENST00000455867 ENSE00002433897
2617  ENSG00000185658       ENST00000455867 ENSE00002506458
2618  ENSG00000185658       ENST00000455867 ENSE00002521348
2619  ENSG00000185658       ENST00000455867 ENSE00002497896
2620  ENSG00000185658       ENST00000455867 ENSE00002446887
2621  ENSG00000185658       ENST00000455867 ENSE00003490914
2622  ENSG00000185658       ENST00000455867 ENSE00003536179
2623  ENSG00000185658       ENST00000455867 ENSE00003600281
2624  ENSG00000185658       ENST00000455867 ENSE00003655791
2625  ENSG00000185658       ENST00000455867 ENSE00003584341
2626  ENSG00000185658       ENST00000455867 ENSE00001735508
2627  ENSG00000185658       ENST00000455867 ENSE00003564188
2628  ENSG00000185658       ENST00000412604 ENSE00002482303
2629  ENSG00000185658       ENST00000412604 ENSE00002520544
2630  ENSG00000185658       ENST00000412604 ENSE00002433897
2631  ENSG00000185658       ENST00000412604 ENSE00002506458
2632  ENSG00000185658       ENST00000412604 ENSE00002521348
2633  ENSG00000185658       ENST00000412604 ENSE00002497896
2634  ENSG00000185658       ENST00000412604 ENSE00002446887
2635  ENSG00000185658       ENST00000412604 ENSE00003490914
2636  ENSG00000185658       ENST00000412604 ENSE00003536179
2637  ENSG00000185658       ENST00000412604 ENSE00001735508
2638  ENSG00000185658       ENST00000412604 ENSE00003575172
2639  ENSG00000185658       ENST00000412604 ENSE00003582397
2640  ENSG00000185658       ENST00000412604 ENSE00002225679
2641  ENSG00000185658       ENST00000412604 ENSE00003540012
2642  ENSG00000185658       ENST00000412604 ENSE00003644923
2643  ENSG00000185658       ENST00000496759 ENSE00001851565
2644  ENSG00000185658       ENST00000496759 ENSE00001832241
2645  ENSG00000185658       ENST00000341322 ENSE00003515339
2646  ENSG00000185658       ENST00000341322 ENSE00003653232
2647  ENSG00000185658       ENST00000341322 ENSE00003641761
2648  ENSG00000185658       ENST00000341322 ENSE00001946259
2649  ENSG00000185658       ENST00000341322 ENSE00001486224
2650  ENSG00000185658       ENST00000470108 ENSE00001951079
2651  ENSG00000185658       ENST00000470108 ENSE00003497887
2652  ENSG00000185658       ENST00000470108 ENSE00003590815
2653  ENSG00000185658       ENST00000470108 ENSE00003594814
2654  ENSG00000185658       ENST00000470108 ENSE00001905226
2655  ENSG00000185658       ENST00000484090 ENSE00003590815
2656  ENSG00000185658       ENST00000484090 ENSE00001873973
2657  ENSG00000185658       ENST00000484090 ENSE00001871884
2658  ENSG00000238141       ENST00000423274 ENSE00001851503
2659  ENSG00000238141       ENST00000423274 ENSE00001712159
2660  ENSG00000238141       ENST00000423274 ENSE00001602763
2661  ENSG00000255568       ENST00000603064 ENSE00003604103
2662  ENSG00000237373       ENST00000435608 ENSE00001651259
2663  ENSG00000237373       ENST00000435608 ENSE00001635289
2664  ENSG00000232260       ENST00000413813 ENSE00001673021
2665  ENSG00000233956       ENST00000448054 ENSE00001644099
2666  ENSG00000154640       ENST00000339775 ENSE00001897245
2667  ENSG00000154640       ENST00000339775 ENSE00001016965
2668  ENSG00000154640       ENST00000339775 ENSE00001016961
2669  ENSG00000154640       ENST00000339775 ENSE00001372820
2670  ENSG00000154640       ENST00000339775 ENSE00001016967
2671  ENSG00000154640       ENST00000339775 ENSE00001016968
2672  ENSG00000154640       ENST00000348354 ENSE00001016965
2673  ENSG00000154640       ENST00000348354 ENSE00001016961
2674  ENSG00000154640       ENST00000348354 ENSE00001016967
2675  ENSG00000154640       ENST00000348354 ENSE00001016968
2676  ENSG00000154640       ENST00000348354 ENSE00001597441
2677  ENSG00000154640       ENST00000471860 ENSE00001898890
2678  ENSG00000154640       ENST00000471860 ENSE00001854422
2679  ENSG00000154640       ENST00000496601 ENSE00001915391
2680  ENSG00000154640       ENST00000496601 ENSE00001878176
2681  ENSG00000154640       ENST00000464058 ENSE00001945420
2682  ENSG00000154640       ENST00000464058 ENSE00001924316
2683  ENSG00000154640       ENST00000457956 ENSE00001493981
2684  ENSG00000154640       ENST00000457956 ENSE00001719551
2685  ENSG00000154640       ENST00000457956 ENSE00001654853
2686  ENSG00000215353       ENST00000400117 ENSE00001541625
2687  ENSG00000222018       ENST00000410005 ENSE00001579649
2688  ENSG00000160226       ENST00000397956 ENSE00003613299
2689  ENSG00000160226       ENST00000397956 ENSE00003567529
2690  ENSG00000160226       ENST00000397956 ENSE00003465964
2691  ENSG00000160226       ENST00000397956 ENSE00003623799
2692  ENSG00000160226       ENST00000397956 ENSE00001424924
2693  ENSG00000160226       ENST00000397956 ENSE00001376910
2694  ENSG00000160226       ENST00000397956 ENSE00003539176
2695  ENSG00000160226       ENST00000496321 ENSE00003689756
2696  ENSG00000160226       ENST00000496321 ENSE00001953648
2697  ENSG00000160226       ENST00000496321 ENSE00003630507
2698  ENSG00000160226       ENST00000496321 ENSE00001846530
2699  ENSG00000160226       ENST00000496321 ENSE00003571080
2700  ENSG00000160226       ENST00000496321 ENSE00001844561
2701  ENSG00000160226       ENST00000496321 ENSE00003520918
2702  ENSG00000160226       ENST00000496321 ENSE00003481879
2703  ENSG00000160226       ENST00000470196 ENSE00001874997
2704  ENSG00000160226       ENST00000470196 ENSE00003547241
2705  ENSG00000160226       ENST00000470196 ENSE00003689756
2706  ENSG00000160226       ENST00000478674 ENSE00001889989
2707  ENSG00000160226       ENST00000478674 ENSE00001946448
2708  ENSG00000160226       ENST00000325223 ENSE00001228467
2709  ENSG00000160226       ENST00000325223 ENSE00003613299
2710  ENSG00000160226       ENST00000325223 ENSE00003567529
2711  ENSG00000160226       ENST00000325223 ENSE00003465964
2712  ENSG00000160226       ENST00000325223 ENSE00003623799
2713  ENSG00000160226       ENST00000325223 ENSE00003539176
2714  ENSG00000160226       ENST00000325223 ENSE00003633104
2715  ENSG00000160226       ENST00000462742 ENSE00003689756
2716  ENSG00000160226       ENST00000462742 ENSE00003630507
2717  ENSG00000160226       ENST00000462742 ENSE00001927617
2718  ENSG00000160226       ENST00000462742 ENSE00001820612
2719  ENSG00000160226       ENST00000462742 ENSE00003485191
2720  ENSG00000160226       ENST00000462742 ENSE00001889941
2721  ENSG00000160226       ENST00000339818 ENSE00001228467
2722  ENSG00000160226       ENST00000339818 ENSE00003613299
2723  ENSG00000160226       ENST00000339818 ENSE00003567529
2724  ENSG00000160226       ENST00000339818 ENSE00003465964
2725  ENSG00000160226       ENST00000339818 ENSE00003623799
2726  ENSG00000160226       ENST00000339818 ENSE00003670111
2727  ENSG00000160226       ENST00000339818 ENSE00001136472
2728  ENSG00000160221       ENST00000291577 ENSE00001822596
2729  ENSG00000160221       ENST00000291577 ENSE00003673943
2730  ENSG00000160221       ENST00000291577 ENSE00003570914
2731  ENSG00000160221       ENST00000291577 ENSE00003619394
2732  ENSG00000160221       ENST00000291577 ENSE00003482790
2733  ENSG00000160221       ENST00000291577 ENSE00003667692
2734  ENSG00000160221       ENST00000291577 ENSE00001506660
2735  ENSG00000160221       ENST00000495007 ENSE00001849368
2736  ENSG00000160221       ENST00000495007 ENSE00003580779
2737  ENSG00000160221       ENST00000495007 ENSE00003672906
2738  ENSG00000160221       ENST00000495007 ENSE00003665668
2739  ENSG00000160221       ENST00000495007 ENSE00003676797
2740  ENSG00000160221       ENST00000495007 ENSE00001853546
2741  ENSG00000160221       ENST00000427803 ENSE00003673943
2742  ENSG00000160221       ENST00000427803 ENSE00003570914
2743  ENSG00000160221       ENST00000427803 ENSE00003619394
2744  ENSG00000160221       ENST00000427803 ENSE00003482790
2745  ENSG00000160221       ENST00000427803 ENSE00001876352
2746  ENSG00000160221       ENST00000427803 ENSE00001613924
2747  ENSG00000160221       ENST00000493883 ENSE00003580779
2748  ENSG00000160221       ENST00000493883 ENSE00003672906
2749  ENSG00000160221       ENST00000493883 ENSE00003665668
2750  ENSG00000160221       ENST00000493883 ENSE00001845946
2751  ENSG00000160221       ENST00000493883 ENSE00003474302
2752  ENSG00000160221       ENST00000480786 ENSE00003580779
2753  ENSG00000160221       ENST00000480786 ENSE00003672906
2754  ENSG00000160221       ENST00000480786 ENSE00001937614
2755  ENSG00000160221       ENST00000480786 ENSE00003566481
2756  ENSG00000160221       ENST00000480786 ENSE00001882951
2757  ENSG00000160221       ENST00000348499 ENSE00003673943
2758  ENSG00000160221       ENST00000348499 ENSE00003570914
2759  ENSG00000160221       ENST00000348499 ENSE00003619394
2760  ENSG00000160221       ENST00000348499 ENSE00003667692
2761  ENSG00000160221       ENST00000348499 ENSE00001506660
2762  ENSG00000160221       ENST00000348499 ENSE00001857588
2763  ENSG00000160221       ENST00000389690 ENSE00003673943
2764  ENSG00000160221       ENST00000389690 ENSE00003570914
2765  ENSG00000160221       ENST00000389690 ENSE00003619394
2766  ENSG00000160221       ENST00000389690 ENSE00003482790
2767  ENSG00000160221       ENST00000389690 ENSE00001603625
2768  ENSG00000160221       ENST00000389690 ENSE00003626079
2769  ENSG00000160221       ENST00000449622 ENSE00003673943
2770  ENSG00000160221       ENST00000449622 ENSE00003570914
2771  ENSG00000160221       ENST00000449622 ENSE00003482790
2772  ENSG00000160221       ENST00000449622 ENSE00003667692
2773  ENSG00000160221       ENST00000449622 ENSE00001506660
2774  ENSG00000160221       ENST00000449622 ENSE00001612727
2775  ENSG00000160221       ENST00000449622 ENSE00001804088
2776  ENSG00000160221       ENST00000488392 ENSE00001953904
2777  ENSG00000160221       ENST00000488392 ENSE00001927142
2778  ENSG00000160221       ENST00000419699 ENSE00003619394
2779  ENSG00000160221       ENST00000419699 ENSE00003482790
2780  ENSG00000160221       ENST00000419699 ENSE00003667692
2781  ENSG00000160221       ENST00000419699 ENSE00001754071
2782  ENSG00000160221       ENST00000419699 ENSE00001638299
2783  ENSG00000160221       ENST00000419699 ENSE00001675777
2784  ENSG00000160221       ENST00000470545 ENSE00001828535
2785  ENSG00000160221       ENST00000470545 ENSE00001901011
2786  ENSG00000160298       ENST00000491666 ENSE00001670598
2787  ENSG00000160298       ENST00000491666 ENSE00003530408
2788  ENSG00000160298       ENST00000491666 ENSE00003567971
2789  ENSG00000160298       ENST00000491666 ENSE00001051246
2790  ENSG00000160298       ENST00000491666 ENSE00002244793
2791  ENSG00000160298       ENST00000491666 ENSE00003583756
2792  ENSG00000160298       ENST00000491666 ENSE00001836049
2793  ENSG00000160298       ENST00000491666 ENSE00001845892
2794  ENSG00000160298       ENST00000397683 ENSE00002244793
2795  ENSG00000160298       ENST00000397683 ENSE00003583756
2796  ENSG00000160298       ENST00000397683 ENSE00001529697
2797  ENSG00000160298       ENST00000397683 ENSE00003486245
2798  ENSG00000160298       ENST00000397683 ENSE00001529695
2799  ENSG00000160298       ENST00000397683 ENSE00003550419
2800  ENSG00000160298       ENST00000397683 ENSE00002319841
2801  ENSG00000160298       ENST00000397683 ENSE00001529703
2802  ENSG00000160298       ENST00000397683 ENSE00001529687
2803  ENSG00000160298       ENST00000417060 ENSE00001670598
2804  ENSG00000160298       ENST00000417060 ENSE00003530408
2805  ENSG00000160298       ENST00000417060 ENSE00003567971
2806  ENSG00000160298       ENST00000417060 ENSE00001051246
2807  ENSG00000160298       ENST00000417060 ENSE00002244793
2808  ENSG00000160298       ENST00000417060 ENSE00003583756
2809  ENSG00000160298       ENST00000417060 ENSE00001529703
2810  ENSG00000160298       ENST00000417060 ENSE00001777824
2811  ENSG00000160298       ENST00000397682 ENSE00002244793
2812  ENSG00000160298       ENST00000397682 ENSE00003583756
2813  ENSG00000160298       ENST00000397682 ENSE00003486245
2814  ENSG00000160298       ENST00000397682 ENSE00001529695
2815  ENSG00000160298       ENST00000397682 ENSE00003550419
2816  ENSG00000160298       ENST00000397682 ENSE00002319841
2817  ENSG00000160298       ENST00000397682 ENSE00001529703
2818  ENSG00000160298       ENST00000397682 ENSE00003555584
2819  ENSG00000160298       ENST00000397682 ENSE00001529701
2820  ENSG00000160298       ENST00000291691 ENSE00003530408
2821  ENSG00000160298       ENST00000291691 ENSE00003567971
2822  ENSG00000160298       ENST00000291691 ENSE00001051246
2823  ENSG00000160298       ENST00000291691 ENSE00002244793
2824  ENSG00000160298       ENST00000291691 ENSE00003583756
2825  ENSG00000160298       ENST00000291691 ENSE00003603708
2826  ENSG00000160298       ENST00000291691 ENSE00003625644
2827  ENSG00000160298       ENST00000291691 ENSE00001529699
2828  ENSG00000160298       ENST00000397679 ENSE00002244793
2829  ENSG00000160298       ENST00000397679 ENSE00003583756
2830  ENSG00000160298       ENST00000397679 ENSE00001529695
2831  ENSG00000160298       ENST00000397679 ENSE00003550419
2832  ENSG00000160298       ENST00000397679 ENSE00002319841
2833  ENSG00000160298       ENST00000397679 ENSE00001529675
2834  ENSG00000160298       ENST00000397679 ENSE00001271873
2835  ENSG00000160298       ENST00000397680 ENSE00002244793
2836  ENSG00000160298       ENST00000397680 ENSE00003583756
2837  ENSG00000160298       ENST00000397680 ENSE00003486245
2838  ENSG00000160298       ENST00000397680 ENSE00003550419
2839  ENSG00000160298       ENST00000397680 ENSE00002319841
2840  ENSG00000160298       ENST00000397680 ENSE00001271873
2841  ENSG00000160298       ENST00000397680 ENSE00001529681
2842  ENSG00000160298       ENST00000397680 ENSE00003621434
2843  ENSG00000160298       ENST00000472607 ENSE00001865923
2844  ENSG00000160298       ENST00000472607 ENSE00003471562
2845  ENSG00000160298       ENST00000472607 ENSE00001848575
2846  ENSG00000160298       ENST00000445935 ENSE00003486245
2847  ENSG00000160298       ENST00000445935 ENSE00003550419
2848  ENSG00000160298       ENST00000445935 ENSE00003621434
2849  ENSG00000160298       ENST00000445935 ENSE00001749376
2850  ENSG00000160298       ENST00000445935 ENSE00001654746
2851  ENSG00000160298       ENST00000445935 ENSE00003614855
2852  ENSG00000160298       ENST00000475776 ENSE00003486245
2853  ENSG00000160298       ENST00000475776 ENSE00003621434
2854  ENSG00000160298       ENST00000475776 ENSE00001749376
2855  ENSG00000160298       ENST00000475776 ENSE00001918011
2856  ENSG00000159079       ENST00000431599 ENSE00001691575
2857  ENSG00000159079       ENST00000431599 ENSE00001753167
2858  ENSG00000159079       ENST00000440966 ENSE00001627893
2859  ENSG00000159079       ENST00000440966 ENSE00003493555
2860  ENSG00000159079       ENST00000440966 ENSE00003680905
2861  ENSG00000159079       ENST00000440966 ENSE00003634950
2862  ENSG00000159079       ENST00000440966 ENSE00003668923
2863  ENSG00000159079       ENST00000440966 ENSE00001605158
2864  ENSG00000159079       ENST00000382549 ENSE00003493555
2865  ENSG00000159079       ENST00000382549 ENSE00003680905
2866  ENSG00000159079       ENST00000382549 ENSE00003634950
2867  ENSG00000159079       ENST00000382549 ENSE00001432244
2868  ENSG00000159079       ENST00000382549 ENSE00001602516
2869  ENSG00000159079       ENST00000290155 ENSE00003493555
2870  ENSG00000159079       ENST00000290155 ENSE00003680905
2871  ENSG00000159079       ENST00000290155 ENSE00003634950
2872  ENSG00000159079       ENST00000290155 ENSE00003668923
2873  ENSG00000159079       ENST00000290155 ENSE00001605158
2874  ENSG00000159079       ENST00000290155 ENSE00001925020
2875  ENSG00000159079       ENST00000290155 ENSE00003502977
2876  ENSG00000159079       ENST00000425336 ENSE00003668923
2877  ENSG00000159079       ENST00000425336 ENSE00001749198
2878  ENSG00000159079       ENST00000425336 ENSE00001783774
2879  ENSG00000159079       ENST00000300260 ENSE00003493555
2880  ENSG00000159079       ENST00000300260 ENSE00003597655
2881  ENSG00000159079       ENST00000300260 ENSE00003543387
2882  ENSG00000159079       ENST00000300260 ENSE00003502519
2883  ENSG00000159079       ENST00000300260 ENSE00003556631
2884  ENSG00000159079       ENST00000300260 ENSE00001725966
2885  ENSG00000159079       ENST00000483315 ENSE00001889105
2886  ENSG00000159079       ENST00000483315 ENSE00001666126
2887  ENSG00000159079       ENST00000458138 ENSE00003680905
2888  ENSG00000159079       ENST00000458138 ENSE00003634950
2889  ENSG00000159079       ENST00000458138 ENSE00001664779
2890  ENSG00000159079       ENST00000458138 ENSE00001658811
2891  ENSG00000159079       ENST00000458138 ENSE00001759776
2892  ENSG00000205929       ENST00000490358 ENSE00001885790
2893  ENSG00000205929       ENST00000490358 ENSE00003634340
2894  ENSG00000205929       ENST00000490358 ENSE00001958608
2895  ENSG00000205929       ENST00000487113 ENSE00001829713
2896  ENSG00000205929       ENST00000487113 ENSE00001817582
2897  ENSG00000205929       ENST00000382373 ENSE00001491885
2898  ENSG00000205929       ENST00000382373 ENSE00003460207
2899  ENSG00000205929       ENST00000382373 ENSE00001915548
2900  ENSG00000205929       ENST00000479548 ENSE00003634340
2901  ENSG00000205929       ENST00000479548 ENSE00001915744
2902  ENSG00000205929       ENST00000479548 ENSE00001817822
2903  ENSG00000205929       ENST00000479548 ENSE00001491871
2904  ENSG00000205930       ENST00000382375 ENSE00002534803
2905  ENSG00000205930       ENST00000382375 ENSE00002479956
2906  ENSG00000205930       ENST00000382375 ENSE00003735243
2907  ENSG00000205930       ENST00000382375 ENSE00001816474
2908  ENSG00000205930       ENST00000382377 ENSE00001836252
2909  ENSG00000205930       ENST00000382377 ENSE00001491907
2910  ENSG00000205930       ENST00000454365 ENSE00001685136
2911  ENSG00000205930       ENST00000454365 ENSE00001673657
2912  ENSG00000205930       ENST00000454365 ENSE00001780512
2913  ENSG00000205930       ENST00000454365 ENSE00001792416
2914  ENSG00000205930       ENST00000612326 ENSE00002479956
2915  ENSG00000205930       ENST00000612326 ENSE00003718614
2916  ENSG00000205930       ENST00000612326 ENSE00003719092
2917  ENSG00000205930       ENST00000382378 ENSE00002479956
2918  ENSG00000205930       ENST00000382378 ENSE00003735243
2919  ENSG00000205930       ENST00000382378 ENSE00001491924
2920  ENSG00000205930       ENST00000382378 ENSE00001491921
2921  ENSG00000205930       ENST00000491756 ENSE00003735243
2922  ENSG00000205930       ENST00000491756 ENSE00001883847
2923  ENSG00000205930       ENST00000491756 ENSE00001854863
2924  ENSG00000205930       ENST00000477513 ENSE00002479956
2925  ENSG00000205930       ENST00000477513 ENSE00001904189
2926  ENSG00000205930       ENST00000477513 ENSE00001892768
2927  ENSG00000154642       ENST00000284881 ENSE00001543482
2928  ENSG00000154642       ENST00000284881 ENSE00003679576
2929  ENSG00000154642       ENST00000284881 ENSE00001642880
2930  ENSG00000154642       ENST00000284881 ENSE00003784853
2931  ENSG00000154642       ENST00000284881 ENSE00001934909
2932  ENSG00000154642       ENST00000400559 ENSE00001543482
2933  ENSG00000154642       ENST00000400559 ENSE00003679576
2934  ENSG00000154642       ENST00000400559 ENSE00001642880
2935  ENSG00000154642       ENST00000400559 ENSE00003784853
2936  ENSG00000154642       ENST00000400559 ENSE00001836456
2937  ENSG00000154642       ENST00000400558 ENSE00001543482
2938  ENSG00000154642       ENST00000400558 ENSE00003679576
2939  ENSG00000154642       ENST00000400558 ENSE00001642880
2940  ENSG00000154642       ENST00000400558 ENSE00001925737
2941  ENSG00000154642       ENST00000405964 ENSE00003679576
2942  ENSG00000154642       ENST00000405964 ENSE00001642880
2943  ENSG00000154642       ENST00000405964 ENSE00003784853
2944  ENSG00000154642       ENST00000405964 ENSE00001757903
2945  ENSG00000154642       ENST00000493464 ENSE00001860985
2946  ENSG00000154642       ENST00000493464 ENSE00003540501
2947  ENSG00000154642       ENST00000493464 ENSE00001829026
2948  ENSG00000154642       ENST00000493464 ENSE00001924293
2949  ENSG00000154642       ENST00000493464 ENSE00001955959
2950  ENSG00000154642       ENST00000482915 ENSE00001896052
2951  ENSG00000154642       ENST00000482915 ENSE00001842658
2952  ENSG00000240770       ENST00000430815 ENSE00001673322
2953  ENSG00000240770       ENST00000430815 ENSE00001717057
2954  ENSG00000240770       ENST00000430815 ENSE00001670467
2955  ENSG00000240770       ENST00000430815 ENSE00001606245
2956  ENSG00000240770       ENST00000430815 ENSE00001708010
2957  ENSG00000240770       ENST00000430401 ENSE00001717057
2958  ENSG00000240770       ENST00000430401 ENSE00001635146
2959  ENSG00000240770       ENST00000430401 ENSE00001664132
2960  ENSG00000240770       ENST00000439392 ENSE00001717057
2961  ENSG00000240770       ENST00000439392 ENSE00001635146
2962  ENSG00000240770       ENST00000439392 ENSE00001664132
2963  ENSG00000240770       ENST00000439392 ENSE00001595740
2964  ENSG00000157617       ENST00000449165 ENSE00001785903
2965  ENSG00000157617       ENST00000449165 ENSE00001786411
2966  ENSG00000157617       ENST00000449165 ENSE00001787500
2967  ENSG00000157617       ENST00000329623 ENSE00001787500
2968  ENSG00000157617       ENST00000329623 ENSE00001533423
2969  ENSG00000157617       ENST00000329623 ENSE00003602911
2970  ENSG00000157617       ENST00000329623 ENSE00003496666
2971  ENSG00000157617       ENST00000329623 ENSE00003609495
2972  ENSG00000157617       ENST00000329623 ENSE00003580315
2973  ENSG00000157617       ENST00000329623 ENSE00003478085
2974  ENSG00000157617       ENST00000329623 ENSE00003504516
2975  ENSG00000157617       ENST00000329623 ENSE00003664448
2976  ENSG00000157617       ENST00000329623 ENSE00003616990
2977  ENSG00000157617       ENST00000329623 ENSE00003550939
2978  ENSG00000157617       ENST00000329623 ENSE00003569108
2979  ENSG00000157617       ENST00000329623 ENSE00003663241
2980  ENSG00000157617       ENST00000380486 ENSE00001787500
2981  ENSG00000157617       ENST00000380486 ENSE00003496666
2982  ENSG00000157617       ENST00000380486 ENSE00003609495
2983  ENSG00000157617       ENST00000380486 ENSE00003580315
2984  ENSG00000157617       ENST00000380486 ENSE00003478085
2985  ENSG00000157617       ENST00000380486 ENSE00003504516
2986  ENSG00000157617       ENST00000380486 ENSE00003664448
2987  ENSG00000157617       ENST00000380486 ENSE00003616990
2988  ENSG00000157617       ENST00000380486 ENSE00003550939
2989  ENSG00000157617       ENST00000380486 ENSE00003569108
2990  ENSG00000157617       ENST00000380486 ENSE00003663241
2991  ENSG00000157617       ENST00000380486 ENSE00002277761
2992  ENSG00000157617       ENST00000380486 ENSE00002214448
2993  ENSG00000157617       ENST00000380486 ENSE00003687664
2994  ENSG00000157617       ENST00000482186 ENSE00001847271
2995  ENSG00000157617       ENST00000482186 ENSE00003569939
2996  ENSG00000157617       ENST00000482186 ENSE00003565020
2997  ENSG00000157617       ENST00000482186 ENSE00003533907
2998  ENSG00000157617       ENST00000482186 ENSE00003545102
2999  ENSG00000157617       ENST00000482186 ENSE00001915842
3000  ENSG00000157617       ENST00000482084 ENSE00003569939
3001  ENSG00000157617       ENST00000482084 ENSE00003565020
3002  ENSG00000157617       ENST00000482084 ENSE00003533907
3003  ENSG00000157617       ENST00000482084 ENSE00003545102
3004  ENSG00000157617       ENST00000482084 ENSE00001915842
3005  ENSG00000157617       ENST00000482084 ENSE00001818851
3006  ENSG00000157617       ENST00000482084 ENSE00003529889
3007  ENSG00000157617       ENST00000482084 ENSE00003505549
3008  ENSG00000157617       ENST00000482084 ENSE00003678311
3009  ENSG00000157617       ENST00000482084 ENSE00003459397
3010  ENSG00000157617       ENST00000482084 ENSE00003464825
3011  ENSG00000157617       ENST00000467074 ENSE00003569939
3012  ENSG00000157617       ENST00000467074 ENSE00003565020
3013  ENSG00000157617       ENST00000467074 ENSE00003529889
3014  ENSG00000157617       ENST00000467074 ENSE00003505549
3015  ENSG00000157617       ENST00000467074 ENSE00003678311
3016  ENSG00000157617       ENST00000467074 ENSE00003459397
3017  ENSG00000157617       ENST00000467074 ENSE00003464825
3018  ENSG00000157617       ENST00000467074 ENSE00001957453
3019  ENSG00000157617       ENST00000467074 ENSE00003586001
3020  ENSG00000157617       ENST00000467074 ENSE00003550439
3021  ENSG00000157617       ENST00000467074 ENSE00001904219
3022  ENSG00000157617       ENST00000490479 ENSE00003529889
3023  ENSG00000157617       ENST00000490479 ENSE00003505549
3024  ENSG00000157617       ENST00000490479 ENSE00003586001
3025  ENSG00000157617       ENST00000490479 ENSE00003550439
3026  ENSG00000157617       ENST00000490479 ENSE00002446084
3027  ENSG00000157617       ENST00000490479 ENSE00001832467
3028  ENSG00000157617       ENST00000478372 ENSE00001866501
3029  ENSG00000157617       ENST00000478372 ENSE00001820148
3030  ENSG00000159228       ENST00000466328 ENSE00003566185
3031  ENSG00000159228       ENST00000466328 ENSE00003559746
3032  ENSG00000159228       ENST00000466328 ENSE00002154026
3033  ENSG00000159228       ENST00000530908 ENSE00003512897
3034  ENSG00000159228       ENST00000530908 ENSE00003643969
3035  ENSG00000159228       ENST00000530908 ENSE00001734805
3036  ENSG00000159228       ENST00000290349 ENSE00003512897
3037  ENSG00000159228       ENST00000290349 ENSE00003643969
3038  ENSG00000159228       ENST00000290349 ENSE00001044162
3039  ENSG00000159228       ENST00000439427 ENSE00001919847
3040  ENSG00000159228       ENST00000439427 ENSE00002152862
3041  ENSG00000159228       ENST00000399191 ENSE00003643969
3042  ENSG00000159228       ENST00000399191 ENSE00001891664
3043  ENSG00000159228       ENST00000399191 ENSE00001536887
3044  ENSG00000159231       ENST00000290354 ENSE00001044175
3045  ENSG00000159231       ENST00000290354 ENSE00001044173
3046  ENSG00000159231       ENST00000290354 ENSE00001044176
3047  ENSG00000236830       ENST00000453159 ENSE00001726806
3048  ENSG00000236830       ENST00000453159 ENSE00001606093
3049  ENSG00000236830       ENST00000453159 ENSE00001757518
3050  ENSG00000236830       ENST00000413862 ENSE00001606093
3051  ENSG00000236830       ENST00000413862 ENSE00001634384
3052  ENSG00000236830       ENST00000413862 ENSE00001736440
3053  ENSG00000236830       ENST00000413862 ENSE00001794193
3054  ENSG00000236830       ENST00000608690 ENSE00001606093
3055  ENSG00000236830       ENST00000608690 ENSE00003709260
3056  ENSG00000236830       ENST00000608690 ENSE00003707361
3057  ENSG00000236830       ENST00000608690 ENSE00003702516
3058  ENSG00000236830       ENST00000608622 ENSE00001606093
3059  ENSG00000236830       ENST00000608622 ENSE00003702516
3060  ENSG00000236830       ENST00000608622 ENSE00003702758
3061  ENSG00000236830       ENST00000608622 ENSE00003706824
3062  ENSG00000236830       ENST00000608632 ENSE00001606093
3063  ENSG00000236830       ENST00000608632 ENSE00001736440
3064  ENSG00000236830       ENST00000608632 ENSE00003702758
3065  ENSG00000236830       ENST00000608632 ENSE00003706824
3066  ENSG00000236830       ENST00000608632 ENSE00003704278
3067  ENSG00000236830       ENST00000609192 ENSE00001736440
3068  ENSG00000236830       ENST00000609192 ENSE00003708084
3069  ENSG00000236830       ENST00000609192 ENSE00003707202
3070  ENSG00000236830       ENST00000608641 ENSE00001606093
3071  ENSG00000236830       ENST00000608641 ENSE00001736440
3072  ENSG00000236830       ENST00000608641 ENSE00003702758
3073  ENSG00000236830       ENST00000608641 ENSE00003706133
3074  ENSG00000236830       ENST00000608641 ENSE00003707017
3075  ENSG00000236830       ENST00000625189 ENSE00003759468
3076  ENSG00000236830       ENST00000625189 ENSE00003755685
3077  ENSG00000236830       ENST00000625079 ENSE00003755685
3078  ENSG00000236830       ENST00000625079 ENSE00003760238
3079  ENSG00000236830       ENST00000625079 ENSE00003756349
3080  ENSG00000236830       ENST00000623579 ENSE00003706133
3081  ENSG00000236830       ENST00000623579 ENSE00003755685
3082  ENSG00000236830       ENST00000623579 ENSE00003756874
3083  ENSG00000236830       ENST00000623579 ENSE00003755915
3084  ENSG00000236830       ENST00000623638 ENSE00003755685
3085  ENSG00000236830       ENST00000623638 ENSE00003758777
3086  ENSG00000236830       ENST00000624080 ENSE00003760090
3087  ENSG00000236830       ENST00000624080 ENSE00003755975
3088  ENSG00000236830       ENST00000624080 ENSE00003756993
3089  ENSG00000236830       ENST00000624086 ENSE00003755184
3090  ENSG00000236830       ENST00000624086 ENSE00003754936
3091  ENSG00000236830       ENST00000624883 ENSE00003754936
3092  ENSG00000236830       ENST00000624883 ENSE00003755813
3093  ENSG00000236830       ENST00000623647 ENSE00003759283
3094  ENSG00000236830       ENST00000623647 ENSE00003756144
3095  ENSG00000236830       ENST00000623647 ENSE00003755424
3096  ENSG00000236830       ENST00000623484 ENSE00003758471
3097  ENSG00000236830       ENST00000623484 ENSE00003758845
3098  ENSG00000236830       ENST00000427491 ENSE00001606093
3099  ENSG00000236830       ENST00000427491 ENSE00001646746
3100  ENSG00000236830       ENST00000427491 ENSE00001772823
3101  ENSG00000236830       ENST00000432988 ENSE00001645910
3102  ENSG00000236830       ENST00000432988 ENSE00001699302
3103  ENSG00000236830       ENST00000432988 ENSE00001669555
3104  ENSG00000160200       ENST00000461686 ENSE00001908507
3105  ENSG00000160200       ENST00000461686 ENSE00003469164
3106  ENSG00000160200       ENST00000461686 ENSE00003525847
3107  ENSG00000160200       ENST00000461686 ENSE00003615145
3108  ENSG00000160200       ENST00000461686 ENSE00003607098
3109  ENSG00000160200       ENST00000461686 ENSE00003667754
3110  ENSG00000160200       ENST00000461686 ENSE00003680209
3111  ENSG00000160200       ENST00000461686 ENSE00003459939
3112  ENSG00000160200       ENST00000461686 ENSE00003561958
3113  ENSG00000160200       ENST00000461686 ENSE00003666289
3114  ENSG00000160200       ENST00000461686 ENSE00003616603
3115  ENSG00000160200       ENST00000461686 ENSE00003497276
3116  ENSG00000160200       ENST00000461686 ENSE00003566190
3117  ENSG00000160200       ENST00000461686 ENSE00003609272
3118  ENSG00000160200       ENST00000398158 ENSE00001531894
3119  ENSG00000160200       ENST00000398158 ENSE00001531893
3120  ENSG00000160200       ENST00000398158 ENSE00003478977
3121  ENSG00000160200       ENST00000398158 ENSE00003589198
3122  ENSG00000160200       ENST00000398158 ENSE00003692007
3123  ENSG00000160200       ENST00000398158 ENSE00003790203
3124  ENSG00000160200       ENST00000398158 ENSE00003666431
3125  ENSG00000160200       ENST00000398158 ENSE00003566517
3126  ENSG00000160200       ENST00000398158 ENSE00003498748
3127  ENSG00000160200       ENST00000398158 ENSE00003462667
3128  ENSG00000160200       ENST00000398158 ENSE00003646251
3129  ENSG00000160200       ENST00000398158 ENSE00003525308
3130  ENSG00000160200       ENST00000398158 ENSE00003682750
3131  ENSG00000160200       ENST00000398158 ENSE00003646800
3132  ENSG00000160200       ENST00000398158 ENSE00003601456
3133  ENSG00000160200       ENST00000398158 ENSE00003643599
3134  ENSG00000160200       ENST00000398158 ENSE00003511439
3135  ENSG00000160200       ENST00000398165 ENSE00003478977
3136  ENSG00000160200       ENST00000398165 ENSE00003589198
3137  ENSG00000160200       ENST00000398165 ENSE00003692007
3138  ENSG00000160200       ENST00000398165 ENSE00003790203
3139  ENSG00000160200       ENST00000398165 ENSE00003666431
3140  ENSG00000160200       ENST00000398165 ENSE00003566517
3141  ENSG00000160200       ENST00000398165 ENSE00003498748
3142  ENSG00000160200       ENST00000398165 ENSE00003462667
3143  ENSG00000160200       ENST00000398165 ENSE00003646251
3144  ENSG00000160200       ENST00000398165 ENSE00003525308
3145  ENSG00000160200       ENST00000398165 ENSE00003682750
3146  ENSG00000160200       ENST00000398165 ENSE00003646800
3147  ENSG00000160200       ENST00000398165 ENSE00003601456
3148  ENSG00000160200       ENST00000398165 ENSE00003643599
3149  ENSG00000160200       ENST00000398165 ENSE00003511439
3150  ENSG00000160200       ENST00000398165 ENSE00001702250
3151  ENSG00000160200       ENST00000398165 ENSE00001270928
3152  ENSG00000160200       ENST00000359624 ENSE00003478977
3153  ENSG00000160200       ENST00000359624 ENSE00003589198
3154  ENSG00000160200       ENST00000359624 ENSE00003692007
3155  ENSG00000160200       ENST00000359624 ENSE00003790203
3156  ENSG00000160200       ENST00000359624 ENSE00003666431
3157  ENSG00000160200       ENST00000359624 ENSE00003566517
3158  ENSG00000160200       ENST00000359624 ENSE00003498748
3159  ENSG00000160200       ENST00000359624 ENSE00003462667
3160  ENSG00000160200       ENST00000359624 ENSE00003646251
3161  ENSG00000160200       ENST00000359624 ENSE00003525308
3162  ENSG00000160200       ENST00000359624 ENSE00003682750
3163  ENSG00000160200       ENST00000359624 ENSE00003646800
3164  ENSG00000160200       ENST00000359624 ENSE00003601456
3165  ENSG00000160200       ENST00000359624 ENSE00003643599
3166  ENSG00000160200       ENST00000359624 ENSE00001270928
3167  ENSG00000160200       ENST00000359624 ENSE00001413822
3168  ENSG00000160200       ENST00000359624 ENSE00001050504
3169  ENSG00000160200       ENST00000359624 ENSE00001424612
3170  ENSG00000160200       ENST00000352178 ENSE00003478977
3171  ENSG00000160200       ENST00000352178 ENSE00003589198
3172  ENSG00000160200       ENST00000352178 ENSE00003692007
3173  ENSG00000160200       ENST00000352178 ENSE00003790203
3174  ENSG00000160200       ENST00000352178 ENSE00003666431
3175  ENSG00000160200       ENST00000352178 ENSE00003566517
3176  ENSG00000160200       ENST00000352178 ENSE00003498748
3177  ENSG00000160200       ENST00000352178 ENSE00003462667
3178  ENSG00000160200       ENST00000352178 ENSE00003646251
3179  ENSG00000160200       ENST00000352178 ENSE00003525308
3180  ENSG00000160200       ENST00000352178 ENSE00003682750
3181  ENSG00000160200       ENST00000352178 ENSE00003646800
3182  ENSG00000160200       ENST00000352178 ENSE00003601456
3183  ENSG00000160200       ENST00000352178 ENSE00003643599
3184  ENSG00000160200       ENST00000352178 ENSE00003511439
3185  ENSG00000160200       ENST00000352178 ENSE00001270928
3186  ENSG00000160200       ENST00000352178 ENSE00001531915
3187  ENSG00000160200       ENST00000451248 ENSE00003601456
3188  ENSG00000160200       ENST00000451248 ENSE00003643599
3189  ENSG00000160200       ENST00000451248 ENSE00001596615
3190  ENSG00000160200       ENST00000451248 ENSE00001367761
3191  ENSG00000160200       ENST00000451248 ENSE00001611563
3192  ENSG00000160200       ENST00000462349 ENSE00003616603
3193  ENSG00000160200       ENST00000462349 ENSE00003497276
3194  ENSG00000160200       ENST00000462349 ENSE00003566190
3195  ENSG00000160200       ENST00000462349 ENSE00001863234
3196  ENSG00000160200       ENST00000462349 ENSE00001896483
3197  ENSG00000160200       ENST00000491776 ENSE00003666289
3198  ENSG00000160200       ENST00000491776 ENSE00003616603
3199  ENSG00000160200       ENST00000491776 ENSE00003497276
3200  ENSG00000160200       ENST00000491776 ENSE00003566190
3201  ENSG00000160200       ENST00000491776 ENSE00001826173
3202  ENSG00000160200       ENST00000491776 ENSE00001924222
3203  ENSG00000160200       ENST00000458223 ENSE00003601456
3204  ENSG00000160200       ENST00000458223 ENSE00003643599
3205  ENSG00000160200       ENST00000458223 ENSE00001367761
3206  ENSG00000160200       ENST00000458223 ENSE00001628373
3207  ENSG00000160200       ENST00000458223 ENSE00001630945
3208  ENSG00000160200       ENST00000430013 ENSE00003525308
3209  ENSG00000160200       ENST00000430013 ENSE00003682750
3210  ENSG00000160200       ENST00000430013 ENSE00003646800
3211  ENSG00000160200       ENST00000430013 ENSE00003601456
3212  ENSG00000160200       ENST00000430013 ENSE00003643599
3213  ENSG00000160200       ENST00000430013 ENSE00001367761
3214  ENSG00000160200       ENST00000430013 ENSE00001772125
3215  ENSG00000160200       ENST00000496485 ENSE00003680209
3216  ENSG00000160200       ENST00000496485 ENSE00003459939
3217  ENSG00000160200       ENST00000496485 ENSE00003561958
3218  ENSG00000160200       ENST00000496485 ENSE00001949697
3219  ENSG00000160200       ENST00000496485 ENSE00001946945
3220  ENSG00000160200       ENST00000486098 ENSE00001842478
3221  ENSG00000160200       ENST00000486098 ENSE00001905316
3222  ENSG00000160200       ENST00000441030 ENSE00003478977
3223  ENSG00000160200       ENST00000441030 ENSE00003589198
3224  ENSG00000160200       ENST00000441030 ENSE00003692007
3225  ENSG00000160200       ENST00000441030 ENSE00003790203
3226  ENSG00000160200       ENST00000441030 ENSE00001270928
3227  ENSG00000160200       ENST00000441030 ENSE00001744053
3228  ENSG00000160200       ENST00000470912 ENSE00003469164
3229  ENSG00000160200       ENST00000470912 ENSE00001702250
3230  ENSG00000160200       ENST00000470912 ENSE00001270928
3231  ENSG00000160200       ENST00000470912 ENSE00003669131
3232  ENSG00000160200       ENST00000470912 ENSE00003594354
3233  ENSG00000160200       ENST00000470912 ENSE00001942914
3234  ENSG00000160200       ENST00000465732 ENSE00001270928
3235  ENSG00000160200       ENST00000465732 ENSE00003669131
3236  ENSG00000160200       ENST00000465732 ENSE00001826787
3237  ENSG00000160200       ENST00000465732 ENSE00001889312
3238  ENSG00000160200       ENST00000488526 ENSE00003669131
3239  ENSG00000160200       ENST00000488526 ENSE00001953424
3240  ENSG00000160200       ENST00000488526 ENSE00001822201
3241  ENSG00000160200       ENST00000478709 ENSE00001879838
3242  ENSG00000160200       ENST00000478709 ENSE00001946214
3243  ENSG00000274276       ENST00000624691 ENSE00003756584
3244  ENSG00000274276       ENST00000624691 ENSE00003758366
3245  ENSG00000274276       ENST00000624691 ENSE00003759969
3246  ENSG00000274276       ENST00000624691 ENSE00003756688
3247  ENSG00000274276       ENST00000624691 ENSE00003756870
3248  ENSG00000274276       ENST00000624691 ENSE00003758226
3249  ENSG00000274276       ENST00000624691 ENSE00003760060
3250  ENSG00000274276       ENST00000624691 ENSE00003758069
3251  ENSG00000274276       ENST00000624691 ENSE00003758296
3252  ENSG00000274276       ENST00000624691 ENSE00003755191
3253  ENSG00000274276       ENST00000624691 ENSE00003755577
3254  ENSG00000274276       ENST00000624691 ENSE00003756767
3255  ENSG00000274276       ENST00000624691 ENSE00003757326
3256  ENSG00000274276       ENST00000624691 ENSE00003757429
3257  ENSG00000274276       ENST00000624406 ENSE00003755056
3258  ENSG00000274276       ENST00000624406 ENSE00003760135
3259  ENSG00000274276       ENST00000624406 ENSE00003733879
3260  ENSG00000274276       ENST00000624406 ENSE00003743930
3261  ENSG00000274276       ENST00000624406 ENSE00003734019
3262  ENSG00000274276       ENST00000624406 ENSE00003745764
3263  ENSG00000274276       ENST00000624406 ENSE00003736081
3264  ENSG00000274276       ENST00000624406 ENSE00003749155
3265  ENSG00000274276       ENST00000624406 ENSE00003729930
3266  ENSG00000274276       ENST00000624406 ENSE00003724250
3267  ENSG00000274276       ENST00000624406 ENSE00003742762
3268  ENSG00000274276       ENST00000624406 ENSE00003719221
3269  ENSG00000274276       ENST00000624406 ENSE00003746144
3270  ENSG00000274276       ENST00000624406 ENSE00003743266
3271  ENSG00000274276       ENST00000624406 ENSE00003747262
3272  ENSG00000274276       ENST00000624406 ENSE00003753596
3273  ENSG00000274276       ENST00000624406 ENSE00001531922
3274  ENSG00000274276       ENST00000398168 ENSE00003733879
3275  ENSG00000274276       ENST00000398168 ENSE00003743930
3276  ENSG00000274276       ENST00000398168 ENSE00003734019
3277  ENSG00000274276       ENST00000398168 ENSE00003745764
3278  ENSG00000274276       ENST00000398168 ENSE00003736081
3279  ENSG00000274276       ENST00000398168 ENSE00003749155
3280  ENSG00000274276       ENST00000398168 ENSE00003729930
3281  ENSG00000274276       ENST00000398168 ENSE00003724250
3282  ENSG00000274276       ENST00000398168 ENSE00003742762
3283  ENSG00000274276       ENST00000398168 ENSE00003719221
3284  ENSG00000274276       ENST00000398168 ENSE00003746144
3285  ENSG00000274276       ENST00000398168 ENSE00003743266
3286  ENSG00000274276       ENST00000398168 ENSE00003747262
3287  ENSG00000274276       ENST00000398168 ENSE00003753596
3288  ENSG00000274276       ENST00000398168 ENSE00001531922
3289  ENSG00000274276       ENST00000398168 ENSE00001532023
3290  ENSG00000274276       ENST00000398168 ENSE00003734456
3291  ENSG00000274276       ENST00000618024 ENSE00003733879
3292  ENSG00000274276       ENST00000618024 ENSE00003743930
3293  ENSG00000274276       ENST00000618024 ENSE00003734019
3294  ENSG00000274276       ENST00000618024 ENSE00003745764
3295  ENSG00000274276       ENST00000618024 ENSE00003736081
3296  ENSG00000274276       ENST00000618024 ENSE00003749155
3297  ENSG00000274276       ENST00000618024 ENSE00003729930
3298  ENSG00000274276       ENST00000618024 ENSE00003724250
3299  ENSG00000274276       ENST00000618024 ENSE00003742762
3300  ENSG00000274276       ENST00000618024 ENSE00003719221
3301  ENSG00000274276       ENST00000618024 ENSE00003746144
3302  ENSG00000274276       ENST00000618024 ENSE00003743266
3303  ENSG00000274276       ENST00000618024 ENSE00003747262
3304  ENSG00000274276       ENST00000618024 ENSE00003753596
3305  ENSG00000274276       ENST00000618024 ENSE00003734456
3306  ENSG00000274276       ENST00000618024 ENSE00003738801
3307  ENSG00000274276       ENST00000618024 ENSE00003737649
3308  ENSG00000274276       ENST00000618024 ENSE00003726168
3309  ENSG00000274276       ENST00000624934 ENSE00003733879
3310  ENSG00000274276       ENST00000624934 ENSE00003743930
3311  ENSG00000274276       ENST00000624934 ENSE00003734019
3312  ENSG00000274276       ENST00000624934 ENSE00003745764
3313  ENSG00000274276       ENST00000624934 ENSE00003736081
3314  ENSG00000274276       ENST00000624934 ENSE00003749155
3315  ENSG00000274276       ENST00000624934 ENSE00003729930
3316  ENSG00000274276       ENST00000624934 ENSE00003724250
3317  ENSG00000274276       ENST00000624934 ENSE00003742762
3318  ENSG00000274276       ENST00000624934 ENSE00003719221
3319  ENSG00000274276       ENST00000624934 ENSE00003746144
3320  ENSG00000274276       ENST00000624934 ENSE00003743266
3321  ENSG00000274276       ENST00000624934 ENSE00003747262
3322  ENSG00000274276       ENST00000624934 ENSE00003753596
3323  ENSG00000274276       ENST00000624934 ENSE00001532023
3324  ENSG00000274276       ENST00000624934 ENSE00003734456
3325  ENSG00000274276       ENST00000624934 ENSE00003756191
3326  ENSG00000274276       ENST00000624934 ENSE00003760064
3327  ENSG00000274276       ENST00000622914 ENSE00003758146
3328  ENSG00000274276       ENST00000622914 ENSE00003757104
3329  ENSG00000274276       ENST00000624808 ENSE00003756767
3330  ENSG00000274276       ENST00000624808 ENSE00003757326
3331  ENSG00000274276       ENST00000624808 ENSE00003759294
3332  ENSG00000274276       ENST00000624808 ENSE00003759014
3333  ENSG00000274276       ENST00000624808 ENSE00003758047
3334  ENSG00000274276       ENST00000623939 ENSE00003758366
3335  ENSG00000274276       ENST00000623939 ENSE00003759969
3336  ENSG00000274276       ENST00000623939 ENSE00003756688
3337  ENSG00000274276       ENST00000623939 ENSE00003758011
3338  ENSG00000274276       ENST00000623939 ENSE00003759764
3339  ENSG00000274276       ENST00000623939 ENSE00003758943
3340  ENSG00000274276       ENST00000624921 ENSE00003734456
3341  ENSG00000274276       ENST00000624921 ENSE00003759764
3342  ENSG00000274276       ENST00000624921 ENSE00003756051
3343  ENSG00000274276       ENST00000624921 ENSE00003755043
3344  ENSG00000274276       ENST00000624921 ENSE00003760384
3345  ENSG00000274276       ENST00000624921 ENSE00003759542
3346  ENSG00000274276       ENST00000617706 ENSE00003733879
3347  ENSG00000274276       ENST00000617706 ENSE00003743930
3348  ENSG00000274276       ENST00000617706 ENSE00003734019
3349  ENSG00000274276       ENST00000617706 ENSE00003745764
3350  ENSG00000274276       ENST00000617706 ENSE00003736081
3351  ENSG00000274276       ENST00000617706 ENSE00003749155
3352  ENSG00000274276       ENST00000617706 ENSE00003729930
3353  ENSG00000274276       ENST00000617706 ENSE00003724250
3354  ENSG00000274276       ENST00000617706 ENSE00003742762
3355  ENSG00000274276       ENST00000617706 ENSE00003719221
3356  ENSG00000274276       ENST00000617706 ENSE00003746144
3357  ENSG00000274276       ENST00000617706 ENSE00003743266
3358  ENSG00000274276       ENST00000617706 ENSE00003747262
3359  ENSG00000274276       ENST00000617706 ENSE00003753596
3360  ENSG00000274276       ENST00000617706 ENSE00003734456
3361  ENSG00000274276       ENST00000617706 ENSE00003738801
3362  ENSG00000274276       ENST00000617706 ENSE00002235271
3363  ENSG00000156261       ENST00000432178 ENSE00001607255
3364  ENSG00000156261       ENST00000432178 ENSE00003525940
3365  ENSG00000156261       ENST00000432178 ENSE00001754281
3366  ENSG00000156261       ENST00000432178 ENSE00001779330
3367  ENSG00000156261       ENST00000496121 ENSE00001904305
3368  ENSG00000156261       ENST00000496121 ENSE00003657826
3369  ENSG00000156261       ENST00000496121 ENSE00003590459
3370  ENSG00000156261       ENST00000496121 ENSE00003494714
3371  ENSG00000156261       ENST00000496121 ENSE00003648424
3372  ENSG00000156261       ENST00000470450 ENSE00003657826
3373  ENSG00000156261       ENST00000470450 ENSE00003590459
3374  ENSG00000156261       ENST00000470450 ENSE00003494714
3375  ENSG00000156261       ENST00000470450 ENSE00003648424
3376  ENSG00000156261       ENST00000470450 ENSE00001910427
3377  ENSG00000156261       ENST00000470450 ENSE00003606420
3378  ENSG00000156261       ENST00000470450 ENSE00003601749
3379  ENSG00000156261       ENST00000470450 ENSE00003514393
3380  ENSG00000156261       ENST00000470450 ENSE00003625237
3381  ENSG00000156261       ENST00000470450 ENSE00003569164
3382  ENSG00000156261       ENST00000470450 ENSE00003663644
3383  ENSG00000156261       ENST00000470450 ENSE00003590042
3384  ENSG00000156261       ENST00000470450 ENSE00003693955
3385  ENSG00000156261       ENST00000470450 ENSE00003463549
3386  ENSG00000156261       ENST00000470450 ENSE00003562158
3387  ENSG00000156261       ENST00000286788 ENSE00003525940
3388  ENSG00000156261       ENST00000286788 ENSE00001504993
3389  ENSG00000156261       ENST00000286788 ENSE00003645550
3390  ENSG00000156261       ENST00000286788 ENSE00003598993
3391  ENSG00000156261       ENST00000286788 ENSE00003610619
3392  ENSG00000156261       ENST00000286788 ENSE00003519479
3393  ENSG00000156261       ENST00000286788 ENSE00003487814
3394  ENSG00000156261       ENST00000286788 ENSE00003573390
3395  ENSG00000156261       ENST00000286788 ENSE00003511485
3396  ENSG00000156261       ENST00000286788 ENSE00003605829
3397  ENSG00000156261       ENST00000286788 ENSE00003689478
3398  ENSG00000156261       ENST00000286788 ENSE00003515090
3399  ENSG00000156261       ENST00000286788 ENSE00003537960
3400  ENSG00000156261       ENST00000286788 ENSE00003539207
3401  ENSG00000156261       ENST00000286788 ENSE00003573058
3402  ENSG00000156261       ENST00000626972 ENSE00003525940
3403  ENSG00000156261       ENST00000626972 ENSE00003645550
3404  ENSG00000156261       ENST00000626972 ENSE00003598993
3405  ENSG00000156261       ENST00000626972 ENSE00003610619
3406  ENSG00000156261       ENST00000626972 ENSE00003519479
3407  ENSG00000156261       ENST00000626972 ENSE00003487814
3408  ENSG00000156261       ENST00000626972 ENSE00003573390
3409  ENSG00000156261       ENST00000626972 ENSE00003511485
3410  ENSG00000156261       ENST00000626972 ENSE00003605829
3411  ENSG00000156261       ENST00000626972 ENSE00003689478
3412  ENSG00000156261       ENST00000626972 ENSE00003515090
3413  ENSG00000156261       ENST00000626972 ENSE00003537960
3414  ENSG00000156261       ENST00000626972 ENSE00003539207
3415  ENSG00000156261       ENST00000626972 ENSE00003770661
3416  ENSG00000156261       ENST00000626972 ENSE00003765957
3417  ENSG00000156261       ENST00000626972 ENSE00003774417
3418  ENSG00000156261       ENST00000480359 ENSE00003463549
3419  ENSG00000156261       ENST00000480359 ENSE00003562158
3420  ENSG00000156261       ENST00000480359 ENSE00001930283
3421  ENSG00000156261       ENST00000475205 ENSE00003693955
3422  ENSG00000156261       ENST00000475205 ENSE00001955002
3423  ENSG00000156261       ENST00000475205 ENSE00001897678
3424  ENSG00000156261       ENST00000431234 ENSE00003645550
3425  ENSG00000156261       ENST00000431234 ENSE00003598993
3426  ENSG00000156261       ENST00000431234 ENSE00003610619
3427  ENSG00000156261       ENST00000431234 ENSE00003519479
3428  ENSG00000156261       ENST00000431234 ENSE00003487814
3429  ENSG00000156261       ENST00000431234 ENSE00003511485
3430  ENSG00000156261       ENST00000431234 ENSE00003605829
3431  ENSG00000156261       ENST00000431234 ENSE00003689478
3432  ENSG00000156261       ENST00000431234 ENSE00001680303
3433  ENSG00000156261       ENST00000431234 ENSE00001608754
3434  ENSG00000156261       ENST00000484403 ENSE00003606420
3435  ENSG00000156261       ENST00000484403 ENSE00003601749
3436  ENSG00000156261       ENST00000484403 ENSE00003514393
3437  ENSG00000156261       ENST00000484403 ENSE00001137318
3438  ENSG00000156261       ENST00000484403 ENSE00001858582
3439  ENSG00000156261       ENST00000484403 ENSE00001923756
3440  ENSG00000156261       ENST00000481059 ENSE00003606420
3441  ENSG00000156261       ENST00000481059 ENSE00003601749
3442  ENSG00000156261       ENST00000481059 ENSE00003514393
3443  ENSG00000156261       ENST00000481059 ENSE00003625237
3444  ENSG00000156261       ENST00000481059 ENSE00003569164
3445  ENSG00000156261       ENST00000481059 ENSE00001837955
3446  ENSG00000156261       ENST00000481059 ENSE00001890619
3447  ENSG00000156261       ENST00000494296 ENSE00003606420
3448  ENSG00000156261       ENST00000494296 ENSE00003601749
3449  ENSG00000156261       ENST00000494296 ENSE00001949140
3450  ENSG00000156261       ENST00000494296 ENSE00001850453
3451  ENSG00000156261       ENST00000540844 ENSE00003525940
3452  ENSG00000156261       ENST00000540844 ENSE00003610619
3453  ENSG00000156261       ENST00000540844 ENSE00003519479
3454  ENSG00000156261       ENST00000540844 ENSE00003487814
3455  ENSG00000156261       ENST00000540844 ENSE00003573390
3456  ENSG00000156261       ENST00000540844 ENSE00003511485
3457  ENSG00000156261       ENST00000540844 ENSE00003605829
3458  ENSG00000156261       ENST00000540844 ENSE00003689478
3459  ENSG00000156261       ENST00000540844 ENSE00003515090
3460  ENSG00000156261       ENST00000540844 ENSE00003537960
3461  ENSG00000156261       ENST00000540844 ENSE00003539207
3462  ENSG00000156261       ENST00000540844 ENSE00002308759
3463  ENSG00000156261       ENST00000540844 ENSE00003644939
3464  ENSG00000156261       ENST00000540844 ENSE00002272827
3465  ENSG00000159259       ENST00000314103 ENSE00001384227
3466  ENSG00000159259       ENST00000314103 ENSE00003477571
3467  ENSG00000159259       ENST00000314103 ENSE00003613324
3468  ENSG00000159259       ENST00000314103 ENSE00003583414
3469  ENSG00000159259       ENST00000314103 ENSE00003480180
3470  ENSG00000159259       ENST00000314103 ENSE00003672161
3471  ENSG00000159259       ENST00000314103 ENSE00001044347
3472  ENSG00000159259       ENST00000314103 ENSE00003494204
3473  ENSG00000159259       ENST00000314103 ENSE00001044360
3474  ENSG00000159259       ENST00000314103 ENSE00001044354
3475  ENSG00000159259       ENST00000314103 ENSE00003561304
3476  ENSG00000159259       ENST00000314103 ENSE00001044359
3477  ENSG00000159259       ENST00000314103 ENSE00001044343
3478  ENSG00000159259       ENST00000314103 ENSE00001213718
3479  ENSG00000159259       ENST00000480486 ENSE00003562978
3480  ENSG00000159259       ENST00000480486 ENSE00003506630
3481  ENSG00000159259       ENST00000480486 ENSE00003610974
3482  ENSG00000159259       ENST00000480486 ENSE00003680325
3483  ENSG00000159259       ENST00000480486 ENSE00003552194
3484  ENSG00000159259       ENST00000480486 ENSE00001906268
3485  ENSG00000159259       ENST00000481458 ENSE00001953480
3486  ENSG00000159259       ENST00000481458 ENSE00003637834
3487  ENSG00000159259       ENST00000481458 ENSE00003621858
3488  ENSG00000159259       ENST00000481458 ENSE00001864121
3489  ENSG00000154645       ENST00000400128 ENSE00001541680
3490  ENSG00000154645       ENST00000400128 ENSE00001541679
3491  ENSG00000154645       ENST00000400128 ENSE00003555705
3492  ENSG00000154645       ENST00000400128 ENSE00001016990
3493  ENSG00000154645       ENST00000400128 ENSE00001016989
3494  ENSG00000154645       ENST00000400128 ENSE00001016988
3495  ENSG00000154645       ENST00000400128 ENSE00003543855
3496  ENSG00000154645       ENST00000400131 ENSE00003555705
3497  ENSG00000154645       ENST00000400131 ENSE00001016990
3498  ENSG00000154645       ENST00000400131 ENSE00001016989
3499  ENSG00000154645       ENST00000400131 ENSE00001541702
3500  ENSG00000154645       ENST00000400131 ENSE00003545796
3501  ENSG00000154645       ENST00000400135 ENSE00003555705
3502  ENSG00000154645       ENST00000400135 ENSE00001016990
3503  ENSG00000154645       ENST00000400135 ENSE00001016989
3504  ENSG00000154645       ENST00000400135 ENSE00001541702
3505  ENSG00000154645       ENST00000400135 ENSE00003545796
3506  ENSG00000154645       ENST00000400135 ENSE00001541701
3507  ENSG00000154645       ENST00000400127 ENSE00003555705
3508  ENSG00000154645       ENST00000400127 ENSE00001016990
3509  ENSG00000154645       ENST00000400127 ENSE00001016989
3510  ENSG00000154645       ENST00000400127 ENSE00001016988
3511  ENSG00000154645       ENST00000400127 ENSE00003543855
3512  ENSG00000154645       ENST00000400127 ENSE00001541702
3513  ENSG00000154645       ENST00000400127 ENSE00001541701
3514  ENSG00000154645       ENST00000299295 ENSE00001016990
3515  ENSG00000154645       ENST00000299295 ENSE00001016989
3516  ENSG00000154645       ENST00000299295 ENSE00001016988
3517  ENSG00000154645       ENST00000299295 ENSE00003543855
3518  ENSG00000154645       ENST00000299295 ENSE00003468151
3519  ENSG00000154645       ENST00000299295 ENSE00003659737
3520  ENSG00000154645       ENST00000543733 ENSE00001016990
3521  ENSG00000154645       ENST00000543733 ENSE00001016989
3522  ENSG00000154645       ENST00000543733 ENSE00001016988
3523  ENSG00000154645       ENST00000543733 ENSE00003659737
3524  ENSG00000154645       ENST00000543733 ENSE00002245925
3525  ENSG00000154645       ENST00000543733 ENSE00002217929
3526  ENSG00000154645       ENST00000338326 ENSE00001016990
3527  ENSG00000154645       ENST00000338326 ENSE00001016989
3528  ENSG00000154645       ENST00000338326 ENSE00003742672
3529  ENSG00000154645       ENST00000338326 ENSE00001633443
3530  ENSG00000231755       ENST00000447175 ENSE00001614466
3531  ENSG00000231755       ENST00000447175 ENSE00001760043
3532  ENSG00000231755       ENST00000447175 ENSE00001646083
3533  ENSG00000159261       ENST00000399139 ENSE00001536639
3534  ENSG00000159261       ENST00000399139 ENSE00001369937
3535  ENSG00000159261       ENST00000399137 ENSE00001369937
3536  ENSG00000159261       ENST00000399137 ENSE00001536632
3537  ENSG00000159261       ENST00000399137 ENSE00001536630
3538  ENSG00000159261       ENST00000399135 ENSE00001369937
3539  ENSG00000159261       ENST00000399135 ENSE00001536632
3540  ENSG00000159261       ENST00000399136 ENSE00001369937
3541  ENSG00000159261       ENST00000399136 ENSE00001536618
3542  ENSG00000159261       ENST00000399136 ENSE00001379076
3543  ENSG00000159261       ENST00000342108 ENSE00001369937
3544  ENSG00000159261       ENST00000342108 ENSE00001379076
3545  ENSG00000159261       ENST00000342108 ENSE00001382195
3546  ENSG00000159261       ENST00000478313 ENSE00001834533
3547  ENSG00000159261       ENST00000478313 ENSE00001848684
3548  ENSG00000156282       ENST00000286808 ENSE00001025582
3549  ENSG00000156284       ENST00000399899 ENSE00001540688
3550  ENSG00000159212       ENST00000360731 ENSE00001635328
3551  ENSG00000159212       ENST00000360731 ENSE00001487601
3552  ENSG00000159212       ENST00000360731 ENSE00002449170
3553  ENSG00000159212       ENST00000360731 ENSE00001044048
3554  ENSG00000159212       ENST00000360731 ENSE00001044021
3555  ENSG00000159212       ENST00000360731 ENSE00001044034
3556  ENSG00000159212       ENST00000360731 ENSE00001325100
3557  ENSG00000159212       ENST00000349499 ENSE00001635328
3558  ENSG00000159212       ENST00000349499 ENSE00002449170
3559  ENSG00000159212       ENST00000349499 ENSE00001044048
3560  ENSG00000159212       ENST00000349499 ENSE00001044021
3561  ENSG00000159212       ENST00000349499 ENSE00001044034
3562  ENSG00000159212       ENST00000349499 ENSE00001325100
3563  ENSG00000215562       ENST00000400583 ENSE00001646882
3564  ENSG00000182871       ENST00000400337 ENSE00001758888
3565  ENSG00000182871       ENST00000400337 ENSE00001603969
3566  ENSG00000182871       ENST00000400337 ENSE00001654135
3567  ENSG00000182871       ENST00000400337 ENSE00001640622
3568  ENSG00000182871       ENST00000400337 ENSE00001722709
3569  ENSG00000182871       ENST00000400337 ENSE00001740104
3570  ENSG00000182871       ENST00000400337 ENSE00001627003
3571  ENSG00000182871       ENST00000400337 ENSE00001638049
3572  ENSG00000182871       ENST00000400337 ENSE00001595082
3573  ENSG00000182871       ENST00000400337 ENSE00001685925
3574  ENSG00000182871       ENST00000400337 ENSE00001758572
3575  ENSG00000182871       ENST00000400337 ENSE00001617212
3576  ENSG00000182871       ENST00000400337 ENSE00001619008
3577  ENSG00000182871       ENST00000400337 ENSE00001665017
3578  ENSG00000182871       ENST00000400337 ENSE00001748652
3579  ENSG00000182871       ENST00000400337 ENSE00001760845
3580  ENSG00000182871       ENST00000400337 ENSE00001705636
3581  ENSG00000182871       ENST00000400337 ENSE00001712155
3582  ENSG00000182871       ENST00000400337 ENSE00001677445
3583  ENSG00000182871       ENST00000400337 ENSE00001759875
3584  ENSG00000182871       ENST00000400337 ENSE00001792883
3585  ENSG00000182871       ENST00000400337 ENSE00001742681
3586  ENSG00000182871       ENST00000400337 ENSE00001649344
3587  ENSG00000182871       ENST00000400337 ENSE00001701626
3588  ENSG00000182871       ENST00000400337 ENSE00001654943
3589  ENSG00000182871       ENST00000400337 ENSE00003523340
3590  ENSG00000182871       ENST00000400337 ENSE00003594559
3591  ENSG00000182871       ENST00000400337 ENSE00003563378
3592  ENSG00000182871       ENST00000400337 ENSE00003601528
3593  ENSG00000182871       ENST00000400337 ENSE00003582147
3594  ENSG00000182871       ENST00000400337 ENSE00003624748
3595  ENSG00000182871       ENST00000400337 ENSE00001717282
3596  ENSG00000182871       ENST00000400337 ENSE00001638654
3597  ENSG00000182871       ENST00000400337 ENSE00001601591
3598  ENSG00000182871       ENST00000400337 ENSE00001761211
3599  ENSG00000182871       ENST00000400337 ENSE00001725836
3600  ENSG00000182871       ENST00000400337 ENSE00001717154
3601  ENSG00000182871       ENST00000400337 ENSE00002238826
3602  ENSG00000182871       ENST00000400337 ENSE00003582883
3603  ENSG00000182871       ENST00000400337 ENSE00003643178
3604  ENSG00000182871       ENST00000400337 ENSE00003588504
3605  ENSG00000182871       ENST00000400337 ENSE00001542501
3606  ENSG00000182871       ENST00000355480 ENSE00001654135
3607  ENSG00000182871       ENST00000355480 ENSE00001640622
3608  ENSG00000182871       ENST00000355480 ENSE00001722709
3609  ENSG00000182871       ENST00000355480 ENSE00001740104
3610  ENSG00000182871       ENST00000355480 ENSE00001627003
3611  ENSG00000182871       ENST00000355480 ENSE00001638049
3612  ENSG00000182871       ENST00000355480 ENSE00001595082
3613  ENSG00000182871       ENST00000355480 ENSE00001685925
3614  ENSG00000182871       ENST00000355480 ENSE00001758572
3615  ENSG00000182871       ENST00000355480 ENSE00001617212
3616  ENSG00000182871       ENST00000355480 ENSE00001619008
3617  ENSG00000182871       ENST00000355480 ENSE00001665017
3618  ENSG00000182871       ENST00000355480 ENSE00001748652
3619  ENSG00000182871       ENST00000355480 ENSE00001760845
3620  ENSG00000182871       ENST00000355480 ENSE00001705636
3621  ENSG00000182871       ENST00000355480 ENSE00001712155
3622  ENSG00000182871       ENST00000355480 ENSE00001677445
3623  ENSG00000182871       ENST00000355480 ENSE00001759875
3624  ENSG00000182871       ENST00000355480 ENSE00001792883
3625  ENSG00000182871       ENST00000355480 ENSE00001742681
3626  ENSG00000182871       ENST00000355480 ENSE00001649344
3627  ENSG00000182871       ENST00000355480 ENSE00001701626
3628  ENSG00000182871       ENST00000355480 ENSE00001654943
3629  ENSG00000182871       ENST00000355480 ENSE00003523340
3630  ENSG00000182871       ENST00000355480 ENSE00003594559
3631  ENSG00000182871       ENST00000355480 ENSE00003563378
3632  ENSG00000182871       ENST00000355480 ENSE00003601528
3633  ENSG00000182871       ENST00000355480 ENSE00003582147
3634  ENSG00000182871       ENST00000355480 ENSE00003624748
3635  ENSG00000182871       ENST00000355480 ENSE00001717282
3636  ENSG00000182871       ENST00000355480 ENSE00001638654
3637  ENSG00000182871       ENST00000355480 ENSE00001601591
3638  ENSG00000182871       ENST00000355480 ENSE00001761211
3639  ENSG00000182871       ENST00000355480 ENSE00001725836
3640  ENSG00000182871       ENST00000355480 ENSE00001717154
3641  ENSG00000182871       ENST00000355480 ENSE00002238826
3642  ENSG00000182871       ENST00000355480 ENSE00003582883
3643  ENSG00000182871       ENST00000355480 ENSE00003643178
3644  ENSG00000182871       ENST00000355480 ENSE00003588504
3645  ENSG00000182871       ENST00000355480 ENSE00001542501
3646  ENSG00000182871       ENST00000355480 ENSE00001428474
3647  ENSG00000182871       ENST00000342220 ENSE00001759875
3648  ENSG00000182871       ENST00000342220 ENSE00001792883
3649  ENSG00000182871       ENST00000342220 ENSE00001742681
3650  ENSG00000182871       ENST00000342220 ENSE00001649344
3651  ENSG00000182871       ENST00000342220 ENSE00001701626
3652  ENSG00000182871       ENST00000342220 ENSE00001654943
3653  ENSG00000182871       ENST00000342220 ENSE00003523340
3654  ENSG00000182871       ENST00000342220 ENSE00003594559
3655  ENSG00000182871       ENST00000342220 ENSE00003563378
3656  ENSG00000182871       ENST00000342220 ENSE00003601528
3657  ENSG00000182871       ENST00000342220 ENSE00003582147
3658  ENSG00000182871       ENST00000342220 ENSE00003624748
3659  ENSG00000182871       ENST00000342220 ENSE00001717282
3660  ENSG00000182871       ENST00000342220 ENSE00001638654
3661  ENSG00000182871       ENST00000342220 ENSE00001601591
3662  ENSG00000182871       ENST00000342220 ENSE00001761211
3663  ENSG00000182871       ENST00000342220 ENSE00001725836
3664  ENSG00000182871       ENST00000342220 ENSE00002238826
3665  ENSG00000182871       ENST00000342220 ENSE00003582883
3666  ENSG00000182871       ENST00000342220 ENSE00003643178
3667  ENSG00000182871       ENST00000342220 ENSE00003588504
3668  ENSG00000182871       ENST00000342220 ENSE00001542501
3669  ENSG00000182871       ENST00000342220 ENSE00001631330
3670  ENSG00000182871       ENST00000459895 ENSE00001830760
3671  ENSG00000182871       ENST00000459895 ENSE00003536172
3672  ENSG00000182871       ENST00000459895 ENSE00003508403
3673  ENSG00000182871       ENST00000459895 ENSE00003629018
3674  ENSG00000182871       ENST00000459895 ENSE00003552652
3675  ENSG00000182871       ENST00000459895 ENSE00003463075
3676  ENSG00000182871       ENST00000459895 ENSE00003465228
3677  ENSG00000182871       ENST00000459895 ENSE00001857655
3678  ENSG00000182871       ENST00000423214 ENSE00001725836
3679  ENSG00000182871       ENST00000423214 ENSE00001717154
3680  ENSG00000182871       ENST00000423214 ENSE00003582883
3681  ENSG00000182871       ENST00000423214 ENSE00003643178
3682  ENSG00000182871       ENST00000423214 ENSE00003588504
3683  ENSG00000182871       ENST00000423214 ENSE00001591664
3684  ENSG00000182871       ENST00000473212 ENSE00003575913
3685  ENSG00000182871       ENST00000473212 ENSE00003636018
3686  ENSG00000182871       ENST00000473212 ENSE00003613826
3687  ENSG00000182871       ENST00000473212 ENSE00001855789
3688  ENSG00000182871       ENST00000473212 ENSE00001875428
3689  ENSG00000182871       ENST00000359759 ENSE00001654135
3690  ENSG00000182871       ENST00000359759 ENSE00001640622
3691  ENSG00000182871       ENST00000359759 ENSE00001722709
3692  ENSG00000182871       ENST00000359759 ENSE00001740104
3693  ENSG00000182871       ENST00000359759 ENSE00001627003
3694  ENSG00000182871       ENST00000359759 ENSE00001638049
3695  ENSG00000182871       ENST00000359759 ENSE00001595082
3696  ENSG00000182871       ENST00000359759 ENSE00001685925
3697  ENSG00000182871       ENST00000359759 ENSE00001758572
3698  ENSG00000182871       ENST00000359759 ENSE00001617212
3699  ENSG00000182871       ENST00000359759 ENSE00001619008
3700  ENSG00000182871       ENST00000359759 ENSE00001665017
3701  ENSG00000182871       ENST00000359759 ENSE00001748652
3702  ENSG00000182871       ENST00000359759 ENSE00001760845
3703  ENSG00000182871       ENST00000359759 ENSE00001705636
3704  ENSG00000182871       ENST00000359759 ENSE00001712155
3705  ENSG00000182871       ENST00000359759 ENSE00001677445
3706  ENSG00000182871       ENST00000359759 ENSE00001759875
3707  ENSG00000182871       ENST00000359759 ENSE00001792883
3708  ENSG00000182871       ENST00000359759 ENSE00001742681
3709  ENSG00000182871       ENST00000359759 ENSE00001649344
3710  ENSG00000182871       ENST00000359759 ENSE00001701626
3711  ENSG00000182871       ENST00000359759 ENSE00001654943
3712  ENSG00000182871       ENST00000359759 ENSE00003523340
3713  ENSG00000182871       ENST00000359759 ENSE00003594559
3714  ENSG00000182871       ENST00000359759 ENSE00003563378
3715  ENSG00000182871       ENST00000359759 ENSE00003601528
3716  ENSG00000182871       ENST00000359759 ENSE00003582147
3717  ENSG00000182871       ENST00000359759 ENSE00003624748
3718  ENSG00000182871       ENST00000359759 ENSE00001717282
3719  ENSG00000182871       ENST00000359759 ENSE00001638654
3720  ENSG00000182871       ENST00000359759 ENSE00001601591
3721  ENSG00000182871       ENST00000359759 ENSE00001761211
3722  ENSG00000182871       ENST00000359759 ENSE00001725836
3723  ENSG00000182871       ENST00000359759 ENSE00001717154
3724  ENSG00000182871       ENST00000359759 ENSE00002238826
3725  ENSG00000182871       ENST00000359759 ENSE00003582883
3726  ENSG00000182871       ENST00000359759 ENSE00003643178
3727  ENSG00000182871       ENST00000359759 ENSE00003588504
3728  ENSG00000182871       ENST00000359759 ENSE00001299500
3729  ENSG00000182871       ENST00000359759 ENSE00001313674
3730  ENSG00000183535       ENST00000397787 ENSE00001530162
3731  ENSG00000183535       ENST00000397787 ENSE00002084477
3732  ENSG00000183535       ENST00000397787 ENSE00001530161
3733  ENSG00000183535       ENST00000485206 ENSE00002084477
3734  ENSG00000183535       ENST00000485206 ENSE00001530161
3735  ENSG00000183535       ENST00000485206 ENSE00001327867
3736  ENSG00000224574       ENST00000446475 ENSE00001741164
3737  ENSG00000224574       ENST00000446475 ENSE00001601201
3738  ENSG00000224574       ENST00000446475 ENSE00001625134
3739  ENSG00000224574       ENST00000446475 ENSE00001764084
3740  ENSG00000142156       ENST00000361866 ENSE00001436541
3741  ENSG00000142156       ENST00000361866 ENSE00000952543
3742  ENSG00000142156       ENST00000361866 ENSE00002693513
3743  ENSG00000142156       ENST00000361866 ENSE00002468227
3744  ENSG00000142156       ENST00000361866 ENSE00002430903
3745  ENSG00000142156       ENST00000361866 ENSE00002444369
3746  ENSG00000142156       ENST00000361866 ENSE00002457874
3747  ENSG00000142156       ENST00000361866 ENSE00002517632
3748  ENSG00000142156       ENST00000361866 ENSE00002473380
3749  ENSG00000142156       ENST00000361866 ENSE00002442314
3750  ENSG00000142156       ENST00000361866 ENSE00002514254
3751  ENSG00000142156       ENST00000361866 ENSE00002446605
3752  ENSG00000142156       ENST00000361866 ENSE00002492838
3753  ENSG00000142156       ENST00000361866 ENSE00002477756
3754  ENSG00000142156       ENST00000361866 ENSE00002450819
3755  ENSG00000142156       ENST00000361866 ENSE00002494313
3756  ENSG00000142156       ENST00000361866 ENSE00002468467
3757  ENSG00000142156       ENST00000361866 ENSE00002500444
3758  ENSG00000142156       ENST00000361866 ENSE00002449732
3759  ENSG00000142156       ENST00000361866 ENSE00002470662
3760  ENSG00000142156       ENST00000361866 ENSE00002459279
3761  ENSG00000142156       ENST00000361866 ENSE00002465494
3762  ENSG00000142156       ENST00000361866 ENSE00002478448
3763  ENSG00000142156       ENST00000361866 ENSE00002505064
3764  ENSG00000142156       ENST00000361866 ENSE00002525270
3765  ENSG00000142156       ENST00000361866 ENSE00002519552
3766  ENSG00000142156       ENST00000361866 ENSE00002495880
3767  ENSG00000142156       ENST00000361866 ENSE00003466321
3768  ENSG00000142156       ENST00000361866 ENSE00002483667
3769  ENSG00000142156       ENST00000361866 ENSE00003665865
3770  ENSG00000142156       ENST00000361866 ENSE00003672421
3771  ENSG00000142156       ENST00000361866 ENSE00003587026
3772  ENSG00000142156       ENST00000361866 ENSE00003560168
3773  ENSG00000142156       ENST00000361866 ENSE00003615014
3774  ENSG00000142156       ENST00000361866 ENSE00003606957
3775  ENSG00000142156       ENST00000492851 ENSE00001903439
3776  ENSG00000142156       ENST00000492851 ENSE00001952397
3777  ENSG00000142156       ENST00000466285 ENSE00001922911
3778  ENSG00000142156       ENST00000466285 ENSE00003624032
3779  ENSG00000142156       ENST00000466285 ENSE00001917616
3780  ENSG00000142156       ENST00000463060 ENSE00001893250
3781  ENSG00000142156       ENST00000463060 ENSE00003630961
3782  ENSG00000142156       ENST00000463060 ENSE00003582235
3783  ENSG00000142156       ENST00000463060 ENSE00003677365
3784  ENSG00000142156       ENST00000463060 ENSE00003547340
3785  ENSG00000142156       ENST00000463060 ENSE00003668198
3786  ENSG00000142156       ENST00000498614 ENSE00003582235
3787  ENSG00000142156       ENST00000498614 ENSE00003677365
3788  ENSG00000142156       ENST00000498614 ENSE00003547340
3789  ENSG00000142156       ENST00000498614 ENSE00003668198
3790  ENSG00000142156       ENST00000498614 ENSE00001858383
3791  ENSG00000142156       ENST00000498614 ENSE00003632905
3792  ENSG00000142156       ENST00000486023 ENSE00003668198
3793  ENSG00000142156       ENST00000486023 ENSE00001856981
3794  ENSG00000142156       ENST00000486023 ENSE00001901960
3795  ENSG00000142156       ENST00000612273 ENSE00000952543
3796  ENSG00000142156       ENST00000612273 ENSE00002693513
3797  ENSG00000142156       ENST00000612273 ENSE00002468227
3798  ENSG00000142156       ENST00000612273 ENSE00002430903
3799  ENSG00000142156       ENST00000612273 ENSE00002444369
3800  ENSG00000142156       ENST00000612273 ENSE00002457874
3801  ENSG00000142156       ENST00000612273 ENSE00002517632
3802  ENSG00000142156       ENST00000612273 ENSE00002473380
3803  ENSG00000142156       ENST00000612273 ENSE00002442314
3804  ENSG00000142156       ENST00000612273 ENSE00002514254
3805  ENSG00000142156       ENST00000612273 ENSE00002446605
3806  ENSG00000142156       ENST00000612273 ENSE00002492838
3807  ENSG00000142156       ENST00000612273 ENSE00002477756
3808  ENSG00000142156       ENST00000612273 ENSE00002450819
3809  ENSG00000142156       ENST00000612273 ENSE00002494313
3810  ENSG00000142156       ENST00000612273 ENSE00002468467
3811  ENSG00000142156       ENST00000612273 ENSE00002500444
3812  ENSG00000142156       ENST00000612273 ENSE00002449732
3813  ENSG00000142156       ENST00000612273 ENSE00002470662
3814  ENSG00000142156       ENST00000612273 ENSE00002459279
3815  ENSG00000142156       ENST00000612273 ENSE00002465494
3816  ENSG00000142156       ENST00000612273 ENSE00002478448
3817  ENSG00000142156       ENST00000612273 ENSE00002505064
3818  ENSG00000142156       ENST00000612273 ENSE00002525270
3819  ENSG00000142156       ENST00000612273 ENSE00002519552
3820  ENSG00000142156       ENST00000612273 ENSE00002495880
3821  ENSG00000142156       ENST00000612273 ENSE00003665865
3822  ENSG00000142156       ENST00000612273 ENSE00003672421
3823  ENSG00000142156       ENST00000612273 ENSE00003587026
3824  ENSG00000142156       ENST00000612273 ENSE00003560168
3825  ENSG00000142156       ENST00000612273 ENSE00003615014
3826  ENSG00000142156       ENST00000612273 ENSE00003742428
3827  ENSG00000142156       ENST00000612273 ENSE00003752431
3828  ENSG00000142156       ENST00000612273 ENSE00003753322
3829  ENSG00000142173       ENST00000300527 ENSE00001902209
3830  ENSG00000142173       ENST00000300527 ENSE00000952665
3831  ENSG00000142173       ENST00000300527 ENSE00001134048
3832  ENSG00000142173       ENST00000300527 ENSE00000952667
3833  ENSG00000142173       ENST00000300527 ENSE00001219451
3834  ENSG00000142173       ENST00000300527 ENSE00003477309
3835  ENSG00000142173       ENST00000300527 ENSE00003473000
3836  ENSG00000142173       ENST00000300527 ENSE00003589368
3837  ENSG00000142173       ENST00000300527 ENSE00003564562
3838  ENSG00000142173       ENST00000300527 ENSE00003652273
3839  ENSG00000142173       ENST00000300527 ENSE00000952674
3840  ENSG00000142173       ENST00000300527 ENSE00000952704
3841  ENSG00000142173       ENST00000300527 ENSE00000952707
3842  ENSG00000142173       ENST00000300527 ENSE00000952695
3843  ENSG00000142173       ENST00000300527 ENSE00000952678
3844  ENSG00000142173       ENST00000300527 ENSE00000952696
3845  ENSG00000142173       ENST00000300527 ENSE00000952699
3846  ENSG00000142173       ENST00000300527 ENSE00001332369
3847  ENSG00000142173       ENST00000300527 ENSE00001219267
3848  ENSG00000142173       ENST00000300527 ENSE00000952683
3849  ENSG00000142173       ENST00000300527 ENSE00000952697
3850  ENSG00000142173       ENST00000300527 ENSE00001219263
3851  ENSG00000142173       ENST00000300527 ENSE00000952705
3852  ENSG00000142173       ENST00000300527 ENSE00001218880
3853  ENSG00000142173       ENST00000300527 ENSE00001219302
3854  ENSG00000142173       ENST00000300527 ENSE00001133859
3855  ENSG00000142173       ENST00000300527 ENSE00001110398
3856  ENSG00000142173       ENST00000300527 ENSE00000952691
3857  ENSG00000142173       ENST00000436769 ENSE00000952665
3858  ENSG00000142173       ENST00000436769 ENSE00001700317
3859  ENSG00000142173       ENST00000436769 ENSE00001719735
3860  ENSG00000142173       ENST00000409416 ENSE00001134048
3861  ENSG00000142173       ENST00000409416 ENSE00000952667
3862  ENSG00000142173       ENST00000409416 ENSE00001219451
3863  ENSG00000142173       ENST00000409416 ENSE00003477309
3864  ENSG00000142173       ENST00000409416 ENSE00003473000
3865  ENSG00000142173       ENST00000409416 ENSE00003589368
3866  ENSG00000142173       ENST00000409416 ENSE00003564562
3867  ENSG00000142173       ENST00000409416 ENSE00003652273
3868  ENSG00000142173       ENST00000409416 ENSE00000952674
3869  ENSG00000142173       ENST00000409416 ENSE00000952704
3870  ENSG00000142173       ENST00000409416 ENSE00000952707
3871  ENSG00000142173       ENST00000409416 ENSE00000952695
3872  ENSG00000142173       ENST00000409416 ENSE00000952678
3873  ENSG00000142173       ENST00000409416 ENSE00000952696
3874  ENSG00000142173       ENST00000409416 ENSE00000952699
3875  ENSG00000142173       ENST00000409416 ENSE00001332369
3876  ENSG00000142173       ENST00000409416 ENSE00001219267
3877  ENSG00000142173       ENST00000409416 ENSE00000952683
3878  ENSG00000142173       ENST00000409416 ENSE00000952697
3879  ENSG00000142173       ENST00000409416 ENSE00001219263
3880  ENSG00000142173       ENST00000409416 ENSE00000952705
3881  ENSG00000142173       ENST00000409416 ENSE00001218880
3882  ENSG00000142173       ENST00000409416 ENSE00001219302
3883  ENSG00000142173       ENST00000409416 ENSE00001133859
3884  ENSG00000142173       ENST00000409416 ENSE00001110398
3885  ENSG00000142173       ENST00000409416 ENSE00001584872
3886  ENSG00000142173       ENST00000409416 ENSE00001582755
3887  ENSG00000142173       ENST00000397763 ENSE00000952665
3888  ENSG00000142173       ENST00000397763 ENSE00001134048
3889  ENSG00000142173       ENST00000397763 ENSE00000952667
3890  ENSG00000142173       ENST00000397763 ENSE00001219451
3891  ENSG00000142173       ENST00000397763 ENSE00003477309
3892  ENSG00000142173       ENST00000397763 ENSE00003473000
3893  ENSG00000142173       ENST00000397763 ENSE00003589368
3894  ENSG00000142173       ENST00000397763 ENSE00003564562
3895  ENSG00000142173       ENST00000397763 ENSE00003652273
3896  ENSG00000142173       ENST00000397763 ENSE00000952674
3897  ENSG00000142173       ENST00000397763 ENSE00000952704
3898  ENSG00000142173       ENST00000397763 ENSE00000952707
3899  ENSG00000142173       ENST00000397763 ENSE00000952695
3900  ENSG00000142173       ENST00000397763 ENSE00000952678
3901  ENSG00000142173       ENST00000397763 ENSE00000952696
3902  ENSG00000142173       ENST00000397763 ENSE00000952699
3903  ENSG00000142173       ENST00000397763 ENSE00001332369
3904  ENSG00000142173       ENST00000397763 ENSE00001219267
3905  ENSG00000142173       ENST00000397763 ENSE00000952683
3906  ENSG00000142173       ENST00000397763 ENSE00000952697
3907  ENSG00000142173       ENST00000397763 ENSE00001219263
3908  ENSG00000142173       ENST00000397763 ENSE00000952705
3909  ENSG00000142173       ENST00000397763 ENSE00001218880
3910  ENSG00000142173       ENST00000397763 ENSE00001219302
3911  ENSG00000142173       ENST00000397763 ENSE00001133859
3912  ENSG00000142173       ENST00000397763 ENSE00001110398
3913  ENSG00000142173       ENST00000397763 ENSE00001530047
3914  ENSG00000142173       ENST00000460886 ENSE00001941337
3915  ENSG00000142173       ENST00000460886 ENSE00001895403
3916  ENSG00000142173       ENST00000485591 ENSE00001870884
3917  ENSG00000142173       ENST00000485591 ENSE00003511430
3918  ENSG00000142173       ENST00000485591 ENSE00003507459
3919  ENSG00000142173       ENST00000485591 ENSE00003569914
3920  ENSG00000142173       ENST00000485591 ENSE00003536878
3921  ENSG00000142173       ENST00000485591 ENSE00003677337
3922  ENSG00000142173       ENST00000485591 ENSE00001952021
3923  ENSG00000142173       ENST00000413758 ENSE00000952699
3924  ENSG00000142173       ENST00000413758 ENSE00001332369
3925  ENSG00000142173       ENST00000413758 ENSE00001219267
3926  ENSG00000142173       ENST00000413758 ENSE00000952683
3927  ENSG00000142173       ENST00000413758 ENSE00000952697
3928  ENSG00000142173       ENST00000413758 ENSE00001219263
3929  ENSG00000142173       ENST00000413758 ENSE00000952705
3930  ENSG00000142173       ENST00000413758 ENSE00001218880
3931  ENSG00000142173       ENST00000413758 ENSE00002492269
3932  ENSG00000142173       ENST00000413758 ENSE00001718972
3933  ENSG00000142173       ENST00000413758 ENSE00001643861
3934  ENSG00000142173       ENST00000310645 ENSE00000952665
3935  ENSG00000142173       ENST00000310645 ENSE00001134048
3936  ENSG00000142173       ENST00000310645 ENSE00000952667
3937  ENSG00000142173       ENST00000310645 ENSE00001219451
3938  ENSG00000142173       ENST00000310645 ENSE00003477309
3939  ENSG00000142173       ENST00000310645 ENSE00003473000
3940  ENSG00000142173       ENST00000310645 ENSE00003589368
3941  ENSG00000142173       ENST00000310645 ENSE00003564562
3942  ENSG00000142173       ENST00000310645 ENSE00003652273
3943  ENSG00000142173       ENST00000310645 ENSE00000952674
3944  ENSG00000142173       ENST00000310645 ENSE00000952704
3945  ENSG00000142173       ENST00000310645 ENSE00000952707
3946  ENSG00000142173       ENST00000310645 ENSE00000952695
3947  ENSG00000142173       ENST00000310645 ENSE00000952678
3948  ENSG00000142173       ENST00000310645 ENSE00000952696
3949  ENSG00000142173       ENST00000310645 ENSE00000952699
3950  ENSG00000142173       ENST00000310645 ENSE00001332369
3951  ENSG00000142173       ENST00000310645 ENSE00001219267
3952  ENSG00000142173       ENST00000310645 ENSE00000952683
3953  ENSG00000142173       ENST00000310645 ENSE00000952697
3954  ENSG00000142173       ENST00000310645 ENSE00001219263
3955  ENSG00000142173       ENST00000310645 ENSE00000952705
3956  ENSG00000142173       ENST00000310645 ENSE00001218880
3957  ENSG00000142173       ENST00000310645 ENSE00001219302
3958  ENSG00000142173       ENST00000310645 ENSE00001133859
3959  ENSG00000142173       ENST00000310645 ENSE00001110398
3960  ENSG00000142173       ENST00000310645 ENSE00001110410
3961  ENSG00000142173       ENST00000310645 ENSE00001314213
3962  ENSG00000160202       ENST00000291554 ENSE00001050530
3963  ENSG00000160202       ENST00000291554 ENSE00003509055
3964  ENSG00000160202       ENST00000291554 ENSE00003462823
3965  ENSG00000160202       ENST00000482775 ENSE00001944360
3966  ENSG00000160202       ENST00000482775 ENSE00001890817
3967  ENSG00000160202       ENST00000482775 ENSE00003636164
3968  ENSG00000160202       ENST00000482775 ENSE00003585847
3969  ENSG00000160202       ENST00000398133 ENSE00003509055
3970  ENSG00000160202       ENST00000398133 ENSE00001531761
3971  ENSG00000160202       ENST00000398133 ENSE00001531760
3972  ENSG00000160202       ENST00000398132 ENSE00003509055
3973  ENSG00000160202       ENST00000398132 ENSE00001531759
3974  ENSG00000160202       ENST00000398132 ENSE00001531758
3975  ENSG00000160202       ENST00000468016 ENSE00001809860
3976  ENSG00000160202       ENST00000468016 ENSE00001864083
3977  ENSG00000205758       ENST00000488167 ENSE00001878345
3978  ENSG00000205758       ENST00000488167 ENSE00003613982
3979  ENSG00000205758       ENST00000488167 ENSE00003624943
3980  ENSG00000205758       ENST00000488167 ENSE00002530970
3981  ENSG00000205758       ENST00000417979 ENSE00003635139
3982  ENSG00000205758       ENST00000417979 ENSE00003502265
3983  ENSG00000205758       ENST00000417979 ENSE00003547975
3984  ENSG00000205758       ENST00000417979 ENSE00001538343
3985  ENSG00000205758       ENST00000417979 ENSE00003545673
3986  ENSG00000205758       ENST00000417979 ENSE00003567629
3987  ENSG00000205758       ENST00000417979 ENSE00001596721
3988  ENSG00000205758       ENST00000417979 ENSE00002448451
3989  ENSG00000205758       ENST00000490714 ENSE00003545673
3990  ENSG00000205758       ENST00000490714 ENSE00003613982
3991  ENSG00000205758       ENST00000490714 ENSE00001899745
3992  ENSG00000205758       ENST00000490714 ENSE00003552865
3993  ENSG00000205758       ENST00000490714 ENSE00003690988
3994  ENSG00000205758       ENST00000490714 ENSE00003483827
3995  ENSG00000205758       ENST00000490714 ENSE00001833797
3996  ENSG00000205758       ENST00000413017 ENSE00003642759
3997  ENSG00000205758       ENST00000413017 ENSE00003528796
3998  ENSG00000205758       ENST00000413017 ENSE00003683733
3999  ENSG00000205758       ENST00000413017 ENSE00003635139
4000  ENSG00000205758       ENST00000413017 ENSE00001812915
4001  ENSG00000205758       ENST00000413017 ENSE00001655845
4002  ENSG00000205758       ENST00000438788 ENSE00001711363
4003  ENSG00000205758       ENST00000438788 ENSE00001780713
4004  ENSG00000205758       ENST00000431177 ENSE00003642759
4005  ENSG00000205758       ENST00000431177 ENSE00003528796
4006  ENSG00000205758       ENST00000431177 ENSE00003683733
4007  ENSG00000205758       ENST00000431177 ENSE00003635139
4008  ENSG00000205758       ENST00000431177 ENSE00003502265
4009  ENSG00000205758       ENST00000431177 ENSE00003547975
4010  ENSG00000205758       ENST00000431177 ENSE00001680487
4011  ENSG00000205758       ENST00000431177 ENSE00001669850
4012  ENSG00000205758       ENST00000479964 ENSE00003516588
4013  ENSG00000205758       ENST00000479964 ENSE00001937306
4014  ENSG00000205758       ENST00000479964 ENSE00003688771
4015  ENSG00000205758       ENST00000479964 ENSE00001813881
4016  ENSG00000205758       ENST00000440526 ENSE00003635139
4017  ENSG00000205758       ENST00000440526 ENSE00003502265
4018  ENSG00000205758       ENST00000440526 ENSE00003547975
4019  ENSG00000205758       ENST00000440526 ENSE00001387385
4020  ENSG00000205758       ENST00000440526 ENSE00003493157
4021  ENSG00000205758       ENST00000440526 ENSE00003596663
4022  ENSG00000205758       ENST00000440526 ENSE00001805410
4023  ENSG00000205758       ENST00000440526 ENSE00001739270
4024  ENSG00000205758       ENST00000437996 ENSE00001770207
4025  ENSG00000205758       ENST00000437996 ENSE00003582597
4026  ENSG00000205758       ENST00000437996 ENSE00003516588
4027  ENSG00000205758       ENST00000437996 ENSE00001747269
4028  ENSG00000205758       ENST00000437996 ENSE00003520702
4029  ENSG00000205758       ENST00000437996 ENSE00001644442
4030  ENSG00000205758       ENST00000445393 ENSE00003642759
4031  ENSG00000205758       ENST00000445393 ENSE00003528796
4032  ENSG00000205758       ENST00000445393 ENSE00003683733
4033  ENSG00000205758       ENST00000445393 ENSE00003547975
4034  ENSG00000205758       ENST00000445393 ENSE00001387385
4035  ENSG00000205758       ENST00000445393 ENSE00001538343
4036  ENSG00000205758       ENST00000445393 ENSE00001717080
4037  ENSG00000205758       ENST00000480893 ENSE00003516588
4038  ENSG00000205758       ENST00000480893 ENSE00001879733
4039  ENSG00000205758       ENST00000480893 ENSE00001935720
4040  ENSG00000205758       ENST00000480893 ENSE00001861758
4041  ENSG00000205758       ENST00000381554 ENSE00001883826
4042  ENSG00000205758       ENST00000381554 ENSE00003642759
4043  ENSG00000205758       ENST00000381554 ENSE00003528796
4044  ENSG00000205758       ENST00000381554 ENSE00003683733
4045  ENSG00000205758       ENST00000381554 ENSE00003635139
4046  ENSG00000205758       ENST00000381554 ENSE00003502265
4047  ENSG00000205758       ENST00000381554 ENSE00003547975
4048  ENSG00000205758       ENST00000381554 ENSE00001387385
4049  ENSG00000205758       ENST00000381554 ENSE00003493157
4050  ENSG00000205758       ENST00000381554 ENSE00003596663
4051  ENSG00000205758       ENST00000381554 ENSE00003499413
4052  ENSG00000205758       ENST00000381554 ENSE00003635551
4053  ENSG00000205758       ENST00000381554 ENSE00001603968
4054  ENSG00000205758       ENST00000399442 ENSE00001538349
4055  ENSG00000205758       ENST00000399442 ENSE00001538341
4056  ENSG00000205758       ENST00000399442 ENSE00001538339
4057  ENSG00000205758       ENST00000426935 ENSE00003635139
4058  ENSG00000205758       ENST00000426935 ENSE00003502265
4059  ENSG00000205758       ENST00000426935 ENSE00003547975
4060  ENSG00000205758       ENST00000426935 ENSE00001387385
4061  ENSG00000205758       ENST00000426935 ENSE00001489060
4062  ENSG00000205758       ENST00000426935 ENSE00003545673
4063  ENSG00000205758       ENST00000426935 ENSE00003567629
4064  ENSG00000205758       ENST00000426935 ENSE00001787834
4065  ENSG00000205758       ENST00000414079 ENSE00001387385
4066  ENSG00000205758       ENST00000414079 ENSE00003493157
4067  ENSG00000205758       ENST00000414079 ENSE00001598386
4068  ENSG00000205758       ENST00000414079 ENSE00001592679
4069  ENSG00000205758       ENST00000420072 ENSE00003642759
4070  ENSG00000205758       ENST00000420072 ENSE00003528796
4071  ENSG00000205758       ENST00000420072 ENSE00003683733
4072  ENSG00000205758       ENST00000420072 ENSE00003635139
4073  ENSG00000205758       ENST00000420072 ENSE00003502265
4074  ENSG00000205758       ENST00000420072 ENSE00003547975
4075  ENSG00000205758       ENST00000420072 ENSE00001387385
4076  ENSG00000205758       ENST00000420072 ENSE00001770207
4077  ENSG00000205758       ENST00000420072 ENSE00003582597
4078  ENSG00000205758       ENST00000420072 ENSE00003516588
4079  ENSG00000205758       ENST00000420072 ENSE00001404762
4080  ENSG00000205758       ENST00000420072 ENSE00001690724
4081  ENSG00000205758       ENST00000429827 ENSE00003642759
4082  ENSG00000205758       ENST00000429827 ENSE00003528796
4083  ENSG00000205758       ENST00000429827 ENSE00003683733
4084  ENSG00000205758       ENST00000429827 ENSE00003502265
4085  ENSG00000205758       ENST00000429827 ENSE00003547975
4086  ENSG00000205758       ENST00000429827 ENSE00001387385
4087  ENSG00000205758       ENST00000429827 ENSE00001770207
4088  ENSG00000205758       ENST00000429827 ENSE00003582597
4089  ENSG00000205758       ENST00000429827 ENSE00003516588
4090  ENSG00000205758       ENST00000429827 ENSE00001722894
4091  ENSG00000205758       ENST00000429827 ENSE00001667525
4092  ENSG00000205758       ENST00000361534 ENSE00003528796
4093  ENSG00000205758       ENST00000361534 ENSE00003683733
4094  ENSG00000205758       ENST00000361534 ENSE00003635139
4095  ENSG00000205758       ENST00000361534 ENSE00003502265
4096  ENSG00000205758       ENST00000361534 ENSE00003547975
4097  ENSG00000205758       ENST00000361534 ENSE00001387385
4098  ENSG00000205758       ENST00000361534 ENSE00003493157
4099  ENSG00000205758       ENST00000361534 ENSE00003596663
4100  ENSG00000205758       ENST00000361534 ENSE00003499413
4101  ENSG00000205758       ENST00000361534 ENSE00001432491
4102  ENSG00000205758       ENST00000361534 ENSE00001538349
4103  ENSG00000205758       ENST00000361534 ENSE00003486782
4104  ENSG00000205758       ENST00000361534 ENSE00001436391
4105  ENSG00000205758       ENST00000452420 ENSE00003547975
4106  ENSG00000205758       ENST00000452420 ENSE00001387385
4107  ENSG00000205758       ENST00000452420 ENSE00001632301
4108  ENSG00000205758       ENST00000452420 ENSE00001770207
4109  ENSG00000205758       ENST00000452420 ENSE00003582597
4110  ENSG00000205758       ENST00000452420 ENSE00003516588
4111  ENSG00000205758       ENST00000452420 ENSE00001643192
4112  ENSG00000205758       ENST00000452420 ENSE00001655452
4113  ENSG00000205758       ENST00000452420 ENSE00001177939
4114  ENSG00000205758       ENST00000381540 ENSE00003642759
4115  ENSG00000205758       ENST00000381540 ENSE00003528796
4116  ENSG00000205758       ENST00000381540 ENSE00003683733
4117  ENSG00000205758       ENST00000381540 ENSE00003635139
4118  ENSG00000205758       ENST00000381540 ENSE00003502265
4119  ENSG00000205758       ENST00000381540 ENSE00003547975
4120  ENSG00000205758       ENST00000381540 ENSE00001387385
4121  ENSG00000205758       ENST00000381540 ENSE00003493157
4122  ENSG00000205758       ENST00000381540 ENSE00003596663
4123  ENSG00000205758       ENST00000381540 ENSE00003499413
4124  ENSG00000205758       ENST00000381540 ENSE00001850083
4125  ENSG00000205758       ENST00000381540 ENSE00001489057
4126  ENSG00000205758       ENST00000381540 ENSE00001953102
4127  ENSG00000205758       ENST00000468349 ENSE00001881951
4128  ENSG00000205758       ENST00000468349 ENSE00001926168
4129  ENSG00000205758       ENST00000290244 ENSE00003642759
4130  ENSG00000205758       ENST00000290244 ENSE00003528796
4131  ENSG00000205758       ENST00000290244 ENSE00003683733
4132  ENSG00000205758       ENST00000290244 ENSE00003502265
4133  ENSG00000205758       ENST00000290244 ENSE00003547975
4134  ENSG00000205758       ENST00000290244 ENSE00001387385
4135  ENSG00000205758       ENST00000290244 ENSE00003493157
4136  ENSG00000205758       ENST00000290244 ENSE00003596663
4137  ENSG00000205758       ENST00000290244 ENSE00003499413
4138  ENSG00000205758       ENST00000290244 ENSE00003635551
4139  ENSG00000205758       ENST00000290244 ENSE00001903909
4140  ENSG00000205758       ENST00000290244 ENSE00001860221
4141  ENSG00000205758       ENST00000441940 ENSE00003596663
4142  ENSG00000205758       ENST00000441940 ENSE00003499413
4143  ENSG00000205758       ENST00000441940 ENSE00003635551
4144  ENSG00000205758       ENST00000441940 ENSE00001779760
4145  ENSG00000160213       ENST00000639959 ENSE00003806135
4146  ENSG00000160213       ENST00000639959 ENSE00001957681
4147  ENSG00000160213       ENST00000291568 ENSE00001957681
4148  ENSG00000160213       ENST00000291568 ENSE00001137740
4149  ENSG00000160213       ENST00000291568 ENSE00001050609
4150  ENSG00000160213       ENST00000640406 ENSE00001947020
4151  ENSG00000160213       ENST00000640406 ENSE00003804825
4152  ENSG00000160213       ENST00000480147 ENSE00001894639
4153  ENSG00000154639       ENST00000284878 ENSE00001356018
4154  ENSG00000154639       ENST00000284878 ENSE00001370254
4155  ENSG00000154639       ENST00000284878 ENSE00001016957
4156  ENSG00000154639       ENST00000284878 ENSE00001016954
4157  ENSG00000154639       ENST00000284878 ENSE00001016953
4158  ENSG00000154639       ENST00000284878 ENSE00001016956
4159  ENSG00000154639       ENST00000284878 ENSE00001918181
4160  ENSG00000154639       ENST00000400166 ENSE00001370254
4161  ENSG00000154639       ENST00000400166 ENSE00001016957
4162  ENSG00000154639       ENST00000400166 ENSE00001016954
4163  ENSG00000154639       ENST00000400166 ENSE00001541826
4164  ENSG00000154639       ENST00000400166 ENSE00001541825
4165  ENSG00000154639       ENST00000356275 ENSE00001370254
4166  ENSG00000154639       ENST00000356275 ENSE00001541853
4167  ENSG00000154639       ENST00000356275 ENSE00001531599
4168  ENSG00000154639       ENST00000400165 ENSE00001370254
4169  ENSG00000154639       ENST00000400165 ENSE00001016957
4170  ENSG00000154639       ENST00000400165 ENSE00001541853
4171  ENSG00000154639       ENST00000400165 ENSE00001541821
4172  ENSG00000154639       ENST00000400169 ENSE00001370254
4173  ENSG00000154639       ENST00000400169 ENSE00001016957
4174  ENSG00000154639       ENST00000400169 ENSE00001016954
4175  ENSG00000154639       ENST00000400169 ENSE00001016953
4176  ENSG00000154639       ENST00000400169 ENSE00001016956
4177  ENSG00000154639       ENST00000400169 ENSE00001541853
4178  ENSG00000154639       ENST00000400169 ENSE00001541834
4179  ENSG00000154639       ENST00000400169 ENSE00001541833
4180  ENSG00000214319       ENST00000398098 ENSE00001531603
4181  ENSG00000278678       ENST00000616920 ENSE00003715679
4182  ENSG00000224524       ENST00000450823 ENSE00001685999
4183  ENSG00000228314       ENST00000428301 ENSE00001683510
4184  ENSG00000228314       ENST00000428301 ENSE00001747440
4185  ENSG00000228314       ENST00000428301 ENSE00001759151
4186  ENSG00000228314       ENST00000428301 ENSE00001735750
4187  ENSG00000228314       ENST00000428301 ENSE00001721401
4188  ENSG00000228314       ENST00000428301 ENSE00001657289
4189  ENSG00000228314       ENST00000420685 ENSE00001769496
4190  ENSG00000228314       ENST00000420685 ENSE00001786291
4191  ENSG00000228314       ENST00000420685 ENSE00001668901
4192  ENSG00000228314       ENST00000436765 ENSE00001749396
4193  ENSG00000228314       ENST00000436765 ENSE00001598391
4194  ENSG00000228314       ENST00000436765 ENSE00001766861
4195  ENSG00000166265       ENST00000299340 ENSE00001949957
4196  ENSG00000166265       ENST00000299340 ENSE00001101546
4197  ENSG00000166265       ENST00000299340 ENSE00003694569
4198  ENSG00000166265       ENST00000299340 ENSE00001149319
4199  ENSG00000166265       ENST00000400043 ENSE00001101546
4200  ENSG00000166265       ENST00000400043 ENSE00003694569
4201  ENSG00000166265       ENST00000400043 ENSE00001823282
4202  ENSG00000166265       ENST00000400043 ENSE00001674139
4203  ENSG00000197934       ENST00000414486 ENSE00001719232
4204  ENSG00000197934       ENST00000414486 ENSE00001543350
4205  ENSG00000197934       ENST00000414486 ENSE00001630253
4206  ENSG00000197934       ENST00000414486 ENSE00001751945
4207  ENSG00000197934       ENST00000357401 ENSE00001543350
4208  ENSG00000197934       ENST00000357401 ENSE00001543351
4209  ENSG00000197934       ENST00000357401 ENSE00001399667
4210  ENSG00000197934       ENST00000357401 ENSE00001543348
4211  ENSG00000160305       ENST00000400274 ENSE00001542216
4212  ENSG00000160305       ENST00000400274 ENSE00002347315
4213  ENSG00000160305       ENST00000400274 ENSE00002324363
4214  ENSG00000160305       ENST00000400274 ENSE00002319629
4215  ENSG00000160305       ENST00000400274 ENSE00002218277
4216  ENSG00000160305       ENST00000400274 ENSE00002276427
4217  ENSG00000160305       ENST00000400274 ENSE00003471299
4218  ENSG00000160305       ENST00000400274 ENSE00001542215
4219  ENSG00000160305       ENST00000400274 ENSE00003546587
4220  ENSG00000160305       ENST00000400274 ENSE00003683586
4221  ENSG00000160305       ENST00000400274 ENSE00003494381
4222  ENSG00000160305       ENST00000400274 ENSE00003672705
4223  ENSG00000160305       ENST00000400274 ENSE00003533110
4224  ENSG00000160305       ENST00000400274 ENSE00003466019
4225  ENSG00000160305       ENST00000400274 ENSE00003623916
4226  ENSG00000160305       ENST00000400274 ENSE00003546483
4227  ENSG00000160305       ENST00000400274 ENSE00003535268
4228  ENSG00000160305       ENST00000400274 ENSE00003474907
4229  ENSG00000160305       ENST00000400274 ENSE00003641160
4230  ENSG00000160305       ENST00000400274 ENSE00003562990
4231  ENSG00000160305       ENST00000400274 ENSE00002685752
4232  ENSG00000160305       ENST00000400274 ENSE00002444500
4233  ENSG00000160305       ENST00000400274 ENSE00002499829
4234  ENSG00000160305       ENST00000400274 ENSE00002476417
4235  ENSG00000160305       ENST00000400274 ENSE00002513022
4236  ENSG00000160305       ENST00000400274 ENSE00002533498
4237  ENSG00000160305       ENST00000400274 ENSE00003662615
4238  ENSG00000160305       ENST00000400274 ENSE00003590044
4239  ENSG00000160305       ENST00000400274 ENSE00003495758
4240  ENSG00000160305       ENST00000400274 ENSE00003559256
4241  ENSG00000160305       ENST00000400274 ENSE00003545429
4242  ENSG00000160305       ENST00000400274 ENSE00002444706
4243  ENSG00000160305       ENST00000400274 ENSE00002517274
4244  ENSG00000160305       ENST00000400274 ENSE00002499891
4245  ENSG00000160305       ENST00000400274 ENSE00003560718
4246  ENSG00000160305       ENST00000400274 ENSE00003514252
4247  ENSG00000160305       ENST00000400274 ENSE00003516999
4248  ENSG00000160305       ENST00000400274 ENSE00003575495
4249  ENSG00000160305       ENST00000457905 ENSE00002347315
4250  ENSG00000160305       ENST00000457905 ENSE00002324363
4251  ENSG00000160305       ENST00000457905 ENSE00002319629
4252  ENSG00000160305       ENST00000457905 ENSE00002218277
4253  ENSG00000160305       ENST00000457905 ENSE00002276427
4254  ENSG00000160305       ENST00000457905 ENSE00003471299
4255  ENSG00000160305       ENST00000457905 ENSE00003546587
4256  ENSG00000160305       ENST00000457905 ENSE00003683586
4257  ENSG00000160305       ENST00000457905 ENSE00003494381
4258  ENSG00000160305       ENST00000457905 ENSE00003672705
4259  ENSG00000160305       ENST00000457905 ENSE00003533110
4260  ENSG00000160305       ENST00000457905 ENSE00003466019
4261  ENSG00000160305       ENST00000457905 ENSE00003623916
4262  ENSG00000160305       ENST00000457905 ENSE00003546483
4263  ENSG00000160305       ENST00000457905 ENSE00003535268
4264  ENSG00000160305       ENST00000457905 ENSE00003474907
4265  ENSG00000160305       ENST00000457905 ENSE00003641160
4266  ENSG00000160305       ENST00000457905 ENSE00003562990
4267  ENSG00000160305       ENST00000457905 ENSE00002685752
4268  ENSG00000160305       ENST00000457905 ENSE00001895397
4269  ENSG00000160305       ENST00000457905 ENSE00003480214
4270  ENSG00000160305       ENST00000457905 ENSE00001863984
4271  ENSG00000160305       ENST00000466639 ENSE00002347315
4272  ENSG00000160305       ENST00000466639 ENSE00002324363
4273  ENSG00000160305       ENST00000466639 ENSE00002319629
4274  ENSG00000160305       ENST00000466639 ENSE00002218277
4275  ENSG00000160305       ENST00000466639 ENSE00003471299
4276  ENSG00000160305       ENST00000466639 ENSE00003546587
4277  ENSG00000160305       ENST00000466639 ENSE00003683586
4278  ENSG00000160305       ENST00000466639 ENSE00003494381
4279  ENSG00000160305       ENST00000466639 ENSE00003672705
4280  ENSG00000160305       ENST00000466639 ENSE00003533110
4281  ENSG00000160305       ENST00000466639 ENSE00003466019
4282  ENSG00000160305       ENST00000466639 ENSE00003623916
4283  ENSG00000160305       ENST00000466639 ENSE00003546483
4284  ENSG00000160305       ENST00000466639 ENSE00003535268
4285  ENSG00000160305       ENST00000466639 ENSE00003474907
4286  ENSG00000160305       ENST00000466639 ENSE00003641160
4287  ENSG00000160305       ENST00000466639 ENSE00003562990
4288  ENSG00000160305       ENST00000466639 ENSE00003480214
4289  ENSG00000160305       ENST00000466639 ENSE00002254995
4290  ENSG00000160305       ENST00000466639 ENSE00003558519
4291  ENSG00000160305       ENST00000435722 ENSE00002347315
4292  ENSG00000160305       ENST00000435722 ENSE00002324363
4293  ENSG00000160305       ENST00000435722 ENSE00002319629
4294  ENSG00000160305       ENST00000435722 ENSE00002218277
4295  ENSG00000160305       ENST00000435722 ENSE00002276427
4296  ENSG00000160305       ENST00000435722 ENSE00003471299
4297  ENSG00000160305       ENST00000435722 ENSE00003546587
4298  ENSG00000160305       ENST00000435722 ENSE00003683586
4299  ENSG00000160305       ENST00000435722 ENSE00003494381
4300  ENSG00000160305       ENST00000435722 ENSE00003672705
4301  ENSG00000160305       ENST00000435722 ENSE00003533110
4302  ENSG00000160305       ENST00000435722 ENSE00003466019
4303  ENSG00000160305       ENST00000435722 ENSE00003623916
4304  ENSG00000160305       ENST00000435722 ENSE00003546483
4305  ENSG00000160305       ENST00000435722 ENSE00003535268
4306  ENSG00000160305       ENST00000435722 ENSE00003474907
4307  ENSG00000160305       ENST00000435722 ENSE00003641160
4308  ENSG00000160305       ENST00000435722 ENSE00003562990
4309  ENSG00000160305       ENST00000435722 ENSE00003480214
4310  ENSG00000160305       ENST00000435722 ENSE00003558519
4311  ENSG00000160305       ENST00000435722 ENSE00001831129
4312  ENSG00000160305       ENST00000417564 ENSE00002347315
4313  ENSG00000160305       ENST00000417564 ENSE00002324363
4314  ENSG00000160305       ENST00000417564 ENSE00002319629
4315  ENSG00000160305       ENST00000417564 ENSE00002218277
4316  ENSG00000160305       ENST00000417564 ENSE00002276427
4317  ENSG00000160305       ENST00000417564 ENSE00003471299
4318  ENSG00000160305       ENST00000417564 ENSE00003546587
4319  ENSG00000160305       ENST00000417564 ENSE00003683586
4320  ENSG00000160305       ENST00000417564 ENSE00003494381
4321  ENSG00000160305       ENST00000417564 ENSE00003672705
4322  ENSG00000160305       ENST00000417564 ENSE00003533110
4323  ENSG00000160305       ENST00000417564 ENSE00003466019
4324  ENSG00000160305       ENST00000417564 ENSE00003623916
4325  ENSG00000160305       ENST00000417564 ENSE00003546483
4326  ENSG00000160305       ENST00000417564 ENSE00003535268
4327  ENSG00000160305       ENST00000417564 ENSE00003474907
4328  ENSG00000160305       ENST00000417564 ENSE00003641160
4329  ENSG00000160305       ENST00000417564 ENSE00003562990
4330  ENSG00000160305       ENST00000417564 ENSE00002685752
4331  ENSG00000160305       ENST00000417564 ENSE00002444500
4332  ENSG00000160305       ENST00000417564 ENSE00002499829
4333  ENSG00000160305       ENST00000417564 ENSE00002476417
4334  ENSG00000160305       ENST00000417564 ENSE00002513022
4335  ENSG00000160305       ENST00000417564 ENSE00002533498
4336  ENSG00000160305       ENST00000417564 ENSE00003662615
4337  ENSG00000160305       ENST00000417564 ENSE00003590044
4338  ENSG00000160305       ENST00000417564 ENSE00003495758
4339  ENSG00000160305       ENST00000417564 ENSE00003559256
4340  ENSG00000160305       ENST00000417564 ENSE00003545429
4341  ENSG00000160305       ENST00000417564 ENSE00002444706
4342  ENSG00000160305       ENST00000417564 ENSE00002517274
4343  ENSG00000160305       ENST00000417564 ENSE00002499891
4344  ENSG00000160305       ENST00000417564 ENSE00003560718
4345  ENSG00000160305       ENST00000417564 ENSE00003514252
4346  ENSG00000160305       ENST00000417564 ENSE00003516999
4347  ENSG00000160305       ENST00000417564 ENSE00003480214
4348  ENSG00000160305       ENST00000417564 ENSE00002096758
4349  ENSG00000160305       ENST00000417564 ENSE00002109859
4350  ENSG00000160305       ENST00000473752 ENSE00001893033
4351  ENSG00000160305       ENST00000473752 ENSE00003624236
4352  ENSG00000160305       ENST00000473752 ENSE00003609621
4353  ENSG00000160305       ENST00000473752 ENSE00003658351
4354  ENSG00000160305       ENST00000473752 ENSE00003548383
4355  ENSG00000160305       ENST00000473752 ENSE00003466194
4356  ENSG00000160305       ENST00000473752 ENSE00003560854
4357  ENSG00000160305       ENST00000473752 ENSE00003532045
4358  ENSG00000160305       ENST00000473752 ENSE00003548730
4359  ENSG00000160305       ENST00000473752 ENSE00003682634
4360  ENSG00000160305       ENST00000473752 ENSE00003477663
4361  ENSG00000160305       ENST00000473752 ENSE00003491118
4362  ENSG00000160305       ENST00000473752 ENSE00003531194
4363  ENSG00000160305       ENST00000473752 ENSE00001845804
4364  ENSG00000160305       ENST00000494435 ENSE00003624236
4365  ENSG00000160305       ENST00000494435 ENSE00003609621
4366  ENSG00000160305       ENST00000494435 ENSE00003658351
4367  ENSG00000160305       ENST00000494435 ENSE00003548383
4368  ENSG00000160305       ENST00000494435 ENSE00003466194
4369  ENSG00000160305       ENST00000494435 ENSE00003560854
4370  ENSG00000160305       ENST00000494435 ENSE00003532045
4371  ENSG00000160305       ENST00000494435 ENSE00003548730
4372  ENSG00000160305       ENST00000494435 ENSE00003682634
4373  ENSG00000160305       ENST00000494435 ENSE00003477663
4374  ENSG00000160305       ENST00000494435 ENSE00003491118
4375  ENSG00000160305       ENST00000494435 ENSE00003531194
4376  ENSG00000160305       ENST00000494435 ENSE00001832505
4377  ENSG00000160305       ENST00000494435 ENSE00003631174
4378  ENSG00000160305       ENST00000494435 ENSE00001943172
4379  ENSG00000160305       ENST00000480553 ENSE00003531194
4380  ENSG00000160305       ENST00000480553 ENSE00003631174
4381  ENSG00000160305       ENST00000480553 ENSE00001819473
4382  ENSG00000160305       ENST00000480553 ENSE00003563295
4383  ENSG00000160305       ENST00000480553 ENSE00003468850
4384  ENSG00000160305       ENST00000472364 ENSE00001940869
4385  ENSG00000160305       ENST00000472364 ENSE00003614249
4386  ENSG00000160305       ENST00000472364 ENSE00003628901
4387  ENSG00000160305       ENST00000472364 ENSE00003633613
4388  ENSG00000160305       ENST00000472364 ENSE00003646220
4389  ENSG00000160305       ENST00000472364 ENSE00003482678
4390  ENSG00000160305       ENST00000472364 ENSE00001863731
4391  ENSG00000160305       ENST00000481883 ENSE00001916374
4392  ENSG00000160305       ENST00000481883 ENSE00001912450
4393  ENSG00000160305       ENST00000478105 ENSE00001814111
4394  ENSG00000160305       ENST00000478105 ENSE00003639290
4395  ENSG00000160305       ENST00000478105 ENSE00003479836
4396  ENSG00000160305       ENST00000478105 ENSE00003657555
4397  ENSG00000160305       ENST00000478105 ENSE00003504998
4398  ENSG00000160305       ENST00000479654 ENSE00003479836
4399  ENSG00000160305       ENST00000479654 ENSE00003657555
4400  ENSG00000160305       ENST00000479654 ENSE00003504998
4401  ENSG00000160305       ENST00000479654 ENSE00001864214
4402  ENSG00000223692       ENST00000442434 ENSE00001740202
4403  ENSG00000223692       ENST00000442434 ENSE00001790677
4404  ENSG00000223692       ENST00000442434 ENSE00001765964
4405  ENSG00000223692       ENST00000442434 ENSE00001681675
4406  ENSG00000177692       ENST00000381947 ENSE00001490359
4407  ENSG00000177692       ENST00000381947 ENSE00001813387
4408  ENSG00000177692       ENST00000314399 ENSE00001233405
4409  ENSG00000177692       ENST00000314399 ENSE00001865045
4410  ENSG00000177692       ENST00000402202 ENSE00001549167
4411  ENSG00000177692       ENST00000402202 ENSE00001550965
4412  ENSG00000177692       ENST00000617313 ENSE00001233405
4413  ENSG00000177692       ENST00000617313 ENSE00003743965
4414  ENSG00000177692       ENST00000617313 ENSE00003746440
4415  ENSG00000142182       ENST00000436357 ENSE00001687519
4416  ENSG00000142182       ENST00000436357 ENSE00003790618
4417  ENSG00000142182       ENST00000436357 ENSE00000952766
4418  ENSG00000142182       ENST00000436357 ENSE00001678574
4419  ENSG00000142182       ENST00000270172 ENSE00003790618
4420  ENSG00000142182       ENST00000270172 ENSE00000952766
4421  ENSG00000142182       ENST00000270172 ENSE00001371054
4422  ENSG00000142182       ENST00000270172 ENSE00000952757
4423  ENSG00000142182       ENST00000270172 ENSE00000952758
4424  ENSG00000142182       ENST00000270172 ENSE00000952759
4425  ENSG00000142182       ENST00000270172 ENSE00000952760
4426  ENSG00000142182       ENST00000270172 ENSE00001286863
4427  ENSG00000142182       ENST00000270172 ENSE00001297260
4428  ENSG00000142182       ENST00000270172 ENSE00001311957
4429  ENSG00000142182       ENST00000270172 ENSE00001291091
4430  ENSG00000142182       ENST00000270172 ENSE00000952767
4431  ENSG00000142182       ENST00000628202 ENSE00003790618
4432  ENSG00000142182       ENST00000628202 ENSE00000952766
4433  ENSG00000142182       ENST00000628202 ENSE00000952757
4434  ENSG00000142182       ENST00000628202 ENSE00000952758
4435  ENSG00000142182       ENST00000628202 ENSE00000952759
4436  ENSG00000142182       ENST00000628202 ENSE00000952760
4437  ENSG00000142182       ENST00000628202 ENSE00001286863
4438  ENSG00000142182       ENST00000628202 ENSE00001297260
4439  ENSG00000142182       ENST00000628202 ENSE00001311957
4440  ENSG00000142182       ENST00000628202 ENSE00001291091
4441  ENSG00000142182       ENST00000628202 ENSE00003768543
4442  ENSG00000142182       ENST00000628202 ENSE00003767744
4443  ENSG00000142182       ENST00000431166 ENSE00003790618
4444  ENSG00000142182       ENST00000431166 ENSE00000952757
4445  ENSG00000142182       ENST00000431166 ENSE00000952759
4446  ENSG00000142182       ENST00000431166 ENSE00000952760
4447  ENSG00000142182       ENST00000431166 ENSE00001286863
4448  ENSG00000142182       ENST00000431166 ENSE00001297260
4449  ENSG00000142182       ENST00000431166 ENSE00001311957
4450  ENSG00000142182       ENST00000431166 ENSE00001291091
4451  ENSG00000142182       ENST00000431166 ENSE00001754418
4452  ENSG00000159147       ENST00000439593 ENSE00001675773
4453  ENSG00000159147       ENST00000439593 ENSE00001786948
4454  ENSG00000159147       ENST00000439593 ENSE00001728787
4455  ENSG00000159147       ENST00000439593 ENSE00001651561
4456  ENSG00000159147       ENST00000303113 ENSE00001422868
4457  ENSG00000159147       ENST00000303113 ENSE00001237873
4458  ENSG00000159147       ENST00000303113 ENSE00003539477
4459  ENSG00000159147       ENST00000303113 ENSE00001489382
4460  ENSG00000159147       ENST00000303113 ENSE00003588206
4461  ENSG00000159147       ENST00000303113 ENSE00003561968
4462  ENSG00000159147       ENST00000303113 ENSE00003571961
4463  ENSG00000159147       ENST00000303113 ENSE00003597599
4464  ENSG00000159147       ENST00000303113 ENSE00003660298
4465  ENSG00000159147       ENST00000303113 ENSE00001489351
4466  ENSG00000159147       ENST00000303113 ENSE00001489349
4467  ENSG00000159147       ENST00000453626 ENSE00001237873
4468  ENSG00000159147       ENST00000453626 ENSE00003539477
4469  ENSG00000159147       ENST00000453626 ENSE00003588206
4470  ENSG00000159147       ENST00000453626 ENSE00003561968
4471  ENSG00000159147       ENST00000453626 ENSE00003571961
4472  ENSG00000159147       ENST00000453626 ENSE00003597599
4473  ENSG00000159147       ENST00000453626 ENSE00001592067
4474  ENSG00000159147       ENST00000453626 ENSE00003563368
4475  ENSG00000159147       ENST00000453626 ENSE00001646634
4476  ENSG00000159147       ENST00000453626 ENSE00001747838
4477  ENSG00000159147       ENST00000457359 ENSE00001237873
4478  ENSG00000159147       ENST00000457359 ENSE00003539477
4479  ENSG00000159147       ENST00000457359 ENSE00001592067
4480  ENSG00000159147       ENST00000457359 ENSE00003626477
4481  ENSG00000159147       ENST00000457359 ENSE00003539393
4482  ENSG00000159147       ENST00000457359 ENSE00003548859
4483  ENSG00000159147       ENST00000457359 ENSE00003656557
4484  ENSG00000159147       ENST00000457359 ENSE00003610877
4485  ENSG00000159147       ENST00000457359 ENSE00001713755
4486  ENSG00000159147       ENST00000303071 ENSE00001237873
4487  ENSG00000159147       ENST00000303071 ENSE00003539477
4488  ENSG00000159147       ENST00000303071 ENSE00003588206
4489  ENSG00000159147       ENST00000303071 ENSE00003561968
4490  ENSG00000159147       ENST00000303071 ENSE00003571961
4491  ENSG00000159147       ENST00000303071 ENSE00003597599
4492  ENSG00000159147       ENST00000303071 ENSE00003660298
4493  ENSG00000159147       ENST00000303071 ENSE00003563368
4494  ENSG00000159147       ENST00000303071 ENSE00001363177
4495  ENSG00000159147       ENST00000303071 ENSE00001363113
4496  ENSG00000159147       ENST00000417871 ENSE00001422868
4497  ENSG00000159147       ENST00000417871 ENSE00001237873
4498  ENSG00000159147       ENST00000417871 ENSE00003539393
4499  ENSG00000159147       ENST00000417871 ENSE00003548859
4500  ENSG00000159147       ENST00000417871 ENSE00003656557
4501  ENSG00000159147       ENST00000417871 ENSE00003610877
4502  ENSG00000159147       ENST00000417871 ENSE00001696559
4503  ENSG00000159147       ENST00000417871 ENSE00003558274
4504  ENSG00000159147       ENST00000417871 ENSE00001736545
4505  ENSG00000159147       ENST00000460557 ENSE00001928466
4506  ENSG00000159147       ENST00000460557 ENSE00001910947
4507  ENSG00000159147       ENST00000444517 ENSE00001237873
4508  ENSG00000159147       ENST00000444517 ENSE00003539477
4509  ENSG00000159147       ENST00000444517 ENSE00003563368
4510  ENSG00000159147       ENST00000444517 ENSE00003532468
4511  ENSG00000159147       ENST00000444517 ENSE00001664485
4512  ENSG00000159147       ENST00000442660 ENSE00001237873
4513  ENSG00000159147       ENST00000442660 ENSE00003539477
4514  ENSG00000159147       ENST00000442660 ENSE00003563368
4515  ENSG00000159147       ENST00000442660 ENSE00003548859
4516  ENSG00000159147       ENST00000442660 ENSE00003656557
4517  ENSG00000159147       ENST00000442660 ENSE00003610877
4518  ENSG00000159147       ENST00000442660 ENSE00001664485
4519  ENSG00000159147       ENST00000442660 ENSE00003467816
4520  ENSG00000159147       ENST00000437395 ENSE00003539477
4521  ENSG00000159147       ENST00000437395 ENSE00003588206
4522  ENSG00000159147       ENST00000437395 ENSE00003561968
4523  ENSG00000159147       ENST00000437395 ENSE00003571961
4524  ENSG00000159147       ENST00000437395 ENSE00003597599
4525  ENSG00000159147       ENST00000437395 ENSE00003660298
4526  ENSG00000159147       ENST00000437395 ENSE00003563368
4527  ENSG00000159147       ENST00000437395 ENSE00001703448
4528  ENSG00000159147       ENST00000437395 ENSE00001775066
4529  ENSG00000159147       ENST00000432378 ENSE00001237873
4530  ENSG00000159147       ENST00000432378 ENSE00003539477
4531  ENSG00000159147       ENST00000432378 ENSE00003588206
4532  ENSG00000159147       ENST00000432378 ENSE00003561968
4533  ENSG00000159147       ENST00000432378 ENSE00003571961
4534  ENSG00000159147       ENST00000432378 ENSE00003597599
4535  ENSG00000159147       ENST00000432378 ENSE00003563368
4536  ENSG00000159147       ENST00000432378 ENSE00001787922
4537  ENSG00000159147       ENST00000432378 ENSE00001751333
4538  ENSG00000159147       ENST00000440810 ENSE00003571961
4539  ENSG00000159147       ENST00000440810 ENSE00003597599
4540  ENSG00000159147       ENST00000440810 ENSE00003563368
4541  ENSG00000159147       ENST00000440810 ENSE00001608266
4542  ENSG00000159147       ENST00000440810 ENSE00001618006
4543  ENSG00000159147       ENST00000462566 ENSE00001863437
4544  ENSG00000159147       ENST00000462566 ENSE00001818548
4545  ENSG00000142197       ENST00000270190 ENSE00001709988
4546  ENSG00000142197       ENST00000270190 ENSE00001044194
4547  ENSG00000142197       ENST00000270190 ENSE00001044279
4548  ENSG00000142197       ENST00000270190 ENSE00001599264
4549  ENSG00000142197       ENST00000399151 ENSE00001044194
4550  ENSG00000142197       ENST00000399151 ENSE00001044279
4551  ENSG00000142197       ENST00000399151 ENSE00001536697
4552  ENSG00000142197       ENST00000399151 ENSE00001044238
4553  ENSG00000142197       ENST00000399151 ENSE00003641468
4554  ENSG00000142197       ENST00000399151 ENSE00003500617
4555  ENSG00000142197       ENST00000399151 ENSE00001044233
4556  ENSG00000142197       ENST00000399151 ENSE00001044212
4557  ENSG00000142197       ENST00000399151 ENSE00001044187
4558  ENSG00000142197       ENST00000399151 ENSE00000952867
4559  ENSG00000142197       ENST00000399151 ENSE00000952868
4560  ENSG00000142197       ENST00000399151 ENSE00000952869
4561  ENSG00000142197       ENST00000399151 ENSE00000952870
4562  ENSG00000142197       ENST00000399151 ENSE00000952871
4563  ENSG00000142197       ENST00000399151 ENSE00000952872
4564  ENSG00000142197       ENST00000399151 ENSE00000952873
4565  ENSG00000142197       ENST00000399151 ENSE00000952874
4566  ENSG00000142197       ENST00000399151 ENSE00000952875
4567  ENSG00000142197       ENST00000399151 ENSE00001044199
4568  ENSG00000142197       ENST00000399151 ENSE00003664197
4569  ENSG00000142197       ENST00000399151 ENSE00003504893
4570  ENSG00000142197       ENST00000399151 ENSE00003649664
4571  ENSG00000142197       ENST00000399151 ENSE00003464096
4572  ENSG00000142197       ENST00000399151 ENSE00001044228
4573  ENSG00000142197       ENST00000399151 ENSE00001044202
4574  ENSG00000142197       ENST00000399151 ENSE00001044179
4575  ENSG00000142197       ENST00000399151 ENSE00001238145
4576  ENSG00000142197       ENST00000399151 ENSE00001044224
4577  ENSG00000142197       ENST00000399151 ENSE00001044263
4578  ENSG00000142197       ENST00000399151 ENSE00001044258
4579  ENSG00000142197       ENST00000399151 ENSE00001044208
4580  ENSG00000142197       ENST00000399151 ENSE00001044198
4581  ENSG00000142197       ENST00000399151 ENSE00001044241
4582  ENSG00000142197       ENST00000399151 ENSE00001044254
4583  ENSG00000142197       ENST00000399151 ENSE00001044242
4584  ENSG00000142197       ENST00000399151 ENSE00001044260
4585  ENSG00000142197       ENST00000399151 ENSE00001238304
4586  ENSG00000142197       ENST00000492760 ENSE00001935111
4587  ENSG00000142197       ENST00000492760 ENSE00003535798
4588  ENSG00000142197       ENST00000492760 ENSE00003617926
4589  ENSG00000142197       ENST00000492760 ENSE00001862064
4590  ENSG00000142197       ENST00000463668 ENSE00001819883
4591  ENSG00000142197       ENST00000463668 ENSE00003645318
4592  ENSG00000142197       ENST00000463668 ENSE00003580486
4593  ENSG00000142197       ENST00000463668 ENSE00003476245
4594  ENSG00000142197       ENST00000463668 ENSE00003570770
4595  ENSG00000142197       ENST00000463668 ENSE00001954890
4596  ENSG00000270652       ENST00000604662 ENSE00003520648
4597  ENSG00000270652       ENST00000604662 ENSE00003648700
4598  ENSG00000171587       ENST00000617870 ENSE00001174815
4599  ENSG00000171587       ENST00000617870 ENSE00001174811
4600  ENSG00000171587       ENST00000617870 ENSE00001174805
4601  ENSG00000171587       ENST00000617870 ENSE00001174802
4602  ENSG00000171587       ENST00000617870 ENSE00001303370
4603  ENSG00000171587       ENST00000617870 ENSE00001297675
4604  ENSG00000171587       ENST00000617870 ENSE00001299928
4605  ENSG00000171587       ENST00000617870 ENSE00001330905
4606  ENSG00000171587       ENST00000617870 ENSE00001301906
4607  ENSG00000171587       ENST00000617870 ENSE00001296378
4608  ENSG00000171587       ENST00000617870 ENSE00001318915
4609  ENSG00000171587       ENST00000617870 ENSE00001325865
4610  ENSG00000171587       ENST00000617870 ENSE00001305503
4611  ENSG00000171587       ENST00000617870 ENSE00001327150
4612  ENSG00000171587       ENST00000617870 ENSE00001306377
4613  ENSG00000171587       ENST00000617870 ENSE00001203423
4614  ENSG00000171587       ENST00000617870 ENSE00001175262
4615  ENSG00000171587       ENST00000617870 ENSE00001175254
4616  ENSG00000171587       ENST00000617870 ENSE00001175248
4617  ENSG00000171587       ENST00000617870 ENSE00001175244
4618  ENSG00000171587       ENST00000617870 ENSE00001175237
4619  ENSG00000171587       ENST00000617870 ENSE00001203412
4620  ENSG00000171587       ENST00000617870 ENSE00001290929
4621  ENSG00000171587       ENST00000617870 ENSE00002519798
4622  ENSG00000171587       ENST00000617870 ENSE00001301674
4623  ENSG00000171587       ENST00000617870 ENSE00001290276
4624  ENSG00000171587       ENST00000617870 ENSE00001317868
4625  ENSG00000171587       ENST00000617870 ENSE00001322604
4626  ENSG00000171587       ENST00000617870 ENSE00003731461
4627  ENSG00000171587       ENST00000617870 ENSE00003745904
4628  ENSG00000171587       ENST00000400454 ENSE00001543050
4629  ENSG00000171587       ENST00000400454 ENSE00001543045
4630  ENSG00000171587       ENST00000400454 ENSE00001300225
4631  ENSG00000171587       ENST00000400454 ENSE00001138378
4632  ENSG00000171587       ENST00000400454 ENSE00001174815
4633  ENSG00000171587       ENST00000400454 ENSE00001174811
4634  ENSG00000171587       ENST00000400454 ENSE00001174805
4635  ENSG00000171587       ENST00000400454 ENSE00001174802
4636  ENSG00000171587       ENST00000400454 ENSE00001303370
4637  ENSG00000171587       ENST00000400454 ENSE00001297675
4638  ENSG00000171587       ENST00000400454 ENSE00001299928
4639  ENSG00000171587       ENST00000400454 ENSE00001330905
4640  ENSG00000171587       ENST00000400454 ENSE00001301906
4641  ENSG00000171587       ENST00000400454 ENSE00001296378
4642  ENSG00000171587       ENST00000400454 ENSE00001318915
4643  ENSG00000171587       ENST00000400454 ENSE00001325865
4644  ENSG00000171587       ENST00000400454 ENSE00001305503
4645  ENSG00000171587       ENST00000400454 ENSE00001327150
4646  ENSG00000171587       ENST00000400454 ENSE00001306377
4647  ENSG00000171587       ENST00000400454 ENSE00001203423
4648  ENSG00000171587       ENST00000400454 ENSE00001175262
4649  ENSG00000171587       ENST00000400454 ENSE00001175254
4650  ENSG00000171587       ENST00000400454 ENSE00001175248
4651  ENSG00000171587       ENST00000400454 ENSE00001175244
4652  ENSG00000171587       ENST00000400454 ENSE00001175237
4653  ENSG00000171587       ENST00000400454 ENSE00001203412
4654  ENSG00000171587       ENST00000400454 ENSE00001290929
4655  ENSG00000171587       ENST00000400454 ENSE00002519798
4656  ENSG00000171587       ENST00000400454 ENSE00001301674
4657  ENSG00000171587       ENST00000400454 ENSE00001290276
4658  ENSG00000171587       ENST00000400454 ENSE00001317868
4659  ENSG00000171587       ENST00000400454 ENSE00001322604
4660  ENSG00000171587       ENST00000400454 ENSE00001542956
4661  ENSG00000171587       ENST00000404019 ENSE00001174811
4662  ENSG00000171587       ENST00000404019 ENSE00001174805
4663  ENSG00000171587       ENST00000404019 ENSE00001174802
4664  ENSG00000171587       ENST00000404019 ENSE00001303370
4665  ENSG00000171587       ENST00000404019 ENSE00001297675
4666  ENSG00000171587       ENST00000404019 ENSE00001299928
4667  ENSG00000171587       ENST00000404019 ENSE00001330905
4668  ENSG00000171587       ENST00000404019 ENSE00001301906
4669  ENSG00000171587       ENST00000404019 ENSE00001296378
4670  ENSG00000171587       ENST00000404019 ENSE00001318915
4671  ENSG00000171587       ENST00000404019 ENSE00001325865
4672  ENSG00000171587       ENST00000404019 ENSE00001305503
4673  ENSG00000171587       ENST00000404019 ENSE00001327150
4674  ENSG00000171587       ENST00000404019 ENSE00001306377
4675  ENSG00000171587       ENST00000404019 ENSE00001203423
4676  ENSG00000171587       ENST00000404019 ENSE00001175262
4677  ENSG00000171587       ENST00000404019 ENSE00001175254
4678  ENSG00000171587       ENST00000404019 ENSE00001175248
4679  ENSG00000171587       ENST00000404019 ENSE00001175244
4680  ENSG00000171587       ENST00000404019 ENSE00001175237
4681  ENSG00000171587       ENST00000404019 ENSE00001203412
4682  ENSG00000171587       ENST00000404019 ENSE00001290929
4683  ENSG00000171587       ENST00000404019 ENSE00002519798
4684  ENSG00000171587       ENST00000404019 ENSE00001301674
4685  ENSG00000171587       ENST00000404019 ENSE00001290276
4686  ENSG00000171587       ENST00000404019 ENSE00001317868
4687  ENSG00000171587       ENST00000404019 ENSE00001322604
4688  ENSG00000171587       ENST00000404019 ENSE00001712962
4689  ENSG00000171587       ENST00000404019 ENSE00001549129
4690  ENSG00000235123       ENST00000444046 ENSE00001615334
4691  ENSG00000235123       ENST00000444046 ENSE00001795643
4692  ENSG00000235123       ENST00000455354 ENSE00001795643
4693  ENSG00000235123       ENST00000455354 ENSE00001661261
4694  ENSG00000235123       ENST00000422749 ENSE00001795643
4695  ENSG00000235123       ENST00000422749 ENSE00001684754
4696  ENSG00000235123       ENST00000422749 ENSE00001602383
4697  ENSG00000235123       ENST00000427451 ENSE00001615334
4698  ENSG00000235123       ENST00000427451 ENSE00001666308
4699  ENSG00000235123       ENST00000427451 ENSE00001795643
4700  ENSG00000233756       ENST00000440363 ENSE00001764323
4701  ENSG00000233756       ENST00000440363 ENSE00001636286
4702  ENSG00000233756       ENST00000440363 ENSE00001753303
4703  ENSG00000233756       ENST00000440363 ENSE00001687067
4704  ENSG00000233756       ENST00000441910 ENSE00001764323
4705  ENSG00000233756       ENST00000441910 ENSE00001636286
4706  ENSG00000233756       ENST00000441910 ENSE00001753303
4707  ENSG00000233756       ENST00000441910 ENSE00001644795
4708  ENSG00000233316       ENST00000432141 ENSE00001675372
4709  ENSG00000233316       ENST00000432141 ENSE00001748556
4710  ENSG00000233316       ENST00000432141 ENSE00001599007
4711  ENSG00000157538       ENST00000497493 ENSE00001863158
4712  ENSG00000157538       ENST00000497493 ENSE00001838101
4713  ENSG00000157538       ENST00000309117 ENSE00001535907
4714  ENSG00000157538       ENST00000309117 ENSE00003523339
4715  ENSG00000157538       ENST00000309117 ENSE00003458727
4716  ENSG00000157538       ENST00000309117 ENSE00003520824
4717  ENSG00000157538       ENST00000309117 ENSE00003505095
4718  ENSG00000157538       ENST00000309117 ENSE00003615492
4719  ENSG00000157538       ENST00000309117 ENSE00003635629
4720  ENSG00000157538       ENST00000309117 ENSE00003490386
4721  ENSG00000157538       ENST00000399000 ENSE00001814007
4722  ENSG00000157538       ENST00000399000 ENSE00003679523
4723  ENSG00000157538       ENST00000399000 ENSE00003569704
4724  ENSG00000157538       ENST00000399000 ENSE00003609994
4725  ENSG00000157538       ENST00000399000 ENSE00001851352
4726  ENSG00000157538       ENST00000399000 ENSE00001825203
4727  ENSG00000157538       ENST00000399000 ENSE00001847806
4728  ENSG00000157538       ENST00000399000 ENSE00003690629
4729  ENSG00000157538       ENST00000399000 ENSE00003642305
4730  ENSG00000157538       ENST00000399000 ENSE00003619075
4731  ENSG00000157538       ENST00000399001 ENSE00003505095
4732  ENSG00000157538       ENST00000399001 ENSE00003615492
4733  ENSG00000157538       ENST00000399001 ENSE00003635629
4734  ENSG00000157538       ENST00000399001 ENSE00001535918
4735  ENSG00000157538       ENST00000399001 ENSE00001535917
4736  ENSG00000157538       ENST00000476950 ENSE00003523339
4737  ENSG00000157538       ENST00000476950 ENSE00003458727
4738  ENSG00000157538       ENST00000476950 ENSE00003505095
4739  ENSG00000157538       ENST00000476950 ENSE00003615492
4740  ENSG00000157538       ENST00000476950 ENSE00003635629
4741  ENSG00000157538       ENST00000476950 ENSE00001870537
4742  ENSG00000157538       ENST00000476950 ENSE00001930684
4743  ENSG00000157538       ENST00000488368 ENSE00003679523
4744  ENSG00000157538       ENST00000488368 ENSE00003569704
4745  ENSG00000157538       ENST00000488368 ENSE00003609994
4746  ENSG00000157538       ENST00000488368 ENSE00003690629
4747  ENSG00000157538       ENST00000488368 ENSE00003642305
4748  ENSG00000157538       ENST00000488368 ENSE00001879923
4749  ENSG00000157538       ENST00000488368 ENSE00001901807
4750  ENSG00000157538       ENST00000488368 ENSE00003590920
4751  ENSG00000157538       ENST00000488368 ENSE00001919170
4752  ENSG00000157538       ENST00000398998 ENSE00001535907
4753  ENSG00000157538       ENST00000398998 ENSE00003458727
4754  ENSG00000157538       ENST00000398998 ENSE00003520824
4755  ENSG00000157538       ENST00000398998 ENSE00003505095
4756  ENSG00000157538       ENST00000398998 ENSE00003615492
4757  ENSG00000157538       ENST00000398998 ENSE00003635629
4758  ENSG00000157538       ENST00000398998 ENSE00001535905
4759  ENSG00000157538       ENST00000495858 ENSE00003609994
4760  ENSG00000157538       ENST00000495858 ENSE00003590920
4761  ENSG00000157538       ENST00000495858 ENSE00001889967
4762  ENSG00000157538       ENST00000495858 ENSE00001952028
4763  ENSG00000157538       ENST00000480452 ENSE00003679523
4764  ENSG00000157538       ENST00000480452 ENSE00003569704
4765  ENSG00000157538       ENST00000480452 ENSE00001823421
4766  ENSG00000157538       ENST00000480452 ENSE00001922878
4767  ENSG00000157538       ENST00000475009 ENSE00003679523
4768  ENSG00000157538       ENST00000475009 ENSE00001948394
4769  ENSG00000157538       ENST00000475009 ENSE00001921742
4770  ENSG00000157538       ENST00000492514 ENSE00001903216
4771  ENSG00000157538       ENST00000492514 ENSE00001843513
4772  ENSG00000157538       ENST00000462467 ENSE00001837948
4773  ENSG00000157538       ENST00000462467 ENSE00001892436
4774  ENSG00000157538       ENST00000498789 ENSE00001892436
4775  ENSG00000157538       ENST00000498789 ENSE00001897034
4776  ENSG00000184029       ENST00000398948 ENSE00001327109
4777  ENSG00000184029       ENST00000398948 ENSE00001302780
4778  ENSG00000184029       ENST00000398948 ENSE00001535708
4779  ENSG00000184029       ENST00000398948 ENSE00001535707
4780  ENSG00000184029       ENST00000328264 ENSE00001302780
4781  ENSG00000184029       ENST00000328264 ENSE00001535700
4782  ENSG00000184029       ENST00000328264 ENSE00001329903
4783  ENSG00000184029       ENST00000482032 ENSE00001302780
4784  ENSG00000184029       ENST00000482032 ENSE00001894998
4785  ENSG00000184029       ENST00000482032 ENSE00001829380
4786  ENSG00000184029       ENST00000482032 ENSE00001879419
4787  ENSG00000184029       ENST00000482032 ENSE00001902539
4788  ENSG00000184029       ENST00000482032 ENSE00001920353
4789  ENSG00000223608       ENST00000417138 ENSE00001763784
4790  ENSG00000223608       ENST00000417138 ENSE00001610692
4791  ENSG00000198054       ENST00000478613 ENSE00001543100
4792  ENSG00000198054       ENST00000478613 ENSE00001823347
4793  ENSG00000198054       ENST00000478613 ENSE00003553519
4794  ENSG00000198054       ENST00000469658 ENSE00003553519
4795  ENSG00000198054       ENST00000469658 ENSE00001889291
4796  ENSG00000198054       ENST00000469658 ENSE00003487169
4797  ENSG00000198054       ENST00000400477 ENSE00001889291
4798  ENSG00000198054       ENST00000400477 ENSE00003629219
4799  ENSG00000198054       ENST00000400477 ENSE00003659379
4800  ENSG00000198054       ENST00000400477 ENSE00003490576
4801  ENSG00000198054       ENST00000495344 ENSE00003553519
4802  ENSG00000198054       ENST00000495344 ENSE00001889291
4803  ENSG00000198054       ENST00000495344 ENSE00001901680
4804  ENSG00000198054       ENST00000495344 ENSE00003623237
4805  ENSG00000198054       ENST00000465532 ENSE00001823347
4806  ENSG00000198054       ENST00000465532 ENSE00003553519
4807  ENSG00000198054       ENST00000465532 ENSE00001889291
4808  ENSG00000198054       ENST00000465532 ENSE00003623237
4809  ENSG00000198054       ENST00000357704 ENSE00001889291
4810  ENSG00000198054       ENST00000357704 ENSE00003629219
4811  ENSG00000198054       ENST00000357704 ENSE00003490576
4812  ENSG00000198054       ENST00000357704 ENSE00001403971
4813  ENSG00000198054       ENST00000472602 ENSE00001914207
4814  ENSG00000198054       ENST00000472602 ENSE00001853687
4815  ENSG00000198054       ENST00000472602 ENSE00001841247
4816  ENSG00000198054       ENST00000472602 ENSE00003623257
4817  ENSG00000198054       ENST00000472602 ENSE00001874392
4818  ENSG00000198054       ENST00000614538 ENSE00003490576
4819  ENSG00000198054       ENST00000614538 ENSE00001403971
4820  ENSG00000198054       ENST00000614538 ENSE00003737079
4821  ENSG00000230366       ENST00000581640 ENSE00001725341
4822  ENSG00000230366       ENST00000581640 ENSE00001775785
4823  ENSG00000230366       ENST00000581640 ENSE00002721013
4824  ENSG00000230366       ENST00000581640 ENSE00002730956
4825  ENSG00000230366       ENST00000581640 ENSE00002712199
4826  ENSG00000230366       ENST00000578829 ENSE00001725341
4827  ENSG00000230366       ENST00000578829 ENSE00001775785
4828  ENSG00000230366       ENST00000578829 ENSE00002693074
4829  ENSG00000230366       ENST00000578829 ENSE00002698248
4830  ENSG00000230366       ENST00000585273 ENSE00001725341
4831  ENSG00000230366       ENST00000585273 ENSE00001775785
4832  ENSG00000230366       ENST00000585273 ENSE00002730956
4833  ENSG00000230366       ENST00000585273 ENSE00002693074
4834  ENSG00000230366       ENST00000585273 ENSE00002723329
4835  ENSG00000230366       ENST00000584840 ENSE00001725341
4836  ENSG00000230366       ENST00000584840 ENSE00001775785
4837  ENSG00000230366       ENST00000584840 ENSE00002730956
4838  ENSG00000230366       ENST00000584840 ENSE00002685409
4839  ENSG00000230366       ENST00000454482 ENSE00001725341
4840  ENSG00000230366       ENST00000454482 ENSE00001775785
4841  ENSG00000230366       ENST00000454482 ENSE00001786499
4842  ENSG00000230982       ENST00000419906 ENSE00001623663
4843  ENSG00000157540       ENST00000608928 ENSE00003711430
4844  ENSG00000157540       ENST00000608928 ENSE00003706399
4845  ENSG00000157540       ENST00000462274 ENSE00001850859
4846  ENSG00000157540       ENST00000462274 ENSE00003485669
4847  ENSG00000157540       ENST00000462274 ENSE00003551425
4848  ENSG00000157540       ENST00000462274 ENSE00003675684
4849  ENSG00000157540       ENST00000462274 ENSE00002490272
4850  ENSG00000157540       ENST00000338785 ENSE00001535758
4851  ENSG00000157540       ENST00000338785 ENSE00001535757
4852  ENSG00000157540       ENST00000338785 ENSE00001369433
4853  ENSG00000157540       ENST00000338785 ENSE00003504646
4854  ENSG00000157540       ENST00000338785 ENSE00001033279
4855  ENSG00000157540       ENST00000338785 ENSE00003584551
4856  ENSG00000157540       ENST00000338785 ENSE00001033299
4857  ENSG00000157540       ENST00000338785 ENSE00003636141
4858  ENSG00000157540       ENST00000338785 ENSE00001033275
4859  ENSG00000157540       ENST00000338785 ENSE00001033294
4860  ENSG00000157540       ENST00000338785 ENSE00001262033
4861  ENSG00000157540       ENST00000338785 ENSE00001535755
4862  ENSG00000157540       ENST00000338785 ENSE00001366089
4863  ENSG00000157540       ENST00000455097 ENSE00001369433
4864  ENSG00000157540       ENST00000455097 ENSE00001677823
4865  ENSG00000157540       ENST00000455097 ENSE00002371522
4866  ENSG00000157540       ENST00000455097 ENSE00001766104
4867  ENSG00000157540       ENST00000426672 ENSE00001369433
4868  ENSG00000157540       ENST00000426672 ENSE00003504646
4869  ENSG00000157540       ENST00000426672 ENSE00001033279
4870  ENSG00000157540       ENST00000426672 ENSE00001677823
4871  ENSG00000157540       ENST00000426672 ENSE00001803088
4872  ENSG00000157540       ENST00000339659 ENSE00003504646
4873  ENSG00000157540       ENST00000339659 ENSE00003584551
4874  ENSG00000157540       ENST00000339659 ENSE00001033299
4875  ENSG00000157540       ENST00000339659 ENSE00003636141
4876  ENSG00000157540       ENST00000339659 ENSE00001033275
4877  ENSG00000157540       ENST00000339659 ENSE00001033294
4878  ENSG00000157540       ENST00000339659 ENSE00001262033
4879  ENSG00000157540       ENST00000339659 ENSE00001311564
4880  ENSG00000157540       ENST00000339659 ENSE00003459385
4881  ENSG00000157540       ENST00000339659 ENSE00001033292
4882  ENSG00000157540       ENST00000339659 ENSE00001874589
4883  ENSG00000157540       ENST00000398960 ENSE00003504646
4884  ENSG00000157540       ENST00000398960 ENSE00001033279
4885  ENSG00000157540       ENST00000398960 ENSE00003584551
4886  ENSG00000157540       ENST00000398960 ENSE00001033299
4887  ENSG00000157540       ENST00000398960 ENSE00003636141
4888  ENSG00000157540       ENST00000398960 ENSE00001033275
4889  ENSG00000157540       ENST00000398960 ENSE00001033294
4890  ENSG00000157540       ENST00000398960 ENSE00001262033
4891  ENSG00000157540       ENST00000398960 ENSE00001033292
4892  ENSG00000157540       ENST00000398960 ENSE00001819841
4893  ENSG00000157540       ENST00000398960 ENSE00001828801
4894  ENSG00000157540       ENST00000498351 ENSE00001828382
4895  ENSG00000157540       ENST00000498351 ENSE00001867423
4896  ENSG00000157540       ENST00000498351 ENSE00001855557
4897  ENSG00000157540       ENST00000398956 ENSE00003504646
4898  ENSG00000157540       ENST00000398956 ENSE00001033279
4899  ENSG00000157540       ENST00000398956 ENSE00003584551
4900  ENSG00000157540       ENST00000398956 ENSE00001033299
4901  ENSG00000157540       ENST00000398956 ENSE00003636141
4902  ENSG00000157540       ENST00000398956 ENSE00001033275
4903  ENSG00000157540       ENST00000398956 ENSE00001033294
4904  ENSG00000157540       ENST00000398956 ENSE00001262033
4905  ENSG00000157540       ENST00000398956 ENSE00002526606
4906  ENSG00000157540       ENST00000398956 ENSE00001924399
4907  ENSG00000223822       ENST00000447052 ENSE00001546236
4908  ENSG00000275945       ENST00000613970 ENSE00003717335
4909  ENSG00000233300       ENST00000420241 ENSE00001518478
4910  ENSG00000157554       ENST00000398905 ENSE00001535525
4911  ENSG00000157554       ENST00000398905 ENSE00003712731
4912  ENSG00000157554       ENST00000398905 ENSE00003508916
4913  ENSG00000157554       ENST00000398905 ENSE00003536380
4914  ENSG00000157554       ENST00000398905 ENSE00003462848
4915  ENSG00000157554       ENST00000398905 ENSE00003491473
4916  ENSG00000157554       ENST00000398905 ENSE00003585332
4917  ENSG00000157554       ENST00000398905 ENSE00001033342
4918  ENSG00000157554       ENST00000398905 ENSE00001535545
4919  ENSG00000157554       ENST00000398907 ENSE00001535525
4920  ENSG00000157554       ENST00000398907 ENSE00003712731
4921  ENSG00000157554       ENST00000398907 ENSE00003508916
4922  ENSG00000157554       ENST00000398907 ENSE00003536380
4923  ENSG00000157554       ENST00000398907 ENSE00003462848
4924  ENSG00000157554       ENST00000398907 ENSE00003585332
4925  ENSG00000157554       ENST00000398907 ENSE00001033342
4926  ENSG00000157554       ENST00000398907 ENSE00001535545
4927  ENSG00000157554       ENST00000398907 ENSE00003486142
4928  ENSG00000157554       ENST00000288319 ENSE00003712731
4929  ENSG00000157554       ENST00000288319 ENSE00003508916
4930  ENSG00000157554       ENST00000288319 ENSE00003536380
4931  ENSG00000157554       ENST00000288319 ENSE00003462848
4932  ENSG00000157554       ENST00000288319 ENSE00003491473
4933  ENSG00000157554       ENST00000288319 ENSE00003585332
4934  ENSG00000157554       ENST00000288319 ENSE00001033342
4935  ENSG00000157554       ENST00000288319 ENSE00001535545
4936  ENSG00000157554       ENST00000288319 ENSE00003486142
4937  ENSG00000157554       ENST00000288319 ENSE00001931764
4938  ENSG00000157554       ENST00000398897 ENSE00003536380
4939  ENSG00000157554       ENST00000398897 ENSE00003462848
4940  ENSG00000157554       ENST00000398897 ENSE00003491473
4941  ENSG00000157554       ENST00000398897 ENSE00003585332
4942  ENSG00000157554       ENST00000398897 ENSE00001033342
4943  ENSG00000157554       ENST00000398897 ENSE00001535545
4944  ENSG00000157554       ENST00000398897 ENSE00001535492
4945  ENSG00000157554       ENST00000398897 ENSE00003579517
4946  ENSG00000157554       ENST00000398897 ENSE00003684785
4947  ENSG00000157554       ENST00000398911 ENSE00003712731
4948  ENSG00000157554       ENST00000398911 ENSE00003508916
4949  ENSG00000157554       ENST00000398911 ENSE00003536380
4950  ENSG00000157554       ENST00000398911 ENSE00003462848
4951  ENSG00000157554       ENST00000398911 ENSE00003491473
4952  ENSG00000157554       ENST00000398911 ENSE00003585332
4953  ENSG00000157554       ENST00000398911 ENSE00001033342
4954  ENSG00000157554       ENST00000398911 ENSE00001535545
4955  ENSG00000157554       ENST00000398911 ENSE00001418790
4956  ENSG00000157554       ENST00000398911 ENSE00003661463
4957  ENSG00000157554       ENST00000417133 ENSE00003712731
4958  ENSG00000157554       ENST00000417133 ENSE00003508916
4959  ENSG00000157554       ENST00000417133 ENSE00003536380
4960  ENSG00000157554       ENST00000417133 ENSE00003462848
4961  ENSG00000157554       ENST00000417133 ENSE00003491473
4962  ENSG00000157554       ENST00000417133 ENSE00003585332
4963  ENSG00000157554       ENST00000417133 ENSE00001033342
4964  ENSG00000157554       ENST00000417133 ENSE00001535545
4965  ENSG00000157554       ENST00000417133 ENSE00003486142
4966  ENSG00000157554       ENST00000417133 ENSE00001418790
4967  ENSG00000157554       ENST00000417133 ENSE00003661463
4968  ENSG00000157554       ENST00000417133 ENSE00001411978
4969  ENSG00000157554       ENST00000398910 ENSE00003712731
4970  ENSG00000157554       ENST00000398910 ENSE00003508916
4971  ENSG00000157554       ENST00000398910 ENSE00003536380
4972  ENSG00000157554       ENST00000398910 ENSE00003462848
4973  ENSG00000157554       ENST00000398910 ENSE00003585332
4974  ENSG00000157554       ENST00000398910 ENSE00001033342
4975  ENSG00000157554       ENST00000398910 ENSE00001535545
4976  ENSG00000157554       ENST00000398910 ENSE00003486142
4977  ENSG00000157554       ENST00000398910 ENSE00001418790
4978  ENSG00000157554       ENST00000398910 ENSE00003661463
4979  ENSG00000157554       ENST00000398910 ENSE00001411978
4980  ENSG00000157554       ENST00000453032 ENSE00003536380
4981  ENSG00000157554       ENST00000453032 ENSE00003462848
4982  ENSG00000157554       ENST00000453032 ENSE00003491473
4983  ENSG00000157554       ENST00000453032 ENSE00003585332
4984  ENSG00000157554       ENST00000453032 ENSE00001033342
4985  ENSG00000157554       ENST00000453032 ENSE00003486142
4986  ENSG00000157554       ENST00000453032 ENSE00003684785
4987  ENSG00000157554       ENST00000453032 ENSE00001858431
4988  ENSG00000157554       ENST00000453032 ENSE00002116271
4989  ENSG00000157554       ENST00000398919 ENSE00003712731
4990  ENSG00000157554       ENST00000398919 ENSE00003508916
4991  ENSG00000157554       ENST00000398919 ENSE00003536380
4992  ENSG00000157554       ENST00000398919 ENSE00003462848
4993  ENSG00000157554       ENST00000398919 ENSE00003491473
4994  ENSG00000157554       ENST00000398919 ENSE00003585332
4995  ENSG00000157554       ENST00000398919 ENSE00001033342
4996  ENSG00000157554       ENST00000398919 ENSE00003486142
4997  ENSG00000157554       ENST00000398919 ENSE00001418790
4998  ENSG00000157554       ENST00000398919 ENSE00003661463
4999  ENSG00000157554       ENST00000398919 ENSE00001768370
5000  ENSG00000157554       ENST00000398919 ENSE00001634143
5001  ENSG00000157554       ENST00000481609 ENSE00001917217
5002  ENSG00000157554       ENST00000481609 ENSE00001904038
5003  ENSG00000157554       ENST00000481609 ENSE00003511973
5004  ENSG00000157554       ENST00000481609 ENSE00003617231
5005  ENSG00000157554       ENST00000481609 ENSE00003625851
5006  ENSG00000157554       ENST00000481609 ENSE00003679569
5007  ENSG00000157554       ENST00000481609 ENSE00003664522
5008  ENSG00000157554       ENST00000481609 ENSE00003463074
5009  ENSG00000157554       ENST00000492833 ENSE00003511973
5010  ENSG00000157554       ENST00000492833 ENSE00003617231
5011  ENSG00000157554       ENST00000492833 ENSE00003625851
5012  ENSG00000157554       ENST00000492833 ENSE00003679569
5013  ENSG00000157554       ENST00000492833 ENSE00003607718
5014  ENSG00000157554       ENST00000492833 ENSE00001907734
5015  ENSG00000157554       ENST00000468474 ENSE00003579517
5016  ENSG00000157554       ENST00000468474 ENSE00001418790
5017  ENSG00000157554       ENST00000468474 ENSE00001411978
5018  ENSG00000157554       ENST00000468474 ENSE00003511973
5019  ENSG00000157554       ENST00000468474 ENSE00003617231
5020  ENSG00000157554       ENST00000468474 ENSE00003625851
5021  ENSG00000157554       ENST00000468474 ENSE00003679569
5022  ENSG00000157554       ENST00000468474 ENSE00001878367
5023  ENSG00000157554       ENST00000473107 ENSE00003511973
5024  ENSG00000157554       ENST00000473107 ENSE00003617231
5025  ENSG00000157554       ENST00000473107 ENSE00001901550
5026  ENSG00000157554       ENST00000473107 ENSE00001914919
5027  ENSG00000157554       ENST00000485493 ENSE00003579517
5028  ENSG00000157554       ENST00000485493 ENSE00001418790
5029  ENSG00000157554       ENST00000485493 ENSE00001411978
5030  ENSG00000157554       ENST00000485493 ENSE00001904038
5031  ENSG00000157554       ENST00000485493 ENSE00001924224
5032  ENSG00000157554       ENST00000442448 ENSE00003712731
5033  ENSG00000157554       ENST00000442448 ENSE00003508916
5034  ENSG00000157554       ENST00000442448 ENSE00003536380
5035  ENSG00000157554       ENST00000442448 ENSE00003462848
5036  ENSG00000157554       ENST00000442448 ENSE00003491473
5037  ENSG00000157554       ENST00000442448 ENSE00003585332
5038  ENSG00000157554       ENST00000442448 ENSE00001033342
5039  ENSG00000157554       ENST00000442448 ENSE00001418790
5040  ENSG00000157554       ENST00000442448 ENSE00003661463
5041  ENSG00000157554       ENST00000442448 ENSE00001601366
5042  ENSG00000157554       ENST00000442448 ENSE00001417176
5043  ENSG00000157554       ENST00000429727 ENSE00003508916
5044  ENSG00000157554       ENST00000429727 ENSE00003536380
5045  ENSG00000157554       ENST00000429727 ENSE00003462848
5046  ENSG00000157554       ENST00000429727 ENSE00003486142
5047  ENSG00000157554       ENST00000429727 ENSE00003579517
5048  ENSG00000157554       ENST00000429727 ENSE00001418790
5049  ENSG00000157554       ENST00000429727 ENSE00001601366
5050  ENSG00000157554       ENST00000429727 ENSE00003727479
5051  ENSG00000157554       ENST00000429727 ENSE00003726820
5052  ENSG00000240755       ENST00000433806 ENSE00001795618
5053  ENSG00000233056       ENST00000447535 ENSE00001619093
5054  ENSG00000233056       ENST00000447535 ENSE00001612295
5055  ENSG00000233056       ENST00000617971 ENSE00003740042
5056  ENSG00000157557       ENST00000360214 ENSE00001535416
5057  ENSG00000157557       ENST00000360214 ENSE00001535413
5058  ENSG00000157557       ENST00000360214 ENSE00001771688
5059  ENSG00000157557       ENST00000360214 ENSE00001033372
5060  ENSG00000157557       ENST00000360214 ENSE00001033374
5061  ENSG00000157557       ENST00000360214 ENSE00003791296
5062  ENSG00000157557       ENST00000360214 ENSE00001033363
5063  ENSG00000157557       ENST00000360214 ENSE00003788495
5064  ENSG00000157557       ENST00000360214 ENSE00001033362
5065  ENSG00000157557       ENST00000360214 ENSE00001302098
5066  ENSG00000157557       ENST00000360214 ENSE00001427195
5067  ENSG00000157557       ENST00000360938 ENSE00001771688
5068  ENSG00000157557       ENST00000360938 ENSE00001033372
5069  ENSG00000157557       ENST00000360938 ENSE00001033374
5070  ENSG00000157557       ENST00000360938 ENSE00003791296
5071  ENSG00000157557       ENST00000360938 ENSE00001033363
5072  ENSG00000157557       ENST00000360938 ENSE00003788495
5073  ENSG00000157557       ENST00000360938 ENSE00001033362
5074  ENSG00000157557       ENST00000360938 ENSE00001302098
5075  ENSG00000157557       ENST00000360938 ENSE00001427195
5076  ENSG00000157557       ENST00000360938 ENSE00001033370
5077  ENSG00000157557       ENST00000432278 ENSE00001771688
5078  ENSG00000157557       ENST00000432278 ENSE00001033372
5079  ENSG00000157557       ENST00000432278 ENSE00001033374
5080  ENSG00000157557       ENST00000432278 ENSE00003791296
5081  ENSG00000157557       ENST00000432278 ENSE00001762357
5082  ENSG00000157557       ENST00000432278 ENSE00001793284
5083  ENSG00000157557       ENST00000456966 ENSE00001771688
5084  ENSG00000157557       ENST00000456966 ENSE00001033372
5085  ENSG00000157557       ENST00000456966 ENSE00001033374
5086  ENSG00000157557       ENST00000456966 ENSE00003791296
5087  ENSG00000157557       ENST00000456966 ENSE00001033363
5088  ENSG00000157557       ENST00000456966 ENSE00003788495
5089  ENSG00000157557       ENST00000456966 ENSE00001650790
5090  ENSG00000166979       ENST00000469079 ENSE00001954046
5091  ENSG00000166979       ENST00000469079 ENSE00003506889
5092  ENSG00000166979       ENST00000469079 ENSE00003578865
5093  ENSG00000166979       ENST00000469079 ENSE00001887125
5094  ENSG00000166979       ENST00000459833 ENSE00003506889
5095  ENSG00000166979       ENST00000459833 ENSE00001932967
5096  ENSG00000166979       ENST00000459833 ENSE00003496455
5097  ENSG00000166979       ENST00000459833 ENSE00003548118
5098  ENSG00000166979       ENST00000459833 ENSE00001907656
5099  ENSG00000166979       ENST00000300255 ENSE00001840809
5100  ENSG00000166979       ENST00000300255 ENSE00003528501
5101  ENSG00000166979       ENST00000300255 ENSE00003593323
5102  ENSG00000166979       ENST00000300255 ENSE00003610773
5103  ENSG00000166979       ENST00000300255 ENSE00003640508
5104  ENSG00000166979       ENST00000300255 ENSE00003516969
5105  ENSG00000166979       ENST00000300255 ENSE00003488598
5106  ENSG00000166979       ENST00000300255 ENSE00003571881
5107  ENSG00000166979       ENST00000435323 ENSE00003496455
5108  ENSG00000166979       ENST00000435323 ENSE00001493039
5109  ENSG00000166979       ENST00000435323 ENSE00003651349
5110  ENSG00000166979       ENST00000435323 ENSE00003584501
5111  ENSG00000166979       ENST00000435323 ENSE00003477931
5112  ENSG00000166979       ENST00000435323 ENSE00003535755
5113  ENSG00000166979       ENST00000437338 ENSE00003496455
5114  ENSG00000166979       ENST00000437338 ENSE00003548118
5115  ENSG00000166979       ENST00000437338 ENSE00001493039
5116  ENSG00000166979       ENST00000437338 ENSE00003651349
5117  ENSG00000166979       ENST00000437338 ENSE00003584501
5118  ENSG00000166979       ENST00000437338 ENSE00003477931
5119  ENSG00000166979       ENST00000437338 ENSE00003535755
5120  ENSG00000166979       ENST00000457807 ENSE00003610773
5121  ENSG00000166979       ENST00000457807 ENSE00003640508
5122  ENSG00000166979       ENST00000457807 ENSE00003477931
5123  ENSG00000166979       ENST00000457807 ENSE00003535755
5124  ENSG00000166979       ENST00000457807 ENSE00001553789
5125  ENSG00000166979       ENST00000457807 ENSE00001789432
5126  ENSG00000166979       ENST00000401402 ENSE00003528501
5127  ENSG00000166979       ENST00000401402 ENSE00003593323
5128  ENSG00000166979       ENST00000401402 ENSE00003610773
5129  ENSG00000166979       ENST00000401402 ENSE00003516969
5130  ENSG00000166979       ENST00000401402 ENSE00003488598
5131  ENSG00000166979       ENST00000401402 ENSE00001944221
5132  ENSG00000166979       ENST00000401402 ENSE00001863083
5133  ENSG00000166979       ENST00000382699 ENSE00003528501
5134  ENSG00000166979       ENST00000382699 ENSE00003593323
5135  ENSG00000166979       ENST00000382699 ENSE00003610773
5136  ENSG00000166979       ENST00000382699 ENSE00003640508
5137  ENSG00000166979       ENST00000382699 ENSE00003488598
5138  ENSG00000166979       ENST00000382699 ENSE00003571881
5139  ENSG00000166979       ENST00000382699 ENSE00001901234
5140  ENSG00000166979       ENST00000382699 ENSE00001493037
5141  ENSG00000166979       ENST00000481638 ENSE00001816132
5142  ENSG00000166979       ENST00000481638 ENSE00001957162
5143  ENSG00000166979       ENST00000412833 ENSE00003593323
5144  ENSG00000166979       ENST00000412833 ENSE00003610773
5145  ENSG00000166979       ENST00000412833 ENSE00001736309
5146  ENSG00000166979       ENST00000412833 ENSE00003581613
5147  ENSG00000166979       ENST00000412833 ENSE00001702714
5148  ENSG00000166979       ENST00000464037 ENSE00003578865
5149  ENSG00000166979       ENST00000464037 ENSE00003496455
5150  ENSG00000166979       ENST00000464037 ENSE00003548118
5151  ENSG00000166979       ENST00000464037 ENSE00003584501
5152  ENSG00000166979       ENST00000464037 ENSE00003477931
5153  ENSG00000166979       ENST00000464037 ENSE00003535755
5154  ENSG00000166979       ENST00000464037 ENSE00001886268
5155  ENSG00000166979       ENST00000496615 ENSE00003548118
5156  ENSG00000166979       ENST00000496615 ENSE00003584501
5157  ENSG00000166979       ENST00000496615 ENSE00003477931
5158  ENSG00000166979       ENST00000496615 ENSE00001851200
5159  ENSG00000166979       ENST00000496615 ENSE00001928321
5160  ENSG00000166979       ENST00000485488 ENSE00003477931
5161  ENSG00000166979       ENST00000485488 ENSE00003535755
5162  ENSG00000166979       ENST00000485488 ENSE00001819450
5163  ENSG00000229007       ENST00000448649 ENSE00001713013
5164  ENSG00000231300       ENST00000431167 ENSE00001751341
5165  ENSG00000160256       ENST00000291634 ENSE00001878719
5166  ENSG00000160256       ENST00000291634 ENSE00001050957
5167  ENSG00000160256       ENST00000291634 ENSE00003668740
5168  ENSG00000160256       ENST00000291634 ENSE00003550369
5169  ENSG00000160256       ENST00000291634 ENSE00003504383
5170  ENSG00000160256       ENST00000291634 ENSE00001819747
5171  ENSG00000160256       ENST00000397826 ENSE00003668740
5172  ENSG00000160256       ENST00000397826 ENSE00003550369
5173  ENSG00000160256       ENST00000397826 ENSE00003504383
5174  ENSG00000160256       ENST00000397826 ENSE00001819747
5175  ENSG00000160256       ENST00000397826 ENSE00001942549
5176  ENSG00000160256       ENST00000397826 ENSE00001530388
5177  ENSG00000160256       ENST00000458015 ENSE00003668740
5178  ENSG00000160256       ENST00000458015 ENSE00003550369
5179  ENSG00000160256       ENST00000458015 ENSE00001530388
5180  ENSG00000160256       ENST00000458015 ENSE00001530392
5181  ENSG00000160256       ENST00000458015 ENSE00001618394
5182  ENSG00000160256       ENST00000479127 ENSE00001809547
5183  ENSG00000160256       ENST00000479127 ENSE00003541861
5184  ENSG00000160256       ENST00000479127 ENSE00003653566
5185  ENSG00000160256       ENST00000479127 ENSE00003630684
5186  ENSG00000160256       ENST00000479127 ENSE00001050954
5187  ENSG00000160256       ENST00000485207 ENSE00001050954
5188  ENSG00000160256       ENST00000485207 ENSE00001911440
5189  ENSG00000232797       ENST00000443486 ENSE00001782100
5190  ENSG00000183844       ENST00000479810 ENSE00002101425
5191  ENSG00000183844       ENST00000479810 ENSE00001950129
5192  ENSG00000183844       ENST00000479810 ENSE00003534003
5193  ENSG00000183844       ENST00000479810 ENSE00003506040
5194  ENSG00000183844       ENST00000479810 ENSE00003486755
5195  ENSG00000183844       ENST00000479810 ENSE00003664877
5196  ENSG00000183844       ENST00000479810 ENSE00001879922
5197  ENSG00000183844       ENST00000479810 ENSE00003664777
5198  ENSG00000183844       ENST00000479810 ENSE00003644982
5199  ENSG00000183844       ENST00000479810 ENSE00003488124
5200  ENSG00000183844       ENST00000518236 ENSE00003534003
5201  ENSG00000183844       ENST00000518236 ENSE00003506040
5202  ENSG00000183844       ENST00000518236 ENSE00003486755
5203  ENSG00000183844       ENST00000518236 ENSE00001890535
5204  ENSG00000183844       ENST00000518236 ENSE00002115910
5205  ENSG00000183844       ENST00000357985 ENSE00001416667
5206  ENSG00000183844       ENST00000357985 ENSE00003691429
5207  ENSG00000183844       ENST00000357985 ENSE00003569115
5208  ENSG00000183844       ENST00000357985 ENSE00003640536
5209  ENSG00000183844       ENST00000357985 ENSE00003578761
5210  ENSG00000183844       ENST00000357985 ENSE00003481681
5211  ENSG00000183844       ENST00000357985 ENSE00003669104
5212  ENSG00000183844       ENST00000357985 ENSE00003555613
5213  ENSG00000183844       ENST00000398652 ENSE00003691429
5214  ENSG00000183844       ENST00000398652 ENSE00003569115
5215  ENSG00000183844       ENST00000398652 ENSE00003640536
5216  ENSG00000183844       ENST00000398652 ENSE00003578761
5217  ENSG00000183844       ENST00000398652 ENSE00003481681
5218  ENSG00000183844       ENST00000398652 ENSE00003669104
5219  ENSG00000183844       ENST00000398652 ENSE00003555613
5220  ENSG00000183844       ENST00000398652 ENSE00001954950
5221  ENSG00000183844       ENST00000398652 ENSE00001311260
5222  ENSG00000183844       ENST00000398647 ENSE00003569115
5223  ENSG00000183844       ENST00000398647 ENSE00003640536
5224  ENSG00000183844       ENST00000398647 ENSE00003578761
5225  ENSG00000183844       ENST00000398647 ENSE00003481681
5226  ENSG00000183844       ENST00000398647 ENSE00003669104
5227  ENSG00000183844       ENST00000398647 ENSE00003555613
5228  ENSG00000183844       ENST00000398647 ENSE00001954950
5229  ENSG00000183844       ENST00000398646 ENSE00003569115
5230  ENSG00000183844       ENST00000398646 ENSE00003640536
5231  ENSG00000183844       ENST00000398646 ENSE00003578761
5232  ENSG00000183844       ENST00000398646 ENSE00003481681
5233  ENSG00000183844       ENST00000398646 ENSE00003669104
5234  ENSG00000183844       ENST00000398646 ENSE00003555613
5235  ENSG00000183844       ENST00000398646 ENSE00001534120
5236  ENSG00000230870       ENST00000393804 ENSE00001697618
5237  ENSG00000233676       ENST00000425091 ENSE00001750992
5238  ENSG00000227054       ENST00000450769 ENSE00001729002
5239  ENSG00000229231       ENST00000431297 ENSE00001627710
5240  ENSG00000185390       ENST00000332473 ENSE00002040703
5241  ENSG00000185390       ENST00000332473 ENSE00001329082
5242  ENSG00000275170       ENST00000613317 ENSE00003747992
5243  ENSG00000275170       ENST00000613317 ENSE00003727151
5244  ENSG00000275170       ENST00000613317 ENSE00003739631
5245  ENSG00000275170       ENST00000613317 ENSE00003726569
5246  ENSG00000236663       ENST00000424933 ENSE00001715893
5247  ENSG00000236663       ENST00000424933 ENSE00001602659
5248  ENSG00000160282       ENST00000483568 ENSE00003583249
5249  ENSG00000160282       ENST00000483568 ENSE00001945718
5250  ENSG00000160282       ENST00000483568 ENSE00003459852
5251  ENSG00000160282       ENST00000460011 ENSE00003583249
5252  ENSG00000160282       ENST00000460011 ENSE00003459852
5253  ENSG00000160282       ENST00000460011 ENSE00001822816
5254  ENSG00000160282       ENST00000460011 ENSE00003537411
5255  ENSG00000160282       ENST00000460011 ENSE00001954775
5256  ENSG00000160282       ENST00000498355 ENSE00003583249
5257  ENSG00000160282       ENST00000498355 ENSE00003459852
5258  ENSG00000160282       ENST00000498355 ENSE00003537411
5259  ENSG00000160282       ENST00000498355 ENSE00003496449
5260  ENSG00000160282       ENST00000498355 ENSE00003484320
5261  ENSG00000160282       ENST00000498355 ENSE00003684905
5262  ENSG00000160282       ENST00000498355 ENSE00001834425
5263  ENSG00000160282       ENST00000498355 ENSE00003583297
5264  ENSG00000160282       ENST00000498355 ENSE00003657756
5265  ENSG00000160282       ENST00000498355 ENSE00003471194
5266  ENSG00000160282       ENST00000498355 ENSE00003553506
5267  ENSG00000160282       ENST00000498355 ENSE00003548804
5268  ENSG00000160282       ENST00000498355 ENSE00003597812
5269  ENSG00000160282       ENST00000498355 ENSE00003668063
5270  ENSG00000160282       ENST00000498355 ENSE00001835896
5271  ENSG00000160282       ENST00000291670 ENSE00003459852
5272  ENSG00000160282       ENST00000291670 ENSE00003615828
5273  ENSG00000160282       ENST00000291670 ENSE00003597294
5274  ENSG00000160282       ENST00000291670 ENSE00003493394
5275  ENSG00000160282       ENST00000291670 ENSE00001051131
5276  ENSG00000160282       ENST00000291670 ENSE00003672954
5277  ENSG00000160282       ENST00000291670 ENSE00003595298
5278  ENSG00000160282       ENST00000291670 ENSE00003580136
5279  ENSG00000160282       ENST00000291670 ENSE00003613882
5280  ENSG00000160282       ENST00000291670 ENSE00003684003
5281  ENSG00000160282       ENST00000291670 ENSE00003506553
5282  ENSG00000160282       ENST00000291670 ENSE00003555273
5283  ENSG00000160282       ENST00000291670 ENSE00003606219
5284  ENSG00000160282       ENST00000291670 ENSE00003545440
5285  ENSG00000160282       ENST00000291670 ENSE00003712935
5286  ENSG00000160282       ENST00000397748 ENSE00003615828
5287  ENSG00000160282       ENST00000397748 ENSE00003597294
5288  ENSG00000160282       ENST00000397748 ENSE00003493394
5289  ENSG00000160282       ENST00000397748 ENSE00001051131
5290  ENSG00000160282       ENST00000397748 ENSE00003672954
5291  ENSG00000160282       ENST00000397748 ENSE00003595298
5292  ENSG00000160282       ENST00000397748 ENSE00003580136
5293  ENSG00000160282       ENST00000397748 ENSE00003613882
5294  ENSG00000160282       ENST00000397748 ENSE00003684003
5295  ENSG00000160282       ENST00000397748 ENSE00003506553
5296  ENSG00000160282       ENST00000397748 ENSE00003555273
5297  ENSG00000160282       ENST00000397748 ENSE00003606219
5298  ENSG00000160282       ENST00000397748 ENSE00003545440
5299  ENSG00000160282       ENST00000397748 ENSE00001385976
5300  ENSG00000160282       ENST00000397748 ENSE00003478862
5301  ENSG00000160282       ENST00000446405 ENSE00003545440
5302  ENSG00000160282       ENST00000446405 ENSE00001779518
5303  ENSG00000160282       ENST00000446405 ENSE00001734884
5304  ENSG00000160282       ENST00000397746 ENSE00003615828
5305  ENSG00000160282       ENST00000397746 ENSE00003597294
5306  ENSG00000160282       ENST00000397746 ENSE00003493394
5307  ENSG00000160282       ENST00000397746 ENSE00001051131
5308  ENSG00000160282       ENST00000397746 ENSE00003672954
5309  ENSG00000160282       ENST00000397746 ENSE00003595298
5310  ENSG00000160282       ENST00000397746 ENSE00003580136
5311  ENSG00000160282       ENST00000397746 ENSE00003613882
5312  ENSG00000160282       ENST00000397746 ENSE00003684003
5313  ENSG00000160282       ENST00000397746 ENSE00003506553
5314  ENSG00000160282       ENST00000397746 ENSE00003555273
5315  ENSG00000160282       ENST00000397746 ENSE00003606219
5316  ENSG00000160282       ENST00000397746 ENSE00003545440
5317  ENSG00000160282       ENST00000397746 ENSE00003681420
5318  ENSG00000160282       ENST00000397743 ENSE00003615828
5319  ENSG00000160282       ENST00000397743 ENSE00003597294
5320  ENSG00000160282       ENST00000397743 ENSE00003493394
5321  ENSG00000160282       ENST00000397743 ENSE00001051131
5322  ENSG00000160282       ENST00000397743 ENSE00003672954
5323  ENSG00000160282       ENST00000397743 ENSE00003595298
5324  ENSG00000160282       ENST00000397743 ENSE00003580136
5325  ENSG00000160282       ENST00000397743 ENSE00003613882
5326  ENSG00000160282       ENST00000397743 ENSE00003684003
5327  ENSG00000160282       ENST00000397743 ENSE00003506553
5328  ENSG00000160282       ENST00000397743 ENSE00003525931
5329  ENSG00000160282       ENST00000397743 ENSE00003578617
5330  ENSG00000160282       ENST00000397743 ENSE00003509476
5331  ENSG00000160282       ENST00000494498 ENSE00003583249
5332  ENSG00000160282       ENST00000494498 ENSE00003537411
5333  ENSG00000160282       ENST00000494498 ENSE00003668063
5334  ENSG00000160282       ENST00000494498 ENSE00001891398
5335  ENSG00000160282       ENST00000488577 ENSE00001919083
5336  ENSG00000160282       ENST00000488577 ENSE00001906631
5337  ENSG00000160282       ENST00000488577 ENSE00001954164
5338  ENSG00000160282       ENST00000480950 ENSE00003553506
5339  ENSG00000160282       ENST00000480950 ENSE00001958239
5340  ENSG00000160282       ENST00000480950 ENSE00001910597
5341  ENSG00000160282       ENST00000469240 ENSE00001935847
5342  ENSG00000160282       ENST00000469240 ENSE00001920442
5343  ENSG00000237338       ENST00000446649 ENSE00001793539
5344  ENSG00000237338       ENST00000446649 ENSE00001749111
5345  ENSG00000154727       ENST00000354828 ENSE00001407486
5346  ENSG00000154727       ENST00000354828 ENSE00001017318
5347  ENSG00000154727       ENST00000354828 ENSE00003678494
5348  ENSG00000154727       ENST00000354828 ENSE00003647582
5349  ENSG00000154727       ENST00000354828 ENSE00001017324
5350  ENSG00000154727       ENST00000354828 ENSE00001017322
5351  ENSG00000154727       ENST00000354828 ENSE00001017326
5352  ENSG00000154727       ENST00000354828 ENSE00001017320
5353  ENSG00000154727       ENST00000354828 ENSE00001017321
5354  ENSG00000154727       ENST00000354828 ENSE00001411573
5355  ENSG00000154727       ENST00000400075 ENSE00001017318
5356  ENSG00000154727       ENST00000400075 ENSE00003678494
5357  ENSG00000154727       ENST00000400075 ENSE00003647582
5358  ENSG00000154727       ENST00000400075 ENSE00001017324
5359  ENSG00000154727       ENST00000400075 ENSE00001017322
5360  ENSG00000154727       ENST00000400075 ENSE00001017326
5361  ENSG00000154727       ENST00000400075 ENSE00001017320
5362  ENSG00000154727       ENST00000400075 ENSE00001017321
5363  ENSG00000154727       ENST00000400075 ENSE00001411573
5364  ENSG00000154727       ENST00000400075 ENSE00001879843
5365  ENSG00000154727       ENST00000487266 ENSE00001904375
5366  ENSG00000154727       ENST00000487266 ENSE00003473104
5367  ENSG00000154727       ENST00000487266 ENSE00003515363
5368  ENSG00000154727       ENST00000487266 ENSE00001939759
5369  ENSG00000236056       ENST00000450472 ENSE00001607360
5370  ENSG00000225502       ENST00000448152 ENSE00001722185
5371  ENSG00000159131       ENST00000381815 ENSE00001232541
5372  ENSG00000159131       ENST00000381815 ENSE00003564138
5373  ENSG00000159131       ENST00000381815 ENSE00003660742
5374  ENSG00000159131       ENST00000381815 ENSE00003786797
5375  ENSG00000159131       ENST00000381815 ENSE00003622385
5376  ENSG00000159131       ENST00000381815 ENSE00003636687
5377  ENSG00000159131       ENST00000381815 ENSE00003784675
5378  ENSG00000159131       ENST00000381815 ENSE00003466855
5379  ENSG00000159131       ENST00000381815 ENSE00003481319
5380  ENSG00000159131       ENST00000381815 ENSE00003513650
5381  ENSG00000159131       ENST00000381815 ENSE00003539927
5382  ENSG00000159131       ENST00000381815 ENSE00003674151
5383  ENSG00000159131       ENST00000381815 ENSE00003609172
5384  ENSG00000159131       ENST00000381815 ENSE00003468726
5385  ENSG00000159131       ENST00000381815 ENSE00003513723
5386  ENSG00000159131       ENST00000381815 ENSE00003675443
5387  ENSG00000159131       ENST00000381815 ENSE00003645473
5388  ENSG00000159131       ENST00000381815 ENSE00003680855
5389  ENSG00000159131       ENST00000381815 ENSE00003468374
5390  ENSG00000159131       ENST00000381815 ENSE00003687543
5391  ENSG00000159131       ENST00000381815 ENSE00003507973
5392  ENSG00000159131       ENST00000381815 ENSE00001736479
5393  ENSG00000159131       ENST00000381831 ENSE00003660742
5394  ENSG00000159131       ENST00000381831 ENSE00003786797
5395  ENSG00000159131       ENST00000381831 ENSE00003622385
5396  ENSG00000159131       ENST00000381831 ENSE00003636687
5397  ENSG00000159131       ENST00000381831 ENSE00003784675
5398  ENSG00000159131       ENST00000381831 ENSE00003466855
5399  ENSG00000159131       ENST00000381831 ENSE00003481319
5400  ENSG00000159131       ENST00000381831 ENSE00003513650
5401  ENSG00000159131       ENST00000381831 ENSE00003539927
5402  ENSG00000159131       ENST00000381831 ENSE00003674151
5403  ENSG00000159131       ENST00000381831 ENSE00003609172
5404  ENSG00000159131       ENST00000381831 ENSE00003468726
5405  ENSG00000159131       ENST00000381831 ENSE00003513723
5406  ENSG00000159131       ENST00000381831 ENSE00003675443
5407  ENSG00000159131       ENST00000381831 ENSE00003645473
5408  ENSG00000159131       ENST00000381831 ENSE00003680855
5409  ENSG00000159131       ENST00000381831 ENSE00003468374
5410  ENSG00000159131       ENST00000381831 ENSE00003687543
5411  ENSG00000159131       ENST00000381831 ENSE00003507973
5412  ENSG00000159131       ENST00000381831 ENSE00001736479
5413  ENSG00000159131       ENST00000381831 ENSE00001489989
5414  ENSG00000159131       ENST00000381831 ENSE00001489983
5415  ENSG00000159131       ENST00000381839 ENSE00003564138
5416  ENSG00000159131       ENST00000381839 ENSE00003660742
5417  ENSG00000159131       ENST00000381839 ENSE00003786797
5418  ENSG00000159131       ENST00000381839 ENSE00003622385
5419  ENSG00000159131       ENST00000381839 ENSE00003636687
5420  ENSG00000159131       ENST00000381839 ENSE00003784675
5421  ENSG00000159131       ENST00000381839 ENSE00003466855
5422  ENSG00000159131       ENST00000381839 ENSE00003481319
5423  ENSG00000159131       ENST00000381839 ENSE00003513650
5424  ENSG00000159131       ENST00000381839 ENSE00003539927
5425  ENSG00000159131       ENST00000381839 ENSE00003674151
5426  ENSG00000159131       ENST00000381839 ENSE00003609172
5427  ENSG00000159131       ENST00000381839 ENSE00003468726
5428  ENSG00000159131       ENST00000381839 ENSE00003513723
5429  ENSG00000159131       ENST00000381839 ENSE00003675443
5430  ENSG00000159131       ENST00000381839 ENSE00003645473
5431  ENSG00000159131       ENST00000381839 ENSE00003680855
5432  ENSG00000159131       ENST00000381839 ENSE00003468374
5433  ENSG00000159131       ENST00000381839 ENSE00003687543
5434  ENSG00000159131       ENST00000381839 ENSE00003507973
5435  ENSG00000159131       ENST00000381839 ENSE00001736479
5436  ENSG00000159131       ENST00000381839 ENSE00001490224
5437  ENSG00000159131       ENST00000424203 ENSE00003564138
5438  ENSG00000159131       ENST00000424203 ENSE00003660742
5439  ENSG00000159131       ENST00000424203 ENSE00003786797
5440  ENSG00000159131       ENST00000424203 ENSE00003622385
5441  ENSG00000159131       ENST00000424203 ENSE00003636687
5442  ENSG00000159131       ENST00000424203 ENSE00003784675
5443  ENSG00000159131       ENST00000424203 ENSE00003466855
5444  ENSG00000159131       ENST00000424203 ENSE00001701956
5445  ENSG00000159131       ENST00000424203 ENSE00001703277
5446  ENSG00000159131       ENST00000424203 ENSE00003607819
5447  ENSG00000159131       ENST00000424203 ENSE00003588672
5448  ENSG00000159131       ENST00000424203 ENSE00003504890
5449  ENSG00000159131       ENST00000424203 ENSE00003610380
5450  ENSG00000159131       ENST00000424203 ENSE00003462589
5451  ENSG00000159131       ENST00000424203 ENSE00003655742
5452  ENSG00000159131       ENST00000424203 ENSE00003592650
5453  ENSG00000159131       ENST00000424203 ENSE00003572508
5454  ENSG00000159131       ENST00000424203 ENSE00003577136
5455  ENSG00000159131       ENST00000424203 ENSE00003654291
5456  ENSG00000159131       ENST00000424203 ENSE00003694718
5457  ENSG00000159131       ENST00000424203 ENSE00003520124
5458  ENSG00000159131       ENST00000424203 ENSE00001804711
5459  ENSG00000159131       ENST00000482663 ENSE00001810179
5460  ENSG00000159131       ENST00000482663 ENSE00001915629
5461  ENSG00000159131       ENST00000487155 ENSE00001920078
5462  ENSG00000159131       ENST00000487155 ENSE00001946350
5463  ENSG00000159131       ENST00000460305 ENSE00003504890
5464  ENSG00000159131       ENST00000460305 ENSE00003610380
5465  ENSG00000159131       ENST00000460305 ENSE00001819885
5466  ENSG00000159131       ENST00000460305 ENSE00001869887
5467  ENSG00000159131       ENST00000467575 ENSE00003588672
5468  ENSG00000159131       ENST00000467575 ENSE00001956168
5469  ENSG00000159131       ENST00000467575 ENSE00001876807
5470  ENSG00000159131       ENST00000361093 ENSE00003564138
5471  ENSG00000159131       ENST00000361093 ENSE00003660742
5472  ENSG00000159131       ENST00000361093 ENSE00003786797
5473  ENSG00000159131       ENST00000361093 ENSE00003622385
5474  ENSG00000159131       ENST00000361093 ENSE00003636687
5475  ENSG00000159131       ENST00000361093 ENSE00003784675
5476  ENSG00000159131       ENST00000361093 ENSE00003466855
5477  ENSG00000159131       ENST00000361093 ENSE00003481319
5478  ENSG00000159131       ENST00000361093 ENSE00003513650
5479  ENSG00000159131       ENST00000361093 ENSE00001908678
5480  ENSG00000159131       ENST00000361093 ENSE00001489917
5481  ENSG00000159131       ENST00000366093 ENSE00003622385
5482  ENSG00000159131       ENST00000366093 ENSE00003636687
5483  ENSG00000159131       ENST00000366093 ENSE00003784675
5484  ENSG00000159131       ENST00000366093 ENSE00001626250
5485  ENSG00000159131       ENST00000366093 ENSE00001643587
5486  ENSG00000159131       ENST00000366093 ENSE00003649161
5487  ENSG00000159131       ENST00000366093 ENSE00003490233
5488  ENSG00000159131       ENST00000366093 ENSE00001602967
5489  ENSG00000159131       ENST00000466882 ENSE00003649161
5490  ENSG00000159131       ENST00000466882 ENSE00001916873
5491  ENSG00000159131       ENST00000466882 ENSE00001893045
5492  ENSG00000159131       ENST00000497313 ENSE00001809865
5493  ENSG00000159131       ENST00000497313 ENSE00003526660
5494  ENSG00000159131       ENST00000497313 ENSE00003558791
5495  ENSG00000159131       ENST00000497313 ENSE00001879494
5496  ENSG00000159131       ENST00000430874 ENSE00003564138
5497  ENSG00000159131       ENST00000430874 ENSE00003660742
5498  ENSG00000159131       ENST00000430874 ENSE00003786797
5499  ENSG00000159131       ENST00000430874 ENSE00003622385
5500  ENSG00000159131       ENST00000430874 ENSE00003636687
5501  ENSG00000159131       ENST00000430874 ENSE00003784675
5502  ENSG00000159131       ENST00000430874 ENSE00001759010
5503  ENSG00000159131       ENST00000426819 ENSE00003660742
5504  ENSG00000159131       ENST00000426819 ENSE00003786797
5505  ENSG00000159131       ENST00000426819 ENSE00003622385
5506  ENSG00000159131       ENST00000426819 ENSE00003636687
5507  ENSG00000159131       ENST00000426819 ENSE00001489983
5508  ENSG00000159131       ENST00000426819 ENSE00001635400
5509  ENSG00000159131       ENST00000426819 ENSE00001749701
5510  ENSG00000159131       ENST00000476524 ENSE00003526660
5511  ENSG00000159131       ENST00000476524 ENSE00002469634
5512  ENSG00000159131       ENST00000476524 ENSE00003613252
5513  ENSG00000159131       ENST00000476524 ENSE00003552692
5514  ENSG00000159131       ENST00000476524 ENSE00003678844
5515  ENSG00000159131       ENST00000476524 ENSE00001851277
5516  ENSG00000159131       ENST00000488791 ENSE00001912460
5517  ENSG00000159131       ENST00000488791 ENSE00001884219
5518  ENSG00000159131       ENST00000438059 ENSE00003660742
5519  ENSG00000159131       ENST00000438059 ENSE00003786797
5520  ENSG00000159131       ENST00000438059 ENSE00001489983
5521  ENSG00000159131       ENST00000438059 ENSE00001782476
5522  ENSG00000159131       ENST00000441403 ENSE00003660742
5523  ENSG00000159131       ENST00000441403 ENSE00001489983
5524  ENSG00000159131       ENST00000441403 ENSE00001667966
5525  ENSG00000159131       ENST00000441403 ENSE00001672116
5526  ENSG00000215326       ENST00000429271 ENSE00001593144
5527  ENSG00000227874       ENST00000435181 ENSE00001669589
5528  ENSG00000227874       ENST00000435181 ENSE00001701460
5529  ENSG00000171189       ENST00000327783 ENSE00001540737
5530  ENSG00000171189       ENST00000327783 ENSE00003604433
5531  ENSG00000171189       ENST00000327783 ENSE00003680741
5532  ENSG00000171189       ENST00000327783 ENSE00003468156
5533  ENSG00000171189       ENST00000327783 ENSE00003504657
5534  ENSG00000171189       ENST00000327783 ENSE00003478056
5535  ENSG00000171189       ENST00000327783 ENSE00003680298
5536  ENSG00000171189       ENST00000327783 ENSE00001137266
5537  ENSG00000171189       ENST00000327783 ENSE00001313812
5538  ENSG00000171189       ENST00000327783 ENSE00001143398
5539  ENSG00000171189       ENST00000327783 ENSE00001143391
5540  ENSG00000171189       ENST00000327783 ENSE00001640609
5541  ENSG00000171189       ENST00000327783 ENSE00001625731
5542  ENSG00000171189       ENST00000327783 ENSE00001778184
5543  ENSG00000171189       ENST00000327783 ENSE00001143363
5544  ENSG00000171189       ENST00000327783 ENSE00001192027
5545  ENSG00000171189       ENST00000327783 ENSE00001540755
5546  ENSG00000171189       ENST00000327783 ENSE00001540750
5547  ENSG00000171189       ENST00000389125 ENSE00003604433
5548  ENSG00000171189       ENST00000389125 ENSE00003680741
5549  ENSG00000171189       ENST00000389125 ENSE00003468156
5550  ENSG00000171189       ENST00000389125 ENSE00003504657
5551  ENSG00000171189       ENST00000389125 ENSE00003478056
5552  ENSG00000171189       ENST00000389125 ENSE00003680298
5553  ENSG00000171189       ENST00000389125 ENSE00001137266
5554  ENSG00000171189       ENST00000389125 ENSE00001143398
5555  ENSG00000171189       ENST00000389125 ENSE00001143391
5556  ENSG00000171189       ENST00000389125 ENSE00001640609
5557  ENSG00000171189       ENST00000389125 ENSE00001625731
5558  ENSG00000171189       ENST00000389125 ENSE00001778184
5559  ENSG00000171189       ENST00000389125 ENSE00001143363
5560  ENSG00000171189       ENST00000389125 ENSE00001192027
5561  ENSG00000171189       ENST00000389125 ENSE00001540750
5562  ENSG00000171189       ENST00000389125 ENSE00001303364
5563  ENSG00000171189       ENST00000399913 ENSE00003604433
5564  ENSG00000171189       ENST00000399913 ENSE00003680741
5565  ENSG00000171189       ENST00000399913 ENSE00003468156
5566  ENSG00000171189       ENST00000399913 ENSE00003504657
5567  ENSG00000171189       ENST00000399913 ENSE00003478056
5568  ENSG00000171189       ENST00000399913 ENSE00003680298
5569  ENSG00000171189       ENST00000399913 ENSE00001137266
5570  ENSG00000171189       ENST00000399913 ENSE00001313812
5571  ENSG00000171189       ENST00000399913 ENSE00001143398
5572  ENSG00000171189       ENST00000399913 ENSE00001143391
5573  ENSG00000171189       ENST00000399913 ENSE00001640609
5574  ENSG00000171189       ENST00000399913 ENSE00001625731
5575  ENSG00000171189       ENST00000399913 ENSE00001778184
5576  ENSG00000171189       ENST00000399913 ENSE00001143363
5577  ENSG00000171189       ENST00000399913 ENSE00001192027
5578  ENSG00000171189       ENST00000399913 ENSE00001540750
5579  ENSG00000171189       ENST00000399913 ENSE00001540742
5580  ENSG00000171189       ENST00000399914 ENSE00003604433
5581  ENSG00000171189       ENST00000399914 ENSE00003680741
5582  ENSG00000171189       ENST00000399914 ENSE00003468156
5583  ENSG00000171189       ENST00000399914 ENSE00003504657
5584  ENSG00000171189       ENST00000399914 ENSE00003478056
5585  ENSG00000171189       ENST00000399914 ENSE00003680298
5586  ENSG00000171189       ENST00000399914 ENSE00001137266
5587  ENSG00000171189       ENST00000399914 ENSE00001143398
5588  ENSG00000171189       ENST00000399914 ENSE00001143391
5589  ENSG00000171189       ENST00000399914 ENSE00001640609
5590  ENSG00000171189       ENST00000399914 ENSE00001625731
5591  ENSG00000171189       ENST00000399914 ENSE00001778184
5592  ENSG00000171189       ENST00000399914 ENSE00001143363
5593  ENSG00000171189       ENST00000399914 ENSE00001192027
5594  ENSG00000171189       ENST00000399914 ENSE00001540755
5595  ENSG00000171189       ENST00000399914 ENSE00001540750
5596  ENSG00000171189       ENST00000399914 ENSE00001540756
5597  ENSG00000171189       ENST00000389124 ENSE00001540737
5598  ENSG00000171189       ENST00000389124 ENSE00003604433
5599  ENSG00000171189       ENST00000389124 ENSE00003680741
5600  ENSG00000171189       ENST00000389124 ENSE00003468156
5601  ENSG00000171189       ENST00000389124 ENSE00003504657
5602  ENSG00000171189       ENST00000389124 ENSE00003478056
5603  ENSG00000171189       ENST00000389124 ENSE00003680298
5604  ENSG00000171189       ENST00000389124 ENSE00001137266
5605  ENSG00000171189       ENST00000389124 ENSE00001313812
5606  ENSG00000171189       ENST00000389124 ENSE00001143398
5607  ENSG00000171189       ENST00000389124 ENSE00001143391
5608  ENSG00000171189       ENST00000389124 ENSE00001640609
5609  ENSG00000171189       ENST00000389124 ENSE00001625731
5610  ENSG00000171189       ENST00000389124 ENSE00001778184
5611  ENSG00000171189       ENST00000389124 ENSE00001143363
5612  ENSG00000171189       ENST00000389124 ENSE00001192027
5613  ENSG00000171189       ENST00000389124 ENSE00001540732
5614  ENSG00000171189       ENST00000399907 ENSE00003604433
5615  ENSG00000171189       ENST00000399907 ENSE00003680741
5616  ENSG00000171189       ENST00000399907 ENSE00003468156
5617  ENSG00000171189       ENST00000399907 ENSE00003504657
5618  ENSG00000171189       ENST00000399907 ENSE00003478056
5619  ENSG00000171189       ENST00000399907 ENSE00003680298
5620  ENSG00000171189       ENST00000399907 ENSE00001137266
5621  ENSG00000171189       ENST00000399907 ENSE00001313812
5622  ENSG00000171189       ENST00000399907 ENSE00001143398
5623  ENSG00000171189       ENST00000399907 ENSE00001143391
5624  ENSG00000171189       ENST00000399907 ENSE00001640609
5625  ENSG00000171189       ENST00000399907 ENSE00001625731
5626  ENSG00000171189       ENST00000399907 ENSE00001778184
5627  ENSG00000171189       ENST00000399907 ENSE00001143363
5628  ENSG00000171189       ENST00000399907 ENSE00001192027
5629  ENSG00000171189       ENST00000399907 ENSE00001540722
5630  ENSG00000171189       ENST00000399907 ENSE00001540719
5631  ENSG00000171189       ENST00000399909 ENSE00003604433
5632  ENSG00000171189       ENST00000399909 ENSE00003680741
5633  ENSG00000171189       ENST00000399909 ENSE00003468156
5634  ENSG00000171189       ENST00000399909 ENSE00003504657
5635  ENSG00000171189       ENST00000399909 ENSE00003478056
5636  ENSG00000171189       ENST00000399909 ENSE00003680298
5637  ENSG00000171189       ENST00000399909 ENSE00001137266
5638  ENSG00000171189       ENST00000399909 ENSE00001143398
5639  ENSG00000171189       ENST00000399909 ENSE00001143391
5640  ENSG00000171189       ENST00000399909 ENSE00001640609
5641  ENSG00000171189       ENST00000399909 ENSE00001625731
5642  ENSG00000171189       ENST00000399909 ENSE00001778184
5643  ENSG00000171189       ENST00000399909 ENSE00001143363
5644  ENSG00000171189       ENST00000399909 ENSE00001192027
5645  ENSG00000171189       ENST00000399909 ENSE00001540722
5646  ENSG00000171189       ENST00000399909 ENSE00001540719
5647  ENSG00000171189       ENST00000472429 ENSE00001843989
5648  ENSG00000171189       ENST00000472429 ENSE00003632601
5649  ENSG00000171189       ENST00000472429 ENSE00003487025
5650  ENSG00000171189       ENST00000472429 ENSE00003572399
5651  ENSG00000171189       ENST00000472429 ENSE00003477933
5652  ENSG00000171189       ENST00000472429 ENSE00003637099
5653  ENSG00000171189       ENST00000472429 ENSE00003572934
5654  ENSG00000171189       ENST00000472429 ENSE00001899617
5655  ENSG00000174680       ENST00000455392 ENSE00001699657
5656  ENSG00000174680       ENST00000455392 ENSE00001727818
5657  ENSG00000174680       ENST00000455392 ENSE00001191923
5658  ENSG00000174680       ENST00000455392 ENSE00001642182
5659  ENSG00000174680       ENST00000455392 ENSE00001678834
5660  ENSG00000174680       ENST00000309331 ENSE00001191923
5661  ENSG00000174680       ENST00000309331 ENSE00001429814
5662  ENSG00000174680       ENST00000309331 ENSE00001681171
5663  ENSG00000174680       ENST00000423221 ENSE00001681171
5664  ENSG00000174680       ENST00000423221 ENSE00001622569
5665  ENSG00000174680       ENST00000412579 ENSE00001642182
5666  ENSG00000174680       ENST00000412579 ENSE00001681171
5667  ENSG00000174680       ENST00000412579 ENSE00001650559
5668  ENSG00000174680       ENST00000412579 ENSE00001644342
5669  ENSG00000174680       ENST00000413131 ENSE00001681171
5670  ENSG00000174680       ENST00000413131 ENSE00001753021
5671  ENSG00000226930       ENST00000424290 ENSE00001788690
5672  ENSG00000226930       ENST00000424290 ENSE00001648987
5673  ENSG00000226930       ENST00000424290 ENSE00001678582
5674  ENSG00000226930       ENST00000424290 ENSE00001622721
5675  ENSG00000226930       ENST00000424290 ENSE00001740560
5676  ENSG00000226930       ENST00000424290 ENSE00001734519
5677  ENSG00000224860       ENST00000433312 ENSE00001645088
5678  ENSG00000213440       ENST00000416034 ENSE00001639054
5679  ENSG00000213440       ENST00000416034 ENSE00001517760
5680  ENSG00000234289       ENST00000599962 ENSE00003082382
5681  ENSG00000159267       ENST00000336648 ENSE00001401604
5682  ENSG00000159267       ENST00000336648 ENSE00001282167
5683  ENSG00000159267       ENST00000336648 ENSE00001402516
5684  ENSG00000159267       ENST00000336648 ENSE00001282204
5685  ENSG00000159267       ENST00000336648 ENSE00001044408
5686  ENSG00000159267       ENST00000336648 ENSE00001044404
5687  ENSG00000159267       ENST00000336648 ENSE00001282176
5688  ENSG00000159267       ENST00000336648 ENSE00001108868
5689  ENSG00000159267       ENST00000336648 ENSE00001282128
5690  ENSG00000159267       ENST00000336648 ENSE00001108867
5691  ENSG00000159267       ENST00000336648 ENSE00001108871
5692  ENSG00000159267       ENST00000336648 ENSE00003709295
5693  ENSG00000159267       ENST00000399120 ENSE00001282167
5694  ENSG00000159267       ENST00000399120 ENSE00001282204
5695  ENSG00000159267       ENST00000399120 ENSE00001044408
5696  ENSG00000159267       ENST00000399120 ENSE00001044404
5697  ENSG00000159267       ENST00000399120 ENSE00001282176
5698  ENSG00000159267       ENST00000399120 ENSE00001108868
5699  ENSG00000159267       ENST00000399120 ENSE00001282128
5700  ENSG00000159267       ENST00000399120 ENSE00001108867
5701  ENSG00000159267       ENST00000399120 ENSE00001108871
5702  ENSG00000159267       ENST00000399120 ENSE00001536491
5703  ENSG00000159267       ENST00000399120 ENSE00001536490
5704  ENSG00000159267       ENST00000399120 ENSE00001536488
5705  ENSG00000159267       ENST00000482273 ENSE00001847098
5706  ENSG00000159267       ENST00000482273 ENSE00001897220
5707  ENSG00000159267       ENST00000448340 ENSE00001282167
5708  ENSG00000159267       ENST00000448340 ENSE00001282204
5709  ENSG00000159267       ENST00000448340 ENSE00001644544
5710  ENSG00000159267       ENST00000448340 ENSE00001685793
5711  ENSG00000159267       ENST00000419461 ENSE00001605772
5712  ENSG00000159267       ENST00000419461 ENSE00003793408
5713  ENSG00000159267       ENST00000419461 ENSE00003800504
5714  ENSG00000159267       ENST00000419461 ENSE00001630049
5715  ENSG00000159267       ENST00000427746 ENSE00001282167
5716  ENSG00000159267       ENST00000427746 ENSE00001282204
5717  ENSG00000159267       ENST00000427746 ENSE00001744646
5718  ENSG00000159267       ENST00000427746 ENSE00002506497
5719  ENSG00000159267       ENST00000427746 ENSE00001703983
5720  ENSG00000159267       ENST00000612277 ENSE00001282167
5721  ENSG00000159267       ENST00000612277 ENSE00001402516
5722  ENSG00000159267       ENST00000612277 ENSE00001282204
5723  ENSG00000159267       ENST00000612277 ENSE00001044408
5724  ENSG00000159267       ENST00000612277 ENSE00001044404
5725  ENSG00000159267       ENST00000612277 ENSE00001282176
5726  ENSG00000159267       ENST00000612277 ENSE00001108868
5727  ENSG00000159267       ENST00000612277 ENSE00001282128
5728  ENSG00000159267       ENST00000612277 ENSE00001108867
5729  ENSG00000159267       ENST00000612277 ENSE00001108871
5730  ENSG00000159267       ENST00000612277 ENSE00003709295
5731  ENSG00000159267       ENST00000612277 ENSE00003720755
5732  ENSG00000237646       ENST00000434195 ENSE00001642518
5733  ENSG00000237646       ENST00000434195 ENSE00001721890
5734  ENSG00000205581       ENST00000288344 ENSE00001705853
5735  ENSG00000205581       ENST00000288344 ENSE00003552745
5736  ENSG00000205581       ENST00000288344 ENSE00003585321
5737  ENSG00000205581       ENST00000288344 ENSE00003605975
5738  ENSG00000205581       ENST00000288344 ENSE00003676815
5739  ENSG00000205581       ENST00000288344 ENSE00003601648
5740  ENSG00000205581       ENST00000288344 ENSE00003686823
5741  ENSG00000205581       ENST00000486741 ENSE00003686823
5742  ENSG00000205581       ENST00000486741 ENSE00001643983
5743  ENSG00000205581       ENST00000486741 ENSE00003669232
5744  ENSG00000205581       ENST00000486741 ENSE00003627640
5745  ENSG00000205581       ENST00000486741 ENSE00001898923
5746  ENSG00000205581       ENST00000431390 ENSE00003552745
5747  ENSG00000205581       ENST00000431390 ENSE00003585321
5748  ENSG00000205581       ENST00000431390 ENSE00003605975
5749  ENSG00000205581       ENST00000431390 ENSE00003601648
5750  ENSG00000205581       ENST00000431390 ENSE00003686823
5751  ENSG00000205581       ENST00000431390 ENSE00001659207
5752  ENSG00000205581       ENST00000431390 ENSE00001642656
5753  ENSG00000205581       ENST00000431390 ENSE00003493302
5754  ENSG00000205581       ENST00000380749 ENSE00003552745
5755  ENSG00000205581       ENST00000380749 ENSE00003585321
5756  ENSG00000205581       ENST00000380749 ENSE00003605975
5757  ENSG00000205581       ENST00000380749 ENSE00001942039
5758  ENSG00000205581       ENST00000380749 ENSE00003532954
5759  ENSG00000205581       ENST00000380749 ENSE00003659677
5760  ENSG00000205581       ENST00000492280 ENSE00003601648
5761  ENSG00000205581       ENST00000492280 ENSE00003686823
5762  ENSG00000205581       ENST00000492280 ENSE00003669232
5763  ENSG00000205581       ENST00000492280 ENSE00003627640
5764  ENSG00000205581       ENST00000492280 ENSE00001942976
5765  ENSG00000205581       ENST00000492280 ENSE00003613784
5766  ENSG00000205581       ENST00000492280 ENSE00003485728
5767  ENSG00000205581       ENST00000492280 ENSE00001930581
5768  ENSG00000205581       ENST00000436324 ENSE00003552745
5769  ENSG00000205581       ENST00000436324 ENSE00003585321
5770  ENSG00000205581       ENST00000436324 ENSE00003605975
5771  ENSG00000205581       ENST00000436324 ENSE00003601648
5772  ENSG00000205581       ENST00000436324 ENSE00001599611
5773  ENSG00000205581       ENST00000436324 ENSE00003550272
5774  ENSG00000205581       ENST00000436324 ENSE00001726652
5775  ENSG00000205581       ENST00000380748 ENSE00003552745
5776  ENSG00000205581       ENST00000380748 ENSE00003605975
5777  ENSG00000205581       ENST00000380748 ENSE00003532954
5778  ENSG00000205581       ENST00000380748 ENSE00001486104
5779  ENSG00000205581       ENST00000380748 ENSE00001486102
5780  ENSG00000205581       ENST00000419378 ENSE00003552745
5781  ENSG00000205581       ENST00000419378 ENSE00003585321
5782  ENSG00000205581       ENST00000419378 ENSE00003605975
5783  ENSG00000205581       ENST00000419378 ENSE00003601648
5784  ENSG00000205581       ENST00000419378 ENSE00001642656
5785  ENSG00000205581       ENST00000419378 ENSE00001667562
5786  ENSG00000205581       ENST00000419378 ENSE00001740454
5787  ENSG00000205581       ENST00000489072 ENSE00003601648
5788  ENSG00000205581       ENST00000489072 ENSE00003627640
5789  ENSG00000205581       ENST00000489072 ENSE00003493302
5790  ENSG00000205581       ENST00000489072 ENSE00003613784
5791  ENSG00000205581       ENST00000489072 ENSE00001884218
5792  ENSG00000205581       ENST00000489072 ENSE00001820349
5793  ENSG00000205581       ENST00000482192 ENSE00003601648
5794  ENSG00000205581       ENST00000482192 ENSE00003627640
5795  ENSG00000205581       ENST00000482192 ENSE00003613784
5796  ENSG00000205581       ENST00000482192 ENSE00003485728
5797  ENSG00000205581       ENST00000482192 ENSE00001875720
5798  ENSG00000205581       ENST00000482192 ENSE00001699401
5799  ENSG00000205581       ENST00000482192 ENSE00001895283
5800  ENSG00000205581       ENST00000380747 ENSE00003552745
5801  ENSG00000205581       ENST00000380747 ENSE00003585321
5802  ENSG00000205581       ENST00000380747 ENSE00003605975
5803  ENSG00000205581       ENST00000380747 ENSE00003532954
5804  ENSG00000205581       ENST00000380747 ENSE00001486098
5805  ENSG00000205581       ENST00000380747 ENSE00001220166
5806  ENSG00000205581       ENST00000485550 ENSE00003601648
5807  ENSG00000205581       ENST00000485550 ENSE00003627640
5808  ENSG00000205581       ENST00000485550 ENSE00003493302
5809  ENSG00000205581       ENST00000485550 ENSE00003613784
5810  ENSG00000205581       ENST00000485550 ENSE00003485728
5811  ENSG00000205581       ENST00000485550 ENSE00001850231
5812  ENSG00000205581       ENST00000485550 ENSE00001948699
5813  ENSG00000205581       ENST00000490032 ENSE00003601648
5814  ENSG00000205581       ENST00000490032 ENSE00003613784
5815  ENSG00000205581       ENST00000490032 ENSE00001699401
5816  ENSG00000205581       ENST00000490032 ENSE00001900021
5817  ENSG00000205581       ENST00000443046 ENSE00003552745
5818  ENSG00000205581       ENST00000443046 ENSE00003585321
5819  ENSG00000205581       ENST00000443046 ENSE00003605975
5820  ENSG00000205581       ENST00000443046 ENSE00003601648
5821  ENSG00000205581       ENST00000443046 ENSE00003493302
5822  ENSG00000205581       ENST00000443046 ENSE00003550272
5823  ENSG00000205581       ENST00000443046 ENSE00001699401
5824  ENSG00000205581       ENST00000443046 ENSE00003573173
5825  ENSG00000205581       ENST00000443046 ENSE00001732770
5826  ENSG00000205581       ENST00000464078 ENSE00003601648
5827  ENSG00000205581       ENST00000464078 ENSE00003613784
5828  ENSG00000205581       ENST00000464078 ENSE00003692123
5829  ENSG00000205581       ENST00000464078 ENSE00001893135
5830  ENSG00000205581       ENST00000464078 ENSE00001951514
5831  ENSG00000205581       ENST00000491183 ENSE00003669232
5832  ENSG00000205581       ENST00000491183 ENSE00003627640
5833  ENSG00000205581       ENST00000491183 ENSE00003613784
5834  ENSG00000205581       ENST00000491183 ENSE00003485728
5835  ENSG00000205581       ENST00000491183 ENSE00001850965
5836  ENSG00000205581       ENST00000491183 ENSE00001913220
5837  ENSG00000205581       ENST00000479586 ENSE00003669232
5838  ENSG00000205581       ENST00000479586 ENSE00003627640
5839  ENSG00000205581       ENST00000479586 ENSE00003613784
5840  ENSG00000205581       ENST00000479586 ENSE00001812091
5841  ENSG00000205581       ENST00000479586 ENSE00001890035
5842  ENSG00000205581       ENST00000471260 ENSE00003627640
5843  ENSG00000205581       ENST00000471260 ENSE00003613784
5844  ENSG00000205581       ENST00000471260 ENSE00001902671
5845  ENSG00000205581       ENST00000471260 ENSE00001952974
5846  ENSG00000205581       ENST00000482733 ENSE00001852835
5847  ENSG00000205581       ENST00000482733 ENSE00001840952
5848  ENSG00000205581       ENST00000463631 ENSE00003692123
5849  ENSG00000205581       ENST00000463631 ENSE00001893135
5850  ENSG00000205581       ENST00000463631 ENSE00001888057
5851  ENSG00000229046       ENST00000445197 ENSE00001679614
5852  ENSG00000160207       ENST00000291560 ENSE00001137985
5853  ENSG00000160207       ENST00000291560 ENSE00001138002
5854  ENSG00000160207       ENST00000291560 ENSE00001050553
5855  ENSG00000160207       ENST00000291560 ENSE00003689880
5856  ENSG00000160207       ENST00000291560 ENSE00001050558
5857  ENSG00000160207       ENST00000291560 ENSE00001050554
5858  ENSG00000160207       ENST00000291560 ENSE00001050552
5859  ENSG00000160207       ENST00000291560 ENSE00001050560
5860  ENSG00000160207       ENST00000291560 ENSE00001137993
5861  ENSG00000160207       ENST00000443485 ENSE00001138002
5862  ENSG00000160207       ENST00000443485 ENSE00001050553
5863  ENSG00000160207       ENST00000443485 ENSE00003689880
5864  ENSG00000160207       ENST00000443485 ENSE00001050554
5865  ENSG00000160207       ENST00000443485 ENSE00001706558
5866  ENSG00000160207       ENST00000443485 ENSE00001609701
5867  ENSG00000160207       ENST00000443485 ENSE00001681243
5868  ENSG00000155304       ENST00000285667 ENSE00001020226
5869  ENSG00000155304       ENST00000285667 ENSE00003608679
5870  ENSG00000155304       ENST00000285667 ENSE00001020231
5871  ENSG00000155304       ENST00000285667 ENSE00003578743
5872  ENSG00000155304       ENST00000285667 ENSE00001280391
5873  ENSG00000155304       ENST00000478035 ENSE00001847212
5874  ENSG00000155304       ENST00000478035 ENSE00003691864
5875  ENSG00000155304       ENST00000478035 ENSE00001890168
5876  ENSG00000215005       ENST00000447985 ENSE00001693295
5877  ENSG00000215005       ENST00000447985 ENSE00001538147
5878  ENSG00000142149       ENST00000270112 ENSE00001191626
5879  ENSG00000142149       ENST00000270112 ENSE00001025755
5880  ENSG00000142149       ENST00000270112 ENSE00000952493
5881  ENSG00000142149       ENST00000270112 ENSE00000952494
5882  ENSG00000142149       ENST00000270112 ENSE00000952495
5883  ENSG00000142149       ENST00000270112 ENSE00001025758
5884  ENSG00000142149       ENST00000270112 ENSE00001025754
5885  ENSG00000142149       ENST00000270112 ENSE00003547885
5886  ENSG00000142149       ENST00000270112 ENSE00003508200
5887  ENSG00000142149       ENST00000270112 ENSE00001025753
5888  ENSG00000142149       ENST00000270112 ENSE00001191620
5889  ENSG00000142149       ENST00000430354 ENSE00000952493
5890  ENSG00000142149       ENST00000430354 ENSE00000952494
5891  ENSG00000142149       ENST00000430354 ENSE00001716705
5892  ENSG00000142149       ENST00000430354 ENSE00001601286
5893  ENSG00000142149       ENST00000465574 ENSE00001853426
5894  ENSG00000142149       ENST00000465574 ENSE00003653371
5895  ENSG00000142149       ENST00000465574 ENSE00003605677
5896  ENSG00000142149       ENST00000465574 ENSE00001863134
5897  ENSG00000142149       ENST00000439107 ENSE00003547885
5898  ENSG00000142149       ENST00000439107 ENSE00003508200
5899  ENSG00000142149       ENST00000439107 ENSE00001025753
5900  ENSG00000142149       ENST00000439107 ENSE00001624651
5901  ENSG00000142149       ENST00000439107 ENSE00001802814
5902  ENSG00000237138       ENST00000437109 ENSE00001717018
5903  ENSG00000237138       ENST00000437109 ENSE00001593911
5904  ENSG00000160223       ENST00000344330 ENSE00001834816
5905  ENSG00000160223       ENST00000344330 ENSE00001177742
5906  ENSG00000160223       ENST00000344330 ENSE00001050700
5907  ENSG00000160223       ENST00000344330 ENSE00001050697
5908  ENSG00000160223       ENST00000344330 ENSE00001050698
5909  ENSG00000160223       ENST00000344330 ENSE00001110032
5910  ENSG00000160223       ENST00000344330 ENSE00001302127
5911  ENSG00000160223       ENST00000407780 ENSE00001177742
5912  ENSG00000160223       ENST00000407780 ENSE00001050700
5913  ENSG00000160223       ENST00000407780 ENSE00001050697
5914  ENSG00000160223       ENST00000407780 ENSE00001050698
5915  ENSG00000160223       ENST00000407780 ENSE00001110032
5916  ENSG00000160223       ENST00000407780 ENSE00001326742
5917  ENSG00000160223       ENST00000407780 ENSE00001881360
5918  ENSG00000160223       ENST00000400379 ENSE00001177742
5919  ENSG00000160223       ENST00000400379 ENSE00001050700
5920  ENSG00000160223       ENST00000400379 ENSE00001050697
5921  ENSG00000160223       ENST00000400379 ENSE00001050698
5922  ENSG00000160223       ENST00000400379 ENSE00001326742
5923  ENSG00000160223       ENST00000400379 ENSE00001664578
5924  ENSG00000160223       ENST00000400377 ENSE00001177742
5925  ENSG00000160223       ENST00000400377 ENSE00001050697
5926  ENSG00000160223       ENST00000400377 ENSE00001050698
5927  ENSG00000160223       ENST00000400377 ENSE00001110032
5928  ENSG00000160223       ENST00000400377 ENSE00001884276
5929  ENSG00000160223       ENST00000400377 ENSE00001542652
5930  ENSG00000142166       ENST00000493503 ENSE00001855615
5931  ENSG00000142166       ENST00000493503 ENSE00001913247
5932  ENSG00000142166       ENST00000270139 ENSE00001958164
5933  ENSG00000142166       ENST00000270139 ENSE00003606171
5934  ENSG00000142166       ENST00000270139 ENSE00003575721
5935  ENSG00000142166       ENST00000270139 ENSE00000952626
5936  ENSG00000142166       ENST00000270139 ENSE00000952627
5937  ENSG00000142166       ENST00000270139 ENSE00000952628
5938  ENSG00000142166       ENST00000270139 ENSE00000952629
5939  ENSG00000142166       ENST00000270139 ENSE00000952630
5940  ENSG00000142166       ENST00000270139 ENSE00001043348
5941  ENSG00000142166       ENST00000270139 ENSE00000952632
5942  ENSG00000142166       ENST00000270139 ENSE00001842850
5943  ENSG00000142166       ENST00000442071 ENSE00003606171
5944  ENSG00000142166       ENST00000442071 ENSE00003575721
5945  ENSG00000142166       ENST00000442071 ENSE00001794726
5946  ENSG00000142166       ENST00000442071 ENSE00001656702
5947  ENSG00000159110       ENST00000382264 ENSE00001918565
5948  ENSG00000159110       ENST00000382264 ENSE00003660426
5949  ENSG00000159110       ENST00000382264 ENSE00003535341
5950  ENSG00000159110       ENST00000382264 ENSE00003620483
5951  ENSG00000159110       ENST00000382264 ENSE00001733110
5952  ENSG00000159110       ENST00000382264 ENSE00003787406
5953  ENSG00000159110       ENST00000382264 ENSE00003542940
5954  ENSG00000159110       ENST00000382264 ENSE00003650647
5955  ENSG00000159110       ENST00000382264 ENSE00001491486
5956  ENSG00000159110       ENST00000404220 ENSE00003535341
5957  ENSG00000159110       ENST00000404220 ENSE00003620483
5958  ENSG00000159110       ENST00000404220 ENSE00001733110
5959  ENSG00000159110       ENST00000404220 ENSE00003787406
5960  ENSG00000159110       ENST00000404220 ENSE00003542940
5961  ENSG00000159110       ENST00000404220 ENSE00003650647
5962  ENSG00000159110       ENST00000404220 ENSE00001881451
5963  ENSG00000159110       ENST00000404220 ENSE00001366893
5964  ENSG00000159110       ENST00000404220 ENSE00001862690
5965  ENSG00000159110       ENST00000342136 ENSE00003535341
5966  ENSG00000159110       ENST00000342136 ENSE00003620483
5967  ENSG00000159110       ENST00000342136 ENSE00001733110
5968  ENSG00000159110       ENST00000342136 ENSE00003787406
5969  ENSG00000159110       ENST00000342136 ENSE00003542940
5970  ENSG00000159110       ENST00000342136 ENSE00003650647
5971  ENSG00000159110       ENST00000342136 ENSE00001366893
5972  ENSG00000159110       ENST00000342136 ENSE00001384199
5973  ENSG00000159110       ENST00000342136 ENSE00003460001
5974  ENSG00000159110       ENST00000420068 ENSE00001776929
5975  ENSG00000159110       ENST00000420068 ENSE00003531736
5976  ENSG00000159110       ENST00000420068 ENSE00003484390
5977  ENSG00000159110       ENST00000420068 ENSE00001734372
5978  ENSG00000159110       ENST00000342101 ENSE00003535341
5979  ENSG00000159110       ENST00000342101 ENSE00003620483
5980  ENSG00000159110       ENST00000342101 ENSE00001733110
5981  ENSG00000159110       ENST00000342101 ENSE00003787406
5982  ENSG00000159110       ENST00000342101 ENSE00003542940
5983  ENSG00000159110       ENST00000342101 ENSE00001366893
5984  ENSG00000159110       ENST00000342101 ENSE00001491360
5985  ENSG00000159110       ENST00000342101 ENSE00003581056
5986  ENSG00000159110       ENST00000382238 ENSE00003660426
5987  ENSG00000159110       ENST00000382238 ENSE00003535341
5988  ENSG00000159110       ENST00000382238 ENSE00003620483
5989  ENSG00000159110       ENST00000382238 ENSE00001733110
5990  ENSG00000159110       ENST00000382238 ENSE00003787406
5991  ENSG00000159110       ENST00000382238 ENSE00001434457
5992  ENSG00000159110       ENST00000382238 ENSE00003595336
5993  ENSG00000159110       ENST00000382238 ENSE00003477776
5994  ENSG00000159110       ENST00000382238 ENSE00003606777
5995  ENSG00000159110       ENST00000382238 ENSE00003547857
5996  ENSG00000159110       ENST00000413881 ENSE00001733110
5997  ENSG00000159110       ENST00000413881 ENSE00003787406
5998  ENSG00000159110       ENST00000413881 ENSE00003542940
5999  ENSG00000159110       ENST00000413881 ENSE00001635653
6000  ENSG00000159110       ENST00000413881 ENSE00003471951
6001  ENSG00000159110       ENST00000413881 ENSE00003475234
6002  ENSG00000159110       ENST00000443073 ENSE00001733110
6003  ENSG00000159110       ENST00000443073 ENSE00003787406
6004  ENSG00000159110       ENST00000443073 ENSE00003542940
6005  ENSG00000159110       ENST00000443073 ENSE00003650647
6006  ENSG00000159110       ENST00000443073 ENSE00001635653
6007  ENSG00000159110       ENST00000443073 ENSE00003471951
6008  ENSG00000159110       ENST00000443073 ENSE00003557392
6009  ENSG00000159110       ENST00000447980 ENSE00003535341
6010  ENSG00000159110       ENST00000447980 ENSE00003620483
6011  ENSG00000159110       ENST00000447980 ENSE00001733110
6012  ENSG00000159110       ENST00000447980 ENSE00003787406
6013  ENSG00000159110       ENST00000447980 ENSE00001635967
6014  ENSG00000159110       ENST00000447980 ENSE00003630943
6015  ENSG00000159110       ENST00000417007 ENSE00003595336
6016  ENSG00000159110       ENST00000417007 ENSE00003477776
6017  ENSG00000159110       ENST00000417007 ENSE00003606777
6018  ENSG00000159110       ENST00000417007 ENSE00001644621
6019  ENSG00000159110       ENST00000417007 ENSE00001666549
6020  ENSG00000159128       ENST00000290219 ENSE00001338849
6021  ENSG00000159128       ENST00000290219 ENSE00003547942
6022  ENSG00000159128       ENST00000290219 ENSE00003612383
6023  ENSG00000159128       ENST00000290219 ENSE00003495624
6024  ENSG00000159128       ENST00000290219 ENSE00003514417
6025  ENSG00000159128       ENST00000290219 ENSE00003640768
6026  ENSG00000159128       ENST00000290219 ENSE00001490578
6027  ENSG00000159128       ENST00000439213 ENSE00001681092
6028  ENSG00000159128       ENST00000439213 ENSE00001490530
6029  ENSG00000159128       ENST00000439213 ENSE00001730414
6030  ENSG00000159128       ENST00000439213 ENSE00003561756
6031  ENSG00000159128       ENST00000439213 ENSE00003525311
6032  ENSG00000159128       ENST00000439213 ENSE00003536471
6033  ENSG00000159128       ENST00000439213 ENSE00001648489
6034  ENSG00000159128       ENST00000381995 ENSE00003547942
6035  ENSG00000159128       ENST00000381995 ENSE00003612383
6036  ENSG00000159128       ENST00000381995 ENSE00003495624
6037  ENSG00000159128       ENST00000381995 ENSE00003514417
6038  ENSG00000159128       ENST00000381995 ENSE00003640768
6039  ENSG00000159128       ENST00000381995 ENSE00001490578
6040  ENSG00000159128       ENST00000381995 ENSE00001490530
6041  ENSG00000159128       ENST00000381995 ENSE00001490538
6042  ENSG00000159128       ENST00000545369 ENSE00003536471
6043  ENSG00000159128       ENST00000545369 ENSE00001778547
6044  ENSG00000159128       ENST00000545369 ENSE00003521958
6045  ENSG00000159128       ENST00000545369 ENSE00003679140
6046  ENSG00000159128       ENST00000545369 ENSE00003650274
6047  ENSG00000159128       ENST00000545369 ENSE00001802157
6048  ENSG00000159128       ENST00000405436 ENSE00003495624
6049  ENSG00000159128       ENST00000405436 ENSE00003514417
6050  ENSG00000159128       ENST00000405436 ENSE00003640768
6051  ENSG00000159128       ENST00000405436 ENSE00003561756
6052  ENSG00000159128       ENST00000405436 ENSE00001560508
6053  ENSG00000159128       ENST00000405436 ENSE00001553006
6054  ENSG00000159128       ENST00000405436 ENSE00003666662
6055  ENSG00000159128       ENST00000405436 ENSE00001553564
6056  ENSG00000159128       ENST00000421802 ENSE00003640768
6057  ENSG00000159128       ENST00000421802 ENSE00002530039
6058  ENSG00000159128       ENST00000421802 ENSE00001776196
6059  ENSG00000277282       ENST00000622028 ENSE00003742120
6060  ENSG00000277282       ENST00000622028 ENSE00003753345
6061  ENSG00000183067       ENST00000380588 ENSE00001769493
6062  ENSG00000183067       ENST00000380588 ENSE00001485574
6063  ENSG00000183067       ENST00000380588 ENSE00003604826
6064  ENSG00000183067       ENST00000380588 ENSE00003647311
6065  ENSG00000183067       ENST00000380588 ENSE00003495748
6066  ENSG00000183067       ENST00000380588 ENSE00003527190
6067  ENSG00000183067       ENST00000380588 ENSE00001290607
6068  ENSG00000183067       ENST00000380588 ENSE00003687559
6069  ENSG00000183067       ENST00000380588 ENSE00001328914
6070  ENSG00000183067       ENST00000479378 ENSE00001935100
6071  ENSG00000183067       ENST00000479378 ENSE00003581442
6072  ENSG00000183067       ENST00000479378 ENSE00003577494
6073  ENSG00000183067       ENST00000479378 ENSE00003612795
6074  ENSG00000183067       ENST00000479378 ENSE00003562860
6075  ENSG00000183067       ENST00000459922 ENSE00001917500
6076  ENSG00000183067       ENST00000459922 ENSE00003595409
6077  ENSG00000183067       ENST00000459922 ENSE00001863487
6078  ENSG00000243646       ENST00000290200 ENSE00001043281
6079  ENSG00000243646       ENST00000290200 ENSE00003554973
6080  ENSG00000243646       ENST00000290200 ENSE00003490674
6081  ENSG00000243646       ENST00000290200 ENSE00003519873
6082  ENSG00000243646       ENST00000290200 ENSE00003620117
6083  ENSG00000243646       ENST00000290200 ENSE00003628210
6084  ENSG00000243646       ENST00000290200 ENSE00001927323
6085  ENSG00000243646       ENST00000422891 ENSE00003554973
6086  ENSG00000243646       ENST00000422891 ENSE00001729591
6087  ENSG00000243646       ENST00000422891 ENSE00003540143
6088  ENSG00000243646       ENST00000422891 ENSE00003467460
6089  ENSG00000243646       ENST00000422891 ENSE00003460810
6090  ENSG00000243646       ENST00000422891 ENSE00001614880
6091  ENSG00000243646       ENST00000493295 ENSE00003467460
6092  ENSG00000243646       ENST00000493295 ENSE00003460810
6093  ENSG00000243646       ENST00000493295 ENSE00001860564
6094  ENSG00000243646       ENST00000493295 ENSE00003668610
6095  ENSG00000243646       ENST00000493295 ENSE00003561299
6096  ENSG00000243646       ENST00000493295 ENSE00001858828
6097  ENSG00000243646       ENST00000498371 ENSE00003467460
6098  ENSG00000243646       ENST00000498371 ENSE00003561299
6099  ENSG00000243646       ENST00000498371 ENSE00001834344
6100  ENSG00000243646       ENST00000498371 ENSE00002467116
6101  ENSG00000243646       ENST00000451065 ENSE00003519873
6102  ENSG00000243646       ENST00000451065 ENSE00003620117
6103  ENSG00000243646       ENST00000451065 ENSE00003628210
6104  ENSG00000243646       ENST00000451065 ENSE00001698964
6105  ENSG00000243646       ENST00000451065 ENSE00001796592
6106  ENSG00000243646       ENST00000451065 ENSE00001625180
6107  ENSG00000243646       ENST00000637650 ENSE00003797974
6108  ENSG00000243646       ENST00000637650 ENSE00003792920
6109  ENSG00000243646       ENST00000609556 ENSE00003797974
6110  ENSG00000243646       ENST00000609556 ENSE00003706288
6111  ENSG00000223799       ENST00000411998 ENSE00001712553
6112  ENSG00000223799       ENST00000411998 ENSE00001682874
6113  ENSG00000229880       ENST00000435590 ENSE00000768001
6114  ENSG00000160255       ENST00000302347 ENSE00003791070
6115  ENSG00000160255       ENST00000302347 ENSE00003688153
6116  ENSG00000160255       ENST00000302347 ENSE00003784896
6117  ENSG00000160255       ENST00000302347 ENSE00003569344
6118  ENSG00000160255       ENST00000302347 ENSE00003648854
6119  ENSG00000160255       ENST00000302347 ENSE00003786943
6120  ENSG00000160255       ENST00000302347 ENSE00003692776
6121  ENSG00000160255       ENST00000302347 ENSE00003596110
6122  ENSG00000160255       ENST00000302347 ENSE00003676989
6123  ENSG00000160255       ENST00000302347 ENSE00003610443
6124  ENSG00000160255       ENST00000302347 ENSE00003474058
6125  ENSG00000160255       ENST00000302347 ENSE00003538737
6126  ENSG00000160255       ENST00000302347 ENSE00003608831
6127  ENSG00000160255       ENST00000302347 ENSE00003634407
6128  ENSG00000160255       ENST00000302347 ENSE00001530484
6129  ENSG00000160255       ENST00000302347 ENSE00003654080
6130  ENSG00000160255       ENST00000518033 ENSE00002121803
6131  ENSG00000160255       ENST00000518033 ENSE00002135361
6132  ENSG00000160255       ENST00000523126 ENSE00002119259
6133  ENSG00000160255       ENST00000523126 ENSE00002100821
6134  ENSG00000160255       ENST00000521995 ENSE00003791070
6135  ENSG00000160255       ENST00000521995 ENSE00003634407
6136  ENSG00000160255       ENST00000521995 ENSE00001530484
6137  ENSG00000160255       ENST00000521995 ENSE00002118353
6138  ENSG00000160255       ENST00000397846 ENSE00003791070
6139  ENSG00000160255       ENST00000397846 ENSE00003634407
6140  ENSG00000160255       ENST00000397846 ENSE00001854101
6141  ENSG00000160255       ENST00000397846 ENSE00003532481
6142  ENSG00000160255       ENST00000479849 ENSE00003476552
6143  ENSG00000160255       ENST00000479849 ENSE00001858561
6144  ENSG00000160255       ENST00000479849 ENSE00003542143
6145  ENSG00000160255       ENST00000517819 ENSE00003791070
6146  ENSG00000160255       ENST00000517819 ENSE00003634407
6147  ENSG00000160255       ENST00000517819 ENSE00002110944
6148  ENSG00000160255       ENST00000517819 ENSE00002093217
6149  ENSG00000160255       ENST00000524251 ENSE00002104346
6150  ENSG00000160255       ENST00000524251 ENSE00002135256
6151  ENSG00000160255       ENST00000524251 ENSE00003650963
6152  ENSG00000160255       ENST00000524251 ENSE00002125359
6153  ENSG00000160255       ENST00000520389 ENSE00003791070
6154  ENSG00000160255       ENST00000520389 ENSE00003634407
6155  ENSG00000160255       ENST00000520389 ENSE00003607150
6156  ENSG00000160255       ENST00000520389 ENSE00002121803
6157  ENSG00000160255       ENST00000520389 ENSE00002103133
6158  ENSG00000160255       ENST00000520389 ENSE00002090699
6159  ENSG00000160255       ENST00000522688 ENSE00003476552
6160  ENSG00000160255       ENST00000522688 ENSE00002089808
6161  ENSG00000160255       ENST00000522688 ENSE00002104346
6162  ENSG00000160255       ENST00000522688 ENSE00003480328
6163  ENSG00000160255       ENST00000522688 ENSE00002140166
6164  ENSG00000160255       ENST00000517563 ENSE00003791070
6165  ENSG00000160255       ENST00000517563 ENSE00003688153
6166  ENSG00000160255       ENST00000517563 ENSE00003634407
6167  ENSG00000160255       ENST00000517563 ENSE00001530485
6168  ENSG00000160255       ENST00000517563 ENSE00002135901
6169  ENSG00000160255       ENST00000517563 ENSE00002137412
6170  ENSG00000160255       ENST00000320216 ENSE00003791070
6171  ENSG00000160255       ENST00000320216 ENSE00003688153
6172  ENSG00000160255       ENST00000320216 ENSE00003784896
6173  ENSG00000160255       ENST00000320216 ENSE00003569344
6174  ENSG00000160255       ENST00000320216 ENSE00003648854
6175  ENSG00000160255       ENST00000320216 ENSE00003786943
6176  ENSG00000160255       ENST00000320216 ENSE00001760685
6177  ENSG00000160255       ENST00000521987 ENSE00003639138
6178  ENSG00000160255       ENST00000521987 ENSE00002129948
6179  ENSG00000160255       ENST00000521987 ENSE00002100250
6180  ENSG00000160255       ENST00000523663 ENSE00003791070
6181  ENSG00000160255       ENST00000523663 ENSE00003688153
6182  ENSG00000160255       ENST00000523663 ENSE00003784896
6183  ENSG00000160255       ENST00000523663 ENSE00003634407
6184  ENSG00000160255       ENST00000523663 ENSE00002137392
6185  ENSG00000160255       ENST00000522931 ENSE00003791070
6186  ENSG00000160255       ENST00000522931 ENSE00003688153
6187  ENSG00000160255       ENST00000522931 ENSE00003634407
6188  ENSG00000160255       ENST00000522931 ENSE00002113067
6189  ENSG00000160255       ENST00000522931 ENSE00002121804
6190  ENSG00000160255       ENST00000479202 ENSE00003475946
6191  ENSG00000160255       ENST00000479202 ENSE00001841395
6192  ENSG00000160255       ENST00000479202 ENSE00001846827
6193  ENSG00000160255       ENST00000523323 ENSE00003562837
6194  ENSG00000160255       ENST00000523323 ENSE00003470757
6195  ENSG00000160255       ENST00000523323 ENSE00003621554
6196  ENSG00000160255       ENST00000523323 ENSE00003610265
6197  ENSG00000160255       ENST00000523323 ENSE00003475946
6198  ENSG00000160255       ENST00000523323 ENSE00003634407
6199  ENSG00000160255       ENST00000523323 ENSE00003639138
6200  ENSG00000160255       ENST00000523323 ENSE00003474596
6201  ENSG00000160255       ENST00000523323 ENSE00003573867
6202  ENSG00000160255       ENST00000523323 ENSE00003583970
6203  ENSG00000160255       ENST00000523323 ENSE00002122904
6204  ENSG00000160255       ENST00000523323 ENSE00003658064
6205  ENSG00000160255       ENST00000523323 ENSE00003607150
6206  ENSG00000160255       ENST00000523323 ENSE00003587147
6207  ENSG00000160255       ENST00000523323 ENSE00003484049
6208  ENSG00000160255       ENST00000523323 ENSE00003477398
6209  ENSG00000160255       ENST00000397850 ENSE00003791070
6210  ENSG00000160255       ENST00000397850 ENSE00003688153
6211  ENSG00000160255       ENST00000397850 ENSE00003784896
6212  ENSG00000160255       ENST00000397850 ENSE00003569344
6213  ENSG00000160255       ENST00000397850 ENSE00003648854
6214  ENSG00000160255       ENST00000397850 ENSE00003786943
6215  ENSG00000160255       ENST00000397850 ENSE00003692776
6216  ENSG00000160255       ENST00000397850 ENSE00003596110
6217  ENSG00000160255       ENST00000397850 ENSE00003676989
6218  ENSG00000160255       ENST00000397850 ENSE00003610443
6219  ENSG00000160255       ENST00000397850 ENSE00003474058
6220  ENSG00000160255       ENST00000397850 ENSE00003538737
6221  ENSG00000160255       ENST00000397850 ENSE00003608831
6222  ENSG00000160255       ENST00000397850 ENSE00003564872
6223  ENSG00000160255       ENST00000397850 ENSE00003634407
6224  ENSG00000160255       ENST00000397850 ENSE00002097953
6225  ENSG00000160255       ENST00000397850 ENSE00001530484
6226  ENSG00000160255       ENST00000355153 ENSE00003791070
6227  ENSG00000160255       ENST00000355153 ENSE00003688153
6228  ENSG00000160255       ENST00000355153 ENSE00003784896
6229  ENSG00000160255       ENST00000355153 ENSE00003569344
6230  ENSG00000160255       ENST00000355153 ENSE00003648854
6231  ENSG00000160255       ENST00000355153 ENSE00003786943
6232  ENSG00000160255       ENST00000355153 ENSE00003692776
6233  ENSG00000160255       ENST00000355153 ENSE00003596110
6234  ENSG00000160255       ENST00000355153 ENSE00003676989
6235  ENSG00000160255       ENST00000355153 ENSE00003610443
6236  ENSG00000160255       ENST00000355153 ENSE00003474058
6237  ENSG00000160255       ENST00000355153 ENSE00003538737
6238  ENSG00000160255       ENST00000355153 ENSE00003608831
6239  ENSG00000160255       ENST00000355153 ENSE00003564872
6240  ENSG00000160255       ENST00000355153 ENSE00003634407
6241  ENSG00000160255       ENST00000355153 ENSE00001430780
6242  ENSG00000160255       ENST00000498666 ENSE00003562837
6243  ENSG00000160255       ENST00000498666 ENSE00003470757
6244  ENSG00000160255       ENST00000498666 ENSE00003621554
6245  ENSG00000160255       ENST00000498666 ENSE00003610265
6246  ENSG00000160255       ENST00000498666 ENSE00003475946
6247  ENSG00000160255       ENST00000498666 ENSE00003491446
6248  ENSG00000160255       ENST00000498666 ENSE00001905428
6249  ENSG00000160255       ENST00000498666 ENSE00003583278
6250  ENSG00000160255       ENST00000498666 ENSE00003476552
6251  ENSG00000160255       ENST00000498666 ENSE00003602491
6252  ENSG00000160255       ENST00000498666 ENSE00003639138
6253  ENSG00000160255       ENST00000498666 ENSE00003474596
6254  ENSG00000160255       ENST00000498666 ENSE00003573867
6255  ENSG00000160255       ENST00000498666 ENSE00003583970
6256  ENSG00000160255       ENST00000498666 ENSE00001949282
6257  ENSG00000160255       ENST00000397857 ENSE00003791070
6258  ENSG00000160255       ENST00000397857 ENSE00003688153
6259  ENSG00000160255       ENST00000397857 ENSE00003784896
6260  ENSG00000160255       ENST00000397857 ENSE00003569344
6261  ENSG00000160255       ENST00000397857 ENSE00003648854
6262  ENSG00000160255       ENST00000397857 ENSE00003786943
6263  ENSG00000160255       ENST00000397857 ENSE00003692776
6264  ENSG00000160255       ENST00000397857 ENSE00003596110
6265  ENSG00000160255       ENST00000397857 ENSE00003676989
6266  ENSG00000160255       ENST00000397857 ENSE00003610443
6267  ENSG00000160255       ENST00000397857 ENSE00003474058
6268  ENSG00000160255       ENST00000397857 ENSE00003538737
6269  ENSG00000160255       ENST00000397857 ENSE00003608831
6270  ENSG00000160255       ENST00000397857 ENSE00003564872
6271  ENSG00000160255       ENST00000397857 ENSE00001530495
6272  ENSG00000160255       ENST00000397857 ENSE00003634407
6273  ENSG00000160255       ENST00000397854 ENSE00003791070
6274  ENSG00000160255       ENST00000397854 ENSE00003688153
6275  ENSG00000160255       ENST00000397854 ENSE00003569344
6276  ENSG00000160255       ENST00000397854 ENSE00003648854
6277  ENSG00000160255       ENST00000397854 ENSE00003786943
6278  ENSG00000160255       ENST00000397854 ENSE00003692776
6279  ENSG00000160255       ENST00000397854 ENSE00003596110
6280  ENSG00000160255       ENST00000397854 ENSE00003676989
6281  ENSG00000160255       ENST00000397854 ENSE00003610443
6282  ENSG00000160255       ENST00000397854 ENSE00003474058
6283  ENSG00000160255       ENST00000397854 ENSE00003538737
6284  ENSG00000160255       ENST00000397854 ENSE00003608831
6285  ENSG00000160255       ENST00000397854 ENSE00003564872
6286  ENSG00000160255       ENST00000397854 ENSE00003634407
6287  ENSG00000160255       ENST00000397854 ENSE00001948527
6288  ENSG00000160255       ENST00000475170 ENSE00001892842
6289  ENSG00000160255       ENST00000475170 ENSE00003562837
6290  ENSG00000160255       ENST00000475170 ENSE00003470757
6291  ENSG00000160255       ENST00000475170 ENSE00003621554
6292  ENSG00000160255       ENST00000475170 ENSE00003610265
6293  ENSG00000160255       ENST00000475170 ENSE00003475946
6294  ENSG00000160255       ENST00000475170 ENSE00003491446
6295  ENSG00000160255       ENST00000397852 ENSE00001483672
6296  ENSG00000160255       ENST00000397852 ENSE00003791070
6297  ENSG00000160255       ENST00000397852 ENSE00003688153
6298  ENSG00000160255       ENST00000397852 ENSE00003784896
6299  ENSG00000160255       ENST00000397852 ENSE00003569344
6300  ENSG00000160255       ENST00000397852 ENSE00003648854
6301  ENSG00000160255       ENST00000397852 ENSE00003786943
6302  ENSG00000160255       ENST00000397852 ENSE00003692776
6303  ENSG00000160255       ENST00000397852 ENSE00003596110
6304  ENSG00000160255       ENST00000397852 ENSE00003676989
6305  ENSG00000160255       ENST00000397852 ENSE00003610443
6306  ENSG00000160255       ENST00000397852 ENSE00003474058
6307  ENSG00000160255       ENST00000397852 ENSE00003538737
6308  ENSG00000160255       ENST00000397852 ENSE00003608831
6309  ENSG00000160255       ENST00000397852 ENSE00003564872
6310  ENSG00000227039       ENST00000609592 ENSE00003710239
6311  ENSG00000227039       ENST00000609592 ENSE00003710484
6312  ENSG00000227039       ENST00000609592 ENSE00003705562
6313  ENSG00000227039       ENST00000610063 ENSE00001617442
6314  ENSG00000227039       ENST00000610063 ENSE00003707190
6315  ENSG00000227039       ENST00000610063 ENSE00003708738
6316  ENSG00000227039       ENST00000608043 ENSE00001617442
6317  ENSG00000227039       ENST00000608043 ENSE00003710787
6318  ENSG00000227039       ENST00000608043 ENSE00003707190
6319  ENSG00000227039       ENST00000608043 ENSE00003705201
6320  ENSG00000227039       ENST00000429132 ENSE00001617442
6321  ENSG00000227039       ENST00000429132 ENSE00001640376
6322  ENSG00000227039       ENST00000429132 ENSE00001598901
6323  ENSG00000227039       ENST00000609694 ENSE00001617442
6324  ENSG00000227039       ENST00000609694 ENSE00001704328
6325  ENSG00000227039       ENST00000609694 ENSE00003702969
6326  ENSG00000227039       ENST00000609694 ENSE00003710787
6327  ENSG00000227039       ENST00000609694 ENSE00003710887
6328  ENSG00000227039       ENST00000441379 ENSE00001790658
6329  ENSG00000227039       ENST00000441379 ENSE00001617442
6330  ENSG00000227039       ENST00000441379 ENSE00001704328
6331  ENSG00000227039       ENST00000441379 ENSE00001605959
6332  ENSG00000205726       ENST00000399353 ENSE00001537709
6333  ENSG00000205726       ENST00000399353 ENSE00003554783
6334  ENSG00000205726       ENST00000399353 ENSE00003636097
6335  ENSG00000205726       ENST00000399353 ENSE00003727180
6336  ENSG00000205726       ENST00000399353 ENSE00003789821
6337  ENSG00000205726       ENST00000399353 ENSE00001701224
6338  ENSG00000205726       ENST00000399353 ENSE00002306218
6339  ENSG00000205726       ENST00000399353 ENSE00003615598
6340  ENSG00000205726       ENST00000399353 ENSE00003660532
6341  ENSG00000205726       ENST00000399353 ENSE00003560708
6342  ENSG00000205726       ENST00000399353 ENSE00003582731
6343  ENSG00000205726       ENST00000399353 ENSE00002289133
6344  ENSG00000205726       ENST00000399353 ENSE00003754038
6345  ENSG00000205726       ENST00000399353 ENSE00003740685
6346  ENSG00000205726       ENST00000399353 ENSE00003748649
6347  ENSG00000205726       ENST00000399353 ENSE00003716255
6348  ENSG00000205726       ENST00000399353 ENSE00003716800
6349  ENSG00000205726       ENST00000399353 ENSE00003722466
6350  ENSG00000205726       ENST00000399353 ENSE00002294975
6351  ENSG00000205726       ENST00000399353 ENSE00003746393
6352  ENSG00000205726       ENST00000399353 ENSE00003629591
6353  ENSG00000205726       ENST00000399353 ENSE00002286409
6354  ENSG00000205726       ENST00000399353 ENSE00003550586
6355  ENSG00000205726       ENST00000399353 ENSE00003559784
6356  ENSG00000205726       ENST00000399353 ENSE00003604372
6357  ENSG00000205726       ENST00000399353 ENSE00003487819
6358  ENSG00000205726       ENST00000399353 ENSE00003694267
6359  ENSG00000205726       ENST00000399353 ENSE00003626830
6360  ENSG00000205726       ENST00000399353 ENSE00001537706
6361  ENSG00000205726       ENST00000444491 ENSE00003554783
6362  ENSG00000205726       ENST00000444491 ENSE00003636097
6363  ENSG00000205726       ENST00000444491 ENSE00003727180
6364  ENSG00000205726       ENST00000444491 ENSE00003789821
6365  ENSG00000205726       ENST00000444491 ENSE00001766438
6366  ENSG00000205726       ENST00000444491 ENSE00001725831
6367  ENSG00000205726       ENST00000444491 ENSE00001784317
6368  ENSG00000205726       ENST00000470742 ENSE00001907792
6369  ENSG00000205726       ENST00000470742 ENSE00003649049
6370  ENSG00000205726       ENST00000470742 ENSE00003617729
6371  ENSG00000205726       ENST00000470742 ENSE00001833384
6372  ENSG00000205726       ENST00000381318 ENSE00003554783
6373  ENSG00000205726       ENST00000381318 ENSE00003636097
6374  ENSG00000205726       ENST00000381318 ENSE00003727180
6375  ENSG00000205726       ENST00000381318 ENSE00003789821
6376  ENSG00000205726       ENST00000381318 ENSE00002306218
6377  ENSG00000205726       ENST00000381318 ENSE00003615598
6378  ENSG00000205726       ENST00000381318 ENSE00003660532
6379  ENSG00000205726       ENST00000381318 ENSE00003560708
6380  ENSG00000205726       ENST00000381318 ENSE00003582731
6381  ENSG00000205726       ENST00000381318 ENSE00002289133
6382  ENSG00000205726       ENST00000381318 ENSE00003754038
6383  ENSG00000205726       ENST00000381318 ENSE00003740685
6384  ENSG00000205726       ENST00000381318 ENSE00003748649
6385  ENSG00000205726       ENST00000381318 ENSE00003716255
6386  ENSG00000205726       ENST00000381318 ENSE00003716800
6387  ENSG00000205726       ENST00000381318 ENSE00003722466
6388  ENSG00000205726       ENST00000381318 ENSE00002294975
6389  ENSG00000205726       ENST00000381318 ENSE00003746393
6390  ENSG00000205726       ENST00000381318 ENSE00003629591
6391  ENSG00000205726       ENST00000381318 ENSE00002286409
6392  ENSG00000205726       ENST00000381318 ENSE00003550586
6393  ENSG00000205726       ENST00000381318 ENSE00003559784
6394  ENSG00000205726       ENST00000381318 ENSE00003604372
6395  ENSG00000205726       ENST00000381318 ENSE00003487819
6396  ENSG00000205726       ENST00000381318 ENSE00003694267
6397  ENSG00000205726       ENST00000381318 ENSE00003626830
6398  ENSG00000205726       ENST00000381318 ENSE00001867436
6399  ENSG00000205726       ENST00000381318 ENSE00003711579
6400  ENSG00000205726       ENST00000381318 ENSE00002528364
6401  ENSG00000205726       ENST00000381318 ENSE00003481950
6402  ENSG00000205726       ENST00000381318 ENSE00003516373
6403  ENSG00000205726       ENST00000381318 ENSE00003644095
6404  ENSG00000205726       ENST00000381318 ENSE00003529805
6405  ENSG00000205726       ENST00000381318 ENSE00003520853
6406  ENSG00000205726       ENST00000381318 ENSE00003507202
6407  ENSG00000205726       ENST00000381318 ENSE00003590878
6408  ENSG00000205726       ENST00000381318 ENSE00003543412
6409  ENSG00000205726       ENST00000381318 ENSE00003535724
6410  ENSG00000205726       ENST00000381318 ENSE00003673780
6411  ENSG00000205726       ENST00000381318 ENSE00001844175
6412  ENSG00000205726       ENST00000381291 ENSE00003554783
6413  ENSG00000205726       ENST00000381291 ENSE00003636097
6414  ENSG00000205726       ENST00000381291 ENSE00003727180
6415  ENSG00000205726       ENST00000381291 ENSE00003789821
6416  ENSG00000205726       ENST00000381291 ENSE00002306218
6417  ENSG00000205726       ENST00000381291 ENSE00003615598
6418  ENSG00000205726       ENST00000381291 ENSE00003660532
6419  ENSG00000205726       ENST00000381291 ENSE00003560708
6420  ENSG00000205726       ENST00000381291 ENSE00003582731
6421  ENSG00000205726       ENST00000381291 ENSE00002289133
6422  ENSG00000205726       ENST00000381291 ENSE00003754038
6423  ENSG00000205726       ENST00000381291 ENSE00003740685
6424  ENSG00000205726       ENST00000381291 ENSE00003748649
6425  ENSG00000205726       ENST00000381291 ENSE00003716255
6426  ENSG00000205726       ENST00000381291 ENSE00003716800
6427  ENSG00000205726       ENST00000381291 ENSE00003722466
6428  ENSG00000205726       ENST00000381291 ENSE00002294975
6429  ENSG00000205726       ENST00000381291 ENSE00003746393
6430  ENSG00000205726       ENST00000381291 ENSE00003629591
6431  ENSG00000205726       ENST00000381291 ENSE00002286409
6432  ENSG00000205726       ENST00000381291 ENSE00003550586
6433  ENSG00000205726       ENST00000381291 ENSE00003559784
6434  ENSG00000205726       ENST00000381291 ENSE00003604372
6435  ENSG00000205726       ENST00000381291 ENSE00003487819
6436  ENSG00000205726       ENST00000381291 ENSE00003694267
6437  ENSG00000205726       ENST00000381291 ENSE00003626830
6438  ENSG00000205726       ENST00000381291 ENSE00003711579
6439  ENSG00000205726       ENST00000381291 ENSE00002528364
6440  ENSG00000205726       ENST00000381291 ENSE00001488097
6441  ENSG00000205726       ENST00000381291 ENSE00001488096
6442  ENSG00000205726       ENST00000399367 ENSE00003554783
6443  ENSG00000205726       ENST00000399367 ENSE00003636097
6444  ENSG00000205726       ENST00000399367 ENSE00003727180
6445  ENSG00000205726       ENST00000399367 ENSE00003789821
6446  ENSG00000205726       ENST00000399367 ENSE00002306218
6447  ENSG00000205726       ENST00000399367 ENSE00003615598
6448  ENSG00000205726       ENST00000399367 ENSE00003660532
6449  ENSG00000205726       ENST00000399367 ENSE00003560708
6450  ENSG00000205726       ENST00000399367 ENSE00003582731
6451  ENSG00000205726       ENST00000399367 ENSE00002289133
6452  ENSG00000205726       ENST00000399367 ENSE00003754038
6453  ENSG00000205726       ENST00000399367 ENSE00003740685
6454  ENSG00000205726       ENST00000399367 ENSE00003748649
6455  ENSG00000205726       ENST00000399367 ENSE00003716255
6456  ENSG00000205726       ENST00000399367 ENSE00003716800
6457  ENSG00000205726       ENST00000399367 ENSE00003722466
6458  ENSG00000205726       ENST00000399367 ENSE00002294975
6459  ENSG00000205726       ENST00000399367 ENSE00003746393
6460  ENSG00000205726       ENST00000399367 ENSE00003629591
6461  ENSG00000205726       ENST00000399367 ENSE00002286409
6462  ENSG00000205726       ENST00000399367 ENSE00003550586
6463  ENSG00000205726       ENST00000399367 ENSE00003559784
6464  ENSG00000205726       ENST00000399367 ENSE00003604372
6465  ENSG00000205726       ENST00000399367 ENSE00003487819
6466  ENSG00000205726       ENST00000399367 ENSE00003694267
6467  ENSG00000205726       ENST00000399367 ENSE00003626830
6468  ENSG00000205726       ENST00000399367 ENSE00003711579
6469  ENSG00000205726       ENST00000399367 ENSE00003481950
6470  ENSG00000205726       ENST00000399367 ENSE00003516373
6471  ENSG00000205726       ENST00000399367 ENSE00003644095
6472  ENSG00000205726       ENST00000399367 ENSE00003529805
6473  ENSG00000205726       ENST00000399367 ENSE00003520853
6474  ENSG00000205726       ENST00000399367 ENSE00003507202
6475  ENSG00000205726       ENST00000399367 ENSE00003590878
6476  ENSG00000205726       ENST00000399367 ENSE00003543412
6477  ENSG00000205726       ENST00000399367 ENSE00003535724
6478  ENSG00000205726       ENST00000399367 ENSE00003673780
6479  ENSG00000205726       ENST00000399367 ENSE00001837439
6480  ENSG00000205726       ENST00000399367 ENSE00001937188
6481  ENSG00000205726       ENST00000399352 ENSE00003554783
6482  ENSG00000205726       ENST00000399352 ENSE00003636097
6483  ENSG00000205726       ENST00000399352 ENSE00003727180
6484  ENSG00000205726       ENST00000399352 ENSE00003789821
6485  ENSG00000205726       ENST00000399352 ENSE00002306218
6486  ENSG00000205726       ENST00000399352 ENSE00003615598
6487  ENSG00000205726       ENST00000399352 ENSE00003660532
6488  ENSG00000205726       ENST00000399352 ENSE00003560708
6489  ENSG00000205726       ENST00000399352 ENSE00003582731
6490  ENSG00000205726       ENST00000399352 ENSE00002289133
6491  ENSG00000205726       ENST00000399352 ENSE00003754038
6492  ENSG00000205726       ENST00000399352 ENSE00003740685
6493  ENSG00000205726       ENST00000399352 ENSE00003748649
6494  ENSG00000205726       ENST00000399352 ENSE00003716255
6495  ENSG00000205726       ENST00000399352 ENSE00003716800
6496  ENSG00000205726       ENST00000399352 ENSE00003722466
6497  ENSG00000205726       ENST00000399352 ENSE00002294975
6498  ENSG00000205726       ENST00000399352 ENSE00003746393
6499  ENSG00000205726       ENST00000399352 ENSE00003629591
6500  ENSG00000205726       ENST00000399352 ENSE00002286409
6501  ENSG00000205726       ENST00000399352 ENSE00003550586
6502  ENSG00000205726       ENST00000399352 ENSE00003559784
6503  ENSG00000205726       ENST00000399352 ENSE00003604372
6504  ENSG00000205726       ENST00000399352 ENSE00003487819
6505  ENSG00000205726       ENST00000399352 ENSE00003694267
6506  ENSG00000205726       ENST00000399352 ENSE00003626830
6507  ENSG00000205726       ENST00000399352 ENSE00003711579
6508  ENSG00000205726       ENST00000399352 ENSE00001537699
6509  ENSG00000205726       ENST00000399352 ENSE00001537698
6510  ENSG00000205726       ENST00000399355 ENSE00003554783
6511  ENSG00000205726       ENST00000399355 ENSE00003636097
6512  ENSG00000205726       ENST00000399355 ENSE00003727180
6513  ENSG00000205726       ENST00000399355 ENSE00003789821
6514  ENSG00000205726       ENST00000399355 ENSE00002306218
6515  ENSG00000205726       ENST00000399355 ENSE00003615598
6516  ENSG00000205726       ENST00000399355 ENSE00003660532
6517  ENSG00000205726       ENST00000399355 ENSE00003560708
6518  ENSG00000205726       ENST00000399355 ENSE00003582731
6519  ENSG00000205726       ENST00000399355 ENSE00002289133
6520  ENSG00000205726       ENST00000399355 ENSE00003754038
6521  ENSG00000205726       ENST00000399355 ENSE00003740685
6522  ENSG00000205726       ENST00000399355 ENSE00003748649
6523  ENSG00000205726       ENST00000399355 ENSE00003716255
6524  ENSG00000205726       ENST00000399355 ENSE00003716800
6525  ENSG00000205726       ENST00000399355 ENSE00003722466
6526  ENSG00000205726       ENST00000399355 ENSE00002294975
6527  ENSG00000205726       ENST00000399355 ENSE00003746393
6528  ENSG00000205726       ENST00000399355 ENSE00003629591
6529  ENSG00000205726       ENST00000399355 ENSE00002286409
6530  ENSG00000205726       ENST00000399355 ENSE00003550586
6531  ENSG00000205726       ENST00000399355 ENSE00003487819
6532  ENSG00000205726       ENST00000399355 ENSE00003694267
6533  ENSG00000205726       ENST00000399355 ENSE00003626830
6534  ENSG00000205726       ENST00000399355 ENSE00003711579
6535  ENSG00000205726       ENST00000399355 ENSE00002528364
6536  ENSG00000205726       ENST00000399355 ENSE00001537694
6537  ENSG00000205726       ENST00000399355 ENSE00001682575
6538  ENSG00000205726       ENST00000399349 ENSE00003554783
6539  ENSG00000205726       ENST00000399349 ENSE00003636097
6540  ENSG00000205726       ENST00000399349 ENSE00003727180
6541  ENSG00000205726       ENST00000399349 ENSE00003789821
6542  ENSG00000205726       ENST00000399349 ENSE00002306218
6543  ENSG00000205726       ENST00000399349 ENSE00003615598
6544  ENSG00000205726       ENST00000399349 ENSE00003660532
6545  ENSG00000205726       ENST00000399349 ENSE00003560708
6546  ENSG00000205726       ENST00000399349 ENSE00003582731
6547  ENSG00000205726       ENST00000399349 ENSE00002289133
6548  ENSG00000205726       ENST00000399349 ENSE00003754038
6549  ENSG00000205726       ENST00000399349 ENSE00003740685
6550  ENSG00000205726       ENST00000399349 ENSE00003748649
6551  ENSG00000205726       ENST00000399349 ENSE00003716255
6552  ENSG00000205726       ENST00000399349 ENSE00003716800
6553  ENSG00000205726       ENST00000399349 ENSE00003722466
6554  ENSG00000205726       ENST00000399349 ENSE00002294975
6555  ENSG00000205726       ENST00000399349 ENSE00003746393
6556  ENSG00000205726       ENST00000399349 ENSE00003629591
6557  ENSG00000205726       ENST00000399349 ENSE00002286409
6558  ENSG00000205726       ENST00000399349 ENSE00003550586
6559  ENSG00000205726       ENST00000399349 ENSE00003487819
6560  ENSG00000205726       ENST00000399349 ENSE00003694267
6561  ENSG00000205726       ENST00000399349 ENSE00003626830
6562  ENSG00000205726       ENST00000399349 ENSE00003711579
6563  ENSG00000205726       ENST00000399349 ENSE00001537694
6564  ENSG00000205726       ENST00000399349 ENSE00001537693
6565  ENSG00000205726       ENST00000451686 ENSE00003554783
6566  ENSG00000205726       ENST00000451686 ENSE00003636097
6567  ENSG00000205726       ENST00000451686 ENSE00003727180
6568  ENSG00000205726       ENST00000451686 ENSE00001725831
6569  ENSG00000205726       ENST00000451686 ENSE00001764225
6570  ENSG00000205726       ENST00000451686 ENSE00001713722
6571  ENSG00000205726       ENST00000381283 ENSE00003554783
6572  ENSG00000205726       ENST00000381283 ENSE00003636097
6573  ENSG00000205726       ENST00000381283 ENSE00003727180
6574  ENSG00000205726       ENST00000381283 ENSE00003789821
6575  ENSG00000205726       ENST00000381283 ENSE00002306218
6576  ENSG00000205726       ENST00000381283 ENSE00003615598
6577  ENSG00000205726       ENST00000381283 ENSE00003660532
6578  ENSG00000205726       ENST00000381283 ENSE00003560708
6579  ENSG00000205726       ENST00000381283 ENSE00003582731
6580  ENSG00000205726       ENST00000381283 ENSE00001754766
6581  ENSG00000205726       ENST00000456489 ENSE00001778198
6582  ENSG00000205726       ENST00000456489 ENSE00001696492
6583  ENSG00000205726       ENST00000488166 ENSE00003508603
6584  ENSG00000205726       ENST00000488166 ENSE00003583157
6585  ENSG00000205726       ENST00000488166 ENSE00003632990
6586  ENSG00000205726       ENST00000488166 ENSE00003505623
6587  ENSG00000205726       ENST00000488166 ENSE00001872002
6588  ENSG00000205726       ENST00000488166 ENSE00001857476
6589  ENSG00000205726       ENST00000488166 ENSE00001911086
6590  ENSG00000205726       ENST00000474132 ENSE00001815146
6591  ENSG00000205726       ENST00000474132 ENSE00001911561
6592  ENSG00000205726       ENST00000419241 ENSE00002294975
6593  ENSG00000205726       ENST00000419241 ENSE00003490444
6594  ENSG00000205726       ENST00000419241 ENSE00001658212
6595  ENSG00000205726       ENST00000419241 ENSE00002521154
6596  ENSG00000205726       ENST00000419241 ENSE00003597769
6597  ENSG00000205726       ENST00000419241 ENSE00001632947
6598  ENSG00000205726       ENST00000440794 ENSE00003746393
6599  ENSG00000205726       ENST00000440794 ENSE00003629591
6600  ENSG00000205726       ENST00000440794 ENSE00002528364
6601  ENSG00000205726       ENST00000440794 ENSE00002510832
6602  ENSG00000205726       ENST00000440794 ENSE00001653730
6603  ENSG00000205726       ENST00000465143 ENSE00002525954
6604  ENSG00000205726       ENST00000465143 ENSE00001949525
6605  ENSG00000205726       ENST00000487427 ENSE00003459835
6606  ENSG00000205726       ENST00000487427 ENSE00001874278
6607  ENSG00000205726       ENST00000487427 ENSE00003463149
6608  ENSG00000205726       ENST00000487427 ENSE00003617459
6609  ENSG00000205726       ENST00000487427 ENSE00002233835
6610  ENSG00000205726       ENST00000437126 ENSE00003550586
6611  ENSG00000205726       ENST00000437126 ENSE00003615431
6612  ENSG00000205726       ENST00000437126 ENSE00001780124
6613  ENSG00000205726       ENST00000437126 ENSE00003654428
6614  ENSG00000205726       ENST00000437126 ENSE00001766726
6615  ENSG00000205726       ENST00000437126 ENSE00001602683
6616  ENSG00000205726       ENST00000428240 ENSE00003459835
6617  ENSG00000205726       ENST00000428240 ENSE00003617459
6618  ENSG00000205726       ENST00000428240 ENSE00001645690
6619  ENSG00000205726       ENST00000428240 ENSE00001778723
6620  ENSG00000205726       ENST00000472548 ENSE00003615431
6621  ENSG00000205726       ENST00000472548 ENSE00003641021
6622  ENSG00000205726       ENST00000472548 ENSE00003497810
6623  ENSG00000205726       ENST00000472548 ENSE00001924934
6624  ENSG00000205726       ENST00000472548 ENSE00001924956
6625  ENSG00000205726       ENST00000479424 ENSE00003615431
6626  ENSG00000205726       ENST00000479424 ENSE00003641021
6627  ENSG00000205726       ENST00000479424 ENSE00003497810
6628  ENSG00000205726       ENST00000479424 ENSE00001924956
6629  ENSG00000205726       ENST00000479424 ENSE00001901752
6630  ENSG00000205726       ENST00000462212 ENSE00003641021
6631  ENSG00000205726       ENST00000462212 ENSE00003497810
6632  ENSG00000205726       ENST00000462212 ENSE00001924956
6633  ENSG00000205726       ENST00000462212 ENSE00001879685
6634  ENSG00000205726       ENST00000495656 ENSE00003615431
6635  ENSG00000205726       ENST00000495656 ENSE00003641021
6636  ENSG00000205726       ENST00000495656 ENSE00003497810
6637  ENSG00000205726       ENST00000495656 ENSE00001924934
6638  ENSG00000205726       ENST00000495656 ENSE00001828929
6639  ENSG00000205726       ENST00000475422 ENSE00001879685
6640  ENSG00000205726       ENST00000475422 ENSE00001828929
6641  ENSG00000205726       ENST00000489261 ENSE00003641021
6642  ENSG00000205726       ENST00000489261 ENSE00003497810
6643  ENSG00000205726       ENST00000489261 ENSE00001879685
6644  ENSG00000205726       ENST00000489261 ENSE00001828929
6645  ENSG00000205726       ENST00000381284 ENSE00003644095
6646  ENSG00000205726       ENST00000381284 ENSE00003529805
6647  ENSG00000205726       ENST00000381284 ENSE00003507202
6648  ENSG00000205726       ENST00000381284 ENSE00003590878
6649  ENSG00000205726       ENST00000381284 ENSE00003543412
6650  ENSG00000205726       ENST00000381284 ENSE00003535724
6651  ENSG00000205726       ENST00000381284 ENSE00001759724
6652  ENSG00000205726       ENST00000381284 ENSE00001794822
6653  ENSG00000205726       ENST00000420666 ENSE00001678440
6654  ENSG00000205726       ENST00000420666 ENSE00003672211
6655  ENSG00000205726       ENST00000420666 ENSE00003523032
6656  ENSG00000205726       ENST00000420666 ENSE00001623875
6657  ENSG00000205726       ENST00000415023 ENSE00003590878
6658  ENSG00000205726       ENST00000415023 ENSE00003543412
6659  ENSG00000205726       ENST00000415023 ENSE00003535724
6660  ENSG00000205726       ENST00000415023 ENSE00001794822
6661  ENSG00000205726       ENST00000415023 ENSE00001698022
6662  ENSG00000205726       ENST00000379960 ENSE00002306218
6663  ENSG00000205726       ENST00000379960 ENSE00003615598
6664  ENSG00000205726       ENST00000379960 ENSE00003660532
6665  ENSG00000205726       ENST00000379960 ENSE00003560708
6666  ENSG00000205726       ENST00000379960 ENSE00003582731
6667  ENSG00000205726       ENST00000379960 ENSE00003731962
6668  ENSG00000205726       ENST00000379960 ENSE00003717171
6669  ENSG00000205726       ENST00000379960 ENSE00003728232
6670  ENSG00000205726       ENST00000379960 ENSE00003726732
6671  ENSG00000205726       ENST00000379960 ENSE00003736560
6672  ENSG00000205726       ENST00000379960 ENSE00003731102
6673  ENSG00000205726       ENST00000379960 ENSE00002230721
6674  ENSG00000205726       ENST00000379960 ENSE00003720754
6675  ENSG00000205726       ENST00000379960 ENSE00003490444
6676  ENSG00000205726       ENST00000379960 ENSE00003750025
6677  ENSG00000205726       ENST00000379960 ENSE00003459835
6678  ENSG00000205726       ENST00000379960 ENSE00003641021
6679  ENSG00000205726       ENST00000379960 ENSE00003715155
6680  ENSG00000205726       ENST00000379960 ENSE00003717775
6681  ENSG00000205726       ENST00000379960 ENSE00003719460
6682  ENSG00000205726       ENST00000381285 ENSE00003554783
6683  ENSG00000205726       ENST00000381285 ENSE00003636097
6684  ENSG00000205726       ENST00000381285 ENSE00003727180
6685  ENSG00000205726       ENST00000381285 ENSE00003789821
6686  ENSG00000205726       ENST00000381285 ENSE00001701224
6687  ENSG00000205726       ENST00000381285 ENSE00002306218
6688  ENSG00000205726       ENST00000381285 ENSE00003615598
6689  ENSG00000205726       ENST00000381285 ENSE00003660532
6690  ENSG00000205726       ENST00000381285 ENSE00003560708
6691  ENSG00000205726       ENST00000381285 ENSE00003582731
6692  ENSG00000205726       ENST00000381285 ENSE00002289133
6693  ENSG00000205726       ENST00000381285 ENSE00003754038
6694  ENSG00000205726       ENST00000381285 ENSE00003740685
6695  ENSG00000205726       ENST00000381285 ENSE00003748649
6696  ENSG00000205726       ENST00000381285 ENSE00003716255
6697  ENSG00000205726       ENST00000381285 ENSE00003716800
6698  ENSG00000205726       ENST00000381285 ENSE00003722466
6699  ENSG00000205726       ENST00000381285 ENSE00002294975
6700  ENSG00000205726       ENST00000381285 ENSE00003746393
6701  ENSG00000205726       ENST00000381285 ENSE00003629591
6702  ENSG00000205726       ENST00000381285 ENSE00001488097
6703  ENSG00000205726       ENST00000381285 ENSE00003615431
6704  ENSG00000205726       ENST00000381285 ENSE00003641021
6705  ENSG00000205726       ENST00000381285 ENSE00003497810
6706  ENSG00000205726       ENST00000381285 ENSE00003463149
6707  ENSG00000205726       ENST00000381285 ENSE00003617459
6708  ENSG00000205726       ENST00000381285 ENSE00003523032
6709  ENSG00000205726       ENST00000381285 ENSE00003512396
6710  ENSG00000205726       ENST00000381285 ENSE00003522306
6711  ENSG00000205726       ENST00000381285 ENSE00003663309
6712  ENSG00000205726       ENST00000381285 ENSE00003521528
6713  ENSG00000205726       ENST00000381285 ENSE00003581231
6714  ENSG00000205726       ENST00000381285 ENSE00003519879
6715  ENSG00000205726       ENST00000381285 ENSE00003584313
6716  ENSG00000205726       ENST00000381285 ENSE00003675722
6717  ENSG00000205726       ENST00000381285 ENSE00003571526
6718  ENSG00000205726       ENST00000381285 ENSE00003682629
6719  ENSG00000205726       ENST00000381285 ENSE00001664654
6720  ENSG00000205726       ENST00000399338 ENSE00003636097
6721  ENSG00000205726       ENST00000399338 ENSE00003727180
6722  ENSG00000205726       ENST00000399338 ENSE00003789821
6723  ENSG00000205726       ENST00000399338 ENSE00002306218
6724  ENSG00000205726       ENST00000399338 ENSE00003615598
6725  ENSG00000205726       ENST00000399338 ENSE00003660532
6726  ENSG00000205726       ENST00000399338 ENSE00003560708
6727  ENSG00000205726       ENST00000399338 ENSE00003582731
6728  ENSG00000205726       ENST00000399338 ENSE00002289133
6729  ENSG00000205726       ENST00000399338 ENSE00003754038
6730  ENSG00000205726       ENST00000399338 ENSE00003740685
6731  ENSG00000205726       ENST00000399338 ENSE00003748649
6732  ENSG00000205726       ENST00000399338 ENSE00003716255
6733  ENSG00000205726       ENST00000399338 ENSE00003716800
6734  ENSG00000205726       ENST00000399338 ENSE00003722466
6735  ENSG00000205726       ENST00000399338 ENSE00002294975
6736  ENSG00000205726       ENST00000399338 ENSE00003746393
6737  ENSG00000205726       ENST00000399338 ENSE00003629591
6738  ENSG00000205726       ENST00000399338 ENSE00003711579
6739  ENSG00000205726       ENST00000399338 ENSE00002220213
6740  ENSG00000205726       ENST00000399338 ENSE00001719494
6741  ENSG00000154721       ENST00000400532 ENSE00002192567
6742  ENSG00000154721       ENST00000400532 ENSE00001017308
6743  ENSG00000154721       ENST00000400532 ENSE00001017301
6744  ENSG00000154721       ENST00000400532 ENSE00001017300
6745  ENSG00000154721       ENST00000400532 ENSE00001017302
6746  ENSG00000154721       ENST00000400532 ENSE00001017305
6747  ENSG00000154721       ENST00000400532 ENSE00003679527
6748  ENSG00000154721       ENST00000400532 ENSE00001764187
6749  ENSG00000154721       ENST00000400532 ENSE00003467564
6750  ENSG00000154721       ENST00000400532 ENSE00001543360
6751  ENSG00000154721       ENST00000480456 ENSE00002192567
6752  ENSG00000154721       ENST00000480456 ENSE00001017308
6753  ENSG00000154721       ENST00000480456 ENSE00001017301
6754  ENSG00000154721       ENST00000480456 ENSE00001017300
6755  ENSG00000154721       ENST00000480456 ENSE00001017302
6756  ENSG00000154721       ENST00000480456 ENSE00001017305
6757  ENSG00000154721       ENST00000480456 ENSE00003679527
6758  ENSG00000154721       ENST00000480456 ENSE00001764187
6759  ENSG00000154721       ENST00000480456 ENSE00003467564
6760  ENSG00000154721       ENST00000480456 ENSE00001862906
6761  ENSG00000154721       ENST00000460679 ENSE00001017301
6762  ENSG00000154721       ENST00000460679 ENSE00001017300
6763  ENSG00000154721       ENST00000460679 ENSE00001017302
6764  ENSG00000154721       ENST00000460679 ENSE00001017305
6765  ENSG00000154721       ENST00000460679 ENSE00003679527
6766  ENSG00000154721       ENST00000460679 ENSE00001764187
6767  ENSG00000154721       ENST00000460679 ENSE00001945621
6768  ENSG00000154721       ENST00000460679 ENSE00003610477
6769  ENSG00000154721       ENST00000460679 ENSE00001889046
6770  ENSG00000154721       ENST00000492962 ENSE00001928073
6771  ENSG00000154721       ENST00000492962 ENSE00003665697
6772  ENSG00000154721       ENST00000492962 ENSE00001855937
6773  ENSG00000154721       ENST00000477351 ENSE00003610477
6774  ENSG00000154721       ENST00000477351 ENSE00001951699
6775  ENSG00000154721       ENST00000477351 ENSE00001949672
6776  ENSG00000154721       ENST00000471689 ENSE00001885439
6777  ENSG00000154721       ENST00000471689 ENSE00001852067
6778  ENSG00000154721       ENST00000312957 ENSE00001017308
6779  ENSG00000154721       ENST00000312957 ENSE00001017300
6780  ENSG00000154721       ENST00000312957 ENSE00001017302
6781  ENSG00000154721       ENST00000312957 ENSE00001017305
6782  ENSG00000154721       ENST00000312957 ENSE00003679527
6783  ENSG00000154721       ENST00000312957 ENSE00001764187
6784  ENSG00000154721       ENST00000312957 ENSE00003467564
6785  ENSG00000154721       ENST00000312957 ENSE00001250732
6786  ENSG00000154721       ENST00000312957 ENSE00002256602
6787  ENSG00000180509       ENST00000399289 ENSE00001537358
6788  ENSG00000180509       ENST00000399289 ENSE00001537356
6789  ENSG00000180509       ENST00000399289 ENSE00001954035
6790  ENSG00000180509       ENST00000399286 ENSE00001340756
6791  ENSG00000180509       ENST00000399286 ENSE00001340749
6792  ENSG00000180509       ENST00000399286 ENSE00001340746
6793  ENSG00000180509       ENST00000399286 ENSE00001787865
6794  ENSG00000180509       ENST00000416357 ENSE00001537344
6795  ENSG00000180509       ENST00000416357 ENSE00001537342
6796  ENSG00000180509       ENST00000399284 ENSE00001537356
6797  ENSG00000180509       ENST00000399284 ENSE00001537342
6798  ENSG00000180509       ENST00000399284 ENSE00001537339
6799  ENSG00000180509       ENST00000489175 ENSE00001811534
6800  ENSG00000180509       ENST00000489175 ENSE00001859709
6801  ENSG00000180509       ENST00000432085 ENSE00001537358
6802  ENSG00000180509       ENST00000432085 ENSE00001340746
6803  ENSG00000180509       ENST00000432085 ENSE00003743338
6804  ENSG00000180509       ENST00000621601 ENSE00001340746
6805  ENSG00000180509       ENST00000621601 ENSE00003743338
6806  ENSG00000180509       ENST00000621601 ENSE00003711662
6807  ENSG00000180509       ENST00000337385 ENSE00001340746
6808  ENSG00000180509       ENST00000337385 ENSE00003722111
6809  ENSG00000180509       ENST00000337385 ENSE00003729051
6810  ENSG00000180509       ENST00000611936 ENSE00003743338
6811  ENSG00000180509       ENST00000611936 ENSE00003742486
6812  ENSG00000276289       ENST00000618699 ENSE00003740911
6813  ENSG00000276289       ENST00000618699 ENSE00003758541
6814  ENSG00000276289       ENST00000618699 ENSE00003718509
6815  ENSG00000276289       ENST00000623803 ENSE00003753201
6816  ENSG00000276289       ENST00000623803 ENSE00003755363
6817  ENSG00000276289       ENST00000623803 ENSE00003755128
6818  ENSG00000276289       ENST00000617668 ENSE00003719853
6819  ENSG00000276289       ENST00000617668 ENSE00003757666
6820  ENSG00000276289       ENST00000622690 ENSE00003753201
6821  ENSG00000276289       ENST00000622690 ENSE00003752992
6822  ENSG00000276289       ENST00000622690 ENSE00003722011
6823  ENSG00000159197       ENST00000290310 ENSE00001043935
6824  ENSG00000159197       ENST00000290310 ENSE00001043939
6825  ENSG00000157551       ENST00000549158 ENSE00002335868
6826  ENSG00000157551       ENST00000549158 ENSE00003458938
6827  ENSG00000157551       ENST00000549158 ENSE00001301985
6828  ENSG00000157551       ENST00000549158 ENSE00002374819
6829  ENSG00000157551       ENST00000549158 ENSE00001033335
6830  ENSG00000157551       ENST00000549158 ENSE00002348116
6831  ENSG00000157551       ENST00000549805 ENSE00002335868
6832  ENSG00000157551       ENST00000549805 ENSE00003458938
6833  ENSG00000157551       ENST00000549805 ENSE00001301985
6834  ENSG00000157551       ENST00000549805 ENSE00002374819
6835  ENSG00000157551       ENST00000549805 ENSE00001033335
6836  ENSG00000157551       ENST00000549805 ENSE00002343752
6837  ENSG00000157551       ENST00000549805 ENSE00002402049
6838  ENSG00000157551       ENST00000547341 ENSE00002335868
6839  ENSG00000157551       ENST00000547341 ENSE00001301985
6840  ENSG00000157551       ENST00000547341 ENSE00002374819
6841  ENSG00000157551       ENST00000547341 ENSE00001033335
6842  ENSG00000157551       ENST00000547341 ENSE00002402049
6843  ENSG00000157551       ENST00000549932 ENSE00002335868
6844  ENSG00000157551       ENST00000549932 ENSE00003458938
6845  ENSG00000157551       ENST00000549932 ENSE00002374819
6846  ENSG00000157551       ENST00000549932 ENSE00001033335
6847  ENSG00000157551       ENST00000549932 ENSE00002402049
6848  ENSG00000157551       ENST00000547595 ENSE00002335868
6849  ENSG00000157551       ENST00000547595 ENSE00001033335
6850  ENSG00000157551       ENST00000547595 ENSE00002402049
6851  ENSG00000157551       ENST00000548700 ENSE00002335868
6852  ENSG00000157551       ENST00000548700 ENSE00001033335
6853  ENSG00000157551       ENST00000548700 ENSE00002383535
6854  ENSG00000157551       ENST00000551422 ENSE00002335868
6855  ENSG00000157551       ENST00000551422 ENSE00003458938
6856  ENSG00000157551       ENST00000551422 ENSE00001033335
6857  ENSG00000157551       ENST00000551422 ENSE00002402049
6858  ENSG00000157551       ENST00000398925 ENSE00001033335
6859  ENSG00000157551       ENST00000398925 ENSE00001535620
6860  ENSG00000157551       ENST00000398925 ENSE00001535617
6861  ENSG00000157551       ENST00000398925 ENSE00001535636
6862  ENSG00000157551       ENST00000398925 ENSE00001535612
6863  ENSG00000157551       ENST00000398928 ENSE00001033335
6864  ENSG00000157551       ENST00000398928 ENSE00001535620
6865  ENSG00000157551       ENST00000398928 ENSE00001535617
6866  ENSG00000157551       ENST00000398928 ENSE00001535616
6867  ENSG00000157551       ENST00000328656 ENSE00001301985
6868  ENSG00000157551       ENST00000328656 ENSE00001033335
6869  ENSG00000157551       ENST00000328656 ENSE00001535620
6870  ENSG00000157551       ENST00000328656 ENSE00003705460
6871  ENSG00000157551       ENST00000443341 ENSE00001301985
6872  ENSG00000157551       ENST00000443341 ENSE00001033335
6873  ENSG00000157551       ENST00000443341 ENSE00001033337
6874  ENSG00000157551       ENST00000443341 ENSE00001668739
6875  ENSG00000157551       ENST00000443341 ENSE00001741850
6876  ENSG00000157551       ENST00000443341 ENSE00001691624
6877  ENSG00000157551       ENST00000443341 ENSE00001794215
6878  ENSG00000157551       ENST00000417042 ENSE00001033335
6879  ENSG00000157551       ENST00000417042 ENSE00001535636
6880  ENSG00000157551       ENST00000417042 ENSE00001740674
6881  ENSG00000157551       ENST00000417042 ENSE00001687965
6882  ENSG00000157551       ENST00000417042 ENSE00001795470
6883  ENSG00000157551       ENST00000398938 ENSE00001033335
6884  ENSG00000157551       ENST00000398938 ENSE00001535646
6885  ENSG00000157551       ENST00000398938 ENSE00001848721
6886  ENSG00000157551       ENST00000398932 ENSE00001033335
6887  ENSG00000157551       ENST00000398932 ENSE00001535636
6888  ENSG00000157551       ENST00000398932 ENSE00001535637
6889  ENSG00000157551       ENST00000398932 ENSE00001535635
6890  ENSG00000157551       ENST00000438657 ENSE00001033335
6891  ENSG00000157551       ENST00000438657 ENSE00001593022
6892  ENSG00000157551       ENST00000438657 ENSE00001733831
6893  ENSG00000157551       ENST00000398930 ENSE00001033335
6894  ENSG00000157551       ENST00000398930 ENSE00001535636
6895  ENSG00000157551       ENST00000398930 ENSE00001535627
6896  ENSG00000157551       ENST00000398930 ENSE00001535623
6897  ENSG00000157551       ENST00000398927 ENSE00001033335
6898  ENSG00000157551       ENST00000398927 ENSE00001535616
6899  ENSG00000157551       ENST00000398927 ENSE00001535614
6900  ENSG00000157551       ENST00000419868 ENSE00001708040
6901  ENSG00000157551       ENST00000419868 ENSE00001634929
6902  ENSG00000157551       ENST00000398934 ENSE00001033335
6903  ENSG00000157551       ENST00000398934 ENSE00001535638
6904  ENSG00000157551       ENST00000398934 ENSE00001204566
6905  ENSG00000157551       ENST00000613499 ENSE00001301985
6906  ENSG00000157551       ENST00000613499 ENSE00002374819
6907  ENSG00000157551       ENST00000613499 ENSE00001033335
6908  ENSG00000157551       ENST00000613499 ENSE00001204566
6909  ENSG00000157551       ENST00000613499 ENSE00003739382
6910  ENSG00000157551       ENST00000612702 ENSE00001301985
6911  ENSG00000157551       ENST00000612702 ENSE00001033335
6912  ENSG00000157551       ENST00000612702 ENSE00001687965
6913  ENSG00000157551       ENST00000612702 ENSE00001204566
6914  ENSG00000157551       ENST00000612702 ENSE00003739382
6915  ENSG00000157542       ENST00000609713 ENSE00001543119
6916  ENSG00000157542       ENST00000609713 ENSE00001543115
6917  ENSG00000157542       ENST00000609713 ENSE00001033313
6918  ENSG00000157542       ENST00000609713 ENSE00003704485
6919  ENSG00000233213       ENST00000435001 ENSE00001786587
6920  ENSG00000233213       ENST00000435001 ENSE00001695569
6921  ENSG00000234439       ENST00000447938 ENSE00001742157
6922  ENSG00000215455       ENST00000400375 ENSE00001542634
6923  ENSG00000221859       ENST00000380095 ENSE00001483712
6924  ENSG00000243489       ENST00000334670 ENSE00001433049
6925  ENSG00000189169       ENST00000400365 ENSE00001542603
6926  ENSG00000189169       ENST00000618832 ENSE00003714599
6927  ENSG00000189169       ENST00000618832 ENSE00003740231
6928  ENSG00000189169       ENST00000618832 ENSE00003731665
6929  ENSG00000236382       ENST00000412914 ENSE00001709572
6930  ENSG00000205445       ENST00000391621 ENSE00001509399
6931  ENSG00000205445       ENST00000498210 ENSE00001917994
6932  ENSG00000205445       ENST00000498210 ENSE00001878737
6933  ENSG00000212935       ENST00000391620 ENSE00001509398
6934  ENSG00000215454       ENST00000400374 ENSE00001542630
6935  ENSG00000215454       ENST00000622352 ENSE00003731192
6936  ENSG00000215454       ENST00000622352 ENSE00003802553
6937  ENSG00000215454       ENST00000622352 ENSE00003751886
6938  ENSG00000215454       ENST00000622352 ENSE00003811422
6939  ENSG00000215454       ENST00000622352 ENSE00003739004
6940  ENSG00000215454       ENST00000616689 ENSE00003803406
6941  ENSG00000215454       ENST00000616689 ENSE00003801807
6942  ENSG00000215454       ENST00000616689 ENSE00003714391
6943  ENSG00000215454       ENST00000616689 ENSE00003742381
6944  ENSG00000241123       ENST00000400372 ENSE00001542625
6945  ENSG00000188155       ENST00000400368 ENSE00001542615
6946  ENSG00000272804       ENST00000609664 ENSE00003707050
6947  ENSG00000187766       ENST00000334662 ENSE00001332752
6948  ENSG00000221837       ENST00000397911 ENSE00001530698
6949  ENSG00000221837       ENST00000484861 ENSE00001912554
6950  ENSG00000221837       ENST00000484861 ENSE00001891028
6951  ENSG00000221837       ENST00000616529 ENSE00003737172
6952  ENSG00000221837       ENST00000616529 ENSE00003712036
6953  ENSG00000221837       ENST00000616529 ENSE00003726178
6954  ENSG00000182591       ENST00000332378 ENSE00001329933
6955  ENSG00000187175       ENST00000391617 ENSE00001382580
6956  ENSG00000221864       ENST00000360770 ENSE00001406200
6957  ENSG00000205439       ENST00000397907 ENSE00001370311
6958  ENSG00000212933       ENST00000391618 ENSE00001509396
6959  ENSG00000198390       ENST00000355459 ENSE00001403567
6960  ENSG00000182816       ENST00000399889 ENSE00001540640
6961  ENSG00000240432       ENST00000390690 ENSE00001508613
6962  ENSG00000186971       ENST00000334068 ENSE00001338572
6963  ENSG00000233640       ENST00000418755 ENSE00001662051
6964  ENSG00000250973       ENST00000508999 ENSE00002056975
6965  ENSG00000186970       ENST00000334067 ENSE00001338571
6966  ENSG00000184351       ENST00000390689 ENSE00001508612
6967  ENSG00000235312       ENST00000445258 ENSE00001756027
6968  ENSG00000236612       ENST00000439851 ENSE00001753828
6969  ENSG00000186965       ENST00000334055 ENSE00001338566
6970  ENSG00000244025       ENST00000334063 ENSE00001293210
6971  ENSG00000186967       ENST00000334058 ENSE00001338568
6972  ENSG00000186977       ENST00000334151 ENSE00001338619
6973  ENSG00000186925       ENST00000334046 ENSE00001338564
6974  ENSG00000244362       ENST00000334849 ENSE00001337915
6975  ENSG00000206102       ENST00000382822 ENSE00001493459
6976  ENSG00000237841       ENST00000421795 ENSE00001739380
6977  ENSG00000244624       ENST00000334664 ENSE00001337800
6978  ENSG00000184032       ENST00000330798 ENSE00001293539
6979  ENSG00000206104       ENST00000382826 ENSE00001493466
6980  ENSG00000206105       ENST00000382828 ENSE00001493468
6981  ENSG00000187005       ENST00000335093 ENSE00001339229
6982  ENSG00000187026       ENST00000333892 ENSE00001339702
6983  ENSG00000231068       ENST00000444335 ENSE00001667917
6984  ENSG00000236400       ENST00000454921 ENSE00001793600
6985  ENSG00000186924       ENST00000334680 ENSE00001337805
6986  ENSG00000206106       ENST00000382830 ENSE00001493474
6987  ENSG00000186980       ENST00000334160 ENSE00001401881
6988  ENSG00000188694       ENST00000340345 ENSE00001384913
6989  ENSG00000232263       ENST00000416044 ENSE00001729371
6990  ENSG00000197683       ENST00000360542 ENSE00001402413
6991  ENSG00000206107       ENST00000382835 ENSE00001493501
6992  ENSG00000184724       ENST00000329122 ENSE00001540538
6993  ENSG00000186930       ENST00000334897 ENSE00001337941
6994  ENSG00000212938       ENST00000391624 ENSE00001509402
6995  ENSG00000274749       ENST00000621162 ENSE00003748555
6996  ENSG00000183640       ENST00000329621 ENSE00001315685
6997  ENSG00000233036       ENST00000440620 ENSE00001803536
6998  ENSG00000227840       ENST00000423658 ENSE00001597490
6999  ENSG00000157578       ENST00000288350 ENSE00001485938
7000  ENSG00000157578       ENST00000288350 ENSE00001380142
7001  ENSG00000157578       ENST00000288350 ENSE00001391688
7002  ENSG00000157578       ENST00000288350 ENSE00001367319
7003  ENSG00000157578       ENST00000288350 ENSE00003787481
7004  ENSG00000157578       ENST00000288350 ENSE00001033593
7005  ENSG00000157578       ENST00000288350 ENSE00003503789
7006  ENSG00000157578       ENST00000288350 ENSE00003491574
7007  ENSG00000157578       ENST00000288350 ENSE00003604959
7008  ENSG00000157578       ENST00000288350 ENSE00003608880
7009  ENSG00000157578       ENST00000288350 ENSE00001033603
7010  ENSG00000157578       ENST00000358268 ENSE00001391688
7011  ENSG00000157578       ENST00000358268 ENSE00001367319
7012  ENSG00000157578       ENST00000358268 ENSE00003787481
7013  ENSG00000157578       ENST00000358268 ENSE00001033593
7014  ENSG00000157578       ENST00000358268 ENSE00003503789
7015  ENSG00000157578       ENST00000358268 ENSE00003491574
7016  ENSG00000157578       ENST00000358268 ENSE00003604959
7017  ENSG00000157578       ENST00000358268 ENSE00003608880
7018  ENSG00000157578       ENST00000358268 ENSE00001402234
7019  ENSG00000157578       ENST00000358268 ENSE00001485810
7020  ENSG00000157578       ENST00000495240 ENSE00001848538
7021  ENSG00000157578       ENST00000495240 ENSE00003563475
7022  ENSG00000157578       ENST00000495240 ENSE00003610886
7023  ENSG00000157578       ENST00000495240 ENSE00001893402
7024  ENSG00000157578       ENST00000484878 ENSE00001380142
7025  ENSG00000157578       ENST00000484878 ENSE00001391688
7026  ENSG00000157578       ENST00000484878 ENSE00001613374
7027  ENSG00000157578       ENST00000484878 ENSE00001625544
7028  ENSG00000157578       ENST00000484878 ENSE00001848196
7029  ENSG00000157578       ENST00000484878 ENSE00001877157
7030  ENSG00000157578       ENST00000484878 ENSE00003595828
7031  ENSG00000157578       ENST00000484878 ENSE00003539949
7032  ENSG00000157578       ENST00000485895 ENSE00001485938
7033  ENSG00000157578       ENST00000485895 ENSE00001391688
7034  ENSG00000157578       ENST00000485895 ENSE00001367319
7035  ENSG00000157578       ENST00000485895 ENSE00003787481
7036  ENSG00000157578       ENST00000485895 ENSE00003697933
7037  ENSG00000157578       ENST00000491625 ENSE00001380142
7038  ENSG00000157578       ENST00000491625 ENSE00001367319
7039  ENSG00000157578       ENST00000491625 ENSE00001937581
7040  ENSG00000157578       ENST00000491625 ENSE00001928148
7041  ENSG00000157578       ENST00000459939 ENSE00001391688
7042  ENSG00000157578       ENST00000459939 ENSE00001367319
7043  ENSG00000157578       ENST00000459939 ENSE00001810020
7044  ENSG00000157578       ENST00000459939 ENSE00001932346
7045  ENSG00000157578       ENST00000490184 ENSE00001380142
7046  ENSG00000157578       ENST00000490184 ENSE00001391688
7047  ENSG00000157578       ENST00000490184 ENSE00001367319
7048  ENSG00000157578       ENST00000490184 ENSE00001822113
7049  ENSG00000157578       ENST00000490184 ENSE00001791403
7050  ENSG00000157578       ENST00000490184 ENSE00001864188
7051  ENSG00000157578       ENST00000490184 ENSE00001864965
7052  ENSG00000157578       ENST00000418018 ENSE00001380142
7053  ENSG00000157578       ENST00000418018 ENSE00001367319
7054  ENSG00000157578       ENST00000418018 ENSE00003787481
7055  ENSG00000157578       ENST00000418018 ENSE00001663615
7056  ENSG00000157578       ENST00000418018 ENSE00001698170
7057  ENSG00000157578       ENST00000418018 ENSE00001736929
7058  ENSG00000157578       ENST00000466954 ENSE00001380142
7059  ENSG00000157578       ENST00000466954 ENSE00001402234
7060  ENSG00000157578       ENST00000466954 ENSE00001698170
7061  ENSG00000157578       ENST00000466954 ENSE00001732749
7062  ENSG00000157578       ENST00000466954 ENSE00001834842
7063  ENSG00000157578       ENST00000448288 ENSE00001391688
7064  ENSG00000157578       ENST00000448288 ENSE00003787481
7065  ENSG00000157578       ENST00000448288 ENSE00001732749
7066  ENSG00000157578       ENST00000448288 ENSE00001643940
7067  ENSG00000157578       ENST00000434281 ENSE00001380142
7068  ENSG00000157578       ENST00000434281 ENSE00001367319
7069  ENSG00000157578       ENST00000434281 ENSE00001768871
7070  ENSG00000157578       ENST00000434281 ENSE00001649696
7071  ENSG00000157578       ENST00000438404 ENSE00001380142
7072  ENSG00000157578       ENST00000438404 ENSE00001367319
7073  ENSG00000157578       ENST00000438404 ENSE00001791403
7074  ENSG00000157578       ENST00000438404 ENSE00001650724
7075  ENSG00000157578       ENST00000438404 ENSE00001663055
7076  ENSG00000157578       ENST00000438404 ENSE00001688947
7077  ENSG00000157578       ENST00000411566 ENSE00001391688
7078  ENSG00000157578       ENST00000411566 ENSE00001367319
7079  ENSG00000157578       ENST00000411566 ENSE00001402234
7080  ENSG00000157578       ENST00000411566 ENSE00001684484
7081  ENSG00000157578       ENST00000468009 ENSE00001367319
7082  ENSG00000157578       ENST00000468009 ENSE00001954372
7083  ENSG00000157578       ENST00000468009 ENSE00003182186
7084  ENSG00000157578       ENST00000415863 ENSE00001380142
7085  ENSG00000157578       ENST00000415863 ENSE00001391688
7086  ENSG00000157578       ENST00000415863 ENSE00001367319
7087  ENSG00000157578       ENST00000415863 ENSE00001601398
7088  ENSG00000157578       ENST00000415863 ENSE00001655912
7089  ENSG00000157578       ENST00000415863 ENSE00001641048
7090  ENSG00000157578       ENST00000426783 ENSE00001391688
7091  ENSG00000157578       ENST00000426783 ENSE00001367319
7092  ENSG00000157578       ENST00000426783 ENSE00001625544
7093  ENSG00000157578       ENST00000426783 ENSE00001601398
7094  ENSG00000157578       ENST00000426783 ENSE00001655912
7095  ENSG00000157578       ENST00000426783 ENSE00001693947
7096  ENSG00000157578       ENST00000456017 ENSE00001380142
7097  ENSG00000157578       ENST00000456017 ENSE00001698170
7098  ENSG00000157578       ENST00000456017 ENSE00001732749
7099  ENSG00000157578       ENST00000456017 ENSE00001796700
7100  ENSG00000157578       ENST00000456017 ENSE00001645080
7101  ENSG00000157578       ENST00000451131 ENSE00001380142
7102  ENSG00000157578       ENST00000451131 ENSE00001391688
7103  ENSG00000157578       ENST00000451131 ENSE00001613374
7104  ENSG00000157578       ENST00000451131 ENSE00001791403
7105  ENSG00000157578       ENST00000451131 ENSE00001732749
7106  ENSG00000157578       ENST00000451131 ENSE00001605897
7107  ENSG00000157578       ENST00000480612 ENSE00001923238
7108  ENSG00000157578       ENST00000480612 ENSE00001863071
7109  ENSG00000157578       ENST00000380671 ENSE00001033593
7110  ENSG00000157578       ENST00000380671 ENSE00003503789
7111  ENSG00000157578       ENST00000380671 ENSE00003491574
7112  ENSG00000157578       ENST00000380671 ENSE00003604959
7113  ENSG00000157578       ENST00000380671 ENSE00003608880
7114  ENSG00000157578       ENST00000380671 ENSE00001033603
7115  ENSG00000157578       ENST00000380671 ENSE00003733938
7116  ENSG00000227702       ENST00000413718 ENSE00001672060
7117  ENSG00000227702       ENST00000413718 ENSE00001747712
7118  ENSG00000227702       ENST00000413718 ENSE00001704971
7119  ENSG00000232401       ENST00000432830 ENSE00001777924
7120  ENSG00000232401       ENST00000432830 ENSE00001623179
7121  ENSG00000232401       ENST00000432830 ENSE00001768569
7122  ENSG00000225298       ENST00000411460 ENSE00001631200
7123  ENSG00000225298       ENST00000411460 ENSE00001715187
7124  ENSG00000225298       ENST00000411460 ENSE00001703324
7125  ENSG00000225298       ENST00000411460 ENSE00001718385
7126  ENSG00000225298       ENST00000425376 ENSE00001715187
7127  ENSG00000225298       ENST00000425376 ENSE00001718385
7128  ENSG00000225298       ENST00000425376 ENSE00001659422
7129  ENSG00000225298       ENST00000425376 ENSE00001676871
7130  ENSG00000225298       ENST00000442550 ENSE00001715187
7131  ENSG00000225298       ENST00000442550 ENSE00001703324
7132  ENSG00000225298       ENST00000442550 ENSE00001718385
7133  ENSG00000225298       ENST00000442550 ENSE00001768533
7134  ENSG00000223806       ENST00000448579 ENSE00001738568
7135  ENSG00000223806       ENST00000448579 ENSE00001785567
7136  ENSG00000223806       ENST00000448579 ENSE00001662035
7137  ENSG00000223806       ENST00000448579 ENSE00001660742
7138  ENSG00000223806       ENST00000448579 ENSE00001610560
7139  ENSG00000223806       ENST00000411989 ENSE00001738568
7140  ENSG00000223806       ENST00000411989 ENSE00001660742
7141  ENSG00000223806       ENST00000411989 ENSE00001610560
7142  ENSG00000223806       ENST00000411989 ENSE00001640534
7143  ENSG00000223806       ENST00000429621 ENSE00002495358
7144  ENSG00000223806       ENST00000429621 ENSE00001738568
7145  ENSG00000223806       ENST00000429621 ENSE00001662035
7146  ENSG00000223806       ENST00000429621 ENSE00001660742
7147  ENSG00000223806       ENST00000429621 ENSE00001610560
7148  ENSG00000223806       ENST00000429621 ENSE00001634264
7149  ENSG00000185433       ENST00000441013 ENSE00001299512
7150  ENSG00000185433       ENST00000441013 ENSE00001312769
7151  ENSG00000185433       ENST00000441013 ENSE00001543403
7152  ENSG00000185433       ENST00000441013 ENSE00001543401
7153  ENSG00000185433       ENST00000332587 ENSE00001299512
7154  ENSG00000185433       ENST00000332587 ENSE00001312769
7155  ENSG00000185433       ENST00000332587 ENSE00001543403
7156  ENSG00000185433       ENST00000332587 ENSE00001543401
7157  ENSG00000185433       ENST00000332587 ENSE00001543404
7158  ENSG00000185433       ENST00000440205 ENSE00001543403
7159  ENSG00000185433       ENST00000440205 ENSE00001739371
7160  ENSG00000185433       ENST00000440205 ENSE00001596099
7161  ENSG00000185433       ENST00000439840 ENSE00001312769
7162  ENSG00000185433       ENST00000439840 ENSE00001543403
7163  ENSG00000185433       ENST00000439840 ENSE00001543404
7164  ENSG00000185433       ENST00000439840 ENSE00001747397
7165  ENSG00000230323       ENST00000411605 ENSE00001698149
7166  ENSG00000230323       ENST00000411605 ENSE00001749862
7167  ENSG00000230323       ENST00000411605 ENSE00001704163
7168  ENSG00000230323       ENST00000414877 ENSE00001698149
7169  ENSG00000230323       ENST00000414877 ENSE00001704163
7170  ENSG00000230323       ENST00000414877 ENSE00001609411
7171  ENSG00000230323       ENST00000414877 ENSE00001674233
7172  ENSG00000230978       ENST00000430635 ENSE00001611927
7173  ENSG00000230978       ENST00000430635 ENSE00001601444
7174  ENSG00000230978       ENST00000430635 ENSE00001697304
7175  ENSG00000230978       ENST00000430635 ENSE00001743703
7176  ENSG00000230978       ENST00000430635 ENSE00001721912
7177  ENSG00000230978       ENST00000430635 ENSE00001650166
7178  ENSG00000226935       ENST00000412526 ENSE00001621285
7179  ENSG00000226935       ENST00000412526 ENSE00001680619
7180  ENSG00000226935       ENST00000455939 ENSE00001680619
7181  ENSG00000226935       ENST00000455939 ENSE00001704735
7182  ENSG00000234880       ENST00000439088 ENSE00001765719
7183  ENSG00000234880       ENST00000439088 ENSE00001802548
7184  ENSG00000234880       ENST00000434081 ENSE00001707883
7185  ENSG00000234880       ENST00000434081 ENSE00001609589
7186  ENSG00000261706       ENST00000569966 ENSE00002621024
7187  ENSG00000215533       ENST00000447125 ENSE00001543338
7188  ENSG00000215533       ENST00000447125 ENSE00001766934
7189  ENSG00000215533       ENST00000447125 ENSE00001686651
7190  ENSG00000215533       ENST00000420364 ENSE00001686651
7191  ENSG00000215533       ENST00000420364 ENSE00001806032
7192  ENSG00000215533       ENST00000431661 ENSE00001647948
7193  ENSG00000215533       ENST00000431661 ENSE00003549843
7194  ENSG00000215533       ENST00000431661 ENSE00001632640
7195  ENSG00000223768       ENST00000433465 ENSE00001747474
7196  ENSG00000223768       ENST00000433465 ENSE00001655745
7197  ENSG00000227342       ENST00000451410 ENSE00001778264
7198  ENSG00000227342       ENST00000451410 ENSE00001727481
7199  ENSG00000227342       ENST00000451410 ENSE00001628879
7200  ENSG00000184856       ENST00000419431 ENSE00001543427
7201  ENSG00000184856       ENST00000419431 ENSE00001643098
7202  ENSG00000184856       ENST00000419431 ENSE00001794212
7203  ENSG00000184856       ENST00000419431 ENSE00001798738
7204  ENSG00000184856       ENST00000419431 ENSE00001684289
7205  ENSG00000184856       ENST00000419431 ENSE00001612574
7206  ENSG00000227456       ENST00000630751 ENSE00003764286
7207  ENSG00000227456       ENST00000630751 ENSE00001600875
7208  ENSG00000227456       ENST00000630751 ENSE00003768532
7209  ENSG00000227456       ENST00000430922 ENSE00001729994
7210  ENSG00000227456       ENST00000430922 ENSE00001762279
7211  ENSG00000227456       ENST00000428914 ENSE00001749835
7212  ENSG00000227456       ENST00000428914 ENSE00001607628
7213  ENSG00000227456       ENST00000609062 ENSE00003709750
7214  ENSG00000227456       ENST00000609062 ENSE00003703606
7215  ENSG00000227456       ENST00000609062 ENSE00003704327
7216  ENSG00000227456       ENST00000609947 ENSE00003706832
7217  ENSG00000227456       ENST00000609947 ENSE00003710503
7218  ENSG00000227456       ENST00000609947 ENSE00003704505
7219  ENSG00000227456       ENST00000416145 ENSE00001747668
7220  ENSG00000227456       ENST00000416145 ENSE00001797561
7221  ENSG00000227456       ENST00000419881 ENSE00001600875
7222  ENSG00000227456       ENST00000419881 ENSE00003709030
7223  ENSG00000227456       ENST00000419881 ENSE00001787920
7224  ENSG00000227456       ENST00000619549 ENSE00001600875
7225  ENSG00000227456       ENST00000619549 ENSE00003733671
7226  ENSG00000227456       ENST00000619549 ENSE00003741107
7227  ENSG00000185186       ENST00000426942 ENSE00001755943
7228  ENSG00000185186       ENST00000426942 ENSE00001542735
7229  ENSG00000185186       ENST00000332440 ENSE00001542735
7230  ENSG00000185186       ENST00000332440 ENSE00001329509
7231  ENSG00000185186       ENST00000332440 ENSE00001305748
7232  ENSG00000185186       ENST00000332440 ENSE00001330292
7233  ENSG00000185186       ENST00000413721 ENSE00001771153
7234  ENSG00000185186       ENST00000413721 ENSE00001729555
7235  ENSG00000185186       ENST00000413721 ENSE00001681839
7236  ENSG00000185186       ENST00000451543 ENSE00001729555
7237  ENSG00000185186       ENST00000451543 ENSE00001681839
7238  ENSG00000185186       ENST00000451543 ENSE00001620546
7239  ENSG00000185186       ENST00000451543 ENSE00001741723
7240  ENSG00000185186       ENST00000418516 ENSE00001729555
7241  ENSG00000185186       ENST00000418516 ENSE00001681839
7242  ENSG00000185186       ENST00000418516 ENSE00001620546
7243  ENSG00000185186       ENST00000427188 ENSE00001680526
7244  ENSG00000185186       ENST00000427188 ENSE00001781042
7245  ENSG00000185186       ENST00000441283 ENSE00001797826
7246  ENSG00000185186       ENST00000441283 ENSE00001665443
7247  ENSG00000185186       ENST00000441283 ENSE00001772662
7248  ENSG00000185186       ENST00000441283 ENSE00001727051
7249  ENSG00000178457       ENST00000324988 ENSE00001359731
7250  ENSG00000178457       ENST00000324988 ENSE00001247220
7251  ENSG00000184274       ENST00000441947 ENSE00002063048
7252  ENSG00000184274       ENST00000441947 ENSE00001639661
7253  ENSG00000184274       ENST00000441947 ENSE00001752111
7254  ENSG00000237664       ENST00000416722 ENSE00001726394
7255  ENSG00000237664       ENST00000416722 ENSE00001708983
7256  ENSG00000238265       ENST00000419069 ENSE00001715952
7257  ENSG00000238265       ENST00000419069 ENSE00001759143
7258  ENSG00000238265       ENST00000419069 ENSE00001735958
7259  ENSG00000188660       ENST00000448049 ENSE00001754001
7260  ENSG00000188660       ENST00000448049 ENSE00001652290
7261  ENSG00000188660       ENST00000448049 ENSE00001773693
7262  ENSG00000188660       ENST00000448049 ENSE00001632520
7263  ENSG00000188660       ENST00000342757 ENSE00001391090
7264  ENSG00000188660       ENST00000342757 ENSE00001365651
7265  ENSG00000188660       ENST00000342757 ENSE00001380650
7266  ENSG00000224924       ENST00000416768 ENSE00001729872
7267  ENSG00000224924       ENST00000416768 ENSE00001735445
7268  ENSG00000224924       ENST00000416768 ENSE00001704275
7269  ENSG00000224924       ENST00000416768 ENSE00001647771
7270  ENSG00000224924       ENST00000416768 ENSE00001615265
7271  ENSG00000224924       ENST00000416768 ENSE00001748536
7272  ENSG00000224924       ENST00000416768 ENSE00001592770
7273  ENSG00000224924       ENST00000437238 ENSE00001735445
7274  ENSG00000224924       ENST00000437238 ENSE00001647771
7275  ENSG00000224924       ENST00000437238 ENSE00001615265
7276  ENSG00000224924       ENST00000437238 ENSE00001748536
7277  ENSG00000224924       ENST00000437238 ENSE00001640547
7278  ENSG00000224924       ENST00000437238 ENSE00001628202
7279  ENSG00000224924       ENST00000437238 ENSE00001648026
7280  ENSG00000224924       ENST00000437238 ENSE00001718544
7281  ENSG00000224924       ENST00000452561 ENSE00001647771
7282  ENSG00000224924       ENST00000452561 ENSE00001615265
7283  ENSG00000224924       ENST00000452561 ENSE00001748536
7284  ENSG00000224924       ENST00000452561 ENSE00001648026
7285  ENSG00000224924       ENST00000452561 ENSE00001779080
7286  ENSG00000224924       ENST00000452561 ENSE00001728225
7287  ENSG00000224924       ENST00000452561 ENSE00001777380
7288  ENSG00000224924       ENST00000452561 ENSE00001789688
7289  ENSG00000224924       ENST00000435279 ENSE00001735445
7290  ENSG00000224924       ENST00000435279 ENSE00001647771
7291  ENSG00000224924       ENST00000435279 ENSE00001615265
7292  ENSG00000224924       ENST00000435279 ENSE00001748536
7293  ENSG00000224924       ENST00000435279 ENSE00001728225
7294  ENSG00000224924       ENST00000435279 ENSE00001789688
7295  ENSG00000224924       ENST00000435279 ENSE00001693385
7296  ENSG00000224924       ENST00000419299 ENSE00001647771
7297  ENSG00000224924       ENST00000419299 ENSE00001615265
7298  ENSG00000224924       ENST00000419299 ENSE00001748536
7299  ENSG00000224924       ENST00000419299 ENSE00001628202
7300  ENSG00000224924       ENST00000419299 ENSE00001725645
7301  ENSG00000224924       ENST00000419299 ENSE00001779765
7302  ENSG00000224924       ENST00000419299 ENSE00001719781
7303  ENSG00000237864       ENST00000450205 ENSE00001622446
7304  ENSG00000237864       ENST00000450205 ENSE00001659685
7305  ENSG00000237864       ENST00000450205 ENSE00001746843
7306  ENSG00000226496       ENST00000441268 ENSE00001756775
7307  ENSG00000226496       ENST00000441268 ENSE00001805493
7308  ENSG00000226496       ENST00000435493 ENSE00001658161
7309  ENSG00000226496       ENST00000435493 ENSE00001754320
7310  ENSG00000226496       ENST00000446910 ENSE00001730495
7311  ENSG00000226496       ENST00000446910 ENSE00001779579
7312  ENSG00000226496       ENST00000446910 ENSE00001594800
7313  ENSG00000182586       ENST00000584169 ENSE00002728363
7314  ENSG00000182586       ENST00000584169 ENSE00001542589
7315  ENSG00000182586       ENST00000584169 ENSE00002699741
7316  ENSG00000182586       ENST00000638500 ENSE00002728363
7317  ENSG00000182586       ENST00000638500 ENSE00001542589
7318  ENSG00000182586       ENST00000638500 ENSE00003809731
7319  ENSG00000182586       ENST00000638500 ENSE00003810059
7320  ENSG00000182586       ENST00000328344 ENSE00001542589
7321  ENSG00000182586       ENST00000328344 ENSE00001542591
7322  ENSG00000182586       ENST00000328344 ENSE00001330272
7323  ENSG00000236384       ENST00000412102 ENSE00001757480
7324  ENSG00000236384       ENST00000412102 ENSE00001630053
7325  ENSG00000236384       ENST00000412102 ENSE00002070273
7326  ENSG00000236384       ENST00000412102 ENSE00001746656
7327  ENSG00000236384       ENST00000412102 ENSE00001723122
7328  ENSG00000236384       ENST00000412102 ENSE00001789833
7329  ENSG00000236384       ENST00000457881 ENSE00001723122
7330  ENSG00000236384       ENST00000457881 ENSE00001601971
7331  ENSG00000236384       ENST00000457881 ENSE00001615174
7332  ENSG00000236384       ENST00000457881 ENSE00001747672
7333  ENSG00000236384       ENST00000586552 ENSE00001630053
7334  ENSG00000236384       ENST00000586552 ENSE00002887471
7335  ENSG00000236384       ENST00000586552 ENSE00002878102
7336  ENSG00000236384       ENST00000589300 ENSE00001630053
7337  ENSG00000236384       ENST00000589300 ENSE00001746656
7338  ENSG00000236384       ENST00000589300 ENSE00001723122
7339  ENSG00000236384       ENST00000589300 ENSE00002887471
7340  ENSG00000236384       ENST00000589300 ENSE00002910569
7341  ENSG00000236384       ENST00000589300 ENSE00002906467
7342  ENSG00000236384       ENST00000589300 ENSE00002966689
7343  ENSG00000237945       ENST00000596365 ENSE00003124073
7344  ENSG00000237945       ENST00000596365 ENSE00001670666
7345  ENSG00000237945       ENST00000596365 ENSE00003172124
7346  ENSG00000237945       ENST00000597626 ENSE00001670666
7347  ENSG00000237945       ENST00000597626 ENSE00003178299
7348  ENSG00000237945       ENST00000597626 ENSE00002980010
7349  ENSG00000237945       ENST00000597626 ENSE00003135021
7350  ENSG00000237945       ENST00000597626 ENSE00003187413
7351  ENSG00000237945       ENST00000597626 ENSE00003216082
7352  ENSG00000237945       ENST00000616030 ENSE00003741815
7353  ENSG00000237945       ENST00000616030 ENSE00003728433
7354  ENSG00000237945       ENST00000616030 ENSE00003139331
7355  ENSG00000237945       ENST00000610236 ENSE00003708695
7356  ENSG00000237945       ENST00000610236 ENSE00003710879
7357  ENSG00000237945       ENST00000601471 ENSE00003115913
7358  ENSG00000237945       ENST00000601471 ENSE00003133909
7359  ENSG00000237945       ENST00000601471 ENSE00003056389
7360  ENSG00000237945       ENST00000427447 ENSE00001670666
7361  ENSG00000237945       ENST00000427447 ENSE00001741388
7362  ENSG00000237945       ENST00000427447 ENSE00001615684
7363  ENSG00000237945       ENST00000599421 ENSE00003134385
7364  ENSG00000237945       ENST00000599421 ENSE00003181378
7365  ENSG00000237945       ENST00000400353 ENSE00001670666
7366  ENSG00000237945       ENST00000400353 ENSE00001663992
7367  ENSG00000237945       ENST00000400353 ENSE00001796945
7368  ENSG00000237945       ENST00000622171 ENSE00002460708
7369  ENSG00000237945       ENST00000622171 ENSE00003744821
7370  ENSG00000237945       ENST00000628906 ENSE00001670666
7371  ENSG00000237945       ENST00000628906 ENSE00003765910
7372  ENSG00000237945       ENST00000628906 ENSE00003764620
7373  ENSG00000237945       ENST00000594752 ENSE00001670666
7374  ENSG00000237945       ENST00000594752 ENSE00003139331
7375  ENSG00000237945       ENST00000594752 ENSE00003111737
7376  ENSG00000237945       ENST00000594370 ENSE00001670666
7377  ENSG00000237945       ENST00000594370 ENSE00003139331
7378  ENSG00000237945       ENST00000594370 ENSE00003215400
7379  ENSG00000237945       ENST00000595747 ENSE00001670666
7380  ENSG00000237945       ENST00000595747 ENSE00003139331
7381  ENSG00000237945       ENST00000595747 ENSE00003005088
7382  ENSG00000237945       ENST00000608431 ENSE00001670666
7383  ENSG00000237945       ENST00000608431 ENSE00003702638
7384  ENSG00000237945       ENST00000593977 ENSE00003030697
7385  ENSG00000237945       ENST00000593977 ENSE00003191751
7386  ENSG00000237945       ENST00000593977 ENSE00002989601
7387  ENSG00000237945       ENST00000600155 ENSE00003043329
7388  ENSG00000237945       ENST00000600155 ENSE00003170413
7389  ENSG00000237945       ENST00000600155 ENSE00003149762
7390  ENSG00000237945       ENST00000381181 ENSE00001487744
7391  ENSG00000237945       ENST00000381181 ENSE00001487739
7392  ENSG00000237945       ENST00000620580 ENSE00003745774
7393  ENSG00000237945       ENST00000620580 ENSE00003753917
7394  ENSG00000237945       ENST00000613667 ENSE00003729314
7395  ENSG00000237945       ENST00000613667 ENSE00003754258
7396  ENSG00000237945       ENST00000609132 ENSE00003706565
7397  ENSG00000237945       ENST00000609132 ENSE00003704960
7398  ENSG00000237945       ENST00000609132 ENSE00003708550
7399  ENSG00000186842       ENST00000334165 ENSE00001336196
7400  ENSG00000186842       ENST00000334165 ENSE00001543243
7401  ENSG00000186842       ENST00000334165 ENSE00001543242
7402  ENSG00000186842       ENST00000334165 ENSE00001543240
7403  ENSG00000232539       ENST00000453716 ENSE00001670124
7404  ENSG00000232539       ENST00000453716 ENSE00001733942
7405  ENSG00000232539       ENST00000453716 ENSE00001607713
7406  ENSG00000232539       ENST00000453716 ENSE00001663506
7407  ENSG00000232539       ENST00000453716 ENSE00001625299
7408  ENSG00000231231       ENST00000414189 ENSE00001668823
7409  ENSG00000231231       ENST00000414189 ENSE00001595871
7410  ENSG00000231231       ENST00000414189 ENSE00001671015
7411  ENSG00000231231       ENST00000414189 ENSE00001784646
7412  ENSG00000231231       ENST00000414189 ENSE00001639894
7413  ENSG00000231231       ENST00000436845 ENSE00001595871
7414  ENSG00000231231       ENST00000436845 ENSE00001671015
7415  ENSG00000231231       ENST00000436845 ENSE00001802888
7416  ENSG00000231231       ENST00000436845 ENSE00001628080
7417  ENSG00000236519       ENST00000417820 ENSE00001654036
7418  ENSG00000236519       ENST00000417820 ENSE00001648916
7419  ENSG00000233997       ENST00000425979 ENSE00001595132
7420  ENSG00000233997       ENST00000425979 ENSE00001772789
7421  ENSG00000233997       ENST00000425979 ENSE00001633794
7422  ENSG00000233997       ENST00000425979 ENSE00001613133
7423  ENSG00000233997       ENST00000430060 ENSE00001772789
7424  ENSG00000233997       ENST00000430060 ENSE00001633794
7425  ENSG00000233997       ENST00000430060 ENSE00001613133
7426  ENSG00000233997       ENST00000430060 ENSE00001770393
7427  ENSG00000233997       ENST00000430060 ENSE00001592495
7428  ENSG00000234380       ENST00000420877 ENSE00001718426
7429  ENSG00000234380       ENST00000420877 ENSE00001731332
7430  ENSG00000234380       ENST00000420877 ENSE00001775300
7431  ENSG00000234380       ENST00000419921 ENSE00001600687
7432  ENSG00000234380       ENST00000419921 ENSE00001787250
7433  ENSG00000231106       ENST00000457157 ENSE00001694810
7434  ENSG00000231106       ENST00000457157 ENSE00001621618
7435  ENSG00000183250       ENST00000397841 ENSE00003480405
7436  ENSG00000183250       ENST00000397841 ENSE00001318296
7437  ENSG00000183250       ENST00000397841 ENSE00001530440
7438  ENSG00000183250       ENST00000397841 ENSE00003759227
7439  ENSG00000183250       ENST00000330551 ENSE00001318296
7440  ENSG00000183250       ENST00000330551 ENSE00001927274
7441  ENSG00000183250       ENST00000330551 ENSE00001297690
7442  ENSG00000183250       ENST00000330551 ENSE00001666910
7443  ENSG00000183250       ENST00000615847 ENSE00003759227
7444  ENSG00000183250       ENST00000615847 ENSE00003739580
7445  ENSG00000229086       ENST00000451980 ENSE00003800352
7446  ENSG00000229086       ENST00000451980 ENSE00003793721
7447  ENSG00000229086       ENST00000451980 ENSE00001626183
7448  ENSG00000229086       ENST00000451980 ENSE00001719305
7449  ENSG00000229086       ENST00000451980 ENSE00001745295
7450  ENSG00000229086       ENST00000637328 ENSE00001626183
7451  ENSG00000229086       ENST00000637328 ENSE00001719305
7452  ENSG00000229086       ENST00000637328 ENSE00001731986
7453  ENSG00000229086       ENST00000637328 ENSE00003796046
7454  ENSG00000232560       ENST00000440664 ENSE00001788379
7455  ENSG00000232560       ENST00000440664 ENSE00001712270
7456  ENSG00000232560       ENST00000440664 ENSE00001679869
7457  ENSG00000232560       ENST00000440664 ENSE00001713465
7458  ENSG00000232560       ENST00000613691 ENSE00001679869
7459  ENSG00000232560       ENST00000613691 ENSE00003733945
7460  ENSG00000232560       ENST00000613691 ENSE00003744295
7461  ENSG00000279579       ENST00000624813 ENSE00003755112
7462  ENSG00000279579       ENST00000624813 ENSE00003757092
7463  ENSG00000279579       ENST00000623794 ENSE00003755809
7464  ENSG00000279579       ENST00000623794 ENSE00003755112
7465  ENSG00000280081       ENST00000623554 ENSE00003757501
7466  ENSG00000280081       ENST00000623554 ENSE00003757676
7467  ENSG00000280081       ENST00000623554 ENSE00003756110
7468  ENSG00000280081       ENST00000623554 ENSE00003757544
7469  ENSG00000280081       ENST00000623554 ENSE00003758998
7470  ENSG00000280081       ENST00000623554 ENSE00003756712
7471  ENSG00000280081       ENST00000623919 ENSE00003756110
7472  ENSG00000280081       ENST00000623919 ENSE00003759316
7473  ENSG00000280081       ENST00000623919 ENSE00003755974
7474  ENSG00000280081       ENST00000623933 ENSE00003757676
7475  ENSG00000280081       ENST00000623933 ENSE00003757055
7476  ENSG00000280081       ENST00000623933 ENSE00003757482
7477  ENSG00000280081       ENST00000623933 ENSE00003755565
7478  ENSG00000280081       ENST00000623933 ENSE00003756569
7479  ENSG00000283051       ENST00000635001 ENSE00003791687
7480  ENSG00000283051       ENST00000635001 ENSE00003787512
7481  ENSG00000283051       ENST00000635001 ENSE00003789768
7482  ENSG00000280191       ENST00000624561 ENSE00003755445
7483  ENSG00000280191       ENST00000624561 ENSE00003758565
7484  ENSG00000280191       ENST00000624561 ENSE00003754900
7485  ENSG00000280191       ENST00000624561 ENSE00003759768
7486  ENSG00000280191       ENST00000624105 ENSE00003756793
7487  ENSG00000280191       ENST00000624105 ENSE00003758991
7488  ENSG00000280191       ENST00000624113 ENSE00003758109
7489  ENSG00000280191       ENST00000624113 ENSE00003758468
7490  ENSG00000280191       ENST00000623161 ENSE00003757687
7491  ENSG00000280191       ENST00000623161 ENSE00003757910
7492  ENSG00000280191       ENST00000623161 ENSE00003757588
7493  ENSG00000280191       ENST00000623161 ENSE00003754930
7494  ENSG00000280191       ENST00000623549 ENSE00003757910
7495  ENSG00000280191       ENST00000623549 ENSE00003756348
7496  ENSG00000280191       ENST00000623549 ENSE00003759668
7497  ENSG00000279094       ENST00000624261 ENSE00003755185
7498  ENSG00000279094       ENST00000624261 ENSE00003756104
7499  ENSG00000279094       ENST00000624261 ENSE00003755270
7500  ENSG00000279094       ENST00000624859 ENSE00003759427
7501  ENSG00000279094       ENST00000624859 ENSE00003756891
7502  ENSG00000279094       ENST00000624859 ENSE00003755916
7503  ENSG00000279094       ENST00000623227 ENSE00003759427
7504  ENSG00000279094       ENST00000623227 ENSE00003756302
7505  ENSG00000225431       ENST00000419628 ENSE00001633776
7506  ENSG00000225431       ENST00000419628 ENSE00001709308
7507  ENSG00000234052       ENST00000426418 ENSE00001789319
7508  ENSG00000234052       ENST00000426418 ENSE00001673440
7509  ENSG00000234052       ENST00000426418 ENSE00001624269
7510  ENSG00000228159       ENST00000427446 ENSE00001662293
7511  ENSG00000228159       ENST00000427446 ENSE00001678745
7512  ENSG00000228159       ENST00000427446 ENSE00001645333
7513  ENSG00000228159       ENST00000427446 ENSE00001733572
7514  ENSG00000225331       ENST00000411694 ENSE00001708764
7515  ENSG00000225331       ENST00000411694 ENSE00001605988
7516  ENSG00000225331       ENST00000424921 ENSE00001728626
7517  ENSG00000225331       ENST00000424921 ENSE00001690812
7518  ENSG00000225331       ENST00000424921 ENSE00001634931
7519  ENSG00000237989       ENST00000442815 ENSE00001609421
7520  ENSG00000237989       ENST00000442815 ENSE00001611618
7521  ENSG00000233480       ENST00000443479 ENSE00001650188
7522  ENSG00000233480       ENST00000443479 ENSE00001677715
7523  ENSG00000233480       ENST00000443479 ENSE00001705269
7524  ENSG00000237484       ENST00000453784 ENSE00001656163
7525  ENSG00000237484       ENST00000453784 ENSE00001726328
7526  ENSG00000237484       ENST00000453784 ENSE00001597493
7527  ENSG00000237484       ENST00000453784 ENSE00002259191
7528  ENSG00000237484       ENST00000453784 ENSE00001711208
7529  ENSG00000237484       ENST00000453784 ENSE00002078369
7530  ENSG00000237484       ENST00000423581 ENSE00001718468
7531  ENSG00000237484       ENST00000423581 ENSE00001660431
7532  ENSG00000237484       ENST00000423581 ENSE00001800758
7533  ENSG00000237484       ENST00000415182 ENSE00001753281
7534  ENSG00000237484       ENST00000415182 ENSE00001656340
7535  ENSG00000237484       ENST00000415182 ENSE00001602478
7536  ENSG00000233215       ENST00000416327 ENSE00001644507
7537  ENSG00000233215       ENST00000416327 ENSE00001621289
7538  ENSG00000233215       ENST00000416327 ENSE00001772640
7539  ENSG00000233215       ENST00000420255 ENSE00001621289
7540  ENSG00000233215       ENST00000420255 ENSE00001744169
7541  ENSG00000233215       ENST00000420255 ENSE00001646364
7542  ENSG00000233215       ENST00000420255 ENSE00001723739
7543  ENSG00000233215       ENST00000420255 ENSE00001752387
7544  ENSG00000233215       ENST00000420255 ENSE00001654279
7545  ENSG00000233215       ENST00000419467 ENSE00001686615
7546  ENSG00000233215       ENST00000419467 ENSE00001725038
7547  ENSG00000233215       ENST00000419467 ENSE00001671087
7548  ENSG00000224832       ENST00000416218 ENSE00001783728
7549  ENSG00000224832       ENST00000416218 ENSE00001645645
7550  ENSG00000224832       ENST00000416218 ENSE00001701869
7551  ENSG00000224832       ENST00000416218 ENSE00001775295
7552  ENSG00000226983       ENST00000441009 ENSE00001695618
7553  ENSG00000226983       ENST00000441009 ENSE00001726532
7554  ENSG00000226983       ENST00000441009 ENSE00001759552
7555  ENSG00000226983       ENST00000441009 ENSE00001744941
7556  ENSG00000233922       ENST00000441095 ENSE00001758835
7557  ENSG00000233922       ENST00000441095 ENSE00001782558
7558  ENSG00000233922       ENST00000424569 ENSE00001769309
7559  ENSG00000233922       ENST00000424569 ENSE00001678177
7560  ENSG00000233922       ENST00000424569 ENSE00001742227
7561  ENSG00000236532       ENST00000453420 ENSE00001647078
7562  ENSG00000236532       ENST00000453420 ENSE00001731579
7563  ENSG00000236532       ENST00000453420 ENSE00001789876
7564  ENSG00000236532       ENST00000453420 ENSE00001746634
7565  ENSG00000236532       ENST00000453420 ENSE00001616679
7566  ENSG00000236532       ENST00000453420 ENSE00001640835
7567  ENSG00000236532       ENST00000433303 ENSE00001746634
7568  ENSG00000236532       ENST00000433303 ENSE00001616679
7569  ENSG00000236532       ENST00000433303 ENSE00001700680
7570  ENSG00000236532       ENST00000437194 ENSE00001731579
7571  ENSG00000236532       ENST00000437194 ENSE00001760250
7572  ENSG00000236532       ENST00000437194 ENSE00001725179
7573  ENSG00000236532       ENST00000437194 ENSE00001654737
7574  ENSG00000232079       ENST00000426534 ENSE00001699195
7575  ENSG00000232079       ENST00000426534 ENSE00001770559
7576  ENSG00000232079       ENST00000426534 ENSE00001802522
7577  ENSG00000232079       ENST00000426534 ENSE00001714169
7578  ENSG00000232079       ENST00000426534 ENSE00001677376
7579  ENSG00000232079       ENST00000458316 ENSE00001682925
7580  ENSG00000232079       ENST00000458316 ENSE00001693595
7581  ENSG00000232079       ENST00000631186 ENSE00003764885
7582  ENSG00000232079       ENST00000631186 ENSE00003761498
7583  ENSG00000232079       ENST00000423808 ENSE00001724515
7584  ENSG00000232079       ENST00000423808 ENSE00001782063
7585  ENSG00000232079       ENST00000616647 ENSE00003714152
7586  ENSG00000232079       ENST00000616647 ENSE00003733417
7587  ENSG00000232079       ENST00000616647 ENSE00001691205
7588  ENSG00000232079       ENST00000616647 ENSE00003748725
7589  ENSG00000232079       ENST00000436878 ENSE00001691205
7590  ENSG00000232079       ENST00000436878 ENSE00001663582
7591  ENSG00000232079       ENST00000436878 ENSE00001646695
7592  ENSG00000232079       ENST00000609782 ENSE00003703586
7593  ENSG00000232079       ENST00000609782 ENSE00003707882
7594  ENSG00000232837       ENST00000433952 ENSE00001718570
7595  ENSG00000232837       ENST00000433952 ENSE00001801407
7596  ENSG00000232837       ENST00000433952 ENSE00001660496
7597  ENSG00000188992       ENST00000344577 ENSE00001869646
7598  ENSG00000188992       ENST00000344577 ENSE00001636528
7599  ENSG00000188992       ENST00000344577 ENSE00001369084
7600  ENSG00000188992       ENST00000344577 ENSE00001371492
7601  ENSG00000188992       ENST00000344577 ENSE00001379335
7602  ENSG00000188992       ENST00000344577 ENSE00002715027
7603  ENSG00000188992       ENST00000344577 ENSE00001684532
7604  ENSG00000188992       ENST00000344577 ENSE00001634008
7605  ENSG00000188992       ENST00000344577 ENSE00001796235
7606  ENSG00000188992       ENST00000344577 ENSE00001727035
7607  ENSG00000188992       ENST00000400211 ENSE00001369084
7608  ENSG00000188992       ENST00000400211 ENSE00001371492
7609  ENSG00000188992       ENST00000400211 ENSE00001747640
7610  ENSG00000188992       ENST00000400211 ENSE00001692650
7611  ENSG00000188992       ENST00000536861 ENSE00001636528
7612  ENSG00000188992       ENST00000536861 ENSE00001369084
7613  ENSG00000188992       ENST00000536861 ENSE00001371492
7614  ENSG00000188992       ENST00000536861 ENSE00001379335
7615  ENSG00000188992       ENST00000536861 ENSE00002715027
7616  ENSG00000188992       ENST00000536861 ENSE00001684532
7617  ENSG00000188992       ENST00000536861 ENSE00001634008
7618  ENSG00000188992       ENST00000536861 ENSE00001796235
7619  ENSG00000188992       ENST00000536861 ENSE00002299226
7620  ENSG00000188992       ENST00000536861 ENSE00003732762
7621  ENSG00000188992       ENST00000614229 ENSE00001636528
7622  ENSG00000188992       ENST00000614229 ENSE00001369084
7623  ENSG00000188992       ENST00000614229 ENSE00001371492
7624  ENSG00000188992       ENST00000614229 ENSE00002715027
7625  ENSG00000188992       ENST00000614229 ENSE00001684532
7626  ENSG00000188992       ENST00000614229 ENSE00001634008
7627  ENSG00000188992       ENST00000614229 ENSE00001796235
7628  ENSG00000188992       ENST00000614229 ENSE00002299226
7629  ENSG00000188992       ENST00000614229 ENSE00003732762
7630  ENSG00000235514       ENST00000436405 ENSE00001634309
7631  ENSG00000160233       ENST00000291592 ENSE00001838176
7632  ENSG00000160233       ENST00000291592 ENSE00001050784
7633  ENSG00000229356       ENST00000426578 ENSE00001789377
7634  ENSG00000229356       ENST00000426578 ENSE00001745110
7635  ENSG00000229356       ENST00000426578 ENSE00001630947
7636  ENSG00000229356       ENST00000426578 ENSE00001594641
7637  ENSG00000160285       ENST00000356396 ENSE00001894078
7638  ENSG00000160285       ENST00000356396 ENSE00003470036
7639  ENSG00000160285       ENST00000356396 ENSE00003581204
7640  ENSG00000160285       ENST00000356396 ENSE00003491878
7641  ENSG00000160285       ENST00000356396 ENSE00003532484
7642  ENSG00000160285       ENST00000356396 ENSE00003525946
7643  ENSG00000160285       ENST00000356396 ENSE00003784869
7644  ENSG00000160285       ENST00000356396 ENSE00003500657
7645  ENSG00000160285       ENST00000356396 ENSE00001051158
7646  ENSG00000160285       ENST00000356396 ENSE00001051181
7647  ENSG00000160285       ENST00000356396 ENSE00001296974
7648  ENSG00000160285       ENST00000356396 ENSE00001051175
7649  ENSG00000160285       ENST00000356396 ENSE00001051174
7650  ENSG00000160285       ENST00000356396 ENSE00001051179
7651  ENSG00000160285       ENST00000356396 ENSE00001285727
7652  ENSG00000160285       ENST00000356396 ENSE00001051185
7653  ENSG00000160285       ENST00000356396 ENSE00001051152
7654  ENSG00000160285       ENST00000356396 ENSE00001051183
7655  ENSG00000160285       ENST00000356396 ENSE00003493443
7656  ENSG00000160285       ENST00000356396 ENSE00001051167
7657  ENSG00000160285       ENST00000356396 ENSE00001051182
7658  ENSG00000160285       ENST00000356396 ENSE00001415142
7659  ENSG00000160285       ENST00000356396 ENSE00003536777
7660  ENSG00000160285       ENST00000491729 ENSE00001936292
7661  ENSG00000160285       ENST00000491729 ENSE00001904479
7662  ENSG00000160285       ENST00000491729 ENSE00001414492
7663  ENSG00000160285       ENST00000397728 ENSE00003470036
7664  ENSG00000160285       ENST00000397728 ENSE00003581204
7665  ENSG00000160285       ENST00000397728 ENSE00003491878
7666  ENSG00000160285       ENST00000397728 ENSE00003532484
7667  ENSG00000160285       ENST00000397728 ENSE00003525946
7668  ENSG00000160285       ENST00000397728 ENSE00003784869
7669  ENSG00000160285       ENST00000397728 ENSE00003500657
7670  ENSG00000160285       ENST00000397728 ENSE00001051158
7671  ENSG00000160285       ENST00000397728 ENSE00001051181
7672  ENSG00000160285       ENST00000397728 ENSE00001296974
7673  ENSG00000160285       ENST00000397728 ENSE00001051175
7674  ENSG00000160285       ENST00000397728 ENSE00001051174
7675  ENSG00000160285       ENST00000397728 ENSE00001051179
7676  ENSG00000160285       ENST00000397728 ENSE00001285727
7677  ENSG00000160285       ENST00000397728 ENSE00001051185
7678  ENSG00000160285       ENST00000397728 ENSE00001051152
7679  ENSG00000160285       ENST00000397728 ENSE00001051183
7680  ENSG00000160285       ENST00000397728 ENSE00003493443
7681  ENSG00000160285       ENST00000397728 ENSE00001051167
7682  ENSG00000160285       ENST00000397728 ENSE00001051182
7683  ENSG00000160285       ENST00000397728 ENSE00003648196
7684  ENSG00000160285       ENST00000397728 ENSE00003493068
7685  ENSG00000160285       ENST00000419093 ENSE00001051182
7686  ENSG00000160285       ENST00000419093 ENSE00001660756
7687  ENSG00000160285       ENST00000419093 ENSE00001620839
7688  ENSG00000160285       ENST00000474319 ENSE00001842859
7689  ENSG00000160285       ENST00000474319 ENSE00003604982
7690  ENSG00000160285       ENST00000522411 ENSE00003470036
7691  ENSG00000160285       ENST00000522411 ENSE00003581204
7692  ENSG00000160285       ENST00000522411 ENSE00003532484
7693  ENSG00000160285       ENST00000522411 ENSE00003525946
7694  ENSG00000160285       ENST00000522411 ENSE00003784869
7695  ENSG00000160285       ENST00000522411 ENSE00003500657
7696  ENSG00000160285       ENST00000522411 ENSE00001051158
7697  ENSG00000160285       ENST00000522411 ENSE00001051181
7698  ENSG00000160285       ENST00000522411 ENSE00001296974
7699  ENSG00000160285       ENST00000522411 ENSE00001051175
7700  ENSG00000160285       ENST00000522411 ENSE00001051174
7701  ENSG00000160285       ENST00000522411 ENSE00001051179
7702  ENSG00000160285       ENST00000522411 ENSE00001285727
7703  ENSG00000160285       ENST00000522411 ENSE00001051185
7704  ENSG00000160285       ENST00000522411 ENSE00001051152
7705  ENSG00000160285       ENST00000522411 ENSE00001051183
7706  ENSG00000160285       ENST00000522411 ENSE00003493443
7707  ENSG00000160285       ENST00000522411 ENSE00001051167
7708  ENSG00000160285       ENST00000522411 ENSE00001051182
7709  ENSG00000160285       ENST00000522411 ENSE00002125527
7710  ENSG00000160285       ENST00000522411 ENSE00001643951
7711  ENSG00000160285       ENST00000522411 ENSE00002137517
7712  ENSG00000160285       ENST00000484808 ENSE00001842323
7713  ENSG00000160285       ENST00000484808 ENSE00003677959
7714  ENSG00000160285       ENST00000464357 ENSE00001881795
7715  ENSG00000160285       ENST00000464357 ENSE00003538704
7716  ENSG00000160285       ENST00000464357 ENSE00003622265
7717  ENSG00000160285       ENST00000464357 ENSE00003500120
7718  ENSG00000160285       ENST00000464357 ENSE00003564674
7719  ENSG00000160285       ENST00000464357 ENSE00003527897
7720  ENSG00000160285       ENST00000464357 ENSE00003493703
7721  ENSG00000160285       ENST00000450351 ENSE00003470036
7722  ENSG00000160285       ENST00000450351 ENSE00003581204
7723  ENSG00000160285       ENST00000450351 ENSE00003491878
7724  ENSG00000160285       ENST00000450351 ENSE00003532484
7725  ENSG00000160285       ENST00000450351 ENSE00003525946
7726  ENSG00000160285       ENST00000450351 ENSE00003784869
7727  ENSG00000160285       ENST00000450351 ENSE00001717484
7728  ENSG00000160285       ENST00000472272 ENSE00001344217
7729  ENSG00000160285       ENST00000472272 ENSE00003629865
7730  ENSG00000160285       ENST00000472272 ENSE00001819912
7731  ENSG00000160285       ENST00000457828 ENSE00003491878
7732  ENSG00000160285       ENST00000457828 ENSE00003532484
7733  ENSG00000160285       ENST00000457828 ENSE00003525946
7734  ENSG00000160285       ENST00000457828 ENSE00003784869
7735  ENSG00000160285       ENST00000457828 ENSE00003500657
7736  ENSG00000160285       ENST00000457828 ENSE00001051158
7737  ENSG00000160285       ENST00000457828 ENSE00001051181
7738  ENSG00000160285       ENST00000457828 ENSE00001296974
7739  ENSG00000160285       ENST00000457828 ENSE00001051175
7740  ENSG00000160285       ENST00000457828 ENSE00001051174
7741  ENSG00000160285       ENST00000457828 ENSE00001051179
7742  ENSG00000160285       ENST00000457828 ENSE00001285727
7743  ENSG00000160285       ENST00000457828 ENSE00001051185
7744  ENSG00000160285       ENST00000457828 ENSE00001051152
7745  ENSG00000160285       ENST00000457828 ENSE00001051183
7746  ENSG00000160285       ENST00000457828 ENSE00003493443
7747  ENSG00000160285       ENST00000457828 ENSE00001051167
7748  ENSG00000160285       ENST00000457828 ENSE00001051182
7749  ENSG00000160285       ENST00000457828 ENSE00002282628
7750  ENSG00000160285       ENST00000457828 ENSE00003556063
7751  ENSG00000160285       ENST00000457828 ENSE00002209641
7752  ENSG00000198862       ENST00000361371 ENSE00001436303
7753  ENSG00000198862       ENST00000361371 ENSE00001505143
7754  ENSG00000198862       ENST00000361371 ENSE00003523511
7755  ENSG00000198862       ENST00000361371 ENSE00003589298
7756  ENSG00000198862       ENST00000361371 ENSE00003496895
7757  ENSG00000198862       ENST00000361371 ENSE00003637644
7758  ENSG00000198862       ENST00000361371 ENSE00003680289
7759  ENSG00000198862       ENST00000361371 ENSE00003583906
7760  ENSG00000198862       ENST00000361371 ENSE00003633682
7761  ENSG00000198862       ENST00000361371 ENSE00002722595
7762  ENSG00000198862       ENST00000361371 ENSE00001718587
7763  ENSG00000198862       ENST00000361371 ENSE00001622947
7764  ENSG00000198862       ENST00000361371 ENSE00001705186
7765  ENSG00000198862       ENST00000361371 ENSE00001748537
7766  ENSG00000198862       ENST00000361371 ENSE00001729415
7767  ENSG00000198862       ENST00000361371 ENSE00001681558
7768  ENSG00000198862       ENST00000361371 ENSE00001766793
7769  ENSG00000198862       ENST00000361371 ENSE00001642510
7770  ENSG00000198862       ENST00000361371 ENSE00001621538
7771  ENSG00000198862       ENST00000361371 ENSE00001750264
7772  ENSG00000198862       ENST00000361371 ENSE00001713856
7773  ENSG00000198862       ENST00000361371 ENSE00001657296
7774  ENSG00000198862       ENST00000361371 ENSE00001666120
7775  ENSG00000198862       ENST00000361371 ENSE00001741886
7776  ENSG00000198862       ENST00000361371 ENSE00001703316
7777  ENSG00000198862       ENST00000361371 ENSE00001682761
7778  ENSG00000198862       ENST00000361371 ENSE00001650919
7779  ENSG00000198862       ENST00000361371 ENSE00001735330
7780  ENSG00000198862       ENST00000361371 ENSE00001732602
7781  ENSG00000198862       ENST00000361371 ENSE00001688591
7782  ENSG00000198862       ENST00000389194 ENSE00001505143
7783  ENSG00000198862       ENST00000389194 ENSE00003523511
7784  ENSG00000198862       ENST00000389194 ENSE00003589298
7785  ENSG00000198862       ENST00000389194 ENSE00003496895
7786  ENSG00000198862       ENST00000389194 ENSE00003637644
7787  ENSG00000198862       ENST00000389194 ENSE00003680289
7788  ENSG00000198862       ENST00000389194 ENSE00003583906
7789  ENSG00000198862       ENST00000389194 ENSE00003633682
7790  ENSG00000198862       ENST00000389194 ENSE00002722595
7791  ENSG00000198862       ENST00000389194 ENSE00001718587
7792  ENSG00000198862       ENST00000389194 ENSE00001622947
7793  ENSG00000198862       ENST00000389194 ENSE00001705186
7794  ENSG00000198862       ENST00000389194 ENSE00001748537
7795  ENSG00000198862       ENST00000389194 ENSE00001729415
7796  ENSG00000198862       ENST00000389194 ENSE00001681558
7797  ENSG00000198862       ENST00000389194 ENSE00001766793
7798  ENSG00000198862       ENST00000389194 ENSE00001642510
7799  ENSG00000198862       ENST00000389194 ENSE00001621538
7800  ENSG00000198862       ENST00000389194 ENSE00001750264
7801  ENSG00000198862       ENST00000389194 ENSE00001713856
7802  ENSG00000198862       ENST00000389194 ENSE00001657296
7803  ENSG00000198862       ENST00000389194 ENSE00001666120
7804  ENSG00000198862       ENST00000389194 ENSE00001741886
7805  ENSG00000198862       ENST00000389194 ENSE00001703316
7806  ENSG00000198862       ENST00000389194 ENSE00001682761
7807  ENSG00000198862       ENST00000389194 ENSE00001650919
7808  ENSG00000198862       ENST00000389194 ENSE00001735330
7809  ENSG00000198862       ENST00000389194 ENSE00001732602
7810  ENSG00000198862       ENST00000389194 ENSE00001688591
7811  ENSG00000198862       ENST00000389194 ENSE00001505144
7812  ENSG00000198862       ENST00000486427 ENSE00001874177
7813  ENSG00000198862       ENST00000486427 ENSE00001953658
7814  ENSG00000198862       ENST00000475344 ENSE00001899369
7815  ENSG00000198862       ENST00000475344 ENSE00001912185
7816  ENSG00000198862       ENST00000475344 ENSE00001812465
7817  ENSG00000198862       ENST00000389195 ENSE00001505143
7818  ENSG00000198862       ENST00000389195 ENSE00003523511
7819  ENSG00000198862       ENST00000389195 ENSE00003589298
7820  ENSG00000198862       ENST00000389195 ENSE00003496895
7821  ENSG00000198862       ENST00000389195 ENSE00003637644
7822  ENSG00000198862       ENST00000389195 ENSE00003680289
7823  ENSG00000198862       ENST00000389195 ENSE00003583906
7824  ENSG00000198862       ENST00000389195 ENSE00003633682
7825  ENSG00000198862       ENST00000389195 ENSE00002722595
7826  ENSG00000198862       ENST00000389195 ENSE00001718587
7827  ENSG00000198862       ENST00000389195 ENSE00001505144
7828  ENSG00000198862       ENST00000389195 ENSE00001541162
7829  ENSG00000198862       ENST00000389195 ENSE00001653452
7830  ENSG00000198862       ENST00000483326 ENSE00003523511
7831  ENSG00000198862       ENST00000483326 ENSE00003589298
7832  ENSG00000198862       ENST00000483326 ENSE00003496895
7833  ENSG00000198862       ENST00000483326 ENSE00003637644
7834  ENSG00000198862       ENST00000483326 ENSE00003680289
7835  ENSG00000198862       ENST00000483326 ENSE00003583906
7836  ENSG00000198862       ENST00000483326 ENSE00003633682
7837  ENSG00000198862       ENST00000483326 ENSE00001813114
7838  ENSG00000198862       ENST00000483326 ENSE00001831431
7839  ENSG00000198862       ENST00000483326 ENSE00001934074
7840  ENSG00000198862       ENST00000614971 ENSE00001505143
7841  ENSG00000198862       ENST00000614971 ENSE00003523511
7842  ENSG00000198862       ENST00000614971 ENSE00003589298
7843  ENSG00000198862       ENST00000614971 ENSE00003496895
7844  ENSG00000198862       ENST00000614971 ENSE00003637644
7845  ENSG00000198862       ENST00000614971 ENSE00003680289
7846  ENSG00000198862       ENST00000614971 ENSE00003583906
7847  ENSG00000198862       ENST00000614971 ENSE00003633682
7848  ENSG00000198862       ENST00000614971 ENSE00002722595
7849  ENSG00000198862       ENST00000614971 ENSE00001718587
7850  ENSG00000198862       ENST00000614971 ENSE00001622947
7851  ENSG00000198862       ENST00000614971 ENSE00001705186
7852  ENSG00000198862       ENST00000614971 ENSE00001748537
7853  ENSG00000198862       ENST00000614971 ENSE00001729415
7854  ENSG00000198862       ENST00000614971 ENSE00001681558
7855  ENSG00000198862       ENST00000614971 ENSE00001766793
7856  ENSG00000198862       ENST00000614971 ENSE00001642510
7857  ENSG00000198862       ENST00000614971 ENSE00001621538
7858  ENSG00000198862       ENST00000614971 ENSE00001750264
7859  ENSG00000198862       ENST00000614971 ENSE00001713856
7860  ENSG00000198862       ENST00000614971 ENSE00001657296
7861  ENSG00000198862       ENST00000614971 ENSE00001666120
7862  ENSG00000198862       ENST00000614971 ENSE00001741886
7863  ENSG00000198862       ENST00000614971 ENSE00001703316
7864  ENSG00000198862       ENST00000614971 ENSE00001682761
7865  ENSG00000198862       ENST00000614971 ENSE00001650919
7866  ENSG00000198862       ENST00000614971 ENSE00001735330
7867  ENSG00000198862       ENST00000614971 ENSE00001732602
7868  ENSG00000198862       ENST00000614971 ENSE00001688591
7869  ENSG00000198862       ENST00000614971 ENSE00003713671
7870  ENSG00000156265       ENST00000496779 ENSE00001932051
7871  ENSG00000156265       ENST00000496779 ENSE00001540907
7872  ENSG00000156265       ENST00000496779 ENSE00003637621
7873  ENSG00000156265       ENST00000496779 ENSE00003506187
7874  ENSG00000156265       ENST00000496779 ENSE00003692591
7875  ENSG00000156265       ENST00000496779 ENSE00003592989
7876  ENSG00000156265       ENST00000496779 ENSE00001830924
7877  ENSG00000156265       ENST00000419845 ENSE00001540907
7878  ENSG00000156265       ENST00000419845 ENSE00001801678
7879  ENSG00000156265       ENST00000419845 ENSE00003477047
7880  ENSG00000156265       ENST00000419845 ENSE00003788813
7881  ENSG00000156265       ENST00000492930 ENSE00003637621
7882  ENSG00000156265       ENST00000492930 ENSE00003506187
7883  ENSG00000156265       ENST00000492930 ENSE00003692591
7884  ENSG00000156265       ENST00000492930 ENSE00003592989
7885  ENSG00000156265       ENST00000492930 ENSE00001954687
7886  ENSG00000156265       ENST00000492930 ENSE00001920016
7887  ENSG00000156265       ENST00000341618 ENSE00003477047
7888  ENSG00000156265       ENST00000341618 ENSE00003788813
7889  ENSG00000156265       ENST00000341618 ENSE00001540930
7890  ENSG00000156265       ENST00000341618 ENSE00003688344
7891  ENSG00000156265       ENST00000341618 ENSE00003616566
7892  ENSG00000156265       ENST00000341618 ENSE00003505985
7893  ENSG00000156265       ENST00000341618 ENSE00003485631
7894  ENSG00000156265       ENST00000341618 ENSE00001540853
7895  ENSG00000156265       ENST00000399935 ENSE00003637621
7896  ENSG00000156265       ENST00000399935 ENSE00003506187
7897  ENSG00000156265       ENST00000399935 ENSE00003692591
7898  ENSG00000156265       ENST00000399935 ENSE00003592989
7899  ENSG00000156265       ENST00000399935 ENSE00001540930
7900  ENSG00000156265       ENST00000399935 ENSE00003505985
7901  ENSG00000156265       ENST00000399935 ENSE00003485631
7902  ENSG00000156265       ENST00000399935 ENSE00001540853
7903  ENSG00000156265       ENST00000399935 ENSE00001413060
7904  ENSG00000156265       ENST00000399935 ENSE00003577947
7905  ENSG00000156265       ENST00000399934 ENSE00003637621
7906  ENSG00000156265       ENST00000399934 ENSE00003506187
7907  ENSG00000156265       ENST00000399934 ENSE00003692591
7908  ENSG00000156265       ENST00000399934 ENSE00003592989
7909  ENSG00000156265       ENST00000399934 ENSE00001540930
7910  ENSG00000156265       ENST00000399934 ENSE00003505985
7911  ENSG00000156265       ENST00000399934 ENSE00003485631
7912  ENSG00000156265       ENST00000399934 ENSE00001540853
7913  ENSG00000156265       ENST00000399934 ENSE00003577947
7914  ENSG00000156265       ENST00000399947 ENSE00001540907
7915  ENSG00000156265       ENST00000399947 ENSE00003477047
7916  ENSG00000156265       ENST00000399947 ENSE00003788813
7917  ENSG00000156265       ENST00000399947 ENSE00003688344
7918  ENSG00000156265       ENST00000399947 ENSE00003616566
7919  ENSG00000156265       ENST00000399947 ENSE00003505985
7920  ENSG00000156265       ENST00000399947 ENSE00003485631
7921  ENSG00000156265       ENST00000399947 ENSE00001540853
7922  ENSG00000156265       ENST00000399947 ENSE00001540906
7923  ENSG00000156265       ENST00000339024 ENSE00003505985
7924  ENSG00000156265       ENST00000339024 ENSE00003485631
7925  ENSG00000156265       ENST00000339024 ENSE00001540853
7926  ENSG00000156265       ENST00000339024 ENSE00001413060
7927  ENSG00000156265       ENST00000339024 ENSE00003577947
7928  ENSG00000156265       ENST00000339024 ENSE00001493551
7929  ENSG00000156265       ENST00000339024 ENSE00003482924
7930  ENSG00000156265       ENST00000460883 ENSE00001929670
7931  ENSG00000156265       ENST00000460883 ENSE00003577225
7932  ENSG00000156265       ENST00000460883 ENSE00003686991
7933  ENSG00000156265       ENST00000460883 ENSE00001878413
7934  ENSG00000156265       ENST00000399928 ENSE00003505985
7935  ENSG00000156265       ENST00000399928 ENSE00003485631
7936  ENSG00000156265       ENST00000399928 ENSE00001540853
7937  ENSG00000156265       ENST00000399928 ENSE00003577947
7938  ENSG00000156265       ENST00000399928 ENSE00001540840
7939  ENSG00000156265       ENST00000399926 ENSE00003505985
7940  ENSG00000156265       ENST00000399926 ENSE00003485631
7941  ENSG00000156265       ENST00000399926 ENSE00001413060
7942  ENSG00000156265       ENST00000399926 ENSE00003577947
7943  ENSG00000156265       ENST00000399926 ENSE00001540834
7944  ENSG00000156265       ENST00000399926 ENSE00001540833
7945  ENSG00000156265       ENST00000399925 ENSE00003505985
7946  ENSG00000156265       ENST00000399925 ENSE00003485631
7947  ENSG00000156265       ENST00000399925 ENSE00003577947
7948  ENSG00000156265       ENST00000399925 ENSE00001540829
7949  ENSG00000156265       ENST00000399925 ENSE00001540828
7950  ENSG00000156265       ENST00000451489 ENSE00003505985
7951  ENSG00000156265       ENST00000451489 ENSE00003485631
7952  ENSG00000156265       ENST00000451489 ENSE00003577947
7953  ENSG00000156265       ENST00000451489 ENSE00001721677
7954  ENSG00000156265       ENST00000451489 ENSE00001692353
7955  ENSG00000156265       ENST00000470800 ENSE00003577225
7956  ENSG00000156265       ENST00000470800 ENSE00003686991
7957  ENSG00000156265       ENST00000470800 ENSE00001855228
7958  ENSG00000156265       ENST00000470800 ENSE00001953114
7959  ENSG00000156265       ENST00000286791 ENSE00003788813
7960  ENSG00000156265       ENST00000286791 ENSE00003688344
7961  ENSG00000156265       ENST00000286791 ENSE00003616566
7962  ENSG00000156265       ENST00000286791 ENSE00003505985
7963  ENSG00000156265       ENST00000286791 ENSE00003485631
7964  ENSG00000156265       ENST00000286791 ENSE00003734512
7965  ENSG00000156265       ENST00000286791 ENSE00001749481
7966  ENSG00000156265       ENST00000545939 ENSE00003505985
7967  ENSG00000156265       ENST00000545939 ENSE00003485631
7968  ENSG00000156265       ENST00000545939 ENSE00001749481
7969  ENSG00000156265       ENST00000545939 ENSE00003616261
7970  ENSG00000223488       ENST00000379571 ENSE00001553831
7971  ENSG00000160294       ENST00000467026 ENSE00001956545
7972  ENSG00000160294       ENST00000467026 ENSE00003643410
7973  ENSG00000160294       ENST00000467026 ENSE00003688476
7974  ENSG00000160294       ENST00000467026 ENSE00003484738
7975  ENSG00000160294       ENST00000467026 ENSE00003581188
7976  ENSG00000160294       ENST00000467026 ENSE00003526095
7977  ENSG00000160294       ENST00000467026 ENSE00003597990
7978  ENSG00000160294       ENST00000467026 ENSE00003500518
7979  ENSG00000160294       ENST00000467026 ENSE00003482097
7980  ENSG00000160294       ENST00000467026 ENSE00003603723
7981  ENSG00000160294       ENST00000467026 ENSE00003533166
7982  ENSG00000160294       ENST00000467026 ENSE00003463408
7983  ENSG00000160294       ENST00000467026 ENSE00003633023
7984  ENSG00000160294       ENST00000496607 ENSE00003643410
7985  ENSG00000160294       ENST00000496607 ENSE00003688476
7986  ENSG00000160294       ENST00000496607 ENSE00003484738
7987  ENSG00000160294       ENST00000496607 ENSE00003581188
7988  ENSG00000160294       ENST00000496607 ENSE00003526095
7989  ENSG00000160294       ENST00000496607 ENSE00003597990
7990  ENSG00000160294       ENST00000496607 ENSE00003500518
7991  ENSG00000160294       ENST00000496607 ENSE00003482097
7992  ENSG00000160294       ENST00000496607 ENSE00003603723
7993  ENSG00000160294       ENST00000496607 ENSE00003533166
7994  ENSG00000160294       ENST00000496607 ENSE00003463408
7995  ENSG00000160294       ENST00000496607 ENSE00003633023
7996  ENSG00000160294       ENST00000496607 ENSE00001815486
7997  ENSG00000160294       ENST00000496607 ENSE00003634959
7998  ENSG00000160294       ENST00000496607 ENSE00003620264
7999  ENSG00000160294       ENST00000496607 ENSE00003647431
8000  ENSG00000160294       ENST00000496607 ENSE00003667275
8001  ENSG00000160294       ENST00000496607 ENSE00003673707
8002  ENSG00000160294       ENST00000486937 ENSE00003643410
8003  ENSG00000160294       ENST00000486937 ENSE00003688476
8004  ENSG00000160294       ENST00000486937 ENSE00003484738
8005  ENSG00000160294       ENST00000486937 ENSE00003581188
8006  ENSG00000160294       ENST00000486937 ENSE00003500518
8007  ENSG00000160294       ENST00000486937 ENSE00003482097
8008  ENSG00000160294       ENST00000486937 ENSE00003603723
8009  ENSG00000160294       ENST00000486937 ENSE00003533166
8010  ENSG00000160294       ENST00000486937 ENSE00003463408
8011  ENSG00000160294       ENST00000486937 ENSE00003633023
8012  ENSG00000160294       ENST00000486937 ENSE00003634959
8013  ENSG00000160294       ENST00000486937 ENSE00003620264
8014  ENSG00000160294       ENST00000486937 ENSE00003647431
8015  ENSG00000160294       ENST00000486937 ENSE00003667275
8016  ENSG00000160294       ENST00000486937 ENSE00003673707
8017  ENSG00000160294       ENST00000486937 ENSE00001822948
8018  ENSG00000160294       ENST00000486937 ENSE00003561146
8019  ENSG00000160294       ENST00000486937 ENSE00001878149
8020  ENSG00000160294       ENST00000397708 ENSE00001529813
8021  ENSG00000160294       ENST00000397708 ENSE00001529811
8022  ENSG00000160294       ENST00000397708 ENSE00001051219
8023  ENSG00000160294       ENST00000397708 ENSE00001051212
8024  ENSG00000160294       ENST00000397708 ENSE00001051213
8025  ENSG00000160294       ENST00000397708 ENSE00001051232
8026  ENSG00000160294       ENST00000397708 ENSE00001051216
8027  ENSG00000160294       ENST00000397708 ENSE00001051206
8028  ENSG00000160294       ENST00000397708 ENSE00001051226
8029  ENSG00000160294       ENST00000397708 ENSE00001051240
8030  ENSG00000160294       ENST00000397708 ENSE00001051215
8031  ENSG00000160294       ENST00000397708 ENSE00003461146
8032  ENSG00000160294       ENST00000397708 ENSE00003532634
8033  ENSG00000160294       ENST00000397708 ENSE00003620301
8034  ENSG00000160294       ENST00000397708 ENSE00003486931
8035  ENSG00000160294       ENST00000397708 ENSE00003675693
8036  ENSG00000160294       ENST00000397708 ENSE00003458431
8037  ENSG00000160294       ENST00000397708 ENSE00003599023
8038  ENSG00000160294       ENST00000397708 ENSE00003566979
8039  ENSG00000160294       ENST00000397708 ENSE00003506114
8040  ENSG00000160294       ENST00000397708 ENSE00003487436
8041  ENSG00000160294       ENST00000397708 ENSE00003553058
8042  ENSG00000160294       ENST00000397708 ENSE00003572625
8043  ENSG00000160294       ENST00000397708 ENSE00003482081
8044  ENSG00000160294       ENST00000397708 ENSE00003630073
8045  ENSG00000160294       ENST00000397708 ENSE00003459748
8046  ENSG00000160294       ENST00000397708 ENSE00003606597
8047  ENSG00000160294       ENST00000397708 ENSE00003485376
8048  ENSG00000160294       ENST00000397708 ENSE00003650730
8049  ENSG00000160294       ENST00000481113 ENSE00003643410
8050  ENSG00000160294       ENST00000481113 ENSE00003688476
8051  ENSG00000160294       ENST00000481113 ENSE00003484738
8052  ENSG00000160294       ENST00000481113 ENSE00001872826
8053  ENSG00000160294       ENST00000494755 ENSE00001823878
8054  ENSG00000160294       ENST00000494755 ENSE00001843870
8055  ENSG00000160294       ENST00000479557 ENSE00001910988
8056  ENSG00000160294       ENST00000479557 ENSE00001889901
8057  ENSG00000160294       ENST00000426537 ENSE00001615976
8058  ENSG00000160294       ENST00000426537 ENSE00001662047
8059  ENSG00000160294       ENST00000495475 ENSE00001937494
8060  ENSG00000160294       ENST00000495475 ENSE00001879980
8061  ENSG00000160294       ENST00000291688 ENSE00001529811
8062  ENSG00000160294       ENST00000291688 ENSE00001051219
8063  ENSG00000160294       ENST00000291688 ENSE00001051212
8064  ENSG00000160294       ENST00000291688 ENSE00001051213
8065  ENSG00000160294       ENST00000291688 ENSE00001051232
8066  ENSG00000160294       ENST00000291688 ENSE00001051216
8067  ENSG00000160294       ENST00000291688 ENSE00001051206
8068  ENSG00000160294       ENST00000291688 ENSE00001051226
8069  ENSG00000160294       ENST00000291688 ENSE00001051240
8070  ENSG00000160294       ENST00000291688 ENSE00001051215
8071  ENSG00000160294       ENST00000291688 ENSE00003461146
8072  ENSG00000160294       ENST00000291688 ENSE00003532634
8073  ENSG00000160294       ENST00000291688 ENSE00003620301
8074  ENSG00000160294       ENST00000291688 ENSE00003486931
8075  ENSG00000160294       ENST00000291688 ENSE00003675693
8076  ENSG00000160294       ENST00000291688 ENSE00003458431
8077  ENSG00000160294       ENST00000291688 ENSE00003599023
8078  ENSG00000160294       ENST00000291688 ENSE00003566979
8079  ENSG00000160294       ENST00000291688 ENSE00003506114
8080  ENSG00000160294       ENST00000291688 ENSE00003487436
8081  ENSG00000160294       ENST00000291688 ENSE00003553058
8082  ENSG00000160294       ENST00000291688 ENSE00003572625
8083  ENSG00000160294       ENST00000291688 ENSE00003482081
8084  ENSG00000160294       ENST00000291688 ENSE00003630073
8085  ENSG00000160294       ENST00000291688 ENSE00003459748
8086  ENSG00000160294       ENST00000291688 ENSE00003606597
8087  ENSG00000160294       ENST00000291688 ENSE00003485376
8088  ENSG00000160294       ENST00000291688 ENSE00001051222
8089  ENSG00000215424       ENST00000590829 ENSE00002823050
8090  ENSG00000215424       ENST00000590829 ENSE00001312905
8091  ENSG00000215424       ENST00000590829 ENSE00002773042
8092  ENSG00000215424       ENST00000591223 ENSE00001312905
8093  ENSG00000215424       ENST00000591223 ENSE00002920131
8094  ENSG00000215424       ENST00000591223 ENSE00002855596
8095  ENSG00000215424       ENST00000414659 ENSE00001312905
8096  ENSG00000215424       ENST00000414659 ENSE00001344241
8097  ENSG00000215424       ENST00000414659 ENSE00001483121
8098  ENSG00000215424       ENST00000414659 ENSE00001667261
8099  ENSG00000215424       ENST00000432735 ENSE00001305889
8100  ENSG00000215424       ENST00000432735 ENSE00001419892
8101  ENSG00000215424       ENST00000432735 ENSE00001793841
8102  ENSG00000215424       ENST00000444998 ENSE00001793841
8103  ENSG00000215424       ENST00000444998 ENSE00001612115
8104  ENSG00000215424       ENST00000455567 ENSE00001312905
8105  ENSG00000215424       ENST00000455567 ENSE00001667261
8106  ENSG00000215424       ENST00000455567 ENSE00001764670
8107  ENSG00000215424       ENST00000421927 ENSE00001631322
8108  ENSG00000215424       ENST00000421927 ENSE00001760389
8109  ENSG00000215424       ENST00000588753 ENSE00002915067
8110  ENSG00000215424       ENST00000588753 ENSE00002781108
8111  ENSG00000215424       ENST00000588753 ENSE00002858811
8112  ENSG00000215424       ENST00000420074 ENSE00001638204
8113  ENSG00000215424       ENST00000420074 ENSE00001608729
8114  ENSG00000226054       ENST00000452572 ENSE00001655365
8115  ENSG00000229623       ENST00000438852 ENSE00001651651
8116  ENSG00000207863       ENST00000385128 ENSE00001500134
8117  ENSG00000283904       ENST00000385060 ENSE00001500066
8118  ENSG00000234883       ENST00000456917 ENSE00001681937
8119  ENSG00000234883       ENST00000456917 ENSE00001763140
8120  ENSG00000234883       ENST00000456917 ENSE00001745417
8121  ENSG00000234883       ENST00000456917 ENSE00001794709
8122  ENSG00000266299       ENST00000581787 ENSE00002688762
8123  ENSG00000266211       ENST00000580304 ENSE00002697578
8124  ENSG00000263681       ENST00000582241 ENSE00002698395
8125  ENSG00000275708       ENST00000615959 ENSE00003739698
8126  ENSG00000264462       ENST00000581792 ENSE00002687018
8127  ENSG00000277437       ENST00000614492 ENSE00003754026
8128  ENSG00000264063       ENST00000577708 ENSE00002724720
8129  ENSG00000265007       ENST00000581194 ENSE00002705414
8130  ENSG00000266133       ENST00000584048 ENSE00002722960
8131  ENSG00000263973       ENST00000585040 ENSE00002707623
8132  ENSG00000265841       ENST00000580069 ENSE00002731930
8133  ENSG00000224141       ENST00000437492 ENSE00001631540
8134  ENSG00000224141       ENST00000437492 ENSE00001764729
8135  ENSG00000224141       ENST00000437492 ENSE00001788014
8136  ENSG00000224141       ENST00000437492 ENSE00001750886
8137  ENSG00000224141       ENST00000355189 ENSE00001764729
8138  ENSG00000224141       ENST00000355189 ENSE00001788014
8139  ENSG00000224141       ENST00000355189 ENSE00001755702
8140  ENSG00000224141       ENST00000355189 ENSE00001518655
8141  ENSG00000224141       ENST00000355189 ENSE00001657136
8142  ENSG00000224141       ENST00000414582 ENSE00001764729
8143  ENSG00000224141       ENST00000414582 ENSE00001627822
8144  ENSG00000224141       ENST00000414582 ENSE00001799906
8145  ENSG00000264580       ENST00000579137 ENSE00002701278
8146  ENSG00000278433       ENST00000613967 ENSE00003743001
8147  ENSG00000275469       ENST00000619419 ENSE00003741747
8148  ENSG00000284448       ENST00000290239 ENSE00003729123
8149  ENSG00000275523       ENST00000611656 ENSE00003745719
8150  ENSG00000275950       ENST00000616420 ENSE00003733866
8151  ENSG00000274060       ENST00000616483 ENSE00003726608
8152  ENSG00000277379       ENST00000622482 ENSE00003717492
8153  ENSG00000275692       ENST00000617390 ENSE00003749461
8154  ENSG00000275166       ENST00000622292 ENSE00003738277
8155  ENSG00000275167       ENST00000611994 ENSE00003717901
8156  ENSG00000211590       ENST00000390235 ENSE00001507662
8157  ENSG00000284550       ENST00000616627 ENSE00003733446
8158  ENSG00000278618       ENST00000621412 ENSE00003716433
8159  ENSG00000207638       ENST00000384906 ENSE00001499913
8160  ENSG00000215386       ENST00000635845 ENSE00003798308
8161  ENSG00000215386       ENST00000635845 ENSE00001715598
8162  ENSG00000215386       ENST00000635845 ENSE00001494058
8163  ENSG00000215386       ENST00000635845 ENSE00001625593
8164  ENSG00000215386       ENST00000635845 ENSE00001758912
8165  ENSG00000215386       ENST00000635845 ENSE00003799649
8166  ENSG00000215386       ENST00000602580 ENSE00001715598
8167  ENSG00000215386       ENST00000602580 ENSE00001494058
8168  ENSG00000215386       ENST00000602580 ENSE00001625593
8169  ENSG00000215386       ENST00000602580 ENSE00001758912
8170  ENSG00000215386       ENST00000602580 ENSE00001494061
8171  ENSG00000215386       ENST00000602580 ENSE00003336157
8172  ENSG00000215386       ENST00000619222 ENSE00001715598
8173  ENSG00000215386       ENST00000619222 ENSE00001494058
8174  ENSG00000215386       ENST00000619222 ENSE00001625593
8175  ENSG00000215386       ENST00000619222 ENSE00001494061
8176  ENSG00000215386       ENST00000619222 ENSE00001789031
8177  ENSG00000215386       ENST00000619222 ENSE00001769076
8178  ENSG00000215386       ENST00000619222 ENSE00001541870
8179  ENSG00000215386       ENST00000619222 ENSE00003717383
8180  ENSG00000215386       ENST00000602935 ENSE00001715598
8181  ENSG00000215386       ENST00000602935 ENSE00001494058
8182  ENSG00000215386       ENST00000602935 ENSE00001625593
8183  ENSG00000215386       ENST00000602935 ENSE00001758912
8184  ENSG00000215386       ENST00000602935 ENSE00003268007
8185  ENSG00000215386       ENST00000602935 ENSE00003379486
8186  ENSG00000215386       ENST00000400178 ENSE00001715598
8187  ENSG00000215386       ENST00000400178 ENSE00001494058
8188  ENSG00000215386       ENST00000400178 ENSE00001625593
8189  ENSG00000215386       ENST00000400178 ENSE00001758912
8190  ENSG00000215386       ENST00000400178 ENSE00001789031
8191  ENSG00000215386       ENST00000400178 ENSE00001740282
8192  ENSG00000215386       ENST00000456342 ENSE00001494058
8193  ENSG00000215386       ENST00000456342 ENSE00001625593
8194  ENSG00000215386       ENST00000456342 ENSE00001758912
8195  ENSG00000215386       ENST00000456342 ENSE00001789031
8196  ENSG00000215386       ENST00000456342 ENSE00001769076
8197  ENSG00000215386       ENST00000456342 ENSE00001626675
8198  ENSG00000215386       ENST00000456342 ENSE00001712365
8199  ENSG00000215386       ENST00000428669 ENSE00001494058
8200  ENSG00000215386       ENST00000428669 ENSE00001625593
8201  ENSG00000215386       ENST00000428669 ENSE00001758912
8202  ENSG00000215386       ENST00000428669 ENSE00001789031
8203  ENSG00000215386       ENST00000428669 ENSE00001769076
8204  ENSG00000215386       ENST00000428669 ENSE00001541870
8205  ENSG00000215386       ENST00000428669 ENSE00001692054
8206  ENSG00000215386       ENST00000419952 ENSE00001625593
8207  ENSG00000215386       ENST00000419952 ENSE00001758912
8208  ENSG00000215386       ENST00000419952 ENSE00001789031
8209  ENSG00000215386       ENST00000419952 ENSE00002227479
8210  ENSG00000215386       ENST00000419952 ENSE00001614463
8211  ENSG00000215386       ENST00000445461 ENSE00001625593
8212  ENSG00000215386       ENST00000445461 ENSE00001758912
8213  ENSG00000215386       ENST00000445461 ENSE00001789031
8214  ENSG00000215386       ENST00000445461 ENSE00001769076
8215  ENSG00000215386       ENST00000445461 ENSE00001624625
8216  ENSG00000215386       ENST00000445461 ENSE00001706385
8217  ENSG00000215386       ENST00000602505 ENSE00001758912
8218  ENSG00000215386       ENST00000602505 ENSE00003234720
8219  ENSG00000215386       ENST00000602505 ENSE00003408823
8220  ENSG00000215386       ENST00000602901 ENSE00001758912
8221  ENSG00000215386       ENST00000602901 ENSE00001789031
8222  ENSG00000215386       ENST00000602901 ENSE00001769076
8223  ENSG00000215386       ENST00000602901 ENSE00001740282
8224  ENSG00000215386       ENST00000602901 ENSE00003330694
8225  ENSG00000215386       ENST00000602339 ENSE00001758912
8226  ENSG00000215386       ENST00000602339 ENSE00001789031
8227  ENSG00000215386       ENST00000602339 ENSE00001769076
8228  ENSG00000215386       ENST00000602339 ENSE00003365409
8229  ENSG00000215386       ENST00000602339 ENSE00003284770
8230  ENSG00000215386       ENST00000602892 ENSE00001789031
8231  ENSG00000215386       ENST00000602892 ENSE00003284117
8232  ENSG00000215386       ENST00000602892 ENSE00003361529
8233  ENSG00000215386       ENST00000418813 ENSE00001789031
8234  ENSG00000215386       ENST00000418813 ENSE00001769076
8235  ENSG00000215386       ENST00000418813 ENSE00001762640
8236  ENSG00000215386       ENST00000418813 ENSE00001763221
8237  ENSG00000215386       ENST00000418813 ENSE00003254110
8238  ENSG00000215386       ENST00000435697 ENSE00001755077
8239  ENSG00000215386       ENST00000435697 ENSE00001693300
8240  ENSG00000215386       ENST00000453910 ENSE00001789031
8241  ENSG00000215386       ENST00000453910 ENSE00001769076
8242  ENSG00000215386       ENST00000453910 ENSE00001541870
8243  ENSG00000215386       ENST00000453910 ENSE00001612956
8244  ENSG00000215386       ENST00000453910 ENSE00001742590
8245  ENSG00000215386       ENST00000602620 ENSE00001789031
8246  ENSG00000215386       ENST00000602620 ENSE00001769076
8247  ENSG00000215386       ENST00000602620 ENSE00003366954
8248  ENSG00000215386       ENST00000602620 ENSE00003346913
8249  ENSG00000215386       ENST00000441820 ENSE00001541870
8250  ENSG00000215386       ENST00000441820 ENSE00001797242
8251  ENSG00000215386       ENST00000441820 ENSE00001632518
8252  ENSG00000215386       ENST00000602280 ENSE00001541870
8253  ENSG00000215386       ENST00000602280 ENSE00001763221
8254  ENSG00000215386       ENST00000602280 ENSE00003279862
8255  ENSG00000215386       ENST00000602280 ENSE00003271178
8256  ENSG00000215386       ENST00000602323 ENSE00001541870
8257  ENSG00000215386       ENST00000602323 ENSE00001763221
8258  ENSG00000215386       ENST00000602323 ENSE00003287532
8259  ENSG00000215386       ENST00000602323 ENSE00003444578
8260  ENSG00000215386       ENST00000602323 ENSE00003429581
8261  ENSG00000199030       ENST00000362160 ENSE00001436923
8262  ENSG00000159055       ENST00000290130 ENSE00001042850
8263  ENSG00000159055       ENST00000290130 ENSE00001042848
8264  ENSG00000159055       ENST00000290130 ENSE00001042852
8265  ENSG00000159055       ENST00000290130 ENSE00001042851
8266  ENSG00000159055       ENST00000290130 ENSE00001042846
8267  ENSG00000159055       ENST00000486363 ENSE00001900677
8268  ENSG00000159055       ENST00000486363 ENSE00001862365
8269  ENSG00000227256       ENST00000453549 ENSE00001727266
8270  ENSG00000227256       ENST00000453549 ENSE00001762978
8271  ENSG00000227256       ENST00000453549 ENSE00001652395
8272  ENSG00000159256       ENST00000492336 ENSE00003481905
8273  ENSG00000159256       ENST00000492336 ENSE00003542582
8274  ENSG00000159256       ENST00000492336 ENSE00003511660
8275  ENSG00000159256       ENST00000492336 ENSE00003612731
8276  ENSG00000159256       ENST00000492336 ENSE00001816746
8277  ENSG00000159256       ENST00000400485 ENSE00003657062
8278  ENSG00000159256       ENST00000400485 ENSE00003566823
8279  ENSG00000159256       ENST00000400485 ENSE00003482680
8280  ENSG00000159256       ENST00000400485 ENSE00003615780
8281  ENSG00000159256       ENST00000400485 ENSE00003667982
8282  ENSG00000159256       ENST00000400485 ENSE00003477961
8283  ENSG00000159256       ENST00000400485 ENSE00003579316
8284  ENSG00000159256       ENST00000400485 ENSE00003636120
8285  ENSG00000159256       ENST00000400485 ENSE00003621847
8286  ENSG00000159256       ENST00000400485 ENSE00003570014
8287  ENSG00000159256       ENST00000400485 ENSE00003623420
8288  ENSG00000159256       ENST00000400485 ENSE00003522346
8289  ENSG00000159256       ENST00000400485 ENSE00003620224
8290  ENSG00000159256       ENST00000400485 ENSE00003549856
8291  ENSG00000159256       ENST00000400485 ENSE00003676247
8292  ENSG00000159256       ENST00000400485 ENSE00003693820
8293  ENSG00000159256       ENST00000400485 ENSE00003663455
8294  ENSG00000159256       ENST00000487909 ENSE00003511660
8295  ENSG00000159256       ENST00000487909 ENSE00003612731
8296  ENSG00000159256       ENST00000487909 ENSE00001844409
8297  ENSG00000159256       ENST00000487909 ENSE00003633497
8298  ENSG00000159256       ENST00000487909 ENSE00003462510
8299  ENSG00000159256       ENST00000487909 ENSE00003629032
8300  ENSG00000159256       ENST00000487909 ENSE00003561106
8301  ENSG00000159256       ENST00000487909 ENSE00003623617
8302  ENSG00000159256       ENST00000487909 ENSE00003559718
8303  ENSG00000159256       ENST00000487909 ENSE00003470004
8304  ENSG00000159256       ENST00000487909 ENSE00003550917
8305  ENSG00000159256       ENST00000487909 ENSE00003661371
8306  ENSG00000159256       ENST00000487909 ENSE00003506559
8307  ENSG00000159256       ENST00000487909 ENSE00003492014
8308  ENSG00000159256       ENST00000487909 ENSE00003652189
8309  ENSG00000159256       ENST00000487909 ENSE00003555085
8310  ENSG00000159256       ENST00000485933 ENSE00001890132
8311  ENSG00000159256       ENST00000485933 ENSE00001928353
8312  ENSG00000159256       ENST00000485299 ENSE00003623617
8313  ENSG00000159256       ENST00000485299 ENSE00003559718
8314  ENSG00000159256       ENST00000485299 ENSE00001876771
8315  ENSG00000159256       ENST00000485299 ENSE00001827151
8316  ENSG00000159256       ENST00000484028 ENSE00003506559
8317  ENSG00000159256       ENST00000484028 ENSE00001859893
8318  ENSG00000159256       ENST00000484028 ENSE00001875331
8319  ENSG00000159256       ENST00000546482 ENSE00003693820
8320  ENSG00000159256       ENST00000546482 ENSE00003489439
8321  ENSG00000159256       ENST00000546482 ENSE00002350566
8322  ENSG00000159256       ENST00000546482 ENSE00003668379
8323  ENSG00000159256       ENST00000546482 ENSE00002410964
8324  ENSG00000159256       ENST00000546482 ENSE00002342944
8325  ENSG00000159256       ENST00000546482 ENSE00002355022
8326  ENSG00000159256       ENST00000546482 ENSE00002333753
8327  ENSG00000159256       ENST00000549948 ENSE00003693820
8328  ENSG00000159256       ENST00000549948 ENSE00003489439
8329  ENSG00000159256       ENST00000549948 ENSE00002350566
8330  ENSG00000159256       ENST00000549948 ENSE00002355022
8331  ENSG00000159256       ENST00000549948 ENSE00002333753
8332  ENSG00000159256       ENST00000549948 ENSE00003579232
8333  ENSG00000159256       ENST00000549948 ENSE00002388022
8334  ENSG00000159256       ENST00000551788 ENSE00003693820
8335  ENSG00000159256       ENST00000551788 ENSE00003489439
8336  ENSG00000159256       ENST00000551788 ENSE00002350566
8337  ENSG00000159256       ENST00000551788 ENSE00003668379
8338  ENSG00000159256       ENST00000551788 ENSE00002355022
8339  ENSG00000159256       ENST00000551788 ENSE00002333753
8340  ENSG00000159256       ENST00000551367 ENSE00003652189
8341  ENSG00000159256       ENST00000551367 ENSE00002333753
8342  ENSG00000159256       ENST00000551367 ENSE00003501266
8343  ENSG00000159256       ENST00000552581 ENSE00003693820
8344  ENSG00000159256       ENST00000552581 ENSE00002355022
8345  ENSG00000159256       ENST00000552581 ENSE00002333753
8346  ENSG00000159256       ENST00000552581 ENSE00003559346
8347  ENSG00000159256       ENST00000552581 ENSE00002372498
8348  ENSG00000159256       ENST00000552581 ENSE00003560391
8349  ENSG00000159256       ENST00000552581 ENSE00003463975
8350  ENSG00000159256       ENST00000547657 ENSE00003652189
8351  ENSG00000159256       ENST00000547657 ENSE00002410964
8352  ENSG00000159256       ENST00000547657 ENSE00002355022
8353  ENSG00000159256       ENST00000547657 ENSE00002333753
8354  ENSG00000159256       ENST00000547657 ENSE00003501266
8355  ENSG00000170262       ENST00000399784 ENSE00001540189
8356  ENSG00000170262       ENST00000399784 ENSE00001540188
8357  ENSG00000170262       ENST00000399784 ENSE00001540186
8358  ENSG00000170262       ENST00000399784 ENSE00003497665
8359  ENSG00000170262       ENST00000399784 ENSE00003624361
8360  ENSG00000170262       ENST00000497833 ENSE00001540189
8361  ENSG00000170262       ENST00000497833 ENSE00001540188
8362  ENSG00000170262       ENST00000497833 ENSE00003480389
8363  ENSG00000170262       ENST00000497833 ENSE00003689084
8364  ENSG00000170262       ENST00000303645 ENSE00003497665
8365  ENSG00000170262       ENST00000303645 ENSE00003624361
8366  ENSG00000170262       ENST00000303645 ENSE00001819828
8367  ENSG00000170262       ENST00000339944 ENSE00003497665
8368  ENSG00000170262       ENST00000339944 ENSE00001379888
8369  ENSG00000170262       ENST00000339944 ENSE00001378461
8370  ENSG00000215734       ENST00000400819 ENSE00001696457
8371  ENSG00000154719       ENST00000352957 ENSE00001316199
8372  ENSG00000154719       ENST00000352957 ENSE00001017284
8373  ENSG00000154719       ENST00000352957 ENSE00001136807
8374  ENSG00000154719       ENST00000352957 ENSE00001017295
8375  ENSG00000154719       ENST00000352957 ENSE00001017293
8376  ENSG00000154719       ENST00000352957 ENSE00001017292
8377  ENSG00000154719       ENST00000352957 ENSE00001017296
8378  ENSG00000154719       ENST00000352957 ENSE00003787201
8379  ENSG00000154719       ENST00000352957 ENSE00001017286
8380  ENSG00000154719       ENST00000352957 ENSE00003605259
8381  ENSG00000154719       ENST00000307301 ENSE00001316199
8382  ENSG00000154719       ENST00000307301 ENSE00001017284
8383  ENSG00000154719       ENST00000307301 ENSE00001136807
8384  ENSG00000154719       ENST00000307301 ENSE00001017295
8385  ENSG00000154719       ENST00000307301 ENSE00001017293
8386  ENSG00000154719       ENST00000307301 ENSE00001017292
8387  ENSG00000154719       ENST00000307301 ENSE00001017296
8388  ENSG00000154719       ENST00000307301 ENSE00003787201
8389  ENSG00000154719       ENST00000307301 ENSE00001017286
8390  ENSG00000154719       ENST00000307301 ENSE00001149457
8391  ENSG00000154719       ENST00000307301 ENSE00003528074
8392  ENSG00000154719       ENST00000419219 ENSE00001017284
8393  ENSG00000154719       ENST00000419219 ENSE00001136807
8394  ENSG00000154719       ENST00000419219 ENSE00001017295
8395  ENSG00000154719       ENST00000419219 ENSE00001017292
8396  ENSG00000154719       ENST00000419219 ENSE00001017296
8397  ENSG00000154719       ENST00000419219 ENSE00003787201
8398  ENSG00000154719       ENST00000419219 ENSE00001686695
8399  ENSG00000154719       ENST00000419219 ENSE00001724952
8400  ENSG00000232777       ENST00000450190 ENSE00001685797
8401  ENSG00000243927       ENST00000488492 ENSE00001925207
8402  ENSG00000243927       ENST00000488492 ENSE00001815089
8403  ENSG00000243927       ENST00000488492 ENSE00001880912
8404  ENSG00000243927       ENST00000488492 ENSE00003529702
8405  ENSG00000243927       ENST00000488492 ENSE00003577543
8406  ENSG00000243927       ENST00000399312 ENSE00001537488
8407  ENSG00000243927       ENST00000399312 ENSE00003597756
8408  ENSG00000243927       ENST00000399312 ENSE00003491091
8409  ENSG00000243927       ENST00000477091 ENSE00001815089
8410  ENSG00000243927       ENST00000477091 ENSE00001880912
8411  ENSG00000243927       ENST00000477091 ENSE00003529702
8412  ENSG00000243927       ENST00000477091 ENSE00003577543
8413  ENSG00000243927       ENST00000477091 ENSE00001829385
8414  ENSG00000243927       ENST00000483977 ENSE00003577543
8415  ENSG00000243927       ENST00000483977 ENSE00001926497
8416  ENSG00000243927       ENST00000482679 ENSE00003529702
8417  ENSG00000243927       ENST00000482679 ENSE00003577543
8418  ENSG00000243927       ENST00000482679 ENSE00001817319
8419  ENSG00000231058       ENST00000445341 ENSE00001673727
8420  ENSG00000231058       ENST00000445341 ENSE00001750674
8421  ENSG00000231058       ENST00000445341 ENSE00001685096
8422  ENSG00000280243       ENST00000624263 ENSE00003759772
8423  ENSG00000228930       ENST00000429327 ENSE00001685072
8424  ENSG00000224747       ENST00000443300 ENSE00001774227
8425  ENSG00000224747       ENST00000443300 ENSE00001716424
8426  ENSG00000224747       ENST00000443300 ENSE00001607690
8427  ENSG00000227999       ENST00000445440 ENSE00001616067
8428  ENSG00000223431       ENST00000443620 ENSE00001696870
8429  ENSG00000223431       ENST00000443620 ENSE00001732080
8430  ENSG00000157601       ENST00000490220 ENSE00001942734
8431  ENSG00000157601       ENST00000490220 ENSE00001534043
8432  ENSG00000157601       ENST00000490220 ENSE00001534041
8433  ENSG00000157601       ENST00000490220 ENSE00001534040
8434  ENSG00000157601       ENST00000490220 ENSE00001534038
8435  ENSG00000157601       ENST00000468506 ENSE00001952105
8436  ENSG00000157601       ENST00000468506 ENSE00001715229
8437  ENSG00000157601       ENST00000468506 ENSE00001776947
8438  ENSG00000157601       ENST00000468506 ENSE00001943029
8439  ENSG00000157601       ENST00000398600 ENSE00001534043
8440  ENSG00000157601       ENST00000398600 ENSE00001534041
8441  ENSG00000157601       ENST00000398600 ENSE00001534040
8442  ENSG00000157601       ENST00000398600 ENSE00001534038
8443  ENSG00000157601       ENST00000398600 ENSE00001534045
8444  ENSG00000157601       ENST00000398600 ENSE00001534036
8445  ENSG00000157601       ENST00000398600 ENSE00003795097
8446  ENSG00000157601       ENST00000398600 ENSE00002459117
8447  ENSG00000157601       ENST00000398600 ENSE00001033794
8448  ENSG00000157601       ENST00000398600 ENSE00003785790
8449  ENSG00000157601       ENST00000398600 ENSE00002440210
8450  ENSG00000157601       ENST00000398600 ENSE00001033785
8451  ENSG00000157601       ENST00000398600 ENSE00001033788
8452  ENSG00000157601       ENST00000398600 ENSE00001033793
8453  ENSG00000157601       ENST00000398600 ENSE00003640572
8454  ENSG00000157601       ENST00000398600 ENSE00001033780
8455  ENSG00000157601       ENST00000398600 ENSE00001225085
8456  ENSG00000157601       ENST00000398600 ENSE00001033791
8457  ENSG00000157601       ENST00000398600 ENSE00001533818
8458  ENSG00000157601       ENST00000413778 ENSE00001534041
8459  ENSG00000157601       ENST00000413778 ENSE00001534040
8460  ENSG00000157601       ENST00000413778 ENSE00001534038
8461  ENSG00000157601       ENST00000413778 ENSE00001715229
8462  ENSG00000157601       ENST00000413778 ENSE00001776947
8463  ENSG00000157601       ENST00000413778 ENSE00001534036
8464  ENSG00000157601       ENST00000413778 ENSE00001765492
8465  ENSG00000157601       ENST00000413778 ENSE00001752508
8466  ENSG00000157601       ENST00000413778 ENSE00001634889
8467  ENSG00000157601       ENST00000419044 ENSE00001534040
8468  ENSG00000157601       ENST00000419044 ENSE00001534038
8469  ENSG00000157601       ENST00000419044 ENSE00001534036
8470  ENSG00000157601       ENST00000419044 ENSE00001595799
8471  ENSG00000157601       ENST00000419044 ENSE00001724986
8472  ENSG00000157601       ENST00000398598 ENSE00001534040
8473  ENSG00000157601       ENST00000398598 ENSE00001534038
8474  ENSG00000157601       ENST00000398598 ENSE00001534036
8475  ENSG00000157601       ENST00000398598 ENSE00003795097
8476  ENSG00000157601       ENST00000398598 ENSE00002459117
8477  ENSG00000157601       ENST00000398598 ENSE00001033794
8478  ENSG00000157601       ENST00000398598 ENSE00003785790
8479  ENSG00000157601       ENST00000398598 ENSE00002440210
8480  ENSG00000157601       ENST00000398598 ENSE00001033785
8481  ENSG00000157601       ENST00000398598 ENSE00001033788
8482  ENSG00000157601       ENST00000398598 ENSE00001033793
8483  ENSG00000157601       ENST00000398598 ENSE00003640572
8484  ENSG00000157601       ENST00000398598 ENSE00001033780
8485  ENSG00000157601       ENST00000398598 ENSE00001225085
8486  ENSG00000157601       ENST00000398598 ENSE00001033791
8487  ENSG00000157601       ENST00000398598 ENSE00001533818
8488  ENSG00000157601       ENST00000398598 ENSE00001784904
8489  ENSG00000157601       ENST00000424365 ENSE00001534038
8490  ENSG00000157601       ENST00000424365 ENSE00001534036
8491  ENSG00000157601       ENST00000424365 ENSE00002459117
8492  ENSG00000157601       ENST00000424365 ENSE00001033794
8493  ENSG00000157601       ENST00000424365 ENSE00003785790
8494  ENSG00000157601       ENST00000424365 ENSE00001752508
8495  ENSG00000157601       ENST00000424365 ENSE00001689686
8496  ENSG00000157601       ENST00000484465 ENSE00001930931
8497  ENSG00000157601       ENST00000484465 ENSE00001948624
8498  ENSG00000157601       ENST00000417963 ENSE00001534038
8499  ENSG00000157601       ENST00000417963 ENSE00001534036
8500  ENSG00000157601       ENST00000417963 ENSE00003795097
8501  ENSG00000157601       ENST00000417963 ENSE00002459117
8502  ENSG00000157601       ENST00000417963 ENSE00001033794
8503  ENSG00000157601       ENST00000417963 ENSE00003785790
8504  ENSG00000157601       ENST00000417963 ENSE00001663814
8505  ENSG00000157601       ENST00000417963 ENSE00002480631
8506  ENSG00000157601       ENST00000441677 ENSE00001534040
8507  ENSG00000157601       ENST00000441677 ENSE00001534038
8508  ENSG00000157601       ENST00000441677 ENSE00001534036
8509  ENSG00000157601       ENST00000441677 ENSE00001752508
8510  ENSG00000157601       ENST00000441677 ENSE00001746505
8511  ENSG00000157601       ENST00000441677 ENSE00002494256
8512  ENSG00000157601       ENST00000478268 ENSE00001906621
8513  ENSG00000157601       ENST00000478268 ENSE00001843747
8514  ENSG00000157601       ENST00000427464 ENSE00001534036
8515  ENSG00000157601       ENST00000427464 ENSE00003795097
8516  ENSG00000157601       ENST00000427464 ENSE00001788494
8517  ENSG00000157601       ENST00000288383 ENSE00001033794
8518  ENSG00000157601       ENST00000288383 ENSE00003785790
8519  ENSG00000157601       ENST00000288383 ENSE00002440210
8520  ENSG00000157601       ENST00000288383 ENSE00001033785
8521  ENSG00000157601       ENST00000288383 ENSE00001033788
8522  ENSG00000157601       ENST00000288383 ENSE00001033793
8523  ENSG00000157601       ENST00000288383 ENSE00003640572
8524  ENSG00000157601       ENST00000288383 ENSE00001033780
8525  ENSG00000157601       ENST00000288383 ENSE00001225085
8526  ENSG00000157601       ENST00000288383 ENSE00001033791
8527  ENSG00000157601       ENST00000288383 ENSE00001533818
8528  ENSG00000157601       ENST00000288383 ENSE00001533821
8529  ENSG00000157601       ENST00000288383 ENSE00001533820
8530  ENSG00000157601       ENST00000467510 ENSE00001930325
8531  ENSG00000157601       ENST00000467510 ENSE00001892183
8532  ENSG00000157601       ENST00000486275 ENSE00001926086
8533  ENSG00000157601       ENST00000486275 ENSE00003691836
8534  ENSG00000157601       ENST00000486275 ENSE00001928216
8535  ENSG00000157601       ENST00000491110 ENSE00001821897
8536  ENSG00000157601       ENST00000491110 ENSE00001931053
8537  ENSG00000157601       ENST00000455164 ENSE00001534038
8538  ENSG00000157601       ENST00000455164 ENSE00003795097
8539  ENSG00000157601       ENST00000455164 ENSE00002459117
8540  ENSG00000157601       ENST00000455164 ENSE00001033794
8541  ENSG00000157601       ENST00000455164 ENSE00003785790
8542  ENSG00000157601       ENST00000455164 ENSE00002440210
8543  ENSG00000157601       ENST00000455164 ENSE00001033785
8544  ENSG00000157601       ENST00000455164 ENSE00001033788
8545  ENSG00000157601       ENST00000455164 ENSE00001033793
8546  ENSG00000157601       ENST00000455164 ENSE00003640572
8547  ENSG00000157601       ENST00000455164 ENSE00001033780
8548  ENSG00000157601       ENST00000455164 ENSE00001225085
8549  ENSG00000157601       ENST00000455164 ENSE00001033791
8550  ENSG00000157601       ENST00000455164 ENSE00002290682
8551  ENSG00000157601       ENST00000455164 ENSE00001292698
8552  ENSG00000157601       ENST00000619682 ENSE00003795097
8553  ENSG00000157601       ENST00000619682 ENSE00002459117
8554  ENSG00000157601       ENST00000619682 ENSE00001033794
8555  ENSG00000157601       ENST00000619682 ENSE00003785790
8556  ENSG00000157601       ENST00000619682 ENSE00002440210
8557  ENSG00000157601       ENST00000619682 ENSE00001033785
8558  ENSG00000157601       ENST00000619682 ENSE00001033788
8559  ENSG00000157601       ENST00000619682 ENSE00001033793
8560  ENSG00000157601       ENST00000619682 ENSE00003640572
8561  ENSG00000157601       ENST00000619682 ENSE00003754697
8562  ENSG00000183486       ENST00000330714 ENSE00001890231
8563  ENSG00000183486       ENST00000330714 ENSE00001290756
8564  ENSG00000183486       ENST00000330714 ENSE00002502168
8565  ENSG00000183486       ENST00000330714 ENSE00001306785
8566  ENSG00000183486       ENST00000330714 ENSE00001328894
8567  ENSG00000183486       ENST00000330714 ENSE00002506138
8568  ENSG00000183486       ENST00000330714 ENSE00003670439
8569  ENSG00000183486       ENST00000330714 ENSE00003625443
8570  ENSG00000183486       ENST00000330714 ENSE00003659722
8571  ENSG00000183486       ENST00000330714 ENSE00003461072
8572  ENSG00000183486       ENST00000330714 ENSE00003486071
8573  ENSG00000183486       ENST00000330714 ENSE00003483351
8574  ENSG00000183486       ENST00000330714 ENSE00003494762
8575  ENSG00000183486       ENST00000330714 ENSE00003548437
8576  ENSG00000183486       ENST00000436410 ENSE00001290756
8577  ENSG00000183486       ENST00000436410 ENSE00001800362
8578  ENSG00000183486       ENST00000436410 ENSE00001662455
8579  ENSG00000183486       ENST00000436410 ENSE00001665952
8580  ENSG00000183486       ENST00000435611 ENSE00001290756
8581  ENSG00000183486       ENST00000435611 ENSE00001649361
8582  ENSG00000183486       ENST00000435611 ENSE00001761564
8583  ENSG00000183486       ENST00000435611 ENSE00002461157
8584  ENSG00000183486       ENST00000494252 ENSE00001813213
8585  ENSG00000183486       ENST00000494252 ENSE00001841427
8586  ENSG00000183486       ENST00000494252 ENSE00001852057
8587  ENSG00000183486       ENST00000495892 ENSE00002208472
8588  ENSG00000183486       ENST00000495892 ENSE00002202195
8589  ENSG00000183486       ENST00000416447 ENSE00001662455
8590  ENSG00000183486       ENST00000416447 ENSE00001673002
8591  ENSG00000183486       ENST00000416447 ENSE00001789052
8592  ENSG00000183486       ENST00000416447 ENSE00001752940
8593  ENSG00000183486       ENST00000418103 ENSE00001290756
8594  ENSG00000183486       ENST00000418103 ENSE00001726214
8595  ENSG00000183486       ENST00000418103 ENSE00001653112
8596  ENSG00000183486       ENST00000482953 ENSE00001888638
8597  ENSG00000183486       ENST00000482953 ENSE00003562160
8598  ENSG00000183486       ENST00000482953 ENSE00003581209
8599  ENSG00000183486       ENST00000482953 ENSE00003648119
8600  ENSG00000183486       ENST00000482953 ENSE00003513419
8601  ENSG00000183486       ENST00000482953 ENSE00003610392
8602  ENSG00000183486       ENST00000482953 ENSE00003527405
8603  ENSG00000183486       ENST00000482953 ENSE00003626175
8604  ENSG00000183486       ENST00000482953 ENSE00001923768
8605  ENSG00000183486       ENST00000496774 ENSE00003562160
8606  ENSG00000183486       ENST00000496774 ENSE00003581209
8607  ENSG00000183486       ENST00000496774 ENSE00003648119
8608  ENSG00000183486       ENST00000496774 ENSE00003513419
8609  ENSG00000183486       ENST00000496774 ENSE00001899985
8610  ENSG00000183486       ENST00000496774 ENSE00001887418
8611  ENSG00000183486       ENST00000493753 ENSE00003648119
8612  ENSG00000183486       ENST00000493753 ENSE00001944277
8613  ENSG00000183486       ENST00000493753 ENSE00001954134
8614  ENSG00000183486       ENST00000481838 ENSE00003610392
8615  ENSG00000183486       ENST00000481838 ENSE00003527405
8616  ENSG00000183486       ENST00000481838 ENSE00003626175
8617  ENSG00000183486       ENST00000481838 ENSE00001925533
8618  ENSG00000183486       ENST00000481838 ENSE00001902958
8619  ENSG00000183486       ENST00000474368 ENSE00001873282
8620  ENSG00000183486       ENST00000474368 ENSE00001848097
8621  ENSG00000183486       ENST00000398632 ENSE00003626175
8622  ENSG00000183486       ENST00000398632 ENSE00001645471
8623  ENSG00000183486       ENST00000398632 ENSE00003638781
8624  ENSG00000226543       ENST00000449877 ENSE00001599627
8625  ENSG00000235808       ENST00000450079 ENSE00001600829
8626  ENSG00000156239       ENST00000303775 ENSE00002172942
8627  ENSG00000156239       ENST00000303775 ENSE00001025339
8628  ENSG00000156239       ENST00000303775 ENSE00001025343
8629  ENSG00000156239       ENST00000303775 ENSE00001025338
8630  ENSG00000156239       ENST00000303775 ENSE00001025345
8631  ENSG00000156239       ENST00000303775 ENSE00001137404
8632  ENSG00000156239       ENST00000351429 ENSE00002172942
8633  ENSG00000156239       ENST00000351429 ENSE00001025339
8634  ENSG00000156239       ENST00000351429 ENSE00001025343
8635  ENSG00000156239       ENST00000351429 ENSE00001025345
8636  ENSG00000156239       ENST00000351429 ENSE00001137404
8637  ENSG00000156239       ENST00000460212 ENSE00002172942
8638  ENSG00000156239       ENST00000460212 ENSE00001025339
8639  ENSG00000156239       ENST00000460212 ENSE00001025343
8640  ENSG00000156239       ENST00000460212 ENSE00001025338
8641  ENSG00000156239       ENST00000460212 ENSE00001025345
8642  ENSG00000156239       ENST00000460212 ENSE00001854493
8643  ENSG00000156239       ENST00000460212 ENSE00001832038
8644  ENSG00000154654       ENST00000400546 ENSE00001543472
8645  ENSG00000154654       ENST00000400546 ENSE00003496361
8646  ENSG00000154654       ENST00000400546 ENSE00003691834
8647  ENSG00000154654       ENST00000400546 ENSE00003484151
8648  ENSG00000154654       ENST00000400546 ENSE00003667449
8649  ENSG00000154654       ENST00000400546 ENSE00003570848
8650  ENSG00000154654       ENST00000400546 ENSE00003633427
8651  ENSG00000154654       ENST00000400546 ENSE00001017033
8652  ENSG00000154654       ENST00000400546 ENSE00001017041
8653  ENSG00000154654       ENST00000400546 ENSE00001017045
8654  ENSG00000154654       ENST00000400546 ENSE00001017052
8655  ENSG00000154654       ENST00000400546 ENSE00001017031
8656  ENSG00000154654       ENST00000400546 ENSE00003566319
8657  ENSG00000154654       ENST00000400546 ENSE00003613335
8658  ENSG00000154654       ENST00000400546 ENSE00001017035
8659  ENSG00000154654       ENST00000400546 ENSE00001017048
8660  ENSG00000154654       ENST00000400546 ENSE00001017044
8661  ENSG00000154654       ENST00000400546 ENSE00001543443
8662  ENSG00000154654       ENST00000486367 ENSE00001889667
8663  ENSG00000154654       ENST00000486367 ENSE00003486515
8664  ENSG00000154654       ENST00000486367 ENSE00003459285
8665  ENSG00000154654       ENST00000486367 ENSE00003462661
8666  ENSG00000154654       ENST00000486367 ENSE00001932067
8667  ENSG00000154654       ENST00000461281 ENSE00001957208
8668  ENSG00000154654       ENST00000461281 ENSE00003471779
8669  ENSG00000154654       ENST00000461281 ENSE00003613854
8670  ENSG00000154654       ENST00000461281 ENSE00003577791
8671  ENSG00000154654       ENST00000461281 ENSE00001839401
8672  ENSG00000154654       ENST00000484983 ENSE00001828379
8673  ENSG00000154654       ENST00000484983 ENSE00003546575
8674  ENSG00000154654       ENST00000484983 ENSE00003567949
8675  ENSG00000154654       ENST00000284894 ENSE00003691834
8676  ENSG00000154654       ENST00000284894 ENSE00003484151
8677  ENSG00000154654       ENST00000284894 ENSE00003667449
8678  ENSG00000154654       ENST00000284894 ENSE00003570848
8679  ENSG00000154654       ENST00000284894 ENSE00003633427
8680  ENSG00000154654       ENST00000284894 ENSE00001017033
8681  ENSG00000154654       ENST00000284894 ENSE00001017041
8682  ENSG00000154654       ENST00000284894 ENSE00001017045
8683  ENSG00000154654       ENST00000284894 ENSE00001017052
8684  ENSG00000154654       ENST00000284894 ENSE00001017031
8685  ENSG00000154654       ENST00000284894 ENSE00003566319
8686  ENSG00000154654       ENST00000284894 ENSE00003613335
8687  ENSG00000154654       ENST00000284894 ENSE00001017035
8688  ENSG00000154654       ENST00000284894 ENSE00001017048
8689  ENSG00000154654       ENST00000284894 ENSE00001017044
8690  ENSG00000154654       ENST00000284894 ENSE00003749383
8691  ENSG00000154654       ENST00000284894 ENSE00001315726
8692  ENSG00000219592       ENST00000406229 ENSE00001556541
8693  ENSG00000160194       ENST00000460259 ENSE00001933035
8694  ENSG00000160194       ENST00000460259 ENSE00001890968
8695  ENSG00000160194       ENST00000460259 ENSE00001865986
8696  ENSG00000160194       ENST00000460259 ENSE00003654774
8697  ENSG00000160194       ENST00000460259 ENSE00003507608
8698  ENSG00000160194       ENST00000460259 ENSE00003680556
8699  ENSG00000160194       ENST00000354250 ENSE00001947597
8700  ENSG00000160194       ENST00000354250 ENSE00003679113
8701  ENSG00000160194       ENST00000354250 ENSE00003589387
8702  ENSG00000160194       ENST00000354250 ENSE00003614580
8703  ENSG00000160194       ENST00000340344 ENSE00003679113
8704  ENSG00000160194       ENST00000340344 ENSE00001436763
8705  ENSG00000160194       ENST00000340344 ENSE00001352095
8706  ENSG00000160194       ENST00000460740 ENSE00001885628
8707  ENSG00000160194       ENST00000460740 ENSE00001951615
8708  ENSG00000225735       ENST00000433383 ENSE00001719980
8709  ENSG00000183249       ENST00000457709 ENSE00001718290
8710  ENSG00000183249       ENST00000457709 ENSE00001786392
8711  ENSG00000183249       ENST00000457709 ENSE00001717418
8712  ENSG00000183249       ENST00000457709 ENSE00001754050
8713  ENSG00000180530       ENST00000400199 ENSE00001541961
8714  ENSG00000180530       ENST00000400199 ENSE00001541960
8715  ENSG00000180530       ENST00000400199 ENSE00003773881
8716  ENSG00000180530       ENST00000400202 ENSE00003773881
8717  ENSG00000180530       ENST00000400202 ENSE00001541970
8718  ENSG00000180530       ENST00000400202 ENSE00001541969
8719  ENSG00000180530       ENST00000411932 ENSE00001707724
8720  ENSG00000180530       ENST00000411932 ENSE00001640139
8721  ENSG00000180530       ENST00000638122 ENSE00001541960
8722  ENSG00000180530       ENST00000638122 ENSE00003793238
8723  ENSG00000180530       ENST00000638122 ENSE00003800760
8724  ENSG00000180530       ENST00000637963 ENSE00001541960
8725  ENSG00000180530       ENST00000637963 ENSE00003799215
8726  ENSG00000180530       ENST00000637963 ENSE00003797209
8727  ENSG00000180530       ENST00000637630 ENSE00001541960
8728  ENSG00000180530       ENST00000637630 ENSE00001541969
8729  ENSG00000180530       ENST00000637630 ENSE00003800934
8730  ENSG00000180530       ENST00000637630 ENSE00003799518
8731  ENSG00000180530       ENST00000637630 ENSE00003798618
8732  ENSG00000180530       ENST00000318948 ENSE00001541960
8733  ENSG00000180530       ENST00000318948 ENSE00003773881
8734  ENSG00000180530       ENST00000318948 ENSE00001541969
8735  ENSG00000180530       ENST00000318948 ENSE00001561503
8736  ENSG00000184221       ENST00000382348 ENSE00001491811
8737  ENSG00000184221       ENST00000426947 ENSE00001737506
8738  ENSG00000184221       ENST00000426947 ENSE00001636163
8739  ENSG00000184221       ENST00000498799 ENSE00001636163
8740  ENSG00000184221       ENST00000498799 ENSE00001819077
8741  ENSG00000205927       ENST00000382357 ENSE00001491842
8742  ENSG00000205927       ENST00000382357 ENSE00001491833
8743  ENSG00000205927       ENST00000430860 ENSE00001731910
8744  ENSG00000205927       ENST00000430860 ENSE00001693493
8745  ENSG00000205927       ENST00000333337 ENSE00001379164
8746  ENSG00000179381       ENST00000431829 ENSE00001611785
8747  ENSG00000218549       ENST00000406538 ENSE00001549068
8748  ENSG00000228433       ENST00000435600 ENSE00001659426
8749  ENSG00000159086       ENST00000331923 ENSE00001418055
8750  ENSG00000159086       ENST00000331923 ENSE00003586691
8751  ENSG00000159086       ENST00000331923 ENSE00003689070
8752  ENSG00000159086       ENST00000331923 ENSE00003475039
8753  ENSG00000159086       ENST00000331923 ENSE00003619321
8754  ENSG00000159086       ENST00000331923 ENSE00003576082
8755  ENSG00000159086       ENST00000331923 ENSE00003600861
8756  ENSG00000159086       ENST00000331923 ENSE00001043135
8757  ENSG00000159086       ENST00000331923 ENSE00003479846
8758  ENSG00000159086       ENST00000331923 ENSE00003659463
8759  ENSG00000159086       ENST00000331923 ENSE00003514300
8760  ENSG00000159086       ENST00000331923 ENSE00003531041
8761  ENSG00000159086       ENST00000331923 ENSE00003564031
8762  ENSG00000159086       ENST00000331923 ENSE00003491166
8763  ENSG00000159086       ENST00000331923 ENSE00003613165
8764  ENSG00000159086       ENST00000331923 ENSE00003485802
8765  ENSG00000159086       ENST00000331923 ENSE00003693611
8766  ENSG00000159086       ENST00000331923 ENSE00001888460
8767  ENSG00000159086       ENST00000466846 ENSE00001932194
8768  ENSG00000159086       ENST00000466846 ENSE00003577622
8769  ENSG00000159086       ENST00000466846 ENSE00003591604
8770  ENSG00000159086       ENST00000466846 ENSE00003663813
8771  ENSG00000159086       ENST00000466846 ENSE00003660643
8772  ENSG00000159086       ENST00000466846 ENSE00003620897
8773  ENSG00000159086       ENST00000466846 ENSE00003585458
8774  ENSG00000159086       ENST00000466846 ENSE00003626527
8775  ENSG00000159086       ENST00000466846 ENSE00003626262
8776  ENSG00000159086       ENST00000466846 ENSE00003634643
8777  ENSG00000159086       ENST00000466846 ENSE00001861849
8778  ENSG00000159086       ENST00000443785 ENSE00003586691
8779  ENSG00000159086       ENST00000443785 ENSE00003689070
8780  ENSG00000159086       ENST00000443785 ENSE00003475039
8781  ENSG00000159086       ENST00000443785 ENSE00003619321
8782  ENSG00000159086       ENST00000443785 ENSE00003576082
8783  ENSG00000159086       ENST00000443785 ENSE00003600861
8784  ENSG00000159086       ENST00000443785 ENSE00003591604
8785  ENSG00000159086       ENST00000443785 ENSE00003663813
8786  ENSG00000159086       ENST00000443785 ENSE00003660643
8787  ENSG00000159086       ENST00000443785 ENSE00003620897
8788  ENSG00000159086       ENST00000443785 ENSE00003585458
8789  ENSG00000159086       ENST00000443785 ENSE00003626527
8790  ENSG00000159086       ENST00000443785 ENSE00003626262
8791  ENSG00000159086       ENST00000443785 ENSE00003634643
8792  ENSG00000159086       ENST00000443785 ENSE00001669669
8793  ENSG00000159086       ENST00000443785 ENSE00001662090
8794  ENSG00000159086       ENST00000443785 ENSE00003626702
8795  ENSG00000159086       ENST00000443785 ENSE00001616809
8796  ENSG00000159086       ENST00000497873 ENSE00003591604
8797  ENSG00000159086       ENST00000497873 ENSE00003663813
8798  ENSG00000159086       ENST00000497873 ENSE00003660643
8799  ENSG00000159086       ENST00000497873 ENSE00003620897
8800  ENSG00000159086       ENST00000497873 ENSE00003585458
8801  ENSG00000159086       ENST00000497873 ENSE00003626527
8802  ENSG00000159086       ENST00000497873 ENSE00003626262
8803  ENSG00000159086       ENST00000497873 ENSE00003634643
8804  ENSG00000159086       ENST00000497873 ENSE00001910821
8805  ENSG00000159086       ENST00000497873 ENSE00001824171
8806  ENSG00000159086       ENST00000290178 ENSE00003586691
8807  ENSG00000159086       ENST00000290178 ENSE00003689070
8808  ENSG00000159086       ENST00000290178 ENSE00003475039
8809  ENSG00000159086       ENST00000290178 ENSE00003619321
8810  ENSG00000159086       ENST00000290178 ENSE00003576082
8811  ENSG00000159086       ENST00000290178 ENSE00003600861
8812  ENSG00000159086       ENST00000290178 ENSE00001043135
8813  ENSG00000159086       ENST00000290178 ENSE00003479846
8814  ENSG00000159086       ENST00000290178 ENSE00003659463
8815  ENSG00000159086       ENST00000290178 ENSE00003514300
8816  ENSG00000159086       ENST00000290178 ENSE00003531041
8817  ENSG00000159086       ENST00000290178 ENSE00003564031
8818  ENSG00000159086       ENST00000290178 ENSE00003491166
8819  ENSG00000159086       ENST00000290178 ENSE00003613165
8820  ENSG00000159086       ENST00000290178 ENSE00003582198
8821  ENSG00000159086       ENST00000290178 ENSE00001326257
8822  ENSG00000159086       ENST00000445049 ENSE00001606735
8823  ENSG00000159086       ENST00000445049 ENSE00001713074
8824  ENSG00000159086       ENST00000445049 ENSE00001648431
8825  ENSG00000159086       ENST00000445049 ENSE00001752495
8826  ENSG00000159086       ENST00000421049 ENSE00003626702
8827  ENSG00000159086       ENST00000421049 ENSE00001593977
8828  ENSG00000159086       ENST00000421049 ENSE00001603347
8829  ENSG00000159086       ENST00000472588 ENSE00003594198
8830  ENSG00000159086       ENST00000472588 ENSE00003640180
8831  ENSG00000159086       ENST00000472588 ENSE00003615127
8832  ENSG00000159086       ENST00000472588 ENSE00003539172
8833  ENSG00000159086       ENST00000472588 ENSE00003523209
8834  ENSG00000159086       ENST00000472588 ENSE00003576093
8835  ENSG00000159086       ENST00000472588 ENSE00003539511
8836  ENSG00000159086       ENST00000472588 ENSE00001845379
8837  ENSG00000159086       ENST00000464256 ENSE00003640180
8838  ENSG00000159086       ENST00000464256 ENSE00003615127
8839  ENSG00000159086       ENST00000464256 ENSE00003539172
8840  ENSG00000159086       ENST00000464256 ENSE00003523209
8841  ENSG00000159086       ENST00000464256 ENSE00001857609
8842  ENSG00000159086       ENST00000464256 ENSE00001869099
8843  ENSG00000238197       ENST00000458479 ENSE00001724672
8844  ENSG00000238197       ENST00000458479 ENSE00001729889
8845  ENSG00000238197       ENST00000440052 ENSE00001637352
8846  ENSG00000238197       ENST00000440052 ENSE00001758586
8847  ENSG00000238197       ENST00000440052 ENSE00001710895
8848  ENSG00000238197       ENST00000440052 ENSE00001755988
8849  ENSG00000238197       ENST00000455170 ENSE00001758586
8850  ENSG00000238197       ENST00000455170 ENSE00001621594
8851  ENSG00000238197       ENST00000455170 ENSE00001672645
8852  ENSG00000235701       ENST00000437262 ENSE00001798309
8853  ENSG00000183570       ENST00000465077 ENSE00001542370
8854  ENSG00000183570       ENST00000465077 ENSE00001853497
8855  ENSG00000183570       ENST00000465077 ENSE00001542369
8856  ENSG00000183570       ENST00000465077 ENSE00001924472
8857  ENSG00000183570       ENST00000400314 ENSE00001542370
8858  ENSG00000183570       ENST00000400314 ENSE00001542369
8859  ENSG00000183570       ENST00000400314 ENSE00002301087
8860  ENSG00000183570       ENST00000400314 ENSE00003745442
8861  ENSG00000183570       ENST00000400314 ENSE00003639940
8862  ENSG00000183570       ENST00000400314 ENSE00003535780
8863  ENSG00000183570       ENST00000400314 ENSE00001299723
8864  ENSG00000183570       ENST00000400314 ENSE00003585868
8865  ENSG00000183570       ENST00000400314 ENSE00003605727
8866  ENSG00000183570       ENST00000400314 ENSE00003637603
8867  ENSG00000183570       ENST00000400314 ENSE00003472505
8868  ENSG00000183570       ENST00000400314 ENSE00001322404
8869  ENSG00000183570       ENST00000400314 ENSE00003588949
8870  ENSG00000183570       ENST00000400314 ENSE00003604223
8871  ENSG00000183570       ENST00000400314 ENSE00003635207
8872  ENSG00000183570       ENST00000400314 ENSE00001542363
8873  ENSG00000183570       ENST00000472191 ENSE00001911830
8874  ENSG00000183570       ENST00000472191 ENSE00001814839
8875  ENSG00000183570       ENST00000594149 ENSE00001542369
8876  ENSG00000183570       ENST00000594149 ENSE00003131757
8877  ENSG00000183570       ENST00000594149 ENSE00003102660
8878  ENSG00000183570       ENST00000594149 ENSE00003206302
8879  ENSG00000183570       ENST00000594149 ENSE00003153945
8880  ENSG00000183570       ENST00000594149 ENSE00003135154
8881  ENSG00000183570       ENST00000628776 ENSE00001542369
8882  ENSG00000183570       ENST00000628776 ENSE00003102660
8883  ENSG00000183570       ENST00000628776 ENSE00003770149
8884  ENSG00000183570       ENST00000628776 ENSE00003760527
8885  ENSG00000183570       ENST00000593338 ENSE00001542369
8886  ENSG00000183570       ENST00000593338 ENSE00002991250
8887  ENSG00000183570       ENST00000609985 ENSE00003711418
8888  ENSG00000183570       ENST00000609985 ENSE00003711290
8889  ENSG00000183570       ENST00000594320 ENSE00003221019
8890  ENSG00000183570       ENST00000594320 ENSE00003163290
8891  ENSG00000183570       ENST00000610200 ENSE00003710657
8892  ENSG00000183570       ENST00000610200 ENSE00003706811
8893  ENSG00000183570       ENST00000610200 ENSE00003708479
8894  ENSG00000183570       ENST00000423045 ENSE00001639242
8895  ENSG00000183570       ENST00000423045 ENSE00001598306
8896  ENSG00000183570       ENST00000423045 ENSE00001783050
8897  ENSG00000183570       ENST00000400310 ENSE00002301087
8898  ENSG00000183570       ENST00000400310 ENSE00003745442
8899  ENSG00000183570       ENST00000400310 ENSE00003639940
8900  ENSG00000183570       ENST00000400310 ENSE00003535780
8901  ENSG00000183570       ENST00000400310 ENSE00001299723
8902  ENSG00000183570       ENST00000400310 ENSE00003585868
8903  ENSG00000183570       ENST00000400310 ENSE00003605727
8904  ENSG00000183570       ENST00000400310 ENSE00003637603
8905  ENSG00000183570       ENST00000400310 ENSE00003472505
8906  ENSG00000183570       ENST00000400310 ENSE00001322404
8907  ENSG00000183570       ENST00000400310 ENSE00003604223
8908  ENSG00000183570       ENST00000400310 ENSE00003635207
8909  ENSG00000183570       ENST00000400310 ENSE00001542363
8910  ENSG00000183570       ENST00000400310 ENSE00001542355
8911  ENSG00000183570       ENST00000400309 ENSE00002301087
8912  ENSG00000183570       ENST00000400309 ENSE00003745442
8913  ENSG00000183570       ENST00000400309 ENSE00003639940
8914  ENSG00000183570       ENST00000400309 ENSE00003535780
8915  ENSG00000183570       ENST00000400309 ENSE00001299723
8916  ENSG00000183570       ENST00000400309 ENSE00003585868
8917  ENSG00000183570       ENST00000400309 ENSE00003605727
8918  ENSG00000183570       ENST00000400309 ENSE00003637603
8919  ENSG00000183570       ENST00000400309 ENSE00003472505
8920  ENSG00000183570       ENST00000400309 ENSE00003588949
8921  ENSG00000183570       ENST00000400309 ENSE00003604223
8922  ENSG00000183570       ENST00000400309 ENSE00003635207
8923  ENSG00000183570       ENST00000400309 ENSE00001542363
8924  ENSG00000183570       ENST00000400309 ENSE00003608301
8925  ENSG00000183570       ENST00000400308 ENSE00002301087
8926  ENSG00000183570       ENST00000400308 ENSE00003745442
8927  ENSG00000183570       ENST00000400308 ENSE00003639940
8928  ENSG00000183570       ENST00000400308 ENSE00003535780
8929  ENSG00000183570       ENST00000400308 ENSE00001299723
8930  ENSG00000183570       ENST00000400308 ENSE00003585868
8931  ENSG00000183570       ENST00000400308 ENSE00003605727
8932  ENSG00000183570       ENST00000400308 ENSE00003472505
8933  ENSG00000183570       ENST00000400308 ENSE00003588949
8934  ENSG00000183570       ENST00000400308 ENSE00003604223
8935  ENSG00000183570       ENST00000400308 ENSE00003635207
8936  ENSG00000183570       ENST00000400308 ENSE00001542363
8937  ENSG00000183570       ENST00000400308 ENSE00003608301
8938  ENSG00000183570       ENST00000481302 ENSE00001933220
8939  ENSG00000183570       ENST00000481302 ENSE00001915764
8940  ENSG00000183570       ENST00000481302 ENSE00001829740
8941  ENSG00000183570       ENST00000481302 ENSE00001885836
8942  ENSG00000183570       ENST00000481302 ENSE00001913159
8943  ENSG00000183570       ENST00000498121 ENSE00001875157
8944  ENSG00000183570       ENST00000498121 ENSE00001829028
8945  ENSG00000183570       ENST00000498121 ENSE00003610926
8946  ENSG00000183570       ENST00000498121 ENSE00003676995
8947  ENSG00000183570       ENST00000498121 ENSE00003637800
8948  ENSG00000183570       ENST00000498121 ENSE00001836019
8949  ENSG00000183570       ENST00000549265 ENSE00002357425
8950  ENSG00000183570       ENST00000549265 ENSE00002371274
8951  ENSG00000183570       ENST00000400305 ENSE00003639940
8952  ENSG00000183570       ENST00000400305 ENSE00003535780
8953  ENSG00000183570       ENST00000400305 ENSE00001299723
8954  ENSG00000183570       ENST00000400305 ENSE00003585868
8955  ENSG00000183570       ENST00000400305 ENSE00003605727
8956  ENSG00000183570       ENST00000400305 ENSE00003472505
8957  ENSG00000183570       ENST00000400305 ENSE00001322404
8958  ENSG00000183570       ENST00000400305 ENSE00003588949
8959  ENSG00000183570       ENST00000400305 ENSE00003604223
8960  ENSG00000183570       ENST00000400305 ENSE00003635207
8961  ENSG00000183570       ENST00000400305 ENSE00001542363
8962  ENSG00000183570       ENST00000400305 ENSE00001542346
8963  ENSG00000183570       ENST00000400304 ENSE00003639940
8964  ENSG00000183570       ENST00000400304 ENSE00003535780
8965  ENSG00000183570       ENST00000400304 ENSE00001299723
8966  ENSG00000183570       ENST00000400304 ENSE00003585868
8967  ENSG00000183570       ENST00000400304 ENSE00003605727
8968  ENSG00000183570       ENST00000400304 ENSE00003472505
8969  ENSG00000183570       ENST00000400304 ENSE00003588949
8970  ENSG00000183570       ENST00000400304 ENSE00003604223
8971  ENSG00000183570       ENST00000400304 ENSE00003635207
8972  ENSG00000183570       ENST00000400304 ENSE00003608301
8973  ENSG00000183570       ENST00000400304 ENSE00001542345
8974  ENSG00000183570       ENST00000400304 ENSE00001542385
8975  ENSG00000183570       ENST00000400304 ENSE00003790315
8976  ENSG00000183570       ENST00000468429 ENSE00001922608
8977  ENSG00000183570       ENST00000468429 ENSE00003552191
8978  ENSG00000183570       ENST00000468429 ENSE00003645916
8979  ENSG00000183570       ENST00000468429 ENSE00003615314
8980  ENSG00000183570       ENST00000468429 ENSE00003683433
8981  ENSG00000183570       ENST00000468429 ENSE00003571626
8982  ENSG00000183570       ENST00000468429 ENSE00003581808
8983  ENSG00000183570       ENST00000468429 ENSE00003551938
8984  ENSG00000183570       ENST00000468429 ENSE00001955924
8985  ENSG00000183570       ENST00000475402 ENSE00003683433
8986  ENSG00000183570       ENST00000475402 ENSE00003551938
8987  ENSG00000183570       ENST00000475402 ENSE00001881410
8988  ENSG00000183570       ENST00000475402 ENSE00003487400
8989  ENSG00000183570       ENST00000475402 ENSE00001864561
8990  ENSG00000183570       ENST00000449640 ENSE00003639940
8991  ENSG00000183570       ENST00000449640 ENSE00003535780
8992  ENSG00000183570       ENST00000449640 ENSE00001299723
8993  ENSG00000183570       ENST00000449640 ENSE00003585868
8994  ENSG00000183570       ENST00000449640 ENSE00003605727
8995  ENSG00000183570       ENST00000449640 ENSE00003472505
8996  ENSG00000183570       ENST00000449640 ENSE00003588949
8997  ENSG00000183570       ENST00000449640 ENSE00003604223
8998  ENSG00000183570       ENST00000449640 ENSE00003635207
8999  ENSG00000183570       ENST00000449640 ENSE00003608301
9000  ENSG00000183570       ENST00000449640 ENSE00001542385
9001  ENSG00000183570       ENST00000449640 ENSE00003790315
9002  ENSG00000183570       ENST00000449640 ENSE00003739100
9003  ENSG00000183570       ENST00000449640 ENSE00003734784
9004  ENSG00000160299       ENST00000359568 ENSE00001740168
9005  ENSG00000160299       ENST00000359568 ENSE00003693207
9006  ENSG00000160299       ENST00000359568 ENSE00003471660
9007  ENSG00000160299       ENST00000359568 ENSE00003614602
9008  ENSG00000160299       ENST00000359568 ENSE00003653302
9009  ENSG00000160299       ENST00000359568 ENSE00003669717
9010  ENSG00000160299       ENST00000359568 ENSE00003461020
9011  ENSG00000160299       ENST00000359568 ENSE00003679886
9012  ENSG00000160299       ENST00000359568 ENSE00003636169
9013  ENSG00000160299       ENST00000359568 ENSE00003634961
9014  ENSG00000160299       ENST00000359568 ENSE00003613496
9015  ENSG00000160299       ENST00000359568 ENSE00003595154
9016  ENSG00000160299       ENST00000359568 ENSE00003505517
9017  ENSG00000160299       ENST00000359568 ENSE00003581236
9018  ENSG00000160299       ENST00000359568 ENSE00003484112
9019  ENSG00000160299       ENST00000359568 ENSE00003464323
9020  ENSG00000160299       ENST00000359568 ENSE00003678564
9021  ENSG00000160299       ENST00000359568 ENSE00003460972
9022  ENSG00000160299       ENST00000359568 ENSE00003625307
9023  ENSG00000160299       ENST00000359568 ENSE00003655962
9024  ENSG00000160299       ENST00000359568 ENSE00003582881
9025  ENSG00000160299       ENST00000359568 ENSE00003536588
9026  ENSG00000160299       ENST00000359568 ENSE00003618058
9027  ENSG00000160299       ENST00000359568 ENSE00003541937
9028  ENSG00000160299       ENST00000359568 ENSE00003551868
9029  ENSG00000160299       ENST00000359568 ENSE00003675280
9030  ENSG00000160299       ENST00000359568 ENSE00003615973
9031  ENSG00000160299       ENST00000359568 ENSE00003566596
9032  ENSG00000160299       ENST00000359568 ENSE00003499600
9033  ENSG00000160299       ENST00000359568 ENSE00003605610
9034  ENSG00000160299       ENST00000359568 ENSE00003634932
9035  ENSG00000160299       ENST00000359568 ENSE00003634727
9036  ENSG00000160299       ENST00000359568 ENSE00003668725
9037  ENSG00000160299       ENST00000359568 ENSE00003680909
9038  ENSG00000160299       ENST00000359568 ENSE00003622344
9039  ENSG00000160299       ENST00000359568 ENSE00003517344
9040  ENSG00000160299       ENST00000359568 ENSE00003526928
9041  ENSG00000160299       ENST00000359568 ENSE00001591369
9042  ENSG00000160299       ENST00000359568 ENSE00003482441
9043  ENSG00000160299       ENST00000359568 ENSE00003499558
9044  ENSG00000160299       ENST00000359568 ENSE00003498357
9045  ENSG00000160299       ENST00000359568 ENSE00003637382
9046  ENSG00000160299       ENST00000359568 ENSE00003675210
9047  ENSG00000160299       ENST00000359568 ENSE00003507941
9048  ENSG00000160299       ENST00000359568 ENSE00003518479
9049  ENSG00000160299       ENST00000359568 ENSE00003608595
9050  ENSG00000160299       ENST00000359568 ENSE00003625234
9051  ENSG00000160299       ENST00000490468 ENSE00001830035
9052  ENSG00000160299       ENST00000490468 ENSE00003486596
9053  ENSG00000160299       ENST00000490468 ENSE00003656784
9054  ENSG00000160299       ENST00000490468 ENSE00003615418
9055  ENSG00000160299       ENST00000490468 ENSE00001838703
9056  ENSG00000160299       ENST00000490468 ENSE00003689424
9057  ENSG00000160299       ENST00000490468 ENSE00003613544
9058  ENSG00000160299       ENST00000490468 ENSE00001872238
9059  ENSG00000160299       ENST00000480896 ENSE00003486596
9060  ENSG00000160299       ENST00000480896 ENSE00003656784
9061  ENSG00000160299       ENST00000480896 ENSE00003615418
9062  ENSG00000160299       ENST00000480896 ENSE00003689424
9063  ENSG00000160299       ENST00000480896 ENSE00003613544
9064  ENSG00000160299       ENST00000480896 ENSE00001865596
9065  ENSG00000160299       ENST00000480896 ENSE00003627023
9066  ENSG00000160299       ENST00000480896 ENSE00003570581
9067  ENSG00000160299       ENST00000480896 ENSE00003692728
9068  ENSG00000160299       ENST00000480896 ENSE00003614830
9069  ENSG00000160299       ENST00000480896 ENSE00003685925
9070  ENSG00000160299       ENST00000480896 ENSE00003458946
9071  ENSG00000160299       ENST00000480896 ENSE00003651724
9072  ENSG00000160299       ENST00000480896 ENSE00003476210
9073  ENSG00000160299       ENST00000480896 ENSE00003490601
9074  ENSG00000160299       ENST00000480896 ENSE00003595417
9075  ENSG00000160299       ENST00000480896 ENSE00003472692
9076  ENSG00000160299       ENST00000480896 ENSE00003510656
9077  ENSG00000160299       ENST00000480896 ENSE00003681544
9078  ENSG00000160299       ENST00000480896 ENSE00003617233
9079  ENSG00000160299       ENST00000480896 ENSE00003520873
9080  ENSG00000160299       ENST00000480896 ENSE00003596567
9081  ENSG00000160299       ENST00000480896 ENSE00003686338
9082  ENSG00000160299       ENST00000480896 ENSE00003576652
9083  ENSG00000160299       ENST00000480896 ENSE00003671216
9084  ENSG00000160299       ENST00000480896 ENSE00003535844
9085  ENSG00000160299       ENST00000480896 ENSE00003459531
9086  ENSG00000160299       ENST00000480896 ENSE00003620841
9087  ENSG00000160299       ENST00000480896 ENSE00003656599
9088  ENSG00000160299       ENST00000480896 ENSE00003529904
9089  ENSG00000160299       ENST00000480896 ENSE00003655674
9090  ENSG00000160299       ENST00000480896 ENSE00003479687
9091  ENSG00000160299       ENST00000480896 ENSE00003513445
9092  ENSG00000160299       ENST00000480896 ENSE00003507274
9093  ENSG00000160299       ENST00000480896 ENSE00003472119
9094  ENSG00000160299       ENST00000480896 ENSE00003561276
9095  ENSG00000160299       ENST00000480896 ENSE00003597401
9096  ENSG00000160299       ENST00000480896 ENSE00001908254
9097  ENSG00000160299       ENST00000480896 ENSE00003694509
9098  ENSG00000160299       ENST00000480896 ENSE00003615562
9099  ENSG00000160299       ENST00000480896 ENSE00003544978
9100  ENSG00000160299       ENST00000480896 ENSE00003560159
9101  ENSG00000160299       ENST00000480896 ENSE00003627521
9102  ENSG00000160299       ENST00000480896 ENSE00003674484
9103  ENSG00000160299       ENST00000480896 ENSE00003562761
9104  ENSG00000160299       ENST00000480896 ENSE00003494030
9105  ENSG00000160299       ENST00000480896 ENSE00003673280
9106  ENSG00000160299       ENST00000466474 ENSE00003689424
9107  ENSG00000160299       ENST00000466474 ENSE00003613544
9108  ENSG00000160299       ENST00000466474 ENSE00003627023
9109  ENSG00000160299       ENST00000466474 ENSE00003570581
9110  ENSG00000160299       ENST00000466474 ENSE00001851890
9111  ENSG00000160299       ENST00000466474 ENSE00001821537
9112  ENSG00000160299       ENST00000483844 ENSE00003613544
9113  ENSG00000160299       ENST00000483844 ENSE00003570581
9114  ENSG00000160299       ENST00000483844 ENSE00003692728
9115  ENSG00000160299       ENST00000483844 ENSE00003614830
9116  ENSG00000160299       ENST00000483844 ENSE00001895119
9117  ENSG00000160299       ENST00000482575 ENSE00001815960
9118  ENSG00000160299       ENST00000482575 ENSE00001921539
9119  ENSG00000160299       ENST00000418394 ENSE00003498357
9120  ENSG00000160299       ENST00000418394 ENSE00003637382
9121  ENSG00000160299       ENST00000418394 ENSE00003675210
9122  ENSG00000160299       ENST00000418394 ENSE00003507941
9123  ENSG00000160299       ENST00000418394 ENSE00001624393
9124  ENSG00000160299       ENST00000418394 ENSE00001767577
9125  ENSG00000160299       ENST00000465356 ENSE00001949582
9126  ENSG00000160299       ENST00000465356 ENSE00001843651
9127  ENSG00000183036       ENST00000328619 ENSE00001938571
9128  ENSG00000183036       ENST00000328619 ENSE00003668461
9129  ENSG00000183036       ENST00000328619 ENSE00003509580
9130  ENSG00000183036       ENST00000462224 ENSE00003668461
9131  ENSG00000183036       ENST00000462224 ENSE00001297485
9132  ENSG00000183036       ENST00000462224 ENSE00001922702
9133  ENSG00000183036       ENST00000462224 ENSE00003577223
9134  ENSG00000183036       ENST00000468717 ENSE00003577223
9135  ENSG00000183036       ENST00000468717 ENSE00001909917
9136  ENSG00000183036       ENST00000468717 ENSE00001880963
9137  ENSG00000183036       ENST00000468717 ENSE00003620024
9138  ENSG00000183036       ENST00000467565 ENSE00003577223
9139  ENSG00000183036       ENST00000467565 ENSE00003620024
9140  ENSG00000183036       ENST00000467565 ENSE00001811785
9141  ENSG00000160191       ENST00000460905 ENSE00001882281
9142  ENSG00000160191       ENST00000460905 ENSE00001864622
9143  ENSG00000160191       ENST00000460905 ENSE00003517962
9144  ENSG00000160191       ENST00000460905 ENSE00003490488
9145  ENSG00000160191       ENST00000460905 ENSE00003510642
9146  ENSG00000160191       ENST00000460905 ENSE00003548951
9147  ENSG00000160191       ENST00000460905 ENSE00003488958
9148  ENSG00000160191       ENST00000472401 ENSE00001833420
9149  ENSG00000160191       ENST00000472401 ENSE00003620172
9150  ENSG00000160191       ENST00000472401 ENSE00003629203
9151  ENSG00000160191       ENST00000472401 ENSE00003602426
9152  ENSG00000160191       ENST00000472401 ENSE00001863986
9153  ENSG00000160191       ENST00000335512 ENSE00001864638
9154  ENSG00000160191       ENST00000335512 ENSE00003625815
9155  ENSG00000160191       ENST00000335512 ENSE00003565257
9156  ENSG00000160191       ENST00000335512 ENSE00003689265
9157  ENSG00000160191       ENST00000335512 ENSE00003492285
9158  ENSG00000160191       ENST00000335512 ENSE00003656908
9159  ENSG00000160191       ENST00000335512 ENSE00003667734
9160  ENSG00000160191       ENST00000335512 ENSE00003645170
9161  ENSG00000160191       ENST00000335512 ENSE00003642531
9162  ENSG00000160191       ENST00000335512 ENSE00003538925
9163  ENSG00000160191       ENST00000335512 ENSE00003602236
9164  ENSG00000160191       ENST00000335512 ENSE00003546441
9165  ENSG00000160191       ENST00000335512 ENSE00003586792
9166  ENSG00000160191       ENST00000335512 ENSE00003561153
9167  ENSG00000160191       ENST00000335512 ENSE00003611375
9168  ENSG00000160191       ENST00000335512 ENSE00003461715
9169  ENSG00000160191       ENST00000335512 ENSE00003490275
9170  ENSG00000160191       ENST00000335512 ENSE00003692648
9171  ENSG00000160191       ENST00000335512 ENSE00003643013
9172  ENSG00000160191       ENST00000470987 ENSE00003517962
9173  ENSG00000160191       ENST00000470987 ENSE00003490488
9174  ENSG00000160191       ENST00000470987 ENSE00003510642
9175  ENSG00000160191       ENST00000470987 ENSE00003548951
9176  ENSG00000160191       ENST00000470987 ENSE00003488958
9177  ENSG00000160191       ENST00000470987 ENSE00003620172
9178  ENSG00000160191       ENST00000470987 ENSE00003629203
9179  ENSG00000160191       ENST00000470987 ENSE00003602426
9180  ENSG00000160191       ENST00000470987 ENSE00003458519
9181  ENSG00000160191       ENST00000470987 ENSE00003686816
9182  ENSG00000160191       ENST00000470987 ENSE00003480474
9183  ENSG00000160191       ENST00000470987 ENSE00003684148
9184  ENSG00000160191       ENST00000470987 ENSE00003483886
9185  ENSG00000160191       ENST00000470987 ENSE00003466425
9186  ENSG00000160191       ENST00000470987 ENSE00003481356
9187  ENSG00000160191       ENST00000470987 ENSE00003641571
9188  ENSG00000160191       ENST00000470987 ENSE00003577931
9189  ENSG00000160191       ENST00000470987 ENSE00003676892
9190  ENSG00000160191       ENST00000470987 ENSE00003518456
9191  ENSG00000160191       ENST00000470987 ENSE00003694465
9192  ENSG00000160191       ENST00000291539 ENSE00003625815
9193  ENSG00000160191       ENST00000291539 ENSE00003565257
9194  ENSG00000160191       ENST00000291539 ENSE00003689265
9195  ENSG00000160191       ENST00000291539 ENSE00003492285
9196  ENSG00000160191       ENST00000291539 ENSE00003656908
9197  ENSG00000160191       ENST00000291539 ENSE00003667734
9198  ENSG00000160191       ENST00000291539 ENSE00003645170
9199  ENSG00000160191       ENST00000291539 ENSE00003642531
9200  ENSG00000160191       ENST00000291539 ENSE00003538925
9201  ENSG00000160191       ENST00000291539 ENSE00003602236
9202  ENSG00000160191       ENST00000291539 ENSE00003546441
9203  ENSG00000160191       ENST00000291539 ENSE00003586792
9204  ENSG00000160191       ENST00000291539 ENSE00003561153
9205  ENSG00000160191       ENST00000291539 ENSE00003611375
9206  ENSG00000160191       ENST00000291539 ENSE00003461715
9207  ENSG00000160191       ENST00000291539 ENSE00003490275
9208  ENSG00000160191       ENST00000291539 ENSE00003692648
9209  ENSG00000160191       ENST00000291539 ENSE00003643013
9210  ENSG00000160191       ENST00000291539 ENSE00003681162
9211  ENSG00000160191       ENST00000291539 ENSE00003691085
9212  ENSG00000160191       ENST00000490803 ENSE00003517962
9213  ENSG00000160191       ENST00000490803 ENSE00003490488
9214  ENSG00000160191       ENST00000490803 ENSE00003510642
9215  ENSG00000160191       ENST00000490803 ENSE00003548951
9216  ENSG00000160191       ENST00000490803 ENSE00003488958
9217  ENSG00000160191       ENST00000490803 ENSE00003458519
9218  ENSG00000160191       ENST00000490803 ENSE00003480474
9219  ENSG00000160191       ENST00000490803 ENSE00003684148
9220  ENSG00000160191       ENST00000490803 ENSE00003483886
9221  ENSG00000160191       ENST00000490803 ENSE00003466425
9222  ENSG00000160191       ENST00000490803 ENSE00003481356
9223  ENSG00000160191       ENST00000490803 ENSE00003641571
9224  ENSG00000160191       ENST00000490803 ENSE00003577931
9225  ENSG00000160191       ENST00000490803 ENSE00003676892
9226  ENSG00000160191       ENST00000490803 ENSE00003518456
9227  ENSG00000160191       ENST00000490803 ENSE00003694465
9228  ENSG00000160191       ENST00000490803 ENSE00003611483
9229  ENSG00000160191       ENST00000486902 ENSE00003620172
9230  ENSG00000160191       ENST00000486902 ENSE00003629203
9231  ENSG00000160191       ENST00000486902 ENSE00003686816
9232  ENSG00000160191       ENST00000486902 ENSE00003667235
9233  ENSG00000160191       ENST00000486902 ENSE00001917796
9234  ENSG00000160191       ENST00000380328 ENSE00003625815
9235  ENSG00000160191       ENST00000380328 ENSE00003565257
9236  ENSG00000160191       ENST00000380328 ENSE00003656908
9237  ENSG00000160191       ENST00000380328 ENSE00003667734
9238  ENSG00000160191       ENST00000380328 ENSE00003645170
9239  ENSG00000160191       ENST00000380328 ENSE00003642531
9240  ENSG00000160191       ENST00000380328 ENSE00003538925
9241  ENSG00000160191       ENST00000380328 ENSE00003602236
9242  ENSG00000160191       ENST00000380328 ENSE00003546441
9243  ENSG00000160191       ENST00000380328 ENSE00003586792
9244  ENSG00000160191       ENST00000380328 ENSE00003561153
9245  ENSG00000160191       ENST00000380328 ENSE00003611375
9246  ENSG00000160191       ENST00000380328 ENSE00003461715
9247  ENSG00000160191       ENST00000380328 ENSE00003490275
9248  ENSG00000160191       ENST00000380328 ENSE00003692648
9249  ENSG00000160191       ENST00000380328 ENSE00003643013
9250  ENSG00000160191       ENST00000380328 ENSE00003577781
9251  ENSG00000160191       ENST00000380328 ENSE00003668628
9252  ENSG00000160191       ENST00000380328 ENSE00003690236
9253  ENSG00000160191       ENST00000495521 ENSE00003490488
9254  ENSG00000160191       ENST00000495521 ENSE00003548951
9255  ENSG00000160191       ENST00000495521 ENSE00003488958
9256  ENSG00000160191       ENST00000495521 ENSE00003686816
9257  ENSG00000160191       ENST00000495521 ENSE00003480474
9258  ENSG00000160191       ENST00000495521 ENSE00003684148
9259  ENSG00000160191       ENST00000495521 ENSE00003483886
9260  ENSG00000160191       ENST00000495521 ENSE00003466425
9261  ENSG00000160191       ENST00000495521 ENSE00003481356
9262  ENSG00000160191       ENST00000495521 ENSE00003641571
9263  ENSG00000160191       ENST00000495521 ENSE00003577931
9264  ENSG00000160191       ENST00000495521 ENSE00003676892
9265  ENSG00000160191       ENST00000495521 ENSE00003518456
9266  ENSG00000160191       ENST00000495521 ENSE00003694465
9267  ENSG00000160191       ENST00000495521 ENSE00003667235
9268  ENSG00000160191       ENST00000398232 ENSE00003689265
9269  ENSG00000160191       ENST00000398232 ENSE00003492285
9270  ENSG00000160191       ENST00000398232 ENSE00003656908
9271  ENSG00000160191       ENST00000398232 ENSE00003667734
9272  ENSG00000160191       ENST00000398232 ENSE00003645170
9273  ENSG00000160191       ENST00000398232 ENSE00003642531
9274  ENSG00000160191       ENST00000398232 ENSE00003538925
9275  ENSG00000160191       ENST00000398232 ENSE00003602236
9276  ENSG00000160191       ENST00000398232 ENSE00003546441
9277  ENSG00000160191       ENST00000398232 ENSE00003586792
9278  ENSG00000160191       ENST00000398232 ENSE00003561153
9279  ENSG00000160191       ENST00000398232 ENSE00003611375
9280  ENSG00000160191       ENST00000398232 ENSE00003461715
9281  ENSG00000160191       ENST00000398232 ENSE00003490275
9282  ENSG00000160191       ENST00000398232 ENSE00003692648
9283  ENSG00000160191       ENST00000398232 ENSE00003643013
9284  ENSG00000160191       ENST00000398232 ENSE00003691085
9285  ENSG00000160191       ENST00000398232 ENSE00003522588
9286  ENSG00000160191       ENST00000462571 ENSE00003517962
9287  ENSG00000160191       ENST00000462571 ENSE00003490488
9288  ENSG00000160191       ENST00000462571 ENSE00003510642
9289  ENSG00000160191       ENST00000462571 ENSE00003548951
9290  ENSG00000160191       ENST00000462571 ENSE00003488958
9291  ENSG00000160191       ENST00000462571 ENSE00003686816
9292  ENSG00000160191       ENST00000462571 ENSE00003480474
9293  ENSG00000160191       ENST00000462571 ENSE00003684148
9294  ENSG00000160191       ENST00000462571 ENSE00003483886
9295  ENSG00000160191       ENST00000462571 ENSE00003466425
9296  ENSG00000160191       ENST00000462571 ENSE00003481356
9297  ENSG00000160191       ENST00000462571 ENSE00003641571
9298  ENSG00000160191       ENST00000462571 ENSE00003577931
9299  ENSG00000160191       ENST00000462571 ENSE00003676892
9300  ENSG00000160191       ENST00000462571 ENSE00003518456
9301  ENSG00000160191       ENST00000462571 ENSE00003694465
9302  ENSG00000160191       ENST00000462571 ENSE00003667235
9303  ENSG00000160191       ENST00000462571 ENSE00001899580
9304  ENSG00000160191       ENST00000398234 ENSE00003565257
9305  ENSG00000160191       ENST00000398234 ENSE00003689265
9306  ENSG00000160191       ENST00000398234 ENSE00003492285
9307  ENSG00000160191       ENST00000398234 ENSE00003656908
9308  ENSG00000160191       ENST00000398234 ENSE00003667734
9309  ENSG00000160191       ENST00000398234 ENSE00003645170
9310  ENSG00000160191       ENST00000398234 ENSE00003642531
9311  ENSG00000160191       ENST00000398234 ENSE00003538925
9312  ENSG00000160191       ENST00000398234 ENSE00003602236
9313  ENSG00000160191       ENST00000398234 ENSE00003546441
9314  ENSG00000160191       ENST00000398234 ENSE00003586792
9315  ENSG00000160191       ENST00000398234 ENSE00003561153
9316  ENSG00000160191       ENST00000398234 ENSE00003611375
9317  ENSG00000160191       ENST00000398234 ENSE00003461715
9318  ENSG00000160191       ENST00000398234 ENSE00003490275
9319  ENSG00000160191       ENST00000398234 ENSE00003692648
9320  ENSG00000160191       ENST00000398234 ENSE00003643013
9321  ENSG00000160191       ENST00000398234 ENSE00003522588
9322  ENSG00000160191       ENST00000398236 ENSE00003625815
9323  ENSG00000160191       ENST00000398236 ENSE00003689265
9324  ENSG00000160191       ENST00000398236 ENSE00003492285
9325  ENSG00000160191       ENST00000398236 ENSE00003656908
9326  ENSG00000160191       ENST00000398236 ENSE00003667734
9327  ENSG00000160191       ENST00000398236 ENSE00003645170
9328  ENSG00000160191       ENST00000398236 ENSE00003642531
9329  ENSG00000160191       ENST00000398236 ENSE00003538925
9330  ENSG00000160191       ENST00000398236 ENSE00003602236
9331  ENSG00000160191       ENST00000398236 ENSE00003546441
9332  ENSG00000160191       ENST00000398236 ENSE00003586792
9333  ENSG00000160191       ENST00000398236 ENSE00003561153
9334  ENSG00000160191       ENST00000398236 ENSE00003611375
9335  ENSG00000160191       ENST00000398236 ENSE00003461715
9336  ENSG00000160191       ENST00000398236 ENSE00003490275
9337  ENSG00000160191       ENST00000398236 ENSE00003692648
9338  ENSG00000160191       ENST00000398236 ENSE00003643013
9339  ENSG00000160191       ENST00000398236 ENSE00003577781
9340  ENSG00000160191       ENST00000468805 ENSE00003490488
9341  ENSG00000160191       ENST00000468805 ENSE00003510642
9342  ENSG00000160191       ENST00000468805 ENSE00003548951
9343  ENSG00000160191       ENST00000468805 ENSE00003488958
9344  ENSG00000160191       ENST00000468805 ENSE00003620172
9345  ENSG00000160191       ENST00000468805 ENSE00003686816
9346  ENSG00000160191       ENST00000468805 ENSE00003480474
9347  ENSG00000160191       ENST00000468805 ENSE00003684148
9348  ENSG00000160191       ENST00000468805 ENSE00003483886
9349  ENSG00000160191       ENST00000468805 ENSE00003466425
9350  ENSG00000160191       ENST00000468805 ENSE00003481356
9351  ENSG00000160191       ENST00000468805 ENSE00003641571
9352  ENSG00000160191       ENST00000468805 ENSE00003577931
9353  ENSG00000160191       ENST00000468805 ENSE00003676892
9354  ENSG00000160191       ENST00000468805 ENSE00003518456
9355  ENSG00000160191       ENST00000468805 ENSE00003694465
9356  ENSG00000160191       ENST00000468805 ENSE00003667235
9357  ENSG00000160191       ENST00000328862 ENSE00003625815
9358  ENSG00000160191       ENST00000328862 ENSE00003689265
9359  ENSG00000160191       ENST00000328862 ENSE00003492285
9360  ENSG00000160191       ENST00000328862 ENSE00003656908
9361  ENSG00000160191       ENST00000328862 ENSE00003667734
9362  ENSG00000160191       ENST00000328862 ENSE00003645170
9363  ENSG00000160191       ENST00000328862 ENSE00003642531
9364  ENSG00000160191       ENST00000328862 ENSE00003538925
9365  ENSG00000160191       ENST00000328862 ENSE00003602236
9366  ENSG00000160191       ENST00000328862 ENSE00003546441
9367  ENSG00000160191       ENST00000328862 ENSE00003586792
9368  ENSG00000160191       ENST00000328862 ENSE00003561153
9369  ENSG00000160191       ENST00000328862 ENSE00003611375
9370  ENSG00000160191       ENST00000328862 ENSE00003461715
9371  ENSG00000160191       ENST00000328862 ENSE00003490275
9372  ENSG00000160191       ENST00000328862 ENSE00003692648
9373  ENSG00000160191       ENST00000328862 ENSE00003643013
9374  ENSG00000160191       ENST00000328862 ENSE00003691085
9375  ENSG00000160191       ENST00000328862 ENSE00003577781
9376  ENSG00000160191       ENST00000335440 ENSE00003656908
9377  ENSG00000160191       ENST00000335440 ENSE00003667734
9378  ENSG00000160191       ENST00000335440 ENSE00003645170
9379  ENSG00000160191       ENST00000335440 ENSE00003642531
9380  ENSG00000160191       ENST00000335440 ENSE00003538925
9381  ENSG00000160191       ENST00000335440 ENSE00003602236
9382  ENSG00000160191       ENST00000335440 ENSE00003546441
9383  ENSG00000160191       ENST00000335440 ENSE00003586792
9384  ENSG00000160191       ENST00000335440 ENSE00003561153
9385  ENSG00000160191       ENST00000335440 ENSE00003611375
9386  ENSG00000160191       ENST00000335440 ENSE00003461715
9387  ENSG00000160191       ENST00000335440 ENSE00003490275
9388  ENSG00000160191       ENST00000335440 ENSE00003692648
9389  ENSG00000160191       ENST00000335440 ENSE00003643013
9390  ENSG00000160191       ENST00000335440 ENSE00003577781
9391  ENSG00000160191       ENST00000335440 ENSE00003690236
9392  ENSG00000160191       ENST00000335440 ENSE00003508313
9393  ENSG00000160191       ENST00000398225 ENSE00003565257
9394  ENSG00000160191       ENST00000398225 ENSE00003689265
9395  ENSG00000160191       ENST00000398225 ENSE00003492285
9396  ENSG00000160191       ENST00000398225 ENSE00003656908
9397  ENSG00000160191       ENST00000398225 ENSE00003667734
9398  ENSG00000160191       ENST00000398225 ENSE00003645170
9399  ENSG00000160191       ENST00000398225 ENSE00003642531
9400  ENSG00000160191       ENST00000398225 ENSE00003538925
9401  ENSG00000160191       ENST00000398225 ENSE00003602236
9402  ENSG00000160191       ENST00000398225 ENSE00003546441
9403  ENSG00000160191       ENST00000398225 ENSE00003586792
9404  ENSG00000160191       ENST00000398225 ENSE00003561153
9405  ENSG00000160191       ENST00000398225 ENSE00003611375
9406  ENSG00000160191       ENST00000398225 ENSE00003461715
9407  ENSG00000160191       ENST00000398225 ENSE00003490275
9408  ENSG00000160191       ENST00000398225 ENSE00003692648
9409  ENSG00000160191       ENST00000398225 ENSE00003643013
9410  ENSG00000160191       ENST00000398225 ENSE00003691085
9411  ENSG00000160191       ENST00000398225 ENSE00003522588
9412  ENSG00000160191       ENST00000497805 ENSE00003490488
9413  ENSG00000160191       ENST00000497805 ENSE00003510642
9414  ENSG00000160191       ENST00000497805 ENSE00003548951
9415  ENSG00000160191       ENST00000497805 ENSE00003488958
9416  ENSG00000160191       ENST00000497805 ENSE00003629203
9417  ENSG00000160191       ENST00000497805 ENSE00003686816
9418  ENSG00000160191       ENST00000497805 ENSE00003480474
9419  ENSG00000160191       ENST00000497805 ENSE00003684148
9420  ENSG00000160191       ENST00000497805 ENSE00003483886
9421  ENSG00000160191       ENST00000497805 ENSE00003466425
9422  ENSG00000160191       ENST00000497805 ENSE00003481356
9423  ENSG00000160191       ENST00000497805 ENSE00003641571
9424  ENSG00000160191       ENST00000497805 ENSE00003577931
9425  ENSG00000160191       ENST00000497805 ENSE00003676892
9426  ENSG00000160191       ENST00000497805 ENSE00003518456
9427  ENSG00000160191       ENST00000497805 ENSE00003694465
9428  ENSG00000160191       ENST00000497805 ENSE00003611483
9429  ENSG00000160191       ENST00000497805 ENSE00003667235
9430  ENSG00000160191       ENST00000398229 ENSE00003565257
9431  ENSG00000160191       ENST00000398229 ENSE00003656908
9432  ENSG00000160191       ENST00000398229 ENSE00003667734
9433  ENSG00000160191       ENST00000398229 ENSE00003645170
9434  ENSG00000160191       ENST00000398229 ENSE00003642531
9435  ENSG00000160191       ENST00000398229 ENSE00003538925
9436  ENSG00000160191       ENST00000398229 ENSE00003602236
9437  ENSG00000160191       ENST00000398229 ENSE00003546441
9438  ENSG00000160191       ENST00000398229 ENSE00003586792
9439  ENSG00000160191       ENST00000398229 ENSE00003561153
9440  ENSG00000160191       ENST00000398229 ENSE00003611375
9441  ENSG00000160191       ENST00000398229 ENSE00003461715
9442  ENSG00000160191       ENST00000398229 ENSE00003490275
9443  ENSG00000160191       ENST00000398229 ENSE00003692648
9444  ENSG00000160191       ENST00000398229 ENSE00003643013
9445  ENSG00000160191       ENST00000398229 ENSE00003522588
9446  ENSG00000160191       ENST00000398227 ENSE00003656908
9447  ENSG00000160191       ENST00000398227 ENSE00003667734
9448  ENSG00000160191       ENST00000398227 ENSE00003645170
9449  ENSG00000160191       ENST00000398227 ENSE00003642531
9450  ENSG00000160191       ENST00000398227 ENSE00003538925
9451  ENSG00000160191       ENST00000398227 ENSE00003602236
9452  ENSG00000160191       ENST00000398227 ENSE00003546441
9453  ENSG00000160191       ENST00000398227 ENSE00003586792
9454  ENSG00000160191       ENST00000398227 ENSE00003561153
9455  ENSG00000160191       ENST00000398227 ENSE00003611375
9456  ENSG00000160191       ENST00000398227 ENSE00003461715
9457  ENSG00000160191       ENST00000398227 ENSE00003490275
9458  ENSG00000160191       ENST00000398227 ENSE00003692648
9459  ENSG00000160191       ENST00000398227 ENSE00003643013
9460  ENSG00000160191       ENST00000398227 ENSE00003522588
9461  ENSG00000160191       ENST00000460989 ENSE00003490488
9462  ENSG00000160191       ENST00000460989 ENSE00003548951
9463  ENSG00000160191       ENST00000460989 ENSE00003488958
9464  ENSG00000160191       ENST00000460989 ENSE00003480474
9465  ENSG00000160191       ENST00000460989 ENSE00003684148
9466  ENSG00000160191       ENST00000460989 ENSE00003483886
9467  ENSG00000160191       ENST00000460989 ENSE00003466425
9468  ENSG00000160191       ENST00000460989 ENSE00003481356
9469  ENSG00000160191       ENST00000460989 ENSE00003641571
9470  ENSG00000160191       ENST00000460989 ENSE00003577931
9471  ENSG00000160191       ENST00000460989 ENSE00003676892
9472  ENSG00000160191       ENST00000460989 ENSE00003518456
9473  ENSG00000160191       ENST00000460989 ENSE00003694465
9474  ENSG00000160191       ENST00000460989 ENSE00003667235
9475  ENSG00000160191       ENST00000467403 ENSE00003517962
9476  ENSG00000160191       ENST00000467403 ENSE00003490488
9477  ENSG00000160191       ENST00000467403 ENSE00003510642
9478  ENSG00000160191       ENST00000467403 ENSE00003548951
9479  ENSG00000160191       ENST00000467403 ENSE00003488958
9480  ENSG00000160191       ENST00000467403 ENSE00003480474
9481  ENSG00000160191       ENST00000467403 ENSE00003684148
9482  ENSG00000160191       ENST00000467403 ENSE00003483886
9483  ENSG00000160191       ENST00000467403 ENSE00003466425
9484  ENSG00000160191       ENST00000467403 ENSE00003481356
9485  ENSG00000160191       ENST00000467403 ENSE00003641571
9486  ENSG00000160191       ENST00000467403 ENSE00003577931
9487  ENSG00000160191       ENST00000467403 ENSE00003676892
9488  ENSG00000160191       ENST00000467403 ENSE00003518456
9489  ENSG00000160191       ENST00000467403 ENSE00003694465
9490  ENSG00000160191       ENST00000467403 ENSE00003667235
9491  ENSG00000160191       ENST00000349112 ENSE00003656908
9492  ENSG00000160191       ENST00000349112 ENSE00003667734
9493  ENSG00000160191       ENST00000349112 ENSE00003645170
9494  ENSG00000160191       ENST00000349112 ENSE00003642531
9495  ENSG00000160191       ENST00000349112 ENSE00003538925
9496  ENSG00000160191       ENST00000349112 ENSE00003602236
9497  ENSG00000160191       ENST00000349112 ENSE00003546441
9498  ENSG00000160191       ENST00000349112 ENSE00003586792
9499  ENSG00000160191       ENST00000349112 ENSE00003561153
9500  ENSG00000160191       ENST00000349112 ENSE00003611375
9501  ENSG00000160191       ENST00000349112 ENSE00003461715
9502  ENSG00000160191       ENST00000349112 ENSE00003490275
9503  ENSG00000160191       ENST00000349112 ENSE00003692648
9504  ENSG00000160191       ENST00000349112 ENSE00003643013
9505  ENSG00000160191       ENST00000349112 ENSE00003690236
9506  ENSG00000160191       ENST00000349112 ENSE00003538927
9507  ENSG00000160191       ENST00000398224 ENSE00003689265
9508  ENSG00000160191       ENST00000398224 ENSE00003492285
9509  ENSG00000160191       ENST00000398224 ENSE00003656908
9510  ENSG00000160191       ENST00000398224 ENSE00003667734
9511  ENSG00000160191       ENST00000398224 ENSE00003645170
9512  ENSG00000160191       ENST00000398224 ENSE00003642531
9513  ENSG00000160191       ENST00000398224 ENSE00003538925
9514  ENSG00000160191       ENST00000398224 ENSE00003602236
9515  ENSG00000160191       ENST00000398224 ENSE00003546441
9516  ENSG00000160191       ENST00000398224 ENSE00003586792
9517  ENSG00000160191       ENST00000398224 ENSE00003561153
9518  ENSG00000160191       ENST00000398224 ENSE00003611375
9519  ENSG00000160191       ENST00000398224 ENSE00003461715
9520  ENSG00000160191       ENST00000398224 ENSE00003490275
9521  ENSG00000160191       ENST00000398224 ENSE00003692648
9522  ENSG00000160191       ENST00000398224 ENSE00003643013
9523  ENSG00000160191       ENST00000398224 ENSE00003628617
9524  ENSG00000160191       ENST00000467162 ENSE00003517962
9525  ENSG00000160191       ENST00000467162 ENSE00003490488
9526  ENSG00000160191       ENST00000467162 ENSE00003548951
9527  ENSG00000160191       ENST00000467162 ENSE00003488958
9528  ENSG00000160191       ENST00000467162 ENSE00003629203
9529  ENSG00000160191       ENST00000467162 ENSE00003686816
9530  ENSG00000160191       ENST00000467162 ENSE00003480474
9531  ENSG00000160191       ENST00000467162 ENSE00003684148
9532  ENSG00000160191       ENST00000467162 ENSE00003483886
9533  ENSG00000160191       ENST00000467162 ENSE00001895084
9534  ENSG00000160191       ENST00000467162 ENSE00001892956
9535  ENSG00000160191       ENST00000495343 ENSE00003517962
9536  ENSG00000160191       ENST00000495343 ENSE00003490488
9537  ENSG00000160191       ENST00000495343 ENSE00003548951
9538  ENSG00000160191       ENST00000495343 ENSE00003488958
9539  ENSG00000160191       ENST00000495343 ENSE00003480474
9540  ENSG00000160191       ENST00000495343 ENSE00003684148
9541  ENSG00000160191       ENST00000495343 ENSE00003483886
9542  ENSG00000160191       ENST00000495343 ENSE00003466425
9543  ENSG00000160191       ENST00000495343 ENSE00003481356
9544  ENSG00000160191       ENST00000495343 ENSE00003641571
9545  ENSG00000160191       ENST00000495343 ENSE00003577931
9546  ENSG00000160191       ENST00000495343 ENSE00003676892
9547  ENSG00000160191       ENST00000495343 ENSE00003518456
9548  ENSG00000160191       ENST00000495343 ENSE00003694465
9549  ENSG00000160191       ENST00000495343 ENSE00001867279
9550  ENSG00000160191       ENST00000489319 ENSE00003684148
9551  ENSG00000160191       ENST00000489319 ENSE00003483886
9552  ENSG00000160191       ENST00000489319 ENSE00003466425
9553  ENSG00000160191       ENST00000489319 ENSE00003481356
9554  ENSG00000160191       ENST00000489319 ENSE00003641571
9555  ENSG00000160191       ENST00000489319 ENSE00003577931
9556  ENSG00000160191       ENST00000489319 ENSE00003676892
9557  ENSG00000160191       ENST00000489319 ENSE00003518456
9558  ENSG00000160191       ENST00000489319 ENSE00003694465
9559  ENSG00000160191       ENST00000489319 ENSE00001943585
9560  ENSG00000160191       ENST00000466472 ENSE00003481356
9561  ENSG00000160191       ENST00000466472 ENSE00001934640
9562  ENSG00000160191       ENST00000466472 ENSE00001918948
9563  ENSG00000160209       ENST00000398081 ENSE00001531495
9564  ENSG00000160209       ENST00000398081 ENSE00003585237
9565  ENSG00000160209       ENST00000398081 ENSE00001531493
9566  ENSG00000160209       ENST00000468090 ENSE00003585237
9567  ENSG00000160209       ENST00000468090 ENSE00001376263
9568  ENSG00000160209       ENST00000468090 ENSE00003670847
9569  ENSG00000160209       ENST00000468090 ENSE00003694032
9570  ENSG00000160209       ENST00000468090 ENSE00003534315
9571  ENSG00000160209       ENST00000468090 ENSE00003489627
9572  ENSG00000160209       ENST00000468090 ENSE00003583352
9573  ENSG00000160209       ENST00000468090 ENSE00003552597
9574  ENSG00000160209       ENST00000468090 ENSE00003647981
9575  ENSG00000160209       ENST00000468090 ENSE00003043881
9576  ENSG00000160209       ENST00000291565 ENSE00003585237
9577  ENSG00000160209       ENST00000291565 ENSE00003670847
9578  ENSG00000160209       ENST00000291565 ENSE00003694032
9579  ENSG00000160209       ENST00000291565 ENSE00003534315
9580  ENSG00000160209       ENST00000291565 ENSE00003489627
9581  ENSG00000160209       ENST00000291565 ENSE00003583352
9582  ENSG00000160209       ENST00000291565 ENSE00003552597
9583  ENSG00000160209       ENST00000291565 ENSE00003647981
9584  ENSG00000160209       ENST00000291565 ENSE00003043881
9585  ENSG00000160209       ENST00000291565 ENSE00001861574
9586  ENSG00000160209       ENST00000291565 ENSE00003511412
9587  ENSG00000160209       ENST00000398085 ENSE00001822483
9588  ENSG00000160209       ENST00000398085 ENSE00003478560
9589  ENSG00000160209       ENST00000398085 ENSE00003584320
9590  ENSG00000160209       ENST00000398085 ENSE00001865037
9591  ENSG00000160209       ENST00000398085 ENSE00003573041
9592  ENSG00000160209       ENST00000398085 ENSE00003633585
9593  ENSG00000160209       ENST00000398085 ENSE00003500846
9594  ENSG00000160209       ENST00000398085 ENSE00003573966
9595  ENSG00000160209       ENST00000476084 ENSE00001928563
9596  ENSG00000160209       ENST00000476084 ENSE00001949080
9597  ENSG00000160209       ENST00000470029 ENSE00003478560
9598  ENSG00000160209       ENST00000470029 ENSE00003584320
9599  ENSG00000160209       ENST00000470029 ENSE00001868734
9600  ENSG00000160209       ENST00000470029 ENSE00003617125
9601  ENSG00000160209       ENST00000470029 ENSE00001823145
9602  ENSG00000160209       ENST00000438837 ENSE00001736120
9603  ENSG00000160209       ENST00000438837 ENSE00001722546
9604  ENSG00000160209       ENST00000498040 ENSE00003478560
9605  ENSG00000160209       ENST00000498040 ENSE00003584320
9606  ENSG00000160209       ENST00000498040 ENSE00003573041
9607  ENSG00000160209       ENST00000498040 ENSE00003633585
9608  ENSG00000160209       ENST00000498040 ENSE00003500846
9609  ENSG00000160209       ENST00000498040 ENSE00003573966
9610  ENSG00000160209       ENST00000498040 ENSE00003617125
9611  ENSG00000160209       ENST00000498040 ENSE00001933485
9612  ENSG00000160209       ENST00000498040 ENSE00001926471
9613  ENSG00000160209       ENST00000327574 ENSE00003585237
9614  ENSG00000160209       ENST00000327574 ENSE00001531493
9615  ENSG00000160209       ENST00000327574 ENSE00001434352
9616  ENSG00000160209       ENST00000327574 ENSE00001432839
9617  ENSG00000160209       ENST00000472777 ENSE00003478560
9618  ENSG00000160209       ENST00000472777 ENSE00003584320
9619  ENSG00000160209       ENST00000472777 ENSE00003573041
9620  ENSG00000160209       ENST00000472777 ENSE00003617125
9621  ENSG00000160209       ENST00000472777 ENSE00001813503
9622  ENSG00000160209       ENST00000472777 ENSE00001881690
9623  ENSG00000160209       ENST00000476313 ENSE00003478560
9624  ENSG00000160209       ENST00000476313 ENSE00001920411
9625  ENSG00000160209       ENST00000476313 ENSE00001861531
9626  ENSG00000160209       ENST00000476313 ENSE00001880782
9627  ENSG00000160209       ENST00000481512 ENSE00003478560
9628  ENSG00000160209       ENST00000481512 ENSE00003584320
9629  ENSG00000160209       ENST00000481512 ENSE00003573041
9630  ENSG00000160209       ENST00000481512 ENSE00003633585
9631  ENSG00000160209       ENST00000481512 ENSE00003500846
9632  ENSG00000160209       ENST00000481512 ENSE00003573966
9633  ENSG00000160209       ENST00000481512 ENSE00003617125
9634  ENSG00000160209       ENST00000481512 ENSE00001954980
9635  ENSG00000160209       ENST00000481512 ENSE00002486241
9636  ENSG00000160209       ENST00000490666 ENSE00003584320
9637  ENSG00000160209       ENST00000490666 ENSE00003573041
9638  ENSG00000160209       ENST00000490666 ENSE00003633585
9639  ENSG00000160209       ENST00000490666 ENSE00003500846
9640  ENSG00000160209       ENST00000490666 ENSE00003573966
9641  ENSG00000160209       ENST00000490666 ENSE00003617125
9642  ENSG00000160209       ENST00000490666 ENSE00001926471
9643  ENSG00000160209       ENST00000490666 ENSE00001957154
9644  ENSG00000160209       ENST00000467908 ENSE00003670847
9645  ENSG00000160209       ENST00000467908 ENSE00003694032
9646  ENSG00000160209       ENST00000467908 ENSE00003534315
9647  ENSG00000160209       ENST00000467908 ENSE00003489627
9648  ENSG00000160209       ENST00000467908 ENSE00003583352
9649  ENSG00000160209       ENST00000467908 ENSE00003552597
9650  ENSG00000160209       ENST00000467908 ENSE00003647981
9651  ENSG00000160209       ENST00000467908 ENSE00003043881
9652  ENSG00000160209       ENST00000467908 ENSE00003511412
9653  ENSG00000160209       ENST00000467908 ENSE00001955629
9654  ENSG00000160209       ENST00000343528 ENSE00003584320
9655  ENSG00000160209       ENST00000343528 ENSE00003573041
9656  ENSG00000160209       ENST00000343528 ENSE00003633585
9657  ENSG00000160209       ENST00000343528 ENSE00003500846
9658  ENSG00000160209       ENST00000343528 ENSE00003573966
9659  ENSG00000160209       ENST00000343528 ENSE00003617125
9660  ENSG00000160209       ENST00000343528 ENSE00001757941
9661  ENSG00000160209       ENST00000343528 ENSE00003626994
9662  ENSG00000160209       ENST00000343528 ENSE00003610600
9663  ENSG00000160209       ENST00000343528 ENSE00001897856
9664  ENSG00000160209       ENST00000398078 ENSE00003573041
9665  ENSG00000160209       ENST00000398078 ENSE00003633585
9666  ENSG00000160209       ENST00000398078 ENSE00003500846
9667  ENSG00000160209       ENST00000398078 ENSE00003573966
9668  ENSG00000160209       ENST00000398078 ENSE00003617125
9669  ENSG00000160209       ENST00000398078 ENSE00003626994
9670  ENSG00000160209       ENST00000398078 ENSE00003610600
9671  ENSG00000160209       ENST00000398078 ENSE00001899869
9672  ENSG00000160209       ENST00000398078 ENSE00001899812
9673  ENSG00000160209       ENST00000468392 ENSE00003633585
9674  ENSG00000160209       ENST00000468392 ENSE00003500846
9675  ENSG00000160209       ENST00000468392 ENSE00003573966
9676  ENSG00000160209       ENST00000468392 ENSE00003626994
9677  ENSG00000160209       ENST00000468392 ENSE00003610600
9678  ENSG00000160209       ENST00000468392 ENSE00001951613
9679  ENSG00000160209       ENST00000468392 ENSE00001887017
9680  ENSG00000160209       ENST00000461123 ENSE00003626994
9681  ENSG00000160209       ENST00000461123 ENSE00001810387
9682  ENSG00000160209       ENST00000461123 ENSE00001828323
9683  ENSG00000160209       ENST00000621478 ENSE00003738484
9684  ENSG00000160209       ENST00000621478 ENSE00003728118
9685  ENSG00000141959       ENST00000349048 ENSE00001560222
9686  ENSG00000141959       ENST00000349048 ENSE00003556813
9687  ENSG00000141959       ENST00000349048 ENSE00003468441
9688  ENSG00000141959       ENST00000349048 ENSE00003468758
9689  ENSG00000141959       ENST00000349048 ENSE00003620819
9690  ENSG00000141959       ENST00000349048 ENSE00003487259
9691  ENSG00000141959       ENST00000349048 ENSE00003482974
9692  ENSG00000141959       ENST00000349048 ENSE00003610456
9693  ENSG00000141959       ENST00000349048 ENSE00003668706
9694  ENSG00000141959       ENST00000349048 ENSE00003572167
9695  ENSG00000141959       ENST00000349048 ENSE00003470814
9696  ENSG00000141959       ENST00000349048 ENSE00003669897
9697  ENSG00000141959       ENST00000349048 ENSE00003682480
9698  ENSG00000141959       ENST00000349048 ENSE00003688681
9699  ENSG00000141959       ENST00000349048 ENSE00003543348
9700  ENSG00000141959       ENST00000349048 ENSE00003650066
9701  ENSG00000141959       ENST00000349048 ENSE00003492099
9702  ENSG00000141959       ENST00000349048 ENSE00003615543
9703  ENSG00000141959       ENST00000349048 ENSE00003538638
9704  ENSG00000141959       ENST00000349048 ENSE00003533809
9705  ENSG00000141959       ENST00000349048 ENSE00003458220
9706  ENSG00000141959       ENST00000349048 ENSE00003483524
9707  ENSG00000141959       ENST00000397961 ENSE00001560222
9708  ENSG00000141959       ENST00000397961 ENSE00003586588
9709  ENSG00000141959       ENST00000397961 ENSE00002714710
9710  ENSG00000141959       ENST00000397961 ENSE00003520125
9711  ENSG00000141959       ENST00000397961 ENSE00003589820
9712  ENSG00000141959       ENST00000397961 ENSE00003557725
9713  ENSG00000141959       ENST00000397961 ENSE00003520020
9714  ENSG00000141959       ENST00000397961 ENSE00003605052
9715  ENSG00000141959       ENST00000397961 ENSE00003574149
9716  ENSG00000141959       ENST00000397961 ENSE00003537097
9717  ENSG00000141959       ENST00000397961 ENSE00003678527
9718  ENSG00000141959       ENST00000397961 ENSE00003512653
9719  ENSG00000141959       ENST00000397961 ENSE00003571406
9720  ENSG00000141959       ENST00000397961 ENSE00003482524
9721  ENSG00000141959       ENST00000397961 ENSE00003459127
9722  ENSG00000141959       ENST00000397961 ENSE00003536916
9723  ENSG00000141959       ENST00000397961 ENSE00003538062
9724  ENSG00000141959       ENST00000397961 ENSE00003665414
9725  ENSG00000141959       ENST00000397961 ENSE00003547726
9726  ENSG00000141959       ENST00000397961 ENSE00003677022
9727  ENSG00000141959       ENST00000397961 ENSE00003635521
9728  ENSG00000141959       ENST00000397961 ENSE00003594641
9729  ENSG00000141959       ENST00000397961 ENSE00003582240
9730  ENSG00000141959       ENST00000397961 ENSE00003573803
9731  ENSG00000141959       ENST00000397961 ENSE00003625182
9732  ENSG00000141959       ENST00000496824 ENSE00003589820
9733  ENSG00000141959       ENST00000496824 ENSE00003557725
9734  ENSG00000141959       ENST00000496824 ENSE00003520020
9735  ENSG00000141959       ENST00000496824 ENSE00003605052
9736  ENSG00000141959       ENST00000496824 ENSE00003574149
9737  ENSG00000141959       ENST00000496824 ENSE00003537097
9738  ENSG00000141959       ENST00000496824 ENSE00003678527
9739  ENSG00000141959       ENST00000496824 ENSE00001611910
9740  ENSG00000141959       ENST00000496824 ENSE00003679758
9741  ENSG00000141959       ENST00000466134 ENSE00003589820
9742  ENSG00000141959       ENST00000466134 ENSE00003557725
9743  ENSG00000141959       ENST00000466134 ENSE00003520020
9744  ENSG00000141959       ENST00000466134 ENSE00003605052
9745  ENSG00000141959       ENST00000466134 ENSE00003574149
9746  ENSG00000141959       ENST00000466134 ENSE00003512653
9747  ENSG00000141959       ENST00000466134 ENSE00003571406
9748  ENSG00000141959       ENST00000466134 ENSE00003536916
9749  ENSG00000141959       ENST00000466134 ENSE00003538062
9750  ENSG00000141959       ENST00000466134 ENSE00003665414
9751  ENSG00000141959       ENST00000466134 ENSE00003547726
9752  ENSG00000141959       ENST00000466134 ENSE00003677022
9753  ENSG00000141959       ENST00000466134 ENSE00003635521
9754  ENSG00000141959       ENST00000466134 ENSE00003594641
9755  ENSG00000141959       ENST00000466134 ENSE00003573803
9756  ENSG00000141959       ENST00000466134 ENSE00003625182
9757  ENSG00000141959       ENST00000466134 ENSE00001834602
9758  ENSG00000141959       ENST00000466134 ENSE00001819263
9759  ENSG00000141959       ENST00000466134 ENSE00001847043
9760  ENSG00000141959       ENST00000466134 ENSE00001854527
9761  ENSG00000141959       ENST00000491298 ENSE00003589820
9762  ENSG00000141959       ENST00000491298 ENSE00003557725
9763  ENSG00000141959       ENST00000491298 ENSE00003520020
9764  ENSG00000141959       ENST00000491298 ENSE00003605052
9765  ENSG00000141959       ENST00000491298 ENSE00003574149
9766  ENSG00000141959       ENST00000491298 ENSE00001892739
9767  ENSG00000141959       ENST00000491298 ENSE00001866194
9768  ENSG00000141959       ENST00000474114 ENSE00003512653
9769  ENSG00000141959       ENST00000474114 ENSE00003571406
9770  ENSG00000141959       ENST00000474114 ENSE00003538062
9771  ENSG00000141959       ENST00000474114 ENSE00003665414
9772  ENSG00000141959       ENST00000474114 ENSE00003547726
9773  ENSG00000141959       ENST00000474114 ENSE00003677022
9774  ENSG00000141959       ENST00000474114 ENSE00003573803
9775  ENSG00000141959       ENST00000474114 ENSE00003625182
9776  ENSG00000141959       ENST00000474114 ENSE00001840062
9777  ENSG00000141959       ENST00000474114 ENSE00001936818
9778  ENSG00000141959       ENST00000474114 ENSE00001938426
9779  ENSG00000141959       ENST00000498841 ENSE00003536916
9780  ENSG00000141959       ENST00000498841 ENSE00003538062
9781  ENSG00000141959       ENST00000498841 ENSE00003665414
9782  ENSG00000141959       ENST00000498841 ENSE00003547726
9783  ENSG00000141959       ENST00000498841 ENSE00003677022
9784  ENSG00000141959       ENST00000498841 ENSE00003573803
9785  ENSG00000141959       ENST00000498841 ENSE00003625182
9786  ENSG00000141959       ENST00000498841 ENSE00001938426
9787  ENSG00000141959       ENST00000498841 ENSE00001847152
9788  ENSG00000141959       ENST00000460020 ENSE00003536916
9789  ENSG00000141959       ENST00000460020 ENSE00003538062
9790  ENSG00000141959       ENST00000460020 ENSE00003665414
9791  ENSG00000141959       ENST00000460020 ENSE00003547726
9792  ENSG00000141959       ENST00000460020 ENSE00001885464
9793  ENSG00000141959       ENST00000460020 ENSE00001943900
9794  ENSG00000141959       ENST00000467315 ENSE00003536916
9795  ENSG00000141959       ENST00000467315 ENSE00003538062
9796  ENSG00000141959       ENST00000467315 ENSE00003665414
9797  ENSG00000141959       ENST00000467315 ENSE00003547726
9798  ENSG00000141959       ENST00000467315 ENSE00003677022
9799  ENSG00000141959       ENST00000467315 ENSE00003635521
9800  ENSG00000141959       ENST00000467315 ENSE00003594641
9801  ENSG00000141959       ENST00000467315 ENSE00003582240
9802  ENSG00000141959       ENST00000467315 ENSE00003573803
9803  ENSG00000141959       ENST00000467315 ENSE00003625182
9804  ENSG00000141959       ENST00000467315 ENSE00001856420
9805  ENSG00000141959       ENST00000460521 ENSE00003538062
9806  ENSG00000141959       ENST00000460521 ENSE00003665414
9807  ENSG00000141959       ENST00000460521 ENSE00003547726
9808  ENSG00000141959       ENST00000460521 ENSE00003677022
9809  ENSG00000141959       ENST00000460521 ENSE00003635521
9810  ENSG00000141959       ENST00000460521 ENSE00003594641
9811  ENSG00000141959       ENST00000460521 ENSE00003582240
9812  ENSG00000141959       ENST00000460521 ENSE00003573803
9813  ENSG00000141959       ENST00000460521 ENSE00003625182
9814  ENSG00000141959       ENST00000460521 ENSE00001897458
9815  ENSG00000141959       ENST00000495274 ENSE00003665414
9816  ENSG00000141959       ENST00000495274 ENSE00003547726
9817  ENSG00000141959       ENST00000495274 ENSE00003677022
9818  ENSG00000141959       ENST00000495274 ENSE00003635521
9819  ENSG00000141959       ENST00000495274 ENSE00001819579
9820  ENSG00000141959       ENST00000628044 ENSE00003775335
9821  ENSG00000141959       ENST00000628044 ENSE00003764175
9822  ENSG00000275874       ENST00000615826 ENSE00003722794
9823  ENSG00000275874       ENST00000615826 ENSE00003722737
9824  ENSG00000185808       ENST00000360525 ENSE00001419804
9825  ENSG00000185808       ENST00000360525 ENSE00003470276
9826  ENSG00000185808       ENST00000360525 ENSE00003788488
9827  ENSG00000185808       ENST00000360525 ENSE00003468709
9828  ENSG00000185808       ENST00000360525 ENSE00001875155
9829  ENSG00000185808       ENST00000464265 ENSE00003788488
9830  ENSG00000185808       ENST00000464265 ENSE00003468709
9831  ENSG00000185808       ENST00000464265 ENSE00001320201
9832  ENSG00000185808       ENST00000464265 ENSE00001818729
9833  ENSG00000185808       ENST00000329667 ENSE00003592147
9834  ENSG00000185808       ENST00000329667 ENSE00003541657
9835  ENSG00000185808       ENST00000329667 ENSE00003537149
9836  ENSG00000185808       ENST00000399102 ENSE00003470276
9837  ENSG00000185808       ENST00000399102 ENSE00003788488
9838  ENSG00000185808       ENST00000399102 ENSE00003468709
9839  ENSG00000185808       ENST00000399102 ENSE00001536420
9840  ENSG00000185808       ENST00000399102 ENSE00003526634
9841  ENSG00000185808       ENST00000399103 ENSE00003470276
9842  ENSG00000185808       ENST00000399103 ENSE00003788488
9843  ENSG00000185808       ENST00000399103 ENSE00003468709
9844  ENSG00000185808       ENST00000399103 ENSE00003526634
9845  ENSG00000185808       ENST00000399103 ENSE00001536427
9846  ENSG00000185808       ENST00000399098 ENSE00003788488
9847  ENSG00000185808       ENST00000399098 ENSE00003468709
9848  ENSG00000185808       ENST00000399098 ENSE00003592147
9849  ENSG00000185808       ENST00000399098 ENSE00003526634
9850  ENSG00000185808       ENST00000399098 ENSE00001536419
9851  ENSG00000185808       ENST00000399098 ENSE00001536408
9852  ENSG00000185808       ENST00000479152 ENSE00001936150
9853  ENSG00000185808       ENST00000479152 ENSE00001944308
9854  ENSG00000185808       ENST00000430792 ENSE00003788488
9855  ENSG00000185808       ENST00000430792 ENSE00001536408
9856  ENSG00000185808       ENST00000430792 ENSE00001616850
9857  ENSG00000160199       ENST00000291547 ENSE00001860427
9858  ENSG00000160199       ENST00000291547 ENSE00003491838
9859  ENSG00000160199       ENST00000291547 ENSE00003627186
9860  ENSG00000160199       ENST00000291547 ENSE00003513802
9861  ENSG00000160199       ENST00000291547 ENSE00003738221
9862  ENSG00000160199       ENST00000291547 ENSE00003551171
9863  ENSG00000160199       ENST00000291547 ENSE00003597493
9864  ENSG00000160199       ENST00000291547 ENSE00003520581
9865  ENSG00000160199       ENST00000291547 ENSE00003699223
9866  ENSG00000160199       ENST00000291547 ENSE00003700349
9867  ENSG00000160199       ENST00000291547 ENSE00001050477
9868  ENSG00000160199       ENST00000418336 ENSE00003462056
9869  ENSG00000160199       ENST00000418336 ENSE00002563670
9870  ENSG00000160199       ENST00000418336 ENSE00002537972
9871  ENSG00000160199       ENST00000480179 ENSE00003462056
9872  ENSG00000160199       ENST00000480179 ENSE00003637651
9873  ENSG00000160199       ENST00000480179 ENSE00003576614
9874  ENSG00000160199       ENST00000480179 ENSE00003624412
9875  ENSG00000160199       ENST00000480179 ENSE00002508807
9876  ENSG00000160199       ENST00000480179 ENSE00001951813
9877  ENSG00000160199       ENST00000456957 ENSE00002553706
9878  ENSG00000160199       ENST00000456957 ENSE00002565116
9879  ENSG00000160199       ENST00000560448 ENSE00003627186
9880  ENSG00000160199       ENST00000560448 ENSE00003601994
9881  ENSG00000160199       ENST00000560448 ENSE00003566766
9882  ENSG00000160199       ENST00000560448 ENSE00003701920
9883  ENSG00000160199       ENST00000560448 ENSE00003698867
9884  ENSG00000160199       ENST00000560448 ENSE00002562979
9885  ENSG00000160199       ENST00000560448 ENSE00003521625
9886  ENSG00000160199       ENST00000560448 ENSE00003695650
9887  ENSG00000160199       ENST00000560448 ENSE00003549078
9888  ENSG00000160199       ENST00000607049 ENSE00003701920
9889  ENSG00000160199       ENST00000607049 ENSE00003701093
9890  ENSG00000160199       ENST00000607049 ENSE00003699704
9891  ENSG00000160199       ENST00000607049 ENSE00002537572
9892  ENSG00000160199       ENST00000557820 ENSE00003701920
9893  ENSG00000160199       ENST00000557820 ENSE00003698867
9894  ENSG00000160199       ENST00000557820 ENSE00003695650
9895  ENSG00000160199       ENST00000557820 ENSE00002540015
9896  ENSG00000160199       ENST00000557820 ENSE00002539137
9897  ENSG00000160199       ENST00000474336 ENSE00003698867
9898  ENSG00000160199       ENST00000474336 ENSE00001887167
9899  ENSG00000160199       ENST00000474336 ENSE00001931642
9900  ENSG00000160199       ENST00000607150 ENSE00003698867
9901  ENSG00000160199       ENST00000607150 ENSE00003697340
9902  ENSG00000160199       ENST00000607150 ENSE00003695687
9903  ENSG00000160199       ENST00000558955 ENSE00003695650
9904  ENSG00000160199       ENST00000558955 ENSE00002563068
9905  ENSG00000160199       ENST00000558955 ENSE00003699728
9906  ENSG00000160199       ENST00000432907 ENSE00001860427
9907  ENSG00000160199       ENST00000432907 ENSE00003551171
9908  ENSG00000160199       ENST00000432907 ENSE00003597493
9909  ENSG00000160199       ENST00000432907 ENSE00003520581
9910  ENSG00000160199       ENST00000432907 ENSE00003699223
9911  ENSG00000160199       ENST00000432907 ENSE00003700349
9912  ENSG00000160199       ENST00000432907 ENSE00003462056
9913  ENSG00000160199       ENST00000432907 ENSE00003637651
9914  ENSG00000160199       ENST00000432907 ENSE00003738006
9915  ENSG00000160199       ENST00000432907 ENSE00003572037
9916  ENSG00000280109       ENST00000623119 ENSE00003755206
9917  ENSG00000280109       ENST00000624999 ENSE00003758813
9918  ENSG00000186866       ENST00000471540 ENSE00001833042
9919  ENSG00000186866       ENST00000471540 ENSE00003537856
9920  ENSG00000186866       ENST00000471540 ENSE00003553176
9921  ENSG00000186866       ENST00000471540 ENSE00001917296
9922  ENSG00000186866       ENST00000471540 ENSE00003653777
9923  ENSG00000186866       ENST00000471540 ENSE00003563296
9924  ENSG00000186866       ENST00000471540 ENSE00003608186
9925  ENSG00000186866       ENST00000471540 ENSE00003478059
9926  ENSG00000186866       ENST00000471540 ENSE00003568041
9927  ENSG00000186866       ENST00000331343 ENSE00001850690
9928  ENSG00000186866       ENST00000331343 ENSE00003614666
9929  ENSG00000186866       ENST00000331343 ENSE00003473928
9930  ENSG00000186866       ENST00000331343 ENSE00003522310
9931  ENSG00000186866       ENST00000331343 ENSE00003583701
9932  ENSG00000186866       ENST00000331343 ENSE00003530867
9933  ENSG00000186866       ENST00000331343 ENSE00003462591
9934  ENSG00000186866       ENST00000331343 ENSE00001350244
9935  ENSG00000186866       ENST00000334538 ENSE00003568041
9936  ENSG00000186866       ENST00000334538 ENSE00001850690
9937  ENSG00000186866       ENST00000334538 ENSE00003614666
9938  ENSG00000186866       ENST00000334538 ENSE00003473928
9939  ENSG00000186866       ENST00000334538 ENSE00003522310
9940  ENSG00000186866       ENST00000334538 ENSE00003583701
9941  ENSG00000186866       ENST00000334538 ENSE00003530867
9942  ENSG00000186866       ENST00000334538 ENSE00003462591
9943  ENSG00000186866       ENST00000334538 ENSE00003683659
9944  ENSG00000186866       ENST00000334538 ENSE00003567218
9945  ENSG00000186866       ENST00000349485 ENSE00001850690
9946  ENSG00000186866       ENST00000349485 ENSE00003614666
9947  ENSG00000186866       ENST00000349485 ENSE00003473928
9948  ENSG00000186866       ENST00000349485 ENSE00003522310
9949  ENSG00000186866       ENST00000349485 ENSE00003583701
9950  ENSG00000186866       ENST00000349485 ENSE00003530867
9951  ENSG00000186866       ENST00000349485 ENSE00003462591
9952  ENSG00000186866       ENST00000349485 ENSE00003683659
9953  ENSG00000186866       ENST00000349485 ENSE00003489621
9954  ENSG00000186866       ENST00000485190 ENSE00001820548
9955  ENSG00000186866       ENST00000485190 ENSE00001910129
9956  ENSG00000186866       ENST00000460932 ENSE00003608186
9957  ENSG00000186866       ENST00000460932 ENSE00001939547
9958  ENSG00000186866       ENST00000460932 ENSE00001902655
9959  ENSG00000186866       ENST00000463917 ENSE00001848517
9960  ENSG00000186866       ENST00000463917 ENSE00001880278
9961  ENSG00000186866       ENST00000451615 ENSE00003473928
9962  ENSG00000186866       ENST00000451615 ENSE00003522310
9963  ENSG00000186866       ENST00000451615 ENSE00003583701
9964  ENSG00000186866       ENST00000451615 ENSE00003530867
9965  ENSG00000186866       ENST00000451615 ENSE00003462591
9966  ENSG00000186866       ENST00000451615 ENSE00002442646
9967  ENSG00000186866       ENST00000451615 ENSE00001680898
9968  ENSG00000186866       ENST00000451615 ENSE00002468586
9969  ENSG00000186866       ENST00000493524 ENSE00003537856
9970  ENSG00000186866       ENST00000493524 ENSE00003553176
9971  ENSG00000186866       ENST00000493524 ENSE00003653777
9972  ENSG00000186866       ENST00000493524 ENSE00002025594
9973  ENSG00000186866       ENST00000493524 ENSE00003673509
9974  ENSG00000186866       ENST00000493524 ENSE00001935444
9975  ENSG00000186866       ENST00000468360 ENSE00003553176
9976  ENSG00000186866       ENST00000468360 ENSE00003653777
9977  ENSG00000186866       ENST00000468360 ENSE00003673509
9978  ENSG00000186866       ENST00000468360 ENSE00001902843
9979  ENSG00000186866       ENST00000468360 ENSE00001828687
9980  ENSG00000186866       ENST00000493811 ENSE00003673509
9981  ENSG00000186866       ENST00000493811 ENSE00001951160
9982  ENSG00000186866       ENST00000493811 ENSE00003690134
9983  ENSG00000186866       ENST00000493811 ENSE00001942075
9984  ENSG00000186866       ENST00000476653 ENSE00001956512
9985  ENSG00000186866       ENST00000476653 ENSE00001903333
9986  ENSG00000186866       ENST00000612472 ENSE00003553176
9987  ENSG00000186866       ENST00000612472 ENSE00003653777
9988  ENSG00000186866       ENST00000612472 ENSE00003563296
9989  ENSG00000186866       ENST00000612472 ENSE00003608186
9990  ENSG00000186866       ENST00000612472 ENSE00003614666
9991  ENSG00000186866       ENST00000612472 ENSE00003733514
9992  ENSG00000186866       ENST00000612472 ENSE00003748436
9993  ENSG00000186866       ENST00000612472 ENSE00003740519
9994  ENSG00000186866       ENST00000612472 ENSE00003716929
9995  ENSG00000186866       ENST00000612472 ENSE00003727744
9996  ENSG00000186866       ENST00000615172 ENSE00003462591
9997  ENSG00000186866       ENST00000615172 ENSE00003683659
9998  ENSG00000186866       ENST00000615172 ENSE00003567218
9999  ENSG00000186866       ENST00000615172 ENSE00003734930
      chromosome_name start_position    hgnc_id strand
1                  21        5073458                 1
2                  21        5073458                 1
3                  21       14027421                 1
4                  21       14027421                 1
5                  21       14027421                 1
6                  21       14027421                 1
7                  21       14027421                 1
8                  21       14027421                 1
9                  21       14027421                 1
10                 21       14027421                 1
11                 21       14027421                 1
12                 21       14918534                 1
13                 21       14918534                 1
14                 21       14961309                 1
15                 21       14961309                 1
16                 21       14971470                 1
17                 21       14971470                 1
18                 21       14971470                 1
19                 21       17793488                 1
20                 21       17793488                 1
21                 21       17793488                 1
22                 21       17793488                 1
23                 21       21223295                -1
24                 21       21223295                -1
25                 21       25582770                -1
26                 21       26158091                 1
27                 21       26158091                 1
28                 21       26378552                 1
29                 21       26378552                 1
30                 21       26378552                 1
31                 21       26378552                 1
32                 21       26378552                 1
33                 21       26378552                 1
34                 21       26378552                 1
35                 21       26378552                 1
36                 21       26378552                 1
37                 21       26378552                 1
38                 21       26378552                 1
39                 21       26378552                 1
40                 21       26378552                 1
41                 21       26378552                 1
42                 21       26889376                 1
43                 21       26889376                 1
44                 21       26889376                 1
45                 21       29024255                -1
46                 21       29182027                -1
47                 21       29182027                -1
48                 21       29657406                 1
49                 21       31559245                 1
50                 21       31559245                 1
51                 21       31666728                -1
52                 21       32306464                -1
53                 21       32306464                -1
54                 21       32844367                -1
55                 21       32844367                -1
56                 21       32913649                -1
57                 21       32913649                -1
58                 21       33156632                 1
59                 21       33156632                 1
60                 21       33482499                -1
61                 21       33482499                -1
62                 21       33482499                -1
63                 21       34370802                -1
64                 21       34370802                -1
65                 21       36060432                 1
66                 21       36060432                 1
67                 21       36060432                 1
68                 21       36319792                -1
69                 21       36430360                 1
70                 21       36430360                 1
71                 21       36445731                 1
72                 21       36445731                 1
73                 21       36445731                 1
74                 21       36445731                 1
75                 21       36698773                -1
76                 21       36698773                -1
77                 21       37267784                 1
78                 21       37365477                -1
79                 21       39184469                 1
80                 21       41176322                -1
81                 21       41176322                -1
82                 21       41176322                -1
83                 21       41176322                -1
84                 21       41176322                -1
85                 21       41176322                -1
86                 21       41176322                -1
87                 21       41176322                -1
88                 21       41176322                -1
89                 21       41176322                -1
90                 21       41441056                -1
91                 21       41441056                -1
92                 21       41441056                -1
93                 21       41739373                 1
94                 21       41739373                 1
95                 21       41870633                 1
96                 21       41870633                 1
97                 21       42560374                -1
98                 21       42560374                -1
99                 21       42648271                -1
100                21       42648271                -1
101                21       42733594                -1
102                21       42733594                -1
103                21       42964639                -1
104                21       42964639                -1
105                21       44201290                 1
106                21       44201290                 1
107                21       44250813                 1
108                21       44250813                 1
109                21       44331234                 1
110                21       44331234                 1
111                21       44339376                 1
112                21       44339376                 1
113                21       44936303                 1
114                21       45378201                -1
115                21       45378201                -1
116                21       45378201                -1
117                21       45378201                -1
118                21       45759804                -1
119                21       45827961                -1
120                21       45827961                -1
121                21       45827961                -1
122                21       46093264                -1
123                21       46093264                -1
124                21       46185079                 1
125                21       46185079                 1
126                21       46220269                 1
127                21       46220269                 1
128                21       46220269                 1
129                21       46220269                 1
130                21       46220269                 1
131                21       46220269                 1
132                21       46246890                 1
133                21       46246890                 1
134                21       46251549                -1
135                21       46251549                -1
136                21       46251549                -1
137                21       46251549                -1
138                21        5232668                -1
139                21        5232668                -1
140                21        5553637                 1
141                21        5553637                 1
142                21        5553637                 1
143                21        5553637                 1
144                21        5553637                 1
145                21        5553637                 1
146                21        5553637                 1
147                21        5553637                 1
148                21        5553637                 1
149                21        5553637                 1
150                21        5553637                 1
151                21        5553637                 1
152                21        5553637                 1
153                21        5553637                 1
154                21        5553637                 1
155                21        5553637                 1
156                21        5553637                 1
157                21        5553637                 1
158                21        5553637                 1
159                21        5553637                 1
160                21        5553637                 1
161                21        5553637                 1
162                21        5553637                 1
163                21        5553637                 1
164                21        5553637                 1
165                21        5553637                 1
166                21        5553637                 1
167                21        5553637                 1
168                21        5553637                 1
169                21        5553637                 1
170                21        5553637                 1
171                21        5553637                 1
172                21        5553637                 1
173                21        5553637                 1
174                21        5553637                 1
175                21        5553637                 1
176                21        5553637                 1
177                21        5553637                 1
178                21        5553637                 1
179                21        5553637                 1
180                21        5705345                 1
181                21        5705345                 1
182                21        5707004                -1
183                21        5707004                -1
184                21        6081193                 1
185                21        6081193                 1
186                21        6084364                -1
187                21        6084364                -1
188                21        6084364                -1
189                21        6084364                -1
190                21        6084364                -1
191                21        6084364                -1
192                21        6084364                -1
193                21        6228966                -1
194                21        6228966                -1
195                21        6228966                -1
196                21        6228966                -1
197                21        6228966                -1
198                21        6228966                -1
199                21        6228966                -1
200                21        6228966                -1
201                21        6228966                -1
202                21        6228966                -1
203                21        6228966                -1
204                21        6228966                -1
205                21        6228966                -1
206                21        6228966                -1
207                21        6228966                -1
208                21        6228966                -1
209                21        6228966                -1
210                21        6228966                -1
211                21        6228966                -1
212                21        6228966                -1
213                21        6228966                -1
214                21        6318434                 1
215                21        6318434                 1
216                21        6318434                 1
217                21        6318434                 1
218                21        6318434                 1
219                21        6318434                 1
220                21        6318434                 1
221                21        6318434                 1
222                21        6318434                 1
223                21        6318434                 1
224                21        6318434                 1
225                21        6318434                 1
226                21        6318434                 1
227                21        6318434                 1
228                21        6318434                 1
229                21        6318434                 1
230                21        6318434                 1
231                21        6318434                 1
232                21        6550749                -1
233                21        6550749                -1
234                21        6550749                -1
235                21        6667304                -1
236                21        6667304                -1
237                21        6667304                -1
238                21        6667304                -1
239                21        6667304                -1
240                21        6630182                -1
241                21        6630182                -1
242                21        6630182                -1
243                21        6630182                -1
244                21        6630182                -1
245                21        6630182                -1
246                21        6630182                -1
247                21        6630182                -1
248                21        6630182                -1
249                21        6630182                -1
250                21        6630182                -1
251                21        6630182                -1
252                21        6630182                -1
253                21        6630182                -1
254                21        6630182                -1
255                21        6630182                -1
256                21        6630182                -1
257                21        6630182                -1
258                21        6630182                -1
259                21        6630182                -1
260                21        6630182                -1
261                21        6630182                -1
262                21        6630182                -1
263                21        6630182                -1
264                21        6630182                -1
265                21        6721812                 1
266                21        6721812                 1
267                21        6721812                 1
268                21        6789592                 1
269                21        6789592                 1
270                21        6789592                 1
271                21        6858539                 1
272                21        6858539                 1
273                21        6858539                 1
274                21        6904884                 1
275                21        6904884                 1
276                21        6994374                -1
277                21        6994374                -1
278                21        6994374                -1
279                21        6986450                -1
280                21        6986450                -1
281                21        6986450                -1
282                21        6986450                -1
283                21        6986450                -1
284                21        6986450                -1
285                21        6986450                -1
286                21        6986450                -1
287                21        6986450                -1
288                21        6986450                -1
289                21        6986450                -1
290                21        7020599                 1
291                21        7020599                 1
292                21        7048891                 1
293                21        7048891                 1
294                21        7048891                 1
295                21        7048891                 1
296                21        7048891                 1
297                21        7048891                 1
298                21        7048891                 1
299                21        7048891                 1
300                21        7048891                 1
301                21        7048891                 1
302                21        7048891                 1
303                21        7048891                 1
304                21        7048891                 1
305                21        7048891                 1
306                21        7048891                 1
307                21        7048891                 1
308                21        7048891                 1
309                21        7048891                 1
310                21        7048891                 1
311                21        7430659                 1
312                21        7430659                 1
313                21        7430659                 1
314                21        7430659                 1
315                21        7430659                 1
316                21        7430659                 1
317                21        7430659                 1
318                21        7430659                 1
319                21        7430659                 1
320                21        7430659                 1
321                21        7430659                 1
322                21        7430659                 1
323                21        7430659                 1
324                21        7430659                 1
325                21        7430659                 1
326                21        7430659                 1
327                21        7430659                 1
328                21        7430659                 1
329                21        7430659                 1
330                21        7430659                 1
331                21        7430659                 1
332                21        7430659                 1
333                21        7430659                 1
334                21        7669397                -1
335                21        7669397                -1
336                21        7669397                -1
337                21        7669397                -1
338                21        7669397                -1
339                21        7669397                -1
340                21        7669397                -1
341                21        7669397                -1
342                21        7669397                -1
343                21        7669397                -1
344                21        7669397                -1
345                21        7669397                -1
346                21        7669397                -1
347                21        7669397                -1
348                21        7669397                -1
349                21        7669397                -1
350                21        7669397                -1
351                21        7669397                -1
352                21        7669397                -1
353                21        7669397                -1
354                21        7669397                -1
355                21        8210384                -1
356                21        8197620                 1
357                21        8197620                 1
358                21        8197620                 1
359                21        8197620                 1
360                21        8197620                 1
361                21        8197620                 1
362                21        8197620                 1
363                21        8254592                -1
364                21        8393419                -1
365                21        8380665                 1
366                21        8380665                 1
367                21        8380665                 1
368                21        8380665                 1
369                21        8380665                 1
370                21        8380665                 1
371                21        8380665                 1
372                21        8437629                -1
373                21        8996496                -1
374                21        8996496                -1
375                21        9325013                 1
376                21        9325013                 1
377                21        9325013                 1
378                21        9325013                 1
379                21        9325013                 1
380                21        9325013                 1
381                21        9325013                 1
382                21        9325013                 1
383                21        9325013                 1
384                21        9325013                 1
385                21        9325013                 1
386                21        9325013                 1
387                21        9325013                 1
388                21        9325013                 1
389                21        9325013                 1
390                21        9325013                 1
391                21        9325013                 1
392                21        9325013                 1
393                21        9325013                 1
394                21        9325013                 1
395                21        9913117                 1
396                21        9913117                 1
397                21        9913117                 1
398                21        9913117                 1
399                21        9913117                 1
400                21       10122273                 1
401                21       10122273                 1
402                21       10328411                -1
403                21       10328411                -1
404                21       10328411                -1
405                21       10328411                -1
406                21       10328411                -1
407                21       10328411                -1
408                21       12999676                -1
409                21       12999676                -1
410                21       13305152                 1
411                21       13305152                 1
412                21       13769932                 1
413                21       13769932                 1
414                21       14746762                -1
415                21       14746762                -1
416                21       14746762                -1
417                21       14746762                -1
418                21       14746762                -1
419                21       14746762                -1
420                21       14761710                -1
421                21       14761710                -1
422                21       14819699                -1
423                21       14819699                -1
424                21       14819699                -1
425                21       14819699                -1
426                21       14819699                -1
427                21       14819699                -1
428                21       14819699                -1
429                21       14819699                -1
430                21       14819699                -1
431                21       14819699                -1
432                21       14819699                -1
433                21       14819699                -1
434                21       14819699                -1
435                21       14819699                -1
436                21       14819699                -1
437                21       14819699                -1
438                21       14819699                -1
439                21       14819699                -1
440                21       14819699                -1
441                21       14819699                -1
442                21       14819699                -1
443                21       14819699                -1
444                21       14819699                -1
445                21       14818843                -1
446                21       14818843                -1
447                21       14818843                -1
448                21       14818843                -1
449                21       15067070                 1
450                21       15067070                 1
451                21       15493932                -1
452                21       15493932                -1
453                21       15370500                -1
454                21       15370500                -1
455                21       15370500                -1
456                21       15370500                -1
457                21       15370500                -1
458                21       15370500                -1
459                21       15370500                -1
460                21       15370500                -1
461                21       15370500                -1
462                21       15370500                -1
463                21       15370500                -1
464                21       15370500                -1
465                21       15370500                -1
466                21       15370500                -1
467                21       15370500                -1
468                21       15370500                -1
469                21       15370500                -1
470                21       15370500                -1
471                21       15370500                -1
472                21       15370500                -1
473                21       15370500                -1
474                21       15370500                -1
475                21       15370500                -1
476                21       15370500                -1
477                21       15370500                -1
478                21       15370500                -1
479                21       15370500                -1
480                21       15370500                -1
481                21       15370500                -1
482                21       15370500                -1
483                21       15370500                -1
484                21       15370500                -1
485                21       15370500                -1
486                21       15370500                -1
487                21       15370500                -1
488                21       15370500                -1
489                21       15370500                -1
490                21       15370500                -1
491                21       15370500                -1
492                21       15370500                -1
493                21       15370500                -1
494                21       15370500                -1
495                21       15370500                -1
496                21       15370500                -1
497                21       15370500                -1
498                21       15370500                -1
499                21       15370500                -1
500                21       15370500                -1
501                21       15370500                -1
502                21       15370500                -1
503                21       15370500                -1
504                21       15370500                -1
505                21       15370500                -1
506                21       15370500                -1
507                21       15370500                -1
508                21       15370500                -1
509                21       15370500                -1
510                21       15370500                -1
511                21       15370500                -1
512                21       15370500                -1
513                21       15370500                -1
514                21       15370500                -1
515                21       15370500                -1
516                21       15370500                -1
517                21       15370500                -1
518                21       15370500                -1
519                21       15370500                -1
520                21       15370500                -1
521                21       15370500                -1
522                21       15370500                -1
523                21       15370500                -1
524                21       16291791                -1
525                21       16291791                -1
526                21       16291791                -1
527                21       16417139                -1
528                21       16417139                -1
529                21       16417139                -1
530                21       16574718                -1
531                21       16574718                -1
532                21       16630827                 1
533                21       16630827                 1
534                21       16630827                 1
535                21       16630827                 1
536                21       16643529                 1
537                21       16754519                -1
538                21       16754519                -1
539                21       16754519                -1
540                21       16862875                -1
541                21       16862875                -1
542                21       16862875                -1
543                21       16862875                -1
544                21       17659276                -1
545                21       17659276                -1
546                21       18022370                -1
547                21       18022370                -1
548                21       18022370                -1
549                21       18022370                -1
550                21       18022370                -1
551                21       18614431                 1
552                21       18614431                 1
553                21       18614431                 1
554                21       18917934                -1
555                21       18917934                -1
556                21       18953264                -1
557                21       18953264                -1
558                21       19046310                -1
559                21       19046310                -1
560                21       19130523                 1
561                21       19130523                 1
562                21       19301613                 1
563                21       19301613                 1
564                21       20256752                -1
565                21       20256752                -1
566                21       21566763                 1
567                21       21566763                 1
568                21       21655038                -1
569                21       21655038                -1
570                21       21655038                -1
571                21       21655038                -1
572                21       21655038                -1
573                21       21933315                -1
574                21       21933315                -1
575                21       21933315                -1
576                21       22209939                 1
577                21       22209939                 1
578                21       22209939                 1
579                21       22500604                -1
580                21       22500604                -1
581                21       22500604                -1
582                21       23065491                 1
583                21       23065491                 1
584                21       23065491                 1
585                21       23065491                 1
586                21       23065491                 1
587                21       23361104                -1
588                21       23361104                -1
589                21       23361104                -1
590                21       23361104                -1
591                21       23361104                -1
592                21       23477641                 1
593                21       23477641                 1
594                21       23888798                -1
595                21       23888798                -1
596                21       23888798                -1
597                21       23960905                -1
598                21       23960905                -1
599                21       24043257                 1
600                21       24043257                 1
601                21       24043257                 1
602                21       24043257                 1
603                21       24155170                -1
604                21       24155170                -1
605                21       24155170                -1
606                21       24886676                -1
607                21       24886676                -1
608                21       24938431                -1
609                21       24938431                -1
610                21       24938431                -1
611                21       24938431                -1
612                21       24938431                -1
613                21       24938431                -1
614                21       25055535                 1
615                21       25055535                 1
616                21       25055535                 1
617                21       25055535                 1
618                21       25095022                 1
619                21       25095022                 1
620                21       25095022                 1
621                21       25095022                 1
622                21       25095022                 1
623                21       25095022                 1
624                21       25127469                 1
625                21       25127469                 1
626                21       25127469                 1
627                21       25127469                 1
628                21       25169431                -1
629                21       25169431                -1
630                21       25169431                -1
631                21       25169431                -1
632                21       25515473                -1
633                21       25515473                -1
634                21       26170871                 1
635                21       26170871                 1
636                21       26170871                 1
637                21       26170871                 1
638                21       26170871                 1
639                21       26170871                 1
640                21       26170871                 1
641                21       26349780                -1
642                21       26349780                -1
643                21       26459903                -1
644                21       27361164                 1
645                21       27361164                 1
646                21       27361164                 1
647                21       27361164                 1
648                21       27361164                 1
649                21       27358885                -1
650                21       27358885                -1
651                21       27358885                -1
652                21       27358885                -1
653                21       27954922                 1
654                21       27954922                 1
655                21       27954922                 1
656                21       28439346                -1
657                21       28439346                -1
658                21       28439346                -1
659                21       28439346                -1
660                21       28439346                -1
661                21       28439346                -1
662                21       28439346                -1
663                21       28439346                -1
664                21       28439346                -1
665                21       28439346                -1
666                21       28439346                -1
667                21       28439346                -1
668                21       30089717                 1
669                21       30089717                 1
670                21       31653593                -1
671                21       31653593                -1
672                21       31653593                -1
673                21       31735732                 1
674                21       32259804                -1
675                21       32958888                 1
676                21       32958888                 1
677                21       33111699                -1
678                21       33111699                -1
679                21       33111699                -1
680                21       33967101                -1
681                21       33967101                -1
682                21       34205055                 1
683                21       34205055                 1
684                21       34205055                 1
685                21       34205055                 1
686                21       34205055                 1
687                21       34412200                 1
688                21       34425508                 1
689                21       35136638                 1
690                21       35136638                 1
691                21       35713139                -1
692                21       35713139                -1
693                21       36082859                 1
694                21       36082859                 1
695                21       36104881                 1
696                21       36104881                 1
697                21       36632681                -1
698                21       36632681                -1
699                21       36966492                 1
700                21       36966492                 1
701                21       36966492                 1
702                21       36966492                 1
703                21       36966492                 1
704                21       36966492                 1
705                21       36966492                 1
706                21       36966492                 1
707                21       37221419                 1
708                21       37221419                 1
709                21       38237217                -1
710                21       38237217                -1
711                21       38846247                 1
712                21       38846247                 1
713                21       38888772                 1
714                21       38888772                 1
715                21       38863676                -1
716                21       38863676                -1
717                21       38863676                -1
718                21       38863676                -1
719                21       38863676                -1
720                21       38863676                -1
721                21       38863676                -1
722                21       38863676                -1
723                21       38863676                -1
724                21       38863676                -1
725                21       38863676                -1
726                21       38863676                -1
727                21       38863676                -1
728                21       38863676                -1
729                21       38863676                -1
730                21       38863676                -1
731                21       38863676                -1
732                21       38863676                -1
733                21       38863676                -1
734                21       38863676                -1
735                21       38863676                -1
736                21       38863676                -1
737                21       38863676                -1
738                21       38863676                -1
739                21       38863676                -1
740                21       38863676                -1
741                21       38863676                -1
742                21       38988707                -1
743                21       38988707                -1
744                21       38988707                -1
745                21       39006648                -1
746                21       39006648                -1
747                21       39006648                -1
748                21       39028536                -1
749                21       39028536                -1
750                21       39727755                 1
751                21       39727755                 1
752                21       39727755                 1
753                21       39727755                 1
754                21       39727755                 1
755                21       41559125                -1
756                21       41559125                -1
757                21       41559125                -1
758                21       41576135                -1
759                21       41576135                -1
760                21       42781074                -1
761                21       42781074                -1
762                21       42831040                -1
763                21       42831040                -1
764                21       42831040                -1
765                21       43159066                -1
766                21       43159066                -1
767                21       43159066                -1
768                21       43363332                 1
769                21       43363332                 1
770                21       43465309                 1
771                21       43465309                 1
772                21       44175489                 1
773                21       44175489                 1
774                21       44206525                -1
775                21       44206525                -1
776                21       44241847                 1
777                21       44244545                 1
778                21       44347767                -1
779                21       44477850                 1
780                21       44485577                 1
781                21       44485577                 1
782                21       44494874                 1
783                21       44978832                 1
784                21       45100487                -1
785                21       45336707                 1
786                21       45336707                 1
787                21       45403809                -1
788                21       45974489                 1
789                21       46037052                 1
790                21       46037052                 1
791                21       46052596                 1
792                21       46052596                 1
793                21       46056516                 1
794                21       46056516                 1
795                21        5597390                 1
796                21        6223480                -1
797                21        6365955                 1
798                21        7092616                 1
799                21        7474394                 1
800                21        7663911                -1
801                21        8205851                 1
802                21        8250060                 1
803                21        8388898                 1
804                21        8433085                 1
805                21       14075950                -1
806                21       17527140                -1
807                21       17576798                 1
808                21       23432181                -1
809                21       29139283                -1
810                21       36986739                -1
811                21       39171462                -1
812                21       39344537                 1
813                21        6008604                 1
814                21        6507017                -1
815                21        6897291                 1
816                21        7129103                 1
817                21        7626344                -1
818                21        8680538                -1
819                21        8701461                 1
820                21        9026821                -1
821                21        9082601                -1
822                21        9088188                 1
823                21        9558970                 1
824                21        9580024                -1
825                21        9810381                -1
826                21        9810501                 1
827                21       13120244                 1
828                21       13654073                 1
829                21       13704853                 1
830                21       17296219                 1
831                21       19620695                 1
832                21       19739709                 1
833                21       20597953                 1
834                21       22134698                -1
835                21       22153950                -1
836                21       22882582                 1
837                21       22882582                 1
838                21       22882582                 1
839                21       25031005                -1
840                21       31452466                 1
841                21       32624416                -1
842                21       32624416                -1
843                21       32841496                -1
844                21       39525583                 1
845                21       39525583                 1
846                21       44686358                 1
847                21       10482738                 1
848                21       10482738                 1
849                21       10482738                 1
850                21       10482738                 1
851                21       10482738                 1
852                21       10482738                 1
853                21       10482738                 1
854                21       10482738                 1
855                21       10482738                 1
856                21       10482738                 1
857                21       10482738                 1
858                21       10482738                 1
859                21       10482738                 1
860                21       10482738                 1
861                21       10482738                 1
862                21       10482738                 1
863                21       10482738                 1
864                21       10482738                 1
865                21       10482738                 1
866                21       10482738                 1
867                21       10482738                 1
868                21       10482738                 1
869                21       10482738                 1
870                21       10482738                 1
871                21       10482738                 1
872                21       10482738                 1
873                21       10482738                 1
874                21       10482738                 1
875                21       10482738                 1
876                21       10482738                 1
877                21       10482738                 1
878                21       10482738                 1
879                21       17611744                 1
880                21       17611744                 1
881                21       17611744                 1
882                21       17611744                 1
883                21       25928754                 1
884                21       25928754                 1
885                21       25928754                 1
886                21       25928754                 1
887                21       25928754                 1
888                21       25928754                 1
889                21       25928754                 1
890                21       25928754                 1
891                21       25928754                 1
892                21       25928754                 1
893                21       25928754                 1
894                21       25928754                 1
895                21       25928754                 1
896                21       25928754                 1
897                21       25928754                 1
898                21       25928754                 1
899                21       34073592                 1
900                21       34073592                 1
901                21       34073592                 1
902                21       34073592                 1
903                21       34073592                 1
904                21       34073592                 1
905                21       45288052                 1
906                21       45288052                 1
907                21       45288052                 1
908                21       45288052                 1
909                21       45288052                 1
910                21       45288052                 1
911                21        5011799                 1
912                21        5011799                 1
913                21        5011799                 1
914                21        5011799                 1
915                21        5022493                 1
916                21        5022493                 1
917                21        5022493                 1
918                21        5022493                 1
919                21        5022493                 1
920                21        5022493                 1
921                21        5022493                 1
922                21        5022493                 1
923                21        5022493                 1
924                21        5022493                 1
925                21        5022493                 1
926                21        5022493                 1
927                21        5022493                 1
928                21        5022493                 1
929                21        5022493                 1
930                21        5022493                 1
931                21        5022493                 1
932                21        5022493                 1
933                21        5022493                 1
934                21        5022493                 1
935                21        5022493                 1
936                21        5022493                 1
937                21        5022493                 1
938                21        5022493                 1
939                21        5022493                 1
940                21        5022493                 1
941                21        5022493                 1
942                21        5022493                 1
943                21        5022493                 1
944                21        5022493                 1
945                21        5022493                 1
946                21        5022493                 1
947                21        5022493                 1
948                21        5079294                -1
949                21        5079294                -1
950                21        5079294                -1
951                21        5079294                -1
952                21        5079294                -1
953                21        5079294                -1
954                21        5079294                -1
955                21        5079294                -1
956                21        5079294                -1
957                21        5079294                -1
958                21        5079294                -1
959                21        5079294                -1
960                21        5079294                -1
961                21        5079294                -1
962                21        5079294                -1
963                21        5079294                -1
964                21        5079294                -1
965                21        5079294                -1
966                21        5079294                -1
967                21        5079294                -1
968                21        5079294                -1
969                21        5079294                -1
970                21        5079294                -1
971                21        5079294                -1
972                21        5079294                -1
973                21        5079294                -1
974                21        5079294                -1
975                21        5079294                -1
976                21        5079294                -1
977                21        5079294                -1
978                21        5079294                -1
979                21        5079294                -1
980                21        5079294                -1
981                21        5079294                -1
982                21        5079294                -1
983                21        5079294                -1
984                21        5079294                -1
985                21        5079294                -1
986                21        5079294                -1
987                21        5079294                -1
988                21        5079294                -1
989                21        5079294                -1
990                21        5079294                -1
991                21        5079294                -1
992                21        5079294                -1
993                21        5079294                -1
994                21        5079294                -1
995                21        5079294                -1
996                21        5079294                -1
997                21        5079294                -1
998                21        5079294                -1
999                21        5079294                -1
1000               21        5079294                -1
1001               21        5079294                -1
1002               21        5079294                -1
1003               21        5116343                -1
1004               21        5116343                -1
1005               21        5116343                -1
1006               21        5116343                -1
1007               21        5116343                -1
1008               21        5116343                -1
1009               21        5116343                -1
1010               21        5130871                -1
1011               21        5130871                -1
1012               21        5130871                -1
1013               21        5130871                -1
1014               21        5130871                -1
1015               21        5130871                -1
1016               21        5130871                -1
1017               21        5130871                -1
1018               21        5130871                -1
1019               21        5130871                -1
1020               21        5130871                -1
1021               21        5130871                -1
1022               21        5130871                -1
1023               21        5130871                -1
1024               21        5130871                -1
1025               21        5130871                -1
1026               21        5130871                -1
1027               21        5130871                -1
1028               21        5130871                -1
1029               21        5130871                -1
1030               21        5130871                -1
1031               21        5130871                -1
1032               21        5130871                -1
1033               21        5130871                -1
1034               21        5130871                -1
1035               21        5130871                -1
1036               21        5130871                -1
1037               21        5130871                -1
1038               21        5130871                -1
1039               21        5130871                -1
1040               21        5130871                -1
1041               21        5130871                -1
1042               21        5130871                -1
1043               21        5130871                -1
1044               21        5130871                -1
1045               21        5130871                -1
1046               21        5130871                -1
1047               21        5130871                -1
1048               21        5130871                -1
1049               21        5130871                -1
1050               21        5130871                -1
1051               21        5130871                -1
1052               21        5130871                -1
1053               21        5130871                -1
1054               21        5130871                -1
1055               21        5130871                -1
1056               21        5130871                -1
1057               21        5130871                -1
1058               21        5130871                -1
1059               21        5130871                -1
1060               21        5130871                -1
1061               21        5155499                -1
1062               21        5155499                -1
1063               21        5155499                -1
1064               21        5155499                -1
1065               21        5155499                -1
1066               21        5155499                -1
1067               21        5972924                -1
1068               21        6111134                 1
1069               21        6111134                 1
1070               21        6111134                 1
1071               21        6111134                 1
1072               21        6111134                 1
1073               21        6111134                 1
1074               21        6111134                 1
1075               21        6111134                 1
1076               21        6111134                 1
1077               21        6111134                 1
1078               21        6111134                 1
1079               21        6111134                 1
1080               21        6111134                 1
1081               21        6111134                 1
1082               21        6111134                 1
1083               21        6111134                 1
1084               21        6111134                 1
1085               21        6560714                 1
1086               21        6560714                 1
1087               21        6560714                 1
1088               21        6560714                 1
1089               21        6560714                 1
1090               21        6560714                 1
1091               21        6560714                 1
1092               21        6560714                 1
1093               21        6560714                 1
1094               21        6560714                 1
1095               21        6560714                 1
1096               21        7768884                -1
1097               21        7788703                -1
1098               21        7788703                -1
1099               21       14591930                -1
1100               21       14591930                -1
1101               21       14591930                -1
1102               21       14591930                -1
1103               21       14591930                -1
1104               21       14591930                -1
1105               21       14591930                -1
1106               21       14591930                -1
1107               21       14591930                -1
1108               21       14591930                -1
1109               21       14591930                -1
1110               21       14591930                -1
1111               21       14591930                -1
1112               21       14591930                -1
1113               21       14591930                -1
1114               21       14591930                -1
1115               21       14591930                -1
1116               21       14591930                -1
1117               21       14591930                -1
1118               21       32578822                -1
1119               21       32578822                -1
1120               21       32578822                -1
1121               21       32578822                -1
1122               21       32578822                -1
1123               21       32578822                -1
1124               21       32578822                -1
1125               21       32578822                -1
1126               21       32578822                -1
1127               21       32578822                -1
1128               21       32578822                -1
1129               21       32578822                -1
1130               21       32578822                -1
1131               21       32578822                -1
1132               21       32578822                -1
1133               21       33246774                 1
1134               21       33246774                 1
1135               21       33246774                 1
1136               21       33246774                 1
1137               21       33246774                 1
1138               21       33246774                 1
1139               21       33246774                 1
1140               21       33246774                 1
1141               21       33246774                 1
1142               21       33246774                 1
1143               21       33246774                 1
1144               21       33246774                 1
1145               21       33584687                -1
1146               21       33584687                -1
1147               21       33584687                -1
1148               21       33584687                -1
1149               21       33584687                -1
1150               21       33584687                -1
1151               21       33584687                -1
1152               21       33584687                -1
1153               21       34418715                -1
1154               21       34418715                -1
1155               21       43748365                -1
1156               21       43748365                -1
1157               21       29058073                -1
1158               21       29058073                -1
1159               21       29359002                 1
1160               21       36069642                -1
1161               21       36069642                -1
1162               21       36069642                -1
1163               21       36069642                -1
1164               21       36069642                -1
1165               21       36069642                -1
1166               21       37100814                 1
1167               21       41874756                -1
1168               21       41874756                -1
1169               21       41874756                -1
1170               21       42496539                 1
1171               21       42496539                 1
1172               21       42496539                 1
1173               21       42508624                 1
1174               21       42508624                 1
1175               21       42508624                 1
1176               21       42508624                 1
1177               21       44929653                -1
1178               21       45870854                 1
1179               21       18477358                -1
1180               21       18477358                -1
1181               21       36360630                 1
1182               21       36360630                 1
1183               21       39630271                 1
1184               21       39630271                 1
1185               21       39630271                 1
1186               21       44328944                -1
1187               21       44328944                -1
1188               21       44328944                -1
1189               21       44328944                -1
1190               21       44328944                -1
1191               21       45914296                 1
1192               21       45914296                 1
1193               21       45914296                 1
1194               21        7826098                -1
1195               21        9907916                 1
1196               21       16284696                -1
1197               21       29180425                -1
1198               21       31664306                 1
1199               21       32538299                 1
1200               21       32841861                -1
1201               21       34456110                -1
1202               21       38894785                 1
1203               21       40513144                 1
1204               21       41539206                 1
1205               21       41882205                 1
1206               21       44437121                 1
1207               21       44439035                 1
1208               21        9646825                 1
1209               21       28743208                 1
1210               21        5703182                -1
1211               21        6034690                 1
1212               21        6520344                -1
1213               21        7135334                -1
1214               21        8101251                -1
1215               21       10028361                -1
1216               21       13679300                -1
1217               21       15050189                 1
1218               21       15346652                 1
1219               21       16525919                 1
1220               21       17705408                 1
1221               21       18917213                 1
1222               21       25371827                 1
1223               21       32790673                -1
1224               21       36485867                 1
1225               21        9975017                -1
1226               21        9975017                -1
1227               21        9975017                -1
1228               21        9975017                -1
1229               21        9975017                -1
1230               21        9975017                -1
1231               21        9975017                -1
1232               21        9975017                -1
1233               21        9975017                -1
1234               21        9975017                -1
1235               21        9975017                -1
1236               21        9975017                -1
1237               21       38204141                -1
1238               21       38204141                -1
1239               21        6272135                -1
1240               21        6272135                -1
1241               21        6272135                -1
1242               21        6272135                -1
1243               21        6272135                -1
1244               21        6272135                -1
1245               21        6272135                -1
1246               21        6272135                -1
1247               21        6272135                -1
1248               21        6272135                -1
1249               21        6309161                 1
1250               21        6309161                 1
1251               21        6309161                 1
1252               21        6309161                 1
1253               21        6309161                 1
1254               21        6309161                 1
1255               21        6676178                -1
1256               21        6676178                -1
1257               21        6676178                -1
1258               21        6676178                -1
1259               21        6676178                -1
1260               21        6676178                -1
1261               21        6676178                -1
1262               21        6676178                -1
1263               21        6676178                -1
1264               21        6712596                 1
1265               21        6712596                 1
1266               21        6712596                 1
1267               21        6712596                 1
1268               21        6712596                 1
1269               21        6712596                 1
1270               21        6712596                 1
1271               21        6712596                 1
1272               21        7003248                -1
1273               21        7003248                -1
1274               21        7003248                -1
1275               21        7003248                -1
1276               21        7003248                -1
1277               21        7003248                -1
1278               21        7003248                -1
1279               21        7003248                -1
1280               21        7003248                -1
1281               21        7385058                -1
1282               21        7385058                -1
1283               21        7385058                -1
1284               21        7385058                -1
1285               21        7385058                -1
1286               21        7385058                -1
1287               21        7385058                -1
1288               21        7385058                -1
1289               21        7385058                -1
1290               21        7421442                -1
1291               21        7421442                -1
1292               21        7421442                -1
1293               21        7421442                -1
1294               21        7421442                -1
1295               21        7421442                -1
1296               21        7421442                -1
1297               21        7421442                -1
1298               21        7421442                -1
1299               21        7421442                -1
1300               21        8857260                 1
1301               21        8857260                 1
1302               21        8857260                 1
1303               21        8857260                 1
1304               21        8857260                 1
1305               21        8857260                 1
1306               21        8857260                 1
1307               21        8857260                 1
1308               21        8857260                 1
1309               21        9053122                 1
1310               21        9053122                 1
1311               21        9369285                -1
1312               21        9369285                -1
1313               21        9369285                -1
1314               21        9369285                -1
1315               21       10136419                 1
1316               21       10397644                 1
1317               21       10640028                -1
1318               21       30526546                -1
1319               21       30762682                -1
1320               21       43805758 HGNC:51526     -1
1321               21       43805758 HGNC:51526     -1
1322               21       43805758 HGNC:51526     -1
1323               21       43805758 HGNC:51526     -1
1324               21       43805758 HGNC:51526     -1
1325               21       43805758 HGNC:51526     -1
1326               21       43805758 HGNC:51526     -1
1327               21       43805758 HGNC:51526     -1
1328               21       14236206 HGNC:16022      1
1329               21       14236206 HGNC:16022      1
1330               21       14236206 HGNC:16022      1
1331               21       14236206 HGNC:16022      1
1332               21       14236206 HGNC:16022      1
1333               21       14236206 HGNC:16022      1
1334               21       14236206 HGNC:16022      1
1335               21       14236206 HGNC:16022      1
1336               21       14236206 HGNC:16022      1
1337               21       14236206 HGNC:16022      1
1338               21       14236206 HGNC:16022      1
1339               21       14236206 HGNC:16022      1
1340               21       14236206 HGNC:16022      1
1341               21       14236206 HGNC:16022      1
1342               21       14236206 HGNC:16022      1
1343               21       14236206 HGNC:16022      1
1344               21       14236206 HGNC:16022      1
1345               21       14236206 HGNC:16022      1
1346               21       14236206 HGNC:16022      1
1347               21       14236206 HGNC:16022      1
1348               21       14236206 HGNC:16022      1
1349               21       14236206 HGNC:16022      1
1350               21       14236206 HGNC:16022      1
1351               21       14236206 HGNC:16022      1
1352               21       14236206 HGNC:16022      1
1353               21       14236206 HGNC:16022      1
1354               21       14236206 HGNC:16022      1
1355               21       14236206 HGNC:16022      1
1356               21       14236206 HGNC:16022      1
1357               21       14236206 HGNC:16022      1
1358               21       14236206 HGNC:16022      1
1359               21       14236206 HGNC:16022      1
1360               21       14236206 HGNC:16022      1
1361               21       14236206 HGNC:16022      1
1362               21       14236206 HGNC:16022      1
1363               21       14236206 HGNC:16022      1
1364               21       14236206 HGNC:16022      1
1365               21       14236206 HGNC:16022      1
1366               21       14236206 HGNC:16022      1
1367               21       14236206 HGNC:16022      1
1368               21       14236206 HGNC:16022      1
1369               21       14236206 HGNC:16022      1
1370               21       14236206 HGNC:16022      1
1371               21       14236206 HGNC:16022      1
1372               21       14236206 HGNC:16022      1
1373               21       14236206 HGNC:16022      1
1374               21       14236206 HGNC:16022      1
1375               21       14236206 HGNC:16022      1
1376               21       14236206 HGNC:16022      1
1377               21       14236206 HGNC:16022      1
1378               21       14236206 HGNC:16022      1
1379               21       14236206 HGNC:16022      1
1380               21       14236206 HGNC:16022      1
1381               21       14236206 HGNC:16022      1
1382               21       14236206 HGNC:16022      1
1383               21       14236206 HGNC:16022      1
1384               21       14236206 HGNC:16022      1
1385               21       14236206 HGNC:16022      1
1386               21       14236206 HGNC:16022      1
1387               21       14236206 HGNC:16022      1
1388               21       14236206 HGNC:16022      1
1389               21       14236206 HGNC:16022      1
1390               21       14236206 HGNC:16022      1
1391               21       42199689    HGNC:73      1
1392               21       42199689    HGNC:73      1
1393               21       42199689    HGNC:73      1
1394               21       42199689    HGNC:73      1
1395               21       42199689    HGNC:73      1
1396               21       42199689    HGNC:73      1
1397               21       42199689    HGNC:73      1
1398               21       42199689    HGNC:73      1
1399               21       42199689    HGNC:73      1
1400               21       42199689    HGNC:73      1
1401               21       42199689    HGNC:73      1
1402               21       42199689    HGNC:73      1
1403               21       42199689    HGNC:73      1
1404               21       42199689    HGNC:73      1
1405               21       42199689    HGNC:73      1
1406               21       42199689    HGNC:73      1
1407               21       42199689    HGNC:73      1
1408               21       42199689    HGNC:73      1
1409               21       42199689    HGNC:73      1
1410               21       42199689    HGNC:73      1
1411               21       42199689    HGNC:73      1
1412               21       42199689    HGNC:73      1
1413               21       42199689    HGNC:73      1
1414               21       42199689    HGNC:73      1
1415               21       42199689    HGNC:73      1
1416               21       42199689    HGNC:73      1
1417               21       42199689    HGNC:73      1
1418               21       42199689    HGNC:73      1
1419               21       42199689    HGNC:73      1
1420               21       42199689    HGNC:73      1
1421               21       42199689    HGNC:73      1
1422               21       42199689    HGNC:73      1
1423               21       42199689    HGNC:73      1
1424               21       42199689    HGNC:73      1
1425               21       42199689    HGNC:73      1
1426               21       42199689    HGNC:73      1
1427               21       42199689    HGNC:73      1
1428               21       42199689    HGNC:73      1
1429               21       42199689    HGNC:73      1
1430               21       42199689    HGNC:73      1
1431               21       42199689    HGNC:73      1
1432               21       42199689    HGNC:73      1
1433               21       42199689    HGNC:73      1
1434               21       42199689    HGNC:73      1
1435               21       42199689    HGNC:73      1
1436               21       42199689    HGNC:73      1
1437               21       42199689    HGNC:73      1
1438               21       42199689    HGNC:73      1
1439               21       42199689    HGNC:73      1
1440               21       42199689    HGNC:73      1
1441               21       42199689    HGNC:73      1
1442               21       42199689    HGNC:73      1
1443               21       42199689    HGNC:73      1
1444               21       42199689    HGNC:73      1
1445               21       42199689    HGNC:73      1
1446               21       42199689    HGNC:73      1
1447               21       42199689    HGNC:73      1
1448               21       42199689    HGNC:73      1
1449               21       42199689    HGNC:73      1
1450               21       42199689    HGNC:73      1
1451               21       42199689    HGNC:73      1
1452               21       42199689    HGNC:73      1
1453               21       42199689    HGNC:73      1
1454               21       42199689    HGNC:73      1
1455               21       42199689    HGNC:73      1
1456               21       42199689    HGNC:73      1
1457               21       42199689    HGNC:73      1
1458               21       42199689    HGNC:73      1
1459               21       42199689    HGNC:73      1
1460               21       42199689    HGNC:73      1
1461               21       42199689    HGNC:73      1
1462               21       42199689    HGNC:73      1
1463               21       42199689    HGNC:73      1
1464               21       42199689    HGNC:73      1
1465               21       42199689    HGNC:73      1
1466               21       42199689    HGNC:73      1
1467               21       42199689    HGNC:73      1
1468               21       42199689    HGNC:73      1
1469               21       42199689    HGNC:73      1
1470               21       42199689    HGNC:73      1
1471               21       42199689    HGNC:73      1
1472               21       42199689    HGNC:73      1
1473               21       42199689    HGNC:73      1
1474               21       42199689    HGNC:73      1
1475               21       42199689    HGNC:73      1
1476               21       42199689    HGNC:73      1
1477               21       42199689    HGNC:73      1
1478               21       42199689    HGNC:73      1
1479               21       42199689    HGNC:73      1
1480               21       42199689    HGNC:73      1
1481               21       42199689    HGNC:73      1
1482               21       42199689    HGNC:73      1
1483               21       42199689    HGNC:73      1
1484               21       42199689    HGNC:73      1
1485               21       42199689    HGNC:73      1
1486               21       42199689    HGNC:73      1
1487               21       42199689    HGNC:73      1
1488               21       42199689    HGNC:73      1
1489               21       42199689    HGNC:73      1
1490               21       42199689    HGNC:73      1
1491               21       42199689    HGNC:73      1
1492               21       42199689    HGNC:73      1
1493               21       42199689    HGNC:73      1
1494               21       42199689    HGNC:73      1
1495               21       42199689    HGNC:73      1
1496               21       42199689    HGNC:73      1
1497               21       42199689    HGNC:73      1
1498               21       42199689    HGNC:73      1
1499               21       42199689    HGNC:73      1
1500               21       42199689    HGNC:73      1
1501               21       42199689    HGNC:73      1
1502               21       42199689    HGNC:73      1
1503               21       42199689    HGNC:73      1
1504               21       42199689    HGNC:73      1
1505               21       42199689    HGNC:73      1
1506               21       42199689    HGNC:73      1
1507               21       42199689    HGNC:73      1
1508               21       42199689    HGNC:73      1
1509               21       42199689    HGNC:73      1
1510               21       42199689    HGNC:73      1
1511               21       42199689    HGNC:73      1
1512               21       42199689    HGNC:73      1
1513               21       42199689    HGNC:73      1
1514               21       42199689    HGNC:73      1
1515               21       42199689    HGNC:73      1
1516               21       42199689    HGNC:73      1
1517               21       42199689    HGNC:73      1
1518               21       42199689    HGNC:73      1
1519               21       42199689    HGNC:73      1
1520               21       42199689    HGNC:73      1
1521               21       42199689    HGNC:73      1
1522               21       42199689    HGNC:73      1
1523               21       42199689    HGNC:73      1
1524               21       42199689    HGNC:73      1
1525               21       42199689    HGNC:73      1
1526               21       42199689    HGNC:73      1
1527               21       26835747   HGNC:217     -1
1528               21       26835747   HGNC:217     -1
1529               21       26835747   HGNC:217     -1
1530               21       26835747   HGNC:217     -1
1531               21       26835747   HGNC:217     -1
1532               21       26835747   HGNC:217     -1
1533               21       26835747   HGNC:217     -1
1534               21       26835747   HGNC:217     -1
1535               21       26835747   HGNC:217     -1
1536               21       26835747   HGNC:217     -1
1537               21       26835747   HGNC:217     -1
1538               21       26835747   HGNC:217     -1
1539               21       26835747   HGNC:217     -1
1540               21       26835747   HGNC:217     -1
1541               21       26835747   HGNC:217     -1
1542               21       26835747   HGNC:217     -1
1543               21       26835747   HGNC:217     -1
1544               21       26835747   HGNC:217     -1
1545               21       26835747   HGNC:217     -1
1546               21       26835747   HGNC:217     -1
1547               21       26835747   HGNC:217     -1
1548               21       26835747   HGNC:217     -1
1549               21       26835747   HGNC:217     -1
1550               21       26835747   HGNC:217     -1
1551               21       26835747   HGNC:217     -1
1552               21       26835747   HGNC:217     -1
1553               21       26835747   HGNC:217     -1
1554               21       26835747   HGNC:217     -1
1555               21       26917912   HGNC:221     -1
1556               21       26917912   HGNC:221     -1
1557               21       26917912   HGNC:221     -1
1558               21       26917912   HGNC:221     -1
1559               21       26917912   HGNC:221     -1
1560               21       26917912   HGNC:221     -1
1561               21       26917912   HGNC:221     -1
1562               21       26917912   HGNC:221     -1
1563               21       45073853   HGNC:226      1
1564               21       45073853   HGNC:226      1
1565               21       45073853   HGNC:226      1
1566               21       45073853   HGNC:226      1
1567               21       45073853   HGNC:226      1
1568               21       45073853   HGNC:226      1
1569               21       45073853   HGNC:226      1
1570               21       45073853   HGNC:226      1
1571               21       45073853   HGNC:226      1
1572               21       45073853   HGNC:226      1
1573               21       45073853   HGNC:226      1
1574               21       45073853   HGNC:226      1
1575               21       45073853   HGNC:226      1
1576               21       45073853   HGNC:226      1
1577               21       45073853   HGNC:226      1
1578               21       45073853   HGNC:226      1
1579               21       45073853   HGNC:226      1
1580               21       45073853   HGNC:226      1
1581               21       45073853   HGNC:226      1
1582               21       45073853   HGNC:226      1
1583               21       45073853   HGNC:226      1
1584               21       45073853   HGNC:226      1
1585               21       45073853   HGNC:226      1
1586               21       45073853   HGNC:226      1
1587               21       45073853   HGNC:226      1
1588               21       45073853   HGNC:226      1
1589               21       45073853   HGNC:226      1
1590               21       45073853   HGNC:226      1
1591               21       45073853   HGNC:226      1
1592               21       45073853   HGNC:226      1
1593               21       45073853   HGNC:226      1
1594               21       45073853   HGNC:226      1
1595               21       45073853   HGNC:226      1
1596               21       45073853   HGNC:226      1
1597               21       45073853   HGNC:226      1
1598               21       45073853   HGNC:226      1
1599               21       45073853   HGNC:226      1
1600               21       45073853   HGNC:226      1
1601               21       45073853   HGNC:226      1
1602               21       45073853   HGNC:226      1
1603               21       45073853   HGNC:226      1
1604               21       45073853   HGNC:226      1
1605               21       45073853   HGNC:226      1
1606               21       45073853   HGNC:226      1
1607               21       45073853   HGNC:226      1
1608               21       45073853   HGNC:226      1
1609               21       45073853   HGNC:226      1
1610               21       45073853   HGNC:226      1
1611               21       45073853   HGNC:226      1
1612               21       45073853   HGNC:226      1
1613               21       45073853   HGNC:226      1
1614               21       45073853   HGNC:226      1
1615               21       45073853   HGNC:226      1
1616               21       45073853   HGNC:226      1
1617               21       45073853   HGNC:226      1
1618               21       45073853   HGNC:226      1
1619               21       45073853   HGNC:226      1
1620               21       45073853   HGNC:226      1
1621               21       45073853   HGNC:226      1
1622               21       45073853   HGNC:226      1
1623               21       45073853   HGNC:226      1
1624               21       45073853   HGNC:226      1
1625               21       45073853   HGNC:226      1
1626               21       45073853   HGNC:226      1
1627               21       45073853   HGNC:226      1
1628               21       45073853   HGNC:226      1
1629               21       45073853   HGNC:226      1
1630               21       45073853   HGNC:226      1
1631               21       45073853   HGNC:226      1
1632               21       45073853   HGNC:226      1
1633               21       45073853   HGNC:226      1
1634               21       45073853   HGNC:226      1
1635               21       45073853   HGNC:226      1
1636               21       45073853   HGNC:226      1
1637               21       45073853   HGNC:226      1
1638               21       45073853   HGNC:226      1
1639               21       45073853   HGNC:226      1
1640               21       45073853   HGNC:226      1
1641               21       45073853   HGNC:226      1
1642               21       45073853   HGNC:226      1
1643               21       45073853   HGNC:226      1
1644               21       45073853   HGNC:226      1
1645               21       45073853   HGNC:226      1
1646               21       45073853   HGNC:226      1
1647               21       45073853   HGNC:226      1
1648               21       45073853   HGNC:226      1
1649               21       45073853   HGNC:226      1
1650               21       45073853   HGNC:226      1
1651               21       45073853   HGNC:226      1
1652               21       45073853   HGNC:226      1
1653               21       45073853   HGNC:226      1
1654               21       45073853   HGNC:226      1
1655               21       45073853   HGNC:226      1
1656               21       45073853   HGNC:226      1
1657               21       45073853   HGNC:226      1
1658               21       45073853   HGNC:226      1
1659               21       45073853   HGNC:226      1
1660               21       45073853   HGNC:226      1
1661               21       45073853   HGNC:226      1
1662               21       45073853   HGNC:226      1
1663               21       45073853   HGNC:226      1
1664               21       45073853   HGNC:226      1
1665               21       45073853   HGNC:226      1
1666               21       45073853   HGNC:226      1
1667               21       45073853   HGNC:226      1
1668               21       45073853   HGNC:226      1
1669               21       45073853   HGNC:226      1
1670               21       45073853   HGNC:226      1
1671               21       45073853   HGNC:226      1
1672               21       45073853   HGNC:226      1
1673               21       45073853   HGNC:226      1
1674               21       45073853   HGNC:226      1
1675               21       45073853   HGNC:226      1
1676               21       45073853   HGNC:226      1
1677               21       45073853   HGNC:226      1
1678               21       45073853   HGNC:226      1
1679               21       45073853   HGNC:226      1
1680               21       45073853   HGNC:226      1
1681               21       45073853   HGNC:226      1
1682               21       45073853   HGNC:226      1
1683               21       45073853   HGNC:226      1
1684               21       45073853   HGNC:226      1
1685               21       45073853   HGNC:226      1
1686               21       45073853   HGNC:226      1
1687               21       45073853   HGNC:226      1
1688               21       43865186   HGNC:326      1
1689               21       43865186   HGNC:326      1
1690               21       43865186   HGNC:326      1
1691               21       43865186   HGNC:326      1
1692               21       43865186   HGNC:326      1
1693               21       43865186   HGNC:326      1
1694               21       43865186   HGNC:326      1
1695               21       43865186   HGNC:326      1
1696               21       43865186   HGNC:326      1
1697               21       43865186   HGNC:326      1
1698               21       43865186   HGNC:326      1
1699               21       43865186   HGNC:326      1
1700               21       43865186   HGNC:326      1
1701               21       43865186   HGNC:326      1
1702               21       43865186   HGNC:326      1
1703               21       43865186   HGNC:326      1
1704               21       43865186   HGNC:326      1
1705               21       43865186   HGNC:326      1
1706               21       43865186   HGNC:326      1
1707               21       43865186   HGNC:326      1
1708               21       43865186   HGNC:326      1
1709               21       43865186   HGNC:326      1
1710               21       43865186   HGNC:326      1
1711               21       43865186   HGNC:326      1
1712               21       43865186   HGNC:326      1
1713               21       43865186   HGNC:326      1
1714               21       43865186   HGNC:326      1
1715               21       43865186   HGNC:326      1
1716               21       43865186   HGNC:326      1
1717               21       43865186   HGNC:326      1
1718               21       43865186   HGNC:326      1
1719               21       43865186   HGNC:326      1
1720               21       43865186   HGNC:326      1
1721               21       43865186   HGNC:326      1
1722               21       43865186   HGNC:326      1
1723               21       43865186   HGNC:326      1
1724               21       43865186   HGNC:326      1
1725               21       43865186   HGNC:326      1
1726               21       43865186   HGNC:326      1
1727               21       43865186   HGNC:326      1
1728               21       43865186   HGNC:326      1
1729               21       43865186   HGNC:326      1
1730               21       43865186   HGNC:326      1
1731               21       43865186   HGNC:326      1
1732               21       43865186   HGNC:326      1
1733               21       43865186   HGNC:326      1
1734               21       43865186   HGNC:326      1
1735               21       43865186   HGNC:326      1
1736               21       43865186   HGNC:326      1
1737               21       43865186   HGNC:326      1
1738               21       43865186   HGNC:326      1
1739               21       43865186   HGNC:326      1
1740               21       43865186   HGNC:326      1
1741               21       43865186   HGNC:326      1
1742               21       43865186   HGNC:326      1
1743               21       43865186   HGNC:326      1
1744               21       43865186   HGNC:326      1
1745               21       43865186   HGNC:326      1
1746               21       43865186   HGNC:326      1
1747               21       43865186   HGNC:326      1
1748               21       43865186   HGNC:326      1
1749               21       43865186   HGNC:326      1
1750               21       43865186   HGNC:326      1
1751               21       43865186   HGNC:326      1
1752               21       43865186   HGNC:326      1
1753               21       43865186   HGNC:326      1
1754               21       43865186   HGNC:326      1
1755               21       43865186   HGNC:326      1
1756               21       43865186   HGNC:326      1
1757               21       43865186   HGNC:326      1
1758               21       43865186   HGNC:326      1
1759               21       43865186   HGNC:326      1
1760               21       43865186   HGNC:326      1
1761               21       43865186   HGNC:326      1
1762               21       43865186   HGNC:326      1
1763               21       43865186   HGNC:326      1
1764               21       43865186   HGNC:326      1
1765               21       43865186   HGNC:326      1
1766               21       43865186   HGNC:326      1
1767               21       43865186   HGNC:326      1
1768               21       43865186   HGNC:326      1
1769               21       43865186   HGNC:326      1
1770               21       43865186   HGNC:326      1
1771               21       43865186   HGNC:326      1
1772               21       43865186   HGNC:326      1
1773               21       43865186   HGNC:326      1
1774               21       43865186   HGNC:326      1
1775               21       43865186   HGNC:326      1
1776               21       43865186   HGNC:326      1
1777               21       43865186   HGNC:326      1
1778               21       43865186   HGNC:326      1
1779               21       43865186   HGNC:326      1
1780               21       43865186   HGNC:326      1
1781               21       43865186   HGNC:326      1
1782               21       43865186   HGNC:326      1
1783               21       43865186   HGNC:326      1
1784               21       43865186   HGNC:326      1
1785               21       43865186   HGNC:326      1
1786               21       43865186   HGNC:326      1
1787               21       43865186   HGNC:326      1
1788               21       43865186   HGNC:326      1
1789               21       43865186   HGNC:326      1
1790               21       43865186   HGNC:326      1
1791               21       43865186   HGNC:326      1
1792               21       43865186   HGNC:326      1
1793               21       43865186   HGNC:326      1
1794               21       43865186   HGNC:326      1
1795               21       43865186   HGNC:326      1
1796               21       43865186   HGNC:326      1
1797               21       43865186   HGNC:326      1
1798               21       43865186   HGNC:326      1
1799               21       43865186   HGNC:326      1
1800               21       43865186   HGNC:326      1
1801               21       44285838   HGNC:360      1
1802               21       44285838   HGNC:360      1
1803               21       44285838   HGNC:360      1
1804               21       44285838   HGNC:360      1
1805               21       44285838   HGNC:360      1
1806               21       44285838   HGNC:360      1
1807               21       44285838   HGNC:360      1
1808               21       44285838   HGNC:360      1
1809               21       44285838   HGNC:360      1
1810               21       44285838   HGNC:360      1
1811               21       44285838   HGNC:360      1
1812               21       44285838   HGNC:360      1
1813               21       44285838   HGNC:360      1
1814               21       44285838   HGNC:360      1
1815               21       44285838   HGNC:360      1
1816               21       44285838   HGNC:360      1
1817               21       44285838   HGNC:360      1
1818               21       44285838   HGNC:360      1
1819               21       44285838   HGNC:360      1
1820               21       44285838   HGNC:360      1
1821               21       44285838   HGNC:360      1
1822               21       44285838   HGNC:360      1
1823               21       44285838   HGNC:360      1
1824               21       44285838   HGNC:360      1
1825               21       44285838   HGNC:360      1
1826               21       44285838   HGNC:360      1
1827               21       44285838   HGNC:360      1
1828               21       44285838   HGNC:360      1
1829               21       44285838   HGNC:360      1
1830               21       44285838   HGNC:360      1
1831               21       44285838   HGNC:360      1
1832               21       44285838   HGNC:360      1
1833               21       44285838   HGNC:360      1
1834               21       44285838   HGNC:360      1
1835               21       44285838   HGNC:360      1
1836               21       44285838   HGNC:360      1
1837               21       44285838   HGNC:360      1
1838               21       44285838   HGNC:360      1
1839               21       44285838   HGNC:360      1
1840               21       44285838   HGNC:360      1
1841               21       44285838   HGNC:360      1
1842               21       44285838   HGNC:360      1
1843               21       44285838   HGNC:360      1
1844               21       44285838   HGNC:360      1
1845               21       44285838   HGNC:360      1
1846               21       44285838   HGNC:360      1
1847               21       44285838   HGNC:360      1
1848               21       44285838   HGNC:360      1
1849               21       44285838   HGNC:360      1
1850               21       44285838   HGNC:360      1
1851               21       44285838   HGNC:360      1
1852               21       44285838   HGNC:360      1
1853               21       44285838   HGNC:360      1
1854               21       44285838   HGNC:360      1
1855               21       44285838   HGNC:360      1
1856               21       13909574 HGNC:42024     -1
1857               21       13909574 HGNC:42024     -1
1858               21       13909574 HGNC:42024     -1
1859               21       13909574 HGNC:42024     -1
1860               21       13909574 HGNC:42024     -1
1861               21       13909574 HGNC:42024     -1
1862               21       13909574 HGNC:42024     -1
1863               21       13909574 HGNC:42024     -1
1864               21       13909574 HGNC:42024     -1
1865               21       13909574 HGNC:42024     -1
1866               21       13909574 HGNC:42024     -1
1867               21       13909574 HGNC:42024     -1
1868               21       13909574 HGNC:42024     -1
1869               21       13909574 HGNC:42024     -1
1870               21       13909574 HGNC:42024     -1
1871               21       13909574 HGNC:42024     -1
1872               21       13909574 HGNC:42024     -1
1873               21       13909574 HGNC:42024     -1
1874               21       13909574 HGNC:42024     -1
1875               21       13909574 HGNC:42024     -1
1876               21       13909574 HGNC:42024     -1
1877               21       13909574 HGNC:42024     -1
1878               21       13909574 HGNC:42024     -1
1879               21       13909574 HGNC:42024     -1
1880               21       13909574 HGNC:42024     -1
1881               21       13909574 HGNC:42024     -1
1882               21       13909574 HGNC:42024     -1
1883               21       13909574 HGNC:42024     -1
1884               21       13909574 HGNC:42024     -1
1885               21       13909574 HGNC:42024     -1
1886               21       13909574 HGNC:42024     -1
1887               21       13909574 HGNC:42024     -1
1888               21       13909574 HGNC:42024     -1
1889               21       13909574 HGNC:42024     -1
1890               21       13909574 HGNC:42024     -1
1891               21       13909574 HGNC:42024     -1
1892               21       13909574 HGNC:42024     -1
1893               21       13909574 HGNC:42024     -1
1894               21       13909574 HGNC:42024     -1
1895               21       13909574 HGNC:42024     -1
1896               21       13909574 HGNC:42024     -1
1897               21       13909574 HGNC:42024     -1
1898               21       13909574 HGNC:42024     -1
1899               21       13909574 HGNC:42024     -1
1900               21       13909574 HGNC:42024     -1
1901               21       13909574 HGNC:42024     -1
1902               21       13909574 HGNC:42024     -1
1903               21       13909574 HGNC:42024     -1
1904               21       13909574 HGNC:42024     -1
1905               21       13909574 HGNC:42024     -1
1906               21       13909574 HGNC:42024     -1
1907               21       13909574 HGNC:42024     -1
1908               21       13909574 HGNC:42024     -1
1909               21       13909574 HGNC:42024     -1
1910               21       13909574 HGNC:42024     -1
1911               21       13909574 HGNC:42024     -1
1912               21       13909574 HGNC:42024     -1
1913               21       13909574 HGNC:42024     -1
1914               21       13909574 HGNC:42024     -1
1915               21       14064325 HGNC:23756      1
1916               21       14064325 HGNC:23756      1
1917               21       14064325 HGNC:23756      1
1918               21       13384249 HGNC:19722     -1
1919               21       13384249 HGNC:19722     -1
1920               21       13384249 HGNC:19722     -1
1921               21       13384249 HGNC:19722     -1
1922               21       13384249 HGNC:19722     -1
1923               21       13384249 HGNC:19722     -1
1924               21       13384249 HGNC:19722     -1
1925               21       13384249 HGNC:19722     -1
1926               21       13384249 HGNC:19722     -1
1927               21       13384249 HGNC:19722     -1
1928               21       13384249 HGNC:19722     -1
1929               21       13384249 HGNC:19722     -1
1930               21       13384249 HGNC:19722     -1
1931               21       13384249 HGNC:19722     -1
1932               21       13384249 HGNC:19722     -1
1933               21       13384249 HGNC:19722     -1
1934               21       13384249 HGNC:19722     -1
1935               21       13384249 HGNC:19722     -1
1936               21       13038160 HGNC:16620      1
1937               21       13038160 HGNC:16620      1
1938               21       13038160 HGNC:16620      1
1939               21       13038160 HGNC:16620      1
1940               21       13038160 HGNC:16620      1
1941               21       13038160 HGNC:16620      1
1942               21       13038160 HGNC:16620      1
1943               21       13038160 HGNC:16620      1
1944               21       13038160 HGNC:16620      1
1945               21       13038160 HGNC:16620      1
1946               21       13038160 HGNC:16620      1
1947               21       13038160 HGNC:16620      1
1948               21       13038160 HGNC:16620      1
1949               21       13038160 HGNC:16620      1
1950               21       13038160 HGNC:16620      1
1951               21       13038160 HGNC:16620      1
1952               21       13038160 HGNC:16620      1
1953               21       13038160 HGNC:16620      1
1954               21       13038160 HGNC:16620      1
1955               21       13038160 HGNC:16620      1
1956               21       13038160 HGNC:16620      1
1957               21       13038160 HGNC:16620      1
1958               21       25880550   HGNC:620     -1
1959               21       25880550   HGNC:620     -1
1960               21       25880550   HGNC:620     -1
1961               21       25880550   HGNC:620     -1
1962               21       25880550   HGNC:620     -1
1963               21       25880550   HGNC:620     -1
1964               21       25880550   HGNC:620     -1
1965               21       25880550   HGNC:620     -1
1966               21       25880550   HGNC:620     -1
1967               21       25880550   HGNC:620     -1
1968               21       25880550   HGNC:620     -1
1969               21       25880550   HGNC:620     -1
1970               21       25880550   HGNC:620     -1
1971               21       25880550   HGNC:620     -1
1972               21       25880550   HGNC:620     -1
1973               21       25880550   HGNC:620     -1
1974               21       25880550   HGNC:620     -1
1975               21       25880550   HGNC:620     -1
1976               21       25880550   HGNC:620     -1
1977               21       25880550   HGNC:620     -1
1978               21       25880550   HGNC:620     -1
1979               21       25880550   HGNC:620     -1
1980               21       25880550   HGNC:620     -1
1981               21       25880550   HGNC:620     -1
1982               21       25880550   HGNC:620     -1
1983               21       25880550   HGNC:620     -1
1984               21       25880550   HGNC:620     -1
1985               21       25880550   HGNC:620     -1
1986               21       25880550   HGNC:620     -1
1987               21       25880550   HGNC:620     -1
1988               21       25880550   HGNC:620     -1
1989               21       25880550   HGNC:620     -1
1990               21       25880550   HGNC:620     -1
1991               21       25880550   HGNC:620     -1
1992               21       25880550   HGNC:620     -1
1993               21       25880550   HGNC:620     -1
1994               21       25880550   HGNC:620     -1
1995               21       25880550   HGNC:620     -1
1996               21       25880550   HGNC:620     -1
1997               21       25880550   HGNC:620     -1
1998               21       25880550   HGNC:620     -1
1999               21       25880550   HGNC:620     -1
2000               21       25880550   HGNC:620     -1
2001               21       25880550   HGNC:620     -1
2002               21       25880550   HGNC:620     -1
2003               21       25880550   HGNC:620     -1
2004               21       25880550   HGNC:620     -1
2005               21       25880550   HGNC:620     -1
2006               21       25880550   HGNC:620     -1
2007               21       25880550   HGNC:620     -1
2008               21       25880550   HGNC:620     -1
2009               21       25880550   HGNC:620     -1
2010               21       25880550   HGNC:620     -1
2011               21       25880550   HGNC:620     -1
2012               21       25880550   HGNC:620     -1
2013               21       25880550   HGNC:620     -1
2014               21       25880550   HGNC:620     -1
2015               21       25880550   HGNC:620     -1
2016               21       25880550   HGNC:620     -1
2017               21       25880550   HGNC:620     -1
2018               21       25880550   HGNC:620     -1
2019               21       25880550   HGNC:620     -1
2020               21       25880550   HGNC:620     -1
2021               21       25880550   HGNC:620     -1
2022               21       25880550   HGNC:620     -1
2023               21       25880550   HGNC:620     -1
2024               21       25880550   HGNC:620     -1
2025               21       25880550   HGNC:620     -1
2026               21       25880550   HGNC:620     -1
2027               21       25880550   HGNC:620     -1
2028               21       25880550   HGNC:620     -1
2029               21       25880550   HGNC:620     -1
2030               21       25880550   HGNC:620     -1
2031               21       25880550   HGNC:620     -1
2032               21       25880550   HGNC:620     -1
2033               21       25880550   HGNC:620     -1
2034               21       25880550   HGNC:620     -1
2035               21       25880550   HGNC:620     -1
2036               21       25880550   HGNC:620     -1
2037               21       25880550   HGNC:620     -1
2038               21       25880550   HGNC:620     -1
2039               21       25880550   HGNC:620     -1
2040               21       25880550   HGNC:620     -1
2041               21       25880550   HGNC:620     -1
2042               21       25880550   HGNC:620     -1
2043               21       25880550   HGNC:620     -1
2044               21       25880550   HGNC:620     -1
2045               21       25880550   HGNC:620     -1
2046               21       25880550   HGNC:620     -1
2047               21       25880550   HGNC:620     -1
2048               21       25880550   HGNC:620     -1
2049               21       25880550   HGNC:620     -1
2050               21       25880550   HGNC:620     -1
2051               21       25880550   HGNC:620     -1
2052               21       25880550   HGNC:620     -1
2053               21       25880550   HGNC:620     -1
2054               21       25880550   HGNC:620     -1
2055               21       25880550   HGNC:620     -1
2056               21       25880550   HGNC:620     -1
2057               21       25880550   HGNC:620     -1
2058               21       25880550   HGNC:620     -1
2059               21       25880550   HGNC:620     -1
2060               21       25880550   HGNC:620     -1
2061               21       25880550   HGNC:620     -1
2062               21       25880550   HGNC:620     -1
2063               21       25880550   HGNC:620     -1
2064               21       25880550   HGNC:620     -1
2065               21       25880550   HGNC:620     -1
2066               21       25880550   HGNC:620     -1
2067               21       25880550   HGNC:620     -1
2068               21       25880550   HGNC:620     -1
2069               21       25880550   HGNC:620     -1
2070               21       25880550   HGNC:620     -1
2071               21       25880550   HGNC:620     -1
2072               21       25880550   HGNC:620     -1
2073               21       25880550   HGNC:620     -1
2074               21       25880550   HGNC:620     -1
2075               21       25880550   HGNC:620     -1
2076               21       25880550   HGNC:620     -1
2077               21       25880550   HGNC:620     -1
2078               21       25880550   HGNC:620     -1
2079               21       25880550   HGNC:620     -1
2080               21       25880550   HGNC:620     -1
2081               21       25880550   HGNC:620     -1
2082               21       25880550   HGNC:620     -1
2083               21       25880550   HGNC:620     -1
2084               21       25880550   HGNC:620     -1
2085               21       25880550   HGNC:620     -1
2086               21       25880550   HGNC:620     -1
2087               21       25880550   HGNC:620     -1
2088               21       25880550   HGNC:620     -1
2089               21       25880550   HGNC:620     -1
2090               21       25880550   HGNC:620     -1
2091               21       25880550   HGNC:620     -1
2092               21       25880550   HGNC:620     -1
2093               21       25880550   HGNC:620     -1
2094               21       25880550   HGNC:620     -1
2095               21       25880550   HGNC:620     -1
2096               21       25880550   HGNC:620     -1
2097               21       25880550   HGNC:620     -1
2098               21       25880550   HGNC:620     -1
2099               21       25880550   HGNC:620     -1
2100               21       25880550   HGNC:620     -1
2101               21       25880550   HGNC:620     -1
2102               21       25880550   HGNC:620     -1
2103               21       25880550   HGNC:620     -1
2104               21       25880550   HGNC:620     -1
2105               21       25880550   HGNC:620     -1
2106               21       25880550   HGNC:620     -1
2107               21       25880550   HGNC:620     -1
2108               21       25880550   HGNC:620     -1
2109               21       25880550   HGNC:620     -1
2110               21       25880550   HGNC:620     -1
2111               21       25880550   HGNC:620     -1
2112               21       25880550   HGNC:620     -1
2113               21       25880550   HGNC:620     -1
2114               21       25880550   HGNC:620     -1
2115               21       25880550   HGNC:620     -1
2116               21       25880550   HGNC:620     -1
2117               21       25880550   HGNC:620     -1
2118               21       25880550   HGNC:620     -1
2119               21       25880550   HGNC:620     -1
2120               21       25880550   HGNC:620     -1
2121               21       25880550   HGNC:620     -1
2122               21       25880550   HGNC:620     -1
2123               21       25880550   HGNC:620     -1
2124               21       25880550   HGNC:620     -1
2125               21       25880550   HGNC:620     -1
2126               21       25880550   HGNC:620     -1
2127               21       25880550   HGNC:620     -1
2128               21       25880550   HGNC:620     -1
2129               21       25880550   HGNC:620     -1
2130               21       25880550   HGNC:620     -1
2131               21       25880550   HGNC:620     -1
2132               21       25716503   HGNC:847     -1
2133               21       25716503   HGNC:847     -1
2134               21       25716503   HGNC:847     -1
2135               21       25716503   HGNC:847     -1
2136               21       25716503   HGNC:847     -1
2137               21       25716503   HGNC:847     -1
2138               21       25716503   HGNC:847     -1
2139               21       25716503   HGNC:847     -1
2140               21       25716503   HGNC:847     -1
2141               21       25716503   HGNC:847     -1
2142               21       25716503   HGNC:847     -1
2143               21       25716503   HGNC:847     -1
2144               21       25716503   HGNC:847     -1
2145               21       25716503   HGNC:847     -1
2146               21       25716503   HGNC:847     -1
2147               21       25716503   HGNC:847     -1
2148               21       25716503   HGNC:847     -1
2149               21       25716503   HGNC:847     -1
2150               21       25716503   HGNC:847     -1
2151               21       25716503   HGNC:847     -1
2152               21       25716503   HGNC:847     -1
2153               21       25716503   HGNC:847     -1
2154               21       25716503   HGNC:847     -1
2155               21       25716503   HGNC:847     -1
2156               21       25716503   HGNC:847     -1
2157               21       25716503   HGNC:847     -1
2158               21       25716503   HGNC:847     -1
2159               21       25716503   HGNC:847     -1
2160               21       25716503   HGNC:847     -1
2161               21       25716503   HGNC:847     -1
2162               21       25716503   HGNC:847     -1
2163               21       25716503   HGNC:847     -1
2164               21       25716503   HGNC:847     -1
2165               21       36388878   HGNC:849     -1
2166               21       33903453   HGNC:850     -1
2167               21       33903453   HGNC:850     -1
2168               21       33903453   HGNC:850     -1
2169               21       33903453   HGNC:850     -1
2170               21       33903453   HGNC:850     -1
2171               21       33903453   HGNC:850     -1
2172               21       33903453   HGNC:850     -1
2173               21       33903453   HGNC:850     -1
2174               21       33903453   HGNC:850     -1
2175               21       33903453   HGNC:850     -1
2176               21       33903453   HGNC:850     -1
2177               21       33903453   HGNC:850     -1
2178               21       33903453   HGNC:850     -1
2179               21       33903453   HGNC:850     -1
2180               21       33903453   HGNC:850     -1
2181               21       33903453   HGNC:850     -1
2182               21       33903453   HGNC:850     -1
2183               21       33903453   HGNC:850     -1
2184               21       33903453   HGNC:850     -1
2185               21       33903453   HGNC:850     -1
2186               21       33903453   HGNC:850     -1
2187               21       33903453   HGNC:850     -1
2188               21       33903453   HGNC:850     -1
2189               21       33903453   HGNC:850     -1
2190               21       33903453   HGNC:850     -1
2191               21       33903453   HGNC:850     -1
2192               21       33903453   HGNC:850     -1
2193               21       33903453   HGNC:850     -1
2194               21       33903453   HGNC:850     -1
2195               21       33903453   HGNC:850     -1
2196               21       33903453   HGNC:850     -1
2197               21       33903453   HGNC:850     -1
2198               21       33903453   HGNC:850     -1
2199               21       33903453   HGNC:850     -1
2200               21       33903453   HGNC:850     -1
2201               21       33903453   HGNC:850     -1
2202               21       33903453   HGNC:850     -1
2203               21       33903453   HGNC:850     -1
2204               21       33903453   HGNC:850     -1
2205               21       33903453   HGNC:850     -1
2206               21       33903453   HGNC:850     -1
2207               21       33903453   HGNC:850     -1
2208               21       33903453   HGNC:850     -1
2209               21       33903453   HGNC:850     -1
2210               21       33903453   HGNC:850     -1
2211               21       39556442   HGNC:920      1
2212               21       39556442   HGNC:920      1
2213               21       39556442   HGNC:920      1
2214               21       39556442   HGNC:920      1
2215               21       39556442   HGNC:920      1
2216               21       39556442   HGNC:920      1
2217               21       39556442   HGNC:920      1
2218               21       39556442   HGNC:920      1
2219               21       39556442   HGNC:920      1
2220               21       39556442   HGNC:920      1
2221               21       39556442   HGNC:920      1
2222               21       39556442   HGNC:920      1
2223               21       39556442   HGNC:920      1
2224               21       39556442   HGNC:920      1
2225               21       39556442   HGNC:920      1
2226               21       39556442   HGNC:920      1
2227               21       39556442   HGNC:920      1
2228               21       39556442   HGNC:920      1
2229               21       39597147 HGNC:16424     -1
2230               21       39597147 HGNC:16424     -1
2231               21       39597147 HGNC:16424     -1
2232               21       39597147 HGNC:16424     -1
2233               21       39597147 HGNC:16424     -1
2234               21       39597147 HGNC:16424     -1
2235               21       39597147 HGNC:16424     -1
2236               21       39597147 HGNC:16424     -1
2237               21       39597147 HGNC:16424     -1
2238               21       39597147 HGNC:16424     -1
2239               21       39597147 HGNC:16424     -1
2240               21       41167801   HGNC:934      1
2241               21       41167801   HGNC:934      1
2242               21       41167801   HGNC:934      1
2243               21       41167801   HGNC:934      1
2244               21       41167801   HGNC:934      1
2245               21       41167801   HGNC:934      1
2246               21       41167801   HGNC:934      1
2247               21       41167801   HGNC:934      1
2248               21       41167801   HGNC:934      1
2249               21       41167801   HGNC:934      1
2250               21       41167801   HGNC:934      1
2251               21       41167801   HGNC:934      1
2252               21       41167801   HGNC:934      1
2253               21       41167801   HGNC:934      1
2254               21       41167801   HGNC:934      1
2255               21       41167801   HGNC:934      1
2256               21       41167801   HGNC:934      1
2257               21       41167801   HGNC:934      1
2258               21       41167801   HGNC:934      1
2259               21       41167801   HGNC:934      1
2260               21       41167801   HGNC:934      1
2261               21       41167801   HGNC:934      1
2262               21       41167801   HGNC:934      1
2263               21       41167801   HGNC:934      1
2264               21       41167801   HGNC:934      1
2265               21       41167801   HGNC:934      1
2266               21       41167801   HGNC:934      1
2267               21       41167801   HGNC:934      1
2268               21       41167801   HGNC:934      1
2269               21       41167801   HGNC:934      1
2270               21       41167801   HGNC:934      1
2271               21       41167801   HGNC:934      1
2272               21       41167801   HGNC:934      1
2273               21       41167801   HGNC:934      1
2274               21       41167801   HGNC:934      1
2275               21       41167801   HGNC:934      1
2276               21       41167801   HGNC:934      1
2277               21       41167801   HGNC:934      1
2278               21       41167801   HGNC:934      1
2279               21       41167801   HGNC:934      1
2280               21       41167801   HGNC:934      1
2281               21       41167801   HGNC:934      1
2282               21       41167801   HGNC:934      1
2283               21       41167801   HGNC:934      1
2284               21       41167801   HGNC:934      1
2285               21       41167801   HGNC:934      1
2286               21       41167801   HGNC:934      1
2287               21       41167801   HGNC:934      1
2288               21       41167801   HGNC:934      1
2289               21       41167801   HGNC:934      1
2290               21       41167801   HGNC:934      1
2291               21       41167801   HGNC:934      1
2292               21       41167801   HGNC:934      1
2293               21       41167801   HGNC:934      1
2294               21       41167801   HGNC:934      1
2295               21       41167801   HGNC:934      1
2296               21       41167801   HGNC:934      1
2297               21       41167801   HGNC:934      1
2298               21       41167801   HGNC:934      1
2299               21       41167801   HGNC:934      1
2300               21       41167801   HGNC:934      1
2301               21       41167801   HGNC:934      1
2302               21       41167801   HGNC:934      1
2303               21       41167801   HGNC:934      1
2304               21       41167801   HGNC:934      1
2305               21       41180097 HGNC:16024      1
2306               21       41180097 HGNC:16024      1
2307               21       29194071   HGNC:935      1
2308               21       29194071   HGNC:935      1
2309               21       29194071   HGNC:935      1
2310               21       29194071   HGNC:935      1
2311               21       29194071   HGNC:935      1
2312               21       29194071   HGNC:935      1
2313               21       29194071   HGNC:935      1
2314               21       29194071   HGNC:935      1
2315               21       29194071   HGNC:935      1
2316               21       29194071   HGNC:935      1
2317               21       29194071   HGNC:935      1
2318               21       29194071   HGNC:935      1
2319               21       29194071   HGNC:935      1
2320               21       29194071   HGNC:935      1
2321               21       29194071   HGNC:935      1
2322               21       29194071   HGNC:935      1
2323               21       29194071   HGNC:935      1
2324               21       29194071   HGNC:935      1
2325               21       29194071   HGNC:935      1
2326               21       29194071   HGNC:935      1
2327               21       29194071   HGNC:935      1
2328               21       29194071   HGNC:935      1
2329               21       29194071   HGNC:935      1
2330               21       29194071   HGNC:935      1
2331               21       29194071   HGNC:935      1
2332               21       29194071   HGNC:935      1
2333               21       29194071   HGNC:935      1
2334               21       29194071   HGNC:935      1
2335               21       29194071   HGNC:935      1
2336               21       29194071   HGNC:935      1
2337               21       29194071   HGNC:935      1
2338               21       29194071   HGNC:935      1
2339               21       29194071   HGNC:935      1
2340               21       29194071   HGNC:935      1
2341               21       29194071   HGNC:935      1
2342               21       29194071   HGNC:935      1
2343               21       29194071   HGNC:935      1
2344               21       29194071   HGNC:935      1
2345               21       29194071   HGNC:935      1
2346               21       29194071   HGNC:935      1
2347               21       29194071   HGNC:935      1
2348               21       29194071   HGNC:935      1
2349               21       29194071   HGNC:935      1
2350               21       29194071   HGNC:935      1
2351               21       29194071   HGNC:935      1
2352               21       29370019 HGNC:40008     -1
2353               21       29370019 HGNC:40008     -1
2354               21       29370019 HGNC:40008     -1
2355               21       29370019 HGNC:40008     -1
2356               21       29351634 HGNC:40006      1
2357               21       29351634 HGNC:40006      1
2358               21       29351634 HGNC:40006      1
2359               21       29351634 HGNC:40006      1
2360               21       29370497 HGNC:40007      1
2361               21       29370497 HGNC:40007      1
2362               21       29370497 HGNC:40007      1
2363               21       29370497 HGNC:40007      1
2364               21       29370497 HGNC:40007      1
2365               21       29370497 HGNC:40007      1
2366               21       29370497 HGNC:40007      1
2367               21       29370497 HGNC:40007      1
2368               21       29496047 HGNC:16455      1
2369               21       29496047 HGNC:16455      1
2370               21       10413477 HGNC:15723      1
2371               21       10413477 HGNC:15723      1
2372               21       10413477 HGNC:15723      1
2373               21       10413477 HGNC:15723      1
2374               21       10413477 HGNC:15723      1
2375               21       10413477 HGNC:15723      1
2376               21       10413477 HGNC:15723      1
2377               21       10413477 HGNC:15723      1
2378               21       10413477 HGNC:15723      1
2379               21       10413477 HGNC:15723      1
2380               21       10413477 HGNC:15723      1
2381               21       10413477 HGNC:15723      1
2382               21       10413477 HGNC:15723      1
2383               21       10413477 HGNC:15723      1
2384               21       10413477 HGNC:15723      1
2385               21       10413477 HGNC:15723      1
2386               21       10413477 HGNC:15723      1
2387               21       10413477 HGNC:15723      1
2388               21       10413477 HGNC:15723      1
2389               21       10413477 HGNC:15723      1
2390               21       10413477 HGNC:15723      1
2391               21       10413477 HGNC:15723      1
2392               21       10413477 HGNC:15723      1
2393               21       10413477 HGNC:15723      1
2394               21       10413477 HGNC:15723      1
2395               21       10413477 HGNC:15723      1
2396               21       10413477 HGNC:15723      1
2397               21       10413477 HGNC:15723      1
2398               21       39184176 HGNC:12760     -1
2399               21       39184176 HGNC:12760     -1
2400               21       39184176 HGNC:12760     -1
2401               21       39184176 HGNC:12760     -1
2402               21       39184176 HGNC:12760     -1
2403               21       39184176 HGNC:12760     -1
2404               21       39184176 HGNC:12760     -1
2405               21       39184176 HGNC:12760     -1
2406               21       39184176 HGNC:12760     -1
2407               21       39184176 HGNC:12760     -1
2408               21       39184176 HGNC:12760     -1
2409               21       39184176 HGNC:12760     -1
2410               21       39184176 HGNC:12760     -1
2411               21       39184176 HGNC:12760     -1
2412               21       39184176 HGNC:12760     -1
2413               21       39184176 HGNC:12760     -1
2414               21       39184176 HGNC:12760     -1
2415               21       39184176 HGNC:12760     -1
2416               21       39184176 HGNC:12760     -1
2417               21       39184176 HGNC:12760     -1
2418               21       39184176 HGNC:12760     -1
2419               21       39184176 HGNC:12760     -1
2420               21       39184176 HGNC:12760     -1
2421               21       39184176 HGNC:12760     -1
2422               21       39184176 HGNC:12760     -1
2423               21       39184176 HGNC:12760     -1
2424               21       39184176 HGNC:12760     -1
2425               21       39184176 HGNC:12760     -1
2426               21       39184176 HGNC:12760     -1
2427               21       39184176 HGNC:12760     -1
2428               21       39184176 HGNC:12760     -1
2429               21       39184176 HGNC:12760     -1
2430               21       39184176 HGNC:12760     -1
2431               21       39184176 HGNC:12760     -1
2432               21       39184176 HGNC:12760     -1
2433               21       39184176 HGNC:12760     -1
2434               21       39184176 HGNC:12760     -1
2435               21       39184176 HGNC:12760     -1
2436               21       39184176 HGNC:12760     -1
2437               21       39184176 HGNC:12760     -1
2438               21       39184176 HGNC:12760     -1
2439               21       39184176 HGNC:12760     -1
2440               21       39184176 HGNC:12760     -1
2441               21       39184176 HGNC:12760     -1
2442               21       39184176 HGNC:12760     -1
2443               21       39184176 HGNC:12760     -1
2444               21       39184176 HGNC:12760     -1
2445               21       39184176 HGNC:12760     -1
2446               21       39184176 HGNC:12760     -1
2447               21       39184176 HGNC:12760     -1
2448               21       39184176 HGNC:12760     -1
2449               21       39184176 HGNC:12760     -1
2450               21       39184176 HGNC:12760     -1
2451               21       39184176 HGNC:12760     -1
2452               21       39184176 HGNC:12760     -1
2453               21       39184176 HGNC:12760     -1
2454               21       39184176 HGNC:12760     -1
2455               21       39184176 HGNC:12760     -1
2456               21       39184176 HGNC:12760     -1
2457               21       39184176 HGNC:12760     -1
2458               21       39184176 HGNC:12760     -1
2459               21       39184176 HGNC:12760     -1
2460               21       39184176 HGNC:12760     -1
2461               21       39184176 HGNC:12760     -1
2462               21       39184176 HGNC:12760     -1
2463               21       39184176 HGNC:12760     -1
2464               21       39184176 HGNC:12760     -1
2465               21       39184176 HGNC:12760     -1
2466               21       39184176 HGNC:12760     -1
2467               21       39184176 HGNC:12760     -1
2468               21       39184176 HGNC:12760     -1
2469               21       39184176 HGNC:12760     -1
2470               21       39184176 HGNC:12760     -1
2471               21       39184176 HGNC:12760     -1
2472               21       39184176 HGNC:12760     -1
2473               21       39184176 HGNC:12760     -1
2474               21       39184176 HGNC:12760     -1
2475               21       39184176 HGNC:12760     -1
2476               21       39184176 HGNC:12760     -1
2477               21       39184176 HGNC:12760     -1
2478               21       39184176 HGNC:12760     -1
2479               21       39184176 HGNC:12760     -1
2480               21       39184176 HGNC:12760     -1
2481               21       39184176 HGNC:12760     -1
2482               21       39184176 HGNC:12760     -1
2483               21       39184176 HGNC:12760     -1
2484               21       39184176 HGNC:12760     -1
2485               21       39184176 HGNC:12760     -1
2486               21       39184176 HGNC:12760     -1
2487               21       39184176 HGNC:12760     -1
2488               21       39184176 HGNC:12760     -1
2489               21       39184176 HGNC:12760     -1
2490               21       39184176 HGNC:12760     -1
2491               21       39184176 HGNC:12760     -1
2492               21       39184176 HGNC:12760     -1
2493               21       39184176 HGNC:12760     -1
2494               21       39184176 HGNC:12760     -1
2495               21       39184176 HGNC:12760     -1
2496               21       39184176 HGNC:12760     -1
2497               21       39184176 HGNC:12760     -1
2498               21       39184176 HGNC:12760     -1
2499               21       39184176 HGNC:12760     -1
2500               21       39184176 HGNC:12760     -1
2501               21       39184176 HGNC:12760     -1
2502               21       39184176 HGNC:12760     -1
2503               21       39184176 HGNC:12760     -1
2504               21       39184176 HGNC:12760     -1
2505               21       39184176 HGNC:12760     -1
2506               21       39184176 HGNC:12760     -1
2507               21       39184176 HGNC:12760     -1
2508               21       39184176 HGNC:12760     -1
2509               21       39184176 HGNC:12760     -1
2510               21       39184176 HGNC:12760     -1
2511               21       39184176 HGNC:12760     -1
2512               21       39184176 HGNC:12760     -1
2513               21       39184176 HGNC:12760     -1
2514               21       39184176 HGNC:12760     -1
2515               21       39184176 HGNC:12760     -1
2516               21       39184176 HGNC:12760     -1
2517               21       39184176 HGNC:12760     -1
2518               21       39184176 HGNC:12760     -1
2519               21       39184176 HGNC:12760     -1
2520               21       39184176 HGNC:12760     -1
2521               21       39184176 HGNC:12760     -1
2522               21       39184176 HGNC:12760     -1
2523               21       39184176 HGNC:12760     -1
2524               21       39184176 HGNC:12760     -1
2525               21       39184176 HGNC:12760     -1
2526               21       39184176 HGNC:12760     -1
2527               21       39184176 HGNC:12760     -1
2528               21       39184176 HGNC:12760     -1
2529               21       39184176 HGNC:12760     -1
2530               21       39184176 HGNC:12760     -1
2531               21       39184176 HGNC:12760     -1
2532               21       39184176 HGNC:12760     -1
2533               21       39184176 HGNC:12760     -1
2534               21       39184176 HGNC:12760     -1
2535               21       39184176 HGNC:12760     -1
2536               21       39184176 HGNC:12760     -1
2537               21       39184176 HGNC:12760     -1
2538               21       39184176 HGNC:12760     -1
2539               21       39184176 HGNC:12760     -1
2540               21       39184176 HGNC:12760     -1
2541               21       39184176 HGNC:12760     -1
2542               21       39184176 HGNC:12760     -1
2543               21       39184176 HGNC:12760     -1
2544               21       39184176 HGNC:12760     -1
2545               21       39184176 HGNC:12760     -1
2546               21       39184176 HGNC:12760     -1
2547               21       39184176 HGNC:12760     -1
2548               21       39184176 HGNC:12760     -1
2549               21       39184176 HGNC:12760     -1
2550               21       39184176 HGNC:12760     -1
2551               21       39184176 HGNC:12760     -1
2552               21       39184176 HGNC:12760     -1
2553               21       39184176 HGNC:12760     -1
2554               21       39184176 HGNC:12760     -1
2555               21       39184176 HGNC:12760     -1
2556               21       39184176 HGNC:12760     -1
2557               21       39184176 HGNC:12760     -1
2558               21       39184176 HGNC:12760     -1
2559               21       39184176 HGNC:12760     -1
2560               21       39184176 HGNC:12760     -1
2561               21       39184176 HGNC:12760     -1
2562               21       39184176 HGNC:12760     -1
2563               21       39184176 HGNC:12760     -1
2564               21       39184176 HGNC:12760     -1
2565               21       39184176 HGNC:12760     -1
2566               21       39184176 HGNC:12760     -1
2567               21       39184176 HGNC:12760     -1
2568               21       39184176 HGNC:12760     -1
2569               21       39184176 HGNC:12760     -1
2570               21       39184176 HGNC:12760     -1
2571               21       39184176 HGNC:12760     -1
2572               21       39184176 HGNC:12760     -1
2573               21       39184176 HGNC:12760     -1
2574               21       39184176 HGNC:12760     -1
2575               21       39184176 HGNC:12760     -1
2576               21       39184176 HGNC:12760     -1
2577               21       39184176 HGNC:12760     -1
2578               21       39184176 HGNC:12760     -1
2579               21       39184176 HGNC:12760     -1
2580               21       39184176 HGNC:12760     -1
2581               21       39184176 HGNC:12760     -1
2582               21       39184176 HGNC:12760     -1
2583               21       39184176 HGNC:12760     -1
2584               21       39184176 HGNC:12760     -1
2585               21       39184176 HGNC:12760     -1
2586               21       39184176 HGNC:12760     -1
2587               21       39184176 HGNC:12760     -1
2588               21       39184176 HGNC:12760     -1
2589               21       39184176 HGNC:12760     -1
2590               21       39184176 HGNC:12760     -1
2591               21       39184176 HGNC:12760     -1
2592               21       39184176 HGNC:12760     -1
2593               21       39184176 HGNC:12760     -1
2594               21       39184176 HGNC:12760     -1
2595               21       39184176 HGNC:12760     -1
2596               21       39184176 HGNC:12760     -1
2597               21       39184176 HGNC:12760     -1
2598               21       39184176 HGNC:12760     -1
2599               21       39184176 HGNC:12760     -1
2600               21       39184176 HGNC:12760     -1
2601               21       39184176 HGNC:12760     -1
2602               21       39184176 HGNC:12760     -1
2603               21       39184176 HGNC:12760     -1
2604               21       39184176 HGNC:12760     -1
2605               21       39184176 HGNC:12760     -1
2606               21       39184176 HGNC:12760     -1
2607               21       39184176 HGNC:12760     -1
2608               21       39184176 HGNC:12760     -1
2609               21       39184176 HGNC:12760     -1
2610               21       39184176 HGNC:12760     -1
2611               21       39184176 HGNC:12760     -1
2612               21       39184176 HGNC:12760     -1
2613               21       39184176 HGNC:12760     -1
2614               21       39184176 HGNC:12760     -1
2615               21       39184176 HGNC:12760     -1
2616               21       39184176 HGNC:12760     -1
2617               21       39184176 HGNC:12760     -1
2618               21       39184176 HGNC:12760     -1
2619               21       39184176 HGNC:12760     -1
2620               21       39184176 HGNC:12760     -1
2621               21       39184176 HGNC:12760     -1
2622               21       39184176 HGNC:12760     -1
2623               21       39184176 HGNC:12760     -1
2624               21       39184176 HGNC:12760     -1
2625               21       39184176 HGNC:12760     -1
2626               21       39184176 HGNC:12760     -1
2627               21       39184176 HGNC:12760     -1
2628               21       39184176 HGNC:12760     -1
2629               21       39184176 HGNC:12760     -1
2630               21       39184176 HGNC:12760     -1
2631               21       39184176 HGNC:12760     -1
2632               21       39184176 HGNC:12760     -1
2633               21       39184176 HGNC:12760     -1
2634               21       39184176 HGNC:12760     -1
2635               21       39184176 HGNC:12760     -1
2636               21       39184176 HGNC:12760     -1
2637               21       39184176 HGNC:12760     -1
2638               21       39184176 HGNC:12760     -1
2639               21       39184176 HGNC:12760     -1
2640               21       39184176 HGNC:12760     -1
2641               21       39184176 HGNC:12760     -1
2642               21       39184176 HGNC:12760     -1
2643               21       39184176 HGNC:12760     -1
2644               21       39184176 HGNC:12760     -1
2645               21       39184176 HGNC:12760     -1
2646               21       39184176 HGNC:12760     -1
2647               21       39184176 HGNC:12760     -1
2648               21       39184176 HGNC:12760     -1
2649               21       39184176 HGNC:12760     -1
2650               21       39184176 HGNC:12760     -1
2651               21       39184176 HGNC:12760     -1
2652               21       39184176 HGNC:12760     -1
2653               21       39184176 HGNC:12760     -1
2654               21       39184176 HGNC:12760     -1
2655               21       39184176 HGNC:12760     -1
2656               21       39184176 HGNC:12760     -1
2657               21       39184176 HGNC:12760     -1
2658               21       39315707 HGNC:40614      1
2659               21       39315707 HGNC:40614      1
2660               21       39315707 HGNC:40614      1
2661               21       39313935 HGNC:16423      1
2662               21       39217093 HGNC:41920     -1
2663               21       39217093 HGNC:41920     -1
2664               21       17518526 HGNC:39645     -1
2665               21       33518610 HGNC:23765     -1
2666               21       17593653  HGNC:1132     -1
2667               21       17593653  HGNC:1132     -1
2668               21       17593653  HGNC:1132     -1
2669               21       17593653  HGNC:1132     -1
2670               21       17593653  HGNC:1132     -1
2671               21       17593653  HGNC:1132     -1
2672               21       17593653  HGNC:1132     -1
2673               21       17593653  HGNC:1132     -1
2674               21       17593653  HGNC:1132     -1
2675               21       17593653  HGNC:1132     -1
2676               21       17593653  HGNC:1132     -1
2677               21       17593653  HGNC:1132     -1
2678               21       17593653  HGNC:1132     -1
2679               21       17593653  HGNC:1132     -1
2680               21       17593653  HGNC:1132     -1
2681               21       17593653  HGNC:1132     -1
2682               21       17593653  HGNC:1132     -1
2683               21       17593653  HGNC:1132     -1
2684               21       17593653  HGNC:1132     -1
2685               21       17593653  HGNC:1132     -1
2686               21       19759359  HGNC:1244     -1
2687               21       34400317 HGNC:39602     -1
2688               21       44328944  HGNC:1260     -1
2689               21       44328944  HGNC:1260     -1
2690               21       44328944  HGNC:1260     -1
2691               21       44328944  HGNC:1260     -1
2692               21       44328944  HGNC:1260     -1
2693               21       44328944  HGNC:1260     -1
2694               21       44328944  HGNC:1260     -1
2695               21       44328944  HGNC:1260     -1
2696               21       44328944  HGNC:1260     -1
2697               21       44328944  HGNC:1260     -1
2698               21       44328944  HGNC:1260     -1
2699               21       44328944  HGNC:1260     -1
2700               21       44328944  HGNC:1260     -1
2701               21       44328944  HGNC:1260     -1
2702               21       44328944  HGNC:1260     -1
2703               21       44328944  HGNC:1260     -1
2704               21       44328944  HGNC:1260     -1
2705               21       44328944  HGNC:1260     -1
2706               21       44328944  HGNC:1260     -1
2707               21       44328944  HGNC:1260     -1
2708               21       44328944  HGNC:1260     -1
2709               21       44328944  HGNC:1260     -1
2710               21       44328944  HGNC:1260     -1
2711               21       44328944  HGNC:1260     -1
2712               21       44328944  HGNC:1260     -1
2713               21       44328944  HGNC:1260     -1
2714               21       44328944  HGNC:1260     -1
2715               21       44328944  HGNC:1260     -1
2716               21       44328944  HGNC:1260     -1
2717               21       44328944  HGNC:1260     -1
2718               21       44328944  HGNC:1260     -1
2719               21       44328944  HGNC:1260     -1
2720               21       44328944  HGNC:1260     -1
2721               21       44328944  HGNC:1260     -1
2722               21       44328944  HGNC:1260     -1
2723               21       44328944  HGNC:1260     -1
2724               21       44328944  HGNC:1260     -1
2725               21       44328944  HGNC:1260     -1
2726               21       44328944  HGNC:1260     -1
2727               21       44328944  HGNC:1260     -1
2728               21       44133605  HGNC:1273      1
2729               21       44133605  HGNC:1273      1
2730               21       44133605  HGNC:1273      1
2731               21       44133605  HGNC:1273      1
2732               21       44133605  HGNC:1273      1
2733               21       44133605  HGNC:1273      1
2734               21       44133605  HGNC:1273      1
2735               21       44133605  HGNC:1273      1
2736               21       44133605  HGNC:1273      1
2737               21       44133605  HGNC:1273      1
2738               21       44133605  HGNC:1273      1
2739               21       44133605  HGNC:1273      1
2740               21       44133605  HGNC:1273      1
2741               21       44133605  HGNC:1273      1
2742               21       44133605  HGNC:1273      1
2743               21       44133605  HGNC:1273      1
2744               21       44133605  HGNC:1273      1
2745               21       44133605  HGNC:1273      1
2746               21       44133605  HGNC:1273      1
2747               21       44133605  HGNC:1273      1
2748               21       44133605  HGNC:1273      1
2749               21       44133605  HGNC:1273      1
2750               21       44133605  HGNC:1273      1
2751               21       44133605  HGNC:1273      1
2752               21       44133605  HGNC:1273      1
2753               21       44133605  HGNC:1273      1
2754               21       44133605  HGNC:1273      1
2755               21       44133605  HGNC:1273      1
2756               21       44133605  HGNC:1273      1
2757               21       44133605  HGNC:1273      1
2758               21       44133605  HGNC:1273      1
2759               21       44133605  HGNC:1273      1
2760               21       44133605  HGNC:1273      1
2761               21       44133605  HGNC:1273      1
2762               21       44133605  HGNC:1273      1
2763               21       44133605  HGNC:1273      1
2764               21       44133605  HGNC:1273      1
2765               21       44133605  HGNC:1273      1
2766               21       44133605  HGNC:1273      1
2767               21       44133605  HGNC:1273      1
2768               21       44133605  HGNC:1273      1
2769               21       44133605  HGNC:1273      1
2770               21       44133605  HGNC:1273      1
2771               21       44133605  HGNC:1273      1
2772               21       44133605  HGNC:1273      1
2773               21       44133605  HGNC:1273      1
2774               21       44133605  HGNC:1273      1
2775               21       44133605  HGNC:1273      1
2776               21       44133605  HGNC:1273      1
2777               21       44133605  HGNC:1273      1
2778               21       44133605  HGNC:1273      1
2779               21       44133605  HGNC:1273      1
2780               21       44133605  HGNC:1273      1
2781               21       44133605  HGNC:1273      1
2782               21       44133605  HGNC:1273      1
2783               21       44133605  HGNC:1273      1
2784               21       44133605  HGNC:1273      1
2785               21       44133605  HGNC:1273      1
2786               21       46300181  HGNC:1300     -1
2787               21       46300181  HGNC:1300     -1
2788               21       46300181  HGNC:1300     -1
2789               21       46300181  HGNC:1300     -1
2790               21       46300181  HGNC:1300     -1
2791               21       46300181  HGNC:1300     -1
2792               21       46300181  HGNC:1300     -1
2793               21       46300181  HGNC:1300     -1
2794               21       46300181  HGNC:1300     -1
2795               21       46300181  HGNC:1300     -1
2796               21       46300181  HGNC:1300     -1
2797               21       46300181  HGNC:1300     -1
2798               21       46300181  HGNC:1300     -1
2799               21       46300181  HGNC:1300     -1
2800               21       46300181  HGNC:1300     -1
2801               21       46300181  HGNC:1300     -1
2802               21       46300181  HGNC:1300     -1
2803               21       46300181  HGNC:1300     -1
2804               21       46300181  HGNC:1300     -1
2805               21       46300181  HGNC:1300     -1
2806               21       46300181  HGNC:1300     -1
2807               21       46300181  HGNC:1300     -1
2808               21       46300181  HGNC:1300     -1
2809               21       46300181  HGNC:1300     -1
2810               21       46300181  HGNC:1300     -1
2811               21       46300181  HGNC:1300     -1
2812               21       46300181  HGNC:1300     -1
2813               21       46300181  HGNC:1300     -1
2814               21       46300181  HGNC:1300     -1
2815               21       46300181  HGNC:1300     -1
2816               21       46300181  HGNC:1300     -1
2817               21       46300181  HGNC:1300     -1
2818               21       46300181  HGNC:1300     -1
2819               21       46300181  HGNC:1300     -1
2820               21       46300181  HGNC:1300     -1
2821               21       46300181  HGNC:1300     -1
2822               21       46300181  HGNC:1300     -1
2823               21       46300181  HGNC:1300     -1
2824               21       46300181  HGNC:1300     -1
2825               21       46300181  HGNC:1300     -1
2826               21       46300181  HGNC:1300     -1
2827               21       46300181  HGNC:1300     -1
2828               21       46300181  HGNC:1300     -1
2829               21       46300181  HGNC:1300     -1
2830               21       46300181  HGNC:1300     -1
2831               21       46300181  HGNC:1300     -1
2832               21       46300181  HGNC:1300     -1
2833               21       46300181  HGNC:1300     -1
2834               21       46300181  HGNC:1300     -1
2835               21       46300181  HGNC:1300     -1
2836               21       46300181  HGNC:1300     -1
2837               21       46300181  HGNC:1300     -1
2838               21       46300181  HGNC:1300     -1
2839               21       46300181  HGNC:1300     -1
2840               21       46300181  HGNC:1300     -1
2841               21       46300181  HGNC:1300     -1
2842               21       46300181  HGNC:1300     -1
2843               21       46300181  HGNC:1300     -1
2844               21       46300181  HGNC:1300     -1
2845               21       46300181  HGNC:1300     -1
2846               21       46300181  HGNC:1300     -1
2847               21       46300181  HGNC:1300     -1
2848               21       46300181  HGNC:1300     -1
2849               21       46300181  HGNC:1300     -1
2850               21       46300181  HGNC:1300     -1
2851               21       46300181  HGNC:1300     -1
2852               21       46300181  HGNC:1300     -1
2853               21       46300181  HGNC:1300     -1
2854               21       46300181  HGNC:1300     -1
2855               21       46300181  HGNC:1300     -1
2856               21       32592079  HGNC:1301     -1
2857               21       32592079  HGNC:1301     -1
2858               21       32592079  HGNC:1301     -1
2859               21       32592079  HGNC:1301     -1
2860               21       32592079  HGNC:1301     -1
2861               21       32592079  HGNC:1301     -1
2862               21       32592079  HGNC:1301     -1
2863               21       32592079  HGNC:1301     -1
2864               21       32592079  HGNC:1301     -1
2865               21       32592079  HGNC:1301     -1
2866               21       32592079  HGNC:1301     -1
2867               21       32592079  HGNC:1301     -1
2868               21       32592079  HGNC:1301     -1
2869               21       32592079  HGNC:1301     -1
2870               21       32592079  HGNC:1301     -1
2871               21       32592079  HGNC:1301     -1
2872               21       32592079  HGNC:1301     -1
2873               21       32592079  HGNC:1301     -1
2874               21       32592079  HGNC:1301     -1
2875               21       32592079  HGNC:1301     -1
2876               21       32592079  HGNC:1301     -1
2877               21       32592079  HGNC:1301     -1
2878               21       32592079  HGNC:1301     -1
2879               21       32592079  HGNC:1301     -1
2880               21       32592079  HGNC:1301     -1
2881               21       32592079  HGNC:1301     -1
2882               21       32592079  HGNC:1301     -1
2883               21       32592079  HGNC:1301     -1
2884               21       32592079  HGNC:1301     -1
2885               21       32592079  HGNC:1301     -1
2886               21       32592079  HGNC:1301     -1
2887               21       32592079  HGNC:1301     -1
2888               21       32592079  HGNC:1301     -1
2889               21       32592079  HGNC:1301     -1
2890               21       32592079  HGNC:1301     -1
2891               21       32592079  HGNC:1301     -1
2892               21       32793564  HGNC:1305     -1
2893               21       32793564  HGNC:1305     -1
2894               21       32793564  HGNC:1305     -1
2895               21       32793564  HGNC:1305     -1
2896               21       32793564  HGNC:1305     -1
2897               21       32793564  HGNC:1305     -1
2898               21       32793564  HGNC:1305     -1
2899               21       32793564  HGNC:1305     -1
2900               21       32793564  HGNC:1305     -1
2901               21       32793564  HGNC:1305     -1
2902               21       32793564  HGNC:1305     -1
2903               21       32793564  HGNC:1305     -1
2904               21       32772100  HGNC:1290      1
2905               21       32772100  HGNC:1290      1
2906               21       32772100  HGNC:1290      1
2907               21       32772100  HGNC:1290      1
2908               21       32772100  HGNC:1290      1
2909               21       32772100  HGNC:1290      1
2910               21       32772100  HGNC:1290      1
2911               21       32772100  HGNC:1290      1
2912               21       32772100  HGNC:1290      1
2913               21       32772100  HGNC:1290      1
2914               21       32772100  HGNC:1290      1
2915               21       32772100  HGNC:1290      1
2916               21       32772100  HGNC:1290      1
2917               21       32772100  HGNC:1290      1
2918               21       32772100  HGNC:1290      1
2919               21       32772100  HGNC:1290      1
2920               21       32772100  HGNC:1290      1
2921               21       32772100  HGNC:1290      1
2922               21       32772100  HGNC:1290      1
2923               21       32772100  HGNC:1290      1
2924               21       32772100  HGNC:1290      1
2925               21       32772100  HGNC:1290      1
2926               21       32772100  HGNC:1290      1
2927               21       17788967 HGNC:16459     -1
2928               21       17788967 HGNC:16459     -1
2929               21       17788967 HGNC:16459     -1
2930               21       17788967 HGNC:16459     -1
2931               21       17788967 HGNC:16459     -1
2932               21       17788967 HGNC:16459     -1
2933               21       17788967 HGNC:16459     -1
2934               21       17788967 HGNC:16459     -1
2935               21       17788967 HGNC:16459     -1
2936               21       17788967 HGNC:16459     -1
2937               21       17788967 HGNC:16459     -1
2938               21       17788967 HGNC:16459     -1
2939               21       17788967 HGNC:16459     -1
2940               21       17788967 HGNC:16459     -1
2941               21       17788967 HGNC:16459     -1
2942               21       17788967 HGNC:16459     -1
2943               21       17788967 HGNC:16459     -1
2944               21       17788967 HGNC:16459     -1
2945               21       17788967 HGNC:16459     -1
2946               21       17788967 HGNC:16459     -1
2947               21       17788967 HGNC:16459     -1
2948               21       17788967 HGNC:16459     -1
2949               21       17788967 HGNC:16459     -1
2950               21       17788967 HGNC:16459     -1
2951               21       17788967 HGNC:16459     -1
2952               21       17763315 HGNC:16729     -1
2953               21       17763315 HGNC:16729     -1
2954               21       17763315 HGNC:16729     -1
2955               21       17763315 HGNC:16729     -1
2956               21       17763315 HGNC:16729     -1
2957               21       17763315 HGNC:16729     -1
2958               21       17763315 HGNC:16729     -1
2959               21       17763315 HGNC:16729     -1
2960               21       17763315 HGNC:16729     -1
2961               21       17763315 HGNC:16729     -1
2962               21       17763315 HGNC:16729     -1
2963               21       17763315 HGNC:16729     -1
2964               21       41885112  HGNC:1266     -1
2965               21       41885112  HGNC:1266     -1
2966               21       41885112  HGNC:1266     -1
2967               21       41885112  HGNC:1266     -1
2968               21       41885112  HGNC:1266     -1
2969               21       41885112  HGNC:1266     -1
2970               21       41885112  HGNC:1266     -1
2971               21       41885112  HGNC:1266     -1
2972               21       41885112  HGNC:1266     -1
2973               21       41885112  HGNC:1266     -1
2974               21       41885112  HGNC:1266     -1
2975               21       41885112  HGNC:1266     -1
2976               21       41885112  HGNC:1266     -1
2977               21       41885112  HGNC:1266     -1
2978               21       41885112  HGNC:1266     -1
2979               21       41885112  HGNC:1266     -1
2980               21       41885112  HGNC:1266     -1
2981               21       41885112  HGNC:1266     -1
2982               21       41885112  HGNC:1266     -1
2983               21       41885112  HGNC:1266     -1
2984               21       41885112  HGNC:1266     -1
2985               21       41885112  HGNC:1266     -1
2986               21       41885112  HGNC:1266     -1
2987               21       41885112  HGNC:1266     -1
2988               21       41885112  HGNC:1266     -1
2989               21       41885112  HGNC:1266     -1
2990               21       41885112  HGNC:1266     -1
2991               21       41885112  HGNC:1266     -1
2992               21       41885112  HGNC:1266     -1
2993               21       41885112  HGNC:1266     -1
2994               21       41885112  HGNC:1266     -1
2995               21       41885112  HGNC:1266     -1
2996               21       41885112  HGNC:1266     -1
2997               21       41885112  HGNC:1266     -1
2998               21       41885112  HGNC:1266     -1
2999               21       41885112  HGNC:1266     -1
3000               21       41885112  HGNC:1266     -1
3001               21       41885112  HGNC:1266     -1
3002               21       41885112  HGNC:1266     -1
3003               21       41885112  HGNC:1266     -1
3004               21       41885112  HGNC:1266     -1
3005               21       41885112  HGNC:1266     -1
3006               21       41885112  HGNC:1266     -1
3007               21       41885112  HGNC:1266     -1
3008               21       41885112  HGNC:1266     -1
3009               21       41885112  HGNC:1266     -1
3010               21       41885112  HGNC:1266     -1
3011               21       41885112  HGNC:1266     -1
3012               21       41885112  HGNC:1266     -1
3013               21       41885112  HGNC:1266     -1
3014               21       41885112  HGNC:1266     -1
3015               21       41885112  HGNC:1266     -1
3016               21       41885112  HGNC:1266     -1
3017               21       41885112  HGNC:1266     -1
3018               21       41885112  HGNC:1266     -1
3019               21       41885112  HGNC:1266     -1
3020               21       41885112  HGNC:1266     -1
3021               21       41885112  HGNC:1266     -1
3022               21       41885112  HGNC:1266     -1
3023               21       41885112  HGNC:1266     -1
3024               21       41885112  HGNC:1266     -1
3025               21       41885112  HGNC:1266     -1
3026               21       41885112  HGNC:1266     -1
3027               21       41885112  HGNC:1266     -1
3028               21       41885112  HGNC:1266     -1
3029               21       41885112  HGNC:1266     -1
3030               21       36069941  HGNC:1548      1
3031               21       36069941  HGNC:1548      1
3032               21       36069941  HGNC:1548      1
3033               21       36069941  HGNC:1548      1
3034               21       36069941  HGNC:1548      1
3035               21       36069941  HGNC:1548      1
3036               21       36069941  HGNC:1548      1
3037               21       36069941  HGNC:1548      1
3038               21       36069941  HGNC:1548      1
3039               21       36069941  HGNC:1548      1
3040               21       36069941  HGNC:1548      1
3041               21       36069941  HGNC:1548      1
3042               21       36069941  HGNC:1548      1
3043               21       36069941  HGNC:1548      1
3044               21       36134912  HGNC:1549      1
3045               21       36134912  HGNC:1549      1
3046               21       36134912  HGNC:1549      1
3047               21       36131767 HGNC:43664     -1
3048               21       36131767 HGNC:43664     -1
3049               21       36131767 HGNC:43664     -1
3050               21       36131767 HGNC:43664     -1
3051               21       36131767 HGNC:43664     -1
3052               21       36131767 HGNC:43664     -1
3053               21       36131767 HGNC:43664     -1
3054               21       36131767 HGNC:43664     -1
3055               21       36131767 HGNC:43664     -1
3056               21       36131767 HGNC:43664     -1
3057               21       36131767 HGNC:43664     -1
3058               21       36131767 HGNC:43664     -1
3059               21       36131767 HGNC:43664     -1
3060               21       36131767 HGNC:43664     -1
3061               21       36131767 HGNC:43664     -1
3062               21       36131767 HGNC:43664     -1
3063               21       36131767 HGNC:43664     -1
3064               21       36131767 HGNC:43664     -1
3065               21       36131767 HGNC:43664     -1
3066               21       36131767 HGNC:43664     -1
3067               21       36131767 HGNC:43664     -1
3068               21       36131767 HGNC:43664     -1
3069               21       36131767 HGNC:43664     -1
3070               21       36131767 HGNC:43664     -1
3071               21       36131767 HGNC:43664     -1
3072               21       36131767 HGNC:43664     -1
3073               21       36131767 HGNC:43664     -1
3074               21       36131767 HGNC:43664     -1
3075               21       36131767 HGNC:43664     -1
3076               21       36131767 HGNC:43664     -1
3077               21       36131767 HGNC:43664     -1
3078               21       36131767 HGNC:43664     -1
3079               21       36131767 HGNC:43664     -1
3080               21       36131767 HGNC:43664     -1
3081               21       36131767 HGNC:43664     -1
3082               21       36131767 HGNC:43664     -1
3083               21       36131767 HGNC:43664     -1
3084               21       36131767 HGNC:43664     -1
3085               21       36131767 HGNC:43664     -1
3086               21       36131767 HGNC:43664     -1
3087               21       36131767 HGNC:43664     -1
3088               21       36131767 HGNC:43664     -1
3089               21       36131767 HGNC:43664     -1
3090               21       36131767 HGNC:43664     -1
3091               21       36131767 HGNC:43664     -1
3092               21       36131767 HGNC:43664     -1
3093               21       36131767 HGNC:43664     -1
3094               21       36131767 HGNC:43664     -1
3095               21       36131767 HGNC:43664     -1
3096               21       36131767 HGNC:43664     -1
3097               21       36131767 HGNC:43664     -1
3098               21       36131767 HGNC:43664     -1
3099               21       36131767 HGNC:43664     -1
3100               21       36131767 HGNC:43664     -1
3101               21       36131767 HGNC:43664     -1
3102               21       36131767 HGNC:43664     -1
3103               21       36131767 HGNC:43664     -1
3104               21       43053191  HGNC:1550     -1
3105               21       43053191  HGNC:1550     -1
3106               21       43053191  HGNC:1550     -1
3107               21       43053191  HGNC:1550     -1
3108               21       43053191  HGNC:1550     -1
3109               21       43053191  HGNC:1550     -1
3110               21       43053191  HGNC:1550     -1
3111               21       43053191  HGNC:1550     -1
3112               21       43053191  HGNC:1550     -1
3113               21       43053191  HGNC:1550     -1
3114               21       43053191  HGNC:1550     -1
3115               21       43053191  HGNC:1550     -1
3116               21       43053191  HGNC:1550     -1
3117               21       43053191  HGNC:1550     -1
3118               21       43053191  HGNC:1550     -1
3119               21       43053191  HGNC:1550     -1
3120               21       43053191  HGNC:1550     -1
3121               21       43053191  HGNC:1550     -1
3122               21       43053191  HGNC:1550     -1
3123               21       43053191  HGNC:1550     -1
3124               21       43053191  HGNC:1550     -1
3125               21       43053191  HGNC:1550     -1
3126               21       43053191  HGNC:1550     -1
3127               21       43053191  HGNC:1550     -1
3128               21       43053191  HGNC:1550     -1
3129               21       43053191  HGNC:1550     -1
3130               21       43053191  HGNC:1550     -1
3131               21       43053191  HGNC:1550     -1
3132               21       43053191  HGNC:1550     -1
3133               21       43053191  HGNC:1550     -1
3134               21       43053191  HGNC:1550     -1
3135               21       43053191  HGNC:1550     -1
3136               21       43053191  HGNC:1550     -1
3137               21       43053191  HGNC:1550     -1
3138               21       43053191  HGNC:1550     -1
3139               21       43053191  HGNC:1550     -1
3140               21       43053191  HGNC:1550     -1
3141               21       43053191  HGNC:1550     -1
3142               21       43053191  HGNC:1550     -1
3143               21       43053191  HGNC:1550     -1
3144               21       43053191  HGNC:1550     -1
3145               21       43053191  HGNC:1550     -1
3146               21       43053191  HGNC:1550     -1
3147               21       43053191  HGNC:1550     -1
3148               21       43053191  HGNC:1550     -1
3149               21       43053191  HGNC:1550     -1
3150               21       43053191  HGNC:1550     -1
3151               21       43053191  HGNC:1550     -1
3152               21       43053191  HGNC:1550     -1
3153               21       43053191  HGNC:1550     -1
3154               21       43053191  HGNC:1550     -1
3155               21       43053191  HGNC:1550     -1
3156               21       43053191  HGNC:1550     -1
3157               21       43053191  HGNC:1550     -1
3158               21       43053191  HGNC:1550     -1
3159               21       43053191  HGNC:1550     -1
3160               21       43053191  HGNC:1550     -1
3161               21       43053191  HGNC:1550     -1
3162               21       43053191  HGNC:1550     -1
3163               21       43053191  HGNC:1550     -1
3164               21       43053191  HGNC:1550     -1
3165               21       43053191  HGNC:1550     -1
3166               21       43053191  HGNC:1550     -1
3167               21       43053191  HGNC:1550     -1
3168               21       43053191  HGNC:1550     -1
3169               21       43053191  HGNC:1550     -1
3170               21       43053191  HGNC:1550     -1
3171               21       43053191  HGNC:1550     -1
3172               21       43053191  HGNC:1550     -1
3173               21       43053191  HGNC:1550     -1
3174               21       43053191  HGNC:1550     -1
3175               21       43053191  HGNC:1550     -1
3176               21       43053191  HGNC:1550     -1
3177               21       43053191  HGNC:1550     -1
3178               21       43053191  HGNC:1550     -1
3179               21       43053191  HGNC:1550     -1
3180               21       43053191  HGNC:1550     -1
3181               21       43053191  HGNC:1550     -1
3182               21       43053191  HGNC:1550     -1
3183               21       43053191  HGNC:1550     -1
3184               21       43053191  HGNC:1550     -1
3185               21       43053191  HGNC:1550     -1
3186               21       43053191  HGNC:1550     -1
3187               21       43053191  HGNC:1550     -1
3188               21       43053191  HGNC:1550     -1
3189               21       43053191  HGNC:1550     -1
3190               21       43053191  HGNC:1550     -1
3191               21       43053191  HGNC:1550     -1
3192               21       43053191  HGNC:1550     -1
3193               21       43053191  HGNC:1550     -1
3194               21       43053191  HGNC:1550     -1
3195               21       43053191  HGNC:1550     -1
3196               21       43053191  HGNC:1550     -1
3197               21       43053191  HGNC:1550     -1
3198               21       43053191  HGNC:1550     -1
3199               21       43053191  HGNC:1550     -1
3200               21       43053191  HGNC:1550     -1
3201               21       43053191  HGNC:1550     -1
3202               21       43053191  HGNC:1550     -1
3203               21       43053191  HGNC:1550     -1
3204               21       43053191  HGNC:1550     -1
3205               21       43053191  HGNC:1550     -1
3206               21       43053191  HGNC:1550     -1
3207               21       43053191  HGNC:1550     -1
3208               21       43053191  HGNC:1550     -1
3209               21       43053191  HGNC:1550     -1
3210               21       43053191  HGNC:1550     -1
3211               21       43053191  HGNC:1550     -1
3212               21       43053191  HGNC:1550     -1
3213               21       43053191  HGNC:1550     -1
3214               21       43053191  HGNC:1550     -1
3215               21       43053191  HGNC:1550     -1
3216               21       43053191  HGNC:1550     -1
3217               21       43053191  HGNC:1550     -1
3218               21       43053191  HGNC:1550     -1
3219               21       43053191  HGNC:1550     -1
3220               21       43053191  HGNC:1550     -1
3221               21       43053191  HGNC:1550     -1
3222               21       43053191  HGNC:1550     -1
3223               21       43053191  HGNC:1550     -1
3224               21       43053191  HGNC:1550     -1
3225               21       43053191  HGNC:1550     -1
3226               21       43053191  HGNC:1550     -1
3227               21       43053191  HGNC:1550     -1
3228               21       43053191  HGNC:1550     -1
3229               21       43053191  HGNC:1550     -1
3230               21       43053191  HGNC:1550     -1
3231               21       43053191  HGNC:1550     -1
3232               21       43053191  HGNC:1550     -1
3233               21       43053191  HGNC:1550     -1
3234               21       43053191  HGNC:1550     -1
3235               21       43053191  HGNC:1550     -1
3236               21       43053191  HGNC:1550     -1
3237               21       43053191  HGNC:1550     -1
3238               21       43053191  HGNC:1550     -1
3239               21       43053191  HGNC:1550     -1
3240               21       43053191  HGNC:1550     -1
3241               21       43053191  HGNC:1550     -1
3242               21       43053191  HGNC:1550     -1
3243               21        6444869 HGNC:51829     -1
3244               21        6444869 HGNC:51829     -1
3245               21        6444869 HGNC:51829     -1
3246               21        6444869 HGNC:51829     -1
3247               21        6444869 HGNC:51829     -1
3248               21        6444869 HGNC:51829     -1
3249               21        6444869 HGNC:51829     -1
3250               21        6444869 HGNC:51829     -1
3251               21        6444869 HGNC:51829     -1
3252               21        6444869 HGNC:51829     -1
3253               21        6444869 HGNC:51829     -1
3254               21        6444869 HGNC:51829     -1
3255               21        6444869 HGNC:51829     -1
3256               21        6444869 HGNC:51829     -1
3257               21        6444869 HGNC:51829     -1
3258               21        6444869 HGNC:51829     -1
3259               21        6444869 HGNC:51829     -1
3260               21        6444869 HGNC:51829     -1
3261               21        6444869 HGNC:51829     -1
3262               21        6444869 HGNC:51829     -1
3263               21        6444869 HGNC:51829     -1
3264               21        6444869 HGNC:51829     -1
3265               21        6444869 HGNC:51829     -1
3266               21        6444869 HGNC:51829     -1
3267               21        6444869 HGNC:51829     -1
3268               21        6444869 HGNC:51829     -1
3269               21        6444869 HGNC:51829     -1
3270               21        6444869 HGNC:51829     -1
3271               21        6444869 HGNC:51829     -1
3272               21        6444869 HGNC:51829     -1
3273               21        6444869 HGNC:51829     -1
3274               21        6444869 HGNC:51829     -1
3275               21        6444869 HGNC:51829     -1
3276               21        6444869 HGNC:51829     -1
3277               21        6444869 HGNC:51829     -1
3278               21        6444869 HGNC:51829     -1
3279               21        6444869 HGNC:51829     -1
3280               21        6444869 HGNC:51829     -1
3281               21        6444869 HGNC:51829     -1
3282               21        6444869 HGNC:51829     -1
3283               21        6444869 HGNC:51829     -1
3284               21        6444869 HGNC:51829     -1
3285               21        6444869 HGNC:51829     -1
3286               21        6444869 HGNC:51829     -1
3287               21        6444869 HGNC:51829     -1
3288               21        6444869 HGNC:51829     -1
3289               21        6444869 HGNC:51829     -1
3290               21        6444869 HGNC:51829     -1
3291               21        6444869 HGNC:51829     -1
3292               21        6444869 HGNC:51829     -1
3293               21        6444869 HGNC:51829     -1
3294               21        6444869 HGNC:51829     -1
3295               21        6444869 HGNC:51829     -1
3296               21        6444869 HGNC:51829     -1
3297               21        6444869 HGNC:51829     -1
3298               21        6444869 HGNC:51829     -1
3299               21        6444869 HGNC:51829     -1
3300               21        6444869 HGNC:51829     -1
3301               21        6444869 HGNC:51829     -1
3302               21        6444869 HGNC:51829     -1
3303               21        6444869 HGNC:51829     -1
3304               21        6444869 HGNC:51829     -1
3305               21        6444869 HGNC:51829     -1
3306               21        6444869 HGNC:51829     -1
3307               21        6444869 HGNC:51829     -1
3308               21        6444869 HGNC:51829     -1
3309               21        6444869 HGNC:51829     -1
3310               21        6444869 HGNC:51829     -1
3311               21        6444869 HGNC:51829     -1
3312               21        6444869 HGNC:51829     -1
3313               21        6444869 HGNC:51829     -1
3314               21        6444869 HGNC:51829     -1
3315               21        6444869 HGNC:51829     -1
3316               21        6444869 HGNC:51829     -1
3317               21        6444869 HGNC:51829     -1
3318               21        6444869 HGNC:51829     -1
3319               21        6444869 HGNC:51829     -1
3320               21        6444869 HGNC:51829     -1
3321               21        6444869 HGNC:51829     -1
3322               21        6444869 HGNC:51829     -1
3323               21        6444869 HGNC:51829     -1
3324               21        6444869 HGNC:51829     -1
3325               21        6444869 HGNC:51829     -1
3326               21        6444869 HGNC:51829     -1
3327               21        6444869 HGNC:51829     -1
3328               21        6444869 HGNC:51829     -1
3329               21        6444869 HGNC:51829     -1
3330               21        6444869 HGNC:51829     -1
3331               21        6444869 HGNC:51829     -1
3332               21        6444869 HGNC:51829     -1
3333               21        6444869 HGNC:51829     -1
3334               21        6444869 HGNC:51829     -1
3335               21        6444869 HGNC:51829     -1
3336               21        6444869 HGNC:51829     -1
3337               21        6444869 HGNC:51829     -1
3338               21        6444869 HGNC:51829     -1
3339               21        6444869 HGNC:51829     -1
3340               21        6444869 HGNC:51829     -1
3341               21        6444869 HGNC:51829     -1
3342               21        6444869 HGNC:51829     -1
3343               21        6444869 HGNC:51829     -1
3344               21        6444869 HGNC:51829     -1
3345               21        6444869 HGNC:51829     -1
3346               21        6444869 HGNC:51829     -1
3347               21        6444869 HGNC:51829     -1
3348               21        6444869 HGNC:51829     -1
3349               21        6444869 HGNC:51829     -1
3350               21        6444869 HGNC:51829     -1
3351               21        6444869 HGNC:51829     -1
3352               21        6444869 HGNC:51829     -1
3353               21        6444869 HGNC:51829     -1
3354               21        6444869 HGNC:51829     -1
3355               21        6444869 HGNC:51829     -1
3356               21        6444869 HGNC:51829     -1
3357               21        6444869 HGNC:51829     -1
3358               21        6444869 HGNC:51829     -1
3359               21        6444869 HGNC:51829     -1
3360               21        6444869 HGNC:51829     -1
3361               21        6444869 HGNC:51829     -1
3362               21        6444869 HGNC:51829     -1
3363               21       29055805  HGNC:1623     -1
3364               21       29055805  HGNC:1623     -1
3365               21       29055805  HGNC:1623     -1
3366               21       29055805  HGNC:1623     -1
3367               21       29055805  HGNC:1623     -1
3368               21       29055805  HGNC:1623     -1
3369               21       29055805  HGNC:1623     -1
3370               21       29055805  HGNC:1623     -1
3371               21       29055805  HGNC:1623     -1
3372               21       29055805  HGNC:1623     -1
3373               21       29055805  HGNC:1623     -1
3374               21       29055805  HGNC:1623     -1
3375               21       29055805  HGNC:1623     -1
3376               21       29055805  HGNC:1623     -1
3377               21       29055805  HGNC:1623     -1
3378               21       29055805  HGNC:1623     -1
3379               21       29055805  HGNC:1623     -1
3380               21       29055805  HGNC:1623     -1
3381               21       29055805  HGNC:1623     -1
3382               21       29055805  HGNC:1623     -1
3383               21       29055805  HGNC:1623     -1
3384               21       29055805  HGNC:1623     -1
3385               21       29055805  HGNC:1623     -1
3386               21       29055805  HGNC:1623     -1
3387               21       29055805  HGNC:1623     -1
3388               21       29055805  HGNC:1623     -1
3389               21       29055805  HGNC:1623     -1
3390               21       29055805  HGNC:1623     -1
3391               21       29055805  HGNC:1623     -1
3392               21       29055805  HGNC:1623     -1
3393               21       29055805  HGNC:1623     -1
3394               21       29055805  HGNC:1623     -1
3395               21       29055805  HGNC:1623     -1
3396               21       29055805  HGNC:1623     -1
3397               21       29055805  HGNC:1623     -1
3398               21       29055805  HGNC:1623     -1
3399               21       29055805  HGNC:1623     -1
3400               21       29055805  HGNC:1623     -1
3401               21       29055805  HGNC:1623     -1
3402               21       29055805  HGNC:1623     -1
3403               21       29055805  HGNC:1623     -1
3404               21       29055805  HGNC:1623     -1
3405               21       29055805  HGNC:1623     -1
3406               21       29055805  HGNC:1623     -1
3407               21       29055805  HGNC:1623     -1
3408               21       29055805  HGNC:1623     -1
3409               21       29055805  HGNC:1623     -1
3410               21       29055805  HGNC:1623     -1
3411               21       29055805  HGNC:1623     -1
3412               21       29055805  HGNC:1623     -1
3413               21       29055805  HGNC:1623     -1
3414               21       29055805  HGNC:1623     -1
3415               21       29055805  HGNC:1623     -1
3416               21       29055805  HGNC:1623     -1
3417               21       29055805  HGNC:1623     -1
3418               21       29055805  HGNC:1623     -1
3419               21       29055805  HGNC:1623     -1
3420               21       29055805  HGNC:1623     -1
3421               21       29055805  HGNC:1623     -1
3422               21       29055805  HGNC:1623     -1
3423               21       29055805  HGNC:1623     -1
3424               21       29055805  HGNC:1623     -1
3425               21       29055805  HGNC:1623     -1
3426               21       29055805  HGNC:1623     -1
3427               21       29055805  HGNC:1623     -1
3428               21       29055805  HGNC:1623     -1
3429               21       29055805  HGNC:1623     -1
3430               21       29055805  HGNC:1623     -1
3431               21       29055805  HGNC:1623     -1
3432               21       29055805  HGNC:1623     -1
3433               21       29055805  HGNC:1623     -1
3434               21       29055805  HGNC:1623     -1
3435               21       29055805  HGNC:1623     -1
3436               21       29055805  HGNC:1623     -1
3437               21       29055805  HGNC:1623     -1
3438               21       29055805  HGNC:1623     -1
3439               21       29055805  HGNC:1623     -1
3440               21       29055805  HGNC:1623     -1
3441               21       29055805  HGNC:1623     -1
3442               21       29055805  HGNC:1623     -1
3443               21       29055805  HGNC:1623     -1
3444               21       29055805  HGNC:1623     -1
3445               21       29055805  HGNC:1623     -1
3446               21       29055805  HGNC:1623     -1
3447               21       29055805  HGNC:1623     -1
3448               21       29055805  HGNC:1623     -1
3449               21       29055805  HGNC:1623     -1
3450               21       29055805  HGNC:1623     -1
3451               21       29055805  HGNC:1623     -1
3452               21       29055805  HGNC:1623     -1
3453               21       29055805  HGNC:1623     -1
3454               21       29055805  HGNC:1623     -1
3455               21       29055805  HGNC:1623     -1
3456               21       29055805  HGNC:1623     -1
3457               21       29055805  HGNC:1623     -1
3458               21       29055805  HGNC:1623     -1
3459               21       29055805  HGNC:1623     -1
3460               21       29055805  HGNC:1623     -1
3461               21       29055805  HGNC:1623     -1
3462               21       29055805  HGNC:1623     -1
3463               21       29055805  HGNC:1623     -1
3464               21       29055805  HGNC:1623     -1
3465               21       36385378  HGNC:1911      1
3466               21       36385378  HGNC:1911      1
3467               21       36385378  HGNC:1911      1
3468               21       36385378  HGNC:1911      1
3469               21       36385378  HGNC:1911      1
3470               21       36385378  HGNC:1911      1
3471               21       36385378  HGNC:1911      1
3472               21       36385378  HGNC:1911      1
3473               21       36385378  HGNC:1911      1
3474               21       36385378  HGNC:1911      1
3475               21       36385378  HGNC:1911      1
3476               21       36385378  HGNC:1911      1
3477               21       36385378  HGNC:1911      1
3478               21       36385378  HGNC:1911      1
3479               21       36385378  HGNC:1911      1
3480               21       36385378  HGNC:1911      1
3481               21       36385378  HGNC:1911      1
3482               21       36385378  HGNC:1911      1
3483               21       36385378  HGNC:1911      1
3484               21       36385378  HGNC:1911      1
3485               21       36385378  HGNC:1911      1
3486               21       36385378  HGNC:1911      1
3487               21       36385378  HGNC:1911      1
3488               21       36385378  HGNC:1911      1
3489               21       17901263 HGNC:17807      1
3490               21       17901263 HGNC:17807      1
3491               21       17901263 HGNC:17807      1
3492               21       17901263 HGNC:17807      1
3493               21       17901263 HGNC:17807      1
3494               21       17901263 HGNC:17807      1
3495               21       17901263 HGNC:17807      1
3496               21       17901263 HGNC:17807      1
3497               21       17901263 HGNC:17807      1
3498               21       17901263 HGNC:17807      1
3499               21       17901263 HGNC:17807      1
3500               21       17901263 HGNC:17807      1
3501               21       17901263 HGNC:17807      1
3502               21       17901263 HGNC:17807      1
3503               21       17901263 HGNC:17807      1
3504               21       17901263 HGNC:17807      1
3505               21       17901263 HGNC:17807      1
3506               21       17901263 HGNC:17807      1
3507               21       17901263 HGNC:17807      1
3508               21       17901263 HGNC:17807      1
3509               21       17901263 HGNC:17807      1
3510               21       17901263 HGNC:17807      1
3511               21       17901263 HGNC:17807      1
3512               21       17901263 HGNC:17807      1
3513               21       17901263 HGNC:17807      1
3514               21       17901263 HGNC:17807      1
3515               21       17901263 HGNC:17807      1
3516               21       17901263 HGNC:17807      1
3517               21       17901263 HGNC:17807      1
3518               21       17901263 HGNC:17807      1
3519               21       17901263 HGNC:17807      1
3520               21       17901263 HGNC:17807      1
3521               21       17901263 HGNC:17807      1
3522               21       17901263 HGNC:17807      1
3523               21       17901263 HGNC:17807      1
3524               21       17901263 HGNC:17807      1
3525               21       17901263 HGNC:17807      1
3526               21       17901263 HGNC:17807      1
3527               21       17901263 HGNC:17807      1
3528               21       17901263 HGNC:17807      1
3529               21       17901263 HGNC:17807      1
3530               21       17835016  HGNC:1279     -1
3531               21       17835016  HGNC:1279     -1
3532               21       17835016  HGNC:1279     -1
3533               21       36460621  HGNC:2035     -1
3534               21       36460621  HGNC:2035     -1
3535               21       36460621  HGNC:2035     -1
3536               21       36460621  HGNC:2035     -1
3537               21       36460621  HGNC:2035     -1
3538               21       36460621  HGNC:2035     -1
3539               21       36460621  HGNC:2035     -1
3540               21       36460621  HGNC:2035     -1
3541               21       36460621  HGNC:2035     -1
3542               21       36460621  HGNC:2035     -1
3543               21       36460621  HGNC:2035     -1
3544               21       36460621  HGNC:2035     -1
3545               21       36460621  HGNC:2035     -1
3546               21       36460621  HGNC:2035     -1
3547               21       36460621  HGNC:2035     -1
3548               21       30165564  HGNC:2038     -1
3549               21       30214006  HGNC:2050     -1
3550               21       34669389  HGNC:2065      1
3551               21       34669389  HGNC:2065      1
3552               21       34669389  HGNC:2065      1
3553               21       34669389  HGNC:2065      1
3554               21       34669389  HGNC:2065      1
3555               21       34669389  HGNC:2065      1
3556               21       34669389  HGNC:2065      1
3557               21       34669389  HGNC:2065      1
3558               21       34669389  HGNC:2065      1
3559               21       34669389  HGNC:2065      1
3560               21       34669389  HGNC:2065      1
3561               21       34669389  HGNC:2065      1
3562               21       34669389  HGNC:2065      1
3563               21       13826696 HGNC:39532      1
3564               21       45405137  HGNC:2195      1
3565               21       45405137  HGNC:2195      1
3566               21       45405137  HGNC:2195      1
3567               21       45405137  HGNC:2195      1
3568               21       45405137  HGNC:2195      1
3569               21       45405137  HGNC:2195      1
3570               21       45405137  HGNC:2195      1
3571               21       45405137  HGNC:2195      1
3572               21       45405137  HGNC:2195      1
3573               21       45405137  HGNC:2195      1
3574               21       45405137  HGNC:2195      1
3575               21       45405137  HGNC:2195      1
3576               21       45405137  HGNC:2195      1
3577               21       45405137  HGNC:2195      1
3578               21       45405137  HGNC:2195      1
3579               21       45405137  HGNC:2195      1
3580               21       45405137  HGNC:2195      1
3581               21       45405137  HGNC:2195      1
3582               21       45405137  HGNC:2195      1
3583               21       45405137  HGNC:2195      1
3584               21       45405137  HGNC:2195      1
3585               21       45405137  HGNC:2195      1
3586               21       45405137  HGNC:2195      1
3587               21       45405137  HGNC:2195      1
3588               21       45405137  HGNC:2195      1
3589               21       45405137  HGNC:2195      1
3590               21       45405137  HGNC:2195      1
3591               21       45405137  HGNC:2195      1
3592               21       45405137  HGNC:2195      1
3593               21       45405137  HGNC:2195      1
3594               21       45405137  HGNC:2195      1
3595               21       45405137  HGNC:2195      1
3596               21       45405137  HGNC:2195      1
3597               21       45405137  HGNC:2195      1
3598               21       45405137  HGNC:2195      1
3599               21       45405137  HGNC:2195      1
3600               21       45405137  HGNC:2195      1
3601               21       45405137  HGNC:2195      1
3602               21       45405137  HGNC:2195      1
3603               21       45405137  HGNC:2195      1
3604               21       45405137  HGNC:2195      1
3605               21       45405137  HGNC:2195      1
3606               21       45405137  HGNC:2195      1
3607               21       45405137  HGNC:2195      1
3608               21       45405137  HGNC:2195      1
3609               21       45405137  HGNC:2195      1
3610               21       45405137  HGNC:2195      1
3611               21       45405137  HGNC:2195      1
3612               21       45405137  HGNC:2195      1
3613               21       45405137  HGNC:2195      1
3614               21       45405137  HGNC:2195      1
3615               21       45405137  HGNC:2195      1
3616               21       45405137  HGNC:2195      1
3617               21       45405137  HGNC:2195      1
3618               21       45405137  HGNC:2195      1
3619               21       45405137  HGNC:2195      1
3620               21       45405137  HGNC:2195      1
3621               21       45405137  HGNC:2195      1
3622               21       45405137  HGNC:2195      1
3623               21       45405137  HGNC:2195      1
3624               21       45405137  HGNC:2195      1
3625               21       45405137  HGNC:2195      1
3626               21       45405137  HGNC:2195      1
3627               21       45405137  HGNC:2195      1
3628               21       45405137  HGNC:2195      1
3629               21       45405137  HGNC:2195      1
3630               21       45405137  HGNC:2195      1
3631               21       45405137  HGNC:2195      1
3632               21       45405137  HGNC:2195      1
3633               21       45405137  HGNC:2195      1
3634               21       45405137  HGNC:2195      1
3635               21       45405137  HGNC:2195      1
3636               21       45405137  HGNC:2195      1
3637               21       45405137  HGNC:2195      1
3638               21       45405137  HGNC:2195      1
3639               21       45405137  HGNC:2195      1
3640               21       45405137  HGNC:2195      1
3641               21       45405137  HGNC:2195      1
3642               21       45405137  HGNC:2195      1
3643               21       45405137  HGNC:2195      1
3644               21       45405137  HGNC:2195      1
3645               21       45405137  HGNC:2195      1
3646               21       45405137  HGNC:2195      1
3647               21       45405137  HGNC:2195      1
3648               21       45405137  HGNC:2195      1
3649               21       45405137  HGNC:2195      1
3650               21       45405137  HGNC:2195      1
3651               21       45405137  HGNC:2195      1
3652               21       45405137  HGNC:2195      1
3653               21       45405137  HGNC:2195      1
3654               21       45405137  HGNC:2195      1
3655               21       45405137  HGNC:2195      1
3656               21       45405137  HGNC:2195      1
3657               21       45405137  HGNC:2195      1
3658               21       45405137  HGNC:2195      1
3659               21       45405137  HGNC:2195      1
3660               21       45405137  HGNC:2195      1
3661               21       45405137  HGNC:2195      1
3662               21       45405137  HGNC:2195      1
3663               21       45405137  HGNC:2195      1
3664               21       45405137  HGNC:2195      1
3665               21       45405137  HGNC:2195      1
3666               21       45405137  HGNC:2195      1
3667               21       45405137  HGNC:2195      1
3668               21       45405137  HGNC:2195      1
3669               21       45405137  HGNC:2195      1
3670               21       45405137  HGNC:2195      1
3671               21       45405137  HGNC:2195      1
3672               21       45405137  HGNC:2195      1
3673               21       45405137  HGNC:2195      1
3674               21       45405137  HGNC:2195      1
3675               21       45405137  HGNC:2195      1
3676               21       45405137  HGNC:2195      1
3677               21       45405137  HGNC:2195      1
3678               21       45405137  HGNC:2195      1
3679               21       45405137  HGNC:2195      1
3680               21       45405137  HGNC:2195      1
3681               21       45405137  HGNC:2195      1
3682               21       45405137  HGNC:2195      1
3683               21       45405137  HGNC:2195      1
3684               21       45405137  HGNC:2195      1
3685               21       45405137  HGNC:2195      1
3686               21       45405137  HGNC:2195      1
3687               21       45405137  HGNC:2195      1
3688               21       45405137  HGNC:2195      1
3689               21       45405137  HGNC:2195      1
3690               21       45405137  HGNC:2195      1
3691               21       45405137  HGNC:2195      1
3692               21       45405137  HGNC:2195      1
3693               21       45405137  HGNC:2195      1
3694               21       45405137  HGNC:2195      1
3695               21       45405137  HGNC:2195      1
3696               21       45405137  HGNC:2195      1
3697               21       45405137  HGNC:2195      1
3698               21       45405137  HGNC:2195      1
3699               21       45405137  HGNC:2195      1
3700               21       45405137  HGNC:2195      1
3701               21       45405137  HGNC:2195      1
3702               21       45405137  HGNC:2195      1
3703               21       45405137  HGNC:2195      1
3704               21       45405137  HGNC:2195      1
3705               21       45405137  HGNC:2195      1
3706               21       45405137  HGNC:2195      1
3707               21       45405137  HGNC:2195      1
3708               21       45405137  HGNC:2195      1
3709               21       45405137  HGNC:2195      1
3710               21       45405137  HGNC:2195      1
3711               21       45405137  HGNC:2195      1
3712               21       45405137  HGNC:2195      1
3713               21       45405137  HGNC:2195      1
3714               21       45405137  HGNC:2195      1
3715               21       45405137  HGNC:2195      1
3716               21       45405137  HGNC:2195      1
3717               21       45405137  HGNC:2195      1
3718               21       45405137  HGNC:2195      1
3719               21       45405137  HGNC:2195      1
3720               21       45405137  HGNC:2195      1
3721               21       45405137  HGNC:2195      1
3722               21       45405137  HGNC:2195      1
3723               21       45405137  HGNC:2195      1
3724               21       45405137  HGNC:2195      1
3725               21       45405137  HGNC:2195      1
3726               21       45405137  HGNC:2195      1
3727               21       45405137  HGNC:2195      1
3728               21       45405137  HGNC:2195      1
3729               21       45405137  HGNC:2195      1
3730               21       45419716 HGNC:23132     -1
3731               21       45419716 HGNC:23132     -1
3732               21       45419716 HGNC:23132     -1
3733               21       45419716 HGNC:23132     -1
3734               21       45419716 HGNC:23132     -1
3735               21       45419716 HGNC:23132     -1
3736               21       45407386 HGNC:40155     -1
3737               21       45407386 HGNC:40155     -1
3738               21       45407386 HGNC:40155     -1
3739               21       45407386 HGNC:40155     -1
3740               21       45981737  HGNC:2211      1
3741               21       45981737  HGNC:2211      1
3742               21       45981737  HGNC:2211      1
3743               21       45981737  HGNC:2211      1
3744               21       45981737  HGNC:2211      1
3745               21       45981737  HGNC:2211      1
3746               21       45981737  HGNC:2211      1
3747               21       45981737  HGNC:2211      1
3748               21       45981737  HGNC:2211      1
3749               21       45981737  HGNC:2211      1
3750               21       45981737  HGNC:2211      1
3751               21       45981737  HGNC:2211      1
3752               21       45981737  HGNC:2211      1
3753               21       45981737  HGNC:2211      1
3754               21       45981737  HGNC:2211      1
3755               21       45981737  HGNC:2211      1
3756               21       45981737  HGNC:2211      1
3757               21       45981737  HGNC:2211      1
3758               21       45981737  HGNC:2211      1
3759               21       45981737  HGNC:2211      1
3760               21       45981737  HGNC:2211      1
3761               21       45981737  HGNC:2211      1
3762               21       45981737  HGNC:2211      1
3763               21       45981737  HGNC:2211      1
3764               21       45981737  HGNC:2211      1
3765               21       45981737  HGNC:2211      1
3766               21       45981737  HGNC:2211      1
3767               21       45981737  HGNC:2211      1
3768               21       45981737  HGNC:2211      1
3769               21       45981737  HGNC:2211      1
3770               21       45981737  HGNC:2211      1
3771               21       45981737  HGNC:2211      1
3772               21       45981737  HGNC:2211      1
3773               21       45981737  HGNC:2211      1
3774               21       45981737  HGNC:2211      1
3775               21       45981737  HGNC:2211      1
3776               21       45981737  HGNC:2211      1
3777               21       45981737  HGNC:2211      1
3778               21       45981737  HGNC:2211      1
3779               21       45981737  HGNC:2211      1
3780               21       45981737  HGNC:2211      1
3781               21       45981737  HGNC:2211      1
3782               21       45981737  HGNC:2211      1
3783               21       45981737  HGNC:2211      1
3784               21       45981737  HGNC:2211      1
3785               21       45981737  HGNC:2211      1
3786               21       45981737  HGNC:2211      1
3787               21       45981737  HGNC:2211      1
3788               21       45981737  HGNC:2211      1
3789               21       45981737  HGNC:2211      1
3790               21       45981737  HGNC:2211      1
3791               21       45981737  HGNC:2211      1
3792               21       45981737  HGNC:2211      1
3793               21       45981737  HGNC:2211      1
3794               21       45981737  HGNC:2211      1
3795               21       45981737  HGNC:2211      1
3796               21       45981737  HGNC:2211      1
3797               21       45981737  HGNC:2211      1
3798               21       45981737  HGNC:2211      1
3799               21       45981737  HGNC:2211      1
3800               21       45981737  HGNC:2211      1
3801               21       45981737  HGNC:2211      1
3802               21       45981737  HGNC:2211      1
3803               21       45981737  HGNC:2211      1
3804               21       45981737  HGNC:2211      1
3805               21       45981737  HGNC:2211      1
3806               21       45981737  HGNC:2211      1
3807               21       45981737  HGNC:2211      1
3808               21       45981737  HGNC:2211      1
3809               21       45981737  HGNC:2211      1
3810               21       45981737  HGNC:2211      1
3811               21       45981737  HGNC:2211      1
3812               21       45981737  HGNC:2211      1
3813               21       45981737  HGNC:2211      1
3814               21       45981737  HGNC:2211      1
3815               21       45981737  HGNC:2211      1
3816               21       45981737  HGNC:2211      1
3817               21       45981737  HGNC:2211      1
3818               21       45981737  HGNC:2211      1
3819               21       45981737  HGNC:2211      1
3820               21       45981737  HGNC:2211      1
3821               21       45981737  HGNC:2211      1
3822               21       45981737  HGNC:2211      1
3823               21       45981737  HGNC:2211      1
3824               21       45981737  HGNC:2211      1
3825               21       45981737  HGNC:2211      1
3826               21       45981737  HGNC:2211      1
3827               21       45981737  HGNC:2211      1
3828               21       45981737  HGNC:2211      1
3829               21       46098097  HGNC:2212      1
3830               21       46098097  HGNC:2212      1
3831               21       46098097  HGNC:2212      1
3832               21       46098097  HGNC:2212      1
3833               21       46098097  HGNC:2212      1
3834               21       46098097  HGNC:2212      1
3835               21       46098097  HGNC:2212      1
3836               21       46098097  HGNC:2212      1
3837               21       46098097  HGNC:2212      1
3838               21       46098097  HGNC:2212      1
3839               21       46098097  HGNC:2212      1
3840               21       46098097  HGNC:2212      1
3841               21       46098097  HGNC:2212      1
3842               21       46098097  HGNC:2212      1
3843               21       46098097  HGNC:2212      1
3844               21       46098097  HGNC:2212      1
3845               21       46098097  HGNC:2212      1
3846               21       46098097  HGNC:2212      1
3847               21       46098097  HGNC:2212      1
3848               21       46098097  HGNC:2212      1
3849               21       46098097  HGNC:2212      1
3850               21       46098097  HGNC:2212      1
3851               21       46098097  HGNC:2212      1
3852               21       46098097  HGNC:2212      1
3853               21       46098097  HGNC:2212      1
3854               21       46098097  HGNC:2212      1
3855               21       46098097  HGNC:2212      1
3856               21       46098097  HGNC:2212      1
3857               21       46098097  HGNC:2212      1
3858               21       46098097  HGNC:2212      1
3859               21       46098097  HGNC:2212      1
3860               21       46098097  HGNC:2212      1
3861               21       46098097  HGNC:2212      1
3862               21       46098097  HGNC:2212      1
3863               21       46098097  HGNC:2212      1
3864               21       46098097  HGNC:2212      1
3865               21       46098097  HGNC:2212      1
3866               21       46098097  HGNC:2212      1
3867               21       46098097  HGNC:2212      1
3868               21       46098097  HGNC:2212      1
3869               21       46098097  HGNC:2212      1
3870               21       46098097  HGNC:2212      1
3871               21       46098097  HGNC:2212      1
3872               21       46098097  HGNC:2212      1
3873               21       46098097  HGNC:2212      1
3874               21       46098097  HGNC:2212      1
3875               21       46098097  HGNC:2212      1
3876               21       46098097  HGNC:2212      1
3877               21       46098097  HGNC:2212      1
3878               21       46098097  HGNC:2212      1
3879               21       46098097  HGNC:2212      1
3880               21       46098097  HGNC:2212      1
3881               21       46098097  HGNC:2212      1
3882               21       46098097  HGNC:2212      1
3883               21       46098097  HGNC:2212      1
3884               21       46098097  HGNC:2212      1
3885               21       46098097  HGNC:2212      1
3886               21       46098097  HGNC:2212      1
3887               21       46098097  HGNC:2212      1
3888               21       46098097  HGNC:2212      1
3889               21       46098097  HGNC:2212      1
3890               21       46098097  HGNC:2212      1
3891               21       46098097  HGNC:2212      1
3892               21       46098097  HGNC:2212      1
3893               21       46098097  HGNC:2212      1
3894               21       46098097  HGNC:2212      1
3895               21       46098097  HGNC:2212      1
3896               21       46098097  HGNC:2212      1
3897               21       46098097  HGNC:2212      1
3898               21       46098097  HGNC:2212      1
3899               21       46098097  HGNC:2212      1
3900               21       46098097  HGNC:2212      1
3901               21       46098097  HGNC:2212      1
3902               21       46098097  HGNC:2212      1
3903               21       46098097  HGNC:2212      1
3904               21       46098097  HGNC:2212      1
3905               21       46098097  HGNC:2212      1
3906               21       46098097  HGNC:2212      1
3907               21       46098097  HGNC:2212      1
3908               21       46098097  HGNC:2212      1
3909               21       46098097  HGNC:2212      1
3910               21       46098097  HGNC:2212      1
3911               21       46098097  HGNC:2212      1
3912               21       46098097  HGNC:2212      1
3913               21       46098097  HGNC:2212      1
3914               21       46098097  HGNC:2212      1
3915               21       46098097  HGNC:2212      1
3916               21       46098097  HGNC:2212      1
3917               21       46098097  HGNC:2212      1
3918               21       46098097  HGNC:2212      1
3919               21       46098097  HGNC:2212      1
3920               21       46098097  HGNC:2212      1
3921               21       46098097  HGNC:2212      1
3922               21       46098097  HGNC:2212      1
3923               21       46098097  HGNC:2212      1
3924               21       46098097  HGNC:2212      1
3925               21       46098097  HGNC:2212      1
3926               21       46098097  HGNC:2212      1
3927               21       46098097  HGNC:2212      1
3928               21       46098097  HGNC:2212      1
3929               21       46098097  HGNC:2212      1
3930               21       46098097  HGNC:2212      1
3931               21       46098097  HGNC:2212      1
3932               21       46098097  HGNC:2212      1
3933               21       46098097  HGNC:2212      1
3934               21       46098097  HGNC:2212      1
3935               21       46098097  HGNC:2212      1
3936               21       46098097  HGNC:2212      1
3937               21       46098097  HGNC:2212      1
3938               21       46098097  HGNC:2212      1
3939               21       46098097  HGNC:2212      1
3940               21       46098097  HGNC:2212      1
3941               21       46098097  HGNC:2212      1
3942               21       46098097  HGNC:2212      1
3943               21       46098097  HGNC:2212      1
3944               21       46098097  HGNC:2212      1
3945               21       46098097  HGNC:2212      1
3946               21       46098097  HGNC:2212      1
3947               21       46098097  HGNC:2212      1
3948               21       46098097  HGNC:2212      1
3949               21       46098097  HGNC:2212      1
3950               21       46098097  HGNC:2212      1
3951               21       46098097  HGNC:2212      1
3952               21       46098097  HGNC:2212      1
3953               21       46098097  HGNC:2212      1
3954               21       46098097  HGNC:2212      1
3955               21       46098097  HGNC:2212      1
3956               21       46098097  HGNC:2212      1
3957               21       46098097  HGNC:2212      1
3958               21       46098097  HGNC:2212      1
3959               21       46098097  HGNC:2212      1
3960               21       46098097  HGNC:2212      1
3961               21       46098097  HGNC:2212      1
3962               21       43169008  HGNC:2388      1
3963               21       43169008  HGNC:2388      1
3964               21       43169008  HGNC:2388      1
3965               21       43169008  HGNC:2388      1
3966               21       43169008  HGNC:2388      1
3967               21       43169008  HGNC:2388      1
3968               21       43169008  HGNC:2388      1
3969               21       43169008  HGNC:2388      1
3970               21       43169008  HGNC:2388      1
3971               21       43169008  HGNC:2388      1
3972               21       43169008  HGNC:2388      1
3973               21       43169008  HGNC:2388      1
3974               21       43169008  HGNC:2388      1
3975               21       43169008  HGNC:2388      1
3976               21       43169008  HGNC:2388      1
3977               21       33589341  HGNC:2420     -1
3978               21       33589341  HGNC:2420     -1
3979               21       33589341  HGNC:2420     -1
3980               21       33589341  HGNC:2420     -1
3981               21       33589341  HGNC:2420     -1
3982               21       33589341  HGNC:2420     -1
3983               21       33589341  HGNC:2420     -1
3984               21       33589341  HGNC:2420     -1
3985               21       33589341  HGNC:2420     -1
3986               21       33589341  HGNC:2420     -1
3987               21       33589341  HGNC:2420     -1
3988               21       33589341  HGNC:2420     -1
3989               21       33589341  HGNC:2420     -1
3990               21       33589341  HGNC:2420     -1
3991               21       33589341  HGNC:2420     -1
3992               21       33589341  HGNC:2420     -1
3993               21       33589341  HGNC:2420     -1
3994               21       33589341  HGNC:2420     -1
3995               21       33589341  HGNC:2420     -1
3996               21       33589341  HGNC:2420     -1
3997               21       33589341  HGNC:2420     -1
3998               21       33589341  HGNC:2420     -1
3999               21       33589341  HGNC:2420     -1
4000               21       33589341  HGNC:2420     -1
4001               21       33589341  HGNC:2420     -1
4002               21       33589341  HGNC:2420     -1
4003               21       33589341  HGNC:2420     -1
4004               21       33589341  HGNC:2420     -1
4005               21       33589341  HGNC:2420     -1
4006               21       33589341  HGNC:2420     -1
4007               21       33589341  HGNC:2420     -1
4008               21       33589341  HGNC:2420     -1
4009               21       33589341  HGNC:2420     -1
4010               21       33589341  HGNC:2420     -1
4011               21       33589341  HGNC:2420     -1
4012               21       33589341  HGNC:2420     -1
4013               21       33589341  HGNC:2420     -1
4014               21       33589341  HGNC:2420     -1
4015               21       33589341  HGNC:2420     -1
4016               21       33589341  HGNC:2420     -1
4017               21       33589341  HGNC:2420     -1
4018               21       33589341  HGNC:2420     -1
4019               21       33589341  HGNC:2420     -1
4020               21       33589341  HGNC:2420     -1
4021               21       33589341  HGNC:2420     -1
4022               21       33589341  HGNC:2420     -1
4023               21       33589341  HGNC:2420     -1
4024               21       33589341  HGNC:2420     -1
4025               21       33589341  HGNC:2420     -1
4026               21       33589341  HGNC:2420     -1
4027               21       33589341  HGNC:2420     -1
4028               21       33589341  HGNC:2420     -1
4029               21       33589341  HGNC:2420     -1
4030               21       33589341  HGNC:2420     -1
4031               21       33589341  HGNC:2420     -1
4032               21       33589341  HGNC:2420     -1
4033               21       33589341  HGNC:2420     -1
4034               21       33589341  HGNC:2420     -1
4035               21       33589341  HGNC:2420     -1
4036               21       33589341  HGNC:2420     -1
4037               21       33589341  HGNC:2420     -1
4038               21       33589341  HGNC:2420     -1
4039               21       33589341  HGNC:2420     -1
4040               21       33589341  HGNC:2420     -1
4041               21       33589341  HGNC:2420     -1
4042               21       33589341  HGNC:2420     -1
4043               21       33589341  HGNC:2420     -1
4044               21       33589341  HGNC:2420     -1
4045               21       33589341  HGNC:2420     -1
4046               21       33589341  HGNC:2420     -1
4047               21       33589341  HGNC:2420     -1
4048               21       33589341  HGNC:2420     -1
4049               21       33589341  HGNC:2420     -1
4050               21       33589341  HGNC:2420     -1
4051               21       33589341  HGNC:2420     -1
4052               21       33589341  HGNC:2420     -1
4053               21       33589341  HGNC:2420     -1
4054               21       33589341  HGNC:2420     -1
4055               21       33589341  HGNC:2420     -1
4056               21       33589341  HGNC:2420     -1
4057               21       33589341  HGNC:2420     -1
4058               21       33589341  HGNC:2420     -1
4059               21       33589341  HGNC:2420     -1
4060               21       33589341  HGNC:2420     -1
4061               21       33589341  HGNC:2420     -1
4062               21       33589341  HGNC:2420     -1
4063               21       33589341  HGNC:2420     -1
4064               21       33589341  HGNC:2420     -1
4065               21       33589341  HGNC:2420     -1
4066               21       33589341  HGNC:2420     -1
4067               21       33589341  HGNC:2420     -1
4068               21       33589341  HGNC:2420     -1
4069               21       33589341  HGNC:2420     -1
4070               21       33589341  HGNC:2420     -1
4071               21       33589341  HGNC:2420     -1
4072               21       33589341  HGNC:2420     -1
4073               21       33589341  HGNC:2420     -1
4074               21       33589341  HGNC:2420     -1
4075               21       33589341  HGNC:2420     -1
4076               21       33589341  HGNC:2420     -1
4077               21       33589341  HGNC:2420     -1
4078               21       33589341  HGNC:2420     -1
4079               21       33589341  HGNC:2420     -1
4080               21       33589341  HGNC:2420     -1
4081               21       33589341  HGNC:2420     -1
4082               21       33589341  HGNC:2420     -1
4083               21       33589341  HGNC:2420     -1
4084               21       33589341  HGNC:2420     -1
4085               21       33589341  HGNC:2420     -1
4086               21       33589341  HGNC:2420     -1
4087               21       33589341  HGNC:2420     -1
4088               21       33589341  HGNC:2420     -1
4089               21       33589341  HGNC:2420     -1
4090               21       33589341  HGNC:2420     -1
4091               21       33589341  HGNC:2420     -1
4092               21       33589341  HGNC:2420     -1
4093               21       33589341  HGNC:2420     -1
4094               21       33589341  HGNC:2420     -1
4095               21       33589341  HGNC:2420     -1
4096               21       33589341  HGNC:2420     -1
4097               21       33589341  HGNC:2420     -1
4098               21       33589341  HGNC:2420     -1
4099               21       33589341  HGNC:2420     -1
4100               21       33589341  HGNC:2420     -1
4101               21       33589341  HGNC:2420     -1
4102               21       33589341  HGNC:2420     -1
4103               21       33589341  HGNC:2420     -1
4104               21       33589341  HGNC:2420     -1
4105               21       33589341  HGNC:2420     -1
4106               21       33589341  HGNC:2420     -1
4107               21       33589341  HGNC:2420     -1
4108               21       33589341  HGNC:2420     -1
4109               21       33589341  HGNC:2420     -1
4110               21       33589341  HGNC:2420     -1
4111               21       33589341  HGNC:2420     -1
4112               21       33589341  HGNC:2420     -1
4113               21       33589341  HGNC:2420     -1
4114               21       33589341  HGNC:2420     -1
4115               21       33589341  HGNC:2420     -1
4116               21       33589341  HGNC:2420     -1
4117               21       33589341  HGNC:2420     -1
4118               21       33589341  HGNC:2420     -1
4119               21       33589341  HGNC:2420     -1
4120               21       33589341  HGNC:2420     -1
4121               21       33589341  HGNC:2420     -1
4122               21       33589341  HGNC:2420     -1
4123               21       33589341  HGNC:2420     -1
4124               21       33589341  HGNC:2420     -1
4125               21       33589341  HGNC:2420     -1
4126               21       33589341  HGNC:2420     -1
4127               21       33589341  HGNC:2420     -1
4128               21       33589341  HGNC:2420     -1
4129               21       33589341  HGNC:2420     -1
4130               21       33589341  HGNC:2420     -1
4131               21       33589341  HGNC:2420     -1
4132               21       33589341  HGNC:2420     -1
4133               21       33589341  HGNC:2420     -1
4134               21       33589341  HGNC:2420     -1
4135               21       33589341  HGNC:2420     -1
4136               21       33589341  HGNC:2420     -1
4137               21       33589341  HGNC:2420     -1
4138               21       33589341  HGNC:2420     -1
4139               21       33589341  HGNC:2420     -1
4140               21       33589341  HGNC:2420     -1
4141               21       33589341  HGNC:2420     -1
4142               21       33589341  HGNC:2420     -1
4143               21       33589341  HGNC:2420     -1
4144               21       33589341  HGNC:2420     -1
4145               21       43772511  HGNC:2482     -1
4146               21       43772511  HGNC:2482     -1
4147               21       43772511  HGNC:2482     -1
4148               21       43772511  HGNC:2482     -1
4149               21       43772511  HGNC:2482     -1
4150               21       43772511  HGNC:2482     -1
4151               21       43772511  HGNC:2482     -1
4152               21       43772511  HGNC:2482     -1
4153               21       17512382  HGNC:2559      1
4154               21       17512382  HGNC:2559      1
4155               21       17512382  HGNC:2559      1
4156               21       17512382  HGNC:2559      1
4157               21       17512382  HGNC:2559      1
4158               21       17512382  HGNC:2559      1
4159               21       17512382  HGNC:2559      1
4160               21       17512382  HGNC:2559      1
4161               21       17512382  HGNC:2559      1
4162               21       17512382  HGNC:2559      1
4163               21       17512382  HGNC:2559      1
4164               21       17512382  HGNC:2559      1
4165               21       17512382  HGNC:2559      1
4166               21       17512382  HGNC:2559      1
4167               21       17512382  HGNC:2559      1
4168               21       17512382  HGNC:2559      1
4169               21       17512382  HGNC:2559      1
4170               21       17512382  HGNC:2559      1
4171               21       17512382  HGNC:2559      1
4172               21       17512382  HGNC:2559      1
4173               21       17512382  HGNC:2559      1
4174               21       17512382  HGNC:2559      1
4175               21       17512382  HGNC:2559      1
4176               21       17512382  HGNC:2559      1
4177               21       17512382  HGNC:2559      1
4178               21       17512382  HGNC:2559      1
4179               21       17512382  HGNC:2559      1
4180               21       13676022 HGNC:23770      1
4181               21       10576292  HGNC:2580      1
4182               21       15490530  HGNC:2581     -1
4183               21       13843133  HGNC:2647     -1
4184               21       13843133  HGNC:2647     -1
4185               21       13843133  HGNC:2647     -1
4186               21       13843133  HGNC:2647     -1
4187               21       13843133  HGNC:2647     -1
4188               21       13843133  HGNC:2647     -1
4189               21       13843133  HGNC:2647     -1
4190               21       13843133  HGNC:2647     -1
4191               21       13843133  HGNC:2647     -1
4192               21       13843133  HGNC:2647     -1
4193               21       13843133  HGNC:2647     -1
4194               21       13843133  HGNC:2647     -1
4195               21       26466209 HGNC:16274     -1
4196               21       26466209 HGNC:16274     -1
4197               21       26466209 HGNC:16274     -1
4198               21       26466209 HGNC:16274     -1
4199               21       26466209 HGNC:16274     -1
4200               21       26466209 HGNC:16274     -1
4201               21       26466209 HGNC:16274     -1
4202               21       26466209 HGNC:16274     -1
4203               21       26393635 HGNC:39560      1
4204               21       26393635 HGNC:39560      1
4205               21       26393635 HGNC:39560      1
4206               21       26393635 HGNC:39560      1
4207               21       26393635 HGNC:39560      1
4208               21       26393635 HGNC:39560      1
4209               21       26393635 HGNC:39560      1
4210               21       26393635 HGNC:39560      1
4211               21       46458899 HGNC:17217      1
4212               21       46458899 HGNC:17217      1
4213               21       46458899 HGNC:17217      1
4214               21       46458899 HGNC:17217      1
4215               21       46458899 HGNC:17217      1
4216               21       46458899 HGNC:17217      1
4217               21       46458899 HGNC:17217      1
4218               21       46458899 HGNC:17217      1
4219               21       46458899 HGNC:17217      1
4220               21       46458899 HGNC:17217      1
4221               21       46458899 HGNC:17217      1
4222               21       46458899 HGNC:17217      1
4223               21       46458899 HGNC:17217      1
4224               21       46458899 HGNC:17217      1
4225               21       46458899 HGNC:17217      1
4226               21       46458899 HGNC:17217      1
4227               21       46458899 HGNC:17217      1
4228               21       46458899 HGNC:17217      1
4229               21       46458899 HGNC:17217      1
4230               21       46458899 HGNC:17217      1
4231               21       46458899 HGNC:17217      1
4232               21       46458899 HGNC:17217      1
4233               21       46458899 HGNC:17217      1
4234               21       46458899 HGNC:17217      1
4235               21       46458899 HGNC:17217      1
4236               21       46458899 HGNC:17217      1
4237               21       46458899 HGNC:17217      1
4238               21       46458899 HGNC:17217      1
4239               21       46458899 HGNC:17217      1
4240               21       46458899 HGNC:17217      1
4241               21       46458899 HGNC:17217      1
4242               21       46458899 HGNC:17217      1
4243               21       46458899 HGNC:17217      1
4244               21       46458899 HGNC:17217      1
4245               21       46458899 HGNC:17217      1
4246               21       46458899 HGNC:17217      1
4247               21       46458899 HGNC:17217      1
4248               21       46458899 HGNC:17217      1
4249               21       46458899 HGNC:17217      1
4250               21       46458899 HGNC:17217      1
4251               21       46458899 HGNC:17217      1
4252               21       46458899 HGNC:17217      1
4253               21       46458899 HGNC:17217      1
4254               21       46458899 HGNC:17217      1
4255               21       46458899 HGNC:17217      1
4256               21       46458899 HGNC:17217      1
4257               21       46458899 HGNC:17217      1
4258               21       46458899 HGNC:17217      1
4259               21       46458899 HGNC:17217      1
4260               21       46458899 HGNC:17217      1
4261               21       46458899 HGNC:17217      1
4262               21       46458899 HGNC:17217      1
4263               21       46458899 HGNC:17217      1
4264               21       46458899 HGNC:17217      1
4265               21       46458899 HGNC:17217      1
4266               21       46458899 HGNC:17217      1
4267               21       46458899 HGNC:17217      1
4268               21       46458899 HGNC:17217      1
4269               21       46458899 HGNC:17217      1
4270               21       46458899 HGNC:17217      1
4271               21       46458899 HGNC:17217      1
4272               21       46458899 HGNC:17217      1
4273               21       46458899 HGNC:17217      1
4274               21       46458899 HGNC:17217      1
4275               21       46458899 HGNC:17217      1
4276               21       46458899 HGNC:17217      1
4277               21       46458899 HGNC:17217      1
4278               21       46458899 HGNC:17217      1
4279               21       46458899 HGNC:17217      1
4280               21       46458899 HGNC:17217      1
4281               21       46458899 HGNC:17217      1
4282               21       46458899 HGNC:17217      1
4283               21       46458899 HGNC:17217      1
4284               21       46458899 HGNC:17217      1
4285               21       46458899 HGNC:17217      1
4286               21       46458899 HGNC:17217      1
4287               21       46458899 HGNC:17217      1
4288               21       46458899 HGNC:17217      1
4289               21       46458899 HGNC:17217      1
4290               21       46458899 HGNC:17217      1
4291               21       46458899 HGNC:17217      1
4292               21       46458899 HGNC:17217      1
4293               21       46458899 HGNC:17217      1
4294               21       46458899 HGNC:17217      1
4295               21       46458899 HGNC:17217      1
4296               21       46458899 HGNC:17217      1
4297               21       46458899 HGNC:17217      1
4298               21       46458899 HGNC:17217      1
4299               21       46458899 HGNC:17217      1
4300               21       46458899 HGNC:17217      1
4301               21       46458899 HGNC:17217      1
4302               21       46458899 HGNC:17217      1
4303               21       46458899 HGNC:17217      1
4304               21       46458899 HGNC:17217      1
4305               21       46458899 HGNC:17217      1
4306               21       46458899 HGNC:17217      1
4307               21       46458899 HGNC:17217      1
4308               21       46458899 HGNC:17217      1
4309               21       46458899 HGNC:17217      1
4310               21       46458899 HGNC:17217      1
4311               21       46458899 HGNC:17217      1
4312               21       46458899 HGNC:17217      1
4313               21       46458899 HGNC:17217      1
4314               21       46458899 HGNC:17217      1
4315               21       46458899 HGNC:17217      1
4316               21       46458899 HGNC:17217      1
4317               21       46458899 HGNC:17217      1
4318               21       46458899 HGNC:17217      1
4319               21       46458899 HGNC:17217      1
4320               21       46458899 HGNC:17217      1
4321               21       46458899 HGNC:17217      1
4322               21       46458899 HGNC:17217      1
4323               21       46458899 HGNC:17217      1
4324               21       46458899 HGNC:17217      1
4325               21       46458899 HGNC:17217      1
4326               21       46458899 HGNC:17217      1
4327               21       46458899 HGNC:17217      1
4328               21       46458899 HGNC:17217      1
4329               21       46458899 HGNC:17217      1
4330               21       46458899 HGNC:17217      1
4331               21       46458899 HGNC:17217      1
4332               21       46458899 HGNC:17217      1
4333               21       46458899 HGNC:17217      1
4334               21       46458899 HGNC:17217      1
4335               21       46458899 HGNC:17217      1
4336               21       46458899 HGNC:17217      1
4337               21       46458899 HGNC:17217      1
4338               21       46458899 HGNC:17217      1
4339               21       46458899 HGNC:17217      1
4340               21       46458899 HGNC:17217      1
4341               21       46458899 HGNC:17217      1
4342               21       46458899 HGNC:17217      1
4343               21       46458899 HGNC:17217      1
4344               21       46458899 HGNC:17217      1
4345               21       46458899 HGNC:17217      1
4346               21       46458899 HGNC:17217      1
4347               21       46458899 HGNC:17217      1
4348               21       46458899 HGNC:17217      1
4349               21       46458899 HGNC:17217      1
4350               21       46458899 HGNC:17217      1
4351               21       46458899 HGNC:17217      1
4352               21       46458899 HGNC:17217      1
4353               21       46458899 HGNC:17217      1
4354               21       46458899 HGNC:17217      1
4355               21       46458899 HGNC:17217      1
4356               21       46458899 HGNC:17217      1
4357               21       46458899 HGNC:17217      1
4358               21       46458899 HGNC:17217      1
4359               21       46458899 HGNC:17217      1
4360               21       46458899 HGNC:17217      1
4361               21       46458899 HGNC:17217      1
4362               21       46458899 HGNC:17217      1
4363               21       46458899 HGNC:17217      1
4364               21       46458899 HGNC:17217      1
4365               21       46458899 HGNC:17217      1
4366               21       46458899 HGNC:17217      1
4367               21       46458899 HGNC:17217      1
4368               21       46458899 HGNC:17217      1
4369               21       46458899 HGNC:17217      1
4370               21       46458899 HGNC:17217      1
4371               21       46458899 HGNC:17217      1
4372               21       46458899 HGNC:17217      1
4373               21       46458899 HGNC:17217      1
4374               21       46458899 HGNC:17217      1
4375               21       46458899 HGNC:17217      1
4376               21       46458899 HGNC:17217      1
4377               21       46458899 HGNC:17217      1
4378               21       46458899 HGNC:17217      1
4379               21       46458899 HGNC:17217      1
4380               21       46458899 HGNC:17217      1
4381               21       46458899 HGNC:17217      1
4382               21       46458899 HGNC:17217      1
4383               21       46458899 HGNC:17217      1
4384               21       46458899 HGNC:17217      1
4385               21       46458899 HGNC:17217      1
4386               21       46458899 HGNC:17217      1
4387               21       46458899 HGNC:17217      1
4388               21       46458899 HGNC:17217      1
4389               21       46458899 HGNC:17217      1
4390               21       46458899 HGNC:17217      1
4391               21       46458899 HGNC:17217      1
4392               21       46458899 HGNC:17217      1
4393               21       46458899 HGNC:17217      1
4394               21       46458899 HGNC:17217      1
4395               21       46458899 HGNC:17217      1
4396               21       46458899 HGNC:17217      1
4397               21       46458899 HGNC:17217      1
4398               21       46458899 HGNC:17217      1
4399               21       46458899 HGNC:17217      1
4400               21       46458899 HGNC:17217      1
4401               21       46458899 HGNC:17217      1
4402               21       46462471 HGNC:41430      1
4403               21       46462471 HGNC:41430      1
4404               21       46462471 HGNC:41430      1
4405               21       46462471 HGNC:41430      1
4406               21       33485530  HGNC:1297     -1
4407               21       33485530  HGNC:1297     -1
4408               21       33485530  HGNC:1297     -1
4409               21       33485530  HGNC:1297     -1
4410               21       33485530  HGNC:1297     -1
4411               21       33485530  HGNC:1297     -1
4412               21       33485530  HGNC:1297     -1
4413               21       33485530  HGNC:1297     -1
4414               21       33485530  HGNC:1297     -1
4415               21       44246339  HGNC:2980     -1
4416               21       44246339  HGNC:2980     -1
4417               21       44246339  HGNC:2980     -1
4418               21       44246339  HGNC:2980     -1
4419               21       44246339  HGNC:2980     -1
4420               21       44246339  HGNC:2980     -1
4421               21       44246339  HGNC:2980     -1
4422               21       44246339  HGNC:2980     -1
4423               21       44246339  HGNC:2980     -1
4424               21       44246339  HGNC:2980     -1
4425               21       44246339  HGNC:2980     -1
4426               21       44246339  HGNC:2980     -1
4427               21       44246339  HGNC:2980     -1
4428               21       44246339  HGNC:2980     -1
4429               21       44246339  HGNC:2980     -1
4430               21       44246339  HGNC:2980     -1
4431               21       44246339  HGNC:2980     -1
4432               21       44246339  HGNC:2980     -1
4433               21       44246339  HGNC:2980     -1
4434               21       44246339  HGNC:2980     -1
4435               21       44246339  HGNC:2980     -1
4436               21       44246339  HGNC:2980     -1
4437               21       44246339  HGNC:2980     -1
4438               21       44246339  HGNC:2980     -1
4439               21       44246339  HGNC:2980     -1
4440               21       44246339  HGNC:2980     -1
4441               21       44246339  HGNC:2980     -1
4442               21       44246339  HGNC:2980     -1
4443               21       44246339  HGNC:2980     -1
4444               21       44246339  HGNC:2980     -1
4445               21       44246339  HGNC:2980     -1
4446               21       44246339  HGNC:2980     -1
4447               21       44246339  HGNC:2980     -1
4448               21       44246339  HGNC:2980     -1
4449               21       44246339  HGNC:2980     -1
4450               21       44246339  HGNC:2980     -1
4451               21       44246339  HGNC:2980     -1
4452               21       33559542  HGNC:2993     -1
4453               21       33559542  HGNC:2993     -1
4454               21       33559542  HGNC:2993     -1
4455               21       33559542  HGNC:2993     -1
4456               21       33559542  HGNC:2993     -1
4457               21       33559542  HGNC:2993     -1
4458               21       33559542  HGNC:2993     -1
4459               21       33559542  HGNC:2993     -1
4460               21       33559542  HGNC:2993     -1
4461               21       33559542  HGNC:2993     -1
4462               21       33559542  HGNC:2993     -1
4463               21       33559542  HGNC:2993     -1
4464               21       33559542  HGNC:2993     -1
4465               21       33559542  HGNC:2993     -1
4466               21       33559542  HGNC:2993     -1
4467               21       33559542  HGNC:2993     -1
4468               21       33559542  HGNC:2993     -1
4469               21       33559542  HGNC:2993     -1
4470               21       33559542  HGNC:2993     -1
4471               21       33559542  HGNC:2993     -1
4472               21       33559542  HGNC:2993     -1
4473               21       33559542  HGNC:2993     -1
4474               21       33559542  HGNC:2993     -1
4475               21       33559542  HGNC:2993     -1
4476               21       33559542  HGNC:2993     -1
4477               21       33559542  HGNC:2993     -1
4478               21       33559542  HGNC:2993     -1
4479               21       33559542  HGNC:2993     -1
4480               21       33559542  HGNC:2993     -1
4481               21       33559542  HGNC:2993     -1
4482               21       33559542  HGNC:2993     -1
4483               21       33559542  HGNC:2993     -1
4484               21       33559542  HGNC:2993     -1
4485               21       33559542  HGNC:2993     -1
4486               21       33559542  HGNC:2993     -1
4487               21       33559542  HGNC:2993     -1
4488               21       33559542  HGNC:2993     -1
4489               21       33559542  HGNC:2993     -1
4490               21       33559542  HGNC:2993     -1
4491               21       33559542  HGNC:2993     -1
4492               21       33559542  HGNC:2993     -1
4493               21       33559542  HGNC:2993     -1
4494               21       33559542  HGNC:2993     -1
4495               21       33559542  HGNC:2993     -1
4496               21       33559542  HGNC:2993     -1
4497               21       33559542  HGNC:2993     -1
4498               21       33559542  HGNC:2993     -1
4499               21       33559542  HGNC:2993     -1
4500               21       33559542  HGNC:2993     -1
4501               21       33559542  HGNC:2993     -1
4502               21       33559542  HGNC:2993     -1
4503               21       33559542  HGNC:2993     -1
4504               21       33559542  HGNC:2993     -1
4505               21       33559542  HGNC:2993     -1
4506               21       33559542  HGNC:2993     -1
4507               21       33559542  HGNC:2993     -1
4508               21       33559542  HGNC:2993     -1
4509               21       33559542  HGNC:2993     -1
4510               21       33559542  HGNC:2993     -1
4511               21       33559542  HGNC:2993     -1
4512               21       33559542  HGNC:2993     -1
4513               21       33559542  HGNC:2993     -1
4514               21       33559542  HGNC:2993     -1
4515               21       33559542  HGNC:2993     -1
4516               21       33559542  HGNC:2993     -1
4517               21       33559542  HGNC:2993     -1
4518               21       33559542  HGNC:2993     -1
4519               21       33559542  HGNC:2993     -1
4520               21       33559542  HGNC:2993     -1
4521               21       33559542  HGNC:2993     -1
4522               21       33559542  HGNC:2993     -1
4523               21       33559542  HGNC:2993     -1
4524               21       33559542  HGNC:2993     -1
4525               21       33559542  HGNC:2993     -1
4526               21       33559542  HGNC:2993     -1
4527               21       33559542  HGNC:2993     -1
4528               21       33559542  HGNC:2993     -1
4529               21       33559542  HGNC:2993     -1
4530               21       33559542  HGNC:2993     -1
4531               21       33559542  HGNC:2993     -1
4532               21       33559542  HGNC:2993     -1
4533               21       33559542  HGNC:2993     -1
4534               21       33559542  HGNC:2993     -1
4535               21       33559542  HGNC:2993     -1
4536               21       33559542  HGNC:2993     -1
4537               21       33559542  HGNC:2993     -1
4538               21       33559542  HGNC:2993     -1
4539               21       33559542  HGNC:2993     -1
4540               21       33559542  HGNC:2993     -1
4541               21       33559542  HGNC:2993     -1
4542               21       33559542  HGNC:2993     -1
4543               21       33559542  HGNC:2993     -1
4544               21       33559542  HGNC:2993     -1
4545               21       36156782  HGNC:1291      1
4546               21       36156782  HGNC:1291      1
4547               21       36156782  HGNC:1291      1
4548               21       36156782  HGNC:1291      1
4549               21       36156782  HGNC:1291      1
4550               21       36156782  HGNC:1291      1
4551               21       36156782  HGNC:1291      1
4552               21       36156782  HGNC:1291      1
4553               21       36156782  HGNC:1291      1
4554               21       36156782  HGNC:1291      1
4555               21       36156782  HGNC:1291      1
4556               21       36156782  HGNC:1291      1
4557               21       36156782  HGNC:1291      1
4558               21       36156782  HGNC:1291      1
4559               21       36156782  HGNC:1291      1
4560               21       36156782  HGNC:1291      1
4561               21       36156782  HGNC:1291      1
4562               21       36156782  HGNC:1291      1
4563               21       36156782  HGNC:1291      1
4564               21       36156782  HGNC:1291      1
4565               21       36156782  HGNC:1291      1
4566               21       36156782  HGNC:1291      1
4567               21       36156782  HGNC:1291      1
4568               21       36156782  HGNC:1291      1
4569               21       36156782  HGNC:1291      1
4570               21       36156782  HGNC:1291      1
4571               21       36156782  HGNC:1291      1
4572               21       36156782  HGNC:1291      1
4573               21       36156782  HGNC:1291      1
4574               21       36156782  HGNC:1291      1
4575               21       36156782  HGNC:1291      1
4576               21       36156782  HGNC:1291      1
4577               21       36156782  HGNC:1291      1
4578               21       36156782  HGNC:1291      1
4579               21       36156782  HGNC:1291      1
4580               21       36156782  HGNC:1291      1
4581               21       36156782  HGNC:1291      1
4582               21       36156782  HGNC:1291      1
4583               21       36156782  HGNC:1291      1
4584               21       36156782  HGNC:1291      1
4585               21       36156782  HGNC:1291      1
4586               21       36156782  HGNC:1291      1
4587               21       36156782  HGNC:1291      1
4588               21       36156782  HGNC:1291      1
4589               21       36156782  HGNC:1291      1
4590               21       36156782  HGNC:1291      1
4591               21       36156782  HGNC:1291      1
4592               21       36156782  HGNC:1291      1
4593               21       36156782  HGNC:1291      1
4594               21       36156782  HGNC:1291      1
4595               21       36156782  HGNC:1291      1
4596               21       36943267 HGNC:32171      1
4597               21       36943267 HGNC:32171      1
4598               21       40010999  HGNC:3039     -1
4599               21       40010999  HGNC:3039     -1
4600               21       40010999  HGNC:3039     -1
4601               21       40010999  HGNC:3039     -1
4602               21       40010999  HGNC:3039     -1
4603               21       40010999  HGNC:3039     -1
4604               21       40010999  HGNC:3039     -1
4605               21       40010999  HGNC:3039     -1
4606               21       40010999  HGNC:3039     -1
4607               21       40010999  HGNC:3039     -1
4608               21       40010999  HGNC:3039     -1
4609               21       40010999  HGNC:3039     -1
4610               21       40010999  HGNC:3039     -1
4611               21       40010999  HGNC:3039     -1
4612               21       40010999  HGNC:3039     -1
4613               21       40010999  HGNC:3039     -1
4614               21       40010999  HGNC:3039     -1
4615               21       40010999  HGNC:3039     -1
4616               21       40010999  HGNC:3039     -1
4617               21       40010999  HGNC:3039     -1
4618               21       40010999  HGNC:3039     -1
4619               21       40010999  HGNC:3039     -1
4620               21       40010999  HGNC:3039     -1
4621               21       40010999  HGNC:3039     -1
4622               21       40010999  HGNC:3039     -1
4623               21       40010999  HGNC:3039     -1
4624               21       40010999  HGNC:3039     -1
4625               21       40010999  HGNC:3039     -1
4626               21       40010999  HGNC:3039     -1
4627               21       40010999  HGNC:3039     -1
4628               21       40010999  HGNC:3039     -1
4629               21       40010999  HGNC:3039     -1
4630               21       40010999  HGNC:3039     -1
4631               21       40010999  HGNC:3039     -1
4632               21       40010999  HGNC:3039     -1
4633               21       40010999  HGNC:3039     -1
4634               21       40010999  HGNC:3039     -1
4635               21       40010999  HGNC:3039     -1
4636               21       40010999  HGNC:3039     -1
4637               21       40010999  HGNC:3039     -1
4638               21       40010999  HGNC:3039     -1
4639               21       40010999  HGNC:3039     -1
4640               21       40010999  HGNC:3039     -1
4641               21       40010999  HGNC:3039     -1
4642               21       40010999  HGNC:3039     -1
4643               21       40010999  HGNC:3039     -1
4644               21       40010999  HGNC:3039     -1
4645               21       40010999  HGNC:3039     -1
4646               21       40010999  HGNC:3039     -1
4647               21       40010999  HGNC:3039     -1
4648               21       40010999  HGNC:3039     -1
4649               21       40010999  HGNC:3039     -1
4650               21       40010999  HGNC:3039     -1
4651               21       40010999  HGNC:3039     -1
4652               21       40010999  HGNC:3039     -1
4653               21       40010999  HGNC:3039     -1
4654               21       40010999  HGNC:3039     -1
4655               21       40010999  HGNC:3039     -1
4656               21       40010999  HGNC:3039     -1
4657               21       40010999  HGNC:3039     -1
4658               21       40010999  HGNC:3039     -1
4659               21       40010999  HGNC:3039     -1
4660               21       40010999  HGNC:3039     -1
4661               21       40010999  HGNC:3039     -1
4662               21       40010999  HGNC:3039     -1
4663               21       40010999  HGNC:3039     -1
4664               21       40010999  HGNC:3039     -1
4665               21       40010999  HGNC:3039     -1
4666               21       40010999  HGNC:3039     -1
4667               21       40010999  HGNC:3039     -1
4668               21       40010999  HGNC:3039     -1
4669               21       40010999  HGNC:3039     -1
4670               21       40010999  HGNC:3039     -1
4671               21       40010999  HGNC:3039     -1
4672               21       40010999  HGNC:3039     -1
4673               21       40010999  HGNC:3039     -1
4674               21       40010999  HGNC:3039     -1
4675               21       40010999  HGNC:3039     -1
4676               21       40010999  HGNC:3039     -1
4677               21       40010999  HGNC:3039     -1
4678               21       40010999  HGNC:3039     -1
4679               21       40010999  HGNC:3039     -1
4680               21       40010999  HGNC:3039     -1
4681               21       40010999  HGNC:3039     -1
4682               21       40010999  HGNC:3039     -1
4683               21       40010999  HGNC:3039     -1
4684               21       40010999  HGNC:3039     -1
4685               21       40010999  HGNC:3039     -1
4686               21       40010999  HGNC:3039     -1
4687               21       40010999  HGNC:3039     -1
4688               21       40010999  HGNC:3039     -1
4689               21       40010999  HGNC:3039     -1
4690               21       40383083 HGNC:40197      1
4691               21       40383083 HGNC:40197      1
4692               21       40383083 HGNC:40197      1
4693               21       40383083 HGNC:40197      1
4694               21       40383083 HGNC:40197      1
4695               21       40383083 HGNC:40197      1
4696               21       40383083 HGNC:40197      1
4697               21       40383083 HGNC:40197      1
4698               21       40383083 HGNC:40197      1
4699               21       40383083 HGNC:40197      1
4700               21       40615378 HGNC:41327     -1
4701               21       40615378 HGNC:41327     -1
4702               21       40615378 HGNC:41327     -1
4703               21       40615378 HGNC:41327     -1
4704               21       40615378 HGNC:41327     -1
4705               21       40615378 HGNC:41327     -1
4706               21       40615378 HGNC:41327     -1
4707               21       40615378 HGNC:41327     -1
4708               21       38206156 HGNC:16302      1
4709               21       38206156 HGNC:16302      1
4710               21       38206156 HGNC:16302      1
4711               21       37223420  HGNC:3044     -1
4712               21       37223420  HGNC:3044     -1
4713               21       37223420  HGNC:3044     -1
4714               21       37223420  HGNC:3044     -1
4715               21       37223420  HGNC:3044     -1
4716               21       37223420  HGNC:3044     -1
4717               21       37223420  HGNC:3044     -1
4718               21       37223420  HGNC:3044     -1
4719               21       37223420  HGNC:3044     -1
4720               21       37223420  HGNC:3044     -1
4721               21       37223420  HGNC:3044     -1
4722               21       37223420  HGNC:3044     -1
4723               21       37223420  HGNC:3044     -1
4724               21       37223420  HGNC:3044     -1
4725               21       37223420  HGNC:3044     -1
4726               21       37223420  HGNC:3044     -1
4727               21       37223420  HGNC:3044     -1
4728               21       37223420  HGNC:3044     -1
4729               21       37223420  HGNC:3044     -1
4730               21       37223420  HGNC:3044     -1
4731               21       37223420  HGNC:3044     -1
4732               21       37223420  HGNC:3044     -1
4733               21       37223420  HGNC:3044     -1
4734               21       37223420  HGNC:3044     -1
4735               21       37223420  HGNC:3044     -1
4736               21       37223420  HGNC:3044     -1
4737               21       37223420  HGNC:3044     -1
4738               21       37223420  HGNC:3044     -1
4739               21       37223420  HGNC:3044     -1
4740               21       37223420  HGNC:3044     -1
4741               21       37223420  HGNC:3044     -1
4742               21       37223420  HGNC:3044     -1
4743               21       37223420  HGNC:3044     -1
4744               21       37223420  HGNC:3044     -1
4745               21       37223420  HGNC:3044     -1
4746               21       37223420  HGNC:3044     -1
4747               21       37223420  HGNC:3044     -1
4748               21       37223420  HGNC:3044     -1
4749               21       37223420  HGNC:3044     -1
4750               21       37223420  HGNC:3044     -1
4751               21       37223420  HGNC:3044     -1
4752               21       37223420  HGNC:3044     -1
4753               21       37223420  HGNC:3044     -1
4754               21       37223420  HGNC:3044     -1
4755               21       37223420  HGNC:3044     -1
4756               21       37223420  HGNC:3044     -1
4757               21       37223420  HGNC:3044     -1
4758               21       37223420  HGNC:3044     -1
4759               21       37223420  HGNC:3044     -1
4760               21       37223420  HGNC:3044     -1
4761               21       37223420  HGNC:3044     -1
4762               21       37223420  HGNC:3044     -1
4763               21       37223420  HGNC:3044     -1
4764               21       37223420  HGNC:3044     -1
4765               21       37223420  HGNC:3044     -1
4766               21       37223420  HGNC:3044     -1
4767               21       37223420  HGNC:3044     -1
4768               21       37223420  HGNC:3044     -1
4769               21       37223420  HGNC:3044     -1
4770               21       37223420  HGNC:3044     -1
4771               21       37223420  HGNC:3044     -1
4772               21       37223420  HGNC:3044     -1
4773               21       37223420  HGNC:3044     -1
4774               21       37223420  HGNC:3044     -1
4775               21       37223420  HGNC:3044     -1
4776               21       37951425  HGNC:3045     -1
4777               21       37951425  HGNC:3045     -1
4778               21       37951425  HGNC:3045     -1
4779               21       37951425  HGNC:3045     -1
4780               21       37951425  HGNC:3045     -1
4781               21       37951425  HGNC:3045     -1
4782               21       37951425  HGNC:3045     -1
4783               21       37951425  HGNC:3045     -1
4784               21       37951425  HGNC:3045     -1
4785               21       37951425  HGNC:3045     -1
4786               21       37951425  HGNC:3045     -1
4787               21       37951425  HGNC:3045     -1
4788               21       37951425  HGNC:3045     -1
4789               21       38006544 HGNC:41328     -1
4790               21       38006544 HGNC:41328     -1
4791               21       38121451 HGNC:16707      1
4792               21       38121451 HGNC:16707      1
4793               21       38121451 HGNC:16707      1
4794               21       38121451 HGNC:16707      1
4795               21       38121451 HGNC:16707      1
4796               21       38121451 HGNC:16707      1
4797               21       38121451 HGNC:16707      1
4798               21       38121451 HGNC:16707      1
4799               21       38121451 HGNC:16707      1
4800               21       38121451 HGNC:16707      1
4801               21       38121451 HGNC:16707      1
4802               21       38121451 HGNC:16707      1
4803               21       38121451 HGNC:16707      1
4804               21       38121451 HGNC:16707      1
4805               21       38121451 HGNC:16707      1
4806               21       38121451 HGNC:16707      1
4807               21       38121451 HGNC:16707      1
4808               21       38121451 HGNC:16707      1
4809               21       38121451 HGNC:16707      1
4810               21       38121451 HGNC:16707      1
4811               21       38121451 HGNC:16707      1
4812               21       38121451 HGNC:16707      1
4813               21       38121451 HGNC:16707      1
4814               21       38121451 HGNC:16707      1
4815               21       38121451 HGNC:16707      1
4816               21       38121451 HGNC:16707      1
4817               21       38121451 HGNC:16707      1
4818               21       38121451 HGNC:16707      1
4819               21       38121451 HGNC:16707      1
4820               21       38121451 HGNC:16707      1
4821               21       37208503 HGNC:16301      1
4822               21       37208503 HGNC:16301      1
4823               21       37208503 HGNC:16301      1
4824               21       37208503 HGNC:16301      1
4825               21       37208503 HGNC:16301      1
4826               21       37208503 HGNC:16301      1
4827               21       37208503 HGNC:16301      1
4828               21       37208503 HGNC:16301      1
4829               21       37208503 HGNC:16301      1
4830               21       37208503 HGNC:16301      1
4831               21       37208503 HGNC:16301      1
4832               21       37208503 HGNC:16301      1
4833               21       37208503 HGNC:16301      1
4834               21       37208503 HGNC:16301      1
4835               21       37208503 HGNC:16301      1
4836               21       37208503 HGNC:16301      1
4837               21       37208503 HGNC:16301      1
4838               21       37208503 HGNC:16301      1
4839               21       37208503 HGNC:16301      1
4840               21       37208503 HGNC:16301      1
4841               21       37208503 HGNC:16301      1
4842               21       46653558 HGNC:23769     -1
4843               21       37365790  HGNC:3091      1
4844               21       37365790  HGNC:3091      1
4845               21       37365790  HGNC:3091      1
4846               21       37365790  HGNC:3091      1
4847               21       37365790  HGNC:3091      1
4848               21       37365790  HGNC:3091      1
4849               21       37365790  HGNC:3091      1
4850               21       37365790  HGNC:3091      1
4851               21       37365790  HGNC:3091      1
4852               21       37365790  HGNC:3091      1
4853               21       37365790  HGNC:3091      1
4854               21       37365790  HGNC:3091      1
4855               21       37365790  HGNC:3091      1
4856               21       37365790  HGNC:3091      1
4857               21       37365790  HGNC:3091      1
4858               21       37365790  HGNC:3091      1
4859               21       37365790  HGNC:3091      1
4860               21       37365790  HGNC:3091      1
4861               21       37365790  HGNC:3091      1
4862               21       37365790  HGNC:3091      1
4863               21       37365790  HGNC:3091      1
4864               21       37365790  HGNC:3091      1
4865               21       37365790  HGNC:3091      1
4866               21       37365790  HGNC:3091      1
4867               21       37365790  HGNC:3091      1
4868               21       37365790  HGNC:3091      1
4869               21       37365790  HGNC:3091      1
4870               21       37365790  HGNC:3091      1
4871               21       37365790  HGNC:3091      1
4872               21       37365790  HGNC:3091      1
4873               21       37365790  HGNC:3091      1
4874               21       37365790  HGNC:3091      1
4875               21       37365790  HGNC:3091      1
4876               21       37365790  HGNC:3091      1
4877               21       37365790  HGNC:3091      1
4878               21       37365790  HGNC:3091      1
4879               21       37365790  HGNC:3091      1
4880               21       37365790  HGNC:3091      1
4881               21       37365790  HGNC:3091      1
4882               21       37365790  HGNC:3091      1
4883               21       37365790  HGNC:3091      1
4884               21       37365790  HGNC:3091      1
4885               21       37365790  HGNC:3091      1
4886               21       37365790  HGNC:3091      1
4887               21       37365790  HGNC:3091      1
4888               21       37365790  HGNC:3091      1
4889               21       37365790  HGNC:3091      1
4890               21       37365790  HGNC:3091      1
4891               21       37365790  HGNC:3091      1
4892               21       37365790  HGNC:3091      1
4893               21       37365790  HGNC:3091      1
4894               21       37365790  HGNC:3091      1
4895               21       37365790  HGNC:3091      1
4896               21       37365790  HGNC:3091      1
4897               21       37365790  HGNC:3091      1
4898               21       37365790  HGNC:3091      1
4899               21       37365790  HGNC:3091      1
4900               21       37365790  HGNC:3091      1
4901               21       37365790  HGNC:3091      1
4902               21       37365790  HGNC:3091      1
4903               21       37365790  HGNC:3091      1
4904               21       37365790  HGNC:3091      1
4905               21       37365790  HGNC:3091      1
4906               21       37365790  HGNC:3091      1
4907               21       23390258  HGNC:3191      1
4908               21       10330732  HGNC:3276      1
4909               21       27367014  HGNC:3283     -1
4910               21       38380027  HGNC:3446     -1
4911               21       38380027  HGNC:3446     -1
4912               21       38380027  HGNC:3446     -1
4913               21       38380027  HGNC:3446     -1
4914               21       38380027  HGNC:3446     -1
4915               21       38380027  HGNC:3446     -1
4916               21       38380027  HGNC:3446     -1
4917               21       38380027  HGNC:3446     -1
4918               21       38380027  HGNC:3446     -1
4919               21       38380027  HGNC:3446     -1
4920               21       38380027  HGNC:3446     -1
4921               21       38380027  HGNC:3446     -1
4922               21       38380027  HGNC:3446     -1
4923               21       38380027  HGNC:3446     -1
4924               21       38380027  HGNC:3446     -1
4925               21       38380027  HGNC:3446     -1
4926               21       38380027  HGNC:3446     -1
4927               21       38380027  HGNC:3446     -1
4928               21       38380027  HGNC:3446     -1
4929               21       38380027  HGNC:3446     -1
4930               21       38380027  HGNC:3446     -1
4931               21       38380027  HGNC:3446     -1
4932               21       38380027  HGNC:3446     -1
4933               21       38380027  HGNC:3446     -1
4934               21       38380027  HGNC:3446     -1
4935               21       38380027  HGNC:3446     -1
4936               21       38380027  HGNC:3446     -1
4937               21       38380027  HGNC:3446     -1
4938               21       38380027  HGNC:3446     -1
4939               21       38380027  HGNC:3446     -1
4940               21       38380027  HGNC:3446     -1
4941               21       38380027  HGNC:3446     -1
4942               21       38380027  HGNC:3446     -1
4943               21       38380027  HGNC:3446     -1
4944               21       38380027  HGNC:3446     -1
4945               21       38380027  HGNC:3446     -1
4946               21       38380027  HGNC:3446     -1
4947               21       38380027  HGNC:3446     -1
4948               21       38380027  HGNC:3446     -1
4949               21       38380027  HGNC:3446     -1
4950               21       38380027  HGNC:3446     -1
4951               21       38380027  HGNC:3446     -1
4952               21       38380027  HGNC:3446     -1
4953               21       38380027  HGNC:3446     -1
4954               21       38380027  HGNC:3446     -1
4955               21       38380027  HGNC:3446     -1
4956               21       38380027  HGNC:3446     -1
4957               21       38380027  HGNC:3446     -1
4958               21       38380027  HGNC:3446     -1
4959               21       38380027  HGNC:3446     -1
4960               21       38380027  HGNC:3446     -1
4961               21       38380027  HGNC:3446     -1
4962               21       38380027  HGNC:3446     -1
4963               21       38380027  HGNC:3446     -1
4964               21       38380027  HGNC:3446     -1
4965               21       38380027  HGNC:3446     -1
4966               21       38380027  HGNC:3446     -1
4967               21       38380027  HGNC:3446     -1
4968               21       38380027  HGNC:3446     -1
4969               21       38380027  HGNC:3446     -1
4970               21       38380027  HGNC:3446     -1
4971               21       38380027  HGNC:3446     -1
4972               21       38380027  HGNC:3446     -1
4973               21       38380027  HGNC:3446     -1
4974               21       38380027  HGNC:3446     -1
4975               21       38380027  HGNC:3446     -1
4976               21       38380027  HGNC:3446     -1
4977               21       38380027  HGNC:3446     -1
4978               21       38380027  HGNC:3446     -1
4979               21       38380027  HGNC:3446     -1
4980               21       38380027  HGNC:3446     -1
4981               21       38380027  HGNC:3446     -1
4982               21       38380027  HGNC:3446     -1
4983               21       38380027  HGNC:3446     -1
4984               21       38380027  HGNC:3446     -1
4985               21       38380027  HGNC:3446     -1
4986               21       38380027  HGNC:3446     -1
4987               21       38380027  HGNC:3446     -1
4988               21       38380027  HGNC:3446     -1
4989               21       38380027  HGNC:3446     -1
4990               21       38380027  HGNC:3446     -1
4991               21       38380027  HGNC:3446     -1
4992               21       38380027  HGNC:3446     -1
4993               21       38380027  HGNC:3446     -1
4994               21       38380027  HGNC:3446     -1
4995               21       38380027  HGNC:3446     -1
4996               21       38380027  HGNC:3446     -1
4997               21       38380027  HGNC:3446     -1
4998               21       38380027  HGNC:3446     -1
4999               21       38380027  HGNC:3446     -1
5000               21       38380027  HGNC:3446     -1
5001               21       38380027  HGNC:3446     -1
5002               21       38380027  HGNC:3446     -1
5003               21       38380027  HGNC:3446     -1
5004               21       38380027  HGNC:3446     -1
5005               21       38380027  HGNC:3446     -1
5006               21       38380027  HGNC:3446     -1
5007               21       38380027  HGNC:3446     -1
5008               21       38380027  HGNC:3446     -1
5009               21       38380027  HGNC:3446     -1
5010               21       38380027  HGNC:3446     -1
5011               21       38380027  HGNC:3446     -1
5012               21       38380027  HGNC:3446     -1
5013               21       38380027  HGNC:3446     -1
5014               21       38380027  HGNC:3446     -1
5015               21       38380027  HGNC:3446     -1
5016               21       38380027  HGNC:3446     -1
5017               21       38380027  HGNC:3446     -1
5018               21       38380027  HGNC:3446     -1
5019               21       38380027  HGNC:3446     -1
5020               21       38380027  HGNC:3446     -1
5021               21       38380027  HGNC:3446     -1
5022               21       38380027  HGNC:3446     -1
5023               21       38380027  HGNC:3446     -1
5024               21       38380027  HGNC:3446     -1
5025               21       38380027  HGNC:3446     -1
5026               21       38380027  HGNC:3446     -1
5027               21       38380027  HGNC:3446     -1
5028               21       38380027  HGNC:3446     -1
5029               21       38380027  HGNC:3446     -1
5030               21       38380027  HGNC:3446     -1
5031               21       38380027  HGNC:3446     -1
5032               21       38380027  HGNC:3446     -1
5033               21       38380027  HGNC:3446     -1
5034               21       38380027  HGNC:3446     -1
5035               21       38380027  HGNC:3446     -1
5036               21       38380027  HGNC:3446     -1
5037               21       38380027  HGNC:3446     -1
5038               21       38380027  HGNC:3446     -1
5039               21       38380027  HGNC:3446     -1
5040               21       38380027  HGNC:3446     -1
5041               21       38380027  HGNC:3446     -1
5042               21       38380027  HGNC:3446     -1
5043               21       38380027  HGNC:3446     -1
5044               21       38380027  HGNC:3446     -1
5045               21       38380027  HGNC:3446     -1
5046               21       38380027  HGNC:3446     -1
5047               21       38380027  HGNC:3446     -1
5048               21       38380027  HGNC:3446     -1
5049               21       38380027  HGNC:3446     -1
5050               21       38380027  HGNC:3446     -1
5051               21       38380027  HGNC:3446     -1
5052               21       14143581 HGNC:38012      1
5053               21       42916803 HGNC:17216     -1
5054               21       42916803 HGNC:17216     -1
5055               21       42916803 HGNC:17216     -1
5056               21       38805307  HGNC:3489      1
5057               21       38805307  HGNC:3489      1
5058               21       38805307  HGNC:3489      1
5059               21       38805307  HGNC:3489      1
5060               21       38805307  HGNC:3489      1
5061               21       38805307  HGNC:3489      1
5062               21       38805307  HGNC:3489      1
5063               21       38805307  HGNC:3489      1
5064               21       38805307  HGNC:3489      1
5065               21       38805307  HGNC:3489      1
5066               21       38805307  HGNC:3489      1
5067               21       38805307  HGNC:3489      1
5068               21       38805307  HGNC:3489      1
5069               21       38805307  HGNC:3489      1
5070               21       38805307  HGNC:3489      1
5071               21       38805307  HGNC:3489      1
5072               21       38805307  HGNC:3489      1
5073               21       38805307  HGNC:3489      1
5074               21       38805307  HGNC:3489      1
5075               21       38805307  HGNC:3489      1
5076               21       38805307  HGNC:3489      1
5077               21       38805307  HGNC:3489      1
5078               21       38805307  HGNC:3489      1
5079               21       38805307  HGNC:3489      1
5080               21       38805307  HGNC:3489      1
5081               21       38805307  HGNC:3489      1
5082               21       38805307  HGNC:3489      1
5083               21       38805307  HGNC:3489      1
5084               21       38805307  HGNC:3489      1
5085               21       38805307  HGNC:3489      1
5086               21       38805307  HGNC:3489      1
5087               21       38805307  HGNC:3489      1
5088               21       38805307  HGNC:3489      1
5089               21       38805307  HGNC:3489      1
5090               21       32412006 HGNC:13239      1
5091               21       32412006 HGNC:13239      1
5092               21       32412006 HGNC:13239      1
5093               21       32412006 HGNC:13239      1
5094               21       32412006 HGNC:13239      1
5095               21       32412006 HGNC:13239      1
5096               21       32412006 HGNC:13239      1
5097               21       32412006 HGNC:13239      1
5098               21       32412006 HGNC:13239      1
5099               21       32412006 HGNC:13239      1
5100               21       32412006 HGNC:13239      1
5101               21       32412006 HGNC:13239      1
5102               21       32412006 HGNC:13239      1
5103               21       32412006 HGNC:13239      1
5104               21       32412006 HGNC:13239      1
5105               21       32412006 HGNC:13239      1
5106               21       32412006 HGNC:13239      1
5107               21       32412006 HGNC:13239      1
5108               21       32412006 HGNC:13239      1
5109               21       32412006 HGNC:13239      1
5110               21       32412006 HGNC:13239      1
5111               21       32412006 HGNC:13239      1
5112               21       32412006 HGNC:13239      1
5113               21       32412006 HGNC:13239      1
5114               21       32412006 HGNC:13239      1
5115               21       32412006 HGNC:13239      1
5116               21       32412006 HGNC:13239      1
5117               21       32412006 HGNC:13239      1
5118               21       32412006 HGNC:13239      1
5119               21       32412006 HGNC:13239      1
5120               21       32412006 HGNC:13239      1
5121               21       32412006 HGNC:13239      1
5122               21       32412006 HGNC:13239      1
5123               21       32412006 HGNC:13239      1
5124               21       32412006 HGNC:13239      1
5125               21       32412006 HGNC:13239      1
5126               21       32412006 HGNC:13239      1
5127               21       32412006 HGNC:13239      1
5128               21       32412006 HGNC:13239      1
5129               21       32412006 HGNC:13239      1
5130               21       32412006 HGNC:13239      1
5131               21       32412006 HGNC:13239      1
5132               21       32412006 HGNC:13239      1
5133               21       32412006 HGNC:13239      1
5134               21       32412006 HGNC:13239      1
5135               21       32412006 HGNC:13239      1
5136               21       32412006 HGNC:13239      1
5137               21       32412006 HGNC:13239      1
5138               21       32412006 HGNC:13239      1
5139               21       32412006 HGNC:13239      1
5140               21       32412006 HGNC:13239      1
5141               21       32412006 HGNC:13239      1
5142               21       32412006 HGNC:13239      1
5143               21       32412006 HGNC:13239      1
5144               21       32412006 HGNC:13239      1
5145               21       32412006 HGNC:13239      1
5146               21       32412006 HGNC:13239      1
5147               21       32412006 HGNC:13239      1
5148               21       32412006 HGNC:13239      1
5149               21       32412006 HGNC:13239      1
5150               21       32412006 HGNC:13239      1
5151               21       32412006 HGNC:13239      1
5152               21       32412006 HGNC:13239      1
5153               21       32412006 HGNC:13239      1
5154               21       32412006 HGNC:13239      1
5155               21       32412006 HGNC:13239      1
5156               21       32412006 HGNC:13239      1
5157               21       32412006 HGNC:13239      1
5158               21       32412006 HGNC:13239      1
5159               21       32412006 HGNC:13239      1
5160               21       32412006 HGNC:13239      1
5161               21       32412006 HGNC:13239      1
5162               21       32412006 HGNC:13239      1
5163               21       32496812 HGNC:33989      1
5164               21       35599732 HGNC:39918     -1
5165               21       44940010 HGNC:15811      1
5166               21       44940010 HGNC:15811      1
5167               21       44940010 HGNC:15811      1
5168               21       44940010 HGNC:15811      1
5169               21       44940010 HGNC:15811      1
5170               21       44940010 HGNC:15811      1
5171               21       44940010 HGNC:15811      1
5172               21       44940010 HGNC:15811      1
5173               21       44940010 HGNC:15811      1
5174               21       44940010 HGNC:15811      1
5175               21       44940010 HGNC:15811      1
5176               21       44940010 HGNC:15811      1
5177               21       44940010 HGNC:15811      1
5178               21       44940010 HGNC:15811      1
5179               21       44940010 HGNC:15811      1
5180               21       44940010 HGNC:15811      1
5181               21       44940010 HGNC:15811      1
5182               21       44940010 HGNC:15811      1
5183               21       44940010 HGNC:15811      1
5184               21       44940010 HGNC:15811      1
5185               21       44940010 HGNC:15811      1
5186               21       44940010 HGNC:15811      1
5187               21       44940010 HGNC:15811      1
5188               21       44940010 HGNC:15811      1
5189               21       13792635 HGNC:42676      1
5190               21       41304212  HGNC:1253      1
5191               21       41304212  HGNC:1253      1
5192               21       41304212  HGNC:1253      1
5193               21       41304212  HGNC:1253      1
5194               21       41304212  HGNC:1253      1
5195               21       41304212  HGNC:1253      1
5196               21       41304212  HGNC:1253      1
5197               21       41304212  HGNC:1253      1
5198               21       41304212  HGNC:1253      1
5199               21       41304212  HGNC:1253      1
5200               21       41304212  HGNC:1253      1
5201               21       41304212  HGNC:1253      1
5202               21       41304212  HGNC:1253      1
5203               21       41304212  HGNC:1253      1
5204               21       41304212  HGNC:1253      1
5205               21       41304212  HGNC:1253      1
5206               21       41304212  HGNC:1253      1
5207               21       41304212  HGNC:1253      1
5208               21       41304212  HGNC:1253      1
5209               21       41304212  HGNC:1253      1
5210               21       41304212  HGNC:1253      1
5211               21       41304212  HGNC:1253      1
5212               21       41304212  HGNC:1253      1
5213               21       41304212  HGNC:1253      1
5214               21       41304212  HGNC:1253      1
5215               21       41304212  HGNC:1253      1
5216               21       41304212  HGNC:1253      1
5217               21       41304212  HGNC:1253      1
5218               21       41304212  HGNC:1253      1
5219               21       41304212  HGNC:1253      1
5220               21       41304212  HGNC:1253      1
5221               21       41304212  HGNC:1253      1
5222               21       41304212  HGNC:1253      1
5223               21       41304212  HGNC:1253      1
5224               21       41304212  HGNC:1253      1
5225               21       41304212  HGNC:1253      1
5226               21       41304212  HGNC:1253      1
5227               21       41304212  HGNC:1253      1
5228               21       41304212  HGNC:1253      1
5229               21       41304212  HGNC:1253      1
5230               21       41304212  HGNC:1253      1
5231               21       41304212  HGNC:1253      1
5232               21       41304212  HGNC:1253      1
5233               21       41304212  HGNC:1253      1
5234               21       41304212  HGNC:1253      1
5235               21       41304212  HGNC:1253      1
5236               21       31627127  HGNC:1145     -1
5237               21       20388334  HGNC:3637      1
5238               21       25692180  HGNC:3641      1
5239               21       13762338 HGNC:17219      1
5240               21       13349265 HGNC:17193      1
5241               21       13349265 HGNC:17193      1
5242               21       14019060 HGNC:51799     -1
5243               21       14019060 HGNC:51799     -1
5244               21       14019060 HGNC:51799     -1
5245               21       14019060 HGNC:51799     -1
5246               21       43140523 HGNC:51844     -1
5247               21       43140523 HGNC:51844     -1
5248               21       46136262  HGNC:3974     -1
5249               21       46136262  HGNC:3974     -1
5250               21       46136262  HGNC:3974     -1
5251               21       46136262  HGNC:3974     -1
5252               21       46136262  HGNC:3974     -1
5253               21       46136262  HGNC:3974     -1
5254               21       46136262  HGNC:3974     -1
5255               21       46136262  HGNC:3974     -1
5256               21       46136262  HGNC:3974     -1
5257               21       46136262  HGNC:3974     -1
5258               21       46136262  HGNC:3974     -1
5259               21       46136262  HGNC:3974     -1
5260               21       46136262  HGNC:3974     -1
5261               21       46136262  HGNC:3974     -1
5262               21       46136262  HGNC:3974     -1
5263               21       46136262  HGNC:3974     -1
5264               21       46136262  HGNC:3974     -1
5265               21       46136262  HGNC:3974     -1
5266               21       46136262  HGNC:3974     -1
5267               21       46136262  HGNC:3974     -1
5268               21       46136262  HGNC:3974     -1
5269               21       46136262  HGNC:3974     -1
5270               21       46136262  HGNC:3974     -1
5271               21       46136262  HGNC:3974     -1
5272               21       46136262  HGNC:3974     -1
5273               21       46136262  HGNC:3974     -1
5274               21       46136262  HGNC:3974     -1
5275               21       46136262  HGNC:3974     -1
5276               21       46136262  HGNC:3974     -1
5277               21       46136262  HGNC:3974     -1
5278               21       46136262  HGNC:3974     -1
5279               21       46136262  HGNC:3974     -1
5280               21       46136262  HGNC:3974     -1
5281               21       46136262  HGNC:3974     -1
5282               21       46136262  HGNC:3974     -1
5283               21       46136262  HGNC:3974     -1
5284               21       46136262  HGNC:3974     -1
5285               21       46136262  HGNC:3974     -1
5286               21       46136262  HGNC:3974     -1
5287               21       46136262  HGNC:3974     -1
5288               21       46136262  HGNC:3974     -1
5289               21       46136262  HGNC:3974     -1
5290               21       46136262  HGNC:3974     -1
5291               21       46136262  HGNC:3974     -1
5292               21       46136262  HGNC:3974     -1
5293               21       46136262  HGNC:3974     -1
5294               21       46136262  HGNC:3974     -1
5295               21       46136262  HGNC:3974     -1
5296               21       46136262  HGNC:3974     -1
5297               21       46136262  HGNC:3974     -1
5298               21       46136262  HGNC:3974     -1
5299               21       46136262  HGNC:3974     -1
5300               21       46136262  HGNC:3974     -1
5301               21       46136262  HGNC:3974     -1
5302               21       46136262  HGNC:3974     -1
5303               21       46136262  HGNC:3974     -1
5304               21       46136262  HGNC:3974     -1
5305               21       46136262  HGNC:3974     -1
5306               21       46136262  HGNC:3974     -1
5307               21       46136262  HGNC:3974     -1
5308               21       46136262  HGNC:3974     -1
5309               21       46136262  HGNC:3974     -1
5310               21       46136262  HGNC:3974     -1
5311               21       46136262  HGNC:3974     -1
5312               21       46136262  HGNC:3974     -1
5313               21       46136262  HGNC:3974     -1
5314               21       46136262  HGNC:3974     -1
5315               21       46136262  HGNC:3974     -1
5316               21       46136262  HGNC:3974     -1
5317               21       46136262  HGNC:3974     -1
5318               21       46136262  HGNC:3974     -1
5319               21       46136262  HGNC:3974     -1
5320               21       46136262  HGNC:3974     -1
5321               21       46136262  HGNC:3974     -1
5322               21       46136262  HGNC:3974     -1
5323               21       46136262  HGNC:3974     -1
5324               21       46136262  HGNC:3974     -1
5325               21       46136262  HGNC:3974     -1
5326               21       46136262  HGNC:3974     -1
5327               21       46136262  HGNC:3974     -1
5328               21       46136262  HGNC:3974     -1
5329               21       46136262  HGNC:3974     -1
5330               21       46136262  HGNC:3974     -1
5331               21       46136262  HGNC:3974     -1
5332               21       46136262  HGNC:3974     -1
5333               21       46136262  HGNC:3974     -1
5334               21       46136262  HGNC:3974     -1
5335               21       46136262  HGNC:3974     -1
5336               21       46136262  HGNC:3974     -1
5337               21       46136262  HGNC:3974     -1
5338               21       46136262  HGNC:3974     -1
5339               21       46136262  HGNC:3974     -1
5340               21       46136262  HGNC:3974     -1
5341               21       46136262  HGNC:3974     -1
5342               21       46136262  HGNC:3974     -1
5343               21       46151614 HGNC:40243      1
5344               21       46151614 HGNC:40243      1
5345               21       25734570  HGNC:4071      1
5346               21       25734570  HGNC:4071      1
5347               21       25734570  HGNC:4071      1
5348               21       25734570  HGNC:4071      1
5349               21       25734570  HGNC:4071      1
5350               21       25734570  HGNC:4071      1
5351               21       25734570  HGNC:4071      1
5352               21       25734570  HGNC:4071      1
5353               21       25734570  HGNC:4071      1
5354               21       25734570  HGNC:4071      1
5355               21       25734570  HGNC:4071      1
5356               21       25734570  HGNC:4071      1
5357               21       25734570  HGNC:4071      1
5358               21       25734570  HGNC:4071      1
5359               21       25734570  HGNC:4071      1
5360               21       25734570  HGNC:4071      1
5361               21       25734570  HGNC:4071      1
5362               21       25734570  HGNC:4071      1
5363               21       25734570  HGNC:4071      1
5364               21       25734570  HGNC:4071      1
5365               21       25734570  HGNC:4071      1
5366               21       25734570  HGNC:4071      1
5367               21       25734570  HGNC:4071      1
5368               21       25734570  HGNC:4071      1
5369               21       29222321  HGNC:4160      1
5370               21       14774301 HGNC:23768      1
5371               21       33503931  HGNC:4163     -1
5372               21       33503931  HGNC:4163     -1
5373               21       33503931  HGNC:4163     -1
5374               21       33503931  HGNC:4163     -1
5375               21       33503931  HGNC:4163     -1
5376               21       33503931  HGNC:4163     -1
5377               21       33503931  HGNC:4163     -1
5378               21       33503931  HGNC:4163     -1
5379               21       33503931  HGNC:4163     -1
5380               21       33503931  HGNC:4163     -1
5381               21       33503931  HGNC:4163     -1
5382               21       33503931  HGNC:4163     -1
5383               21       33503931  HGNC:4163     -1
5384               21       33503931  HGNC:4163     -1
5385               21       33503931  HGNC:4163     -1
5386               21       33503931  HGNC:4163     -1
5387               21       33503931  HGNC:4163     -1
5388               21       33503931  HGNC:4163     -1
5389               21       33503931  HGNC:4163     -1
5390               21       33503931  HGNC:4163     -1
5391               21       33503931  HGNC:4163     -1
5392               21       33503931  HGNC:4163     -1
5393               21       33503931  HGNC:4163     -1
5394               21       33503931  HGNC:4163     -1
5395               21       33503931  HGNC:4163     -1
5396               21       33503931  HGNC:4163     -1
5397               21       33503931  HGNC:4163     -1
5398               21       33503931  HGNC:4163     -1
5399               21       33503931  HGNC:4163     -1
5400               21       33503931  HGNC:4163     -1
5401               21       33503931  HGNC:4163     -1
5402               21       33503931  HGNC:4163     -1
5403               21       33503931  HGNC:4163     -1
5404               21       33503931  HGNC:4163     -1
5405               21       33503931  HGNC:4163     -1
5406               21       33503931  HGNC:4163     -1
5407               21       33503931  HGNC:4163     -1
5408               21       33503931  HGNC:4163     -1
5409               21       33503931  HGNC:4163     -1
5410               21       33503931  HGNC:4163     -1
5411               21       33503931  HGNC:4163     -1
5412               21       33503931  HGNC:4163     -1
5413               21       33503931  HGNC:4163     -1
5414               21       33503931  HGNC:4163     -1
5415               21       33503931  HGNC:4163     -1
5416               21       33503931  HGNC:4163     -1
5417               21       33503931  HGNC:4163     -1
5418               21       33503931  HGNC:4163     -1
5419               21       33503931  HGNC:4163     -1
5420               21       33503931  HGNC:4163     -1
5421               21       33503931  HGNC:4163     -1
5422               21       33503931  HGNC:4163     -1
5423               21       33503931  HGNC:4163     -1
5424               21       33503931  HGNC:4163     -1
5425               21       33503931  HGNC:4163     -1
5426               21       33503931  HGNC:4163     -1
5427               21       33503931  HGNC:4163     -1
5428               21       33503931  HGNC:4163     -1
5429               21       33503931  HGNC:4163     -1
5430               21       33503931  HGNC:4163     -1
5431               21       33503931  HGNC:4163     -1
5432               21       33503931  HGNC:4163     -1
5433               21       33503931  HGNC:4163     -1
5434               21       33503931  HGNC:4163     -1
5435               21       33503931  HGNC:4163     -1
5436               21       33503931  HGNC:4163     -1
5437               21       33503931  HGNC:4163     -1
5438               21       33503931  HGNC:4163     -1
5439               21       33503931  HGNC:4163     -1
5440               21       33503931  HGNC:4163     -1
5441               21       33503931  HGNC:4163     -1
5442               21       33503931  HGNC:4163     -1
5443               21       33503931  HGNC:4163     -1
5444               21       33503931  HGNC:4163     -1
5445               21       33503931  HGNC:4163     -1
5446               21       33503931  HGNC:4163     -1
5447               21       33503931  HGNC:4163     -1
5448               21       33503931  HGNC:4163     -1
5449               21       33503931  HGNC:4163     -1
5450               21       33503931  HGNC:4163     -1
5451               21       33503931  HGNC:4163     -1
5452               21       33503931  HGNC:4163     -1
5453               21       33503931  HGNC:4163     -1
5454               21       33503931  HGNC:4163     -1
5455               21       33503931  HGNC:4163     -1
5456               21       33503931  HGNC:4163     -1
5457               21       33503931  HGNC:4163     -1
5458               21       33503931  HGNC:4163     -1
5459               21       33503931  HGNC:4163     -1
5460               21       33503931  HGNC:4163     -1
5461               21       33503931  HGNC:4163     -1
5462               21       33503931  HGNC:4163     -1
5463               21       33503931  HGNC:4163     -1
5464               21       33503931  HGNC:4163     -1
5465               21       33503931  HGNC:4163     -1
5466               21       33503931  HGNC:4163     -1
5467               21       33503931  HGNC:4163     -1
5468               21       33503931  HGNC:4163     -1
5469               21       33503931  HGNC:4163     -1
5470               21       33503931  HGNC:4163     -1
5471               21       33503931  HGNC:4163     -1
5472               21       33503931  HGNC:4163     -1
5473               21       33503931  HGNC:4163     -1
5474               21       33503931  HGNC:4163     -1
5475               21       33503931  HGNC:4163     -1
5476               21       33503931  HGNC:4163     -1
5477               21       33503931  HGNC:4163     -1
5478               21       33503931  HGNC:4163     -1
5479               21       33503931  HGNC:4163     -1
5480               21       33503931  HGNC:4163     -1
5481               21       33503931  HGNC:4163     -1
5482               21       33503931  HGNC:4163     -1
5483               21       33503931  HGNC:4163     -1
5484               21       33503931  HGNC:4163     -1
5485               21       33503931  HGNC:4163     -1
5486               21       33503931  HGNC:4163     -1
5487               21       33503931  HGNC:4163     -1
5488               21       33503931  HGNC:4163     -1
5489               21       33503931  HGNC:4163     -1
5490               21       33503931  HGNC:4163     -1
5491               21       33503931  HGNC:4163     -1
5492               21       33503931  HGNC:4163     -1
5493               21       33503931  HGNC:4163     -1
5494               21       33503931  HGNC:4163     -1
5495               21       33503931  HGNC:4163     -1
5496               21       33503931  HGNC:4163     -1
5497               21       33503931  HGNC:4163     -1
5498               21       33503931  HGNC:4163     -1
5499               21       33503931  HGNC:4163     -1
5500               21       33503931  HGNC:4163     -1
5501               21       33503931  HGNC:4163     -1
5502               21       33503931  HGNC:4163     -1
5503               21       33503931  HGNC:4163     -1
5504               21       33503931  HGNC:4163     -1
5505               21       33503931  HGNC:4163     -1
5506               21       33503931  HGNC:4163     -1
5507               21       33503931  HGNC:4163     -1
5508               21       33503931  HGNC:4163     -1
5509               21       33503931  HGNC:4163     -1
5510               21       33503931  HGNC:4163     -1
5511               21       33503931  HGNC:4163     -1
5512               21       33503931  HGNC:4163     -1
5513               21       33503931  HGNC:4163     -1
5514               21       33503931  HGNC:4163     -1
5515               21       33503931  HGNC:4163     -1
5516               21       33503931  HGNC:4163     -1
5517               21       33503931  HGNC:4163     -1
5518               21       33503931  HGNC:4163     -1
5519               21       33503931  HGNC:4163     -1
5520               21       33503931  HGNC:4163     -1
5521               21       33503931  HGNC:4163     -1
5522               21       33503931  HGNC:4163     -1
5523               21       33503931  HGNC:4163     -1
5524               21       33503931  HGNC:4163     -1
5525               21       33503931  HGNC:4163     -1
5526               21       27143344  HGNC:4561     -1
5527               21       13665868 HGNC:39653     -1
5528               21       13665868 HGNC:39653     -1
5529               21       29536933  HGNC:4579     -1
5530               21       29536933  HGNC:4579     -1
5531               21       29536933  HGNC:4579     -1
5532               21       29536933  HGNC:4579     -1
5533               21       29536933  HGNC:4579     -1
5534               21       29536933  HGNC:4579     -1
5535               21       29536933  HGNC:4579     -1
5536               21       29536933  HGNC:4579     -1
5537               21       29536933  HGNC:4579     -1
5538               21       29536933  HGNC:4579     -1
5539               21       29536933  HGNC:4579     -1
5540               21       29536933  HGNC:4579     -1
5541               21       29536933  HGNC:4579     -1
5542               21       29536933  HGNC:4579     -1
5543               21       29536933  HGNC:4579     -1
5544               21       29536933  HGNC:4579     -1
5545               21       29536933  HGNC:4579     -1
5546               21       29536933  HGNC:4579     -1
5547               21       29536933  HGNC:4579     -1
5548               21       29536933  HGNC:4579     -1
5549               21       29536933  HGNC:4579     -1
5550               21       29536933  HGNC:4579     -1
5551               21       29536933  HGNC:4579     -1
5552               21       29536933  HGNC:4579     -1
5553               21       29536933  HGNC:4579     -1
5554               21       29536933  HGNC:4579     -1
5555               21       29536933  HGNC:4579     -1
5556               21       29536933  HGNC:4579     -1
5557               21       29536933  HGNC:4579     -1
5558               21       29536933  HGNC:4579     -1
5559               21       29536933  HGNC:4579     -1
5560               21       29536933  HGNC:4579     -1
5561               21       29536933  HGNC:4579     -1
5562               21       29536933  HGNC:4579     -1
5563               21       29536933  HGNC:4579     -1
5564               21       29536933  HGNC:4579     -1
5565               21       29536933  HGNC:4579     -1
5566               21       29536933  HGNC:4579     -1
5567               21       29536933  HGNC:4579     -1
5568               21       29536933  HGNC:4579     -1
5569               21       29536933  HGNC:4579     -1
5570               21       29536933  HGNC:4579     -1
5571               21       29536933  HGNC:4579     -1
5572               21       29536933  HGNC:4579     -1
5573               21       29536933  HGNC:4579     -1
5574               21       29536933  HGNC:4579     -1
5575               21       29536933  HGNC:4579     -1
5576               21       29536933  HGNC:4579     -1
5577               21       29536933  HGNC:4579     -1
5578               21       29536933  HGNC:4579     -1
5579               21       29536933  HGNC:4579     -1
5580               21       29536933  HGNC:4579     -1
5581               21       29536933  HGNC:4579     -1
5582               21       29536933  HGNC:4579     -1
5583               21       29536933  HGNC:4579     -1
5584               21       29536933  HGNC:4579     -1
5585               21       29536933  HGNC:4579     -1
5586               21       29536933  HGNC:4579     -1
5587               21       29536933  HGNC:4579     -1
5588               21       29536933  HGNC:4579     -1
5589               21       29536933  HGNC:4579     -1
5590               21       29536933  HGNC:4579     -1
5591               21       29536933  HGNC:4579     -1
5592               21       29536933  HGNC:4579     -1
5593               21       29536933  HGNC:4579     -1
5594               21       29536933  HGNC:4579     -1
5595               21       29536933  HGNC:4579     -1
5596               21       29536933  HGNC:4579     -1
5597               21       29536933  HGNC:4579     -1
5598               21       29536933  HGNC:4579     -1
5599               21       29536933  HGNC:4579     -1
5600               21       29536933  HGNC:4579     -1
5601               21       29536933  HGNC:4579     -1
5602               21       29536933  HGNC:4579     -1
5603               21       29536933  HGNC:4579     -1
5604               21       29536933  HGNC:4579     -1
5605               21       29536933  HGNC:4579     -1
5606               21       29536933  HGNC:4579     -1
5607               21       29536933  HGNC:4579     -1
5608               21       29536933  HGNC:4579     -1
5609               21       29536933  HGNC:4579     -1
5610               21       29536933  HGNC:4579     -1
5611               21       29536933  HGNC:4579     -1
5612               21       29536933  HGNC:4579     -1
5613               21       29536933  HGNC:4579     -1
5614               21       29536933  HGNC:4579     -1
5615               21       29536933  HGNC:4579     -1
5616               21       29536933  HGNC:4579     -1
5617               21       29536933  HGNC:4579     -1
5618               21       29536933  HGNC:4579     -1
5619               21       29536933  HGNC:4579     -1
5620               21       29536933  HGNC:4579     -1
5621               21       29536933  HGNC:4579     -1
5622               21       29536933  HGNC:4579     -1
5623               21       29536933  HGNC:4579     -1
5624               21       29536933  HGNC:4579     -1
5625               21       29536933  HGNC:4579     -1
5626               21       29536933  HGNC:4579     -1
5627               21       29536933  HGNC:4579     -1
5628               21       29536933  HGNC:4579     -1
5629               21       29536933  HGNC:4579     -1
5630               21       29536933  HGNC:4579     -1
5631               21       29536933  HGNC:4579     -1
5632               21       29536933  HGNC:4579     -1
5633               21       29536933  HGNC:4579     -1
5634               21       29536933  HGNC:4579     -1
5635               21       29536933  HGNC:4579     -1
5636               21       29536933  HGNC:4579     -1
5637               21       29536933  HGNC:4579     -1
5638               21       29536933  HGNC:4579     -1
5639               21       29536933  HGNC:4579     -1
5640               21       29536933  HGNC:4579     -1
5641               21       29536933  HGNC:4579     -1
5642               21       29536933  HGNC:4579     -1
5643               21       29536933  HGNC:4579     -1
5644               21       29536933  HGNC:4579     -1
5645               21       29536933  HGNC:4579     -1
5646               21       29536933  HGNC:4579     -1
5647               21       29536933  HGNC:4579     -1
5648               21       29536933  HGNC:4579     -1
5649               21       29536933  HGNC:4579     -1
5650               21       29536933  HGNC:4579     -1
5651               21       29536933  HGNC:4579     -1
5652               21       29536933  HGNC:4579     -1
5653               21       29536933  HGNC:4579     -1
5654               21       29536933  HGNC:4579     -1
5655               21       29748175 HGNC:16458      1
5656               21       29748175 HGNC:16458      1
5657               21       29748175 HGNC:16458      1
5658               21       29748175 HGNC:16458      1
5659               21       29748175 HGNC:16458      1
5660               21       29748175 HGNC:16458      1
5661               21       29748175 HGNC:16458      1
5662               21       29748175 HGNC:16458      1
5663               21       29748175 HGNC:16458      1
5664               21       29748175 HGNC:16458      1
5665               21       29748175 HGNC:16458      1
5666               21       29748175 HGNC:16458      1
5667               21       29748175 HGNC:16458      1
5668               21       29748175 HGNC:16458      1
5669               21       29748175 HGNC:16458      1
5670               21       29748175 HGNC:16458      1
5671               21       13443373 HGNC:16082     -1
5672               21       13443373 HGNC:16082     -1
5673               21       13443373 HGNC:16082     -1
5674               21       13443373 HGNC:16082     -1
5675               21       13443373 HGNC:16082     -1
5676               21       13443373 HGNC:16082     -1
5677               21       13824406 HGNC:39677     -1
5678               21       44046347  HGNC:4742     -1
5679               21       44046347  HGNC:4742     -1
5680               21       43565189  HGNC:4762      1
5681               21       36750888  HGNC:4976     -1
5682               21       36750888  HGNC:4976     -1
5683               21       36750888  HGNC:4976     -1
5684               21       36750888  HGNC:4976     -1
5685               21       36750888  HGNC:4976     -1
5686               21       36750888  HGNC:4976     -1
5687               21       36750888  HGNC:4976     -1
5688               21       36750888  HGNC:4976     -1
5689               21       36750888  HGNC:4976     -1
5690               21       36750888  HGNC:4976     -1
5691               21       36750888  HGNC:4976     -1
5692               21       36750888  HGNC:4976     -1
5693               21       36750888  HGNC:4976     -1
5694               21       36750888  HGNC:4976     -1
5695               21       36750888  HGNC:4976     -1
5696               21       36750888  HGNC:4976     -1
5697               21       36750888  HGNC:4976     -1
5698               21       36750888  HGNC:4976     -1
5699               21       36750888  HGNC:4976     -1
5700               21       36750888  HGNC:4976     -1
5701               21       36750888  HGNC:4976     -1
5702               21       36750888  HGNC:4976     -1
5703               21       36750888  HGNC:4976     -1
5704               21       36750888  HGNC:4976     -1
5705               21       36750888  HGNC:4976     -1
5706               21       36750888  HGNC:4976     -1
5707               21       36750888  HGNC:4976     -1
5708               21       36750888  HGNC:4976     -1
5709               21       36750888  HGNC:4976     -1
5710               21       36750888  HGNC:4976     -1
5711               21       36750888  HGNC:4976     -1
5712               21       36750888  HGNC:4976     -1
5713               21       36750888  HGNC:4976     -1
5714               21       36750888  HGNC:4976     -1
5715               21       36750888  HGNC:4976     -1
5716               21       36750888  HGNC:4976     -1
5717               21       36750888  HGNC:4976     -1
5718               21       36750888  HGNC:4976     -1
5719               21       36750888  HGNC:4976     -1
5720               21       36750888  HGNC:4976     -1
5721               21       36750888  HGNC:4976     -1
5722               21       36750888  HGNC:4976     -1
5723               21       36750888  HGNC:4976     -1
5724               21       36750888  HGNC:4976     -1
5725               21       36750888  HGNC:4976     -1
5726               21       36750888  HGNC:4976     -1
5727               21       36750888  HGNC:4976     -1
5728               21       36750888  HGNC:4976     -1
5729               21       36750888  HGNC:4976     -1
5730               21       36750888  HGNC:4976     -1
5731               21       36750888  HGNC:4976     -1
5732               21       36803984 HGNC:41343     -1
5733               21       36803984 HGNC:41343     -1
5734               21       39342315  HGNC:4984     -1
5735               21       39342315  HGNC:4984     -1
5736               21       39342315  HGNC:4984     -1
5737               21       39342315  HGNC:4984     -1
5738               21       39342315  HGNC:4984     -1
5739               21       39342315  HGNC:4984     -1
5740               21       39342315  HGNC:4984     -1
5741               21       39342315  HGNC:4984     -1
5742               21       39342315  HGNC:4984     -1
5743               21       39342315  HGNC:4984     -1
5744               21       39342315  HGNC:4984     -1
5745               21       39342315  HGNC:4984     -1
5746               21       39342315  HGNC:4984     -1
5747               21       39342315  HGNC:4984     -1
5748               21       39342315  HGNC:4984     -1
5749               21       39342315  HGNC:4984     -1
5750               21       39342315  HGNC:4984     -1
5751               21       39342315  HGNC:4984     -1
5752               21       39342315  HGNC:4984     -1
5753               21       39342315  HGNC:4984     -1
5754               21       39342315  HGNC:4984     -1
5755               21       39342315  HGNC:4984     -1
5756               21       39342315  HGNC:4984     -1
5757               21       39342315  HGNC:4984     -1
5758               21       39342315  HGNC:4984     -1
5759               21       39342315  HGNC:4984     -1
5760               21       39342315  HGNC:4984     -1
5761               21       39342315  HGNC:4984     -1
5762               21       39342315  HGNC:4984     -1
5763               21       39342315  HGNC:4984     -1
5764               21       39342315  HGNC:4984     -1
5765               21       39342315  HGNC:4984     -1
5766               21       39342315  HGNC:4984     -1
5767               21       39342315  HGNC:4984     -1
5768               21       39342315  HGNC:4984     -1
5769               21       39342315  HGNC:4984     -1
5770               21       39342315  HGNC:4984     -1
5771               21       39342315  HGNC:4984     -1
5772               21       39342315  HGNC:4984     -1
5773               21       39342315  HGNC:4984     -1
5774               21       39342315  HGNC:4984     -1
5775               21       39342315  HGNC:4984     -1
5776               21       39342315  HGNC:4984     -1
5777               21       39342315  HGNC:4984     -1
5778               21       39342315  HGNC:4984     -1
5779               21       39342315  HGNC:4984     -1
5780               21       39342315  HGNC:4984     -1
5781               21       39342315  HGNC:4984     -1
5782               21       39342315  HGNC:4984     -1
5783               21       39342315  HGNC:4984     -1
5784               21       39342315  HGNC:4984     -1
5785               21       39342315  HGNC:4984     -1
5786               21       39342315  HGNC:4984     -1
5787               21       39342315  HGNC:4984     -1
5788               21       39342315  HGNC:4984     -1
5789               21       39342315  HGNC:4984     -1
5790               21       39342315  HGNC:4984     -1
5791               21       39342315  HGNC:4984     -1
5792               21       39342315  HGNC:4984     -1
5793               21       39342315  HGNC:4984     -1
5794               21       39342315  HGNC:4984     -1
5795               21       39342315  HGNC:4984     -1
5796               21       39342315  HGNC:4984     -1
5797               21       39342315  HGNC:4984     -1
5798               21       39342315  HGNC:4984     -1
5799               21       39342315  HGNC:4984     -1
5800               21       39342315  HGNC:4984     -1
5801               21       39342315  HGNC:4984     -1
5802               21       39342315  HGNC:4984     -1
5803               21       39342315  HGNC:4984     -1
5804               21       39342315  HGNC:4984     -1
5805               21       39342315  HGNC:4984     -1
5806               21       39342315  HGNC:4984     -1
5807               21       39342315  HGNC:4984     -1
5808               21       39342315  HGNC:4984     -1
5809               21       39342315  HGNC:4984     -1
5810               21       39342315  HGNC:4984     -1
5811               21       39342315  HGNC:4984     -1
5812               21       39342315  HGNC:4984     -1
5813               21       39342315  HGNC:4984     -1
5814               21       39342315  HGNC:4984     -1
5815               21       39342315  HGNC:4984     -1
5816               21       39342315  HGNC:4984     -1
5817               21       39342315  HGNC:4984     -1
5818               21       39342315  HGNC:4984     -1
5819               21       39342315  HGNC:4984     -1
5820               21       39342315  HGNC:4984     -1
5821               21       39342315  HGNC:4984     -1
5822               21       39342315  HGNC:4984     -1
5823               21       39342315  HGNC:4984     -1
5824               21       39342315  HGNC:4984     -1
5825               21       39342315  HGNC:4984     -1
5826               21       39342315  HGNC:4984     -1
5827               21       39342315  HGNC:4984     -1
5828               21       39342315  HGNC:4984     -1
5829               21       39342315  HGNC:4984     -1
5830               21       39342315  HGNC:4984     -1
5831               21       39342315  HGNC:4984     -1
5832               21       39342315  HGNC:4984     -1
5833               21       39342315  HGNC:4984     -1
5834               21       39342315  HGNC:4984     -1
5835               21       39342315  HGNC:4984     -1
5836               21       39342315  HGNC:4984     -1
5837               21       39342315  HGNC:4984     -1
5838               21       39342315  HGNC:4984     -1
5839               21       39342315  HGNC:4984     -1
5840               21       39342315  HGNC:4984     -1
5841               21       39342315  HGNC:4984     -1
5842               21       39342315  HGNC:4984     -1
5843               21       39342315  HGNC:4984     -1
5844               21       39342315  HGNC:4984     -1
5845               21       39342315  HGNC:4984     -1
5846               21       39342315  HGNC:4984     -1
5847               21       39342315  HGNC:4984     -1
5848               21       39342315  HGNC:4984     -1
5849               21       39342315  HGNC:4984     -1
5850               21       39342315  HGNC:4984     -1
5851               21       31706555  HGNC:4985      1
5852               21       43529192  HGNC:5226     -1
5853               21       43529192  HGNC:5226     -1
5854               21       43529192  HGNC:5226     -1
5855               21       43529192  HGNC:5226     -1
5856               21       43529192  HGNC:5226     -1
5857               21       43529192  HGNC:5226     -1
5858               21       43529192  HGNC:5226     -1
5859               21       43529192  HGNC:5226     -1
5860               21       43529192  HGNC:5226     -1
5861               21       43529192  HGNC:5226     -1
5862               21       43529192  HGNC:5226     -1
5863               21       43529192  HGNC:5226     -1
5864               21       43529192  HGNC:5226     -1
5865               21       43529192  HGNC:5226     -1
5866               21       43529192  HGNC:5226     -1
5867               21       43529192  HGNC:5226     -1
5868               21       14371115 HGNC:11375     -1
5869               21       14371115 HGNC:11375     -1
5870               21       14371115 HGNC:11375     -1
5871               21       14371115 HGNC:11375     -1
5872               21       14371115 HGNC:11375     -1
5873               21       14371115 HGNC:11375     -1
5874               21       14371115 HGNC:11375     -1
5875               21       14371115 HGNC:11375     -1
5876               21       28887280  HGNC:5268     -1
5877               21       28887280  HGNC:5268     -1
5878               21       31873315 HGNC:13326      1
5879               21       31873315 HGNC:13326      1
5880               21       31873315 HGNC:13326      1
5881               21       31873315 HGNC:13326      1
5882               21       31873315 HGNC:13326      1
5883               21       31873315 HGNC:13326      1
5884               21       31873315 HGNC:13326      1
5885               21       31873315 HGNC:13326      1
5886               21       31873315 HGNC:13326      1
5887               21       31873315 HGNC:13326      1
5888               21       31873315 HGNC:13326      1
5889               21       31873315 HGNC:13326      1
5890               21       31873315 HGNC:13326      1
5891               21       31873315 HGNC:13326      1
5892               21       31873315 HGNC:13326      1
5893               21       31873315 HGNC:13326      1
5894               21       31873315 HGNC:13326      1
5895               21       31873315 HGNC:13326      1
5896               21       31873315 HGNC:13326      1
5897               21       31873315 HGNC:13326      1
5898               21       31873315 HGNC:13326      1
5899               21       31873315 HGNC:13326      1
5900               21       31873315 HGNC:13326      1
5901               21       31873315 HGNC:13326      1
5902               21       32020966 HGNC:40631     -1
5903               21       32020966 HGNC:40631     -1
5904               21       44222991 HGNC:17087     -1
5905               21       44222991 HGNC:17087     -1
5906               21       44222991 HGNC:17087     -1
5907               21       44222991 HGNC:17087     -1
5908               21       44222991 HGNC:17087     -1
5909               21       44222991 HGNC:17087     -1
5910               21       44222991 HGNC:17087     -1
5911               21       44222991 HGNC:17087     -1
5912               21       44222991 HGNC:17087     -1
5913               21       44222991 HGNC:17087     -1
5914               21       44222991 HGNC:17087     -1
5915               21       44222991 HGNC:17087     -1
5916               21       44222991 HGNC:17087     -1
5917               21       44222991 HGNC:17087     -1
5918               21       44222991 HGNC:17087     -1
5919               21       44222991 HGNC:17087     -1
5920               21       44222991 HGNC:17087     -1
5921               21       44222991 HGNC:17087     -1
5922               21       44222991 HGNC:17087     -1
5923               21       44222991 HGNC:17087     -1
5924               21       44222991 HGNC:17087     -1
5925               21       44222991 HGNC:17087     -1
5926               21       44222991 HGNC:17087     -1
5927               21       44222991 HGNC:17087     -1
5928               21       44222991 HGNC:17087     -1
5929               21       44222991 HGNC:17087     -1
5930               21       33324477  HGNC:5432      1
5931               21       33324477  HGNC:5432      1
5932               21       33324477  HGNC:5432      1
5933               21       33324477  HGNC:5432      1
5934               21       33324477  HGNC:5432      1
5935               21       33324477  HGNC:5432      1
5936               21       33324477  HGNC:5432      1
5937               21       33324477  HGNC:5432      1
5938               21       33324477  HGNC:5432      1
5939               21       33324477  HGNC:5432      1
5940               21       33324477  HGNC:5432      1
5941               21       33324477  HGNC:5432      1
5942               21       33324477  HGNC:5432      1
5943               21       33324477  HGNC:5432      1
5944               21       33324477  HGNC:5432      1
5945               21       33324477  HGNC:5432      1
5946               21       33324477  HGNC:5432      1
5947               21       33229901  HGNC:5433      1
5948               21       33229901  HGNC:5433      1
5949               21       33229901  HGNC:5433      1
5950               21       33229901  HGNC:5433      1
5951               21       33229901  HGNC:5433      1
5952               21       33229901  HGNC:5433      1
5953               21       33229901  HGNC:5433      1
5954               21       33229901  HGNC:5433      1
5955               21       33229901  HGNC:5433      1
5956               21       33229901  HGNC:5433      1
5957               21       33229901  HGNC:5433      1
5958               21       33229901  HGNC:5433      1
5959               21       33229901  HGNC:5433      1
5960               21       33229901  HGNC:5433      1
5961               21       33229901  HGNC:5433      1
5962               21       33229901  HGNC:5433      1
5963               21       33229901  HGNC:5433      1
5964               21       33229901  HGNC:5433      1
5965               21       33229901  HGNC:5433      1
5966               21       33229901  HGNC:5433      1
5967               21       33229901  HGNC:5433      1
5968               21       33229901  HGNC:5433      1
5969               21       33229901  HGNC:5433      1
5970               21       33229901  HGNC:5433      1
5971               21       33229901  HGNC:5433      1
5972               21       33229901  HGNC:5433      1
5973               21       33229901  HGNC:5433      1
5974               21       33229901  HGNC:5433      1
5975               21       33229901  HGNC:5433      1
5976               21       33229901  HGNC:5433      1
5977               21       33229901  HGNC:5433      1
5978               21       33229901  HGNC:5433      1
5979               21       33229901  HGNC:5433      1
5980               21       33229901  HGNC:5433      1
5981               21       33229901  HGNC:5433      1
5982               21       33229901  HGNC:5433      1
5983               21       33229901  HGNC:5433      1
5984               21       33229901  HGNC:5433      1
5985               21       33229901  HGNC:5433      1
5986               21       33229901  HGNC:5433      1
5987               21       33229901  HGNC:5433      1
5988               21       33229901  HGNC:5433      1
5989               21       33229901  HGNC:5433      1
5990               21       33229901  HGNC:5433      1
5991               21       33229901  HGNC:5433      1
5992               21       33229901  HGNC:5433      1
5993               21       33229901  HGNC:5433      1
5994               21       33229901  HGNC:5433      1
5995               21       33229901  HGNC:5433      1
5996               21       33229901  HGNC:5433      1
5997               21       33229901  HGNC:5433      1
5998               21       33229901  HGNC:5433      1
5999               21       33229901  HGNC:5433      1
6000               21       33229901  HGNC:5433      1
6001               21       33229901  HGNC:5433      1
6002               21       33229901  HGNC:5433      1
6003               21       33229901  HGNC:5433      1
6004               21       33229901  HGNC:5433      1
6005               21       33229901  HGNC:5433      1
6006               21       33229901  HGNC:5433      1
6007               21       33229901  HGNC:5433      1
6008               21       33229901  HGNC:5433      1
6009               21       33229901  HGNC:5433      1
6010               21       33229901  HGNC:5433      1
6011               21       33229901  HGNC:5433      1
6012               21       33229901  HGNC:5433      1
6013               21       33229901  HGNC:5433      1
6014               21       33229901  HGNC:5433      1
6015               21       33229901  HGNC:5433      1
6016               21       33229901  HGNC:5433      1
6017               21       33229901  HGNC:5433      1
6018               21       33229901  HGNC:5433      1
6019               21       33229901  HGNC:5433      1
6020               21       33402896  HGNC:5440      1
6021               21       33402896  HGNC:5440      1
6022               21       33402896  HGNC:5440      1
6023               21       33402896  HGNC:5440      1
6024               21       33402896  HGNC:5440      1
6025               21       33402896  HGNC:5440      1
6026               21       33402896  HGNC:5440      1
6027               21       33402896  HGNC:5440      1
6028               21       33402896  HGNC:5440      1
6029               21       33402896  HGNC:5440      1
6030               21       33402896  HGNC:5440      1
6031               21       33402896  HGNC:5440      1
6032               21       33402896  HGNC:5440      1
6033               21       33402896  HGNC:5440      1
6034               21       33402896  HGNC:5440      1
6035               21       33402896  HGNC:5440      1
6036               21       33402896  HGNC:5440      1
6037               21       33402896  HGNC:5440      1
6038               21       33402896  HGNC:5440      1
6039               21       33402896  HGNC:5440      1
6040               21       33402896  HGNC:5440      1
6041               21       33402896  HGNC:5440      1
6042               21       33402896  HGNC:5440      1
6043               21       33402896  HGNC:5440      1
6044               21       33402896  HGNC:5440      1
6045               21       33402896  HGNC:5440      1
6046               21       33402896  HGNC:5440      1
6047               21       33402896  HGNC:5440      1
6048               21       33402896  HGNC:5440      1
6049               21       33402896  HGNC:5440      1
6050               21       33402896  HGNC:5440      1
6051               21       33402896  HGNC:5440      1
6052               21       33402896  HGNC:5440      1
6053               21       33402896  HGNC:5440      1
6054               21       33402896  HGNC:5440      1
6055               21       33402896  HGNC:5440      1
6056               21       33402896  HGNC:5440      1
6057               21       33402896  HGNC:5440      1
6058               21       33402896  HGNC:5440      1
6059               21       10649400 HGNC:38040     -1
6060               21       10649400 HGNC:38040     -1
6061               21       39745407  HGNC:5952      1
6062               21       39745407  HGNC:5952      1
6063               21       39745407  HGNC:5952      1
6064               21       39745407  HGNC:5952      1
6065               21       39745407  HGNC:5952      1
6066               21       39745407  HGNC:5952      1
6067               21       39745407  HGNC:5952      1
6068               21       39745407  HGNC:5952      1
6069               21       39745407  HGNC:5952      1
6070               21       39745407  HGNC:5952      1
6071               21       39745407  HGNC:5952      1
6072               21       39745407  HGNC:5952      1
6073               21       39745407  HGNC:5952      1
6074               21       39745407  HGNC:5952      1
6075               21       39745407  HGNC:5952      1
6076               21       39745407  HGNC:5952      1
6077               21       39745407  HGNC:5952      1
6078               21       33266358  HGNC:5965      1
6079               21       33266358  HGNC:5965      1
6080               21       33266358  HGNC:5965      1
6081               21       33266358  HGNC:5965      1
6082               21       33266358  HGNC:5965      1
6083               21       33266358  HGNC:5965      1
6084               21       33266358  HGNC:5965      1
6085               21       33266358  HGNC:5965      1
6086               21       33266358  HGNC:5965      1
6087               21       33266358  HGNC:5965      1
6088               21       33266358  HGNC:5965      1
6089               21       33266358  HGNC:5965      1
6090               21       33266358  HGNC:5965      1
6091               21       33266358  HGNC:5965      1
6092               21       33266358  HGNC:5965      1
6093               21       33266358  HGNC:5965      1
6094               21       33266358  HGNC:5965      1
6095               21       33266358  HGNC:5965      1
6096               21       33266358  HGNC:5965      1
6097               21       33266358  HGNC:5965      1
6098               21       33266358  HGNC:5965      1
6099               21       33266358  HGNC:5965      1
6100               21       33266358  HGNC:5965      1
6101               21       33266358  HGNC:5965      1
6102               21       33266358  HGNC:5965      1
6103               21       33266358  HGNC:5965      1
6104               21       33266358  HGNC:5965      1
6105               21       33266358  HGNC:5965      1
6106               21       33266358  HGNC:5965      1
6107               21       33266358  HGNC:5965      1
6108               21       33266358  HGNC:5965      1
6109               21       33266358  HGNC:5965      1
6110               21       33266358  HGNC:5965      1
6111               21       33263873 HGNC:44303     -1
6112               21       33263873 HGNC:44303     -1
6113               21       44675868  HGNC:6048     -1
6114               21       44885953  HGNC:6155     -1
6115               21       44885953  HGNC:6155     -1
6116               21       44885953  HGNC:6155     -1
6117               21       44885953  HGNC:6155     -1
6118               21       44885953  HGNC:6155     -1
6119               21       44885953  HGNC:6155     -1
6120               21       44885953  HGNC:6155     -1
6121               21       44885953  HGNC:6155     -1
6122               21       44885953  HGNC:6155     -1
6123               21       44885953  HGNC:6155     -1
6124               21       44885953  HGNC:6155     -1
6125               21       44885953  HGNC:6155     -1
6126               21       44885953  HGNC:6155     -1
6127               21       44885953  HGNC:6155     -1
6128               21       44885953  HGNC:6155     -1
6129               21       44885953  HGNC:6155     -1
6130               21       44885953  HGNC:6155     -1
6131               21       44885953  HGNC:6155     -1
6132               21       44885953  HGNC:6155     -1
6133               21       44885953  HGNC:6155     -1
6134               21       44885953  HGNC:6155     -1
6135               21       44885953  HGNC:6155     -1
6136               21       44885953  HGNC:6155     -1
6137               21       44885953  HGNC:6155     -1
6138               21       44885953  HGNC:6155     -1
6139               21       44885953  HGNC:6155     -1
6140               21       44885953  HGNC:6155     -1
6141               21       44885953  HGNC:6155     -1
6142               21       44885953  HGNC:6155     -1
6143               21       44885953  HGNC:6155     -1
6144               21       44885953  HGNC:6155     -1
6145               21       44885953  HGNC:6155     -1
6146               21       44885953  HGNC:6155     -1
6147               21       44885953  HGNC:6155     -1
6148               21       44885953  HGNC:6155     -1
6149               21       44885953  HGNC:6155     -1
6150               21       44885953  HGNC:6155     -1
6151               21       44885953  HGNC:6155     -1
6152               21       44885953  HGNC:6155     -1
6153               21       44885953  HGNC:6155     -1
6154               21       44885953  HGNC:6155     -1
6155               21       44885953  HGNC:6155     -1
6156               21       44885953  HGNC:6155     -1
6157               21       44885953  HGNC:6155     -1
6158               21       44885953  HGNC:6155     -1
6159               21       44885953  HGNC:6155     -1
6160               21       44885953  HGNC:6155     -1
6161               21       44885953  HGNC:6155     -1
6162               21       44885953  HGNC:6155     -1
6163               21       44885953  HGNC:6155     -1
6164               21       44885953  HGNC:6155     -1
6165               21       44885953  HGNC:6155     -1
6166               21       44885953  HGNC:6155     -1
6167               21       44885953  HGNC:6155     -1
6168               21       44885953  HGNC:6155     -1
6169               21       44885953  HGNC:6155     -1
6170               21       44885953  HGNC:6155     -1
6171               21       44885953  HGNC:6155     -1
6172               21       44885953  HGNC:6155     -1
6173               21       44885953  HGNC:6155     -1
6174               21       44885953  HGNC:6155     -1
6175               21       44885953  HGNC:6155     -1
6176               21       44885953  HGNC:6155     -1
6177               21       44885953  HGNC:6155     -1
6178               21       44885953  HGNC:6155     -1
6179               21       44885953  HGNC:6155     -1
6180               21       44885953  HGNC:6155     -1
6181               21       44885953  HGNC:6155     -1
6182               21       44885953  HGNC:6155     -1
6183               21       44885953  HGNC:6155     -1
6184               21       44885953  HGNC:6155     -1
6185               21       44885953  HGNC:6155     -1
6186               21       44885953  HGNC:6155     -1
6187               21       44885953  HGNC:6155     -1
6188               21       44885953  HGNC:6155     -1
6189               21       44885953  HGNC:6155     -1
6190               21       44885953  HGNC:6155     -1
6191               21       44885953  HGNC:6155     -1
6192               21       44885953  HGNC:6155     -1
6193               21       44885953  HGNC:6155     -1
6194               21       44885953  HGNC:6155     -1
6195               21       44885953  HGNC:6155     -1
6196               21       44885953  HGNC:6155     -1
6197               21       44885953  HGNC:6155     -1
6198               21       44885953  HGNC:6155     -1
6199               21       44885953  HGNC:6155     -1
6200               21       44885953  HGNC:6155     -1
6201               21       44885953  HGNC:6155     -1
6202               21       44885953  HGNC:6155     -1
6203               21       44885953  HGNC:6155     -1
6204               21       44885953  HGNC:6155     -1
6205               21       44885953  HGNC:6155     -1
6206               21       44885953  HGNC:6155     -1
6207               21       44885953  HGNC:6155     -1
6208               21       44885953  HGNC:6155     -1
6209               21       44885953  HGNC:6155     -1
6210               21       44885953  HGNC:6155     -1
6211               21       44885953  HGNC:6155     -1
6212               21       44885953  HGNC:6155     -1
6213               21       44885953  HGNC:6155     -1
6214               21       44885953  HGNC:6155     -1
6215               21       44885953  HGNC:6155     -1
6216               21       44885953  HGNC:6155     -1
6217               21       44885953  HGNC:6155     -1
6218               21       44885953  HGNC:6155     -1
6219               21       44885953  HGNC:6155     -1
6220               21       44885953  HGNC:6155     -1
6221               21       44885953  HGNC:6155     -1
6222               21       44885953  HGNC:6155     -1
6223               21       44885953  HGNC:6155     -1
6224               21       44885953  HGNC:6155     -1
6225               21       44885953  HGNC:6155     -1
6226               21       44885953  HGNC:6155     -1
6227               21       44885953  HGNC:6155     -1
6228               21       44885953  HGNC:6155     -1
6229               21       44885953  HGNC:6155     -1
6230               21       44885953  HGNC:6155     -1
6231               21       44885953  HGNC:6155     -1
6232               21       44885953  HGNC:6155     -1
6233               21       44885953  HGNC:6155     -1
6234               21       44885953  HGNC:6155     -1
6235               21       44885953  HGNC:6155     -1
6236               21       44885953  HGNC:6155     -1
6237               21       44885953  HGNC:6155     -1
6238               21       44885953  HGNC:6155     -1
6239               21       44885953  HGNC:6155     -1
6240               21       44885953  HGNC:6155     -1
6241               21       44885953  HGNC:6155     -1
6242               21       44885953  HGNC:6155     -1
6243               21       44885953  HGNC:6155     -1
6244               21       44885953  HGNC:6155     -1
6245               21       44885953  HGNC:6155     -1
6246               21       44885953  HGNC:6155     -1
6247               21       44885953  HGNC:6155     -1
6248               21       44885953  HGNC:6155     -1
6249               21       44885953  HGNC:6155     -1
6250               21       44885953  HGNC:6155     -1
6251               21       44885953  HGNC:6155     -1
6252               21       44885953  HGNC:6155     -1
6253               21       44885953  HGNC:6155     -1
6254               21       44885953  HGNC:6155     -1
6255               21       44885953  HGNC:6155     -1
6256               21       44885953  HGNC:6155     -1
6257               21       44885953  HGNC:6155     -1
6258               21       44885953  HGNC:6155     -1
6259               21       44885953  HGNC:6155     -1
6260               21       44885953  HGNC:6155     -1
6261               21       44885953  HGNC:6155     -1
6262               21       44885953  HGNC:6155     -1
6263               21       44885953  HGNC:6155     -1
6264               21       44885953  HGNC:6155     -1
6265               21       44885953  HGNC:6155     -1
6266               21       44885953  HGNC:6155     -1
6267               21       44885953  HGNC:6155     -1
6268               21       44885953  HGNC:6155     -1
6269               21       44885953  HGNC:6155     -1
6270               21       44885953  HGNC:6155     -1
6271               21       44885953  HGNC:6155     -1
6272               21       44885953  HGNC:6155     -1
6273               21       44885953  HGNC:6155     -1
6274               21       44885953  HGNC:6155     -1
6275               21       44885953  HGNC:6155     -1
6276               21       44885953  HGNC:6155     -1
6277               21       44885953  HGNC:6155     -1
6278               21       44885953  HGNC:6155     -1
6279               21       44885953  HGNC:6155     -1
6280               21       44885953  HGNC:6155     -1
6281               21       44885953  HGNC:6155     -1
6282               21       44885953  HGNC:6155     -1
6283               21       44885953  HGNC:6155     -1
6284               21       44885953  HGNC:6155     -1
6285               21       44885953  HGNC:6155     -1
6286               21       44885953  HGNC:6155     -1
6287               21       44885953  HGNC:6155     -1
6288               21       44885953  HGNC:6155     -1
6289               21       44885953  HGNC:6155     -1
6290               21       44885953  HGNC:6155     -1
6291               21       44885953  HGNC:6155     -1
6292               21       44885953  HGNC:6155     -1
6293               21       44885953  HGNC:6155     -1
6294               21       44885953  HGNC:6155     -1
6295               21       44885953  HGNC:6155     -1
6296               21       44885953  HGNC:6155     -1
6297               21       44885953  HGNC:6155     -1
6298               21       44885953  HGNC:6155     -1
6299               21       44885953  HGNC:6155     -1
6300               21       44885953  HGNC:6155     -1
6301               21       44885953  HGNC:6155     -1
6302               21       44885953  HGNC:6155     -1
6303               21       44885953  HGNC:6155     -1
6304               21       44885953  HGNC:6155     -1
6305               21       44885953  HGNC:6155     -1
6306               21       44885953  HGNC:6155     -1
6307               21       44885953  HGNC:6155     -1
6308               21       44885953  HGNC:6155     -1
6309               21       44885953  HGNC:6155     -1
6310               21       44921051 HGNC:44304      1
6311               21       44921051 HGNC:44304      1
6312               21       44921051 HGNC:44304      1
6313               21       44921051 HGNC:44304      1
6314               21       44921051 HGNC:44304      1
6315               21       44921051 HGNC:44304      1
6316               21       44921051 HGNC:44304      1
6317               21       44921051 HGNC:44304      1
6318               21       44921051 HGNC:44304      1
6319               21       44921051 HGNC:44304      1
6320               21       44921051 HGNC:44304      1
6321               21       44921051 HGNC:44304      1
6322               21       44921051 HGNC:44304      1
6323               21       44921051 HGNC:44304      1
6324               21       44921051 HGNC:44304      1
6325               21       44921051 HGNC:44304      1
6326               21       44921051 HGNC:44304      1
6327               21       44921051 HGNC:44304      1
6328               21       44921051 HGNC:44304      1
6329               21       44921051 HGNC:44304      1
6330               21       44921051 HGNC:44304      1
6331               21       44921051 HGNC:44304      1
6332               21       33642400  HGNC:6183      1
6333               21       33642400  HGNC:6183      1
6334               21       33642400  HGNC:6183      1
6335               21       33642400  HGNC:6183      1
6336               21       33642400  HGNC:6183      1
6337               21       33642400  HGNC:6183      1
6338               21       33642400  HGNC:6183      1
6339               21       33642400  HGNC:6183      1
6340               21       33642400  HGNC:6183      1
6341               21       33642400  HGNC:6183      1
6342               21       33642400  HGNC:6183      1
6343               21       33642400  HGNC:6183      1
6344               21       33642400  HGNC:6183      1
6345               21       33642400  HGNC:6183      1
6346               21       33642400  HGNC:6183      1
6347               21       33642400  HGNC:6183      1
6348               21       33642400  HGNC:6183      1
6349               21       33642400  HGNC:6183      1
6350               21       33642400  HGNC:6183      1
6351               21       33642400  HGNC:6183      1
6352               21       33642400  HGNC:6183      1
6353               21       33642400  HGNC:6183      1
6354               21       33642400  HGNC:6183      1
6355               21       33642400  HGNC:6183      1
6356               21       33642400  HGNC:6183      1
6357               21       33642400  HGNC:6183      1
6358               21       33642400  HGNC:6183      1
6359               21       33642400  HGNC:6183      1
6360               21       33642400  HGNC:6183      1
6361               21       33642400  HGNC:6183      1
6362               21       33642400  HGNC:6183      1
6363               21       33642400  HGNC:6183      1
6364               21       33642400  HGNC:6183      1
6365               21       33642400  HGNC:6183      1
6366               21       33642400  HGNC:6183      1
6367               21       33642400  HGNC:6183      1
6368               21       33642400  HGNC:6183      1
6369               21       33642400  HGNC:6183      1
6370               21       33642400  HGNC:6183      1
6371               21       33642400  HGNC:6183      1
6372               21       33642400  HGNC:6183      1
6373               21       33642400  HGNC:6183      1
6374               21       33642400  HGNC:6183      1
6375               21       33642400  HGNC:6183      1
6376               21       33642400  HGNC:6183      1
6377               21       33642400  HGNC:6183      1
6378               21       33642400  HGNC:6183      1
6379               21       33642400  HGNC:6183      1
6380               21       33642400  HGNC:6183      1
6381               21       33642400  HGNC:6183      1
6382               21       33642400  HGNC:6183      1
6383               21       33642400  HGNC:6183      1
6384               21       33642400  HGNC:6183      1
6385               21       33642400  HGNC:6183      1
6386               21       33642400  HGNC:6183      1
6387               21       33642400  HGNC:6183      1
6388               21       33642400  HGNC:6183      1
6389               21       33642400  HGNC:6183      1
6390               21       33642400  HGNC:6183      1
6391               21       33642400  HGNC:6183      1
6392               21       33642400  HGNC:6183      1
6393               21       33642400  HGNC:6183      1
6394               21       33642400  HGNC:6183      1
6395               21       33642400  HGNC:6183      1
6396               21       33642400  HGNC:6183      1
6397               21       33642400  HGNC:6183      1
6398               21       33642400  HGNC:6183      1
6399               21       33642400  HGNC:6183      1
6400               21       33642400  HGNC:6183      1
6401               21       33642400  HGNC:6183      1
6402               21       33642400  HGNC:6183      1
6403               21       33642400  HGNC:6183      1
6404               21       33642400  HGNC:6183      1
6405               21       33642400  HGNC:6183      1
6406               21       33642400  HGNC:6183      1
6407               21       33642400  HGNC:6183      1
6408               21       33642400  HGNC:6183      1
6409               21       33642400  HGNC:6183      1
6410               21       33642400  HGNC:6183      1
6411               21       33642400  HGNC:6183      1
6412               21       33642400  HGNC:6183      1
6413               21       33642400  HGNC:6183      1
6414               21       33642400  HGNC:6183      1
6415               21       33642400  HGNC:6183      1
6416               21       33642400  HGNC:6183      1
6417               21       33642400  HGNC:6183      1
6418               21       33642400  HGNC:6183      1
6419               21       33642400  HGNC:6183      1
6420               21       33642400  HGNC:6183      1
6421               21       33642400  HGNC:6183      1
6422               21       33642400  HGNC:6183      1
6423               21       33642400  HGNC:6183      1
6424               21       33642400  HGNC:6183      1
6425               21       33642400  HGNC:6183      1
6426               21       33642400  HGNC:6183      1
6427               21       33642400  HGNC:6183      1
6428               21       33642400  HGNC:6183      1
6429               21       33642400  HGNC:6183      1
6430               21       33642400  HGNC:6183      1
6431               21       33642400  HGNC:6183      1
6432               21       33642400  HGNC:6183      1
6433               21       33642400  HGNC:6183      1
6434               21       33642400  HGNC:6183      1
6435               21       33642400  HGNC:6183      1
6436               21       33642400  HGNC:6183      1
6437               21       33642400  HGNC:6183      1
6438               21       33642400  HGNC:6183      1
6439               21       33642400  HGNC:6183      1
6440               21       33642400  HGNC:6183      1
6441               21       33642400  HGNC:6183      1
6442               21       33642400  HGNC:6183      1
6443               21       33642400  HGNC:6183      1
6444               21       33642400  HGNC:6183      1
6445               21       33642400  HGNC:6183      1
6446               21       33642400  HGNC:6183      1
6447               21       33642400  HGNC:6183      1
6448               21       33642400  HGNC:6183      1
6449               21       33642400  HGNC:6183      1
6450               21       33642400  HGNC:6183      1
6451               21       33642400  HGNC:6183      1
6452               21       33642400  HGNC:6183      1
6453               21       33642400  HGNC:6183      1
6454               21       33642400  HGNC:6183      1
6455               21       33642400  HGNC:6183      1
6456               21       33642400  HGNC:6183      1
6457               21       33642400  HGNC:6183      1
6458               21       33642400  HGNC:6183      1
6459               21       33642400  HGNC:6183      1
6460               21       33642400  HGNC:6183      1
6461               21       33642400  HGNC:6183      1
6462               21       33642400  HGNC:6183      1
6463               21       33642400  HGNC:6183      1
6464               21       33642400  HGNC:6183      1
6465               21       33642400  HGNC:6183      1
6466               21       33642400  HGNC:6183      1
6467               21       33642400  HGNC:6183      1
6468               21       33642400  HGNC:6183      1
6469               21       33642400  HGNC:6183      1
6470               21       33642400  HGNC:6183      1
6471               21       33642400  HGNC:6183      1
6472               21       33642400  HGNC:6183      1
6473               21       33642400  HGNC:6183      1
6474               21       33642400  HGNC:6183      1
6475               21       33642400  HGNC:6183      1
6476               21       33642400  HGNC:6183      1
6477               21       33642400  HGNC:6183      1
6478               21       33642400  HGNC:6183      1
6479               21       33642400  HGNC:6183      1
6480               21       33642400  HGNC:6183      1
6481               21       33642400  HGNC:6183      1
6482               21       33642400  HGNC:6183      1
6483               21       33642400  HGNC:6183      1
6484               21       33642400  HGNC:6183      1
6485               21       33642400  HGNC:6183      1
6486               21       33642400  HGNC:6183      1
6487               21       33642400  HGNC:6183      1
6488               21       33642400  HGNC:6183      1
6489               21       33642400  HGNC:6183      1
6490               21       33642400  HGNC:6183      1
6491               21       33642400  HGNC:6183      1
6492               21       33642400  HGNC:6183      1
6493               21       33642400  HGNC:6183      1
6494               21       33642400  HGNC:6183      1
6495               21       33642400  HGNC:6183      1
6496               21       33642400  HGNC:6183      1
6497               21       33642400  HGNC:6183      1
6498               21       33642400  HGNC:6183      1
6499               21       33642400  HGNC:6183      1
6500               21       33642400  HGNC:6183      1
6501               21       33642400  HGNC:6183      1
6502               21       33642400  HGNC:6183      1
6503               21       33642400  HGNC:6183      1
6504               21       33642400  HGNC:6183      1
6505               21       33642400  HGNC:6183      1
6506               21       33642400  HGNC:6183      1
6507               21       33642400  HGNC:6183      1
6508               21       33642400  HGNC:6183      1
6509               21       33642400  HGNC:6183      1
6510               21       33642400  HGNC:6183      1
6511               21       33642400  HGNC:6183      1
6512               21       33642400  HGNC:6183      1
6513               21       33642400  HGNC:6183      1
6514               21       33642400  HGNC:6183      1
6515               21       33642400  HGNC:6183      1
6516               21       33642400  HGNC:6183      1
6517               21       33642400  HGNC:6183      1
6518               21       33642400  HGNC:6183      1
6519               21       33642400  HGNC:6183      1
6520               21       33642400  HGNC:6183      1
6521               21       33642400  HGNC:6183      1
6522               21       33642400  HGNC:6183      1
6523               21       33642400  HGNC:6183      1
6524               21       33642400  HGNC:6183      1
6525               21       33642400  HGNC:6183      1
6526               21       33642400  HGNC:6183      1
6527               21       33642400  HGNC:6183      1
6528               21       33642400  HGNC:6183      1
6529               21       33642400  HGNC:6183      1
6530               21       33642400  HGNC:6183      1
6531               21       33642400  HGNC:6183      1
6532               21       33642400  HGNC:6183      1
6533               21       33642400  HGNC:6183      1
6534               21       33642400  HGNC:6183      1
6535               21       33642400  HGNC:6183      1
6536               21       33642400  HGNC:6183      1
6537               21       33642400  HGNC:6183      1
6538               21       33642400  HGNC:6183      1
6539               21       33642400  HGNC:6183      1
6540               21       33642400  HGNC:6183      1
6541               21       33642400  HGNC:6183      1
6542               21       33642400  HGNC:6183      1
6543               21       33642400  HGNC:6183      1
6544               21       33642400  HGNC:6183      1
6545               21       33642400  HGNC:6183      1
6546               21       33642400  HGNC:6183      1
6547               21       33642400  HGNC:6183      1
6548               21       33642400  HGNC:6183      1
6549               21       33642400  HGNC:6183      1
6550               21       33642400  HGNC:6183      1
6551               21       33642400  HGNC:6183      1
6552               21       33642400  HGNC:6183      1
6553               21       33642400  HGNC:6183      1
6554               21       33642400  HGNC:6183      1
6555               21       33642400  HGNC:6183      1
6556               21       33642400  HGNC:6183      1
6557               21       33642400  HGNC:6183      1
6558               21       33642400  HGNC:6183      1
6559               21       33642400  HGNC:6183      1
6560               21       33642400  HGNC:6183      1
6561               21       33642400  HGNC:6183      1
6562               21       33642400  HGNC:6183      1
6563               21       33642400  HGNC:6183      1
6564               21       33642400  HGNC:6183      1
6565               21       33642400  HGNC:6183      1
6566               21       33642400  HGNC:6183      1
6567               21       33642400  HGNC:6183      1
6568               21       33642400  HGNC:6183      1
6569               21       33642400  HGNC:6183      1
6570               21       33642400  HGNC:6183      1
6571               21       33642400  HGNC:6183      1
6572               21       33642400  HGNC:6183      1
6573               21       33642400  HGNC:6183      1
6574               21       33642400  HGNC:6183      1
6575               21       33642400  HGNC:6183      1
6576               21       33642400  HGNC:6183      1
6577               21       33642400  HGNC:6183      1
6578               21       33642400  HGNC:6183      1
6579               21       33642400  HGNC:6183      1
6580               21       33642400  HGNC:6183      1
6581               21       33642400  HGNC:6183      1
6582               21       33642400  HGNC:6183      1
6583               21       33642400  HGNC:6183      1
6584               21       33642400  HGNC:6183      1
6585               21       33642400  HGNC:6183      1
6586               21       33642400  HGNC:6183      1
6587               21       33642400  HGNC:6183      1
6588               21       33642400  HGNC:6183      1
6589               21       33642400  HGNC:6183      1
6590               21       33642400  HGNC:6183      1
6591               21       33642400  HGNC:6183      1
6592               21       33642400  HGNC:6183      1
6593               21       33642400  HGNC:6183      1
6594               21       33642400  HGNC:6183      1
6595               21       33642400  HGNC:6183      1
6596               21       33642400  HGNC:6183      1
6597               21       33642400  HGNC:6183      1
6598               21       33642400  HGNC:6183      1
6599               21       33642400  HGNC:6183      1
6600               21       33642400  HGNC:6183      1
6601               21       33642400  HGNC:6183      1
6602               21       33642400  HGNC:6183      1
6603               21       33642400  HGNC:6183      1
6604               21       33642400  HGNC:6183      1
6605               21       33642400  HGNC:6183      1
6606               21       33642400  HGNC:6183      1
6607               21       33642400  HGNC:6183      1
6608               21       33642400  HGNC:6183      1
6609               21       33642400  HGNC:6183      1
6610               21       33642400  HGNC:6183      1
6611               21       33642400  HGNC:6183      1
6612               21       33642400  HGNC:6183      1
6613               21       33642400  HGNC:6183      1
6614               21       33642400  HGNC:6183      1
6615               21       33642400  HGNC:6183      1
6616               21       33642400  HGNC:6183      1
6617               21       33642400  HGNC:6183      1
6618               21       33642400  HGNC:6183      1
6619               21       33642400  HGNC:6183      1
6620               21       33642400  HGNC:6183      1
6621               21       33642400  HGNC:6183      1
6622               21       33642400  HGNC:6183      1
6623               21       33642400  HGNC:6183      1
6624               21       33642400  HGNC:6183      1
6625               21       33642400  HGNC:6183      1
6626               21       33642400  HGNC:6183      1
6627               21       33642400  HGNC:6183      1
6628               21       33642400  HGNC:6183      1
6629               21       33642400  HGNC:6183      1
6630               21       33642400  HGNC:6183      1
6631               21       33642400  HGNC:6183      1
6632               21       33642400  HGNC:6183      1
6633               21       33642400  HGNC:6183      1
6634               21       33642400  HGNC:6183      1
6635               21       33642400  HGNC:6183      1
6636               21       33642400  HGNC:6183      1
6637               21       33642400  HGNC:6183      1
6638               21       33642400  HGNC:6183      1
6639               21       33642400  HGNC:6183      1
6640               21       33642400  HGNC:6183      1
6641               21       33642400  HGNC:6183      1
6642               21       33642400  HGNC:6183      1
6643               21       33642400  HGNC:6183      1
6644               21       33642400  HGNC:6183      1
6645               21       33642400  HGNC:6183      1
6646               21       33642400  HGNC:6183      1
6647               21       33642400  HGNC:6183      1
6648               21       33642400  HGNC:6183      1
6649               21       33642400  HGNC:6183      1
6650               21       33642400  HGNC:6183      1
6651               21       33642400  HGNC:6183      1
6652               21       33642400  HGNC:6183      1
6653               21       33642400  HGNC:6183      1
6654               21       33642400  HGNC:6183      1
6655               21       33642400  HGNC:6183      1
6656               21       33642400  HGNC:6183      1
6657               21       33642400  HGNC:6183      1
6658               21       33642400  HGNC:6183      1
6659               21       33642400  HGNC:6183      1
6660               21       33642400  HGNC:6183      1
6661               21       33642400  HGNC:6183      1
6662               21       33642400  HGNC:6183      1
6663               21       33642400  HGNC:6183      1
6664               21       33642400  HGNC:6183      1
6665               21       33642400  HGNC:6183      1
6666               21       33642400  HGNC:6183      1
6667               21       33642400  HGNC:6183      1
6668               21       33642400  HGNC:6183      1
6669               21       33642400  HGNC:6183      1
6670               21       33642400  HGNC:6183      1
6671               21       33642400  HGNC:6183      1
6672               21       33642400  HGNC:6183      1
6673               21       33642400  HGNC:6183      1
6674               21       33642400  HGNC:6183      1
6675               21       33642400  HGNC:6183      1
6676               21       33642400  HGNC:6183      1
6677               21       33642400  HGNC:6183      1
6678               21       33642400  HGNC:6183      1
6679               21       33642400  HGNC:6183      1
6680               21       33642400  HGNC:6183      1
6681               21       33642400  HGNC:6183      1
6682               21       33642400  HGNC:6183      1
6683               21       33642400  HGNC:6183      1
6684               21       33642400  HGNC:6183      1
6685               21       33642400  HGNC:6183      1
6686               21       33642400  HGNC:6183      1
6687               21       33642400  HGNC:6183      1
6688               21       33642400  HGNC:6183      1
6689               21       33642400  HGNC:6183      1
6690               21       33642400  HGNC:6183      1
6691               21       33642400  HGNC:6183      1
6692               21       33642400  HGNC:6183      1
6693               21       33642400  HGNC:6183      1
6694               21       33642400  HGNC:6183      1
6695               21       33642400  HGNC:6183      1
6696               21       33642400  HGNC:6183      1
6697               21       33642400  HGNC:6183      1
6698               21       33642400  HGNC:6183      1
6699               21       33642400  HGNC:6183      1
6700               21       33642400  HGNC:6183      1
6701               21       33642400  HGNC:6183      1
6702               21       33642400  HGNC:6183      1
6703               21       33642400  HGNC:6183      1
6704               21       33642400  HGNC:6183      1
6705               21       33642400  HGNC:6183      1
6706               21       33642400  HGNC:6183      1
6707               21       33642400  HGNC:6183      1
6708               21       33642400  HGNC:6183      1
6709               21       33642400  HGNC:6183      1
6710               21       33642400  HGNC:6183      1
6711               21       33642400  HGNC:6183      1
6712               21       33642400  HGNC:6183      1
6713               21       33642400  HGNC:6183      1
6714               21       33642400  HGNC:6183      1
6715               21       33642400  HGNC:6183      1
6716               21       33642400  HGNC:6183      1
6717               21       33642400  HGNC:6183      1
6718               21       33642400  HGNC:6183      1
6719               21       33642400  HGNC:6183      1
6720               21       33642400  HGNC:6183      1
6721               21       33642400  HGNC:6183      1
6722               21       33642400  HGNC:6183      1
6723               21       33642400  HGNC:6183      1
6724               21       33642400  HGNC:6183      1
6725               21       33642400  HGNC:6183      1
6726               21       33642400  HGNC:6183      1
6727               21       33642400  HGNC:6183      1
6728               21       33642400  HGNC:6183      1
6729               21       33642400  HGNC:6183      1
6730               21       33642400  HGNC:6183      1
6731               21       33642400  HGNC:6183      1
6732               21       33642400  HGNC:6183      1
6733               21       33642400  HGNC:6183      1
6734               21       33642400  HGNC:6183      1
6735               21       33642400  HGNC:6183      1
6736               21       33642400  HGNC:6183      1
6737               21       33642400  HGNC:6183      1
6738               21       33642400  HGNC:6183      1
6739               21       33642400  HGNC:6183      1
6740               21       33642400  HGNC:6183      1
6741               21       25639272 HGNC:14686      1
6742               21       25639272 HGNC:14686      1
6743               21       25639272 HGNC:14686      1
6744               21       25639272 HGNC:14686      1
6745               21       25639272 HGNC:14686      1
6746               21       25639272 HGNC:14686      1
6747               21       25639272 HGNC:14686      1
6748               21       25639272 HGNC:14686      1
6749               21       25639272 HGNC:14686      1
6750               21       25639272 HGNC:14686      1
6751               21       25639272 HGNC:14686      1
6752               21       25639272 HGNC:14686      1
6753               21       25639272 HGNC:14686      1
6754               21       25639272 HGNC:14686      1
6755               21       25639272 HGNC:14686      1
6756               21       25639272 HGNC:14686      1
6757               21       25639272 HGNC:14686      1
6758               21       25639272 HGNC:14686      1
6759               21       25639272 HGNC:14686      1
6760               21       25639272 HGNC:14686      1
6761               21       25639272 HGNC:14686      1
6762               21       25639272 HGNC:14686      1
6763               21       25639272 HGNC:14686      1
6764               21       25639272 HGNC:14686      1
6765               21       25639272 HGNC:14686      1
6766               21       25639272 HGNC:14686      1
6767               21       25639272 HGNC:14686      1
6768               21       25639272 HGNC:14686      1
6769               21       25639272 HGNC:14686      1
6770               21       25639272 HGNC:14686      1
6771               21       25639272 HGNC:14686      1
6772               21       25639272 HGNC:14686      1
6773               21       25639272 HGNC:14686      1
6774               21       25639272 HGNC:14686      1
6775               21       25639272 HGNC:14686      1
6776               21       25639272 HGNC:14686      1
6777               21       25639272 HGNC:14686      1
6778               21       25639272 HGNC:14686      1
6779               21       25639272 HGNC:14686      1
6780               21       25639272 HGNC:14686      1
6781               21       25639272 HGNC:14686      1
6782               21       25639272 HGNC:14686      1
6783               21       25639272 HGNC:14686      1
6784               21       25639272 HGNC:14686      1
6785               21       25639272 HGNC:14686      1
6786               21       25639272 HGNC:14686      1
6787               21       34446688  HGNC:6240     -1
6788               21       34446688  HGNC:6240     -1
6789               21       34446688  HGNC:6240     -1
6790               21       34446688  HGNC:6240     -1
6791               21       34446688  HGNC:6240     -1
6792               21       34446688  HGNC:6240     -1
6793               21       34446688  HGNC:6240     -1
6794               21       34446688  HGNC:6240     -1
6795               21       34446688  HGNC:6240     -1
6796               21       34446688  HGNC:6240     -1
6797               21       34446688  HGNC:6240     -1
6798               21       34446688  HGNC:6240     -1
6799               21       34446688  HGNC:6240     -1
6800               21       34446688  HGNC:6240     -1
6801               21       34446688  HGNC:6240     -1
6802               21       34446688  HGNC:6240     -1
6803               21       34446688  HGNC:6240     -1
6804               21       34446688  HGNC:6240     -1
6805               21       34446688  HGNC:6240     -1
6806               21       34446688  HGNC:6240     -1
6807               21       34446688  HGNC:6240     -1
6808               21       34446688  HGNC:6240     -1
6809               21       34446688  HGNC:6240     -1
6810               21       34446688  HGNC:6240     -1
6811               21       34446688  HGNC:6240     -1
6812               21        7816675 HGNC:52280     -1
6813               21        7816675 HGNC:52280     -1
6814               21        7816675 HGNC:52280     -1
6815               21        7816675 HGNC:52280     -1
6816               21        7816675 HGNC:52280     -1
6817               21        7816675 HGNC:52280     -1
6818               21        7816675 HGNC:52280     -1
6819               21        7816675 HGNC:52280     -1
6820               21        7816675 HGNC:52280     -1
6821               21        7816675 HGNC:52280     -1
6822               21        7816675 HGNC:52280     -1
6823               21       34364024  HGNC:6242      1
6824               21       34364024  HGNC:6242      1
6825               21       38157034  HGNC:6261      1
6826               21       38157034  HGNC:6261      1
6827               21       38157034  HGNC:6261      1
6828               21       38157034  HGNC:6261      1
6829               21       38157034  HGNC:6261      1
6830               21       38157034  HGNC:6261      1
6831               21       38157034  HGNC:6261      1
6832               21       38157034  HGNC:6261      1
6833               21       38157034  HGNC:6261      1
6834               21       38157034  HGNC:6261      1
6835               21       38157034  HGNC:6261      1
6836               21       38157034  HGNC:6261      1
6837               21       38157034  HGNC:6261      1
6838               21       38157034  HGNC:6261      1
6839               21       38157034  HGNC:6261      1
6840               21       38157034  HGNC:6261      1
6841               21       38157034  HGNC:6261      1
6842               21       38157034  HGNC:6261      1
6843               21       38157034  HGNC:6261      1
6844               21       38157034  HGNC:6261      1
6845               21       38157034  HGNC:6261      1
6846               21       38157034  HGNC:6261      1
6847               21       38157034  HGNC:6261      1
6848               21       38157034  HGNC:6261      1
6849               21       38157034  HGNC:6261      1
6850               21       38157034  HGNC:6261      1
6851               21       38157034  HGNC:6261      1
6852               21       38157034  HGNC:6261      1
6853               21       38157034  HGNC:6261      1
6854               21       38157034  HGNC:6261      1
6855               21       38157034  HGNC:6261      1
6856               21       38157034  HGNC:6261      1
6857               21       38157034  HGNC:6261      1
6858               21       38157034  HGNC:6261      1
6859               21       38157034  HGNC:6261      1
6860               21       38157034  HGNC:6261      1
6861               21       38157034  HGNC:6261      1
6862               21       38157034  HGNC:6261      1
6863               21       38157034  HGNC:6261      1
6864               21       38157034  HGNC:6261      1
6865               21       38157034  HGNC:6261      1
6866               21       38157034  HGNC:6261      1
6867               21       38157034  HGNC:6261      1
6868               21       38157034  HGNC:6261      1
6869               21       38157034  HGNC:6261      1
6870               21       38157034  HGNC:6261      1
6871               21       38157034  HGNC:6261      1
6872               21       38157034  HGNC:6261      1
6873               21       38157034  HGNC:6261      1
6874               21       38157034  HGNC:6261      1
6875               21       38157034  HGNC:6261      1
6876               21       38157034  HGNC:6261      1
6877               21       38157034  HGNC:6261      1
6878               21       38157034  HGNC:6261      1
6879               21       38157034  HGNC:6261      1
6880               21       38157034  HGNC:6261      1
6881               21       38157034  HGNC:6261      1
6882               21       38157034  HGNC:6261      1
6883               21       38157034  HGNC:6261      1
6884               21       38157034  HGNC:6261      1
6885               21       38157034  HGNC:6261      1
6886               21       38157034  HGNC:6261      1
6887               21       38157034  HGNC:6261      1
6888               21       38157034  HGNC:6261      1
6889               21       38157034  HGNC:6261      1
6890               21       38157034  HGNC:6261      1
6891               21       38157034  HGNC:6261      1
6892               21       38157034  HGNC:6261      1
6893               21       38157034  HGNC:6261      1
6894               21       38157034  HGNC:6261      1
6895               21       38157034  HGNC:6261      1
6896               21       38157034  HGNC:6261      1
6897               21       38157034  HGNC:6261      1
6898               21       38157034  HGNC:6261      1
6899               21       38157034  HGNC:6261      1
6900               21       38157034  HGNC:6261      1
6901               21       38157034  HGNC:6261      1
6902               21       38157034  HGNC:6261      1
6903               21       38157034  HGNC:6261      1
6904               21       38157034  HGNC:6261      1
6905               21       38157034  HGNC:6261      1
6906               21       38157034  HGNC:6261      1
6907               21       38157034  HGNC:6261      1
6908               21       38157034  HGNC:6261      1
6909               21       38157034  HGNC:6261      1
6910               21       38157034  HGNC:6261      1
6911               21       38157034  HGNC:6261      1
6912               21       38157034  HGNC:6261      1
6913               21       38157034  HGNC:6261      1
6914               21       38157034  HGNC:6261      1
6915               21       37607376  HGNC:6267     -1
6916               21       37607376  HGNC:6267     -1
6917               21       37607376  HGNC:6267     -1
6918               21       37607376  HGNC:6267     -1
6919               21       37717102 HGNC:41352     -1
6920               21       37717102 HGNC:41352     -1
6921               21       20424949  HGNC:6435     -1
6922               21       44538981 HGNC:22966     -1
6923               21       44637356 HGNC:22972      1
6924               21       44646414 HGNC:20528      1
6925               21       44697172 HGNC:20533      1
6926               21       44697172 HGNC:20533      1
6927               21       44697172 HGNC:20533      1
6928               21       44697172 HGNC:20533      1
6929               21       44702221 HGNC:34213      1
6930               21       44550357 HGNC:22967     -1
6931               21       44550357 HGNC:22967     -1
6932               21       44550357 HGNC:22967     -1
6933               21       44557790 HGNC:22968     -1
6934               21       44573724 HGNC:20521      1
6935               21       44573724 HGNC:20521      1
6936               21       44573724 HGNC:20521      1
6937               21       44573724 HGNC:20521      1
6938               21       44573724 HGNC:20521      1
6939               21       44573724 HGNC:20521      1
6940               21       44573724 HGNC:20521      1
6941               21       44573724 HGNC:20521      1
6942               21       44573724 HGNC:20521      1
6943               21       44573724 HGNC:20521      1
6944               21       44579455 HGNC:22969     -1
6945               21       44591268 HGNC:20523     -1
6946               21       44600597 HGNC:22970      1
6947               21       44612079 HGNC:20525      1
6948               21       44627123 HGNC:22971      1
6949               21       44627123 HGNC:22971      1
6950               21       44627123 HGNC:22971      1
6951               21       44627123 HGNC:22971      1
6952               21       44627123 HGNC:22971      1
6953               21       44627123 HGNC:22971      1
6954               21       30880644 HGNC:18922     -1
6955               21       44681576 HGNC:20529     -1
6956               21       44666189 HGNC:20530     -1
6957               21       44657932 HGNC:20531      1
6958               21       44654213 HGNC:20532     -1
6959               21       30396074 HGNC:18924      1
6960               21       30371391 HGNC:18923     -1
6961               21       30425265 HGNC:18925     -1
6962               21       30430230 HGNC:18926      1
6963               21       30436466 HGNC:18929     -1
6964               21       30356515 HGNC:18930     -1
6965               21       30440275 HGNC:18927      1
6966               21       30479699 HGNC:18936     -1
6967               21       30514613 HGNC:18951     -1
6968               21       30537278 HGNC:18952     -1
6969               21       30487057 HGNC:18937     -1
6970               21       30491464 HGNC:18938     -1
6971               21       30496824 HGNC:18939     -1
6972               21       30501657 HGNC:18940     -1
6973               21       30541535 HGNC:18941     -1
6974               21       30560875 HGNC:18942     -1
6975               21       31038159 HGNC:33898     -1
6976               21       30510307 HGNC:18950     -1
6977               21       30616425 HGNC:18943      1
6978               21       30635236 HGNC:18944      1
6979               21       30642864 HGNC:34001      1
6980               21       30620627 HGNC:34002      1
6981               21       30754830 HGNC:18945     -1
6982               21       30746794 HGNC:18946     -1
6983               21       30718525 HGNC:34216     -1
6984               21       30741780 HGNC:18954     -1
6985               21       30601087 HGNC:18947      1
6986               21       30590105 HGNC:37091     -1
6987               21       30348399 HGNC:18928     -1
6988               21       30281309 HGNC:33902     -1
6989               21       30289145 HGNC:34003     -1
6990               21       30319124 HGNC:33760     -1
6991               21       30337013 HGNC:33864     -1
6992               21       30613431 HGNC:18931     -1
6993               21       30598590 HGNC:18932     -1
6994               21       30592440 HGNC:18933      1
6995               21       30829039 HGNC:18934     -1
6996               21       30812697 HGNC:18935     -1
6997               21       30802242 HGNC:18948     -1
6998               21       30806932 HGNC:18949     -1
6999               21       39405844  HGNC:1255     -1
7000               21       39405844  HGNC:1255     -1
7001               21       39405844  HGNC:1255     -1
7002               21       39405844  HGNC:1255     -1
7003               21       39405844  HGNC:1255     -1
7004               21       39405844  HGNC:1255     -1
7005               21       39405844  HGNC:1255     -1
7006               21       39405844  HGNC:1255     -1
7007               21       39405844  HGNC:1255     -1
7008               21       39405844  HGNC:1255     -1
7009               21       39405844  HGNC:1255     -1
7010               21       39405844  HGNC:1255     -1
7011               21       39405844  HGNC:1255     -1
7012               21       39405844  HGNC:1255     -1
7013               21       39405844  HGNC:1255     -1
7014               21       39405844  HGNC:1255     -1
7015               21       39405844  HGNC:1255     -1
7016               21       39405844  HGNC:1255     -1
7017               21       39405844  HGNC:1255     -1
7018               21       39405844  HGNC:1255     -1
7019               21       39405844  HGNC:1255     -1
7020               21       39405844  HGNC:1255     -1
7021               21       39405844  HGNC:1255     -1
7022               21       39405844  HGNC:1255     -1
7023               21       39405844  HGNC:1255     -1
7024               21       39405844  HGNC:1255     -1
7025               21       39405844  HGNC:1255     -1
7026               21       39405844  HGNC:1255     -1
7027               21       39405844  HGNC:1255     -1
7028               21       39405844  HGNC:1255     -1
7029               21       39405844  HGNC:1255     -1
7030               21       39405844  HGNC:1255     -1
7031               21       39405844  HGNC:1255     -1
7032               21       39405844  HGNC:1255     -1
7033               21       39405844  HGNC:1255     -1
7034               21       39405844  HGNC:1255     -1
7035               21       39405844  HGNC:1255     -1
7036               21       39405844  HGNC:1255     -1
7037               21       39405844  HGNC:1255     -1
7038               21       39405844  HGNC:1255     -1
7039               21       39405844  HGNC:1255     -1
7040               21       39405844  HGNC:1255     -1
7041               21       39405844  HGNC:1255     -1
7042               21       39405844  HGNC:1255     -1
7043               21       39405844  HGNC:1255     -1
7044               21       39405844  HGNC:1255     -1
7045               21       39405844  HGNC:1255     -1
7046               21       39405844  HGNC:1255     -1
7047               21       39405844  HGNC:1255     -1
7048               21       39405844  HGNC:1255     -1
7049               21       39405844  HGNC:1255     -1
7050               21       39405844  HGNC:1255     -1
7051               21       39405844  HGNC:1255     -1
7052               21       39405844  HGNC:1255     -1
7053               21       39405844  HGNC:1255     -1
7054               21       39405844  HGNC:1255     -1
7055               21       39405844  HGNC:1255     -1
7056               21       39405844  HGNC:1255     -1
7057               21       39405844  HGNC:1255     -1
7058               21       39405844  HGNC:1255     -1
7059               21       39405844  HGNC:1255     -1
7060               21       39405844  HGNC:1255     -1
7061               21       39405844  HGNC:1255     -1
7062               21       39405844  HGNC:1255     -1
7063               21       39405844  HGNC:1255     -1
7064               21       39405844  HGNC:1255     -1
7065               21       39405844  HGNC:1255     -1
7066               21       39405844  HGNC:1255     -1
7067               21       39405844  HGNC:1255     -1
7068               21       39405844  HGNC:1255     -1
7069               21       39405844  HGNC:1255     -1
7070               21       39405844  HGNC:1255     -1
7071               21       39405844  HGNC:1255     -1
7072               21       39405844  HGNC:1255     -1
7073               21       39405844  HGNC:1255     -1
7074               21       39405844  HGNC:1255     -1
7075               21       39405844  HGNC:1255     -1
7076               21       39405844  HGNC:1255     -1
7077               21       39405844  HGNC:1255     -1
7078               21       39405844  HGNC:1255     -1
7079               21       39405844  HGNC:1255     -1
7080               21       39405844  HGNC:1255     -1
7081               21       39405844  HGNC:1255     -1
7082               21       39405844  HGNC:1255     -1
7083               21       39405844  HGNC:1255     -1
7084               21       39405844  HGNC:1255     -1
7085               21       39405844  HGNC:1255     -1
7086               21       39405844  HGNC:1255     -1
7087               21       39405844  HGNC:1255     -1
7088               21       39405844  HGNC:1255     -1
7089               21       39405844  HGNC:1255     -1
7090               21       39405844  HGNC:1255     -1
7091               21       39405844  HGNC:1255     -1
7092               21       39405844  HGNC:1255     -1
7093               21       39405844  HGNC:1255     -1
7094               21       39405844  HGNC:1255     -1
7095               21       39405844  HGNC:1255     -1
7096               21       39405844  HGNC:1255     -1
7097               21       39405844  HGNC:1255     -1
7098               21       39405844  HGNC:1255     -1
7099               21       39405844  HGNC:1255     -1
7100               21       39405844  HGNC:1255     -1
7101               21       39405844  HGNC:1255     -1
7102               21       39405844  HGNC:1255     -1
7103               21       39405844  HGNC:1255     -1
7104               21       39405844  HGNC:1255     -1
7105               21       39405844  HGNC:1255     -1
7106               21       39405844  HGNC:1255     -1
7107               21       39405844  HGNC:1255     -1
7108               21       39405844  HGNC:1255     -1
7109               21       39405844  HGNC:1255     -1
7110               21       39405844  HGNC:1255     -1
7111               21       39405844  HGNC:1255     -1
7112               21       39405844  HGNC:1255     -1
7113               21       39405844  HGNC:1255     -1
7114               21       39405844  HGNC:1255     -1
7115               21       39405844  HGNC:1255     -1
7116               21       41679181  HGNC:1262      1
7117               21       41679181  HGNC:1262      1
7118               21       41679181  HGNC:1262      1
7119               21       41716436  HGNC:1263      1
7120               21       41716436  HGNC:1263      1
7121               21       41716436  HGNC:1263      1
7122               21       27722379  HGNC:1264      1
7123               21       27722379  HGNC:1264      1
7124               21       27722379  HGNC:1264      1
7125               21       27722379  HGNC:1264      1
7126               21       27722379  HGNC:1264      1
7127               21       27722379  HGNC:1264      1
7128               21       27722379  HGNC:1264      1
7129               21       27722379  HGNC:1264      1
7130               21       27722379  HGNC:1264      1
7131               21       27722379  HGNC:1264      1
7132               21       27722379  HGNC:1264      1
7133               21       27722379  HGNC:1264      1
7134               21       38739021  HGNC:1265     -1
7135               21       38739021  HGNC:1265     -1
7136               21       38739021  HGNC:1265     -1
7137               21       38739021  HGNC:1265     -1
7138               21       38739021  HGNC:1265     -1
7139               21       38739021  HGNC:1265     -1
7140               21       38739021  HGNC:1265     -1
7141               21       38739021  HGNC:1265     -1
7142               21       38739021  HGNC:1265     -1
7143               21       38739021  HGNC:1265     -1
7144               21       38739021  HGNC:1265     -1
7145               21       38739021  HGNC:1265     -1
7146               21       38739021  HGNC:1265     -1
7147               21       38739021  HGNC:1265     -1
7148               21       38739021  HGNC:1265     -1
7149               21       25385820  HGNC:1283     -1
7150               21       25385820  HGNC:1283     -1
7151               21       25385820  HGNC:1283     -1
7152               21       25385820  HGNC:1283     -1
7153               21       25385820  HGNC:1283     -1
7154               21       25385820  HGNC:1283     -1
7155               21       25385820  HGNC:1283     -1
7156               21       25385820  HGNC:1283     -1
7157               21       25385820  HGNC:1283     -1
7158               21       25385820  HGNC:1283     -1
7159               21       25385820  HGNC:1283     -1
7160               21       25385820  HGNC:1283     -1
7161               21       25385820  HGNC:1283     -1
7162               21       25385820  HGNC:1283     -1
7163               21       25385820  HGNC:1283     -1
7164               21       25385820  HGNC:1283     -1
7165               21       32080316  HGNC:1285     -1
7166               21       32080316  HGNC:1285     -1
7167               21       32080316  HGNC:1285     -1
7168               21       32080316  HGNC:1285     -1
7169               21       32080316  HGNC:1285     -1
7170               21       32080316  HGNC:1285     -1
7171               21       32080316  HGNC:1285     -1
7172               21       34723807  HGNC:1294     -1
7173               21       34723807  HGNC:1294     -1
7174               21       34723807  HGNC:1294     -1
7175               21       34723807  HGNC:1294     -1
7176               21       34723807  HGNC:1294     -1
7177               21       34723807  HGNC:1294     -1
7178               21       28539318 HGNC:17138      1
7179               21       28539318 HGNC:17138      1
7180               21       28539318 HGNC:17138      1
7181               21       28539318 HGNC:17138      1
7182               21       44989864 HGNC:33165     -1
7183               21       44989864 HGNC:33165     -1
7184               21       44989864 HGNC:33165     -1
7185               21       44989864 HGNC:33165     -1
7186               21       44994362 HGNC:33166     -1
7187               21       29193480 HGNC:18461      1
7188               21       29193480 HGNC:18461      1
7189               21       29193480 HGNC:18461      1
7190               21       29193480 HGNC:18461      1
7191               21       29193480 HGNC:18461      1
7192               21       29193480 HGNC:18461      1
7193               21       29193480 HGNC:18461      1
7194               21       29193480 HGNC:18461      1
7195               21       45293285 HGNC:16420      1
7196               21       45293285 HGNC:16420      1
7197               21       30209151 HGNC:16727     -1
7198               21       30209151 HGNC:16727     -1
7199               21       30209151 HGNC:16727     -1
7200               21       22098617 HGNC:16023      1
7201               21       22098617 HGNC:16023      1
7202               21       22098617 HGNC:16023      1
7203               21       22098617 HGNC:16023      1
7204               21       22098617 HGNC:16023      1
7205               21       22098617 HGNC:16023      1
7206               21       34157724 HGNC:16414      1
7207               21       34157724 HGNC:16414      1
7208               21       34157724 HGNC:16414      1
7209               21       34157724 HGNC:16414      1
7210               21       34157724 HGNC:16414      1
7211               21       34157724 HGNC:16414      1
7212               21       34157724 HGNC:16414      1
7213               21       34157724 HGNC:16414      1
7214               21       34157724 HGNC:16414      1
7215               21       34157724 HGNC:16414      1
7216               21       34157724 HGNC:16414      1
7217               21       34157724 HGNC:16414      1
7218               21       34157724 HGNC:16414      1
7219               21       34157724 HGNC:16414      1
7220               21       34157724 HGNC:16414      1
7221               21       34157724 HGNC:16414      1
7222               21       34157724 HGNC:16414      1
7223               21       34157724 HGNC:16414      1
7224               21       34157724 HGNC:16414      1
7225               21       34157724 HGNC:16414      1
7226               21       34157724 HGNC:16414      1
7227               21       43462094 HGNC:16416     -1
7228               21       43462094 HGNC:16416     -1
7229               21       43462094 HGNC:16416     -1
7230               21       43462094 HGNC:16416     -1
7231               21       43462094 HGNC:16416     -1
7232               21       43462094 HGNC:16416     -1
7233               21       43462094 HGNC:16416     -1
7234               21       43462094 HGNC:16416     -1
7235               21       43462094 HGNC:16416     -1
7236               21       43462094 HGNC:16416     -1
7237               21       43462094 HGNC:16416     -1
7238               21       43462094 HGNC:16416     -1
7239               21       43462094 HGNC:16416     -1
7240               21       43462094 HGNC:16416     -1
7241               21       43462094 HGNC:16416     -1
7242               21       43462094 HGNC:16416     -1
7243               21       43462094 HGNC:16416     -1
7244               21       43462094 HGNC:16416     -1
7245               21       43462094 HGNC:16416     -1
7246               21       43462094 HGNC:16416     -1
7247               21       43462094 HGNC:16416     -1
7248               21       43462094 HGNC:16416     -1
7249               21       28013363 HGNC:16622      1
7250               21       28013363 HGNC:16622      1
7251               21       45300245 HGNC:16621     -1
7252               21       45300245 HGNC:16621     -1
7253               21       45300245 HGNC:16621     -1
7254               21       45338590 HGNC:19723     -1
7255               21       45338590 HGNC:19723     -1
7256               21       21723293 HGNC:23126     -1
7257               21       21723293 HGNC:23126     -1
7258               21       21723293 HGNC:23126     -1
7259               21       43446601 HGNC:19730      1
7260               21       43446601 HGNC:19730      1
7261               21       43446601 HGNC:19730      1
7262               21       43446601 HGNC:19730      1
7263               21       43446601 HGNC:19730      1
7264               21       43446601 HGNC:19730      1
7265               21       43446601 HGNC:19730      1
7266               21       20742590 HGNC:19690     -1
7267               21       20742590 HGNC:19690     -1
7268               21       20742590 HGNC:19690     -1
7269               21       20742590 HGNC:19690     -1
7270               21       20742590 HGNC:19690     -1
7271               21       20742590 HGNC:19690     -1
7272               21       20742590 HGNC:19690     -1
7273               21       20742590 HGNC:19690     -1
7274               21       20742590 HGNC:19690     -1
7275               21       20742590 HGNC:19690     -1
7276               21       20742590 HGNC:19690     -1
7277               21       20742590 HGNC:19690     -1
7278               21       20742590 HGNC:19690     -1
7279               21       20742590 HGNC:19690     -1
7280               21       20742590 HGNC:19690     -1
7281               21       20742590 HGNC:19690     -1
7282               21       20742590 HGNC:19690     -1
7283               21       20742590 HGNC:19690     -1
7284               21       20742590 HGNC:19690     -1
7285               21       20742590 HGNC:19690     -1
7286               21       20742590 HGNC:19690     -1
7287               21       20742590 HGNC:19690     -1
7288               21       20742590 HGNC:19690     -1
7289               21       20742590 HGNC:19690     -1
7290               21       20742590 HGNC:19690     -1
7291               21       20742590 HGNC:19690     -1
7292               21       20742590 HGNC:19690     -1
7293               21       20742590 HGNC:19690     -1
7294               21       20742590 HGNC:19690     -1
7295               21       20742590 HGNC:19690     -1
7296               21       20742590 HGNC:19690     -1
7297               21       20742590 HGNC:19690     -1
7298               21       20742590 HGNC:19690     -1
7299               21       20742590 HGNC:19690     -1
7300               21       20742590 HGNC:19690     -1
7301               21       20742590 HGNC:19690     -1
7302               21       20742590 HGNC:19690     -1
7303               21       43322417 HGNC:33698     -1
7304               21       43322417 HGNC:33698     -1
7305               21       43322417 HGNC:33698     -1
7306               21       41141493 HGNC:19720     -1
7307               21       41141493 HGNC:19720     -1
7308               21       41141493 HGNC:19720     -1
7309               21       41141493 HGNC:19720     -1
7310               21       41141493 HGNC:19720     -1
7311               21       41141493 HGNC:19720     -1
7312               21       41141493 HGNC:19720     -1
7313               21       45234340 HGNC:16425      1
7314               21       45234340 HGNC:16425      1
7315               21       45234340 HGNC:16425      1
7316               21       45234340 HGNC:16425      1
7317               21       45234340 HGNC:16425      1
7318               21       45234340 HGNC:16425      1
7319               21       45234340 HGNC:16425      1
7320               21       45234340 HGNC:16425      1
7321               21       45234340 HGNC:16425      1
7322               21       45234340 HGNC:16425      1
7323               21       41711520 HGNC:19727     -1
7324               21       41711520 HGNC:19727     -1
7325               21       41711520 HGNC:19727     -1
7326               21       41711520 HGNC:19727     -1
7327               21       41711520 HGNC:19727     -1
7328               21       41711520 HGNC:19727     -1
7329               21       41711520 HGNC:19727     -1
7330               21       41711520 HGNC:19727     -1
7331               21       41711520 HGNC:19727     -1
7332               21       41711520 HGNC:19727     -1
7333               21       41711520 HGNC:19727     -1
7334               21       41711520 HGNC:19727     -1
7335               21       41711520 HGNC:19727     -1
7336               21       41711520 HGNC:19727     -1
7337               21       41711520 HGNC:19727     -1
7338               21       41711520 HGNC:19727     -1
7339               21       41711520 HGNC:19727     -1
7340               21       41711520 HGNC:19727     -1
7341               21       41711520 HGNC:19727     -1
7342               21       41711520 HGNC:19727     -1
7343               21       33915534 HGNC:44305      1
7344               21       33915534 HGNC:44305      1
7345               21       33915534 HGNC:44305      1
7346               21       33915534 HGNC:44305      1
7347               21       33915534 HGNC:44305      1
7348               21       33915534 HGNC:44305      1
7349               21       33915534 HGNC:44305      1
7350               21       33915534 HGNC:44305      1
7351               21       33915534 HGNC:44305      1
7352               21       33915534 HGNC:44305      1
7353               21       33915534 HGNC:44305      1
7354               21       33915534 HGNC:44305      1
7355               21       33915534 HGNC:44305      1
7356               21       33915534 HGNC:44305      1
7357               21       33915534 HGNC:44305      1
7358               21       33915534 HGNC:44305      1
7359               21       33915534 HGNC:44305      1
7360               21       33915534 HGNC:44305      1
7361               21       33915534 HGNC:44305      1
7362               21       33915534 HGNC:44305      1
7363               21       33915534 HGNC:44305      1
7364               21       33915534 HGNC:44305      1
7365               21       33915534 HGNC:44305      1
7366               21       33915534 HGNC:44305      1
7367               21       33915534 HGNC:44305      1
7368               21       33915534 HGNC:44305      1
7369               21       33915534 HGNC:44305      1
7370               21       33915534 HGNC:44305      1
7371               21       33915534 HGNC:44305      1
7372               21       33915534 HGNC:44305      1
7373               21       33915534 HGNC:44305      1
7374               21       33915534 HGNC:44305      1
7375               21       33915534 HGNC:44305      1
7376               21       33915534 HGNC:44305      1
7377               21       33915534 HGNC:44305      1
7378               21       33915534 HGNC:44305      1
7379               21       33915534 HGNC:44305      1
7380               21       33915534 HGNC:44305      1
7381               21       33915534 HGNC:44305      1
7382               21       33915534 HGNC:44305      1
7383               21       33915534 HGNC:44305      1
7384               21       33915534 HGNC:44305      1
7385               21       33915534 HGNC:44305      1
7386               21       33915534 HGNC:44305      1
7387               21       33915534 HGNC:44305      1
7388               21       33915534 HGNC:44305      1
7389               21       33915534 HGNC:44305      1
7390               21       33915534 HGNC:44305      1
7391               21       33915534 HGNC:44305      1
7392               21       33915534 HGNC:44305      1
7393               21       33915534 HGNC:44305      1
7394               21       33915534 HGNC:44305      1
7395               21       33915534 HGNC:44305      1
7396               21       33915534 HGNC:44305      1
7397               21       33915534 HGNC:44305      1
7398               21       33915534 HGNC:44305      1
7399               21       32572238 HGNC:16080     -1
7400               21       32572238 HGNC:16080     -1
7401               21       32572238 HGNC:16080     -1
7402               21       32572238 HGNC:16080     -1
7403               21       33057829 HGNC:48643      1
7404               21       33057829 HGNC:48643      1
7405               21       33057829 HGNC:48643      1
7406               21       33057829 HGNC:48643      1
7407               21       33057829 HGNC:48643      1
7408               21       38323635 HGNC:50732     -1
7409               21       38323635 HGNC:50732     -1
7410               21       38323635 HGNC:50732     -1
7411               21       38323635 HGNC:50732     -1
7412               21       38323635 HGNC:50732     -1
7413               21       38323635 HGNC:50732     -1
7414               21       38323635 HGNC:50732     -1
7415               21       38323635 HGNC:50732     -1
7416               21       38323635 HGNC:50732     -1
7417               21       44802577 HGNC:40558      1
7418               21       44802577 HGNC:40558      1
7419               21       21746973 HGNC:50733      1
7420               21       21746973 HGNC:50733      1
7421               21       21746973 HGNC:50733      1
7422               21       21746973 HGNC:50733      1
7423               21       21746973 HGNC:50733      1
7424               21       21746973 HGNC:50733      1
7425               21       21746973 HGNC:50733      1
7426               21       21746973 HGNC:50733      1
7427               21       21746973 HGNC:50733      1
7428               21       34745757 HGNC:50734      1
7429               21       34745757 HGNC:50734      1
7430               21       34745757 HGNC:50734      1
7431               21       34745757 HGNC:50734      1
7432               21       34745757 HGNC:50734      1
7433               21       36005338 HGNC:50754      1
7434               21       36005338 HGNC:50754      1
7435               21       44932814 HGNC:15707     -1
7436               21       44932814 HGNC:15707     -1
7437               21       44932814 HGNC:15707     -1
7438               21       44932814 HGNC:15707     -1
7439               21       44932814 HGNC:15707     -1
7440               21       44932814 HGNC:15707     -1
7441               21       44932814 HGNC:15707     -1
7442               21       44932814 HGNC:15707     -1
7443               21       44932814 HGNC:15707     -1
7444               21       44932814 HGNC:15707     -1
7445               21       33165470  HGNC:1296     -1
7446               21       33165470  HGNC:1296     -1
7447               21       33165470  HGNC:1296     -1
7448               21       33165470  HGNC:1296     -1
7449               21       33165470  HGNC:1296     -1
7450               21       33165470  HGNC:1296     -1
7451               21       33165470  HGNC:1296     -1
7452               21       33165470  HGNC:1296     -1
7453               21       33165470  HGNC:1296     -1
7454               21       17438890  HGNC:1277      1
7455               21       17438890  HGNC:1277      1
7456               21       17438890  HGNC:1277      1
7457               21       17438890  HGNC:1277      1
7458               21       17438890  HGNC:1277      1
7459               21       17438890  HGNC:1277      1
7460               21       17438890  HGNC:1277      1
7461               21        8759077 HGNC:52454      1
7462               21        8759077 HGNC:52454      1
7463               21        8759077 HGNC:52454      1
7464               21        8759077 HGNC:52454      1
7465               21        9781918 HGNC:52455     -1
7466               21        9781918 HGNC:52455     -1
7467               21        9781918 HGNC:52455     -1
7468               21        9781918 HGNC:52455     -1
7469               21        9781918 HGNC:52455     -1
7470               21        9781918 HGNC:52455     -1
7471               21        9781918 HGNC:52455     -1
7472               21        9781918 HGNC:52455     -1
7473               21        9781918 HGNC:52455     -1
7474               21        9781918 HGNC:52455     -1
7475               21        9781918 HGNC:52455     -1
7476               21        9781918 HGNC:52455     -1
7477               21        9781918 HGNC:52455     -1
7478               21        9781918 HGNC:52455     -1
7479               21       42777819 HGNC:52456     -1
7480               21       42777819 HGNC:52456     -1
7481               21       42777819 HGNC:52456     -1
7482               21        6060340 HGNC:52457      1
7483               21        6060340 HGNC:52457      1
7484               21        6060340 HGNC:52457      1
7485               21        6060340 HGNC:52457      1
7486               21        6060340 HGNC:52457      1
7487               21        6060340 HGNC:52457      1
7488               21        6060340 HGNC:52457      1
7489               21        6060340 HGNC:52457      1
7490               21        6060340 HGNC:52457      1
7491               21        6060340 HGNC:52457      1
7492               21        6060340 HGNC:52457      1
7493               21        6060340 HGNC:52457      1
7494               21        6060340 HGNC:52457      1
7495               21        6060340 HGNC:52457      1
7496               21        6060340 HGNC:52457      1
7497               21        5499151 HGNC:52458     -1
7498               21        5499151 HGNC:52458     -1
7499               21        5499151 HGNC:52458     -1
7500               21        5499151 HGNC:52458     -1
7501               21        5499151 HGNC:52458     -1
7502               21        5499151 HGNC:52458     -1
7503               21        5499151 HGNC:52458     -1
7504               21        5499151 HGNC:52458     -1
7505               21       42599280 HGNC:52459     -1
7506               21       42599280 HGNC:52459     -1
7507               21       27638693 HGNC:52461      1
7508               21       27638693 HGNC:52461      1
7509               21       27638693 HGNC:52461      1
7510               21       13546033 HGNC:52462      1
7511               21       13546033 HGNC:52462      1
7512               21       13546033 HGNC:52462      1
7513               21       13546033 HGNC:52462      1
7514               21       44158740 HGNC:52466     -1
7515               21       44158740 HGNC:52466     -1
7516               21       44158740 HGNC:52466     -1
7517               21       44158740 HGNC:52466     -1
7518               21       44158740 HGNC:52466     -1
7519               21       43358147 HGNC:52469     -1
7520               21       43358147 HGNC:52469     -1
7521               21       19893279 HGNC:52471     -1
7522               21       19893279 HGNC:52471     -1
7523               21       19893279 HGNC:52471     -1
7524               21       24428740 HGNC:52472      1
7525               21       24428740 HGNC:52472      1
7526               21       24428740 HGNC:52472      1
7527               21       24428740 HGNC:52472      1
7528               21       24428740 HGNC:52472      1
7529               21       24428740 HGNC:52472      1
7530               21       24428740 HGNC:52472      1
7531               21       24428740 HGNC:52472      1
7532               21       24428740 HGNC:52472      1
7533               21       24428740 HGNC:52472      1
7534               21       24428740 HGNC:52472      1
7535               21       24428740 HGNC:52472      1
7536               21       22008944 HGNC:52474     -1
7537               21       22008944 HGNC:52474     -1
7538               21       22008944 HGNC:52474     -1
7539               21       22008944 HGNC:52474     -1
7540               21       22008944 HGNC:52474     -1
7541               21       22008944 HGNC:52474     -1
7542               21       22008944 HGNC:52474     -1
7543               21       22008944 HGNC:52474     -1
7544               21       22008944 HGNC:52474     -1
7545               21       22008944 HGNC:52474     -1
7546               21       22008944 HGNC:52474     -1
7547               21       22008944 HGNC:52474     -1
7548               21       24304550 HGNC:52476     -1
7549               21       24304550 HGNC:52476     -1
7550               21       24304550 HGNC:52476     -1
7551               21       24304550 HGNC:52476     -1
7552               21       24840550 HGNC:52480      1
7553               21       24840550 HGNC:52480      1
7554               21       24840550 HGNC:52480      1
7555               21       24840550 HGNC:52480      1
7556               21       45593654 HGNC:52481      1
7557               21       45593654 HGNC:52481      1
7558               21       45593654 HGNC:52481      1
7559               21       45593654 HGNC:52481      1
7560               21       45593654 HGNC:52481      1
7561               21       28116094 HGNC:52483     -1
7562               21       28116094 HGNC:52483     -1
7563               21       28116094 HGNC:52483     -1
7564               21       28116094 HGNC:52483     -1
7565               21       28116094 HGNC:52483     -1
7566               21       28116094 HGNC:52483     -1
7567               21       28116094 HGNC:52483     -1
7568               21       28116094 HGNC:52483     -1
7569               21       28116094 HGNC:52483     -1
7570               21       28116094 HGNC:52483     -1
7571               21       28116094 HGNC:52483     -1
7572               21       28116094 HGNC:52483     -1
7573               21       28116094 HGNC:52483     -1
7574               21       28048404 HGNC:52485      1
7575               21       28048404 HGNC:52485      1
7576               21       28048404 HGNC:52485      1
7577               21       28048404 HGNC:52485      1
7578               21       28048404 HGNC:52485      1
7579               21       28048404 HGNC:52485      1
7580               21       28048404 HGNC:52485      1
7581               21       28048404 HGNC:52485      1
7582               21       28048404 HGNC:52485      1
7583               21       28048404 HGNC:52485      1
7584               21       28048404 HGNC:52485      1
7585               21       28048404 HGNC:52485      1
7586               21       28048404 HGNC:52485      1
7587               21       28048404 HGNC:52485      1
7588               21       28048404 HGNC:52485      1
7589               21       28048404 HGNC:52485      1
7590               21       28048404 HGNC:52485      1
7591               21       28048404 HGNC:52485      1
7592               21       28048404 HGNC:52485      1
7593               21       28048404 HGNC:52485      1
7594               21       38974429 HGNC:52488     -1
7595               21       38974429 HGNC:52488     -1
7596               21       38974429 HGNC:52488     -1
7597               21       14108813 HGNC:18821     -1
7598               21       14108813 HGNC:18821     -1
7599               21       14108813 HGNC:18821     -1
7600               21       14108813 HGNC:18821     -1
7601               21       14108813 HGNC:18821     -1
7602               21       14108813 HGNC:18821     -1
7603               21       14108813 HGNC:18821     -1
7604               21       14108813 HGNC:18821     -1
7605               21       14108813 HGNC:18821     -1
7606               21       14108813 HGNC:18821     -1
7607               21       14108813 HGNC:18821     -1
7608               21       14108813 HGNC:18821     -1
7609               21       14108813 HGNC:18821     -1
7610               21       14108813 HGNC:18821     -1
7611               21       14108813 HGNC:18821     -1
7612               21       14108813 HGNC:18821     -1
7613               21       14108813 HGNC:18821     -1
7614               21       14108813 HGNC:18821     -1
7615               21       14108813 HGNC:18821     -1
7616               21       14108813 HGNC:18821     -1
7617               21       14108813 HGNC:18821     -1
7618               21       14108813 HGNC:18821     -1
7619               21       14108813 HGNC:18821     -1
7620               21       14108813 HGNC:18821     -1
7621               21       14108813 HGNC:18821     -1
7622               21       14108813 HGNC:18821     -1
7623               21       14108813 HGNC:18821     -1
7624               21       14108813 HGNC:18821     -1
7625               21       14108813 HGNC:18821     -1
7626               21       14108813 HGNC:18821     -1
7627               21       14108813 HGNC:18821     -1
7628               21       14108813 HGNC:18821     -1
7629               21       14108813 HGNC:18821     -1
7630               21       25762938 HGNC:50492     -1
7631               21       44455486 HGNC:14965      1
7632               21       44455486 HGNC:14965      1
7633               21       44450986 HGNC:43636     -1
7634               21       44450986 HGNC:43636     -1
7635               21       44450986 HGNC:43636     -1
7636               21       44450986 HGNC:43636     -1
7637               21       46188141  HGNC:6708     -1
7638               21       46188141  HGNC:6708     -1
7639               21       46188141  HGNC:6708     -1
7640               21       46188141  HGNC:6708     -1
7641               21       46188141  HGNC:6708     -1
7642               21       46188141  HGNC:6708     -1
7643               21       46188141  HGNC:6708     -1
7644               21       46188141  HGNC:6708     -1
7645               21       46188141  HGNC:6708     -1
7646               21       46188141  HGNC:6708     -1
7647               21       46188141  HGNC:6708     -1
7648               21       46188141  HGNC:6708     -1
7649               21       46188141  HGNC:6708     -1
7650               21       46188141  HGNC:6708     -1
7651               21       46188141  HGNC:6708     -1
7652               21       46188141  HGNC:6708     -1
7653               21       46188141  HGNC:6708     -1
7654               21       46188141  HGNC:6708     -1
7655               21       46188141  HGNC:6708     -1
7656               21       46188141  HGNC:6708     -1
7657               21       46188141  HGNC:6708     -1
7658               21       46188141  HGNC:6708     -1
7659               21       46188141  HGNC:6708     -1
7660               21       46188141  HGNC:6708     -1
7661               21       46188141  HGNC:6708     -1
7662               21       46188141  HGNC:6708     -1
7663               21       46188141  HGNC:6708     -1
7664               21       46188141  HGNC:6708     -1
7665               21       46188141  HGNC:6708     -1
7666               21       46188141  HGNC:6708     -1
7667               21       46188141  HGNC:6708     -1
7668               21       46188141  HGNC:6708     -1
7669               21       46188141  HGNC:6708     -1
7670               21       46188141  HGNC:6708     -1
7671               21       46188141  HGNC:6708     -1
7672               21       46188141  HGNC:6708     -1
7673               21       46188141  HGNC:6708     -1
7674               21       46188141  HGNC:6708     -1
7675               21       46188141  HGNC:6708     -1
7676               21       46188141  HGNC:6708     -1
7677               21       46188141  HGNC:6708     -1
7678               21       46188141  HGNC:6708     -1
7679               21       46188141  HGNC:6708     -1
7680               21       46188141  HGNC:6708     -1
7681               21       46188141  HGNC:6708     -1
7682               21       46188141  HGNC:6708     -1
7683               21       46188141  HGNC:6708     -1
7684               21       46188141  HGNC:6708     -1
7685               21       46188141  HGNC:6708     -1
7686               21       46188141  HGNC:6708     -1
7687               21       46188141  HGNC:6708     -1
7688               21       46188141  HGNC:6708     -1
7689               21       46188141  HGNC:6708     -1
7690               21       46188141  HGNC:6708     -1
7691               21       46188141  HGNC:6708     -1
7692               21       46188141  HGNC:6708     -1
7693               21       46188141  HGNC:6708     -1
7694               21       46188141  HGNC:6708     -1
7695               21       46188141  HGNC:6708     -1
7696               21       46188141  HGNC:6708     -1
7697               21       46188141  HGNC:6708     -1
7698               21       46188141  HGNC:6708     -1
7699               21       46188141  HGNC:6708     -1
7700               21       46188141  HGNC:6708     -1
7701               21       46188141  HGNC:6708     -1
7702               21       46188141  HGNC:6708     -1
7703               21       46188141  HGNC:6708     -1
7704               21       46188141  HGNC:6708     -1
7705               21       46188141  HGNC:6708     -1
7706               21       46188141  HGNC:6708     -1
7707               21       46188141  HGNC:6708     -1
7708               21       46188141  HGNC:6708     -1
7709               21       46188141  HGNC:6708     -1
7710               21       46188141  HGNC:6708     -1
7711               21       46188141  HGNC:6708     -1
7712               21       46188141  HGNC:6708     -1
7713               21       46188141  HGNC:6708     -1
7714               21       46188141  HGNC:6708     -1
7715               21       46188141  HGNC:6708     -1
7716               21       46188141  HGNC:6708     -1
7717               21       46188141  HGNC:6708     -1
7718               21       46188141  HGNC:6708     -1
7719               21       46188141  HGNC:6708     -1
7720               21       46188141  HGNC:6708     -1
7721               21       46188141  HGNC:6708     -1
7722               21       46188141  HGNC:6708     -1
7723               21       46188141  HGNC:6708     -1
7724               21       46188141  HGNC:6708     -1
7725               21       46188141  HGNC:6708     -1
7726               21       46188141  HGNC:6708     -1
7727               21       46188141  HGNC:6708     -1
7728               21       46188141  HGNC:6708     -1
7729               21       46188141  HGNC:6708     -1
7730               21       46188141  HGNC:6708     -1
7731               21       46188141  HGNC:6708     -1
7732               21       46188141  HGNC:6708     -1
7733               21       46188141  HGNC:6708     -1
7734               21       46188141  HGNC:6708     -1
7735               21       46188141  HGNC:6708     -1
7736               21       46188141  HGNC:6708     -1
7737               21       46188141  HGNC:6708     -1
7738               21       46188141  HGNC:6708     -1
7739               21       46188141  HGNC:6708     -1
7740               21       46188141  HGNC:6708     -1
7741               21       46188141  HGNC:6708     -1
7742               21       46188141  HGNC:6708     -1
7743               21       46188141  HGNC:6708     -1
7744               21       46188141  HGNC:6708     -1
7745               21       46188141  HGNC:6708     -1
7746               21       46188141  HGNC:6708     -1
7747               21       46188141  HGNC:6708     -1
7748               21       46188141  HGNC:6708     -1
7749               21       46188141  HGNC:6708     -1
7750               21       46188141  HGNC:6708     -1
7751               21       46188141  HGNC:6708     -1
7752               21       28928144 HGNC:13082     -1
7753               21       28928144 HGNC:13082     -1
7754               21       28928144 HGNC:13082     -1
7755               21       28928144 HGNC:13082     -1
7756               21       28928144 HGNC:13082     -1
7757               21       28928144 HGNC:13082     -1
7758               21       28928144 HGNC:13082     -1
7759               21       28928144 HGNC:13082     -1
7760               21       28928144 HGNC:13082     -1
7761               21       28928144 HGNC:13082     -1
7762               21       28928144 HGNC:13082     -1
7763               21       28928144 HGNC:13082     -1
7764               21       28928144 HGNC:13082     -1
7765               21       28928144 HGNC:13082     -1
7766               21       28928144 HGNC:13082     -1
7767               21       28928144 HGNC:13082     -1
7768               21       28928144 HGNC:13082     -1
7769               21       28928144 HGNC:13082     -1
7770               21       28928144 HGNC:13082     -1
7771               21       28928144 HGNC:13082     -1
7772               21       28928144 HGNC:13082     -1
7773               21       28928144 HGNC:13082     -1
7774               21       28928144 HGNC:13082     -1
7775               21       28928144 HGNC:13082     -1
7776               21       28928144 HGNC:13082     -1
7777               21       28928144 HGNC:13082     -1
7778               21       28928144 HGNC:13082     -1
7779               21       28928144 HGNC:13082     -1
7780               21       28928144 HGNC:13082     -1
7781               21       28928144 HGNC:13082     -1
7782               21       28928144 HGNC:13082     -1
7783               21       28928144 HGNC:13082     -1
7784               21       28928144 HGNC:13082     -1
7785               21       28928144 HGNC:13082     -1
7786               21       28928144 HGNC:13082     -1
7787               21       28928144 HGNC:13082     -1
7788               21       28928144 HGNC:13082     -1
7789               21       28928144 HGNC:13082     -1
7790               21       28928144 HGNC:13082     -1
7791               21       28928144 HGNC:13082     -1
7792               21       28928144 HGNC:13082     -1
7793               21       28928144 HGNC:13082     -1
7794               21       28928144 HGNC:13082     -1
7795               21       28928144 HGNC:13082     -1
7796               21       28928144 HGNC:13082     -1
7797               21       28928144 HGNC:13082     -1
7798               21       28928144 HGNC:13082     -1
7799               21       28928144 HGNC:13082     -1
7800               21       28928144 HGNC:13082     -1
7801               21       28928144 HGNC:13082     -1
7802               21       28928144 HGNC:13082     -1
7803               21       28928144 HGNC:13082     -1
7804               21       28928144 HGNC:13082     -1
7805               21       28928144 HGNC:13082     -1
7806               21       28928144 HGNC:13082     -1
7807               21       28928144 HGNC:13082     -1
7808               21       28928144 HGNC:13082     -1
7809               21       28928144 HGNC:13082     -1
7810               21       28928144 HGNC:13082     -1
7811               21       28928144 HGNC:13082     -1
7812               21       28928144 HGNC:13082     -1
7813               21       28928144 HGNC:13082     -1
7814               21       28928144 HGNC:13082     -1
7815               21       28928144 HGNC:13082     -1
7816               21       28928144 HGNC:13082     -1
7817               21       28928144 HGNC:13082     -1
7818               21       28928144 HGNC:13082     -1
7819               21       28928144 HGNC:13082     -1
7820               21       28928144 HGNC:13082     -1
7821               21       28928144 HGNC:13082     -1
7822               21       28928144 HGNC:13082     -1
7823               21       28928144 HGNC:13082     -1
7824               21       28928144 HGNC:13082     -1
7825               21       28928144 HGNC:13082     -1
7826               21       28928144 HGNC:13082     -1
7827               21       28928144 HGNC:13082     -1
7828               21       28928144 HGNC:13082     -1
7829               21       28928144 HGNC:13082     -1
7830               21       28928144 HGNC:13082     -1
7831               21       28928144 HGNC:13082     -1
7832               21       28928144 HGNC:13082     -1
7833               21       28928144 HGNC:13082     -1
7834               21       28928144 HGNC:13082     -1
7835               21       28928144 HGNC:13082     -1
7836               21       28928144 HGNC:13082     -1
7837               21       28928144 HGNC:13082     -1
7838               21       28928144 HGNC:13082     -1
7839               21       28928144 HGNC:13082     -1
7840               21       28928144 HGNC:13082     -1
7841               21       28928144 HGNC:13082     -1
7842               21       28928144 HGNC:13082     -1
7843               21       28928144 HGNC:13082     -1
7844               21       28928144 HGNC:13082     -1
7845               21       28928144 HGNC:13082     -1
7846               21       28928144 HGNC:13082     -1
7847               21       28928144 HGNC:13082     -1
7848               21       28928144 HGNC:13082     -1
7849               21       28928144 HGNC:13082     -1
7850               21       28928144 HGNC:13082     -1
7851               21       28928144 HGNC:13082     -1
7852               21       28928144 HGNC:13082     -1
7853               21       28928144 HGNC:13082     -1
7854               21       28928144 HGNC:13082     -1
7855               21       28928144 HGNC:13082     -1
7856               21       28928144 HGNC:13082     -1
7857               21       28928144 HGNC:13082     -1
7858               21       28928144 HGNC:13082     -1
7859               21       28928144 HGNC:13082     -1
7860               21       28928144 HGNC:13082     -1
7861               21       28928144 HGNC:13082     -1
7862               21       28928144 HGNC:13082     -1
7863               21       28928144 HGNC:13082     -1
7864               21       28928144 HGNC:13082     -1
7865               21       28928144 HGNC:13082     -1
7866               21       28928144 HGNC:13082     -1
7867               21       28928144 HGNC:13082     -1
7868               21       28928144 HGNC:13082     -1
7869               21       28928144 HGNC:13082     -1
7870               21       29077471 HGNC:16457      1
7871               21       29077471 HGNC:16457      1
7872               21       29077471 HGNC:16457      1
7873               21       29077471 HGNC:16457      1
7874               21       29077471 HGNC:16457      1
7875               21       29077471 HGNC:16457      1
7876               21       29077471 HGNC:16457      1
7877               21       29077471 HGNC:16457      1
7878               21       29077471 HGNC:16457      1
7879               21       29077471 HGNC:16457      1
7880               21       29077471 HGNC:16457      1
7881               21       29077471 HGNC:16457      1
7882               21       29077471 HGNC:16457      1
7883               21       29077471 HGNC:16457      1
7884               21       29077471 HGNC:16457      1
7885               21       29077471 HGNC:16457      1
7886               21       29077471 HGNC:16457      1
7887               21       29077471 HGNC:16457      1
7888               21       29077471 HGNC:16457      1
7889               21       29077471 HGNC:16457      1
7890               21       29077471 HGNC:16457      1
7891               21       29077471 HGNC:16457      1
7892               21       29077471 HGNC:16457      1
7893               21       29077471 HGNC:16457      1
7894               21       29077471 HGNC:16457      1
7895               21       29077471 HGNC:16457      1
7896               21       29077471 HGNC:16457      1
7897               21       29077471 HGNC:16457      1
7898               21       29077471 HGNC:16457      1
7899               21       29077471 HGNC:16457      1
7900               21       29077471 HGNC:16457      1
7901               21       29077471 HGNC:16457      1
7902               21       29077471 HGNC:16457      1
7903               21       29077471 HGNC:16457      1
7904               21       29077471 HGNC:16457      1
7905               21       29077471 HGNC:16457      1
7906               21       29077471 HGNC:16457      1
7907               21       29077471 HGNC:16457      1
7908               21       29077471 HGNC:16457      1
7909               21       29077471 HGNC:16457      1
7910               21       29077471 HGNC:16457      1
7911               21       29077471 HGNC:16457      1
7912               21       29077471 HGNC:16457      1
7913               21       29077471 HGNC:16457      1
7914               21       29077471 HGNC:16457      1
7915               21       29077471 HGNC:16457      1
7916               21       29077471 HGNC:16457      1
7917               21       29077471 HGNC:16457      1
7918               21       29077471 HGNC:16457      1
7919               21       29077471 HGNC:16457      1
7920               21       29077471 HGNC:16457      1
7921               21       29077471 HGNC:16457      1
7922               21       29077471 HGNC:16457      1
7923               21       29077471 HGNC:16457      1
7924               21       29077471 HGNC:16457      1
7925               21       29077471 HGNC:16457      1
7926               21       29077471 HGNC:16457      1
7927               21       29077471 HGNC:16457      1
7928               21       29077471 HGNC:16457      1
7929               21       29077471 HGNC:16457      1
7930               21       29077471 HGNC:16457      1
7931               21       29077471 HGNC:16457      1
7932               21       29077471 HGNC:16457      1
7933               21       29077471 HGNC:16457      1
7934               21       29077471 HGNC:16457      1
7935               21       29077471 HGNC:16457      1
7936               21       29077471 HGNC:16457      1
7937               21       29077471 HGNC:16457      1
7938               21       29077471 HGNC:16457      1
7939               21       29077471 HGNC:16457      1
7940               21       29077471 HGNC:16457      1
7941               21       29077471 HGNC:16457      1
7942               21       29077471 HGNC:16457      1
7943               21       29077471 HGNC:16457      1
7944               21       29077471 HGNC:16457      1
7945               21       29077471 HGNC:16457      1
7946               21       29077471 HGNC:16457      1
7947               21       29077471 HGNC:16457      1
7948               21       29077471 HGNC:16457      1
7949               21       29077471 HGNC:16457      1
7950               21       29077471 HGNC:16457      1
7951               21       29077471 HGNC:16457      1
7952               21       29077471 HGNC:16457      1
7953               21       29077471 HGNC:16457      1
7954               21       29077471 HGNC:16457      1
7955               21       29077471 HGNC:16457      1
7956               21       29077471 HGNC:16457      1
7957               21       29077471 HGNC:16457      1
7958               21       29077471 HGNC:16457      1
7959               21       29077471 HGNC:16457      1
7960               21       29077471 HGNC:16457      1
7961               21       29077471 HGNC:16457      1
7962               21       29077471 HGNC:16457      1
7963               21       29077471 HGNC:16457      1
7964               21       29077471 HGNC:16457      1
7965               21       29077471 HGNC:16457      1
7966               21       29077471 HGNC:16457      1
7967               21       29077471 HGNC:16457      1
7968               21       29077471 HGNC:16457      1
7969               21       29077471 HGNC:16457      1
7970               21       22436290 HGNC:16756     -1
7971               21       46235126  HGNC:6946     -1
7972               21       46235126  HGNC:6946     -1
7973               21       46235126  HGNC:6946     -1
7974               21       46235126  HGNC:6946     -1
7975               21       46235126  HGNC:6946     -1
7976               21       46235126  HGNC:6946     -1
7977               21       46235126  HGNC:6946     -1
7978               21       46235126  HGNC:6946     -1
7979               21       46235126  HGNC:6946     -1
7980               21       46235126  HGNC:6946     -1
7981               21       46235126  HGNC:6946     -1
7982               21       46235126  HGNC:6946     -1
7983               21       46235126  HGNC:6946     -1
7984               21       46235126  HGNC:6946     -1
7985               21       46235126  HGNC:6946     -1
7986               21       46235126  HGNC:6946     -1
7987               21       46235126  HGNC:6946     -1
7988               21       46235126  HGNC:6946     -1
7989               21       46235126  HGNC:6946     -1
7990               21       46235126  HGNC:6946     -1
7991               21       46235126  HGNC:6946     -1
7992               21       46235126  HGNC:6946     -1
7993               21       46235126  HGNC:6946     -1
7994               21       46235126  HGNC:6946     -1
7995               21       46235126  HGNC:6946     -1
7996               21       46235126  HGNC:6946     -1
7997               21       46235126  HGNC:6946     -1
7998               21       46235126  HGNC:6946     -1
7999               21       46235126  HGNC:6946     -1
8000               21       46235126  HGNC:6946     -1
8001               21       46235126  HGNC:6946     -1
8002               21       46235126  HGNC:6946     -1
8003               21       46235126  HGNC:6946     -1
8004               21       46235126  HGNC:6946     -1
8005               21       46235126  HGNC:6946     -1
8006               21       46235126  HGNC:6946     -1
8007               21       46235126  HGNC:6946     -1
8008               21       46235126  HGNC:6946     -1
8009               21       46235126  HGNC:6946     -1
8010               21       46235126  HGNC:6946     -1
8011               21       46235126  HGNC:6946     -1
8012               21       46235126  HGNC:6946     -1
8013               21       46235126  HGNC:6946     -1
8014               21       46235126  HGNC:6946     -1
8015               21       46235126  HGNC:6946     -1
8016               21       46235126  HGNC:6946     -1
8017               21       46235126  HGNC:6946     -1
8018               21       46235126  HGNC:6946     -1
8019               21       46235126  HGNC:6946     -1
8020               21       46235126  HGNC:6946     -1
8021               21       46235126  HGNC:6946     -1
8022               21       46235126  HGNC:6946     -1
8023               21       46235126  HGNC:6946     -1
8024               21       46235126  HGNC:6946     -1
8025               21       46235126  HGNC:6946     -1
8026               21       46235126  HGNC:6946     -1
8027               21       46235126  HGNC:6946     -1
8028               21       46235126  HGNC:6946     -1
8029               21       46235126  HGNC:6946     -1
8030               21       46235126  HGNC:6946     -1
8031               21       46235126  HGNC:6946     -1
8032               21       46235126  HGNC:6946     -1
8033               21       46235126  HGNC:6946     -1
8034               21       46235126  HGNC:6946     -1
8035               21       46235126  HGNC:6946     -1
8036               21       46235126  HGNC:6946     -1
8037               21       46235126  HGNC:6946     -1
8038               21       46235126  HGNC:6946     -1
8039               21       46235126  HGNC:6946     -1
8040               21       46235126  HGNC:6946     -1
8041               21       46235126  HGNC:6946     -1
8042               21       46235126  HGNC:6946     -1
8043               21       46235126  HGNC:6946     -1
8044               21       46235126  HGNC:6946     -1
8045               21       46235126  HGNC:6946     -1
8046               21       46235126  HGNC:6946     -1
8047               21       46235126  HGNC:6946     -1
8048               21       46235126  HGNC:6946     -1
8049               21       46235126  HGNC:6946     -1
8050               21       46235126  HGNC:6946     -1
8051               21       46235126  HGNC:6946     -1
8052               21       46235126  HGNC:6946     -1
8053               21       46235126  HGNC:6946     -1
8054               21       46235126  HGNC:6946     -1
8055               21       46235126  HGNC:6946     -1
8056               21       46235126  HGNC:6946     -1
8057               21       46235126  HGNC:6946     -1
8058               21       46235126  HGNC:6946     -1
8059               21       46235126  HGNC:6946     -1
8060               21       46235126  HGNC:6946     -1
8061               21       46235126  HGNC:6946     -1
8062               21       46235126  HGNC:6946     -1
8063               21       46235126  HGNC:6946     -1
8064               21       46235126  HGNC:6946     -1
8065               21       46235126  HGNC:6946     -1
8066               21       46235126  HGNC:6946     -1
8067               21       46235126  HGNC:6946     -1
8068               21       46235126  HGNC:6946     -1
8069               21       46235126  HGNC:6946     -1
8070               21       46235126  HGNC:6946     -1
8071               21       46235126  HGNC:6946     -1
8072               21       46235126  HGNC:6946     -1
8073               21       46235126  HGNC:6946     -1
8074               21       46235126  HGNC:6946     -1
8075               21       46235126  HGNC:6946     -1
8076               21       46235126  HGNC:6946     -1
8077               21       46235126  HGNC:6946     -1
8078               21       46235126  HGNC:6946     -1
8079               21       46235126  HGNC:6946     -1
8080               21       46235126  HGNC:6946     -1
8081               21       46235126  HGNC:6946     -1
8082               21       46235126  HGNC:6946     -1
8083               21       46235126  HGNC:6946     -1
8084               21       46235126  HGNC:6946     -1
8085               21       46235126  HGNC:6946     -1
8086               21       46235126  HGNC:6946     -1
8087               21       46235126  HGNC:6946     -1
8088               21       46235126  HGNC:6946     -1
8089               21       46229217 HGNC:16417      1
8090               21       46229217 HGNC:16417      1
8091               21       46229217 HGNC:16417      1
8092               21       46229217 HGNC:16417      1
8093               21       46229217 HGNC:16417      1
8094               21       46229217 HGNC:16417      1
8095               21       46229217 HGNC:16417      1
8096               21       46229217 HGNC:16417      1
8097               21       46229217 HGNC:16417      1
8098               21       46229217 HGNC:16417      1
8099               21       46229217 HGNC:16417      1
8100               21       46229217 HGNC:16417      1
8101               21       46229217 HGNC:16417      1
8102               21       46229217 HGNC:16417      1
8103               21       46229217 HGNC:16417      1
8104               21       46229217 HGNC:16417      1
8105               21       46229217 HGNC:16417      1
8106               21       46229217 HGNC:16417      1
8107               21       46229217 HGNC:16417      1
8108               21       46229217 HGNC:16417      1
8109               21       46229217 HGNC:16417      1
8110               21       46229217 HGNC:16417      1
8111               21       46229217 HGNC:16417      1
8112               21       46229217 HGNC:16417      1
8113               21       46229217 HGNC:16417      1
8114               21       36130489 HGNC:23274      1
8115               21       39235386 HGNC:41921     -1
8116               21       16590237 HGNC:31507      1
8117               21       25573980 HGNC:31542      1
8118               21       25561909 HGNC:35460      1
8119               21       25561909 HGNC:35460      1
8120               21       25561909 HGNC:35460      1
8121               21       25561909 HGNC:35460      1
8122               21       13644775 HGNC:38265     -1
8123               21       13406384 HGNC:38229     -1
8124               21       41167557 HGNC:38366      1
8125               21        8208473 HGNC:38941      1
8126               21        8986999 HGNC:50843      1
8127               21        8208844 HGNC:38946      1
8128               21        8987370 HGNC:50835      1
8129               21       30375294 HGNC:38355     -1
8130               21       26953961 HGNC:41575      1
8131               21       40212352 HGNC:41698     -1
8132               21       18686090 HGNC:38248     -1
8133               21       18561265 HGNC:52006     -1
8134               21       18561265 HGNC:52006     -1
8135               21       18561265 HGNC:52006     -1
8136               21       18561265 HGNC:52006     -1
8137               21       18561265 HGNC:52006     -1
8138               21       18561265 HGNC:52006     -1
8139               21       18561265 HGNC:52006     -1
8140               21       18561265 HGNC:52006     -1
8141               21       18561265 HGNC:52006     -1
8142               21       18561265 HGNC:52006     -1
8143               21       18561265 HGNC:52006     -1
8144               21       18561265 HGNC:52006     -1
8145               21       42950928 HGNC:43535     -1
8146               21       43609887 HGNC:49950     -1
8147               21       23079284 HGNC:50156      1
8148               21       33550662 HGNC:50033      1
8149               21       39447010 HGNC:50217      1
8150               21        8205315 HGNC:50837      1
8151               21        8249505 HGNC:50832      1
8152               21        8388362 HGNC:50842      1
8153               21        8432530 HGNC:50830      1
8154               21       41746772 HGNC:50145     -1
8155               21       45478266 HGNC:50225      1
8156               21       35720715 HGNC:33140      1
8157               21        6859171 HGNC:50262      1
8158               21       13724189 HGNC:50836      1
8159               21       16539089 HGNC:31650      1
8160               21       15928296  HGNC:1274      1
8161               21       15928296  HGNC:1274      1
8162               21       15928296  HGNC:1274      1
8163               21       15928296  HGNC:1274      1
8164               21       15928296  HGNC:1274      1
8165               21       15928296  HGNC:1274      1
8166               21       15928296  HGNC:1274      1
8167               21       15928296  HGNC:1274      1
8168               21       15928296  HGNC:1274      1
8169               21       15928296  HGNC:1274      1
8170               21       15928296  HGNC:1274      1
8171               21       15928296  HGNC:1274      1
8172               21       15928296  HGNC:1274      1
8173               21       15928296  HGNC:1274      1
8174               21       15928296  HGNC:1274      1
8175               21       15928296  HGNC:1274      1
8176               21       15928296  HGNC:1274      1
8177               21       15928296  HGNC:1274      1
8178               21       15928296  HGNC:1274      1
8179               21       15928296  HGNC:1274      1
8180               21       15928296  HGNC:1274      1
8181               21       15928296  HGNC:1274      1
8182               21       15928296  HGNC:1274      1
8183               21       15928296  HGNC:1274      1
8184               21       15928296  HGNC:1274      1
8185               21       15928296  HGNC:1274      1
8186               21       15928296  HGNC:1274      1
8187               21       15928296  HGNC:1274      1
8188               21       15928296  HGNC:1274      1
8189               21       15928296  HGNC:1274      1
8190               21       15928296  HGNC:1274      1
8191               21       15928296  HGNC:1274      1
8192               21       15928296  HGNC:1274      1
8193               21       15928296  HGNC:1274      1
8194               21       15928296  HGNC:1274      1
8195               21       15928296  HGNC:1274      1
8196               21       15928296  HGNC:1274      1
8197               21       15928296  HGNC:1274      1
8198               21       15928296  HGNC:1274      1
8199               21       15928296  HGNC:1274      1
8200               21       15928296  HGNC:1274      1
8201               21       15928296  HGNC:1274      1
8202               21       15928296  HGNC:1274      1
8203               21       15928296  HGNC:1274      1
8204               21       15928296  HGNC:1274      1
8205               21       15928296  HGNC:1274      1
8206               21       15928296  HGNC:1274      1
8207               21       15928296  HGNC:1274      1
8208               21       15928296  HGNC:1274      1
8209               21       15928296  HGNC:1274      1
8210               21       15928296  HGNC:1274      1
8211               21       15928296  HGNC:1274      1
8212               21       15928296  HGNC:1274      1
8213               21       15928296  HGNC:1274      1
8214               21       15928296  HGNC:1274      1
8215               21       15928296  HGNC:1274      1
8216               21       15928296  HGNC:1274      1
8217               21       15928296  HGNC:1274      1
8218               21       15928296  HGNC:1274      1
8219               21       15928296  HGNC:1274      1
8220               21       15928296  HGNC:1274      1
8221               21       15928296  HGNC:1274      1
8222               21       15928296  HGNC:1274      1
8223               21       15928296  HGNC:1274      1
8224               21       15928296  HGNC:1274      1
8225               21       15928296  HGNC:1274      1
8226               21       15928296  HGNC:1274      1
8227               21       15928296  HGNC:1274      1
8228               21       15928296  HGNC:1274      1
8229               21       15928296  HGNC:1274      1
8230               21       15928296  HGNC:1274      1
8231               21       15928296  HGNC:1274      1
8232               21       15928296  HGNC:1274      1
8233               21       15928296  HGNC:1274      1
8234               21       15928296  HGNC:1274      1
8235               21       15928296  HGNC:1274      1
8236               21       15928296  HGNC:1274      1
8237               21       15928296  HGNC:1274      1
8238               21       15928296  HGNC:1274      1
8239               21       15928296  HGNC:1274      1
8240               21       15928296  HGNC:1274      1
8241               21       15928296  HGNC:1274      1
8242               21       15928296  HGNC:1274      1
8243               21       15928296  HGNC:1274      1
8244               21       15928296  HGNC:1274      1
8245               21       15928296  HGNC:1274      1
8246               21       15928296  HGNC:1274      1
8247               21       15928296  HGNC:1274      1
8248               21       15928296  HGNC:1274      1
8249               21       15928296  HGNC:1274      1
8250               21       15928296  HGNC:1274      1
8251               21       15928296  HGNC:1274      1
8252               21       15928296  HGNC:1274      1
8253               21       15928296  HGNC:1274      1
8254               21       15928296  HGNC:1274      1
8255               21       15928296  HGNC:1274      1
8256               21       15928296  HGNC:1274      1
8257               21       15928296  HGNC:1274      1
8258               21       15928296  HGNC:1274      1
8259               21       15928296  HGNC:1274      1
8260               21       15928296  HGNC:1274      1
8261               21       16539828 HGNC:31480      1
8262               21       32268219  HGNC:1286     -1
8263               21       32268219  HGNC:1286     -1
8264               21       32268219  HGNC:1286     -1
8265               21       32268219  HGNC:1286     -1
8266               21       32268219  HGNC:1286     -1
8267               21       32268219  HGNC:1286     -1
8268               21       32268219  HGNC:1286     -1
8269               21       32277863 HGNC:40106      1
8270               21       32277863 HGNC:40106      1
8271               21       32277863 HGNC:40106      1
8272               21       36320189 HGNC:23572      1
8273               21       36320189 HGNC:23572      1
8274               21       36320189 HGNC:23572      1
8275               21       36320189 HGNC:23572      1
8276               21       36320189 HGNC:23572      1
8277               21       36320189 HGNC:23572      1
8278               21       36320189 HGNC:23572      1
8279               21       36320189 HGNC:23572      1
8280               21       36320189 HGNC:23572      1
8281               21       36320189 HGNC:23572      1
8282               21       36320189 HGNC:23572      1
8283               21       36320189 HGNC:23572      1
8284               21       36320189 HGNC:23572      1
8285               21       36320189 HGNC:23572      1
8286               21       36320189 HGNC:23572      1
8287               21       36320189 HGNC:23572      1
8288               21       36320189 HGNC:23572      1
8289               21       36320189 HGNC:23572      1
8290               21       36320189 HGNC:23572      1
8291               21       36320189 HGNC:23572      1
8292               21       36320189 HGNC:23572      1
8293               21       36320189 HGNC:23572      1
8294               21       36320189 HGNC:23572      1
8295               21       36320189 HGNC:23572      1
8296               21       36320189 HGNC:23572      1
8297               21       36320189 HGNC:23572      1
8298               21       36320189 HGNC:23572      1
8299               21       36320189 HGNC:23572      1
8300               21       36320189 HGNC:23572      1
8301               21       36320189 HGNC:23572      1
8302               21       36320189 HGNC:23572      1
8303               21       36320189 HGNC:23572      1
8304               21       36320189 HGNC:23572      1
8305               21       36320189 HGNC:23572      1
8306               21       36320189 HGNC:23572      1
8307               21       36320189 HGNC:23572      1
8308               21       36320189 HGNC:23572      1
8309               21       36320189 HGNC:23572      1
8310               21       36320189 HGNC:23572      1
8311               21       36320189 HGNC:23572      1
8312               21       36320189 HGNC:23572      1
8313               21       36320189 HGNC:23572      1
8314               21       36320189 HGNC:23572      1
8315               21       36320189 HGNC:23572      1
8316               21       36320189 HGNC:23572      1
8317               21       36320189 HGNC:23572      1
8318               21       36320189 HGNC:23572      1
8319               21       36320189 HGNC:23572      1
8320               21       36320189 HGNC:23572      1
8321               21       36320189 HGNC:23572      1
8322               21       36320189 HGNC:23572      1
8323               21       36320189 HGNC:23572      1
8324               21       36320189 HGNC:23572      1
8325               21       36320189 HGNC:23572      1
8326               21       36320189 HGNC:23572      1
8327               21       36320189 HGNC:23572      1
8328               21       36320189 HGNC:23572      1
8329               21       36320189 HGNC:23572      1
8330               21       36320189 HGNC:23572      1
8331               21       36320189 HGNC:23572      1
8332               21       36320189 HGNC:23572      1
8333               21       36320189 HGNC:23572      1
8334               21       36320189 HGNC:23572      1
8335               21       36320189 HGNC:23572      1
8336               21       36320189 HGNC:23572      1
8337               21       36320189 HGNC:23572      1
8338               21       36320189 HGNC:23572      1
8339               21       36320189 HGNC:23572      1
8340               21       36320189 HGNC:23572      1
8341               21       36320189 HGNC:23572      1
8342               21       36320189 HGNC:23572      1
8343               21       36320189 HGNC:23572      1
8344               21       36320189 HGNC:23572      1
8345               21       36320189 HGNC:23572      1
8346               21       36320189 HGNC:23572      1
8347               21       36320189 HGNC:23572      1
8348               21       36320189 HGNC:23572      1
8349               21       36320189 HGNC:23572      1
8350               21       36320189 HGNC:23572      1
8351               21       36320189 HGNC:23572      1
8352               21       36320189 HGNC:23572      1
8353               21       36320189 HGNC:23572      1
8354               21       36320189 HGNC:23572      1
8355               21       32291813  HGNC:1304      1
8356               21       32291813  HGNC:1304      1
8357               21       32291813  HGNC:1304      1
8358               21       32291813  HGNC:1304      1
8359               21       32291813  HGNC:1304      1
8360               21       32291813  HGNC:1304      1
8361               21       32291813  HGNC:1304      1
8362               21       32291813  HGNC:1304      1
8363               21       32291813  HGNC:1304      1
8364               21       32291813  HGNC:1304      1
8365               21       32291813  HGNC:1304      1
8366               21       32291813  HGNC:1304      1
8367               21       32291813  HGNC:1304      1
8368               21       32291813  HGNC:1304      1
8369               21       32291813  HGNC:1304      1
8370               21       36994643 HGNC:29699      1
8371               21       25585656 HGNC:14027     -1
8372               21       25585656 HGNC:14027     -1
8373               21       25585656 HGNC:14027     -1
8374               21       25585656 HGNC:14027     -1
8375               21       25585656 HGNC:14027     -1
8376               21       25585656 HGNC:14027     -1
8377               21       25585656 HGNC:14027     -1
8378               21       25585656 HGNC:14027     -1
8379               21       25585656 HGNC:14027     -1
8380               21       25585656 HGNC:14027     -1
8381               21       25585656 HGNC:14027     -1
8382               21       25585656 HGNC:14027     -1
8383               21       25585656 HGNC:14027     -1
8384               21       25585656 HGNC:14027     -1
8385               21       25585656 HGNC:14027     -1
8386               21       25585656 HGNC:14027     -1
8387               21       25585656 HGNC:14027     -1
8388               21       25585656 HGNC:14027     -1
8389               21       25585656 HGNC:14027     -1
8390               21       25585656 HGNC:14027     -1
8391               21       25585656 HGNC:14027     -1
8392               21       25585656 HGNC:14027     -1
8393               21       25585656 HGNC:14027     -1
8394               21       25585656 HGNC:14027     -1
8395               21       25585656 HGNC:14027     -1
8396               21       25585656 HGNC:14027     -1
8397               21       25585656 HGNC:14027     -1
8398               21       25585656 HGNC:14027     -1
8399               21       25585656 HGNC:14027     -1
8400               21       43115334 HGNC:29724     -1
8401               21       34073224 HGNC:14051      1
8402               21       34073224 HGNC:14051      1
8403               21       34073224 HGNC:14051      1
8404               21       34073224 HGNC:14051      1
8405               21       34073224 HGNC:14051      1
8406               21       34073224 HGNC:14051      1
8407               21       34073224 HGNC:14051      1
8408               21       34073224 HGNC:14051      1
8409               21       34073224 HGNC:14051      1
8410               21       34073224 HGNC:14051      1
8411               21       34073224 HGNC:14051      1
8412               21       34073224 HGNC:14051      1
8413               21       34073224 HGNC:14051      1
8414               21       34073224 HGNC:14051      1
8415               21       34073224 HGNC:14051      1
8416               21       34073224 HGNC:14051      1
8417               21       34073224 HGNC:14051      1
8418               21       34073224 HGNC:14051      1
8419               21       23101223 HGNC:39637      1
8420               21       23101223 HGNC:39637      1
8421               21       23101223 HGNC:39637      1
8422               21        8845566  HGNC:7420      1
8423               21       45376191 HGNC:39604     -1
8424               21       44469929 HGNC:51977     -1
8425               21       44469929 HGNC:51977     -1
8426               21       44469929 HGNC:51977     -1
8427               21       44473723 HGNC:39644     -1
8428               21       44472895 HGNC:39639      1
8429               21       44472895 HGNC:39639      1
8430               21       41420304  HGNC:7532      1
8431               21       41420304  HGNC:7532      1
8432               21       41420304  HGNC:7532      1
8433               21       41420304  HGNC:7532      1
8434               21       41420304  HGNC:7532      1
8435               21       41420304  HGNC:7532      1
8436               21       41420304  HGNC:7532      1
8437               21       41420304  HGNC:7532      1
8438               21       41420304  HGNC:7532      1
8439               21       41420304  HGNC:7532      1
8440               21       41420304  HGNC:7532      1
8441               21       41420304  HGNC:7532      1
8442               21       41420304  HGNC:7532      1
8443               21       41420304  HGNC:7532      1
8444               21       41420304  HGNC:7532      1
8445               21       41420304  HGNC:7532      1
8446               21       41420304  HGNC:7532      1
8447               21       41420304  HGNC:7532      1
8448               21       41420304  HGNC:7532      1
8449               21       41420304  HGNC:7532      1
8450               21       41420304  HGNC:7532      1
8451               21       41420304  HGNC:7532      1
8452               21       41420304  HGNC:7532      1
8453               21       41420304  HGNC:7532      1
8454               21       41420304  HGNC:7532      1
8455               21       41420304  HGNC:7532      1
8456               21       41420304  HGNC:7532      1
8457               21       41420304  HGNC:7532      1
8458               21       41420304  HGNC:7532      1
8459               21       41420304  HGNC:7532      1
8460               21       41420304  HGNC:7532      1
8461               21       41420304  HGNC:7532      1
8462               21       41420304  HGNC:7532      1
8463               21       41420304  HGNC:7532      1
8464               21       41420304  HGNC:7532      1
8465               21       41420304  HGNC:7532      1
8466               21       41420304  HGNC:7532      1
8467               21       41420304  HGNC:7532      1
8468               21       41420304  HGNC:7532      1
8469               21       41420304  HGNC:7532      1
8470               21       41420304  HGNC:7532      1
8471               21       41420304  HGNC:7532      1
8472               21       41420304  HGNC:7532      1
8473               21       41420304  HGNC:7532      1
8474               21       41420304  HGNC:7532      1
8475               21       41420304  HGNC:7532      1
8476               21       41420304  HGNC:7532      1
8477               21       41420304  HGNC:7532      1
8478               21       41420304  HGNC:7532      1
8479               21       41420304  HGNC:7532      1
8480               21       41420304  HGNC:7532      1
8481               21       41420304  HGNC:7532      1
8482               21       41420304  HGNC:7532      1
8483               21       41420304  HGNC:7532      1
8484               21       41420304  HGNC:7532      1
8485               21       41420304  HGNC:7532      1
8486               21       41420304  HGNC:7532      1
8487               21       41420304  HGNC:7532      1
8488               21       41420304  HGNC:7532      1
8489               21       41420304  HGNC:7532      1
8490               21       41420304  HGNC:7532      1
8491               21       41420304  HGNC:7532      1
8492               21       41420304  HGNC:7532      1
8493               21       41420304  HGNC:7532      1
8494               21       41420304  HGNC:7532      1
8495               21       41420304  HGNC:7532      1
8496               21       41420304  HGNC:7532      1
8497               21       41420304  HGNC:7532      1
8498               21       41420304  HGNC:7532      1
8499               21       41420304  HGNC:7532      1
8500               21       41420304  HGNC:7532      1
8501               21       41420304  HGNC:7532      1
8502               21       41420304  HGNC:7532      1
8503               21       41420304  HGNC:7532      1
8504               21       41420304  HGNC:7532      1
8505               21       41420304  HGNC:7532      1
8506               21       41420304  HGNC:7532      1
8507               21       41420304  HGNC:7532      1
8508               21       41420304  HGNC:7532      1
8509               21       41420304  HGNC:7532      1
8510               21       41420304  HGNC:7532      1
8511               21       41420304  HGNC:7532      1
8512               21       41420304  HGNC:7532      1
8513               21       41420304  HGNC:7532      1
8514               21       41420304  HGNC:7532      1
8515               21       41420304  HGNC:7532      1
8516               21       41420304  HGNC:7532      1
8517               21       41420304  HGNC:7532      1
8518               21       41420304  HGNC:7532      1
8519               21       41420304  HGNC:7532      1
8520               21       41420304  HGNC:7532      1
8521               21       41420304  HGNC:7532      1
8522               21       41420304  HGNC:7532      1
8523               21       41420304  HGNC:7532      1
8524               21       41420304  HGNC:7532      1
8525               21       41420304  HGNC:7532      1
8526               21       41420304  HGNC:7532      1
8527               21       41420304  HGNC:7532      1
8528               21       41420304  HGNC:7532      1
8529               21       41420304  HGNC:7532      1
8530               21       41420304  HGNC:7532      1
8531               21       41420304  HGNC:7532      1
8532               21       41420304  HGNC:7532      1
8533               21       41420304  HGNC:7532      1
8534               21       41420304  HGNC:7532      1
8535               21       41420304  HGNC:7532      1
8536               21       41420304  HGNC:7532      1
8537               21       41420304  HGNC:7532      1
8538               21       41420304  HGNC:7532      1
8539               21       41420304  HGNC:7532      1
8540               21       41420304  HGNC:7532      1
8541               21       41420304  HGNC:7532      1
8542               21       41420304  HGNC:7532      1
8543               21       41420304  HGNC:7532      1
8544               21       41420304  HGNC:7532      1
8545               21       41420304  HGNC:7532      1
8546               21       41420304  HGNC:7532      1
8547               21       41420304  HGNC:7532      1
8548               21       41420304  HGNC:7532      1
8549               21       41420304  HGNC:7532      1
8550               21       41420304  HGNC:7532      1
8551               21       41420304  HGNC:7532      1
8552               21       41420304  HGNC:7532      1
8553               21       41420304  HGNC:7532      1
8554               21       41420304  HGNC:7532      1
8555               21       41420304  HGNC:7532      1
8556               21       41420304  HGNC:7532      1
8557               21       41420304  HGNC:7532      1
8558               21       41420304  HGNC:7532      1
8559               21       41420304  HGNC:7532      1
8560               21       41420304  HGNC:7532      1
8561               21       41420304  HGNC:7532      1
8562               21       41361943  HGNC:7533      1
8563               21       41361943  HGNC:7533      1
8564               21       41361943  HGNC:7533      1
8565               21       41361943  HGNC:7533      1
8566               21       41361943  HGNC:7533      1
8567               21       41361943  HGNC:7533      1
8568               21       41361943  HGNC:7533      1
8569               21       41361943  HGNC:7533      1
8570               21       41361943  HGNC:7533      1
8571               21       41361943  HGNC:7533      1
8572               21       41361943  HGNC:7533      1
8573               21       41361943  HGNC:7533      1
8574               21       41361943  HGNC:7533      1
8575               21       41361943  HGNC:7533      1
8576               21       41361943  HGNC:7533      1
8577               21       41361943  HGNC:7533      1
8578               21       41361943  HGNC:7533      1
8579               21       41361943  HGNC:7533      1
8580               21       41361943  HGNC:7533      1
8581               21       41361943  HGNC:7533      1
8582               21       41361943  HGNC:7533      1
8583               21       41361943  HGNC:7533      1
8584               21       41361943  HGNC:7533      1
8585               21       41361943  HGNC:7533      1
8586               21       41361943  HGNC:7533      1
8587               21       41361943  HGNC:7533      1
8588               21       41361943  HGNC:7533      1
8589               21       41361943  HGNC:7533      1
8590               21       41361943  HGNC:7533      1
8591               21       41361943  HGNC:7533      1
8592               21       41361943  HGNC:7533      1
8593               21       41361943  HGNC:7533      1
8594               21       41361943  HGNC:7533      1
8595               21       41361943  HGNC:7533      1
8596               21       41361943  HGNC:7533      1
8597               21       41361943  HGNC:7533      1
8598               21       41361943  HGNC:7533      1
8599               21       41361943  HGNC:7533      1
8600               21       41361943  HGNC:7533      1
8601               21       41361943  HGNC:7533      1
8602               21       41361943  HGNC:7533      1
8603               21       41361943  HGNC:7533      1
8604               21       41361943  HGNC:7533      1
8605               21       41361943  HGNC:7533      1
8606               21       41361943  HGNC:7533      1
8607               21       41361943  HGNC:7533      1
8608               21       41361943  HGNC:7533      1
8609               21       41361943  HGNC:7533      1
8610               21       41361943  HGNC:7533      1
8611               21       41361943  HGNC:7533      1
8612               21       41361943  HGNC:7533      1
8613               21       41361943  HGNC:7533      1
8614               21       41361943  HGNC:7533      1
8615               21       41361943  HGNC:7533      1
8616               21       41361943  HGNC:7533      1
8617               21       41361943  HGNC:7533      1
8618               21       41361943  HGNC:7533      1
8619               21       41361943  HGNC:7533      1
8620               21       41361943  HGNC:7533      1
8621               21       41361943  HGNC:7533      1
8622               21       41361943  HGNC:7533      1
8623               21       41361943  HGNC:7533      1
8624               21       43855890  HGNC:7588     -1
8625               21       39488327 HGNC:23772      1
8626               21       28872191 HGNC:16021     -1
8627               21       28872191 HGNC:16021     -1
8628               21       28872191 HGNC:16021     -1
8629               21       28872191 HGNC:16021     -1
8630               21       28872191 HGNC:16021     -1
8631               21       28872191 HGNC:16021     -1
8632               21       28872191 HGNC:16021     -1
8633               21       28872191 HGNC:16021     -1
8634               21       28872191 HGNC:16021     -1
8635               21       28872191 HGNC:16021     -1
8636               21       28872191 HGNC:16021     -1
8637               21       28872191 HGNC:16021     -1
8638               21       28872191 HGNC:16021     -1
8639               21       28872191 HGNC:16021     -1
8640               21       28872191 HGNC:16021     -1
8641               21       28872191 HGNC:16021     -1
8642               21       28872191 HGNC:16021     -1
8643               21       28872191 HGNC:16021     -1
8644               21       20998315  HGNC:7657      1
8645               21       20998315  HGNC:7657      1
8646               21       20998315  HGNC:7657      1
8647               21       20998315  HGNC:7657      1
8648               21       20998315  HGNC:7657      1
8649               21       20998315  HGNC:7657      1
8650               21       20998315  HGNC:7657      1
8651               21       20998315  HGNC:7657      1
8652               21       20998315  HGNC:7657      1
8653               21       20998315  HGNC:7657      1
8654               21       20998315  HGNC:7657      1
8655               21       20998315  HGNC:7657      1
8656               21       20998315  HGNC:7657      1
8657               21       20998315  HGNC:7657      1
8658               21       20998315  HGNC:7657      1
8659               21       20998315  HGNC:7657      1
8660               21       20998315  HGNC:7657      1
8661               21       20998315  HGNC:7657      1
8662               21       20998315  HGNC:7657      1
8663               21       20998315  HGNC:7657      1
8664               21       20998315  HGNC:7657      1
8665               21       20998315  HGNC:7657      1
8666               21       20998315  HGNC:7657      1
8667               21       20998315  HGNC:7657      1
8668               21       20998315  HGNC:7657      1
8669               21       20998315  HGNC:7657      1
8670               21       20998315  HGNC:7657      1
8671               21       20998315  HGNC:7657      1
8672               21       20998315  HGNC:7657      1
8673               21       20998315  HGNC:7657      1
8674               21       20998315  HGNC:7657      1
8675               21       20998315  HGNC:7657      1
8676               21       20998315  HGNC:7657      1
8677               21       20998315  HGNC:7657      1
8678               21       20998315  HGNC:7657      1
8679               21       20998315  HGNC:7657      1
8680               21       20998315  HGNC:7657      1
8681               21       20998315  HGNC:7657      1
8682               21       20998315  HGNC:7657      1
8683               21       20998315  HGNC:7657      1
8684               21       20998315  HGNC:7657      1
8685               21       20998315  HGNC:7657      1
8686               21       20998315  HGNC:7657      1
8687               21       20998315  HGNC:7657      1
8688               21       20998315  HGNC:7657      1
8689               21       20998315  HGNC:7657      1
8690               21       20998315  HGNC:7657      1
8691               21       20998315  HGNC:7657      1
8692               21       27492118 HGNC:39606      1
8693               21       42879644  HGNC:7719      1
8694               21       42879644  HGNC:7719      1
8695               21       42879644  HGNC:7719      1
8696               21       42879644  HGNC:7719      1
8697               21       42879644  HGNC:7719      1
8698               21       42879644  HGNC:7719      1
8699               21       42879644  HGNC:7719      1
8700               21       42879644  HGNC:7719      1
8701               21       42879644  HGNC:7719      1
8702               21       42879644  HGNC:7719      1
8703               21       42879644  HGNC:7719      1
8704               21       42879644  HGNC:7719      1
8705               21       42879644  HGNC:7719      1
8706               21       42879644  HGNC:7719      1
8707               21       42879644  HGNC:7719      1
8708               21       17210469 HGNC:39649     -1
8709               21       14000927  HGNC:7766      1
8710               21       14000927  HGNC:7766      1
8711               21       14000927  HGNC:7766      1
8712               21       14000927  HGNC:7766      1
8713               21       14961235  HGNC:8001     -1
8714               21       14961235  HGNC:8001     -1
8715               21       14961235  HGNC:8001     -1
8716               21       14961235  HGNC:8001     -1
8717               21       14961235  HGNC:8001     -1
8718               21       14961235  HGNC:8001     -1
8719               21       14961235  HGNC:8001     -1
8720               21       14961235  HGNC:8001     -1
8721               21       14961235  HGNC:8001     -1
8722               21       14961235  HGNC:8001     -1
8723               21       14961235  HGNC:8001     -1
8724               21       14961235  HGNC:8001     -1
8725               21       14961235  HGNC:8001     -1
8726               21       14961235  HGNC:8001     -1
8727               21       14961235  HGNC:8001     -1
8728               21       14961235  HGNC:8001     -1
8729               21       14961235  HGNC:8001     -1
8730               21       14961235  HGNC:8001     -1
8731               21       14961235  HGNC:8001     -1
8732               21       14961235  HGNC:8001     -1
8733               21       14961235  HGNC:8001     -1
8734               21       14961235  HGNC:8001     -1
8735               21       14961235  HGNC:8001     -1
8736               21       33070144 HGNC:16983      1
8737               21       33070144 HGNC:16983      1
8738               21       33070144 HGNC:16983      1
8739               21       33070144 HGNC:16983      1
8740               21       33070144 HGNC:16983      1
8741               21       33025845  HGNC:9398      1
8742               21       33025845  HGNC:9398      1
8743               21       33025845  HGNC:9398      1
8744               21       33025845  HGNC:9398      1
8745               21       33025845  HGNC:9398      1
8746               21       13544282 HGNC:15402     -1
8747               21       13581044 HGNC:15403     -1
8748               21       32621049  HGNC:8395      1
8749               21       32733899 HGNC:13579     -1
8750               21       32733899 HGNC:13579     -1
8751               21       32733899 HGNC:13579     -1
8752               21       32733899 HGNC:13579     -1
8753               21       32733899 HGNC:13579     -1
8754               21       32733899 HGNC:13579     -1
8755               21       32733899 HGNC:13579     -1
8756               21       32733899 HGNC:13579     -1
8757               21       32733899 HGNC:13579     -1
8758               21       32733899 HGNC:13579     -1
8759               21       32733899 HGNC:13579     -1
8760               21       32733899 HGNC:13579     -1
8761               21       32733899 HGNC:13579     -1
8762               21       32733899 HGNC:13579     -1
8763               21       32733899 HGNC:13579     -1
8764               21       32733899 HGNC:13579     -1
8765               21       32733899 HGNC:13579     -1
8766               21       32733899 HGNC:13579     -1
8767               21       32733899 HGNC:13579     -1
8768               21       32733899 HGNC:13579     -1
8769               21       32733899 HGNC:13579     -1
8770               21       32733899 HGNC:13579     -1
8771               21       32733899 HGNC:13579     -1
8772               21       32733899 HGNC:13579     -1
8773               21       32733899 HGNC:13579     -1
8774               21       32733899 HGNC:13579     -1
8775               21       32733899 HGNC:13579     -1
8776               21       32733899 HGNC:13579     -1
8777               21       32733899 HGNC:13579     -1
8778               21       32733899 HGNC:13579     -1
8779               21       32733899 HGNC:13579     -1
8780               21       32733899 HGNC:13579     -1
8781               21       32733899 HGNC:13579     -1
8782               21       32733899 HGNC:13579     -1
8783               21       32733899 HGNC:13579     -1
8784               21       32733899 HGNC:13579     -1
8785               21       32733899 HGNC:13579     -1
8786               21       32733899 HGNC:13579     -1
8787               21       32733899 HGNC:13579     -1
8788               21       32733899 HGNC:13579     -1
8789               21       32733899 HGNC:13579     -1
8790               21       32733899 HGNC:13579     -1
8791               21       32733899 HGNC:13579     -1
8792               21       32733899 HGNC:13579     -1
8793               21       32733899 HGNC:13579     -1
8794               21       32733899 HGNC:13579     -1
8795               21       32733899 HGNC:13579     -1
8796               21       32733899 HGNC:13579     -1
8797               21       32733899 HGNC:13579     -1
8798               21       32733899 HGNC:13579     -1
8799               21       32733899 HGNC:13579     -1
8800               21       32733899 HGNC:13579     -1
8801               21       32733899 HGNC:13579     -1
8802               21       32733899 HGNC:13579     -1
8803               21       32733899 HGNC:13579     -1
8804               21       32733899 HGNC:13579     -1
8805               21       32733899 HGNC:13579     -1
8806               21       32733899 HGNC:13579     -1
8807               21       32733899 HGNC:13579     -1
8808               21       32733899 HGNC:13579     -1
8809               21       32733899 HGNC:13579     -1
8810               21       32733899 HGNC:13579     -1
8811               21       32733899 HGNC:13579     -1
8812               21       32733899 HGNC:13579     -1
8813               21       32733899 HGNC:13579     -1
8814               21       32733899 HGNC:13579     -1
8815               21       32733899 HGNC:13579     -1
8816               21       32733899 HGNC:13579     -1
8817               21       32733899 HGNC:13579     -1
8818               21       32733899 HGNC:13579     -1
8819               21       32733899 HGNC:13579     -1
8820               21       32733899 HGNC:13579     -1
8821               21       32733899 HGNC:13579     -1
8822               21       32733899 HGNC:13579     -1
8823               21       32733899 HGNC:13579     -1
8824               21       32733899 HGNC:13579     -1
8825               21       32733899 HGNC:13579     -1
8826               21       32733899 HGNC:13579     -1
8827               21       32733899 HGNC:13579     -1
8828               21       32733899 HGNC:13579     -1
8829               21       32733899 HGNC:13579     -1
8830               21       32733899 HGNC:13579     -1
8831               21       32733899 HGNC:13579     -1
8832               21       32733899 HGNC:13579     -1
8833               21       32733899 HGNC:13579     -1
8834               21       32733899 HGNC:13579     -1
8835               21       32733899 HGNC:13579     -1
8836               21       32733899 HGNC:13579     -1
8837               21       32733899 HGNC:13579     -1
8838               21       32733899 HGNC:13579     -1
8839               21       32733899 HGNC:13579     -1
8840               21       32733899 HGNC:13579     -1
8841               21       32733899 HGNC:13579     -1
8842               21       32733899 HGNC:13579     -1
8843               21       32728115 HGNC:39603      1
8844               21       32728115 HGNC:39603      1
8845               21       32728115 HGNC:39603      1
8846               21       32728115 HGNC:39603      1
8847               21       32728115 HGNC:39603      1
8848               21       32728115 HGNC:39603      1
8849               21       32728115 HGNC:39603      1
8850               21       32728115 HGNC:39603      1
8851               21       32728115 HGNC:39603      1
8852               21       39171130  HGNC:8649     -1
8853               21       45643694  HGNC:8651      1
8854               21       45643694  HGNC:8651      1
8855               21       45643694  HGNC:8651      1
8856               21       45643694  HGNC:8651      1
8857               21       45643694  HGNC:8651      1
8858               21       45643694  HGNC:8651      1
8859               21       45643694  HGNC:8651      1
8860               21       45643694  HGNC:8651      1
8861               21       45643694  HGNC:8651      1
8862               21       45643694  HGNC:8651      1
8863               21       45643694  HGNC:8651      1
8864               21       45643694  HGNC:8651      1
8865               21       45643694  HGNC:8651      1
8866               21       45643694  HGNC:8651      1
8867               21       45643694  HGNC:8651      1
8868               21       45643694  HGNC:8651      1
8869               21       45643694  HGNC:8651      1
8870               21       45643694  HGNC:8651      1
8871               21       45643694  HGNC:8651      1
8872               21       45643694  HGNC:8651      1
8873               21       45643694  HGNC:8651      1
8874               21       45643694  HGNC:8651      1
8875               21       45643694  HGNC:8651      1
8876               21       45643694  HGNC:8651      1
8877               21       45643694  HGNC:8651      1
8878               21       45643694  HGNC:8651      1
8879               21       45643694  HGNC:8651      1
8880               21       45643694  HGNC:8651      1
8881               21       45643694  HGNC:8651      1
8882               21       45643694  HGNC:8651      1
8883               21       45643694  HGNC:8651      1
8884               21       45643694  HGNC:8651      1
8885               21       45643694  HGNC:8651      1
8886               21       45643694  HGNC:8651      1
8887               21       45643694  HGNC:8651      1
8888               21       45643694  HGNC:8651      1
8889               21       45643694  HGNC:8651      1
8890               21       45643694  HGNC:8651      1
8891               21       45643694  HGNC:8651      1
8892               21       45643694  HGNC:8651      1
8893               21       45643694  HGNC:8651      1
8894               21       45643694  HGNC:8651      1
8895               21       45643694  HGNC:8651      1
8896               21       45643694  HGNC:8651      1
8897               21       45643694  HGNC:8651      1
8898               21       45643694  HGNC:8651      1
8899               21       45643694  HGNC:8651      1
8900               21       45643694  HGNC:8651      1
8901               21       45643694  HGNC:8651      1
8902               21       45643694  HGNC:8651      1
8903               21       45643694  HGNC:8651      1
8904               21       45643694  HGNC:8651      1
8905               21       45643694  HGNC:8651      1
8906               21       45643694  HGNC:8651      1
8907               21       45643694  HGNC:8651      1
8908               21       45643694  HGNC:8651      1
8909               21       45643694  HGNC:8651      1
8910               21       45643694  HGNC:8651      1
8911               21       45643694  HGNC:8651      1
8912               21       45643694  HGNC:8651      1
8913               21       45643694  HGNC:8651      1
8914               21       45643694  HGNC:8651      1
8915               21       45643694  HGNC:8651      1
8916               21       45643694  HGNC:8651      1
8917               21       45643694  HGNC:8651      1
8918               21       45643694  HGNC:8651      1
8919               21       45643694  HGNC:8651      1
8920               21       45643694  HGNC:8651      1
8921               21       45643694  HGNC:8651      1
8922               21       45643694  HGNC:8651      1
8923               21       45643694  HGNC:8651      1
8924               21       45643694  HGNC:8651      1
8925               21       45643694  HGNC:8651      1
8926               21       45643694  HGNC:8651      1
8927               21       45643694  HGNC:8651      1
8928               21       45643694  HGNC:8651      1
8929               21       45643694  HGNC:8651      1
8930               21       45643694  HGNC:8651      1
8931               21       45643694  HGNC:8651      1
8932               21       45643694  HGNC:8651      1
8933               21       45643694  HGNC:8651      1
8934               21       45643694  HGNC:8651      1
8935               21       45643694  HGNC:8651      1
8936               21       45643694  HGNC:8651      1
8937               21       45643694  HGNC:8651      1
8938               21       45643694  HGNC:8651      1
8939               21       45643694  HGNC:8651      1
8940               21       45643694  HGNC:8651      1
8941               21       45643694  HGNC:8651      1
8942               21       45643694  HGNC:8651      1
8943               21       45643694  HGNC:8651      1
8944               21       45643694  HGNC:8651      1
8945               21       45643694  HGNC:8651      1
8946               21       45643694  HGNC:8651      1
8947               21       45643694  HGNC:8651      1
8948               21       45643694  HGNC:8651      1
8949               21       45643694  HGNC:8651      1
8950               21       45643694  HGNC:8651      1
8951               21       45643694  HGNC:8651      1
8952               21       45643694  HGNC:8651      1
8953               21       45643694  HGNC:8651      1
8954               21       45643694  HGNC:8651      1
8955               21       45643694  HGNC:8651      1
8956               21       45643694  HGNC:8651      1
8957               21       45643694  HGNC:8651      1
8958               21       45643694  HGNC:8651      1
8959               21       45643694  HGNC:8651      1
8960               21       45643694  HGNC:8651      1
8961               21       45643694  HGNC:8651      1
8962               21       45643694  HGNC:8651      1
8963               21       45643694  HGNC:8651      1
8964               21       45643694  HGNC:8651      1
8965               21       45643694  HGNC:8651      1
8966               21       45643694  HGNC:8651      1
8967               21       45643694  HGNC:8651      1
8968               21       45643694  HGNC:8651      1
8969               21       45643694  HGNC:8651      1
8970               21       45643694  HGNC:8651      1
8971               21       45643694  HGNC:8651      1
8972               21       45643694  HGNC:8651      1
8973               21       45643694  HGNC:8651      1
8974               21       45643694  HGNC:8651      1
8975               21       45643694  HGNC:8651      1
8976               21       45643694  HGNC:8651      1
8977               21       45643694  HGNC:8651      1
8978               21       45643694  HGNC:8651      1
8979               21       45643694  HGNC:8651      1
8980               21       45643694  HGNC:8651      1
8981               21       45643694  HGNC:8651      1
8982               21       45643694  HGNC:8651      1
8983               21       45643694  HGNC:8651      1
8984               21       45643694  HGNC:8651      1
8985               21       45643694  HGNC:8651      1
8986               21       45643694  HGNC:8651      1
8987               21       45643694  HGNC:8651      1
8988               21       45643694  HGNC:8651      1
8989               21       45643694  HGNC:8651      1
8990               21       45643694  HGNC:8651      1
8991               21       45643694  HGNC:8651      1
8992               21       45643694  HGNC:8651      1
8993               21       45643694  HGNC:8651      1
8994               21       45643694  HGNC:8651      1
8995               21       45643694  HGNC:8651      1
8996               21       45643694  HGNC:8651      1
8997               21       45643694  HGNC:8651      1
8998               21       45643694  HGNC:8651      1
8999               21       45643694  HGNC:8651      1
9000               21       45643694  HGNC:8651      1
9001               21       45643694  HGNC:8651      1
9002               21       45643694  HGNC:8651      1
9003               21       45643694  HGNC:8651      1
9004               21       46324122 HGNC:16068      1
9005               21       46324122 HGNC:16068      1
9006               21       46324122 HGNC:16068      1
9007               21       46324122 HGNC:16068      1
9008               21       46324122 HGNC:16068      1
9009               21       46324122 HGNC:16068      1
9010               21       46324122 HGNC:16068      1
9011               21       46324122 HGNC:16068      1
9012               21       46324122 HGNC:16068      1
9013               21       46324122 HGNC:16068      1
9014               21       46324122 HGNC:16068      1
9015               21       46324122 HGNC:16068      1
9016               21       46324122 HGNC:16068      1
9017               21       46324122 HGNC:16068      1
9018               21       46324122 HGNC:16068      1
9019               21       46324122 HGNC:16068      1
9020               21       46324122 HGNC:16068      1
9021               21       46324122 HGNC:16068      1
9022               21       46324122 HGNC:16068      1
9023               21       46324122 HGNC:16068      1
9024               21       46324122 HGNC:16068      1
9025               21       46324122 HGNC:16068      1
9026               21       46324122 HGNC:16068      1
9027               21       46324122 HGNC:16068      1
9028               21       46324122 HGNC:16068      1
9029               21       46324122 HGNC:16068      1
9030               21       46324122 HGNC:16068      1
9031               21       46324122 HGNC:16068      1
9032               21       46324122 HGNC:16068      1
9033               21       46324122 HGNC:16068      1
9034               21       46324122 HGNC:16068      1
9035               21       46324122 HGNC:16068      1
9036               21       46324122 HGNC:16068      1
9037               21       46324122 HGNC:16068      1
9038               21       46324122 HGNC:16068      1
9039               21       46324122 HGNC:16068      1
9040               21       46324122 HGNC:16068      1
9041               21       46324122 HGNC:16068      1
9042               21       46324122 HGNC:16068      1
9043               21       46324122 HGNC:16068      1
9044               21       46324122 HGNC:16068      1
9045               21       46324122 HGNC:16068      1
9046               21       46324122 HGNC:16068      1
9047               21       46324122 HGNC:16068      1
9048               21       46324122 HGNC:16068      1
9049               21       46324122 HGNC:16068      1
9050               21       46324122 HGNC:16068      1
9051               21       46324122 HGNC:16068      1
9052               21       46324122 HGNC:16068      1
9053               21       46324122 HGNC:16068      1
9054               21       46324122 HGNC:16068      1
9055               21       46324122 HGNC:16068      1
9056               21       46324122 HGNC:16068      1
9057               21       46324122 HGNC:16068      1
9058               21       46324122 HGNC:16068      1
9059               21       46324122 HGNC:16068      1
9060               21       46324122 HGNC:16068      1
9061               21       46324122 HGNC:16068      1
9062               21       46324122 HGNC:16068      1
9063               21       46324122 HGNC:16068      1
9064               21       46324122 HGNC:16068      1
9065               21       46324122 HGNC:16068      1
9066               21       46324122 HGNC:16068      1
9067               21       46324122 HGNC:16068      1
9068               21       46324122 HGNC:16068      1
9069               21       46324122 HGNC:16068      1
9070               21       46324122 HGNC:16068      1
9071               21       46324122 HGNC:16068      1
9072               21       46324122 HGNC:16068      1
9073               21       46324122 HGNC:16068      1
9074               21       46324122 HGNC:16068      1
9075               21       46324122 HGNC:16068      1
9076               21       46324122 HGNC:16068      1
9077               21       46324122 HGNC:16068      1
9078               21       46324122 HGNC:16068      1
9079               21       46324122 HGNC:16068      1
9080               21       46324122 HGNC:16068      1
9081               21       46324122 HGNC:16068      1
9082               21       46324122 HGNC:16068      1
9083               21       46324122 HGNC:16068      1
9084               21       46324122 HGNC:16068      1
9085               21       46324122 HGNC:16068      1
9086               21       46324122 HGNC:16068      1
9087               21       46324122 HGNC:16068      1
9088               21       46324122 HGNC:16068      1
9089               21       46324122 HGNC:16068      1
9090               21       46324122 HGNC:16068      1
9091               21       46324122 HGNC:16068      1
9092               21       46324122 HGNC:16068      1
9093               21       46324122 HGNC:16068      1
9094               21       46324122 HGNC:16068      1
9095               21       46324122 HGNC:16068      1
9096               21       46324122 HGNC:16068      1
9097               21       46324122 HGNC:16068      1
9098               21       46324122 HGNC:16068      1
9099               21       46324122 HGNC:16068      1
9100               21       46324122 HGNC:16068      1
9101               21       46324122 HGNC:16068      1
9102               21       46324122 HGNC:16068      1
9103               21       46324122 HGNC:16068      1
9104               21       46324122 HGNC:16068      1
9105               21       46324122 HGNC:16068      1
9106               21       46324122 HGNC:16068      1
9107               21       46324122 HGNC:16068      1
9108               21       46324122 HGNC:16068      1
9109               21       46324122 HGNC:16068      1
9110               21       46324122 HGNC:16068      1
9111               21       46324122 HGNC:16068      1
9112               21       46324122 HGNC:16068      1
9113               21       46324122 HGNC:16068      1
9114               21       46324122 HGNC:16068      1
9115               21       46324122 HGNC:16068      1
9116               21       46324122 HGNC:16068      1
9117               21       46324122 HGNC:16068      1
9118               21       46324122 HGNC:16068      1
9119               21       46324122 HGNC:16068      1
9120               21       46324122 HGNC:16068      1
9121               21       46324122 HGNC:16068      1
9122               21       46324122 HGNC:16068      1
9123               21       46324122 HGNC:16068      1
9124               21       46324122 HGNC:16068      1
9125               21       46324122 HGNC:16068      1
9126               21       46324122 HGNC:16068      1
9127               21       39867317  HGNC:8742      1
9128               21       39867317  HGNC:8742      1
9129               21       39867317  HGNC:8742      1
9130               21       39867317  HGNC:8742      1
9131               21       39867317  HGNC:8742      1
9132               21       39867317  HGNC:8742      1
9133               21       39867317  HGNC:8742      1
9134               21       39867317  HGNC:8742      1
9135               21       39867317  HGNC:8742      1
9136               21       39867317  HGNC:8742      1
9137               21       39867317  HGNC:8742      1
9138               21       39867317  HGNC:8742      1
9139               21       39867317  HGNC:8742      1
9140               21       39867317  HGNC:8742      1
9141               21       42653636  HGNC:8795      1
9142               21       42653636  HGNC:8795      1
9143               21       42653636  HGNC:8795      1
9144               21       42653636  HGNC:8795      1
9145               21       42653636  HGNC:8795      1
9146               21       42653636  HGNC:8795      1
9147               21       42653636  HGNC:8795      1
9148               21       42653636  HGNC:8795      1
9149               21       42653636  HGNC:8795      1
9150               21       42653636  HGNC:8795      1
9151               21       42653636  HGNC:8795      1
9152               21       42653636  HGNC:8795      1
9153               21       42653636  HGNC:8795      1
9154               21       42653636  HGNC:8795      1
9155               21       42653636  HGNC:8795      1
9156               21       42653636  HGNC:8795      1
9157               21       42653636  HGNC:8795      1
9158               21       42653636  HGNC:8795      1
9159               21       42653636  HGNC:8795      1
9160               21       42653636  HGNC:8795      1
9161               21       42653636  HGNC:8795      1
9162               21       42653636  HGNC:8795      1
9163               21       42653636  HGNC:8795      1
9164               21       42653636  HGNC:8795      1
9165               21       42653636  HGNC:8795      1
9166               21       42653636  HGNC:8795      1
9167               21       42653636  HGNC:8795      1
9168               21       42653636  HGNC:8795      1
9169               21       42653636  HGNC:8795      1
9170               21       42653636  HGNC:8795      1
9171               21       42653636  HGNC:8795      1
9172               21       42653636  HGNC:8795      1
9173               21       42653636  HGNC:8795      1
9174               21       42653636  HGNC:8795      1
9175               21       42653636  HGNC:8795      1
9176               21       42653636  HGNC:8795      1
9177               21       42653636  HGNC:8795      1
9178               21       42653636  HGNC:8795      1
9179               21       42653636  HGNC:8795      1
9180               21       42653636  HGNC:8795      1
9181               21       42653636  HGNC:8795      1
9182               21       42653636  HGNC:8795      1
9183               21       42653636  HGNC:8795      1
9184               21       42653636  HGNC:8795      1
9185               21       42653636  HGNC:8795      1
9186               21       42653636  HGNC:8795      1
9187               21       42653636  HGNC:8795      1
9188               21       42653636  HGNC:8795      1
9189               21       42653636  HGNC:8795      1
9190               21       42653636  HGNC:8795      1
9191               21       42653636  HGNC:8795      1
9192               21       42653636  HGNC:8795      1
9193               21       42653636  HGNC:8795      1
9194               21       42653636  HGNC:8795      1
9195               21       42653636  HGNC:8795      1
9196               21       42653636  HGNC:8795      1
9197               21       42653636  HGNC:8795      1
9198               21       42653636  HGNC:8795      1
9199               21       42653636  HGNC:8795      1
9200               21       42653636  HGNC:8795      1
9201               21       42653636  HGNC:8795      1
9202               21       42653636  HGNC:8795      1
9203               21       42653636  HGNC:8795      1
9204               21       42653636  HGNC:8795      1
9205               21       42653636  HGNC:8795      1
9206               21       42653636  HGNC:8795      1
9207               21       42653636  HGNC:8795      1
9208               21       42653636  HGNC:8795      1
9209               21       42653636  HGNC:8795      1
9210               21       42653636  HGNC:8795      1
9211               21       42653636  HGNC:8795      1
9212               21       42653636  HGNC:8795      1
9213               21       42653636  HGNC:8795      1
9214               21       42653636  HGNC:8795      1
9215               21       42653636  HGNC:8795      1
9216               21       42653636  HGNC:8795      1
9217               21       42653636  HGNC:8795      1
9218               21       42653636  HGNC:8795      1
9219               21       42653636  HGNC:8795      1
9220               21       42653636  HGNC:8795      1
9221               21       42653636  HGNC:8795      1
9222               21       42653636  HGNC:8795      1
9223               21       42653636  HGNC:8795      1
9224               21       42653636  HGNC:8795      1
9225               21       42653636  HGNC:8795      1
9226               21       42653636  HGNC:8795      1
9227               21       42653636  HGNC:8795      1
9228               21       42653636  HGNC:8795      1
9229               21       42653636  HGNC:8795      1
9230               21       42653636  HGNC:8795      1
9231               21       42653636  HGNC:8795      1
9232               21       42653636  HGNC:8795      1
9233               21       42653636  HGNC:8795      1
9234               21       42653636  HGNC:8795      1
9235               21       42653636  HGNC:8795      1
9236               21       42653636  HGNC:8795      1
9237               21       42653636  HGNC:8795      1
9238               21       42653636  HGNC:8795      1
9239               21       42653636  HGNC:8795      1
9240               21       42653636  HGNC:8795      1
9241               21       42653636  HGNC:8795      1
9242               21       42653636  HGNC:8795      1
9243               21       42653636  HGNC:8795      1
9244               21       42653636  HGNC:8795      1
9245               21       42653636  HGNC:8795      1
9246               21       42653636  HGNC:8795      1
9247               21       42653636  HGNC:8795      1
9248               21       42653636  HGNC:8795      1
9249               21       42653636  HGNC:8795      1
9250               21       42653636  HGNC:8795      1
9251               21       42653636  HGNC:8795      1
9252               21       42653636  HGNC:8795      1
9253               21       42653636  HGNC:8795      1
9254               21       42653636  HGNC:8795      1
9255               21       42653636  HGNC:8795      1
9256               21       42653636  HGNC:8795      1
9257               21       42653636  HGNC:8795      1
9258               21       42653636  HGNC:8795      1
9259               21       42653636  HGNC:8795      1
9260               21       42653636  HGNC:8795      1
9261               21       42653636  HGNC:8795      1
9262               21       42653636  HGNC:8795      1
9263               21       42653636  HGNC:8795      1
9264               21       42653636  HGNC:8795      1
9265               21       42653636  HGNC:8795      1
9266               21       42653636  HGNC:8795      1
9267               21       42653636  HGNC:8795      1
9268               21       42653636  HGNC:8795      1
9269               21       42653636  HGNC:8795      1
9270               21       42653636  HGNC:8795      1
9271               21       42653636  HGNC:8795      1
9272               21       42653636  HGNC:8795      1
9273               21       42653636  HGNC:8795      1
9274               21       42653636  HGNC:8795      1
9275               21       42653636  HGNC:8795      1
9276               21       42653636  HGNC:8795      1
9277               21       42653636  HGNC:8795      1
9278               21       42653636  HGNC:8795      1
9279               21       42653636  HGNC:8795      1
9280               21       42653636  HGNC:8795      1
9281               21       42653636  HGNC:8795      1
9282               21       42653636  HGNC:8795      1
9283               21       42653636  HGNC:8795      1
9284               21       42653636  HGNC:8795      1
9285               21       42653636  HGNC:8795      1
9286               21       42653636  HGNC:8795      1
9287               21       42653636  HGNC:8795      1
9288               21       42653636  HGNC:8795      1
9289               21       42653636  HGNC:8795      1
9290               21       42653636  HGNC:8795      1
9291               21       42653636  HGNC:8795      1
9292               21       42653636  HGNC:8795      1
9293               21       42653636  HGNC:8795      1
9294               21       42653636  HGNC:8795      1
9295               21       42653636  HGNC:8795      1
9296               21       42653636  HGNC:8795      1
9297               21       42653636  HGNC:8795      1
9298               21       42653636  HGNC:8795      1
9299               21       42653636  HGNC:8795      1
9300               21       42653636  HGNC:8795      1
9301               21       42653636  HGNC:8795      1
9302               21       42653636  HGNC:8795      1
9303               21       42653636  HGNC:8795      1
9304               21       42653636  HGNC:8795      1
9305               21       42653636  HGNC:8795      1
9306               21       42653636  HGNC:8795      1
9307               21       42653636  HGNC:8795      1
9308               21       42653636  HGNC:8795      1
9309               21       42653636  HGNC:8795      1
9310               21       42653636  HGNC:8795      1
9311               21       42653636  HGNC:8795      1
9312               21       42653636  HGNC:8795      1
9313               21       42653636  HGNC:8795      1
9314               21       42653636  HGNC:8795      1
9315               21       42653636  HGNC:8795      1
9316               21       42653636  HGNC:8795      1
9317               21       42653636  HGNC:8795      1
9318               21       42653636  HGNC:8795      1
9319               21       42653636  HGNC:8795      1
9320               21       42653636  HGNC:8795      1
9321               21       42653636  HGNC:8795      1
9322               21       42653636  HGNC:8795      1
9323               21       42653636  HGNC:8795      1
9324               21       42653636  HGNC:8795      1
9325               21       42653636  HGNC:8795      1
9326               21       42653636  HGNC:8795      1
9327               21       42653636  HGNC:8795      1
9328               21       42653636  HGNC:8795      1
9329               21       42653636  HGNC:8795      1
9330               21       42653636  HGNC:8795      1
9331               21       42653636  HGNC:8795      1
9332               21       42653636  HGNC:8795      1
9333               21       42653636  HGNC:8795      1
9334               21       42653636  HGNC:8795      1
9335               21       42653636  HGNC:8795      1
9336               21       42653636  HGNC:8795      1
9337               21       42653636  HGNC:8795      1
9338               21       42653636  HGNC:8795      1
9339               21       42653636  HGNC:8795      1
9340               21       42653636  HGNC:8795      1
9341               21       42653636  HGNC:8795      1
9342               21       42653636  HGNC:8795      1
9343               21       42653636  HGNC:8795      1
9344               21       42653636  HGNC:8795      1
9345               21       42653636  HGNC:8795      1
9346               21       42653636  HGNC:8795      1
9347               21       42653636  HGNC:8795      1
9348               21       42653636  HGNC:8795      1
9349               21       42653636  HGNC:8795      1
9350               21       42653636  HGNC:8795      1
9351               21       42653636  HGNC:8795      1
9352               21       42653636  HGNC:8795      1
9353               21       42653636  HGNC:8795      1
9354               21       42653636  HGNC:8795      1
9355               21       42653636  HGNC:8795      1
9356               21       42653636  HGNC:8795      1
9357               21       42653636  HGNC:8795      1
9358               21       42653636  HGNC:8795      1
9359               21       42653636  HGNC:8795      1
9360               21       42653636  HGNC:8795      1
9361               21       42653636  HGNC:8795      1
9362               21       42653636  HGNC:8795      1
9363               21       42653636  HGNC:8795      1
9364               21       42653636  HGNC:8795      1
9365               21       42653636  HGNC:8795      1
9366               21       42653636  HGNC:8795      1
9367               21       42653636  HGNC:8795      1
9368               21       42653636  HGNC:8795      1
9369               21       42653636  HGNC:8795      1
9370               21       42653636  HGNC:8795      1
9371               21       42653636  HGNC:8795      1
9372               21       42653636  HGNC:8795      1
9373               21       42653636  HGNC:8795      1
9374               21       42653636  HGNC:8795      1
9375               21       42653636  HGNC:8795      1
9376               21       42653636  HGNC:8795      1
9377               21       42653636  HGNC:8795      1
9378               21       42653636  HGNC:8795      1
9379               21       42653636  HGNC:8795      1
9380               21       42653636  HGNC:8795      1
9381               21       42653636  HGNC:8795      1
9382               21       42653636  HGNC:8795      1
9383               21       42653636  HGNC:8795      1
9384               21       42653636  HGNC:8795      1
9385               21       42653636  HGNC:8795      1
9386               21       42653636  HGNC:8795      1
9387               21       42653636  HGNC:8795      1
9388               21       42653636  HGNC:8795      1
9389               21       42653636  HGNC:8795      1
9390               21       42653636  HGNC:8795      1
9391               21       42653636  HGNC:8795      1
9392               21       42653636  HGNC:8795      1
9393               21       42653636  HGNC:8795      1
9394               21       42653636  HGNC:8795      1
9395               21       42653636  HGNC:8795      1
9396               21       42653636  HGNC:8795      1
9397               21       42653636  HGNC:8795      1
9398               21       42653636  HGNC:8795      1
9399               21       42653636  HGNC:8795      1
9400               21       42653636  HGNC:8795      1
9401               21       42653636  HGNC:8795      1
9402               21       42653636  HGNC:8795      1
9403               21       42653636  HGNC:8795      1
9404               21       42653636  HGNC:8795      1
9405               21       42653636  HGNC:8795      1
9406               21       42653636  HGNC:8795      1
9407               21       42653636  HGNC:8795      1
9408               21       42653636  HGNC:8795      1
9409               21       42653636  HGNC:8795      1
9410               21       42653636  HGNC:8795      1
9411               21       42653636  HGNC:8795      1
9412               21       42653636  HGNC:8795      1
9413               21       42653636  HGNC:8795      1
9414               21       42653636  HGNC:8795      1
9415               21       42653636  HGNC:8795      1
9416               21       42653636  HGNC:8795      1
9417               21       42653636  HGNC:8795      1
9418               21       42653636  HGNC:8795      1
9419               21       42653636  HGNC:8795      1
9420               21       42653636  HGNC:8795      1
9421               21       42653636  HGNC:8795      1
9422               21       42653636  HGNC:8795      1
9423               21       42653636  HGNC:8795      1
9424               21       42653636  HGNC:8795      1
9425               21       42653636  HGNC:8795      1
9426               21       42653636  HGNC:8795      1
9427               21       42653636  HGNC:8795      1
9428               21       42653636  HGNC:8795      1
9429               21       42653636  HGNC:8795      1
9430               21       42653636  HGNC:8795      1
9431               21       42653636  HGNC:8795      1
9432               21       42653636  HGNC:8795      1
9433               21       42653636  HGNC:8795      1
9434               21       42653636  HGNC:8795      1
9435               21       42653636  HGNC:8795      1
9436               21       42653636  HGNC:8795      1
9437               21       42653636  HGNC:8795      1
9438               21       42653636  HGNC:8795      1
9439               21       42653636  HGNC:8795      1
9440               21       42653636  HGNC:8795      1
9441               21       42653636  HGNC:8795      1
9442               21       42653636  HGNC:8795      1
9443               21       42653636  HGNC:8795      1
9444               21       42653636  HGNC:8795      1
9445               21       42653636  HGNC:8795      1
9446               21       42653636  HGNC:8795      1
9447               21       42653636  HGNC:8795      1
9448               21       42653636  HGNC:8795      1
9449               21       42653636  HGNC:8795      1
9450               21       42653636  HGNC:8795      1
9451               21       42653636  HGNC:8795      1
9452               21       42653636  HGNC:8795      1
9453               21       42653636  HGNC:8795      1
9454               21       42653636  HGNC:8795      1
9455               21       42653636  HGNC:8795      1
9456               21       42653636  HGNC:8795      1
9457               21       42653636  HGNC:8795      1
9458               21       42653636  HGNC:8795      1
9459               21       42653636  HGNC:8795      1
9460               21       42653636  HGNC:8795      1
9461               21       42653636  HGNC:8795      1
9462               21       42653636  HGNC:8795      1
9463               21       42653636  HGNC:8795      1
9464               21       42653636  HGNC:8795      1
9465               21       42653636  HGNC:8795      1
9466               21       42653636  HGNC:8795      1
9467               21       42653636  HGNC:8795      1
9468               21       42653636  HGNC:8795      1
9469               21       42653636  HGNC:8795      1
9470               21       42653636  HGNC:8795      1
9471               21       42653636  HGNC:8795      1
9472               21       42653636  HGNC:8795      1
9473               21       42653636  HGNC:8795      1
9474               21       42653636  HGNC:8795      1
9475               21       42653636  HGNC:8795      1
9476               21       42653636  HGNC:8795      1
9477               21       42653636  HGNC:8795      1
9478               21       42653636  HGNC:8795      1
9479               21       42653636  HGNC:8795      1
9480               21       42653636  HGNC:8795      1
9481               21       42653636  HGNC:8795      1
9482               21       42653636  HGNC:8795      1
9483               21       42653636  HGNC:8795      1
9484               21       42653636  HGNC:8795      1
9485               21       42653636  HGNC:8795      1
9486               21       42653636  HGNC:8795      1
9487               21       42653636  HGNC:8795      1
9488               21       42653636  HGNC:8795      1
9489               21       42653636  HGNC:8795      1
9490               21       42653636  HGNC:8795      1
9491               21       42653636  HGNC:8795      1
9492               21       42653636  HGNC:8795      1
9493               21       42653636  HGNC:8795      1
9494               21       42653636  HGNC:8795      1
9495               21       42653636  HGNC:8795      1
9496               21       42653636  HGNC:8795      1
9497               21       42653636  HGNC:8795      1
9498               21       42653636  HGNC:8795      1
9499               21       42653636  HGNC:8795      1
9500               21       42653636  HGNC:8795      1
9501               21       42653636  HGNC:8795      1
9502               21       42653636  HGNC:8795      1
9503               21       42653636  HGNC:8795      1
9504               21       42653636  HGNC:8795      1
9505               21       42653636  HGNC:8795      1
9506               21       42653636  HGNC:8795      1
9507               21       42653636  HGNC:8795      1
9508               21       42653636  HGNC:8795      1
9509               21       42653636  HGNC:8795      1
9510               21       42653636  HGNC:8795      1
9511               21       42653636  HGNC:8795      1
9512               21       42653636  HGNC:8795      1
9513               21       42653636  HGNC:8795      1
9514               21       42653636  HGNC:8795      1
9515               21       42653636  HGNC:8795      1
9516               21       42653636  HGNC:8795      1
9517               21       42653636  HGNC:8795      1
9518               21       42653636  HGNC:8795      1
9519               21       42653636  HGNC:8795      1
9520               21       42653636  HGNC:8795      1
9521               21       42653636  HGNC:8795      1
9522               21       42653636  HGNC:8795      1
9523               21       42653636  HGNC:8795      1
9524               21       42653636  HGNC:8795      1
9525               21       42653636  HGNC:8795      1
9526               21       42653636  HGNC:8795      1
9527               21       42653636  HGNC:8795      1
9528               21       42653636  HGNC:8795      1
9529               21       42653636  HGNC:8795      1
9530               21       42653636  HGNC:8795      1
9531               21       42653636  HGNC:8795      1
9532               21       42653636  HGNC:8795      1
9533               21       42653636  HGNC:8795      1
9534               21       42653636  HGNC:8795      1
9535               21       42653636  HGNC:8795      1
9536               21       42653636  HGNC:8795      1
9537               21       42653636  HGNC:8795      1
9538               21       42653636  HGNC:8795      1
9539               21       42653636  HGNC:8795      1
9540               21       42653636  HGNC:8795      1
9541               21       42653636  HGNC:8795      1
9542               21       42653636  HGNC:8795      1
9543               21       42653636  HGNC:8795      1
9544               21       42653636  HGNC:8795      1
9545               21       42653636  HGNC:8795      1
9546               21       42653636  HGNC:8795      1
9547               21       42653636  HGNC:8795      1
9548               21       42653636  HGNC:8795      1
9549               21       42653636  HGNC:8795      1
9550               21       42653636  HGNC:8795      1
9551               21       42653636  HGNC:8795      1
9552               21       42653636  HGNC:8795      1
9553               21       42653636  HGNC:8795      1
9554               21       42653636  HGNC:8795      1
9555               21       42653636  HGNC:8795      1
9556               21       42653636  HGNC:8795      1
9557               21       42653636  HGNC:8795      1
9558               21       42653636  HGNC:8795      1
9559               21       42653636  HGNC:8795      1
9560               21       42653636  HGNC:8795      1
9561               21       42653636  HGNC:8795      1
9562               21       42653636  HGNC:8795      1
9563               21       43719094  HGNC:8819      1
9564               21       43719094  HGNC:8819      1
9565               21       43719094  HGNC:8819      1
9566               21       43719094  HGNC:8819      1
9567               21       43719094  HGNC:8819      1
9568               21       43719094  HGNC:8819      1
9569               21       43719094  HGNC:8819      1
9570               21       43719094  HGNC:8819      1
9571               21       43719094  HGNC:8819      1
9572               21       43719094  HGNC:8819      1
9573               21       43719094  HGNC:8819      1
9574               21       43719094  HGNC:8819      1
9575               21       43719094  HGNC:8819      1
9576               21       43719094  HGNC:8819      1
9577               21       43719094  HGNC:8819      1
9578               21       43719094  HGNC:8819      1
9579               21       43719094  HGNC:8819      1
9580               21       43719094  HGNC:8819      1
9581               21       43719094  HGNC:8819      1
9582               21       43719094  HGNC:8819      1
9583               21       43719094  HGNC:8819      1
9584               21       43719094  HGNC:8819      1
9585               21       43719094  HGNC:8819      1
9586               21       43719094  HGNC:8819      1
9587               21       43719094  HGNC:8819      1
9588               21       43719094  HGNC:8819      1
9589               21       43719094  HGNC:8819      1
9590               21       43719094  HGNC:8819      1
9591               21       43719094  HGNC:8819      1
9592               21       43719094  HGNC:8819      1
9593               21       43719094  HGNC:8819      1
9594               21       43719094  HGNC:8819      1
9595               21       43719094  HGNC:8819      1
9596               21       43719094  HGNC:8819      1
9597               21       43719094  HGNC:8819      1
9598               21       43719094  HGNC:8819      1
9599               21       43719094  HGNC:8819      1
9600               21       43719094  HGNC:8819      1
9601               21       43719094  HGNC:8819      1
9602               21       43719094  HGNC:8819      1
9603               21       43719094  HGNC:8819      1
9604               21       43719094  HGNC:8819      1
9605               21       43719094  HGNC:8819      1
9606               21       43719094  HGNC:8819      1
9607               21       43719094  HGNC:8819      1
9608               21       43719094  HGNC:8819      1
9609               21       43719094  HGNC:8819      1
9610               21       43719094  HGNC:8819      1
9611               21       43719094  HGNC:8819      1
9612               21       43719094  HGNC:8819      1
9613               21       43719094  HGNC:8819      1
9614               21       43719094  HGNC:8819      1
9615               21       43719094  HGNC:8819      1
9616               21       43719094  HGNC:8819      1
9617               21       43719094  HGNC:8819      1
9618               21       43719094  HGNC:8819      1
9619               21       43719094  HGNC:8819      1
9620               21       43719094  HGNC:8819      1
9621               21       43719094  HGNC:8819      1
9622               21       43719094  HGNC:8819      1
9623               21       43719094  HGNC:8819      1
9624               21       43719094  HGNC:8819      1
9625               21       43719094  HGNC:8819      1
9626               21       43719094  HGNC:8819      1
9627               21       43719094  HGNC:8819      1
9628               21       43719094  HGNC:8819      1
9629               21       43719094  HGNC:8819      1
9630               21       43719094  HGNC:8819      1
9631               21       43719094  HGNC:8819      1
9632               21       43719094  HGNC:8819      1
9633               21       43719094  HGNC:8819      1
9634               21       43719094  HGNC:8819      1
9635               21       43719094  HGNC:8819      1
9636               21       43719094  HGNC:8819      1
9637               21       43719094  HGNC:8819      1
9638               21       43719094  HGNC:8819      1
9639               21       43719094  HGNC:8819      1
9640               21       43719094  HGNC:8819      1
9641               21       43719094  HGNC:8819      1
9642               21       43719094  HGNC:8819      1
9643               21       43719094  HGNC:8819      1
9644               21       43719094  HGNC:8819      1
9645               21       43719094  HGNC:8819      1
9646               21       43719094  HGNC:8819      1
9647               21       43719094  HGNC:8819      1
9648               21       43719094  HGNC:8819      1
9649               21       43719094  HGNC:8819      1
9650               21       43719094  HGNC:8819      1
9651               21       43719094  HGNC:8819      1
9652               21       43719094  HGNC:8819      1
9653               21       43719094  HGNC:8819      1
9654               21       43719094  HGNC:8819      1
9655               21       43719094  HGNC:8819      1
9656               21       43719094  HGNC:8819      1
9657               21       43719094  HGNC:8819      1
9658               21       43719094  HGNC:8819      1
9659               21       43719094  HGNC:8819      1
9660               21       43719094  HGNC:8819      1
9661               21       43719094  HGNC:8819      1
9662               21       43719094  HGNC:8819      1
9663               21       43719094  HGNC:8819      1
9664               21       43719094  HGNC:8819      1
9665               21       43719094  HGNC:8819      1
9666               21       43719094  HGNC:8819      1
9667               21       43719094  HGNC:8819      1
9668               21       43719094  HGNC:8819      1
9669               21       43719094  HGNC:8819      1
9670               21       43719094  HGNC:8819      1
9671               21       43719094  HGNC:8819      1
9672               21       43719094  HGNC:8819      1
9673               21       43719094  HGNC:8819      1
9674               21       43719094  HGNC:8819      1
9675               21       43719094  HGNC:8819      1
9676               21       43719094  HGNC:8819      1
9677               21       43719094  HGNC:8819      1
9678               21       43719094  HGNC:8819      1
9679               21       43719094  HGNC:8819      1
9680               21       43719094  HGNC:8819      1
9681               21       43719094  HGNC:8819      1
9682               21       43719094  HGNC:8819      1
9683               21       43719094  HGNC:8819      1
9684               21       43719094  HGNC:8819      1
9685               21       44300051  HGNC:8876      1
9686               21       44300051  HGNC:8876      1
9687               21       44300051  HGNC:8876      1
9688               21       44300051  HGNC:8876      1
9689               21       44300051  HGNC:8876      1
9690               21       44300051  HGNC:8876      1
9691               21       44300051  HGNC:8876      1
9692               21       44300051  HGNC:8876      1
9693               21       44300051  HGNC:8876      1
9694               21       44300051  HGNC:8876      1
9695               21       44300051  HGNC:8876      1
9696               21       44300051  HGNC:8876      1
9697               21       44300051  HGNC:8876      1
9698               21       44300051  HGNC:8876      1
9699               21       44300051  HGNC:8876      1
9700               21       44300051  HGNC:8876      1
9701               21       44300051  HGNC:8876      1
9702               21       44300051  HGNC:8876      1
9703               21       44300051  HGNC:8876      1
9704               21       44300051  HGNC:8876      1
9705               21       44300051  HGNC:8876      1
9706               21       44300051  HGNC:8876      1
9707               21       44300051  HGNC:8876      1
9708               21       44300051  HGNC:8876      1
9709               21       44300051  HGNC:8876      1
9710               21       44300051  HGNC:8876      1
9711               21       44300051  HGNC:8876      1
9712               21       44300051  HGNC:8876      1
9713               21       44300051  HGNC:8876      1
9714               21       44300051  HGNC:8876      1
9715               21       44300051  HGNC:8876      1
9716               21       44300051  HGNC:8876      1
9717               21       44300051  HGNC:8876      1
9718               21       44300051  HGNC:8876      1
9719               21       44300051  HGNC:8876      1
9720               21       44300051  HGNC:8876      1
9721               21       44300051  HGNC:8876      1
9722               21       44300051  HGNC:8876      1
9723               21       44300051  HGNC:8876      1
9724               21       44300051  HGNC:8876      1
9725               21       44300051  HGNC:8876      1
9726               21       44300051  HGNC:8876      1
9727               21       44300051  HGNC:8876      1
9728               21       44300051  HGNC:8876      1
9729               21       44300051  HGNC:8876      1
9730               21       44300051  HGNC:8876      1
9731               21       44300051  HGNC:8876      1
9732               21       44300051  HGNC:8876      1
9733               21       44300051  HGNC:8876      1
9734               21       44300051  HGNC:8876      1
9735               21       44300051  HGNC:8876      1
9736               21       44300051  HGNC:8876      1
9737               21       44300051  HGNC:8876      1
9738               21       44300051  HGNC:8876      1
9739               21       44300051  HGNC:8876      1
9740               21       44300051  HGNC:8876      1
9741               21       44300051  HGNC:8876      1
9742               21       44300051  HGNC:8876      1
9743               21       44300051  HGNC:8876      1
9744               21       44300051  HGNC:8876      1
9745               21       44300051  HGNC:8876      1
9746               21       44300051  HGNC:8876      1
9747               21       44300051  HGNC:8876      1
9748               21       44300051  HGNC:8876      1
9749               21       44300051  HGNC:8876      1
9750               21       44300051  HGNC:8876      1
9751               21       44300051  HGNC:8876      1
9752               21       44300051  HGNC:8876      1
9753               21       44300051  HGNC:8876      1
9754               21       44300051  HGNC:8876      1
9755               21       44300051  HGNC:8876      1
9756               21       44300051  HGNC:8876      1
9757               21       44300051  HGNC:8876      1
9758               21       44300051  HGNC:8876      1
9759               21       44300051  HGNC:8876      1
9760               21       44300051  HGNC:8876      1
9761               21       44300051  HGNC:8876      1
9762               21       44300051  HGNC:8876      1
9763               21       44300051  HGNC:8876      1
9764               21       44300051  HGNC:8876      1
9765               21       44300051  HGNC:8876      1
9766               21       44300051  HGNC:8876      1
9767               21       44300051  HGNC:8876      1
9768               21       44300051  HGNC:8876      1
9769               21       44300051  HGNC:8876      1
9770               21       44300051  HGNC:8876      1
9771               21       44300051  HGNC:8876      1
9772               21       44300051  HGNC:8876      1
9773               21       44300051  HGNC:8876      1
9774               21       44300051  HGNC:8876      1
9775               21       44300051  HGNC:8876      1
9776               21       44300051  HGNC:8876      1
9777               21       44300051  HGNC:8876      1
9778               21       44300051  HGNC:8876      1
9779               21       44300051  HGNC:8876      1
9780               21       44300051  HGNC:8876      1
9781               21       44300051  HGNC:8876      1
9782               21       44300051  HGNC:8876      1
9783               21       44300051  HGNC:8876      1
9784               21       44300051  HGNC:8876      1
9785               21       44300051  HGNC:8876      1
9786               21       44300051  HGNC:8876      1
9787               21       44300051  HGNC:8876      1
9788               21       44300051  HGNC:8876      1
9789               21       44300051  HGNC:8876      1
9790               21       44300051  HGNC:8876      1
9791               21       44300051  HGNC:8876      1
9792               21       44300051  HGNC:8876      1
9793               21       44300051  HGNC:8876      1
9794               21       44300051  HGNC:8876      1
9795               21       44300051  HGNC:8876      1
9796               21       44300051  HGNC:8876      1
9797               21       44300051  HGNC:8876      1
9798               21       44300051  HGNC:8876      1
9799               21       44300051  HGNC:8876      1
9800               21       44300051  HGNC:8876      1
9801               21       44300051  HGNC:8876      1
9802               21       44300051  HGNC:8876      1
9803               21       44300051  HGNC:8876      1
9804               21       44300051  HGNC:8876      1
9805               21       44300051  HGNC:8876      1
9806               21       44300051  HGNC:8876      1
9807               21       44300051  HGNC:8876      1
9808               21       44300051  HGNC:8876      1
9809               21       44300051  HGNC:8876      1
9810               21       44300051  HGNC:8876      1
9811               21       44300051  HGNC:8876      1
9812               21       44300051  HGNC:8876      1
9813               21       44300051  HGNC:8876      1
9814               21       44300051  HGNC:8876      1
9815               21       44300051  HGNC:8876      1
9816               21       44300051  HGNC:8876      1
9817               21       44300051  HGNC:8876      1
9818               21       44300051  HGNC:8876      1
9819               21       44300051  HGNC:8876      1
9820               21       44300051  HGNC:8876      1
9821               21       44300051  HGNC:8876      1
9822               21       44999208 HGNC:19725     -1
9823               21       44999208 HGNC:19725     -1
9824               21       37059170  HGNC:3046     -1
9825               21       37059170  HGNC:3046     -1
9826               21       37059170  HGNC:3046     -1
9827               21       37059170  HGNC:3046     -1
9828               21       37059170  HGNC:3046     -1
9829               21       37059170  HGNC:3046     -1
9830               21       37059170  HGNC:3046     -1
9831               21       37059170  HGNC:3046     -1
9832               21       37059170  HGNC:3046     -1
9833               21       37059170  HGNC:3046     -1
9834               21       37059170  HGNC:3046     -1
9835               21       37059170  HGNC:3046     -1
9836               21       37059170  HGNC:3046     -1
9837               21       37059170  HGNC:3046     -1
9838               21       37059170  HGNC:3046     -1
9839               21       37059170  HGNC:3046     -1
9840               21       37059170  HGNC:3046     -1
9841               21       37059170  HGNC:3046     -1
9842               21       37059170  HGNC:3046     -1
9843               21       37059170  HGNC:3046     -1
9844               21       37059170  HGNC:3046     -1
9845               21       37059170  HGNC:3046     -1
9846               21       37059170  HGNC:3046     -1
9847               21       37059170  HGNC:3046     -1
9848               21       37059170  HGNC:3046     -1
9849               21       37059170  HGNC:3046     -1
9850               21       37059170  HGNC:3046     -1
9851               21       37059170  HGNC:3046     -1
9852               21       37059170  HGNC:3046     -1
9853               21       37059170  HGNC:3046     -1
9854               21       37059170  HGNC:3046     -1
9855               21       37059170  HGNC:3046     -1
9856               21       37059170  HGNC:3046     -1
9857               21       42974510  HGNC:9022      1
9858               21       42974510  HGNC:9022      1
9859               21       42974510  HGNC:9022      1
9860               21       42974510  HGNC:9022      1
9861               21       42974510  HGNC:9022      1
9862               21       42974510  HGNC:9022      1
9863               21       42974510  HGNC:9022      1
9864               21       42974510  HGNC:9022      1
9865               21       42974510  HGNC:9022      1
9866               21       42974510  HGNC:9022      1
9867               21       42974510  HGNC:9022      1
9868               21       42974510  HGNC:9022      1
9869               21       42974510  HGNC:9022      1
9870               21       42974510  HGNC:9022      1
9871               21       42974510  HGNC:9022      1
9872               21       42974510  HGNC:9022      1
9873               21       42974510  HGNC:9022      1
9874               21       42974510  HGNC:9022      1
9875               21       42974510  HGNC:9022      1
9876               21       42974510  HGNC:9022      1
9877               21       42974510  HGNC:9022      1
9878               21       42974510  HGNC:9022      1
9879               21       42974510  HGNC:9022      1
9880               21       42974510  HGNC:9022      1
9881               21       42974510  HGNC:9022      1
9882               21       42974510  HGNC:9022      1
9883               21       42974510  HGNC:9022      1
9884               21       42974510  HGNC:9022      1
9885               21       42974510  HGNC:9022      1
9886               21       42974510  HGNC:9022      1
9887               21       42974510  HGNC:9022      1
9888               21       42974510  HGNC:9022      1
9889               21       42974510  HGNC:9022      1
9890               21       42974510  HGNC:9022      1
9891               21       42974510  HGNC:9022      1
9892               21       42974510  HGNC:9022      1
9893               21       42974510  HGNC:9022      1
9894               21       42974510  HGNC:9022      1
9895               21       42974510  HGNC:9022      1
9896               21       42974510  HGNC:9022      1
9897               21       42974510  HGNC:9022      1
9898               21       42974510  HGNC:9022      1
9899               21       42974510  HGNC:9022      1
9900               21       42974510  HGNC:9022      1
9901               21       42974510  HGNC:9022      1
9902               21       42974510  HGNC:9022      1
9903               21       42974510  HGNC:9022      1
9904               21       42974510  HGNC:9022      1
9905               21       42974510  HGNC:9022      1
9906               21       42974510  HGNC:9022      1
9907               21       42974510  HGNC:9022      1
9908               21       42974510  HGNC:9022      1
9909               21       42974510  HGNC:9022      1
9910               21       42974510  HGNC:9022      1
9911               21       42974510  HGNC:9022      1
9912               21       42974510  HGNC:9022      1
9913               21       42974510  HGNC:9022      1
9914               21       42974510  HGNC:9022      1
9915               21       42974510  HGNC:9022      1
9916               21       41175231 HGNC:14616     -1
9917               21       41175231 HGNC:14616     -1
9918               21       45263928 HGNC:14683     -1
9919               21       45263928 HGNC:14683     -1
9920               21       45263928 HGNC:14683     -1
9921               21       45263928 HGNC:14683     -1
9922               21       45263928 HGNC:14683     -1
9923               21       45263928 HGNC:14683     -1
9924               21       45263928 HGNC:14683     -1
9925               21       45263928 HGNC:14683     -1
9926               21       45263928 HGNC:14683     -1
9927               21       45263928 HGNC:14683     -1
9928               21       45263928 HGNC:14683     -1
9929               21       45263928 HGNC:14683     -1
9930               21       45263928 HGNC:14683     -1
9931               21       45263928 HGNC:14683     -1
9932               21       45263928 HGNC:14683     -1
9933               21       45263928 HGNC:14683     -1
9934               21       45263928 HGNC:14683     -1
9935               21       45263928 HGNC:14683     -1
9936               21       45263928 HGNC:14683     -1
9937               21       45263928 HGNC:14683     -1
9938               21       45263928 HGNC:14683     -1
9939               21       45263928 HGNC:14683     -1
9940               21       45263928 HGNC:14683     -1
9941               21       45263928 HGNC:14683     -1
9942               21       45263928 HGNC:14683     -1
9943               21       45263928 HGNC:14683     -1
9944               21       45263928 HGNC:14683     -1
9945               21       45263928 HGNC:14683     -1
9946               21       45263928 HGNC:14683     -1
9947               21       45263928 HGNC:14683     -1
9948               21       45263928 HGNC:14683     -1
9949               21       45263928 HGNC:14683     -1
9950               21       45263928 HGNC:14683     -1
9951               21       45263928 HGNC:14683     -1
9952               21       45263928 HGNC:14683     -1
9953               21       45263928 HGNC:14683     -1
9954               21       45263928 HGNC:14683     -1
9955               21       45263928 HGNC:14683     -1
9956               21       45263928 HGNC:14683     -1
9957               21       45263928 HGNC:14683     -1
9958               21       45263928 HGNC:14683     -1
9959               21       45263928 HGNC:14683     -1
9960               21       45263928 HGNC:14683     -1
9961               21       45263928 HGNC:14683     -1
9962               21       45263928 HGNC:14683     -1
9963               21       45263928 HGNC:14683     -1
9964               21       45263928 HGNC:14683     -1
9965               21       45263928 HGNC:14683     -1
9966               21       45263928 HGNC:14683     -1
9967               21       45263928 HGNC:14683     -1
9968               21       45263928 HGNC:14683     -1
9969               21       45263928 HGNC:14683     -1
9970               21       45263928 HGNC:14683     -1
9971               21       45263928 HGNC:14683     -1
9972               21       45263928 HGNC:14683     -1
9973               21       45263928 HGNC:14683     -1
9974               21       45263928 HGNC:14683     -1
9975               21       45263928 HGNC:14683     -1
9976               21       45263928 HGNC:14683     -1
9977               21       45263928 HGNC:14683     -1
9978               21       45263928 HGNC:14683     -1
9979               21       45263928 HGNC:14683     -1
9980               21       45263928 HGNC:14683     -1
9981               21       45263928 HGNC:14683     -1
9982               21       45263928 HGNC:14683     -1
9983               21       45263928 HGNC:14683     -1
9984               21       45263928 HGNC:14683     -1
9985               21       45263928 HGNC:14683     -1
9986               21       45263928 HGNC:14683     -1
9987               21       45263928 HGNC:14683     -1
9988               21       45263928 HGNC:14683     -1
9989               21       45263928 HGNC:14683     -1
9990               21       45263928 HGNC:14683     -1
9991               21       45263928 HGNC:14683     -1
9992               21       45263928 HGNC:14683     -1
9993               21       45263928 HGNC:14683     -1
9994               21       45263928 HGNC:14683     -1
9995               21       45263928 HGNC:14683     -1
9996               21       45263928 HGNC:14683     -1
9997               21       45263928 HGNC:14683     -1
9998               21       45263928 HGNC:14683     -1
9999               21       45263928 HGNC:14683     -1
 [ reached getOption("max.print") -- omitted 3979 rows ]

arrange()

desc to reverse sort columns

Find the last gene on chromosome 21.

gene_by_exon %>%
  arrange(desc(end_position)) %>%
  dplyr::select(end_position, everything()) # way to reorder arr_delay 1st column
      end_position ensembl_gene_id ensembl_transcript_id ensembl_exon_id
1         46691226 ENSG00000212932       ENST00000427757 ENSE00001697032
2         46665124 ENSG00000160310       ENST00000355680 ENSE00001828011
3         46665124 ENSG00000160310       ENST00000355680 ENSE00001414070
4         46665124 ENSG00000160310       ENST00000355680 ENSE00001336411
5         46665124 ENSG00000160310       ENST00000355680 ENSE00003542955
6         46665124 ENSG00000160310       ENST00000355680 ENSE00003472918
7         46665124 ENSG00000160310       ENST00000355680 ENSE00003595101
8         46665124 ENSG00000160310       ENST00000355680 ENSE00003480025
9         46665124 ENSG00000160310       ENST00000355680 ENSE00003541221
10        46665124 ENSG00000160310       ENST00000355680 ENSE00001051359
11        46665124 ENSG00000160310       ENST00000355680 ENSE00001299450
12        46665124 ENSG00000160310       ENST00000355680 ENSE00003636111
13        46665124 ENSG00000160310       ENST00000355680 ENSE00003692544
14        46665124 ENSG00000160310       ENST00000397638 ENSE00001336411
15        46665124 ENSG00000160310       ENST00000397638 ENSE00003542955
16        46665124 ENSG00000160310       ENST00000397638 ENSE00003472918
17        46665124 ENSG00000160310       ENST00000397638 ENSE00003595101
18        46665124 ENSG00000160310       ENST00000397638 ENSE00003480025
19        46665124 ENSG00000160310       ENST00000397638 ENSE00003541221
20        46665124 ENSG00000160310       ENST00000397638 ENSE00001051359
21        46665124 ENSG00000160310       ENST00000397638 ENSE00001299450
22        46665124 ENSG00000160310       ENST00000397638 ENSE00003636111
23        46665124 ENSG00000160310       ENST00000397638 ENSE00003692544
24        46665124 ENSG00000160310       ENST00000397638 ENSE00001529496
25        46665124 ENSG00000160310       ENST00000291705 ENSE00001336411
26        46665124 ENSG00000160310       ENST00000291705 ENSE00003542955
27        46665124 ENSG00000160310       ENST00000291705 ENSE00003472918
28        46665124 ENSG00000160310       ENST00000291705 ENSE00003595101
29        46665124 ENSG00000160310       ENST00000291705 ENSE00003480025
30        46665124 ENSG00000160310       ENST00000291705 ENSE00003806566
31        46665124 ENSG00000160310       ENST00000291705 ENSE00003601901
32        46665124 ENSG00000160310       ENST00000397637 ENSE00001336411
33        46665124 ENSG00000160310       ENST00000397637 ENSE00003542955
34        46665124 ENSG00000160310       ENST00000397637 ENSE00003472918
35        46665124 ENSG00000160310       ENST00000397637 ENSE00003595101
36        46665124 ENSG00000160310       ENST00000397637 ENSE00003480025
37        46665124 ENSG00000160310       ENST00000397637 ENSE00003541221
38        46665124 ENSG00000160310       ENST00000397637 ENSE00001051359
39        46665124 ENSG00000160310       ENST00000397637 ENSE00001299450
40        46665124 ENSG00000160310       ENST00000397637 ENSE00003636111
41        46665124 ENSG00000160310       ENST00000397637 ENSE00003692544
42        46665124 ENSG00000160310       ENST00000397637 ENSE00001529485
43        46665124 ENSG00000160310       ENST00000334494 ENSE00001336411
44        46665124 ENSG00000160310       ENST00000334494 ENSE00003542955
45        46665124 ENSG00000160310       ENST00000334494 ENSE00003472918
46        46665124 ENSG00000160310       ENST00000334494 ENSE00003595101
47        46665124 ENSG00000160310       ENST00000334494 ENSE00003480025
48        46665124 ENSG00000160310       ENST00000334494 ENSE00001416958
49        46665124 ENSG00000160310       ENST00000334494 ENSE00001336312
50        46665124 ENSG00000160310       ENST00000397628 ENSE00001336411
51        46665124 ENSG00000160310       ENST00000397628 ENSE00003542955
52        46665124 ENSG00000160310       ENST00000397628 ENSE00003472918
53        46665124 ENSG00000160310       ENST00000397628 ENSE00003595101
54        46665124 ENSG00000160310       ENST00000397628 ENSE00001529463
55        46665124 ENSG00000160310       ENST00000397628 ENSE00001529458
56        46665124 ENSG00000160310       ENST00000440086 ENSE00001336411
57        46665124 ENSG00000160310       ENST00000440086 ENSE00003542955
58        46665124 ENSG00000160310       ENST00000440086 ENSE00003472918
59        46665124 ENSG00000160310       ENST00000440086 ENSE00003595101
60        46665124 ENSG00000160310       ENST00000440086 ENSE00003480025
61        46665124 ENSG00000160310       ENST00000440086 ENSE00001299450
62        46665124 ENSG00000160310       ENST00000440086 ENSE00003636111
63        46665124 ENSG00000160310       ENST00000440086 ENSE00001613118
64        46665124 ENSG00000160310       ENST00000440086 ENSE00001728083
65        46665124 ENSG00000160310       ENST00000482508 ENSE00001815286
66        46665124 ENSG00000160310       ENST00000482508 ENSE00003615399
67        46665124 ENSG00000160310       ENST00000482508 ENSE00003635924
68        46665124 ENSG00000160310       ENST00000482508 ENSE00003574916
69        46665124 ENSG00000160310       ENST00000482508 ENSE00003689473
70        46665124 ENSG00000160310       ENST00000482508 ENSE00001867264
71        46665124 ENSG00000160310       ENST00000481861 ENSE00003615399
72        46665124 ENSG00000160310       ENST00000481861 ENSE00003635924
73        46665124 ENSG00000160310       ENST00000481861 ENSE00003574916
74        46665124 ENSG00000160310       ENST00000481861 ENSE00003636493
75        46665124 ENSG00000160310       ENST00000481861 ENSE00001937238
76        46665124 ENSG00000160310       ENST00000455177 ENSE00003595101
77        46665124 ENSG00000160310       ENST00000455177 ENSE00003480025
78        46665124 ENSG00000160310       ENST00000455177 ENSE00001730909
79        46665124 ENSG00000160310       ENST00000455177 ENSE00001780117
80        46665124 ENSG00000160310       ENST00000491389 ENSE00001929120
81        46665124 ENSG00000160310       ENST00000491389 ENSE00001829392
82        46665124 ENSG00000160310       ENST00000498151 ENSE00001939336
83        46665124 ENSG00000160310       ENST00000498151 ENSE00001842516
84        46665124 ENSG00000160310       ENST00000486520 ENSE00001923012
85        46665124 ENSG00000160310       ENST00000486520 ENSE00001898206
86        46665124 ENSG00000160310       ENST00000486520 ENSE00003480469
87        46665124 ENSG00000160310       ENST00000486520 ENSE00003500589
88        46665124 ENSG00000160310       ENST00000451211 ENSE00001336411
89        46665124 ENSG00000160310       ENST00000451211 ENSE00003542955
90        46665124 ENSG00000160310       ENST00000451211 ENSE00003472918
91        46665124 ENSG00000160310       ENST00000451211 ENSE00003595101
92        46665124 ENSG00000160310       ENST00000451211 ENSE00003480025
93        46665124 ENSG00000160310       ENST00000451211 ENSE00003541221
94        46665124 ENSG00000160310       ENST00000451211 ENSE00001410283
95        46665124 ENSG00000160310       ENST00000451211 ENSE00003525717
96        46665124 ENSG00000160310       ENST00000458387 ENSE00001336411
97        46665124 ENSG00000160310       ENST00000458387 ENSE00003542955
98        46665124 ENSG00000160310       ENST00000458387 ENSE00003472918
99        46665124 ENSG00000160310       ENST00000458387 ENSE00003595101
100       46665124 ENSG00000160310       ENST00000458387 ENSE00003480025
101       46665124 ENSG00000160310       ENST00000458387 ENSE00001410283
102       46665124 ENSG00000160310       ENST00000458387 ENSE00003574717
103       46665124 ENSG00000160310       ENST00000458387 ENSE00003641671
104       46665124 ENSG00000160310       ENST00000621201 ENSE00003615399
105       46665124 ENSG00000160310       ENST00000621201 ENSE00003763251
106       46665124 ENSG00000160310       ENST00000621201 ENSE00003716682
107       46665124 ENSG00000160310       ENST00000621201 ENSE00003730501
108       46665124 ENSG00000160310       ENST00000621201 ENSE00003763305
109       46665124 ENSG00000160310       ENST00000621201 ENSE00003753148
110       46665124 ENSG00000160310       ENST00000621201 ENSE00003711735
111       46654022 ENSG00000230982       ENST00000419906 ENSE00001623663
112       46605208 ENSG00000160307       ENST00000291700 ENSE00001051348
113       46605208 ENSG00000160307       ENST00000291700 ENSE00001051347
114       46605208 ENSG00000160307       ENST00000291700 ENSE00003554900
115       46605208 ENSG00000160307       ENST00000367071 ENSE00001051348
116       46605208 ENSG00000160307       ENST00000367071 ENSE00001051347
117       46605208 ENSG00000160307       ENST00000367071 ENSE00001443411
118       46605208 ENSG00000160307       ENST00000367071 ENSE00003463155
119       46605208 ENSG00000160307       ENST00000397648 ENSE00001529559
120       46605208 ENSG00000160307       ENST00000397648 ENSE00001529558
121       46569852 ENSG00000160305       ENST00000400274 ENSE00001542216
122       46569852 ENSG00000160305       ENST00000400274 ENSE00002347315
123       46569852 ENSG00000160305       ENST00000400274 ENSE00002324363
124       46569852 ENSG00000160305       ENST00000400274 ENSE00002319629
125       46569852 ENSG00000160305       ENST00000400274 ENSE00002218277
126       46569852 ENSG00000160305       ENST00000400274 ENSE00002276427
127       46569852 ENSG00000160305       ENST00000400274 ENSE00003471299
128       46569852 ENSG00000160305       ENST00000400274 ENSE00001542215
129       46569852 ENSG00000160305       ENST00000400274 ENSE00003546587
130       46569852 ENSG00000160305       ENST00000400274 ENSE00003683586
131       46569852 ENSG00000160305       ENST00000400274 ENSE00003494381
132       46569852 ENSG00000160305       ENST00000400274 ENSE00003672705
133       46569852 ENSG00000160305       ENST00000400274 ENSE00003533110
134       46569852 ENSG00000160305       ENST00000400274 ENSE00003466019
135       46569852 ENSG00000160305       ENST00000400274 ENSE00003623916
136       46569852 ENSG00000160305       ENST00000400274 ENSE00003546483
137       46569852 ENSG00000160305       ENST00000400274 ENSE00003535268
138       46569852 ENSG00000160305       ENST00000400274 ENSE00003474907
139       46569852 ENSG00000160305       ENST00000400274 ENSE00003641160
140       46569852 ENSG00000160305       ENST00000400274 ENSE00003562990
141       46569852 ENSG00000160305       ENST00000400274 ENSE00002685752
142       46569852 ENSG00000160305       ENST00000400274 ENSE00002444500
143       46569852 ENSG00000160305       ENST00000400274 ENSE00002499829
144       46569852 ENSG00000160305       ENST00000400274 ENSE00002476417
145       46569852 ENSG00000160305       ENST00000400274 ENSE00002513022
146       46569852 ENSG00000160305       ENST00000400274 ENSE00002533498
147       46569852 ENSG00000160305       ENST00000400274 ENSE00003662615
148       46569852 ENSG00000160305       ENST00000400274 ENSE00003590044
149       46569852 ENSG00000160305       ENST00000400274 ENSE00003495758
150       46569852 ENSG00000160305       ENST00000400274 ENSE00003559256
151       46569852 ENSG00000160305       ENST00000400274 ENSE00003545429
152       46569852 ENSG00000160305       ENST00000400274 ENSE00002444706
153       46569852 ENSG00000160305       ENST00000400274 ENSE00002517274
154       46569852 ENSG00000160305       ENST00000400274 ENSE00002499891
155       46569852 ENSG00000160305       ENST00000400274 ENSE00003560718
156       46569852 ENSG00000160305       ENST00000400274 ENSE00003514252
157       46569852 ENSG00000160305       ENST00000400274 ENSE00003516999
158       46569852 ENSG00000160305       ENST00000400274 ENSE00003575495
159       46569852 ENSG00000160305       ENST00000457905 ENSE00002347315
160       46569852 ENSG00000160305       ENST00000457905 ENSE00002324363
161       46569852 ENSG00000160305       ENST00000457905 ENSE00002319629
162       46569852 ENSG00000160305       ENST00000457905 ENSE00002218277
163       46569852 ENSG00000160305       ENST00000457905 ENSE00002276427
164       46569852 ENSG00000160305       ENST00000457905 ENSE00003471299
165       46569852 ENSG00000160305       ENST00000457905 ENSE00003546587
166       46569852 ENSG00000160305       ENST00000457905 ENSE00003683586
167       46569852 ENSG00000160305       ENST00000457905 ENSE00003494381
168       46569852 ENSG00000160305       ENST00000457905 ENSE00003672705
169       46569852 ENSG00000160305       ENST00000457905 ENSE00003533110
170       46569852 ENSG00000160305       ENST00000457905 ENSE00003466019
171       46569852 ENSG00000160305       ENST00000457905 ENSE00003623916
172       46569852 ENSG00000160305       ENST00000457905 ENSE00003546483
173       46569852 ENSG00000160305       ENST00000457905 ENSE00003535268
174       46569852 ENSG00000160305       ENST00000457905 ENSE00003474907
175       46569852 ENSG00000160305       ENST00000457905 ENSE00003641160
176       46569852 ENSG00000160305       ENST00000457905 ENSE00003562990
177       46569852 ENSG00000160305       ENST00000457905 ENSE00002685752
178       46569852 ENSG00000160305       ENST00000457905 ENSE00001895397
179       46569852 ENSG00000160305       ENST00000457905 ENSE00003480214
180       46569852 ENSG00000160305       ENST00000457905 ENSE00001863984
181       46569852 ENSG00000160305       ENST00000466639 ENSE00002347315
182       46569852 ENSG00000160305       ENST00000466639 ENSE00002324363
183       46569852 ENSG00000160305       ENST00000466639 ENSE00002319629
184       46569852 ENSG00000160305       ENST00000466639 ENSE00002218277
185       46569852 ENSG00000160305       ENST00000466639 ENSE00003471299
186       46569852 ENSG00000160305       ENST00000466639 ENSE00003546587
187       46569852 ENSG00000160305       ENST00000466639 ENSE00003683586
188       46569852 ENSG00000160305       ENST00000466639 ENSE00003494381
189       46569852 ENSG00000160305       ENST00000466639 ENSE00003672705
190       46569852 ENSG00000160305       ENST00000466639 ENSE00003533110
191       46569852 ENSG00000160305       ENST00000466639 ENSE00003466019
192       46569852 ENSG00000160305       ENST00000466639 ENSE00003623916
193       46569852 ENSG00000160305       ENST00000466639 ENSE00003546483
194       46569852 ENSG00000160305       ENST00000466639 ENSE00003535268
195       46569852 ENSG00000160305       ENST00000466639 ENSE00003474907
196       46569852 ENSG00000160305       ENST00000466639 ENSE00003641160
197       46569852 ENSG00000160305       ENST00000466639 ENSE00003562990
198       46569852 ENSG00000160305       ENST00000466639 ENSE00003480214
199       46569852 ENSG00000160305       ENST00000466639 ENSE00002254995
200       46569852 ENSG00000160305       ENST00000466639 ENSE00003558519
201       46569852 ENSG00000160305       ENST00000435722 ENSE00002347315
202       46569852 ENSG00000160305       ENST00000435722 ENSE00002324363
203       46569852 ENSG00000160305       ENST00000435722 ENSE00002319629
204       46569852 ENSG00000160305       ENST00000435722 ENSE00002218277
205       46569852 ENSG00000160305       ENST00000435722 ENSE00002276427
206       46569852 ENSG00000160305       ENST00000435722 ENSE00003471299
207       46569852 ENSG00000160305       ENST00000435722 ENSE00003546587
208       46569852 ENSG00000160305       ENST00000435722 ENSE00003683586
209       46569852 ENSG00000160305       ENST00000435722 ENSE00003494381
210       46569852 ENSG00000160305       ENST00000435722 ENSE00003672705
211       46569852 ENSG00000160305       ENST00000435722 ENSE00003533110
212       46569852 ENSG00000160305       ENST00000435722 ENSE00003466019
213       46569852 ENSG00000160305       ENST00000435722 ENSE00003623916
214       46569852 ENSG00000160305       ENST00000435722 ENSE00003546483
215       46569852 ENSG00000160305       ENST00000435722 ENSE00003535268
216       46569852 ENSG00000160305       ENST00000435722 ENSE00003474907
217       46569852 ENSG00000160305       ENST00000435722 ENSE00003641160
218       46569852 ENSG00000160305       ENST00000435722 ENSE00003562990
219       46569852 ENSG00000160305       ENST00000435722 ENSE00003480214
220       46569852 ENSG00000160305       ENST00000435722 ENSE00003558519
221       46569852 ENSG00000160305       ENST00000435722 ENSE00001831129
222       46569852 ENSG00000160305       ENST00000417564 ENSE00002347315
223       46569852 ENSG00000160305       ENST00000417564 ENSE00002324363
224       46569852 ENSG00000160305       ENST00000417564 ENSE00002319629
225       46569852 ENSG00000160305       ENST00000417564 ENSE00002218277
226       46569852 ENSG00000160305       ENST00000417564 ENSE00002276427
227       46569852 ENSG00000160305       ENST00000417564 ENSE00003471299
228       46569852 ENSG00000160305       ENST00000417564 ENSE00003546587
229       46569852 ENSG00000160305       ENST00000417564 ENSE00003683586
230       46569852 ENSG00000160305       ENST00000417564 ENSE00003494381
231       46569852 ENSG00000160305       ENST00000417564 ENSE00003672705
232       46569852 ENSG00000160305       ENST00000417564 ENSE00003533110
233       46569852 ENSG00000160305       ENST00000417564 ENSE00003466019
234       46569852 ENSG00000160305       ENST00000417564 ENSE00003623916
235       46569852 ENSG00000160305       ENST00000417564 ENSE00003546483
236       46569852 ENSG00000160305       ENST00000417564 ENSE00003535268
237       46569852 ENSG00000160305       ENST00000417564 ENSE00003474907
238       46569852 ENSG00000160305       ENST00000417564 ENSE00003641160
239       46569852 ENSG00000160305       ENST00000417564 ENSE00003562990
240       46569852 ENSG00000160305       ENST00000417564 ENSE00002685752
241       46569852 ENSG00000160305       ENST00000417564 ENSE00002444500
242       46569852 ENSG00000160305       ENST00000417564 ENSE00002499829
243       46569852 ENSG00000160305       ENST00000417564 ENSE00002476417
244       46569852 ENSG00000160305       ENST00000417564 ENSE00002513022
245       46569852 ENSG00000160305       ENST00000417564 ENSE00002533498
246       46569852 ENSG00000160305       ENST00000417564 ENSE00003662615
247       46569852 ENSG00000160305       ENST00000417564 ENSE00003590044
248       46569852 ENSG00000160305       ENST00000417564 ENSE00003495758
249       46569852 ENSG00000160305       ENST00000417564 ENSE00003559256
250       46569852 ENSG00000160305       ENST00000417564 ENSE00003545429
251       46569852 ENSG00000160305       ENST00000417564 ENSE00002444706
252       46569852 ENSG00000160305       ENST00000417564 ENSE00002517274
253       46569852 ENSG00000160305       ENST00000417564 ENSE00002499891
254       46569852 ENSG00000160305       ENST00000417564 ENSE00003560718
255       46569852 ENSG00000160305       ENST00000417564 ENSE00003514252
256       46569852 ENSG00000160305       ENST00000417564 ENSE00003516999
257       46569852 ENSG00000160305       ENST00000417564 ENSE00003480214
258       46569852 ENSG00000160305       ENST00000417564 ENSE00002096758
259       46569852 ENSG00000160305       ENST00000417564 ENSE00002109859
260       46569852 ENSG00000160305       ENST00000473752 ENSE00001893033
261       46569852 ENSG00000160305       ENST00000473752 ENSE00003624236
262       46569852 ENSG00000160305       ENST00000473752 ENSE00003609621
263       46569852 ENSG00000160305       ENST00000473752 ENSE00003658351
264       46569852 ENSG00000160305       ENST00000473752 ENSE00003548383
265       46569852 ENSG00000160305       ENST00000473752 ENSE00003466194
266       46569852 ENSG00000160305       ENST00000473752 ENSE00003560854
267       46569852 ENSG00000160305       ENST00000473752 ENSE00003532045
268       46569852 ENSG00000160305       ENST00000473752 ENSE00003548730
269       46569852 ENSG00000160305       ENST00000473752 ENSE00003682634
270       46569852 ENSG00000160305       ENST00000473752 ENSE00003477663
271       46569852 ENSG00000160305       ENST00000473752 ENSE00003491118
272       46569852 ENSG00000160305       ENST00000473752 ENSE00003531194
273       46569852 ENSG00000160305       ENST00000473752 ENSE00001845804
274       46569852 ENSG00000160305       ENST00000494435 ENSE00003624236
275       46569852 ENSG00000160305       ENST00000494435 ENSE00003609621
276       46569852 ENSG00000160305       ENST00000494435 ENSE00003658351
277       46569852 ENSG00000160305       ENST00000494435 ENSE00003548383
278       46569852 ENSG00000160305       ENST00000494435 ENSE00003466194
279       46569852 ENSG00000160305       ENST00000494435 ENSE00003560854
280       46569852 ENSG00000160305       ENST00000494435 ENSE00003532045
281       46569852 ENSG00000160305       ENST00000494435 ENSE00003548730
282       46569852 ENSG00000160305       ENST00000494435 ENSE00003682634
283       46569852 ENSG00000160305       ENST00000494435 ENSE00003477663
284       46569852 ENSG00000160305       ENST00000494435 ENSE00003491118
285       46569852 ENSG00000160305       ENST00000494435 ENSE00003531194
286       46569852 ENSG00000160305       ENST00000494435 ENSE00001832505
287       46569852 ENSG00000160305       ENST00000494435 ENSE00003631174
288       46569852 ENSG00000160305       ENST00000494435 ENSE00001943172
289       46569852 ENSG00000160305       ENST00000480553 ENSE00003531194
290       46569852 ENSG00000160305       ENST00000480553 ENSE00003631174
291       46569852 ENSG00000160305       ENST00000480553 ENSE00001819473
292       46569852 ENSG00000160305       ENST00000480553 ENSE00003563295
293       46569852 ENSG00000160305       ENST00000480553 ENSE00003468850
294       46569852 ENSG00000160305       ENST00000472364 ENSE00001940869
295       46569852 ENSG00000160305       ENST00000472364 ENSE00003614249
296       46569852 ENSG00000160305       ENST00000472364 ENSE00003628901
297       46569852 ENSG00000160305       ENST00000472364 ENSE00003633613
298       46569852 ENSG00000160305       ENST00000472364 ENSE00003646220
299       46569852 ENSG00000160305       ENST00000472364 ENSE00003482678
300       46569852 ENSG00000160305       ENST00000472364 ENSE00001863731
301       46569852 ENSG00000160305       ENST00000481883 ENSE00001916374
302       46569852 ENSG00000160305       ENST00000481883 ENSE00001912450
303       46569852 ENSG00000160305       ENST00000478105 ENSE00001814111
304       46569852 ENSG00000160305       ENST00000478105 ENSE00003639290
305       46569852 ENSG00000160305       ENST00000478105 ENSE00003479836
306       46569852 ENSG00000160305       ENST00000478105 ENSE00003657555
307       46569852 ENSG00000160305       ENST00000478105 ENSE00003504998
308       46569852 ENSG00000160305       ENST00000479654 ENSE00003479836
309       46569852 ENSG00000160305       ENST00000479654 ENSE00003657555
310       46569852 ENSG00000160305       ENST00000479654 ENSE00003504998
311       46569852 ENSG00000160305       ENST00000479654 ENSE00001864214
312       46525722 ENSG00000202239       ENST00000365369 ENSE00001440132
313       46469306 ENSG00000223692       ENST00000442434 ENSE00001740202
314       46469306 ENSG00000223692       ENST00000442434 ENSE00001790677
315       46469306 ENSG00000223692       ENST00000442434 ENSE00001765964
316       46469306 ENSG00000223692       ENST00000442434 ENSE00001681675
317       46445769 ENSG00000160299       ENST00000359568 ENSE00001740168
318       46445769 ENSG00000160299       ENST00000359568 ENSE00003693207
319       46445769 ENSG00000160299       ENST00000359568 ENSE00003471660
320       46445769 ENSG00000160299       ENST00000359568 ENSE00003614602
321       46445769 ENSG00000160299       ENST00000359568 ENSE00003653302
322       46445769 ENSG00000160299       ENST00000359568 ENSE00003669717
323       46445769 ENSG00000160299       ENST00000359568 ENSE00003461020
324       46445769 ENSG00000160299       ENST00000359568 ENSE00003679886
325       46445769 ENSG00000160299       ENST00000359568 ENSE00003636169
326       46445769 ENSG00000160299       ENST00000359568 ENSE00003634961
327       46445769 ENSG00000160299       ENST00000359568 ENSE00003613496
328       46445769 ENSG00000160299       ENST00000359568 ENSE00003595154
329       46445769 ENSG00000160299       ENST00000359568 ENSE00003505517
330       46445769 ENSG00000160299       ENST00000359568 ENSE00003581236
331       46445769 ENSG00000160299       ENST00000359568 ENSE00003484112
332       46445769 ENSG00000160299       ENST00000359568 ENSE00003464323
333       46445769 ENSG00000160299       ENST00000359568 ENSE00003678564
334       46445769 ENSG00000160299       ENST00000359568 ENSE00003460972
335       46445769 ENSG00000160299       ENST00000359568 ENSE00003625307
336       46445769 ENSG00000160299       ENST00000359568 ENSE00003655962
337       46445769 ENSG00000160299       ENST00000359568 ENSE00003582881
338       46445769 ENSG00000160299       ENST00000359568 ENSE00003536588
339       46445769 ENSG00000160299       ENST00000359568 ENSE00003618058
340       46445769 ENSG00000160299       ENST00000359568 ENSE00003541937
341       46445769 ENSG00000160299       ENST00000359568 ENSE00003551868
342       46445769 ENSG00000160299       ENST00000359568 ENSE00003675280
343       46445769 ENSG00000160299       ENST00000359568 ENSE00003615973
344       46445769 ENSG00000160299       ENST00000359568 ENSE00003566596
345       46445769 ENSG00000160299       ENST00000359568 ENSE00003499600
346       46445769 ENSG00000160299       ENST00000359568 ENSE00003605610
347       46445769 ENSG00000160299       ENST00000359568 ENSE00003634932
348       46445769 ENSG00000160299       ENST00000359568 ENSE00003634727
349       46445769 ENSG00000160299       ENST00000359568 ENSE00003668725
350       46445769 ENSG00000160299       ENST00000359568 ENSE00003680909
351       46445769 ENSG00000160299       ENST00000359568 ENSE00003622344
352       46445769 ENSG00000160299       ENST00000359568 ENSE00003517344
353       46445769 ENSG00000160299       ENST00000359568 ENSE00003526928
354       46445769 ENSG00000160299       ENST00000359568 ENSE00001591369
355       46445769 ENSG00000160299       ENST00000359568 ENSE00003482441
356       46445769 ENSG00000160299       ENST00000359568 ENSE00003499558
357       46445769 ENSG00000160299       ENST00000359568 ENSE00003498357
358       46445769 ENSG00000160299       ENST00000359568 ENSE00003637382
359       46445769 ENSG00000160299       ENST00000359568 ENSE00003675210
360       46445769 ENSG00000160299       ENST00000359568 ENSE00003507941
361       46445769 ENSG00000160299       ENST00000359568 ENSE00003518479
362       46445769 ENSG00000160299       ENST00000359568 ENSE00003608595
363       46445769 ENSG00000160299       ENST00000359568 ENSE00003625234
364       46445769 ENSG00000160299       ENST00000490468 ENSE00001830035
365       46445769 ENSG00000160299       ENST00000490468 ENSE00003486596
366       46445769 ENSG00000160299       ENST00000490468 ENSE00003656784
367       46445769 ENSG00000160299       ENST00000490468 ENSE00003615418
368       46445769 ENSG00000160299       ENST00000490468 ENSE00001838703
369       46445769 ENSG00000160299       ENST00000490468 ENSE00003689424
370       46445769 ENSG00000160299       ENST00000490468 ENSE00003613544
371       46445769 ENSG00000160299       ENST00000490468 ENSE00001872238
372       46445769 ENSG00000160299       ENST00000480896 ENSE00003486596
373       46445769 ENSG00000160299       ENST00000480896 ENSE00003656784
374       46445769 ENSG00000160299       ENST00000480896 ENSE00003615418
375       46445769 ENSG00000160299       ENST00000480896 ENSE00003689424
376       46445769 ENSG00000160299       ENST00000480896 ENSE00003613544
377       46445769 ENSG00000160299       ENST00000480896 ENSE00001865596
378       46445769 ENSG00000160299       ENST00000480896 ENSE00003627023
379       46445769 ENSG00000160299       ENST00000480896 ENSE00003570581
380       46445769 ENSG00000160299       ENST00000480896 ENSE00003692728
381       46445769 ENSG00000160299       ENST00000480896 ENSE00003614830
382       46445769 ENSG00000160299       ENST00000480896 ENSE00003685925
383       46445769 ENSG00000160299       ENST00000480896 ENSE00003458946
384       46445769 ENSG00000160299       ENST00000480896 ENSE00003651724
385       46445769 ENSG00000160299       ENST00000480896 ENSE00003476210
386       46445769 ENSG00000160299       ENST00000480896 ENSE00003490601
387       46445769 ENSG00000160299       ENST00000480896 ENSE00003595417
388       46445769 ENSG00000160299       ENST00000480896 ENSE00003472692
389       46445769 ENSG00000160299       ENST00000480896 ENSE00003510656
390       46445769 ENSG00000160299       ENST00000480896 ENSE00003681544
391       46445769 ENSG00000160299       ENST00000480896 ENSE00003617233
392       46445769 ENSG00000160299       ENST00000480896 ENSE00003520873
393       46445769 ENSG00000160299       ENST00000480896 ENSE00003596567
394       46445769 ENSG00000160299       ENST00000480896 ENSE00003686338
395       46445769 ENSG00000160299       ENST00000480896 ENSE00003576652
396       46445769 ENSG00000160299       ENST00000480896 ENSE00003671216
397       46445769 ENSG00000160299       ENST00000480896 ENSE00003535844
398       46445769 ENSG00000160299       ENST00000480896 ENSE00003459531
399       46445769 ENSG00000160299       ENST00000480896 ENSE00003620841
400       46445769 ENSG00000160299       ENST00000480896 ENSE00003656599
401       46445769 ENSG00000160299       ENST00000480896 ENSE00003529904
402       46445769 ENSG00000160299       ENST00000480896 ENSE00003655674
403       46445769 ENSG00000160299       ENST00000480896 ENSE00003479687
404       46445769 ENSG00000160299       ENST00000480896 ENSE00003513445
405       46445769 ENSG00000160299       ENST00000480896 ENSE00003507274
406       46445769 ENSG00000160299       ENST00000480896 ENSE00003472119
407       46445769 ENSG00000160299       ENST00000480896 ENSE00003561276
408       46445769 ENSG00000160299       ENST00000480896 ENSE00003597401
409       46445769 ENSG00000160299       ENST00000480896 ENSE00001908254
410       46445769 ENSG00000160299       ENST00000480896 ENSE00003694509
411       46445769 ENSG00000160299       ENST00000480896 ENSE00003615562
412       46445769 ENSG00000160299       ENST00000480896 ENSE00003544978
413       46445769 ENSG00000160299       ENST00000480896 ENSE00003560159
414       46445769 ENSG00000160299       ENST00000480896 ENSE00003627521
415       46445769 ENSG00000160299       ENST00000480896 ENSE00003674484
416       46445769 ENSG00000160299       ENST00000480896 ENSE00003562761
417       46445769 ENSG00000160299       ENST00000480896 ENSE00003494030
418       46445769 ENSG00000160299       ENST00000480896 ENSE00003673280
419       46445769 ENSG00000160299       ENST00000466474 ENSE00003689424
420       46445769 ENSG00000160299       ENST00000466474 ENSE00003613544
421       46445769 ENSG00000160299       ENST00000466474 ENSE00003627023
422       46445769 ENSG00000160299       ENST00000466474 ENSE00003570581
423       46445769 ENSG00000160299       ENST00000466474 ENSE00001851890
424       46445769 ENSG00000160299       ENST00000466474 ENSE00001821537
425       46445769 ENSG00000160299       ENST00000483844 ENSE00003613544
426       46445769 ENSG00000160299       ENST00000483844 ENSE00003570581
427       46445769 ENSG00000160299       ENST00000483844 ENSE00003692728
428       46445769 ENSG00000160299       ENST00000483844 ENSE00003614830
429       46445769 ENSG00000160299       ENST00000483844 ENSE00001895119
430       46445769 ENSG00000160299       ENST00000482575 ENSE00001815960
431       46445769 ENSG00000160299       ENST00000482575 ENSE00001921539
432       46445769 ENSG00000160299       ENST00000418394 ENSE00003498357
433       46445769 ENSG00000160299       ENST00000418394 ENSE00003637382
434       46445769 ENSG00000160299       ENST00000418394 ENSE00003675210
435       46445769 ENSG00000160299       ENST00000418394 ENSE00003507941
436       46445769 ENSG00000160299       ENST00000418394 ENSE00001624393
437       46445769 ENSG00000160299       ENST00000418394 ENSE00001767577
438       46445769 ENSG00000160299       ENST00000465356 ENSE00001949582
439       46445769 ENSG00000160299       ENST00000465356 ENSE00001843651
440       46421034 ENSG00000225043       ENST00000450007 ENSE00001666267
441       46323875 ENSG00000160298       ENST00000491666 ENSE00001670598
442       46323875 ENSG00000160298       ENST00000491666 ENSE00003530408
443       46323875 ENSG00000160298       ENST00000491666 ENSE00003567971
444       46323875 ENSG00000160298       ENST00000491666 ENSE00001051246
445       46323875 ENSG00000160298       ENST00000491666 ENSE00002244793
446       46323875 ENSG00000160298       ENST00000491666 ENSE00003583756
447       46323875 ENSG00000160298       ENST00000491666 ENSE00001836049
448       46323875 ENSG00000160298       ENST00000491666 ENSE00001845892
449       46323875 ENSG00000160298       ENST00000397683 ENSE00002244793
450       46323875 ENSG00000160298       ENST00000397683 ENSE00003583756
451       46323875 ENSG00000160298       ENST00000397683 ENSE00001529697
452       46323875 ENSG00000160298       ENST00000397683 ENSE00003486245
453       46323875 ENSG00000160298       ENST00000397683 ENSE00001529695
454       46323875 ENSG00000160298       ENST00000397683 ENSE00003550419
455       46323875 ENSG00000160298       ENST00000397683 ENSE00002319841
456       46323875 ENSG00000160298       ENST00000397683 ENSE00001529703
457       46323875 ENSG00000160298       ENST00000397683 ENSE00001529687
458       46323875 ENSG00000160298       ENST00000417060 ENSE00001670598
459       46323875 ENSG00000160298       ENST00000417060 ENSE00003530408
460       46323875 ENSG00000160298       ENST00000417060 ENSE00003567971
461       46323875 ENSG00000160298       ENST00000417060 ENSE00001051246
462       46323875 ENSG00000160298       ENST00000417060 ENSE00002244793
463       46323875 ENSG00000160298       ENST00000417060 ENSE00003583756
464       46323875 ENSG00000160298       ENST00000417060 ENSE00001529703
465       46323875 ENSG00000160298       ENST00000417060 ENSE00001777824
466       46323875 ENSG00000160298       ENST00000397682 ENSE00002244793
467       46323875 ENSG00000160298       ENST00000397682 ENSE00003583756
468       46323875 ENSG00000160298       ENST00000397682 ENSE00003486245
469       46323875 ENSG00000160298       ENST00000397682 ENSE00001529695
470       46323875 ENSG00000160298       ENST00000397682 ENSE00003550419
471       46323875 ENSG00000160298       ENST00000397682 ENSE00002319841
472       46323875 ENSG00000160298       ENST00000397682 ENSE00001529703
473       46323875 ENSG00000160298       ENST00000397682 ENSE00003555584
474       46323875 ENSG00000160298       ENST00000397682 ENSE00001529701
475       46323875 ENSG00000160298       ENST00000291691 ENSE00003530408
476       46323875 ENSG00000160298       ENST00000291691 ENSE00003567971
477       46323875 ENSG00000160298       ENST00000291691 ENSE00001051246
478       46323875 ENSG00000160298       ENST00000291691 ENSE00002244793
479       46323875 ENSG00000160298       ENST00000291691 ENSE00003583756
480       46323875 ENSG00000160298       ENST00000291691 ENSE00003603708
481       46323875 ENSG00000160298       ENST00000291691 ENSE00003625644
482       46323875 ENSG00000160298       ENST00000291691 ENSE00001529699
483       46323875 ENSG00000160298       ENST00000397679 ENSE00002244793
484       46323875 ENSG00000160298       ENST00000397679 ENSE00003583756
485       46323875 ENSG00000160298       ENST00000397679 ENSE00001529695
486       46323875 ENSG00000160298       ENST00000397679 ENSE00003550419
487       46323875 ENSG00000160298       ENST00000397679 ENSE00002319841
488       46323875 ENSG00000160298       ENST00000397679 ENSE00001529675
489       46323875 ENSG00000160298       ENST00000397679 ENSE00001271873
490       46323875 ENSG00000160298       ENST00000397680 ENSE00002244793
491       46323875 ENSG00000160298       ENST00000397680 ENSE00003583756
492       46323875 ENSG00000160298       ENST00000397680 ENSE00003486245
493       46323875 ENSG00000160298       ENST00000397680 ENSE00003550419
494       46323875 ENSG00000160298       ENST00000397680 ENSE00002319841
495       46323875 ENSG00000160298       ENST00000397680 ENSE00001271873
496       46323875 ENSG00000160298       ENST00000397680 ENSE00001529681
497       46323875 ENSG00000160298       ENST00000397680 ENSE00003621434
498       46323875 ENSG00000160298       ENST00000472607 ENSE00001865923
499       46323875 ENSG00000160298       ENST00000472607 ENSE00003471562
500       46323875 ENSG00000160298       ENST00000472607 ENSE00001848575
501       46323875 ENSG00000160298       ENST00000445935 ENSE00003486245
502       46323875 ENSG00000160298       ENST00000445935 ENSE00003550419
503       46323875 ENSG00000160298       ENST00000445935 ENSE00003621434
504       46323875 ENSG00000160298       ENST00000445935 ENSE00001749376
505       46323875 ENSG00000160298       ENST00000445935 ENSE00001654746
506       46323875 ENSG00000160298       ENST00000445935 ENSE00003614855
507       46323875 ENSG00000160298       ENST00000475776 ENSE00003486245
508       46323875 ENSG00000160298       ENST00000475776 ENSE00003621434
509       46323875 ENSG00000160298       ENST00000475776 ENSE00001749376
510       46323875 ENSG00000160298       ENST00000475776 ENSE00001918011
511       46297751 ENSG00000182362       ENST00000397691 ENSE00003566287
512       46297751 ENSG00000182362       ENST00000397691 ENSE00001302401
513       46297751 ENSG00000182362       ENST00000397691 ENSE00001322578
514       46297751 ENSG00000182362       ENST00000397691 ENSE00001529749
515       46297751 ENSG00000182362       ENST00000397691 ENSE00001529733
516       46297751 ENSG00000182362       ENST00000492864 ENSE00003679893
517       46297751 ENSG00000182362       ENST00000492864 ENSE00001300525
518       46297751 ENSG00000182362       ENST00000492864 ENSE00001884057
519       46297751 ENSG00000182362       ENST00000397692 ENSE00001322578
520       46297751 ENSG00000182362       ENST00000397692 ENSE00001529749
521       46297751 ENSG00000182362       ENST00000397692 ENSE00001529738
522       46297751 ENSG00000182362       ENST00000397692 ENSE00001529737
523       46297751 ENSG00000182362       ENST00000339195 ENSE00003566287
524       46297751 ENSG00000182362       ENST00000339195 ENSE00001322578
525       46297751 ENSG00000182362       ENST00000339195 ENSE00001529749
526       46297751 ENSG00000182362       ENST00000339195 ENSE00001529753
527       46297751 ENSG00000182362       ENST00000329319 ENSE00003566287
528       46297751 ENSG00000182362       ENST00000329319 ENSE00001302401
529       46297751 ENSG00000182362       ENST00000329319 ENSE00001322578
530       46297751 ENSG00000182362       ENST00000329319 ENSE00001529749
531       46297751 ENSG00000182362       ENST00000329319 ENSE00001529753
532       46297751 ENSG00000182362       ENST00000397694 ENSE00001302401
533       46297751 ENSG00000182362       ENST00000397694 ENSE00001322578
534       46297751 ENSG00000182362       ENST00000397694 ENSE00001529738
535       46297751 ENSG00000182362       ENST00000397694 ENSE00001529737
536       46297751 ENSG00000182362       ENST00000397694 ENSE00001529735
537       46297751 ENSG00000182362       ENST00000468924 ENSE00001890878
538       46297751 ENSG00000182362       ENST00000468924 ENSE00003679893
539       46297751 ENSG00000182362       ENST00000468924 ENSE00001879604
540       46297751 ENSG00000182362       ENST00000397701 ENSE00001820637
541       46297751 ENSG00000182362       ENST00000397701 ENSE00003566287
542       46297751 ENSG00000182362       ENST00000397701 ENSE00001302401
543       46297751 ENSG00000182362       ENST00000397701 ENSE00001322578
544       46297751 ENSG00000182362       ENST00000397701 ENSE00001529749
545       46286297 ENSG00000160294       ENST00000467026 ENSE00001956545
546       46286297 ENSG00000160294       ENST00000467026 ENSE00003643410
547       46286297 ENSG00000160294       ENST00000467026 ENSE00003688476
548       46286297 ENSG00000160294       ENST00000467026 ENSE00003484738
549       46286297 ENSG00000160294       ENST00000467026 ENSE00003581188
550       46286297 ENSG00000160294       ENST00000467026 ENSE00003526095
551       46286297 ENSG00000160294       ENST00000467026 ENSE00003597990
552       46286297 ENSG00000160294       ENST00000467026 ENSE00003500518
553       46286297 ENSG00000160294       ENST00000467026 ENSE00003482097
554       46286297 ENSG00000160294       ENST00000467026 ENSE00003603723
555       46286297 ENSG00000160294       ENST00000467026 ENSE00003533166
556       46286297 ENSG00000160294       ENST00000467026 ENSE00003463408
557       46286297 ENSG00000160294       ENST00000467026 ENSE00003633023
558       46286297 ENSG00000160294       ENST00000496607 ENSE00003643410
559       46286297 ENSG00000160294       ENST00000496607 ENSE00003688476
560       46286297 ENSG00000160294       ENST00000496607 ENSE00003484738
561       46286297 ENSG00000160294       ENST00000496607 ENSE00003581188
562       46286297 ENSG00000160294       ENST00000496607 ENSE00003526095
563       46286297 ENSG00000160294       ENST00000496607 ENSE00003597990
564       46286297 ENSG00000160294       ENST00000496607 ENSE00003500518
565       46286297 ENSG00000160294       ENST00000496607 ENSE00003482097
566       46286297 ENSG00000160294       ENST00000496607 ENSE00003603723
567       46286297 ENSG00000160294       ENST00000496607 ENSE00003533166
568       46286297 ENSG00000160294       ENST00000496607 ENSE00003463408
569       46286297 ENSG00000160294       ENST00000496607 ENSE00003633023
570       46286297 ENSG00000160294       ENST00000496607 ENSE00001815486
571       46286297 ENSG00000160294       ENST00000496607 ENSE00003634959
572       46286297 ENSG00000160294       ENST00000496607 ENSE00003620264
573       46286297 ENSG00000160294       ENST00000496607 ENSE00003647431
574       46286297 ENSG00000160294       ENST00000496607 ENSE00003667275
575       46286297 ENSG00000160294       ENST00000496607 ENSE00003673707
576       46286297 ENSG00000160294       ENST00000486937 ENSE00003643410
577       46286297 ENSG00000160294       ENST00000486937 ENSE00003688476
578       46286297 ENSG00000160294       ENST00000486937 ENSE00003484738
579       46286297 ENSG00000160294       ENST00000486937 ENSE00003581188
580       46286297 ENSG00000160294       ENST00000486937 ENSE00003500518
581       46286297 ENSG00000160294       ENST00000486937 ENSE00003482097
582       46286297 ENSG00000160294       ENST00000486937 ENSE00003603723
583       46286297 ENSG00000160294       ENST00000486937 ENSE00003533166
584       46286297 ENSG00000160294       ENST00000486937 ENSE00003463408
585       46286297 ENSG00000160294       ENST00000486937 ENSE00003633023
586       46286297 ENSG00000160294       ENST00000486937 ENSE00003634959
587       46286297 ENSG00000160294       ENST00000486937 ENSE00003620264
588       46286297 ENSG00000160294       ENST00000486937 ENSE00003647431
589       46286297 ENSG00000160294       ENST00000486937 ENSE00003667275
590       46286297 ENSG00000160294       ENST00000486937 ENSE00003673707
591       46286297 ENSG00000160294       ENST00000486937 ENSE00001822948
592       46286297 ENSG00000160294       ENST00000486937 ENSE00003561146
593       46286297 ENSG00000160294       ENST00000486937 ENSE00001878149
594       46286297 ENSG00000160294       ENST00000397708 ENSE00001529813
595       46286297 ENSG00000160294       ENST00000397708 ENSE00001529811
596       46286297 ENSG00000160294       ENST00000397708 ENSE00001051219
597       46286297 ENSG00000160294       ENST00000397708 ENSE00001051212
598       46286297 ENSG00000160294       ENST00000397708 ENSE00001051213
599       46286297 ENSG00000160294       ENST00000397708 ENSE00001051232
600       46286297 ENSG00000160294       ENST00000397708 ENSE00001051216
601       46286297 ENSG00000160294       ENST00000397708 ENSE00001051206
602       46286297 ENSG00000160294       ENST00000397708 ENSE00001051226
603       46286297 ENSG00000160294       ENST00000397708 ENSE00001051240
604       46286297 ENSG00000160294       ENST00000397708 ENSE00001051215
605       46286297 ENSG00000160294       ENST00000397708 ENSE00003461146
606       46286297 ENSG00000160294       ENST00000397708 ENSE00003532634
607       46286297 ENSG00000160294       ENST00000397708 ENSE00003620301
608       46286297 ENSG00000160294       ENST00000397708 ENSE00003486931
609       46286297 ENSG00000160294       ENST00000397708 ENSE00003675693
610       46286297 ENSG00000160294       ENST00000397708 ENSE00003458431
611       46286297 ENSG00000160294       ENST00000397708 ENSE00003599023
612       46286297 ENSG00000160294       ENST00000397708 ENSE00003566979
613       46286297 ENSG00000160294       ENST00000397708 ENSE00003506114
614       46286297 ENSG00000160294       ENST00000397708 ENSE00003487436
615       46286297 ENSG00000160294       ENST00000397708 ENSE00003553058
616       46286297 ENSG00000160294       ENST00000397708 ENSE00003572625
617       46286297 ENSG00000160294       ENST00000397708 ENSE00003482081
618       46286297 ENSG00000160294       ENST00000397708 ENSE00003630073
619       46286297 ENSG00000160294       ENST00000397708 ENSE00003459748
620       46286297 ENSG00000160294       ENST00000397708 ENSE00003606597
621       46286297 ENSG00000160294       ENST00000397708 ENSE00003485376
622       46286297 ENSG00000160294       ENST00000397708 ENSE00003650730
623       46286297 ENSG00000160294       ENST00000481113 ENSE00003643410
624       46286297 ENSG00000160294       ENST00000481113 ENSE00003688476
625       46286297 ENSG00000160294       ENST00000481113 ENSE00003484738
626       46286297 ENSG00000160294       ENST00000481113 ENSE00001872826
627       46286297 ENSG00000160294       ENST00000494755 ENSE00001823878
628       46286297 ENSG00000160294       ENST00000494755 ENSE00001843870
629       46286297 ENSG00000160294       ENST00000479557 ENSE00001910988
630       46286297 ENSG00000160294       ENST00000479557 ENSE00001889901
631       46286297 ENSG00000160294       ENST00000426537 ENSE00001615976
632       46286297 ENSG00000160294       ENST00000426537 ENSE00001662047
633       46286297 ENSG00000160294       ENST00000495475 ENSE00001937494
634       46286297 ENSG00000160294       ENST00000495475 ENSE00001879980
635       46286297 ENSG00000160294       ENST00000291688 ENSE00001529811
636       46286297 ENSG00000160294       ENST00000291688 ENSE00001051219
637       46286297 ENSG00000160294       ENST00000291688 ENSE00001051212
638       46286297 ENSG00000160294       ENST00000291688 ENSE00001051213
639       46286297 ENSG00000160294       ENST00000291688 ENSE00001051232
640       46286297 ENSG00000160294       ENST00000291688 ENSE00001051216
641       46286297 ENSG00000160294       ENST00000291688 ENSE00001051206
642       46286297 ENSG00000160294       ENST00000291688 ENSE00001051226
643       46286297 ENSG00000160294       ENST00000291688 ENSE00001051240
644       46286297 ENSG00000160294       ENST00000291688 ENSE00001051215
645       46286297 ENSG00000160294       ENST00000291688 ENSE00003461146
646       46286297 ENSG00000160294       ENST00000291688 ENSE00003532634
647       46286297 ENSG00000160294       ENST00000291688 ENSE00003620301
648       46286297 ENSG00000160294       ENST00000291688 ENSE00003486931
649       46286297 ENSG00000160294       ENST00000291688 ENSE00003675693
650       46286297 ENSG00000160294       ENST00000291688 ENSE00003458431
651       46286297 ENSG00000160294       ENST00000291688 ENSE00003599023
652       46286297 ENSG00000160294       ENST00000291688 ENSE00003566979
653       46286297 ENSG00000160294       ENST00000291688 ENSE00003506114
654       46286297 ENSG00000160294       ENST00000291688 ENSE00003487436
655       46286297 ENSG00000160294       ENST00000291688 ENSE00003553058
656       46286297 ENSG00000160294       ENST00000291688 ENSE00003572625
657       46286297 ENSG00000160294       ENST00000291688 ENSE00003482081
658       46286297 ENSG00000160294       ENST00000291688 ENSE00003630073
659       46286297 ENSG00000160294       ENST00000291688 ENSE00003459748
660       46286297 ENSG00000160294       ENST00000291688 ENSE00003606597
661       46286297 ENSG00000160294       ENST00000291688 ENSE00003485376
662       46286297 ENSG00000160294       ENST00000291688 ENSE00001051222
663       46259390 ENSG00000215424       ENST00000590829 ENSE00002823050
664       46259390 ENSG00000215424       ENST00000590829 ENSE00001312905
665       46259390 ENSG00000215424       ENST00000590829 ENSE00002773042
666       46259390 ENSG00000215424       ENST00000591223 ENSE00001312905
667       46259390 ENSG00000215424       ENST00000591223 ENSE00002920131
668       46259390 ENSG00000215424       ENST00000591223 ENSE00002855596
669       46259390 ENSG00000215424       ENST00000414659 ENSE00001312905
670       46259390 ENSG00000215424       ENST00000414659 ENSE00001344241
671       46259390 ENSG00000215424       ENST00000414659 ENSE00001483121
672       46259390 ENSG00000215424       ENST00000414659 ENSE00001667261
673       46259390 ENSG00000215424       ENST00000432735 ENSE00001305889
674       46259390 ENSG00000215424       ENST00000432735 ENSE00001419892
675       46259390 ENSG00000215424       ENST00000432735 ENSE00001793841
676       46259390 ENSG00000215424       ENST00000444998 ENSE00001793841
677       46259390 ENSG00000215424       ENST00000444998 ENSE00001612115
678       46259390 ENSG00000215424       ENST00000455567 ENSE00001312905
679       46259390 ENSG00000215424       ENST00000455567 ENSE00001667261
680       46259390 ENSG00000215424       ENST00000455567 ENSE00001764670
681       46259390 ENSG00000215424       ENST00000421927 ENSE00001631322
682       46259390 ENSG00000215424       ENST00000421927 ENSE00001760389
683       46259390 ENSG00000215424       ENST00000588753 ENSE00002915067
684       46259390 ENSG00000215424       ENST00000588753 ENSE00002781108
685       46259390 ENSG00000215424       ENST00000588753 ENSE00002858811
686       46259390 ENSG00000215424       ENST00000420074 ENSE00001638204
687       46259390 ENSG00000215424       ENST00000420074 ENSE00001608729
688       46254133 ENSG00000239415       ENST00000447037 ENSE00001750338
689       46254133 ENSG00000239415       ENST00000447037 ENSE00001666775
690       46254133 ENSG00000239415       ENST00000430259 ENSE00001774125
691       46254133 ENSG00000239415       ENST00000430259 ENSE00001700485
692       46247682 ENSG00000228137       ENST00000444966 ENSE00001791667
693       46247682 ENSG00000228137       ENST00000444966 ENSE00001740737
694       46228824 ENSG00000160285       ENST00000356396 ENSE00001894078
695       46228824 ENSG00000160285       ENST00000356396 ENSE00003470036
696       46228824 ENSG00000160285       ENST00000356396 ENSE00003581204
697       46228824 ENSG00000160285       ENST00000356396 ENSE00003491878
698       46228824 ENSG00000160285       ENST00000356396 ENSE00003532484
699       46228824 ENSG00000160285       ENST00000356396 ENSE00003525946
700       46228824 ENSG00000160285       ENST00000356396 ENSE00003784869
701       46228824 ENSG00000160285       ENST00000356396 ENSE00003500657
702       46228824 ENSG00000160285       ENST00000356396 ENSE00001051158
703       46228824 ENSG00000160285       ENST00000356396 ENSE00001051181
704       46228824 ENSG00000160285       ENST00000356396 ENSE00001296974
705       46228824 ENSG00000160285       ENST00000356396 ENSE00001051175
706       46228824 ENSG00000160285       ENST00000356396 ENSE00001051174
707       46228824 ENSG00000160285       ENST00000356396 ENSE00001051179
708       46228824 ENSG00000160285       ENST00000356396 ENSE00001285727
709       46228824 ENSG00000160285       ENST00000356396 ENSE00001051185
710       46228824 ENSG00000160285       ENST00000356396 ENSE00001051152
711       46228824 ENSG00000160285       ENST00000356396 ENSE00001051183
712       46228824 ENSG00000160285       ENST00000356396 ENSE00003493443
713       46228824 ENSG00000160285       ENST00000356396 ENSE00001051167
714       46228824 ENSG00000160285       ENST00000356396 ENSE00001051182
715       46228824 ENSG00000160285       ENST00000356396 ENSE00001415142
716       46228824 ENSG00000160285       ENST00000356396 ENSE00003536777
717       46228824 ENSG00000160285       ENST00000491729 ENSE00001936292
718       46228824 ENSG00000160285       ENST00000491729 ENSE00001904479
719       46228824 ENSG00000160285       ENST00000491729 ENSE00001414492
720       46228824 ENSG00000160285       ENST00000397728 ENSE00003470036
721       46228824 ENSG00000160285       ENST00000397728 ENSE00003581204
722       46228824 ENSG00000160285       ENST00000397728 ENSE00003491878
723       46228824 ENSG00000160285       ENST00000397728 ENSE00003532484
724       46228824 ENSG00000160285       ENST00000397728 ENSE00003525946
725       46228824 ENSG00000160285       ENST00000397728 ENSE00003784869
726       46228824 ENSG00000160285       ENST00000397728 ENSE00003500657
727       46228824 ENSG00000160285       ENST00000397728 ENSE00001051158
728       46228824 ENSG00000160285       ENST00000397728 ENSE00001051181
729       46228824 ENSG00000160285       ENST00000397728 ENSE00001296974
730       46228824 ENSG00000160285       ENST00000397728 ENSE00001051175
731       46228824 ENSG00000160285       ENST00000397728 ENSE00001051174
732       46228824 ENSG00000160285       ENST00000397728 ENSE00001051179
733       46228824 ENSG00000160285       ENST00000397728 ENSE00001285727
734       46228824 ENSG00000160285       ENST00000397728 ENSE00001051185
735       46228824 ENSG00000160285       ENST00000397728 ENSE00001051152
736       46228824 ENSG00000160285       ENST00000397728 ENSE00001051183
737       46228824 ENSG00000160285       ENST00000397728 ENSE00003493443
738       46228824 ENSG00000160285       ENST00000397728 ENSE00001051167
739       46228824 ENSG00000160285       ENST00000397728 ENSE00001051182
740       46228824 ENSG00000160285       ENST00000397728 ENSE00003648196
741       46228824 ENSG00000160285       ENST00000397728 ENSE00003493068
742       46228824 ENSG00000160285       ENST00000419093 ENSE00001051182
743       46228824 ENSG00000160285       ENST00000419093 ENSE00001660756
744       46228824 ENSG00000160285       ENST00000419093 ENSE00001620839
745       46228824 ENSG00000160285       ENST00000474319 ENSE00001842859
746       46228824 ENSG00000160285       ENST00000474319 ENSE00003604982
747       46228824 ENSG00000160285       ENST00000522411 ENSE00003470036
748       46228824 ENSG00000160285       ENST00000522411 ENSE00003581204
749       46228824 ENSG00000160285       ENST00000522411 ENSE00003532484
750       46228824 ENSG00000160285       ENST00000522411 ENSE00003525946
751       46228824 ENSG00000160285       ENST00000522411 ENSE00003784869
752       46228824 ENSG00000160285       ENST00000522411 ENSE00003500657
753       46228824 ENSG00000160285       ENST00000522411 ENSE00001051158
754       46228824 ENSG00000160285       ENST00000522411 ENSE00001051181
755       46228824 ENSG00000160285       ENST00000522411 ENSE00001296974
756       46228824 ENSG00000160285       ENST00000522411 ENSE00001051175
757       46228824 ENSG00000160285       ENST00000522411 ENSE00001051174
758       46228824 ENSG00000160285       ENST00000522411 ENSE00001051179
759       46228824 ENSG00000160285       ENST00000522411 ENSE00001285727
760       46228824 ENSG00000160285       ENST00000522411 ENSE00001051185
761       46228824 ENSG00000160285       ENST00000522411 ENSE00001051152
762       46228824 ENSG00000160285       ENST00000522411 ENSE00001051183
763       46228824 ENSG00000160285       ENST00000522411 ENSE00003493443
764       46228824 ENSG00000160285       ENST00000522411 ENSE00001051167
765       46228824 ENSG00000160285       ENST00000522411 ENSE00001051182
766       46228824 ENSG00000160285       ENST00000522411 ENSE00002125527
767       46228824 ENSG00000160285       ENST00000522411 ENSE00001643951
768       46228824 ENSG00000160285       ENST00000522411 ENSE00002137517
769       46228824 ENSG00000160285       ENST00000484808 ENSE00001842323
770       46228824 ENSG00000160285       ENST00000484808 ENSE00003677959
771       46228824 ENSG00000160285       ENST00000464357 ENSE00001881795
772       46228824 ENSG00000160285       ENST00000464357 ENSE00003538704
773       46228824 ENSG00000160285       ENST00000464357 ENSE00003622265
774       46228824 ENSG00000160285       ENST00000464357 ENSE00003500120
775       46228824 ENSG00000160285       ENST00000464357 ENSE00003564674
776       46228824 ENSG00000160285       ENST00000464357 ENSE00003527897
777       46228824 ENSG00000160285       ENST00000464357 ENSE00003493703
778       46228824 ENSG00000160285       ENST00000450351 ENSE00003470036
779       46228824 ENSG00000160285       ENST00000450351 ENSE00003581204
780       46228824 ENSG00000160285       ENST00000450351 ENSE00003491878
781       46228824 ENSG00000160285       ENST00000450351 ENSE00003532484
782       46228824 ENSG00000160285       ENST00000450351 ENSE00003525946
783       46228824 ENSG00000160285       ENST00000450351 ENSE00003784869
784       46228824 ENSG00000160285       ENST00000450351 ENSE00001717484
785       46228824 ENSG00000160285       ENST00000472272 ENSE00001344217
786       46228824 ENSG00000160285       ENST00000472272 ENSE00003629865
787       46228824 ENSG00000160285       ENST00000472272 ENSE00001819912
788       46228824 ENSG00000160285       ENST00000457828 ENSE00003491878
789       46228824 ENSG00000160285       ENST00000457828 ENSE00003532484
790       46228824 ENSG00000160285       ENST00000457828 ENSE00003525946
791       46228824 ENSG00000160285       ENST00000457828 ENSE00003784869
792       46228824 ENSG00000160285       ENST00000457828 ENSE00003500657
793       46228824 ENSG00000160285       ENST00000457828 ENSE00001051158
794       46228824 ENSG00000160285       ENST00000457828 ENSE00001051181
795       46228824 ENSG00000160285       ENST00000457828 ENSE00001296974
796       46228824 ENSG00000160285       ENST00000457828 ENSE00001051175
797       46228824 ENSG00000160285       ENST00000457828 ENSE00001051174
798       46228824 ENSG00000160285       ENST00000457828 ENSE00001051179
799       46228824 ENSG00000160285       ENST00000457828 ENSE00001285727
800       46228824 ENSG00000160285       ENST00000457828 ENSE00001051185
801       46228824 ENSG00000160285       ENST00000457828 ENSE00001051152
802       46228824 ENSG00000160285       ENST00000457828 ENSE00001051183
803       46228824 ENSG00000160285       ENST00000457828 ENSE00003493443
804       46228824 ENSG00000160285       ENST00000457828 ENSE00001051167
805       46228824 ENSG00000160285       ENST00000457828 ENSE00001051182
806       46228824 ENSG00000160285       ENST00000457828 ENSE00002282628
807       46228824 ENSG00000160285       ENST00000457828 ENSE00003556063
808       46228824 ENSG00000160285       ENST00000457828 ENSE00002209641
809       46225364 ENSG00000223901       ENST00000418029 ENSE00001619066
810       46225364 ENSG00000223901       ENST00000418029 ENSE00003773090
811       46225364 ENSG00000223901       ENST00000626933 ENSE00003770624
812       46225364 ENSG00000223901       ENST00000626933 ENSE00001656573
813       46225364 ENSG00000223901       ENST00000626933 ENSE00003767484
814       46225364 ENSG00000223901       ENST00000626933 ENSE00003760665
815       46188941 ENSG00000228404       ENST00000415026 ENSE00001804194
816       46188941 ENSG00000228404       ENST00000415026 ENSE00001732405
817       46184476 ENSG00000160284       ENST00000291672 ENSE00001051147
818       46184476 ENSG00000160284       ENST00000291672 ENSE00001309448
819       46184476 ENSG00000160284       ENST00000291672 ENSE00002281221
820       46184476 ENSG00000160284       ENST00000291672 ENSE00003479913
821       46184476 ENSG00000160284       ENST00000291672 ENSE00002117665
822       46184476 ENSG00000160284       ENST00000330205 ENSE00001846176
823       46184476 ENSG00000160284       ENST00000330205 ENSE00003593001
824       46184476 ENSG00000160284       ENST00000330205 ENSE00001051147
825       46184476 ENSG00000160284       ENST00000330205 ENSE00001942963
826       46155567 ENSG00000160282       ENST00000483568 ENSE00003583249
827       46155567 ENSG00000160282       ENST00000483568 ENSE00001945718
828       46155567 ENSG00000160282       ENST00000483568 ENSE00003459852
829       46155567 ENSG00000160282       ENST00000460011 ENSE00003583249
830       46155567 ENSG00000160282       ENST00000460011 ENSE00003459852
831       46155567 ENSG00000160282       ENST00000460011 ENSE00001822816
832       46155567 ENSG00000160282       ENST00000460011 ENSE00003537411
833       46155567 ENSG00000160282       ENST00000460011 ENSE00001954775
834       46155567 ENSG00000160282       ENST00000498355 ENSE00003583249
835       46155567 ENSG00000160282       ENST00000498355 ENSE00003459852
836       46155567 ENSG00000160282       ENST00000498355 ENSE00003537411
837       46155567 ENSG00000160282       ENST00000498355 ENSE00003496449
838       46155567 ENSG00000160282       ENST00000498355 ENSE00003484320
839       46155567 ENSG00000160282       ENST00000498355 ENSE00003684905
840       46155567 ENSG00000160282       ENST00000498355 ENSE00001834425
841       46155567 ENSG00000160282       ENST00000498355 ENSE00003583297
842       46155567 ENSG00000160282       ENST00000498355 ENSE00003657756
843       46155567 ENSG00000160282       ENST00000498355 ENSE00003471194
844       46155567 ENSG00000160282       ENST00000498355 ENSE00003553506
845       46155567 ENSG00000160282       ENST00000498355 ENSE00003548804
846       46155567 ENSG00000160282       ENST00000498355 ENSE00003597812
847       46155567 ENSG00000160282       ENST00000498355 ENSE00003668063
848       46155567 ENSG00000160282       ENST00000498355 ENSE00001835896
849       46155567 ENSG00000160282       ENST00000291670 ENSE00003459852
850       46155567 ENSG00000160282       ENST00000291670 ENSE00003615828
851       46155567 ENSG00000160282       ENST00000291670 ENSE00003597294
852       46155567 ENSG00000160282       ENST00000291670 ENSE00003493394
853       46155567 ENSG00000160282       ENST00000291670 ENSE00001051131
854       46155567 ENSG00000160282       ENST00000291670 ENSE00003672954
855       46155567 ENSG00000160282       ENST00000291670 ENSE00003595298
856       46155567 ENSG00000160282       ENST00000291670 ENSE00003580136
857       46155567 ENSG00000160282       ENST00000291670 ENSE00003613882
858       46155567 ENSG00000160282       ENST00000291670 ENSE00003684003
859       46155567 ENSG00000160282       ENST00000291670 ENSE00003506553
860       46155567 ENSG00000160282       ENST00000291670 ENSE00003555273
861       46155567 ENSG00000160282       ENST00000291670 ENSE00003606219
862       46155567 ENSG00000160282       ENST00000291670 ENSE00003545440
863       46155567 ENSG00000160282       ENST00000291670 ENSE00003712935
864       46155567 ENSG00000160282       ENST00000397748 ENSE00003615828
865       46155567 ENSG00000160282       ENST00000397748 ENSE00003597294
866       46155567 ENSG00000160282       ENST00000397748 ENSE00003493394
867       46155567 ENSG00000160282       ENST00000397748 ENSE00001051131
868       46155567 ENSG00000160282       ENST00000397748 ENSE00003672954
869       46155567 ENSG00000160282       ENST00000397748 ENSE00003595298
870       46155567 ENSG00000160282       ENST00000397748 ENSE00003580136
871       46155567 ENSG00000160282       ENST00000397748 ENSE00003613882
872       46155567 ENSG00000160282       ENST00000397748 ENSE00003684003
873       46155567 ENSG00000160282       ENST00000397748 ENSE00003506553
874       46155567 ENSG00000160282       ENST00000397748 ENSE00003555273
875       46155567 ENSG00000160282       ENST00000397748 ENSE00003606219
876       46155567 ENSG00000160282       ENST00000397748 ENSE00003545440
877       46155567 ENSG00000160282       ENST00000397748 ENSE00001385976
878       46155567 ENSG00000160282       ENST00000397748 ENSE00003478862
879       46155567 ENSG00000160282       ENST00000446405 ENSE00003545440
880       46155567 ENSG00000160282       ENST00000446405 ENSE00001779518
881       46155567 ENSG00000160282       ENST00000446405 ENSE00001734884
882       46155567 ENSG00000160282       ENST00000397746 ENSE00003615828
883       46155567 ENSG00000160282       ENST00000397746 ENSE00003597294
884       46155567 ENSG00000160282       ENST00000397746 ENSE00003493394
885       46155567 ENSG00000160282       ENST00000397746 ENSE00001051131
886       46155567 ENSG00000160282       ENST00000397746 ENSE00003672954
887       46155567 ENSG00000160282       ENST00000397746 ENSE00003595298
888       46155567 ENSG00000160282       ENST00000397746 ENSE00003580136
889       46155567 ENSG00000160282       ENST00000397746 ENSE00003613882
890       46155567 ENSG00000160282       ENST00000397746 ENSE00003684003
891       46155567 ENSG00000160282       ENST00000397746 ENSE00003506553
892       46155567 ENSG00000160282       ENST00000397746 ENSE00003555273
893       46155567 ENSG00000160282       ENST00000397746 ENSE00003606219
894       46155567 ENSG00000160282       ENST00000397746 ENSE00003545440
895       46155567 ENSG00000160282       ENST00000397746 ENSE00003681420
896       46155567 ENSG00000160282       ENST00000397743 ENSE00003615828
897       46155567 ENSG00000160282       ENST00000397743 ENSE00003597294
898       46155567 ENSG00000160282       ENST00000397743 ENSE00003493394
899       46155567 ENSG00000160282       ENST00000397743 ENSE00001051131
900       46155567 ENSG00000160282       ENST00000397743 ENSE00003672954
901       46155567 ENSG00000160282       ENST00000397743 ENSE00003595298
902       46155567 ENSG00000160282       ENST00000397743 ENSE00003580136
903       46155567 ENSG00000160282       ENST00000397743 ENSE00003613882
904       46155567 ENSG00000160282       ENST00000397743 ENSE00003684003
905       46155567 ENSG00000160282       ENST00000397743 ENSE00003506553
906       46155567 ENSG00000160282       ENST00000397743 ENSE00003525931
907       46155567 ENSG00000160282       ENST00000397743 ENSE00003578617
908       46155567 ENSG00000160282       ENST00000397743 ENSE00003509476
909       46155567 ENSG00000160282       ENST00000494498 ENSE00003583249
910       46155567 ENSG00000160282       ENST00000494498 ENSE00003537411
911       46155567 ENSG00000160282       ENST00000494498 ENSE00003668063
912       46155567 ENSG00000160282       ENST00000494498 ENSE00001891398
913       46155567 ENSG00000160282       ENST00000488577 ENSE00001919083
914       46155567 ENSG00000160282       ENST00000488577 ENSE00001906631
915       46155567 ENSG00000160282       ENST00000488577 ENSE00001954164
916       46155567 ENSG00000160282       ENST00000480950 ENSE00003553506
917       46155567 ENSG00000160282       ENST00000480950 ENSE00001958239
918       46155567 ENSG00000160282       ENST00000480950 ENSE00001910597
919       46155567 ENSG00000160282       ENST00000469240 ENSE00001935847
920       46155567 ENSG00000160282       ENST00000469240 ENSE00001920442
921       46152647 ENSG00000237338       ENST00000446649 ENSE00001793539
922       46152647 ENSG00000237338       ENST00000446649 ENSE00001749111
923       46132849 ENSG00000142173       ENST00000300527 ENSE00001902209
924       46132849 ENSG00000142173       ENST00000300527 ENSE00000952665
925       46132849 ENSG00000142173       ENST00000300527 ENSE00001134048
926       46132849 ENSG00000142173       ENST00000300527 ENSE00000952667
927       46132849 ENSG00000142173       ENST00000300527 ENSE00001219451
928       46132849 ENSG00000142173       ENST00000300527 ENSE00003477309
929       46132849 ENSG00000142173       ENST00000300527 ENSE00003473000
930       46132849 ENSG00000142173       ENST00000300527 ENSE00003589368
931       46132849 ENSG00000142173       ENST00000300527 ENSE00003564562
932       46132849 ENSG00000142173       ENST00000300527 ENSE00003652273
933       46132849 ENSG00000142173       ENST00000300527 ENSE00000952674
934       46132849 ENSG00000142173       ENST00000300527 ENSE00000952704
935       46132849 ENSG00000142173       ENST00000300527 ENSE00000952707
936       46132849 ENSG00000142173       ENST00000300527 ENSE00000952695
937       46132849 ENSG00000142173       ENST00000300527 ENSE00000952678
938       46132849 ENSG00000142173       ENST00000300527 ENSE00000952696
939       46132849 ENSG00000142173       ENST00000300527 ENSE00000952699
940       46132849 ENSG00000142173       ENST00000300527 ENSE00001332369
941       46132849 ENSG00000142173       ENST00000300527 ENSE00001219267
942       46132849 ENSG00000142173       ENST00000300527 ENSE00000952683
943       46132849 ENSG00000142173       ENST00000300527 ENSE00000952697
944       46132849 ENSG00000142173       ENST00000300527 ENSE00001219263
945       46132849 ENSG00000142173       ENST00000300527 ENSE00000952705
946       46132849 ENSG00000142173       ENST00000300527 ENSE00001218880
947       46132849 ENSG00000142173       ENST00000300527 ENSE00001219302
948       46132849 ENSG00000142173       ENST00000300527 ENSE00001133859
949       46132849 ENSG00000142173       ENST00000300527 ENSE00001110398
950       46132849 ENSG00000142173       ENST00000300527 ENSE00000952691
951       46132849 ENSG00000142173       ENST00000436769 ENSE00000952665
952       46132849 ENSG00000142173       ENST00000436769 ENSE00001700317
953       46132849 ENSG00000142173       ENST00000436769 ENSE00001719735
954       46132849 ENSG00000142173       ENST00000409416 ENSE00001134048
955       46132849 ENSG00000142173       ENST00000409416 ENSE00000952667
956       46132849 ENSG00000142173       ENST00000409416 ENSE00001219451
957       46132849 ENSG00000142173       ENST00000409416 ENSE00003477309
958       46132849 ENSG00000142173       ENST00000409416 ENSE00003473000
959       46132849 ENSG00000142173       ENST00000409416 ENSE00003589368
960       46132849 ENSG00000142173       ENST00000409416 ENSE00003564562
961       46132849 ENSG00000142173       ENST00000409416 ENSE00003652273
962       46132849 ENSG00000142173       ENST00000409416 ENSE00000952674
963       46132849 ENSG00000142173       ENST00000409416 ENSE00000952704
964       46132849 ENSG00000142173       ENST00000409416 ENSE00000952707
965       46132849 ENSG00000142173       ENST00000409416 ENSE00000952695
966       46132849 ENSG00000142173       ENST00000409416 ENSE00000952678
967       46132849 ENSG00000142173       ENST00000409416 ENSE00000952696
968       46132849 ENSG00000142173       ENST00000409416 ENSE00000952699
969       46132849 ENSG00000142173       ENST00000409416 ENSE00001332369
970       46132849 ENSG00000142173       ENST00000409416 ENSE00001219267
971       46132849 ENSG00000142173       ENST00000409416 ENSE00000952683
972       46132849 ENSG00000142173       ENST00000409416 ENSE00000952697
973       46132849 ENSG00000142173       ENST00000409416 ENSE00001219263
974       46132849 ENSG00000142173       ENST00000409416 ENSE00000952705
975       46132849 ENSG00000142173       ENST00000409416 ENSE00001218880
976       46132849 ENSG00000142173       ENST00000409416 ENSE00001219302
977       46132849 ENSG00000142173       ENST00000409416 ENSE00001133859
978       46132849 ENSG00000142173       ENST00000409416 ENSE00001110398
979       46132849 ENSG00000142173       ENST00000409416 ENSE00001584872
980       46132849 ENSG00000142173       ENST00000409416 ENSE00001582755
981       46132849 ENSG00000142173       ENST00000397763 ENSE00000952665
982       46132849 ENSG00000142173       ENST00000397763 ENSE00001134048
983       46132849 ENSG00000142173       ENST00000397763 ENSE00000952667
984       46132849 ENSG00000142173       ENST00000397763 ENSE00001219451
985       46132849 ENSG00000142173       ENST00000397763 ENSE00003477309
986       46132849 ENSG00000142173       ENST00000397763 ENSE00003473000
987       46132849 ENSG00000142173       ENST00000397763 ENSE00003589368
988       46132849 ENSG00000142173       ENST00000397763 ENSE00003564562
989       46132849 ENSG00000142173       ENST00000397763 ENSE00003652273
990       46132849 ENSG00000142173       ENST00000397763 ENSE00000952674
991       46132849 ENSG00000142173       ENST00000397763 ENSE00000952704
992       46132849 ENSG00000142173       ENST00000397763 ENSE00000952707
993       46132849 ENSG00000142173       ENST00000397763 ENSE00000952695
994       46132849 ENSG00000142173       ENST00000397763 ENSE00000952678
995       46132849 ENSG00000142173       ENST00000397763 ENSE00000952696
996       46132849 ENSG00000142173       ENST00000397763 ENSE00000952699
997       46132849 ENSG00000142173       ENST00000397763 ENSE00001332369
998       46132849 ENSG00000142173       ENST00000397763 ENSE00001219267
999       46132849 ENSG00000142173       ENST00000397763 ENSE00000952683
1000      46132849 ENSG00000142173       ENST00000397763 ENSE00000952697
1001      46132849 ENSG00000142173       ENST00000397763 ENSE00001219263
1002      46132849 ENSG00000142173       ENST00000397763 ENSE00000952705
1003      46132849 ENSG00000142173       ENST00000397763 ENSE00001218880
1004      46132849 ENSG00000142173       ENST00000397763 ENSE00001219302
1005      46132849 ENSG00000142173       ENST00000397763 ENSE00001133859
1006      46132849 ENSG00000142173       ENST00000397763 ENSE00001110398
1007      46132849 ENSG00000142173       ENST00000397763 ENSE00001530047
1008      46132849 ENSG00000142173       ENST00000460886 ENSE00001941337
1009      46132849 ENSG00000142173       ENST00000460886 ENSE00001895403
1010      46132849 ENSG00000142173       ENST00000485591 ENSE00001870884
1011      46132849 ENSG00000142173       ENST00000485591 ENSE00003511430
1012      46132849 ENSG00000142173       ENST00000485591 ENSE00003507459
1013      46132849 ENSG00000142173       ENST00000485591 ENSE00003569914
1014      46132849 ENSG00000142173       ENST00000485591 ENSE00003536878
1015      46132849 ENSG00000142173       ENST00000485591 ENSE00003677337
1016      46132849 ENSG00000142173       ENST00000485591 ENSE00001952021
1017      46132849 ENSG00000142173       ENST00000413758 ENSE00000952699
1018      46132849 ENSG00000142173       ENST00000413758 ENSE00001332369
1019      46132849 ENSG00000142173       ENST00000413758 ENSE00001219267
1020      46132849 ENSG00000142173       ENST00000413758 ENSE00000952683
1021      46132849 ENSG00000142173       ENST00000413758 ENSE00000952697
1022      46132849 ENSG00000142173       ENST00000413758 ENSE00001219263
1023      46132849 ENSG00000142173       ENST00000413758 ENSE00000952705
1024      46132849 ENSG00000142173       ENST00000413758 ENSE00001218880
1025      46132849 ENSG00000142173       ENST00000413758 ENSE00002492269
1026      46132849 ENSG00000142173       ENST00000413758 ENSE00001718972
1027      46132849 ENSG00000142173       ENST00000413758 ENSE00001643861
1028      46132849 ENSG00000142173       ENST00000310645 ENSE00000952665
1029      46132849 ENSG00000142173       ENST00000310645 ENSE00001134048
1030      46132849 ENSG00000142173       ENST00000310645 ENSE00000952667
1031      46132849 ENSG00000142173       ENST00000310645 ENSE00001219451
1032      46132849 ENSG00000142173       ENST00000310645 ENSE00003477309
1033      46132849 ENSG00000142173       ENST00000310645 ENSE00003473000
1034      46132849 ENSG00000142173       ENST00000310645 ENSE00003589368
1035      46132849 ENSG00000142173       ENST00000310645 ENSE00003564562
1036      46132849 ENSG00000142173       ENST00000310645 ENSE00003652273
1037      46132849 ENSG00000142173       ENST00000310645 ENSE00000952674
1038      46132849 ENSG00000142173       ENST00000310645 ENSE00000952704
1039      46132849 ENSG00000142173       ENST00000310645 ENSE00000952707
1040      46132849 ENSG00000142173       ENST00000310645 ENSE00000952695
1041      46132849 ENSG00000142173       ENST00000310645 ENSE00000952678
1042      46132849 ENSG00000142173       ENST00000310645 ENSE00000952696
1043      46132849 ENSG00000142173       ENST00000310645 ENSE00000952699
1044      46132849 ENSG00000142173       ENST00000310645 ENSE00001332369
1045      46132849 ENSG00000142173       ENST00000310645 ENSE00001219267
1046      46132849 ENSG00000142173       ENST00000310645 ENSE00000952683
1047      46132849 ENSG00000142173       ENST00000310645 ENSE00000952697
1048      46132849 ENSG00000142173       ENST00000310645 ENSE00001219263
1049      46132849 ENSG00000142173       ENST00000310645 ENSE00000952705
1050      46132849 ENSG00000142173       ENST00000310645 ENSE00001218880
1051      46132849 ENSG00000142173       ENST00000310645 ENSE00001219302
1052      46132849 ENSG00000142173       ENST00000310645 ENSE00001133859
1053      46132849 ENSG00000142173       ENST00000310645 ENSE00001110398
1054      46132849 ENSG00000142173       ENST00000310645 ENSE00001110410
1055      46132849 ENSG00000142173       ENST00000310645 ENSE00001314213
1056      46097530 ENSG00000227438       ENST00000454245 ENSE00001776573
1057      46097530 ENSG00000227438       ENST00000454245 ENSE00001661271
1058      46072248 ENSG00000233767       ENST00000428242 ENSE00001594272
1059      46057567 ENSG00000226115       ENST00000435738 ENSE00001648638
1060      46057567 ENSG00000226115       ENST00000435738 ENSE00001764024
1061      46053105 ENSG00000228235       ENST00000429512 ENSE00001613855
1062      46053105 ENSG00000228235       ENST00000429512 ENSE00001801618
1063      46039807 ENSG00000224413       ENST00000451618 ENSE00001746523
1064      46039807 ENSG00000224413       ENST00000451618 ENSE00001806459
1065      46005050 ENSG00000142156       ENST00000361866 ENSE00001436541
1066      46005050 ENSG00000142156       ENST00000361866 ENSE00000952543
1067      46005050 ENSG00000142156       ENST00000361866 ENSE00002693513
1068      46005050 ENSG00000142156       ENST00000361866 ENSE00002468227
1069      46005050 ENSG00000142156       ENST00000361866 ENSE00002430903
1070      46005050 ENSG00000142156       ENST00000361866 ENSE00002444369
1071      46005050 ENSG00000142156       ENST00000361866 ENSE00002457874
1072      46005050 ENSG00000142156       ENST00000361866 ENSE00002517632
1073      46005050 ENSG00000142156       ENST00000361866 ENSE00002473380
1074      46005050 ENSG00000142156       ENST00000361866 ENSE00002442314
1075      46005050 ENSG00000142156       ENST00000361866 ENSE00002514254
1076      46005050 ENSG00000142156       ENST00000361866 ENSE00002446605
1077      46005050 ENSG00000142156       ENST00000361866 ENSE00002492838
1078      46005050 ENSG00000142156       ENST00000361866 ENSE00002477756
1079      46005050 ENSG00000142156       ENST00000361866 ENSE00002450819
1080      46005050 ENSG00000142156       ENST00000361866 ENSE00002494313
1081      46005050 ENSG00000142156       ENST00000361866 ENSE00002468467
1082      46005050 ENSG00000142156       ENST00000361866 ENSE00002500444
1083      46005050 ENSG00000142156       ENST00000361866 ENSE00002449732
1084      46005050 ENSG00000142156       ENST00000361866 ENSE00002470662
1085      46005050 ENSG00000142156       ENST00000361866 ENSE00002459279
1086      46005050 ENSG00000142156       ENST00000361866 ENSE00002465494
1087      46005050 ENSG00000142156       ENST00000361866 ENSE00002478448
1088      46005050 ENSG00000142156       ENST00000361866 ENSE00002505064
1089      46005050 ENSG00000142156       ENST00000361866 ENSE00002525270
1090      46005050 ENSG00000142156       ENST00000361866 ENSE00002519552
1091      46005050 ENSG00000142156       ENST00000361866 ENSE00002495880
1092      46005050 ENSG00000142156       ENST00000361866 ENSE00003466321
1093      46005050 ENSG00000142156       ENST00000361866 ENSE00002483667
1094      46005050 ENSG00000142156       ENST00000361866 ENSE00003665865
1095      46005050 ENSG00000142156       ENST00000361866 ENSE00003672421
1096      46005050 ENSG00000142156       ENST00000361866 ENSE00003587026
1097      46005050 ENSG00000142156       ENST00000361866 ENSE00003560168
1098      46005050 ENSG00000142156       ENST00000361866 ENSE00003615014
1099      46005050 ENSG00000142156       ENST00000361866 ENSE00003606957
1100      46005050 ENSG00000142156       ENST00000492851 ENSE00001903439
1101      46005050 ENSG00000142156       ENST00000492851 ENSE00001952397
1102      46005050 ENSG00000142156       ENST00000466285 ENSE00001922911
1103      46005050 ENSG00000142156       ENST00000466285 ENSE00003624032
1104      46005050 ENSG00000142156       ENST00000466285 ENSE00001917616
1105      46005050 ENSG00000142156       ENST00000463060 ENSE00001893250
1106      46005050 ENSG00000142156       ENST00000463060 ENSE00003630961
1107      46005050 ENSG00000142156       ENST00000463060 ENSE00003582235
1108      46005050 ENSG00000142156       ENST00000463060 ENSE00003677365
1109      46005050 ENSG00000142156       ENST00000463060 ENSE00003547340
1110      46005050 ENSG00000142156       ENST00000463060 ENSE00003668198
1111      46005050 ENSG00000142156       ENST00000498614 ENSE00003582235
1112      46005050 ENSG00000142156       ENST00000498614 ENSE00003677365
1113      46005050 ENSG00000142156       ENST00000498614 ENSE00003547340
1114      46005050 ENSG00000142156       ENST00000498614 ENSE00003668198
1115      46005050 ENSG00000142156       ENST00000498614 ENSE00001858383
1116      46005050 ENSG00000142156       ENST00000498614 ENSE00003632905
1117      46005050 ENSG00000142156       ENST00000486023 ENSE00003668198
1118      46005050 ENSG00000142156       ENST00000486023 ENSE00001856981
1119      46005050 ENSG00000142156       ENST00000486023 ENSE00001901960
1120      46005050 ENSG00000142156       ENST00000612273 ENSE00000952543
1121      46005050 ENSG00000142156       ENST00000612273 ENSE00002693513
1122      46005050 ENSG00000142156       ENST00000612273 ENSE00002468227
1123      46005050 ENSG00000142156       ENST00000612273 ENSE00002430903
1124      46005050 ENSG00000142156       ENST00000612273 ENSE00002444369
1125      46005050 ENSG00000142156       ENST00000612273 ENSE00002457874
1126      46005050 ENSG00000142156       ENST00000612273 ENSE00002517632
1127      46005050 ENSG00000142156       ENST00000612273 ENSE00002473380
1128      46005050 ENSG00000142156       ENST00000612273 ENSE00002442314
1129      46005050 ENSG00000142156       ENST00000612273 ENSE00002514254
1130      46005050 ENSG00000142156       ENST00000612273 ENSE00002446605
1131      46005050 ENSG00000142156       ENST00000612273 ENSE00002492838
1132      46005050 ENSG00000142156       ENST00000612273 ENSE00002477756
1133      46005050 ENSG00000142156       ENST00000612273 ENSE00002450819
1134      46005050 ENSG00000142156       ENST00000612273 ENSE00002494313
1135      46005050 ENSG00000142156       ENST00000612273 ENSE00002468467
1136      46005050 ENSG00000142156       ENST00000612273 ENSE00002500444
1137      46005050 ENSG00000142156       ENST00000612273 ENSE00002449732
1138      46005050 ENSG00000142156       ENST00000612273 ENSE00002470662
1139      46005050 ENSG00000142156       ENST00000612273 ENSE00002459279
1140      46005050 ENSG00000142156       ENST00000612273 ENSE00002465494
1141      46005050 ENSG00000142156       ENST00000612273 ENSE00002478448
1142      46005050 ENSG00000142156       ENST00000612273 ENSE00002505064
1143      46005050 ENSG00000142156       ENST00000612273 ENSE00002525270
1144      46005050 ENSG00000142156       ENST00000612273 ENSE00002519552
1145      46005050 ENSG00000142156       ENST00000612273 ENSE00002495880
1146      46005050 ENSG00000142156       ENST00000612273 ENSE00003665865
1147      46005050 ENSG00000142156       ENST00000612273 ENSE00003672421
1148      46005050 ENSG00000142156       ENST00000612273 ENSE00003587026
1149      46005050 ENSG00000142156       ENST00000612273 ENSE00003560168
1150      46005050 ENSG00000142156       ENST00000612273 ENSE00003615014
1151      46005050 ENSG00000142156       ENST00000612273 ENSE00003742428
1152      46005050 ENSG00000142156       ENST00000612273 ENSE00003752431
1153      46005050 ENSG00000142156       ENST00000612273 ENSE00003753322
1154      45974953 ENSG00000274248       ENST00000621707 ENSE00003725750
1155      45942454 ENSG00000183570       ENST00000465077 ENSE00001542370
1156      45942454 ENSG00000183570       ENST00000465077 ENSE00001853497
1157      45942454 ENSG00000183570       ENST00000465077 ENSE00001542369
1158      45942454 ENSG00000183570       ENST00000465077 ENSE00001924472
1159      45942454 ENSG00000183570       ENST00000400314 ENSE00001542370
1160      45942454 ENSG00000183570       ENST00000400314 ENSE00001542369
1161      45942454 ENSG00000183570       ENST00000400314 ENSE00002301087
1162      45942454 ENSG00000183570       ENST00000400314 ENSE00003745442
1163      45942454 ENSG00000183570       ENST00000400314 ENSE00003639940
1164      45942454 ENSG00000183570       ENST00000400314 ENSE00003535780
1165      45942454 ENSG00000183570       ENST00000400314 ENSE00001299723
1166      45942454 ENSG00000183570       ENST00000400314 ENSE00003585868
1167      45942454 ENSG00000183570       ENST00000400314 ENSE00003605727
1168      45942454 ENSG00000183570       ENST00000400314 ENSE00003637603
1169      45942454 ENSG00000183570       ENST00000400314 ENSE00003472505
1170      45942454 ENSG00000183570       ENST00000400314 ENSE00001322404
1171      45942454 ENSG00000183570       ENST00000400314 ENSE00003588949
1172      45942454 ENSG00000183570       ENST00000400314 ENSE00003604223
1173      45942454 ENSG00000183570       ENST00000400314 ENSE00003635207
1174      45942454 ENSG00000183570       ENST00000400314 ENSE00001542363
1175      45942454 ENSG00000183570       ENST00000472191 ENSE00001911830
1176      45942454 ENSG00000183570       ENST00000472191 ENSE00001814839
1177      45942454 ENSG00000183570       ENST00000594149 ENSE00001542369
1178      45942454 ENSG00000183570       ENST00000594149 ENSE00003131757
1179      45942454 ENSG00000183570       ENST00000594149 ENSE00003102660
1180      45942454 ENSG00000183570       ENST00000594149 ENSE00003206302
1181      45942454 ENSG00000183570       ENST00000594149 ENSE00003153945
1182      45942454 ENSG00000183570       ENST00000594149 ENSE00003135154
1183      45942454 ENSG00000183570       ENST00000628776 ENSE00001542369
1184      45942454 ENSG00000183570       ENST00000628776 ENSE00003102660
1185      45942454 ENSG00000183570       ENST00000628776 ENSE00003770149
1186      45942454 ENSG00000183570       ENST00000628776 ENSE00003760527
1187      45942454 ENSG00000183570       ENST00000593338 ENSE00001542369
1188      45942454 ENSG00000183570       ENST00000593338 ENSE00002991250
1189      45942454 ENSG00000183570       ENST00000609985 ENSE00003711418
1190      45942454 ENSG00000183570       ENST00000609985 ENSE00003711290
1191      45942454 ENSG00000183570       ENST00000594320 ENSE00003221019
1192      45942454 ENSG00000183570       ENST00000594320 ENSE00003163290
1193      45942454 ENSG00000183570       ENST00000610200 ENSE00003710657
1194      45942454 ENSG00000183570       ENST00000610200 ENSE00003706811
1195      45942454 ENSG00000183570       ENST00000610200 ENSE00003708479
1196      45942454 ENSG00000183570       ENST00000423045 ENSE00001639242
1197      45942454 ENSG00000183570       ENST00000423045 ENSE00001598306
1198      45942454 ENSG00000183570       ENST00000423045 ENSE00001783050
1199      45942454 ENSG00000183570       ENST00000400310 ENSE00002301087
1200      45942454 ENSG00000183570       ENST00000400310 ENSE00003745442
1201      45942454 ENSG00000183570       ENST00000400310 ENSE00003639940
1202      45942454 ENSG00000183570       ENST00000400310 ENSE00003535780
1203      45942454 ENSG00000183570       ENST00000400310 ENSE00001299723
1204      45942454 ENSG00000183570       ENST00000400310 ENSE00003585868
1205      45942454 ENSG00000183570       ENST00000400310 ENSE00003605727
1206      45942454 ENSG00000183570       ENST00000400310 ENSE00003637603
1207      45942454 ENSG00000183570       ENST00000400310 ENSE00003472505
1208      45942454 ENSG00000183570       ENST00000400310 ENSE00001322404
1209      45942454 ENSG00000183570       ENST00000400310 ENSE00003604223
1210      45942454 ENSG00000183570       ENST00000400310 ENSE00003635207
1211      45942454 ENSG00000183570       ENST00000400310 ENSE00001542363
1212      45942454 ENSG00000183570       ENST00000400310 ENSE00001542355
1213      45942454 ENSG00000183570       ENST00000400309 ENSE00002301087
1214      45942454 ENSG00000183570       ENST00000400309 ENSE00003745442
1215      45942454 ENSG00000183570       ENST00000400309 ENSE00003639940
1216      45942454 ENSG00000183570       ENST00000400309 ENSE00003535780
1217      45942454 ENSG00000183570       ENST00000400309 ENSE00001299723
1218      45942454 ENSG00000183570       ENST00000400309 ENSE00003585868
1219      45942454 ENSG00000183570       ENST00000400309 ENSE00003605727
1220      45942454 ENSG00000183570       ENST00000400309 ENSE00003637603
1221      45942454 ENSG00000183570       ENST00000400309 ENSE00003472505
1222      45942454 ENSG00000183570       ENST00000400309 ENSE00003588949
1223      45942454 ENSG00000183570       ENST00000400309 ENSE00003604223
1224      45942454 ENSG00000183570       ENST00000400309 ENSE00003635207
1225      45942454 ENSG00000183570       ENST00000400309 ENSE00001542363
1226      45942454 ENSG00000183570       ENST00000400309 ENSE00003608301
1227      45942454 ENSG00000183570       ENST00000400308 ENSE00002301087
1228      45942454 ENSG00000183570       ENST00000400308 ENSE00003745442
1229      45942454 ENSG00000183570       ENST00000400308 ENSE00003639940
1230      45942454 ENSG00000183570       ENST00000400308 ENSE00003535780
1231      45942454 ENSG00000183570       ENST00000400308 ENSE00001299723
1232      45942454 ENSG00000183570       ENST00000400308 ENSE00003585868
1233      45942454 ENSG00000183570       ENST00000400308 ENSE00003605727
1234      45942454 ENSG00000183570       ENST00000400308 ENSE00003472505
1235      45942454 ENSG00000183570       ENST00000400308 ENSE00003588949
1236      45942454 ENSG00000183570       ENST00000400308 ENSE00003604223
1237      45942454 ENSG00000183570       ENST00000400308 ENSE00003635207
1238      45942454 ENSG00000183570       ENST00000400308 ENSE00001542363
1239      45942454 ENSG00000183570       ENST00000400308 ENSE00003608301
1240      45942454 ENSG00000183570       ENST00000481302 ENSE00001933220
1241      45942454 ENSG00000183570       ENST00000481302 ENSE00001915764
1242      45942454 ENSG00000183570       ENST00000481302 ENSE00001829740
1243      45942454 ENSG00000183570       ENST00000481302 ENSE00001885836
1244      45942454 ENSG00000183570       ENST00000481302 ENSE00001913159
1245      45942454 ENSG00000183570       ENST00000498121 ENSE00001875157
1246      45942454 ENSG00000183570       ENST00000498121 ENSE00001829028
1247      45942454 ENSG00000183570       ENST00000498121 ENSE00003610926
1248      45942454 ENSG00000183570       ENST00000498121 ENSE00003676995
1249      45942454 ENSG00000183570       ENST00000498121 ENSE00003637800
1250      45942454 ENSG00000183570       ENST00000498121 ENSE00001836019
1251      45942454 ENSG00000183570       ENST00000549265 ENSE00002357425
1252      45942454 ENSG00000183570       ENST00000549265 ENSE00002371274
1253      45942454 ENSG00000183570       ENST00000400305 ENSE00003639940
1254      45942454 ENSG00000183570       ENST00000400305 ENSE00003535780
1255      45942454 ENSG00000183570       ENST00000400305 ENSE00001299723
1256      45942454 ENSG00000183570       ENST00000400305 ENSE00003585868
1257      45942454 ENSG00000183570       ENST00000400305 ENSE00003605727
1258      45942454 ENSG00000183570       ENST00000400305 ENSE00003472505
1259      45942454 ENSG00000183570       ENST00000400305 ENSE00001322404
1260      45942454 ENSG00000183570       ENST00000400305 ENSE00003588949
1261      45942454 ENSG00000183570       ENST00000400305 ENSE00003604223
1262      45942454 ENSG00000183570       ENST00000400305 ENSE00003635207
1263      45942454 ENSG00000183570       ENST00000400305 ENSE00001542363
1264      45942454 ENSG00000183570       ENST00000400305 ENSE00001542346
1265      45942454 ENSG00000183570       ENST00000400304 ENSE00003639940
1266      45942454 ENSG00000183570       ENST00000400304 ENSE00003535780
1267      45942454 ENSG00000183570       ENST00000400304 ENSE00001299723
1268      45942454 ENSG00000183570       ENST00000400304 ENSE00003585868
1269      45942454 ENSG00000183570       ENST00000400304 ENSE00003605727
1270      45942454 ENSG00000183570       ENST00000400304 ENSE00003472505
1271      45942454 ENSG00000183570       ENST00000400304 ENSE00003588949
1272      45942454 ENSG00000183570       ENST00000400304 ENSE00003604223
1273      45942454 ENSG00000183570       ENST00000400304 ENSE00003635207
1274      45942454 ENSG00000183570       ENST00000400304 ENSE00003608301
1275      45942454 ENSG00000183570       ENST00000400304 ENSE00001542345
1276      45942454 ENSG00000183570       ENST00000400304 ENSE00001542385
1277      45942454 ENSG00000183570       ENST00000400304 ENSE00003790315
1278      45942454 ENSG00000183570       ENST00000468429 ENSE00001922608
1279      45942454 ENSG00000183570       ENST00000468429 ENSE00003552191
1280      45942454 ENSG00000183570       ENST00000468429 ENSE00003645916
1281      45942454 ENSG00000183570       ENST00000468429 ENSE00003615314
1282      45942454 ENSG00000183570       ENST00000468429 ENSE00003683433
1283      45942454 ENSG00000183570       ENST00000468429 ENSE00003571626
1284      45942454 ENSG00000183570       ENST00000468429 ENSE00003581808
1285      45942454 ENSG00000183570       ENST00000468429 ENSE00003551938
1286      45942454 ENSG00000183570       ENST00000468429 ENSE00001955924
1287      45942454 ENSG00000183570       ENST00000475402 ENSE00003683433
1288      45942454 ENSG00000183570       ENST00000475402 ENSE00003551938
1289      45942454 ENSG00000183570       ENST00000475402 ENSE00001881410
1290      45942454 ENSG00000183570       ENST00000475402 ENSE00003487400
1291      45942454 ENSG00000183570       ENST00000475402 ENSE00001864561
1292      45942454 ENSG00000183570       ENST00000449640 ENSE00003639940
1293      45942454 ENSG00000183570       ENST00000449640 ENSE00003535780
1294      45942454 ENSG00000183570       ENST00000449640 ENSE00001299723
1295      45942454 ENSG00000183570       ENST00000449640 ENSE00003585868
1296      45942454 ENSG00000183570       ENST00000449640 ENSE00003605727
1297      45942454 ENSG00000183570       ENST00000449640 ENSE00003472505
1298      45942454 ENSG00000183570       ENST00000449640 ENSE00003588949
1299      45942454 ENSG00000183570       ENST00000449640 ENSE00003604223
1300      45942454 ENSG00000183570       ENST00000449640 ENSE00003635207
1301      45942454 ENSG00000183570       ENST00000449640 ENSE00003608301
1302      45942454 ENSG00000183570       ENST00000449640 ENSE00001542385
1303      45942454 ENSG00000183570       ENST00000449640 ENSE00003790315
1304      45942454 ENSG00000183570       ENST00000449640 ENSE00003739100
1305      45942454 ENSG00000183570       ENST00000449640 ENSE00003734784
1306      45919483 ENSG00000280604       ENST00000626237 ENSE00003774066
1307      45919483 ENSG00000280604       ENST00000626237 ENSE00003763886
1308      45919483 ENSG00000280604       ENST00000626237 ENSE00003760972
1309      45873345 ENSG00000276633       ENST00000618749 ENSE00003740681
1310      45836419 ENSG00000205424       ENST00000380008 ENSE00001483375
1311      45836419 ENSG00000205424       ENST00000380008 ENSE00001483374
1312      45836419 ENSG00000205424       ENST00000380008 ENSE00001483372
1313      45763758 ENSG00000275139       ENST00000617854 ENSE00003716006
1314      45603056 ENSG00000233922       ENST00000441095 ENSE00001758835
1315      45603056 ENSG00000233922       ENST00000441095 ENSE00001782558
1316      45603056 ENSG00000233922       ENST00000424569 ENSE00001769309
1317      45603056 ENSG00000233922       ENST00000424569 ENSE00001678177
1318      45603056 ENSG00000233922       ENST00000424569 ENSE00001742227
1319      45544411 ENSG00000173638       ENST00000417954 ENSE00001638523
1320      45544411 ENSG00000173638       ENST00000417954 ENSE00001210607
1321      45544411 ENSG00000173638       ENST00000417954 ENSE00002299646
1322      45544411 ENSG00000173638       ENST00000417954 ENSE00001483422
1323      45544411 ENSG00000173638       ENST00000417954 ENSE00001795265
1324      45544411 ENSG00000173638       ENST00000567670 ENSE00001210607
1325      45544411 ENSG00000173638       ENST00000567670 ENSE00002299646
1326      45544411 ENSG00000173638       ENST00000567670 ENSE00002608273
1327      45544411 ENSG00000173638       ENST00000567670 ENSE00002734562
1328      45544411 ENSG00000173638       ENST00000567670 ENSE00002448210
1329      45544411 ENSG00000173638       ENST00000567670 ENSE00002618089
1330      45544411 ENSG00000173638       ENST00000461785 ENSE00001940589
1331      45544411 ENSG00000173638       ENST00000461785 ENSE00001958145
1332      45544411 ENSG00000173638       ENST00000468508 ENSE00001904088
1333      45544411 ENSG00000173638       ENST00000468508 ENSE00001888727
1334      45544411 ENSG00000173638       ENST00000460174 ENSE00001946834
1335      45544411 ENSG00000173638       ENST00000460174 ENSE00001711757
1336      45544411 ENSG00000173638       ENST00000460174 ENSE00001925563
1337      45544411 ENSG00000173638       ENST00000460174 ENSE00001881847
1338      45544411 ENSG00000173638       ENST00000311124 ENSE00001210607
1339      45544411 ENSG00000173638       ENST00000311124 ENSE00002299646
1340      45544411 ENSG00000173638       ENST00000311124 ENSE00002734562
1341      45544411 ENSG00000173638       ENST00000311124 ENSE00002448210
1342      45544411 ENSG00000173638       ENST00000311124 ENSE00001857378
1343      45544411 ENSG00000173638       ENST00000311124 ENSE00001210645
1344      45544411 ENSG00000173638       ENST00000380010 ENSE00001210607
1345      45544411 ENSG00000173638       ENST00000380010 ENSE00002299646
1346      45544411 ENSG00000173638       ENST00000380010 ENSE00002734562
1347      45544411 ENSG00000173638       ENST00000380010 ENSE00002448210
1348      45544411 ENSG00000173638       ENST00000380010 ENSE00001857378
1349      45544411 ENSG00000173638       ENST00000380010 ENSE00001880694
1350      45544411 ENSG00000173638       ENST00000485649 ENSE00001210607
1351      45544411 ENSG00000173638       ENST00000485649 ENSE00002299646
1352      45544411 ENSG00000173638       ENST00000485649 ENSE00002448210
1353      45544411 ENSG00000173638       ENST00000485649 ENSE00001949385
1354      45544411 ENSG00000173638       ENST00000485649 ENSE00002315751
1355      45544411 ENSG00000173638       ENST00000427839 ENSE00002734562
1356      45544411 ENSG00000173638       ENST00000427839 ENSE00001769708
1357      45544411 ENSG00000173638       ENST00000427839 ENSE00001789884
1358      45544411 ENSG00000173638       ENST00000443742 ENSE00002734562
1359      45544411 ENSG00000173638       ENST00000443742 ENSE00001609753
1360      45544411 ENSG00000173638       ENST00000443742 ENSE00001644617
1361      45544411 ENSG00000173638       ENST00000486303 ENSE00001872362
1362      45544411 ENSG00000173638       ENST00000486303 ENSE00001869151
1363      45544411 ENSG00000173638       ENST00000528477 ENSE00002140206
1364      45544411 ENSG00000173638       ENST00000528477 ENSE00002166597
1365      45544411 ENSG00000173638       ENST00000528477 ENSE00002184510
1366      45513720 ENSG00000182871       ENST00000400337 ENSE00001758888
1367      45513720 ENSG00000182871       ENST00000400337 ENSE00001603969
1368      45513720 ENSG00000182871       ENST00000400337 ENSE00001654135
1369      45513720 ENSG00000182871       ENST00000400337 ENSE00001640622
1370      45513720 ENSG00000182871       ENST00000400337 ENSE00001722709
1371      45513720 ENSG00000182871       ENST00000400337 ENSE00001740104
1372      45513720 ENSG00000182871       ENST00000400337 ENSE00001627003
1373      45513720 ENSG00000182871       ENST00000400337 ENSE00001638049
1374      45513720 ENSG00000182871       ENST00000400337 ENSE00001595082
1375      45513720 ENSG00000182871       ENST00000400337 ENSE00001685925
1376      45513720 ENSG00000182871       ENST00000400337 ENSE00001758572
1377      45513720 ENSG00000182871       ENST00000400337 ENSE00001617212
1378      45513720 ENSG00000182871       ENST00000400337 ENSE00001619008
1379      45513720 ENSG00000182871       ENST00000400337 ENSE00001665017
1380      45513720 ENSG00000182871       ENST00000400337 ENSE00001748652
1381      45513720 ENSG00000182871       ENST00000400337 ENSE00001760845
1382      45513720 ENSG00000182871       ENST00000400337 ENSE00001705636
1383      45513720 ENSG00000182871       ENST00000400337 ENSE00001712155
1384      45513720 ENSG00000182871       ENST00000400337 ENSE00001677445
1385      45513720 ENSG00000182871       ENST00000400337 ENSE00001759875
1386      45513720 ENSG00000182871       ENST00000400337 ENSE00001792883
1387      45513720 ENSG00000182871       ENST00000400337 ENSE00001742681
1388      45513720 ENSG00000182871       ENST00000400337 ENSE00001649344
1389      45513720 ENSG00000182871       ENST00000400337 ENSE00001701626
1390      45513720 ENSG00000182871       ENST00000400337 ENSE00001654943
1391      45513720 ENSG00000182871       ENST00000400337 ENSE00003523340
1392      45513720 ENSG00000182871       ENST00000400337 ENSE00003594559
1393      45513720 ENSG00000182871       ENST00000400337 ENSE00003563378
1394      45513720 ENSG00000182871       ENST00000400337 ENSE00003601528
1395      45513720 ENSG00000182871       ENST00000400337 ENSE00003582147
1396      45513720 ENSG00000182871       ENST00000400337 ENSE00003624748
1397      45513720 ENSG00000182871       ENST00000400337 ENSE00001717282
1398      45513720 ENSG00000182871       ENST00000400337 ENSE00001638654
1399      45513720 ENSG00000182871       ENST00000400337 ENSE00001601591
1400      45513720 ENSG00000182871       ENST00000400337 ENSE00001761211
1401      45513720 ENSG00000182871       ENST00000400337 ENSE00001725836
1402      45513720 ENSG00000182871       ENST00000400337 ENSE00001717154
1403      45513720 ENSG00000182871       ENST00000400337 ENSE00002238826
1404      45513720 ENSG00000182871       ENST00000400337 ENSE00003582883
1405      45513720 ENSG00000182871       ENST00000400337 ENSE00003643178
1406      45513720 ENSG00000182871       ENST00000400337 ENSE00003588504
1407      45513720 ENSG00000182871       ENST00000400337 ENSE00001542501
1408      45513720 ENSG00000182871       ENST00000355480 ENSE00001654135
1409      45513720 ENSG00000182871       ENST00000355480 ENSE00001640622
1410      45513720 ENSG00000182871       ENST00000355480 ENSE00001722709
1411      45513720 ENSG00000182871       ENST00000355480 ENSE00001740104
1412      45513720 ENSG00000182871       ENST00000355480 ENSE00001627003
1413      45513720 ENSG00000182871       ENST00000355480 ENSE00001638049
1414      45513720 ENSG00000182871       ENST00000355480 ENSE00001595082
1415      45513720 ENSG00000182871       ENST00000355480 ENSE00001685925
1416      45513720 ENSG00000182871       ENST00000355480 ENSE00001758572
1417      45513720 ENSG00000182871       ENST00000355480 ENSE00001617212
1418      45513720 ENSG00000182871       ENST00000355480 ENSE00001619008
1419      45513720 ENSG00000182871       ENST00000355480 ENSE00001665017
1420      45513720 ENSG00000182871       ENST00000355480 ENSE00001748652
1421      45513720 ENSG00000182871       ENST00000355480 ENSE00001760845
1422      45513720 ENSG00000182871       ENST00000355480 ENSE00001705636
1423      45513720 ENSG00000182871       ENST00000355480 ENSE00001712155
1424      45513720 ENSG00000182871       ENST00000355480 ENSE00001677445
1425      45513720 ENSG00000182871       ENST00000355480 ENSE00001759875
1426      45513720 ENSG00000182871       ENST00000355480 ENSE00001792883
1427      45513720 ENSG00000182871       ENST00000355480 ENSE00001742681
1428      45513720 ENSG00000182871       ENST00000355480 ENSE00001649344
1429      45513720 ENSG00000182871       ENST00000355480 ENSE00001701626
1430      45513720 ENSG00000182871       ENST00000355480 ENSE00001654943
1431      45513720 ENSG00000182871       ENST00000355480 ENSE00003523340
1432      45513720 ENSG00000182871       ENST00000355480 ENSE00003594559
1433      45513720 ENSG00000182871       ENST00000355480 ENSE00003563378
1434      45513720 ENSG00000182871       ENST00000355480 ENSE00003601528
1435      45513720 ENSG00000182871       ENST00000355480 ENSE00003582147
1436      45513720 ENSG00000182871       ENST00000355480 ENSE00003624748
1437      45513720 ENSG00000182871       ENST00000355480 ENSE00001717282
1438      45513720 ENSG00000182871       ENST00000355480 ENSE00001638654
1439      45513720 ENSG00000182871       ENST00000355480 ENSE00001601591
1440      45513720 ENSG00000182871       ENST00000355480 ENSE00001761211
1441      45513720 ENSG00000182871       ENST00000355480 ENSE00001725836
1442      45513720 ENSG00000182871       ENST00000355480 ENSE00001717154
1443      45513720 ENSG00000182871       ENST00000355480 ENSE00002238826
1444      45513720 ENSG00000182871       ENST00000355480 ENSE00003582883
1445      45513720 ENSG00000182871       ENST00000355480 ENSE00003643178
1446      45513720 ENSG00000182871       ENST00000355480 ENSE00003588504
1447      45513720 ENSG00000182871       ENST00000355480 ENSE00001542501
1448      45513720 ENSG00000182871       ENST00000355480 ENSE00001428474
1449      45513720 ENSG00000182871       ENST00000342220 ENSE00001759875
1450      45513720 ENSG00000182871       ENST00000342220 ENSE00001792883
1451      45513720 ENSG00000182871       ENST00000342220 ENSE00001742681
1452      45513720 ENSG00000182871       ENST00000342220 ENSE00001649344
1453      45513720 ENSG00000182871       ENST00000342220 ENSE00001701626
1454      45513720 ENSG00000182871       ENST00000342220 ENSE00001654943
1455      45513720 ENSG00000182871       ENST00000342220 ENSE00003523340
1456      45513720 ENSG00000182871       ENST00000342220 ENSE00003594559
1457      45513720 ENSG00000182871       ENST00000342220 ENSE00003563378
1458      45513720 ENSG00000182871       ENST00000342220 ENSE00003601528
1459      45513720 ENSG00000182871       ENST00000342220 ENSE00003582147
1460      45513720 ENSG00000182871       ENST00000342220 ENSE00003624748
1461      45513720 ENSG00000182871       ENST00000342220 ENSE00001717282
1462      45513720 ENSG00000182871       ENST00000342220 ENSE00001638654
1463      45513720 ENSG00000182871       ENST00000342220 ENSE00001601591
1464      45513720 ENSG00000182871       ENST00000342220 ENSE00001761211
1465      45513720 ENSG00000182871       ENST00000342220 ENSE00001725836
1466      45513720 ENSG00000182871       ENST00000342220 ENSE00002238826
1467      45513720 ENSG00000182871       ENST00000342220 ENSE00003582883
1468      45513720 ENSG00000182871       ENST00000342220 ENSE00003643178
1469      45513720 ENSG00000182871       ENST00000342220 ENSE00003588504
1470      45513720 ENSG00000182871       ENST00000342220 ENSE00001542501
1471      45513720 ENSG00000182871       ENST00000342220 ENSE00001631330
1472      45513720 ENSG00000182871       ENST00000459895 ENSE00001830760
1473      45513720 ENSG00000182871       ENST00000459895 ENSE00003536172
1474      45513720 ENSG00000182871       ENST00000459895 ENSE00003508403
1475      45513720 ENSG00000182871       ENST00000459895 ENSE00003629018
1476      45513720 ENSG00000182871       ENST00000459895 ENSE00003552652
1477      45513720 ENSG00000182871       ENST00000459895 ENSE00003463075
1478      45513720 ENSG00000182871       ENST00000459895 ENSE00003465228
1479      45513720 ENSG00000182871       ENST00000459895 ENSE00001857655
1480      45513720 ENSG00000182871       ENST00000423214 ENSE00001725836
1481      45513720 ENSG00000182871       ENST00000423214 ENSE00001717154
1482      45513720 ENSG00000182871       ENST00000423214 ENSE00003582883
1483      45513720 ENSG00000182871       ENST00000423214 ENSE00003643178
1484      45513720 ENSG00000182871       ENST00000423214 ENSE00003588504
1485      45513720 ENSG00000182871       ENST00000423214 ENSE00001591664
1486      45513720 ENSG00000182871       ENST00000473212 ENSE00003575913
1487      45513720 ENSG00000182871       ENST00000473212 ENSE00003636018
1488      45513720 ENSG00000182871       ENST00000473212 ENSE00003613826
1489      45513720 ENSG00000182871       ENST00000473212 ENSE00001855789
1490      45513720 ENSG00000182871       ENST00000473212 ENSE00001875428
1491      45513720 ENSG00000182871       ENST00000359759 ENSE00001654135
1492      45513720 ENSG00000182871       ENST00000359759 ENSE00001640622
1493      45513720 ENSG00000182871       ENST00000359759 ENSE00001722709
1494      45513720 ENSG00000182871       ENST00000359759 ENSE00001740104
1495      45513720 ENSG00000182871       ENST00000359759 ENSE00001627003
1496      45513720 ENSG00000182871       ENST00000359759 ENSE00001638049
1497      45513720 ENSG00000182871       ENST00000359759 ENSE00001595082
1498      45513720 ENSG00000182871       ENST00000359759 ENSE00001685925
1499      45513720 ENSG00000182871       ENST00000359759 ENSE00001758572
1500      45513720 ENSG00000182871       ENST00000359759 ENSE00001617212
1501      45513720 ENSG00000182871       ENST00000359759 ENSE00001619008
1502      45513720 ENSG00000182871       ENST00000359759 ENSE00001665017
1503      45513720 ENSG00000182871       ENST00000359759 ENSE00001748652
1504      45513720 ENSG00000182871       ENST00000359759 ENSE00001760845
1505      45513720 ENSG00000182871       ENST00000359759 ENSE00001705636
1506      45513720 ENSG00000182871       ENST00000359759 ENSE00001712155
1507      45513720 ENSG00000182871       ENST00000359759 ENSE00001677445
1508      45513720 ENSG00000182871       ENST00000359759 ENSE00001759875
1509      45513720 ENSG00000182871       ENST00000359759 ENSE00001792883
1510      45513720 ENSG00000182871       ENST00000359759 ENSE00001742681
1511      45513720 ENSG00000182871       ENST00000359759 ENSE00001649344
1512      45513720 ENSG00000182871       ENST00000359759 ENSE00001701626
1513      45513720 ENSG00000182871       ENST00000359759 ENSE00001654943
1514      45513720 ENSG00000182871       ENST00000359759 ENSE00003523340
1515      45513720 ENSG00000182871       ENST00000359759 ENSE00003594559
1516      45513720 ENSG00000182871       ENST00000359759 ENSE00003563378
1517      45513720 ENSG00000182871       ENST00000359759 ENSE00003601528
1518      45513720 ENSG00000182871       ENST00000359759 ENSE00003582147
1519      45513720 ENSG00000182871       ENST00000359759 ENSE00003624748
1520      45513720 ENSG00000182871       ENST00000359759 ENSE00001717282
1521      45513720 ENSG00000182871       ENST00000359759 ENSE00001638654
1522      45513720 ENSG00000182871       ENST00000359759 ENSE00001601591
1523      45513720 ENSG00000182871       ENST00000359759 ENSE00001761211
1524      45513720 ENSG00000182871       ENST00000359759 ENSE00001725836
1525      45513720 ENSG00000182871       ENST00000359759 ENSE00001717154
1526      45513720 ENSG00000182871       ENST00000359759 ENSE00002238826
1527      45513720 ENSG00000182871       ENST00000359759 ENSE00003582883
1528      45513720 ENSG00000182871       ENST00000359759 ENSE00003643178
1529      45513720 ENSG00000182871       ENST00000359759 ENSE00003588504
1530      45513720 ENSG00000182871       ENST00000359759 ENSE00001299500
1531      45513720 ENSG00000182871       ENST00000359759 ENSE00001313674
1532      45478326 ENSG00000275167       ENST00000611994 ENSE00003717901
1533      45425070 ENSG00000183535       ENST00000397787 ENSE00001530162
1534      45425070 ENSG00000183535       ENST00000397787 ENSE00002084477
1535      45425070 ENSG00000183535       ENST00000397787 ENSE00001530161
1536      45425070 ENSG00000183535       ENST00000485206 ENSE00002084477
1537      45425070 ENSG00000183535       ENST00000485206 ENSE00001530161
1538      45425070 ENSG00000183535       ENST00000485206 ENSE00001327867
1539      45410065 ENSG00000224574       ENST00000446475 ENSE00001741164
1540      45410065 ENSG00000224574       ENST00000446475 ENSE00001601201
1541      45410065 ENSG00000224574       ENST00000446475 ENSE00001625134
1542      45410065 ENSG00000224574       ENST00000446475 ENSE00001764084
1543      45404369 ENSG00000273796       ENST00000617004 ENSE00003752057
1544      45379635 ENSG00000228355       ENST00000456613 ENSE00001737459
1545      45379635 ENSG00000228355       ENST00000456613 ENSE00001675349
1546      45379635 ENSG00000228355       ENST00000416468 ENSE00001783160
1547      45379635 ENSG00000228355       ENST00000416468 ENSE00001653059
1548      45376382 ENSG00000228930       ENST00000429327 ENSE00001685072
1549      45341990 ENSG00000237664       ENST00000416722 ENSE00001726394
1550      45341990 ENSG00000237664       ENST00000416722 ENSE00001708983
1551      45338665 ENSG00000229382       ENST00000445242 ENSE00001670187
1552      45338665 ENSG00000229382       ENST00000445242 ENSE00001632818
1553      45305257 ENSG00000184274       ENST00000441947 ENSE00002063048
1554      45305257 ENSG00000184274       ENST00000441947 ENSE00001639661
1555      45305257 ENSG00000184274       ENST00000441947 ENSE00001752111
1556      45297354 ENSG00000223768       ENST00000433465 ENSE00001747474
1557      45297354 ENSG00000223768       ENST00000433465 ENSE00001655745
1558      45291738 ENSG00000215447       ENST00000454115 ENSE00001542586
1559      45291738 ENSG00000215447       ENST00000454115 ENSE00001714446
1560      45291738 ENSG00000215447       ENST00000454115 ENSE00001668643
1561      45291738 ENSG00000215447       ENST00000400362 ENSE00001714446
1562      45291738 ENSG00000215447       ENST00000400362 ENSE00001697127
1563      45291738 ENSG00000215447       ENST00000400362 ENSE00001542583
1564      45287898 ENSG00000186866       ENST00000471540 ENSE00001833042
1565      45287898 ENSG00000186866       ENST00000471540 ENSE00003537856
1566      45287898 ENSG00000186866       ENST00000471540 ENSE00003553176
1567      45287898 ENSG00000186866       ENST00000471540 ENSE00001917296
1568      45287898 ENSG00000186866       ENST00000471540 ENSE00003653777
1569      45287898 ENSG00000186866       ENST00000471540 ENSE00003563296
1570      45287898 ENSG00000186866       ENST00000471540 ENSE00003608186
1571      45287898 ENSG00000186866       ENST00000471540 ENSE00003478059
1572      45287898 ENSG00000186866       ENST00000471540 ENSE00003568041
1573      45287898 ENSG00000186866       ENST00000331343 ENSE00001850690
1574      45287898 ENSG00000186866       ENST00000331343 ENSE00003614666
1575      45287898 ENSG00000186866       ENST00000331343 ENSE00003473928
1576      45287898 ENSG00000186866       ENST00000331343 ENSE00003522310
1577      45287898 ENSG00000186866       ENST00000331343 ENSE00003583701
1578      45287898 ENSG00000186866       ENST00000331343 ENSE00003530867
1579      45287898 ENSG00000186866       ENST00000331343 ENSE00003462591
1580      45287898 ENSG00000186866       ENST00000331343 ENSE00001350244
1581      45287898 ENSG00000186866       ENST00000334538 ENSE00003568041
1582      45287898 ENSG00000186866       ENST00000334538 ENSE00001850690
1583      45287898 ENSG00000186866       ENST00000334538 ENSE00003614666
1584      45287898 ENSG00000186866       ENST00000334538 ENSE00003473928
1585      45287898 ENSG00000186866       ENST00000334538 ENSE00003522310
1586      45287898 ENSG00000186866       ENST00000334538 ENSE00003583701
1587      45287898 ENSG00000186866       ENST00000334538 ENSE00003530867
1588      45287898 ENSG00000186866       ENST00000334538 ENSE00003462591
1589      45287898 ENSG00000186866       ENST00000334538 ENSE00003683659
1590      45287898 ENSG00000186866       ENST00000334538 ENSE00003567218
1591      45287898 ENSG00000186866       ENST00000349485 ENSE00001850690
1592      45287898 ENSG00000186866       ENST00000349485 ENSE00003614666
1593      45287898 ENSG00000186866       ENST00000349485 ENSE00003473928
1594      45287898 ENSG00000186866       ENST00000349485 ENSE00003522310
1595      45287898 ENSG00000186866       ENST00000349485 ENSE00003583701
1596      45287898 ENSG00000186866       ENST00000349485 ENSE00003530867
1597      45287898 ENSG00000186866       ENST00000349485 ENSE00003462591
1598      45287898 ENSG00000186866       ENST00000349485 ENSE00003683659
1599      45287898 ENSG00000186866       ENST00000349485 ENSE00003489621
1600      45287898 ENSG00000186866       ENST00000485190 ENSE00001820548
1601      45287898 ENSG00000186866       ENST00000485190 ENSE00001910129
1602      45287898 ENSG00000186866       ENST00000460932 ENSE00003608186
1603      45287898 ENSG00000186866       ENST00000460932 ENSE00001939547
1604      45287898 ENSG00000186866       ENST00000460932 ENSE00001902655
1605      45287898 ENSG00000186866       ENST00000463917 ENSE00001848517
1606      45287898 ENSG00000186866       ENST00000463917 ENSE00001880278
1607      45287898 ENSG00000186866       ENST00000451615 ENSE00003473928
1608      45287898 ENSG00000186866       ENST00000451615 ENSE00003522310
1609      45287898 ENSG00000186866       ENST00000451615 ENSE00003583701
1610      45287898 ENSG00000186866       ENST00000451615 ENSE00003530867
1611      45287898 ENSG00000186866       ENST00000451615 ENSE00003462591
1612      45287898 ENSG00000186866       ENST00000451615 ENSE00002442646
1613      45287898 ENSG00000186866       ENST00000451615 ENSE00001680898
1614      45287898 ENSG00000186866       ENST00000451615 ENSE00002468586
1615      45287898 ENSG00000186866       ENST00000493524 ENSE00003537856
1616      45287898 ENSG00000186866       ENST00000493524 ENSE00003553176
1617      45287898 ENSG00000186866       ENST00000493524 ENSE00003653777
1618      45287898 ENSG00000186866       ENST00000493524 ENSE00002025594
1619      45287898 ENSG00000186866       ENST00000493524 ENSE00003673509
1620      45287898 ENSG00000186866       ENST00000493524 ENSE00001935444
1621      45287898 ENSG00000186866       ENST00000468360 ENSE00003553176
1622      45287898 ENSG00000186866       ENST00000468360 ENSE00003653777
1623      45287898 ENSG00000186866       ENST00000468360 ENSE00003673509
1624      45287898 ENSG00000186866       ENST00000468360 ENSE00001902843
1625      45287898 ENSG00000186866       ENST00000468360 ENSE00001828687
1626      45287898 ENSG00000186866       ENST00000493811 ENSE00003673509
1627      45287898 ENSG00000186866       ENST00000493811 ENSE00001951160
1628      45287898 ENSG00000186866       ENST00000493811 ENSE00003690134
1629      45287898 ENSG00000186866       ENST00000493811 ENSE00001942075
1630      45287898 ENSG00000186866       ENST00000476653 ENSE00001956512
1631      45287898 ENSG00000186866       ENST00000476653 ENSE00001903333
1632      45287898 ENSG00000186866       ENST00000612472 ENSE00003553176
1633      45287898 ENSG00000186866       ENST00000612472 ENSE00003653777
1634      45287898 ENSG00000186866       ENST00000612472 ENSE00003563296
1635      45287898 ENSG00000186866       ENST00000612472 ENSE00003608186
1636      45287898 ENSG00000186866       ENST00000612472 ENSE00003614666
1637      45287898 ENSG00000186866       ENST00000612472 ENSE00003733514
1638      45287898 ENSG00000186866       ENST00000612472 ENSE00003748436
1639      45287898 ENSG00000186866       ENST00000612472 ENSE00003740519
1640      45287898 ENSG00000186866       ENST00000612472 ENSE00003716929
1641      45287898 ENSG00000186866       ENST00000612472 ENSE00003727744
1642      45287898 ENSG00000186866       ENST00000615172 ENSE00003462591
1643      45287898 ENSG00000186866       ENST00000615172 ENSE00003683659
1644      45287898 ENSG00000186866       ENST00000615172 ENSE00003567218
1645      45287898 ENSG00000186866       ENST00000615172 ENSE00003734930
1646      45287898 ENSG00000186866       ENST00000615172 ENSE00003718162
1647      45287898 ENSG00000186866       ENST00000615172 ENSE00003736828
1648      45264548 ENSG00000182586       ENST00000584169 ENSE00002728363
1649      45264548 ENSG00000182586       ENST00000584169 ENSE00001542589
1650      45264548 ENSG00000182586       ENST00000584169 ENSE00002699741
1651      45264548 ENSG00000182586       ENST00000638500 ENSE00002728363
1652      45264548 ENSG00000182586       ENST00000638500 ENSE00001542589
1653      45264548 ENSG00000182586       ENST00000638500 ENSE00003809731
1654      45264548 ENSG00000182586       ENST00000638500 ENSE00003810059
1655      45264548 ENSG00000182586       ENST00000328344 ENSE00001542589
1656      45264548 ENSG00000182586       ENST00000328344 ENSE00001542591
1657      45264548 ENSG00000182586       ENST00000328344 ENSE00001330272
1658      45226560 ENSG00000197381       ENST00000462214 ENSE00001840433
1659      45226560 ENSG00000197381       ENST00000462214 ENSE00001210927
1660      45226560 ENSG00000197381       ENST00000462214 ENSE00003777008
1661      45226560 ENSG00000197381       ENST00000462214 ENSE00001825818
1662      45226560 ENSG00000197381       ENST00000460734 ENSE00001210927
1663      45226560 ENSG00000197381       ENST00000460734 ENSE00003777008
1664      45226560 ENSG00000197381       ENST00000460734 ENSE00001890115
1665      45226560 ENSG00000197381       ENST00000460734 ENSE00001929777
1666      45226560 ENSG00000197381       ENST00000460734 ENSE00001888667
1667      45226560 ENSG00000197381       ENST00000460734 ENSE00001864664
1668      45226560 ENSG00000197381       ENST00000460734 ENSE00001935775
1669      45226560 ENSG00000197381       ENST00000460734 ENSE00001902790
1670      45226560 ENSG00000197381       ENST00000460734 ENSE00002456815
1671      45226560 ENSG00000197381       ENST00000460734 ENSE00001847313
1672      45226560 ENSG00000197381       ENST00000389861 ENSE00001210927
1673      45226560 ENSG00000197381       ENST00000389861 ENSE00003777008
1674      45226560 ENSG00000197381       ENST00000389861 ENSE00001210936
1675      45226560 ENSG00000197381       ENST00000389861 ENSE00003779805
1676      45226560 ENSG00000197381       ENST00000389861 ENSE00003781361
1677      45226560 ENSG00000197381       ENST00000389861 ENSE00003781814
1678      45226560 ENSG00000197381       ENST00000389861 ENSE00003776488
1679      45226560 ENSG00000197381       ENST00000389861 ENSE00003781665
1680      45226560 ENSG00000197381       ENST00000389861 ENSE00003783846
1681      45226560 ENSG00000197381       ENST00000389861 ENSE00003780616
1682      45226560 ENSG00000197381       ENST00000389861 ENSE00003782989
1683      45226560 ENSG00000197381       ENST00000389861 ENSE00003779854
1684      45226560 ENSG00000197381       ENST00000389861 ENSE00003562843
1685      45226560 ENSG00000197381       ENST00000492414 ENSE00001210927
1686      45226560 ENSG00000197381       ENST00000492414 ENSE00001210936
1687      45226560 ENSG00000197381       ENST00000492414 ENSE00003562843
1688      45226560 ENSG00000197381       ENST00000492414 ENSE00003625084
1689      45226560 ENSG00000197381       ENST00000492414 ENSE00001050989
1690      45226560 ENSG00000197381       ENST00000492414 ENSE00003721505
1691      45226560 ENSG00000197381       ENST00000492414 ENSE00003721925
1692      45226560 ENSG00000197381       ENST00000492414 ENSE00003732074
1693      45226560 ENSG00000197381       ENST00000492414 ENSE00003736672
1694      45226560 ENSG00000197381       ENST00000492414 ENSE00003745511
1695      45226560 ENSG00000197381       ENST00000492414 ENSE00003718967
1696      45226560 ENSG00000197381       ENST00000492414 ENSE00003711984
1697      45226560 ENSG00000197381       ENST00000496664 ENSE00001210927
1698      45226560 ENSG00000197381       ENST00000496664 ENSE00001210936
1699      45226560 ENSG00000197381       ENST00000496664 ENSE00003562843
1700      45226560 ENSG00000197381       ENST00000496664 ENSE00003625084
1701      45226560 ENSG00000197381       ENST00000496664 ENSE00001050989
1702      45226560 ENSG00000197381       ENST00000496664 ENSE00003721505
1703      45226560 ENSG00000197381       ENST00000496664 ENSE00003721925
1704      45226560 ENSG00000197381       ENST00000496664 ENSE00003732074
1705      45226560 ENSG00000197381       ENST00000496664 ENSE00003736672
1706      45226560 ENSG00000197381       ENST00000496664 ENSE00003745511
1707      45226560 ENSG00000197381       ENST00000496664 ENSE00003718967
1708      45226560 ENSG00000197381       ENST00000496664 ENSE00003711984
1709      45226560 ENSG00000197381       ENST00000496664 ENSE00001507134
1710      45226560 ENSG00000197381       ENST00000389863 ENSE00001210927
1711      45226560 ENSG00000197381       ENST00000389863 ENSE00001210936
1712      45226560 ENSG00000197381       ENST00000389863 ENSE00003625084
1713      45226560 ENSG00000197381       ENST00000389863 ENSE00001050989
1714      45226560 ENSG00000197381       ENST00000389863 ENSE00003721505
1715      45226560 ENSG00000197381       ENST00000389863 ENSE00003721925
1716      45226560 ENSG00000197381       ENST00000389863 ENSE00003732074
1717      45226560 ENSG00000197381       ENST00000389863 ENSE00003736672
1718      45226560 ENSG00000197381       ENST00000389863 ENSE00003745511
1719      45226560 ENSG00000197381       ENST00000389863 ENSE00003718967
1720      45226560 ENSG00000197381       ENST00000389863 ENSE00001507134
1721      45226560 ENSG00000197381       ENST00000389863 ENSE00001507132
1722      45226560 ENSG00000197381       ENST00000389863 ENSE00003651172
1723      45226560 ENSG00000197381       ENST00000348831 ENSE00001210927
1724      45226560 ENSG00000197381       ENST00000348831 ENSE00001210936
1725      45226560 ENSG00000197381       ENST00000348831 ENSE00003625084
1726      45226560 ENSG00000197381       ENST00000348831 ENSE00001050989
1727      45226560 ENSG00000197381       ENST00000348831 ENSE00003721505
1728      45226560 ENSG00000197381       ENST00000348831 ENSE00003721925
1729      45226560 ENSG00000197381       ENST00000348831 ENSE00003732074
1730      45226560 ENSG00000197381       ENST00000348831 ENSE00003736672
1731      45226560 ENSG00000197381       ENST00000348831 ENSE00003745511
1732      45226560 ENSG00000197381       ENST00000348831 ENSE00003718967
1733      45226560 ENSG00000197381       ENST00000348831 ENSE00001530203
1734      45226560 ENSG00000197381       ENST00000449478 ENSE00001210927
1735      45226560 ENSG00000197381       ENST00000449478 ENSE00003625084
1736      45226560 ENSG00000197381       ENST00000449478 ENSE00001631876
1737      45226560 ENSG00000197381       ENST00000449478 ENSE00001772958
1738      45226560 ENSG00000197381       ENST00000464215 ENSE00003777008
1739      45226560 ENSG00000197381       ENST00000464215 ENSE00001832701
1740      45226560 ENSG00000197381       ENST00000464215 ENSE00001871618
1741      45226560 ENSG00000197381       ENST00000360697 ENSE00001050989
1742      45226560 ENSG00000197381       ENST00000360697 ENSE00003721505
1743      45226560 ENSG00000197381       ENST00000360697 ENSE00003721925
1744      45226560 ENSG00000197381       ENST00000360697 ENSE00003732074
1745      45226560 ENSG00000197381       ENST00000360697 ENSE00003736672
1746      45226560 ENSG00000197381       ENST00000360697 ENSE00003745511
1747      45226560 ENSG00000197381       ENST00000360697 ENSE00003718967
1748      45226560 ENSG00000197381       ENST00000360697 ENSE00001507134
1749      45226560 ENSG00000197381       ENST00000360697 ENSE00001530203
1750      45226560 ENSG00000197381       ENST00000360697 ENSE00001507135
1751      45226560 ENSG00000197381       ENST00000481022 ENSE00001817612
1752      45226560 ENSG00000197381       ENST00000481022 ENSE00001894242
1753      45226560 ENSG00000197381       ENST00000631642 ENSE00003776488
1754      45226560 ENSG00000197381       ENST00000631642 ENSE00003782648
1755      45226560 ENSG00000197381       ENST00000631642 ENSE00003776594
1756      45226560 ENSG00000197381       ENST00000631642 ENSE00003779119
1757      45226560 ENSG00000197381       ENST00000437626 ENSE00001210927
1758      45226560 ENSG00000197381       ENST00000437626 ENSE00001210936
1759      45226560 ENSG00000197381       ENST00000437626 ENSE00003625084
1760      45226560 ENSG00000197381       ENST00000437626 ENSE00001050989
1761      45226560 ENSG00000197381       ENST00000437626 ENSE00003721505
1762      45226560 ENSG00000197381       ENST00000437626 ENSE00003721925
1763      45226560 ENSG00000197381       ENST00000437626 ENSE00003732074
1764      45226560 ENSG00000197381       ENST00000437626 ENSE00003736672
1765      45226560 ENSG00000197381       ENST00000437626 ENSE00003745511
1766      45226560 ENSG00000197381       ENST00000437626 ENSE00003718967
1767      45226560 ENSG00000197381       ENST00000437626 ENSE00003711984
1768      45226560 ENSG00000197381       ENST00000437626 ENSE00001507134
1769      45226560 ENSG00000197381       ENST00000437626 ENSE00001612728
1770      45226560 ENSG00000197381       ENST00000611195 ENSE00003723523
1771      45226560 ENSG00000197381       ENST00000611195 ENSE00003724758
1772      45226560 ENSG00000197381       ENST00000629643 ENSE00001050989
1773      45226560 ENSG00000197381       ENST00000629643 ENSE00003721505
1774      45226560 ENSG00000197381       ENST00000629643 ENSE00003721925
1775      45226560 ENSG00000197381       ENST00000629643 ENSE00003732074
1776      45226560 ENSG00000197381       ENST00000629643 ENSE00003736672
1777      45226560 ENSG00000197381       ENST00000629643 ENSE00003745511
1778      45226560 ENSG00000197381       ENST00000629643 ENSE00003718967
1779      45226560 ENSG00000197381       ENST00000629643 ENSE00003711984
1780      45226560 ENSG00000197381       ENST00000629643 ENSE00001612728
1781      45226560 ENSG00000197381       ENST00000629643 ENSE00003769076
1782      45226560 ENSG00000197381       ENST00000629643 ENSE00003587995
1783      45101094 ENSG00000267857       ENST00000596207 ENSE00002984309
1784      45074165 ENSG00000235374       ENST00000599569 ENSE00002990874
1785      45074165 ENSG00000235374       ENST00000429427 ENSE00001564150
1786      45074165 ENSG00000235374       ENST00000429427 ENSE00001789395
1787      45074165 ENSG00000235374       ENST00000415143 ENSE00001666799
1788      45004727 ENSG00000275874       ENST00000615826 ENSE00003722794
1789      45004727 ENSG00000275874       ENST00000615826 ENSE00003722737
1790      44995185 ENSG00000261706       ENST00000569966 ENSE00002621024
1791      44994086 ENSG00000234880       ENST00000439088 ENSE00001765719
1792      44994086 ENSG00000234880       ENST00000439088 ENSE00001802548
1793      44994086 ENSG00000234880       ENST00000434081 ENSE00001707883
1794      44994086 ENSG00000234880       ENST00000434081 ENSE00001609589
1795      44979274 ENSG00000276529       ENST00000616815 ENSE00003741934
1796      44976989 ENSG00000160256       ENST00000291634 ENSE00001878719
1797      44976989 ENSG00000160256       ENST00000291634 ENSE00001050957
1798      44976989 ENSG00000160256       ENST00000291634 ENSE00003668740
1799      44976989 ENSG00000160256       ENST00000291634 ENSE00003550369
1800      44976989 ENSG00000160256       ENST00000291634 ENSE00003504383
1801      44976989 ENSG00000160256       ENST00000291634 ENSE00001819747
1802      44976989 ENSG00000160256       ENST00000397826 ENSE00003668740
1803      44976989 ENSG00000160256       ENST00000397826 ENSE00003550369
1804      44976989 ENSG00000160256       ENST00000397826 ENSE00003504383
1805      44976989 ENSG00000160256       ENST00000397826 ENSE00001819747
1806      44976989 ENSG00000160256       ENST00000397826 ENSE00001942549
1807      44976989 ENSG00000160256       ENST00000397826 ENSE00001530388
1808      44976989 ENSG00000160256       ENST00000458015 ENSE00003668740
1809      44976989 ENSG00000160256       ENST00000458015 ENSE00003550369
1810      44976989 ENSG00000160256       ENST00000458015 ENSE00001530388
1811      44976989 ENSG00000160256       ENST00000458015 ENSE00001530392
1812      44976989 ENSG00000160256       ENST00000458015 ENSE00001618394
1813      44976989 ENSG00000160256       ENST00000479127 ENSE00001809547
1814      44976989 ENSG00000160256       ENST00000479127 ENSE00003541861
1815      44976989 ENSG00000160256       ENST00000479127 ENSE00003653566
1816      44976989 ENSG00000160256       ENST00000479127 ENSE00003630684
1817      44976989 ENSG00000160256       ENST00000479127 ENSE00001050954
1818      44976989 ENSG00000160256       ENST00000485207 ENSE00001050954
1819      44976989 ENSG00000160256       ENST00000485207 ENSE00001911440
1820      44939913 ENSG00000183250       ENST00000397841 ENSE00003480405
1821      44939913 ENSG00000183250       ENST00000397841 ENSE00001318296
1822      44939913 ENSG00000183250       ENST00000397841 ENSE00001530440
1823      44939913 ENSG00000183250       ENST00000397841 ENSE00003759227
1824      44939913 ENSG00000183250       ENST00000330551 ENSE00001318296
1825      44939913 ENSG00000183250       ENST00000330551 ENSE00001927274
1826      44939913 ENSG00000183250       ENST00000330551 ENSE00001297690
1827      44939913 ENSG00000183250       ENST00000330551 ENSE00001666910
1828      44939913 ENSG00000183250       ENST00000615847 ENSE00003759227
1829      44939913 ENSG00000183250       ENST00000615847 ENSE00003739580
1830      44936954 ENSG00000272825       ENST00000609953 ENSE00003708308
1831      44931989 ENSG00000160255       ENST00000302347 ENSE00003791070
1832      44931989 ENSG00000160255       ENST00000302347 ENSE00003688153
1833      44931989 ENSG00000160255       ENST00000302347 ENSE00003784896
1834      44931989 ENSG00000160255       ENST00000302347 ENSE00003569344
1835      44931989 ENSG00000160255       ENST00000302347 ENSE00003648854
1836      44931989 ENSG00000160255       ENST00000302347 ENSE00003786943
1837      44931989 ENSG00000160255       ENST00000302347 ENSE00003692776
1838      44931989 ENSG00000160255       ENST00000302347 ENSE00003596110
1839      44931989 ENSG00000160255       ENST00000302347 ENSE00003676989
1840      44931989 ENSG00000160255       ENST00000302347 ENSE00003610443
1841      44931989 ENSG00000160255       ENST00000302347 ENSE00003474058
1842      44931989 ENSG00000160255       ENST00000302347 ENSE00003538737
1843      44931989 ENSG00000160255       ENST00000302347 ENSE00003608831
1844      44931989 ENSG00000160255       ENST00000302347 ENSE00003634407
1845      44931989 ENSG00000160255       ENST00000302347 ENSE00001530484
1846      44931989 ENSG00000160255       ENST00000302347 ENSE00003654080
1847      44931989 ENSG00000160255       ENST00000518033 ENSE00002121803
1848      44931989 ENSG00000160255       ENST00000518033 ENSE00002135361
1849      44931989 ENSG00000160255       ENST00000523126 ENSE00002119259
1850      44931989 ENSG00000160255       ENST00000523126 ENSE00002100821
1851      44931989 ENSG00000160255       ENST00000521995 ENSE00003791070
1852      44931989 ENSG00000160255       ENST00000521995 ENSE00003634407
1853      44931989 ENSG00000160255       ENST00000521995 ENSE00001530484
1854      44931989 ENSG00000160255       ENST00000521995 ENSE00002118353
1855      44931989 ENSG00000160255       ENST00000397846 ENSE00003791070
1856      44931989 ENSG00000160255       ENST00000397846 ENSE00003634407
1857      44931989 ENSG00000160255       ENST00000397846 ENSE00001854101
1858      44931989 ENSG00000160255       ENST00000397846 ENSE00003532481
1859      44931989 ENSG00000160255       ENST00000479849 ENSE00003476552
1860      44931989 ENSG00000160255       ENST00000479849 ENSE00001858561
1861      44931989 ENSG00000160255       ENST00000479849 ENSE00003542143
1862      44931989 ENSG00000160255       ENST00000517819 ENSE00003791070
1863      44931989 ENSG00000160255       ENST00000517819 ENSE00003634407
1864      44931989 ENSG00000160255       ENST00000517819 ENSE00002110944
1865      44931989 ENSG00000160255       ENST00000517819 ENSE00002093217
1866      44931989 ENSG00000160255       ENST00000524251 ENSE00002104346
1867      44931989 ENSG00000160255       ENST00000524251 ENSE00002135256
1868      44931989 ENSG00000160255       ENST00000524251 ENSE00003650963
1869      44931989 ENSG00000160255       ENST00000524251 ENSE00002125359
1870      44931989 ENSG00000160255       ENST00000520389 ENSE00003791070
1871      44931989 ENSG00000160255       ENST00000520389 ENSE00003634407
1872      44931989 ENSG00000160255       ENST00000520389 ENSE00003607150
1873      44931989 ENSG00000160255       ENST00000520389 ENSE00002121803
1874      44931989 ENSG00000160255       ENST00000520389 ENSE00002103133
1875      44931989 ENSG00000160255       ENST00000520389 ENSE00002090699
1876      44931989 ENSG00000160255       ENST00000522688 ENSE00003476552
1877      44931989 ENSG00000160255       ENST00000522688 ENSE00002089808
1878      44931989 ENSG00000160255       ENST00000522688 ENSE00002104346
1879      44931989 ENSG00000160255       ENST00000522688 ENSE00003480328
1880      44931989 ENSG00000160255       ENST00000522688 ENSE00002140166
1881      44931989 ENSG00000160255       ENST00000517563 ENSE00003791070
1882      44931989 ENSG00000160255       ENST00000517563 ENSE00003688153
1883      44931989 ENSG00000160255       ENST00000517563 ENSE00003634407
1884      44931989 ENSG00000160255       ENST00000517563 ENSE00001530485
1885      44931989 ENSG00000160255       ENST00000517563 ENSE00002135901
1886      44931989 ENSG00000160255       ENST00000517563 ENSE00002137412
1887      44931989 ENSG00000160255       ENST00000320216 ENSE00003791070
1888      44931989 ENSG00000160255       ENST00000320216 ENSE00003688153
1889      44931989 ENSG00000160255       ENST00000320216 ENSE00003784896
1890      44931989 ENSG00000160255       ENST00000320216 ENSE00003569344
1891      44931989 ENSG00000160255       ENST00000320216 ENSE00003648854
1892      44931989 ENSG00000160255       ENST00000320216 ENSE00003786943
1893      44931989 ENSG00000160255       ENST00000320216 ENSE00001760685
1894      44931989 ENSG00000160255       ENST00000521987 ENSE00003639138
1895      44931989 ENSG00000160255       ENST00000521987 ENSE00002129948
1896      44931989 ENSG00000160255       ENST00000521987 ENSE00002100250
1897      44931989 ENSG00000160255       ENST00000523663 ENSE00003791070
1898      44931989 ENSG00000160255       ENST00000523663 ENSE00003688153
1899      44931989 ENSG00000160255       ENST00000523663 ENSE00003784896
1900      44931989 ENSG00000160255       ENST00000523663 ENSE00003634407
1901      44931989 ENSG00000160255       ENST00000523663 ENSE00002137392
1902      44931989 ENSG00000160255       ENST00000522931 ENSE00003791070
1903      44931989 ENSG00000160255       ENST00000522931 ENSE00003688153
1904      44931989 ENSG00000160255       ENST00000522931 ENSE00003634407
1905      44931989 ENSG00000160255       ENST00000522931 ENSE00002113067
1906      44931989 ENSG00000160255       ENST00000522931 ENSE00002121804
1907      44931989 ENSG00000160255       ENST00000479202 ENSE00003475946
1908      44931989 ENSG00000160255       ENST00000479202 ENSE00001841395
1909      44931989 ENSG00000160255       ENST00000479202 ENSE00001846827
1910      44931989 ENSG00000160255       ENST00000523323 ENSE00003562837
1911      44931989 ENSG00000160255       ENST00000523323 ENSE00003470757
1912      44931989 ENSG00000160255       ENST00000523323 ENSE00003621554
1913      44931989 ENSG00000160255       ENST00000523323 ENSE00003610265
1914      44931989 ENSG00000160255       ENST00000523323 ENSE00003475946
1915      44931989 ENSG00000160255       ENST00000523323 ENSE00003634407
1916      44931989 ENSG00000160255       ENST00000523323 ENSE00003639138
1917      44931989 ENSG00000160255       ENST00000523323 ENSE00003474596
1918      44931989 ENSG00000160255       ENST00000523323 ENSE00003573867
1919      44931989 ENSG00000160255       ENST00000523323 ENSE00003583970
1920      44931989 ENSG00000160255       ENST00000523323 ENSE00002122904
1921      44931989 ENSG00000160255       ENST00000523323 ENSE00003658064
1922      44931989 ENSG00000160255       ENST00000523323 ENSE00003607150
1923      44931989 ENSG00000160255       ENST00000523323 ENSE00003587147
1924      44931989 ENSG00000160255       ENST00000523323 ENSE00003484049
1925      44931989 ENSG00000160255       ENST00000523323 ENSE00003477398
1926      44931989 ENSG00000160255       ENST00000397850 ENSE00003791070
1927      44931989 ENSG00000160255       ENST00000397850 ENSE00003688153
1928      44931989 ENSG00000160255       ENST00000397850 ENSE00003784896
1929      44931989 ENSG00000160255       ENST00000397850 ENSE00003569344
1930      44931989 ENSG00000160255       ENST00000397850 ENSE00003648854
1931      44931989 ENSG00000160255       ENST00000397850 ENSE00003786943
1932      44931989 ENSG00000160255       ENST00000397850 ENSE00003692776
1933      44931989 ENSG00000160255       ENST00000397850 ENSE00003596110
1934      44931989 ENSG00000160255       ENST00000397850 ENSE00003676989
1935      44931989 ENSG00000160255       ENST00000397850 ENSE00003610443
1936      44931989 ENSG00000160255       ENST00000397850 ENSE00003474058
1937      44931989 ENSG00000160255       ENST00000397850 ENSE00003538737
1938      44931989 ENSG00000160255       ENST00000397850 ENSE00003608831
1939      44931989 ENSG00000160255       ENST00000397850 ENSE00003564872
1940      44931989 ENSG00000160255       ENST00000397850 ENSE00003634407
1941      44931989 ENSG00000160255       ENST00000397850 ENSE00002097953
1942      44931989 ENSG00000160255       ENST00000397850 ENSE00001530484
1943      44931989 ENSG00000160255       ENST00000355153 ENSE00003791070
1944      44931989 ENSG00000160255       ENST00000355153 ENSE00003688153
1945      44931989 ENSG00000160255       ENST00000355153 ENSE00003784896
1946      44931989 ENSG00000160255       ENST00000355153 ENSE00003569344
1947      44931989 ENSG00000160255       ENST00000355153 ENSE00003648854
1948      44931989 ENSG00000160255       ENST00000355153 ENSE00003786943
1949      44931989 ENSG00000160255       ENST00000355153 ENSE00003692776
1950      44931989 ENSG00000160255       ENST00000355153 ENSE00003596110
1951      44931989 ENSG00000160255       ENST00000355153 ENSE00003676989
1952      44931989 ENSG00000160255       ENST00000355153 ENSE00003610443
1953      44931989 ENSG00000160255       ENST00000355153 ENSE00003474058
1954      44931989 ENSG00000160255       ENST00000355153 ENSE00003538737
1955      44931989 ENSG00000160255       ENST00000355153 ENSE00003608831
1956      44931989 ENSG00000160255       ENST00000355153 ENSE00003564872
1957      44931989 ENSG00000160255       ENST00000355153 ENSE00003634407
1958      44931989 ENSG00000160255       ENST00000355153 ENSE00001430780
1959      44931989 ENSG00000160255       ENST00000498666 ENSE00003562837
1960      44931989 ENSG00000160255       ENST00000498666 ENSE00003470757
1961      44931989 ENSG00000160255       ENST00000498666 ENSE00003621554
1962      44931989 ENSG00000160255       ENST00000498666 ENSE00003610265
1963      44931989 ENSG00000160255       ENST00000498666 ENSE00003475946
1964      44931989 ENSG00000160255       ENST00000498666 ENSE00003491446
1965      44931989 ENSG00000160255       ENST00000498666 ENSE00001905428
1966      44931989 ENSG00000160255       ENST00000498666 ENSE00003583278
1967      44931989 ENSG00000160255       ENST00000498666 ENSE00003476552
1968      44931989 ENSG00000160255       ENST00000498666 ENSE00003602491
1969      44931989 ENSG00000160255       ENST00000498666 ENSE00003639138
1970      44931989 ENSG00000160255       ENST00000498666 ENSE00003474596
1971      44931989 ENSG00000160255       ENST00000498666 ENSE00003573867
1972      44931989 ENSG00000160255       ENST00000498666 ENSE00003583970
1973      44931989 ENSG00000160255       ENST00000498666 ENSE00001949282
1974      44931989 ENSG00000160255       ENST00000397857 ENSE00003791070
1975      44931989 ENSG00000160255       ENST00000397857 ENSE00003688153
1976      44931989 ENSG00000160255       ENST00000397857 ENSE00003784896
1977      44931989 ENSG00000160255       ENST00000397857 ENSE00003569344
1978      44931989 ENSG00000160255       ENST00000397857 ENSE00003648854
1979      44931989 ENSG00000160255       ENST00000397857 ENSE00003786943
1980      44931989 ENSG00000160255       ENST00000397857 ENSE00003692776
1981      44931989 ENSG00000160255       ENST00000397857 ENSE00003596110
1982      44931989 ENSG00000160255       ENST00000397857 ENSE00003676989
1983      44931989 ENSG00000160255       ENST00000397857 ENSE00003610443
1984      44931989 ENSG00000160255       ENST00000397857 ENSE00003474058
1985      44931989 ENSG00000160255       ENST00000397857 ENSE00003538737
1986      44931989 ENSG00000160255       ENST00000397857 ENSE00003608831
1987      44931989 ENSG00000160255       ENST00000397857 ENSE00003564872
1988      44931989 ENSG00000160255       ENST00000397857 ENSE00001530495
1989      44931989 ENSG00000160255       ENST00000397857 ENSE00003634407
1990      44931989 ENSG00000160255       ENST00000397854 ENSE00003791070
1991      44931989 ENSG00000160255       ENST00000397854 ENSE00003688153
1992      44931989 ENSG00000160255       ENST00000397854 ENSE00003569344
1993      44931989 ENSG00000160255       ENST00000397854 ENSE00003648854
1994      44931989 ENSG00000160255       ENST00000397854 ENSE00003786943
1995      44931989 ENSG00000160255       ENST00000397854 ENSE00003692776
1996      44931989 ENSG00000160255       ENST00000397854 ENSE00003596110
1997      44931989 ENSG00000160255       ENST00000397854 ENSE00003676989
1998      44931989 ENSG00000160255       ENST00000397854 ENSE00003610443
1999      44931989 ENSG00000160255       ENST00000397854 ENSE00003474058
2000      44931989 ENSG00000160255       ENST00000397854 ENSE00003538737
2001      44931989 ENSG00000160255       ENST00000397854 ENSE00003608831
2002      44931989 ENSG00000160255       ENST00000397854 ENSE00003564872
2003      44931989 ENSG00000160255       ENST00000397854 ENSE00003634407
2004      44931989 ENSG00000160255       ENST00000397854 ENSE00001948527
2005      44931989 ENSG00000160255       ENST00000475170 ENSE00001892842
2006      44931989 ENSG00000160255       ENST00000475170 ENSE00003562837
2007      44931989 ENSG00000160255       ENST00000475170 ENSE00003470757
2008      44931989 ENSG00000160255       ENST00000475170 ENSE00003621554
2009      44931989 ENSG00000160255       ENST00000475170 ENSE00003610265
2010      44931989 ENSG00000160255       ENST00000475170 ENSE00003475946
2011      44931989 ENSG00000160255       ENST00000475170 ENSE00003491446
2012      44931989 ENSG00000160255       ENST00000397852 ENSE00001483672
2013      44931989 ENSG00000160255       ENST00000397852 ENSE00003791070
2014      44931989 ENSG00000160255       ENST00000397852 ENSE00003688153
2015      44931989 ENSG00000160255       ENST00000397852 ENSE00003784896
2016      44931989 ENSG00000160255       ENST00000397852 ENSE00003569344
2017      44931989 ENSG00000160255       ENST00000397852 ENSE00003648854
2018      44931989 ENSG00000160255       ENST00000397852 ENSE00003786943
2019      44931989 ENSG00000160255       ENST00000397852 ENSE00003692776
2020      44931989 ENSG00000160255       ENST00000397852 ENSE00003596110
2021      44931989 ENSG00000160255       ENST00000397852 ENSE00003676989
2022      44931989 ENSG00000160255       ENST00000397852 ENSE00003610443
2023      44931989 ENSG00000160255       ENST00000397852 ENSE00003474058
2024      44931989 ENSG00000160255       ENST00000397852 ENSE00003538737
2025      44931989 ENSG00000160255       ENST00000397852 ENSE00003608831
2026      44931989 ENSG00000160255       ENST00000397852 ENSE00003564872
2027      44930112 ENSG00000273027       ENST00000609461 ENSE00003708573
2028      44929678 ENSG00000227039       ENST00000609592 ENSE00003710239
2029      44929678 ENSG00000227039       ENST00000609592 ENSE00003710484
2030      44929678 ENSG00000227039       ENST00000609592 ENSE00003705562
2031      44929678 ENSG00000227039       ENST00000610063 ENSE00001617442
2032      44929678 ENSG00000227039       ENST00000610063 ENSE00003707190
2033      44929678 ENSG00000227039       ENST00000610063 ENSE00003708738
2034      44929678 ENSG00000227039       ENST00000608043 ENSE00001617442
2035      44929678 ENSG00000227039       ENST00000608043 ENSE00003710787
2036      44929678 ENSG00000227039       ENST00000608043 ENSE00003707190
2037      44929678 ENSG00000227039       ENST00000608043 ENSE00003705201
2038      44929678 ENSG00000227039       ENST00000429132 ENSE00001617442
2039      44929678 ENSG00000227039       ENST00000429132 ENSE00001640376
2040      44929678 ENSG00000227039       ENST00000429132 ENSE00001598901
2041      44929678 ENSG00000227039       ENST00000609694 ENSE00001617442
2042      44929678 ENSG00000227039       ENST00000609694 ENSE00001704328
2043      44929678 ENSG00000227039       ENST00000609694 ENSE00003702969
2044      44929678 ENSG00000227039       ENST00000609694 ENSE00003710787
2045      44929678 ENSG00000227039       ENST00000609694 ENSE00003710887
2046      44929678 ENSG00000227039       ENST00000441379 ENSE00001790658
2047      44929678 ENSG00000227039       ENST00000441379 ENSE00001617442
2048      44929678 ENSG00000227039       ENST00000441379 ENSE00001704328
2049      44929678 ENSG00000227039       ENST00000441379 ENSE00001605959
2050      44873903 ENSG00000183255       ENST00000330938 ENSE00003464385
2051      44873903 ENSG00000183255       ENST00000330938 ENSE00003589141
2052      44873903 ENSG00000183255       ENST00000330938 ENSE00001315456
2053      44873903 ENSG00000183255       ENST00000330938 ENSE00001303620
2054      44873903 ENSG00000183255       ENST00000330938 ENSE00003496468
2055      44873903 ENSG00000183255       ENST00000330938 ENSE00001291155
2056      44873903 ENSG00000183255       ENST00000397886 ENSE00003589141
2057      44873903 ENSG00000183255       ENST00000397886 ENSE00003496468
2058      44873903 ENSG00000183255       ENST00000397886 ENSE00001291155
2059      44873903 ENSG00000183255       ENST00000397886 ENSE00001530589
2060      44873903 ENSG00000183255       ENST00000397886 ENSE00001932137
2061      44873903 ENSG00000183255       ENST00000474737 ENSE00001822465
2062      44873903 ENSG00000183255       ENST00000474737 ENSE00003546676
2063      44873903 ENSG00000183255       ENST00000474737 ENSE00003679044
2064      44873903 ENSG00000183255       ENST00000474737 ENSE00001950421
2065      44873903 ENSG00000183255       ENST00000494690 ENSE00003546676
2066      44873903 ENSG00000183255       ENST00000494690 ENSE00003679044
2067      44873903 ENSG00000183255       ENST00000494690 ENSE00001953116
2068      44873903 ENSG00000183255       ENST00000494690 ENSE00001927838
2069      44873903 ENSG00000183255       ENST00000494690 ENSE00003531203
2070      44873903 ENSG00000183255       ENST00000494690 ENSE00002455661
2071      44873903 ENSG00000183255       ENST00000480234 ENSE00003546676
2072      44873903 ENSG00000183255       ENST00000480234 ENSE00001927838
2073      44873903 ENSG00000183255       ENST00000480234 ENSE00001906465
2074      44873903 ENSG00000183255       ENST00000480234 ENSE00001948521
2075      44873903 ENSG00000183255       ENST00000445724 ENSE00003464385
2076      44873903 ENSG00000183255       ENST00000445724 ENSE00001530597
2077      44873903 ENSG00000183255       ENST00000445724 ENSE00002263448
2078      44873903 ENSG00000183255       ENST00000397887 ENSE00001924408
2079      44873903 ENSG00000183255       ENST00000397887 ENSE00003464385
2080      44873903 ENSG00000183255       ENST00000397887 ENSE00003589141
2081      44873903 ENSG00000183255       ENST00000397887 ENSE00001315456
2082      44818779 ENSG00000184900       ENST00000397898 ENSE00001530662
2083      44818779 ENSG00000184900       ENST00000397898 ENSE00003489741
2084      44818779 ENSG00000184900       ENST00000397898 ENSE00001530648
2085      44818779 ENSG00000184900       ENST00000397898 ENSE00003479904
2086      44818779 ENSG00000184900       ENST00000332859 ENSE00003489741
2087      44818779 ENSG00000184900       ENST00000332859 ENSE00001315520
2088      44818779 ENSG00000184900       ENST00000332859 ENSE00003660434
2089      44818779 ENSG00000184900       ENST00000332859 ENSE00003627960
2090      44818779 ENSG00000184900       ENST00000479153 ENSE00001845480
2091      44818779 ENSG00000184900       ENST00000479153 ENSE00003543157
2092      44818779 ENSG00000184900       ENST00000479153 ENSE00003558790
2093      44818779 ENSG00000184900       ENST00000479153 ENSE00003536698
2094      44818779 ENSG00000184900       ENST00000397893 ENSE00003489741
2095      44818779 ENSG00000184900       ENST00000397893 ENSE00003660434
2096      44818779 ENSG00000184900       ENST00000397893 ENSE00001956379
2097      44818779 ENSG00000184900       ENST00000397893 ENSE00001530624
2098      44818779 ENSG00000184900       ENST00000466861 ENSE00001924051
2099      44818779 ENSG00000184900       ENST00000466861 ENSE00001844436
2100      44818779 ENSG00000184900       ENST00000411651 ENSE00001315520
2101      44818779 ENSG00000184900       ENST00000411651 ENSE00003660434
2102      44818779 ENSG00000184900       ENST00000411651 ENSE00003627960
2103      44818779 ENSG00000184900       ENST00000411651 ENSE00001636287
2104      44804717 ENSG00000236519       ENST00000417820 ENSE00001654036
2105      44804717 ENSG00000236519       ENST00000417820 ENSE00001648916
2106      44802019 ENSG00000184787       ENST00000345496 ENSE00001810483
2107      44802019 ENSG00000184787       ENST00000345496 ENSE00003461738
2108      44802019 ENSG00000184787       ENST00000345496 ENSE00003545838
2109      44802019 ENSG00000184787       ENST00000345496 ENSE00003513720
2110      44802019 ENSG00000184787       ENST00000345496 ENSE00003611843
2111      44802019 ENSG00000184787       ENST00000345496 ENSE00003540326
2112      44802019 ENSG00000184787       ENST00000481546 ENSE00001872412
2113      44802019 ENSG00000184787       ENST00000481546 ENSE00003471255
2114      44802019 ENSG00000184787       ENST00000497630 ENSE00001872150
2115      44802019 ENSG00000184787       ENST00000497630 ENSE00003508865
2116      44802019 ENSG00000184787       ENST00000497630 ENSE00003551927
2117      44802019 ENSG00000184787       ENST00000497630 ENSE00001887954
2118      44802019 ENSG00000184787       ENST00000477954 ENSE00003508865
2119      44802019 ENSG00000184787       ENST00000477954 ENSE00003551927
2120      44802019 ENSG00000184787       ENST00000477954 ENSE00001814551
2121      44802019 ENSG00000184787       ENST00000477954 ENSE00003526014
2122      44802019 ENSG00000184787       ENST00000477954 ENSE00003530492
2123      44802019 ENSG00000184787       ENST00000477954 ENSE00001944638
2124      44802019 ENSG00000184787       ENST00000477954 ENSE00001884911
2125      44802019 ENSG00000184787       ENST00000491513 ENSE00003461738
2126      44802019 ENSG00000184787       ENST00000491513 ENSE00003545838
2127      44802019 ENSG00000184787       ENST00000491513 ENSE00003508865
2128      44802019 ENSG00000184787       ENST00000491513 ENSE00003551927
2129      44802019 ENSG00000184787       ENST00000491513 ENSE00002216085
2130      44802019 ENSG00000184787       ENST00000491513 ENSE00001929225
2131      44802019 ENSG00000184787       ENST00000491513 ENSE00001915495
2132      44802019 ENSG00000184787       ENST00000330942 ENSE00003513720
2133      44802019 ENSG00000184787       ENST00000330942 ENSE00003611843
2134      44802019 ENSG00000184787       ENST00000330942 ENSE00003526014
2135      44802019 ENSG00000184787       ENST00000330942 ENSE00001853287
2136      44802019 ENSG00000184787       ENST00000330942 ENSE00001336667
2137      44802019 ENSG00000184787       ENST00000330942 ENSE00003549866
2138      44802019 ENSG00000184787       ENST00000330942 ENSE00001859493
2139      44802019 ENSG00000184787       ENST00000478200 ENSE00003461738
2140      44802019 ENSG00000184787       ENST00000478200 ENSE00003545838
2141      44802019 ENSG00000184787       ENST00000478200 ENSE00003513720
2142      44802019 ENSG00000184787       ENST00000478200 ENSE00001835597
2143      44802019 ENSG00000184787       ENST00000478200 ENSE00001876928
2144      44802019 ENSG00000184787       ENST00000478200 ENSE00001932562
2145      44802019 ENSG00000184787       ENST00000497664 ENSE00003508865
2146      44802019 ENSG00000184787       ENST00000497664 ENSE00003526014
2147      44802019 ENSG00000184787       ENST00000497664 ENSE00003530492
2148      44802019 ENSG00000184787       ENST00000497664 ENSE00001814908
2149      44802019 ENSG00000184787       ENST00000497664 ENSE00001943360
2150      44802019 ENSG00000184787       ENST00000462569 ENSE00003526014
2151      44802019 ENSG00000184787       ENST00000462569 ENSE00003530492
2152      44802019 ENSG00000184787       ENST00000462569 ENSE00001816447
2153      44802019 ENSG00000184787       ENST00000462569 ENSE00001946578
2154      44802019 ENSG00000184787       ENST00000490450 ENSE00003526014
2155      44802019 ENSG00000184787       ENST00000490450 ENSE00003530492
2156      44802019 ENSG00000184787       ENST00000490450 ENSE00001336667
2157      44802019 ENSG00000184787       ENST00000490450 ENSE00001816312
2158      44802019 ENSG00000184787       ENST00000490450 ENSE00001840940
2159      44802019 ENSG00000184787       ENST00000496395 ENSE00003526014
2160      44802019 ENSG00000184787       ENST00000496395 ENSE00003530492
2161      44802019 ENSG00000184787       ENST00000496395 ENSE00001895465
2162      44802019 ENSG00000184787       ENST00000496395 ENSE00001882636
2163      44802019 ENSG00000184787       ENST00000496395 ENSE00002260764
2164      44802019 ENSG00000184787       ENST00000490091 ENSE00001931750
2165      44802019 ENSG00000184787       ENST00000490091 ENSE00001908272
2166      44711580 ENSG00000175894       ENST00000323084 ENSE00001423221
2167      44711580 ENSG00000175894       ENST00000323084 ENSE00003535905
2168      44711580 ENSG00000175894       ENST00000323084 ENSE00001284021
2169      44711580 ENSG00000175894       ENST00000323084 ENSE00001283963
2170      44711580 ENSG00000175894       ENST00000323084 ENSE00001284011
2171      44711580 ENSG00000175894       ENST00000323084 ENSE00001284001
2172      44711580 ENSG00000175894       ENST00000323084 ENSE00001283993
2173      44711580 ENSG00000175894       ENST00000323084 ENSE00001283944
2174      44711580 ENSG00000175894       ENST00000323084 ENSE00001283979
2175      44711580 ENSG00000175894       ENST00000323084 ENSE00001284037
2176      44711580 ENSG00000175894       ENST00000323084 ENSE00001283969
2177      44711580 ENSG00000175894       ENST00000323084 ENSE00001837326
2178      44711580 ENSG00000175894       ENST00000397916 ENSE00001284021
2179      44711580 ENSG00000175894       ENST00000397916 ENSE00001283963
2180      44711580 ENSG00000175894       ENST00000397916 ENSE00001284011
2181      44711580 ENSG00000175894       ENST00000397916 ENSE00001284001
2182      44711580 ENSG00000175894       ENST00000397916 ENSE00001283993
2183      44711580 ENSG00000175894       ENST00000397916 ENSE00001283944
2184      44711580 ENSG00000175894       ENST00000397916 ENSE00001283979
2185      44711580 ENSG00000175894       ENST00000397916 ENSE00001284037
2186      44711580 ENSG00000175894       ENST00000397916 ENSE00001530728
2187      44711580 ENSG00000175894       ENST00000397916 ENSE00003694712
2188      44711580 ENSG00000175894       ENST00000397916 ENSE00001530723
2189      44711580 ENSG00000175894       ENST00000614657 ENSE00001284021
2190      44711580 ENSG00000175894       ENST00000614657 ENSE00001283963
2191      44711580 ENSG00000175894       ENST00000614657 ENSE00001284011
2192      44711580 ENSG00000175894       ENST00000614657 ENSE00001284001
2193      44711580 ENSG00000175894       ENST00000614657 ENSE00001283993
2194      44711580 ENSG00000175894       ENST00000614657 ENSE00001283944
2195      44711580 ENSG00000175894       ENST00000614657 ENSE00001283979
2196      44711580 ENSG00000175894       ENST00000614657 ENSE00001284037
2197      44711580 ENSG00000175894       ENST00000614657 ENSE00001283969
2198      44711580 ENSG00000175894       ENST00000614657 ENSE00003694712
2199      44711580 ENSG00000175894       ENST00000614657 ENSE00003738390
2200      44711580 ENSG00000175894       ENST00000614657 ENSE00003718568
2201      44711580 ENSG00000175894       ENST00000614657 ENSE00003727284
2202      44711580 ENSG00000175894       ENST00000613245 ENSE00001423221
2203      44711580 ENSG00000175894       ENST00000613245 ENSE00003535905
2204      44711580 ENSG00000175894       ENST00000613245 ENSE00001283993
2205      44711580 ENSG00000175894       ENST00000613245 ENSE00001283944
2206      44711580 ENSG00000175894       ENST00000613245 ENSE00001283979
2207      44711580 ENSG00000175894       ENST00000613245 ENSE00001284037
2208      44711580 ENSG00000175894       ENST00000613245 ENSE00001283969
2209      44711580 ENSG00000175894       ENST00000613245 ENSE00003727284
2210      44711580 ENSG00000175894       ENST00000613245 ENSE00003718356
2211      44711580 ENSG00000175894       ENST00000613245 ENSE00003732571
2212      44702791 ENSG00000236382       ENST00000412914 ENSE00001709572
2213      44698044 ENSG00000189169       ENST00000400365 ENSE00001542603
2214      44698044 ENSG00000189169       ENST00000618832 ENSE00003714599
2215      44698044 ENSG00000189169       ENST00000618832 ENSE00003740231
2216      44698044 ENSG00000189169       ENST00000618832 ENSE00003731665
2217      44686629 ENSG00000276647       ENST00000617417 ENSE00003754561
2218      44682163 ENSG00000187175       ENST00000391617 ENSE00001382580
2219      44678086 ENSG00000229880       ENST00000435590 ENSE00000768001
2220      44666927 ENSG00000221864       ENST00000360770 ENSE00001406200
2221      44658341 ENSG00000205439       ENST00000397907 ENSE00001370311
2222      44654659 ENSG00000212933       ENST00000391618 ENSE00001509396
2223      44647650 ENSG00000243489       ENST00000334670 ENSE00001433049
2224      44638455 ENSG00000221859       ENST00000380095 ENSE00001483712
2225      44638284 ENSG00000215454       ENST00000400374 ENSE00001542630
2226      44638284 ENSG00000215454       ENST00000622352 ENSE00003731192
2227      44638284 ENSG00000215454       ENST00000622352 ENSE00003802553
2228      44638284 ENSG00000215454       ENST00000622352 ENSE00003751886
2229      44638284 ENSG00000215454       ENST00000622352 ENSE00003811422
2230      44638284 ENSG00000215454       ENST00000622352 ENSE00003739004
2231      44638284 ENSG00000215454       ENST00000616689 ENSE00003803406
2232      44638284 ENSG00000215454       ENST00000616689 ENSE00003801807
2233      44638284 ENSG00000215454       ENST00000616689 ENSE00003714391
2234      44638284 ENSG00000215454       ENST00000616689 ENSE00003742381
2235      44628293 ENSG00000221837       ENST00000397911 ENSE00001530698
2236      44628293 ENSG00000221837       ENST00000484861 ENSE00001912554
2237      44628293 ENSG00000221837       ENST00000484861 ENSE00001891028
2238      44628293 ENSG00000221837       ENST00000616529 ENSE00003737172
2239      44628293 ENSG00000221837       ENST00000616529 ENSE00003712036
2240      44628293 ENSG00000221837       ENST00000616529 ENSE00003726178
2241      44612954 ENSG00000187766       ENST00000334662 ENSE00001332752
2242      44602174 ENSG00000272804       ENST00000609664 ENSE00003707050
2243      44592505 ENSG00000188155       ENST00000400368 ENSE00001542615
2244      44580604 ENSG00000241123       ENST00000400372 ENSE00001542625
2245      44558760 ENSG00000212935       ENST00000391620 ENSE00001509398
2246      44551505 ENSG00000205445       ENST00000391621 ENSE00001509399
2247      44551505 ENSG00000205445       ENST00000498210 ENSE00001917994
2248      44551505 ENSG00000205445       ENST00000498210 ENSE00001878737
2249      44540195 ENSG00000215455       ENST00000400375 ENSE00001542634
2250      44525952 ENSG00000182912       ENST00000330490 ENSE00001327329
2251      44525952 ENSG00000182912       ENST00000330490 ENSE00001310393
2252      44525952 ENSG00000182912       ENST00000330490 ENSE00001623177
2253      44525952 ENSG00000182912       ENST00000354333 ENSE00001841204
2254      44525952 ENSG00000182912       ENST00000354333 ENSE00001701009
2255      44525952 ENSG00000182912       ENST00000465978 ENSE00001887580
2256      44525952 ENSG00000182912       ENST00000465978 ENSE00001948009
2257      44516575 ENSG00000235890       ENST00000451035 ENSE00001782279
2258      44516575 ENSG00000235890       ENST00000451035 ENSE00001657960
2259      44516575 ENSG00000235890       ENST00000451035 ENSE00001762813
2260      44516575 ENSG00000235890       ENST00000451035 ENSE00001595085
2261      44516575 ENSG00000235890       ENST00000451035 ENSE00001788976
2262      44516575 ENSG00000235890       ENST00000451035 ENSE00001789177
2263      44516575 ENSG00000235890       ENST00000430181 ENSE00001665245
2264      44516575 ENSG00000235890       ENST00000430181 ENSE00001765454
2265      44516575 ENSG00000235890       ENST00000430181 ENSE00001595553
2266      44495519 ENSG00000277352       ENST00000622854 ENSE00003747804
2267      44490288 ENSG00000228709       ENST00000449713 ENSE00001752545
2268      44490288 ENSG00000228709       ENST00000449713 ENSE00001681181
2269      44478493 ENSG00000274225       ENST00000617205 ENSE00003731552
2270      44475097 ENSG00000227999       ENST00000445440 ENSE00001616067
2271      44473739 ENSG00000223431       ENST00000443620 ENSE00001696870
2272      44473739 ENSG00000223431       ENST00000443620 ENSE00001732080
2273      44472516 ENSG00000224747       ENST00000443300 ENSE00001774227
2274      44472516 ENSG00000224747       ENST00000443300 ENSE00001716424
2275      44472516 ENSG00000224747       ENST00000443300 ENSE00001607690
2276      44462196 ENSG00000160233       ENST00000291592 ENSE00001838176
2277      44462196 ENSG00000160233       ENST00000291592 ENSE00001050784
2278      44455284 ENSG00000229356       ENST00000426578 ENSE00001789377
2279      44455284 ENSG00000229356       ENST00000426578 ENSE00001745110
2280      44455284 ENSG00000229356       ENST00000426578 ENSE00001630947
2281      44455284 ENSG00000229356       ENST00000426578 ENSE00001594641
2282      44443081 ENSG00000142185       ENST00000300482 ENSE00001483894
2283      44443081 ENSG00000142185       ENST00000300482 ENSE00001050762
2284      44443081 ENSG00000142185       ENST00000300482 ENSE00001211363
2285      44443081 ENSG00000142185       ENST00000300482 ENSE00001136423
2286      44443081 ENSG00000142185       ENST00000300482 ENSE00001050770
2287      44443081 ENSG00000142185       ENST00000300482 ENSE00001136239
2288      44443081 ENSG00000142185       ENST00000300482 ENSE00003563694
2289      44443081 ENSG00000142185       ENST00000300482 ENSE00003691176
2290      44443081 ENSG00000142185       ENST00000300482 ENSE00003509381
2291      44443081 ENSG00000142185       ENST00000300482 ENSE00003518763
2292      44443081 ENSG00000142185       ENST00000300482 ENSE00003500029
2293      44443081 ENSG00000142185       ENST00000300482 ENSE00003575443
2294      44443081 ENSG00000142185       ENST00000300482 ENSE00003484543
2295      44443081 ENSG00000142185       ENST00000300482 ENSE00003599280
2296      44443081 ENSG00000142185       ENST00000300482 ENSE00003597184
2297      44443081 ENSG00000142185       ENST00000300482 ENSE00003465034
2298      44443081 ENSG00000142185       ENST00000300482 ENSE00003636376
2299      44443081 ENSG00000142185       ENST00000300482 ENSE00003562029
2300      44443081 ENSG00000142185       ENST00000300482 ENSE00003529143
2301      44443081 ENSG00000142185       ENST00000300482 ENSE00003604228
2302      44443081 ENSG00000142185       ENST00000300482 ENSE00003621257
2303      44443081 ENSG00000142185       ENST00000300482 ENSE00003626924
2304      44443081 ENSG00000142185       ENST00000300482 ENSE00003534191
2305      44443081 ENSG00000142185       ENST00000300482 ENSE00003510537
2306      44443081 ENSG00000142185       ENST00000300482 ENSE00003547493
2307      44443081 ENSG00000142185       ENST00000300482 ENSE00003580935
2308      44443081 ENSG00000142185       ENST00000300482 ENSE00003546941
2309      44443081 ENSG00000142185       ENST00000300482 ENSE00003630131
2310      44443081 ENSG00000142185       ENST00000300482 ENSE00003488936
2311      44443081 ENSG00000142185       ENST00000300482 ENSE00003499642
2312      44443081 ENSG00000142185       ENST00000300482 ENSE00003538028
2313      44443081 ENSG00000142185       ENST00000300482 ENSE00003546538
2314      44443081 ENSG00000142185       ENST00000300482 ENSE00003693802
2315      44443081 ENSG00000142185       ENST00000431901 ENSE00001050762
2316      44443081 ENSG00000142185       ENST00000431901 ENSE00001211363
2317      44443081 ENSG00000142185       ENST00000431901 ENSE00001136423
2318      44443081 ENSG00000142185       ENST00000431901 ENSE00001733152
2319      44443081 ENSG00000142185       ENST00000431901 ENSE00002489935
2320      44443081 ENSG00000142185       ENST00000397928 ENSE00001211363
2321      44443081 ENSG00000142185       ENST00000397928 ENSE00001136423
2322      44443081 ENSG00000142185       ENST00000397928 ENSE00001050770
2323      44443081 ENSG00000142185       ENST00000397928 ENSE00001136239
2324      44443081 ENSG00000142185       ENST00000397928 ENSE00003563694
2325      44443081 ENSG00000142185       ENST00000397928 ENSE00003691176
2326      44443081 ENSG00000142185       ENST00000397928 ENSE00003509381
2327      44443081 ENSG00000142185       ENST00000397928 ENSE00003518763
2328      44443081 ENSG00000142185       ENST00000397928 ENSE00003500029
2329      44443081 ENSG00000142185       ENST00000397928 ENSE00003575443
2330      44443081 ENSG00000142185       ENST00000397928 ENSE00003484543
2331      44443081 ENSG00000142185       ENST00000397928 ENSE00003599280
2332      44443081 ENSG00000142185       ENST00000397928 ENSE00003597184
2333      44443081 ENSG00000142185       ENST00000397928 ENSE00003465034
2334      44443081 ENSG00000142185       ENST00000397928 ENSE00003636376
2335      44443081 ENSG00000142185       ENST00000397928 ENSE00003562029
2336      44443081 ENSG00000142185       ENST00000397928 ENSE00003529143
2337      44443081 ENSG00000142185       ENST00000397928 ENSE00003604228
2338      44443081 ENSG00000142185       ENST00000397928 ENSE00003621257
2339      44443081 ENSG00000142185       ENST00000397928 ENSE00003626924
2340      44443081 ENSG00000142185       ENST00000397928 ENSE00003534191
2341      44443081 ENSG00000142185       ENST00000397928 ENSE00003510537
2342      44443081 ENSG00000142185       ENST00000397928 ENSE00003547493
2343      44443081 ENSG00000142185       ENST00000397928 ENSE00003580935
2344      44443081 ENSG00000142185       ENST00000397928 ENSE00003546941
2345      44443081 ENSG00000142185       ENST00000397928 ENSE00003630131
2346      44443081 ENSG00000142185       ENST00000397928 ENSE00003488936
2347      44443081 ENSG00000142185       ENST00000397928 ENSE00003499642
2348      44443081 ENSG00000142185       ENST00000397928 ENSE00003538028
2349      44443081 ENSG00000142185       ENST00000397928 ENSE00003546538
2350      44443081 ENSG00000142185       ENST00000397928 ENSE00003693802
2351      44443081 ENSG00000142185       ENST00000397928 ENSE00001530923
2352      44443081 ENSG00000142185       ENST00000397932 ENSE00001211363
2353      44443081 ENSG00000142185       ENST00000397932 ENSE00001136423
2354      44443081 ENSG00000142185       ENST00000397932 ENSE00001050770
2355      44443081 ENSG00000142185       ENST00000397932 ENSE00001136239
2356      44443081 ENSG00000142185       ENST00000397932 ENSE00003563694
2357      44443081 ENSG00000142185       ENST00000397932 ENSE00003691176
2358      44443081 ENSG00000142185       ENST00000397932 ENSE00003509381
2359      44443081 ENSG00000142185       ENST00000397932 ENSE00003518763
2360      44443081 ENSG00000142185       ENST00000397932 ENSE00003500029
2361      44443081 ENSG00000142185       ENST00000397932 ENSE00003575443
2362      44443081 ENSG00000142185       ENST00000397932 ENSE00003484543
2363      44443081 ENSG00000142185       ENST00000397932 ENSE00003599280
2364      44443081 ENSG00000142185       ENST00000397932 ENSE00003597184
2365      44443081 ENSG00000142185       ENST00000397932 ENSE00003465034
2366      44443081 ENSG00000142185       ENST00000397932 ENSE00003636376
2367      44443081 ENSG00000142185       ENST00000397932 ENSE00003562029
2368      44443081 ENSG00000142185       ENST00000397932 ENSE00003529143
2369      44443081 ENSG00000142185       ENST00000397932 ENSE00003604228
2370      44443081 ENSG00000142185       ENST00000397932 ENSE00003621257
2371      44443081 ENSG00000142185       ENST00000397932 ENSE00003626924
2372      44443081 ENSG00000142185       ENST00000397932 ENSE00003534191
2373      44443081 ENSG00000142185       ENST00000397932 ENSE00003510537
2374      44443081 ENSG00000142185       ENST00000397932 ENSE00003547493
2375      44443081 ENSG00000142185       ENST00000397932 ENSE00003580935
2376      44443081 ENSG00000142185       ENST00000397932 ENSE00003546941
2377      44443081 ENSG00000142185       ENST00000397932 ENSE00003630131
2378      44443081 ENSG00000142185       ENST00000397932 ENSE00003488936
2379      44443081 ENSG00000142185       ENST00000397932 ENSE00003499642
2380      44443081 ENSG00000142185       ENST00000397932 ENSE00003538028
2381      44443081 ENSG00000142185       ENST00000397932 ENSE00003546538
2382      44443081 ENSG00000142185       ENST00000397932 ENSE00001877735
2383      44443081 ENSG00000142185       ENST00000397932 ENSE00001530839
2384      44443081 ENSG00000142185       ENST00000397932 ENSE00001876151
2385      44443081 ENSG00000142185       ENST00000300481 ENSE00001211363
2386      44443081 ENSG00000142185       ENST00000300481 ENSE00001136423
2387      44443081 ENSG00000142185       ENST00000300481 ENSE00001050770
2388      44443081 ENSG00000142185       ENST00000300481 ENSE00001136239
2389      44443081 ENSG00000142185       ENST00000300481 ENSE00003563694
2390      44443081 ENSG00000142185       ENST00000300481 ENSE00003691176
2391      44443081 ENSG00000142185       ENST00000300481 ENSE00003509381
2392      44443081 ENSG00000142185       ENST00000300481 ENSE00003518763
2393      44443081 ENSG00000142185       ENST00000300481 ENSE00003500029
2394      44443081 ENSG00000142185       ENST00000300481 ENSE00003484543
2395      44443081 ENSG00000142185       ENST00000300481 ENSE00003599280
2396      44443081 ENSG00000142185       ENST00000300481 ENSE00003597184
2397      44443081 ENSG00000142185       ENST00000300481 ENSE00003465034
2398      44443081 ENSG00000142185       ENST00000300481 ENSE00003636376
2399      44443081 ENSG00000142185       ENST00000300481 ENSE00003562029
2400      44443081 ENSG00000142185       ENST00000300481 ENSE00003529143
2401      44443081 ENSG00000142185       ENST00000300481 ENSE00003604228
2402      44443081 ENSG00000142185       ENST00000300481 ENSE00003621257
2403      44443081 ENSG00000142185       ENST00000300481 ENSE00003626924
2404      44443081 ENSG00000142185       ENST00000300481 ENSE00003534191
2405      44443081 ENSG00000142185       ENST00000300481 ENSE00003510537
2406      44443081 ENSG00000142185       ENST00000300481 ENSE00003547493
2407      44443081 ENSG00000142185       ENST00000300481 ENSE00003580935
2408      44443081 ENSG00000142185       ENST00000300481 ENSE00003546941
2409      44443081 ENSG00000142185       ENST00000300481 ENSE00003488936
2410      44443081 ENSG00000142185       ENST00000300481 ENSE00003499642
2411      44443081 ENSG00000142185       ENST00000300481 ENSE00003538028
2412      44443081 ENSG00000142185       ENST00000300481 ENSE00003546538
2413      44443081 ENSG00000142185       ENST00000300481 ENSE00003693802
2414      44443081 ENSG00000142185       ENST00000300481 ENSE00001877735
2415      44443081 ENSG00000142185       ENST00000300481 ENSE00001416218
2416      44443081 ENSG00000142185       ENST00000300481 ENSE00001414553
2417      44443081 ENSG00000142185       ENST00000498430 ENSE00001902244
2418      44443081 ENSG00000142185       ENST00000498430 ENSE00003471764
2419      44443081 ENSG00000142185       ENST00000498430 ENSE00003459665
2420      44443081 ENSG00000142185       ENST00000498430 ENSE00003651596
2421      44443081 ENSG00000142185       ENST00000498430 ENSE00003682501
2422      44443081 ENSG00000142185       ENST00000498430 ENSE00003675520
2423      44443081 ENSG00000142185       ENST00000498430 ENSE00003622879
2424      44443081 ENSG00000142185       ENST00000498430 ENSE00003691530
2425      44443081 ENSG00000142185       ENST00000498430 ENSE00003507409
2426      44443081 ENSG00000142185       ENST00000498430 ENSE00003623903
2427      44443081 ENSG00000142185       ENST00000498430 ENSE00003524621
2428      44443081 ENSG00000142185       ENST00000498430 ENSE00003524534
2429      44443081 ENSG00000142185       ENST00000498430 ENSE00003580616
2430      44443081 ENSG00000142185       ENST00000498430 ENSE00003549137
2431      44443081 ENSG00000142185       ENST00000498430 ENSE00003663649
2432      44443081 ENSG00000142185       ENST00000498430 ENSE00003578389
2433      44443081 ENSG00000142185       ENST00000498430 ENSE00003667346
2434      44443081 ENSG00000142185       ENST00000498430 ENSE00003520249
2435      44443081 ENSG00000142185       ENST00000498430 ENSE00003687397
2436      44443081 ENSG00000142185       ENST00000498430 ENSE00003632964
2437      44443081 ENSG00000142185       ENST00000498430 ENSE00003638286
2438      44443081 ENSG00000142185       ENST00000498430 ENSE00003578159
2439      44443081 ENSG00000142185       ENST00000498430 ENSE00003508814
2440      44443081 ENSG00000142185       ENST00000498430 ENSE00003465116
2441      44443081 ENSG00000142185       ENST00000498430 ENSE00003549495
2442      44443081 ENSG00000142185       ENST00000498430 ENSE00003653585
2443      44443081 ENSG00000142185       ENST00000498430 ENSE00003565672
2444      44443081 ENSG00000142185       ENST00000498430 ENSE00003636165
2445      44443081 ENSG00000142185       ENST00000490982 ENSE00003465116
2446      44443081 ENSG00000142185       ENST00000490982 ENSE00003549495
2447      44443081 ENSG00000142185       ENST00000490982 ENSE00003653585
2448      44443081 ENSG00000142185       ENST00000490982 ENSE00003565672
2449      44443081 ENSG00000142185       ENST00000490982 ENSE00001956052
2450      44443081 ENSG00000142185       ENST00000490982 ENSE00001881565
2451      44443081 ENSG00000142185       ENST00000490982 ENSE00001943881
2452      44443081 ENSG00000142185       ENST00000621064 ENSE00003546941
2453      44443081 ENSG00000142185       ENST00000621064 ENSE00003488936
2454      44443081 ENSG00000142185       ENST00000621064 ENSE00003499642
2455      44443081 ENSG00000142185       ENST00000621064 ENSE00003538028
2456      44443081 ENSG00000142185       ENST00000621064 ENSE00003546538
2457      44443081 ENSG00000142185       ENST00000621064 ENSE00003718749
2458      44443081 ENSG00000142185       ENST00000621064 ENSE00003715769
2459      44443081 ENSG00000142185       ENST00000621064 ENSE00003745506
2460      44443081 ENSG00000142185       ENST00000621064 ENSE00003750244
2461      44443081 ENSG00000142185       ENST00000621064 ENSE00003749845
2462      44439110 ENSG00000264452       ENST00000583496 ENSE00002709519
2463      44437175 ENSG00000266692       ENST00000581669 ENSE00002724833
2464      44425272 ENSG00000230061       ENST00000423310 ENSE00001678346
2465      44425272 ENSG00000230061       ENST00000423310 ENSE00001670662
2466      44425272 ENSG00000230061       ENST00000423310 ENSE00001659958
2467      44425272 ENSG00000230061       ENST00000456880 ENSE00001767057
2468      44425272 ENSG00000230061       ENST00000456880 ENSE00001609549
2469      44348295 ENSG00000260256       ENST00000568332 ENSE00002602902
2470      44340470 ENSG00000232969       ENST00000426029 ENSE00001737329
2471      44340470 ENSG00000232969       ENST00000426029 ENSE00001772801
2472      44339402 ENSG00000160226       ENST00000397956 ENSE00003613299
2473      44339402 ENSG00000160226       ENST00000397956 ENSE00003567529
2474      44339402 ENSG00000160226       ENST00000397956 ENSE00003465964
2475      44339402 ENSG00000160226       ENST00000397956 ENSE00003623799
2476      44339402 ENSG00000160226       ENST00000397956 ENSE00001424924
2477      44339402 ENSG00000160226       ENST00000397956 ENSE00001376910
2478      44339402 ENSG00000160226       ENST00000397956 ENSE00003539176
2479      44339402 ENSG00000160226       ENST00000496321 ENSE00003689756
2480      44339402 ENSG00000160226       ENST00000496321 ENSE00001953648
2481      44339402 ENSG00000160226       ENST00000496321 ENSE00003630507
2482      44339402 ENSG00000160226       ENST00000496321 ENSE00001846530
2483      44339402 ENSG00000160226       ENST00000496321 ENSE00003571080
2484      44339402 ENSG00000160226       ENST00000496321 ENSE00001844561
2485      44339402 ENSG00000160226       ENST00000496321 ENSE00003520918
2486      44339402 ENSG00000160226       ENST00000496321 ENSE00003481879
2487      44339402 ENSG00000160226       ENST00000470196 ENSE00001874997
2488      44339402 ENSG00000160226       ENST00000470196 ENSE00003547241
2489      44339402 ENSG00000160226       ENST00000470196 ENSE00003689756
2490      44339402 ENSG00000160226       ENST00000478674 ENSE00001889989
2491      44339402 ENSG00000160226       ENST00000478674 ENSE00001946448
2492      44339402 ENSG00000160226       ENST00000325223 ENSE00001228467
2493      44339402 ENSG00000160226       ENST00000325223 ENSE00003613299
2494      44339402 ENSG00000160226       ENST00000325223 ENSE00003567529
2495      44339402 ENSG00000160226       ENST00000325223 ENSE00003465964
2496      44339402 ENSG00000160226       ENST00000325223 ENSE00003623799
2497      44339402 ENSG00000160226       ENST00000325223 ENSE00003539176
2498      44339402 ENSG00000160226       ENST00000325223 ENSE00003633104
2499      44339402 ENSG00000160226       ENST00000462742 ENSE00003689756
2500      44339402 ENSG00000160226       ENST00000462742 ENSE00003630507
2501      44339402 ENSG00000160226       ENST00000462742 ENSE00001927617
2502      44339402 ENSG00000160226       ENST00000462742 ENSE00001820612
2503      44339402 ENSG00000160226       ENST00000462742 ENSE00003485191
2504      44339402 ENSG00000160226       ENST00000462742 ENSE00001889941
2505      44339402 ENSG00000160226       ENST00000339818 ENSE00001228467
2506      44339402 ENSG00000160226       ENST00000339818 ENSE00003613299
2507      44339402 ENSG00000160226       ENST00000339818 ENSE00003567529
2508      44339402 ENSG00000160226       ENST00000339818 ENSE00003465964
2509      44339402 ENSG00000160226       ENST00000339818 ENSE00003623799
2510      44339402 ENSG00000160226       ENST00000339818 ENSE00003670111
2511      44339402 ENSG00000160226       ENST00000339818 ENSE00001136472
2512      44335851 ENSG00000184441       ENST00000448927 ENSE00001732904
2513      44335851 ENSG00000184441       ENST00000448927 ENSE00001701875
2514      44330221 ENSG00000241728       ENST00000444409 ENSE00001610727
2515      44330221 ENSG00000241728       ENST00000444409 ENSE00001601990
2516      44330221 ENSG00000241728       ENST00000444409 ENSE00001778009
2517      44330221 ENSG00000241728       ENST00000422357 ENSE00001736116
2518      44330221 ENSG00000241728       ENST00000422357 ENSE00001610727
2519      44327376 ENSG00000141959       ENST00000349048 ENSE00001560222
2520      44327376 ENSG00000141959       ENST00000349048 ENSE00003556813
2521      44327376 ENSG00000141959       ENST00000349048 ENSE00003468441
2522      44327376 ENSG00000141959       ENST00000349048 ENSE00003468758
2523      44327376 ENSG00000141959       ENST00000349048 ENSE00003620819
2524      44327376 ENSG00000141959       ENST00000349048 ENSE00003487259
2525      44327376 ENSG00000141959       ENST00000349048 ENSE00003482974
2526      44327376 ENSG00000141959       ENST00000349048 ENSE00003610456
2527      44327376 ENSG00000141959       ENST00000349048 ENSE00003668706
2528      44327376 ENSG00000141959       ENST00000349048 ENSE00003572167
2529      44327376 ENSG00000141959       ENST00000349048 ENSE00003470814
2530      44327376 ENSG00000141959       ENST00000349048 ENSE00003669897
2531      44327376 ENSG00000141959       ENST00000349048 ENSE00003682480
2532      44327376 ENSG00000141959       ENST00000349048 ENSE00003688681
2533      44327376 ENSG00000141959       ENST00000349048 ENSE00003543348
2534      44327376 ENSG00000141959       ENST00000349048 ENSE00003650066
2535      44327376 ENSG00000141959       ENST00000349048 ENSE00003492099
2536      44327376 ENSG00000141959       ENST00000349048 ENSE00003615543
2537      44327376 ENSG00000141959       ENST00000349048 ENSE00003538638
2538      44327376 ENSG00000141959       ENST00000349048 ENSE00003533809
2539      44327376 ENSG00000141959       ENST00000349048 ENSE00003458220
2540      44327376 ENSG00000141959       ENST00000349048 ENSE00003483524
2541      44327376 ENSG00000141959       ENST00000397961 ENSE00001560222
2542      44327376 ENSG00000141959       ENST00000397961 ENSE00003586588
2543      44327376 ENSG00000141959       ENST00000397961 ENSE00002714710
2544      44327376 ENSG00000141959       ENST00000397961 ENSE00003520125
2545      44327376 ENSG00000141959       ENST00000397961 ENSE00003589820
2546      44327376 ENSG00000141959       ENST00000397961 ENSE00003557725
2547      44327376 ENSG00000141959       ENST00000397961 ENSE00003520020
2548      44327376 ENSG00000141959       ENST00000397961 ENSE00003605052
2549      44327376 ENSG00000141959       ENST00000397961 ENSE00003574149
2550      44327376 ENSG00000141959       ENST00000397961 ENSE00003537097
2551      44327376 ENSG00000141959       ENST00000397961 ENSE00003678527
2552      44327376 ENSG00000141959       ENST00000397961 ENSE00003512653
2553      44327376 ENSG00000141959       ENST00000397961 ENSE00003571406
2554      44327376 ENSG00000141959       ENST00000397961 ENSE00003482524
2555      44327376 ENSG00000141959       ENST00000397961 ENSE00003459127
2556      44327376 ENSG00000141959       ENST00000397961 ENSE00003536916
2557      44327376 ENSG00000141959       ENST00000397961 ENSE00003538062
2558      44327376 ENSG00000141959       ENST00000397961 ENSE00003665414
2559      44327376 ENSG00000141959       ENST00000397961 ENSE00003547726
2560      44327376 ENSG00000141959       ENST00000397961 ENSE00003677022
2561      44327376 ENSG00000141959       ENST00000397961 ENSE00003635521
2562      44327376 ENSG00000141959       ENST00000397961 ENSE00003594641
2563      44327376 ENSG00000141959       ENST00000397961 ENSE00003582240
2564      44327376 ENSG00000141959       ENST00000397961 ENSE00003573803
2565      44327376 ENSG00000141959       ENST00000397961 ENSE00003625182
2566      44327376 ENSG00000141959       ENST00000496824 ENSE00003589820
2567      44327376 ENSG00000141959       ENST00000496824 ENSE00003557725
2568      44327376 ENSG00000141959       ENST00000496824 ENSE00003520020
2569      44327376 ENSG00000141959       ENST00000496824 ENSE00003605052
2570      44327376 ENSG00000141959       ENST00000496824 ENSE00003574149
2571      44327376 ENSG00000141959       ENST00000496824 ENSE00003537097
2572      44327376 ENSG00000141959       ENST00000496824 ENSE00003678527
2573      44327376 ENSG00000141959       ENST00000496824 ENSE00001611910
2574      44327376 ENSG00000141959       ENST00000496824 ENSE00003679758
2575      44327376 ENSG00000141959       ENST00000466134 ENSE00003589820
2576      44327376 ENSG00000141959       ENST00000466134 ENSE00003557725
2577      44327376 ENSG00000141959       ENST00000466134 ENSE00003520020
2578      44327376 ENSG00000141959       ENST00000466134 ENSE00003605052
2579      44327376 ENSG00000141959       ENST00000466134 ENSE00003574149
2580      44327376 ENSG00000141959       ENST00000466134 ENSE00003512653
2581      44327376 ENSG00000141959       ENST00000466134 ENSE00003571406
2582      44327376 ENSG00000141959       ENST00000466134 ENSE00003536916
2583      44327376 ENSG00000141959       ENST00000466134 ENSE00003538062
2584      44327376 ENSG00000141959       ENST00000466134 ENSE00003665414
2585      44327376 ENSG00000141959       ENST00000466134 ENSE00003547726
2586      44327376 ENSG00000141959       ENST00000466134 ENSE00003677022
2587      44327376 ENSG00000141959       ENST00000466134 ENSE00003635521
2588      44327376 ENSG00000141959       ENST00000466134 ENSE00003594641
2589      44327376 ENSG00000141959       ENST00000466134 ENSE00003573803
2590      44327376 ENSG00000141959       ENST00000466134 ENSE00003625182
2591      44327376 ENSG00000141959       ENST00000466134 ENSE00001834602
2592      44327376 ENSG00000141959       ENST00000466134 ENSE00001819263
2593      44327376 ENSG00000141959       ENST00000466134 ENSE00001847043
2594      44327376 ENSG00000141959       ENST00000466134 ENSE00001854527
2595      44327376 ENSG00000141959       ENST00000491298 ENSE00003589820
2596      44327376 ENSG00000141959       ENST00000491298 ENSE00003557725
2597      44327376 ENSG00000141959       ENST00000491298 ENSE00003520020
2598      44327376 ENSG00000141959       ENST00000491298 ENSE00003605052
2599      44327376 ENSG00000141959       ENST00000491298 ENSE00003574149
2600      44327376 ENSG00000141959       ENST00000491298 ENSE00001892739
2601      44327376 ENSG00000141959       ENST00000491298 ENSE00001866194
2602      44327376 ENSG00000141959       ENST00000474114 ENSE00003512653
2603      44327376 ENSG00000141959       ENST00000474114 ENSE00003571406
2604      44327376 ENSG00000141959       ENST00000474114 ENSE00003538062
2605      44327376 ENSG00000141959       ENST00000474114 ENSE00003665414
2606      44327376 ENSG00000141959       ENST00000474114 ENSE00003547726
2607      44327376 ENSG00000141959       ENST00000474114 ENSE00003677022
2608      44327376 ENSG00000141959       ENST00000474114 ENSE00003573803
2609      44327376 ENSG00000141959       ENST00000474114 ENSE00003625182
2610      44327376 ENSG00000141959       ENST00000474114 ENSE00001840062
2611      44327376 ENSG00000141959       ENST00000474114 ENSE00001936818
2612      44327376 ENSG00000141959       ENST00000474114 ENSE00001938426
2613      44327376 ENSG00000141959       ENST00000498841 ENSE00003536916
2614      44327376 ENSG00000141959       ENST00000498841 ENSE00003538062
2615      44327376 ENSG00000141959       ENST00000498841 ENSE00003665414
2616      44327376 ENSG00000141959       ENST00000498841 ENSE00003547726
2617      44327376 ENSG00000141959       ENST00000498841 ENSE00003677022
2618      44327376 ENSG00000141959       ENST00000498841 ENSE00003573803
2619      44327376 ENSG00000141959       ENST00000498841 ENSE00003625182
2620      44327376 ENSG00000141959       ENST00000498841 ENSE00001938426
2621      44327376 ENSG00000141959       ENST00000498841 ENSE00001847152
2622      44327376 ENSG00000141959       ENST00000460020 ENSE00003536916
2623      44327376 ENSG00000141959       ENST00000460020 ENSE00003538062
2624      44327376 ENSG00000141959       ENST00000460020 ENSE00003665414
2625      44327376 ENSG00000141959       ENST00000460020 ENSE00003547726
2626      44327376 ENSG00000141959       ENST00000460020 ENSE00001885464
2627      44327376 ENSG00000141959       ENST00000460020 ENSE00001943900
2628      44327376 ENSG00000141959       ENST00000467315 ENSE00003536916
2629      44327376 ENSG00000141959       ENST00000467315 ENSE00003538062
2630      44327376 ENSG00000141959       ENST00000467315 ENSE00003665414
2631      44327376 ENSG00000141959       ENST00000467315 ENSE00003547726
2632      44327376 ENSG00000141959       ENST00000467315 ENSE00003677022
2633      44327376 ENSG00000141959       ENST00000467315 ENSE00003635521
2634      44327376 ENSG00000141959       ENST00000467315 ENSE00003594641
2635      44327376 ENSG00000141959       ENST00000467315 ENSE00003582240
2636      44327376 ENSG00000141959       ENST00000467315 ENSE00003573803
2637      44327376 ENSG00000141959       ENST00000467315 ENSE00003625182
2638      44327376 ENSG00000141959       ENST00000467315 ENSE00001856420
2639      44327376 ENSG00000141959       ENST00000460521 ENSE00003538062
2640      44327376 ENSG00000141959       ENST00000460521 ENSE00003665414
2641      44327376 ENSG00000141959       ENST00000460521 ENSE00003547726
2642      44327376 ENSG00000141959       ENST00000460521 ENSE00003677022
2643      44327376 ENSG00000141959       ENST00000460521 ENSE00003635521
2644      44327376 ENSG00000141959       ENST00000460521 ENSE00003594641
2645      44327376 ENSG00000141959       ENST00000460521 ENSE00003582240
2646      44327376 ENSG00000141959       ENST00000460521 ENSE00003573803
2647      44327376 ENSG00000141959       ENST00000460521 ENSE00003625182
2648      44327376 ENSG00000141959       ENST00000460521 ENSE00001897458
2649      44327376 ENSG00000141959       ENST00000495274 ENSE00003665414
2650      44327376 ENSG00000141959       ENST00000495274 ENSE00003547726
2651      44327376 ENSG00000141959       ENST00000495274 ENSE00003677022
2652      44327376 ENSG00000141959       ENST00000495274 ENSE00003635521
2653      44327376 ENSG00000141959       ENST00000495274 ENSE00001819579
2654      44327376 ENSG00000141959       ENST00000628044 ENSE00003775335
2655      44327376 ENSG00000141959       ENST00000628044 ENSE00003764175
2656      44298648 ENSG00000160224       ENST00000530812 ENSE00002196264
2657      44298648 ENSG00000160224       ENST00000530812 ENSE00003528176
2658      44298648 ENSG00000160224       ENST00000530812 ENSE00002149937
2659      44298648 ENSG00000160224       ENST00000530812 ENSE00002161949
2660      44298648 ENSG00000160224       ENST00000530812 ENSE00003661391
2661      44298648 ENSG00000160224       ENST00000530812 ENSE00002177605
2662      44298648 ENSG00000160224       ENST00000530812 ENSE00003547168
2663      44298648 ENSG00000160224       ENST00000530812 ENSE00003689225
2664      44298648 ENSG00000160224       ENST00000530812 ENSE00003565844
2665      44298648 ENSG00000160224       ENST00000530812 ENSE00003569029
2666      44298648 ENSG00000160224       ENST00000530812 ENSE00003557852
2667      44298648 ENSG00000160224       ENST00000530812 ENSE00002143741
2668      44298648 ENSG00000160224       ENST00000527919 ENSE00003528176
2669      44298648 ENSG00000160224       ENST00000527919 ENSE00002149937
2670      44298648 ENSG00000160224       ENST00000527919 ENSE00003661391
2671      44298648 ENSG00000160224       ENST00000527919 ENSE00002177605
2672      44298648 ENSG00000160224       ENST00000527919 ENSE00003547168
2673      44298648 ENSG00000160224       ENST00000527919 ENSE00003689225
2674      44298648 ENSG00000160224       ENST00000527919 ENSE00003565844
2675      44298648 ENSG00000160224       ENST00000527919 ENSE00003557852
2676      44298648 ENSG00000160224       ENST00000527919 ENSE00002157138
2677      44298648 ENSG00000160224       ENST00000527919 ENSE00003571459
2678      44298648 ENSG00000160224       ENST00000527919 ENSE00002197440
2679      44298648 ENSG00000160224       ENST00000527919 ENSE00003641315
2680      44298648 ENSG00000160224       ENST00000527919 ENSE00002141811
2681      44298648 ENSG00000160224       ENST00000527919 ENSE00002165283
2682      44298648 ENSG00000160224       ENST00000291582 ENSE00001050710
2683      44298648 ENSG00000160224       ENST00000291582 ENSE00003484440
2684      44298648 ENSG00000160224       ENST00000291582 ENSE00001050714
2685      44298648 ENSG00000160224       ENST00000291582 ENSE00001050716
2686      44298648 ENSG00000160224       ENST00000291582 ENSE00003524824
2687      44298648 ENSG00000160224       ENST00000291582 ENSE00003592619
2688      44298648 ENSG00000160224       ENST00000291582 ENSE00003685344
2689      44298648 ENSG00000160224       ENST00000291582 ENSE00001136688
2690      44298648 ENSG00000160224       ENST00000291582 ENSE00003560932
2691      44298648 ENSG00000160224       ENST00000291582 ENSE00003569099
2692      44298648 ENSG00000160224       ENST00000291582 ENSE00003600226
2693      44298648 ENSG00000160224       ENST00000291582 ENSE00003664932
2694      44298648 ENSG00000160224       ENST00000291582 ENSE00003586834
2695      44298648 ENSG00000160224       ENST00000291582 ENSE00003668332
2696      44298648 ENSG00000160224       ENST00000397994 ENSE00003547168
2697      44298648 ENSG00000160224       ENST00000397994 ENSE00003565844
2698      44298648 ENSG00000160224       ENST00000397994 ENSE00003569029
2699      44298648 ENSG00000160224       ENST00000397994 ENSE00003557852
2700      44298648 ENSG00000160224       ENST00000397994 ENSE00002168258
2701      44298648 ENSG00000160224       ENST00000397994 ENSE00003353237
2702      44298648 ENSG00000160224       ENST00000397994 ENSE00003529538
2703      44298648 ENSG00000160224       ENST00000397994 ENSE00003624155
2704      44298648 ENSG00000160224       ENST00000337909 ENSE00003547168
2705      44298648 ENSG00000160224       ENST00000337909 ENSE00003689225
2706      44298648 ENSG00000160224       ENST00000337909 ENSE00003565844
2707      44298648 ENSG00000160224       ENST00000337909 ENSE00003569029
2708      44298648 ENSG00000160224       ENST00000337909 ENSE00003557852
2709      44298648 ENSG00000160224       ENST00000337909 ENSE00002168258
2710      44298648 ENSG00000160224       ENST00000337909 ENSE00003353237
2711      44262216 ENSG00000142182       ENST00000436357 ENSE00001687519
2712      44262216 ENSG00000142182       ENST00000436357 ENSE00003790618
2713      44262216 ENSG00000142182       ENST00000436357 ENSE00000952766
2714      44262216 ENSG00000142182       ENST00000436357 ENSE00001678574
2715      44262216 ENSG00000142182       ENST00000270172 ENSE00003790618
2716      44262216 ENSG00000142182       ENST00000270172 ENSE00000952766
2717      44262216 ENSG00000142182       ENST00000270172 ENSE00001371054
2718      44262216 ENSG00000142182       ENST00000270172 ENSE00000952757
2719      44262216 ENSG00000142182       ENST00000270172 ENSE00000952758
2720      44262216 ENSG00000142182       ENST00000270172 ENSE00000952759
2721      44262216 ENSG00000142182       ENST00000270172 ENSE00000952760
2722      44262216 ENSG00000142182       ENST00000270172 ENSE00001286863
2723      44262216 ENSG00000142182       ENST00000270172 ENSE00001297260
2724      44262216 ENSG00000142182       ENST00000270172 ENSE00001311957
2725      44262216 ENSG00000142182       ENST00000270172 ENSE00001291091
2726      44262216 ENSG00000142182       ENST00000270172 ENSE00000952767
2727      44262216 ENSG00000142182       ENST00000628202 ENSE00003790618
2728      44262216 ENSG00000142182       ENST00000628202 ENSE00000952766
2729      44262216 ENSG00000142182       ENST00000628202 ENSE00000952757
2730      44262216 ENSG00000142182       ENST00000628202 ENSE00000952758
2731      44262216 ENSG00000142182       ENST00000628202 ENSE00000952759
2732      44262216 ENSG00000142182       ENST00000628202 ENSE00000952760
2733      44262216 ENSG00000142182       ENST00000628202 ENSE00001286863
2734      44262216 ENSG00000142182       ENST00000628202 ENSE00001297260
2735      44262216 ENSG00000142182       ENST00000628202 ENSE00001311957
2736      44262216 ENSG00000142182       ENST00000628202 ENSE00001291091
2737      44262216 ENSG00000142182       ENST00000628202 ENSE00003768543
2738      44262216 ENSG00000142182       ENST00000628202 ENSE00003767744
2739      44262216 ENSG00000142182       ENST00000431166 ENSE00003790618
2740      44262216 ENSG00000142182       ENST00000431166 ENSE00000952757
2741      44262216 ENSG00000142182       ENST00000431166 ENSE00000952759
2742      44262216 ENSG00000142182       ENST00000431166 ENSE00000952760
2743      44262216 ENSG00000142182       ENST00000431166 ENSE00001286863
2744      44262216 ENSG00000142182       ENST00000431166 ENSE00001297260
2745      44262216 ENSG00000142182       ENST00000431166 ENSE00001311957
2746      44262216 ENSG00000142182       ENST00000431166 ENSE00001291091
2747      44262216 ENSG00000142182       ENST00000431166 ENSE00001754418
2748      44251520 ENSG00000232010       ENST00000442785 ENSE00001615938
2749      44251520 ENSG00000232010       ENST00000442785 ENSE00001605285
2750      44244993 ENSG00000275799       ENST00000620163 ENSE00003725912
2751      44242081 ENSG00000278158       ENST00000619053 ENSE00003728435
2752      44240966 ENSG00000160223       ENST00000344330 ENSE00001834816
2753      44240966 ENSG00000160223       ENST00000344330 ENSE00001177742
2754      44240966 ENSG00000160223       ENST00000344330 ENSE00001050700
2755      44240966 ENSG00000160223       ENST00000344330 ENSE00001050697
2756      44240966 ENSG00000160223       ENST00000344330 ENSE00001050698
2757      44240966 ENSG00000160223       ENST00000344330 ENSE00001110032
2758      44240966 ENSG00000160223       ENST00000344330 ENSE00001302127
2759      44240966 ENSG00000160223       ENST00000407780 ENSE00001177742
2760      44240966 ENSG00000160223       ENST00000407780 ENSE00001050700
2761      44240966 ENSG00000160223       ENST00000407780 ENSE00001050697
2762      44240966 ENSG00000160223       ENST00000407780 ENSE00001050698
2763      44240966 ENSG00000160223       ENST00000407780 ENSE00001110032
2764      44240966 ENSG00000160223       ENST00000407780 ENSE00001326742
2765      44240966 ENSG00000160223       ENST00000407780 ENSE00001881360
2766      44240966 ENSG00000160223       ENST00000400379 ENSE00001177742
2767      44240966 ENSG00000160223       ENST00000400379 ENSE00001050700
2768      44240966 ENSG00000160223       ENST00000400379 ENSE00001050697
2769      44240966 ENSG00000160223       ENST00000400379 ENSE00001050698
2770      44240966 ENSG00000160223       ENST00000400379 ENSE00001326742
2771      44240966 ENSG00000160223       ENST00000400379 ENSE00001664578
2772      44240966 ENSG00000160223       ENST00000400377 ENSE00001177742
2773      44240966 ENSG00000160223       ENST00000400377 ENSE00001050697
2774      44240966 ENSG00000160223       ENST00000400377 ENSE00001050698
2775      44240966 ENSG00000160223       ENST00000400377 ENSE00001110032
2776      44240966 ENSG00000160223       ENST00000400377 ENSE00001884276
2777      44240966 ENSG00000160223       ENST00000400377 ENSE00001542652
2778      44207399 ENSG00000232698       ENST00000423967 ENSE00001685278
2779      44207399 ENSG00000232698       ENST00000423967 ENSE00001758001
2780      44202696 ENSG00000232124       ENST00000437557 ENSE00001601966
2781      44202696 ENSG00000232124       ENST00000437557 ENSE00001612223
2782      44176453 ENSG00000237604       ENST00000411956 ENSE00001692025
2783      44176453 ENSG00000237604       ENST00000411956 ENSE00001737581
2784      44160076 ENSG00000225331       ENST00000411694 ENSE00001708764
2785      44160076 ENSG00000225331       ENST00000411694 ENSE00001605988
2786      44160076 ENSG00000225331       ENST00000424921 ENSE00001728626
2787      44160076 ENSG00000225331       ENST00000424921 ENSE00001690812
2788      44160076 ENSG00000225331       ENST00000424921 ENSE00001634931
2789      44145723 ENSG00000160221       ENST00000291577 ENSE00001822596
2790      44145723 ENSG00000160221       ENST00000291577 ENSE00003673943
2791      44145723 ENSG00000160221       ENST00000291577 ENSE00003570914
2792      44145723 ENSG00000160221       ENST00000291577 ENSE00003619394
2793      44145723 ENSG00000160221       ENST00000291577 ENSE00003482790
2794      44145723 ENSG00000160221       ENST00000291577 ENSE00003667692
2795      44145723 ENSG00000160221       ENST00000291577 ENSE00001506660
2796      44145723 ENSG00000160221       ENST00000495007 ENSE00001849368
2797      44145723 ENSG00000160221       ENST00000495007 ENSE00003580779
2798      44145723 ENSG00000160221       ENST00000495007 ENSE00003672906
2799      44145723 ENSG00000160221       ENST00000495007 ENSE00003665668
2800      44145723 ENSG00000160221       ENST00000495007 ENSE00003676797
2801      44145723 ENSG00000160221       ENST00000495007 ENSE00001853546
2802      44145723 ENSG00000160221       ENST00000427803 ENSE00003673943
2803      44145723 ENSG00000160221       ENST00000427803 ENSE00003570914
2804      44145723 ENSG00000160221       ENST00000427803 ENSE00003619394
2805      44145723 ENSG00000160221       ENST00000427803 ENSE00003482790
2806      44145723 ENSG00000160221       ENST00000427803 ENSE00001876352
2807      44145723 ENSG00000160221       ENST00000427803 ENSE00001613924
2808      44145723 ENSG00000160221       ENST00000493883 ENSE00003580779
2809      44145723 ENSG00000160221       ENST00000493883 ENSE00003672906
2810      44145723 ENSG00000160221       ENST00000493883 ENSE00003665668
2811      44145723 ENSG00000160221       ENST00000493883 ENSE00001845946
2812      44145723 ENSG00000160221       ENST00000493883 ENSE00003474302
2813      44145723 ENSG00000160221       ENST00000480786 ENSE00003580779
2814      44145723 ENSG00000160221       ENST00000480786 ENSE00003672906
2815      44145723 ENSG00000160221       ENST00000480786 ENSE00001937614
2816      44145723 ENSG00000160221       ENST00000480786 ENSE00003566481
2817      44145723 ENSG00000160221       ENST00000480786 ENSE00001882951
2818      44145723 ENSG00000160221       ENST00000348499 ENSE00003673943
2819      44145723 ENSG00000160221       ENST00000348499 ENSE00003570914
2820      44145723 ENSG00000160221       ENST00000348499 ENSE00003619394
2821      44145723 ENSG00000160221       ENST00000348499 ENSE00003667692
2822      44145723 ENSG00000160221       ENST00000348499 ENSE00001506660
2823      44145723 ENSG00000160221       ENST00000348499 ENSE00001857588
2824      44145723 ENSG00000160221       ENST00000389690 ENSE00003673943
2825      44145723 ENSG00000160221       ENST00000389690 ENSE00003570914
2826      44145723 ENSG00000160221       ENST00000389690 ENSE00003619394
2827      44145723 ENSG00000160221       ENST00000389690 ENSE00003482790
2828      44145723 ENSG00000160221       ENST00000389690 ENSE00001603625
2829      44145723 ENSG00000160221       ENST00000389690 ENSE00003626079
2830      44145723 ENSG00000160221       ENST00000449622 ENSE00003673943
2831      44145723 ENSG00000160221       ENST00000449622 ENSE00003570914
2832      44145723 ENSG00000160221       ENST00000449622 ENSE00003482790
2833      44145723 ENSG00000160221       ENST00000449622 ENSE00003667692
2834      44145723 ENSG00000160221       ENST00000449622 ENSE00001506660
2835      44145723 ENSG00000160221       ENST00000449622 ENSE00001612727
2836      44145723 ENSG00000160221       ENST00000449622 ENSE00001804088
2837      44145723 ENSG00000160221       ENST00000488392 ENSE00001953904
2838      44145723 ENSG00000160221       ENST00000488392 ENSE00001927142
2839      44145723 ENSG00000160221       ENST00000419699 ENSE00003619394
2840      44145723 ENSG00000160221       ENST00000419699 ENSE00003482790
2841      44145723 ENSG00000160221       ENST00000419699 ENSE00003667692
2842      44145723 ENSG00000160221       ENST00000419699 ENSE00001754071
2843      44145723 ENSG00000160221       ENST00000419699 ENSE00001638299
2844      44145723 ENSG00000160221       ENST00000419699 ENSE00001675777
2845      44145723 ENSG00000160221       ENST00000470545 ENSE00001828535
2846      44145723 ENSG00000160221       ENST00000470545 ENSE00001901011
2847      44131181 ENSG00000241945       ENST00000291576 ENSE00001367795
2848      44131181 ENSG00000241945       ENST00000291576 ENSE00001177844
2849      44131181 ENSG00000241945       ENST00000291576 ENSE00001050676
2850      44131181 ENSG00000241945       ENST00000291576 ENSE00001050672
2851      44131181 ENSG00000241945       ENST00000291576 ENSE00003579779
2852      44131181 ENSG00000241945       ENST00000291576 ENSE00003682861
2853      44131181 ENSG00000241945       ENST00000291576 ENSE00003660102
2854      44131181 ENSG00000241945       ENST00000291576 ENSE00001050670
2855      44131181 ENSG00000241945       ENST00000291576 ENSE00001050681
2856      44131181 ENSG00000241945       ENST00000291576 ENSE00001050669
2857      44131181 ENSG00000241945       ENST00000291576 ENSE00003612411
2858      44131181 ENSG00000241945       ENST00000291576 ENSE00003671210
2859      44131181 ENSG00000241945       ENST00000291576 ENSE00001050666
2860      44131181 ENSG00000241945       ENST00000291576 ENSE00001050680
2861      44131181 ENSG00000241945       ENST00000291576 ENSE00001050675
2862      44131181 ENSG00000241945       ENST00000291576 ENSE00003652919
2863      44131181 ENSG00000241945       ENST00000291576 ENSE00003469591
2864      44131181 ENSG00000241945       ENST00000291576 ENSE00003545412
2865      44131181 ENSG00000241945       ENST00000291576 ENSE00003592879
2866      44131181 ENSG00000241945       ENST00000291576 ENSE00003554676
2867      44131181 ENSG00000241945       ENST00000291576 ENSE00001050684
2868      44131181 ENSG00000241945       ENST00000456705 ENSE00001177844
2869      44131181 ENSG00000241945       ENST00000456705 ENSE00001050676
2870      44131181 ENSG00000241945       ENST00000456705 ENSE00001605720
2871      44131181 ENSG00000241945       ENST00000456705 ENSE00003646685
2872      44131181 ENSG00000241945       ENST00000456705 ENSE00003465236
2873      44131181 ENSG00000241945       ENST00000456705 ENSE00001738496
2874      44131181 ENSG00000241945       ENST00000486126 ENSE00001843881
2875      44131181 ENSG00000241945       ENST00000486126 ENSE00003485231
2876      44131181 ENSG00000241945       ENST00000486126 ENSE00003657793
2877      44131181 ENSG00000241945       ENST00000486126 ENSE00001907344
2878      44131181 ENSG00000241945       ENST00000471490 ENSE00001914183
2879      44131181 ENSG00000241945       ENST00000471490 ENSE00003620555
2880      44131181 ENSG00000241945       ENST00000471490 ENSE00003495215
2881      44131181 ENSG00000241945       ENST00000471490 ENSE00001899443
2882      44131181 ENSG00000241945       ENST00000471490 ENSE00001888031
2883      44131181 ENSG00000241945       ENST00000471490 ENSE00001908491
2884      44131181 ENSG00000241945       ENST00000494310 ENSE00003693408
2885      44131181 ENSG00000241945       ENST00000494310 ENSE00003498598
2886      44131181 ENSG00000241945       ENST00000494310 ENSE00001911388
2887      44131181 ENSG00000241945       ENST00000494310 ENSE00003535688
2888      44131181 ENSG00000241945       ENST00000494310 ENSE00003549438
2889      44131181 ENSG00000241945       ENST00000494310 ENSE00001936802
2890      44131181 ENSG00000241945       ENST00000476948 ENSE00003549438
2891      44131181 ENSG00000241945       ENST00000476948 ENSE00001937792
2892      44131181 ENSG00000241945       ENST00000476948 ENSE00001936461
2893      44106552 ENSG00000160218       ENST00000380221 ENSE00001953074
2894      44106552 ENSG00000160218       ENST00000380221 ENSE00002296925
2895      44106552 ENSG00000160218       ENST00000380221 ENSE00002279965
2896      44106552 ENSG00000160218       ENST00000380221 ENSE00001050659
2897      44106552 ENSG00000160218       ENST00000380221 ENSE00001050656
2898      44106552 ENSG00000160218       ENST00000380221 ENSE00001050653
2899      44106552 ENSG00000160218       ENST00000380221 ENSE00001755963
2900      44106552 ENSG00000160218       ENST00000291574 ENSE00001953074
2901      44106552 ENSG00000160218       ENST00000291574 ENSE00002296925
2902      44106552 ENSG00000160218       ENST00000291574 ENSE00002279965
2903      44106552 ENSG00000160218       ENST00000291574 ENSE00001050659
2904      44106552 ENSG00000160218       ENST00000291574 ENSE00001050656
2905      44106552 ENSG00000160218       ENST00000291574 ENSE00001050653
2906      44106552 ENSG00000160218       ENST00000291574 ENSE00003577489
2907      44106552 ENSG00000160218       ENST00000291574 ENSE00003535430
2908      44106552 ENSG00000160218       ENST00000291574 ENSE00003689258
2909      44106552 ENSG00000160218       ENST00000291574 ENSE00003655278
2910      44106552 ENSG00000160218       ENST00000291574 ENSE00003677669
2911      44106552 ENSG00000160218       ENST00000291574 ENSE00003554204
2912      44106552 ENSG00000160218       ENST00000291574 ENSE00003640080
2913      44106552 ENSG00000160218       ENST00000291574 ENSE00003467272
2914      44106552 ENSG00000160218       ENST00000291574 ENSE00003647654
2915      44106552 ENSG00000160218       ENST00000291574 ENSE00003571790
2916      44106552 ENSG00000160218       ENST00000291574 ENSE00003627568
2917      44106552 ENSG00000160218       ENST00000291574 ENSE00003612209
2918      44106552 ENSG00000160218       ENST00000291574 ENSE00003630584
2919      44106552 ENSG00000160218       ENST00000291574 ENSE00003620582
2920      44106552 ENSG00000160218       ENST00000291574 ENSE00003603102
2921      44106552 ENSG00000160218       ENST00000291574 ENSE00003580944
2922      44106552 ENSG00000160218       ENST00000291574 ENSE00003483630
2923      44106552 ENSG00000160218       ENST00000422875 ENSE00002296925
2924      44106552 ENSG00000160218       ENST00000422875 ENSE00002279965
2925      44106552 ENSG00000160218       ENST00000422875 ENSE00001050659
2926      44106552 ENSG00000160218       ENST00000422875 ENSE00001050656
2927      44106552 ENSG00000160218       ENST00000422875 ENSE00001050653
2928      44106552 ENSG00000160218       ENST00000422875 ENSE00001221143
2929      44106552 ENSG00000160218       ENST00000422875 ENSE00001698384
2930      44106552 ENSG00000160218       ENST00000422875 ENSE00003668746
2931      44106552 ENSG00000160218       ENST00000422875 ENSE00003521743
2932      44106552 ENSG00000160218       ENST00000422875 ENSE00003584305
2933      44106552 ENSG00000160218       ENST00000422875 ENSE00003614397
2934      44106552 ENSG00000160218       ENST00000422875 ENSE00003675897
2935      44106552 ENSG00000160218       ENST00000422875 ENSE00003667411
2936      44106552 ENSG00000160218       ENST00000422875 ENSE00003621701
2937      44106552 ENSG00000160218       ENST00000422875 ENSE00003691972
2938      44106552 ENSG00000160218       ENST00000422875 ENSE00003473531
2939      44106552 ENSG00000160218       ENST00000422875 ENSE00003658581
2940      44106552 ENSG00000160218       ENST00000422875 ENSE00003508231
2941      44106552 ENSG00000160218       ENST00000422875 ENSE00003656485
2942      44106552 ENSG00000160218       ENST00000422875 ENSE00003512124
2943      44106552 ENSG00000160218       ENST00000422875 ENSE00003528722
2944      44106552 ENSG00000160218       ENST00000422875 ENSE00003694520
2945      44106552 ENSG00000160218       ENST00000422875 ENSE00003694458
2946      44106552 ENSG00000160218       ENST00000422875 ENSE00001775972
2947      44106552 ENSG00000160218       ENST00000481460 ENSE00003621701
2948      44106552 ENSG00000160218       ENST00000481460 ENSE00001948247
2949      44106552 ENSG00000160218       ENST00000481460 ENSE00001945014
2950      44106552 ENSG00000160218       ENST00000461889 ENSE00001945013
2951      44106552 ENSG00000160218       ENST00000461889 ENSE00001956576
2952      44106552 ENSG00000160218       ENST00000459741 ENSE00003512124
2953      44106552 ENSG00000160218       ENST00000459741 ENSE00003528722
2954      44106552 ENSG00000160218       ENST00000459741 ENSE00003694520
2955      44106552 ENSG00000160218       ENST00000459741 ENSE00003694458
2956      44106552 ENSG00000160218       ENST00000459741 ENSE00001854630
2957      44106552 ENSG00000160218       ENST00000459741 ENSE00003552390
2958      44106552 ENSG00000160218       ENST00000465905 ENSE00003656485
2959      44106552 ENSG00000160218       ENST00000465905 ENSE00003512124
2960      44106552 ENSG00000160218       ENST00000465905 ENSE00003528722
2961      44106552 ENSG00000160218       ENST00000465905 ENSE00002026667
2962      44106552 ENSG00000160218       ENST00000465905 ENSE00001912503
2963      44106552 ENSG00000160218       ENST00000483973 ENSE00003656485
2964      44106552 ENSG00000160218       ENST00000483973 ENSE00003512124
2965      44106552 ENSG00000160218       ENST00000483973 ENSE00003528722
2966      44106552 ENSG00000160218       ENST00000483973 ENSE00001911526
2967      44106552 ENSG00000160218       ENST00000483973 ENSE00001943849
2968      44106552 ENSG00000160218       ENST00000486746 ENSE00003656485
2969      44106552 ENSG00000160218       ENST00000486746 ENSE00003512124
2970      44106552 ENSG00000160218       ENST00000486746 ENSE00003528722
2971      44106552 ENSG00000160218       ENST00000486746 ENSE00001830655
2972      44106552 ENSG00000160218       ENST00000486746 ENSE00001819768
2973      44106552 ENSG00000160218       ENST00000469521 ENSE00003512124
2974      44106552 ENSG00000160218       ENST00000469521 ENSE00003528722
2975      44106552 ENSG00000160218       ENST00000469521 ENSE00003694520
2976      44106552 ENSG00000160218       ENST00000469521 ENSE00001882631
2977      44106552 ENSG00000160218       ENST00000469521 ENSE00001893348
2978      44106552 ENSG00000160218       ENST00000485621 ENSE00003528722
2979      44106552 ENSG00000160218       ENST00000485621 ENSE00001836989
2980      44106552 ENSG00000160218       ENST00000485621 ENSE00001942329
2981      44106552 ENSG00000160218       ENST00000468864 ENSE00003694458
2982      44106552 ENSG00000160218       ENST00000468864 ENSE00001951245
2983      44106552 ENSG00000160218       ENST00000468864 ENSE00001920810
2984      44047041 ENSG00000213440       ENST00000416034 ENSE00001639054
2985      44047041 ENSG00000213440       ENST00000416034 ENSE00001517760
2986      43996420 ENSG00000252606       ENST00000516797 ENSE00002089074
2987      43986536 ENSG00000160216       ENST00000291572 ENSE00001950544
2988      43986536 ENSG00000160216       ENST00000291572 ENSE00001137610
2989      43986536 ENSG00000160216       ENST00000291572 ENSE00001414183
2990      43986536 ENSG00000160216       ENST00000291572 ENSE00003532414
2991      43986536 ENSG00000160216       ENST00000291572 ENSE00003635589
2992      43986536 ENSG00000160216       ENST00000291572 ENSE00003620755
2993      43986536 ENSG00000160216       ENST00000291572 ENSE00003790142
2994      43986536 ENSG00000160216       ENST00000291572 ENSE00003500378
2995      43986536 ENSG00000160216       ENST00000291572 ENSE00003671315
2996      43986536 ENSG00000160216       ENST00000291572 ENSE00001420549
2997      43986536 ENSG00000160216       ENST00000474735 ENSE00001892144
2998      43986536 ENSG00000160216       ENST00000474735 ENSE00001896051
2999      43986536 ENSG00000160216       ENST00000474735 ENSE00001946709
3000      43986536 ENSG00000160216       ENST00000474735 ENSE00001957413
3001      43986536 ENSG00000160216       ENST00000448287 ENSE00001137610
3002      43986536 ENSG00000160216       ENST00000448287 ENSE00001414183
3003      43986536 ENSG00000160216       ENST00000448287 ENSE00001769988
3004      43986536 ENSG00000160216       ENST00000448287 ENSE00001753604
3005      43986536 ENSG00000160216       ENST00000398061 ENSE00001137610
3006      43986536 ENSG00000160216       ENST00000398061 ENSE00001414183
3007      43986536 ENSG00000160216       ENST00000398061 ENSE00003532414
3008      43986536 ENSG00000160216       ENST00000398061 ENSE00003635589
3009      43986536 ENSG00000160216       ENST00000398061 ENSE00003620755
3010      43986536 ENSG00000160216       ENST00000398061 ENSE00003790142
3011      43986536 ENSG00000160216       ENST00000398061 ENSE00003500378
3012      43986536 ENSG00000160216       ENST00000398061 ENSE00003671315
3013      43986536 ENSG00000160216       ENST00000398061 ENSE00001531383
3014      43986536 ENSG00000160216       ENST00000398061 ENSE00001321560
3015      43986536 ENSG00000160216       ENST00000327505 ENSE00001414183
3016      43986536 ENSG00000160216       ENST00000327505 ENSE00003532414
3017      43986536 ENSG00000160216       ENST00000327505 ENSE00003635589
3018      43986536 ENSG00000160216       ENST00000327505 ENSE00003620755
3019      43986536 ENSG00000160216       ENST00000327505 ENSE00003790142
3020      43986536 ENSG00000160216       ENST00000327505 ENSE00003500378
3021      43986536 ENSG00000160216       ENST00000327505 ENSE00003671315
3022      43986536 ENSG00000160216       ENST00000327505 ENSE00001321560
3023      43986536 ENSG00000160216       ENST00000327505 ENSE00001531366
3024      43986536 ENSG00000160216       ENST00000445582 ENSE00001414183
3025      43986536 ENSG00000160216       ENST00000445582 ENSE00003532414
3026      43986536 ENSG00000160216       ENST00000445582 ENSE00001793970
3027      43986536 ENSG00000160216       ENST00000445582 ENSE00001768657
3028      43986536 ENSG00000160216       ENST00000398063 ENSE00001414183
3029      43986536 ENSG00000160216       ENST00000398063 ENSE00003532414
3030      43986536 ENSG00000160216       ENST00000398063 ENSE00003635589
3031      43986536 ENSG00000160216       ENST00000398063 ENSE00003620755
3032      43986536 ENSG00000160216       ENST00000398063 ENSE00003790142
3033      43986536 ENSG00000160216       ENST00000398063 ENSE00003500378
3034      43986536 ENSG00000160216       ENST00000398063 ENSE00003671315
3035      43986536 ENSG00000160216       ENST00000398063 ENSE00001420549
3036      43986536 ENSG00000160216       ENST00000398063 ENSE00001531391
3037      43986536 ENSG00000160216       ENST00000398058 ENSE00001414183
3038      43986536 ENSG00000160216       ENST00000398058 ENSE00003532414
3039      43986536 ENSG00000160216       ENST00000398058 ENSE00003635589
3040      43986536 ENSG00000160216       ENST00000398058 ENSE00003620755
3041      43986536 ENSG00000160216       ENST00000398058 ENSE00003790142
3042      43986536 ENSG00000160216       ENST00000398058 ENSE00003500378
3043      43986536 ENSG00000160216       ENST00000398058 ENSE00003671315
3044      43986536 ENSG00000160216       ENST00000398058 ENSE00001321560
3045      43986536 ENSG00000160216       ENST00000398058 ENSE00001531361
3046      43986536 ENSG00000160216       ENST00000398058 ENSE00001531359
3047      43986536 ENSG00000160216       ENST00000398058 ENSE00001531358
3048      43986536 ENSG00000160216       ENST00000457068 ENSE00001414183
3049      43986536 ENSG00000160216       ENST00000457068 ENSE00003532414
3050      43986536 ENSG00000160216       ENST00000457068 ENSE00003635589
3051      43986536 ENSG00000160216       ENST00000457068 ENSE00003620755
3052      43986536 ENSG00000160216       ENST00000457068 ENSE00003790142
3053      43986536 ENSG00000160216       ENST00000457068 ENSE00001641882
3054      43986536 ENSG00000160216       ENST00000448845 ENSE00001600918
3055      43986536 ENSG00000160216       ENST00000448845 ENSE00001619416
3056      43986536 ENSG00000160216       ENST00000448845 ENSE00001599763
3057      43986536 ENSG00000160216       ENST00000498670 ENSE00001931929
3058      43986536 ENSG00000160216       ENST00000498670 ENSE00001864296
3059      43986536 ENSG00000160216       ENST00000498670 ENSE00001842203
3060      43986536 ENSG00000160216       ENST00000422850 ENSE00001414183
3061      43986536 ENSG00000160216       ENST00000422850 ENSE00003532414
3062      43986536 ENSG00000160216       ENST00000422850 ENSE00003635589
3063      43986536 ENSG00000160216       ENST00000422850 ENSE00003620755
3064      43986536 ENSG00000160216       ENST00000422850 ENSE00003790142
3065      43986536 ENSG00000160216       ENST00000422850 ENSE00001653194
3066      43986536 ENSG00000160216       ENST00000497909 ENSE00001926499
3067      43986536 ENSG00000160216       ENST00000497909 ENSE00001910758
3068      43986536 ENSG00000160216       ENST00000479117 ENSE00001874093
3069      43986536 ENSG00000160216       ENST00000479117 ENSE00001925147
3070      43986536 ENSG00000160216       ENST00000479117 ENSE00003631068
3071      43986536 ENSG00000160216       ENST00000479117 ENSE00003645537
3072      43986536 ENSG00000160216       ENST00000479117 ENSE00003636375
3073      43986536 ENSG00000160216       ENST00000479117 ENSE00003670715
3074      43986536 ENSG00000160216       ENST00000479117 ENSE00003599240
3075      43986536 ENSG00000160216       ENST00000479117 ENSE00003557357
3076      43986536 ENSG00000160216       ENST00000479117 ENSE00001928991
3077      43986536 ENSG00000160216       ENST00000481319 ENSE00001925147
3078      43986536 ENSG00000160216       ENST00000481319 ENSE00001838730
3079      43986536 ENSG00000160216       ENST00000481319 ENSE00001838240
3080      43986536 ENSG00000160216       ENST00000481319 ENSE00001833458
3081      43986536 ENSG00000160216       ENST00000467358 ENSE00003645537
3082      43986536 ENSG00000160216       ENST00000467358 ENSE00003636375
3083      43986536 ENSG00000160216       ENST00000467358 ENSE00003670715
3084      43986536 ENSG00000160216       ENST00000467358 ENSE00003599240
3085      43986536 ENSG00000160216       ENST00000467358 ENSE00003557357
3086      43986536 ENSG00000160216       ENST00000467358 ENSE00001848324
3087      43986536 ENSG00000160216       ENST00000467358 ENSE00001869981
3088      43986536 ENSG00000160216       ENST00000484865 ENSE00003599240
3089      43986536 ENSG00000160216       ENST00000484865 ENSE00001932028
3090      43986536 ENSG00000160216       ENST00000484865 ENSE00001896463
3091      43986536 ENSG00000160216       ENST00000546158 ENSE00001414183
3092      43986536 ENSG00000160216       ENST00000546158 ENSE00003532414
3093      43986536 ENSG00000160216       ENST00000546158 ENSE00003635589
3094      43986536 ENSG00000160216       ENST00000546158 ENSE00003620755
3095      43986536 ENSG00000160216       ENST00000546158 ENSE00003790142
3096      43986536 ENSG00000160216       ENST00000546158 ENSE00003500378
3097      43986536 ENSG00000160216       ENST00000546158 ENSE00003671315
3098      43986536 ENSG00000160216       ENST00000546158 ENSE00002217841
3099      43986536 ENSG00000160216       ENST00000546158 ENSE00002251004
3100      43919901 ENSG00000199598       ENST00000362728 ENSE00001808844
3101      43856342 ENSG00000226543       ENST00000449877 ENSE00001599627
3102      43812567 ENSG00000215458       ENST00000437258 ENSE00001696564
3103      43812567 ENSG00000215458       ENST00000437258 ENSE00001542670
3104      43812567 ENSG00000215458       ENST00000448247 ENSE00001542670
3105      43812567 ENSG00000215458       ENST00000448247 ENSE00003678800
3106      43812567 ENSG00000215458       ENST00000448247 ENSE00001684957
3107      43812567 ENSG00000215458       ENST00000448247 ENSE00001538942
3108      43812567 ENSG00000215458       ENST00000400385 ENSE00001542670
3109      43812567 ENSG00000215458       ENST00000400385 ENSE00001542671
3110      43805293 ENSG00000160214       ENST00000475534 ENSE00001931102
3111      43805293 ENSG00000160214       ENST00000475534 ENSE00003656454
3112      43805293 ENSG00000160214       ENST00000475534 ENSE00003550106
3113      43805293 ENSG00000160214       ENST00000475534 ENSE00003516124
3114      43805293 ENSG00000160214       ENST00000475534 ENSE00003535222
3115      43805293 ENSG00000160214       ENST00000475534 ENSE00001880625
3116      43805293 ENSG00000160214       ENST00000497547 ENSE00001867462
3117      43805293 ENSG00000160214       ENST00000497547 ENSE00003577332
3118      43805293 ENSG00000160214       ENST00000497547 ENSE00003564822
3119      43805293 ENSG00000160214       ENST00000497547 ENSE00003580595
3120      43805293 ENSG00000160214       ENST00000497547 ENSE00003460664
3121      43805293 ENSG00000160214       ENST00000497547 ENSE00003549420
3122      43805293 ENSG00000160214       ENST00000497547 ENSE00003626947
3123      43805293 ENSG00000160214       ENST00000497547 ENSE00003546458
3124      43805293 ENSG00000160214       ENST00000497547 ENSE00003493319
3125      43805293 ENSG00000160214       ENST00000497547 ENSE00003627514
3126      43805293 ENSG00000160214       ENST00000497547 ENSE00003527287
3127      43805293 ENSG00000160214       ENST00000497547 ENSE00003680163
3128      43805293 ENSG00000160214       ENST00000497547 ENSE00003497110
3129      43805293 ENSG00000160214       ENST00000483896 ENSE00003656454
3130      43805293 ENSG00000160214       ENST00000483896 ENSE00003550106
3131      43805293 ENSG00000160214       ENST00000483896 ENSE00003516124
3132      43805293 ENSG00000160214       ENST00000483896 ENSE00003535222
3133      43805293 ENSG00000160214       ENST00000483896 ENSE00001897232
3134      43805293 ENSG00000160214       ENST00000483896 ENSE00001818491
3135      43805293 ENSG00000160214       ENST00000483896 ENSE00003543761
3136      43805293 ENSG00000160214       ENST00000483896 ENSE00003519158
3137      43805293 ENSG00000160214       ENST00000483896 ENSE00001935204
3138      43805293 ENSG00000160214       ENST00000492638 ENSE00003656454
3139      43805293 ENSG00000160214       ENST00000492638 ENSE00001820769
3140      43805293 ENSG00000160214       ENST00000492638 ENSE00001845578
3141      43805293 ENSG00000160214       ENST00000473988 ENSE00001824364
3142      43805293 ENSG00000160214       ENST00000473988 ENSE00001893624
3143      43805293 ENSG00000160214       ENST00000467112 ENSE00003535222
3144      43805293 ENSG00000160214       ENST00000467112 ENSE00003543761
3145      43805293 ENSG00000160214       ENST00000467112 ENSE00003519158
3146      43805293 ENSG00000160214       ENST00000467112 ENSE00001920474
3147      43805293 ENSG00000160214       ENST00000467112 ENSE00003495573
3148      43805293 ENSG00000160214       ENST00000467112 ENSE00003676200
3149      43805293 ENSG00000160214       ENST00000467112 ENSE00003500627
3150      43805293 ENSG00000160214       ENST00000467112 ENSE00003681408
3151      43805293 ENSG00000160214       ENST00000467112 ENSE00003507179
3152      43805293 ENSG00000160214       ENST00000467112 ENSE00003478106
3153      43805293 ENSG00000160214       ENST00000471909 ENSE00003519158
3154      43805293 ENSG00000160214       ENST00000471909 ENSE00003495573
3155      43805293 ENSG00000160214       ENST00000471909 ENSE00003676200
3156      43805293 ENSG00000160214       ENST00000471909 ENSE00003500627
3157      43805293 ENSG00000160214       ENST00000471909 ENSE00003681408
3158      43805293 ENSG00000160214       ENST00000471909 ENSE00003507179
3159      43805293 ENSG00000160214       ENST00000471909 ENSE00003478106
3160      43805293 ENSG00000160214       ENST00000471909 ENSE00001872195
3161      43783573 ENSG00000234030       ENST00000452969 ENSE00001720675
3162      43776445 ENSG00000160213       ENST00000639959 ENSE00003806135
3163      43776445 ENSG00000160213       ENST00000639959 ENSE00001957681
3164      43776445 ENSG00000160213       ENST00000291568 ENSE00001957681
3165      43776445 ENSG00000160213       ENST00000291568 ENSE00001137740
3166      43776445 ENSG00000160213       ENST00000291568 ENSE00001050609
3167      43776445 ENSG00000160213       ENST00000640406 ENSE00001947020
3168      43776445 ENSG00000160213       ENST00000640406 ENSE00003804825
3169      43776445 ENSG00000160213       ENST00000480147 ENSE00001894639
3170      43762307 ENSG00000160209       ENST00000398081 ENSE00001531495
3171      43762307 ENSG00000160209       ENST00000398081 ENSE00003585237
3172      43762307 ENSG00000160209       ENST00000398081 ENSE00001531493
3173      43762307 ENSG00000160209       ENST00000468090 ENSE00003585237
3174      43762307 ENSG00000160209       ENST00000468090 ENSE00001376263
3175      43762307 ENSG00000160209       ENST00000468090 ENSE00003670847
3176      43762307 ENSG00000160209       ENST00000468090 ENSE00003694032
3177      43762307 ENSG00000160209       ENST00000468090 ENSE00003534315
3178      43762307 ENSG00000160209       ENST00000468090 ENSE00003489627
3179      43762307 ENSG00000160209       ENST00000468090 ENSE00003583352
3180      43762307 ENSG00000160209       ENST00000468090 ENSE00003552597
3181      43762307 ENSG00000160209       ENST00000468090 ENSE00003647981
3182      43762307 ENSG00000160209       ENST00000468090 ENSE00003043881
3183      43762307 ENSG00000160209       ENST00000291565 ENSE00003585237
3184      43762307 ENSG00000160209       ENST00000291565 ENSE00003670847
3185      43762307 ENSG00000160209       ENST00000291565 ENSE00003694032
3186      43762307 ENSG00000160209       ENST00000291565 ENSE00003534315
3187      43762307 ENSG00000160209       ENST00000291565 ENSE00003489627
3188      43762307 ENSG00000160209       ENST00000291565 ENSE00003583352
3189      43762307 ENSG00000160209       ENST00000291565 ENSE00003552597
3190      43762307 ENSG00000160209       ENST00000291565 ENSE00003647981
3191      43762307 ENSG00000160209       ENST00000291565 ENSE00003043881
3192      43762307 ENSG00000160209       ENST00000291565 ENSE00001861574
3193      43762307 ENSG00000160209       ENST00000291565 ENSE00003511412
3194      43762307 ENSG00000160209       ENST00000398085 ENSE00001822483
3195      43762307 ENSG00000160209       ENST00000398085 ENSE00003478560
3196      43762307 ENSG00000160209       ENST00000398085 ENSE00003584320
3197      43762307 ENSG00000160209       ENST00000398085 ENSE00001865037
3198      43762307 ENSG00000160209       ENST00000398085 ENSE00003573041
3199      43762307 ENSG00000160209       ENST00000398085 ENSE00003633585
3200      43762307 ENSG00000160209       ENST00000398085 ENSE00003500846
3201      43762307 ENSG00000160209       ENST00000398085 ENSE00003573966
3202      43762307 ENSG00000160209       ENST00000476084 ENSE00001928563
3203      43762307 ENSG00000160209       ENST00000476084 ENSE00001949080
3204      43762307 ENSG00000160209       ENST00000470029 ENSE00003478560
3205      43762307 ENSG00000160209       ENST00000470029 ENSE00003584320
3206      43762307 ENSG00000160209       ENST00000470029 ENSE00001868734
3207      43762307 ENSG00000160209       ENST00000470029 ENSE00003617125
3208      43762307 ENSG00000160209       ENST00000470029 ENSE00001823145
3209      43762307 ENSG00000160209       ENST00000438837 ENSE00001736120
3210      43762307 ENSG00000160209       ENST00000438837 ENSE00001722546
3211      43762307 ENSG00000160209       ENST00000498040 ENSE00003478560
3212      43762307 ENSG00000160209       ENST00000498040 ENSE00003584320
3213      43762307 ENSG00000160209       ENST00000498040 ENSE00003573041
3214      43762307 ENSG00000160209       ENST00000498040 ENSE00003633585
3215      43762307 ENSG00000160209       ENST00000498040 ENSE00003500846
3216      43762307 ENSG00000160209       ENST00000498040 ENSE00003573966
3217      43762307 ENSG00000160209       ENST00000498040 ENSE00003617125
3218      43762307 ENSG00000160209       ENST00000498040 ENSE00001933485
3219      43762307 ENSG00000160209       ENST00000498040 ENSE00001926471
3220      43762307 ENSG00000160209       ENST00000327574 ENSE00003585237
3221      43762307 ENSG00000160209       ENST00000327574 ENSE00001531493
3222      43762307 ENSG00000160209       ENST00000327574 ENSE00001434352
3223      43762307 ENSG00000160209       ENST00000327574 ENSE00001432839
3224      43762307 ENSG00000160209       ENST00000472777 ENSE00003478560
3225      43762307 ENSG00000160209       ENST00000472777 ENSE00003584320
3226      43762307 ENSG00000160209       ENST00000472777 ENSE00003573041
3227      43762307 ENSG00000160209       ENST00000472777 ENSE00003617125
3228      43762307 ENSG00000160209       ENST00000472777 ENSE00001813503
3229      43762307 ENSG00000160209       ENST00000472777 ENSE00001881690
3230      43762307 ENSG00000160209       ENST00000476313 ENSE00003478560
3231      43762307 ENSG00000160209       ENST00000476313 ENSE00001920411
3232      43762307 ENSG00000160209       ENST00000476313 ENSE00001861531
3233      43762307 ENSG00000160209       ENST00000476313 ENSE00001880782
3234      43762307 ENSG00000160209       ENST00000481512 ENSE00003478560
3235      43762307 ENSG00000160209       ENST00000481512 ENSE00003584320
3236      43762307 ENSG00000160209       ENST00000481512 ENSE00003573041
3237      43762307 ENSG00000160209       ENST00000481512 ENSE00003633585
3238      43762307 ENSG00000160209       ENST00000481512 ENSE00003500846
3239      43762307 ENSG00000160209       ENST00000481512 ENSE00003573966
3240      43762307 ENSG00000160209       ENST00000481512 ENSE00003617125
3241      43762307 ENSG00000160209       ENST00000481512 ENSE00001954980
3242      43762307 ENSG00000160209       ENST00000481512 ENSE00002486241
3243      43762307 ENSG00000160209       ENST00000490666 ENSE00003584320
3244      43762307 ENSG00000160209       ENST00000490666 ENSE00003573041
3245      43762307 ENSG00000160209       ENST00000490666 ENSE00003633585
3246      43762307 ENSG00000160209       ENST00000490666 ENSE00003500846
3247      43762307 ENSG00000160209       ENST00000490666 ENSE00003573966
3248      43762307 ENSG00000160209       ENST00000490666 ENSE00003617125
3249      43762307 ENSG00000160209       ENST00000490666 ENSE00001926471
3250      43762307 ENSG00000160209       ENST00000490666 ENSE00001957154
3251      43762307 ENSG00000160209       ENST00000467908 ENSE00003670847
3252      43762307 ENSG00000160209       ENST00000467908 ENSE00003694032
3253      43762307 ENSG00000160209       ENST00000467908 ENSE00003534315
3254      43762307 ENSG00000160209       ENST00000467908 ENSE00003489627
3255      43762307 ENSG00000160209       ENST00000467908 ENSE00003583352
3256      43762307 ENSG00000160209       ENST00000467908 ENSE00003552597
3257      43762307 ENSG00000160209       ENST00000467908 ENSE00003647981
3258      43762307 ENSG00000160209       ENST00000467908 ENSE00003043881
3259      43762307 ENSG00000160209       ENST00000467908 ENSE00003511412
3260      43762307 ENSG00000160209       ENST00000467908 ENSE00001955629
3261      43762307 ENSG00000160209       ENST00000343528 ENSE00003584320
3262      43762307 ENSG00000160209       ENST00000343528 ENSE00003573041
3263      43762307 ENSG00000160209       ENST00000343528 ENSE00003633585
3264      43762307 ENSG00000160209       ENST00000343528 ENSE00003500846
3265      43762307 ENSG00000160209       ENST00000343528 ENSE00003573966
3266      43762307 ENSG00000160209       ENST00000343528 ENSE00003617125
3267      43762307 ENSG00000160209       ENST00000343528 ENSE00001757941
3268      43762307 ENSG00000160209       ENST00000343528 ENSE00003626994
3269      43762307 ENSG00000160209       ENST00000343528 ENSE00003610600
3270      43762307 ENSG00000160209       ENST00000343528 ENSE00001897856
3271      43762307 ENSG00000160209       ENST00000398078 ENSE00003573041
3272      43762307 ENSG00000160209       ENST00000398078 ENSE00003633585
3273      43762307 ENSG00000160209       ENST00000398078 ENSE00003500846
3274      43762307 ENSG00000160209       ENST00000398078 ENSE00003573966
3275      43762307 ENSG00000160209       ENST00000398078 ENSE00003617125
3276      43762307 ENSG00000160209       ENST00000398078 ENSE00003626994
3277      43762307 ENSG00000160209       ENST00000398078 ENSE00003610600
3278      43762307 ENSG00000160209       ENST00000398078 ENSE00001899869
3279      43762307 ENSG00000160209       ENST00000398078 ENSE00001899812
3280      43762307 ENSG00000160209       ENST00000468392 ENSE00003633585
3281      43762307 ENSG00000160209       ENST00000468392 ENSE00003500846
3282      43762307 ENSG00000160209       ENST00000468392 ENSE00003573966
3283      43762307 ENSG00000160209       ENST00000468392 ENSE00003626994
3284      43762307 ENSG00000160209       ENST00000468392 ENSE00003610600
3285      43762307 ENSG00000160209       ENST00000468392 ENSE00001951613
3286      43762307 ENSG00000160209       ENST00000468392 ENSE00001887017
3287      43762307 ENSG00000160209       ENST00000461123 ENSE00003626994
3288      43762307 ENSG00000160209       ENST00000461123 ENSE00001810387
3289      43762307 ENSG00000160209       ENST00000461123 ENSE00001828323
3290      43762307 ENSG00000160209       ENST00000621478 ENSE00003738484
3291      43762307 ENSG00000160209       ENST00000621478 ENSE00003728118
3292      43748468 ENSG00000281420       ENST00000626421 ENSE00003764467
3293      43748468 ENSG00000281420       ENST00000626421 ENSE00003762175
3294      43696079 ENSG00000160208       ENST00000340648 ENSE00001941645
3295      43696079 ENSG00000160208       ENST00000340648 ENSE00001239328
3296      43696079 ENSG00000160208       ENST00000340648 ENSE00001050562
3297      43696079 ENSG00000160208       ENST00000340648 ENSE00001050568
3298      43696079 ENSG00000160208       ENST00000340648 ENSE00001050565
3299      43696079 ENSG00000160208       ENST00000340648 ENSE00001050567
3300      43696079 ENSG00000160208       ENST00000340648 ENSE00001050573
3301      43696079 ENSG00000160208       ENST00000340648 ENSE00001050575
3302      43696079 ENSG00000160208       ENST00000340648 ENSE00001050574
3303      43696079 ENSG00000160208       ENST00000340648 ENSE00001050577
3304      43696079 ENSG00000160208       ENST00000340648 ENSE00001321016
3305      43696079 ENSG00000160208       ENST00000340648 ENSE00001050563
3306      43696079 ENSG00000160208       ENST00000340648 ENSE00003633685
3307      43696079 ENSG00000160208       ENST00000340648 ENSE00003526149
3308      43696079 ENSG00000160208       ENST00000340648 ENSE00003540860
3309      43696079 ENSG00000160208       ENST00000340648 ENSE00003582735
3310      43696079 ENSG00000160208       ENST00000470886 ENSE00001958301
3311      43696079 ENSG00000160208       ENST00000470886 ENSE00003563803
3312      43696079 ENSG00000160208       ENST00000470886 ENSE00003478014
3313      43696079 ENSG00000160208       ENST00000470886 ENSE00003629364
3314      43696079 ENSG00000160208       ENST00000470886 ENSE00003573979
3315      43659493 ENSG00000160207       ENST00000291560 ENSE00001137985
3316      43659493 ENSG00000160207       ENST00000291560 ENSE00001138002
3317      43659493 ENSG00000160207       ENST00000291560 ENSE00001050553
3318      43659493 ENSG00000160207       ENST00000291560 ENSE00003689880
3319      43659493 ENSG00000160207       ENST00000291560 ENSE00001050558
3320      43659493 ENSG00000160207       ENST00000291560 ENSE00001050554
3321      43659493 ENSG00000160207       ENST00000291560 ENSE00001050552
3322      43659493 ENSG00000160207       ENST00000291560 ENSE00001050560
3323      43659493 ENSG00000160207       ENST00000291560 ENSE00001137993
3324      43659493 ENSG00000160207       ENST00000443485 ENSE00001138002
3325      43659493 ENSG00000160207       ENST00000443485 ENSE00001050553
3326      43659493 ENSG00000160207       ENST00000443485 ENSE00003689880
3327      43659493 ENSG00000160207       ENST00000443485 ENSE00001050554
3328      43659493 ENSG00000160207       ENST00000443485 ENSE00001706558
3329      43659493 ENSG00000160207       ENST00000443485 ENSE00001609701
3330      43659493 ENSG00000160207       ENST00000443485 ENSE00001681243
3331      43609989 ENSG00000278433       ENST00000613967 ENSE00003743001
3332      43565648 ENSG00000234289       ENST00000599962 ENSE00003082382
3333      43551600 ENSG00000214326       ENST00000398116 ENSE00001610827
3334      43479534 ENSG00000185186       ENST00000426942 ENSE00001755943
3335      43479534 ENSG00000185186       ENST00000426942 ENSE00001542735
3336      43479534 ENSG00000185186       ENST00000332440 ENSE00001542735
3337      43479534 ENSG00000185186       ENST00000332440 ENSE00001329509
3338      43479534 ENSG00000185186       ENST00000332440 ENSE00001305748
3339      43479534 ENSG00000185186       ENST00000332440 ENSE00001330292
3340      43479534 ENSG00000185186       ENST00000413721 ENSE00001771153
3341      43479534 ENSG00000185186       ENST00000413721 ENSE00001729555
3342      43479534 ENSG00000185186       ENST00000413721 ENSE00001681839
3343      43479534 ENSG00000185186       ENST00000451543 ENSE00001729555
3344      43479534 ENSG00000185186       ENST00000451543 ENSE00001681839
3345      43479534 ENSG00000185186       ENST00000451543 ENSE00001620546
3346      43479534 ENSG00000185186       ENST00000451543 ENSE00001741723
3347      43479534 ENSG00000185186       ENST00000418516 ENSE00001729555
3348      43479534 ENSG00000185186       ENST00000418516 ENSE00001681839
3349      43479534 ENSG00000185186       ENST00000418516 ENSE00001620546
3350      43479534 ENSG00000185186       ENST00000427188 ENSE00001680526
3351      43479534 ENSG00000185186       ENST00000427188 ENSE00001781042
3352      43479534 ENSG00000185186       ENST00000441283 ENSE00001797826
3353      43479534 ENSG00000185186       ENST00000441283 ENSE00001665443
3354      43479534 ENSG00000185186       ENST00000441283 ENSE00001772662
3355      43479534 ENSG00000185186       ENST00000441283 ENSE00001727051
3356      43467298 ENSG00000223975       ENST00000436359 ENSE00001643004
3357      43467298 ENSG00000223975       ENST00000436359 ENSE00001609467
3358      43453893 ENSG00000188660       ENST00000448049 ENSE00001754001
3359      43453893 ENSG00000188660       ENST00000448049 ENSE00001652290
3360      43453893 ENSG00000188660       ENST00000448049 ENSE00001773693
3361      43453893 ENSG00000188660       ENST00000448049 ENSE00001632520
3362      43453893 ENSG00000188660       ENST00000342757 ENSE00001391090
3363      43453893 ENSG00000188660       ENST00000342757 ENSE00001365651
3364      43453893 ENSG00000188660       ENST00000342757 ENSE00001380650
3365      43427128 ENSG00000142178       ENST00000270162 ENSE00001362540
3366      43427128 ENSG00000142178       ENST00000270162 ENSE00000952713
3367      43427128 ENSG00000142178       ENST00000270162 ENSE00000952714
3368      43427128 ENSG00000142178       ENST00000270162 ENSE00001319797
3369      43427128 ENSG00000142178       ENST00000270162 ENSE00001506914
3370      43427128 ENSG00000142178       ENST00000270162 ENSE00003564636
3371      43427128 ENSG00000142178       ENST00000270162 ENSE00001050545
3372      43427128 ENSG00000142178       ENST00000270162 ENSE00001050539
3373      43427128 ENSG00000142178       ENST00000270162 ENSE00001050548
3374      43427128 ENSG00000142178       ENST00000270162 ENSE00001050542
3375      43427128 ENSG00000142178       ENST00000270162 ENSE00001050535
3376      43427128 ENSG00000142178       ENST00000270162 ENSE00001050541
3377      43427128 ENSG00000142178       ENST00000270162 ENSE00001050544
3378      43427128 ENSG00000142178       ENST00000270162 ENSE00001304380
3379      43427128 ENSG00000142178       ENST00000478426 ENSE00001850597
3380      43427128 ENSG00000142178       ENST00000478426 ENSE00003615996
3381      43427128 ENSG00000142178       ENST00000478426 ENSE00001862910
3382      43366566 ENSG00000225637       ENST00000435702 ENSE00001758406
3383      43366566 ENSG00000225637       ENST00000435702 ENSE00001619112
3384      43362349 ENSG00000237989       ENST00000442815 ENSE00001609421
3385      43362349 ENSG00000237989       ENST00000442815 ENSE00001611618
3386      43332039 ENSG00000237864       ENST00000450205 ENSE00001622446
3387      43332039 ENSG00000237864       ENST00000450205 ENSE00001659685
3388      43332039 ENSG00000237864       ENST00000450205 ENSE00001746843
3389      43172805 ENSG00000160202       ENST00000291554 ENSE00001050530
3390      43172805 ENSG00000160202       ENST00000291554 ENSE00003509055
3391      43172805 ENSG00000160202       ENST00000291554 ENSE00003462823
3392      43172805 ENSG00000160202       ENST00000482775 ENSE00001944360
3393      43172805 ENSG00000160202       ENST00000482775 ENSE00001890817
3394      43172805 ENSG00000160202       ENST00000482775 ENSE00003636164
3395      43172805 ENSG00000160202       ENST00000482775 ENSE00003585847
3396      43172805 ENSG00000160202       ENST00000398133 ENSE00003509055
3397      43172805 ENSG00000160202       ENST00000398133 ENSE00001531761
3398      43172805 ENSG00000160202       ENST00000398133 ENSE00001531760
3399      43172805 ENSG00000160202       ENST00000398132 ENSE00003509055
3400      43172805 ENSG00000160202       ENST00000398132 ENSE00001531759
3401      43172805 ENSG00000160202       ENST00000398132 ENSE00001531758
3402      43172805 ENSG00000160202       ENST00000468016 ENSE00001809860
3403      43172805 ENSG00000160202       ENST00000468016 ENSE00001864083
3404      43162277 ENSG00000228120       ENST00000433840 ENSE00001606520
3405      43162277 ENSG00000228120       ENST00000433840 ENSE00002229482
3406      43162277 ENSG00000228120       ENST00000433840 ENSE00001622616
3407      43141092 ENSG00000236663       ENST00000424933 ENSE00001715893
3408      43141092 ENSG00000236663       ENST00000424933 ENSE00001602659
3409      43115709 ENSG00000232777       ENST00000450190 ENSE00001685797
3410      43107587 ENSG00000160201       ENST00000471250 ENSE00001929261
3411      43107587 ENSG00000160201       ENST00000471250 ENSE00003555718
3412      43107587 ENSG00000160201       ENST00000471250 ENSE00003506404
3413      43107587 ENSG00000160201       ENST00000478282 ENSE00001811103
3414      43107587 ENSG00000160201       ENST00000478282 ENSE00001878525
3415      43107587 ENSG00000160201       ENST00000459639 ENSE00001934911
3416      43107587 ENSG00000160201       ENST00000459639 ENSE00003485471
3417      43107587 ENSG00000160201       ENST00000459639 ENSE00003529448
3418      43107587 ENSG00000160201       ENST00000459639 ENSE00003694524
3419      43107587 ENSG00000160201       ENST00000459639 ENSE00003477404
3420      43107587 ENSG00000160201       ENST00000459639 ENSE00003622010
3421      43107587 ENSG00000160201       ENST00000459639 ENSE00003493768
3422      43107587 ENSG00000160201       ENST00000464750 ENSE00003555718
3423      43107587 ENSG00000160201       ENST00000464750 ENSE00003506404
3424      43107587 ENSG00000160201       ENST00000464750 ENSE00003520063
3425      43107587 ENSG00000160201       ENST00000464750 ENSE00003653463
3426      43107587 ENSG00000160201       ENST00000464750 ENSE00003685959
3427      43107587 ENSG00000160201       ENST00000464750 ENSE00003602019
3428      43107587 ENSG00000160201       ENST00000464750 ENSE00003464039
3429      43107587 ENSG00000160201       ENST00000464750 ENSE00003657952
3430      43107587 ENSG00000160201       ENST00000464750 ENSE00003592030
3431      43107587 ENSG00000160201       ENST00000475639 ENSE00003555718
3432      43107587 ENSG00000160201       ENST00000475639 ENSE00003506404
3433      43107587 ENSG00000160201       ENST00000475639 ENSE00003464039
3434      43107587 ENSG00000160201       ENST00000475639 ENSE00003657952
3435      43107587 ENSG00000160201       ENST00000475639 ENSE00003592030
3436      43107587 ENSG00000160201       ENST00000475639 ENSE00003553917
3437      43107587 ENSG00000160201       ENST00000475639 ENSE00001821016
3438      43107587 ENSG00000160201       ENST00000380276 ENSE00003694524
3439      43107587 ENSG00000160201       ENST00000380276 ENSE00003477404
3440      43107587 ENSG00000160201       ENST00000380276 ENSE00003622010
3441      43107587 ENSG00000160201       ENST00000380276 ENSE00003493768
3442      43107587 ENSG00000160201       ENST00000380276 ENSE00003653463
3443      43107587 ENSG00000160201       ENST00000380276 ENSE00003685959
3444      43107587 ENSG00000160201       ENST00000380276 ENSE00001868281
3445      43107587 ENSG00000160201       ENST00000380276 ENSE00003537947
3446      43107587 ENSG00000160201       ENST00000291552 ENSE00003694524
3447      43107587 ENSG00000160201       ENST00000291552 ENSE00003477404
3448      43107587 ENSG00000160201       ENST00000291552 ENSE00003622010
3449      43107587 ENSG00000160201       ENST00000291552 ENSE00003493768
3450      43107587 ENSG00000160201       ENST00000291552 ENSE00003653463
3451      43107587 ENSG00000160201       ENST00000291552 ENSE00003537947
3452      43107587 ENSG00000160201       ENST00000291552 ENSE00001856022
3453      43107587 ENSG00000160201       ENST00000291552 ENSE00003673252
3454      43107587 ENSG00000160201       ENST00000486519 ENSE00003555718
3455      43107587 ENSG00000160201       ENST00000486519 ENSE00003653463
3456      43107587 ENSG00000160201       ENST00000486519 ENSE00003464039
3457      43107587 ENSG00000160201       ENST00000486519 ENSE00003657952
3458      43107587 ENSG00000160201       ENST00000486519 ENSE00003592030
3459      43107587 ENSG00000160201       ENST00000486519 ENSE00001902995
3460      43107587 ENSG00000160201       ENST00000486519 ENSE00001834787
3461      43107587 ENSG00000160201       ENST00000486519 ENSE00001867329
3462      43107587 ENSG00000160201       ENST00000463599 ENSE00003485471
3463      43107587 ENSG00000160201       ENST00000463599 ENSE00001897639
3464      43107587 ENSG00000160201       ENST00000463599 ENSE00003561872
3465      43107587 ENSG00000160201       ENST00000463599 ENSE00001896628
3466      43107587 ENSG00000160201       ENST00000496462 ENSE00003553917
3467      43107587 ENSG00000160201       ENST00000496462 ENSE00003639803
3468      43107587 ENSG00000160201       ENST00000496462 ENSE00001864707
3469      43107587 ENSG00000160201       ENST00000468039 ENSE00003485471
3470      43107587 ENSG00000160201       ENST00000468039 ENSE00001857455
3471      43107587 ENSG00000160201       ENST00000398137 ENSE00003485471
3472      43107587 ENSG00000160201       ENST00000398137 ENSE00003529448
3473      43107587 ENSG00000160201       ENST00000398137 ENSE00003694524
3474      43107587 ENSG00000160201       ENST00000398137 ENSE00003477404
3475      43107587 ENSG00000160201       ENST00000398137 ENSE00003622010
3476      43107587 ENSG00000160201       ENST00000398137 ENSE00003561872
3477      43107587 ENSG00000160201       ENST00000398137 ENSE00003639803
3478      43107587 ENSG00000160201       ENST00000398137 ENSE00001831187
3479      43107587 ENSG00000160201       ENST00000398137 ENSE00001138177
3480      43076943 ENSG00000160200       ENST00000461686 ENSE00001908507
3481      43076943 ENSG00000160200       ENST00000461686 ENSE00003469164
3482      43076943 ENSG00000160200       ENST00000461686 ENSE00003525847
3483      43076943 ENSG00000160200       ENST00000461686 ENSE00003615145
3484      43076943 ENSG00000160200       ENST00000461686 ENSE00003607098
3485      43076943 ENSG00000160200       ENST00000461686 ENSE00003667754
3486      43076943 ENSG00000160200       ENST00000461686 ENSE00003680209
3487      43076943 ENSG00000160200       ENST00000461686 ENSE00003459939
3488      43076943 ENSG00000160200       ENST00000461686 ENSE00003561958
3489      43076943 ENSG00000160200       ENST00000461686 ENSE00003666289
3490      43076943 ENSG00000160200       ENST00000461686 ENSE00003616603
3491      43076943 ENSG00000160200       ENST00000461686 ENSE00003497276
3492      43076943 ENSG00000160200       ENST00000461686 ENSE00003566190
3493      43076943 ENSG00000160200       ENST00000461686 ENSE00003609272
3494      43076943 ENSG00000160200       ENST00000398158 ENSE00001531894
3495      43076943 ENSG00000160200       ENST00000398158 ENSE00001531893
3496      43076943 ENSG00000160200       ENST00000398158 ENSE00003478977
3497      43076943 ENSG00000160200       ENST00000398158 ENSE00003589198
3498      43076943 ENSG00000160200       ENST00000398158 ENSE00003692007
3499      43076943 ENSG00000160200       ENST00000398158 ENSE00003790203
3500      43076943 ENSG00000160200       ENST00000398158 ENSE00003666431
3501      43076943 ENSG00000160200       ENST00000398158 ENSE00003566517
3502      43076943 ENSG00000160200       ENST00000398158 ENSE00003498748
3503      43076943 ENSG00000160200       ENST00000398158 ENSE00003462667
3504      43076943 ENSG00000160200       ENST00000398158 ENSE00003646251
3505      43076943 ENSG00000160200       ENST00000398158 ENSE00003525308
3506      43076943 ENSG00000160200       ENST00000398158 ENSE00003682750
3507      43076943 ENSG00000160200       ENST00000398158 ENSE00003646800
3508      43076943 ENSG00000160200       ENST00000398158 ENSE00003601456
3509      43076943 ENSG00000160200       ENST00000398158 ENSE00003643599
3510      43076943 ENSG00000160200       ENST00000398158 ENSE00003511439
3511      43076943 ENSG00000160200       ENST00000398165 ENSE00003478977
3512      43076943 ENSG00000160200       ENST00000398165 ENSE00003589198
3513      43076943 ENSG00000160200       ENST00000398165 ENSE00003692007
3514      43076943 ENSG00000160200       ENST00000398165 ENSE00003790203
3515      43076943 ENSG00000160200       ENST00000398165 ENSE00003666431
3516      43076943 ENSG00000160200       ENST00000398165 ENSE00003566517
3517      43076943 ENSG00000160200       ENST00000398165 ENSE00003498748
3518      43076943 ENSG00000160200       ENST00000398165 ENSE00003462667
3519      43076943 ENSG00000160200       ENST00000398165 ENSE00003646251
3520      43076943 ENSG00000160200       ENST00000398165 ENSE00003525308
3521      43076943 ENSG00000160200       ENST00000398165 ENSE00003682750
3522      43076943 ENSG00000160200       ENST00000398165 ENSE00003646800
3523      43076943 ENSG00000160200       ENST00000398165 ENSE00003601456
3524      43076943 ENSG00000160200       ENST00000398165 ENSE00003643599
3525      43076943 ENSG00000160200       ENST00000398165 ENSE00003511439
3526      43076943 ENSG00000160200       ENST00000398165 ENSE00001702250
3527      43076943 ENSG00000160200       ENST00000398165 ENSE00001270928
3528      43076943 ENSG00000160200       ENST00000359624 ENSE00003478977
3529      43076943 ENSG00000160200       ENST00000359624 ENSE00003589198
3530      43076943 ENSG00000160200       ENST00000359624 ENSE00003692007
3531      43076943 ENSG00000160200       ENST00000359624 ENSE00003790203
3532      43076943 ENSG00000160200       ENST00000359624 ENSE00003666431
3533      43076943 ENSG00000160200       ENST00000359624 ENSE00003566517
3534      43076943 ENSG00000160200       ENST00000359624 ENSE00003498748
3535      43076943 ENSG00000160200       ENST00000359624 ENSE00003462667
3536      43076943 ENSG00000160200       ENST00000359624 ENSE00003646251
3537      43076943 ENSG00000160200       ENST00000359624 ENSE00003525308
3538      43076943 ENSG00000160200       ENST00000359624 ENSE00003682750
3539      43076943 ENSG00000160200       ENST00000359624 ENSE00003646800
3540      43076943 ENSG00000160200       ENST00000359624 ENSE00003601456
3541      43076943 ENSG00000160200       ENST00000359624 ENSE00003643599
3542      43076943 ENSG00000160200       ENST00000359624 ENSE00001270928
3543      43076943 ENSG00000160200       ENST00000359624 ENSE00001413822
3544      43076943 ENSG00000160200       ENST00000359624 ENSE00001050504
3545      43076943 ENSG00000160200       ENST00000359624 ENSE00001424612
3546      43076943 ENSG00000160200       ENST00000352178 ENSE00003478977
3547      43076943 ENSG00000160200       ENST00000352178 ENSE00003589198
3548      43076943 ENSG00000160200       ENST00000352178 ENSE00003692007
3549      43076943 ENSG00000160200       ENST00000352178 ENSE00003790203
3550      43076943 ENSG00000160200       ENST00000352178 ENSE00003666431
3551      43076943 ENSG00000160200       ENST00000352178 ENSE00003566517
3552      43076943 ENSG00000160200       ENST00000352178 ENSE00003498748
3553      43076943 ENSG00000160200       ENST00000352178 ENSE00003462667
3554      43076943 ENSG00000160200       ENST00000352178 ENSE00003646251
3555      43076943 ENSG00000160200       ENST00000352178 ENSE00003525308
3556      43076943 ENSG00000160200       ENST00000352178 ENSE00003682750
3557      43076943 ENSG00000160200       ENST00000352178 ENSE00003646800
3558      43076943 ENSG00000160200       ENST00000352178 ENSE00003601456
3559      43076943 ENSG00000160200       ENST00000352178 ENSE00003643599
3560      43076943 ENSG00000160200       ENST00000352178 ENSE00003511439
3561      43076943 ENSG00000160200       ENST00000352178 ENSE00001270928
3562      43076943 ENSG00000160200       ENST00000352178 ENSE00001531915
3563      43076943 ENSG00000160200       ENST00000451248 ENSE00003601456
3564      43076943 ENSG00000160200       ENST00000451248 ENSE00003643599
3565      43076943 ENSG00000160200       ENST00000451248 ENSE00001596615
3566      43076943 ENSG00000160200       ENST00000451248 ENSE00001367761
3567      43076943 ENSG00000160200       ENST00000451248 ENSE00001611563
3568      43076943 ENSG00000160200       ENST00000462349 ENSE00003616603
3569      43076943 ENSG00000160200       ENST00000462349 ENSE00003497276
3570      43076943 ENSG00000160200       ENST00000462349 ENSE00003566190
3571      43076943 ENSG00000160200       ENST00000462349 ENSE00001863234
3572      43076943 ENSG00000160200       ENST00000462349 ENSE00001896483
3573      43076943 ENSG00000160200       ENST00000491776 ENSE00003666289
3574      43076943 ENSG00000160200       ENST00000491776 ENSE00003616603
3575      43076943 ENSG00000160200       ENST00000491776 ENSE00003497276
3576      43076943 ENSG00000160200       ENST00000491776 ENSE00003566190
3577      43076943 ENSG00000160200       ENST00000491776 ENSE00001826173
3578      43076943 ENSG00000160200       ENST00000491776 ENSE00001924222
3579      43076943 ENSG00000160200       ENST00000458223 ENSE00003601456
3580      43076943 ENSG00000160200       ENST00000458223 ENSE00003643599
3581      43076943 ENSG00000160200       ENST00000458223 ENSE00001367761
3582      43076943 ENSG00000160200       ENST00000458223 ENSE00001628373
3583      43076943 ENSG00000160200       ENST00000458223 ENSE00001630945
3584      43076943 ENSG00000160200       ENST00000430013 ENSE00003525308
3585      43076943 ENSG00000160200       ENST00000430013 ENSE00003682750
3586      43076943 ENSG00000160200       ENST00000430013 ENSE00003646800
3587      43076943 ENSG00000160200       ENST00000430013 ENSE00003601456
3588      43076943 ENSG00000160200       ENST00000430013 ENSE00003643599
3589      43076943 ENSG00000160200       ENST00000430013 ENSE00001367761
3590      43076943 ENSG00000160200       ENST00000430013 ENSE00001772125
3591      43076943 ENSG00000160200       ENST00000496485 ENSE00003680209
3592      43076943 ENSG00000160200       ENST00000496485 ENSE00003459939
3593      43076943 ENSG00000160200       ENST00000496485 ENSE00003561958
3594      43076943 ENSG00000160200       ENST00000496485 ENSE00001949697
3595      43076943 ENSG00000160200       ENST00000496485 ENSE00001946945
3596      43076943 ENSG00000160200       ENST00000486098 ENSE00001842478
3597      43076943 ENSG00000160200       ENST00000486098 ENSE00001905316
3598      43076943 ENSG00000160200       ENST00000441030 ENSE00003478977
3599      43076943 ENSG00000160200       ENST00000441030 ENSE00003589198
3600      43076943 ENSG00000160200       ENST00000441030 ENSE00003692007
3601      43076943 ENSG00000160200       ENST00000441030 ENSE00003790203
3602      43076943 ENSG00000160200       ENST00000441030 ENSE00001270928
3603      43076943 ENSG00000160200       ENST00000441030 ENSE00001744053
3604      43076943 ENSG00000160200       ENST00000470912 ENSE00003469164
3605      43076943 ENSG00000160200       ENST00000470912 ENSE00001702250
3606      43076943 ENSG00000160200       ENST00000470912 ENSE00001270928
3607      43076943 ENSG00000160200       ENST00000470912 ENSE00003669131
3608      43076943 ENSG00000160200       ENST00000470912 ENSE00003594354
3609      43076943 ENSG00000160200       ENST00000470912 ENSE00001942914
3610      43076943 ENSG00000160200       ENST00000465732 ENSE00001270928
3611      43076943 ENSG00000160200       ENST00000465732 ENSE00003669131
3612      43076943 ENSG00000160200       ENST00000465732 ENSE00001826787
3613      43076943 ENSG00000160200       ENST00000465732 ENSE00001889312
3614      43076943 ENSG00000160200       ENST00000488526 ENSE00003669131
3615      43076943 ENSG00000160200       ENST00000488526 ENSE00001953424
3616      43076943 ENSG00000160200       ENST00000488526 ENSE00001822201
3617      43076943 ENSG00000160200       ENST00000478709 ENSE00001879838
3618      43076943 ENSG00000160200       ENST00000478709 ENSE00001946214
3619      43033931 ENSG00000160199       ENST00000291547 ENSE00001860427
3620      43033931 ENSG00000160199       ENST00000291547 ENSE00003491838
3621      43033931 ENSG00000160199       ENST00000291547 ENSE00003627186
3622      43033931 ENSG00000160199       ENST00000291547 ENSE00003513802
3623      43033931 ENSG00000160199       ENST00000291547 ENSE00003738221
3624      43033931 ENSG00000160199       ENST00000291547 ENSE00003551171
3625      43033931 ENSG00000160199       ENST00000291547 ENSE00003597493
3626      43033931 ENSG00000160199       ENST00000291547 ENSE00003520581
3627      43033931 ENSG00000160199       ENST00000291547 ENSE00003699223
3628      43033931 ENSG00000160199       ENST00000291547 ENSE00003700349
3629      43033931 ENSG00000160199       ENST00000291547 ENSE00001050477
3630      43033931 ENSG00000160199       ENST00000418336 ENSE00003462056
3631      43033931 ENSG00000160199       ENST00000418336 ENSE00002563670
3632      43033931 ENSG00000160199       ENST00000418336 ENSE00002537972
3633      43033931 ENSG00000160199       ENST00000480179 ENSE00003462056
3634      43033931 ENSG00000160199       ENST00000480179 ENSE00003637651
3635      43033931 ENSG00000160199       ENST00000480179 ENSE00003576614
3636      43033931 ENSG00000160199       ENST00000480179 ENSE00003624412
3637      43033931 ENSG00000160199       ENST00000480179 ENSE00002508807
3638      43033931 ENSG00000160199       ENST00000480179 ENSE00001951813
3639      43033931 ENSG00000160199       ENST00000456957 ENSE00002553706
3640      43033931 ENSG00000160199       ENST00000456957 ENSE00002565116
3641      43033931 ENSG00000160199       ENST00000560448 ENSE00003627186
3642      43033931 ENSG00000160199       ENST00000560448 ENSE00003601994
3643      43033931 ENSG00000160199       ENST00000560448 ENSE00003566766
3644      43033931 ENSG00000160199       ENST00000560448 ENSE00003701920
3645      43033931 ENSG00000160199       ENST00000560448 ENSE00003698867
3646      43033931 ENSG00000160199       ENST00000560448 ENSE00002562979
3647      43033931 ENSG00000160199       ENST00000560448 ENSE00003521625
3648      43033931 ENSG00000160199       ENST00000560448 ENSE00003695650
3649      43033931 ENSG00000160199       ENST00000560448 ENSE00003549078
3650      43033931 ENSG00000160199       ENST00000607049 ENSE00003701920
3651      43033931 ENSG00000160199       ENST00000607049 ENSE00003701093
3652      43033931 ENSG00000160199       ENST00000607049 ENSE00003699704
3653      43033931 ENSG00000160199       ENST00000607049 ENSE00002537572
3654      43033931 ENSG00000160199       ENST00000557820 ENSE00003701920
3655      43033931 ENSG00000160199       ENST00000557820 ENSE00003698867
3656      43033931 ENSG00000160199       ENST00000557820 ENSE00003695650
3657      43033931 ENSG00000160199       ENST00000557820 ENSE00002540015
3658      43033931 ENSG00000160199       ENST00000557820 ENSE00002539137
3659      43033931 ENSG00000160199       ENST00000474336 ENSE00003698867
3660      43033931 ENSG00000160199       ENST00000474336 ENSE00001887167
3661      43033931 ENSG00000160199       ENST00000474336 ENSE00001931642
3662      43033931 ENSG00000160199       ENST00000607150 ENSE00003698867
3663      43033931 ENSG00000160199       ENST00000607150 ENSE00003697340
3664      43033931 ENSG00000160199       ENST00000607150 ENSE00003695687
3665      43033931 ENSG00000160199       ENST00000558955 ENSE00003695650
3666      43033931 ENSG00000160199       ENST00000558955 ENSE00002563068
3667      43033931 ENSG00000160199       ENST00000558955 ENSE00003699728
3668      43033931 ENSG00000160199       ENST00000432907 ENSE00001860427
3669      43033931 ENSG00000160199       ENST00000432907 ENSE00003551171
3670      43033931 ENSG00000160199       ENST00000432907 ENSE00003597493
3671      43033931 ENSG00000160199       ENST00000432907 ENSE00003520581
3672      43033931 ENSG00000160199       ENST00000432907 ENSE00003699223
3673      43033931 ENSG00000160199       ENST00000432907 ENSE00003700349
3674      43033931 ENSG00000160199       ENST00000432907 ENSE00003462056
3675      43033931 ENSG00000160199       ENST00000432907 ENSE00003637651
3676      43033931 ENSG00000160199       ENST00000432907 ENSE00003738006
3677      43033931 ENSG00000160199       ENST00000432907 ENSE00003572037
3678      42965363 ENSG00000224100       ENST00000428410 ENSE00001701367
3679      42965363 ENSG00000224100       ENST00000428410 ENSE00001759374
3680      42951014 ENSG00000264580       ENST00000579137 ENSE00002701278
3681      42925646 ENSG00000233056       ENST00000447535 ENSE00001619093
3682      42925646 ENSG00000233056       ENST00000447535 ENSE00001612295
3683      42925646 ENSG00000233056       ENST00000617971 ENSE00003740042
3684      42913304 ENSG00000160194       ENST00000460259 ENSE00001933035
3685      42913304 ENSG00000160194       ENST00000460259 ENSE00001890968
3686      42913304 ENSG00000160194       ENST00000460259 ENSE00001865986
3687      42913304 ENSG00000160194       ENST00000460259 ENSE00003654774
3688      42913304 ENSG00000160194       ENST00000460259 ENSE00003507608
3689      42913304 ENSG00000160194       ENST00000460259 ENSE00003680556
3690      42913304 ENSG00000160194       ENST00000354250 ENSE00001947597
3691      42913304 ENSG00000160194       ENST00000354250 ENSE00003679113
3692      42913304 ENSG00000160194       ENST00000354250 ENSE00003589387
3693      42913304 ENSG00000160194       ENST00000354250 ENSE00003614580
3694      42913304 ENSG00000160194       ENST00000340344 ENSE00003679113
3695      42913304 ENSG00000160194       ENST00000340344 ENSE00001436763
3696      42913304 ENSG00000160194       ENST00000340344 ENSE00001352095
3697      42913304 ENSG00000160194       ENST00000460740 ENSE00001885628
3698      42913304 ENSG00000160194       ENST00000460740 ENSE00001951615
3699      42879568 ENSG00000160193       ENST00000330317 ENSE00001889621
3700      42879568 ENSG00000160193       ENST00000330317 ENSE00003690805
3701      42879568 ENSG00000160193       ENST00000330317 ENSE00003486103
3702      42879568 ENSG00000160193       ENST00000330317 ENSE00003641564
3703      42879568 ENSG00000160193       ENST00000330317 ENSE00003599130
3704      42879568 ENSG00000160193       ENST00000330317 ENSE00003694162
3705      42879568 ENSG00000160193       ENST00000330317 ENSE00003511519
3706      42879568 ENSG00000160193       ENST00000330317 ENSE00003606199
3707      42879568 ENSG00000160193       ENST00000330317 ENSE00003570160
3708      42879568 ENSG00000160193       ENST00000330317 ENSE00003540633
3709      42879568 ENSG00000160193       ENST00000330317 ENSE00001313461
3710      42879568 ENSG00000160193       ENST00000330317 ENSE00001283844
3711      42879568 ENSG00000160193       ENST00000492742 ENSE00001863152
3712      42879568 ENSG00000160193       ENST00000492742 ENSE00003643979
3713      42879568 ENSG00000160193       ENST00000492742 ENSE00001937024
3714      42879568 ENSG00000160193       ENST00000492742 ENSE00003494390
3715      42879568 ENSG00000160193       ENST00000492742 ENSE00003500552
3716      42879568 ENSG00000160193       ENST00000492742 ENSE00003616698
3717      42879568 ENSG00000160193       ENST00000492742 ENSE00003500418
3718      42879568 ENSG00000160193       ENST00000492742 ENSE00003568755
3719      42879568 ENSG00000160193       ENST00000492742 ENSE00003678235
3720      42879568 ENSG00000160193       ENST00000492742 ENSE00003524987
3721      42879568 ENSG00000160193       ENST00000492742 ENSE00003557317
3722      42879568 ENSG00000160193       ENST00000398208 ENSE00003690805
3723      42879568 ENSG00000160193       ENST00000398208 ENSE00003486103
3724      42879568 ENSG00000160193       ENST00000398208 ENSE00003641564
3725      42879568 ENSG00000160193       ENST00000398208 ENSE00003599130
3726      42879568 ENSG00000160193       ENST00000398208 ENSE00003694162
3727      42879568 ENSG00000160193       ENST00000398208 ENSE00003511519
3728      42879568 ENSG00000160193       ENST00000398208 ENSE00003606199
3729      42879568 ENSG00000160193       ENST00000398208 ENSE00003570160
3730      42879568 ENSG00000160193       ENST00000398208 ENSE00003540633
3731      42879568 ENSG00000160193       ENST00000398208 ENSE00001138597
3732      42879568 ENSG00000160193       ENST00000398208 ENSE00003552431
3733      42879568 ENSG00000160193       ENST00000476326 ENSE00003643979
3734      42879568 ENSG00000160193       ENST00000476326 ENSE00001937024
3735      42879568 ENSG00000160193       ENST00000476326 ENSE00003494390
3736      42879568 ENSG00000160193       ENST00000476326 ENSE00003500552
3737      42879568 ENSG00000160193       ENST00000476326 ENSE00003616698
3738      42879568 ENSG00000160193       ENST00000476326 ENSE00003500418
3739      42879568 ENSG00000160193       ENST00000476326 ENSE00003568755
3740      42879568 ENSG00000160193       ENST00000476326 ENSE00003678235
3741      42879568 ENSG00000160193       ENST00000476326 ENSE00003524987
3742      42879568 ENSG00000160193       ENST00000476326 ENSE00003557317
3743      42879568 ENSG00000160193       ENST00000476326 ENSE00001857786
3744      42879568 ENSG00000160193       ENST00000479429 ENSE00003643979
3745      42879568 ENSG00000160193       ENST00000479429 ENSE00001937024
3746      42879568 ENSG00000160193       ENST00000479429 ENSE00003494390
3747      42879568 ENSG00000160193       ENST00000479429 ENSE00003500552
3748      42879568 ENSG00000160193       ENST00000479429 ENSE00003616698
3749      42879568 ENSG00000160193       ENST00000479429 ENSE00003500418
3750      42879568 ENSG00000160193       ENST00000479429 ENSE00003568755
3751      42879568 ENSG00000160193       ENST00000479429 ENSE00001902257
3752      42879568 ENSG00000160193       ENST00000463902 ENSE00003643979
3753      42879568 ENSG00000160193       ENST00000463902 ENSE00001937024
3754      42879568 ENSG00000160193       ENST00000463902 ENSE00003494390
3755      42879568 ENSG00000160193       ENST00000463902 ENSE00003500552
3756      42879568 ENSG00000160193       ENST00000463902 ENSE00003616698
3757      42879568 ENSG00000160193       ENST00000463902 ENSE00001898146
3758      42879568 ENSG00000160193       ENST00000463902 ENSE00001928743
3759      42879568 ENSG00000160193       ENST00000470658 ENSE00003643979
3760      42879568 ENSG00000160193       ENST00000470658 ENSE00003494390
3761      42879568 ENSG00000160193       ENST00000470658 ENSE00003500552
3762      42879568 ENSG00000160193       ENST00000470658 ENSE00001947837
3763      42879568 ENSG00000160193       ENST00000470658 ENSE00003517811
3764      42836477 ENSG00000225218       ENST00000431150 ENSE00001753290
3765      42836477 ENSG00000225218       ENST00000431150 ENSE00001683445
3766      42836477 ENSG00000225218       ENST00000431150 ENSE00001661955
3767      42782229 ENSG00000233754       ENST00000420273 ENSE00001656886
3768      42782229 ENSG00000233754       ENST00000420273 ENSE00001724127
3769      42779994 ENSG00000283051       ENST00000635001 ENSE00003791687
3770      42779994 ENSG00000283051       ENST00000635001 ENSE00003787512
3771      42779994 ENSG00000283051       ENST00000635001 ENSE00003789768
3772      42775509 ENSG00000160191       ENST00000460905 ENSE00001882281
3773      42775509 ENSG00000160191       ENST00000460905 ENSE00001864622
3774      42775509 ENSG00000160191       ENST00000460905 ENSE00003517962
3775      42775509 ENSG00000160191       ENST00000460905 ENSE00003490488
3776      42775509 ENSG00000160191       ENST00000460905 ENSE00003510642
3777      42775509 ENSG00000160191       ENST00000460905 ENSE00003548951
3778      42775509 ENSG00000160191       ENST00000460905 ENSE00003488958
3779      42775509 ENSG00000160191       ENST00000472401 ENSE00001833420
3780      42775509 ENSG00000160191       ENST00000472401 ENSE00003620172
3781      42775509 ENSG00000160191       ENST00000472401 ENSE00003629203
3782      42775509 ENSG00000160191       ENST00000472401 ENSE00003602426
3783      42775509 ENSG00000160191       ENST00000472401 ENSE00001863986
3784      42775509 ENSG00000160191       ENST00000335512 ENSE00001864638
3785      42775509 ENSG00000160191       ENST00000335512 ENSE00003625815
3786      42775509 ENSG00000160191       ENST00000335512 ENSE00003565257
3787      42775509 ENSG00000160191       ENST00000335512 ENSE00003689265
3788      42775509 ENSG00000160191       ENST00000335512 ENSE00003492285
3789      42775509 ENSG00000160191       ENST00000335512 ENSE00003656908
3790      42775509 ENSG00000160191       ENST00000335512 ENSE00003667734
3791      42775509 ENSG00000160191       ENST00000335512 ENSE00003645170
3792      42775509 ENSG00000160191       ENST00000335512 ENSE00003642531
3793      42775509 ENSG00000160191       ENST00000335512 ENSE00003538925
3794      42775509 ENSG00000160191       ENST00000335512 ENSE00003602236
3795      42775509 ENSG00000160191       ENST00000335512 ENSE00003546441
3796      42775509 ENSG00000160191       ENST00000335512 ENSE00003586792
3797      42775509 ENSG00000160191       ENST00000335512 ENSE00003561153
3798      42775509 ENSG00000160191       ENST00000335512 ENSE00003611375
3799      42775509 ENSG00000160191       ENST00000335512 ENSE00003461715
3800      42775509 ENSG00000160191       ENST00000335512 ENSE00003490275
3801      42775509 ENSG00000160191       ENST00000335512 ENSE00003692648
3802      42775509 ENSG00000160191       ENST00000335512 ENSE00003643013
3803      42775509 ENSG00000160191       ENST00000470987 ENSE00003517962
3804      42775509 ENSG00000160191       ENST00000470987 ENSE00003490488
3805      42775509 ENSG00000160191       ENST00000470987 ENSE00003510642
3806      42775509 ENSG00000160191       ENST00000470987 ENSE00003548951
3807      42775509 ENSG00000160191       ENST00000470987 ENSE00003488958
3808      42775509 ENSG00000160191       ENST00000470987 ENSE00003620172
3809      42775509 ENSG00000160191       ENST00000470987 ENSE00003629203
3810      42775509 ENSG00000160191       ENST00000470987 ENSE00003602426
3811      42775509 ENSG00000160191       ENST00000470987 ENSE00003458519
3812      42775509 ENSG00000160191       ENST00000470987 ENSE00003686816
3813      42775509 ENSG00000160191       ENST00000470987 ENSE00003480474
3814      42775509 ENSG00000160191       ENST00000470987 ENSE00003684148
3815      42775509 ENSG00000160191       ENST00000470987 ENSE00003483886
3816      42775509 ENSG00000160191       ENST00000470987 ENSE00003466425
3817      42775509 ENSG00000160191       ENST00000470987 ENSE00003481356
3818      42775509 ENSG00000160191       ENST00000470987 ENSE00003641571
3819      42775509 ENSG00000160191       ENST00000470987 ENSE00003577931
3820      42775509 ENSG00000160191       ENST00000470987 ENSE00003676892
3821      42775509 ENSG00000160191       ENST00000470987 ENSE00003518456
3822      42775509 ENSG00000160191       ENST00000470987 ENSE00003694465
3823      42775509 ENSG00000160191       ENST00000291539 ENSE00003625815
3824      42775509 ENSG00000160191       ENST00000291539 ENSE00003565257
3825      42775509 ENSG00000160191       ENST00000291539 ENSE00003689265
3826      42775509 ENSG00000160191       ENST00000291539 ENSE00003492285
3827      42775509 ENSG00000160191       ENST00000291539 ENSE00003656908
3828      42775509 ENSG00000160191       ENST00000291539 ENSE00003667734
3829      42775509 ENSG00000160191       ENST00000291539 ENSE00003645170
3830      42775509 ENSG00000160191       ENST00000291539 ENSE00003642531
3831      42775509 ENSG00000160191       ENST00000291539 ENSE00003538925
3832      42775509 ENSG00000160191       ENST00000291539 ENSE00003602236
3833      42775509 ENSG00000160191       ENST00000291539 ENSE00003546441
3834      42775509 ENSG00000160191       ENST00000291539 ENSE00003586792
3835      42775509 ENSG00000160191       ENST00000291539 ENSE00003561153
3836      42775509 ENSG00000160191       ENST00000291539 ENSE00003611375
3837      42775509 ENSG00000160191       ENST00000291539 ENSE00003461715
3838      42775509 ENSG00000160191       ENST00000291539 ENSE00003490275
3839      42775509 ENSG00000160191       ENST00000291539 ENSE00003692648
3840      42775509 ENSG00000160191       ENST00000291539 ENSE00003643013
3841      42775509 ENSG00000160191       ENST00000291539 ENSE00003681162
3842      42775509 ENSG00000160191       ENST00000291539 ENSE00003691085
3843      42775509 ENSG00000160191       ENST00000490803 ENSE00003517962
3844      42775509 ENSG00000160191       ENST00000490803 ENSE00003490488
3845      42775509 ENSG00000160191       ENST00000490803 ENSE00003510642
3846      42775509 ENSG00000160191       ENST00000490803 ENSE00003548951
3847      42775509 ENSG00000160191       ENST00000490803 ENSE00003488958
3848      42775509 ENSG00000160191       ENST00000490803 ENSE00003458519
3849      42775509 ENSG00000160191       ENST00000490803 ENSE00003480474
3850      42775509 ENSG00000160191       ENST00000490803 ENSE00003684148
3851      42775509 ENSG00000160191       ENST00000490803 ENSE00003483886
3852      42775509 ENSG00000160191       ENST00000490803 ENSE00003466425
3853      42775509 ENSG00000160191       ENST00000490803 ENSE00003481356
3854      42775509 ENSG00000160191       ENST00000490803 ENSE00003641571
3855      42775509 ENSG00000160191       ENST00000490803 ENSE00003577931
3856      42775509 ENSG00000160191       ENST00000490803 ENSE00003676892
3857      42775509 ENSG00000160191       ENST00000490803 ENSE00003518456
3858      42775509 ENSG00000160191       ENST00000490803 ENSE00003694465
3859      42775509 ENSG00000160191       ENST00000490803 ENSE00003611483
3860      42775509 ENSG00000160191       ENST00000486902 ENSE00003620172
3861      42775509 ENSG00000160191       ENST00000486902 ENSE00003629203
3862      42775509 ENSG00000160191       ENST00000486902 ENSE00003686816
3863      42775509 ENSG00000160191       ENST00000486902 ENSE00003667235
3864      42775509 ENSG00000160191       ENST00000486902 ENSE00001917796
3865      42775509 ENSG00000160191       ENST00000380328 ENSE00003625815
3866      42775509 ENSG00000160191       ENST00000380328 ENSE00003565257
3867      42775509 ENSG00000160191       ENST00000380328 ENSE00003656908
3868      42775509 ENSG00000160191       ENST00000380328 ENSE00003667734
3869      42775509 ENSG00000160191       ENST00000380328 ENSE00003645170
3870      42775509 ENSG00000160191       ENST00000380328 ENSE00003642531
3871      42775509 ENSG00000160191       ENST00000380328 ENSE00003538925
3872      42775509 ENSG00000160191       ENST00000380328 ENSE00003602236
3873      42775509 ENSG00000160191       ENST00000380328 ENSE00003546441
3874      42775509 ENSG00000160191       ENST00000380328 ENSE00003586792
3875      42775509 ENSG00000160191       ENST00000380328 ENSE00003561153
3876      42775509 ENSG00000160191       ENST00000380328 ENSE00003611375
3877      42775509 ENSG00000160191       ENST00000380328 ENSE00003461715
3878      42775509 ENSG00000160191       ENST00000380328 ENSE00003490275
3879      42775509 ENSG00000160191       ENST00000380328 ENSE00003692648
3880      42775509 ENSG00000160191       ENST00000380328 ENSE00003643013
3881      42775509 ENSG00000160191       ENST00000380328 ENSE00003577781
3882      42775509 ENSG00000160191       ENST00000380328 ENSE00003668628
3883      42775509 ENSG00000160191       ENST00000380328 ENSE00003690236
3884      42775509 ENSG00000160191       ENST00000495521 ENSE00003490488
3885      42775509 ENSG00000160191       ENST00000495521 ENSE00003548951
3886      42775509 ENSG00000160191       ENST00000495521 ENSE00003488958
3887      42775509 ENSG00000160191       ENST00000495521 ENSE00003686816
3888      42775509 ENSG00000160191       ENST00000495521 ENSE00003480474
3889      42775509 ENSG00000160191       ENST00000495521 ENSE00003684148
3890      42775509 ENSG00000160191       ENST00000495521 ENSE00003483886
3891      42775509 ENSG00000160191       ENST00000495521 ENSE00003466425
3892      42775509 ENSG00000160191       ENST00000495521 ENSE00003481356
3893      42775509 ENSG00000160191       ENST00000495521 ENSE00003641571
3894      42775509 ENSG00000160191       ENST00000495521 ENSE00003577931
3895      42775509 ENSG00000160191       ENST00000495521 ENSE00003676892
3896      42775509 ENSG00000160191       ENST00000495521 ENSE00003518456
3897      42775509 ENSG00000160191       ENST00000495521 ENSE00003694465
3898      42775509 ENSG00000160191       ENST00000495521 ENSE00003667235
3899      42775509 ENSG00000160191       ENST00000398232 ENSE00003689265
3900      42775509 ENSG00000160191       ENST00000398232 ENSE00003492285
3901      42775509 ENSG00000160191       ENST00000398232 ENSE00003656908
3902      42775509 ENSG00000160191       ENST00000398232 ENSE00003667734
3903      42775509 ENSG00000160191       ENST00000398232 ENSE00003645170
3904      42775509 ENSG00000160191       ENST00000398232 ENSE00003642531
3905      42775509 ENSG00000160191       ENST00000398232 ENSE00003538925
3906      42775509 ENSG00000160191       ENST00000398232 ENSE00003602236
3907      42775509 ENSG00000160191       ENST00000398232 ENSE00003546441
3908      42775509 ENSG00000160191       ENST00000398232 ENSE00003586792
3909      42775509 ENSG00000160191       ENST00000398232 ENSE00003561153
3910      42775509 ENSG00000160191       ENST00000398232 ENSE00003611375
3911      42775509 ENSG00000160191       ENST00000398232 ENSE00003461715
3912      42775509 ENSG00000160191       ENST00000398232 ENSE00003490275
3913      42775509 ENSG00000160191       ENST00000398232 ENSE00003692648
3914      42775509 ENSG00000160191       ENST00000398232 ENSE00003643013
3915      42775509 ENSG00000160191       ENST00000398232 ENSE00003691085
3916      42775509 ENSG00000160191       ENST00000398232 ENSE00003522588
3917      42775509 ENSG00000160191       ENST00000462571 ENSE00003517962
3918      42775509 ENSG00000160191       ENST00000462571 ENSE00003490488
3919      42775509 ENSG00000160191       ENST00000462571 ENSE00003510642
3920      42775509 ENSG00000160191       ENST00000462571 ENSE00003548951
3921      42775509 ENSG00000160191       ENST00000462571 ENSE00003488958
3922      42775509 ENSG00000160191       ENST00000462571 ENSE00003686816
3923      42775509 ENSG00000160191       ENST00000462571 ENSE00003480474
3924      42775509 ENSG00000160191       ENST00000462571 ENSE00003684148
3925      42775509 ENSG00000160191       ENST00000462571 ENSE00003483886
3926      42775509 ENSG00000160191       ENST00000462571 ENSE00003466425
3927      42775509 ENSG00000160191       ENST00000462571 ENSE00003481356
3928      42775509 ENSG00000160191       ENST00000462571 ENSE00003641571
3929      42775509 ENSG00000160191       ENST00000462571 ENSE00003577931
3930      42775509 ENSG00000160191       ENST00000462571 ENSE00003676892
3931      42775509 ENSG00000160191       ENST00000462571 ENSE00003518456
3932      42775509 ENSG00000160191       ENST00000462571 ENSE00003694465
3933      42775509 ENSG00000160191       ENST00000462571 ENSE00003667235
3934      42775509 ENSG00000160191       ENST00000462571 ENSE00001899580
3935      42775509 ENSG00000160191       ENST00000398234 ENSE00003565257
3936      42775509 ENSG00000160191       ENST00000398234 ENSE00003689265
3937      42775509 ENSG00000160191       ENST00000398234 ENSE00003492285
3938      42775509 ENSG00000160191       ENST00000398234 ENSE00003656908
3939      42775509 ENSG00000160191       ENST00000398234 ENSE00003667734
3940      42775509 ENSG00000160191       ENST00000398234 ENSE00003645170
3941      42775509 ENSG00000160191       ENST00000398234 ENSE00003642531
3942      42775509 ENSG00000160191       ENST00000398234 ENSE00003538925
3943      42775509 ENSG00000160191       ENST00000398234 ENSE00003602236
3944      42775509 ENSG00000160191       ENST00000398234 ENSE00003546441
3945      42775509 ENSG00000160191       ENST00000398234 ENSE00003586792
3946      42775509 ENSG00000160191       ENST00000398234 ENSE00003561153
3947      42775509 ENSG00000160191       ENST00000398234 ENSE00003611375
3948      42775509 ENSG00000160191       ENST00000398234 ENSE00003461715
3949      42775509 ENSG00000160191       ENST00000398234 ENSE00003490275
3950      42775509 ENSG00000160191       ENST00000398234 ENSE00003692648
3951      42775509 ENSG00000160191       ENST00000398234 ENSE00003643013
3952      42775509 ENSG00000160191       ENST00000398234 ENSE00003522588
3953      42775509 ENSG00000160191       ENST00000398236 ENSE00003625815
3954      42775509 ENSG00000160191       ENST00000398236 ENSE00003689265
3955      42775509 ENSG00000160191       ENST00000398236 ENSE00003492285
3956      42775509 ENSG00000160191       ENST00000398236 ENSE00003656908
3957      42775509 ENSG00000160191       ENST00000398236 ENSE00003667734
3958      42775509 ENSG00000160191       ENST00000398236 ENSE00003645170
3959      42775509 ENSG00000160191       ENST00000398236 ENSE00003642531
3960      42775509 ENSG00000160191       ENST00000398236 ENSE00003538925
3961      42775509 ENSG00000160191       ENST00000398236 ENSE00003602236
3962      42775509 ENSG00000160191       ENST00000398236 ENSE00003546441
3963      42775509 ENSG00000160191       ENST00000398236 ENSE00003586792
3964      42775509 ENSG00000160191       ENST00000398236 ENSE00003561153
3965      42775509 ENSG00000160191       ENST00000398236 ENSE00003611375
3966      42775509 ENSG00000160191       ENST00000398236 ENSE00003461715
3967      42775509 ENSG00000160191       ENST00000398236 ENSE00003490275
3968      42775509 ENSG00000160191       ENST00000398236 ENSE00003692648
3969      42775509 ENSG00000160191       ENST00000398236 ENSE00003643013
3970      42775509 ENSG00000160191       ENST00000398236 ENSE00003577781
3971      42775509 ENSG00000160191       ENST00000468805 ENSE00003490488
3972      42775509 ENSG00000160191       ENST00000468805 ENSE00003510642
3973      42775509 ENSG00000160191       ENST00000468805 ENSE00003548951
3974      42775509 ENSG00000160191       ENST00000468805 ENSE00003488958
3975      42775509 ENSG00000160191       ENST00000468805 ENSE00003620172
3976      42775509 ENSG00000160191       ENST00000468805 ENSE00003686816
3977      42775509 ENSG00000160191       ENST00000468805 ENSE00003480474
3978      42775509 ENSG00000160191       ENST00000468805 ENSE00003684148
3979      42775509 ENSG00000160191       ENST00000468805 ENSE00003483886
3980      42775509 ENSG00000160191       ENST00000468805 ENSE00003466425
3981      42775509 ENSG00000160191       ENST00000468805 ENSE00003481356
3982      42775509 ENSG00000160191       ENST00000468805 ENSE00003641571
3983      42775509 ENSG00000160191       ENST00000468805 ENSE00003577931
3984      42775509 ENSG00000160191       ENST00000468805 ENSE00003676892
3985      42775509 ENSG00000160191       ENST00000468805 ENSE00003518456
3986      42775509 ENSG00000160191       ENST00000468805 ENSE00003694465
3987      42775509 ENSG00000160191       ENST00000468805 ENSE00003667235
3988      42775509 ENSG00000160191       ENST00000328862 ENSE00003625815
3989      42775509 ENSG00000160191       ENST00000328862 ENSE00003689265
3990      42775509 ENSG00000160191       ENST00000328862 ENSE00003492285
3991      42775509 ENSG00000160191       ENST00000328862 ENSE00003656908
3992      42775509 ENSG00000160191       ENST00000328862 ENSE00003667734
3993      42775509 ENSG00000160191       ENST00000328862 ENSE00003645170
3994      42775509 ENSG00000160191       ENST00000328862 ENSE00003642531
3995      42775509 ENSG00000160191       ENST00000328862 ENSE00003538925
3996      42775509 ENSG00000160191       ENST00000328862 ENSE00003602236
3997      42775509 ENSG00000160191       ENST00000328862 ENSE00003546441
3998      42775509 ENSG00000160191       ENST00000328862 ENSE00003586792
3999      42775509 ENSG00000160191       ENST00000328862 ENSE00003561153
4000      42775509 ENSG00000160191       ENST00000328862 ENSE00003611375
4001      42775509 ENSG00000160191       ENST00000328862 ENSE00003461715
4002      42775509 ENSG00000160191       ENST00000328862 ENSE00003490275
4003      42775509 ENSG00000160191       ENST00000328862 ENSE00003692648
4004      42775509 ENSG00000160191       ENST00000328862 ENSE00003643013
4005      42775509 ENSG00000160191       ENST00000328862 ENSE00003691085
4006      42775509 ENSG00000160191       ENST00000328862 ENSE00003577781
4007      42775509 ENSG00000160191       ENST00000335440 ENSE00003656908
4008      42775509 ENSG00000160191       ENST00000335440 ENSE00003667734
4009      42775509 ENSG00000160191       ENST00000335440 ENSE00003645170
4010      42775509 ENSG00000160191       ENST00000335440 ENSE00003642531
4011      42775509 ENSG00000160191       ENST00000335440 ENSE00003538925
4012      42775509 ENSG00000160191       ENST00000335440 ENSE00003602236
4013      42775509 ENSG00000160191       ENST00000335440 ENSE00003546441
4014      42775509 ENSG00000160191       ENST00000335440 ENSE00003586792
4015      42775509 ENSG00000160191       ENST00000335440 ENSE00003561153
4016      42775509 ENSG00000160191       ENST00000335440 ENSE00003611375
4017      42775509 ENSG00000160191       ENST00000335440 ENSE00003461715
4018      42775509 ENSG00000160191       ENST00000335440 ENSE00003490275
4019      42775509 ENSG00000160191       ENST00000335440 ENSE00003692648
4020      42775509 ENSG00000160191       ENST00000335440 ENSE00003643013
4021      42775509 ENSG00000160191       ENST00000335440 ENSE00003577781
4022      42775509 ENSG00000160191       ENST00000335440 ENSE00003690236
4023      42775509 ENSG00000160191       ENST00000335440 ENSE00003508313
4024      42775509 ENSG00000160191       ENST00000398225 ENSE00003565257
4025      42775509 ENSG00000160191       ENST00000398225 ENSE00003689265
4026      42775509 ENSG00000160191       ENST00000398225 ENSE00003492285
4027      42775509 ENSG00000160191       ENST00000398225 ENSE00003656908
4028      42775509 ENSG00000160191       ENST00000398225 ENSE00003667734
4029      42775509 ENSG00000160191       ENST00000398225 ENSE00003645170
4030      42775509 ENSG00000160191       ENST00000398225 ENSE00003642531
4031      42775509 ENSG00000160191       ENST00000398225 ENSE00003538925
4032      42775509 ENSG00000160191       ENST00000398225 ENSE00003602236
4033      42775509 ENSG00000160191       ENST00000398225 ENSE00003546441
4034      42775509 ENSG00000160191       ENST00000398225 ENSE00003586792
4035      42775509 ENSG00000160191       ENST00000398225 ENSE00003561153
4036      42775509 ENSG00000160191       ENST00000398225 ENSE00003611375
4037      42775509 ENSG00000160191       ENST00000398225 ENSE00003461715
4038      42775509 ENSG00000160191       ENST00000398225 ENSE00003490275
4039      42775509 ENSG00000160191       ENST00000398225 ENSE00003692648
4040      42775509 ENSG00000160191       ENST00000398225 ENSE00003643013
4041      42775509 ENSG00000160191       ENST00000398225 ENSE00003691085
4042      42775509 ENSG00000160191       ENST00000398225 ENSE00003522588
4043      42775509 ENSG00000160191       ENST00000497805 ENSE00003490488
4044      42775509 ENSG00000160191       ENST00000497805 ENSE00003510642
4045      42775509 ENSG00000160191       ENST00000497805 ENSE00003548951
4046      42775509 ENSG00000160191       ENST00000497805 ENSE00003488958
4047      42775509 ENSG00000160191       ENST00000497805 ENSE00003629203
4048      42775509 ENSG00000160191       ENST00000497805 ENSE00003686816
4049      42775509 ENSG00000160191       ENST00000497805 ENSE00003480474
4050      42775509 ENSG00000160191       ENST00000497805 ENSE00003684148
4051      42775509 ENSG00000160191       ENST00000497805 ENSE00003483886
4052      42775509 ENSG00000160191       ENST00000497805 ENSE00003466425
4053      42775509 ENSG00000160191       ENST00000497805 ENSE00003481356
4054      42775509 ENSG00000160191       ENST00000497805 ENSE00003641571
4055      42775509 ENSG00000160191       ENST00000497805 ENSE00003577931
4056      42775509 ENSG00000160191       ENST00000497805 ENSE00003676892
4057      42775509 ENSG00000160191       ENST00000497805 ENSE00003518456
4058      42775509 ENSG00000160191       ENST00000497805 ENSE00003694465
4059      42775509 ENSG00000160191       ENST00000497805 ENSE00003611483
4060      42775509 ENSG00000160191       ENST00000497805 ENSE00003667235
4061      42775509 ENSG00000160191       ENST00000398229 ENSE00003565257
4062      42775509 ENSG00000160191       ENST00000398229 ENSE00003656908
4063      42775509 ENSG00000160191       ENST00000398229 ENSE00003667734
4064      42775509 ENSG00000160191       ENST00000398229 ENSE00003645170
4065      42775509 ENSG00000160191       ENST00000398229 ENSE00003642531
4066      42775509 ENSG00000160191       ENST00000398229 ENSE00003538925
4067      42775509 ENSG00000160191       ENST00000398229 ENSE00003602236
4068      42775509 ENSG00000160191       ENST00000398229 ENSE00003546441
4069      42775509 ENSG00000160191       ENST00000398229 ENSE00003586792
4070      42775509 ENSG00000160191       ENST00000398229 ENSE00003561153
4071      42775509 ENSG00000160191       ENST00000398229 ENSE00003611375
4072      42775509 ENSG00000160191       ENST00000398229 ENSE00003461715
4073      42775509 ENSG00000160191       ENST00000398229 ENSE00003490275
4074      42775509 ENSG00000160191       ENST00000398229 ENSE00003692648
4075      42775509 ENSG00000160191       ENST00000398229 ENSE00003643013
4076      42775509 ENSG00000160191       ENST00000398229 ENSE00003522588
4077      42775509 ENSG00000160191       ENST00000398227 ENSE00003656908
4078      42775509 ENSG00000160191       ENST00000398227 ENSE00003667734
4079      42775509 ENSG00000160191       ENST00000398227 ENSE00003645170
4080      42775509 ENSG00000160191       ENST00000398227 ENSE00003642531
4081      42775509 ENSG00000160191       ENST00000398227 ENSE00003538925
4082      42775509 ENSG00000160191       ENST00000398227 ENSE00003602236
4083      42775509 ENSG00000160191       ENST00000398227 ENSE00003546441
4084      42775509 ENSG00000160191       ENST00000398227 ENSE00003586792
4085      42775509 ENSG00000160191       ENST00000398227 ENSE00003561153
4086      42775509 ENSG00000160191       ENST00000398227 ENSE00003611375
4087      42775509 ENSG00000160191       ENST00000398227 ENSE00003461715
4088      42775509 ENSG00000160191       ENST00000398227 ENSE00003490275
4089      42775509 ENSG00000160191       ENST00000398227 ENSE00003692648
4090      42775509 ENSG00000160191       ENST00000398227 ENSE00003643013
4091      42775509 ENSG00000160191       ENST00000398227 ENSE00003522588
4092      42775509 ENSG00000160191       ENST00000460989 ENSE00003490488
4093      42775509 ENSG00000160191       ENST00000460989 ENSE00003548951
4094      42775509 ENSG00000160191       ENST00000460989 ENSE00003488958
4095      42775509 ENSG00000160191       ENST00000460989 ENSE00003480474
4096      42775509 ENSG00000160191       ENST00000460989 ENSE00003684148
4097      42775509 ENSG00000160191       ENST00000460989 ENSE00003483886
4098      42775509 ENSG00000160191       ENST00000460989 ENSE00003466425
4099      42775509 ENSG00000160191       ENST00000460989 ENSE00003481356
4100      42775509 ENSG00000160191       ENST00000460989 ENSE00003641571
4101      42775509 ENSG00000160191       ENST00000460989 ENSE00003577931
4102      42775509 ENSG00000160191       ENST00000460989 ENSE00003676892
4103      42775509 ENSG00000160191       ENST00000460989 ENSE00003518456
4104      42775509 ENSG00000160191       ENST00000460989 ENSE00003694465
4105      42775509 ENSG00000160191       ENST00000460989 ENSE00003667235
4106      42775509 ENSG00000160191       ENST00000467403 ENSE00003517962
4107      42775509 ENSG00000160191       ENST00000467403 ENSE00003490488
4108      42775509 ENSG00000160191       ENST00000467403 ENSE00003510642
4109      42775509 ENSG00000160191       ENST00000467403 ENSE00003548951
4110      42775509 ENSG00000160191       ENST00000467403 ENSE00003488958
4111      42775509 ENSG00000160191       ENST00000467403 ENSE00003480474
4112      42775509 ENSG00000160191       ENST00000467403 ENSE00003684148
4113      42775509 ENSG00000160191       ENST00000467403 ENSE00003483886
4114      42775509 ENSG00000160191       ENST00000467403 ENSE00003466425
4115      42775509 ENSG00000160191       ENST00000467403 ENSE00003481356
4116      42775509 ENSG00000160191       ENST00000467403 ENSE00003641571
4117      42775509 ENSG00000160191       ENST00000467403 ENSE00003577931
4118      42775509 ENSG00000160191       ENST00000467403 ENSE00003676892
4119      42775509 ENSG00000160191       ENST00000467403 ENSE00003518456
4120      42775509 ENSG00000160191       ENST00000467403 ENSE00003694465
4121      42775509 ENSG00000160191       ENST00000467403 ENSE00003667235
4122      42775509 ENSG00000160191       ENST00000349112 ENSE00003656908
4123      42775509 ENSG00000160191       ENST00000349112 ENSE00003667734
4124      42775509 ENSG00000160191       ENST00000349112 ENSE00003645170
4125      42775509 ENSG00000160191       ENST00000349112 ENSE00003642531
4126      42775509 ENSG00000160191       ENST00000349112 ENSE00003538925
4127      42775509 ENSG00000160191       ENST00000349112 ENSE00003602236
4128      42775509 ENSG00000160191       ENST00000349112 ENSE00003546441
4129      42775509 ENSG00000160191       ENST00000349112 ENSE00003586792
4130      42775509 ENSG00000160191       ENST00000349112 ENSE00003561153
4131      42775509 ENSG00000160191       ENST00000349112 ENSE00003611375
4132      42775509 ENSG00000160191       ENST00000349112 ENSE00003461715
4133      42775509 ENSG00000160191       ENST00000349112 ENSE00003490275
4134      42775509 ENSG00000160191       ENST00000349112 ENSE00003692648
4135      42775509 ENSG00000160191       ENST00000349112 ENSE00003643013
4136      42775509 ENSG00000160191       ENST00000349112 ENSE00003690236
4137      42775509 ENSG00000160191       ENST00000349112 ENSE00003538927
4138      42775509 ENSG00000160191       ENST00000398224 ENSE00003689265
4139      42775509 ENSG00000160191       ENST00000398224 ENSE00003492285
4140      42775509 ENSG00000160191       ENST00000398224 ENSE00003656908
4141      42775509 ENSG00000160191       ENST00000398224 ENSE00003667734
4142      42775509 ENSG00000160191       ENST00000398224 ENSE00003645170
4143      42775509 ENSG00000160191       ENST00000398224 ENSE00003642531
4144      42775509 ENSG00000160191       ENST00000398224 ENSE00003538925
4145      42775509 ENSG00000160191       ENST00000398224 ENSE00003602236
4146      42775509 ENSG00000160191       ENST00000398224 ENSE00003546441
4147      42775509 ENSG00000160191       ENST00000398224 ENSE00003586792
4148      42775509 ENSG00000160191       ENST00000398224 ENSE00003561153
4149      42775509 ENSG00000160191       ENST00000398224 ENSE00003611375
4150      42775509 ENSG00000160191       ENST00000398224 ENSE00003461715
4151      42775509 ENSG00000160191       ENST00000398224 ENSE00003490275
4152      42775509 ENSG00000160191       ENST00000398224 ENSE00003692648
4153      42775509 ENSG00000160191       ENST00000398224 ENSE00003643013
4154      42775509 ENSG00000160191       ENST00000398224 ENSE00003628617
4155      42775509 ENSG00000160191       ENST00000467162 ENSE00003517962
4156      42775509 ENSG00000160191       ENST00000467162 ENSE00003490488
4157      42775509 ENSG00000160191       ENST00000467162 ENSE00003548951
4158      42775509 ENSG00000160191       ENST00000467162 ENSE00003488958
4159      42775509 ENSG00000160191       ENST00000467162 ENSE00003629203
4160      42775509 ENSG00000160191       ENST00000467162 ENSE00003686816
4161      42775509 ENSG00000160191       ENST00000467162 ENSE00003480474
4162      42775509 ENSG00000160191       ENST00000467162 ENSE00003684148
4163      42775509 ENSG00000160191       ENST00000467162 ENSE00003483886
4164      42775509 ENSG00000160191       ENST00000467162 ENSE00001895084
4165      42775509 ENSG00000160191       ENST00000467162 ENSE00001892956
4166      42775509 ENSG00000160191       ENST00000495343 ENSE00003517962
4167      42775509 ENSG00000160191       ENST00000495343 ENSE00003490488
4168      42775509 ENSG00000160191       ENST00000495343 ENSE00003548951
4169      42775509 ENSG00000160191       ENST00000495343 ENSE00003488958
4170      42775509 ENSG00000160191       ENST00000495343 ENSE00003480474
4171      42775509 ENSG00000160191       ENST00000495343 ENSE00003684148
4172      42775509 ENSG00000160191       ENST00000495343 ENSE00003483886
4173      42775509 ENSG00000160191       ENST00000495343 ENSE00003466425
4174      42775509 ENSG00000160191       ENST00000495343 ENSE00003481356
4175      42775509 ENSG00000160191       ENST00000495343 ENSE00003641571
4176      42775509 ENSG00000160191       ENST00000495343 ENSE00003577931
4177      42775509 ENSG00000160191       ENST00000495343 ENSE00003676892
4178      42775509 ENSG00000160191       ENST00000495343 ENSE00003518456
4179      42775509 ENSG00000160191       ENST00000495343 ENSE00003694465
4180      42775509 ENSG00000160191       ENST00000495343 ENSE00001867279
4181      42775509 ENSG00000160191       ENST00000489319 ENSE00003684148
4182      42775509 ENSG00000160191       ENST00000489319 ENSE00003483886
4183      42775509 ENSG00000160191       ENST00000489319 ENSE00003466425
4184      42775509 ENSG00000160191       ENST00000489319 ENSE00003481356
4185      42775509 ENSG00000160191       ENST00000489319 ENSE00003641571
4186      42775509 ENSG00000160191       ENST00000489319 ENSE00003577931
4187      42775509 ENSG00000160191       ENST00000489319 ENSE00003676892
4188      42775509 ENSG00000160191       ENST00000489319 ENSE00003518456
4189      42775509 ENSG00000160191       ENST00000489319 ENSE00003694465
4190      42775509 ENSG00000160191       ENST00000489319 ENSE00001943585
4191      42775509 ENSG00000160191       ENST00000466472 ENSE00003481356
4192      42775509 ENSG00000160191       ENST00000466472 ENSE00001934640
4193      42775509 ENSG00000160191       ENST00000466472 ENSE00001918948
4194      42741758 ENSG00000225731       ENST00000437426 ENSE00001676523
4195      42741758 ENSG00000225731       ENST00000437426 ENSE00001709447
4196      42651244 ENSG00000235023       ENST00000424890 ENSE00001780885
4197      42651244 ENSG00000235023       ENST00000424890 ENSE00001633485
4198      42615058 ENSG00000225431       ENST00000419628 ENSE00001633776
4199      42615058 ENSG00000225431       ENST00000419628 ENSE00001709308
4200      42581440 ENSG00000160190       ENST00000454800 ENSE00001677181
4201      42581440 ENSG00000160190       ENST00000454800 ENSE00001781553
4202      42581440 ENSG00000160190       ENST00000419522 ENSE00001532871
4203      42581440 ENSG00000160190       ENST00000419522 ENSE00001532813
4204      42581440 ENSG00000160190       ENST00000419522 ENSE00003614777
4205      42581440 ENSG00000160190       ENST00000398341 ENSE00001532813
4206      42581440 ENSG00000160190       ENST00000398341 ENSE00003614777
4207      42581440 ENSG00000160190       ENST00000398341 ENSE00001532814
4208      42581440 ENSG00000160190       ENST00000398341 ENSE00001050425
4209      42581440 ENSG00000160190       ENST00000398341 ENSE00001050414
4210      42581440 ENSG00000160190       ENST00000398341 ENSE00001050420
4211      42581440 ENSG00000160190       ENST00000398341 ENSE00001050423
4212      42581440 ENSG00000160190       ENST00000398341 ENSE00001050419
4213      42581440 ENSG00000160190       ENST00000398341 ENSE00001050430
4214      42581440 ENSG00000160190       ENST00000398341 ENSE00001050427
4215      42581440 ENSG00000160190       ENST00000398341 ENSE00001296458
4216      42581440 ENSG00000160190       ENST00000398341 ENSE00001050429
4217      42581440 ENSG00000160190       ENST00000398341 ENSE00002439789
4218      42581440 ENSG00000160190       ENST00000398341 ENSE00001050417
4219      42581440 ENSG00000160190       ENST00000398341 ENSE00001050431
4220      42581440 ENSG00000160190       ENST00000398341 ENSE00003531380
4221      42581440 ENSG00000160190       ENST00000398341 ENSE00003689795
4222      42581440 ENSG00000160190       ENST00000398341 ENSE00003509943
4223      42581440 ENSG00000160190       ENST00000398341 ENSE00003534969
4224      42581440 ENSG00000160190       ENST00000398341 ENSE00001050428
4225      42581440 ENSG00000160190       ENST00000398341 ENSE00001217629
4226      42581440 ENSG00000160190       ENST00000484887 ENSE00001532813
4227      42581440 ENSG00000160190       ENST00000484887 ENSE00001864255
4228      42581440 ENSG00000160190       ENST00000484887 ENSE00001915884
4229      42581440 ENSG00000160190       ENST00000471277 ENSE00001869930
4230      42581440 ENSG00000160190       ENST00000471277 ENSE00001927461
4231      42581440 ENSG00000160190       ENST00000471277 ENSE00003620799
4232      42581440 ENSG00000160190       ENST00000471277 ENSE00001896458
4233      42581440 ENSG00000160190       ENST00000352133 ENSE00003614777
4234      42581440 ENSG00000160190       ENST00000352133 ENSE00001050425
4235      42581440 ENSG00000160190       ENST00000352133 ENSE00001050414
4236      42581440 ENSG00000160190       ENST00000352133 ENSE00001050420
4237      42581440 ENSG00000160190       ENST00000352133 ENSE00001050423
4238      42581440 ENSG00000160190       ENST00000352133 ENSE00001050419
4239      42581440 ENSG00000160190       ENST00000352133 ENSE00001050430
4240      42581440 ENSG00000160190       ENST00000352133 ENSE00001050427
4241      42581440 ENSG00000160190       ENST00000352133 ENSE00001296458
4242      42581440 ENSG00000160190       ENST00000352133 ENSE00001050429
4243      42581440 ENSG00000160190       ENST00000352133 ENSE00002439789
4244      42581440 ENSG00000160190       ENST00000352133 ENSE00001050417
4245      42581440 ENSG00000160190       ENST00000352133 ENSE00001050431
4246      42581440 ENSG00000160190       ENST00000352133 ENSE00003531380
4247      42581440 ENSG00000160190       ENST00000352133 ENSE00003689795
4248      42581440 ENSG00000160190       ENST00000352133 ENSE00003509943
4249      42581440 ENSG00000160190       ENST00000352133 ENSE00003534969
4250      42581440 ENSG00000160190       ENST00000352133 ENSE00001050428
4251      42581440 ENSG00000160190       ENST00000352133 ENSE00001217629
4252      42581440 ENSG00000160190       ENST00000352133 ENSE00001138938
4253      42581440 ENSG00000160190       ENST00000398343 ENSE00003614777
4254      42581440 ENSG00000160190       ENST00000398343 ENSE00001654580
4255      42581440 ENSG00000160190       ENST00000398343 ENSE00001638547
4256      42581440 ENSG00000160190       ENST00000487951 ENSE00001906684
4257      42581440 ENSG00000160190       ENST00000487951 ENSE00001941605
4258      42581440 ENSG00000160190       ENST00000496416 ENSE00003484963
4259      42581440 ENSG00000160190       ENST00000496416 ENSE00003554080
4260      42581440 ENSG00000160190       ENST00000496416 ENSE00003461747
4261      42581440 ENSG00000160190       ENST00000496416 ENSE00003658486
4262      42581440 ENSG00000160190       ENST00000496416 ENSE00001923943
4263      42561934 ENSG00000235772       ENST00000442605 ENSE00001756591
4264      42561934 ENSG00000235772       ENST00000442605 ENSE00001668551
4265      42509661 ENSG00000231867       ENST00000429903 ENSE00001643895
4266      42509661 ENSG00000231867       ENST00000429903 ENSE00001720226
4267      42509661 ENSG00000231867       ENST00000455116 ENSE00001613306
4268      42509661 ENSG00000231867       ENST00000455116 ENSE00001757076
4269      42497443 ENSG00000239930       ENST00000416179 ENSE00001742222
4270      42497443 ENSG00000239930       ENST00000416179 ENSE00001740000
4271      42497443 ENSG00000239930       ENST00000416179 ENSE00001594678
4272      42496354 ENSG00000160188       ENST00000493019 ENSE00001872951
4273      42496354 ENSG00000160188       ENST00000493019 ENSE00003595360
4274      42496354 ENSG00000160188       ENST00000493019 ENSE00003526573
4275      42496354 ENSG00000160188       ENST00000493019 ENSE00001816987
4276      42496354 ENSG00000160188       ENST00000493019 ENSE00003580117
4277      42496354 ENSG00000160188       ENST00000493019 ENSE00003471308
4278      42496354 ENSG00000160188       ENST00000493019 ENSE00003481292
4279      42496354 ENSG00000160188       ENST00000493019 ENSE00003530493
4280      42496354 ENSG00000160188       ENST00000291536 ENSE00001327702
4281      42496354 ENSG00000160188       ENST00000291536 ENSE00003467057
4282      42496354 ENSG00000160188       ENST00000291536 ENSE00003642321
4283      42496354 ENSG00000160188       ENST00000291536 ENSE00001109814
4284      42496354 ENSG00000160188       ENST00000291536 ENSE00001109809
4285      42496354 ENSG00000160188       ENST00000291536 ENSE00003590447
4286      42496354 ENSG00000160188       ENST00000291536 ENSE00003488576
4287      42496354 ENSG00000160188       ENST00000291536 ENSE00003493888
4288      42496354 ENSG00000160188       ENST00000291536 ENSE00003645485
4289      42496354 ENSG00000160188       ENST00000398352 ENSE00003642321
4290      42496354 ENSG00000160188       ENST00000398352 ENSE00001109814
4291      42496354 ENSG00000160188       ENST00000398352 ENSE00001109809
4292      42496354 ENSG00000160188       ENST00000398352 ENSE00003590447
4293      42496354 ENSG00000160188       ENST00000398352 ENSE00003488576
4294      42496354 ENSG00000160188       ENST00000398352 ENSE00003493888
4295      42496354 ENSG00000160188       ENST00000398352 ENSE00001826404
4296      42496354 ENSG00000160188       ENST00000398352 ENSE00001855346
4297      42447681 ENSG00000160185       ENST00000635189 ENSE00003787837
4298      42447681 ENSG00000160185       ENST00000635189 ENSE00003693107
4299      42447681 ENSG00000160185       ENST00000635189 ENSE00003583784
4300      42447681 ENSG00000160185       ENST00000635189 ENSE00003588403
4301      42447681 ENSG00000160185       ENST00000635189 ENSE00003785860
4302      42447681 ENSG00000160185       ENST00000291535 ENSE00003583784
4303      42447681 ENSG00000160185       ENST00000291535 ENSE00003588403
4304      42447681 ENSG00000160185       ENST00000291535 ENSE00003787320
4305      42447681 ENSG00000160185       ENST00000291535 ENSE00003658789
4306      42447681 ENSG00000160185       ENST00000291535 ENSE00003563179
4307      42447681 ENSG00000160185       ENST00000291535 ENSE00003689328
4308      42447681 ENSG00000160185       ENST00000291535 ENSE00003601029
4309      42447681 ENSG00000160185       ENST00000291535 ENSE00003568239
4310      42447681 ENSG00000160185       ENST00000291535 ENSE00001259628
4311      42447681 ENSG00000160185       ENST00000291535 ENSE00001050381
4312      42447681 ENSG00000160185       ENST00000291535 ENSE00003471164
4313      42447681 ENSG00000160185       ENST00000291535 ENSE00003593464
4314      42447681 ENSG00000160185       ENST00000291535 ENSE00003665179
4315      42447681 ENSG00000160185       ENST00000291535 ENSE00003464292
4316      42447681 ENSG00000160185       ENST00000635108 ENSE00003583784
4317      42447681 ENSG00000160185       ENST00000635108 ENSE00003789992
4318      42447681 ENSG00000160185       ENST00000635108 ENSE00003784332
4319      42447681 ENSG00000160185       ENST00000635108 ENSE00003790547
4320      42447681 ENSG00000160185       ENST00000635325 ENSE00003583784
4321      42447681 ENSG00000160185       ENST00000635325 ENSE00003588403
4322      42447681 ENSG00000160185       ENST00000635325 ENSE00003658789
4323      42447681 ENSG00000160185       ENST00000635325 ENSE00003563179
4324      42447681 ENSG00000160185       ENST00000635325 ENSE00003689328
4325      42447681 ENSG00000160185       ENST00000635325 ENSE00003601029
4326      42447681 ENSG00000160185       ENST00000635325 ENSE00003568239
4327      42447681 ENSG00000160185       ENST00000635325 ENSE00001259628
4328      42447681 ENSG00000160185       ENST00000635325 ENSE00001050381
4329      42447681 ENSG00000160185       ENST00000635325 ENSE00003471164
4330      42447681 ENSG00000160185       ENST00000635325 ENSE00003789992
4331      42447681 ENSG00000160185       ENST00000635325 ENSE00003785493
4332      42447681 ENSG00000160185       ENST00000635325 ENSE00003490390
4333      42447681 ENSG00000160185       ENST00000635325 ENSE00003788035
4334      42447681 ENSG00000160185       ENST00000634453 ENSE00001891722
4335      42447681 ENSG00000160185       ENST00000634453 ENSE00003557340
4336      42447681 ENSG00000160185       ENST00000634453 ENSE00003507328
4337      42447681 ENSG00000160185       ENST00000634453 ENSE00003791291
4338      42447681 ENSG00000160185       ENST00000634718 ENSE00003557340
4339      42447681 ENSG00000160185       ENST00000634718 ENSE00003507328
4340      42447681 ENSG00000160185       ENST00000634718 ENSE00003784549
4341      42447681 ENSG00000160185       ENST00000634718 ENSE00003791328
4342      42447681 ENSG00000160185       ENST00000319294 ENSE00003583784
4343      42447681 ENSG00000160185       ENST00000319294 ENSE00003588403
4344      42447681 ENSG00000160185       ENST00000319294 ENSE00003658789
4345      42447681 ENSG00000160185       ENST00000319294 ENSE00003563179
4346      42447681 ENSG00000160185       ENST00000319294 ENSE00003689328
4347      42447681 ENSG00000160185       ENST00000319294 ENSE00003601029
4348      42447681 ENSG00000160185       ENST00000319294 ENSE00003568239
4349      42447681 ENSG00000160185       ENST00000319294 ENSE00001259628
4350      42447681 ENSG00000160185       ENST00000319294 ENSE00001050381
4351      42447681 ENSG00000160185       ENST00000319294 ENSE00003471164
4352      42447681 ENSG00000160185       ENST00000319294 ENSE00003593464
4353      42447681 ENSG00000160185       ENST00000319294 ENSE00003665179
4354      42447681 ENSG00000160185       ENST00000319294 ENSE00001884887
4355      42447681 ENSG00000160185       ENST00000319294 ENSE00001050389
4356      42447681 ENSG00000160185       ENST00000319294 ENSE00001259600
4357      42447681 ENSG00000160185       ENST00000398367 ENSE00003583784
4358      42447681 ENSG00000160185       ENST00000398367 ENSE00003588403
4359      42447681 ENSG00000160185       ENST00000398367 ENSE00003658789
4360      42447681 ENSG00000160185       ENST00000398367 ENSE00003563179
4361      42447681 ENSG00000160185       ENST00000398367 ENSE00003689328
4362      42447681 ENSG00000160185       ENST00000398367 ENSE00003601029
4363      42447681 ENSG00000160185       ENST00000398367 ENSE00003568239
4364      42447681 ENSG00000160185       ENST00000398367 ENSE00001259628
4365      42447681 ENSG00000160185       ENST00000398367 ENSE00001050381
4366      42447681 ENSG00000160185       ENST00000398367 ENSE00003471164
4367      42447681 ENSG00000160185       ENST00000398367 ENSE00003694724
4368      42447681 ENSG00000160185       ENST00000398367 ENSE00003631571
4369      42447681 ENSG00000160185       ENST00000473381 ENSE00003583784
4370      42447681 ENSG00000160185       ENST00000473381 ENSE00003588403
4371      42447681 ENSG00000160185       ENST00000473381 ENSE00003658789
4372      42447681 ENSG00000160185       ENST00000473381 ENSE00003563179
4373      42447681 ENSG00000160185       ENST00000473381 ENSE00003689328
4374      42447681 ENSG00000160185       ENST00000473381 ENSE00003601029
4375      42447681 ENSG00000160185       ENST00000473381 ENSE00003568239
4376      42447681 ENSG00000160185       ENST00000473381 ENSE00003490390
4377      42447681 ENSG00000160185       ENST00000473381 ENSE00003694724
4378      42447681 ENSG00000160185       ENST00000473381 ENSE00001881260
4379      42447681 ENSG00000160185       ENST00000473381 ENSE00001858826
4380      42447681 ENSG00000160185       ENST00000473381 ENSE00003674107
4381      42447681 ENSG00000160185       ENST00000473381 ENSE00003562002
4382      42447681 ENSG00000160185       ENST00000473381 ENSE00001860921
4383      42417593 ENSG00000252619       ENST00000516810 ENSE00002089087
4384      42396846 ENSG00000160183       ENST00000476848 ENSE00001924634
4385      42396846 ENSG00000160183       ENST00000476848 ENSE00003681958
4386      42396846 ENSG00000160183       ENST00000476848 ENSE00003509042
4387      42396846 ENSG00000160183       ENST00000476848 ENSE00003663327
4388      42396846 ENSG00000160183       ENST00000476848 ENSE00003659049
4389      42396846 ENSG00000160183       ENST00000474596 ENSE00003681958
4390      42396846 ENSG00000160183       ENST00000474596 ENSE00003663327
4391      42396846 ENSG00000160183       ENST00000474596 ENSE00003659049
4392      42396846 ENSG00000160183       ENST00000474596 ENSE00001760622
4393      42396846 ENSG00000160183       ENST00000474596 ENSE00003530828
4394      42396846 ENSG00000160183       ENST00000474596 ENSE00003552889
4395      42396846 ENSG00000160183       ENST00000474596 ENSE00003640432
4396      42396846 ENSG00000160183       ENST00000474596 ENSE00003679839
4397      42396846 ENSG00000160183       ENST00000474596 ENSE00003535075
4398      42396846 ENSG00000160183       ENST00000474596 ENSE00003686535
4399      42396846 ENSG00000160183       ENST00000482761 ENSE00003681958
4400      42396846 ENSG00000160183       ENST00000482761 ENSE00003663327
4401      42396846 ENSG00000160183       ENST00000482761 ENSE00003659049
4402      42396846 ENSG00000160183       ENST00000482761 ENSE00003530828
4403      42396846 ENSG00000160183       ENST00000482761 ENSE00003552889
4404      42396846 ENSG00000160183       ENST00000482761 ENSE00003640432
4405      42396846 ENSG00000160183       ENST00000482761 ENSE00003679839
4406      42396846 ENSG00000160183       ENST00000482761 ENSE00003535075
4407      42396846 ENSG00000160183       ENST00000482761 ENSE00003686535
4408      42396846 ENSG00000160183       ENST00000482761 ENSE00001656259
4409      42396846 ENSG00000160183       ENST00000482761 ENSE00003656666
4410      42396846 ENSG00000160183       ENST00000398405 ENSE00001533083
4411      42396846 ENSG00000160183       ENST00000398405 ENSE00001533082
4412      42396846 ENSG00000160183       ENST00000398405 ENSE00003625818
4413      42396846 ENSG00000160183       ENST00000398405 ENSE00003610022
4414      42396846 ENSG00000160183       ENST00000398405 ENSE00003503535
4415      42396846 ENSG00000160183       ENST00000398405 ENSE00003594737
4416      42396846 ENSG00000160183       ENST00000398405 ENSE00003564347
4417      42396846 ENSG00000160183       ENST00000398405 ENSE00003479330
4418      42396846 ENSG00000160183       ENST00000398405 ENSE00003494636
4419      42396846 ENSG00000160183       ENST00000398405 ENSE00003609993
4420      42396846 ENSG00000160183       ENST00000398405 ENSE00003597801
4421      42396846 ENSG00000160183       ENST00000398405 ENSE00003550020
4422      42396846 ENSG00000160183       ENST00000433957 ENSE00003625818
4423      42396846 ENSG00000160183       ENST00000433957 ENSE00003610022
4424      42396846 ENSG00000160183       ENST00000433957 ENSE00003503535
4425      42396846 ENSG00000160183       ENST00000433957 ENSE00003594737
4426      42396846 ENSG00000160183       ENST00000433957 ENSE00003564347
4427      42396846 ENSG00000160183       ENST00000433957 ENSE00003479330
4428      42396846 ENSG00000160183       ENST00000433957 ENSE00003494636
4429      42396846 ENSG00000160183       ENST00000433957 ENSE00003609993
4430      42396846 ENSG00000160183       ENST00000433957 ENSE00003597801
4431      42396846 ENSG00000160183       ENST00000433957 ENSE00003550020
4432      42396846 ENSG00000160183       ENST00000433957 ENSE00001821827
4433      42396846 ENSG00000160183       ENST00000433957 ENSE00003591562
4434      42396846 ENSG00000160183       ENST00000433957 ENSE00001050357
4435      42396846 ENSG00000160183       ENST00000291532 ENSE00003625818
4436      42396846 ENSG00000160183       ENST00000291532 ENSE00003610022
4437      42396846 ENSG00000160183       ENST00000291532 ENSE00003503535
4438      42396846 ENSG00000160183       ENST00000291532 ENSE00003594737
4439      42396846 ENSG00000160183       ENST00000291532 ENSE00003564347
4440      42396846 ENSG00000160183       ENST00000291532 ENSE00003479330
4441      42396846 ENSG00000160183       ENST00000291532 ENSE00003494636
4442      42396846 ENSG00000160183       ENST00000291532 ENSE00003597801
4443      42396846 ENSG00000160183       ENST00000291532 ENSE00003550020
4444      42396846 ENSG00000160183       ENST00000291532 ENSE00003591562
4445      42396846 ENSG00000160183       ENST00000291532 ENSE00001050357
4446      42396846 ENSG00000160183       ENST00000291532 ENSE00003667619
4447      42396846 ENSG00000160183       ENST00000291532 ENSE00003661008
4448      42396846 ENSG00000160183       ENST00000398397 ENSE00003625818
4449      42396846 ENSG00000160183       ENST00000398397 ENSE00003610022
4450      42396846 ENSG00000160183       ENST00000398397 ENSE00003503535
4451      42396846 ENSG00000160183       ENST00000398397 ENSE00003594737
4452      42396846 ENSG00000160183       ENST00000398397 ENSE00003564347
4453      42396846 ENSG00000160183       ENST00000398397 ENSE00003591562
4454      42396846 ENSG00000160183       ENST00000398397 ENSE00001050357
4455      42396846 ENSG00000160183       ENST00000398397 ENSE00001930839
4456      42396846 ENSG00000160183       ENST00000398397 ENSE00001533046
4457      42396846 ENSG00000160183       ENST00000478680 ENSE00001956352
4458      42396846 ENSG00000160183       ENST00000478680 ENSE00001925803
4459      42366594 ENSG00000160182       ENST00000291527 ENSE00001050346
4460      42366594 ENSG00000160182       ENST00000291527 ENSE00001050347
4461      42366594 ENSG00000160182       ENST00000291527 ENSE00001368209
4462      42351128 ENSG00000160181       ENST00000291526 ENSE00001139218
4463      42351128 ENSG00000160181       ENST00000291526 ENSE00003593184
4464      42351128 ENSG00000160181       ENST00000291526 ENSE00003487843
4465      42351128 ENSG00000160181       ENST00000291526 ENSE00001266989
4466      42351128 ENSG00000160181       ENST00000463771 ENSE00001846563
4467      42351128 ENSG00000160181       ENST00000463771 ENSE00001860208
4468      42351128 ENSG00000160181       ENST00000463771 ENSE00003466701
4469      42351128 ENSG00000160181       ENST00000463771 ENSE00001948662
4470      42351128 ENSG00000160181       ENST00000475297 ENSE00003466701
4471      42351128 ENSG00000160181       ENST00000475297 ENSE00001865888
4472      42351128 ENSG00000160181       ENST00000475297 ENSE00002510635
4473      42351128 ENSG00000160181       ENST00000475297 ENSE00003550067
4474      42351128 ENSG00000160181       ENST00000475297 ENSE00001917527
4475      42315651 ENSG00000160180       ENST00000518498 ENSE00001312206
4476      42315651 ENSG00000160180       ENST00000518498 ENSE00001317813
4477      42315651 ENSG00000160180       ENST00000518498 ENSE00001833121
4478      42315651 ENSG00000160180       ENST00000489676 ENSE00001824496
4479      42315651 ENSG00000160180       ENST00000489676 ENSE00003679895
4480      42315651 ENSG00000160180       ENST00000398431 ENSE00001697403
4481      42315651 ENSG00000160180       ENST00000398431 ENSE00001761509
4482      42315651 ENSG00000160180       ENST00000398431 ENSE00003645576
4483      42315651 ENSG00000160180       ENST00000291525 ENSE00001555985
4484      42315651 ENSG00000160180       ENST00000291525 ENSE00003751565
4485      42315651 ENSG00000160180       ENST00000291525 ENSE00003734383
4486      42315651 ENSG00000160180       ENST00000291525 ENSE00003731302
4487      42297244 ENSG00000160179       ENST00000398457 ENSE00001533348
4488      42297244 ENSG00000160179       ENST00000398457 ENSE00003482497
4489      42297244 ENSG00000160179       ENST00000398457 ENSE00003506666
4490      42297244 ENSG00000160179       ENST00000398457 ENSE00003523195
4491      42297244 ENSG00000160179       ENST00000398457 ENSE00003543273
4492      42297244 ENSG00000160179       ENST00000398457 ENSE00003477889
4493      42297244 ENSG00000160179       ENST00000398457 ENSE00003547441
4494      42297244 ENSG00000160179       ENST00000398457 ENSE00003689634
4495      42297244 ENSG00000160179       ENST00000398457 ENSE00003505582
4496      42297244 ENSG00000160179       ENST00000398457 ENSE00003553101
4497      42297244 ENSG00000160179       ENST00000398457 ENSE00003544349
4498      42297244 ENSG00000160179       ENST00000398457 ENSE00003688085
4499      42297244 ENSG00000160179       ENST00000398457 ENSE00003670239
4500      42297244 ENSG00000160179       ENST00000398457 ENSE00003496464
4501      42297244 ENSG00000160179       ENST00000398457 ENSE00003674298
4502      42297244 ENSG00000160179       ENST00000398457 ENSE00003688526
4503      42297244 ENSG00000160179       ENST00000462050 ENSE00001917295
4504      42297244 ENSG00000160179       ENST00000462050 ENSE00003486574
4505      42297244 ENSG00000160179       ENST00000462050 ENSE00001848792
4506      42297244 ENSG00000160179       ENST00000462050 ENSE00003603253
4507      42297244 ENSG00000160179       ENST00000462050 ENSE00003610461
4508      42297244 ENSG00000160179       ENST00000462050 ENSE00003531861
4509      42297244 ENSG00000160179       ENST00000462050 ENSE00003611951
4510      42297244 ENSG00000160179       ENST00000462050 ENSE00003619236
4511      42297244 ENSG00000160179       ENST00000462050 ENSE00003502441
4512      42297244 ENSG00000160179       ENST00000462050 ENSE00003634060
4513      42297244 ENSG00000160179       ENST00000462050 ENSE00003472929
4514      42297244 ENSG00000160179       ENST00000462050 ENSE00003665058
4515      42297244 ENSG00000160179       ENST00000462050 ENSE00003640764
4516      42297244 ENSG00000160179       ENST00000462050 ENSE00003624267
4517      42297244 ENSG00000160179       ENST00000462050 ENSE00003531087
4518      42297244 ENSG00000160179       ENST00000462050 ENSE00003605681
4519      42297244 ENSG00000160179       ENST00000462050 ENSE00003499091
4520      42297244 ENSG00000160179       ENST00000347800 ENSE00003506666
4521      42297244 ENSG00000160179       ENST00000347800 ENSE00003523195
4522      42297244 ENSG00000160179       ENST00000347800 ENSE00003543273
4523      42297244 ENSG00000160179       ENST00000347800 ENSE00003477889
4524      42297244 ENSG00000160179       ENST00000347800 ENSE00003547441
4525      42297244 ENSG00000160179       ENST00000347800 ENSE00003689634
4526      42297244 ENSG00000160179       ENST00000347800 ENSE00003505582
4527      42297244 ENSG00000160179       ENST00000347800 ENSE00003553101
4528      42297244 ENSG00000160179       ENST00000347800 ENSE00003544349
4529      42297244 ENSG00000160179       ENST00000347800 ENSE00003688085
4530      42297244 ENSG00000160179       ENST00000347800 ENSE00003670239
4531      42297244 ENSG00000160179       ENST00000347800 ENSE00003496464
4532      42297244 ENSG00000160179       ENST00000347800 ENSE00003674298
4533      42297244 ENSG00000160179       ENST00000347800 ENSE00003688526
4534      42297244 ENSG00000160179       ENST00000347800 ENSE00001887087
4535      42297244 ENSG00000160179       ENST00000450121 ENSE00003506666
4536      42297244 ENSG00000160179       ENST00000450121 ENSE00003523195
4537      42297244 ENSG00000160179       ENST00000450121 ENSE00003543273
4538      42297244 ENSG00000160179       ENST00000450121 ENSE00003547441
4539      42297244 ENSG00000160179       ENST00000450121 ENSE00001533208
4540      42297244 ENSG00000160179       ENST00000450121 ENSE00001704849
4541      42297244 ENSG00000160179       ENST00000398449 ENSE00003506666
4542      42297244 ENSG00000160179       ENST00000398449 ENSE00003523195
4543      42297244 ENSG00000160179       ENST00000398449 ENSE00003543273
4544      42297244 ENSG00000160179       ENST00000398449 ENSE00003477889
4545      42297244 ENSG00000160179       ENST00000398449 ENSE00003547441
4546      42297244 ENSG00000160179       ENST00000398449 ENSE00003689634
4547      42297244 ENSG00000160179       ENST00000398449 ENSE00003505582
4548      42297244 ENSG00000160179       ENST00000398449 ENSE00003553101
4549      42297244 ENSG00000160179       ENST00000398449 ENSE00003544349
4550      42297244 ENSG00000160179       ENST00000398449 ENSE00003688085
4551      42297244 ENSG00000160179       ENST00000398449 ENSE00003670239
4552      42297244 ENSG00000160179       ENST00000398449 ENSE00003496464
4553      42297244 ENSG00000160179       ENST00000398449 ENSE00003674298
4554      42297244 ENSG00000160179       ENST00000398449 ENSE00003688526
4555      42297244 ENSG00000160179       ENST00000398449 ENSE00001179278
4556      42297244 ENSG00000160179       ENST00000361802 ENSE00003506666
4557      42297244 ENSG00000160179       ENST00000361802 ENSE00003523195
4558      42297244 ENSG00000160179       ENST00000361802 ENSE00003543273
4559      42297244 ENSG00000160179       ENST00000361802 ENSE00003477889
4560      42297244 ENSG00000160179       ENST00000361802 ENSE00003547441
4561      42297244 ENSG00000160179       ENST00000361802 ENSE00003689634
4562      42297244 ENSG00000160179       ENST00000361802 ENSE00003505582
4563      42297244 ENSG00000160179       ENST00000361802 ENSE00003544349
4564      42297244 ENSG00000160179       ENST00000361802 ENSE00003688085
4565      42297244 ENSG00000160179       ENST00000361802 ENSE00003670239
4566      42297244 ENSG00000160179       ENST00000361802 ENSE00003496464
4567      42297244 ENSG00000160179       ENST00000361802 ENSE00003674298
4568      42297244 ENSG00000160179       ENST00000361802 ENSE00003688526
4569      42297244 ENSG00000160179       ENST00000361802 ENSE00001179278
4570      42297244 ENSG00000160179       ENST00000361802 ENSE00003586318
4571      42297244 ENSG00000160179       ENST00000343687 ENSE00003506666
4572      42297244 ENSG00000160179       ENST00000343687 ENSE00003523195
4573      42297244 ENSG00000160179       ENST00000343687 ENSE00003543273
4574      42297244 ENSG00000160179       ENST00000343687 ENSE00003477889
4575      42297244 ENSG00000160179       ENST00000343687 ENSE00003547441
4576      42297244 ENSG00000160179       ENST00000343687 ENSE00003689634
4577      42297244 ENSG00000160179       ENST00000343687 ENSE00003505582
4578      42297244 ENSG00000160179       ENST00000343687 ENSE00003553101
4579      42297244 ENSG00000160179       ENST00000343687 ENSE00003544349
4580      42297244 ENSG00000160179       ENST00000343687 ENSE00003688085
4581      42297244 ENSG00000160179       ENST00000343687 ENSE00003670239
4582      42297244 ENSG00000160179       ENST00000343687 ENSE00003496464
4583      42297244 ENSG00000160179       ENST00000343687 ENSE00003674298
4584      42297244 ENSG00000160179       ENST00000343687 ENSE00003688526
4585      42297244 ENSG00000160179       ENST00000343687 ENSE00001384388
4586      42297244 ENSG00000160179       ENST00000398437 ENSE00003523195
4587      42297244 ENSG00000160179       ENST00000398437 ENSE00003543273
4588      42297244 ENSG00000160179       ENST00000398437 ENSE00003477889
4589      42297244 ENSG00000160179       ENST00000398437 ENSE00003547441
4590      42297244 ENSG00000160179       ENST00000398437 ENSE00003689634
4591      42297244 ENSG00000160179       ENST00000398437 ENSE00003505582
4592      42297244 ENSG00000160179       ENST00000398437 ENSE00003544349
4593      42297244 ENSG00000160179       ENST00000398437 ENSE00003688085
4594      42297244 ENSG00000160179       ENST00000398437 ENSE00003670239
4595      42297244 ENSG00000160179       ENST00000398437 ENSE00003496464
4596      42297244 ENSG00000160179       ENST00000398437 ENSE00003674298
4597      42297244 ENSG00000160179       ENST00000398437 ENSE00003688526
4598      42297244 ENSG00000160179       ENST00000398437 ENSE00003586318
4599      42297244 ENSG00000160179       ENST00000398437 ENSE00001109772
4600      42297244 ENSG00000160179       ENST00000398437 ENSE00001533178
4601      42297244 ENSG00000160179       ENST00000398437 ENSE00001109773
4602      42297244 ENSG00000160179       ENST00000472587 ENSE00003619236
4603      42297244 ENSG00000160179       ENST00000472587 ENSE00003502441
4604      42297244 ENSG00000160179       ENST00000472587 ENSE00003634060
4605      42297244 ENSG00000160179       ENST00000472587 ENSE00003665058
4606      42297244 ENSG00000160179       ENST00000472587 ENSE00003640764
4607      42297244 ENSG00000160179       ENST00000472587 ENSE00003624267
4608      42297244 ENSG00000160179       ENST00000472587 ENSE00003531087
4609      42297244 ENSG00000160179       ENST00000472587 ENSE00003605681
4610      42297244 ENSG00000160179       ENST00000472587 ENSE00003499091
4611      42297244 ENSG00000160179       ENST00000472587 ENSE00001866954
4612      42297244 ENSG00000160179       ENST00000472587 ENSE00003525583
4613      42297244 ENSG00000160179       ENST00000467818 ENSE00003619236
4614      42297244 ENSG00000160179       ENST00000467818 ENSE00003502441
4615      42297244 ENSG00000160179       ENST00000467818 ENSE00001887535
4616      42297244 ENSG00000160179       ENST00000467818 ENSE00001837452
4617      42297244 ENSG00000160179       ENST00000496783 ENSE00003640764
4618      42297244 ENSG00000160179       ENST00000496783 ENSE00003624267
4619      42297244 ENSG00000160179       ENST00000496783 ENSE00003531087
4620      42297244 ENSG00000160179       ENST00000496783 ENSE00001827552
4621      42297244 ENSG00000160179       ENST00000496783 ENSE00001956350
4622      42297244 ENSG00000160179       ENST00000496783 ENSE00001884617
4623      42221286 ENSG00000223262       ENST00000411330 ENSE00001591148
4624      42143453 ENSG00000177398       ENST00000400427 ENSE00001542828
4625      42143453 ENSG00000177398       ENST00000400427 ENSE00003536121
4626      42143453 ENSG00000177398       ENST00000400427 ENSE00002518687
4627      42143453 ENSG00000177398       ENST00000400427 ENSE00001586354
4628      42143453 ENSG00000177398       ENST00000400427 ENSE00003585837
4629      42143453 ENSG00000177398       ENST00000400427 ENSE00003668611
4630      42143453 ENSG00000177398       ENST00000400427 ENSE00003525841
4631      42143453 ENSG00000177398       ENST00000400427 ENSE00003498478
4632      42143453 ENSG00000177398       ENST00000400427 ENSE00001584873
4633      42143453 ENSG00000177398       ENST00000400427 ENSE00001581041
4634      42143453 ENSG00000177398       ENST00000400427 ENSE00001577883
4635      42143453 ENSG00000177398       ENST00000400427 ENSE00003465097
4636      42143453 ENSG00000177398       ENST00000400427 ENSE00001577541
4637      42143453 ENSG00000177398       ENST00000400427 ENSE00001581966
4638      42143453 ENSG00000177398       ENST00000400427 ENSE00003587798
4639      42143453 ENSG00000177398       ENST00000400427 ENSE00003528559
4640      42143453 ENSG00000177398       ENST00000400427 ENSE00003635733
4641      42143453 ENSG00000177398       ENST00000400427 ENSE00003668796
4642      42143453 ENSG00000177398       ENST00000400427 ENSE00003474859
4643      42143453 ENSG00000177398       ENST00000400427 ENSE00003600545
4644      42143453 ENSG00000177398       ENST00000400427 ENSE00003522321
4645      42143453 ENSG00000177398       ENST00000400427 ENSE00001277398
4646      42143453 ENSG00000177398       ENST00000400424 ENSE00001542828
4647      42143453 ENSG00000177398       ENST00000400424 ENSE00003536121
4648      42143453 ENSG00000177398       ENST00000400424 ENSE00002518687
4649      42143453 ENSG00000177398       ENST00000400424 ENSE00001586354
4650      42143453 ENSG00000177398       ENST00000400424 ENSE00003585837
4651      42143453 ENSG00000177398       ENST00000400424 ENSE00003668611
4652      42143453 ENSG00000177398       ENST00000400424 ENSE00003525841
4653      42143453 ENSG00000177398       ENST00000400424 ENSE00003498478
4654      42143453 ENSG00000177398       ENST00000400424 ENSE00001584873
4655      42143453 ENSG00000177398       ENST00000400424 ENSE00001581041
4656      42143453 ENSG00000177398       ENST00000400424 ENSE00003465097
4657      42143453 ENSG00000177398       ENST00000400424 ENSE00001577541
4658      42143453 ENSG00000177398       ENST00000400424 ENSE00001581966
4659      42143453 ENSG00000177398       ENST00000400424 ENSE00003587798
4660      42143453 ENSG00000177398       ENST00000400424 ENSE00003528559
4661      42143453 ENSG00000177398       ENST00000400424 ENSE00003635733
4662      42143453 ENSG00000177398       ENST00000400424 ENSE00003668796
4663      42143453 ENSG00000177398       ENST00000400424 ENSE00003474859
4664      42143453 ENSG00000177398       ENST00000400424 ENSE00003600545
4665      42143453 ENSG00000177398       ENST00000400424 ENSE00003522321
4666      42143453 ENSG00000177398       ENST00000400424 ENSE00001578165
4667      42143453 ENSG00000177398       ENST00000400424 ENSE00001583142
4668      42143453 ENSG00000177398       ENST00000400424 ENSE00003707129
4669      42143453 ENSG00000177398       ENST00000408989 ENSE00002518687
4670      42143453 ENSG00000177398       ENST00000408989 ENSE00001586354
4671      42143453 ENSG00000177398       ENST00000408989 ENSE00003585837
4672      42143453 ENSG00000177398       ENST00000408989 ENSE00003668611
4673      42143453 ENSG00000177398       ENST00000408989 ENSE00003525841
4674      42143453 ENSG00000177398       ENST00000408989 ENSE00003498478
4675      42143453 ENSG00000177398       ENST00000408989 ENSE00001584873
4676      42143453 ENSG00000177398       ENST00000408989 ENSE00001581041
4677      42143453 ENSG00000177398       ENST00000408989 ENSE00001577883
4678      42143453 ENSG00000177398       ENST00000408989 ENSE00003465097
4679      42143453 ENSG00000177398       ENST00000408989 ENSE00001577541
4680      42143453 ENSG00000177398       ENST00000408989 ENSE00001581966
4681      42143453 ENSG00000177398       ENST00000408989 ENSE00003587798
4682      42143453 ENSG00000177398       ENST00000408989 ENSE00003528559
4683      42143453 ENSG00000177398       ENST00000408989 ENSE00003635733
4684      42143453 ENSG00000177398       ENST00000408989 ENSE00003668796
4685      42143453 ENSG00000177398       ENST00000408989 ENSE00003474859
4686      42143453 ENSG00000177398       ENST00000408989 ENSE00003600545
4687      42143453 ENSG00000177398       ENST00000408989 ENSE00003522321
4688      42143453 ENSG00000177398       ENST00000408989 ENSE00001277398
4689      42143453 ENSG00000177398       ENST00000408989 ENSE00002470797
4690      42143453 ENSG00000177398       ENST00000408989 ENSE00003647204
4691      42143453 ENSG00000177398       ENST00000408910 ENSE00002518687
4692      42143453 ENSG00000177398       ENST00000408910 ENSE00001586354
4693      42143453 ENSG00000177398       ENST00000408910 ENSE00003585837
4694      42143453 ENSG00000177398       ENST00000408910 ENSE00003668611
4695      42143453 ENSG00000177398       ENST00000408910 ENSE00003525841
4696      42143453 ENSG00000177398       ENST00000408910 ENSE00003498478
4697      42143453 ENSG00000177398       ENST00000408910 ENSE00001584873
4698      42143453 ENSG00000177398       ENST00000408910 ENSE00001581041
4699      42143453 ENSG00000177398       ENST00000408910 ENSE00003465097
4700      42143453 ENSG00000177398       ENST00000408910 ENSE00001577541
4701      42143453 ENSG00000177398       ENST00000408910 ENSE00001581966
4702      42143453 ENSG00000177398       ENST00000408910 ENSE00003587798
4703      42143453 ENSG00000177398       ENST00000408910 ENSE00003528559
4704      42143453 ENSG00000177398       ENST00000408910 ENSE00003635733
4705      42143453 ENSG00000177398       ENST00000408910 ENSE00003668796
4706      42143453 ENSG00000177398       ENST00000408910 ENSE00003474859
4707      42143453 ENSG00000177398       ENST00000408910 ENSE00003600545
4708      42143453 ENSG00000177398       ENST00000408910 ENSE00003522321
4709      42143453 ENSG00000177398       ENST00000408910 ENSE00001277398
4710      42143453 ENSG00000177398       ENST00000408910 ENSE00001578165
4711      42143453 ENSG00000177398       ENST00000408910 ENSE00001583142
4712      42143453 ENSG00000177398       ENST00000408910 ENSE00002470797
4713      42143453 ENSG00000177398       ENST00000408910 ENSE00003647204
4714      42143453 ENSG00000177398       ENST00000491559 ENSE00002505276
4715      42143453 ENSG00000177398       ENST00000491559 ENSE00001542783
4716      42143453 ENSG00000177398       ENST00000491559 ENSE00003609822
4717      42143453 ENSG00000177398       ENST00000491559 ENSE00001901075
4718      42143453 ENSG00000177398       ENST00000491559 ENSE00003597234
4719      42143453 ENSG00000177398       ENST00000491559 ENSE00003520039
4720      42143453 ENSG00000177398       ENST00000491559 ENSE00003488068
4721      42143453 ENSG00000177398       ENST00000491559 ENSE00001485061
4722      42143453 ENSG00000177398       ENST00000468982 ENSE00002505276
4723      42143453 ENSG00000177398       ENST00000468982 ENSE00003520039
4724      42143453 ENSG00000177398       ENST00000468982 ENSE00003488068
4725      42143453 ENSG00000177398       ENST00000468982 ENSE00001485061
4726      42143453 ENSG00000177398       ENST00000468982 ENSE00001485058
4727      42143453 ENSG00000177398       ENST00000468982 ENSE00003597838
4728      42143453 ENSG00000177398       ENST00000468982 ENSE00003640632
4729      42143453 ENSG00000177398       ENST00000497243 ENSE00003520039
4730      42143453 ENSG00000177398       ENST00000497243 ENSE00003488068
4731      42143453 ENSG00000177398       ENST00000497243 ENSE00001485061
4732      42143453 ENSG00000177398       ENST00000497243 ENSE00001896777
4733      42143453 ENSG00000177398       ENST00000497243 ENSE00003536552
4734      42143453 ENSG00000177398       ENST00000400421 ENSE00003585837
4735      42143453 ENSG00000177398       ENST00000400421 ENSE00003668611
4736      42143453 ENSG00000177398       ENST00000400421 ENSE00003525841
4737      42143453 ENSG00000177398       ENST00000400421 ENSE00002505276
4738      42143453 ENSG00000177398       ENST00000400421 ENSE00003488068
4739      42143453 ENSG00000177398       ENST00000400421 ENSE00001485061
4740      42143453 ENSG00000177398       ENST00000400421 ENSE00001821058
4741      42143453 ENSG00000177398       ENST00000466434 ENSE00003585837
4742      42143453 ENSG00000177398       ENST00000466434 ENSE00003668611
4743      42143453 ENSG00000177398       ENST00000466434 ENSE00002505276
4744      42143453 ENSG00000177398       ENST00000466434 ENSE00003520039
4745      42143453 ENSG00000177398       ENST00000466434 ENSE00003488068
4746      42143453 ENSG00000177398       ENST00000466434 ENSE00001485061
4747      42143453 ENSG00000177398       ENST00000466434 ENSE00003490293
4748      42143453 ENSG00000177398       ENST00000485357 ENSE00002505276
4749      42143453 ENSG00000177398       ENST00000485357 ENSE00003609822
4750      42143453 ENSG00000177398       ENST00000485357 ENSE00001901075
4751      42143453 ENSG00000177398       ENST00000485357 ENSE00003597234
4752      42143453 ENSG00000177398       ENST00000485357 ENSE00003520039
4753      42143453 ENSG00000177398       ENST00000485357 ENSE00003488068
4754      42143453 ENSG00000177398       ENST00000485357 ENSE00001485061
4755      42143453 ENSG00000177398       ENST00000475047 ENSE00002023923
4756      42143453 ENSG00000177398       ENST00000475047 ENSE00001868346
4757      42143453 ENSG00000177398       ENST00000475047 ENSE00003682856
4758      42143453 ENSG00000177398       ENST00000475047 ENSE00001485044
4759      42143453 ENSG00000177398       ENST00000484174 ENSE00001892816
4760      42143453 ENSG00000177398       ENST00000484174 ENSE00003681437
4761      42143453 ENSG00000177398       ENST00000484174 ENSE00001814905
4762      42143453 ENSG00000177398       ENST00000400423 ENSE00001277398
4763      42143453 ENSG00000177398       ENST00000400423 ENSE00001892816
4764      42143453 ENSG00000177398       ENST00000400423 ENSE00003681437
4765      42143453 ENSG00000177398       ENST00000400423 ENSE00003544834
4766      42143453 ENSG00000177398       ENST00000400423 ENSE00003681374
4767      42143453 ENSG00000177398       ENST00000400423 ENSE00003666364
4768      42143453 ENSG00000177398       ENST00000400423 ENSE00003566632
4769      42143453 ENSG00000177398       ENST00000400423 ENSE00003670819
4770      42143453 ENSG00000177398       ENST00000400423 ENSE00003538522
4771      42143453 ENSG00000177398       ENST00000484712 ENSE00003670819
4772      42143453 ENSG00000177398       ENST00000484712 ENSE00001920427
4773      42143453 ENSG00000177398       ENST00000484712 ENSE00001891712
4774      42143453 ENSG00000177398       ENST00000484712 ENSE00001914827
4775      42108534 ENSG00000184385       ENST00000329015 ENSE00001294612
4776      42108534 ENSG00000184385       ENST00000329015 ENSE00001302969
4777      42024924 ENSG00000237232       ENST00000412906 ENSE00001670019
4778      42024924 ENSG00000237232       ENST00000412906 ENSE00001700326
4779      42024924 ENSG00000237232       ENST00000455701 ENSE00001700326
4780      42024924 ENSG00000237232       ENST00000455701 ENSE00001631877
4781      42024924 ENSG00000237232       ENST00000429739 ENSE00001787899
4782      42024924 ENSG00000237232       ENST00000429739 ENSE00001799453
4783      42010387 ENSG00000173276       ENST00000398505 ENSE00001277818
4784      42010387 ENSG00000173276       ENST00000398505 ENSE00001485132
4785      42010387 ENSG00000173276       ENST00000398505 ENSE00001533381
4786      42010387 ENSG00000173276       ENST00000398505 ENSE00001533379
4787      42010387 ENSG00000173276       ENST00000310826 ENSE00001277818
4788      42010387 ENSG00000173276       ENST00000310826 ENSE00001485132
4789      42010387 ENSG00000173276       ENST00000310826 ENSE00001547265
4790      42010387 ENSG00000173276       ENST00000398499 ENSE00001485132
4791      42010387 ENSG00000173276       ENST00000398499 ENSE00001533370
4792      42010387 ENSG00000173276       ENST00000398499 ENSE00001533366
4793      42010387 ENSG00000173276       ENST00000398499 ENSE00001533365
4794      42010387 ENSG00000173276       ENST00000398511 ENSE00001533365
4795      42010387 ENSG00000173276       ENST00000398511 ENSE00001533420
4796      42010387 ENSG00000173276       ENST00000465968 ENSE00001485132
4797      42010387 ENSG00000173276       ENST00000465968 ENSE00001848772
4798      42010387 ENSG00000173276       ENST00000465968 ENSE00001929386
4799      42010387 ENSG00000173276       ENST00000425521 ENSE00001766639
4800      42010387 ENSG00000173276       ENST00000425521 ENSE00001627267
4801      42010387 ENSG00000173276       ENST00000449949 ENSE00001277818
4802      42010387 ENSG00000173276       ENST00000449949 ENSE00001485132
4803      42010387 ENSG00000173276       ENST00000449949 ENSE00001604033
4804      42010387 ENSG00000173276       ENST00000449949 ENSE00001533352
4805      42010387 ENSG00000173276       ENST00000398497 ENSE00001485132
4806      42010387 ENSG00000173276       ENST00000398497 ENSE00001533370
4807      42010387 ENSG00000173276       ENST00000398497 ENSE00001533352
4808      42010387 ENSG00000173276       ENST00000398497 ENSE00001533353
4809      41953890 ENSG00000157617       ENST00000449165 ENSE00001785903
4810      41953890 ENSG00000157617       ENST00000449165 ENSE00001786411
4811      41953890 ENSG00000157617       ENST00000449165 ENSE00001787500
4812      41953890 ENSG00000157617       ENST00000329623 ENSE00001787500
4813      41953890 ENSG00000157617       ENST00000329623 ENSE00001533423
4814      41953890 ENSG00000157617       ENST00000329623 ENSE00003602911
4815      41953890 ENSG00000157617       ENST00000329623 ENSE00003496666
4816      41953890 ENSG00000157617       ENST00000329623 ENSE00003609495
4817      41953890 ENSG00000157617       ENST00000329623 ENSE00003580315
4818      41953890 ENSG00000157617       ENST00000329623 ENSE00003478085
4819      41953890 ENSG00000157617       ENST00000329623 ENSE00003504516
4820      41953890 ENSG00000157617       ENST00000329623 ENSE00003664448
4821      41953890 ENSG00000157617       ENST00000329623 ENSE00003616990
4822      41953890 ENSG00000157617       ENST00000329623 ENSE00003550939
4823      41953890 ENSG00000157617       ENST00000329623 ENSE00003569108
4824      41953890 ENSG00000157617       ENST00000329623 ENSE00003663241
4825      41953890 ENSG00000157617       ENST00000380486 ENSE00001787500
4826      41953890 ENSG00000157617       ENST00000380486 ENSE00003496666
4827      41953890 ENSG00000157617       ENST00000380486 ENSE00003609495
4828      41953890 ENSG00000157617       ENST00000380486 ENSE00003580315
4829      41953890 ENSG00000157617       ENST00000380486 ENSE00003478085
4830      41953890 ENSG00000157617       ENST00000380486 ENSE00003504516
4831      41953890 ENSG00000157617       ENST00000380486 ENSE00003664448
4832      41953890 ENSG00000157617       ENST00000380486 ENSE00003616990
4833      41953890 ENSG00000157617       ENST00000380486 ENSE00003550939
4834      41953890 ENSG00000157617       ENST00000380486 ENSE00003569108
4835      41953890 ENSG00000157617       ENST00000380486 ENSE00003663241
4836      41953890 ENSG00000157617       ENST00000380486 ENSE00002277761
4837      41953890 ENSG00000157617       ENST00000380486 ENSE00002214448
4838      41953890 ENSG00000157617       ENST00000380486 ENSE00003687664
4839      41953890 ENSG00000157617       ENST00000482186 ENSE00001847271
4840      41953890 ENSG00000157617       ENST00000482186 ENSE00003569939
4841      41953890 ENSG00000157617       ENST00000482186 ENSE00003565020
4842      41953890 ENSG00000157617       ENST00000482186 ENSE00003533907
4843      41953890 ENSG00000157617       ENST00000482186 ENSE00003545102
4844      41953890 ENSG00000157617       ENST00000482186 ENSE00001915842
4845      41953890 ENSG00000157617       ENST00000482084 ENSE00003569939
4846      41953890 ENSG00000157617       ENST00000482084 ENSE00003565020
4847      41953890 ENSG00000157617       ENST00000482084 ENSE00003533907
4848      41953890 ENSG00000157617       ENST00000482084 ENSE00003545102
4849      41953890 ENSG00000157617       ENST00000482084 ENSE00001915842
4850      41953890 ENSG00000157617       ENST00000482084 ENSE00001818851
4851      41953890 ENSG00000157617       ENST00000482084 ENSE00003529889
4852      41953890 ENSG00000157617       ENST00000482084 ENSE00003505549
4853      41953890 ENSG00000157617       ENST00000482084 ENSE00003678311
4854      41953890 ENSG00000157617       ENST00000482084 ENSE00003459397
4855      41953890 ENSG00000157617       ENST00000482084 ENSE00003464825
4856      41953890 ENSG00000157617       ENST00000467074 ENSE00003569939
4857      41953890 ENSG00000157617       ENST00000467074 ENSE00003565020
4858      41953890 ENSG00000157617       ENST00000467074 ENSE00003529889
4859      41953890 ENSG00000157617       ENST00000467074 ENSE00003505549
4860      41953890 ENSG00000157617       ENST00000467074 ENSE00003678311
4861      41953890 ENSG00000157617       ENST00000467074 ENSE00003459397
4862      41953890 ENSG00000157617       ENST00000467074 ENSE00003464825
4863      41953890 ENSG00000157617       ENST00000467074 ENSE00001957453
4864      41953890 ENSG00000157617       ENST00000467074 ENSE00003586001
4865      41953890 ENSG00000157617       ENST00000467074 ENSE00003550439
4866      41953890 ENSG00000157617       ENST00000467074 ENSE00001904219
4867      41953890 ENSG00000157617       ENST00000490479 ENSE00003529889
4868      41953890 ENSG00000157617       ENST00000490479 ENSE00003505549
4869      41953890 ENSG00000157617       ENST00000490479 ENSE00003586001
4870      41953890 ENSG00000157617       ENST00000490479 ENSE00003550439
4871      41953890 ENSG00000157617       ENST00000490479 ENSE00002446084
4872      41953890 ENSG00000157617       ENST00000490479 ENSE00001832467
4873      41953890 ENSG00000157617       ENST00000478372 ENSE00001866501
4874      41953890 ENSG00000157617       ENST00000478372 ENSE00001820148
4875      41882300 ENSG00000251778       ENST00000515969 ENSE00002088246
4876      41879482 ENSG00000141956       ENST00000486812 ENSE00003475242
4877      41879482 ENSG00000141956       ENST00000486812 ENSE00003462670
4878      41879482 ENSG00000141956       ENST00000486812 ENSE00002371444
4879      41879482 ENSG00000141956       ENST00000486812 ENSE00001776279
4880      41879482 ENSG00000141956       ENST00000486812 ENSE00001876184
4881      41879482 ENSG00000141956       ENST00000486812 ENSE00003626137
4882      41879482 ENSG00000141956       ENST00000470586 ENSE00001875391
4883      41879482 ENSG00000141956       ENST00000470586 ENSE00003475242
4884      41879482 ENSG00000141956       ENST00000470586 ENSE00003462670
4885      41879482 ENSG00000141956       ENST00000470586 ENSE00002416115
4886      41879482 ENSG00000141956       ENST00000470586 ENSE00002397078
4887      41879482 ENSG00000141956       ENST00000470586 ENSE00002371444
4888      41879482 ENSG00000141956       ENST00000470586 ENSE00001776279
4889      41879482 ENSG00000141956       ENST00000447016 ENSE00002371444
4890      41879482 ENSG00000141956       ENST00000447016 ENSE00001776279
4891      41879482 ENSG00000141956       ENST00000447016 ENSE00001949076
4892      41879482 ENSG00000141956       ENST00000447016 ENSE00003594386
4893      41879482 ENSG00000141956       ENST00000447016 ENSE00001327189
4894      41879482 ENSG00000141956       ENST00000447016 ENSE00001320360
4895      41879482 ENSG00000141956       ENST00000447016 ENSE00000951413
4896      41879482 ENSG00000141956       ENST00000447016 ENSE00000951414
4897      41879482 ENSG00000141956       ENST00000447016 ENSE00000951415
4898      41879482 ENSG00000141956       ENST00000447016 ENSE00000951416
4899      41879482 ENSG00000141956       ENST00000447016 ENSE00003504505
4900      41879482 ENSG00000141956       ENST00000447016 ENSE00003509158
4901      41879482 ENSG00000141956       ENST00000447016 ENSE00003686098
4902      41879482 ENSG00000141956       ENST00000447016 ENSE00003676963
4903      41879482 ENSG00000141956       ENST00000447016 ENSE00003565640
4904      41879482 ENSG00000141956       ENST00000447016 ENSE00003461883
4905      41879482 ENSG00000141956       ENST00000447016 ENSE00003585719
4906      41879482 ENSG00000141956       ENST00000447016 ENSE00003638827
4907      41879482 ENSG00000141956       ENST00000447016 ENSE00003564993
4908      41879482 ENSG00000141956       ENST00000447016 ENSE00003542838
4909      41879482 ENSG00000141956       ENST00000447016 ENSE00003511333
4910      41879482 ENSG00000141956       ENST00000447016 ENSE00003580708
4911      41879482 ENSG00000141956       ENST00000447016 ENSE00003594566
4912      41879482 ENSG00000141956       ENST00000447016 ENSE00003667541
4913      41879482 ENSG00000141956       ENST00000447016 ENSE00003561259
4914      41879482 ENSG00000141956       ENST00000447016 ENSE00003557617
4915      41879482 ENSG00000141956       ENST00000422911 ENSE00001327189
4916      41879482 ENSG00000141956       ENST00000422911 ENSE00001320360
4917      41879482 ENSG00000141956       ENST00000422911 ENSE00000951413
4918      41879482 ENSG00000141956       ENST00000422911 ENSE00000951414
4919      41879482 ENSG00000141956       ENST00000422911 ENSE00000951415
4920      41879482 ENSG00000141956       ENST00000422911 ENSE00000951416
4921      41879482 ENSG00000141956       ENST00000422911 ENSE00003504505
4922      41879482 ENSG00000141956       ENST00000422911 ENSE00003509158
4923      41879482 ENSG00000141956       ENST00000422911 ENSE00003686098
4924      41879482 ENSG00000141956       ENST00000422911 ENSE00003676963
4925      41879482 ENSG00000141956       ENST00000422911 ENSE00003565640
4926      41879482 ENSG00000141956       ENST00000422911 ENSE00003461883
4927      41879482 ENSG00000141956       ENST00000422911 ENSE00003585719
4928      41879482 ENSG00000141956       ENST00000422911 ENSE00003638827
4929      41879482 ENSG00000141956       ENST00000422911 ENSE00003564993
4930      41879482 ENSG00000141956       ENST00000422911 ENSE00003542838
4931      41879482 ENSG00000141956       ENST00000422911 ENSE00003511333
4932      41879482 ENSG00000141956       ENST00000422911 ENSE00003580708
4933      41879482 ENSG00000141956       ENST00000422911 ENSE00003594566
4934      41879482 ENSG00000141956       ENST00000422911 ENSE00003667541
4935      41879482 ENSG00000141956       ENST00000422911 ENSE00003561259
4936      41879482 ENSG00000141956       ENST00000422911 ENSE00003635598
4937      41879482 ENSG00000141956       ENST00000422911 ENSE00003559079
4938      41879482 ENSG00000141956       ENST00000422911 ENSE00001485163
4939      41879482 ENSG00000141956       ENST00000422911 ENSE00003573987
4940      41879482 ENSG00000141956       ENST00000441787 ENSE00003475242
4941      41879482 ENSG00000141956       ENST00000441787 ENSE00003462670
4942      41879482 ENSG00000141956       ENST00000441787 ENSE00003594386
4943      41879482 ENSG00000141956       ENST00000441787 ENSE00001327189
4944      41879482 ENSG00000141956       ENST00000441787 ENSE00001320360
4945      41879482 ENSG00000141956       ENST00000441787 ENSE00000951413
4946      41879482 ENSG00000141956       ENST00000441787 ENSE00000951414
4947      41879482 ENSG00000141956       ENST00000441787 ENSE00000951415
4948      41879482 ENSG00000141956       ENST00000441787 ENSE00000951416
4949      41879482 ENSG00000141956       ENST00000441787 ENSE00003509158
4950      41879482 ENSG00000141956       ENST00000441787 ENSE00003686098
4951      41879482 ENSG00000141956       ENST00000441787 ENSE00003650421
4952      41879482 ENSG00000141956       ENST00000441787 ENSE00001616145
4953      41879482 ENSG00000141956       ENST00000441787 ENSE00001485162
4954      41879482 ENSG00000141956       ENST00000441787 ENSE00003460271
4955      41879482 ENSG00000141956       ENST00000441787 ENSE00003663073
4956      41879482 ENSG00000141956       ENST00000441787 ENSE00003643230
4957      41879482 ENSG00000141956       ENST00000441787 ENSE00003621160
4958      41879482 ENSG00000141956       ENST00000441787 ENSE00003667572
4959      41879482 ENSG00000141956       ENST00000441787 ENSE00003559252
4960      41879482 ENSG00000141956       ENST00000441787 ENSE00003528992
4961      41879482 ENSG00000141956       ENST00000441787 ENSE00003593338
4962      41879482 ENSG00000141956       ENST00000441787 ENSE00003559241
4963      41879482 ENSG00000141956       ENST00000441787 ENSE00003666999
4964      41879482 ENSG00000141956       ENST00000449395 ENSE00003475242
4965      41879482 ENSG00000141956       ENST00000449395 ENSE00003462670
4966      41879482 ENSG00000141956       ENST00000449395 ENSE00001327189
4967      41879482 ENSG00000141956       ENST00000449395 ENSE00001320360
4968      41879482 ENSG00000141956       ENST00000449395 ENSE00000951413
4969      41879482 ENSG00000141956       ENST00000449395 ENSE00000951414
4970      41879482 ENSG00000141956       ENST00000449395 ENSE00000951415
4971      41879482 ENSG00000141956       ENST00000449395 ENSE00000951416
4972      41879482 ENSG00000141956       ENST00000449395 ENSE00003504505
4973      41879482 ENSG00000141956       ENST00000449395 ENSE00003509158
4974      41879482 ENSG00000141956       ENST00000449395 ENSE00003686098
4975      41879482 ENSG00000141956       ENST00000449395 ENSE00003635598
4976      41879482 ENSG00000141956       ENST00000449395 ENSE00003559079
4977      41879482 ENSG00000141956       ENST00000449395 ENSE00001485163
4978      41879482 ENSG00000141956       ENST00000449395 ENSE00001485162
4979      41879482 ENSG00000141956       ENST00000449395 ENSE00003460271
4980      41879482 ENSG00000141956       ENST00000449395 ENSE00003663073
4981      41879482 ENSG00000141956       ENST00000449395 ENSE00003643230
4982      41879482 ENSG00000141956       ENST00000449395 ENSE00003621160
4983      41879482 ENSG00000141956       ENST00000449395 ENSE00003667572
4984      41879482 ENSG00000141956       ENST00000449395 ENSE00003559252
4985      41879482 ENSG00000141956       ENST00000449395 ENSE00003528992
4986      41879482 ENSG00000141956       ENST00000449395 ENSE00003593338
4987      41879482 ENSG00000141956       ENST00000449395 ENSE00003559241
4988      41879482 ENSG00000141956       ENST00000449395 ENSE00003666999
4989      41879482 ENSG00000141956       ENST00000398548 ENSE00001327189
4990      41879482 ENSG00000141956       ENST00000398548 ENSE00001320360
4991      41879482 ENSG00000141956       ENST00000398548 ENSE00000951413
4992      41879482 ENSG00000141956       ENST00000398548 ENSE00000951414
4993      41879482 ENSG00000141956       ENST00000398548 ENSE00000951415
4994      41879482 ENSG00000141956       ENST00000398548 ENSE00000951416
4995      41879482 ENSG00000141956       ENST00000398548 ENSE00003504505
4996      41879482 ENSG00000141956       ENST00000398548 ENSE00003509158
4997      41879482 ENSG00000141956       ENST00000398548 ENSE00003686098
4998      41879482 ENSG00000141956       ENST00000398548 ENSE00003676963
4999      41879482 ENSG00000141956       ENST00000398548 ENSE00003565640
5000      41879482 ENSG00000141956       ENST00000398548 ENSE00003461883
5001      41879482 ENSG00000141956       ENST00000398548 ENSE00003585719
5002      41879482 ENSG00000141956       ENST00000398548 ENSE00003638827
5003      41879482 ENSG00000141956       ENST00000398548 ENSE00003564993
5004      41879482 ENSG00000141956       ENST00000398548 ENSE00003542838
5005      41879482 ENSG00000141956       ENST00000398548 ENSE00003511333
5006      41879482 ENSG00000141956       ENST00000398548 ENSE00003580708
5007      41879482 ENSG00000141956       ENST00000398548 ENSE00003594566
5008      41879482 ENSG00000141956       ENST00000398548 ENSE00003667541
5009      41879482 ENSG00000141956       ENST00000398548 ENSE00003561259
5010      41879482 ENSG00000141956       ENST00000398548 ENSE00003635598
5011      41879482 ENSG00000141956       ENST00000398548 ENSE00003559079
5012      41879482 ENSG00000141956       ENST00000398548 ENSE00003573987
5013      41879482 ENSG00000141956       ENST00000433067 ENSE00002371444
5014      41879482 ENSG00000141956       ENST00000433067 ENSE00001776279
5015      41879482 ENSG00000141956       ENST00000433067 ENSE00001327189
5016      41879482 ENSG00000141956       ENST00000433067 ENSE00001320360
5017      41879482 ENSG00000141956       ENST00000433067 ENSE00000951413
5018      41879482 ENSG00000141956       ENST00000433067 ENSE00000951414
5019      41879482 ENSG00000141956       ENST00000433067 ENSE00000951415
5020      41879482 ENSG00000141956       ENST00000433067 ENSE00000951416
5021      41879482 ENSG00000141956       ENST00000433067 ENSE00003504505
5022      41879482 ENSG00000141956       ENST00000433067 ENSE00003509158
5023      41879482 ENSG00000141956       ENST00000433067 ENSE00003686098
5024      41879482 ENSG00000141956       ENST00000433067 ENSE00003676963
5025      41879482 ENSG00000141956       ENST00000433067 ENSE00003565640
5026      41879482 ENSG00000141956       ENST00000433067 ENSE00003461883
5027      41879482 ENSG00000141956       ENST00000433067 ENSE00003585719
5028      41879482 ENSG00000141956       ENST00000433067 ENSE00003638827
5029      41879482 ENSG00000141956       ENST00000433067 ENSE00003564993
5030      41879482 ENSG00000141956       ENST00000433067 ENSE00003542838
5031      41879482 ENSG00000141956       ENST00000433067 ENSE00003511333
5032      41879482 ENSG00000141956       ENST00000433067 ENSE00003580708
5033      41879482 ENSG00000141956       ENST00000433067 ENSE00003594566
5034      41879482 ENSG00000141956       ENST00000433067 ENSE00003667541
5035      41879482 ENSG00000141956       ENST00000433067 ENSE00003561259
5036      41879482 ENSG00000141956       ENST00000433067 ENSE00003557617
5037      41879482 ENSG00000141956       ENST00000433067 ENSE00003559079
5038      41879482 ENSG00000141956       ENST00000433067 ENSE00002728515
5039      41879482 ENSG00000141956       ENST00000433067 ENSE00002450021
5040      41879482 ENSG00000141956       ENST00000433067 ENSE00002535944
5041      41879482 ENSG00000141956       ENST00000433067 ENSE00002483656
5042      41879482 ENSG00000141956       ENST00000433067 ENSE00002523713
5043      41879482 ENSG00000141956       ENST00000433067 ENSE00002495427
5044      41879482 ENSG00000141956       ENST00000433067 ENSE00002471300
5045      41879482 ENSG00000141956       ENST00000433067 ENSE00001304247
5046      41879482 ENSG00000141956       ENST00000465955 ENSE00001898745
5047      41879482 ENSG00000141956       ENST00000465955 ENSE00001937389
5048      41879482 ENSG00000141956       ENST00000477633 ENSE00003462670
5049      41879482 ENSG00000141956       ENST00000477633 ENSE00001692014
5050      41879482 ENSG00000141956       ENST00000477633 ENSE00001954341
5051      41879482 ENSG00000141956       ENST00000495217 ENSE00003475242
5052      41879482 ENSG00000141956       ENST00000495217 ENSE00003528992
5053      41879482 ENSG00000141956       ENST00000495217 ENSE00003593338
5054      41879482 ENSG00000141956       ENST00000495217 ENSE00003559241
5055      41879482 ENSG00000141956       ENST00000495217 ENSE00001918204
5056      41879482 ENSG00000141956       ENST00000495217 ENSE00001862885
5057      41879482 ENSG00000141956       ENST00000491486 ENSE00003643230
5058      41879482 ENSG00000141956       ENST00000491486 ENSE00001934687
5059      41879482 ENSG00000141956       ENST00000491486 ENSE00003489919
5060      41879482 ENSG00000141956       ENST00000491486 ENSE00003525145
5061      41879482 ENSG00000141956       ENST00000491486 ENSE00001868807
5062      41879482 ENSG00000141956       ENST00000489661 ENSE00003489919
5063      41879482 ENSG00000141956       ENST00000489661 ENSE00001904962
5064      41879482 ENSG00000141956       ENST00000489661 ENSE00003599212
5065      41879482 ENSG00000141956       ENST00000489661 ENSE00003614758
5066      41879482 ENSG00000141956       ENST00000489661 ENSE00001956232
5067      41879482 ENSG00000141956       ENST00000496124 ENSE00003599212
5068      41879482 ENSG00000141956       ENST00000496124 ENSE00003614758
5069      41879482 ENSG00000141956       ENST00000496124 ENSE00001920832
5070      41879482 ENSG00000141956       ENST00000496124 ENSE00003629930
5071      41879482 ENSG00000141956       ENST00000496124 ENSE00002467731
5072      41879482 ENSG00000141956       ENST00000269844 ENSE00001327189
5073      41879482 ENSG00000141956       ENST00000269844 ENSE00001320360
5074      41879482 ENSG00000141956       ENST00000269844 ENSE00000951413
5075      41879482 ENSG00000141956       ENST00000269844 ENSE00000951414
5076      41879482 ENSG00000141956       ENST00000269844 ENSE00000951415
5077      41879482 ENSG00000141956       ENST00000269844 ENSE00000951416
5078      41879482 ENSG00000141956       ENST00000269844 ENSE00003504505
5079      41879482 ENSG00000141956       ENST00000269844 ENSE00003509158
5080      41879482 ENSG00000141956       ENST00000269844 ENSE00003686098
5081      41879482 ENSG00000141956       ENST00000269844 ENSE00003676963
5082      41879482 ENSG00000141956       ENST00000269844 ENSE00003565640
5083      41879482 ENSG00000141956       ENST00000269844 ENSE00003461883
5084      41879482 ENSG00000141956       ENST00000269844 ENSE00003585719
5085      41879482 ENSG00000141956       ENST00000269844 ENSE00003638827
5086      41879482 ENSG00000141956       ENST00000269844 ENSE00003564993
5087      41879482 ENSG00000141956       ENST00000269844 ENSE00003542838
5088      41879482 ENSG00000141956       ENST00000269844 ENSE00003511333
5089      41879482 ENSG00000141956       ENST00000269844 ENSE00003580708
5090      41879482 ENSG00000141956       ENST00000269844 ENSE00003594566
5091      41879482 ENSG00000141956       ENST00000269844 ENSE00003667541
5092      41879482 ENSG00000141956       ENST00000269844 ENSE00003561259
5093      41879482 ENSG00000141956       ENST00000269844 ENSE00003559079
5094      41879482 ENSG00000141956       ENST00000269844 ENSE00002728515
5095      41879482 ENSG00000141956       ENST00000269844 ENSE00002450021
5096      41879482 ENSG00000141956       ENST00000269844 ENSE00002535944
5097      41879482 ENSG00000141956       ENST00000269844 ENSE00002483656
5098      41879482 ENSG00000141956       ENST00000269844 ENSE00002523713
5099      41879482 ENSG00000141956       ENST00000269844 ENSE00002495427
5100      41879482 ENSG00000141956       ENST00000269844 ENSE00002471300
5101      41879482 ENSG00000141956       ENST00000269844 ENSE00001304247
5102      41879482 ENSG00000141956       ENST00000269844 ENSE00002312361
5103      41879482 ENSG00000141956       ENST00000447207 ENSE00002371444
5104      41879482 ENSG00000141956       ENST00000447207 ENSE00001327189
5105      41879482 ENSG00000141956       ENST00000447207 ENSE00001320360
5106      41879482 ENSG00000141956       ENST00000447207 ENSE00000951413
5107      41879482 ENSG00000141956       ENST00000447207 ENSE00000951414
5108      41879482 ENSG00000141956       ENST00000447207 ENSE00000951415
5109      41879482 ENSG00000141956       ENST00000447207 ENSE00000951416
5110      41879482 ENSG00000141956       ENST00000447207 ENSE00003504505
5111      41879482 ENSG00000141956       ENST00000447207 ENSE00003509158
5112      41879482 ENSG00000141956       ENST00000447207 ENSE00003686098
5113      41879482 ENSG00000141956       ENST00000447207 ENSE00003676963
5114      41879482 ENSG00000141956       ENST00000447207 ENSE00003565640
5115      41879482 ENSG00000141956       ENST00000447207 ENSE00003461883
5116      41879482 ENSG00000141956       ENST00000447207 ENSE00003585719
5117      41879482 ENSG00000141956       ENST00000447207 ENSE00003638827
5118      41879482 ENSG00000141956       ENST00000447207 ENSE00003564993
5119      41879482 ENSG00000141956       ENST00000447207 ENSE00003542838
5120      41879482 ENSG00000141956       ENST00000447207 ENSE00003511333
5121      41879482 ENSG00000141956       ENST00000447207 ENSE00003580708
5122      41879482 ENSG00000141956       ENST00000447207 ENSE00003594566
5123      41879482 ENSG00000141956       ENST00000447207 ENSE00003667541
5124      41879482 ENSG00000141956       ENST00000447207 ENSE00003561259
5125      41879482 ENSG00000141956       ENST00000447207 ENSE00003557617
5126      41879482 ENSG00000141956       ENST00000447207 ENSE00002243056
5127      41879482 ENSG00000141956       ENST00000447207 ENSE00002344156
5128      41877613 ENSG00000227698       ENST00000432411 ENSE00001721524
5129      41877613 ENSG00000227698       ENST00000432411 ENSE00001797065
5130      41877613 ENSG00000227698       ENST00000432411 ENSE00001739053
5131      41872054 ENSG00000236545       ENST00000458654 ENSE00001729372
5132      41872054 ENSG00000236545       ENST00000458654 ENSE00001673061
5133      41767106 ENSG00000183421       ENST00000332512 ENSE00002730798
5134      41767106 ENSG00000183421       ENST00000332512 ENSE00003507261
5135      41767106 ENSG00000183421       ENST00000332512 ENSE00002506003
5136      41767106 ENSG00000183421       ENST00000332512 ENSE00002514017
5137      41767106 ENSG00000183421       ENST00000332512 ENSE00002459022
5138      41767106 ENSG00000183421       ENST00000332512 ENSE00001314637
5139      41767106 ENSG00000183421       ENST00000332512 ENSE00001293079
5140      41767106 ENSG00000183421       ENST00000332512 ENSE00001813443
5141      41767106 ENSG00000183421       ENST00000352483 ENSE00003507261
5142      41767106 ENSG00000183421       ENST00000352483 ENSE00002506003
5143      41767106 ENSG00000183421       ENST00000352483 ENSE00002514017
5144      41767106 ENSG00000183421       ENST00000352483 ENSE00002459022
5145      41767106 ENSG00000183421       ENST00000352483 ENSE00001293079
5146      41767106 ENSG00000183421       ENST00000352483 ENSE00001813443
5147      41767106 ENSG00000183421       ENST00000352483 ENSE00003712753
5148      41767106 ENSG00000183421       ENST00000352483 ENSE00001312280
5149      41767106 ENSG00000183421       ENST00000352483 ENSE00001290290
5150      41746841 ENSG00000275166       ENST00000622292 ENSE00003738277
5151      41741308 ENSG00000236883       ENST00000423276 ENSE00001804657
5152      41741308 ENSG00000236883       ENST00000423276 ENSE00001669381
5153      41717580 ENSG00000232401       ENST00000432830 ENSE00001777924
5154      41717580 ENSG00000232401       ENST00000432830 ENSE00001623179
5155      41717580 ENSG00000232401       ENST00000432830 ENSE00001768569
5156      41715775 ENSG00000236384       ENST00000412102 ENSE00001757480
5157      41715775 ENSG00000236384       ENST00000412102 ENSE00001630053
5158      41715775 ENSG00000236384       ENST00000412102 ENSE00002070273
5159      41715775 ENSG00000236384       ENST00000412102 ENSE00001746656
5160      41715775 ENSG00000236384       ENST00000412102 ENSE00001723122
5161      41715775 ENSG00000236384       ENST00000412102 ENSE00001789833
5162      41715775 ENSG00000236384       ENST00000457881 ENSE00001723122
5163      41715775 ENSG00000236384       ENST00000457881 ENSE00001601971
5164      41715775 ENSG00000236384       ENST00000457881 ENSE00001615174
5165      41715775 ENSG00000236384       ENST00000457881 ENSE00001747672
5166      41715775 ENSG00000236384       ENST00000586552 ENSE00001630053
5167      41715775 ENSG00000236384       ENST00000586552 ENSE00002887471
5168      41715775 ENSG00000236384       ENST00000586552 ENSE00002878102
5169      41715775 ENSG00000236384       ENST00000589300 ENSE00001630053
5170      41715775 ENSG00000236384       ENST00000589300 ENSE00001746656
5171      41715775 ENSG00000236384       ENST00000589300 ENSE00001723122
5172      41715775 ENSG00000236384       ENST00000589300 ENSE00002887471
5173      41715775 ENSG00000236384       ENST00000589300 ENSE00002910569
5174      41715775 ENSG00000236384       ENST00000589300 ENSE00002906467
5175      41715775 ENSG00000236384       ENST00000589300 ENSE00002966689
5176      41697336 ENSG00000227702       ENST00000413718 ENSE00001672060
5177      41697336 ENSG00000227702       ENST00000413718 ENSE00001747712
5178      41697336 ENSG00000227702       ENST00000413718 ENSE00001704971
5179      41581319 ENSG00000223400       ENST00000418874 ENSE00001613842
5180      41581319 ENSG00000223400       ENST00000418874 ENSE00001647667
5181      41562958 ENSG00000232806       ENST00000415820 ENSE00001720802
5182      41562958 ENSG00000232806       ENST00000415820 ENSE00001665375
5183      41562958 ENSG00000232806       ENST00000415820 ENSE00001653250
5184      41539326 ENSG00000207503       ENST00000384772 ENSE00001807952
5185      41531116 ENSG00000184012       ENST00000332149 ENSE00001881208
5186      41531116 ENSG00000184012       ENST00000332149 ENSE00003502036
5187      41531116 ENSG00000184012       ENST00000332149 ENSE00003788834
5188      41531116 ENSG00000184012       ENST00000332149 ENSE00003500399
5189      41531116 ENSG00000184012       ENST00000332149 ENSE00001308618
5190      41531116 ENSG00000184012       ENST00000332149 ENSE00001328752
5191      41531116 ENSG00000184012       ENST00000332149 ENSE00001296879
5192      41531116 ENSG00000184012       ENST00000332149 ENSE00001319118
5193      41531116 ENSG00000184012       ENST00000332149 ENSE00001291248
5194      41531116 ENSG00000184012       ENST00000332149 ENSE00001310536
5195      41531116 ENSG00000184012       ENST00000332149 ENSE00001309041
5196      41531116 ENSG00000184012       ENST00000332149 ENSE00001324661
5197      41531116 ENSG00000184012       ENST00000332149 ENSE00003786558
5198      41531116 ENSG00000184012       ENST00000332149 ENSE00001919654
5199      41531116 ENSG00000184012       ENST00000488556 ENSE00001893309
5200      41531116 ENSG00000184012       ENST00000488556 ENSE00001872432
5201      41531116 ENSG00000184012       ENST00000458356 ENSE00003502036
5202      41531116 ENSG00000184012       ENST00000458356 ENSE00003788834
5203      41531116 ENSG00000184012       ENST00000458356 ENSE00003500399
5204      41531116 ENSG00000184012       ENST00000458356 ENSE00001308618
5205      41531116 ENSG00000184012       ENST00000458356 ENSE00001328752
5206      41531116 ENSG00000184012       ENST00000458356 ENSE00001296879
5207      41531116 ENSG00000184012       ENST00000458356 ENSE00001319118
5208      41531116 ENSG00000184012       ENST00000458356 ENSE00001291248
5209      41531116 ENSG00000184012       ENST00000458356 ENSE00001310536
5210      41531116 ENSG00000184012       ENST00000458356 ENSE00001309041
5211      41531116 ENSG00000184012       ENST00000458356 ENSE00001324661
5212      41531116 ENSG00000184012       ENST00000458356 ENSE00003786558
5213      41531116 ENSG00000184012       ENST00000458356 ENSE00001710402
5214      41531116 ENSG00000184012       ENST00000458356 ENSE00001651579
5215      41531116 ENSG00000184012       ENST00000454499 ENSE00003502036
5216      41531116 ENSG00000184012       ENST00000454499 ENSE00003788834
5217      41531116 ENSG00000184012       ENST00000454499 ENSE00003500399
5218      41531116 ENSG00000184012       ENST00000454499 ENSE00001308618
5219      41531116 ENSG00000184012       ENST00000454499 ENSE00001328752
5220      41531116 ENSG00000184012       ENST00000454499 ENSE00001296879
5221      41531116 ENSG00000184012       ENST00000454499 ENSE00001319118
5222      41531116 ENSG00000184012       ENST00000454499 ENSE00001291248
5223      41531116 ENSG00000184012       ENST00000454499 ENSE00001310536
5224      41531116 ENSG00000184012       ENST00000454499 ENSE00001309041
5225      41531116 ENSG00000184012       ENST00000454499 ENSE00001324661
5226      41531116 ENSG00000184012       ENST00000454499 ENSE00003786558
5227      41531116 ENSG00000184012       ENST00000454499 ENSE00001620762
5228      41531116 ENSG00000184012       ENST00000454499 ENSE00001620678
5229      41531116 ENSG00000184012       ENST00000469395 ENSE00001909048
5230      41531116 ENSG00000184012       ENST00000469395 ENSE00001950249
5231      41531116 ENSG00000184012       ENST00000424093 ENSE00003502036
5232      41531116 ENSG00000184012       ENST00000424093 ENSE00003788834
5233      41531116 ENSG00000184012       ENST00000424093 ENSE00003500399
5234      41531116 ENSG00000184012       ENST00000424093 ENSE00001328752
5235      41531116 ENSG00000184012       ENST00000424093 ENSE00001296879
5236      41531116 ENSG00000184012       ENST00000424093 ENSE00001319118
5237      41531116 ENSG00000184012       ENST00000424093 ENSE00002442487
5238      41531116 ENSG00000184012       ENST00000424093 ENSE00001665763
5239      41531116 ENSG00000184012       ENST00000497881 ENSE00001296629
5240      41531116 ENSG00000184012       ENST00000497881 ENSE00003609166
5241      41531116 ENSG00000184012       ENST00000497881 ENSE00001846183
5242      41531116 ENSG00000184012       ENST00000463138 ENSE00003609166
5243      41531116 ENSG00000184012       ENST00000463138 ENSE00001876229
5244      41531116 ENSG00000184012       ENST00000463138 ENSE00003467838
5245      41531116 ENSG00000184012       ENST00000463138 ENSE00001843326
5246      41531116 ENSG00000184012       ENST00000455813 ENSE00003502036
5247      41531116 ENSG00000184012       ENST00000455813 ENSE00003788834
5248      41531116 ENSG00000184012       ENST00000455813 ENSE00001686361
5249      41531116 ENSG00000184012       ENST00000489201 ENSE00001838338
5250      41531116 ENSG00000184012       ENST00000489201 ENSE00001948395
5251      41531116 ENSG00000184012       ENST00000398585 ENSE00003788834
5252      41531116 ENSG00000184012       ENST00000398585 ENSE00003500399
5253      41531116 ENSG00000184012       ENST00000398585 ENSE00001308618
5254      41531116 ENSG00000184012       ENST00000398585 ENSE00001328752
5255      41531116 ENSG00000184012       ENST00000398585 ENSE00001296879
5256      41531116 ENSG00000184012       ENST00000398585 ENSE00001319118
5257      41531116 ENSG00000184012       ENST00000398585 ENSE00001291248
5258      41531116 ENSG00000184012       ENST00000398585 ENSE00001310536
5259      41531116 ENSG00000184012       ENST00000398585 ENSE00001309041
5260      41531116 ENSG00000184012       ENST00000398585 ENSE00001324661
5261      41531116 ENSG00000184012       ENST00000398585 ENSE00003786558
5262      41531116 ENSG00000184012       ENST00000398585 ENSE00001894632
5263      41531116 ENSG00000184012       ENST00000398585 ENSE00003523611
5264      41531116 ENSG00000184012       ENST00000398585 ENSE00001485252
5265      41459214 ENSG00000157601       ENST00000490220 ENSE00001942734
5266      41459214 ENSG00000157601       ENST00000490220 ENSE00001534043
5267      41459214 ENSG00000157601       ENST00000490220 ENSE00001534041
5268      41459214 ENSG00000157601       ENST00000490220 ENSE00001534040
5269      41459214 ENSG00000157601       ENST00000490220 ENSE00001534038
5270      41459214 ENSG00000157601       ENST00000468506 ENSE00001952105
5271      41459214 ENSG00000157601       ENST00000468506 ENSE00001715229
5272      41459214 ENSG00000157601       ENST00000468506 ENSE00001776947
5273      41459214 ENSG00000157601       ENST00000468506 ENSE00001943029
5274      41459214 ENSG00000157601       ENST00000398600 ENSE00001534043
5275      41459214 ENSG00000157601       ENST00000398600 ENSE00001534041
5276      41459214 ENSG00000157601       ENST00000398600 ENSE00001534040
5277      41459214 ENSG00000157601       ENST00000398600 ENSE00001534038
5278      41459214 ENSG00000157601       ENST00000398600 ENSE00001534045
5279      41459214 ENSG00000157601       ENST00000398600 ENSE00001534036
5280      41459214 ENSG00000157601       ENST00000398600 ENSE00003795097
5281      41459214 ENSG00000157601       ENST00000398600 ENSE00002459117
5282      41459214 ENSG00000157601       ENST00000398600 ENSE00001033794
5283      41459214 ENSG00000157601       ENST00000398600 ENSE00003785790
5284      41459214 ENSG00000157601       ENST00000398600 ENSE00002440210
5285      41459214 ENSG00000157601       ENST00000398600 ENSE00001033785
5286      41459214 ENSG00000157601       ENST00000398600 ENSE00001033788
5287      41459214 ENSG00000157601       ENST00000398600 ENSE00001033793
5288      41459214 ENSG00000157601       ENST00000398600 ENSE00003640572
5289      41459214 ENSG00000157601       ENST00000398600 ENSE00001033780
5290      41459214 ENSG00000157601       ENST00000398600 ENSE00001225085
5291      41459214 ENSG00000157601       ENST00000398600 ENSE00001033791
5292      41459214 ENSG00000157601       ENST00000398600 ENSE00001533818
5293      41459214 ENSG00000157601       ENST00000413778 ENSE00001534041
5294      41459214 ENSG00000157601       ENST00000413778 ENSE00001534040
5295      41459214 ENSG00000157601       ENST00000413778 ENSE00001534038
5296      41459214 ENSG00000157601       ENST00000413778 ENSE00001715229
5297      41459214 ENSG00000157601       ENST00000413778 ENSE00001776947
5298      41459214 ENSG00000157601       ENST00000413778 ENSE00001534036
5299      41459214 ENSG00000157601       ENST00000413778 ENSE00001765492
5300      41459214 ENSG00000157601       ENST00000413778 ENSE00001752508
5301      41459214 ENSG00000157601       ENST00000413778 ENSE00001634889
5302      41459214 ENSG00000157601       ENST00000419044 ENSE00001534040
5303      41459214 ENSG00000157601       ENST00000419044 ENSE00001534038
5304      41459214 ENSG00000157601       ENST00000419044 ENSE00001534036
5305      41459214 ENSG00000157601       ENST00000419044 ENSE00001595799
5306      41459214 ENSG00000157601       ENST00000419044 ENSE00001724986
5307      41459214 ENSG00000157601       ENST00000398598 ENSE00001534040
5308      41459214 ENSG00000157601       ENST00000398598 ENSE00001534038
5309      41459214 ENSG00000157601       ENST00000398598 ENSE00001534036
5310      41459214 ENSG00000157601       ENST00000398598 ENSE00003795097
5311      41459214 ENSG00000157601       ENST00000398598 ENSE00002459117
5312      41459214 ENSG00000157601       ENST00000398598 ENSE00001033794
5313      41459214 ENSG00000157601       ENST00000398598 ENSE00003785790
5314      41459214 ENSG00000157601       ENST00000398598 ENSE00002440210
5315      41459214 ENSG00000157601       ENST00000398598 ENSE00001033785
5316      41459214 ENSG00000157601       ENST00000398598 ENSE00001033788
5317      41459214 ENSG00000157601       ENST00000398598 ENSE00001033793
5318      41459214 ENSG00000157601       ENST00000398598 ENSE00003640572
5319      41459214 ENSG00000157601       ENST00000398598 ENSE00001033780
5320      41459214 ENSG00000157601       ENST00000398598 ENSE00001225085
5321      41459214 ENSG00000157601       ENST00000398598 ENSE00001033791
5322      41459214 ENSG00000157601       ENST00000398598 ENSE00001533818
5323      41459214 ENSG00000157601       ENST00000398598 ENSE00001784904
5324      41459214 ENSG00000157601       ENST00000424365 ENSE00001534038
5325      41459214 ENSG00000157601       ENST00000424365 ENSE00001534036
5326      41459214 ENSG00000157601       ENST00000424365 ENSE00002459117
5327      41459214 ENSG00000157601       ENST00000424365 ENSE00001033794
5328      41459214 ENSG00000157601       ENST00000424365 ENSE00003785790
5329      41459214 ENSG00000157601       ENST00000424365 ENSE00001752508
5330      41459214 ENSG00000157601       ENST00000424365 ENSE00001689686
5331      41459214 ENSG00000157601       ENST00000484465 ENSE00001930931
5332      41459214 ENSG00000157601       ENST00000484465 ENSE00001948624
5333      41459214 ENSG00000157601       ENST00000417963 ENSE00001534038
5334      41459214 ENSG00000157601       ENST00000417963 ENSE00001534036
5335      41459214 ENSG00000157601       ENST00000417963 ENSE00003795097
5336      41459214 ENSG00000157601       ENST00000417963 ENSE00002459117
5337      41459214 ENSG00000157601       ENST00000417963 ENSE00001033794
5338      41459214 ENSG00000157601       ENST00000417963 ENSE00003785790
5339      41459214 ENSG00000157601       ENST00000417963 ENSE00001663814
5340      41459214 ENSG00000157601       ENST00000417963 ENSE00002480631
5341      41459214 ENSG00000157601       ENST00000441677 ENSE00001534040
5342      41459214 ENSG00000157601       ENST00000441677 ENSE00001534038
5343      41459214 ENSG00000157601       ENST00000441677 ENSE00001534036
5344      41459214 ENSG00000157601       ENST00000441677 ENSE00001752508
5345      41459214 ENSG00000157601       ENST00000441677 ENSE00001746505
5346      41459214 ENSG00000157601       ENST00000441677 ENSE00002494256
5347      41459214 ENSG00000157601       ENST00000478268 ENSE00001906621
5348      41459214 ENSG00000157601       ENST00000478268 ENSE00001843747
5349      41459214 ENSG00000157601       ENST00000427464 ENSE00001534036
5350      41459214 ENSG00000157601       ENST00000427464 ENSE00003795097
5351      41459214 ENSG00000157601       ENST00000427464 ENSE00001788494
5352      41459214 ENSG00000157601       ENST00000288383 ENSE00001033794
5353      41459214 ENSG00000157601       ENST00000288383 ENSE00003785790
5354      41459214 ENSG00000157601       ENST00000288383 ENSE00002440210
5355      41459214 ENSG00000157601       ENST00000288383 ENSE00001033785
5356      41459214 ENSG00000157601       ENST00000288383 ENSE00001033788
5357      41459214 ENSG00000157601       ENST00000288383 ENSE00001033793
5358      41459214 ENSG00000157601       ENST00000288383 ENSE00003640572
5359      41459214 ENSG00000157601       ENST00000288383 ENSE00001033780
5360      41459214 ENSG00000157601       ENST00000288383 ENSE00001225085
5361      41459214 ENSG00000157601       ENST00000288383 ENSE00001033791
5362      41459214 ENSG00000157601       ENST00000288383 ENSE00001533818
5363      41459214 ENSG00000157601       ENST00000288383 ENSE00001533821
5364      41459214 ENSG00000157601       ENST00000288383 ENSE00001533820
5365      41459214 ENSG00000157601       ENST00000467510 ENSE00001930325
5366      41459214 ENSG00000157601       ENST00000467510 ENSE00001892183
5367      41459214 ENSG00000157601       ENST00000486275 ENSE00001926086
5368      41459214 ENSG00000157601       ENST00000486275 ENSE00003691836
5369      41459214 ENSG00000157601       ENST00000486275 ENSE00001928216
5370      41459214 ENSG00000157601       ENST00000491110 ENSE00001821897
5371      41459214 ENSG00000157601       ENST00000491110 ENSE00001931053
5372      41459214 ENSG00000157601       ENST00000455164 ENSE00001534038
5373      41459214 ENSG00000157601       ENST00000455164 ENSE00003795097
5374      41459214 ENSG00000157601       ENST00000455164 ENSE00002459117
5375      41459214 ENSG00000157601       ENST00000455164 ENSE00001033794
5376      41459214 ENSG00000157601       ENST00000455164 ENSE00003785790
5377      41459214 ENSG00000157601       ENST00000455164 ENSE00002440210
5378      41459214 ENSG00000157601       ENST00000455164 ENSE00001033785
5379      41459214 ENSG00000157601       ENST00000455164 ENSE00001033788
5380      41459214 ENSG00000157601       ENST00000455164 ENSE00001033793
5381      41459214 ENSG00000157601       ENST00000455164 ENSE00003640572
5382      41459214 ENSG00000157601       ENST00000455164 ENSE00001033780
5383      41459214 ENSG00000157601       ENST00000455164 ENSE00001225085
5384      41459214 ENSG00000157601       ENST00000455164 ENSE00001033791
5385      41459214 ENSG00000157601       ENST00000455164 ENSE00002290682
5386      41459214 ENSG00000157601       ENST00000455164 ENSE00001292698
5387      41459214 ENSG00000157601       ENST00000619682 ENSE00003795097
5388      41459214 ENSG00000157601       ENST00000619682 ENSE00002459117
5389      41459214 ENSG00000157601       ENST00000619682 ENSE00001033794
5390      41459214 ENSG00000157601       ENST00000619682 ENSE00003785790
5391      41459214 ENSG00000157601       ENST00000619682 ENSE00002440210
5392      41459214 ENSG00000157601       ENST00000619682 ENSE00001033785
5393      41459214 ENSG00000157601       ENST00000619682 ENSE00001033788
5394      41459214 ENSG00000157601       ENST00000619682 ENSE00001033793
5395      41459214 ENSG00000157601       ENST00000619682 ENSE00003640572
5396      41459214 ENSG00000157601       ENST00000619682 ENSE00003754697
5397      41445708 ENSG00000228318       ENST00000411427 ENSE00003718873
5398      41445708 ENSG00000228318       ENST00000411427 ENSE00001774186
5399      41445708 ENSG00000228318       ENST00000411427 ENSE00001786815
5400      41409390 ENSG00000183486       ENST00000330714 ENSE00001890231
5401      41409390 ENSG00000183486       ENST00000330714 ENSE00001290756
5402      41409390 ENSG00000183486       ENST00000330714 ENSE00002502168
5403      41409390 ENSG00000183486       ENST00000330714 ENSE00001306785
5404      41409390 ENSG00000183486       ENST00000330714 ENSE00001328894
5405      41409390 ENSG00000183486       ENST00000330714 ENSE00002506138
5406      41409390 ENSG00000183486       ENST00000330714 ENSE00003670439
5407      41409390 ENSG00000183486       ENST00000330714 ENSE00003625443
5408      41409390 ENSG00000183486       ENST00000330714 ENSE00003659722
5409      41409390 ENSG00000183486       ENST00000330714 ENSE00003461072
5410      41409390 ENSG00000183486       ENST00000330714 ENSE00003486071
5411      41409390 ENSG00000183486       ENST00000330714 ENSE00003483351
5412      41409390 ENSG00000183486       ENST00000330714 ENSE00003494762
5413      41409390 ENSG00000183486       ENST00000330714 ENSE00003548437
5414      41409390 ENSG00000183486       ENST00000436410 ENSE00001290756
5415      41409390 ENSG00000183486       ENST00000436410 ENSE00001800362
5416      41409390 ENSG00000183486       ENST00000436410 ENSE00001662455
5417      41409390 ENSG00000183486       ENST00000436410 ENSE00001665952
5418      41409390 ENSG00000183486       ENST00000435611 ENSE00001290756
5419      41409390 ENSG00000183486       ENST00000435611 ENSE00001649361
5420      41409390 ENSG00000183486       ENST00000435611 ENSE00001761564
5421      41409390 ENSG00000183486       ENST00000435611 ENSE00002461157
5422      41409390 ENSG00000183486       ENST00000494252 ENSE00001813213
5423      41409390 ENSG00000183486       ENST00000494252 ENSE00001841427
5424      41409390 ENSG00000183486       ENST00000494252 ENSE00001852057
5425      41409390 ENSG00000183486       ENST00000495892 ENSE00002208472
5426      41409390 ENSG00000183486       ENST00000495892 ENSE00002202195
5427      41409390 ENSG00000183486       ENST00000416447 ENSE00001662455
5428      41409390 ENSG00000183486       ENST00000416447 ENSE00001673002
5429      41409390 ENSG00000183486       ENST00000416447 ENSE00001789052
5430      41409390 ENSG00000183486       ENST00000416447 ENSE00001752940
5431      41409390 ENSG00000183486       ENST00000418103 ENSE00001290756
5432      41409390 ENSG00000183486       ENST00000418103 ENSE00001726214
5433      41409390 ENSG00000183486       ENST00000418103 ENSE00001653112
5434      41409390 ENSG00000183486       ENST00000482953 ENSE00001888638
5435      41409390 ENSG00000183486       ENST00000482953 ENSE00003562160
5436      41409390 ENSG00000183486       ENST00000482953 ENSE00003581209
5437      41409390 ENSG00000183486       ENST00000482953 ENSE00003648119
5438      41409390 ENSG00000183486       ENST00000482953 ENSE00003513419
5439      41409390 ENSG00000183486       ENST00000482953 ENSE00003610392
5440      41409390 ENSG00000183486       ENST00000482953 ENSE00003527405
5441      41409390 ENSG00000183486       ENST00000482953 ENSE00003626175
5442      41409390 ENSG00000183486       ENST00000482953 ENSE00001923768
5443      41409390 ENSG00000183486       ENST00000496774 ENSE00003562160
5444      41409390 ENSG00000183486       ENST00000496774 ENSE00003581209
5445      41409390 ENSG00000183486       ENST00000496774 ENSE00003648119
5446      41409390 ENSG00000183486       ENST00000496774 ENSE00003513419
5447      41409390 ENSG00000183486       ENST00000496774 ENSE00001899985
5448      41409390 ENSG00000183486       ENST00000496774 ENSE00001887418
5449      41409390 ENSG00000183486       ENST00000493753 ENSE00003648119
5450      41409390 ENSG00000183486       ENST00000493753 ENSE00001944277
5451      41409390 ENSG00000183486       ENST00000493753 ENSE00001954134
5452      41409390 ENSG00000183486       ENST00000481838 ENSE00003610392
5453      41409390 ENSG00000183486       ENST00000481838 ENSE00003527405
5454      41409390 ENSG00000183486       ENST00000481838 ENSE00003626175
5455      41409390 ENSG00000183486       ENST00000481838 ENSE00001925533
5456      41409390 ENSG00000183486       ENST00000481838 ENSE00001902958
5457      41409390 ENSG00000183486       ENST00000474368 ENSE00001873282
5458      41409390 ENSG00000183486       ENST00000474368 ENSE00001848097
5459      41409390 ENSG00000183486       ENST00000398632 ENSE00003626175
5460      41409390 ENSG00000183486       ENST00000398632 ENSE00001645471
5461      41409390 ENSG00000183486       ENST00000398632 ENSE00003638781
5462      41357431 ENSG00000183844       ENST00000479810 ENSE00002101425
5463      41357431 ENSG00000183844       ENST00000479810 ENSE00001950129
5464      41357431 ENSG00000183844       ENST00000479810 ENSE00003534003
5465      41357431 ENSG00000183844       ENST00000479810 ENSE00003506040
5466      41357431 ENSG00000183844       ENST00000479810 ENSE00003486755
5467      41357431 ENSG00000183844       ENST00000479810 ENSE00003664877
5468      41357431 ENSG00000183844       ENST00000479810 ENSE00001879922
5469      41357431 ENSG00000183844       ENST00000479810 ENSE00003664777
5470      41357431 ENSG00000183844       ENST00000479810 ENSE00003644982
5471      41357431 ENSG00000183844       ENST00000479810 ENSE00003488124
5472      41357431 ENSG00000183844       ENST00000518236 ENSE00003534003
5473      41357431 ENSG00000183844       ENST00000518236 ENSE00003506040
5474      41357431 ENSG00000183844       ENST00000518236 ENSE00003486755
5475      41357431 ENSG00000183844       ENST00000518236 ENSE00001890535
5476      41357431 ENSG00000183844       ENST00000518236 ENSE00002115910
5477      41357431 ENSG00000183844       ENST00000357985 ENSE00001416667
5478      41357431 ENSG00000183844       ENST00000357985 ENSE00003691429
5479      41357431 ENSG00000183844       ENST00000357985 ENSE00003569115
5480      41357431 ENSG00000183844       ENST00000357985 ENSE00003640536
5481      41357431 ENSG00000183844       ENST00000357985 ENSE00003578761
5482      41357431 ENSG00000183844       ENST00000357985 ENSE00003481681
5483      41357431 ENSG00000183844       ENST00000357985 ENSE00003669104
5484      41357431 ENSG00000183844       ENST00000357985 ENSE00003555613
5485      41357431 ENSG00000183844       ENST00000398652 ENSE00003691429
5486      41357431 ENSG00000183844       ENST00000398652 ENSE00003569115
5487      41357431 ENSG00000183844       ENST00000398652 ENSE00003640536
5488      41357431 ENSG00000183844       ENST00000398652 ENSE00003578761
5489      41357431 ENSG00000183844       ENST00000398652 ENSE00003481681
5490      41357431 ENSG00000183844       ENST00000398652 ENSE00003669104
5491      41357431 ENSG00000183844       ENST00000398652 ENSE00003555613
5492      41357431 ENSG00000183844       ENST00000398652 ENSE00001954950
5493      41357431 ENSG00000183844       ENST00000398652 ENSE00001311260
5494      41357431 ENSG00000183844       ENST00000398647 ENSE00003569115
5495      41357431 ENSG00000183844       ENST00000398647 ENSE00003640536
5496      41357431 ENSG00000183844       ENST00000398647 ENSE00003578761
5497      41357431 ENSG00000183844       ENST00000398647 ENSE00003481681
5498      41357431 ENSG00000183844       ENST00000398647 ENSE00003669104
5499      41357431 ENSG00000183844       ENST00000398647 ENSE00003555613
5500      41357431 ENSG00000183844       ENST00000398647 ENSE00001954950
5501      41357431 ENSG00000183844       ENST00000398646 ENSE00003569115
5502      41357431 ENSG00000183844       ENST00000398646 ENSE00003640536
5503      41357431 ENSG00000183844       ENST00000398646 ENSE00003578761
5504      41357431 ENSG00000183844       ENST00000398646 ENSE00003481681
5505      41357431 ENSG00000183844       ENST00000398646 ENSE00003669104
5506      41357431 ENSG00000183844       ENST00000398646 ENSE00003555613
5507      41357431 ENSG00000183844       ENST00000398646 ENSE00001534120
5508      41282518 ENSG00000182240       ENST00000330333 ENSE00001304779
5509      41282518 ENSG00000182240       ENST00000330333 ENSE00003469846
5510      41282518 ENSG00000182240       ENST00000330333 ENSE00003645299
5511      41282518 ENSG00000182240       ENST00000330333 ENSE00003571071
5512      41282518 ENSG00000182240       ENST00000330333 ENSE00003499814
5513      41282518 ENSG00000182240       ENST00000330333 ENSE00003680958
5514      41282518 ENSG00000182240       ENST00000330333 ENSE00003650610
5515      41282518 ENSG00000182240       ENST00000330333 ENSE00003625781
5516      41282518 ENSG00000182240       ENST00000330333 ENSE00003637712
5517      41282518 ENSG00000182240       ENST00000328735 ENSE00001304779
5518      41282518 ENSG00000182240       ENST00000328735 ENSE00003469846
5519      41282518 ENSG00000182240       ENST00000328735 ENSE00003645299
5520      41282518 ENSG00000182240       ENST00000328735 ENSE00003571071
5521      41282518 ENSG00000182240       ENST00000328735 ENSE00003499814
5522      41282518 ENSG00000182240       ENST00000328735 ENSE00003680958
5523      41282518 ENSG00000182240       ENST00000328735 ENSE00003650610
5524      41282518 ENSG00000182240       ENST00000328735 ENSE00003625685
5525      41282518 ENSG00000182240       ENST00000347667 ENSE00001304779
5526      41282518 ENSG00000182240       ENST00000347667 ENSE00003469846
5527      41282518 ENSG00000182240       ENST00000347667 ENSE00003645299
5528      41282518 ENSG00000182240       ENST00000347667 ENSE00003571071
5529      41282518 ENSG00000182240       ENST00000347667 ENSE00003499814
5530      41282518 ENSG00000182240       ENST00000347667 ENSE00003680958
5531      41282518 ENSG00000182240       ENST00000347667 ENSE00003625781
5532      41282518 ENSG00000182240       ENST00000347667 ENSE00003704949
5533      41282518 ENSG00000182240       ENST00000470864 ENSE00001817363
5534      41282518 ENSG00000182240       ENST00000470864 ENSE00003544662
5535      41282518 ENSG00000182240       ENST00000470864 ENSE00003610690
5536      41282518 ENSG00000182240       ENST00000470864 ENSE00001861522
5537      41282518 ENSG00000182240       ENST00000487994 ENSE00003544662
5538      41282518 ENSG00000182240       ENST00000487994 ENSE00003610690
5539      41282518 ENSG00000182240       ENST00000487994 ENSE00001845787
5540      41282518 ENSG00000182240       ENST00000487994 ENSE00003463382
5541      41282518 ENSG00000182240       ENST00000487994 ENSE00003554135
5542      41282518 ENSG00000182240       ENST00000487994 ENSE00003491406
5543      41282518 ENSG00000182240       ENST00000487994 ENSE00003542620
5544      41282518 ENSG00000182240       ENST00000487994 ENSE00002455890
5545      41282518 ENSG00000182240       ENST00000491838 ENSE00003610690
5546      41282518 ENSG00000182240       ENST00000491838 ENSE00003463382
5547      41282518 ENSG00000182240       ENST00000491838 ENSE00001838045
5548      41282518 ENSG00000182240       ENST00000491838 ENSE00003506120
5549      41282518 ENSG00000182240       ENST00000491838 ENSE00001831325
5550      41282518 ENSG00000182240       ENST00000466122 ENSE00003610690
5551      41282518 ENSG00000182240       ENST00000466122 ENSE00003463382
5552      41282518 ENSG00000182240       ENST00000466122 ENSE00003554135
5553      41282518 ENSG00000182240       ENST00000466122 ENSE00003491406
5554      41282518 ENSG00000182240       ENST00000466122 ENSE00003542620
5555      41282518 ENSG00000182240       ENST00000466122 ENSE00003506120
5556      41282518 ENSG00000182240       ENST00000466122 ENSE00001833992
5557      41282518 ENSG00000182240       ENST00000466122 ENSE00003634739
5558      41282518 ENSG00000182240       ENST00000465326 ENSE00003610690
5559      41282518 ENSG00000182240       ENST00000465326 ENSE00003463382
5560      41282518 ENSG00000182240       ENST00000465326 ENSE00003554135
5561      41282518 ENSG00000182240       ENST00000465326 ENSE00003491406
5562      41282518 ENSG00000182240       ENST00000465326 ENSE00003542620
5563      41282518 ENSG00000182240       ENST00000465326 ENSE00003506120
5564      41282518 ENSG00000182240       ENST00000465326 ENSE00001850438
5565      41282518 ENSG00000182240       ENST00000463674 ENSE00003463382
5566      41282518 ENSG00000182240       ENST00000463674 ENSE00003554135
5567      41282518 ENSG00000182240       ENST00000463674 ENSE00003491406
5568      41282518 ENSG00000182240       ENST00000463674 ENSE00003542620
5569      41282518 ENSG00000182240       ENST00000463674 ENSE00001893797
5570      41282518 ENSG00000182240       ENST00000463674 ENSE00001953820
5571      41282518 ENSG00000182240       ENST00000475618 ENSE00003542620
5572      41282518 ENSG00000182240       ENST00000475618 ENSE00001930291
5573      41186788 ENSG00000225745       ENST00000430327 ENSE00002046002
5574      41186788 ENSG00000225745       ENST00000430327 ENSE00001802711
5575      41186788 ENSG00000225745       ENST00000430327 ENSE00002081182
5576      41186788 ENSG00000225745       ENST00000440221 ENSE00001802711
5577      41186788 ENSG00000225745       ENST00000440221 ENSE00002087631
5578      41186788 ENSG00000225745       ENST00000440221 ENSE00003463767
5579      41186788 ENSG00000225745       ENST00000440221 ENSE00001693577
5580      41186788 ENSG00000225745       ENST00000414699 ENSE00001752363
5581      41186788 ENSG00000225745       ENST00000414699 ENSE00001753386
5582      41186788 ENSG00000225745       ENST00000414699 ENSE00001690352
5583      41185239 ENSG00000280109       ENST00000623119 ENSE00003755206
5584      41185239 ENSG00000280109       ENST00000624999 ENSE00003758813
5585      41180626 ENSG00000224388       ENST00000433378 ENSE00001788165
5586      41180626 ENSG00000224388       ENST00000433378 ENSE00001752650
5587      41167629 ENSG00000263681       ENST00000582241 ENSE00002698395
5588      41148133 ENSG00000226496       ENST00000441268 ENSE00001756775
5589      41148133 ENSG00000226496       ENST00000441268 ENSE00001805493
5590      41148133 ENSG00000226496       ENST00000435493 ENSE00001658161
5591      41148133 ENSG00000226496       ENST00000435493 ENSE00001754320
5592      41148133 ENSG00000226496       ENST00000446910 ENSE00001730495
5593      41148133 ENSG00000226496       ENST00000446910 ENSE00001779579
5594      41148133 ENSG00000226496       ENST00000446910 ENSE00001594800
5595      40864473 ENSG00000230859       ENST00000456507 ENSE00001729497
5596      40847139 ENSG00000171587       ENST00000617870 ENSE00001174815
5597      40847139 ENSG00000171587       ENST00000617870 ENSE00001174811
5598      40847139 ENSG00000171587       ENST00000617870 ENSE00001174805
5599      40847139 ENSG00000171587       ENST00000617870 ENSE00001174802
5600      40847139 ENSG00000171587       ENST00000617870 ENSE00001303370
5601      40847139 ENSG00000171587       ENST00000617870 ENSE00001297675
5602      40847139 ENSG00000171587       ENST00000617870 ENSE00001299928
5603      40847139 ENSG00000171587       ENST00000617870 ENSE00001330905
5604      40847139 ENSG00000171587       ENST00000617870 ENSE00001301906
5605      40847139 ENSG00000171587       ENST00000617870 ENSE00001296378
5606      40847139 ENSG00000171587       ENST00000617870 ENSE00001318915
5607      40847139 ENSG00000171587       ENST00000617870 ENSE00001325865
5608      40847139 ENSG00000171587       ENST00000617870 ENSE00001305503
5609      40847139 ENSG00000171587       ENST00000617870 ENSE00001327150
5610      40847139 ENSG00000171587       ENST00000617870 ENSE00001306377
5611      40847139 ENSG00000171587       ENST00000617870 ENSE00001203423
5612      40847139 ENSG00000171587       ENST00000617870 ENSE00001175262
5613      40847139 ENSG00000171587       ENST00000617870 ENSE00001175254
5614      40847139 ENSG00000171587       ENST00000617870 ENSE00001175248
5615      40847139 ENSG00000171587       ENST00000617870 ENSE00001175244
5616      40847139 ENSG00000171587       ENST00000617870 ENSE00001175237
5617      40847139 ENSG00000171587       ENST00000617870 ENSE00001203412
5618      40847139 ENSG00000171587       ENST00000617870 ENSE00001290929
5619      40847139 ENSG00000171587       ENST00000617870 ENSE00002519798
5620      40847139 ENSG00000171587       ENST00000617870 ENSE00001301674
5621      40847139 ENSG00000171587       ENST00000617870 ENSE00001290276
5622      40847139 ENSG00000171587       ENST00000617870 ENSE00001317868
5623      40847139 ENSG00000171587       ENST00000617870 ENSE00001322604
5624      40847139 ENSG00000171587       ENST00000617870 ENSE00003731461
5625      40847139 ENSG00000171587       ENST00000617870 ENSE00003745904
5626      40847139 ENSG00000171587       ENST00000400454 ENSE00001543050
5627      40847139 ENSG00000171587       ENST00000400454 ENSE00001543045
5628      40847139 ENSG00000171587       ENST00000400454 ENSE00001300225
5629      40847139 ENSG00000171587       ENST00000400454 ENSE00001138378
5630      40847139 ENSG00000171587       ENST00000400454 ENSE00001174815
5631      40847139 ENSG00000171587       ENST00000400454 ENSE00001174811
5632      40847139 ENSG00000171587       ENST00000400454 ENSE00001174805
5633      40847139 ENSG00000171587       ENST00000400454 ENSE00001174802
5634      40847139 ENSG00000171587       ENST00000400454 ENSE00001303370
5635      40847139 ENSG00000171587       ENST00000400454 ENSE00001297675
5636      40847139 ENSG00000171587       ENST00000400454 ENSE00001299928
5637      40847139 ENSG00000171587       ENST00000400454 ENSE00001330905
5638      40847139 ENSG00000171587       ENST00000400454 ENSE00001301906
5639      40847139 ENSG00000171587       ENST00000400454 ENSE00001296378
5640      40847139 ENSG00000171587       ENST00000400454 ENSE00001318915
5641      40847139 ENSG00000171587       ENST00000400454 ENSE00001325865
5642      40847139 ENSG00000171587       ENST00000400454 ENSE00001305503
5643      40847139 ENSG00000171587       ENST00000400454 ENSE00001327150
5644      40847139 ENSG00000171587       ENST00000400454 ENSE00001306377
5645      40847139 ENSG00000171587       ENST00000400454 ENSE00001203423
5646      40847139 ENSG00000171587       ENST00000400454 ENSE00001175262
5647      40847139 ENSG00000171587       ENST00000400454 ENSE00001175254
5648      40847139 ENSG00000171587       ENST00000400454 ENSE00001175248
5649      40847139 ENSG00000171587       ENST00000400454 ENSE00001175244
5650      40847139 ENSG00000171587       ENST00000400454 ENSE00001175237
5651      40847139 ENSG00000171587       ENST00000400454 ENSE00001203412
5652      40847139 ENSG00000171587       ENST00000400454 ENSE00001290929
5653      40847139 ENSG00000171587       ENST00000400454 ENSE00002519798
5654      40847139 ENSG00000171587       ENST00000400454 ENSE00001301674
5655      40847139 ENSG00000171587       ENST00000400454 ENSE00001290276
5656      40847139 ENSG00000171587       ENST00000400454 ENSE00001317868
5657      40847139 ENSG00000171587       ENST00000400454 ENSE00001322604
5658      40847139 ENSG00000171587       ENST00000400454 ENSE00001542956
5659      40847139 ENSG00000171587       ENST00000404019 ENSE00001174811
5660      40847139 ENSG00000171587       ENST00000404019 ENSE00001174805
5661      40847139 ENSG00000171587       ENST00000404019 ENSE00001174802
5662      40847139 ENSG00000171587       ENST00000404019 ENSE00001303370
5663      40847139 ENSG00000171587       ENST00000404019 ENSE00001297675
5664      40847139 ENSG00000171587       ENST00000404019 ENSE00001299928
5665      40847139 ENSG00000171587       ENST00000404019 ENSE00001330905
5666      40847139 ENSG00000171587       ENST00000404019 ENSE00001301906
5667      40847139 ENSG00000171587       ENST00000404019 ENSE00001296378
5668      40847139 ENSG00000171587       ENST00000404019 ENSE00001318915
5669      40847139 ENSG00000171587       ENST00000404019 ENSE00001325865
5670      40847139 ENSG00000171587       ENST00000404019 ENSE00001305503
5671      40847139 ENSG00000171587       ENST00000404019 ENSE00001327150
5672      40847139 ENSG00000171587       ENST00000404019 ENSE00001306377
5673      40847139 ENSG00000171587       ENST00000404019 ENSE00001203423
5674      40847139 ENSG00000171587       ENST00000404019 ENSE00001175262
5675      40847139 ENSG00000171587       ENST00000404019 ENSE00001175254
5676      40847139 ENSG00000171587       ENST00000404019 ENSE00001175248
5677      40847139 ENSG00000171587       ENST00000404019 ENSE00001175244
5678      40847139 ENSG00000171587       ENST00000404019 ENSE00001175237
5679      40847139 ENSG00000171587       ENST00000404019 ENSE00001203412
5680      40847139 ENSG00000171587       ENST00000404019 ENSE00001290929
5681      40847139 ENSG00000171587       ENST00000404019 ENSE00002519798
5682      40847139 ENSG00000171587       ENST00000404019 ENSE00001301674
5683      40847139 ENSG00000171587       ENST00000404019 ENSE00001290276
5684      40847139 ENSG00000171587       ENST00000404019 ENSE00001317868
5685      40847139 ENSG00000171587       ENST00000404019 ENSE00001322604
5686      40847139 ENSG00000171587       ENST00000404019 ENSE00001712962
5687      40847139 ENSG00000171587       ENST00000404019 ENSE00001549129
5688      40630767 ENSG00000233756       ENST00000440363 ENSE00001764323
5689      40630767 ENSG00000233756       ENST00000440363 ENSE00001636286
5690      40630767 ENSG00000233756       ENST00000440363 ENSE00001753303
5691      40630767 ENSG00000233756       ENST00000440363 ENSE00001687067
5692      40630767 ENSG00000233756       ENST00000441910 ENSE00001764323
5693      40630767 ENSG00000233756       ENST00000441910 ENSE00001636286
5694      40630767 ENSG00000233756       ENST00000441910 ENSE00001753303
5695      40630767 ENSG00000233756       ENST00000441910 ENSE00001644795
5696      40513279 ENSG00000207147       ENST00000384418 ENSE00001499426
5697      40385358 ENSG00000235123       ENST00000444046 ENSE00001615334
5698      40385358 ENSG00000235123       ENST00000444046 ENSE00001795643
5699      40385358 ENSG00000235123       ENST00000455354 ENSE00001795643
5700      40385358 ENSG00000235123       ENST00000455354 ENSE00001661261
5701      40385358 ENSG00000235123       ENST00000422749 ENSE00001795643
5702      40385358 ENSG00000235123       ENST00000422749 ENSE00001684754
5703      40385358 ENSG00000235123       ENST00000422749 ENSE00001602383
5704      40385358 ENSG00000235123       ENST00000427451 ENSE00001615334
5705      40385358 ENSG00000235123       ENST00000427451 ENSE00001666308
5706      40385358 ENSG00000235123       ENST00000427451 ENSE00001795643
5707      40212431 ENSG00000263973       ENST00000585040 ENSE00002707623
5708      39929397 ENSG00000183036       ENST00000328619 ENSE00001938571
5709      39929397 ENSG00000183036       ENST00000328619 ENSE00003668461
5710      39929397 ENSG00000183036       ENST00000328619 ENSE00003509580
5711      39929397 ENSG00000183036       ENST00000462224 ENSE00003668461
5712      39929397 ENSG00000183036       ENST00000462224 ENSE00001297485
5713      39929397 ENSG00000183036       ENST00000462224 ENSE00001922702
5714      39929397 ENSG00000183036       ENST00000462224 ENSE00003577223
5715      39929397 ENSG00000183036       ENST00000468717 ENSE00003577223
5716      39929397 ENSG00000183036       ENST00000468717 ENSE00001909917
5717      39929397 ENSG00000183036       ENST00000468717 ENSE00001880963
5718      39929397 ENSG00000183036       ENST00000468717 ENSE00003620024
5719      39929397 ENSG00000183036       ENST00000467565 ENSE00003577223
5720      39929397 ENSG00000183036       ENST00000467565 ENSE00003620024
5721      39929397 ENSG00000183036       ENST00000467565 ENSE00001811785
5722      39802096 ENSG00000183067       ENST00000380588 ENSE00001769493
5723      39802096 ENSG00000183067       ENST00000380588 ENSE00001485574
5724      39802096 ENSG00000183067       ENST00000380588 ENSE00003604826
5725      39802096 ENSG00000183067       ENST00000380588 ENSE00003647311
5726      39802096 ENSG00000183067       ENST00000380588 ENSE00003495748
5727      39802096 ENSG00000183067       ENST00000380588 ENSE00003527190
5728      39802096 ENSG00000183067       ENST00000380588 ENSE00001290607
5729      39802096 ENSG00000183067       ENST00000380588 ENSE00003687559
5730      39802096 ENSG00000183067       ENST00000380588 ENSE00001328914
5731      39802096 ENSG00000183067       ENST00000479378 ENSE00001935100
5732      39802096 ENSG00000183067       ENST00000479378 ENSE00003581442
5733      39802096 ENSG00000183067       ENST00000479378 ENSE00003577494
5734      39802096 ENSG00000183067       ENST00000479378 ENSE00003612795
5735      39802096 ENSG00000183067       ENST00000479378 ENSE00003562860
5736      39802096 ENSG00000183067       ENST00000459922 ENSE00001917500
5737      39802096 ENSG00000183067       ENST00000459922 ENSE00003595409
5738      39802096 ENSG00000183067       ENST00000459922 ENSE00001863487
5739      39730680 ENSG00000231713       ENST00000457325 ENSE00001726936
5740      39730680 ENSG00000231713       ENST00000457325 ENSE00001751889
5741      39730680 ENSG00000231713       ENST00000457325 ENSE00001686404
5742      39730680 ENSG00000231713       ENST00000419826 ENSE00001793894
5743      39730680 ENSG00000231713       ENST00000419826 ENSE00001657959
5744      39726085 ENSG00000225330       ENST00000416555 ENSE00001719289
5745      39726085 ENSG00000225330       ENST00000416555 ENSE00001615190
5746      39726085 ENSG00000225330       ENST00000416555 ENSE00001782898
5747      39673137 ENSG00000183778       ENST00000380620 ENSE00001485659
5748      39673137 ENSG00000183778       ENST00000380620 ENSE00001485658
5749      39673137 ENSG00000183778       ENST00000380620 ENSE00001485657
5750      39673137 ENSG00000183778       ENST00000380620 ENSE00001485655
5751      39673137 ENSG00000183778       ENST00000380620 ENSE00003704093
5752      39673137 ENSG00000183778       ENST00000475838 ENSE00001943002
5753      39673137 ENSG00000183778       ENST00000475838 ENSE00001813619
5754      39673137 ENSG00000183778       ENST00000380618 ENSE00001485655
5755      39673137 ENSG00000183778       ENST00000380618 ENSE00001485640
5756      39673137 ENSG00000183778       ENST00000380618 ENSE00001485653
5757      39673137 ENSG00000183778       ENST00000398714 ENSE00003714074
5758      39673137 ENSG00000183778       ENST00000398714 ENSE00003754588
5759      39673137 ENSG00000183778       ENST00000615480 ENSE00001485655
5760      39673137 ENSG00000183778       ENST00000615480 ENSE00003719844
5761      39673137 ENSG00000183778       ENST00000615480 ENSE00003729165
5762      39673137 ENSG00000183778       ENST00000343118 ENSE00001485655
5763      39673137 ENSG00000183778       ENST00000343118 ENSE00003729165
5764      39673137 ENSG00000183778       ENST00000343118 ENSE00001534522
5765      39612821 ENSG00000184809       ENST00000489821 ENSE00001867995
5766      39612821 ENSG00000184809       ENST00000489821 ENSE00003757115
5767      39612821 ENSG00000184809       ENST00000380612 ENSE00003757115
5768      39612821 ENSG00000184809       ENST00000380612 ENSE00001811621
5769      39612821 ENSG00000184809       ENST00000380612 ENSE00001295606
5770      39612821 ENSG00000184809       ENST00000380604 ENSE00001811621
5771      39612821 ENSG00000184809       ENST00000380604 ENSE00001295606
5772      39612821 ENSG00000184809       ENST00000380604 ENSE00001718741
5773      39612821 ENSG00000184809       ENST00000329618 ENSE00001295606
5774      39612821 ENSG00000184809       ENST00000329618 ENSE00001316494
5775      39612821 ENSG00000184809       ENST00000329618 ENSE00001719814
5776      39529855 ENSG00000235012       ENST00000411867 ENSE00001734064
5777      39529855 ENSG00000235012       ENST00000411867 ENSE00001760174
5778      39515506 ENSG00000185437       ENST00000380637 ENSE00001485742
5779      39515506 ENSG00000185437       ENST00000380637 ENSE00003479361
5780      39515506 ENSG00000185437       ENST00000380637 ENSE00001325607
5781      39515506 ENSG00000185437       ENST00000380637 ENSE00001304806
5782      39515506 ENSG00000185437       ENST00000380637 ENSE00001291003
5783      39515506 ENSG00000185437       ENST00000380637 ENSE00001318388
5784      39515506 ENSG00000185437       ENST00000380637 ENSE00003616304
5785      39515506 ENSG00000185437       ENST00000380634 ENSE00003479361
5786      39515506 ENSG00000185437       ENST00000380634 ENSE00001325607
5787      39515506 ENSG00000185437       ENST00000380634 ENSE00001304806
5788      39515506 ENSG00000185437       ENST00000380634 ENSE00001291003
5789      39515506 ENSG00000185437       ENST00000380634 ENSE00001318388
5790      39515506 ENSG00000185437       ENST00000380634 ENSE00001485693
5791      39515506 ENSG00000185437       ENST00000380634 ENSE00001485691
5792      39515506 ENSG00000185437       ENST00000458295 ENSE00001325607
5793      39515506 ENSG00000185437       ENST00000458295 ENSE00001291003
5794      39515506 ENSG00000185437       ENST00000458295 ENSE00001318388
5795      39515506 ENSG00000185437       ENST00000458295 ENSE00001595390
5796      39515506 ENSG00000185437       ENST00000458295 ENSE00001746157
5797      39515506 ENSG00000185437       ENST00000458295 ENSE00001674565
5798      39515506 ENSG00000185437       ENST00000440288 ENSE00003479361
5799      39515506 ENSG00000185437       ENST00000440288 ENSE00001325607
5800      39515506 ENSG00000185437       ENST00000440288 ENSE00001304806
5801      39515506 ENSG00000185437       ENST00000440288 ENSE00001291003
5802      39515506 ENSG00000185437       ENST00000440288 ENSE00001674668
5803      39515506 ENSG00000185437       ENST00000440288 ENSE00001762104
5804      39515506 ENSG00000185437       ENST00000380631 ENSE00003479361
5805      39515506 ENSG00000185437       ENST00000380631 ENSE00001325607
5806      39515506 ENSG00000185437       ENST00000380631 ENSE00001304806
5807      39515506 ENSG00000185437       ENST00000380631 ENSE00001291003
5808      39515506 ENSG00000185437       ENST00000380631 ENSE00001318388
5809      39515506 ENSG00000185437       ENST00000380631 ENSE00001485686
5810      39515506 ENSG00000185437       ENST00000380631 ENSE00001485685
5811      39515506 ENSG00000185437       ENST00000333634 ENSE00001325607
5812      39515506 ENSG00000185437       ENST00000333634 ENSE00001304806
5813      39515506 ENSG00000185437       ENST00000333634 ENSE00001291003
5814      39515506 ENSG00000185437       ENST00000333634 ENSE00001318388
5815      39515506 ENSG00000185437       ENST00000333634 ENSE00003616304
5816      39515506 ENSG00000185437       ENST00000333634 ENSE00001290961
5817      39515506 ENSG00000185437       ENST00000333634 ENSE00003570356
5818      39515506 ENSG00000185437       ENST00000452550 ENSE00001325607
5819      39515506 ENSG00000185437       ENST00000452550 ENSE00001291003
5820      39515506 ENSG00000185437       ENST00000452550 ENSE00001318388
5821      39515506 ENSG00000185437       ENST00000452550 ENSE00003616304
5822      39515506 ENSG00000185437       ENST00000452550 ENSE00003570356
5823      39515506 ENSG00000185437       ENST00000452550 ENSE00002510123
5824      39515506 ENSG00000185437       ENST00000423596 ENSE00001304806
5825      39515506 ENSG00000185437       ENST00000423596 ENSE00001291003
5826      39515506 ENSG00000185437       ENST00000423596 ENSE00001628122
5827      39515506 ENSG00000185437       ENST00000423596 ENSE00001624370
5828      39515506 ENSG00000185437       ENST00000447939 ENSE00001304806
5829      39515506 ENSG00000185437       ENST00000447939 ENSE00003523025
5830      39491898 ENSG00000228349       ENST00000431743 ENSE00001693107
5831      39488760 ENSG00000235808       ENST00000450079 ENSE00001600829
5832      39447069 ENSG00000275523       ENST00000611656 ENSE00003745719
5833      39445805 ENSG00000157578       ENST00000288350 ENSE00001485938
5834      39445805 ENSG00000157578       ENST00000288350 ENSE00001380142
5835      39445805 ENSG00000157578       ENST00000288350 ENSE00001391688
5836      39445805 ENSG00000157578       ENST00000288350 ENSE00001367319
5837      39445805 ENSG00000157578       ENST00000288350 ENSE00003787481
5838      39445805 ENSG00000157578       ENST00000288350 ENSE00001033593
5839      39445805 ENSG00000157578       ENST00000288350 ENSE00003503789
5840      39445805 ENSG00000157578       ENST00000288350 ENSE00003491574
5841      39445805 ENSG00000157578       ENST00000288350 ENSE00003604959
5842      39445805 ENSG00000157578       ENST00000288350 ENSE00003608880
5843      39445805 ENSG00000157578       ENST00000288350 ENSE00001033603
5844      39445805 ENSG00000157578       ENST00000358268 ENSE00001391688
5845      39445805 ENSG00000157578       ENST00000358268 ENSE00001367319
5846      39445805 ENSG00000157578       ENST00000358268 ENSE00003787481
5847      39445805 ENSG00000157578       ENST00000358268 ENSE00001033593
5848      39445805 ENSG00000157578       ENST00000358268 ENSE00003503789
5849      39445805 ENSG00000157578       ENST00000358268 ENSE00003491574
5850      39445805 ENSG00000157578       ENST00000358268 ENSE00003604959
5851      39445805 ENSG00000157578       ENST00000358268 ENSE00003608880
5852      39445805 ENSG00000157578       ENST00000358268 ENSE00001402234
5853      39445805 ENSG00000157578       ENST00000358268 ENSE00001485810
5854      39445805 ENSG00000157578       ENST00000495240 ENSE00001848538
5855      39445805 ENSG00000157578       ENST00000495240 ENSE00003563475
5856      39445805 ENSG00000157578       ENST00000495240 ENSE00003610886
5857      39445805 ENSG00000157578       ENST00000495240 ENSE00001893402
5858      39445805 ENSG00000157578       ENST00000484878 ENSE00001380142
5859      39445805 ENSG00000157578       ENST00000484878 ENSE00001391688
5860      39445805 ENSG00000157578       ENST00000484878 ENSE00001613374
5861      39445805 ENSG00000157578       ENST00000484878 ENSE00001625544
5862      39445805 ENSG00000157578       ENST00000484878 ENSE00001848196
5863      39445805 ENSG00000157578       ENST00000484878 ENSE00001877157
5864      39445805 ENSG00000157578       ENST00000484878 ENSE00003595828
5865      39445805 ENSG00000157578       ENST00000484878 ENSE00003539949
5866      39445805 ENSG00000157578       ENST00000485895 ENSE00001485938
5867      39445805 ENSG00000157578       ENST00000485895 ENSE00001391688
5868      39445805 ENSG00000157578       ENST00000485895 ENSE00001367319
5869      39445805 ENSG00000157578       ENST00000485895 ENSE00003787481
5870      39445805 ENSG00000157578       ENST00000485895 ENSE00003697933
5871      39445805 ENSG00000157578       ENST00000491625 ENSE00001380142
5872      39445805 ENSG00000157578       ENST00000491625 ENSE00001367319
5873      39445805 ENSG00000157578       ENST00000491625 ENSE00001937581
5874      39445805 ENSG00000157578       ENST00000491625 ENSE00001928148
5875      39445805 ENSG00000157578       ENST00000459939 ENSE00001391688
5876      39445805 ENSG00000157578       ENST00000459939 ENSE00001367319
5877      39445805 ENSG00000157578       ENST00000459939 ENSE00001810020
5878      39445805 ENSG00000157578       ENST00000459939 ENSE00001932346
5879      39445805 ENSG00000157578       ENST00000490184 ENSE00001380142
5880      39445805 ENSG00000157578       ENST00000490184 ENSE00001391688
5881      39445805 ENSG00000157578       ENST00000490184 ENSE00001367319
5882      39445805 ENSG00000157578       ENST00000490184 ENSE00001822113
5883      39445805 ENSG00000157578       ENST00000490184 ENSE00001791403
5884      39445805 ENSG00000157578       ENST00000490184 ENSE00001864188
5885      39445805 ENSG00000157578       ENST00000490184 ENSE00001864965
5886      39445805 ENSG00000157578       ENST00000418018 ENSE00001380142
5887      39445805 ENSG00000157578       ENST00000418018 ENSE00001367319
5888      39445805 ENSG00000157578       ENST00000418018 ENSE00003787481
5889      39445805 ENSG00000157578       ENST00000418018 ENSE00001663615
5890      39445805 ENSG00000157578       ENST00000418018 ENSE00001698170
5891      39445805 ENSG00000157578       ENST00000418018 ENSE00001736929
5892      39445805 ENSG00000157578       ENST00000466954 ENSE00001380142
5893      39445805 ENSG00000157578       ENST00000466954 ENSE00001402234
5894      39445805 ENSG00000157578       ENST00000466954 ENSE00001698170
5895      39445805 ENSG00000157578       ENST00000466954 ENSE00001732749
5896      39445805 ENSG00000157578       ENST00000466954 ENSE00001834842
5897      39445805 ENSG00000157578       ENST00000448288 ENSE00001391688
5898      39445805 ENSG00000157578       ENST00000448288 ENSE00003787481
5899      39445805 ENSG00000157578       ENST00000448288 ENSE00001732749
5900      39445805 ENSG00000157578       ENST00000448288 ENSE00001643940
5901      39445805 ENSG00000157578       ENST00000434281 ENSE00001380142
5902      39445805 ENSG00000157578       ENST00000434281 ENSE00001367319
5903      39445805 ENSG00000157578       ENST00000434281 ENSE00001768871
5904      39445805 ENSG00000157578       ENST00000434281 ENSE00001649696
5905      39445805 ENSG00000157578       ENST00000438404 ENSE00001380142
5906      39445805 ENSG00000157578       ENST00000438404 ENSE00001367319
5907      39445805 ENSG00000157578       ENST00000438404 ENSE00001791403
5908      39445805 ENSG00000157578       ENST00000438404 ENSE00001650724
5909      39445805 ENSG00000157578       ENST00000438404 ENSE00001663055
5910      39445805 ENSG00000157578       ENST00000438404 ENSE00001688947
5911      39445805 ENSG00000157578       ENST00000411566 ENSE00001391688
5912      39445805 ENSG00000157578       ENST00000411566 ENSE00001367319
5913      39445805 ENSG00000157578       ENST00000411566 ENSE00001402234
5914      39445805 ENSG00000157578       ENST00000411566 ENSE00001684484
5915      39445805 ENSG00000157578       ENST00000468009 ENSE00001367319
5916      39445805 ENSG00000157578       ENST00000468009 ENSE00001954372
5917      39445805 ENSG00000157578       ENST00000468009 ENSE00003182186
5918      39445805 ENSG00000157578       ENST00000415863 ENSE00001380142
5919      39445805 ENSG00000157578       ENST00000415863 ENSE00001391688
5920      39445805 ENSG00000157578       ENST00000415863 ENSE00001367319
5921      39445805 ENSG00000157578       ENST00000415863 ENSE00001601398
5922      39445805 ENSG00000157578       ENST00000415863 ENSE00001655912
5923      39445805 ENSG00000157578       ENST00000415863 ENSE00001641048
5924      39445805 ENSG00000157578       ENST00000426783 ENSE00001391688
5925      39445805 ENSG00000157578       ENST00000426783 ENSE00001367319
5926      39445805 ENSG00000157578       ENST00000426783 ENSE00001625544
5927      39445805 ENSG00000157578       ENST00000426783 ENSE00001601398
5928      39445805 ENSG00000157578       ENST00000426783 ENSE00001655912
5929      39445805 ENSG00000157578       ENST00000426783 ENSE00001693947
5930      39445805 ENSG00000157578       ENST00000456017 ENSE00001380142
5931      39445805 ENSG00000157578       ENST00000456017 ENSE00001698170
5932      39445805 ENSG00000157578       ENST00000456017 ENSE00001732749
5933      39445805 ENSG00000157578       ENST00000456017 ENSE00001796700
5934      39445805 ENSG00000157578       ENST00000456017 ENSE00001645080
5935      39445805 ENSG00000157578       ENST00000451131 ENSE00001380142
5936      39445805 ENSG00000157578       ENST00000451131 ENSE00001391688
5937      39445805 ENSG00000157578       ENST00000451131 ENSE00001613374
5938      39445805 ENSG00000157578       ENST00000451131 ENSE00001791403
5939      39445805 ENSG00000157578       ENST00000451131 ENSE00001732749
5940      39445805 ENSG00000157578       ENST00000451131 ENSE00001605897
5941      39445805 ENSG00000157578       ENST00000480612 ENSE00001923238
5942      39445805 ENSG00000157578       ENST00000480612 ENSE00001863071
5943      39445805 ENSG00000157578       ENST00000380671 ENSE00001033593
5944      39445805 ENSG00000157578       ENST00000380671 ENSE00003503789
5945      39445805 ENSG00000157578       ENST00000380671 ENSE00003491574
5946      39445805 ENSG00000157578       ENST00000380671 ENSE00003604959
5947      39445805 ENSG00000157578       ENST00000380671 ENSE00003608880
5948      39445805 ENSG00000157578       ENST00000380671 ENSE00001033603
5949      39445805 ENSG00000157578       ENST00000380671 ENSE00003733938
5950      39428528 ENSG00000182093       ENST00000333781 ENSE00001950073
5951      39428528 ENSG00000182093       ENST00000333781 ENSE00003757548
5952      39428528 ENSG00000182093       ENST00000333781 ENSE00003651735
5953      39428528 ENSG00000182093       ENST00000333781 ENSE00003788222
5954      39428528 ENSG00000182093       ENST00000333781 ENSE00001486004
5955      39428528 ENSG00000182093       ENST00000623703 ENSE00003757548
5956      39428528 ENSG00000182093       ENST00000623703 ENSE00003651735
5957      39428528 ENSG00000182093       ENST00000623703 ENSE00003788222
5958      39428528 ENSG00000182093       ENST00000623703 ENSE00003758746
5959      39428528 ENSG00000182093       ENST00000623703 ENSE00003759192
5960      39428528 ENSG00000182093       ENST00000623703 ENSE00003757934
5961      39428528 ENSG00000182093       ENST00000623703 ENSE00003758866
5962      39428528 ENSG00000182093       ENST00000623703 ENSE00003758202
5963      39428528 ENSG00000182093       ENST00000623703 ENSE00003756719
5964      39428528 ENSG00000182093       ENST00000487869 ENSE00001864930
5965      39428528 ENSG00000182093       ENST00000487869 ENSE00003563129
5966      39428528 ENSG00000182093       ENST00000487869 ENSE00001939130
5967      39428528 ENSG00000182093       ENST00000471468 ENSE00001813007
5968      39428528 ENSG00000182093       ENST00000471468 ENSE00001848335
5969      39428528 ENSG00000182093       ENST00000398753 ENSE00003757548
5970      39428528 ENSG00000182093       ENST00000398753 ENSE00003651735
5971      39428528 ENSG00000182093       ENST00000398753 ENSE00003788222
5972      39428528 ENSG00000182093       ENST00000398753 ENSE00001534725
5973      39428528 ENSG00000182093       ENST00000398753 ENSE00001534714
5974      39428528 ENSG00000182093       ENST00000442773 ENSE00001673646
5975      39428528 ENSG00000182093       ENST00000442773 ENSE00001630418
5976      39428528 ENSG00000182093       ENST00000380713 ENSE00003757548
5977      39428528 ENSG00000182093       ENST00000380713 ENSE00003651735
5978      39428528 ENSG00000182093       ENST00000380713 ENSE00003788222
5979      39428528 ENSG00000182093       ENST00000380713 ENSE00001650643
5980      39428528 ENSG00000182093       ENST00000380708 ENSE00003757548
5981      39428528 ENSG00000182093       ENST00000380708 ENSE00003651735
5982      39428528 ENSG00000182093       ENST00000380708 ENSE00003788222
5983      39428528 ENSG00000182093       ENST00000380708 ENSE00001486004
5984      39428528 ENSG00000182093       ENST00000380708 ENSE00001485985
5985      39428528 ENSG00000182093       ENST00000466787 ENSE00001915597
5986      39428528 ENSG00000182093       ENST00000466787 ENSE00001923036
5987      39428528 ENSG00000182093       ENST00000466787 ENSE00003589273
5988      39428528 ENSG00000182093       ENST00000466787 ENSE00003502214
5989      39428528 ENSG00000182093       ENST00000466787 ENSE00001882286
5990      39428528 ENSG00000182093       ENST00000415847 ENSE00003788222
5991      39428528 ENSG00000182093       ENST00000415847 ENSE00003711093
5992      39428528 ENSG00000182093       ENST00000415847 ENSE00001628955
5993      39428528 ENSG00000182093       ENST00000490860 ENSE00001855761
5994      39428528 ENSG00000182093       ENST00000490860 ENSE00001846736
5995      39428528 ENSG00000182093       ENST00000478273 ENSE00001853929
5996      39428528 ENSG00000182093       ENST00000478273 ENSE00001946548
5997      39428528 ENSG00000182093       ENST00000476914 ENSE00001946548
5998      39428528 ENSG00000182093       ENST00000476914 ENSE00001956940
5999      39428528 ENSG00000182093       ENST00000480690 ENSE00001945110
6000      39428528 ENSG00000182093       ENST00000480690 ENSE00001957650
6001      39377066 ENSG00000227406       ENST00000444889 ENSE00001765685
6002      39377066 ENSG00000227406       ENST00000444889 ENSE00001728994
6003      39377066 ENSG00000227406       ENST00000444889 ENSE00001764217
6004      39377066 ENSG00000227406       ENST00000444889 ENSE00001631951
6005      39377066 ENSG00000227406       ENST00000444889 ENSE00001638845
6006      39349647 ENSG00000205581       ENST00000288344 ENSE00001705853
6007      39349647 ENSG00000205581       ENST00000288344 ENSE00003552745
6008      39349647 ENSG00000205581       ENST00000288344 ENSE00003585321
6009      39349647 ENSG00000205581       ENST00000288344 ENSE00003605975
6010      39349647 ENSG00000205581       ENST00000288344 ENSE00003676815
6011      39349647 ENSG00000205581       ENST00000288344 ENSE00003601648
6012      39349647 ENSG00000205581       ENST00000288344 ENSE00003686823
6013      39349647 ENSG00000205581       ENST00000486741 ENSE00003686823
6014      39349647 ENSG00000205581       ENST00000486741 ENSE00001643983
6015      39349647 ENSG00000205581       ENST00000486741 ENSE00003669232
6016      39349647 ENSG00000205581       ENST00000486741 ENSE00003627640
6017      39349647 ENSG00000205581       ENST00000486741 ENSE00001898923
6018      39349647 ENSG00000205581       ENST00000431390 ENSE00003552745
6019      39349647 ENSG00000205581       ENST00000431390 ENSE00003585321
6020      39349647 ENSG00000205581       ENST00000431390 ENSE00003605975
6021      39349647 ENSG00000205581       ENST00000431390 ENSE00003601648
6022      39349647 ENSG00000205581       ENST00000431390 ENSE00003686823
6023      39349647 ENSG00000205581       ENST00000431390 ENSE00001659207
6024      39349647 ENSG00000205581       ENST00000431390 ENSE00001642656
6025      39349647 ENSG00000205581       ENST00000431390 ENSE00003493302
6026      39349647 ENSG00000205581       ENST00000380749 ENSE00003552745
6027      39349647 ENSG00000205581       ENST00000380749 ENSE00003585321
6028      39349647 ENSG00000205581       ENST00000380749 ENSE00003605975
6029      39349647 ENSG00000205581       ENST00000380749 ENSE00001942039
6030      39349647 ENSG00000205581       ENST00000380749 ENSE00003532954
6031      39349647 ENSG00000205581       ENST00000380749 ENSE00003659677
6032      39349647 ENSG00000205581       ENST00000492280 ENSE00003601648
6033      39349647 ENSG00000205581       ENST00000492280 ENSE00003686823
6034      39349647 ENSG00000205581       ENST00000492280 ENSE00003669232
6035      39349647 ENSG00000205581       ENST00000492280 ENSE00003627640
6036      39349647 ENSG00000205581       ENST00000492280 ENSE00001942976
6037      39349647 ENSG00000205581       ENST00000492280 ENSE00003613784
6038      39349647 ENSG00000205581       ENST00000492280 ENSE00003485728
6039      39349647 ENSG00000205581       ENST00000492280 ENSE00001930581
6040      39349647 ENSG00000205581       ENST00000436324 ENSE00003552745
6041      39349647 ENSG00000205581       ENST00000436324 ENSE00003585321
6042      39349647 ENSG00000205581       ENST00000436324 ENSE00003605975
6043      39349647 ENSG00000205581       ENST00000436324 ENSE00003601648
6044      39349647 ENSG00000205581       ENST00000436324 ENSE00001599611
6045      39349647 ENSG00000205581       ENST00000436324 ENSE00003550272
6046      39349647 ENSG00000205581       ENST00000436324 ENSE00001726652
6047      39349647 ENSG00000205581       ENST00000380748 ENSE00003552745
6048      39349647 ENSG00000205581       ENST00000380748 ENSE00003605975
6049      39349647 ENSG00000205581       ENST00000380748 ENSE00003532954
6050      39349647 ENSG00000205581       ENST00000380748 ENSE00001486104
6051      39349647 ENSG00000205581       ENST00000380748 ENSE00001486102
6052      39349647 ENSG00000205581       ENST00000419378 ENSE00003552745
6053      39349647 ENSG00000205581       ENST00000419378 ENSE00003585321
6054      39349647 ENSG00000205581       ENST00000419378 ENSE00003605975
6055      39349647 ENSG00000205581       ENST00000419378 ENSE00003601648
6056      39349647 ENSG00000205581       ENST00000419378 ENSE00001642656
6057      39349647 ENSG00000205581       ENST00000419378 ENSE00001667562
6058      39349647 ENSG00000205581       ENST00000419378 ENSE00001740454
6059      39349647 ENSG00000205581       ENST00000489072 ENSE00003601648
6060      39349647 ENSG00000205581       ENST00000489072 ENSE00003627640
6061      39349647 ENSG00000205581       ENST00000489072 ENSE00003493302
6062      39349647 ENSG00000205581       ENST00000489072 ENSE00003613784
6063      39349647 ENSG00000205581       ENST00000489072 ENSE00001884218
6064      39349647 ENSG00000205581       ENST00000489072 ENSE00001820349
6065      39349647 ENSG00000205581       ENST00000482192 ENSE00003601648
6066      39349647 ENSG00000205581       ENST00000482192 ENSE00003627640
6067      39349647 ENSG00000205581       ENST00000482192 ENSE00003613784
6068      39349647 ENSG00000205581       ENST00000482192 ENSE00003485728
6069      39349647 ENSG00000205581       ENST00000482192 ENSE00001875720
6070      39349647 ENSG00000205581       ENST00000482192 ENSE00001699401
6071      39349647 ENSG00000205581       ENST00000482192 ENSE00001895283
6072      39349647 ENSG00000205581       ENST00000380747 ENSE00003552745
6073      39349647 ENSG00000205581       ENST00000380747 ENSE00003585321
6074      39349647 ENSG00000205581       ENST00000380747 ENSE00003605975
6075      39349647 ENSG00000205581       ENST00000380747 ENSE00003532954
6076      39349647 ENSG00000205581       ENST00000380747 ENSE00001486098
6077      39349647 ENSG00000205581       ENST00000380747 ENSE00001220166
6078      39349647 ENSG00000205581       ENST00000485550 ENSE00003601648
6079      39349647 ENSG00000205581       ENST00000485550 ENSE00003627640
6080      39349647 ENSG00000205581       ENST00000485550 ENSE00003493302
6081      39349647 ENSG00000205581       ENST00000485550 ENSE00003613784
6082      39349647 ENSG00000205581       ENST00000485550 ENSE00003485728
6083      39349647 ENSG00000205581       ENST00000485550 ENSE00001850231
6084      39349647 ENSG00000205581       ENST00000485550 ENSE00001948699
6085      39349647 ENSG00000205581       ENST00000490032 ENSE00003601648
6086      39349647 ENSG00000205581       ENST00000490032 ENSE00003613784
6087      39349647 ENSG00000205581       ENST00000490032 ENSE00001699401
6088      39349647 ENSG00000205581       ENST00000490032 ENSE00001900021
6089      39349647 ENSG00000205581       ENST00000443046 ENSE00003552745
6090      39349647 ENSG00000205581       ENST00000443046 ENSE00003585321
6091      39349647 ENSG00000205581       ENST00000443046 ENSE00003605975
6092      39349647 ENSG00000205581       ENST00000443046 ENSE00003601648
6093      39349647 ENSG00000205581       ENST00000443046 ENSE00003493302
6094      39349647 ENSG00000205581       ENST00000443046 ENSE00003550272
6095      39349647 ENSG00000205581       ENST00000443046 ENSE00001699401
6096      39349647 ENSG00000205581       ENST00000443046 ENSE00003573173
6097      39349647 ENSG00000205581       ENST00000443046 ENSE00001732770
6098      39349647 ENSG00000205581       ENST00000464078 ENSE00003601648
6099      39349647 ENSG00000205581       ENST00000464078 ENSE00003613784
6100      39349647 ENSG00000205581       ENST00000464078 ENSE00003692123
6101      39349647 ENSG00000205581       ENST00000464078 ENSE00001893135
6102      39349647 ENSG00000205581       ENST00000464078 ENSE00001951514
6103      39349647 ENSG00000205581       ENST00000491183 ENSE00003669232
6104      39349647 ENSG00000205581       ENST00000491183 ENSE00003627640
6105      39349647 ENSG00000205581       ENST00000491183 ENSE00003613784
6106      39349647 ENSG00000205581       ENST00000491183 ENSE00003485728
6107      39349647 ENSG00000205581       ENST00000491183 ENSE00001850965
6108      39349647 ENSG00000205581       ENST00000491183 ENSE00001913220
6109      39349647 ENSG00000205581       ENST00000479586 ENSE00003669232
6110      39349647 ENSG00000205581       ENST00000479586 ENSE00003627640
6111      39349647 ENSG00000205581       ENST00000479586 ENSE00003613784
6112      39349647 ENSG00000205581       ENST00000479586 ENSE00001812091
6113      39349647 ENSG00000205581       ENST00000479586 ENSE00001890035
6114      39349647 ENSG00000205581       ENST00000471260 ENSE00003627640
6115      39349647 ENSG00000205581       ENST00000471260 ENSE00003613784
6116      39349647 ENSG00000205581       ENST00000471260 ENSE00001902671
6117      39349647 ENSG00000205581       ENST00000471260 ENSE00001952974
6118      39349647 ENSG00000205581       ENST00000482733 ENSE00001852835
6119      39349647 ENSG00000205581       ENST00000482733 ENSE00001840952
6120      39349647 ENSG00000205581       ENST00000463631 ENSE00003692123
6121      39349647 ENSG00000205581       ENST00000463631 ENSE00001893135
6122      39349647 ENSG00000205581       ENST00000463631 ENSE00001888057
6123      39344628 ENSG00000252915       ENST00000517106 ENSE00002089383
6124      39323218 ENSG00000238141       ENST00000423274 ENSE00001851503
6125      39323218 ENSG00000238141       ENST00000423274 ENSE00001712159
6126      39323218 ENSG00000238141       ENST00000423274 ENSE00001602763
6127      39321559 ENSG00000185658       ENST00000333229 ENSE00001880434
6128      39321559 ENSG00000185658       ENST00000333229 ENSE00003515339
6129      39321559 ENSG00000185658       ENST00000333229 ENSE00003653232
6130      39321559 ENSG00000185658       ENST00000333229 ENSE00003641761
6131      39321559 ENSG00000185658       ENST00000333229 ENSE00002431924
6132      39321559 ENSG00000185658       ENST00000333229 ENSE00002497178
6133      39321559 ENSG00000185658       ENST00000333229 ENSE00002462623
6134      39321559 ENSG00000185658       ENST00000333229 ENSE00002458215
6135      39321559 ENSG00000185658       ENST00000333229 ENSE00002465628
6136      39321559 ENSG00000185658       ENST00000333229 ENSE00002482303
6137      39321559 ENSG00000185658       ENST00000333229 ENSE00002520544
6138      39321559 ENSG00000185658       ENST00000333229 ENSE00002433897
6139      39321559 ENSG00000185658       ENST00000333229 ENSE00002506458
6140      39321559 ENSG00000185658       ENST00000333229 ENSE00002521348
6141      39321559 ENSG00000185658       ENST00000333229 ENSE00002497896
6142      39321559 ENSG00000185658       ENST00000333229 ENSE00002446887
6143      39321559 ENSG00000185658       ENST00000333229 ENSE00003490914
6144      39321559 ENSG00000185658       ENST00000333229 ENSE00003536179
6145      39321559 ENSG00000185658       ENST00000333229 ENSE00003600281
6146      39321559 ENSG00000185658       ENST00000333229 ENSE00003655791
6147      39321559 ENSG00000185658       ENST00000333229 ENSE00003519259
6148      39321559 ENSG00000185658       ENST00000333229 ENSE00003584341
6149      39321559 ENSG00000185658       ENST00000333229 ENSE00002446443
6150      39321559 ENSG00000185658       ENST00000333229 ENSE00002470382
6151      39321559 ENSG00000185658       ENST00000333229 ENSE00002437169
6152      39321559 ENSG00000185658       ENST00000333229 ENSE00001788177
6153      39321559 ENSG00000185658       ENST00000333229 ENSE00001674297
6154      39321559 ENSG00000185658       ENST00000333229 ENSE00001651462
6155      39321559 ENSG00000185658       ENST00000333229 ENSE00001622845
6156      39321559 ENSG00000185658       ENST00000333229 ENSE00003582172
6157      39321559 ENSG00000185658       ENST00000333229 ENSE00003525602
6158      39321559 ENSG00000185658       ENST00000333229 ENSE00003677382
6159      39321559 ENSG00000185658       ENST00000333229 ENSE00003529207
6160      39321559 ENSG00000185658       ENST00000333229 ENSE00003621343
6161      39321559 ENSG00000185658       ENST00000333229 ENSE00003497316
6162      39321559 ENSG00000185658       ENST00000333229 ENSE00003520595
6163      39321559 ENSG00000185658       ENST00000333229 ENSE00003583448
6164      39321559 ENSG00000185658       ENST00000333229 ENSE00003562855
6165      39321559 ENSG00000185658       ENST00000333229 ENSE00003674456
6166      39321559 ENSG00000185658       ENST00000333229 ENSE00003675873
6167      39321559 ENSG00000185658       ENST00000333229 ENSE00003618132
6168      39321559 ENSG00000185658       ENST00000333229 ENSE00001780720
6169      39321559 ENSG00000185658       ENST00000446924 ENSE00003490914
6170      39321559 ENSG00000185658       ENST00000446924 ENSE00003536179
6171      39321559 ENSG00000185658       ENST00000446924 ENSE00003600281
6172      39321559 ENSG00000185658       ENST00000446924 ENSE00003655791
6173      39321559 ENSG00000185658       ENST00000446924 ENSE00003519259
6174      39321559 ENSG00000185658       ENST00000446924 ENSE00003584341
6175      39321559 ENSG00000185658       ENST00000446924 ENSE00002446443
6176      39321559 ENSG00000185658       ENST00000446924 ENSE00002470382
6177      39321559 ENSG00000185658       ENST00000446924 ENSE00002437169
6178      39321559 ENSG00000185658       ENST00000446924 ENSE00001788177
6179      39321559 ENSG00000185658       ENST00000446924 ENSE00001674297
6180      39321559 ENSG00000185658       ENST00000446924 ENSE00001651462
6181      39321559 ENSG00000185658       ENST00000446924 ENSE00001622845
6182      39321559 ENSG00000185658       ENST00000446924 ENSE00001794606
6183      39321559 ENSG00000185658       ENST00000446924 ENSE00001706237
6184      39321559 ENSG00000185658       ENST00000446924 ENSE00003622298
6185      39321559 ENSG00000185658       ENST00000446924 ENSE00003670759
6186      39321559 ENSG00000185658       ENST00000446924 ENSE00003580095
6187      39321559 ENSG00000185658       ENST00000446924 ENSE00003610171
6188      39321559 ENSG00000185658       ENST00000446924 ENSE00003596356
6189      39321559 ENSG00000185658       ENST00000446924 ENSE00003612392
6190      39321559 ENSG00000185658       ENST00000446924 ENSE00003672997
6191      39321559 ENSG00000185658       ENST00000446924 ENSE00003513288
6192      39321559 ENSG00000185658       ENST00000446924 ENSE00003545917
6193      39321559 ENSG00000185658       ENST00000446924 ENSE00003571434
6194      39321559 ENSG00000185658       ENST00000446924 ENSE00001696762
6195      39321559 ENSG00000185658       ENST00000342449 ENSE00003515339
6196      39321559 ENSG00000185658       ENST00000342449 ENSE00003653232
6197      39321559 ENSG00000185658       ENST00000342449 ENSE00003641761
6198      39321559 ENSG00000185658       ENST00000342449 ENSE00002431924
6199      39321559 ENSG00000185658       ENST00000342449 ENSE00002497178
6200      39321559 ENSG00000185658       ENST00000342449 ENSE00002462623
6201      39321559 ENSG00000185658       ENST00000342449 ENSE00002458215
6202      39321559 ENSG00000185658       ENST00000342449 ENSE00002465628
6203      39321559 ENSG00000185658       ENST00000342449 ENSE00002482303
6204      39321559 ENSG00000185658       ENST00000342449 ENSE00002520544
6205      39321559 ENSG00000185658       ENST00000342449 ENSE00002433897
6206      39321559 ENSG00000185658       ENST00000342449 ENSE00002506458
6207      39321559 ENSG00000185658       ENST00000342449 ENSE00002521348
6208      39321559 ENSG00000185658       ENST00000342449 ENSE00002497896
6209      39321559 ENSG00000185658       ENST00000342449 ENSE00002446887
6210      39321559 ENSG00000185658       ENST00000342449 ENSE00003490914
6211      39321559 ENSG00000185658       ENST00000342449 ENSE00003536179
6212      39321559 ENSG00000185658       ENST00000342449 ENSE00003600281
6213      39321559 ENSG00000185658       ENST00000342449 ENSE00003655791
6214      39321559 ENSG00000185658       ENST00000342449 ENSE00003519259
6215      39321559 ENSG00000185658       ENST00000342449 ENSE00003584341
6216      39321559 ENSG00000185658       ENST00000342449 ENSE00002446443
6217      39321559 ENSG00000185658       ENST00000342449 ENSE00002470382
6218      39321559 ENSG00000185658       ENST00000342449 ENSE00002437169
6219      39321559 ENSG00000185658       ENST00000342449 ENSE00001788177
6220      39321559 ENSG00000185658       ENST00000342449 ENSE00001674297
6221      39321559 ENSG00000185658       ENST00000342449 ENSE00001651462
6222      39321559 ENSG00000185658       ENST00000342449 ENSE00001622845
6223      39321559 ENSG00000185658       ENST00000342449 ENSE00003582172
6224      39321559 ENSG00000185658       ENST00000342449 ENSE00003525602
6225      39321559 ENSG00000185658       ENST00000342449 ENSE00003677382
6226      39321559 ENSG00000185658       ENST00000342449 ENSE00003529207
6227      39321559 ENSG00000185658       ENST00000342449 ENSE00003621343
6228      39321559 ENSG00000185658       ENST00000342449 ENSE00003497316
6229      39321559 ENSG00000185658       ENST00000342449 ENSE00003520595
6230      39321559 ENSG00000185658       ENST00000342449 ENSE00003583448
6231      39321559 ENSG00000185658       ENST00000342449 ENSE00003562855
6232      39321559 ENSG00000185658       ENST00000342449 ENSE00003674456
6233      39321559 ENSG00000185658       ENST00000342449 ENSE00003675873
6234      39321559 ENSG00000185658       ENST00000342449 ENSE00001883590
6235      39321559 ENSG00000185658       ENST00000342449 ENSE00001383767
6236      39321559 ENSG00000185658       ENST00000380800 ENSE00003515339
6237      39321559 ENSG00000185658       ENST00000380800 ENSE00003653232
6238      39321559 ENSG00000185658       ENST00000380800 ENSE00003641761
6239      39321559 ENSG00000185658       ENST00000380800 ENSE00002431924
6240      39321559 ENSG00000185658       ENST00000380800 ENSE00002497178
6241      39321559 ENSG00000185658       ENST00000380800 ENSE00002462623
6242      39321559 ENSG00000185658       ENST00000380800 ENSE00002458215
6243      39321559 ENSG00000185658       ENST00000380800 ENSE00002465628
6244      39321559 ENSG00000185658       ENST00000380800 ENSE00002482303
6245      39321559 ENSG00000185658       ENST00000380800 ENSE00002520544
6246      39321559 ENSG00000185658       ENST00000380800 ENSE00002433897
6247      39321559 ENSG00000185658       ENST00000380800 ENSE00002506458
6248      39321559 ENSG00000185658       ENST00000380800 ENSE00002521348
6249      39321559 ENSG00000185658       ENST00000380800 ENSE00002497896
6250      39321559 ENSG00000185658       ENST00000380800 ENSE00002446887
6251      39321559 ENSG00000185658       ENST00000380800 ENSE00003490914
6252      39321559 ENSG00000185658       ENST00000380800 ENSE00003536179
6253      39321559 ENSG00000185658       ENST00000380800 ENSE00003600281
6254      39321559 ENSG00000185658       ENST00000380800 ENSE00003655791
6255      39321559 ENSG00000185658       ENST00000380800 ENSE00003519259
6256      39321559 ENSG00000185658       ENST00000380800 ENSE00003584341
6257      39321559 ENSG00000185658       ENST00000380800 ENSE00002446443
6258      39321559 ENSG00000185658       ENST00000380800 ENSE00002470382
6259      39321559 ENSG00000185658       ENST00000380800 ENSE00002437169
6260      39321559 ENSG00000185658       ENST00000380800 ENSE00001788177
6261      39321559 ENSG00000185658       ENST00000380800 ENSE00001674297
6262      39321559 ENSG00000185658       ENST00000380800 ENSE00001651462
6263      39321559 ENSG00000185658       ENST00000380800 ENSE00001622845
6264      39321559 ENSG00000185658       ENST00000380800 ENSE00003582172
6265      39321559 ENSG00000185658       ENST00000380800 ENSE00003525602
6266      39321559 ENSG00000185658       ENST00000380800 ENSE00003677382
6267      39321559 ENSG00000185658       ENST00000380800 ENSE00003529207
6268      39321559 ENSG00000185658       ENST00000380800 ENSE00003621343
6269      39321559 ENSG00000185658       ENST00000380800 ENSE00003497316
6270      39321559 ENSG00000185658       ENST00000380800 ENSE00003520595
6271      39321559 ENSG00000185658       ENST00000380800 ENSE00003583448
6272      39321559 ENSG00000185658       ENST00000380800 ENSE00003562855
6273      39321559 ENSG00000185658       ENST00000380800 ENSE00003674456
6274      39321559 ENSG00000185658       ENST00000380800 ENSE00003675873
6275      39321559 ENSG00000185658       ENST00000380800 ENSE00003618132
6276      39321559 ENSG00000185658       ENST00000380800 ENSE00001897340
6277      39321559 ENSG00000185658       ENST00000380800 ENSE00001486321
6278      39321559 ENSG00000185658       ENST00000491564 ENSE00001852973
6279      39321559 ENSG00000185658       ENST00000491564 ENSE00001865375
6280      39321559 ENSG00000185658       ENST00000424441 ENSE00001674297
6281      39321559 ENSG00000185658       ENST00000424441 ENSE00001651462
6282      39321559 ENSG00000185658       ENST00000424441 ENSE00001622845
6283      39321559 ENSG00000185658       ENST00000424441 ENSE00003582172
6284      39321559 ENSG00000185658       ENST00000424441 ENSE00003525602
6285      39321559 ENSG00000185658       ENST00000424441 ENSE00003677382
6286      39321559 ENSG00000185658       ENST00000424441 ENSE00003529207
6287      39321559 ENSG00000185658       ENST00000424441 ENSE00003621343
6288      39321559 ENSG00000185658       ENST00000424441 ENSE00003520595
6289      39321559 ENSG00000185658       ENST00000424441 ENSE00003583448
6290      39321559 ENSG00000185658       ENST00000424441 ENSE00001731798
6291      39321559 ENSG00000185658       ENST00000424441 ENSE00001623960
6292      39321559 ENSG00000185658       ENST00000473813 ENSE00003670759
6293      39321559 ENSG00000185658       ENST00000473813 ENSE00003580095
6294      39321559 ENSG00000185658       ENST00000473813 ENSE00003686178
6295      39321559 ENSG00000185658       ENST00000473813 ENSE00003515471
6296      39321559 ENSG00000185658       ENST00000473813 ENSE00003676246
6297      39321559 ENSG00000185658       ENST00000473813 ENSE00001862816
6298      39321559 ENSG00000185658       ENST00000473813 ENSE00001827867
6299      39321559 ENSG00000185658       ENST00000445668 ENSE00002482303
6300      39321559 ENSG00000185658       ENST00000445668 ENSE00002520544
6301      39321559 ENSG00000185658       ENST00000445668 ENSE00002433897
6302      39321559 ENSG00000185658       ENST00000445668 ENSE00002506458
6303      39321559 ENSG00000185658       ENST00000445668 ENSE00002521348
6304      39321559 ENSG00000185658       ENST00000445668 ENSE00002497896
6305      39321559 ENSG00000185658       ENST00000445668 ENSE00002446887
6306      39321559 ENSG00000185658       ENST00000445668 ENSE00003490914
6307      39321559 ENSG00000185658       ENST00000445668 ENSE00003536179
6308      39321559 ENSG00000185658       ENST00000445668 ENSE00001735508
6309      39321559 ENSG00000185658       ENST00000445668 ENSE00003616362
6310      39321559 ENSG00000185658       ENST00000445668 ENSE00003575172
6311      39321559 ENSG00000185658       ENST00000445668 ENSE00003582397
6312      39321559 ENSG00000185658       ENST00000445668 ENSE00001619715
6313      39321559 ENSG00000185658       ENST00000430093 ENSE00002482303
6314      39321559 ENSG00000185658       ENST00000430093 ENSE00002520544
6315      39321559 ENSG00000185658       ENST00000430093 ENSE00002433897
6316      39321559 ENSG00000185658       ENST00000430093 ENSE00002506458
6317      39321559 ENSG00000185658       ENST00000430093 ENSE00002521348
6318      39321559 ENSG00000185658       ENST00000430093 ENSE00002497896
6319      39321559 ENSG00000185658       ENST00000430093 ENSE00002446887
6320      39321559 ENSG00000185658       ENST00000430093 ENSE00001735508
6321      39321559 ENSG00000185658       ENST00000430093 ENSE00003575172
6322      39321559 ENSG00000185658       ENST00000430093 ENSE00003582397
6323      39321559 ENSG00000185658       ENST00000430093 ENSE00001619715
6324      39321559 ENSG00000185658       ENST00000430093 ENSE00001783589
6325      39321559 ENSG00000185658       ENST00000430093 ENSE00003630425
6326      39321559 ENSG00000185658       ENST00000430093 ENSE00003687599
6327      39321559 ENSG00000185658       ENST00000430093 ENSE00003675221
6328      39321559 ENSG00000185658       ENST00000445245 ENSE00002482303
6329      39321559 ENSG00000185658       ENST00000445245 ENSE00002520544
6330      39321559 ENSG00000185658       ENST00000445245 ENSE00002433897
6331      39321559 ENSG00000185658       ENST00000445245 ENSE00002506458
6332      39321559 ENSG00000185658       ENST00000445245 ENSE00002521348
6333      39321559 ENSG00000185658       ENST00000445245 ENSE00002497896
6334      39321559 ENSG00000185658       ENST00000445245 ENSE00001735508
6335      39321559 ENSG00000185658       ENST00000445245 ENSE00003575172
6336      39321559 ENSG00000185658       ENST00000445245 ENSE00003582397
6337      39321559 ENSG00000185658       ENST00000445245 ENSE00001619715
6338      39321559 ENSG00000185658       ENST00000445245 ENSE00003630425
6339      39321559 ENSG00000185658       ENST00000445245 ENSE00003687599
6340      39321559 ENSG00000185658       ENST00000445245 ENSE00003675221
6341      39321559 ENSG00000185658       ENST00000445245 ENSE00001624112
6342      39321559 ENSG00000185658       ENST00000445245 ENSE00003495150
6343      39321559 ENSG00000185658       ENST00000455867 ENSE00002482303
6344      39321559 ENSG00000185658       ENST00000455867 ENSE00002520544
6345      39321559 ENSG00000185658       ENST00000455867 ENSE00002433897
6346      39321559 ENSG00000185658       ENST00000455867 ENSE00002506458
6347      39321559 ENSG00000185658       ENST00000455867 ENSE00002521348
6348      39321559 ENSG00000185658       ENST00000455867 ENSE00002497896
6349      39321559 ENSG00000185658       ENST00000455867 ENSE00002446887
6350      39321559 ENSG00000185658       ENST00000455867 ENSE00003490914
6351      39321559 ENSG00000185658       ENST00000455867 ENSE00003536179
6352      39321559 ENSG00000185658       ENST00000455867 ENSE00003600281
6353      39321559 ENSG00000185658       ENST00000455867 ENSE00003655791
6354      39321559 ENSG00000185658       ENST00000455867 ENSE00003584341
6355      39321559 ENSG00000185658       ENST00000455867 ENSE00001735508
6356      39321559 ENSG00000185658       ENST00000455867 ENSE00003564188
6357      39321559 ENSG00000185658       ENST00000412604 ENSE00002482303
6358      39321559 ENSG00000185658       ENST00000412604 ENSE00002520544
6359      39321559 ENSG00000185658       ENST00000412604 ENSE00002433897
6360      39321559 ENSG00000185658       ENST00000412604 ENSE00002506458
6361      39321559 ENSG00000185658       ENST00000412604 ENSE00002521348
6362      39321559 ENSG00000185658       ENST00000412604 ENSE00002497896
6363      39321559 ENSG00000185658       ENST00000412604 ENSE00002446887
6364      39321559 ENSG00000185658       ENST00000412604 ENSE00003490914
6365      39321559 ENSG00000185658       ENST00000412604 ENSE00003536179
6366      39321559 ENSG00000185658       ENST00000412604 ENSE00001735508
6367      39321559 ENSG00000185658       ENST00000412604 ENSE00003575172
6368      39321559 ENSG00000185658       ENST00000412604 ENSE00003582397
6369      39321559 ENSG00000185658       ENST00000412604 ENSE00002225679
6370      39321559 ENSG00000185658       ENST00000412604 ENSE00003540012
6371      39321559 ENSG00000185658       ENST00000412604 ENSE00003644923
6372      39321559 ENSG00000185658       ENST00000496759 ENSE00001851565
6373      39321559 ENSG00000185658       ENST00000496759 ENSE00001832241
6374      39321559 ENSG00000185658       ENST00000341322 ENSE00003515339
6375      39321559 ENSG00000185658       ENST00000341322 ENSE00003653232
6376      39321559 ENSG00000185658       ENST00000341322 ENSE00003641761
6377      39321559 ENSG00000185658       ENST00000341322 ENSE00001946259
6378      39321559 ENSG00000185658       ENST00000341322 ENSE00001486224
6379      39321559 ENSG00000185658       ENST00000470108 ENSE00001951079
6380      39321559 ENSG00000185658       ENST00000470108 ENSE00003497887
6381      39321559 ENSG00000185658       ENST00000470108 ENSE00003590815
6382      39321559 ENSG00000185658       ENST00000470108 ENSE00003594814
6383      39321559 ENSG00000185658       ENST00000470108 ENSE00001905226
6384      39321559 ENSG00000185658       ENST00000484090 ENSE00003590815
6385      39321559 ENSG00000185658       ENST00000484090 ENSE00001873973
6386      39321559 ENSG00000185658       ENST00000484090 ENSE00001871884
6387      39314962 ENSG00000255568       ENST00000603064 ENSE00003604103
6388      39236020 ENSG00000229623       ENST00000438852 ENSE00001651651
6389      39219805 ENSG00000237373       ENST00000435608 ENSE00001651259
6390      39219805 ENSG00000237373       ENST00000435608 ENSE00001635289
6391      39217506 ENSG00000232608       ENST00000419324 ENSE00001721934
6392      39217506 ENSG00000232608       ENST00000419324 ENSE00001638526
6393      39184899 ENSG00000272991       ENST00000608767 ENSE00003704680
6394      39183851 ENSG00000183527       ENST00000331573 ENSE00001921756
6395      39183851 ENSG00000183527       ENST00000331573 ENSE00003675559
6396      39183851 ENSG00000183527       ENST00000331573 ENSE00003574701
6397      39183851 ENSG00000183527       ENST00000331573 ENSE00003605373
6398      39183851 ENSG00000183527       ENST00000331573 ENSE00003473157
6399      39183851 ENSG00000183527       ENST00000331573 ENSE00003689596
6400      39183851 ENSG00000183527       ENST00000331573 ENSE00001486754
6401      39183851 ENSG00000183527       ENST00000481921 ENSE00001943530
6402      39183851 ENSG00000183527       ENST00000481921 ENSE00003544815
6403      39183851 ENSG00000183527       ENST00000481921 ENSE00003163934
6404      39183851 ENSG00000183527       ENST00000411828 ENSE00003544815
6405      39183851 ENSG00000183527       ENST00000411828 ENSE00001682686
6406      39183851 ENSG00000183527       ENST00000411828 ENSE00003542528
6407      39183851 ENSG00000183527       ENST00000411828 ENSE00003520418
6408      39183851 ENSG00000183527       ENST00000411828 ENSE00003589272
6409      39183851 ENSG00000183527       ENST00000411828 ENSE00003519043
6410      39183851 ENSG00000183527       ENST00000411828 ENSE00001623836
6411      39183851 ENSG00000183527       ENST00000431628 ENSE00003544815
6412      39183851 ENSG00000183527       ENST00000431628 ENSE00003589272
6413      39183851 ENSG00000183527       ENST00000431628 ENSE00003519043
6414      39183851 ENSG00000183527       ENST00000431628 ENSE00001759245
6415      39183851 ENSG00000183527       ENST00000431628 ENSE00003542937
6416      39183851 ENSG00000183527       ENST00000431628 ENSE00003576962
6417      39183851 ENSG00000183527       ENST00000380900 ENSE00003675559
6418      39183851 ENSG00000183527       ENST00000380900 ENSE00003574701
6419      39183851 ENSG00000183527       ENST00000380900 ENSE00003473157
6420      39183851 ENSG00000183527       ENST00000380900 ENSE00003689596
6421      39183851 ENSG00000183527       ENST00000380900 ENSE00001486727
6422      39183851 ENSG00000183527       ENST00000380900 ENSE00003650014
6423      39172106 ENSG00000235701       ENST00000437262 ENSE00001798309
6424      39171560 ENSG00000276873       ENST00000616808 ENSE00003730872
6425      39128040 ENSG00000228861       ENST00000467573 ENSE00001883585
6426      39029128 ENSG00000237609       ENST00000440714 ENSE00001647750
6427      39029128 ENSG00000237609       ENST00000440714 ENSE00001777592
6428      39011329 ENSG00000237721       ENST00000419664 ENSE00001724020
6429      39011329 ENSG00000237721       ENST00000419664 ENSE00001448635
6430      39011329 ENSG00000237721       ENST00000419664 ENSE00001795712
6431      39006153 ENSG00000235888       ENST00000417335 ENSE00001688039
6432      39006153 ENSG00000235888       ENST00000417335 ENSE00001602024
6433      39006153 ENSG00000235888       ENST00000417335 ENSE00001798412
6434      38977774 ENSG00000232837       ENST00000433952 ENSE00001718570
6435      38977774 ENSG00000232837       ENST00000433952 ENSE00001801407
6436      38977774 ENSG00000232837       ENST00000433952 ENSE00001660496
6437      38956467 ENSG00000205622       ENST00000626259 ENSE00003767325
6438      38956467 ENSG00000205622       ENST00000626259 ENSE00003767488
6439      38956467 ENSG00000205622       ENST00000626259 ENSE00002440510
6440      38956467 ENSG00000205622       ENST00000626259 ENSE00003761206
6441      38956467 ENSG00000205622       ENST00000380931 ENSE00002440510
6442      38956467 ENSG00000205622       ENST00000380931 ENSE00001543058
6443      38956467 ENSG00000205622       ENST00000380931 ENSE00001543055
6444      38956467 ENSG00000205622       ENST00000380931 ENSE00001486856
6445      38956467 ENSG00000205622       ENST00000415824 ENSE00002440510
6446      38956467 ENSG00000205622       ENST00000415824 ENSE00001593766
6447      38956467 ENSG00000205622       ENST00000415824 ENSE00001718319
6448      38956467 ENSG00000205622       ENST00000415824 ENSE00001635974
6449      38956467 ENSG00000205622       ENST00000440379 ENSE00001717572
6450      38956467 ENSG00000205622       ENST00000440379 ENSE00001739866
6451      38956467 ENSG00000205622       ENST00000623098 ENSE00001543055
6452      38956467 ENSG00000205622       ENST00000623098 ENSE00003758780
6453      38956467 ENSG00000205622       ENST00000623098 ENSE00003759506
6454      38956467 ENSG00000205622       ENST00000623098 ENSE00003757941
6455      38956467 ENSG00000205622       ENST00000623098 ENSE00003757480
6456      38956467 ENSG00000205622       ENST00000623098 ENSE00003755442
6457      38956467 ENSG00000205622       ENST00000623098 ENSE00003722266
6458      38956467 ENSG00000205622       ENST00000623098 ENSE00003756083
6459      38956467 ENSG00000205622       ENST00000613045 ENSE00003722266
6460      38956467 ENSG00000205622       ENST00000613045 ENSE00003726544
6461      38956467 ENSG00000205622       ENST00000613045 ENSE00003735395
6462      38956467 ENSG00000205622       ENST00000613045 ENSE00003729674
6463      38956467 ENSG00000205622       ENST00000615324 ENSE00003717088
6464      38903905 ENSG00000229925       ENST00000434589 ENSE00001730152
6465      38903905 ENSG00000229925       ENST00000434589 ENSE00001761889
6466      38895252 ENSG00000227721       ENST00000451820 ENSE00001668499
6467      38894867 ENSG00000272015       ENST00000606322 ENSE00003696709
6468      38848644 ENSG00000229986       ENST00000416842 ENSE00001774031
6469      38848644 ENSG00000229986       ENST00000416842 ENSE00001650709
6470      38824955 ENSG00000157557       ENST00000360214 ENSE00001535416
6471      38824955 ENSG00000157557       ENST00000360214 ENSE00001535413
6472      38824955 ENSG00000157557       ENST00000360214 ENSE00001771688
6473      38824955 ENSG00000157557       ENST00000360214 ENSE00001033372
6474      38824955 ENSG00000157557       ENST00000360214 ENSE00001033374
6475      38824955 ENSG00000157557       ENST00000360214 ENSE00003791296
6476      38824955 ENSG00000157557       ENST00000360214 ENSE00001033363
6477      38824955 ENSG00000157557       ENST00000360214 ENSE00003788495
6478      38824955 ENSG00000157557       ENST00000360214 ENSE00001033362
6479      38824955 ENSG00000157557       ENST00000360214 ENSE00001302098
6480      38824955 ENSG00000157557       ENST00000360214 ENSE00001427195
6481      38824955 ENSG00000157557       ENST00000360938 ENSE00001771688
6482      38824955 ENSG00000157557       ENST00000360938 ENSE00001033372
6483      38824955 ENSG00000157557       ENST00000360938 ENSE00001033374
6484      38824955 ENSG00000157557       ENST00000360938 ENSE00003791296
6485      38824955 ENSG00000157557       ENST00000360938 ENSE00001033363
6486      38824955 ENSG00000157557       ENST00000360938 ENSE00003788495
6487      38824955 ENSG00000157557       ENST00000360938 ENSE00001033362
6488      38824955 ENSG00000157557       ENST00000360938 ENSE00001302098
6489      38824955 ENSG00000157557       ENST00000360938 ENSE00001427195
6490      38824955 ENSG00000157557       ENST00000360938 ENSE00001033370
6491      38824955 ENSG00000157557       ENST00000432278 ENSE00001771688
6492      38824955 ENSG00000157557       ENST00000432278 ENSE00001033372
6493      38824955 ENSG00000157557       ENST00000432278 ENSE00001033374
6494      38824955 ENSG00000157557       ENST00000432278 ENSE00003791296
6495      38824955 ENSG00000157557       ENST00000432278 ENSE00001762357
6496      38824955 ENSG00000157557       ENST00000432278 ENSE00001793284
6497      38824955 ENSG00000157557       ENST00000456966 ENSE00001771688
6498      38824955 ENSG00000157557       ENST00000456966 ENSE00001033372
6499      38824955 ENSG00000157557       ENST00000456966 ENSE00001033374
6500      38824955 ENSG00000157557       ENST00000456966 ENSE00003791296
6501      38824955 ENSG00000157557       ENST00000456966 ENSE00001033363
6502      38824955 ENSG00000157557       ENST00000456966 ENSE00003788495
6503      38824955 ENSG00000157557       ENST00000456966 ENSE00001650790
6504      38747460 ENSG00000223806       ENST00000448579 ENSE00001738568
6505      38747460 ENSG00000223806       ENST00000448579 ENSE00001785567
6506      38747460 ENSG00000223806       ENST00000448579 ENSE00001662035
6507      38747460 ENSG00000223806       ENST00000448579 ENSE00001660742
6508      38747460 ENSG00000223806       ENST00000448579 ENSE00001610560
6509      38747460 ENSG00000223806       ENST00000411989 ENSE00001738568
6510      38747460 ENSG00000223806       ENST00000411989 ENSE00001660742
6511      38747460 ENSG00000223806       ENST00000411989 ENSE00001610560
6512      38747460 ENSG00000223806       ENST00000411989 ENSE00001640534
6513      38747460 ENSG00000223806       ENST00000429621 ENSE00002495358
6514      38747460 ENSG00000223806       ENST00000429621 ENSE00001738568
6515      38747460 ENSG00000223806       ENST00000429621 ENSE00001662035
6516      38747460 ENSG00000223806       ENST00000429621 ENSE00001660742
6517      38747460 ENSG00000223806       ENST00000429621 ENSE00001610560
6518      38747460 ENSG00000223806       ENST00000429621 ENSE00001634264
6519      38661780 ENSG00000157554       ENST00000398905 ENSE00001535525
6520      38661780 ENSG00000157554       ENST00000398905 ENSE00003712731
6521      38661780 ENSG00000157554       ENST00000398905 ENSE00003508916
6522      38661780 ENSG00000157554       ENST00000398905 ENSE00003536380
6523      38661780 ENSG00000157554       ENST00000398905 ENSE00003462848
6524      38661780 ENSG00000157554       ENST00000398905 ENSE00003491473
6525      38661780 ENSG00000157554       ENST00000398905 ENSE00003585332
6526      38661780 ENSG00000157554       ENST00000398905 ENSE00001033342
6527      38661780 ENSG00000157554       ENST00000398905 ENSE00001535545
6528      38661780 ENSG00000157554       ENST00000398907 ENSE00001535525
6529      38661780 ENSG00000157554       ENST00000398907 ENSE00003712731
6530      38661780 ENSG00000157554       ENST00000398907 ENSE00003508916
6531      38661780 ENSG00000157554       ENST00000398907 ENSE00003536380
6532      38661780 ENSG00000157554       ENST00000398907 ENSE00003462848
6533      38661780 ENSG00000157554       ENST00000398907 ENSE00003585332
6534      38661780 ENSG00000157554       ENST00000398907 ENSE00001033342
6535      38661780 ENSG00000157554       ENST00000398907 ENSE00001535545
6536      38661780 ENSG00000157554       ENST00000398907 ENSE00003486142
6537      38661780 ENSG00000157554       ENST00000288319 ENSE00003712731
6538      38661780 ENSG00000157554       ENST00000288319 ENSE00003508916
6539      38661780 ENSG00000157554       ENST00000288319 ENSE00003536380
6540      38661780 ENSG00000157554       ENST00000288319 ENSE00003462848
6541      38661780 ENSG00000157554       ENST00000288319 ENSE00003491473
6542      38661780 ENSG00000157554       ENST00000288319 ENSE00003585332
6543      38661780 ENSG00000157554       ENST00000288319 ENSE00001033342
6544      38661780 ENSG00000157554       ENST00000288319 ENSE00001535545
6545      38661780 ENSG00000157554       ENST00000288319 ENSE00003486142
6546      38661780 ENSG00000157554       ENST00000288319 ENSE00001931764
6547      38661780 ENSG00000157554       ENST00000398897 ENSE00003536380
6548      38661780 ENSG00000157554       ENST00000398897 ENSE00003462848
6549      38661780 ENSG00000157554       ENST00000398897 ENSE00003491473
6550      38661780 ENSG00000157554       ENST00000398897 ENSE00003585332
6551      38661780 ENSG00000157554       ENST00000398897 ENSE00001033342
6552      38661780 ENSG00000157554       ENST00000398897 ENSE00001535545
6553      38661780 ENSG00000157554       ENST00000398897 ENSE00001535492
6554      38661780 ENSG00000157554       ENST00000398897 ENSE00003579517
6555      38661780 ENSG00000157554       ENST00000398897 ENSE00003684785
6556      38661780 ENSG00000157554       ENST00000398911 ENSE00003712731
6557      38661780 ENSG00000157554       ENST00000398911 ENSE00003508916
6558      38661780 ENSG00000157554       ENST00000398911 ENSE00003536380
6559      38661780 ENSG00000157554       ENST00000398911 ENSE00003462848
6560      38661780 ENSG00000157554       ENST00000398911 ENSE00003491473
6561      38661780 ENSG00000157554       ENST00000398911 ENSE00003585332
6562      38661780 ENSG00000157554       ENST00000398911 ENSE00001033342
6563      38661780 ENSG00000157554       ENST00000398911 ENSE00001535545
6564      38661780 ENSG00000157554       ENST00000398911 ENSE00001418790
6565      38661780 ENSG00000157554       ENST00000398911 ENSE00003661463
6566      38661780 ENSG00000157554       ENST00000417133 ENSE00003712731
6567      38661780 ENSG00000157554       ENST00000417133 ENSE00003508916
6568      38661780 ENSG00000157554       ENST00000417133 ENSE00003536380
6569      38661780 ENSG00000157554       ENST00000417133 ENSE00003462848
6570      38661780 ENSG00000157554       ENST00000417133 ENSE00003491473
6571      38661780 ENSG00000157554       ENST00000417133 ENSE00003585332
6572      38661780 ENSG00000157554       ENST00000417133 ENSE00001033342
6573      38661780 ENSG00000157554       ENST00000417133 ENSE00001535545
6574      38661780 ENSG00000157554       ENST00000417133 ENSE00003486142
6575      38661780 ENSG00000157554       ENST00000417133 ENSE00001418790
6576      38661780 ENSG00000157554       ENST00000417133 ENSE00003661463
6577      38661780 ENSG00000157554       ENST00000417133 ENSE00001411978
6578      38661780 ENSG00000157554       ENST00000398910 ENSE00003712731
6579      38661780 ENSG00000157554       ENST00000398910 ENSE00003508916
6580      38661780 ENSG00000157554       ENST00000398910 ENSE00003536380
6581      38661780 ENSG00000157554       ENST00000398910 ENSE00003462848
6582      38661780 ENSG00000157554       ENST00000398910 ENSE00003585332
6583      38661780 ENSG00000157554       ENST00000398910 ENSE00001033342
6584      38661780 ENSG00000157554       ENST00000398910 ENSE00001535545
6585      38661780 ENSG00000157554       ENST00000398910 ENSE00003486142
6586      38661780 ENSG00000157554       ENST00000398910 ENSE00001418790
6587      38661780 ENSG00000157554       ENST00000398910 ENSE00003661463
6588      38661780 ENSG00000157554       ENST00000398910 ENSE00001411978
6589      38661780 ENSG00000157554       ENST00000453032 ENSE00003536380
6590      38661780 ENSG00000157554       ENST00000453032 ENSE00003462848
6591      38661780 ENSG00000157554       ENST00000453032 ENSE00003491473
6592      38661780 ENSG00000157554       ENST00000453032 ENSE00003585332
6593      38661780 ENSG00000157554       ENST00000453032 ENSE00001033342
6594      38661780 ENSG00000157554       ENST00000453032 ENSE00003486142
6595      38661780 ENSG00000157554       ENST00000453032 ENSE00003684785
6596      38661780 ENSG00000157554       ENST00000453032 ENSE00001858431
6597      38661780 ENSG00000157554       ENST00000453032 ENSE00002116271
6598      38661780 ENSG00000157554       ENST00000398919 ENSE00003712731
6599      38661780 ENSG00000157554       ENST00000398919 ENSE00003508916
6600      38661780 ENSG00000157554       ENST00000398919 ENSE00003536380
6601      38661780 ENSG00000157554       ENST00000398919 ENSE00003462848
6602      38661780 ENSG00000157554       ENST00000398919 ENSE00003491473
6603      38661780 ENSG00000157554       ENST00000398919 ENSE00003585332
6604      38661780 ENSG00000157554       ENST00000398919 ENSE00001033342
6605      38661780 ENSG00000157554       ENST00000398919 ENSE00003486142
6606      38661780 ENSG00000157554       ENST00000398919 ENSE00001418790
6607      38661780 ENSG00000157554       ENST00000398919 ENSE00003661463
6608      38661780 ENSG00000157554       ENST00000398919 ENSE00001768370
6609      38661780 ENSG00000157554       ENST00000398919 ENSE00001634143
6610      38661780 ENSG00000157554       ENST00000481609 ENSE00001917217
6611      38661780 ENSG00000157554       ENST00000481609 ENSE00001904038
6612      38661780 ENSG00000157554       ENST00000481609 ENSE00003511973
6613      38661780 ENSG00000157554       ENST00000481609 ENSE00003617231
6614      38661780 ENSG00000157554       ENST00000481609 ENSE00003625851
6615      38661780 ENSG00000157554       ENST00000481609 ENSE00003679569
6616      38661780 ENSG00000157554       ENST00000481609 ENSE00003664522
6617      38661780 ENSG00000157554       ENST00000481609 ENSE00003463074
6618      38661780 ENSG00000157554       ENST00000492833 ENSE00003511973
6619      38661780 ENSG00000157554       ENST00000492833 ENSE00003617231
6620      38661780 ENSG00000157554       ENST00000492833 ENSE00003625851
6621      38661780 ENSG00000157554       ENST00000492833 ENSE00003679569
6622      38661780 ENSG00000157554       ENST00000492833 ENSE00003607718
6623      38661780 ENSG00000157554       ENST00000492833 ENSE00001907734
6624      38661780 ENSG00000157554       ENST00000468474 ENSE00003579517
6625      38661780 ENSG00000157554       ENST00000468474 ENSE00001418790
6626      38661780 ENSG00000157554       ENST00000468474 ENSE00001411978
6627      38661780 ENSG00000157554       ENST00000468474 ENSE00003511973
6628      38661780 ENSG00000157554       ENST00000468474 ENSE00003617231
6629      38661780 ENSG00000157554       ENST00000468474 ENSE00003625851
6630      38661780 ENSG00000157554       ENST00000468474 ENSE00003679569
6631      38661780 ENSG00000157554       ENST00000468474 ENSE00001878367
6632      38661780 ENSG00000157554       ENST00000473107 ENSE00003511973
6633      38661780 ENSG00000157554       ENST00000473107 ENSE00003617231
6634      38661780 ENSG00000157554       ENST00000473107 ENSE00001901550
6635      38661780 ENSG00000157554       ENST00000473107 ENSE00001914919
6636      38661780 ENSG00000157554       ENST00000485493 ENSE00003579517
6637      38661780 ENSG00000157554       ENST00000485493 ENSE00001418790
6638      38661780 ENSG00000157554       ENST00000485493 ENSE00001411978
6639      38661780 ENSG00000157554       ENST00000485493 ENSE00001904038
6640      38661780 ENSG00000157554       ENST00000485493 ENSE00001924224
6641      38661780 ENSG00000157554       ENST00000442448 ENSE00003712731
6642      38661780 ENSG00000157554       ENST00000442448 ENSE00003508916
6643      38661780 ENSG00000157554       ENST00000442448 ENSE00003536380
6644      38661780 ENSG00000157554       ENST00000442448 ENSE00003462848
6645      38661780 ENSG00000157554       ENST00000442448 ENSE00003491473
6646      38661780 ENSG00000157554       ENST00000442448 ENSE00003585332
6647      38661780 ENSG00000157554       ENST00000442448 ENSE00001033342
6648      38661780 ENSG00000157554       ENST00000442448 ENSE00001418790
6649      38661780 ENSG00000157554       ENST00000442448 ENSE00003661463
6650      38661780 ENSG00000157554       ENST00000442448 ENSE00001601366
6651      38661780 ENSG00000157554       ENST00000442448 ENSE00001417176
6652      38661780 ENSG00000157554       ENST00000429727 ENSE00003508916
6653      38661780 ENSG00000157554       ENST00000429727 ENSE00003536380
6654      38661780 ENSG00000157554       ENST00000429727 ENSE00003462848
6655      38661780 ENSG00000157554       ENST00000429727 ENSE00003486142
6656      38661780 ENSG00000157554       ENST00000429727 ENSE00003579517
6657      38661780 ENSG00000157554       ENST00000429727 ENSE00001418790
6658      38661780 ENSG00000157554       ENST00000429727 ENSE00001601366
6659      38661780 ENSG00000157554       ENST00000429727 ENSE00003727479
6660      38661780 ENSG00000157554       ENST00000429727 ENSE00003726820
6661      38502621 ENSG00000231480       ENST00000442212 ENSE00001746267
6662      38333421 ENSG00000231231       ENST00000414189 ENSE00001668823
6663      38333421 ENSG00000231231       ENST00000414189 ENSE00001595871
6664      38333421 ENSG00000231231       ENST00000414189 ENSE00001671015
6665      38333421 ENSG00000231231       ENST00000414189 ENSE00001784646
6666      38333421 ENSG00000231231       ENST00000414189 ENSE00001639894
6667      38333421 ENSG00000231231       ENST00000436845 ENSE00001595871
6668      38333421 ENSG00000231231       ENST00000436845 ENSE00001671015
6669      38333421 ENSG00000231231       ENST00000436845 ENSE00001802888
6670      38333421 ENSG00000231231       ENST00000436845 ENSE00001628080
6671      38307357 ENSG00000157551       ENST00000549158 ENSE00002335868
6672      38307357 ENSG00000157551       ENST00000549158 ENSE00003458938
6673      38307357 ENSG00000157551       ENST00000549158 ENSE00001301985
6674      38307357 ENSG00000157551       ENST00000549158 ENSE00002374819
6675      38307357 ENSG00000157551       ENST00000549158 ENSE00001033335
6676      38307357 ENSG00000157551       ENST00000549158 ENSE00002348116
6677      38307357 ENSG00000157551       ENST00000549805 ENSE00002335868
6678      38307357 ENSG00000157551       ENST00000549805 ENSE00003458938
6679      38307357 ENSG00000157551       ENST00000549805 ENSE00001301985
6680      38307357 ENSG00000157551       ENST00000549805 ENSE00002374819
6681      38307357 ENSG00000157551       ENST00000549805 ENSE00001033335
6682      38307357 ENSG00000157551       ENST00000549805 ENSE00002343752
6683      38307357 ENSG00000157551       ENST00000549805 ENSE00002402049
6684      38307357 ENSG00000157551       ENST00000547341 ENSE00002335868
6685      38307357 ENSG00000157551       ENST00000547341 ENSE00001301985
6686      38307357 ENSG00000157551       ENST00000547341 ENSE00002374819
6687      38307357 ENSG00000157551       ENST00000547341 ENSE00001033335
6688      38307357 ENSG00000157551       ENST00000547341 ENSE00002402049
6689      38307357 ENSG00000157551       ENST00000549932 ENSE00002335868
6690      38307357 ENSG00000157551       ENST00000549932 ENSE00003458938
6691      38307357 ENSG00000157551       ENST00000549932 ENSE00002374819
6692      38307357 ENSG00000157551       ENST00000549932 ENSE00001033335
6693      38307357 ENSG00000157551       ENST00000549932 ENSE00002402049
6694      38307357 ENSG00000157551       ENST00000547595 ENSE00002335868
6695      38307357 ENSG00000157551       ENST00000547595 ENSE00001033335
6696      38307357 ENSG00000157551       ENST00000547595 ENSE00002402049
6697      38307357 ENSG00000157551       ENST00000548700 ENSE00002335868
6698      38307357 ENSG00000157551       ENST00000548700 ENSE00001033335
6699      38307357 ENSG00000157551       ENST00000548700 ENSE00002383535
6700      38307357 ENSG00000157551       ENST00000551422 ENSE00002335868
6701      38307357 ENSG00000157551       ENST00000551422 ENSE00003458938
6702      38307357 ENSG00000157551       ENST00000551422 ENSE00001033335
6703      38307357 ENSG00000157551       ENST00000551422 ENSE00002402049
6704      38307357 ENSG00000157551       ENST00000398925 ENSE00001033335
6705      38307357 ENSG00000157551       ENST00000398925 ENSE00001535620
6706      38307357 ENSG00000157551       ENST00000398925 ENSE00001535617
6707      38307357 ENSG00000157551       ENST00000398925 ENSE00001535636
6708      38307357 ENSG00000157551       ENST00000398925 ENSE00001535612
6709      38307357 ENSG00000157551       ENST00000398928 ENSE00001033335
6710      38307357 ENSG00000157551       ENST00000398928 ENSE00001535620
6711      38307357 ENSG00000157551       ENST00000398928 ENSE00001535617
6712      38307357 ENSG00000157551       ENST00000398928 ENSE00001535616
6713      38307357 ENSG00000157551       ENST00000328656 ENSE00001301985
6714      38307357 ENSG00000157551       ENST00000328656 ENSE00001033335
6715      38307357 ENSG00000157551       ENST00000328656 ENSE00001535620
6716      38307357 ENSG00000157551       ENST00000328656 ENSE00003705460
6717      38307357 ENSG00000157551       ENST00000443341 ENSE00001301985
6718      38307357 ENSG00000157551       ENST00000443341 ENSE00001033335
6719      38307357 ENSG00000157551       ENST00000443341 ENSE00001033337
6720      38307357 ENSG00000157551       ENST00000443341 ENSE00001668739
6721      38307357 ENSG00000157551       ENST00000443341 ENSE00001741850
6722      38307357 ENSG00000157551       ENST00000443341 ENSE00001691624
6723      38307357 ENSG00000157551       ENST00000443341 ENSE00001794215
6724      38307357 ENSG00000157551       ENST00000417042 ENSE00001033335
6725      38307357 ENSG00000157551       ENST00000417042 ENSE00001535636
6726      38307357 ENSG00000157551       ENST00000417042 ENSE00001740674
6727      38307357 ENSG00000157551       ENST00000417042 ENSE00001687965
6728      38307357 ENSG00000157551       ENST00000417042 ENSE00001795470
6729      38307357 ENSG00000157551       ENST00000398938 ENSE00001033335
6730      38307357 ENSG00000157551       ENST00000398938 ENSE00001535646
6731      38307357 ENSG00000157551       ENST00000398938 ENSE00001848721
6732      38307357 ENSG00000157551       ENST00000398932 ENSE00001033335
6733      38307357 ENSG00000157551       ENST00000398932 ENSE00001535636
6734      38307357 ENSG00000157551       ENST00000398932 ENSE00001535637
6735      38307357 ENSG00000157551       ENST00000398932 ENSE00001535635
6736      38307357 ENSG00000157551       ENST00000438657 ENSE00001033335
6737      38307357 ENSG00000157551       ENST00000438657 ENSE00001593022
6738      38307357 ENSG00000157551       ENST00000438657 ENSE00001733831
6739      38307357 ENSG00000157551       ENST00000398930 ENSE00001033335
6740      38307357 ENSG00000157551       ENST00000398930 ENSE00001535636
6741      38307357 ENSG00000157551       ENST00000398930 ENSE00001535627
6742      38307357 ENSG00000157551       ENST00000398930 ENSE00001535623
6743      38307357 ENSG00000157551       ENST00000398927 ENSE00001033335
6744      38307357 ENSG00000157551       ENST00000398927 ENSE00001535616
6745      38307357 ENSG00000157551       ENST00000398927 ENSE00001535614
6746      38307357 ENSG00000157551       ENST00000419868 ENSE00001708040
6747      38307357 ENSG00000157551       ENST00000419868 ENSE00001634929
6748      38307357 ENSG00000157551       ENST00000398934 ENSE00001033335
6749      38307357 ENSG00000157551       ENST00000398934 ENSE00001535638
6750      38307357 ENSG00000157551       ENST00000398934 ENSE00001204566
6751      38307357 ENSG00000157551       ENST00000613499 ENSE00001301985
6752      38307357 ENSG00000157551       ENST00000613499 ENSE00002374819
6753      38307357 ENSG00000157551       ENST00000613499 ENSE00001033335
6754      38307357 ENSG00000157551       ENST00000613499 ENSE00001204566
6755      38307357 ENSG00000157551       ENST00000613499 ENSE00003739382
6756      38307357 ENSG00000157551       ENST00000612702 ENSE00001301985
6757      38307357 ENSG00000157551       ENST00000612702 ENSE00001033335
6758      38307357 ENSG00000157551       ENST00000612702 ENSE00001687965
6759      38307357 ENSG00000157551       ENST00000612702 ENSE00001204566
6760      38307357 ENSG00000157551       ENST00000612702 ENSE00003739382
6761      38238664 ENSG00000231123       ENST00000423089 ENSE00001631309
6762      38238201 ENSG00000226012       ENST00000444977 ENSE00001622733
6763      38238201 ENSG00000226012       ENST00000444977 ENSE00001723018
6764      38208644 ENSG00000233316       ENST00000432141 ENSE00001675372
6765      38208644 ENSG00000233316       ENST00000432141 ENSE00001748556
6766      38208644 ENSG00000233316       ENST00000432141 ENSE00001599007
6767      38206080 ENSG00000270835       ENST00000632732 ENSE00003783744
6768      38206080 ENSG00000270835       ENST00000605450 ENSE00003531011
6769      38188016 ENSG00000198054       ENST00000478613 ENSE00001543100
6770      38188016 ENSG00000198054       ENST00000478613 ENSE00001823347
6771      38188016 ENSG00000198054       ENST00000478613 ENSE00003553519
6772      38188016 ENSG00000198054       ENST00000469658 ENSE00003553519
6773      38188016 ENSG00000198054       ENST00000469658 ENSE00001889291
6774      38188016 ENSG00000198054       ENST00000469658 ENSE00003487169
6775      38188016 ENSG00000198054       ENST00000400477 ENSE00001889291
6776      38188016 ENSG00000198054       ENST00000400477 ENSE00003629219
6777      38188016 ENSG00000198054       ENST00000400477 ENSE00003659379
6778      38188016 ENSG00000198054       ENST00000400477 ENSE00003490576
6779      38188016 ENSG00000198054       ENST00000495344 ENSE00003553519
6780      38188016 ENSG00000198054       ENST00000495344 ENSE00001889291
6781      38188016 ENSG00000198054       ENST00000495344 ENSE00001901680
6782      38188016 ENSG00000198054       ENST00000495344 ENSE00003623237
6783      38188016 ENSG00000198054       ENST00000465532 ENSE00001823347
6784      38188016 ENSG00000198054       ENST00000465532 ENSE00003553519
6785      38188016 ENSG00000198054       ENST00000465532 ENSE00001889291
6786      38188016 ENSG00000198054       ENST00000465532 ENSE00003623237
6787      38188016 ENSG00000198054       ENST00000357704 ENSE00001889291
6788      38188016 ENSG00000198054       ENST00000357704 ENSE00003629219
6789      38188016 ENSG00000198054       ENST00000357704 ENSE00003490576
6790      38188016 ENSG00000198054       ENST00000357704 ENSE00001403971
6791      38188016 ENSG00000198054       ENST00000472602 ENSE00001914207
6792      38188016 ENSG00000198054       ENST00000472602 ENSE00001853687
6793      38188016 ENSG00000198054       ENST00000472602 ENSE00001841247
6794      38188016 ENSG00000198054       ENST00000472602 ENSE00003623257
6795      38188016 ENSG00000198054       ENST00000472602 ENSE00001874392
6796      38188016 ENSG00000198054       ENST00000614538 ENSE00003490576
6797      38188016 ENSG00000198054       ENST00000614538 ENSE00001403971
6798      38188016 ENSG00000198054       ENST00000614538 ENSE00003737079
6799      38121360 ENSG00000184029       ENST00000398948 ENSE00001327109
6800      38121360 ENSG00000184029       ENST00000398948 ENSE00001302780
6801      38121360 ENSG00000184029       ENST00000398948 ENSE00001535708
6802      38121360 ENSG00000184029       ENST00000398948 ENSE00001535707
6803      38121360 ENSG00000184029       ENST00000328264 ENSE00001302780
6804      38121360 ENSG00000184029       ENST00000328264 ENSE00001535700
6805      38121360 ENSG00000184029       ENST00000328264 ENSE00001329903
6806      38121360 ENSG00000184029       ENST00000482032 ENSE00001302780
6807      38121360 ENSG00000184029       ENST00000482032 ENSE00001894998
6808      38121360 ENSG00000184029       ENST00000482032 ENSE00001829380
6809      38121360 ENSG00000184029       ENST00000482032 ENSE00001879419
6810      38121360 ENSG00000184029       ENST00000482032 ENSE00001902539
6811      38121360 ENSG00000184029       ENST00000482032 ENSE00001920353
6812      38010618 ENSG00000223608       ENST00000417138 ENSE00001763784
6813      38010618 ENSG00000223608       ENST00000417138 ENSE00001610692
6814      37916446 ENSG00000157542       ENST00000609713 ENSE00001543119
6815      37916446 ENSG00000157542       ENST00000609713 ENSE00001543115
6816      37916446 ENSG00000157542       ENST00000609713 ENSE00001033313
6817      37916446 ENSG00000157542       ENST00000609713 ENSE00003704485
6818      37719569 ENSG00000233213       ENST00000435001 ENSE00001786587
6819      37719569 ENSG00000233213       ENST00000435001 ENSE00001695569
6820      37517450 ENSG00000157540       ENST00000608928 ENSE00003711430
6821      37517450 ENSG00000157540       ENST00000608928 ENSE00003706399
6822      37517450 ENSG00000157540       ENST00000462274 ENSE00001850859
6823      37517450 ENSG00000157540       ENST00000462274 ENSE00003485669
6824      37517450 ENSG00000157540       ENST00000462274 ENSE00003551425
6825      37517450 ENSG00000157540       ENST00000462274 ENSE00003675684
6826      37517450 ENSG00000157540       ENST00000462274 ENSE00002490272
6827      37517450 ENSG00000157540       ENST00000338785 ENSE00001535758
6828      37517450 ENSG00000157540       ENST00000338785 ENSE00001535757
6829      37517450 ENSG00000157540       ENST00000338785 ENSE00001369433
6830      37517450 ENSG00000157540       ENST00000338785 ENSE00003504646
6831      37517450 ENSG00000157540       ENST00000338785 ENSE00001033279
6832      37517450 ENSG00000157540       ENST00000338785 ENSE00003584551
6833      37517450 ENSG00000157540       ENST00000338785 ENSE00001033299
6834      37517450 ENSG00000157540       ENST00000338785 ENSE00003636141
6835      37517450 ENSG00000157540       ENST00000338785 ENSE00001033275
6836      37517450 ENSG00000157540       ENST00000338785 ENSE00001033294
6837      37517450 ENSG00000157540       ENST00000338785 ENSE00001262033
6838      37517450 ENSG00000157540       ENST00000338785 ENSE00001535755
6839      37517450 ENSG00000157540       ENST00000338785 ENSE00001366089
6840      37517450 ENSG00000157540       ENST00000455097 ENSE00001369433
6841      37517450 ENSG00000157540       ENST00000455097 ENSE00001677823
6842      37517450 ENSG00000157540       ENST00000455097 ENSE00002371522
6843      37517450 ENSG00000157540       ENST00000455097 ENSE00001766104
6844      37517450 ENSG00000157540       ENST00000426672 ENSE00001369433
6845      37517450 ENSG00000157540       ENST00000426672 ENSE00003504646
6846      37517450 ENSG00000157540       ENST00000426672 ENSE00001033279
6847      37517450 ENSG00000157540       ENST00000426672 ENSE00001677823
6848      37517450 ENSG00000157540       ENST00000426672 ENSE00001803088
6849      37517450 ENSG00000157540       ENST00000339659 ENSE00003504646
6850      37517450 ENSG00000157540       ENST00000339659 ENSE00003584551
6851      37517450 ENSG00000157540       ENST00000339659 ENSE00001033299
6852      37517450 ENSG00000157540       ENST00000339659 ENSE00003636141
6853      37517450 ENSG00000157540       ENST00000339659 ENSE00001033275
6854      37517450 ENSG00000157540       ENST00000339659 ENSE00001033294
6855      37517450 ENSG00000157540       ENST00000339659 ENSE00001262033
6856      37517450 ENSG00000157540       ENST00000339659 ENSE00001311564
6857      37517450 ENSG00000157540       ENST00000339659 ENSE00003459385
6858      37517450 ENSG00000157540       ENST00000339659 ENSE00001033292
6859      37517450 ENSG00000157540       ENST00000339659 ENSE00001874589
6860      37517450 ENSG00000157540       ENST00000398960 ENSE00003504646
6861      37517450 ENSG00000157540       ENST00000398960 ENSE00001033279
6862      37517450 ENSG00000157540       ENST00000398960 ENSE00003584551
6863      37517450 ENSG00000157540       ENST00000398960 ENSE00001033299
6864      37517450 ENSG00000157540       ENST00000398960 ENSE00003636141
6865      37517450 ENSG00000157540       ENST00000398960 ENSE00001033275
6866      37517450 ENSG00000157540       ENST00000398960 ENSE00001033294
6867      37517450 ENSG00000157540       ENST00000398960 ENSE00001262033
6868      37517450 ENSG00000157540       ENST00000398960 ENSE00001033292
6869      37517450 ENSG00000157540       ENST00000398960 ENSE00001819841
6870      37517450 ENSG00000157540       ENST00000398960 ENSE00001828801
6871      37517450 ENSG00000157540       ENST00000498351 ENSE00001828382
6872      37517450 ENSG00000157540       ENST00000498351 ENSE00001867423
6873      37517450 ENSG00000157540       ENST00000498351 ENSE00001855557
6874      37517450 ENSG00000157540       ENST00000398956 ENSE00003504646
6875      37517450 ENSG00000157540       ENST00000398956 ENSE00001033279
6876      37517450 ENSG00000157540       ENST00000398956 ENSE00003584551
6877      37517450 ENSG00000157540       ENST00000398956 ENSE00001033299
6878      37517450 ENSG00000157540       ENST00000398956 ENSE00003636141
6879      37517450 ENSG00000157540       ENST00000398956 ENSE00001033275
6880      37517450 ENSG00000157540       ENST00000398956 ENSE00001033294
6881      37517450 ENSG00000157540       ENST00000398956 ENSE00001262033
6882      37517450 ENSG00000157540       ENST00000398956 ENSE00002526606
6883      37517450 ENSG00000157540       ENST00000398956 ENSE00001924399
6884      37365932 ENSG00000273210       ENST00000608783 ENSE00003705388
6885      37268497 ENSG00000272948       ENST00000608405 ENSE00003705623
6886      37267919 ENSG00000157538       ENST00000497493 ENSE00001863158
6887      37267919 ENSG00000157538       ENST00000497493 ENSE00001838101
6888      37267919 ENSG00000157538       ENST00000309117 ENSE00001535907
6889      37267919 ENSG00000157538       ENST00000309117 ENSE00003523339
6890      37267919 ENSG00000157538       ENST00000309117 ENSE00003458727
6891      37267919 ENSG00000157538       ENST00000309117 ENSE00003520824
6892      37267919 ENSG00000157538       ENST00000309117 ENSE00003505095
6893      37267919 ENSG00000157538       ENST00000309117 ENSE00003615492
6894      37267919 ENSG00000157538       ENST00000309117 ENSE00003635629
6895      37267919 ENSG00000157538       ENST00000309117 ENSE00003490386
6896      37267919 ENSG00000157538       ENST00000399000 ENSE00001814007
6897      37267919 ENSG00000157538       ENST00000399000 ENSE00003679523
6898      37267919 ENSG00000157538       ENST00000399000 ENSE00003569704
6899      37267919 ENSG00000157538       ENST00000399000 ENSE00003609994
6900      37267919 ENSG00000157538       ENST00000399000 ENSE00001851352
6901      37267919 ENSG00000157538       ENST00000399000 ENSE00001825203
6902      37267919 ENSG00000157538       ENST00000399000 ENSE00001847806
6903      37267919 ENSG00000157538       ENST00000399000 ENSE00003690629
6904      37267919 ENSG00000157538       ENST00000399000 ENSE00003642305
6905      37267919 ENSG00000157538       ENST00000399000 ENSE00003619075
6906      37267919 ENSG00000157538       ENST00000399001 ENSE00003505095
6907      37267919 ENSG00000157538       ENST00000399001 ENSE00003615492
6908      37267919 ENSG00000157538       ENST00000399001 ENSE00003635629
6909      37267919 ENSG00000157538       ENST00000399001 ENSE00001535918
6910      37267919 ENSG00000157538       ENST00000399001 ENSE00001535917
6911      37267919 ENSG00000157538       ENST00000476950 ENSE00003523339
6912      37267919 ENSG00000157538       ENST00000476950 ENSE00003458727
6913      37267919 ENSG00000157538       ENST00000476950 ENSE00003505095
6914      37267919 ENSG00000157538       ENST00000476950 ENSE00003615492
6915      37267919 ENSG00000157538       ENST00000476950 ENSE00003635629
6916      37267919 ENSG00000157538       ENST00000476950 ENSE00001870537
6917      37267919 ENSG00000157538       ENST00000476950 ENSE00001930684
6918      37267919 ENSG00000157538       ENST00000488368 ENSE00003679523
6919      37267919 ENSG00000157538       ENST00000488368 ENSE00003569704
6920      37267919 ENSG00000157538       ENST00000488368 ENSE00003609994
6921      37267919 ENSG00000157538       ENST00000488368 ENSE00003690629
6922      37267919 ENSG00000157538       ENST00000488368 ENSE00003642305
6923      37267919 ENSG00000157538       ENST00000488368 ENSE00001879923
6924      37267919 ENSG00000157538       ENST00000488368 ENSE00001901807
6925      37267919 ENSG00000157538       ENST00000488368 ENSE00003590920
6926      37267919 ENSG00000157538       ENST00000488368 ENSE00001919170
6927      37267919 ENSG00000157538       ENST00000398998 ENSE00001535907
6928      37267919 ENSG00000157538       ENST00000398998 ENSE00003458727
6929      37267919 ENSG00000157538       ENST00000398998 ENSE00003520824
6930      37267919 ENSG00000157538       ENST00000398998 ENSE00003505095
6931      37267919 ENSG00000157538       ENST00000398998 ENSE00003615492
6932      37267919 ENSG00000157538       ENST00000398998 ENSE00003635629
6933      37267919 ENSG00000157538       ENST00000398998 ENSE00001535905
6934      37267919 ENSG00000157538       ENST00000495858 ENSE00003609994
6935      37267919 ENSG00000157538       ENST00000495858 ENSE00003590920
6936      37267919 ENSG00000157538       ENST00000495858 ENSE00001889967
6937      37267919 ENSG00000157538       ENST00000495858 ENSE00001952028
6938      37267919 ENSG00000157538       ENST00000480452 ENSE00003679523
6939      37267919 ENSG00000157538       ENST00000480452 ENSE00003569704
6940      37267919 ENSG00000157538       ENST00000480452 ENSE00001823421
6941      37267919 ENSG00000157538       ENST00000480452 ENSE00001922878
6942      37267919 ENSG00000157538       ENST00000475009 ENSE00003679523
6943      37267919 ENSG00000157538       ENST00000475009 ENSE00001948394
6944      37267919 ENSG00000157538       ENST00000475009 ENSE00001921742
6945      37267919 ENSG00000157538       ENST00000492514 ENSE00001903216
6946      37267919 ENSG00000157538       ENST00000492514 ENSE00001843513
6947      37267919 ENSG00000157538       ENST00000462467 ENSE00001837948
6948      37267919 ENSG00000157538       ENST00000462467 ENSE00001892436
6949      37267919 ENSG00000157538       ENST00000498789 ENSE00001892436
6950      37267919 ENSG00000157538       ENST00000498789 ENSE00001897034
6951      37237744 ENSG00000242553       ENST00000440629 ENSE00001611756
6952      37237744 ENSG00000242553       ENST00000440629 ENSE00001775751
6953      37221736 ENSG00000230366       ENST00000581640 ENSE00001725341
6954      37221736 ENSG00000230366       ENST00000581640 ENSE00001775785
6955      37221736 ENSG00000230366       ENST00000581640 ENSE00002721013
6956      37221736 ENSG00000230366       ENST00000581640 ENSE00002730956
6957      37221736 ENSG00000230366       ENST00000581640 ENSE00002712199
6958      37221736 ENSG00000230366       ENST00000578829 ENSE00001725341
6959      37221736 ENSG00000230366       ENST00000578829 ENSE00001775785
6960      37221736 ENSG00000230366       ENST00000578829 ENSE00002693074
6961      37221736 ENSG00000230366       ENST00000578829 ENSE00002698248
6962      37221736 ENSG00000230366       ENST00000585273 ENSE00001725341
6963      37221736 ENSG00000230366       ENST00000585273 ENSE00001775785
6964      37221736 ENSG00000230366       ENST00000585273 ENSE00002730956
6965      37221736 ENSG00000230366       ENST00000585273 ENSE00002693074
6966      37221736 ENSG00000230366       ENST00000585273 ENSE00002723329
6967      37221736 ENSG00000230366       ENST00000584840 ENSE00001725341
6968      37221736 ENSG00000230366       ENST00000584840 ENSE00001775785
6969      37221736 ENSG00000230366       ENST00000584840 ENSE00002730956
6970      37221736 ENSG00000230366       ENST00000584840 ENSE00002685409
6971      37221736 ENSG00000230366       ENST00000454482 ENSE00001725341
6972      37221736 ENSG00000230366       ENST00000454482 ENSE00001775785
6973      37221736 ENSG00000230366       ENST00000454482 ENSE00001786499
6974      37215903 ENSG00000263969       ENST00000579533 ENSE00002704881
6975      37203112 ENSG00000182670       ENST00000492275 ENSE00001926459
6976      37203112 ENSG00000182670       ENST00000492275 ENSE00003492829
6977      37203112 ENSG00000182670       ENST00000492275 ENSE00003616905
6978      37203112 ENSG00000182670       ENST00000492275 ENSE00003489082
6979      37203112 ENSG00000182670       ENST00000492275 ENSE00003506193
6980      37203112 ENSG00000182670       ENST00000492275 ENSE00003496994
6981      37203112 ENSG00000182670       ENST00000492275 ENSE00003608391
6982      37203112 ENSG00000182670       ENST00000492275 ENSE00003552849
6983      37203112 ENSG00000182670       ENST00000492275 ENSE00001867322
6984      37203112 ENSG00000182670       ENST00000418766 ENSE00001635826
6985      37203112 ENSG00000182670       ENST00000418766 ENSE00003656604
6986      37203112 ENSG00000182670       ENST00000418766 ENSE00003656402
6987      37203112 ENSG00000182670       ENST00000418766 ENSE00003612884
6988      37203112 ENSG00000182670       ENST00000418766 ENSE00003656477
6989      37203112 ENSG00000182670       ENST00000418766 ENSE00003675922
6990      37203112 ENSG00000182670       ENST00000418766 ENSE00003507071
6991      37203112 ENSG00000182670       ENST00000418766 ENSE00003482158
6992      37203112 ENSG00000182670       ENST00000418766 ENSE00003608941
6993      37203112 ENSG00000182670       ENST00000418766 ENSE00003565200
6994      37203112 ENSG00000182670       ENST00000418766 ENSE00003637056
6995      37203112 ENSG00000182670       ENST00000418766 ENSE00003465554
6996      37203112 ENSG00000182670       ENST00000418766 ENSE00003494877
6997      37203112 ENSG00000182670       ENST00000418766 ENSE00003476101
6998      37203112 ENSG00000182670       ENST00000418766 ENSE00003460189
6999      37203112 ENSG00000182670       ENST00000418766 ENSE00003511582
7000      37203112 ENSG00000182670       ENST00000418766 ENSE00003665746
7001      37203112 ENSG00000182670       ENST00000418766 ENSE00003690606
7002      37203112 ENSG00000182670       ENST00000418766 ENSE00003577978
7003      37203112 ENSG00000182670       ENST00000418766 ENSE00003628284
7004      37203112 ENSG00000182670       ENST00000418766 ENSE00003654536
7005      37203112 ENSG00000182670       ENST00000418766 ENSE00003473796
7006      37203112 ENSG00000182670       ENST00000418766 ENSE00003665897
7007      37203112 ENSG00000182670       ENST00000418766 ENSE00003500879
7008      37203112 ENSG00000182670       ENST00000418766 ENSE00003524799
7009      37203112 ENSG00000182670       ENST00000418766 ENSE00003628441
7010      37203112 ENSG00000182670       ENST00000418766 ENSE00003791477
7011      37203112 ENSG00000182670       ENST00000418766 ENSE00003530987
7012      37203112 ENSG00000182670       ENST00000418766 ENSE00003687576
7013      37203112 ENSG00000182670       ENST00000418766 ENSE00003536562
7014      37203112 ENSG00000182670       ENST00000418766 ENSE00003627255
7015      37203112 ENSG00000182670       ENST00000418766 ENSE00003661197
7016      37203112 ENSG00000182670       ENST00000418766 ENSE00001603321
7017      37203112 ENSG00000182670       ENST00000485402 ENSE00003492829
7018      37203112 ENSG00000182670       ENST00000485402 ENSE00003616905
7019      37203112 ENSG00000182670       ENST00000485402 ENSE00003489082
7020      37203112 ENSG00000182670       ENST00000485402 ENSE00003506193
7021      37203112 ENSG00000182670       ENST00000485402 ENSE00003496994
7022      37203112 ENSG00000182670       ENST00000485402 ENSE00003608391
7023      37203112 ENSG00000182670       ENST00000485402 ENSE00003552849
7024      37203112 ENSG00000182670       ENST00000485402 ENSE00001913164
7025      37203112 ENSG00000182670       ENST00000485402 ENSE00003553663
7026      37203112 ENSG00000182670       ENST00000485402 ENSE00003633215
7027      37203112 ENSG00000182670       ENST00000485402 ENSE00003628855
7028      37203112 ENSG00000182670       ENST00000485402 ENSE00003599881
7029      37203112 ENSG00000182670       ENST00000485402 ENSE00003473338
7030      37203112 ENSG00000182670       ENST00000485402 ENSE00003513098
7031      37203112 ENSG00000182670       ENST00000485402 ENSE00003593783
7032      37203112 ENSG00000182670       ENST00000485402 ENSE00003465547
7033      37203112 ENSG00000182670       ENST00000485402 ENSE00003482670
7034      37203112 ENSG00000182670       ENST00000485402 ENSE00003530526
7035      37203112 ENSG00000182670       ENST00000485402 ENSE00003576767
7036      37203112 ENSG00000182670       ENST00000485402 ENSE00003691391
7037      37203112 ENSG00000182670       ENST00000485402 ENSE00003521393
7038      37203112 ENSG00000182670       ENST00000485402 ENSE00003597362
7039      37203112 ENSG00000182670       ENST00000485402 ENSE00003595792
7040      37203112 ENSG00000182670       ENST00000485402 ENSE00003585112
7041      37203112 ENSG00000182670       ENST00000485402 ENSE00003584754
7042      37203112 ENSG00000182670       ENST00000485402 ENSE00003476752
7043      37203112 ENSG00000182670       ENST00000485402 ENSE00003674933
7044      37203112 ENSG00000182670       ENST00000485402 ENSE00003491750
7045      37203112 ENSG00000182670       ENST00000485402 ENSE00003515585
7046      37203112 ENSG00000182670       ENST00000485402 ENSE00003626252
7047      37203112 ENSG00000182670       ENST00000485402 ENSE00003559674
7048      37203112 ENSG00000182670       ENST00000485402 ENSE00003676478
7049      37203112 ENSG00000182670       ENST00000450533 ENSE00003656604
7050      37203112 ENSG00000182670       ENST00000450533 ENSE00003656402
7051      37203112 ENSG00000182670       ENST00000450533 ENSE00003612884
7052      37203112 ENSG00000182670       ENST00000450533 ENSE00003656477
7053      37203112 ENSG00000182670       ENST00000450533 ENSE00003675922
7054      37203112 ENSG00000182670       ENST00000450533 ENSE00003507071
7055      37203112 ENSG00000182670       ENST00000450533 ENSE00003482158
7056      37203112 ENSG00000182670       ENST00000450533 ENSE00003608941
7057      37203112 ENSG00000182670       ENST00000450533 ENSE00003565200
7058      37203112 ENSG00000182670       ENST00000450533 ENSE00003637056
7059      37203112 ENSG00000182670       ENST00000450533 ENSE00003465554
7060      37203112 ENSG00000182670       ENST00000450533 ENSE00003494877
7061      37203112 ENSG00000182670       ENST00000450533 ENSE00003476101
7062      37203112 ENSG00000182670       ENST00000450533 ENSE00003460189
7063      37203112 ENSG00000182670       ENST00000450533 ENSE00003511582
7064      37203112 ENSG00000182670       ENST00000450533 ENSE00003665746
7065      37203112 ENSG00000182670       ENST00000450533 ENSE00003690606
7066      37203112 ENSG00000182670       ENST00000450533 ENSE00003577978
7067      37203112 ENSG00000182670       ENST00000450533 ENSE00003628284
7068      37203112 ENSG00000182670       ENST00000450533 ENSE00003654536
7069      37203112 ENSG00000182670       ENST00000450533 ENSE00003473796
7070      37203112 ENSG00000182670       ENST00000450533 ENSE00003665897
7071      37203112 ENSG00000182670       ENST00000450533 ENSE00003500879
7072      37203112 ENSG00000182670       ENST00000450533 ENSE00003524799
7073      37203112 ENSG00000182670       ENST00000450533 ENSE00001430930
7074      37203112 ENSG00000182670       ENST00000450533 ENSE00001599328
7075      37203112 ENSG00000182670       ENST00000438055 ENSE00003656604
7076      37203112 ENSG00000182670       ENST00000438055 ENSE00003656402
7077      37203112 ENSG00000182670       ENST00000438055 ENSE00003612884
7078      37203112 ENSG00000182670       ENST00000438055 ENSE00003656477
7079      37203112 ENSG00000182670       ENST00000438055 ENSE00003507071
7080      37203112 ENSG00000182670       ENST00000438055 ENSE00003482158
7081      37203112 ENSG00000182670       ENST00000438055 ENSE00003608941
7082      37203112 ENSG00000182670       ENST00000438055 ENSE00003565200
7083      37203112 ENSG00000182670       ENST00000438055 ENSE00003637056
7084      37203112 ENSG00000182670       ENST00000438055 ENSE00003465554
7085      37203112 ENSG00000182670       ENST00000438055 ENSE00003494877
7086      37203112 ENSG00000182670       ENST00000438055 ENSE00003476101
7087      37203112 ENSG00000182670       ENST00000438055 ENSE00003460189
7088      37203112 ENSG00000182670       ENST00000438055 ENSE00003511582
7089      37203112 ENSG00000182670       ENST00000438055 ENSE00003665746
7090      37203112 ENSG00000182670       ENST00000438055 ENSE00003690606
7091      37203112 ENSG00000182670       ENST00000438055 ENSE00003577978
7092      37203112 ENSG00000182670       ENST00000438055 ENSE00003628284
7093      37203112 ENSG00000182670       ENST00000438055 ENSE00003654536
7094      37203112 ENSG00000182670       ENST00000438055 ENSE00003473796
7095      37203112 ENSG00000182670       ENST00000438055 ENSE00003665897
7096      37203112 ENSG00000182670       ENST00000438055 ENSE00003500879
7097      37203112 ENSG00000182670       ENST00000438055 ENSE00003524799
7098      37203112 ENSG00000182670       ENST00000438055 ENSE00003628441
7099      37203112 ENSG00000182670       ENST00000438055 ENSE00003791477
7100      37203112 ENSG00000182670       ENST00000438055 ENSE00003530987
7101      37203112 ENSG00000182670       ENST00000438055 ENSE00003687576
7102      37203112 ENSG00000182670       ENST00000438055 ENSE00003536562
7103      37203112 ENSG00000182670       ENST00000438055 ENSE00003627255
7104      37203112 ENSG00000182670       ENST00000438055 ENSE00003661197
7105      37203112 ENSG00000182670       ENST00000438055 ENSE00001430930
7106      37203112 ENSG00000182670       ENST00000438055 ENSE00003545372
7107      37203112 ENSG00000182670       ENST00000463216 ENSE00003492829
7108      37203112 ENSG00000182670       ENST00000463216 ENSE00003616905
7109      37203112 ENSG00000182670       ENST00000463216 ENSE00003489082
7110      37203112 ENSG00000182670       ENST00000463216 ENSE00003506193
7111      37203112 ENSG00000182670       ENST00000463216 ENSE00003496994
7112      37203112 ENSG00000182670       ENST00000463216 ENSE00003608391
7113      37203112 ENSG00000182670       ENST00000463216 ENSE00003552849
7114      37203112 ENSG00000182670       ENST00000463216 ENSE00001846091
7115      37203112 ENSG00000182670       ENST00000463216 ENSE00001893223
7116      37203112 ENSG00000182670       ENST00000481605 ENSE00003492829
7117      37203112 ENSG00000182670       ENST00000481605 ENSE00003489082
7118      37203112 ENSG00000182670       ENST00000481605 ENSE00003506193
7119      37203112 ENSG00000182670       ENST00000481605 ENSE00003496994
7120      37203112 ENSG00000182670       ENST00000481605 ENSE00003608391
7121      37203112 ENSG00000182670       ENST00000481605 ENSE00003552849
7122      37203112 ENSG00000182670       ENST00000481605 ENSE00003482670
7123      37203112 ENSG00000182670       ENST00000481605 ENSE00003530526
7124      37203112 ENSG00000182670       ENST00000481605 ENSE00003576767
7125      37203112 ENSG00000182670       ENST00000481605 ENSE00003691391
7126      37203112 ENSG00000182670       ENST00000481605 ENSE00003521393
7127      37203112 ENSG00000182670       ENST00000481605 ENSE00003597362
7128      37203112 ENSG00000182670       ENST00000481605 ENSE00003595792
7129      37203112 ENSG00000182670       ENST00000481605 ENSE00003585112
7130      37203112 ENSG00000182670       ENST00000481605 ENSE00001846091
7131      37203112 ENSG00000182670       ENST00000481605 ENSE00001846651
7132      37203112 ENSG00000182670       ENST00000494243 ENSE00003492829
7133      37203112 ENSG00000182670       ENST00000494243 ENSE00003616905
7134      37203112 ENSG00000182670       ENST00000494243 ENSE00003489082
7135      37203112 ENSG00000182670       ENST00000494243 ENSE00003506193
7136      37203112 ENSG00000182670       ENST00000494243 ENSE00003496994
7137      37203112 ENSG00000182670       ENST00000494243 ENSE00003608391
7138      37203112 ENSG00000182670       ENST00000494243 ENSE00003552849
7139      37203112 ENSG00000182670       ENST00000494243 ENSE00001810102
7140      37203112 ENSG00000182670       ENST00000494243 ENSE00001942305
7141      37203112 ENSG00000182670       ENST00000494243 ENSE00001893020
7142      37203112 ENSG00000182670       ENST00000540756 ENSE00003492829
7143      37203112 ENSG00000182670       ENST00000540756 ENSE00003494877
7144      37203112 ENSG00000182670       ENST00000540756 ENSE00003476101
7145      37203112 ENSG00000182670       ENST00000540756 ENSE00003460189
7146      37203112 ENSG00000182670       ENST00000540756 ENSE00003511582
7147      37203112 ENSG00000182670       ENST00000540756 ENSE00003665746
7148      37203112 ENSG00000182670       ENST00000540756 ENSE00003690606
7149      37203112 ENSG00000182670       ENST00000540756 ENSE00003577978
7150      37203112 ENSG00000182670       ENST00000540756 ENSE00003628284
7151      37203112 ENSG00000182670       ENST00000540756 ENSE00003654536
7152      37203112 ENSG00000182670       ENST00000540756 ENSE00003473796
7153      37203112 ENSG00000182670       ENST00000540756 ENSE00003665897
7154      37203112 ENSG00000182670       ENST00000540756 ENSE00003500879
7155      37203112 ENSG00000182670       ENST00000540756 ENSE00003524799
7156      37203112 ENSG00000182670       ENST00000540756 ENSE00003628441
7157      37203112 ENSG00000182670       ENST00000540756 ENSE00001810102
7158      37203112 ENSG00000182670       ENST00000540756 ENSE00003559648
7159      37203112 ENSG00000182670       ENST00000540756 ENSE00002281751
7160      37203112 ENSG00000182670       ENST00000399010 ENSE00003656604
7161      37203112 ENSG00000182670       ENST00000399010 ENSE00003656402
7162      37203112 ENSG00000182670       ENST00000399010 ENSE00003612884
7163      37203112 ENSG00000182670       ENST00000399010 ENSE00003656477
7164      37203112 ENSG00000182670       ENST00000399010 ENSE00003675922
7165      37203112 ENSG00000182670       ENST00000399010 ENSE00003507071
7166      37203112 ENSG00000182670       ENST00000399010 ENSE00003482158
7167      37203112 ENSG00000182670       ENST00000399010 ENSE00003608941
7168      37203112 ENSG00000182670       ENST00000399010 ENSE00003565200
7169      37203112 ENSG00000182670       ENST00000399010 ENSE00001535966
7170      37203112 ENSG00000182670       ENST00000399010 ENSE00001535965
7171      37203112 ENSG00000182670       ENST00000399017 ENSE00003656604
7172      37203112 ENSG00000182670       ENST00000399017 ENSE00003656402
7173      37203112 ENSG00000182670       ENST00000399017 ENSE00003612884
7174      37203112 ENSG00000182670       ENST00000399017 ENSE00003656477
7175      37203112 ENSG00000182670       ENST00000399017 ENSE00003675922
7176      37203112 ENSG00000182670       ENST00000399017 ENSE00003507071
7177      37203112 ENSG00000182670       ENST00000399017 ENSE00003482158
7178      37203112 ENSG00000182670       ENST00000399017 ENSE00003608941
7179      37203112 ENSG00000182670       ENST00000399017 ENSE00003565200
7180      37203112 ENSG00000182670       ENST00000399017 ENSE00003637056
7181      37203112 ENSG00000182670       ENST00000399017 ENSE00003465554
7182      37203112 ENSG00000182670       ENST00000399017 ENSE00003494877
7183      37203112 ENSG00000182670       ENST00000399017 ENSE00003476101
7184      37203112 ENSG00000182670       ENST00000399017 ENSE00003460189
7185      37203112 ENSG00000182670       ENST00000399017 ENSE00003511582
7186      37203112 ENSG00000182670       ENST00000399017 ENSE00003665746
7187      37203112 ENSG00000182670       ENST00000399017 ENSE00003690606
7188      37203112 ENSG00000182670       ENST00000399017 ENSE00003577978
7189      37203112 ENSG00000182670       ENST00000399017 ENSE00003628284
7190      37203112 ENSG00000182670       ENST00000399017 ENSE00003654536
7191      37203112 ENSG00000182670       ENST00000399017 ENSE00003473796
7192      37203112 ENSG00000182670       ENST00000399017 ENSE00003665897
7193      37203112 ENSG00000182670       ENST00000399017 ENSE00003500879
7194      37203112 ENSG00000182670       ENST00000399017 ENSE00003524799
7195      37203112 ENSG00000182670       ENST00000399017 ENSE00003628441
7196      37203112 ENSG00000182670       ENST00000399017 ENSE00003791477
7197      37203112 ENSG00000182670       ENST00000399017 ENSE00003530987
7198      37203112 ENSG00000182670       ENST00000399017 ENSE00003687576
7199      37203112 ENSG00000182670       ENST00000399017 ENSE00003536562
7200      37203112 ENSG00000182670       ENST00000399017 ENSE00003627255
7201      37203112 ENSG00000182670       ENST00000399017 ENSE00003661197
7202      37203112 ENSG00000182670       ENST00000399017 ENSE00001824890
7203      37203112 ENSG00000182670       ENST00000399017 ENSE00003636017
7204      37203112 ENSG00000182670       ENST00000399017 ENSE00003521313
7205      37203112 ENSG00000182670       ENST00000399017 ENSE00003643560
7206      37203112 ENSG00000182670       ENST00000399017 ENSE00003661677
7207      37203112 ENSG00000182670       ENST00000399017 ENSE00003479315
7208      37203112 ENSG00000182670       ENST00000399017 ENSE00003560308
7209      37203112 ENSG00000182670       ENST00000399017 ENSE00003561232
7210      37203112 ENSG00000182670       ENST00000399017 ENSE00003589692
7211      37203112 ENSG00000182670       ENST00000399017 ENSE00003492781
7212      37203112 ENSG00000182670       ENST00000399017 ENSE00003590736
7213      37203112 ENSG00000182670       ENST00000399017 ENSE00003688182
7214      37203112 ENSG00000182670       ENST00000399017 ENSE00003507263
7215      37203112 ENSG00000182670       ENST00000399017 ENSE00003636513
7216      37203112 ENSG00000182670       ENST00000399017 ENSE00003493492
7217      37203112 ENSG00000182670       ENST00000484047 ENSE00003553663
7218      37203112 ENSG00000182670       ENST00000484047 ENSE00003628855
7219      37203112 ENSG00000182670       ENST00000484047 ENSE00003599881
7220      37203112 ENSG00000182670       ENST00000484047 ENSE00001921180
7221      37203112 ENSG00000182670       ENST00000484047 ENSE00001868313
7222      37203112 ENSG00000182670       ENST00000484047 ENSE00001887719
7223      37203112 ENSG00000182670       ENST00000484047 ENSE00001939389
7224      37203112 ENSG00000182670       ENST00000354749 ENSE00003656402
7225      37203112 ENSG00000182670       ENST00000354749 ENSE00003612884
7226      37203112 ENSG00000182670       ENST00000354749 ENSE00003656477
7227      37203112 ENSG00000182670       ENST00000354749 ENSE00003675922
7228      37203112 ENSG00000182670       ENST00000354749 ENSE00003507071
7229      37203112 ENSG00000182670       ENST00000354749 ENSE00003482158
7230      37203112 ENSG00000182670       ENST00000354749 ENSE00003608941
7231      37203112 ENSG00000182670       ENST00000354749 ENSE00003565200
7232      37203112 ENSG00000182670       ENST00000354749 ENSE00003637056
7233      37203112 ENSG00000182670       ENST00000354749 ENSE00003465554
7234      37203112 ENSG00000182670       ENST00000354749 ENSE00003494877
7235      37203112 ENSG00000182670       ENST00000354749 ENSE00003476101
7236      37203112 ENSG00000182670       ENST00000354749 ENSE00003460189
7237      37203112 ENSG00000182670       ENST00000354749 ENSE00003511582
7238      37203112 ENSG00000182670       ENST00000354749 ENSE00003665746
7239      37203112 ENSG00000182670       ENST00000354749 ENSE00003690606
7240      37203112 ENSG00000182670       ENST00000354749 ENSE00003577978
7241      37203112 ENSG00000182670       ENST00000354749 ENSE00003628284
7242      37203112 ENSG00000182670       ENST00000354749 ENSE00003654536
7243      37203112 ENSG00000182670       ENST00000354749 ENSE00003473796
7244      37203112 ENSG00000182670       ENST00000354749 ENSE00003665897
7245      37203112 ENSG00000182670       ENST00000354749 ENSE00003500879
7246      37203112 ENSG00000182670       ENST00000354749 ENSE00003524799
7247      37203112 ENSG00000182670       ENST00000354749 ENSE00003628441
7248      37203112 ENSG00000182670       ENST00000354749 ENSE00003791477
7249      37203112 ENSG00000182670       ENST00000354749 ENSE00003530987
7250      37203112 ENSG00000182670       ENST00000354749 ENSE00003687576
7251      37203112 ENSG00000182670       ENST00000354749 ENSE00003536562
7252      37203112 ENSG00000182670       ENST00000354749 ENSE00003627255
7253      37203112 ENSG00000182670       ENST00000354749 ENSE00003661197
7254      37203112 ENSG00000182670       ENST00000354749 ENSE00003636017
7255      37203112 ENSG00000182670       ENST00000354749 ENSE00003521313
7256      37203112 ENSG00000182670       ENST00000354749 ENSE00003643560
7257      37203112 ENSG00000182670       ENST00000354749 ENSE00003661677
7258      37203112 ENSG00000182670       ENST00000354749 ENSE00003479315
7259      37203112 ENSG00000182670       ENST00000354749 ENSE00003560308
7260      37203112 ENSG00000182670       ENST00000354749 ENSE00003561232
7261      37203112 ENSG00000182670       ENST00000354749 ENSE00003589692
7262      37203112 ENSG00000182670       ENST00000354749 ENSE00003492781
7263      37203112 ENSG00000182670       ENST00000354749 ENSE00003590736
7264      37203112 ENSG00000182670       ENST00000354749 ENSE00003688182
7265      37203112 ENSG00000182670       ENST00000354749 ENSE00003507263
7266      37203112 ENSG00000182670       ENST00000354749 ENSE00003636513
7267      37203112 ENSG00000182670       ENST00000354749 ENSE00003493492
7268      37203112 ENSG00000182670       ENST00000354749 ENSE00003640322
7269      37203112 ENSG00000182670       ENST00000479930 ENSE00003492829
7270      37203112 ENSG00000182670       ENST00000479930 ENSE00003616905
7271      37203112 ENSG00000182670       ENST00000479930 ENSE00003489082
7272      37203112 ENSG00000182670       ENST00000479930 ENSE00003506193
7273      37203112 ENSG00000182670       ENST00000479930 ENSE00003496994
7274      37203112 ENSG00000182670       ENST00000479930 ENSE00003608391
7275      37203112 ENSG00000182670       ENST00000479930 ENSE00003552849
7276      37203112 ENSG00000182670       ENST00000479930 ENSE00003633215
7277      37203112 ENSG00000182670       ENST00000479930 ENSE00003628855
7278      37203112 ENSG00000182670       ENST00000479930 ENSE00003599881
7279      37203112 ENSG00000182670       ENST00000479930 ENSE00003473338
7280      37203112 ENSG00000182670       ENST00000479930 ENSE00003593783
7281      37203112 ENSG00000182670       ENST00000479930 ENSE00003465547
7282      37203112 ENSG00000182670       ENST00000479930 ENSE00003482670
7283      37203112 ENSG00000182670       ENST00000479930 ENSE00003530526
7284      37203112 ENSG00000182670       ENST00000479930 ENSE00003576767
7285      37203112 ENSG00000182670       ENST00000479930 ENSE00003691391
7286      37203112 ENSG00000182670       ENST00000479930 ENSE00003521393
7287      37203112 ENSG00000182670       ENST00000479930 ENSE00003597362
7288      37203112 ENSG00000182670       ENST00000479930 ENSE00003595792
7289      37203112 ENSG00000182670       ENST00000479930 ENSE00003585112
7290      37203112 ENSG00000182670       ENST00000479930 ENSE00003584754
7291      37203112 ENSG00000182670       ENST00000479930 ENSE00003476752
7292      37203112 ENSG00000182670       ENST00000479930 ENSE00003674933
7293      37203112 ENSG00000182670       ENST00000479930 ENSE00003491750
7294      37203112 ENSG00000182670       ENST00000479930 ENSE00003515585
7295      37203112 ENSG00000182670       ENST00000479930 ENSE00003626252
7296      37203112 ENSG00000182670       ENST00000479930 ENSE00003559674
7297      37203112 ENSG00000182670       ENST00000479930 ENSE00003587673
7298      37203112 ENSG00000182670       ENST00000479930 ENSE00003595729
7299      37203112 ENSG00000182670       ENST00000479930 ENSE00003479693
7300      37203112 ENSG00000182670       ENST00000479930 ENSE00003492321
7301      37203112 ENSG00000182670       ENST00000479930 ENSE00003603698
7302      37203112 ENSG00000182670       ENST00000479930 ENSE00003599612
7303      37203112 ENSG00000182670       ENST00000479930 ENSE00003568218
7304      37203112 ENSG00000182670       ENST00000479930 ENSE00003653003
7305      37203112 ENSG00000182670       ENST00000479930 ENSE00003627839
7306      37203112 ENSG00000182670       ENST00000479930 ENSE00003496809
7307      37203112 ENSG00000182670       ENST00000479930 ENSE00003552885
7308      37203112 ENSG00000182670       ENST00000479930 ENSE00003485866
7309      37203112 ENSG00000182670       ENST00000479930 ENSE00003619915
7310      37203112 ENSG00000182670       ENST00000479930 ENSE00003618329
7311      37203112 ENSG00000182670       ENST00000479930 ENSE00003617054
7312      37203112 ENSG00000182670       ENST00000479930 ENSE00003591319
7313      37203112 ENSG00000182670       ENST00000460328 ENSE00003513098
7314      37203112 ENSG00000182670       ENST00000460328 ENSE00003593783
7315      37203112 ENSG00000182670       ENST00000460328 ENSE00001888280
7316      37203112 ENSG00000182670       ENST00000460328 ENSE00001918908
7317      37203112 ENSG00000182670       ENST00000491952 ENSE00003513098
7318      37203112 ENSG00000182670       ENST00000491952 ENSE00001943458
7319      37203112 ENSG00000182670       ENST00000491952 ENSE00001921343
7320      37203112 ENSG00000182670       ENST00000476784 ENSE00003616905
7321      37203112 ENSG00000182670       ENST00000476784 ENSE00003489082
7322      37203112 ENSG00000182670       ENST00000476784 ENSE00003506193
7323      37203112 ENSG00000182670       ENST00000476784 ENSE00003496994
7324      37203112 ENSG00000182670       ENST00000476784 ENSE00003608391
7325      37203112 ENSG00000182670       ENST00000476784 ENSE00003552849
7326      37203112 ENSG00000182670       ENST00000476784 ENSE00003482670
7327      37203112 ENSG00000182670       ENST00000476784 ENSE00003530526
7328      37203112 ENSG00000182670       ENST00000476784 ENSE00003576767
7329      37203112 ENSG00000182670       ENST00000476784 ENSE00003691391
7330      37203112 ENSG00000182670       ENST00000476784 ENSE00003521393
7331      37203112 ENSG00000182670       ENST00000476784 ENSE00003597362
7332      37203112 ENSG00000182670       ENST00000476784 ENSE00003595792
7333      37203112 ENSG00000182670       ENST00000476784 ENSE00003585112
7334      37203112 ENSG00000182670       ENST00000476784 ENSE00003584754
7335      37203112 ENSG00000182670       ENST00000476784 ENSE00003476752
7336      37203112 ENSG00000182670       ENST00000476784 ENSE00003674933
7337      37203112 ENSG00000182670       ENST00000476784 ENSE00003491750
7338      37203112 ENSG00000182670       ENST00000476784 ENSE00003515585
7339      37203112 ENSG00000182670       ENST00000476784 ENSE00003626252
7340      37203112 ENSG00000182670       ENST00000476784 ENSE00003559674
7341      37203112 ENSG00000182670       ENST00000476784 ENSE00003479693
7342      37203112 ENSG00000182670       ENST00000476784 ENSE00003492321
7343      37203112 ENSG00000182670       ENST00000476784 ENSE00003603698
7344      37203112 ENSG00000182670       ENST00000476784 ENSE00003599612
7345      37203112 ENSG00000182670       ENST00000476784 ENSE00003568218
7346      37203112 ENSG00000182670       ENST00000476784 ENSE00003653003
7347      37203112 ENSG00000182670       ENST00000476784 ENSE00003627839
7348      37203112 ENSG00000182670       ENST00000476784 ENSE00003496809
7349      37203112 ENSG00000182670       ENST00000476784 ENSE00003552885
7350      37203112 ENSG00000182670       ENST00000476784 ENSE00003485866
7351      37203112 ENSG00000182670       ENST00000476784 ENSE00003619915
7352      37203112 ENSG00000182670       ENST00000476784 ENSE00003618329
7353      37203112 ENSG00000182670       ENST00000476784 ENSE00003617054
7354      37203112 ENSG00000182670       ENST00000476784 ENSE00003591319
7355      37203112 ENSG00000182670       ENST00000476784 ENSE00001917971
7356      37203112 ENSG00000182670       ENST00000414818 ENSE00003473796
7357      37203112 ENSG00000182670       ENST00000414818 ENSE00003500879
7358      37203112 ENSG00000182670       ENST00000414818 ENSE00003524799
7359      37203112 ENSG00000182670       ENST00000414818 ENSE00003628441
7360      37203112 ENSG00000182670       ENST00000414818 ENSE00003791477
7361      37203112 ENSG00000182670       ENST00000414818 ENSE00001769719
7362      37203112 ENSG00000182670       ENST00000411496 ENSE00003530987
7363      37203112 ENSG00000182670       ENST00000411496 ENSE00003687576
7364      37203112 ENSG00000182670       ENST00000411496 ENSE00003536562
7365      37203112 ENSG00000182670       ENST00000411496 ENSE00003627255
7366      37203112 ENSG00000182670       ENST00000411496 ENSE00003661197
7367      37203112 ENSG00000182670       ENST00000411496 ENSE00001703974
7368      37203112 ENSG00000182670       ENST00000411496 ENSE00001656025
7369      37203112 ENSG00000182670       ENST00000411496 ENSE00001677346
7370      37203112 ENSG00000182670       ENST00000487711 ENSE00003674933
7371      37203112 ENSG00000182670       ENST00000487711 ENSE00003491750
7372      37203112 ENSG00000182670       ENST00000487711 ENSE00003515585
7373      37203112 ENSG00000182670       ENST00000487711 ENSE00003626252
7374      37203112 ENSG00000182670       ENST00000487711 ENSE00003559674
7375      37203112 ENSG00000182670       ENST00000487711 ENSE00003676478
7376      37203112 ENSG00000182670       ENST00000487711 ENSE00001907290
7377      37203112 ENSG00000182670       ENST00000487711 ENSE00001908317
7378      37203112 ENSG00000182670       ENST00000472398 ENSE00003491750
7379      37203112 ENSG00000182670       ENST00000472398 ENSE00003515585
7380      37203112 ENSG00000182670       ENST00000472398 ENSE00003626252
7381      37203112 ENSG00000182670       ENST00000472398 ENSE00003559674
7382      37203112 ENSG00000182670       ENST00000472398 ENSE00003479693
7383      37203112 ENSG00000182670       ENST00000472398 ENSE00003492321
7384      37203112 ENSG00000182670       ENST00000472398 ENSE00003603698
7385      37203112 ENSG00000182670       ENST00000472398 ENSE00003599612
7386      37203112 ENSG00000182670       ENST00000472398 ENSE00001821106
7387      37203112 ENSG00000182670       ENST00000472398 ENSE00001927285
7388      37203112 ENSG00000182670       ENST00000469939 ENSE00003515585
7389      37203112 ENSG00000182670       ENST00000469939 ENSE00003626252
7390      37203112 ENSG00000182670       ENST00000469939 ENSE00003559674
7391      37203112 ENSG00000182670       ENST00000469939 ENSE00003676478
7392      37203112 ENSG00000182670       ENST00000469939 ENSE00001851140
7393      37203112 ENSG00000182670       ENST00000428693 ENSE00003589692
7394      37203112 ENSG00000182670       ENST00000428693 ENSE00003590736
7395      37203112 ENSG00000182670       ENST00000428693 ENSE00003688182
7396      37203112 ENSG00000182670       ENST00000428693 ENSE00003507263
7397      37203112 ENSG00000182670       ENST00000428693 ENSE00003636513
7398      37203112 ENSG00000182670       ENST00000428693 ENSE00001768326
7399      37203112 ENSG00000182670       ENST00000488522 ENSE00003485866
7400      37203112 ENSG00000182670       ENST00000488522 ENSE00003619915
7401      37203112 ENSG00000182670       ENST00000488522 ENSE00001946751
7402      37203112 ENSG00000182670       ENST00000488522 ENSE00001835324
7403      37203112 ENSG00000182670       ENST00000488522 ENSE00001896588
7404      37203112 ENSG00000182670       ENST00000355666 ENSE00003656604
7405      37203112 ENSG00000182670       ENST00000355666 ENSE00003656402
7406      37203112 ENSG00000182670       ENST00000355666 ENSE00003612884
7407      37203112 ENSG00000182670       ENST00000355666 ENSE00003656477
7408      37203112 ENSG00000182670       ENST00000355666 ENSE00003675922
7409      37203112 ENSG00000182670       ENST00000355666 ENSE00003507071
7410      37203112 ENSG00000182670       ENST00000355666 ENSE00003482158
7411      37203112 ENSG00000182670       ENST00000355666 ENSE00003608941
7412      37203112 ENSG00000182670       ENST00000355666 ENSE00003565200
7413      37203112 ENSG00000182670       ENST00000355666 ENSE00003637056
7414      37203112 ENSG00000182670       ENST00000355666 ENSE00003465554
7415      37203112 ENSG00000182670       ENST00000355666 ENSE00003494877
7416      37203112 ENSG00000182670       ENST00000355666 ENSE00003476101
7417      37203112 ENSG00000182670       ENST00000355666 ENSE00003460189
7418      37203112 ENSG00000182670       ENST00000355666 ENSE00003511582
7419      37203112 ENSG00000182670       ENST00000355666 ENSE00003665746
7420      37203112 ENSG00000182670       ENST00000355666 ENSE00003690606
7421      37203112 ENSG00000182670       ENST00000355666 ENSE00003577978
7422      37203112 ENSG00000182670       ENST00000355666 ENSE00003628284
7423      37203112 ENSG00000182670       ENST00000355666 ENSE00003654536
7424      37203112 ENSG00000182670       ENST00000355666 ENSE00003473796
7425      37203112 ENSG00000182670       ENST00000355666 ENSE00003665897
7426      37203112 ENSG00000182670       ENST00000355666 ENSE00003500879
7427      37203112 ENSG00000182670       ENST00000355666 ENSE00003524799
7428      37203112 ENSG00000182670       ENST00000355666 ENSE00003628441
7429      37203112 ENSG00000182670       ENST00000355666 ENSE00003791477
7430      37203112 ENSG00000182670       ENST00000355666 ENSE00003530987
7431      37203112 ENSG00000182670       ENST00000355666 ENSE00003687576
7432      37203112 ENSG00000182670       ENST00000355666 ENSE00003536562
7433      37203112 ENSG00000182670       ENST00000355666 ENSE00003627255
7434      37203112 ENSG00000182670       ENST00000355666 ENSE00003661197
7435      37203112 ENSG00000182670       ENST00000355666 ENSE00003636017
7436      37203112 ENSG00000182670       ENST00000355666 ENSE00003521313
7437      37203112 ENSG00000182670       ENST00000355666 ENSE00003643560
7438      37203112 ENSG00000182670       ENST00000355666 ENSE00003661677
7439      37203112 ENSG00000182670       ENST00000355666 ENSE00003479315
7440      37203112 ENSG00000182670       ENST00000355666 ENSE00003560308
7441      37203112 ENSG00000182670       ENST00000355666 ENSE00003561232
7442      37203112 ENSG00000182670       ENST00000355666 ENSE00003589692
7443      37203112 ENSG00000182670       ENST00000355666 ENSE00003492781
7444      37203112 ENSG00000182670       ENST00000355666 ENSE00003590736
7445      37203112 ENSG00000182670       ENST00000355666 ENSE00003688182
7446      37203112 ENSG00000182670       ENST00000355666 ENSE00003507263
7447      37203112 ENSG00000182670       ENST00000355666 ENSE00003636513
7448      37203112 ENSG00000182670       ENST00000355666 ENSE00001420440
7449      37203112 ENSG00000182670       ENST00000355666 ENSE00001367371
7450      37193926 ENSG00000228677       ENST00000424733 ENSE00001619558
7451      37193926 ENSG00000228677       ENST00000424733 ENSE00001652211
7452      37101343 ENSG00000270116       ENST00000602568 ENSE00003455069
7453      37073170 ENSG00000185808       ENST00000360525 ENSE00001419804
7454      37073170 ENSG00000185808       ENST00000360525 ENSE00003470276
7455      37073170 ENSG00000185808       ENST00000360525 ENSE00003788488
7456      37073170 ENSG00000185808       ENST00000360525 ENSE00003468709
7457      37073170 ENSG00000185808       ENST00000360525 ENSE00001875155
7458      37073170 ENSG00000185808       ENST00000464265 ENSE00003788488
7459      37073170 ENSG00000185808       ENST00000464265 ENSE00003468709
7460      37073170 ENSG00000185808       ENST00000464265 ENSE00001320201
7461      37073170 ENSG00000185808       ENST00000464265 ENSE00001818729
7462      37073170 ENSG00000185808       ENST00000329667 ENSE00003592147
7463      37073170 ENSG00000185808       ENST00000329667 ENSE00003541657
7464      37073170 ENSG00000185808       ENST00000329667 ENSE00003537149
7465      37073170 ENSG00000185808       ENST00000399102 ENSE00003470276
7466      37073170 ENSG00000185808       ENST00000399102 ENSE00003788488
7467      37073170 ENSG00000185808       ENST00000399102 ENSE00003468709
7468      37073170 ENSG00000185808       ENST00000399102 ENSE00001536420
7469      37073170 ENSG00000185808       ENST00000399102 ENSE00003526634
7470      37073170 ENSG00000185808       ENST00000399103 ENSE00003470276
7471      37073170 ENSG00000185808       ENST00000399103 ENSE00003788488
7472      37073170 ENSG00000185808       ENST00000399103 ENSE00003468709
7473      37073170 ENSG00000185808       ENST00000399103 ENSE00003526634
7474      37073170 ENSG00000185808       ENST00000399103 ENSE00001536427
7475      37073170 ENSG00000185808       ENST00000399098 ENSE00003788488
7476      37073170 ENSG00000185808       ENST00000399098 ENSE00003468709
7477      37073170 ENSG00000185808       ENST00000399098 ENSE00003592147
7478      37073170 ENSG00000185808       ENST00000399098 ENSE00003526634
7479      37073170 ENSG00000185808       ENST00000399098 ENSE00001536419
7480      37073170 ENSG00000185808       ENST00000399098 ENSE00001536408
7481      37073170 ENSG00000185808       ENST00000479152 ENSE00001936150
7482      37073170 ENSG00000185808       ENST00000479152 ENSE00001944308
7483      37073170 ENSG00000185808       ENST00000430792 ENSE00003788488
7484      37073170 ENSG00000185808       ENST00000430792 ENSE00001536408
7485      37073170 ENSG00000185808       ENST00000430792 ENSE00001616850
7486      37045636 ENSG00000212136       ENST00000390834 ENSE00001508618
7487      37019659 ENSG00000183145       ENST00000485272 ENSE00001882887
7488      37019659 ENSG00000183145       ENST00000485272 ENSE00003619477
7489      37019659 ENSG00000183145       ENST00000485272 ENSE00003657706
7490      37019659 ENSG00000183145       ENST00000485272 ENSE00003468590
7491      37019659 ENSG00000183145       ENST00000490393 ENSE00003619477
7492      37019659 ENSG00000183145       ENST00000490393 ENSE00003468590
7493      37019659 ENSG00000183145       ENST00000490393 ENSE00001833211
7494      37019659 ENSG00000183145       ENST00000329553 ENSE00001292766
7495      37019659 ENSG00000183145       ENST00000329553 ENSE00003623418
7496      37019659 ENSG00000183145       ENST00000329553 ENSE00003508393
7497      37019659 ENSG00000183145       ENST00000329553 ENSE00003500060
7498      36995075 ENSG00000215734       ENST00000400819 ENSE00001696457
7499      36990236 ENSG00000159267       ENST00000336648 ENSE00001401604
7500      36990236 ENSG00000159267       ENST00000336648 ENSE00001282167
7501      36990236 ENSG00000159267       ENST00000336648 ENSE00001402516
7502      36990236 ENSG00000159267       ENST00000336648 ENSE00001282204
7503      36990236 ENSG00000159267       ENST00000336648 ENSE00001044408
7504      36990236 ENSG00000159267       ENST00000336648 ENSE00001044404
7505      36990236 ENSG00000159267       ENST00000336648 ENSE00001282176
7506      36990236 ENSG00000159267       ENST00000336648 ENSE00001108868
7507      36990236 ENSG00000159267       ENST00000336648 ENSE00001282128
7508      36990236 ENSG00000159267       ENST00000336648 ENSE00001108867
7509      36990236 ENSG00000159267       ENST00000336648 ENSE00001108871
7510      36990236 ENSG00000159267       ENST00000336648 ENSE00003709295
7511      36990236 ENSG00000159267       ENST00000399120 ENSE00001282167
7512      36990236 ENSG00000159267       ENST00000399120 ENSE00001282204
7513      36990236 ENSG00000159267       ENST00000399120 ENSE00001044408
7514      36990236 ENSG00000159267       ENST00000399120 ENSE00001044404
7515      36990236 ENSG00000159267       ENST00000399120 ENSE00001282176
7516      36990236 ENSG00000159267       ENST00000399120 ENSE00001108868
7517      36990236 ENSG00000159267       ENST00000399120 ENSE00001282128
7518      36990236 ENSG00000159267       ENST00000399120 ENSE00001108867
7519      36990236 ENSG00000159267       ENST00000399120 ENSE00001108871
7520      36990236 ENSG00000159267       ENST00000399120 ENSE00001536491
7521      36990236 ENSG00000159267       ENST00000399120 ENSE00001536490
7522      36990236 ENSG00000159267       ENST00000399120 ENSE00001536488
7523      36990236 ENSG00000159267       ENST00000482273 ENSE00001847098
7524      36990236 ENSG00000159267       ENST00000482273 ENSE00001897220
7525      36990236 ENSG00000159267       ENST00000448340 ENSE00001282167
7526      36990236 ENSG00000159267       ENST00000448340 ENSE00001282204
7527      36990236 ENSG00000159267       ENST00000448340 ENSE00001644544
7528      36990236 ENSG00000159267       ENST00000448340 ENSE00001685793
7529      36990236 ENSG00000159267       ENST00000419461 ENSE00001605772
7530      36990236 ENSG00000159267       ENST00000419461 ENSE00003793408
7531      36990236 ENSG00000159267       ENST00000419461 ENSE00003800504
7532      36990236 ENSG00000159267       ENST00000419461 ENSE00001630049
7533      36990236 ENSG00000159267       ENST00000427746 ENSE00001282167
7534      36990236 ENSG00000159267       ENST00000427746 ENSE00001282204
7535      36990236 ENSG00000159267       ENST00000427746 ENSE00001744646
7536      36990236 ENSG00000159267       ENST00000427746 ENSE00002506497
7537      36990236 ENSG00000159267       ENST00000427746 ENSE00001703983
7538      36990236 ENSG00000159267       ENST00000612277 ENSE00001282167
7539      36990236 ENSG00000159267       ENST00000612277 ENSE00001402516
7540      36990236 ENSG00000159267       ENST00000612277 ENSE00001282204
7541      36990236 ENSG00000159267       ENST00000612277 ENSE00001044408
7542      36990236 ENSG00000159267       ENST00000612277 ENSE00001044404
7543      36990236 ENSG00000159267       ENST00000612277 ENSE00001282176
7544      36990236 ENSG00000159267       ENST00000612277 ENSE00001108868
7545      36990236 ENSG00000159267       ENST00000612277 ENSE00001282128
7546      36990236 ENSG00000159267       ENST00000612277 ENSE00001108867
7547      36990236 ENSG00000159267       ENST00000612277 ENSE00001108871
7548      36990236 ENSG00000159267       ENST00000612277 ENSE00003709295
7549      36990236 ENSG00000159267       ENST00000612277 ENSE00003720755
7550      36986851 ENSG00000207416       ENST00000384685 ENSE00001499693
7551      36975164 ENSG00000224790       ENST00000637940 ENSE00003797223
7552      36975164 ENSG00000224790       ENST00000637940 ENSE00001792727
7553      36975164 ENSG00000224790       ENST00000637940 ENSE00003797030
7554      36975164 ENSG00000224790       ENST00000637940 ENSE00003800894
7555      36975164 ENSG00000224790       ENST00000430068 ENSE00001792727
7556      36975164 ENSG00000224790       ENST00000430068 ENSE00001755883
7557      36975164 ENSG00000224790       ENST00000430068 ENSE00001741068
7558      36975164 ENSG00000224790       ENST00000430068 ENSE00001675633
7559      36944125 ENSG00000270652       ENST00000604662 ENSE00003520648
7560      36944125 ENSG00000270652       ENST00000604662 ENSE00003648700
7561      36852028 ENSG00000199806       ENST00000362936 ENSE00001437699
7562      36806284 ENSG00000237646       ENST00000434195 ENSE00001642518
7563      36806284 ENSG00000237646       ENST00000434195 ENSE00001721890
7564      36749917 ENSG00000159263       ENST00000460783 ENSE00001878503
7565      36749917 ENSG00000159263       ENST00000460783 ENSE00001818449
7566      36749917 ENSG00000159263       ENST00000481185 ENSE00003476435
7567      36749917 ENSG00000159263       ENST00000481185 ENSE00003493741
7568      36749917 ENSG00000159263       ENST00000481185 ENSE00003604799
7569      36749917 ENSG00000159263       ENST00000481185 ENSE00003602705
7570      36749917 ENSG00000159263       ENST00000481185 ENSE00003476887
7571      36749917 ENSG00000159263       ENST00000481185 ENSE00003560552
7572      36749917 ENSG00000159263       ENST00000481185 ENSE00003598751
7573      36749917 ENSG00000159263       ENST00000481185 ENSE00003585801
7574      36749917 ENSG00000159263       ENST00000481185 ENSE00003679691
7575      36749917 ENSG00000159263       ENST00000481185 ENSE00001929256
7576      36749917 ENSG00000159263       ENST00000290399 ENSE00003579996
7577      36749917 ENSG00000159263       ENST00000290399 ENSE00003635370
7578      36749917 ENSG00000159263       ENST00000290399 ENSE00003632648
7579      36749917 ENSG00000159263       ENST00000290399 ENSE00003575917
7580      36749917 ENSG00000159263       ENST00000290399 ENSE00003558601
7581      36749917 ENSG00000159263       ENST00000290399 ENSE00003598947
7582      36749917 ENSG00000159263       ENST00000290399 ENSE00003621494
7583      36749917 ENSG00000159263       ENST00000290399 ENSE00003474390
7584      36749917 ENSG00000159263       ENST00000290399 ENSE00003458994
7585      36749917 ENSG00000159263       ENST00000290399 ENSE00001284595
7586      36749917 ENSG00000159263       ENST00000290399 ENSE00001044382
7587      36749917 ENSG00000159263       ENST00000431229 ENSE00003632648
7588      36749917 ENSG00000159263       ENST00000431229 ENSE00003575917
7589      36749917 ENSG00000159263       ENST00000431229 ENSE00003558601
7590      36749917 ENSG00000159263       ENST00000431229 ENSE00003598947
7591      36749917 ENSG00000159263       ENST00000431229 ENSE00003621494
7592      36749917 ENSG00000159263       ENST00000431229 ENSE00003474390
7593      36749917 ENSG00000159263       ENST00000431229 ENSE00003458994
7594      36749917 ENSG00000159263       ENST00000431229 ENSE00001284595
7595      36749917 ENSG00000159263       ENST00000431229 ENSE00001596341
7596      36749917 ENSG00000159263       ENST00000431229 ENSE00001675188
7597      36749917 ENSG00000159263       ENST00000483178 ENSE00001948708
7598      36749917 ENSG00000159263       ENST00000483178 ENSE00001886731
7599      36701564 ENSG00000224269       ENST00000430607 ENSE00001664825
7600      36701564 ENSG00000224269       ENST00000430607 ENSE00001641594
7601      36637033 ENSG00000231324       ENST00000457669 ENSE00001613818
7602      36637033 ENSG00000231324       ENST00000457669 ENSE00001671260
7603      36576569 ENSG00000159261       ENST00000399139 ENSE00001536639
7604      36576569 ENSG00000159261       ENST00000399139 ENSE00001369937
7605      36576569 ENSG00000159261       ENST00000399137 ENSE00001369937
7606      36576569 ENSG00000159261       ENST00000399137 ENSE00001536632
7607      36576569 ENSG00000159261       ENST00000399137 ENSE00001536630
7608      36576569 ENSG00000159261       ENST00000399135 ENSE00001369937
7609      36576569 ENSG00000159261       ENST00000399135 ENSE00001536632
7610      36576569 ENSG00000159261       ENST00000399136 ENSE00001369937
7611      36576569 ENSG00000159261       ENST00000399136 ENSE00001536618
7612      36576569 ENSG00000159261       ENST00000399136 ENSE00001379076
7613      36576569 ENSG00000159261       ENST00000342108 ENSE00001369937
7614      36576569 ENSG00000159261       ENST00000342108 ENSE00001379076
7615      36576569 ENSG00000159261       ENST00000342108 ENSE00001382195
7616      36576569 ENSG00000159261       ENST00000478313 ENSE00001834533
7617      36576569 ENSG00000159261       ENST00000478313 ENSE00001848684
7618      36532408 ENSG00000233818       ENST00000428667 ENSE00001783093
7619      36532408 ENSG00000233818       ENST00000428667 ENSE00001763882
7620      36532408 ENSG00000233818       ENST00000454980 ENSE00001684997
7621      36532408 ENSG00000233818       ENST00000454980 ENSE00001678542
7622      36487760 ENSG00000279365       ENST00000624669 ENSE00003759761
7623      36487411 ENSG00000223741       ENST00000433951 ENSE00001724634
7624      36487411 ENSG00000223741       ENST00000433951 ENSE00001794887
7625      36481070 ENSG00000230479       ENST00000429588 ENSE00001669981
7626      36481070 ENSG00000230479       ENST00000429588 ENSE00001614612
7627      36419015 ENSG00000159259       ENST00000314103 ENSE00001384227
7628      36419015 ENSG00000159259       ENST00000314103 ENSE00003477571
7629      36419015 ENSG00000159259       ENST00000314103 ENSE00003613324
7630      36419015 ENSG00000159259       ENST00000314103 ENSE00003583414
7631      36419015 ENSG00000159259       ENST00000314103 ENSE00003480180
7632      36419015 ENSG00000159259       ENST00000314103 ENSE00003672161
7633      36419015 ENSG00000159259       ENST00000314103 ENSE00001044347
7634      36419015 ENSG00000159259       ENST00000314103 ENSE00003494204
7635      36419015 ENSG00000159259       ENST00000314103 ENSE00001044360
7636      36419015 ENSG00000159259       ENST00000314103 ENSE00001044354
7637      36419015 ENSG00000159259       ENST00000314103 ENSE00003561304
7638      36419015 ENSG00000159259       ENST00000314103 ENSE00001044359
7639      36419015 ENSG00000159259       ENST00000314103 ENSE00001044343
7640      36419015 ENSG00000159259       ENST00000314103 ENSE00001213718
7641      36419015 ENSG00000159259       ENST00000480486 ENSE00003562978
7642      36419015 ENSG00000159259       ENST00000480486 ENSE00003506630
7643      36419015 ENSG00000159259       ENST00000480486 ENSE00003610974
7644      36419015 ENSG00000159259       ENST00000480486 ENSE00003680325
7645      36419015 ENSG00000159259       ENST00000480486 ENSE00003552194
7646      36419015 ENSG00000159259       ENST00000480486 ENSE00001906268
7647      36419015 ENSG00000159259       ENST00000481458 ENSE00001953480
7648      36419015 ENSG00000159259       ENST00000481458 ENSE00003637834
7649      36419015 ENSG00000159259       ENST00000481458 ENSE00003621858
7650      36419015 ENSG00000159259       ENST00000481458 ENSE00001864121
7651      36389112 ENSG00000224421       ENST00000444161 ENSE00001758681
7652      36386148 ENSG00000159256       ENST00000492336 ENSE00003481905
7653      36386148 ENSG00000159256       ENST00000492336 ENSE00003542582
7654      36386148 ENSG00000159256       ENST00000492336 ENSE00003511660
7655      36386148 ENSG00000159256       ENST00000492336 ENSE00003612731
7656      36386148 ENSG00000159256       ENST00000492336 ENSE00001816746
7657      36386148 ENSG00000159256       ENST00000400485 ENSE00003657062
7658      36386148 ENSG00000159256       ENST00000400485 ENSE00003566823
7659      36386148 ENSG00000159256       ENST00000400485 ENSE00003482680
7660      36386148 ENSG00000159256       ENST00000400485 ENSE00003615780
7661      36386148 ENSG00000159256       ENST00000400485 ENSE00003667982
7662      36386148 ENSG00000159256       ENST00000400485 ENSE00003477961
7663      36386148 ENSG00000159256       ENST00000400485 ENSE00003579316
7664      36386148 ENSG00000159256       ENST00000400485 ENSE00003636120
7665      36386148 ENSG00000159256       ENST00000400485 ENSE00003621847
7666      36386148 ENSG00000159256       ENST00000400485 ENSE00003570014
7667      36386148 ENSG00000159256       ENST00000400485 ENSE00003623420
7668      36386148 ENSG00000159256       ENST00000400485 ENSE00003522346
7669      36386148 ENSG00000159256       ENST00000400485 ENSE00003620224
7670      36386148 ENSG00000159256       ENST00000400485 ENSE00003549856
7671      36386148 ENSG00000159256       ENST00000400485 ENSE00003676247
7672      36386148 ENSG00000159256       ENST00000400485 ENSE00003693820
7673      36386148 ENSG00000159256       ENST00000400485 ENSE00003663455
7674      36386148 ENSG00000159256       ENST00000487909 ENSE00003511660
7675      36386148 ENSG00000159256       ENST00000487909 ENSE00003612731
7676      36386148 ENSG00000159256       ENST00000487909 ENSE00001844409
7677      36386148 ENSG00000159256       ENST00000487909 ENSE00003633497
7678      36386148 ENSG00000159256       ENST00000487909 ENSE00003462510
7679      36386148 ENSG00000159256       ENST00000487909 ENSE00003629032
7680      36386148 ENSG00000159256       ENST00000487909 ENSE00003561106
7681      36386148 ENSG00000159256       ENST00000487909 ENSE00003623617
7682      36386148 ENSG00000159256       ENST00000487909 ENSE00003559718
7683      36386148 ENSG00000159256       ENST00000487909 ENSE00003470004
7684      36386148 ENSG00000159256       ENST00000487909 ENSE00003550917
7685      36386148 ENSG00000159256       ENST00000487909 ENSE00003661371
7686      36386148 ENSG00000159256       ENST00000487909 ENSE00003506559
7687      36386148 ENSG00000159256       ENST00000487909 ENSE00003492014
7688      36386148 ENSG00000159256       ENST00000487909 ENSE00003652189
7689      36386148 ENSG00000159256       ENST00000487909 ENSE00003555085
7690      36386148 ENSG00000159256       ENST00000485933 ENSE00001890132
7691      36386148 ENSG00000159256       ENST00000485933 ENSE00001928353
7692      36386148 ENSG00000159256       ENST00000485299 ENSE00003623617
7693      36386148 ENSG00000159256       ENST00000485299 ENSE00003559718
7694      36386148 ENSG00000159256       ENST00000485299 ENSE00001876771
7695      36386148 ENSG00000159256       ENST00000485299 ENSE00001827151
7696      36386148 ENSG00000159256       ENST00000484028 ENSE00003506559
7697      36386148 ENSG00000159256       ENST00000484028 ENSE00001859893
7698      36386148 ENSG00000159256       ENST00000484028 ENSE00001875331
7699      36386148 ENSG00000159256       ENST00000546482 ENSE00003693820
7700      36386148 ENSG00000159256       ENST00000546482 ENSE00003489439
7701      36386148 ENSG00000159256       ENST00000546482 ENSE00002350566
7702      36386148 ENSG00000159256       ENST00000546482 ENSE00003668379
7703      36386148 ENSG00000159256       ENST00000546482 ENSE00002410964
7704      36386148 ENSG00000159256       ENST00000546482 ENSE00002342944
7705      36386148 ENSG00000159256       ENST00000546482 ENSE00002355022
7706      36386148 ENSG00000159256       ENST00000546482 ENSE00002333753
7707      36386148 ENSG00000159256       ENST00000549948 ENSE00003693820
7708      36386148 ENSG00000159256       ENST00000549948 ENSE00003489439
7709      36386148 ENSG00000159256       ENST00000549948 ENSE00002350566
7710      36386148 ENSG00000159256       ENST00000549948 ENSE00002355022
7711      36386148 ENSG00000159256       ENST00000549948 ENSE00002333753
7712      36386148 ENSG00000159256       ENST00000549948 ENSE00003579232
7713      36386148 ENSG00000159256       ENST00000549948 ENSE00002388022
7714      36386148 ENSG00000159256       ENST00000551788 ENSE00003693820
7715      36386148 ENSG00000159256       ENST00000551788 ENSE00003489439
7716      36386148 ENSG00000159256       ENST00000551788 ENSE00002350566
7717      36386148 ENSG00000159256       ENST00000551788 ENSE00003668379
7718      36386148 ENSG00000159256       ENST00000551788 ENSE00002355022
7719      36386148 ENSG00000159256       ENST00000551788 ENSE00002333753
7720      36386148 ENSG00000159256       ENST00000551367 ENSE00003652189
7721      36386148 ENSG00000159256       ENST00000551367 ENSE00002333753
7722      36386148 ENSG00000159256       ENST00000551367 ENSE00003501266
7723      36386148 ENSG00000159256       ENST00000552581 ENSE00003693820
7724      36386148 ENSG00000159256       ENST00000552581 ENSE00002355022
7725      36386148 ENSG00000159256       ENST00000552581 ENSE00002333753
7726      36386148 ENSG00000159256       ENST00000552581 ENSE00003559346
7727      36386148 ENSG00000159256       ENST00000552581 ENSE00002372498
7728      36386148 ENSG00000159256       ENST00000552581 ENSE00003560391
7729      36386148 ENSG00000159256       ENST00000552581 ENSE00003463975
7730      36386148 ENSG00000159256       ENST00000547657 ENSE00003652189
7731      36386148 ENSG00000159256       ENST00000547657 ENSE00002410964
7732      36386148 ENSG00000159256       ENST00000547657 ENSE00002355022
7733      36386148 ENSG00000159256       ENST00000547657 ENSE00002333753
7734      36386148 ENSG00000159256       ENST00000547657 ENSE00003501266
7735      36362040 ENSG00000228107       ENST00000397184 ENSE00001723336
7736      36362040 ENSG00000228107       ENST00000397184 ENSE00001627362
7737      36320670 ENSG00000273199       ENST00000608391 ENSE00003710961
7738      36295702 ENSG00000214867       ENST00000399149 ENSE00001536689
7739      36294274 ENSG00000142197       ENST00000270190 ENSE00001709988
7740      36294274 ENSG00000142197       ENST00000270190 ENSE00001044194
7741      36294274 ENSG00000142197       ENST00000270190 ENSE00001044279
7742      36294274 ENSG00000142197       ENST00000270190 ENSE00001599264
7743      36294274 ENSG00000142197       ENST00000399151 ENSE00001044194
7744      36294274 ENSG00000142197       ENST00000399151 ENSE00001044279
7745      36294274 ENSG00000142197       ENST00000399151 ENSE00001536697
7746      36294274 ENSG00000142197       ENST00000399151 ENSE00001044238
7747      36294274 ENSG00000142197       ENST00000399151 ENSE00003641468
7748      36294274 ENSG00000142197       ENST00000399151 ENSE00003500617
7749      36294274 ENSG00000142197       ENST00000399151 ENSE00001044233
7750      36294274 ENSG00000142197       ENST00000399151 ENSE00001044212
7751      36294274 ENSG00000142197       ENST00000399151 ENSE00001044187
7752      36294274 ENSG00000142197       ENST00000399151 ENSE00000952867
7753      36294274 ENSG00000142197       ENST00000399151 ENSE00000952868
7754      36294274 ENSG00000142197       ENST00000399151 ENSE00000952869
7755      36294274 ENSG00000142197       ENST00000399151 ENSE00000952870
7756      36294274 ENSG00000142197       ENST00000399151 ENSE00000952871
7757      36294274 ENSG00000142197       ENST00000399151 ENSE00000952872
7758      36294274 ENSG00000142197       ENST00000399151 ENSE00000952873
7759      36294274 ENSG00000142197       ENST00000399151 ENSE00000952874
7760      36294274 ENSG00000142197       ENST00000399151 ENSE00000952875
7761      36294274 ENSG00000142197       ENST00000399151 ENSE00001044199
7762      36294274 ENSG00000142197       ENST00000399151 ENSE00003664197
7763      36294274 ENSG00000142197       ENST00000399151 ENSE00003504893
7764      36294274 ENSG00000142197       ENST00000399151 ENSE00003649664
7765      36294274 ENSG00000142197       ENST00000399151 ENSE00003464096
7766      36294274 ENSG00000142197       ENST00000399151 ENSE00001044228
7767      36294274 ENSG00000142197       ENST00000399151 ENSE00001044202
7768      36294274 ENSG00000142197       ENST00000399151 ENSE00001044179
7769      36294274 ENSG00000142197       ENST00000399151 ENSE00001238145
7770      36294274 ENSG00000142197       ENST00000399151 ENSE00001044224
7771      36294274 ENSG00000142197       ENST00000399151 ENSE00001044263
7772      36294274 ENSG00000142197       ENST00000399151 ENSE00001044258
7773      36294274 ENSG00000142197       ENST00000399151 ENSE00001044208
7774      36294274 ENSG00000142197       ENST00000399151 ENSE00001044198
7775      36294274 ENSG00000142197       ENST00000399151 ENSE00001044241
7776      36294274 ENSG00000142197       ENST00000399151 ENSE00001044254
7777      36294274 ENSG00000142197       ENST00000399151 ENSE00001044242
7778      36294274 ENSG00000142197       ENST00000399151 ENSE00001044260
7779      36294274 ENSG00000142197       ENST00000399151 ENSE00001238304
7780      36294274 ENSG00000142197       ENST00000492760 ENSE00001935111
7781      36294274 ENSG00000142197       ENST00000492760 ENSE00003535798
7782      36294274 ENSG00000142197       ENST00000492760 ENSE00003617926
7783      36294274 ENSG00000142197       ENST00000492760 ENSE00001862064
7784      36294274 ENSG00000142197       ENST00000463668 ENSE00001819883
7785      36294274 ENSG00000142197       ENST00000463668 ENSE00003645318
7786      36294274 ENSG00000142197       ENST00000463668 ENSE00003580486
7787      36294274 ENSG00000142197       ENST00000463668 ENSE00003476245
7788      36294274 ENSG00000142197       ENST00000463668 ENSE00003570770
7789      36294274 ENSG00000142197       ENST00000463668 ENSE00001954890
7790      36175815 ENSG00000236830       ENST00000453159 ENSE00001726806
7791      36175815 ENSG00000236830       ENST00000453159 ENSE00001606093
7792      36175815 ENSG00000236830       ENST00000453159 ENSE00001757518
7793      36175815 ENSG00000236830       ENST00000413862 ENSE00001606093
7794      36175815 ENSG00000236830       ENST00000413862 ENSE00001634384
7795      36175815 ENSG00000236830       ENST00000413862 ENSE00001736440
7796      36175815 ENSG00000236830       ENST00000413862 ENSE00001794193
7797      36175815 ENSG00000236830       ENST00000608690 ENSE00001606093
7798      36175815 ENSG00000236830       ENST00000608690 ENSE00003709260
7799      36175815 ENSG00000236830       ENST00000608690 ENSE00003707361
7800      36175815 ENSG00000236830       ENST00000608690 ENSE00003702516
7801      36175815 ENSG00000236830       ENST00000608622 ENSE00001606093
7802      36175815 ENSG00000236830       ENST00000608622 ENSE00003702516
7803      36175815 ENSG00000236830       ENST00000608622 ENSE00003702758
7804      36175815 ENSG00000236830       ENST00000608622 ENSE00003706824
7805      36175815 ENSG00000236830       ENST00000608632 ENSE00001606093
7806      36175815 ENSG00000236830       ENST00000608632 ENSE00001736440
7807      36175815 ENSG00000236830       ENST00000608632 ENSE00003702758
7808      36175815 ENSG00000236830       ENST00000608632 ENSE00003706824
7809      36175815 ENSG00000236830       ENST00000608632 ENSE00003704278
7810      36175815 ENSG00000236830       ENST00000609192 ENSE00001736440
7811      36175815 ENSG00000236830       ENST00000609192 ENSE00003708084
7812      36175815 ENSG00000236830       ENST00000609192 ENSE00003707202
7813      36175815 ENSG00000236830       ENST00000608641 ENSE00001606093
7814      36175815 ENSG00000236830       ENST00000608641 ENSE00001736440
7815      36175815 ENSG00000236830       ENST00000608641 ENSE00003702758
7816      36175815 ENSG00000236830       ENST00000608641 ENSE00003706133
7817      36175815 ENSG00000236830       ENST00000608641 ENSE00003707017
7818      36175815 ENSG00000236830       ENST00000625189 ENSE00003759468
7819      36175815 ENSG00000236830       ENST00000625189 ENSE00003755685
7820      36175815 ENSG00000236830       ENST00000625079 ENSE00003755685
7821      36175815 ENSG00000236830       ENST00000625079 ENSE00003760238
7822      36175815 ENSG00000236830       ENST00000625079 ENSE00003756349
7823      36175815 ENSG00000236830       ENST00000623579 ENSE00003706133
7824      36175815 ENSG00000236830       ENST00000623579 ENSE00003755685
7825      36175815 ENSG00000236830       ENST00000623579 ENSE00003756874
7826      36175815 ENSG00000236830       ENST00000623579 ENSE00003755915
7827      36175815 ENSG00000236830       ENST00000623638 ENSE00003755685
7828      36175815 ENSG00000236830       ENST00000623638 ENSE00003758777
7829      36175815 ENSG00000236830       ENST00000624080 ENSE00003760090
7830      36175815 ENSG00000236830       ENST00000624080 ENSE00003755975
7831      36175815 ENSG00000236830       ENST00000624080 ENSE00003756993
7832      36175815 ENSG00000236830       ENST00000624086 ENSE00003755184
7833      36175815 ENSG00000236830       ENST00000624086 ENSE00003754936
7834      36175815 ENSG00000236830       ENST00000624883 ENSE00003754936
7835      36175815 ENSG00000236830       ENST00000624883 ENSE00003755813
7836      36175815 ENSG00000236830       ENST00000623647 ENSE00003759283
7837      36175815 ENSG00000236830       ENST00000623647 ENSE00003756144
7838      36175815 ENSG00000236830       ENST00000623647 ENSE00003755424
7839      36175815 ENSG00000236830       ENST00000623484 ENSE00003758471
7840      36175815 ENSG00000236830       ENST00000623484 ENSE00003758845
7841      36175815 ENSG00000236830       ENST00000427491 ENSE00001606093
7842      36175815 ENSG00000236830       ENST00000427491 ENSE00001646746
7843      36175815 ENSG00000236830       ENST00000427491 ENSE00001772823
7844      36175815 ENSG00000236830       ENST00000432988 ENSE00001645910
7845      36175815 ENSG00000236830       ENST00000432988 ENSE00001699302
7846      36175815 ENSG00000236830       ENST00000432988 ENSE00001669555
7847      36170180 ENSG00000228149       ENST00000437106 ENSE00001635423
7848      36146566 ENSG00000159231       ENST00000290354 ENSE00001044175
7849      36146566 ENSG00000159231       ENST00000290354 ENSE00001044173
7850      36146566 ENSG00000159231       ENST00000290354 ENSE00001044176
7851      36133032 ENSG00000214889       ENST00000419943 ENSE00001795815
7852      36131376 ENSG00000226054       ENST00000452572 ENSE00001655365
7853      36126640 ENSG00000230212       ENST00000535199 ENSE00002324295
7854      36126640 ENSG00000230212       ENST00000535199 ENSE00002234089
7855      36126640 ENSG00000230212       ENST00000535199 ENSE00002675369
7856      36126640 ENSG00000230212       ENST00000535199 ENSE00002205771
7857      36126640 ENSG00000230212       ENST00000415147 ENSE00002675369
7858      36126640 ENSG00000230212       ENST00000415147 ENSE00001597545
7859      36109690 ENSG00000233393       ENST00000422473 ENSE00001713087
7860      36109690 ENSG00000233393       ENST00000422473 ENSE00001723606
7861      36090414 ENSG00000236119       ENST00000445464 ENSE00001680052
7862      36090414 ENSG00000236119       ENST00000445464 ENSE00001712529
7863      36079389 ENSG00000185917       ENST00000399215 ENSE00001536988
7864      36079389 ENSG00000185917       ENST00000399215 ENSE00003682516
7865      36079389 ENSG00000185917       ENST00000399215 ENSE00003480255
7866      36079389 ENSG00000185917       ENST00000399215 ENSE00003545287
7867      36079389 ENSG00000185917       ENST00000399215 ENSE00003690844
7868      36079389 ENSG00000185917       ENST00000399215 ENSE00003582817
7869      36079389 ENSG00000185917       ENST00000399215 ENSE00003584489
7870      36079389 ENSG00000185917       ENST00000399215 ENSE00003594407
7871      36079389 ENSG00000185917       ENST00000399215 ENSE00003480317
7872      36079389 ENSG00000185917       ENST00000399215 ENSE00001536987
7873      36079389 ENSG00000185917       ENST00000481477 ENSE00001938468
7874      36079389 ENSG00000185917       ENST00000481477 ENSE00003555627
7875      36079389 ENSG00000185917       ENST00000481477 ENSE00003625862
7876      36079389 ENSG00000185917       ENST00000481477 ENSE00003530209
7877      36079389 ENSG00000185917       ENST00000481477 ENSE00003669031
7878      36079389 ENSG00000185917       ENST00000481477 ENSE00003620581
7879      36079389 ENSG00000185917       ENST00000481477 ENSE00003608660
7880      36079389 ENSG00000185917       ENST00000481477 ENSE00003502527
7881      36079389 ENSG00000185917       ENST00000481477 ENSE00003483155
7882      36079389 ENSG00000185917       ENST00000481477 ENSE00003520090
7883      36079389 ENSG00000185917       ENST00000481477 ENSE00001957727
7884      36079389 ENSG00000185917       ENST00000399212 ENSE00003682516
7885      36079389 ENSG00000185917       ENST00000399212 ENSE00003480255
7886      36079389 ENSG00000185917       ENST00000399212 ENSE00003545287
7887      36079389 ENSG00000185917       ENST00000399212 ENSE00003690844
7888      36079389 ENSG00000185917       ENST00000399212 ENSE00003582817
7889      36079389 ENSG00000185917       ENST00000399212 ENSE00003584489
7890      36079389 ENSG00000185917       ENST00000399212 ENSE00003594407
7891      36079389 ENSG00000185917       ENST00000399212 ENSE00003480317
7892      36079389 ENSG00000185917       ENST00000399212 ENSE00001536987
7893      36079389 ENSG00000185917       ENST00000399212 ENSE00001536980
7894      36079389 ENSG00000185917       ENST00000399212 ENSE00003671031
7895      36079389 ENSG00000185917       ENST00000399212 ENSE00001536969
7896      36079389 ENSG00000185917       ENST00000332131 ENSE00003682516
7897      36079389 ENSG00000185917       ENST00000332131 ENSE00003480255
7898      36079389 ENSG00000185917       ENST00000332131 ENSE00003545287
7899      36079389 ENSG00000185917       ENST00000332131 ENSE00003690844
7900      36079389 ENSG00000185917       ENST00000332131 ENSE00003582817
7901      36079389 ENSG00000185917       ENST00000332131 ENSE00003584489
7902      36079389 ENSG00000185917       ENST00000332131 ENSE00003594407
7903      36079389 ENSG00000185917       ENST00000332131 ENSE00003480317
7904      36079389 ENSG00000185917       ENST00000332131 ENSE00001957727
7905      36079389 ENSG00000185917       ENST00000332131 ENSE00001799578
7906      36079389 ENSG00000185917       ENST00000332131 ENSE00003468436
7907      36079389 ENSG00000185917       ENST00000332131 ENSE00003687277
7908      36079389 ENSG00000185917       ENST00000487297 ENSE00003502527
7909      36079389 ENSG00000185917       ENST00000487297 ENSE00003483155
7910      36079389 ENSG00000185917       ENST00000487297 ENSE00003520090
7911      36079389 ENSG00000185917       ENST00000487297 ENSE00001927148
7912      36079389 ENSG00000185917       ENST00000487297 ENSE00001330579
7913      36079389 ENSG00000185917       ENST00000469482 ENSE00003608660
7914      36079389 ENSG00000185917       ENST00000469482 ENSE00003502527
7915      36079389 ENSG00000185917       ENST00000469482 ENSE00003483155
7916      36079389 ENSG00000185917       ENST00000469482 ENSE00003520090
7917      36079389 ENSG00000185917       ENST00000469482 ENSE00001890945
7918      36079389 ENSG00000185917       ENST00000399205 ENSE00003682516
7919      36079389 ENSG00000185917       ENST00000399205 ENSE00003480255
7920      36079389 ENSG00000185917       ENST00000399205 ENSE00003545287
7921      36079389 ENSG00000185917       ENST00000399205 ENSE00003690844
7922      36079389 ENSG00000185917       ENST00000399205 ENSE00003671031
7923      36079389 ENSG00000185917       ENST00000399205 ENSE00001536969
7924      36079389 ENSG00000185917       ENST00000399205 ENSE00001536960
7925      36079389 ENSG00000185917       ENST00000399205 ENSE00001536954
7926      36079389 ENSG00000185917       ENST00000399208 ENSE00003682516
7927      36079389 ENSG00000185917       ENST00000399208 ENSE00003480255
7928      36079389 ENSG00000185917       ENST00000399208 ENSE00003545287
7929      36079389 ENSG00000185917       ENST00000399208 ENSE00003690844
7930      36079389 ENSG00000185917       ENST00000399208 ENSE00001536954
7931      36079389 ENSG00000185917       ENST00000399208 ENSE00001941692
7932      36079389 ENSG00000185917       ENST00000399208 ENSE00003592720
7933      36079389 ENSG00000185917       ENST00000399201 ENSE00003682516
7934      36079389 ENSG00000185917       ENST00000399201 ENSE00003480255
7935      36079389 ENSG00000185917       ENST00000399201 ENSE00003545287
7936      36079389 ENSG00000185917       ENST00000399201 ENSE00003690844
7937      36079389 ENSG00000185917       ENST00000399201 ENSE00003555627
7938      36079389 ENSG00000185917       ENST00000399201 ENSE00001536969
7939      36079389 ENSG00000185917       ENST00000399201 ENSE00001536954
7940      36079389 ENSG00000185917       ENST00000399201 ENSE00001536934
7941      36079389 ENSG00000185917       ENST00000399207 ENSE00003682516
7942      36079389 ENSG00000185917       ENST00000399207 ENSE00003480255
7943      36079389 ENSG00000185917       ENST00000399207 ENSE00003545287
7944      36079389 ENSG00000185917       ENST00000399207 ENSE00003690844
7945      36079389 ENSG00000185917       ENST00000399207 ENSE00003468436
7946      36079389 ENSG00000185917       ENST00000399207 ENSE00001536948
7947      36079389 ENSG00000185917       ENST00000399207 ENSE00001536946
7948      36079389 ENSG00000185917       ENST00000424303 ENSE00003682516
7949      36079389 ENSG00000185917       ENST00000424303 ENSE00003480255
7950      36079389 ENSG00000185917       ENST00000424303 ENSE00003545287
7951      36079389 ENSG00000185917       ENST00000424303 ENSE00003592720
7952      36079389 ENSG00000185917       ENST00000424303 ENSE00002517842
7953      36079389 ENSG00000185917       ENST00000424303 ENSE00001722077
7954      36079389 ENSG00000185917       ENST00000429161 ENSE00003682516
7955      36079389 ENSG00000185917       ENST00000429161 ENSE00003480255
7956      36079389 ENSG00000185917       ENST00000429161 ENSE00003545287
7957      36079389 ENSG00000185917       ENST00000429161 ENSE00003468436
7958      36079389 ENSG00000185917       ENST00000429161 ENSE00001536960
7959      36079389 ENSG00000185917       ENST00000429161 ENSE00001643676
7960      36079389 ENSG00000185917       ENST00000485865 ENSE00003530209
7961      36079389 ENSG00000185917       ENST00000485865 ENSE00001927489
7962      36079389 ENSG00000185917       ENST00000485865 ENSE00003477604
7963      36079389 ENSG00000185917       ENST00000485865 ENSE00001827880
7964      36079389 ENSG00000185917       ENST00000446166 ENSE00003682516
7965      36079389 ENSG00000185917       ENST00000446166 ENSE00003480255
7966      36079389 ENSG00000185917       ENST00000446166 ENSE00003545287
7967      36079389 ENSG00000185917       ENST00000446166 ENSE00003555627
7968      36079389 ENSG00000185917       ENST00000446166 ENSE00001536980
7969      36079389 ENSG00000185917       ENST00000446166 ENSE00001536969
7970      36079389 ENSG00000185917       ENST00000446166 ENSE00001786022
7971      36079389 ENSG00000185917       ENST00000442559 ENSE00003682516
7972      36079389 ENSG00000185917       ENST00000442559 ENSE00003480255
7973      36079389 ENSG00000185917       ENST00000442559 ENSE00003555627
7974      36079389 ENSG00000185917       ENST00000442559 ENSE00001536969
7975      36079389 ENSG00000185917       ENST00000442559 ENSE00002487387
7976      36079389 ENSG00000185917       ENST00000442559 ENSE00001798629
7977      36079389 ENSG00000185917       ENST00000460704 ENSE00001882789
7978      36079389 ENSG00000185917       ENST00000460704 ENSE00001869422
7979      36079389 ENSG00000185917       ENST00000443703 ENSE00003682516
7980      36079389 ENSG00000185917       ENST00000443703 ENSE00003592720
7981      36079389 ENSG00000185917       ENST00000443703 ENSE00001624437
7982      36079389 ENSG00000185917       ENST00000443703 ENSE00001763098
7983      36073166 ENSG00000159228       ENST00000466328 ENSE00003566185
7984      36073166 ENSG00000159228       ENST00000466328 ENSE00003559746
7985      36073166 ENSG00000159228       ENST00000466328 ENSE00002154026
7986      36073166 ENSG00000159228       ENST00000530908 ENSE00003512897
7987      36073166 ENSG00000159228       ENST00000530908 ENSE00003643969
7988      36073166 ENSG00000159228       ENST00000530908 ENSE00001734805
7989      36073166 ENSG00000159228       ENST00000290349 ENSE00003512897
7990      36073166 ENSG00000159228       ENST00000290349 ENSE00003643969
7991      36073166 ENSG00000159228       ENST00000290349 ENSE00001044162
7992      36073166 ENSG00000159228       ENST00000439427 ENSE00001919847
7993      36073166 ENSG00000159228       ENST00000439427 ENSE00002152862
7994      36073166 ENSG00000159228       ENST00000399191 ENSE00003643969
7995      36073166 ENSG00000159228       ENST00000399191 ENSE00001891664
7996      36073166 ENSG00000159228       ENST00000399191 ENSE00001536887
7997      36066652 ENSG00000200213       ENST00000363343 ENSE00001438106
7998      36064408 ENSG00000236677       ENST00000436303 ENSE00001711920
7999      36064408 ENSG00000236677       ENST00000436303 ENSE00001788299
8000      36064408 ENSG00000236677       ENST00000436303 ENSE00001650043
8001      36051377 ENSG00000189089       ENST00000408914 ENSE00001762578
8002      36016546 ENSG00000214914       ENST00000453844 ENSE00001612058
8003      36007838 ENSG00000231106       ENST00000457157 ENSE00001694810
8004      36007838 ENSG00000231106       ENST00000457157 ENSE00001621618
8005      36004667 ENSG00000159216       ENST00000344691 ENSE00001380483
8006      36004667 ENSG00000159216       ENST00000344691 ENSE00003519701
8007      36004667 ENSG00000159216       ENST00000344691 ENSE00003512550
8008      36004667 ENSG00000159216       ENST00000344691 ENSE00003788902
8009      36004667 ENSG00000159216       ENST00000344691 ENSE00003559527
8010      36004667 ENSG00000159216       ENST00000344691 ENSE00002287560
8011      36004667 ENSG00000159216       ENST00000300305 ENSE00003519701
8012      36004667 ENSG00000159216       ENST00000300305 ENSE00003512550
8013      36004667 ENSG00000159216       ENST00000300305 ENSE00003788902
8014      36004667 ENSG00000159216       ENST00000300305 ENSE00003559527
8015      36004667 ENSG00000159216       ENST00000300305 ENSE00002287560
8016      36004667 ENSG00000159216       ENST00000300305 ENSE00001317351
8017      36004667 ENSG00000159216       ENST00000300305 ENSE00003790369
8018      36004667 ENSG00000159216       ENST00000300305 ENSE00002454902
8019      36004667 ENSG00000159216       ENST00000482318 ENSE00001877026
8020      36004667 ENSG00000159216       ENST00000482318 ENSE00003704290
8021      36004667 ENSG00000159216       ENST00000482318 ENSE00003488338
8022      36004667 ENSG00000159216       ENST00000482318 ENSE00003661108
8023      36004667 ENSG00000159216       ENST00000482318 ENSE00003479797
8024      36004667 ENSG00000159216       ENST00000482318 ENSE00003535832
8025      36004667 ENSG00000159216       ENST00000482318 ENSE00001909211
8026      36004667 ENSG00000159216       ENST00000399240 ENSE00003519701
8027      36004667 ENSG00000159216       ENST00000399240 ENSE00003512550
8028      36004667 ENSG00000159216       ENST00000399240 ENSE00003559527
8029      36004667 ENSG00000159216       ENST00000399240 ENSE00001537135
8030      36004667 ENSG00000159216       ENST00000399240 ENSE00001537132
8031      36004667 ENSG00000159216       ENST00000479325 ENSE00001936216
8032      36004667 ENSG00000159216       ENST00000479325 ENSE00003608863
8033      36004667 ENSG00000159216       ENST00000358356 ENSE00001380483
8034      36004667 ENSG00000159216       ENST00000358356 ENSE00003519701
8035      36004667 ENSG00000159216       ENST00000358356 ENSE00003512550
8036      36004667 ENSG00000159216       ENST00000358356 ENSE00003788902
8037      36004667 ENSG00000159216       ENST00000358356 ENSE00003654721
8038      36004667 ENSG00000159216       ENST00000469087 ENSE00001887888
8039      36004667 ENSG00000159216       ENST00000469087 ENSE00001927669
8040      36004667 ENSG00000159216       ENST00000399237 ENSE00003519701
8041      36004667 ENSG00000159216       ENST00000399237 ENSE00003512550
8042      36004667 ENSG00000159216       ENST00000399237 ENSE00003788902
8043      36004667 ENSG00000159216       ENST00000399237 ENSE00002454902
8044      36004667 ENSG00000159216       ENST00000399237 ENSE00001780556
8045      36004667 ENSG00000159216       ENST00000467577 ENSE00003661108
8046      36004667 ENSG00000159216       ENST00000467577 ENSE00001817260
8047      36004667 ENSG00000159216       ENST00000455571 ENSE00002454902
8048      36004667 ENSG00000159216       ENST00000455571 ENSE00003704290
8049      36004667 ENSG00000159216       ENST00000455571 ENSE00001745508
8050      36004667 ENSG00000159216       ENST00000455571 ENSE00001802332
8051      36004667 ENSG00000159216       ENST00000475045 ENSE00003790369
8052      36004667 ENSG00000159216       ENST00000475045 ENSE00003704290
8053      36004667 ENSG00000159216       ENST00000475045 ENSE00003704169
8054      36004667 ENSG00000159216       ENST00000475045 ENSE00003707665
8055      36004667 ENSG00000159216       ENST00000475045 ENSE00001858910
8056      36004667 ENSG00000159216       ENST00000475045 ENSE00001840292
8057      36004667 ENSG00000159216       ENST00000475045 ENSE00002477305
8058      36004667 ENSG00000159216       ENST00000475045 ENSE00001841260
8059      36004667 ENSG00000159216       ENST00000475045 ENSE00001921911
8060      36004667 ENSG00000159216       ENST00000475045 ENSE00001851690
8061      36004667 ENSG00000159216       ENST00000475045 ENSE00001814878
8062      36004667 ENSG00000159216       ENST00000475045 ENSE00001822156
8063      36004667 ENSG00000159216       ENST00000475045 ENSE00001949821
8064      36004667 ENSG00000159216       ENST00000416754 ENSE00003790369
8065      36004667 ENSG00000159216       ENST00000416754 ENSE00003704290
8066      36004667 ENSG00000159216       ENST00000416754 ENSE00001595684
8067      36004667 ENSG00000159216       ENST00000468726 ENSE00001822156
8068      36004667 ENSG00000159216       ENST00000468726 ENSE00001819641
8069      36004667 ENSG00000159216       ENST00000467692 ENSE00001814878
8070      36004667 ENSG00000159216       ENST00000467692 ENSE00001858662
8071      36004667 ENSG00000159216       ENST00000467692 ENSE00001914443
8072      36004667 ENSG00000159216       ENST00000494829 ENSE00001814878
8073      36004667 ENSG00000159216       ENST00000494829 ENSE00001891207
8074      36004667 ENSG00000159216       ENST00000494829 ENSE00001869802
8075      36004667 ENSG00000159216       ENST00000460207 ENSE00001840292
8076      36004667 ENSG00000159216       ENST00000460207 ENSE00002477305
8077      36004667 ENSG00000159216       ENST00000460207 ENSE00001920158
8078      36004667 ENSG00000159216       ENST00000460207 ENSE00001889950
8079      36004667 ENSG00000159216       ENST00000437180 ENSE00003519701
8080      36004667 ENSG00000159216       ENST00000437180 ENSE00003512550
8081      36004667 ENSG00000159216       ENST00000437180 ENSE00003788902
8082      36004667 ENSG00000159216       ENST00000437180 ENSE00003559527
8083      36004667 ENSG00000159216       ENST00000437180 ENSE00002287560
8084      36004667 ENSG00000159216       ENST00000437180 ENSE00003790369
8085      36004667 ENSG00000159216       ENST00000437180 ENSE00002454902
8086      36004667 ENSG00000159216       ENST00000437180 ENSE00003704290
8087      36004667 ENSG00000159216       ENST00000437180 ENSE00001745508
8088      35887807 ENSG00000234008       ENST00000440405 ENSE00001678453
8089      35732942 ENSG00000230794       ENST00000412240 ENSE00001667321
8090      35732942 ENSG00000230794       ENST00000412240 ENSE00001690811
8091      35725100 ENSG00000229761       ENST00000434853 ENSE00001628169
8092      35720808 ENSG00000211590       ENST00000390235 ENSE00001507662
8093      35600022 ENSG00000231300       ENST00000431167 ENSE00001751341
8094      35472432 ENSG00000223671       ENST00000421454 ENSE00001729205
8095      35139222 ENSG00000234703       ENST00000455028 ENSE00001623290
8096      35139222 ENSG00000234703       ENST00000455028 ENSE00001764112
8097      34784886 ENSG00000234380       ENST00000420877 ENSE00001718426
8098      34784886 ENSG00000234380       ENST00000420877 ENSE00001731332
8099      34784886 ENSG00000234380       ENST00000420877 ENSE00001775300
8100      34784886 ENSG00000234380       ENST00000419921 ENSE00001600687
8101      34784886 ENSG00000234380       ENST00000419921 ENSE00001787250
8102      34737181 ENSG00000230978       ENST00000430635 ENSE00001611927
8103      34737181 ENSG00000230978       ENST00000430635 ENSE00001601444
8104      34737181 ENSG00000230978       ENST00000430635 ENSE00001697304
8105      34737181 ENSG00000230978       ENST00000430635 ENSE00001743703
8106      34737181 ENSG00000230978       ENST00000430635 ENSE00001721912
8107      34737181 ENSG00000230978       ENST00000430635 ENSE00001650166
8108      34718227 ENSG00000159212       ENST00000360731 ENSE00001635328
8109      34718227 ENSG00000159212       ENST00000360731 ENSE00001487601
8110      34718227 ENSG00000159212       ENST00000360731 ENSE00002449170
8111      34718227 ENSG00000159212       ENST00000360731 ENSE00001044048
8112      34718227 ENSG00000159212       ENST00000360731 ENSE00001044021
8113      34718227 ENSG00000159212       ENST00000360731 ENSE00001044034
8114      34718227 ENSG00000159212       ENST00000360731 ENSE00001325100
8115      34718227 ENSG00000159212       ENST00000349499 ENSE00001635328
8116      34718227 ENSG00000159212       ENST00000349499 ENSE00002449170
8117      34718227 ENSG00000159212       ENST00000349499 ENSE00001044048
8118      34718227 ENSG00000159212       ENST00000349499 ENSE00001044021
8119      34718227 ENSG00000159212       ENST00000349499 ENSE00001044034
8120      34718227 ENSG00000159212       ENST00000349499 ENSE00001325100
8121      34615142 ENSG00000159200       ENST00000487434 ENSE00001871208
8122      34615142 ENSG00000159200       ENST00000487434 ENSE00001866275
8123      34615142 ENSG00000159200       ENST00000482533 ENSE00001891602
8124      34615142 ENSG00000159200       ENST00000482533 ENSE00003659681
8125      34615142 ENSG00000159200       ENST00000482533 ENSE00003652771
8126      34615142 ENSG00000159200       ENST00000481448 ENSE00003659681
8127      34615142 ENSG00000159200       ENST00000481448 ENSE00003652771
8128      34615142 ENSG00000159200       ENST00000481448 ENSE00001883414
8129      34615142 ENSG00000159200       ENST00000481448 ENSE00001869588
8130      34615142 ENSG00000159200       ENST00000481448 ENSE00003708710
8131      34615142 ENSG00000159200       ENST00000381132 ENSE00003659681
8132      34615142 ENSG00000159200       ENST00000381132 ENSE00003652771
8133      34615142 ENSG00000159200       ENST00000381132 ENSE00003708710
8134      34615142 ENSG00000159200       ENST00000381132 ENSE00001487609
8135      34615142 ENSG00000159200       ENST00000487990 ENSE00003659681
8136      34615142 ENSG00000159200       ENST00000487990 ENSE00003652771
8137      34615142 ENSG00000159200       ENST00000487990 ENSE00001826052
8138      34615142 ENSG00000159200       ENST00000487990 ENSE00003524250
8139      34615142 ENSG00000159200       ENST00000399272 ENSE00003659681
8140      34615142 ENSG00000159200       ENST00000399272 ENSE00003652771
8141      34615142 ENSG00000159200       ENST00000399272 ENSE00003708710
8142      34615142 ENSG00000159200       ENST00000399272 ENSE00001537287
8143      34615142 ENSG00000159200       ENST00000489903 ENSE00001537265
8144      34615142 ENSG00000159200       ENST00000489903 ENSE00003707676
8145      34615142 ENSG00000159200       ENST00000489903 ENSE00003485644
8146      34615142 ENSG00000159200       ENST00000489903 ENSE00003498425
8147      34615142 ENSG00000159200       ENST00000313806 ENSE00003659681
8148      34615142 ENSG00000159200       ENST00000313806 ENSE00003652771
8149      34615142 ENSG00000159200       ENST00000313806 ENSE00003708710
8150      34615142 ENSG00000159200       ENST00000313806 ENSE00001869771
8151      34615142 ENSG00000159200       ENST00000492600 ENSE00003708710
8152      34615142 ENSG00000159200       ENST00000492600 ENSE00001957975
8153      34615142 ENSG00000159200       ENST00000492600 ENSE00001899157
8154      34615142 ENSG00000159200       ENST00000609325 ENSE00003708809
8155      34615142 ENSG00000159200       ENST00000463276 ENSE00001886756
8156      34615142 ENSG00000159200       ENST00000463276 ENSE00001893756
8157      34615142 ENSG00000159200       ENST00000463276 ENSE00001952788
8158      34615142 ENSG00000159200       ENST00000443408 ENSE00003659681
8159      34615142 ENSG00000159200       ENST00000443408 ENSE00003524250
8160      34615142 ENSG00000159200       ENST00000443408 ENSE00001537265
8161      34615142 ENSG00000159200       ENST00000443408 ENSE00003736651
8162      34615142 ENSG00000159200       ENST00000381135 ENSE00003659681
8163      34615142 ENSG00000159200       ENST00000381135 ENSE00003708710
8164      34615142 ENSG00000159200       ENST00000381135 ENSE00003736651
8165      34615142 ENSG00000159200       ENST00000381135 ENSE00001487624
8166      34615142 ENSG00000159200       ENST00000620920 ENSE00003659681
8167      34615142 ENSG00000159200       ENST00000620920 ENSE00003524250
8168      34615142 ENSG00000159200       ENST00000620920 ENSE00003736651
8169      34615142 ENSG00000159200       ENST00000620920 ENSE00003753426
8170      34512275 ENSG00000180509       ENST00000399289 ENSE00001537358
8171      34512275 ENSG00000180509       ENST00000399289 ENSE00001537356
8172      34512275 ENSG00000180509       ENST00000399289 ENSE00001954035
8173      34512275 ENSG00000180509       ENST00000399286 ENSE00001340756
8174      34512275 ENSG00000180509       ENST00000399286 ENSE00001340749
8175      34512275 ENSG00000180509       ENST00000399286 ENSE00001340746
8176      34512275 ENSG00000180509       ENST00000399286 ENSE00001787865
8177      34512275 ENSG00000180509       ENST00000416357 ENSE00001537344
8178      34512275 ENSG00000180509       ENST00000416357 ENSE00001537342
8179      34512275 ENSG00000180509       ENST00000399284 ENSE00001537356
8180      34512275 ENSG00000180509       ENST00000399284 ENSE00001537342
8181      34512275 ENSG00000180509       ENST00000399284 ENSE00001537339
8182      34512275 ENSG00000180509       ENST00000489175 ENSE00001811534
8183      34512275 ENSG00000180509       ENST00000489175 ENSE00001859709
8184      34512275 ENSG00000180509       ENST00000432085 ENSE00001537358
8185      34512275 ENSG00000180509       ENST00000432085 ENSE00001340746
8186      34512275 ENSG00000180509       ENST00000432085 ENSE00003743338
8187      34512275 ENSG00000180509       ENST00000621601 ENSE00001340746
8188      34512275 ENSG00000180509       ENST00000621601 ENSE00003743338
8189      34512275 ENSG00000180509       ENST00000621601 ENSE00003711662
8190      34512275 ENSG00000180509       ENST00000337385 ENSE00001340746
8191      34512275 ENSG00000180509       ENST00000337385 ENSE00003722111
8192      34512275 ENSG00000180509       ENST00000337385 ENSE00003729051
8193      34512275 ENSG00000180509       ENST00000611936 ENSE00003743338
8194      34512275 ENSG00000180509       ENST00000611936 ENSE00003742486
8195      34456237 ENSG00000221398       ENST00000408471 ENSE00001565106
8196      34426017 ENSG00000272958       ENST00000608289 ENSE00003707178
8197      34423966 ENSG00000243627       ENST00000450895 ENSE00001721013
8198      34423966 ENSG00000243627       ENST00000450895 ENSE00001791276
8199      34412587 ENSG00000273104       ENST00000608665 ENSE00003706100
8200      34407866 ENSG00000205670       ENST00000481710 ENSE00001556393
8201      34407866 ENSG00000205670       ENST00000481710 ENSE00003482155
8202      34407866 ENSG00000205670       ENST00000481710 ENSE00003551852
8203      34407866 ENSG00000205670       ENST00000481710 ENSE00003543986
8204      34407866 ENSG00000205670       ENST00000481710 ENSE00003609660
8205      34407866 ENSG00000205670       ENST00000399292 ENSE00001487632
8206      34407866 ENSG00000205670       ENST00000399292 ENSE00003674919
8207      34407866 ENSG00000205670       ENST00000399292 ENSE00003525225
8208      34407866 ENSG00000205670       ENST00000399292 ENSE00001537374
8209      34407866 ENSG00000205670       ENST00000399299 ENSE00001487632
8210      34407866 ENSG00000205670       ENST00000399299 ENSE00003674919
8211      34407866 ENSG00000205670       ENST00000399299 ENSE00003644005
8212      34407866 ENSG00000205670       ENST00000399299 ENSE00003581207
8213      34407866 ENSG00000205670       ENST00000489469 ENSE00003482155
8214      34407866 ENSG00000205670       ENST00000489469 ENSE00003551852
8215      34407866 ENSG00000205670       ENST00000489469 ENSE00001879241
8216      34407866 ENSG00000205670       ENST00000489469 ENSE00001945592
8217      34407866 ENSG00000205670       ENST00000495363 ENSE00003482155
8218      34407866 ENSG00000205670       ENST00000495363 ENSE00003551852
8219      34407866 ENSG00000205670       ENST00000495363 ENSE00003543986
8220      34407866 ENSG00000205670       ENST00000495363 ENSE00002445885
8221      34407866 ENSG00000205670       ENST00000495363 ENSE00001901127
8222      34407866 ENSG00000205670       ENST00000495363 ENSE00001845984
8223      34407866 ENSG00000205670       ENST00000474455 ENSE00003482155
8224      34407866 ENSG00000205670       ENST00000474455 ENSE00001856243
8225      34407866 ENSG00000205670       ENST00000474455 ENSE00001937886
8226      34407866 ENSG00000205670       ENST00000399295 ENSE00003674919
8227      34407866 ENSG00000205670       ENST00000399295 ENSE00003525225
8228      34407866 ENSG00000205670       ENST00000399295 ENSE00001537376
8229      34407866 ENSG00000205670       ENST00000399295 ENSE00001537370
8230      34401072 ENSG00000222018       ENST00000410005 ENSE00001579649
8231      34375348 ENSG00000225555       ENST00000440403 ENSE00001655354
8232      34375348 ENSG00000225555       ENST00000440403 ENSE00001790510
8233      34371389 ENSG00000159197       ENST00000290310 ENSE00001043935
8234      34371389 ENSG00000159197       ENST00000290310 ENSE00001043939
8235      34360033 ENSG00000272657       ENST00000362077 ENSE00001487691
8236      34360033 ENSG00000272657       ENST00000362077 ENSE00003562879
8237      34360033 ENSG00000272657       ENST00000362077 ENSE00003709584
8238      34360033 ENSG00000272657       ENST00000362077 ENSE00001614815
8239      34360033 ENSG00000272657       ENST00000362077 ENSE00003709071
8240      34360033 ENSG00000272657       ENST00000362077 ENSE00001789350
8241      34325034 ENSG00000214955       ENST00000427022 ENSE00001683060
8242      34325034 ENSG00000214955       ENST00000427022 ENSE00003703688
8243      34325034 ENSG00000214955       ENST00000427022 ENSE00001595255
8244      34325034 ENSG00000214955       ENST00000427022 ENSE00003702536
8245      34325034 ENSG00000214955       ENST00000427022 ENSE00001691804
8246      34190244 ENSG00000227456       ENST00000630751 ENSE00003764286
8247      34190244 ENSG00000227456       ENST00000630751 ENSE00001600875
8248      34190244 ENSG00000227456       ENST00000630751 ENSE00003768532
8249      34190244 ENSG00000227456       ENST00000430922 ENSE00001729994
8250      34190244 ENSG00000227456       ENST00000430922 ENSE00001762279
8251      34190244 ENSG00000227456       ENST00000428914 ENSE00001749835
8252      34190244 ENSG00000227456       ENST00000428914 ENSE00001607628
8253      34190244 ENSG00000227456       ENST00000609062 ENSE00003709750
8254      34190244 ENSG00000227456       ENST00000609062 ENSE00003703606
8255      34190244 ENSG00000227456       ENST00000609062 ENSE00003704327
8256      34190244 ENSG00000227456       ENST00000609947 ENSE00003706832
8257      34190244 ENSG00000227456       ENST00000609947 ENSE00003710503
8258      34190244 ENSG00000227456       ENST00000609947 ENSE00003704505
8259      34190244 ENSG00000227456       ENST00000416145 ENSE00001747668
8260      34190244 ENSG00000227456       ENST00000416145 ENSE00001797561
8261      34190244 ENSG00000227456       ENST00000419881 ENSE00001600875
8262      34190244 ENSG00000227456       ENST00000419881 ENSE00003709030
8263      34190244 ENSG00000227456       ENST00000419881 ENSE00001787920
8264      34190244 ENSG00000227456       ENST00000619549 ENSE00001600875
8265      34190244 ENSG00000227456       ENST00000619549 ENSE00003733671
8266      34190244 ENSG00000227456       ENST00000619549 ENSE00003741107
8267      34143034 ENSG00000243927       ENST00000488492 ENSE00001925207
8268      34143034 ENSG00000243927       ENST00000488492 ENSE00001815089
8269      34143034 ENSG00000243927       ENST00000488492 ENSE00001880912
8270      34143034 ENSG00000243927       ENST00000488492 ENSE00003529702
8271      34143034 ENSG00000243927       ENST00000488492 ENSE00003577543
8272      34143034 ENSG00000243927       ENST00000399312 ENSE00001537488
8273      34143034 ENSG00000243927       ENST00000399312 ENSE00003597756
8274      34143034 ENSG00000243927       ENST00000399312 ENSE00003491091
8275      34143034 ENSG00000243927       ENST00000477091 ENSE00001815089
8276      34143034 ENSG00000243927       ENST00000477091 ENSE00001880912
8277      34143034 ENSG00000243927       ENST00000477091 ENSE00003529702
8278      34143034 ENSG00000243927       ENST00000477091 ENSE00003577543
8279      34143034 ENSG00000243927       ENST00000477091 ENSE00001829385
8280      34143034 ENSG00000243927       ENST00000483977 ENSE00003577543
8281      34143034 ENSG00000243927       ENST00000483977 ENSE00001926497
8282      34143034 ENSG00000243927       ENST00000482679 ENSE00003529702
8283      34143034 ENSG00000243927       ENST00000482679 ENSE00003577543
8284      34143034 ENSG00000243927       ENST00000482679 ENSE00001817319
8285      34136071 ENSG00000224598       ENST00000415238 ENSE00001646431
8286      34106262 ENSG00000198743       ENST00000381151 ENSE00001487668
8287      34106262 ENSG00000198743       ENST00000381151 ENSE00001487667
8288      33977691 ENSG00000237945       ENST00000596365 ENSE00003124073
8289      33977691 ENSG00000237945       ENST00000596365 ENSE00001670666
8290      33977691 ENSG00000237945       ENST00000596365 ENSE00003172124
8291      33977691 ENSG00000237945       ENST00000597626 ENSE00001670666
8292      33977691 ENSG00000237945       ENST00000597626 ENSE00003178299
8293      33977691 ENSG00000237945       ENST00000597626 ENSE00002980010
8294      33977691 ENSG00000237945       ENST00000597626 ENSE00003135021
8295      33977691 ENSG00000237945       ENST00000597626 ENSE00003187413
8296      33977691 ENSG00000237945       ENST00000597626 ENSE00003216082
8297      33977691 ENSG00000237945       ENST00000616030 ENSE00003741815
8298      33977691 ENSG00000237945       ENST00000616030 ENSE00003728433
8299      33977691 ENSG00000237945       ENST00000616030 ENSE00003139331
8300      33977691 ENSG00000237945       ENST00000610236 ENSE00003708695
8301      33977691 ENSG00000237945       ENST00000610236 ENSE00003710879
8302      33977691 ENSG00000237945       ENST00000601471 ENSE00003115913
8303      33977691 ENSG00000237945       ENST00000601471 ENSE00003133909
8304      33977691 ENSG00000237945       ENST00000601471 ENSE00003056389
8305      33977691 ENSG00000237945       ENST00000427447 ENSE00001670666
8306      33977691 ENSG00000237945       ENST00000427447 ENSE00001741388
8307      33977691 ENSG00000237945       ENST00000427447 ENSE00001615684
8308      33977691 ENSG00000237945       ENST00000599421 ENSE00003134385
8309      33977691 ENSG00000237945       ENST00000599421 ENSE00003181378
8310      33977691 ENSG00000237945       ENST00000400353 ENSE00001670666
8311      33977691 ENSG00000237945       ENST00000400353 ENSE00001663992
8312      33977691 ENSG00000237945       ENST00000400353 ENSE00001796945
8313      33977691 ENSG00000237945       ENST00000622171 ENSE00002460708
8314      33977691 ENSG00000237945       ENST00000622171 ENSE00003744821
8315      33977691 ENSG00000237945       ENST00000628906 ENSE00001670666
8316      33977691 ENSG00000237945       ENST00000628906 ENSE00003765910
8317      33977691 ENSG00000237945       ENST00000628906 ENSE00003764620
8318      33977691 ENSG00000237945       ENST00000594752 ENSE00001670666
8319      33977691 ENSG00000237945       ENST00000594752 ENSE00003139331
8320      33977691 ENSG00000237945       ENST00000594752 ENSE00003111737
8321      33977691 ENSG00000237945       ENST00000594370 ENSE00001670666
8322      33977691 ENSG00000237945       ENST00000594370 ENSE00003139331
8323      33977691 ENSG00000237945       ENST00000594370 ENSE00003215400
8324      33977691 ENSG00000237945       ENST00000595747 ENSE00001670666
8325      33977691 ENSG00000237945       ENST00000595747 ENSE00003139331
8326      33977691 ENSG00000237945       ENST00000595747 ENSE00003005088
8327      33977691 ENSG00000237945       ENST00000608431 ENSE00001670666
8328      33977691 ENSG00000237945       ENST00000608431 ENSE00003702638
8329      33977691 ENSG00000237945       ENST00000593977 ENSE00003030697
8330      33977691 ENSG00000237945       ENST00000593977 ENSE00003191751
8331      33977691 ENSG00000237945       ENST00000593977 ENSE00002989601
8332      33977691 ENSG00000237945       ENST00000600155 ENSE00003043329
8333      33977691 ENSG00000237945       ENST00000600155 ENSE00003170413
8334      33977691 ENSG00000237945       ENST00000600155 ENSE00003149762
8335      33977691 ENSG00000237945       ENST00000381181 ENSE00001487744
8336      33977691 ENSG00000237945       ENST00000381181 ENSE00001487739
8337      33977691 ENSG00000237945       ENST00000620580 ENSE00003745774
8338      33977691 ENSG00000237945       ENST00000620580 ENSE00003753917
8339      33977691 ENSG00000237945       ENST00000613667 ENSE00003729314
8340      33977691 ENSG00000237945       ENST00000613667 ENSE00003754258
8341      33977691 ENSG00000237945       ENST00000609132 ENSE00003706565
8342      33977691 ENSG00000237945       ENST00000609132 ENSE00003704960
8343      33977691 ENSG00000237945       ENST00000609132 ENSE00003708550
8344      33968573 ENSG00000273102       ENST00000607953 ENSE00003707731
8345      33968573 ENSG00000273102       ENST00000607953 ENSE00003706509
8346      33931607 ENSG00000249209       ENST00000429238 ENSE00003756449
8347      33931607 ENSG00000249209       ENST00000429238 ENSE00003756201
8348      33931607 ENSG00000249209       ENST00000429238 ENSE00003757768
8349      33931607 ENSG00000249209       ENST00000429238 ENSE00001713270
8350      33931607 ENSG00000249209       ENST00000429238 ENSE00003619177
8351      33931607 ENSG00000249209       ENST00000429238 ENSE00003476113
8352      33931607 ENSG00000249209       ENST00000429238 ENSE00003484190
8353      33931607 ENSG00000249209       ENST00000429238 ENSE00001767773
8354      33919338 ENSG00000244294       ENST00000467060 ENSE00001895602
8355      33915980 ENSG00000241837       ENST00000431254 ENSE00003686413
8356      33915980 ENSG00000241837       ENST00000431254 ENSE00001777826
8357      33915980 ENSG00000241837       ENST00000431254 ENSE00003553754
8358      33915980 ENSG00000241837       ENST00000431254 ENSE00003664335
8359      33915980 ENSG00000241837       ENST00000431254 ENSE00003660834
8360      33915980 ENSG00000241837       ENST00000431254 ENSE00003505158
8361      33915980 ENSG00000241837       ENST00000491703 ENSE00003686413
8362      33915980 ENSG00000241837       ENST00000491703 ENSE00003505158
8363      33915980 ENSG00000241837       ENST00000491703 ENSE00001880491
8364      33915980 ENSG00000241837       ENST00000491703 ENSE00003484979
8365      33915980 ENSG00000241837       ENST00000491703 ENSE00003622069
8366      33915980 ENSG00000241837       ENST00000491703 ENSE00001840885
8367      33915980 ENSG00000241837       ENST00000290299 ENSE00003553754
8368      33915980 ENSG00000241837       ENST00000290299 ENSE00003664335
8369      33915980 ENSG00000241837       ENST00000290299 ENSE00001391666
8370      33915980 ENSG00000241837       ENST00000290299 ENSE00003658594
8371      33915980 ENSG00000241837       ENST00000290299 ENSE00003608641
8372      33915980 ENSG00000241837       ENST00000290299 ENSE00003477232
8373      33915980 ENSG00000241837       ENST00000290299 ENSE00003503253
8374      33915980 ENSG00000241837       ENST00000417181 ENSE00003505158
8375      33915980 ENSG00000241837       ENST00000417181 ENSE00001592610
8376      33915980 ENSG00000241837       ENST00000417181 ENSE00001688323
8377      33915980 ENSG00000241837       ENST00000417181 ENSE00001608844
8378      33915980 ENSG00000241837       ENST00000417181 ENSE00001792484
8379      33915980 ENSG00000241837       ENST00000418933 ENSE00003608641
8380      33915980 ENSG00000241837       ENST00000418933 ENSE00003477232
8381      33915980 ENSG00000241837       ENST00000418933 ENSE00002494347
8382      33915980 ENSG00000241837       ENST00000418933 ENSE00001714691
8383      33915980 ENSG00000241837       ENST00000429064 ENSE00003505158
8384      33915980 ENSG00000241837       ENST00000429064 ENSE00001671372
8385      33915980 ENSG00000241837       ENST00000429064 ENSE00001717647
8386      33915980 ENSG00000241837       ENST00000429064 ENSE00001632641
8387      33915980 ENSG00000241837       ENST00000495005 ENSE00003484979
8388      33915980 ENSG00000241837       ENST00000495005 ENSE00001868718
8389      33915980 ENSG00000241837       ENST00000495005 ENSE00003473248
8390      33915980 ENSG00000241837       ENST00000495005 ENSE00001917505
8391      33915980 ENSG00000241837       ENST00000496044 ENSE00003473248
8392      33915980 ENSG00000241837       ENST00000496044 ENSE00001948435
8393      33915980 ENSG00000241837       ENST00000496044 ENSE00001810366
8394      33915980 ENSG00000241837       ENST00000484627 ENSE00003473248
8395      33915980 ENSG00000241837       ENST00000484627 ENSE00001810366
8396      33915980 ENSG00000241837       ENST00000484627 ENSE00001896370
8397      33915980 ENSG00000241837       ENST00000487374 ENSE00003473248
8398      33915980 ENSG00000241837       ENST00000487374 ENSE00001927911
8399      33915980 ENSG00000241837       ENST00000487374 ENSE00001936688
8400      33899861 ENSG00000205726       ENST00000399353 ENSE00001537709
8401      33899861 ENSG00000205726       ENST00000399353 ENSE00003554783
8402      33899861 ENSG00000205726       ENST00000399353 ENSE00003636097
8403      33899861 ENSG00000205726       ENST00000399353 ENSE00003727180
8404      33899861 ENSG00000205726       ENST00000399353 ENSE00003789821
8405      33899861 ENSG00000205726       ENST00000399353 ENSE00001701224
8406      33899861 ENSG00000205726       ENST00000399353 ENSE00002306218
8407      33899861 ENSG00000205726       ENST00000399353 ENSE00003615598
8408      33899861 ENSG00000205726       ENST00000399353 ENSE00003660532
8409      33899861 ENSG00000205726       ENST00000399353 ENSE00003560708
8410      33899861 ENSG00000205726       ENST00000399353 ENSE00003582731
8411      33899861 ENSG00000205726       ENST00000399353 ENSE00002289133
8412      33899861 ENSG00000205726       ENST00000399353 ENSE00003754038
8413      33899861 ENSG00000205726       ENST00000399353 ENSE00003740685
8414      33899861 ENSG00000205726       ENST00000399353 ENSE00003748649
8415      33899861 ENSG00000205726       ENST00000399353 ENSE00003716255
8416      33899861 ENSG00000205726       ENST00000399353 ENSE00003716800
8417      33899861 ENSG00000205726       ENST00000399353 ENSE00003722466
8418      33899861 ENSG00000205726       ENST00000399353 ENSE00002294975
8419      33899861 ENSG00000205726       ENST00000399353 ENSE00003746393
8420      33899861 ENSG00000205726       ENST00000399353 ENSE00003629591
8421      33899861 ENSG00000205726       ENST00000399353 ENSE00002286409
8422      33899861 ENSG00000205726       ENST00000399353 ENSE00003550586
8423      33899861 ENSG00000205726       ENST00000399353 ENSE00003559784
8424      33899861 ENSG00000205726       ENST00000399353 ENSE00003604372
8425      33899861 ENSG00000205726       ENST00000399353 ENSE00003487819
8426      33899861 ENSG00000205726       ENST00000399353 ENSE00003694267
8427      33899861 ENSG00000205726       ENST00000399353 ENSE00003626830
8428      33899861 ENSG00000205726       ENST00000399353 ENSE00001537706
8429      33899861 ENSG00000205726       ENST00000444491 ENSE00003554783
8430      33899861 ENSG00000205726       ENST00000444491 ENSE00003636097
8431      33899861 ENSG00000205726       ENST00000444491 ENSE00003727180
8432      33899861 ENSG00000205726       ENST00000444491 ENSE00003789821
8433      33899861 ENSG00000205726       ENST00000444491 ENSE00001766438
8434      33899861 ENSG00000205726       ENST00000444491 ENSE00001725831
8435      33899861 ENSG00000205726       ENST00000444491 ENSE00001784317
8436      33899861 ENSG00000205726       ENST00000470742 ENSE00001907792
8437      33899861 ENSG00000205726       ENST00000470742 ENSE00003649049
8438      33899861 ENSG00000205726       ENST00000470742 ENSE00003617729
8439      33899861 ENSG00000205726       ENST00000470742 ENSE00001833384
8440      33899861 ENSG00000205726       ENST00000381318 ENSE00003554783
8441      33899861 ENSG00000205726       ENST00000381318 ENSE00003636097
8442      33899861 ENSG00000205726       ENST00000381318 ENSE00003727180
8443      33899861 ENSG00000205726       ENST00000381318 ENSE00003789821
8444      33899861 ENSG00000205726       ENST00000381318 ENSE00002306218
8445      33899861 ENSG00000205726       ENST00000381318 ENSE00003615598
8446      33899861 ENSG00000205726       ENST00000381318 ENSE00003660532
8447      33899861 ENSG00000205726       ENST00000381318 ENSE00003560708
8448      33899861 ENSG00000205726       ENST00000381318 ENSE00003582731
8449      33899861 ENSG00000205726       ENST00000381318 ENSE00002289133
8450      33899861 ENSG00000205726       ENST00000381318 ENSE00003754038
8451      33899861 ENSG00000205726       ENST00000381318 ENSE00003740685
8452      33899861 ENSG00000205726       ENST00000381318 ENSE00003748649
8453      33899861 ENSG00000205726       ENST00000381318 ENSE00003716255
8454      33899861 ENSG00000205726       ENST00000381318 ENSE00003716800
8455      33899861 ENSG00000205726       ENST00000381318 ENSE00003722466
8456      33899861 ENSG00000205726       ENST00000381318 ENSE00002294975
8457      33899861 ENSG00000205726       ENST00000381318 ENSE00003746393
8458      33899861 ENSG00000205726       ENST00000381318 ENSE00003629591
8459      33899861 ENSG00000205726       ENST00000381318 ENSE00002286409
8460      33899861 ENSG00000205726       ENST00000381318 ENSE00003550586
8461      33899861 ENSG00000205726       ENST00000381318 ENSE00003559784
8462      33899861 ENSG00000205726       ENST00000381318 ENSE00003604372
8463      33899861 ENSG00000205726       ENST00000381318 ENSE00003487819
8464      33899861 ENSG00000205726       ENST00000381318 ENSE00003694267
8465      33899861 ENSG00000205726       ENST00000381318 ENSE00003626830
8466      33899861 ENSG00000205726       ENST00000381318 ENSE00001867436
8467      33899861 ENSG00000205726       ENST00000381318 ENSE00003711579
8468      33899861 ENSG00000205726       ENST00000381318 ENSE00002528364
8469      33899861 ENSG00000205726       ENST00000381318 ENSE00003481950
8470      33899861 ENSG00000205726       ENST00000381318 ENSE00003516373
8471      33899861 ENSG00000205726       ENST00000381318 ENSE00003644095
8472      33899861 ENSG00000205726       ENST00000381318 ENSE00003529805
8473      33899861 ENSG00000205726       ENST00000381318 ENSE00003520853
8474      33899861 ENSG00000205726       ENST00000381318 ENSE00003507202
8475      33899861 ENSG00000205726       ENST00000381318 ENSE00003590878
8476      33899861 ENSG00000205726       ENST00000381318 ENSE00003543412
8477      33899861 ENSG00000205726       ENST00000381318 ENSE00003535724
8478      33899861 ENSG00000205726       ENST00000381318 ENSE00003673780
8479      33899861 ENSG00000205726       ENST00000381318 ENSE00001844175
8480      33899861 ENSG00000205726       ENST00000381291 ENSE00003554783
8481      33899861 ENSG00000205726       ENST00000381291 ENSE00003636097
8482      33899861 ENSG00000205726       ENST00000381291 ENSE00003727180
8483      33899861 ENSG00000205726       ENST00000381291 ENSE00003789821
8484      33899861 ENSG00000205726       ENST00000381291 ENSE00002306218
8485      33899861 ENSG00000205726       ENST00000381291 ENSE00003615598
8486      33899861 ENSG00000205726       ENST00000381291 ENSE00003660532
8487      33899861 ENSG00000205726       ENST00000381291 ENSE00003560708
8488      33899861 ENSG00000205726       ENST00000381291 ENSE00003582731
8489      33899861 ENSG00000205726       ENST00000381291 ENSE00002289133
8490      33899861 ENSG00000205726       ENST00000381291 ENSE00003754038
8491      33899861 ENSG00000205726       ENST00000381291 ENSE00003740685
8492      33899861 ENSG00000205726       ENST00000381291 ENSE00003748649
8493      33899861 ENSG00000205726       ENST00000381291 ENSE00003716255
8494      33899861 ENSG00000205726       ENST00000381291 ENSE00003716800
8495      33899861 ENSG00000205726       ENST00000381291 ENSE00003722466
8496      33899861 ENSG00000205726       ENST00000381291 ENSE00002294975
8497      33899861 ENSG00000205726       ENST00000381291 ENSE00003746393
8498      33899861 ENSG00000205726       ENST00000381291 ENSE00003629591
8499      33899861 ENSG00000205726       ENST00000381291 ENSE00002286409
8500      33899861 ENSG00000205726       ENST00000381291 ENSE00003550586
8501      33899861 ENSG00000205726       ENST00000381291 ENSE00003559784
8502      33899861 ENSG00000205726       ENST00000381291 ENSE00003604372
8503      33899861 ENSG00000205726       ENST00000381291 ENSE00003487819
8504      33899861 ENSG00000205726       ENST00000381291 ENSE00003694267
8505      33899861 ENSG00000205726       ENST00000381291 ENSE00003626830
8506      33899861 ENSG00000205726       ENST00000381291 ENSE00003711579
8507      33899861 ENSG00000205726       ENST00000381291 ENSE00002528364
8508      33899861 ENSG00000205726       ENST00000381291 ENSE00001488097
8509      33899861 ENSG00000205726       ENST00000381291 ENSE00001488096
8510      33899861 ENSG00000205726       ENST00000399367 ENSE00003554783
8511      33899861 ENSG00000205726       ENST00000399367 ENSE00003636097
8512      33899861 ENSG00000205726       ENST00000399367 ENSE00003727180
8513      33899861 ENSG00000205726       ENST00000399367 ENSE00003789821
8514      33899861 ENSG00000205726       ENST00000399367 ENSE00002306218
8515      33899861 ENSG00000205726       ENST00000399367 ENSE00003615598
8516      33899861 ENSG00000205726       ENST00000399367 ENSE00003660532
8517      33899861 ENSG00000205726       ENST00000399367 ENSE00003560708
8518      33899861 ENSG00000205726       ENST00000399367 ENSE00003582731
8519      33899861 ENSG00000205726       ENST00000399367 ENSE00002289133
8520      33899861 ENSG00000205726       ENST00000399367 ENSE00003754038
8521      33899861 ENSG00000205726       ENST00000399367 ENSE00003740685
8522      33899861 ENSG00000205726       ENST00000399367 ENSE00003748649
8523      33899861 ENSG00000205726       ENST00000399367 ENSE00003716255
8524      33899861 ENSG00000205726       ENST00000399367 ENSE00003716800
8525      33899861 ENSG00000205726       ENST00000399367 ENSE00003722466
8526      33899861 ENSG00000205726       ENST00000399367 ENSE00002294975
8527      33899861 ENSG00000205726       ENST00000399367 ENSE00003746393
8528      33899861 ENSG00000205726       ENST00000399367 ENSE00003629591
8529      33899861 ENSG00000205726       ENST00000399367 ENSE00002286409
8530      33899861 ENSG00000205726       ENST00000399367 ENSE00003550586
8531      33899861 ENSG00000205726       ENST00000399367 ENSE00003559784
8532      33899861 ENSG00000205726       ENST00000399367 ENSE00003604372
8533      33899861 ENSG00000205726       ENST00000399367 ENSE00003487819
8534      33899861 ENSG00000205726       ENST00000399367 ENSE00003694267
8535      33899861 ENSG00000205726       ENST00000399367 ENSE00003626830
8536      33899861 ENSG00000205726       ENST00000399367 ENSE00003711579
8537      33899861 ENSG00000205726       ENST00000399367 ENSE00003481950
8538      33899861 ENSG00000205726       ENST00000399367 ENSE00003516373
8539      33899861 ENSG00000205726       ENST00000399367 ENSE00003644095
8540      33899861 ENSG00000205726       ENST00000399367 ENSE00003529805
8541      33899861 ENSG00000205726       ENST00000399367 ENSE00003520853
8542      33899861 ENSG00000205726       ENST00000399367 ENSE00003507202
8543      33899861 ENSG00000205726       ENST00000399367 ENSE00003590878
8544      33899861 ENSG00000205726       ENST00000399367 ENSE00003543412
8545      33899861 ENSG00000205726       ENST00000399367 ENSE00003535724
8546      33899861 ENSG00000205726       ENST00000399367 ENSE00003673780
8547      33899861 ENSG00000205726       ENST00000399367 ENSE00001837439
8548      33899861 ENSG00000205726       ENST00000399367 ENSE00001937188
8549      33899861 ENSG00000205726       ENST00000399352 ENSE00003554783
8550      33899861 ENSG00000205726       ENST00000399352 ENSE00003636097
8551      33899861 ENSG00000205726       ENST00000399352 ENSE00003727180
8552      33899861 ENSG00000205726       ENST00000399352 ENSE00003789821
8553      33899861 ENSG00000205726       ENST00000399352 ENSE00002306218
8554      33899861 ENSG00000205726       ENST00000399352 ENSE00003615598
8555      33899861 ENSG00000205726       ENST00000399352 ENSE00003660532
8556      33899861 ENSG00000205726       ENST00000399352 ENSE00003560708
8557      33899861 ENSG00000205726       ENST00000399352 ENSE00003582731
8558      33899861 ENSG00000205726       ENST00000399352 ENSE00002289133
8559      33899861 ENSG00000205726       ENST00000399352 ENSE00003754038
8560      33899861 ENSG00000205726       ENST00000399352 ENSE00003740685
8561      33899861 ENSG00000205726       ENST00000399352 ENSE00003748649
8562      33899861 ENSG00000205726       ENST00000399352 ENSE00003716255
8563      33899861 ENSG00000205726       ENST00000399352 ENSE00003716800
8564      33899861 ENSG00000205726       ENST00000399352 ENSE00003722466
8565      33899861 ENSG00000205726       ENST00000399352 ENSE00002294975
8566      33899861 ENSG00000205726       ENST00000399352 ENSE00003746393
8567      33899861 ENSG00000205726       ENST00000399352 ENSE00003629591
8568      33899861 ENSG00000205726       ENST00000399352 ENSE00002286409
8569      33899861 ENSG00000205726       ENST00000399352 ENSE00003550586
8570      33899861 ENSG00000205726       ENST00000399352 ENSE00003559784
8571      33899861 ENSG00000205726       ENST00000399352 ENSE00003604372
8572      33899861 ENSG00000205726       ENST00000399352 ENSE00003487819
8573      33899861 ENSG00000205726       ENST00000399352 ENSE00003694267
8574      33899861 ENSG00000205726       ENST00000399352 ENSE00003626830
8575      33899861 ENSG00000205726       ENST00000399352 ENSE00003711579
8576      33899861 ENSG00000205726       ENST00000399352 ENSE00001537699
8577      33899861 ENSG00000205726       ENST00000399352 ENSE00001537698
8578      33899861 ENSG00000205726       ENST00000399355 ENSE00003554783
8579      33899861 ENSG00000205726       ENST00000399355 ENSE00003636097
8580      33899861 ENSG00000205726       ENST00000399355 ENSE00003727180
8581      33899861 ENSG00000205726       ENST00000399355 ENSE00003789821
8582      33899861 ENSG00000205726       ENST00000399355 ENSE00002306218
8583      33899861 ENSG00000205726       ENST00000399355 ENSE00003615598
8584      33899861 ENSG00000205726       ENST00000399355 ENSE00003660532
8585      33899861 ENSG00000205726       ENST00000399355 ENSE00003560708
8586      33899861 ENSG00000205726       ENST00000399355 ENSE00003582731
8587      33899861 ENSG00000205726       ENST00000399355 ENSE00002289133
8588      33899861 ENSG00000205726       ENST00000399355 ENSE00003754038
8589      33899861 ENSG00000205726       ENST00000399355 ENSE00003740685
8590      33899861 ENSG00000205726       ENST00000399355 ENSE00003748649
8591      33899861 ENSG00000205726       ENST00000399355 ENSE00003716255
8592      33899861 ENSG00000205726       ENST00000399355 ENSE00003716800
8593      33899861 ENSG00000205726       ENST00000399355 ENSE00003722466
8594      33899861 ENSG00000205726       ENST00000399355 ENSE00002294975
8595      33899861 ENSG00000205726       ENST00000399355 ENSE00003746393
8596      33899861 ENSG00000205726       ENST00000399355 ENSE00003629591
8597      33899861 ENSG00000205726       ENST00000399355 ENSE00002286409
8598      33899861 ENSG00000205726       ENST00000399355 ENSE00003550586
8599      33899861 ENSG00000205726       ENST00000399355 ENSE00003487819
8600      33899861 ENSG00000205726       ENST00000399355 ENSE00003694267
8601      33899861 ENSG00000205726       ENST00000399355 ENSE00003626830
8602      33899861 ENSG00000205726       ENST00000399355 ENSE00003711579
8603      33899861 ENSG00000205726       ENST00000399355 ENSE00002528364
8604      33899861 ENSG00000205726       ENST00000399355 ENSE00001537694
8605      33899861 ENSG00000205726       ENST00000399355 ENSE00001682575
8606      33899861 ENSG00000205726       ENST00000399349 ENSE00003554783
8607      33899861 ENSG00000205726       ENST00000399349 ENSE00003636097
8608      33899861 ENSG00000205726       ENST00000399349 ENSE00003727180
8609      33899861 ENSG00000205726       ENST00000399349 ENSE00003789821
8610      33899861 ENSG00000205726       ENST00000399349 ENSE00002306218
8611      33899861 ENSG00000205726       ENST00000399349 ENSE00003615598
8612      33899861 ENSG00000205726       ENST00000399349 ENSE00003660532
8613      33899861 ENSG00000205726       ENST00000399349 ENSE00003560708
8614      33899861 ENSG00000205726       ENST00000399349 ENSE00003582731
8615      33899861 ENSG00000205726       ENST00000399349 ENSE00002289133
8616      33899861 ENSG00000205726       ENST00000399349 ENSE00003754038
8617      33899861 ENSG00000205726       ENST00000399349 ENSE00003740685
8618      33899861 ENSG00000205726       ENST00000399349 ENSE00003748649
8619      33899861 ENSG00000205726       ENST00000399349 ENSE00003716255
8620      33899861 ENSG00000205726       ENST00000399349 ENSE00003716800
8621      33899861 ENSG00000205726       ENST00000399349 ENSE00003722466
8622      33899861 ENSG00000205726       ENST00000399349 ENSE00002294975
8623      33899861 ENSG00000205726       ENST00000399349 ENSE00003746393
8624      33899861 ENSG00000205726       ENST00000399349 ENSE00003629591
8625      33899861 ENSG00000205726       ENST00000399349 ENSE00002286409
8626      33899861 ENSG00000205726       ENST00000399349 ENSE00003550586
8627      33899861 ENSG00000205726       ENST00000399349 ENSE00003487819
8628      33899861 ENSG00000205726       ENST00000399349 ENSE00003694267
8629      33899861 ENSG00000205726       ENST00000399349 ENSE00003626830
8630      33899861 ENSG00000205726       ENST00000399349 ENSE00003711579
8631      33899861 ENSG00000205726       ENST00000399349 ENSE00001537694
8632      33899861 ENSG00000205726       ENST00000399349 ENSE00001537693
8633      33899861 ENSG00000205726       ENST00000451686 ENSE00003554783
8634      33899861 ENSG00000205726       ENST00000451686 ENSE00003636097
8635      33899861 ENSG00000205726       ENST00000451686 ENSE00003727180
8636      33899861 ENSG00000205726       ENST00000451686 ENSE00001725831
8637      33899861 ENSG00000205726       ENST00000451686 ENSE00001764225
8638      33899861 ENSG00000205726       ENST00000451686 ENSE00001713722
8639      33899861 ENSG00000205726       ENST00000381283 ENSE00003554783
8640      33899861 ENSG00000205726       ENST00000381283 ENSE00003636097
8641      33899861 ENSG00000205726       ENST00000381283 ENSE00003727180
8642      33899861 ENSG00000205726       ENST00000381283 ENSE00003789821
8643      33899861 ENSG00000205726       ENST00000381283 ENSE00002306218
8644      33899861 ENSG00000205726       ENST00000381283 ENSE00003615598
8645      33899861 ENSG00000205726       ENST00000381283 ENSE00003660532
8646      33899861 ENSG00000205726       ENST00000381283 ENSE00003560708
8647      33899861 ENSG00000205726       ENST00000381283 ENSE00003582731
8648      33899861 ENSG00000205726       ENST00000381283 ENSE00001754766
8649      33899861 ENSG00000205726       ENST00000456489 ENSE00001778198
8650      33899861 ENSG00000205726       ENST00000456489 ENSE00001696492
8651      33899861 ENSG00000205726       ENST00000488166 ENSE00003508603
8652      33899861 ENSG00000205726       ENST00000488166 ENSE00003583157
8653      33899861 ENSG00000205726       ENST00000488166 ENSE00003632990
8654      33899861 ENSG00000205726       ENST00000488166 ENSE00003505623
8655      33899861 ENSG00000205726       ENST00000488166 ENSE00001872002
8656      33899861 ENSG00000205726       ENST00000488166 ENSE00001857476
8657      33899861 ENSG00000205726       ENST00000488166 ENSE00001911086
8658      33899861 ENSG00000205726       ENST00000474132 ENSE00001815146
8659      33899861 ENSG00000205726       ENST00000474132 ENSE00001911561
8660      33899861 ENSG00000205726       ENST00000419241 ENSE00002294975
8661      33899861 ENSG00000205726       ENST00000419241 ENSE00003490444
8662      33899861 ENSG00000205726       ENST00000419241 ENSE00001658212
8663      33899861 ENSG00000205726       ENST00000419241 ENSE00002521154
8664      33899861 ENSG00000205726       ENST00000419241 ENSE00003597769
8665      33899861 ENSG00000205726       ENST00000419241 ENSE00001632947
8666      33899861 ENSG00000205726       ENST00000440794 ENSE00003746393
8667      33899861 ENSG00000205726       ENST00000440794 ENSE00003629591
8668      33899861 ENSG00000205726       ENST00000440794 ENSE00002528364
8669      33899861 ENSG00000205726       ENST00000440794 ENSE00002510832
8670      33899861 ENSG00000205726       ENST00000440794 ENSE00001653730
8671      33899861 ENSG00000205726       ENST00000465143 ENSE00002525954
8672      33899861 ENSG00000205726       ENST00000465143 ENSE00001949525
8673      33899861 ENSG00000205726       ENST00000487427 ENSE00003459835
8674      33899861 ENSG00000205726       ENST00000487427 ENSE00001874278
8675      33899861 ENSG00000205726       ENST00000487427 ENSE00003463149
8676      33899861 ENSG00000205726       ENST00000487427 ENSE00003617459
8677      33899861 ENSG00000205726       ENST00000487427 ENSE00002233835
8678      33899861 ENSG00000205726       ENST00000437126 ENSE00003550586
8679      33899861 ENSG00000205726       ENST00000437126 ENSE00003615431
8680      33899861 ENSG00000205726       ENST00000437126 ENSE00001780124
8681      33899861 ENSG00000205726       ENST00000437126 ENSE00003654428
8682      33899861 ENSG00000205726       ENST00000437126 ENSE00001766726
8683      33899861 ENSG00000205726       ENST00000437126 ENSE00001602683
8684      33899861 ENSG00000205726       ENST00000428240 ENSE00003459835
8685      33899861 ENSG00000205726       ENST00000428240 ENSE00003617459
8686      33899861 ENSG00000205726       ENST00000428240 ENSE00001645690
8687      33899861 ENSG00000205726       ENST00000428240 ENSE00001778723
8688      33899861 ENSG00000205726       ENST00000472548 ENSE00003615431
8689      33899861 ENSG00000205726       ENST00000472548 ENSE00003641021
8690      33899861 ENSG00000205726       ENST00000472548 ENSE00003497810
8691      33899861 ENSG00000205726       ENST00000472548 ENSE00001924934
8692      33899861 ENSG00000205726       ENST00000472548 ENSE00001924956
8693      33899861 ENSG00000205726       ENST00000479424 ENSE00003615431
8694      33899861 ENSG00000205726       ENST00000479424 ENSE00003641021
8695      33899861 ENSG00000205726       ENST00000479424 ENSE00003497810
8696      33899861 ENSG00000205726       ENST00000479424 ENSE00001924956
8697      33899861 ENSG00000205726       ENST00000479424 ENSE00001901752
8698      33899861 ENSG00000205726       ENST00000462212 ENSE00003641021
8699      33899861 ENSG00000205726       ENST00000462212 ENSE00003497810
8700      33899861 ENSG00000205726       ENST00000462212 ENSE00001924956
8701      33899861 ENSG00000205726       ENST00000462212 ENSE00001879685
8702      33899861 ENSG00000205726       ENST00000495656 ENSE00003615431
8703      33899861 ENSG00000205726       ENST00000495656 ENSE00003641021
8704      33899861 ENSG00000205726       ENST00000495656 ENSE00003497810
8705      33899861 ENSG00000205726       ENST00000495656 ENSE00001924934
8706      33899861 ENSG00000205726       ENST00000495656 ENSE00001828929
8707      33899861 ENSG00000205726       ENST00000475422 ENSE00001879685
8708      33899861 ENSG00000205726       ENST00000475422 ENSE00001828929
8709      33899861 ENSG00000205726       ENST00000489261 ENSE00003641021
8710      33899861 ENSG00000205726       ENST00000489261 ENSE00003497810
8711      33899861 ENSG00000205726       ENST00000489261 ENSE00001879685
8712      33899861 ENSG00000205726       ENST00000489261 ENSE00001828929
8713      33899861 ENSG00000205726       ENST00000381284 ENSE00003644095
8714      33899861 ENSG00000205726       ENST00000381284 ENSE00003529805
8715      33899861 ENSG00000205726       ENST00000381284 ENSE00003507202
8716      33899861 ENSG00000205726       ENST00000381284 ENSE00003590878
8717      33899861 ENSG00000205726       ENST00000381284 ENSE00003543412
8718      33899861 ENSG00000205726       ENST00000381284 ENSE00003535724
8719      33899861 ENSG00000205726       ENST00000381284 ENSE00001759724
8720      33899861 ENSG00000205726       ENST00000381284 ENSE00001794822
8721      33899861 ENSG00000205726       ENST00000420666 ENSE00001678440
8722      33899861 ENSG00000205726       ENST00000420666 ENSE00003672211
8723      33899861 ENSG00000205726       ENST00000420666 ENSE00003523032
8724      33899861 ENSG00000205726       ENST00000420666 ENSE00001623875
8725      33899861 ENSG00000205726       ENST00000415023 ENSE00003590878
8726      33899861 ENSG00000205726       ENST00000415023 ENSE00003543412
8727      33899861 ENSG00000205726       ENST00000415023 ENSE00003535724
8728      33899861 ENSG00000205726       ENST00000415023 ENSE00001794822
8729      33899861 ENSG00000205726       ENST00000415023 ENSE00001698022
8730      33899861 ENSG00000205726       ENST00000379960 ENSE00002306218
8731      33899861 ENSG00000205726       ENST00000379960 ENSE00003615598
8732      33899861 ENSG00000205726       ENST00000379960 ENSE00003660532
8733      33899861 ENSG00000205726       ENST00000379960 ENSE00003560708
8734      33899861 ENSG00000205726       ENST00000379960 ENSE00003582731
8735      33899861 ENSG00000205726       ENST00000379960 ENSE00003731962
8736      33899861 ENSG00000205726       ENST00000379960 ENSE00003717171
8737      33899861 ENSG00000205726       ENST00000379960 ENSE00003728232
8738      33899861 ENSG00000205726       ENST00000379960 ENSE00003726732
8739      33899861 ENSG00000205726       ENST00000379960 ENSE00003736560
8740      33899861 ENSG00000205726       ENST00000379960 ENSE00003731102
8741      33899861 ENSG00000205726       ENST00000379960 ENSE00002230721
8742      33899861 ENSG00000205726       ENST00000379960 ENSE00003720754
8743      33899861 ENSG00000205726       ENST00000379960 ENSE00003490444
8744      33899861 ENSG00000205726       ENST00000379960 ENSE00003750025
8745      33899861 ENSG00000205726       ENST00000379960 ENSE00003459835
8746      33899861 ENSG00000205726       ENST00000379960 ENSE00003641021
8747      33899861 ENSG00000205726       ENST00000379960 ENSE00003715155
8748      33899861 ENSG00000205726       ENST00000379960 ENSE00003717775
8749      33899861 ENSG00000205726       ENST00000379960 ENSE00003719460
8750      33899861 ENSG00000205726       ENST00000381285 ENSE00003554783
8751      33899861 ENSG00000205726       ENST00000381285 ENSE00003636097
8752      33899861 ENSG00000205726       ENST00000381285 ENSE00003727180
8753      33899861 ENSG00000205726       ENST00000381285 ENSE00003789821
8754      33899861 ENSG00000205726       ENST00000381285 ENSE00001701224
8755      33899861 ENSG00000205726       ENST00000381285 ENSE00002306218
8756      33899861 ENSG00000205726       ENST00000381285 ENSE00003615598
8757      33899861 ENSG00000205726       ENST00000381285 ENSE00003660532
8758      33899861 ENSG00000205726       ENST00000381285 ENSE00003560708
8759      33899861 ENSG00000205726       ENST00000381285 ENSE00003582731
8760      33899861 ENSG00000205726       ENST00000381285 ENSE00002289133
8761      33899861 ENSG00000205726       ENST00000381285 ENSE00003754038
8762      33899861 ENSG00000205726       ENST00000381285 ENSE00003740685
8763      33899861 ENSG00000205726       ENST00000381285 ENSE00003748649
8764      33899861 ENSG00000205726       ENST00000381285 ENSE00003716255
8765      33899861 ENSG00000205726       ENST00000381285 ENSE00003716800
8766      33899861 ENSG00000205726       ENST00000381285 ENSE00003722466
8767      33899861 ENSG00000205726       ENST00000381285 ENSE00002294975
8768      33899861 ENSG00000205726       ENST00000381285 ENSE00003746393
8769      33899861 ENSG00000205726       ENST00000381285 ENSE00003629591
8770      33899861 ENSG00000205726       ENST00000381285 ENSE00001488097
8771      33899861 ENSG00000205726       ENST00000381285 ENSE00003615431
8772      33899861 ENSG00000205726       ENST00000381285 ENSE00003641021
8773      33899861 ENSG00000205726       ENST00000381285 ENSE00003497810
8774      33899861 ENSG00000205726       ENST00000381285 ENSE00003463149
8775      33899861 ENSG00000205726       ENST00000381285 ENSE00003617459
8776      33899861 ENSG00000205726       ENST00000381285 ENSE00003523032
8777      33899861 ENSG00000205726       ENST00000381285 ENSE00003512396
8778      33899861 ENSG00000205726       ENST00000381285 ENSE00003522306
8779      33899861 ENSG00000205726       ENST00000381285 ENSE00003663309
8780      33899861 ENSG00000205726       ENST00000381285 ENSE00003521528
8781      33899861 ENSG00000205726       ENST00000381285 ENSE00003581231
8782      33899861 ENSG00000205726       ENST00000381285 ENSE00003519879
8783      33899861 ENSG00000205726       ENST00000381285 ENSE00003584313
8784      33899861 ENSG00000205726       ENST00000381285 ENSE00003675722
8785      33899861 ENSG00000205726       ENST00000381285 ENSE00003571526
8786      33899861 ENSG00000205726       ENST00000381285 ENSE00003682629
8787      33899861 ENSG00000205726       ENST00000381285 ENSE00001664654
8788      33899861 ENSG00000205726       ENST00000399338 ENSE00003636097
8789      33899861 ENSG00000205726       ENST00000399338 ENSE00003727180
8790      33899861 ENSG00000205726       ENST00000399338 ENSE00003789821
8791      33899861 ENSG00000205726       ENST00000399338 ENSE00002306218
8792      33899861 ENSG00000205726       ENST00000399338 ENSE00003615598
8793      33899861 ENSG00000205726       ENST00000399338 ENSE00003660532
8794      33899861 ENSG00000205726       ENST00000399338 ENSE00003560708
8795      33899861 ENSG00000205726       ENST00000399338 ENSE00003582731
8796      33899861 ENSG00000205726       ENST00000399338 ENSE00002289133
8797      33899861 ENSG00000205726       ENST00000399338 ENSE00003754038
8798      33899861 ENSG00000205726       ENST00000399338 ENSE00003740685
8799      33899861 ENSG00000205726       ENST00000399338 ENSE00003748649
8800      33899861 ENSG00000205726       ENST00000399338 ENSE00003716255
8801      33899861 ENSG00000205726       ENST00000399338 ENSE00003716800
8802      33899861 ENSG00000205726       ENST00000399338 ENSE00003722466
8803      33899861 ENSG00000205726       ENST00000399338 ENSE00002294975
8804      33899861 ENSG00000205726       ENST00000399338 ENSE00003746393
8805      33899861 ENSG00000205726       ENST00000399338 ENSE00003629591
8806      33899861 ENSG00000205726       ENST00000399338 ENSE00003711579
8807      33899861 ENSG00000205726       ENST00000399338 ENSE00002220213
8808      33899861 ENSG00000205726       ENST00000399338 ENSE00001719494
8809      33643926 ENSG00000205758       ENST00000488167 ENSE00001878345
8810      33643926 ENSG00000205758       ENST00000488167 ENSE00003613982
8811      33643926 ENSG00000205758       ENST00000488167 ENSE00003624943
8812      33643926 ENSG00000205758       ENST00000488167 ENSE00002530970
8813      33643926 ENSG00000205758       ENST00000417979 ENSE00003635139
8814      33643926 ENSG00000205758       ENST00000417979 ENSE00003502265
8815      33643926 ENSG00000205758       ENST00000417979 ENSE00003547975
8816      33643926 ENSG00000205758       ENST00000417979 ENSE00001538343
8817      33643926 ENSG00000205758       ENST00000417979 ENSE00003545673
8818      33643926 ENSG00000205758       ENST00000417979 ENSE00003567629
8819      33643926 ENSG00000205758       ENST00000417979 ENSE00001596721
8820      33643926 ENSG00000205758       ENST00000417979 ENSE00002448451
8821      33643926 ENSG00000205758       ENST00000490714 ENSE00003545673
8822      33643926 ENSG00000205758       ENST00000490714 ENSE00003613982
8823      33643926 ENSG00000205758       ENST00000490714 ENSE00001899745
8824      33643926 ENSG00000205758       ENST00000490714 ENSE00003552865
8825      33643926 ENSG00000205758       ENST00000490714 ENSE00003690988
8826      33643926 ENSG00000205758       ENST00000490714 ENSE00003483827
8827      33643926 ENSG00000205758       ENST00000490714 ENSE00001833797
8828      33643926 ENSG00000205758       ENST00000413017 ENSE00003642759
8829      33643926 ENSG00000205758       ENST00000413017 ENSE00003528796
8830      33643926 ENSG00000205758       ENST00000413017 ENSE00003683733
8831      33643926 ENSG00000205758       ENST00000413017 ENSE00003635139
8832      33643926 ENSG00000205758       ENST00000413017 ENSE00001812915
8833      33643926 ENSG00000205758       ENST00000413017 ENSE00001655845
8834      33643926 ENSG00000205758       ENST00000438788 ENSE00001711363
8835      33643926 ENSG00000205758       ENST00000438788 ENSE00001780713
8836      33643926 ENSG00000205758       ENST00000431177 ENSE00003642759
8837      33643926 ENSG00000205758       ENST00000431177 ENSE00003528796
8838      33643926 ENSG00000205758       ENST00000431177 ENSE00003683733
8839      33643926 ENSG00000205758       ENST00000431177 ENSE00003635139
8840      33643926 ENSG00000205758       ENST00000431177 ENSE00003502265
8841      33643926 ENSG00000205758       ENST00000431177 ENSE00003547975
8842      33643926 ENSG00000205758       ENST00000431177 ENSE00001680487
8843      33643926 ENSG00000205758       ENST00000431177 ENSE00001669850
8844      33643926 ENSG00000205758       ENST00000479964 ENSE00003516588
8845      33643926 ENSG00000205758       ENST00000479964 ENSE00001937306
8846      33643926 ENSG00000205758       ENST00000479964 ENSE00003688771
8847      33643926 ENSG00000205758       ENST00000479964 ENSE00001813881
8848      33643926 ENSG00000205758       ENST00000440526 ENSE00003635139
8849      33643926 ENSG00000205758       ENST00000440526 ENSE00003502265
8850      33643926 ENSG00000205758       ENST00000440526 ENSE00003547975
8851      33643926 ENSG00000205758       ENST00000440526 ENSE00001387385
8852      33643926 ENSG00000205758       ENST00000440526 ENSE00003493157
8853      33643926 ENSG00000205758       ENST00000440526 ENSE00003596663
8854      33643926 ENSG00000205758       ENST00000440526 ENSE00001805410
8855      33643926 ENSG00000205758       ENST00000440526 ENSE00001739270
8856      33643926 ENSG00000205758       ENST00000437996 ENSE00001770207
8857      33643926 ENSG00000205758       ENST00000437996 ENSE00003582597
8858      33643926 ENSG00000205758       ENST00000437996 ENSE00003516588
8859      33643926 ENSG00000205758       ENST00000437996 ENSE00001747269
8860      33643926 ENSG00000205758       ENST00000437996 ENSE00003520702
8861      33643926 ENSG00000205758       ENST00000437996 ENSE00001644442
8862      33643926 ENSG00000205758       ENST00000445393 ENSE00003642759
8863      33643926 ENSG00000205758       ENST00000445393 ENSE00003528796
8864      33643926 ENSG00000205758       ENST00000445393 ENSE00003683733
8865      33643926 ENSG00000205758       ENST00000445393 ENSE00003547975
8866      33643926 ENSG00000205758       ENST00000445393 ENSE00001387385
8867      33643926 ENSG00000205758       ENST00000445393 ENSE00001538343
8868      33643926 ENSG00000205758       ENST00000445393 ENSE00001717080
8869      33643926 ENSG00000205758       ENST00000480893 ENSE00003516588
8870      33643926 ENSG00000205758       ENST00000480893 ENSE00001879733
8871      33643926 ENSG00000205758       ENST00000480893 ENSE00001935720
8872      33643926 ENSG00000205758       ENST00000480893 ENSE00001861758
8873      33643926 ENSG00000205758       ENST00000381554 ENSE00001883826
8874      33643926 ENSG00000205758       ENST00000381554 ENSE00003642759
8875      33643926 ENSG00000205758       ENST00000381554 ENSE00003528796
8876      33643926 ENSG00000205758       ENST00000381554 ENSE00003683733
8877      33643926 ENSG00000205758       ENST00000381554 ENSE00003635139
8878      33643926 ENSG00000205758       ENST00000381554 ENSE00003502265
8879      33643926 ENSG00000205758       ENST00000381554 ENSE00003547975
8880      33643926 ENSG00000205758       ENST00000381554 ENSE00001387385
8881      33643926 ENSG00000205758       ENST00000381554 ENSE00003493157
8882      33643926 ENSG00000205758       ENST00000381554 ENSE00003596663
8883      33643926 ENSG00000205758       ENST00000381554 ENSE00003499413
8884      33643926 ENSG00000205758       ENST00000381554 ENSE00003635551
8885      33643926 ENSG00000205758       ENST00000381554 ENSE00001603968
8886      33643926 ENSG00000205758       ENST00000399442 ENSE00001538349
8887      33643926 ENSG00000205758       ENST00000399442 ENSE00001538341
8888      33643926 ENSG00000205758       ENST00000399442 ENSE00001538339
8889      33643926 ENSG00000205758       ENST00000426935 ENSE00003635139
8890      33643926 ENSG00000205758       ENST00000426935 ENSE00003502265
8891      33643926 ENSG00000205758       ENST00000426935 ENSE00003547975
8892      33643926 ENSG00000205758       ENST00000426935 ENSE00001387385
8893      33643926 ENSG00000205758       ENST00000426935 ENSE00001489060
8894      33643926 ENSG00000205758       ENST00000426935 ENSE00003545673
8895      33643926 ENSG00000205758       ENST00000426935 ENSE00003567629
8896      33643926 ENSG00000205758       ENST00000426935 ENSE00001787834
8897      33643926 ENSG00000205758       ENST00000414079 ENSE00001387385
8898      33643926 ENSG00000205758       ENST00000414079 ENSE00003493157
8899      33643926 ENSG00000205758       ENST00000414079 ENSE00001598386
8900      33643926 ENSG00000205758       ENST00000414079 ENSE00001592679
8901      33643926 ENSG00000205758       ENST00000420072 ENSE00003642759
8902      33643926 ENSG00000205758       ENST00000420072 ENSE00003528796
8903      33643926 ENSG00000205758       ENST00000420072 ENSE00003683733
8904      33643926 ENSG00000205758       ENST00000420072 ENSE00003635139
8905      33643926 ENSG00000205758       ENST00000420072 ENSE00003502265
8906      33643926 ENSG00000205758       ENST00000420072 ENSE00003547975
8907      33643926 ENSG00000205758       ENST00000420072 ENSE00001387385
8908      33643926 ENSG00000205758       ENST00000420072 ENSE00001770207
8909      33643926 ENSG00000205758       ENST00000420072 ENSE00003582597
8910      33643926 ENSG00000205758       ENST00000420072 ENSE00003516588
8911      33643926 ENSG00000205758       ENST00000420072 ENSE00001404762
8912      33643926 ENSG00000205758       ENST00000420072 ENSE00001690724
8913      33643926 ENSG00000205758       ENST00000429827 ENSE00003642759
8914      33643926 ENSG00000205758       ENST00000429827 ENSE00003528796
8915      33643926 ENSG00000205758       ENST00000429827 ENSE00003683733
8916      33643926 ENSG00000205758       ENST00000429827 ENSE00003502265
8917      33643926 ENSG00000205758       ENST00000429827 ENSE00003547975
8918      33643926 ENSG00000205758       ENST00000429827 ENSE00001387385
8919      33643926 ENSG00000205758       ENST00000429827 ENSE00001770207
8920      33643926 ENSG00000205758       ENST00000429827 ENSE00003582597
8921      33643926 ENSG00000205758       ENST00000429827 ENSE00003516588
8922      33643926 ENSG00000205758       ENST00000429827 ENSE00001722894
8923      33643926 ENSG00000205758       ENST00000429827 ENSE00001667525
8924      33643926 ENSG00000205758       ENST00000361534 ENSE00003528796
8925      33643926 ENSG00000205758       ENST00000361534 ENSE00003683733
8926      33643926 ENSG00000205758       ENST00000361534 ENSE00003635139
8927      33643926 ENSG00000205758       ENST00000361534 ENSE00003502265
8928      33643926 ENSG00000205758       ENST00000361534 ENSE00003547975
8929      33643926 ENSG00000205758       ENST00000361534 ENSE00001387385
8930      33643926 ENSG00000205758       ENST00000361534 ENSE00003493157
8931      33643926 ENSG00000205758       ENST00000361534 ENSE00003596663
8932      33643926 ENSG00000205758       ENST00000361534 ENSE00003499413
8933      33643926 ENSG00000205758       ENST00000361534 ENSE00001432491
8934      33643926 ENSG00000205758       ENST00000361534 ENSE00001538349
8935      33643926 ENSG00000205758       ENST00000361534 ENSE00003486782
8936      33643926 ENSG00000205758       ENST00000361534 ENSE00001436391
8937      33643926 ENSG00000205758       ENST00000452420 ENSE00003547975
8938      33643926 ENSG00000205758       ENST00000452420 ENSE00001387385
8939      33643926 ENSG00000205758       ENST00000452420 ENSE00001632301
8940      33643926 ENSG00000205758       ENST00000452420 ENSE00001770207
8941      33643926 ENSG00000205758       ENST00000452420 ENSE00003582597
8942      33643926 ENSG00000205758       ENST00000452420 ENSE00003516588
8943      33643926 ENSG00000205758       ENST00000452420 ENSE00001643192
8944      33643926 ENSG00000205758       ENST00000452420 ENSE00001655452
8945      33643926 ENSG00000205758       ENST00000452420 ENSE00001177939
8946      33643926 ENSG00000205758       ENST00000381540 ENSE00003642759
8947      33643926 ENSG00000205758       ENST00000381540 ENSE00003528796
8948      33643926 ENSG00000205758       ENST00000381540 ENSE00003683733
8949      33643926 ENSG00000205758       ENST00000381540 ENSE00003635139
8950      33643926 ENSG00000205758       ENST00000381540 ENSE00003502265
8951      33643926 ENSG00000205758       ENST00000381540 ENSE00003547975
8952      33643926 ENSG00000205758       ENST00000381540 ENSE00001387385
8953      33643926 ENSG00000205758       ENST00000381540 ENSE00003493157
8954      33643926 ENSG00000205758       ENST00000381540 ENSE00003596663
8955      33643926 ENSG00000205758       ENST00000381540 ENSE00003499413
8956      33643926 ENSG00000205758       ENST00000381540 ENSE00001850083
8957      33643926 ENSG00000205758       ENST00000381540 ENSE00001489057
8958      33643926 ENSG00000205758       ENST00000381540 ENSE00001953102
8959      33643926 ENSG00000205758       ENST00000468349 ENSE00001881951
8960      33643926 ENSG00000205758       ENST00000468349 ENSE00001926168
8961      33643926 ENSG00000205758       ENST00000290244 ENSE00003642759
8962      33643926 ENSG00000205758       ENST00000290244 ENSE00003528796
8963      33643926 ENSG00000205758       ENST00000290244 ENSE00003683733
8964      33643926 ENSG00000205758       ENST00000290244 ENSE00003502265
8965      33643926 ENSG00000205758       ENST00000290244 ENSE00003547975
8966      33643926 ENSG00000205758       ENST00000290244 ENSE00001387385
8967      33643926 ENSG00000205758       ENST00000290244 ENSE00003493157
8968      33643926 ENSG00000205758       ENST00000290244 ENSE00003596663
8969      33643926 ENSG00000205758       ENST00000290244 ENSE00003499413
8970      33643926 ENSG00000205758       ENST00000290244 ENSE00003635551
8971      33643926 ENSG00000205758       ENST00000290244 ENSE00001903909
8972      33643926 ENSG00000205758       ENST00000290244 ENSE00001860221
8973      33643926 ENSG00000205758       ENST00000441940 ENSE00003596663
8974      33643926 ENSG00000205758       ENST00000441940 ENSE00003499413
8975      33643926 ENSG00000205758       ENST00000441940 ENSE00003635551
8976      33643926 ENSG00000205758       ENST00000441940 ENSE00001779760
8977      33588708 ENSG00000159147       ENST00000439593 ENSE00001675773
8978      33588708 ENSG00000159147       ENST00000439593 ENSE00001786948
8979      33588708 ENSG00000159147       ENST00000439593 ENSE00001728787
8980      33588708 ENSG00000159147       ENST00000439593 ENSE00001651561
8981      33588708 ENSG00000159147       ENST00000303113 ENSE00001422868
8982      33588708 ENSG00000159147       ENST00000303113 ENSE00001237873
8983      33588708 ENSG00000159147       ENST00000303113 ENSE00003539477
8984      33588708 ENSG00000159147       ENST00000303113 ENSE00001489382
8985      33588708 ENSG00000159147       ENST00000303113 ENSE00003588206
8986      33588708 ENSG00000159147       ENST00000303113 ENSE00003561968
8987      33588708 ENSG00000159147       ENST00000303113 ENSE00003571961
8988      33588708 ENSG00000159147       ENST00000303113 ENSE00003597599
8989      33588708 ENSG00000159147       ENST00000303113 ENSE00003660298
8990      33588708 ENSG00000159147       ENST00000303113 ENSE00001489351
8991      33588708 ENSG00000159147       ENST00000303113 ENSE00001489349
8992      33588708 ENSG00000159147       ENST00000453626 ENSE00001237873
8993      33588708 ENSG00000159147       ENST00000453626 ENSE00003539477
8994      33588708 ENSG00000159147       ENST00000453626 ENSE00003588206
8995      33588708 ENSG00000159147       ENST00000453626 ENSE00003561968
8996      33588708 ENSG00000159147       ENST00000453626 ENSE00003571961
8997      33588708 ENSG00000159147       ENST00000453626 ENSE00003597599
8998      33588708 ENSG00000159147       ENST00000453626 ENSE00001592067
8999      33588708 ENSG00000159147       ENST00000453626 ENSE00003563368
9000      33588708 ENSG00000159147       ENST00000453626 ENSE00001646634
9001      33588708 ENSG00000159147       ENST00000453626 ENSE00001747838
9002      33588708 ENSG00000159147       ENST00000457359 ENSE00001237873
9003      33588708 ENSG00000159147       ENST00000457359 ENSE00003539477
9004      33588708 ENSG00000159147       ENST00000457359 ENSE00001592067
9005      33588708 ENSG00000159147       ENST00000457359 ENSE00003626477
9006      33588708 ENSG00000159147       ENST00000457359 ENSE00003539393
9007      33588708 ENSG00000159147       ENST00000457359 ENSE00003548859
9008      33588708 ENSG00000159147       ENST00000457359 ENSE00003656557
9009      33588708 ENSG00000159147       ENST00000457359 ENSE00003610877
9010      33588708 ENSG00000159147       ENST00000457359 ENSE00001713755
9011      33588708 ENSG00000159147       ENST00000303071 ENSE00001237873
9012      33588708 ENSG00000159147       ENST00000303071 ENSE00003539477
9013      33588708 ENSG00000159147       ENST00000303071 ENSE00003588206
9014      33588708 ENSG00000159147       ENST00000303071 ENSE00003561968
9015      33588708 ENSG00000159147       ENST00000303071 ENSE00003571961
9016      33588708 ENSG00000159147       ENST00000303071 ENSE00003597599
9017      33588708 ENSG00000159147       ENST00000303071 ENSE00003660298
9018      33588708 ENSG00000159147       ENST00000303071 ENSE00003563368
9019      33588708 ENSG00000159147       ENST00000303071 ENSE00001363177
9020      33588708 ENSG00000159147       ENST00000303071 ENSE00001363113
9021      33588708 ENSG00000159147       ENST00000417871 ENSE00001422868
9022      33588708 ENSG00000159147       ENST00000417871 ENSE00001237873
9023      33588708 ENSG00000159147       ENST00000417871 ENSE00003539393
9024      33588708 ENSG00000159147       ENST00000417871 ENSE00003548859
9025      33588708 ENSG00000159147       ENST00000417871 ENSE00003656557
9026      33588708 ENSG00000159147       ENST00000417871 ENSE00003610877
9027      33588708 ENSG00000159147       ENST00000417871 ENSE00001696559
9028      33588708 ENSG00000159147       ENST00000417871 ENSE00003558274
9029      33588708 ENSG00000159147       ENST00000417871 ENSE00001736545
9030      33588708 ENSG00000159147       ENST00000460557 ENSE00001928466
9031      33588708 ENSG00000159147       ENST00000460557 ENSE00001910947
9032      33588708 ENSG00000159147       ENST00000444517 ENSE00001237873
9033      33588708 ENSG00000159147       ENST00000444517 ENSE00003539477
9034      33588708 ENSG00000159147       ENST00000444517 ENSE00003563368
9035      33588708 ENSG00000159147       ENST00000444517 ENSE00003532468
9036      33588708 ENSG00000159147       ENST00000444517 ENSE00001664485
9037      33588708 ENSG00000159147       ENST00000442660 ENSE00001237873
9038      33588708 ENSG00000159147       ENST00000442660 ENSE00003539477
9039      33588708 ENSG00000159147       ENST00000442660 ENSE00003563368
9040      33588708 ENSG00000159147       ENST00000442660 ENSE00003548859
9041      33588708 ENSG00000159147       ENST00000442660 ENSE00003656557
9042      33588708 ENSG00000159147       ENST00000442660 ENSE00003610877
9043      33588708 ENSG00000159147       ENST00000442660 ENSE00001664485
9044      33588708 ENSG00000159147       ENST00000442660 ENSE00003467816
9045      33588708 ENSG00000159147       ENST00000437395 ENSE00003539477
9046      33588708 ENSG00000159147       ENST00000437395 ENSE00003588206
9047      33588708 ENSG00000159147       ENST00000437395 ENSE00003561968
9048      33588708 ENSG00000159147       ENST00000437395 ENSE00003571961
9049      33588708 ENSG00000159147       ENST00000437395 ENSE00003597599
9050      33588708 ENSG00000159147       ENST00000437395 ENSE00003660298
9051      33588708 ENSG00000159147       ENST00000437395 ENSE00003563368
9052      33588708 ENSG00000159147       ENST00000437395 ENSE00001703448
9053      33588708 ENSG00000159147       ENST00000437395 ENSE00001775066
9054      33588708 ENSG00000159147       ENST00000432378 ENSE00001237873
9055      33588708 ENSG00000159147       ENST00000432378 ENSE00003539477
9056      33588708 ENSG00000159147       ENST00000432378 ENSE00003588206
9057      33588708 ENSG00000159147       ENST00000432378 ENSE00003561968
9058      33588708 ENSG00000159147       ENST00000432378 ENSE00003571961
9059      33588708 ENSG00000159147       ENST00000432378 ENSE00003597599
9060      33588708 ENSG00000159147       ENST00000432378 ENSE00003563368
9061      33588708 ENSG00000159147       ENST00000432378 ENSE00001787922
9062      33588708 ENSG00000159147       ENST00000432378 ENSE00001751333
9063      33588708 ENSG00000159147       ENST00000440810 ENSE00003571961
9064      33588708 ENSG00000159147       ENST00000440810 ENSE00003597599
9065      33588708 ENSG00000159147       ENST00000440810 ENSE00003563368
9066      33588708 ENSG00000159147       ENST00000440810 ENSE00001608266
9067      33588708 ENSG00000159147       ENST00000440810 ENSE00001618006
9068      33588708 ENSG00000159147       ENST00000462566 ENSE00001863437
9069      33588708 ENSG00000159147       ENST00000462566 ENSE00001818548
9070      33577481 ENSG00000159140       ENST00000356577 ENSE00001948678
9071      33577481 ENSG00000159140       ENST00000356577 ENSE00003672267
9072      33577481 ENSG00000159140       ENST00000356577 ENSE00001314216
9073      33577481 ENSG00000159140       ENST00000356577 ENSE00001043468
9074      33577481 ENSG00000159140       ENST00000356577 ENSE00001043475
9075      33577481 ENSG00000159140       ENST00000356577 ENSE00001178085
9076      33577481 ENSG00000159140       ENST00000356577 ENSE00001372796
9077      33577481 ENSG00000159140       ENST00000356577 ENSE00001379673
9078      33577481 ENSG00000159140       ENST00000356577 ENSE00003496844
9079      33577481 ENSG00000159140       ENST00000356577 ENSE00003612832
9080      33577481 ENSG00000159140       ENST00000356577 ENSE00003486708
9081      33577481 ENSG00000159140       ENST00000356577 ENSE00001938879
9082      33577481 ENSG00000159140       ENST00000475072 ENSE00003533300
9083      33577481 ENSG00000159140       ENST00000475072 ENSE00001954525
9084      33577481 ENSG00000159140       ENST00000381692 ENSE00003672267
9085      33577481 ENSG00000159140       ENST00000381692 ENSE00001043468
9086      33577481 ENSG00000159140       ENST00000381692 ENSE00001043475
9087      33577481 ENSG00000159140       ENST00000381692 ENSE00001178085
9088      33577481 ENSG00000159140       ENST00000381692 ENSE00001372796
9089      33577481 ENSG00000159140       ENST00000381692 ENSE00001379673
9090      33577481 ENSG00000159140       ENST00000381692 ENSE00003496844
9091      33577481 ENSG00000159140       ENST00000381692 ENSE00003612832
9092      33577481 ENSG00000159140       ENST00000381692 ENSE00003486708
9093      33577481 ENSG00000159140       ENST00000381692 ENSE00001938879
9094      33577481 ENSG00000159140       ENST00000381692 ENSE00003472004
9095      33577481 ENSG00000159140       ENST00000300278 ENSE00003672267
9096      33577481 ENSG00000159140       ENST00000300278 ENSE00001314216
9097      33577481 ENSG00000159140       ENST00000300278 ENSE00001043468
9098      33577481 ENSG00000159140       ENST00000300278 ENSE00001043475
9099      33577481 ENSG00000159140       ENST00000300278 ENSE00001178085
9100      33577481 ENSG00000159140       ENST00000300278 ENSE00001489445
9101      33577481 ENSG00000159140       ENST00000300278 ENSE00001223547
9102      33577481 ENSG00000159140       ENST00000455528 ENSE00003672267
9103      33577481 ENSG00000159140       ENST00000455528 ENSE00001314216
9104      33577481 ENSG00000159140       ENST00000455528 ENSE00001043468
9105      33577481 ENSG00000159140       ENST00000455528 ENSE00001043475
9106      33577481 ENSG00000159140       ENST00000455528 ENSE00001178085
9107      33577481 ENSG00000159140       ENST00000455528 ENSE00001372796
9108      33577481 ENSG00000159140       ENST00000455528 ENSE00001379673
9109      33577481 ENSG00000159140       ENST00000455528 ENSE00003613245
9110      33577481 ENSG00000159140       ENST00000455528 ENSE00003680040
9111      33577481 ENSG00000159140       ENST00000455528 ENSE00001489445
9112      33577481 ENSG00000159140       ENST00000455528 ENSE00003502064
9113      33577481 ENSG00000159140       ENST00000455528 ENSE00003473700
9114      33577481 ENSG00000159140       ENST00000455528 ENSE00003522025
9115      33577481 ENSG00000159140       ENST00000381679 ENSE00003672267
9116      33577481 ENSG00000159140       ENST00000381679 ENSE00001314216
9117      33577481 ENSG00000159140       ENST00000381679 ENSE00001043468
9118      33577481 ENSG00000159140       ENST00000381679 ENSE00001810356
9119      33577481 ENSG00000159140       ENST00000381679 ENSE00001800502
9120      33577481 ENSG00000159140       ENST00000492229 ENSE00003652074
9121      33577481 ENSG00000159140       ENST00000492229 ENSE00001834572
9122      33577481 ENSG00000159140       ENST00000492229 ENSE00001956474
9123      33577481 ENSG00000159140       ENST00000436227 ENSE00001043468
9124      33577481 ENSG00000159140       ENST00000436227 ENSE00001043475
9125      33577481 ENSG00000159140       ENST00000436227 ENSE00001178085
9126      33577481 ENSG00000159140       ENST00000436227 ENSE00001372796
9127      33577481 ENSG00000159140       ENST00000436227 ENSE00001379673
9128      33577481 ENSG00000159140       ENST00000436227 ENSE00003496844
9129      33577481 ENSG00000159140       ENST00000436227 ENSE00003612832
9130      33577481 ENSG00000159140       ENST00000436227 ENSE00003486708
9131      33577481 ENSG00000159140       ENST00000436227 ENSE00001489549
9132      33577481 ENSG00000159140       ENST00000436227 ENSE00003497392
9133      33577481 ENSG00000159140       ENST00000421541 ENSE00001043468
9134      33577481 ENSG00000159140       ENST00000421541 ENSE00001043475
9135      33577481 ENSG00000159140       ENST00000421541 ENSE00001178085
9136      33577481 ENSG00000159140       ENST00000421541 ENSE00001605864
9137      33577481 ENSG00000159140       ENST00000421541 ENSE00001660463
9138      33577481 ENSG00000159140       ENST00000429093 ENSE00001379673
9139      33577481 ENSG00000159140       ENST00000429093 ENSE00001771207
9140      33577481 ENSG00000159140       ENST00000429093 ENSE00001735512
9141      33577481 ENSG00000159140       ENST00000429093 ENSE00001726937
9142      33577481 ENSG00000159140       ENST00000474355 ENSE00001911365
9143      33577481 ENSG00000159140       ENST00000474355 ENSE00001831533
9144      33577481 ENSG00000159140       ENST00000457208 ENSE00001379673
9145      33577481 ENSG00000159140       ENST00000457208 ENSE00003613245
9146      33577481 ENSG00000159140       ENST00000457208 ENSE00003680040
9147      33577481 ENSG00000159140       ENST00000457208 ENSE00003502064
9148      33577481 ENSG00000159140       ENST00000457208 ENSE00003473700
9149      33577481 ENSG00000159140       ENST00000457208 ENSE00001782697
9150      33577481 ENSG00000159140       ENST00000457208 ENSE00001758425
9151      33577481 ENSG00000159140       ENST00000467616 ENSE00003631795
9152      33577481 ENSG00000159140       ENST00000467616 ENSE00003613245
9153      33577481 ENSG00000159140       ENST00000467616 ENSE00003680040
9154      33577481 ENSG00000159140       ENST00000467616 ENSE00001883356
9155      33577481 ENSG00000159140       ENST00000467616 ENSE00001644384
9156      33577481 ENSG00000159140       ENST00000467616 ENSE00003514358
9157      33577481 ENSG00000159140       ENST00000467616 ENSE00001929802
9158      33577481 ENSG00000159140       ENST00000484294 ENSE00003631795
9159      33577481 ENSG00000159140       ENST00000484294 ENSE00003613245
9160      33577481 ENSG00000159140       ENST00000484294 ENSE00003680040
9161      33577481 ENSG00000159140       ENST00000484294 ENSE00003514358
9162      33577481 ENSG00000159140       ENST00000484294 ENSE00001892372
9163      33577481 ENSG00000159140       ENST00000484294 ENSE00001811217
9164      33577481 ENSG00000159140       ENST00000473102 ENSE00003631795
9165      33577481 ENSG00000159140       ENST00000473102 ENSE00003613245
9166      33577481 ENSG00000159140       ENST00000473102 ENSE00003680040
9167      33577481 ENSG00000159140       ENST00000473102 ENSE00003514358
9168      33577481 ENSG00000159140       ENST00000473102 ENSE00001892372
9169      33577481 ENSG00000159140       ENST00000473102 ENSE00001906939
9170      33577481 ENSG00000159140       ENST00000470533 ENSE00003631795
9171      33577481 ENSG00000159140       ENST00000470533 ENSE00003613245
9172      33577481 ENSG00000159140       ENST00000470533 ENSE00003680040
9173      33577481 ENSG00000159140       ENST00000470533 ENSE00003514358
9174      33577481 ENSG00000159140       ENST00000470533 ENSE00001956629
9175      33577481 ENSG00000159140       ENST00000470533 ENSE00001829240
9176      33577481 ENSG00000159140       ENST00000478183 ENSE00003631795
9177      33577481 ENSG00000159140       ENST00000478183 ENSE00003613245
9178      33577481 ENSG00000159140       ENST00000478183 ENSE00003680040
9179      33577481 ENSG00000159140       ENST00000478183 ENSE00003522025
9180      33577481 ENSG00000159140       ENST00000478183 ENSE00001911649
9181      33577481 ENSG00000159140       ENST00000465834 ENSE00003631795
9182      33577481 ENSG00000159140       ENST00000465834 ENSE00003613245
9183      33577481 ENSG00000159140       ENST00000465834 ENSE00003680040
9184      33577481 ENSG00000159140       ENST00000465834 ENSE00001873837
9185      33577481 ENSG00000159140       ENST00000465834 ENSE00001933609
9186      33577481 ENSG00000159140       ENST00000477419 ENSE00003613245
9187      33577481 ENSG00000159140       ENST00000477419 ENSE00003680040
9188      33577481 ENSG00000159140       ENST00000477419 ENSE00001908556
9189      33577481 ENSG00000159140       ENST00000477419 ENSE00001952969
9190      33577481 ENSG00000159140       ENST00000491794 ENSE00003613245
9191      33577481 ENSG00000159140       ENST00000491794 ENSE00003680040
9192      33577481 ENSG00000159140       ENST00000491794 ENSE00001881361
9193      33577481 ENSG00000159140       ENST00000491794 ENSE00001838069
9194      33550728 ENSG00000284448       ENST00000290239 ENSE00003729123
9195      33543491 ENSG00000159131       ENST00000381815 ENSE00001232541
9196      33543491 ENSG00000159131       ENST00000381815 ENSE00003564138
9197      33543491 ENSG00000159131       ENST00000381815 ENSE00003660742
9198      33543491 ENSG00000159131       ENST00000381815 ENSE00003786797
9199      33543491 ENSG00000159131       ENST00000381815 ENSE00003622385
9200      33543491 ENSG00000159131       ENST00000381815 ENSE00003636687
9201      33543491 ENSG00000159131       ENST00000381815 ENSE00003784675
9202      33543491 ENSG00000159131       ENST00000381815 ENSE00003466855
9203      33543491 ENSG00000159131       ENST00000381815 ENSE00003481319
9204      33543491 ENSG00000159131       ENST00000381815 ENSE00003513650
9205      33543491 ENSG00000159131       ENST00000381815 ENSE00003539927
9206      33543491 ENSG00000159131       ENST00000381815 ENSE00003674151
9207      33543491 ENSG00000159131       ENST00000381815 ENSE00003609172
9208      33543491 ENSG00000159131       ENST00000381815 ENSE00003468726
9209      33543491 ENSG00000159131       ENST00000381815 ENSE00003513723
9210      33543491 ENSG00000159131       ENST00000381815 ENSE00003675443
9211      33543491 ENSG00000159131       ENST00000381815 ENSE00003645473
9212      33543491 ENSG00000159131       ENST00000381815 ENSE00003680855
9213      33543491 ENSG00000159131       ENST00000381815 ENSE00003468374
9214      33543491 ENSG00000159131       ENST00000381815 ENSE00003687543
9215      33543491 ENSG00000159131       ENST00000381815 ENSE00003507973
9216      33543491 ENSG00000159131       ENST00000381815 ENSE00001736479
9217      33543491 ENSG00000159131       ENST00000381831 ENSE00003660742
9218      33543491 ENSG00000159131       ENST00000381831 ENSE00003786797
9219      33543491 ENSG00000159131       ENST00000381831 ENSE00003622385
9220      33543491 ENSG00000159131       ENST00000381831 ENSE00003636687
9221      33543491 ENSG00000159131       ENST00000381831 ENSE00003784675
9222      33543491 ENSG00000159131       ENST00000381831 ENSE00003466855
9223      33543491 ENSG00000159131       ENST00000381831 ENSE00003481319
9224      33543491 ENSG00000159131       ENST00000381831 ENSE00003513650
9225      33543491 ENSG00000159131       ENST00000381831 ENSE00003539927
9226      33543491 ENSG00000159131       ENST00000381831 ENSE00003674151
9227      33543491 ENSG00000159131       ENST00000381831 ENSE00003609172
9228      33543491 ENSG00000159131       ENST00000381831 ENSE00003468726
9229      33543491 ENSG00000159131       ENST00000381831 ENSE00003513723
9230      33543491 ENSG00000159131       ENST00000381831 ENSE00003675443
9231      33543491 ENSG00000159131       ENST00000381831 ENSE00003645473
9232      33543491 ENSG00000159131       ENST00000381831 ENSE00003680855
9233      33543491 ENSG00000159131       ENST00000381831 ENSE00003468374
9234      33543491 ENSG00000159131       ENST00000381831 ENSE00003687543
9235      33543491 ENSG00000159131       ENST00000381831 ENSE00003507973
9236      33543491 ENSG00000159131       ENST00000381831 ENSE00001736479
9237      33543491 ENSG00000159131       ENST00000381831 ENSE00001489989
9238      33543491 ENSG00000159131       ENST00000381831 ENSE00001489983
9239      33543491 ENSG00000159131       ENST00000381839 ENSE00003564138
9240      33543491 ENSG00000159131       ENST00000381839 ENSE00003660742
9241      33543491 ENSG00000159131       ENST00000381839 ENSE00003786797
9242      33543491 ENSG00000159131       ENST00000381839 ENSE00003622385
9243      33543491 ENSG00000159131       ENST00000381839 ENSE00003636687
9244      33543491 ENSG00000159131       ENST00000381839 ENSE00003784675
9245      33543491 ENSG00000159131       ENST00000381839 ENSE00003466855
9246      33543491 ENSG00000159131       ENST00000381839 ENSE00003481319
9247      33543491 ENSG00000159131       ENST00000381839 ENSE00003513650
9248      33543491 ENSG00000159131       ENST00000381839 ENSE00003539927
9249      33543491 ENSG00000159131       ENST00000381839 ENSE00003674151
9250      33543491 ENSG00000159131       ENST00000381839 ENSE00003609172
9251      33543491 ENSG00000159131       ENST00000381839 ENSE00003468726
9252      33543491 ENSG00000159131       ENST00000381839 ENSE00003513723
9253      33543491 ENSG00000159131       ENST00000381839 ENSE00003675443
9254      33543491 ENSG00000159131       ENST00000381839 ENSE00003645473
9255      33543491 ENSG00000159131       ENST00000381839 ENSE00003680855
9256      33543491 ENSG00000159131       ENST00000381839 ENSE00003468374
9257      33543491 ENSG00000159131       ENST00000381839 ENSE00003687543
9258      33543491 ENSG00000159131       ENST00000381839 ENSE00003507973
9259      33543491 ENSG00000159131       ENST00000381839 ENSE00001736479
9260      33543491 ENSG00000159131       ENST00000381839 ENSE00001490224
9261      33543491 ENSG00000159131       ENST00000424203 ENSE00003564138
9262      33543491 ENSG00000159131       ENST00000424203 ENSE00003660742
9263      33543491 ENSG00000159131       ENST00000424203 ENSE00003786797
9264      33543491 ENSG00000159131       ENST00000424203 ENSE00003622385
9265      33543491 ENSG00000159131       ENST00000424203 ENSE00003636687
9266      33543491 ENSG00000159131       ENST00000424203 ENSE00003784675
9267      33543491 ENSG00000159131       ENST00000424203 ENSE00003466855
9268      33543491 ENSG00000159131       ENST00000424203 ENSE00001701956
9269      33543491 ENSG00000159131       ENST00000424203 ENSE00001703277
9270      33543491 ENSG00000159131       ENST00000424203 ENSE00003607819
9271      33543491 ENSG00000159131       ENST00000424203 ENSE00003588672
9272      33543491 ENSG00000159131       ENST00000424203 ENSE00003504890
9273      33543491 ENSG00000159131       ENST00000424203 ENSE00003610380
9274      33543491 ENSG00000159131       ENST00000424203 ENSE00003462589
9275      33543491 ENSG00000159131       ENST00000424203 ENSE00003655742
9276      33543491 ENSG00000159131       ENST00000424203 ENSE00003592650
9277      33543491 ENSG00000159131       ENST00000424203 ENSE00003572508
9278      33543491 ENSG00000159131       ENST00000424203 ENSE00003577136
9279      33543491 ENSG00000159131       ENST00000424203 ENSE00003654291
9280      33543491 ENSG00000159131       ENST00000424203 ENSE00003694718
9281      33543491 ENSG00000159131       ENST00000424203 ENSE00003520124
9282      33543491 ENSG00000159131       ENST00000424203 ENSE00001804711
9283      33543491 ENSG00000159131       ENST00000482663 ENSE00001810179
9284      33543491 ENSG00000159131       ENST00000482663 ENSE00001915629
9285      33543491 ENSG00000159131       ENST00000487155 ENSE00001920078
9286      33543491 ENSG00000159131       ENST00000487155 ENSE00001946350
9287      33543491 ENSG00000159131       ENST00000460305 ENSE00003504890
9288      33543491 ENSG00000159131       ENST00000460305 ENSE00003610380
9289      33543491 ENSG00000159131       ENST00000460305 ENSE00001819885
9290      33543491 ENSG00000159131       ENST00000460305 ENSE00001869887
9291      33543491 ENSG00000159131       ENST00000467575 ENSE00003588672
9292      33543491 ENSG00000159131       ENST00000467575 ENSE00001956168
9293      33543491 ENSG00000159131       ENST00000467575 ENSE00001876807
9294      33543491 ENSG00000159131       ENST00000361093 ENSE00003564138
9295      33543491 ENSG00000159131       ENST00000361093 ENSE00003660742
9296      33543491 ENSG00000159131       ENST00000361093 ENSE00003786797
9297      33543491 ENSG00000159131       ENST00000361093 ENSE00003622385
9298      33543491 ENSG00000159131       ENST00000361093 ENSE00003636687
9299      33543491 ENSG00000159131       ENST00000361093 ENSE00003784675
9300      33543491 ENSG00000159131       ENST00000361093 ENSE00003466855
9301      33543491 ENSG00000159131       ENST00000361093 ENSE00003481319
9302      33543491 ENSG00000159131       ENST00000361093 ENSE00003513650
9303      33543491 ENSG00000159131       ENST00000361093 ENSE00001908678
9304      33543491 ENSG00000159131       ENST00000361093 ENSE00001489917
9305      33543491 ENSG00000159131       ENST00000366093 ENSE00003622385
9306      33543491 ENSG00000159131       ENST00000366093 ENSE00003636687
9307      33543491 ENSG00000159131       ENST00000366093 ENSE00003784675
9308      33543491 ENSG00000159131       ENST00000366093 ENSE00001626250
9309      33543491 ENSG00000159131       ENST00000366093 ENSE00001643587
9310      33543491 ENSG00000159131       ENST00000366093 ENSE00003649161
9311      33543491 ENSG00000159131       ENST00000366093 ENSE00003490233
9312      33543491 ENSG00000159131       ENST00000366093 ENSE00001602967
9313      33543491 ENSG00000159131       ENST00000466882 ENSE00003649161
9314      33543491 ENSG00000159131       ENST00000466882 ENSE00001916873
9315      33543491 ENSG00000159131       ENST00000466882 ENSE00001893045
9316      33543491 ENSG00000159131       ENST00000497313 ENSE00001809865
9317      33543491 ENSG00000159131       ENST00000497313 ENSE00003526660
9318      33543491 ENSG00000159131       ENST00000497313 ENSE00003558791
9319      33543491 ENSG00000159131       ENST00000497313 ENSE00001879494
9320      33543491 ENSG00000159131       ENST00000430874 ENSE00003564138
9321      33543491 ENSG00000159131       ENST00000430874 ENSE00003660742
9322      33543491 ENSG00000159131       ENST00000430874 ENSE00003786797
9323      33543491 ENSG00000159131       ENST00000430874 ENSE00003622385
9324      33543491 ENSG00000159131       ENST00000430874 ENSE00003636687
9325      33543491 ENSG00000159131       ENST00000430874 ENSE00003784675
9326      33543491 ENSG00000159131       ENST00000430874 ENSE00001759010
9327      33543491 ENSG00000159131       ENST00000426819 ENSE00003660742
9328      33543491 ENSG00000159131       ENST00000426819 ENSE00003786797
9329      33543491 ENSG00000159131       ENST00000426819 ENSE00003622385
9330      33543491 ENSG00000159131       ENST00000426819 ENSE00003636687
9331      33543491 ENSG00000159131       ENST00000426819 ENSE00001489983
9332      33543491 ENSG00000159131       ENST00000426819 ENSE00001635400
9333      33543491 ENSG00000159131       ENST00000426819 ENSE00001749701
9334      33543491 ENSG00000159131       ENST00000476524 ENSE00003526660
9335      33543491 ENSG00000159131       ENST00000476524 ENSE00002469634
9336      33543491 ENSG00000159131       ENST00000476524 ENSE00003613252
9337      33543491 ENSG00000159131       ENST00000476524 ENSE00003552692
9338      33543491 ENSG00000159131       ENST00000476524 ENSE00003678844
9339      33543491 ENSG00000159131       ENST00000476524 ENSE00001851277
9340      33543491 ENSG00000159131       ENST00000488791 ENSE00001912460
9341      33543491 ENSG00000159131       ENST00000488791 ENSE00001884219
9342      33543491 ENSG00000159131       ENST00000438059 ENSE00003660742
9343      33543491 ENSG00000159131       ENST00000438059 ENSE00003786797
9344      33543491 ENSG00000159131       ENST00000438059 ENSE00001489983
9345      33543491 ENSG00000159131       ENST00000438059 ENSE00001782476
9346      33543491 ENSG00000159131       ENST00000441403 ENSE00003660742
9347      33543491 ENSG00000159131       ENST00000441403 ENSE00001489983
9348      33543491 ENSG00000159131       ENST00000441403 ENSE00001667966
9349      33543491 ENSG00000159131       ENST00000441403 ENSE00001672116
9350      33519108 ENSG00000233956       ENST00000448054 ENSE00001644099
9351      33491720 ENSG00000177692       ENST00000381947 ENSE00001490359
9352      33491720 ENSG00000177692       ENST00000381947 ENSE00001813387
9353      33491720 ENSG00000177692       ENST00000314399 ENSE00001233405
9354      33491720 ENSG00000177692       ENST00000314399 ENSE00001865045
9355      33491720 ENSG00000177692       ENST00000402202 ENSE00001549167
9356      33491720 ENSG00000177692       ENST00000402202 ENSE00001550965
9357      33491720 ENSG00000177692       ENST00000617313 ENSE00001233405
9358      33491720 ENSG00000177692       ENST00000617313 ENSE00003743965
9359      33491720 ENSG00000177692       ENST00000617313 ENSE00003746440
9360      33484258 ENSG00000231355       ENST00000450928 ENSE00001709990
9361      33484258 ENSG00000231355       ENST00000450928 ENSE00002416797
9362      33484258 ENSG00000231355       ENST00000450928 ENSE00001592400
9363      33482195 ENSG00000215088       ENST00000414617 ENSE00001687998
9364      33480011 ENSG00000142188       ENST00000484377 ENSE00001882914
9365      33480011 ENSG00000142188       ENST00000484377 ENSE00001759214
9366      33480011 ENSG00000142188       ENST00000484377 ENSE00001886293
9367      33480011 ENSG00000142188       ENST00000484377 ENSE00001780824
9368      33480011 ENSG00000142188       ENST00000420455 ENSE00001759214
9369      33480011 ENSG00000142188       ENST00000420455 ENSE00001780824
9370      33480011 ENSG00000142188       ENST00000420455 ENSE00001710937
9371      33480011 ENSG00000142188       ENST00000420455 ENSE00002433737
9372      33480011 ENSG00000142188       ENST00000420455 ENSE00002432940
9373      33480011 ENSG00000142188       ENST00000420455 ENSE00002464649
9374      33480011 ENSG00000142188       ENST00000420455 ENSE00003500050
9375      33480011 ENSG00000142188       ENST00000420455 ENSE00003620269
9376      33480011 ENSG00000142188       ENST00000420455 ENSE00001728160
9377      33480011 ENSG00000142188       ENST00000470682 ENSE00001759214
9378      33480011 ENSG00000142188       ENST00000470682 ENSE00001949319
9379      33480011 ENSG00000142188       ENST00000470682 ENSE00001931031
9380      33480011 ENSG00000142188       ENST00000470682 ENSE00002223591
9381      33480011 ENSG00000142188       ENST00000468874 ENSE00001759214
9382      33480011 ENSG00000142188       ENST00000468874 ENSE00002223653
9383      33480011 ENSG00000142188       ENST00000468874 ENSE00002480117
9384      33480011 ENSG00000142188       ENST00000468874 ENSE00001860876
9385      33480011 ENSG00000142188       ENST00000542230 ENSE00002433737
9386      33480011 ENSG00000142188       ENST00000542230 ENSE00002432940
9387      33480011 ENSG00000142188       ENST00000542230 ENSE00002464649
9388      33480011 ENSG00000142188       ENST00000542230 ENSE00003500050
9389      33480011 ENSG00000142188       ENST00000542230 ENSE00003620269
9390      33480011 ENSG00000142188       ENST00000542230 ENSE00001874127
9391      33480011 ENSG00000142188       ENST00000542230 ENSE00001490415
9392      33480011 ENSG00000142188       ENST00000441128 ENSE00002433737
9393      33480011 ENSG00000142188       ENST00000441128 ENSE00003681159
9394      33480011 ENSG00000142188       ENST00000441128 ENSE00003527592
9395      33480011 ENSG00000142188       ENST00000441128 ENSE00001796225
9396      33480011 ENSG00000142188       ENST00000442441 ENSE00002433737
9397      33480011 ENSG00000142188       ENST00000442441 ENSE00002432940
9398      33480011 ENSG00000142188       ENST00000442441 ENSE00002464649
9399      33480011 ENSG00000142188       ENST00000442441 ENSE00003500050
9400      33480011 ENSG00000142188       ENST00000442441 ENSE00003527592
9401      33480011 ENSG00000142188       ENST00000442441 ENSE00001661237
9402      33480011 ENSG00000142188       ENST00000442441 ENSE00001630493
9403      33480011 ENSG00000142188       ENST00000442441 ENSE00001733828
9404      33480011 ENSG00000142188       ENST00000474272 ENSE00001845831
9405      33480011 ENSG00000142188       ENST00000474272 ENSE00001868512
9406      33480011 ENSG00000142188       ENST00000432504 ENSE00002433737
9407      33480011 ENSG00000142188       ENST00000432504 ENSE00002432940
9408      33480011 ENSG00000142188       ENST00000432504 ENSE00001762249
9409      33480011 ENSG00000142188       ENST00000432504 ENSE00001725907
9410      33480011 ENSG00000142188       ENST00000432504 ENSE00001702748
9411      33480011 ENSG00000142188       ENST00000459909 ENSE00001921393
9412      33480011 ENSG00000142188       ENST00000459909 ENSE00001931991
9413      33479348 ENSG00000159128       ENST00000290219 ENSE00001338849
9414      33479348 ENSG00000159128       ENST00000290219 ENSE00003547942
9415      33479348 ENSG00000159128       ENST00000290219 ENSE00003612383
9416      33479348 ENSG00000159128       ENST00000290219 ENSE00003495624
9417      33479348 ENSG00000159128       ENST00000290219 ENSE00003514417
9418      33479348 ENSG00000159128       ENST00000290219 ENSE00003640768
9419      33479348 ENSG00000159128       ENST00000290219 ENSE00001490578
9420      33479348 ENSG00000159128       ENST00000439213 ENSE00001681092
9421      33479348 ENSG00000159128       ENST00000439213 ENSE00001490530
9422      33479348 ENSG00000159128       ENST00000439213 ENSE00001730414
9423      33479348 ENSG00000159128       ENST00000439213 ENSE00003561756
9424      33479348 ENSG00000159128       ENST00000439213 ENSE00003525311
9425      33479348 ENSG00000159128       ENST00000439213 ENSE00003536471
9426      33479348 ENSG00000159128       ENST00000439213 ENSE00001648489
9427      33479348 ENSG00000159128       ENST00000381995 ENSE00003547942
9428      33479348 ENSG00000159128       ENST00000381995 ENSE00003612383
9429      33479348 ENSG00000159128       ENST00000381995 ENSE00003495624
9430      33479348 ENSG00000159128       ENST00000381995 ENSE00003514417
9431      33479348 ENSG00000159128       ENST00000381995 ENSE00003640768
9432      33479348 ENSG00000159128       ENST00000381995 ENSE00001490578
9433      33479348 ENSG00000159128       ENST00000381995 ENSE00001490530
9434      33479348 ENSG00000159128       ENST00000381995 ENSE00001490538
9435      33479348 ENSG00000159128       ENST00000545369 ENSE00003536471
9436      33479348 ENSG00000159128       ENST00000545369 ENSE00001778547
9437      33479348 ENSG00000159128       ENST00000545369 ENSE00003521958
9438      33479348 ENSG00000159128       ENST00000545369 ENSE00003679140
9439      33479348 ENSG00000159128       ENST00000545369 ENSE00003650274
9440      33479348 ENSG00000159128       ENST00000545369 ENSE00001802157
9441      33479348 ENSG00000159128       ENST00000405436 ENSE00003495624
9442      33479348 ENSG00000159128       ENST00000405436 ENSE00003514417
9443      33479348 ENSG00000159128       ENST00000405436 ENSE00003640768
9444      33479348 ENSG00000159128       ENST00000405436 ENSE00003561756
9445      33479348 ENSG00000159128       ENST00000405436 ENSE00001560508
9446      33479348 ENSG00000159128       ENST00000405436 ENSE00001553006
9447      33479348 ENSG00000159128       ENST00000405436 ENSE00003666662
9448      33479348 ENSG00000159128       ENST00000405436 ENSE00001553564
9449      33479348 ENSG00000159128       ENST00000421802 ENSE00003640768
9450      33479348 ENSG00000159128       ENST00000421802 ENSE00002530039
9451      33479348 ENSG00000159128       ENST00000421802 ENSE00001776196
9452      33359862 ENSG00000142166       ENST00000493503 ENSE00001855615
9453      33359862 ENSG00000142166       ENST00000493503 ENSE00001913247
9454      33359862 ENSG00000142166       ENST00000270139 ENSE00001958164
9455      33359862 ENSG00000142166       ENST00000270139 ENSE00003606171
9456      33359862 ENSG00000142166       ENST00000270139 ENSE00003575721
9457      33359862 ENSG00000142166       ENST00000270139 ENSE00000952626
9458      33359862 ENSG00000142166       ENST00000270139 ENSE00000952627
9459      33359862 ENSG00000142166       ENST00000270139 ENSE00000952628
9460      33359862 ENSG00000142166       ENST00000270139 ENSE00000952629
9461      33359862 ENSG00000142166       ENST00000270139 ENSE00000952630
9462      33359862 ENSG00000142166       ENST00000270139 ENSE00001043348
9463      33359862 ENSG00000142166       ENST00000270139 ENSE00000952632
9464      33359862 ENSG00000142166       ENST00000270139 ENSE00001842850
9465      33359862 ENSG00000142166       ENST00000442071 ENSE00003606171
9466      33359862 ENSG00000142166       ENST00000442071 ENSE00003575721
9467      33359862 ENSG00000142166       ENST00000442071 ENSE00001794726
9468      33359862 ENSG00000142166       ENST00000442071 ENSE00001656702
9469      33335096 ENSG00000226501       ENST00000451645 ENSE00001715177
9470      33310187 ENSG00000243646       ENST00000290200 ENSE00001043281
9471      33310187 ENSG00000243646       ENST00000290200 ENSE00003554973
9472      33310187 ENSG00000243646       ENST00000290200 ENSE00003490674
9473      33310187 ENSG00000243646       ENST00000290200 ENSE00003519873
9474      33310187 ENSG00000243646       ENST00000290200 ENSE00003620117
9475      33310187 ENSG00000243646       ENST00000290200 ENSE00003628210
9476      33310187 ENSG00000243646       ENST00000290200 ENSE00001927323
9477      33310187 ENSG00000243646       ENST00000422891 ENSE00003554973
9478      33310187 ENSG00000243646       ENST00000422891 ENSE00001729591
9479      33310187 ENSG00000243646       ENST00000422891 ENSE00003540143
9480      33310187 ENSG00000243646       ENST00000422891 ENSE00003467460
9481      33310187 ENSG00000243646       ENST00000422891 ENSE00003460810
9482      33310187 ENSG00000243646       ENST00000422891 ENSE00001614880
9483      33310187 ENSG00000243646       ENST00000493295 ENSE00003467460
9484      33310187 ENSG00000243646       ENST00000493295 ENSE00003460810
9485      33310187 ENSG00000243646       ENST00000493295 ENSE00001860564
9486      33310187 ENSG00000243646       ENST00000493295 ENSE00003668610
9487      33310187 ENSG00000243646       ENST00000493295 ENSE00003561299
9488      33310187 ENSG00000243646       ENST00000493295 ENSE00001858828
9489      33310187 ENSG00000243646       ENST00000498371 ENSE00003467460
9490      33310187 ENSG00000243646       ENST00000498371 ENSE00003561299
9491      33310187 ENSG00000243646       ENST00000498371 ENSE00001834344
9492      33310187 ENSG00000243646       ENST00000498371 ENSE00002467116
9493      33310187 ENSG00000243646       ENST00000451065 ENSE00003519873
9494      33310187 ENSG00000243646       ENST00000451065 ENSE00003620117
9495      33310187 ENSG00000243646       ENST00000451065 ENSE00003628210
9496      33310187 ENSG00000243646       ENST00000451065 ENSE00001698964
9497      33310187 ENSG00000243646       ENST00000451065 ENSE00001796592
9498      33310187 ENSG00000243646       ENST00000451065 ENSE00001625180
9499      33310187 ENSG00000243646       ENST00000637650 ENSE00003797974
9500      33310187 ENSG00000243646       ENST00000637650 ENSE00003792920
9501      33310187 ENSG00000243646       ENST00000609556 ENSE00003797974
9502      33310187 ENSG00000243646       ENST00000609556 ENSE00003706288
9503      33283212 ENSG00000249624       ENST00000433395 ENSE00002049868
9504      33283212 ENSG00000249624       ENST00000433395 ENSE00003501549
9505      33283212 ENSG00000249624       ENST00000433395 ENSE00003475219
9506      33283212 ENSG00000249624       ENST00000433395 ENSE00003552959
9507      33283212 ENSG00000249624       ENST00000433395 ENSE00003498140
9508      33283212 ENSG00000249624       ENST00000433395 ENSE00003518321
9509      33283212 ENSG00000249624       ENST00000433395 ENSE00003659878
9510      33283212 ENSG00000249624       ENST00000432231 ENSE00003475219
9511      33283212 ENSG00000249624       ENST00000432231 ENSE00001767466
9512      33283212 ENSG00000249624       ENST00000432231 ENSE00003508281
9513      33283212 ENSG00000249624       ENST00000432231 ENSE00003608542
9514      33283212 ENSG00000249624       ENST00000432231 ENSE00003543645
9515      33266260 ENSG00000223799       ENST00000411998 ENSE00001712553
9516      33266260 ENSG00000223799       ENST00000411998 ENSE00001682874
9517      33265675 ENSG00000159110       ENST00000382264 ENSE00001918565
9518      33265675 ENSG00000159110       ENST00000382264 ENSE00003660426
9519      33265675 ENSG00000159110       ENST00000382264 ENSE00003535341
9520      33265675 ENSG00000159110       ENST00000382264 ENSE00003620483
9521      33265675 ENSG00000159110       ENST00000382264 ENSE00001733110
9522      33265675 ENSG00000159110       ENST00000382264 ENSE00003787406
9523      33265675 ENSG00000159110       ENST00000382264 ENSE00003542940
9524      33265675 ENSG00000159110       ENST00000382264 ENSE00003650647
9525      33265675 ENSG00000159110       ENST00000382264 ENSE00001491486
9526      33265675 ENSG00000159110       ENST00000404220 ENSE00003535341
9527      33265675 ENSG00000159110       ENST00000404220 ENSE00003620483
9528      33265675 ENSG00000159110       ENST00000404220 ENSE00001733110
9529      33265675 ENSG00000159110       ENST00000404220 ENSE00003787406
9530      33265675 ENSG00000159110       ENST00000404220 ENSE00003542940
9531      33265675 ENSG00000159110       ENST00000404220 ENSE00003650647
9532      33265675 ENSG00000159110       ENST00000404220 ENSE00001881451
9533      33265675 ENSG00000159110       ENST00000404220 ENSE00001366893
9534      33265675 ENSG00000159110       ENST00000404220 ENSE00001862690
9535      33265675 ENSG00000159110       ENST00000342136 ENSE00003535341
9536      33265675 ENSG00000159110       ENST00000342136 ENSE00003620483
9537      33265675 ENSG00000159110       ENST00000342136 ENSE00001733110
9538      33265675 ENSG00000159110       ENST00000342136 ENSE00003787406
9539      33265675 ENSG00000159110       ENST00000342136 ENSE00003542940
9540      33265675 ENSG00000159110       ENST00000342136 ENSE00003650647
9541      33265675 ENSG00000159110       ENST00000342136 ENSE00001366893
9542      33265675 ENSG00000159110       ENST00000342136 ENSE00001384199
9543      33265675 ENSG00000159110       ENST00000342136 ENSE00003460001
9544      33265675 ENSG00000159110       ENST00000420068 ENSE00001776929
9545      33265675 ENSG00000159110       ENST00000420068 ENSE00003531736
9546      33265675 ENSG00000159110       ENST00000420068 ENSE00003484390
9547      33265675 ENSG00000159110       ENST00000420068 ENSE00001734372
9548      33265675 ENSG00000159110       ENST00000342101 ENSE00003535341
9549      33265675 ENSG00000159110       ENST00000342101 ENSE00003620483
9550      33265675 ENSG00000159110       ENST00000342101 ENSE00001733110
9551      33265675 ENSG00000159110       ENST00000342101 ENSE00003787406
9552      33265675 ENSG00000159110       ENST00000342101 ENSE00003542940
9553      33265675 ENSG00000159110       ENST00000342101 ENSE00001366893
9554      33265675 ENSG00000159110       ENST00000342101 ENSE00001491360
9555      33265675 ENSG00000159110       ENST00000342101 ENSE00003581056
9556      33265675 ENSG00000159110       ENST00000382238 ENSE00003660426
9557      33265675 ENSG00000159110       ENST00000382238 ENSE00003535341
9558      33265675 ENSG00000159110       ENST00000382238 ENSE00003620483
9559      33265675 ENSG00000159110       ENST00000382238 ENSE00001733110
9560      33265675 ENSG00000159110       ENST00000382238 ENSE00003787406
9561      33265675 ENSG00000159110       ENST00000382238 ENSE00001434457
9562      33265675 ENSG00000159110       ENST00000382238 ENSE00003595336
9563      33265675 ENSG00000159110       ENST00000382238 ENSE00003477776
9564      33265675 ENSG00000159110       ENST00000382238 ENSE00003606777
9565      33265675 ENSG00000159110       ENST00000382238 ENSE00003547857
9566      33265675 ENSG00000159110       ENST00000413881 ENSE00001733110
9567      33265675 ENSG00000159110       ENST00000413881 ENSE00003787406
9568      33265675 ENSG00000159110       ENST00000413881 ENSE00003542940
9569      33265675 ENSG00000159110       ENST00000413881 ENSE00001635653
9570      33265675 ENSG00000159110       ENST00000413881 ENSE00003471951
9571      33265675 ENSG00000159110       ENST00000413881 ENSE00003475234
9572      33265675 ENSG00000159110       ENST00000443073 ENSE00001733110
9573      33265675 ENSG00000159110       ENST00000443073 ENSE00003787406
9574      33265675 ENSG00000159110       ENST00000443073 ENSE00003542940
9575      33265675 ENSG00000159110       ENST00000443073 ENSE00003650647
9576      33265675 ENSG00000159110       ENST00000443073 ENSE00001635653
9577      33265675 ENSG00000159110       ENST00000443073 ENSE00003471951
9578      33265675 ENSG00000159110       ENST00000443073 ENSE00003557392
9579      33265675 ENSG00000159110       ENST00000447980 ENSE00003535341
9580      33265675 ENSG00000159110       ENST00000447980 ENSE00003620483
9581      33265675 ENSG00000159110       ENST00000447980 ENSE00001733110
9582      33265675 ENSG00000159110       ENST00000447980 ENSE00003787406
9583      33265675 ENSG00000159110       ENST00000447980 ENSE00001635967
9584      33265675 ENSG00000159110       ENST00000447980 ENSE00003630943
9585      33265675 ENSG00000159110       ENST00000417007 ENSE00003595336
9586      33265675 ENSG00000159110       ENST00000417007 ENSE00003477776
9587      33265675 ENSG00000159110       ENST00000417007 ENSE00003606777
9588      33265675 ENSG00000159110       ENST00000417007 ENSE00001644621
9589      33265675 ENSG00000159110       ENST00000417007 ENSE00001666549
9590      33170649 ENSG00000229086       ENST00000451980 ENSE00003800352
9591      33170649 ENSG00000229086       ENST00000451980 ENSE00003793721
9592      33170649 ENSG00000229086       ENST00000451980 ENSE00001626183
9593      33170649 ENSG00000229086       ENST00000451980 ENSE00001719305
9594      33170649 ENSG00000229086       ENST00000451980 ENSE00001745295
9595      33170649 ENSG00000229086       ENST00000637328 ENSE00001626183
9596      33170649 ENSG00000229086       ENST00000637328 ENSE00001719305
9597      33170649 ENSG00000229086       ENST00000637328 ENSE00001731986
9598      33170649 ENSG00000229086       ENST00000637328 ENSE00003796046
9599      33159110 ENSG00000226433       ENST00000450830 ENSE00001705702
9600      33159110 ENSG00000226433       ENST00000450830 ENSE00001591842
9601      33123703 ENSG00000226527       ENST00000421051 ENSE00001778262
9602      33123703 ENSG00000226527       ENST00000421051 ENSE00001650574
9603      33123703 ENSG00000226527       ENST00000421051 ENSE00001640066
9604      33072420 ENSG00000184221       ENST00000382348 ENSE00001491811
9605      33072420 ENSG00000184221       ENST00000426947 ENSE00001737506
9606      33072420 ENSG00000184221       ENST00000426947 ENSE00001636163
9607      33072420 ENSG00000184221       ENST00000498799 ENSE00001636163
9608      33072420 ENSG00000184221       ENST00000498799 ENSE00001819077
9609      33071104 ENSG00000227757       ENST00000454622 ENSE00001684089
9610      33071104 ENSG00000227757       ENST00000454622 ENSE00001688113
9611      33064983 ENSG00000232539       ENST00000453716 ENSE00001670124
9612      33064983 ENSG00000232539       ENST00000453716 ENSE00001733942
9613      33064983 ENSG00000232539       ENST00000453716 ENSE00001607713
9614      33064983 ENSG00000232539       ENST00000453716 ENSE00001663506
9615      33064983 ENSG00000232539       ENST00000453716 ENSE00001625299
9616      33029196 ENSG00000205927       ENST00000382357 ENSE00001491842
9617      33029196 ENSG00000205927       ENST00000382357 ENSE00001491833
9618      33029196 ENSG00000205927       ENST00000430860 ENSE00001731910
9619      33029196 ENSG00000205927       ENST00000430860 ENSE00001693493
9620      33029196 ENSG00000205927       ENST00000333337 ENSE00001379164
9621      32960566 ENSG00000228961       ENST00000424837 ENSE00001798777
9622      32960566 ENSG00000228961       ENST00000424837 ENSE00001673622
9623      32893735 ENSG00000205930       ENST00000382375 ENSE00002534803
9624      32893735 ENSG00000205930       ENST00000382375 ENSE00002479956
9625      32893735 ENSG00000205930       ENST00000382375 ENSE00003735243
9626      32893735 ENSG00000205930       ENST00000382375 ENSE00001816474
9627      32893735 ENSG00000205930       ENST00000382377 ENSE00001836252
9628      32893735 ENSG00000205930       ENST00000382377 ENSE00001491907
9629      32893735 ENSG00000205930       ENST00000454365 ENSE00001685136
9630      32893735 ENSG00000205930       ENST00000454365 ENSE00001673657
9631      32893735 ENSG00000205930       ENST00000454365 ENSE00001780512
9632      32893735 ENSG00000205930       ENST00000454365 ENSE00001792416
9633      32893735 ENSG00000205930       ENST00000612326 ENSE00002479956
9634      32893735 ENSG00000205930       ENST00000612326 ENSE00003718614
9635      32893735 ENSG00000205930       ENST00000612326 ENSE00003719092
9636      32893735 ENSG00000205930       ENST00000382378 ENSE00002479956
9637      32893735 ENSG00000205930       ENST00000382378 ENSE00003735243
9638      32893735 ENSG00000205930       ENST00000382378 ENSE00001491924
9639      32893735 ENSG00000205930       ENST00000382378 ENSE00001491921
9640      32893735 ENSG00000205930       ENST00000491756 ENSE00003735243
9641      32893735 ENSG00000205930       ENST00000491756 ENSE00001883847
9642      32893735 ENSG00000205930       ENST00000491756 ENSE00001854863
9643      32893735 ENSG00000205930       ENST00000477513 ENSE00002479956
9644      32893735 ENSG00000205930       ENST00000477513 ENSE00001904189
9645      32893735 ENSG00000205930       ENST00000477513 ENSE00001892768
9646      32849934 ENSG00000232360       ENST00000427911 ENSE00001675851
9647      32849934 ENSG00000232360       ENST00000427911 ENSE00001597049
9648      32841995 ENSG00000207098       ENST00000384370 ENSE00001808734
9649      32841811 ENSG00000224427       ENST00000444036 ENSE00001800916
9650      32813743 ENSG00000205929       ENST00000490358 ENSE00001885790
9651      32813743 ENSG00000205929       ENST00000490358 ENSE00003634340
9652      32813743 ENSG00000205929       ENST00000490358 ENSE00001958608
9653      32813743 ENSG00000205929       ENST00000487113 ENSE00001829713
9654      32813743 ENSG00000205929       ENST00000487113 ENSE00001817582
9655      32813743 ENSG00000205929       ENST00000382373 ENSE00001491885
9656      32813743 ENSG00000205929       ENST00000382373 ENSE00003460207
9657      32813743 ENSG00000205929       ENST00000382373 ENSE00001915548
9658      32813743 ENSG00000205929       ENST00000479548 ENSE00003634340
9659      32813743 ENSG00000205929       ENST00000479548 ENSE00001915744
9660      32813743 ENSG00000205929       ENST00000479548 ENSE00001817822
9661      32813743 ENSG00000205929       ENST00000479548 ENSE00001491871
9662      32791504 ENSG00000279690       ENST00000624800 ENSE00003755953
9663      32771858 ENSG00000159086       ENST00000331923 ENSE00001418055
9664      32771858 ENSG00000159086       ENST00000331923 ENSE00003586691
9665      32771858 ENSG00000159086       ENST00000331923 ENSE00003689070
9666      32771858 ENSG00000159086       ENST00000331923 ENSE00003475039
9667      32771858 ENSG00000159086       ENST00000331923 ENSE00003619321
9668      32771858 ENSG00000159086       ENST00000331923 ENSE00003576082
9669      32771858 ENSG00000159086       ENST00000331923 ENSE00003600861
9670      32771858 ENSG00000159086       ENST00000331923 ENSE00001043135
9671      32771858 ENSG00000159086       ENST00000331923 ENSE00003479846
9672      32771858 ENSG00000159086       ENST00000331923 ENSE00003659463
9673      32771858 ENSG00000159086       ENST00000331923 ENSE00003514300
9674      32771858 ENSG00000159086       ENST00000331923 ENSE00003531041
9675      32771858 ENSG00000159086       ENST00000331923 ENSE00003564031
9676      32771858 ENSG00000159086       ENST00000331923 ENSE00003491166
9677      32771858 ENSG00000159086       ENST00000331923 ENSE00003613165
9678      32771858 ENSG00000159086       ENST00000331923 ENSE00003485802
9679      32771858 ENSG00000159086       ENST00000331923 ENSE00003693611
9680      32771858 ENSG00000159086       ENST00000331923 ENSE00001888460
9681      32771858 ENSG00000159086       ENST00000466846 ENSE00001932194
9682      32771858 ENSG00000159086       ENST00000466846 ENSE00003577622
9683      32771858 ENSG00000159086       ENST00000466846 ENSE00003591604
9684      32771858 ENSG00000159086       ENST00000466846 ENSE00003663813
9685      32771858 ENSG00000159086       ENST00000466846 ENSE00003660643
9686      32771858 ENSG00000159086       ENST00000466846 ENSE00003620897
9687      32771858 ENSG00000159086       ENST00000466846 ENSE00003585458
9688      32771858 ENSG00000159086       ENST00000466846 ENSE00003626527
9689      32771858 ENSG00000159086       ENST00000466846 ENSE00003626262
9690      32771858 ENSG00000159086       ENST00000466846 ENSE00003634643
9691      32771858 ENSG00000159086       ENST00000466846 ENSE00001861849
9692      32771858 ENSG00000159086       ENST00000443785 ENSE00003586691
9693      32771858 ENSG00000159086       ENST00000443785 ENSE00003689070
9694      32771858 ENSG00000159086       ENST00000443785 ENSE00003475039
9695      32771858 ENSG00000159086       ENST00000443785 ENSE00003619321
9696      32771858 ENSG00000159086       ENST00000443785 ENSE00003576082
9697      32771858 ENSG00000159086       ENST00000443785 ENSE00003600861
9698      32771858 ENSG00000159086       ENST00000443785 ENSE00003591604
9699      32771858 ENSG00000159086       ENST00000443785 ENSE00003663813
9700      32771858 ENSG00000159086       ENST00000443785 ENSE00003660643
9701      32771858 ENSG00000159086       ENST00000443785 ENSE00003620897
9702      32771858 ENSG00000159086       ENST00000443785 ENSE00003585458
9703      32771858 ENSG00000159086       ENST00000443785 ENSE00003626527
9704      32771858 ENSG00000159086       ENST00000443785 ENSE00003626262
9705      32771858 ENSG00000159086       ENST00000443785 ENSE00003634643
9706      32771858 ENSG00000159086       ENST00000443785 ENSE00001669669
9707      32771858 ENSG00000159086       ENST00000443785 ENSE00001662090
9708      32771858 ENSG00000159086       ENST00000443785 ENSE00003626702
9709      32771858 ENSG00000159086       ENST00000443785 ENSE00001616809
9710      32771858 ENSG00000159086       ENST00000497873 ENSE00003591604
9711      32771858 ENSG00000159086       ENST00000497873 ENSE00003663813
9712      32771858 ENSG00000159086       ENST00000497873 ENSE00003660643
9713      32771858 ENSG00000159086       ENST00000497873 ENSE00003620897
9714      32771858 ENSG00000159086       ENST00000497873 ENSE00003585458
9715      32771858 ENSG00000159086       ENST00000497873 ENSE00003626527
9716      32771858 ENSG00000159086       ENST00000497873 ENSE00003626262
9717      32771858 ENSG00000159086       ENST00000497873 ENSE00003634643
9718      32771858 ENSG00000159086       ENST00000497873 ENSE00001910821
9719      32771858 ENSG00000159086       ENST00000497873 ENSE00001824171
9720      32771858 ENSG00000159086       ENST00000290178 ENSE00003586691
9721      32771858 ENSG00000159086       ENST00000290178 ENSE00003689070
9722      32771858 ENSG00000159086       ENST00000290178 ENSE00003475039
9723      32771858 ENSG00000159086       ENST00000290178 ENSE00003619321
9724      32771858 ENSG00000159086       ENST00000290178 ENSE00003576082
9725      32771858 ENSG00000159086       ENST00000290178 ENSE00003600861
9726      32771858 ENSG00000159086       ENST00000290178 ENSE00001043135
9727      32771858 ENSG00000159086       ENST00000290178 ENSE00003479846
9728      32771858 ENSG00000159086       ENST00000290178 ENSE00003659463
9729      32771858 ENSG00000159086       ENST00000290178 ENSE00003514300
9730      32771858 ENSG00000159086       ENST00000290178 ENSE00003531041
9731      32771858 ENSG00000159086       ENST00000290178 ENSE00003564031
9732      32771858 ENSG00000159086       ENST00000290178 ENSE00003491166
9733      32771858 ENSG00000159086       ENST00000290178 ENSE00003613165
9734      32771858 ENSG00000159086       ENST00000290178 ENSE00003582198
9735      32771858 ENSG00000159086       ENST00000290178 ENSE00001326257
9736      32771858 ENSG00000159086       ENST00000445049 ENSE00001606735
9737      32771858 ENSG00000159086       ENST00000445049 ENSE00001713074
9738      32771858 ENSG00000159086       ENST00000445049 ENSE00001648431
9739      32771858 ENSG00000159086       ENST00000445049 ENSE00001752495
9740      32771858 ENSG00000159086       ENST00000421049 ENSE00003626702
9741      32771858 ENSG00000159086       ENST00000421049 ENSE00001593977
9742      32771858 ENSG00000159086       ENST00000421049 ENSE00001603347
9743      32771858 ENSG00000159086       ENST00000472588 ENSE00003594198
9744      32771858 ENSG00000159086       ENST00000472588 ENSE00003640180
9745      32771858 ENSG00000159086       ENST00000472588 ENSE00003615127
9746      32771858 ENSG00000159086       ENST00000472588 ENSE00003539172
9747      32771858 ENSG00000159086       ENST00000472588 ENSE00003523209
9748      32771858 ENSG00000159086       ENST00000472588 ENSE00003576093
9749      32771858 ENSG00000159086       ENST00000472588 ENSE00003539511
9750      32771858 ENSG00000159086       ENST00000472588 ENSE00001845379
9751      32771858 ENSG00000159086       ENST00000464256 ENSE00003640180
9752      32771858 ENSG00000159086       ENST00000464256 ENSE00003615127
9753      32771858 ENSG00000159086       ENST00000464256 ENSE00003539172
9754      32771858 ENSG00000159086       ENST00000464256 ENSE00003523209
9755      32771858 ENSG00000159086       ENST00000464256 ENSE00001857609
9756      32771858 ENSG00000159086       ENST00000464256 ENSE00001869099
9757      32743122 ENSG00000238197       ENST00000458479 ENSE00001724672
9758      32743122 ENSG00000238197       ENST00000458479 ENSE00001729889
9759      32743122 ENSG00000238197       ENST00000440052 ENSE00001637352
9760      32743122 ENSG00000238197       ENST00000440052 ENSE00001758586
9761      32743122 ENSG00000238197       ENST00000440052 ENSE00001710895
9762      32743122 ENSG00000238197       ENST00000440052 ENSE00001755988
9763      32743122 ENSG00000238197       ENST00000455170 ENSE00001758586
9764      32743122 ENSG00000238197       ENST00000455170 ENSE00001621594
9765      32743122 ENSG00000238197       ENST00000455170 ENSE00001672645
9766      32728048 ENSG00000159082       ENST00000438952 ENSE00001640749
9767      32728048 ENSG00000159082       ENST00000438952 ENSE00001694887
9768      32728048 ENSG00000159082       ENST00000438952 ENSE00001716834
9769      32728048 ENSG00000159082       ENST00000438952 ENSE00001600415
9770      32728048 ENSG00000159082       ENST00000438952 ENSE00001672736
9771      32728048 ENSG00000159082       ENST00000438952 ENSE00001768777
9772      32728048 ENSG00000159082       ENST00000438952 ENSE00001659680
9773      32728048 ENSG00000159082       ENST00000438952 ENSE00001709732
9774      32728048 ENSG00000159082       ENST00000630077 ENSE00001600415
9775      32728048 ENSG00000159082       ENST00000630077 ENSE00001672736
9776      32728048 ENSG00000159082       ENST00000630077 ENSE00001768777
9777      32728048 ENSG00000159082       ENST00000630077 ENSE00003765054
9778      32728048 ENSG00000159082       ENST00000630077 ENSE00003633787
9779      32728048 ENSG00000159082       ENST00000630077 ENSE00001692945
9780      32728048 ENSG00000159082       ENST00000630077 ENSE00001594835
9781      32728048 ENSG00000159082       ENST00000630077 ENSE00001723440
9782      32728048 ENSG00000159082       ENST00000630077 ENSE00001711441
9783      32728048 ENSG00000159082       ENST00000630077 ENSE00001710675
9784      32728048 ENSG00000159082       ENST00000630077 ENSE00001660563
9785      32728048 ENSG00000159082       ENST00000630077 ENSE00001615936
9786      32728048 ENSG00000159082       ENST00000630077 ENSE00001719041
9787      32728048 ENSG00000159082       ENST00000630077 ENSE00001611870
9788      32728048 ENSG00000159082       ENST00000630077 ENSE00001539668
9789      32728048 ENSG00000159082       ENST00000630077 ENSE00001677991
9790      32728048 ENSG00000159082       ENST00000630077 ENSE00001695277
9791      32728048 ENSG00000159082       ENST00000630077 ENSE00001661250
9792      32728048 ENSG00000159082       ENST00000630077 ENSE00002276949
9793      32728048 ENSG00000159082       ENST00000630077 ENSE00001692306
9794      32728048 ENSG00000159082       ENST00000630077 ENSE00003510649
9795      32728048 ENSG00000159082       ENST00000630077 ENSE00003560819
9796      32728048 ENSG00000159082       ENST00000630077 ENSE00001706423
9797      32728048 ENSG00000159082       ENST00000630077 ENSE00001604255
9798      32728048 ENSG00000159082       ENST00000630077 ENSE00003584985
9799      32728048 ENSG00000159082       ENST00000630077 ENSE00001800575
9800      32728048 ENSG00000159082       ENST00000630077 ENSE00001628547
9801      32728048 ENSG00000159082       ENST00000630077 ENSE00003762064
9802      32728048 ENSG00000159082       ENST00000382499 ENSE00001694887
9803      32728048 ENSG00000159082       ENST00000382499 ENSE00001716834
9804      32728048 ENSG00000159082       ENST00000382499 ENSE00001600415
9805      32728048 ENSG00000159082       ENST00000382499 ENSE00001672736
9806      32728048 ENSG00000159082       ENST00000382499 ENSE00001768777
9807      32728048 ENSG00000159082       ENST00000382499 ENSE00001659680
9808      32728048 ENSG00000159082       ENST00000382499 ENSE00001692945
9809      32728048 ENSG00000159082       ENST00000382499 ENSE00001594835
9810      32728048 ENSG00000159082       ENST00000382499 ENSE00001723440
9811      32728048 ENSG00000159082       ENST00000382499 ENSE00001711441
9812      32728048 ENSG00000159082       ENST00000382499 ENSE00001710675
9813      32728048 ENSG00000159082       ENST00000382499 ENSE00001660563
9814      32728048 ENSG00000159082       ENST00000382499 ENSE00001615936
9815      32728048 ENSG00000159082       ENST00000382499 ENSE00001719041
9816      32728048 ENSG00000159082       ENST00000382499 ENSE00001611870
9817      32728048 ENSG00000159082       ENST00000382499 ENSE00001677991
9818      32728048 ENSG00000159082       ENST00000382499 ENSE00001695277
9819      32728048 ENSG00000159082       ENST00000382499 ENSE00001661250
9820      32728048 ENSG00000159082       ENST00000382499 ENSE00002276949
9821      32728048 ENSG00000159082       ENST00000382499 ENSE00001692306
9822      32728048 ENSG00000159082       ENST00000382499 ENSE00003510649
9823      32728048 ENSG00000159082       ENST00000382499 ENSE00003560819
9824      32728048 ENSG00000159082       ENST00000382499 ENSE00001706423
9825      32728048 ENSG00000159082       ENST00000382499 ENSE00001604255
9826      32728048 ENSG00000159082       ENST00000382499 ENSE00003584985
9827      32728048 ENSG00000159082       ENST00000382499 ENSE00001800575
9828      32728048 ENSG00000159082       ENST00000382499 ENSE00001628547
9829      32728048 ENSG00000159082       ENST00000382499 ENSE00001492364
9830      32728048 ENSG00000159082       ENST00000382499 ENSE00003514976
9831      32728048 ENSG00000159082       ENST00000382499 ENSE00001640014
9832      32728048 ENSG00000159082       ENST00000382499 ENSE00001619493
9833      32728048 ENSG00000159082       ENST00000382499 ENSE00001043068
9834      32728048 ENSG00000159082       ENST00000382499 ENSE00001492363
9835      32728048 ENSG00000159082       ENST00000433931 ENSE00001694887
9836      32728048 ENSG00000159082       ENST00000433931 ENSE00001716834
9837      32728048 ENSG00000159082       ENST00000433931 ENSE00001600415
9838      32728048 ENSG00000159082       ENST00000433931 ENSE00001672736
9839      32728048 ENSG00000159082       ENST00000433931 ENSE00001768777
9840      32728048 ENSG00000159082       ENST00000433931 ENSE00001692945
9841      32728048 ENSG00000159082       ENST00000433931 ENSE00001594835
9842      32728048 ENSG00000159082       ENST00000433931 ENSE00001723440
9843      32728048 ENSG00000159082       ENST00000433931 ENSE00001711441
9844      32728048 ENSG00000159082       ENST00000433931 ENSE00001710675
9845      32728048 ENSG00000159082       ENST00000433931 ENSE00001660563
9846      32728048 ENSG00000159082       ENST00000433931 ENSE00001615936
9847      32728048 ENSG00000159082       ENST00000433931 ENSE00001719041
9848      32728048 ENSG00000159082       ENST00000433931 ENSE00001611870
9849      32728048 ENSG00000159082       ENST00000433931 ENSE00001677991
9850      32728048 ENSG00000159082       ENST00000433931 ENSE00001695277
9851      32728048 ENSG00000159082       ENST00000433931 ENSE00001661250
9852      32728048 ENSG00000159082       ENST00000433931 ENSE00002276949
9853      32728048 ENSG00000159082       ENST00000433931 ENSE00001692306
9854      32728048 ENSG00000159082       ENST00000433931 ENSE00003510649
9855      32728048 ENSG00000159082       ENST00000433931 ENSE00003560819
9856      32728048 ENSG00000159082       ENST00000433931 ENSE00001706423
9857      32728048 ENSG00000159082       ENST00000433931 ENSE00001604255
9858      32728048 ENSG00000159082       ENST00000433931 ENSE00003584985
9859      32728048 ENSG00000159082       ENST00000433931 ENSE00001800575
9860      32728048 ENSG00000159082       ENST00000433931 ENSE00001628547
9861      32728048 ENSG00000159082       ENST00000433931 ENSE00003514976
9862      32728048 ENSG00000159082       ENST00000433931 ENSE00001640014
9863      32728048 ENSG00000159082       ENST00000433931 ENSE00001619493
9864      32728048 ENSG00000159082       ENST00000433931 ENSE00001043068
9865      32728048 ENSG00000159082       ENST00000433931 ENSE00001798903
9866      32728048 ENSG00000159082       ENST00000433931 ENSE00001707933
9867      32728048 ENSG00000159082       ENST00000418301 ENSE00001672736
9868      32728048 ENSG00000159082       ENST00000418301 ENSE00001768777
9869      32728048 ENSG00000159082       ENST00000418301 ENSE00001665192
9870      32728048 ENSG00000159082       ENST00000418301 ENSE00001597791
9871      32728048 ENSG00000159082       ENST00000418301 ENSE00001684229
9872      32728048 ENSG00000159082       ENST00000467445 ENSE00003581395
9873      32728048 ENSG00000159082       ENST00000467445 ENSE00001950509
9874      32728048 ENSG00000159082       ENST00000464778 ENSE00003519084
9875      32728048 ENSG00000159082       ENST00000464778 ENSE00003593335
9876      32728048 ENSG00000159082       ENST00000464778 ENSE00001950568
9877      32728048 ENSG00000159082       ENST00000464778 ENSE00001865588
9878      32728048 ENSG00000159082       ENST00000429236 ENSE00003633787
9879      32728048 ENSG00000159082       ENST00000429236 ENSE00001692945
9880      32728048 ENSG00000159082       ENST00000429236 ENSE00001594835
9881      32728048 ENSG00000159082       ENST00000429236 ENSE00001723440
9882      32728048 ENSG00000159082       ENST00000429236 ENSE00001711441
9883      32728048 ENSG00000159082       ENST00000429236 ENSE00001710675
9884      32728048 ENSG00000159082       ENST00000429236 ENSE00001660563
9885      32728048 ENSG00000159082       ENST00000429236 ENSE00001615936
9886      32728048 ENSG00000159082       ENST00000429236 ENSE00001719041
9887      32728048 ENSG00000159082       ENST00000429236 ENSE00001611870
9888      32728048 ENSG00000159082       ENST00000429236 ENSE00001539668
9889      32728048 ENSG00000159082       ENST00000429236 ENSE00001677991
9890      32728048 ENSG00000159082       ENST00000429236 ENSE00001695277
9891      32728048 ENSG00000159082       ENST00000429236 ENSE00001661250
9892      32728048 ENSG00000159082       ENST00000429236 ENSE00001801600
9893      32728048 ENSG00000159082       ENST00000429236 ENSE00001763897
9894      32728048 ENSG00000159082       ENST00000456084 ENSE00001692945
9895      32728048 ENSG00000159082       ENST00000456084 ENSE00001594835
9896      32728048 ENSG00000159082       ENST00000456084 ENSE00001685197
9897      32728048 ENSG00000159082       ENST00000456084 ENSE00001624962
9898      32728048 ENSG00000159082       ENST00000357345 ENSE00001694887
9899      32728048 ENSG00000159082       ENST00000357345 ENSE00001716834
9900      32728048 ENSG00000159082       ENST00000357345 ENSE00001600415
9901      32728048 ENSG00000159082       ENST00000357345 ENSE00001672736
9902      32728048 ENSG00000159082       ENST00000357345 ENSE00001768777
9903      32728048 ENSG00000159082       ENST00000357345 ENSE00001659680
9904      32728048 ENSG00000159082       ENST00000357345 ENSE00003633787
9905      32728048 ENSG00000159082       ENST00000357345 ENSE00001692945
9906      32728048 ENSG00000159082       ENST00000357345 ENSE00001594835
9907      32728048 ENSG00000159082       ENST00000357345 ENSE00001723440
9908      32728048 ENSG00000159082       ENST00000357345 ENSE00001711441
9909      32728048 ENSG00000159082       ENST00000357345 ENSE00001710675
9910      32728048 ENSG00000159082       ENST00000357345 ENSE00001660563
9911      32728048 ENSG00000159082       ENST00000357345 ENSE00001615936
9912      32728048 ENSG00000159082       ENST00000357345 ENSE00001719041
9913      32728048 ENSG00000159082       ENST00000357345 ENSE00001611870
9914      32728048 ENSG00000159082       ENST00000357345 ENSE00001677991
9915      32728048 ENSG00000159082       ENST00000357345 ENSE00001695277
9916      32728048 ENSG00000159082       ENST00000357345 ENSE00001661250
9917      32728048 ENSG00000159082       ENST00000357345 ENSE00002276949
9918      32728048 ENSG00000159082       ENST00000357345 ENSE00001692306
9919      32728048 ENSG00000159082       ENST00000357345 ENSE00003510649
9920      32728048 ENSG00000159082       ENST00000357345 ENSE00003560819
9921      32728048 ENSG00000159082       ENST00000357345 ENSE00001706423
9922      32728048 ENSG00000159082       ENST00000357345 ENSE00001604255
9923      32728048 ENSG00000159082       ENST00000357345 ENSE00003584985
9924      32728048 ENSG00000159082       ENST00000357345 ENSE00001800575
9925      32728048 ENSG00000159082       ENST00000357345 ENSE00001628547
9926      32728048 ENSG00000159082       ENST00000357345 ENSE00001640014
9927      32728048 ENSG00000159082       ENST00000357345 ENSE00001619493
9928      32728048 ENSG00000159082       ENST00000357345 ENSE00001801600
9929      32728048 ENSG00000159082       ENST00000357345 ENSE00003747770
9930      32728048 ENSG00000159082       ENST00000382491 ENSE00001600415
9931      32728048 ENSG00000159082       ENST00000382491 ENSE00001672736
9932      32728048 ENSG00000159082       ENST00000382491 ENSE00001768777
9933      32728048 ENSG00000159082       ENST00000382491 ENSE00001659680
9934      32728048 ENSG00000159082       ENST00000382491 ENSE00003633787
9935      32728048 ENSG00000159082       ENST00000382491 ENSE00001692945
9936      32728048 ENSG00000159082       ENST00000382491 ENSE00001594835
9937      32728048 ENSG00000159082       ENST00000382491 ENSE00001723440
9938      32728048 ENSG00000159082       ENST00000382491 ENSE00001711441
9939      32728048 ENSG00000159082       ENST00000382491 ENSE00001710675
9940      32728048 ENSG00000159082       ENST00000382491 ENSE00001660563
9941      32728048 ENSG00000159082       ENST00000382491 ENSE00001615936
9942      32728048 ENSG00000159082       ENST00000382491 ENSE00001719041
9943      32728048 ENSG00000159082       ENST00000382491 ENSE00001611870
9944      32728048 ENSG00000159082       ENST00000382491 ENSE00001539668
9945      32728048 ENSG00000159082       ENST00000382491 ENSE00001677991
9946      32728048 ENSG00000159082       ENST00000382491 ENSE00001695277
9947      32728048 ENSG00000159082       ENST00000382491 ENSE00001661250
9948      32728048 ENSG00000159082       ENST00000382491 ENSE00002276949
9949      32728048 ENSG00000159082       ENST00000382491 ENSE00001692306
9950      32728048 ENSG00000159082       ENST00000382491 ENSE00003510649
9951      32728048 ENSG00000159082       ENST00000382491 ENSE00003560819
9952      32728048 ENSG00000159082       ENST00000382491 ENSE00001706423
9953      32728048 ENSG00000159082       ENST00000382491 ENSE00001604255
9954      32728048 ENSG00000159082       ENST00000382491 ENSE00003584985
9955      32728048 ENSG00000159082       ENST00000382491 ENSE00001800575
9956      32728048 ENSG00000159082       ENST00000382491 ENSE00001628547
9957      32728048 ENSG00000159082       ENST00000382491 ENSE00003747770
9958      32728048 ENSG00000159082       ENST00000382491 ENSE00003717800
9959      32625096 ENSG00000238220       ENST00000411943 ENSE00001610520
9960      32625096 ENSG00000238220       ENST00000411943 ENSE00001713056
9961      32622096 ENSG00000228433       ENST00000435600 ENSE00001659426
9962      32612866 ENSG00000159079       ENST00000431599 ENSE00001691575
9963      32612866 ENSG00000159079       ENST00000431599 ENSE00001753167
9964      32612866 ENSG00000159079       ENST00000440966 ENSE00001627893
9965      32612866 ENSG00000159079       ENST00000440966 ENSE00003493555
9966      32612866 ENSG00000159079       ENST00000440966 ENSE00003680905
9967      32612866 ENSG00000159079       ENST00000440966 ENSE00003634950
9968      32612866 ENSG00000159079       ENST00000440966 ENSE00003668923
9969      32612866 ENSG00000159079       ENST00000440966 ENSE00001605158
9970      32612866 ENSG00000159079       ENST00000382549 ENSE00003493555
9971      32612866 ENSG00000159079       ENST00000382549 ENSE00003680905
9972      32612866 ENSG00000159079       ENST00000382549 ENSE00003634950
9973      32612866 ENSG00000159079       ENST00000382549 ENSE00001432244
9974      32612866 ENSG00000159079       ENST00000382549 ENSE00001602516
9975      32612866 ENSG00000159079       ENST00000290155 ENSE00003493555
9976      32612866 ENSG00000159079       ENST00000290155 ENSE00003680905
9977      32612866 ENSG00000159079       ENST00000290155 ENSE00003634950
9978      32612866 ENSG00000159079       ENST00000290155 ENSE00003668923
9979      32612866 ENSG00000159079       ENST00000290155 ENSE00001605158
9980      32612866 ENSG00000159079       ENST00000290155 ENSE00001925020
9981      32612866 ENSG00000159079       ENST00000290155 ENSE00003502977
9982      32612866 ENSG00000159079       ENST00000425336 ENSE00003668923
9983      32612866 ENSG00000159079       ENST00000425336 ENSE00001749198
9984      32612866 ENSG00000159079       ENST00000425336 ENSE00001783774
9985      32612866 ENSG00000159079       ENST00000300260 ENSE00003493555
9986      32612866 ENSG00000159079       ENST00000300260 ENSE00003597655
9987      32612866 ENSG00000159079       ENST00000300260 ENSE00003543387
9988      32612866 ENSG00000159079       ENST00000300260 ENSE00003502519
9989      32612866 ENSG00000159079       ENST00000300260 ENSE00003556631
9990      32612866 ENSG00000159079       ENST00000300260 ENSE00001725966
9991      32612866 ENSG00000159079       ENST00000483315 ENSE00001889105
9992      32612866 ENSG00000159079       ENST00000483315 ENSE00001666126
9993      32612866 ENSG00000159079       ENST00000458138 ENSE00003680905
9994      32612866 ENSG00000159079       ENST00000458138 ENSE00003634950
9995      32612866 ENSG00000159079       ENST00000458138 ENSE00001664779
9996      32612866 ENSG00000159079       ENST00000458138 ENSE00001658811
9997      32612866 ENSG00000159079       ENST00000458138 ENSE00001759776
9998      32612281 ENSG00000265590       ENST00000431216 ENSE00001615040
9999      32612281 ENSG00000265590       ENST00000431216 ENSE00003618708
      chromosome_name start_position  hgnc_symbol    hgnc_id strand
1                  21       46690764     RPL23AP4 HGNC:10321      1
2                  21       46635167        PRMT2  HGNC:5186      1
3                  21       46635167        PRMT2  HGNC:5186      1
4                  21       46635167        PRMT2  HGNC:5186      1
5                  21       46635167        PRMT2  HGNC:5186      1
6                  21       46635167        PRMT2  HGNC:5186      1
7                  21       46635167        PRMT2  HGNC:5186      1
8                  21       46635167        PRMT2  HGNC:5186      1
9                  21       46635167        PRMT2  HGNC:5186      1
10                 21       46635167        PRMT2  HGNC:5186      1
11                 21       46635167        PRMT2  HGNC:5186      1
12                 21       46635167        PRMT2  HGNC:5186      1
13                 21       46635167        PRMT2  HGNC:5186      1
14                 21       46635167        PRMT2  HGNC:5186      1
15                 21       46635167        PRMT2  HGNC:5186      1
16                 21       46635167        PRMT2  HGNC:5186      1
17                 21       46635167        PRMT2  HGNC:5186      1
18                 21       46635167        PRMT2  HGNC:5186      1
19                 21       46635167        PRMT2  HGNC:5186      1
20                 21       46635167        PRMT2  HGNC:5186      1
21                 21       46635167        PRMT2  HGNC:5186      1
22                 21       46635167        PRMT2  HGNC:5186      1
23                 21       46635167        PRMT2  HGNC:5186      1
24                 21       46635167        PRMT2  HGNC:5186      1
25                 21       46635167        PRMT2  HGNC:5186      1
26                 21       46635167        PRMT2  HGNC:5186      1
27                 21       46635167        PRMT2  HGNC:5186      1
28                 21       46635167        PRMT2  HGNC:5186      1
29                 21       46635167        PRMT2  HGNC:5186      1
30                 21       46635167        PRMT2  HGNC:5186      1
31                 21       46635167        PRMT2  HGNC:5186      1
32                 21       46635167        PRMT2  HGNC:5186      1
33                 21       46635167        PRMT2  HGNC:5186      1
34                 21       46635167        PRMT2  HGNC:5186      1
35                 21       46635167        PRMT2  HGNC:5186      1
36                 21       46635167        PRMT2  HGNC:5186      1
37                 21       46635167        PRMT2  HGNC:5186      1
38                 21       46635167        PRMT2  HGNC:5186      1
39                 21       46635167        PRMT2  HGNC:5186      1
40                 21       46635167        PRMT2  HGNC:5186      1
41                 21       46635167        PRMT2  HGNC:5186      1
42                 21       46635167        PRMT2  HGNC:5186      1
43                 21       46635167        PRMT2  HGNC:5186      1
44                 21       46635167        PRMT2  HGNC:5186      1
45                 21       46635167        PRMT2  HGNC:5186      1
46                 21       46635167        PRMT2  HGNC:5186      1
47                 21       46635167        PRMT2  HGNC:5186      1
48                 21       46635167        PRMT2  HGNC:5186      1
49                 21       46635167        PRMT2  HGNC:5186      1
50                 21       46635167        PRMT2  HGNC:5186      1
51                 21       46635167        PRMT2  HGNC:5186      1
52                 21       46635167        PRMT2  HGNC:5186      1
53                 21       46635167        PRMT2  HGNC:5186      1
54                 21       46635167        PRMT2  HGNC:5186      1
55                 21       46635167        PRMT2  HGNC:5186      1
56                 21       46635167        PRMT2  HGNC:5186      1
57                 21       46635167        PRMT2  HGNC:5186      1
58                 21       46635167        PRMT2  HGNC:5186      1
59                 21       46635167        PRMT2  HGNC:5186      1
60                 21       46635167        PRMT2  HGNC:5186      1
61                 21       46635167        PRMT2  HGNC:5186      1
62                 21       46635167        PRMT2  HGNC:5186      1
63                 21       46635167        PRMT2  HGNC:5186      1
64                 21       46635167        PRMT2  HGNC:5186      1
65                 21       46635167        PRMT2  HGNC:5186      1
66                 21       46635167        PRMT2  HGNC:5186      1
67                 21       46635167        PRMT2  HGNC:5186      1
68                 21       46635167        PRMT2  HGNC:5186      1
69                 21       46635167        PRMT2  HGNC:5186      1
70                 21       46635167        PRMT2  HGNC:5186      1
71                 21       46635167        PRMT2  HGNC:5186      1
72                 21       46635167        PRMT2  HGNC:5186      1
73                 21       46635167        PRMT2  HGNC:5186      1
74                 21       46635167        PRMT2  HGNC:5186      1
75                 21       46635167        PRMT2  HGNC:5186      1
76                 21       46635167        PRMT2  HGNC:5186      1
77                 21       46635167        PRMT2  HGNC:5186      1
78                 21       46635167        PRMT2  HGNC:5186      1
79                 21       46635167        PRMT2  HGNC:5186      1
80                 21       46635167        PRMT2  HGNC:5186      1
81                 21       46635167        PRMT2  HGNC:5186      1
82                 21       46635167        PRMT2  HGNC:5186      1
83                 21       46635167        PRMT2  HGNC:5186      1
84                 21       46635167        PRMT2  HGNC:5186      1
85                 21       46635167        PRMT2  HGNC:5186      1
86                 21       46635167        PRMT2  HGNC:5186      1
87                 21       46635167        PRMT2  HGNC:5186      1
88                 21       46635167        PRMT2  HGNC:5186      1
89                 21       46635167        PRMT2  HGNC:5186      1
90                 21       46635167        PRMT2  HGNC:5186      1
91                 21       46635167        PRMT2  HGNC:5186      1
92                 21       46635167        PRMT2  HGNC:5186      1
93                 21       46635167        PRMT2  HGNC:5186      1
94                 21       46635167        PRMT2  HGNC:5186      1
95                 21       46635167        PRMT2  HGNC:5186      1
96                 21       46635167        PRMT2  HGNC:5186      1
97                 21       46635167        PRMT2  HGNC:5186      1
98                 21       46635167        PRMT2  HGNC:5186      1
99                 21       46635167        PRMT2  HGNC:5186      1
100                21       46635167        PRMT2  HGNC:5186      1
101                21       46635167        PRMT2  HGNC:5186      1
102                21       46635167        PRMT2  HGNC:5186      1
103                21       46635167        PRMT2  HGNC:5186      1
104                21       46635167        PRMT2  HGNC:5186      1
105                21       46635167        PRMT2  HGNC:5186      1
106                21       46635167        PRMT2  HGNC:5186      1
107                21       46635167        PRMT2  HGNC:5186      1
108                21       46635167        PRMT2  HGNC:5186      1
109                21       46635167        PRMT2  HGNC:5186      1
110                21       46635167        PRMT2  HGNC:5186      1
111                21       46653558       DSTNP1 HGNC:23769     -1
112                21       46598962        S100B HGNC:10500     -1
113                21       46598962        S100B HGNC:10500     -1
114                21       46598962        S100B HGNC:10500     -1
115                21       46598962        S100B HGNC:10500     -1
116                21       46598962        S100B HGNC:10500     -1
117                21       46598962        S100B HGNC:10500     -1
118                21       46598962        S100B HGNC:10500     -1
119                21       46598962        S100B HGNC:10500     -1
120                21       46598962        S100B HGNC:10500     -1
121                21       46458899        DIP2A HGNC:17217      1
122                21       46458899        DIP2A HGNC:17217      1
123                21       46458899        DIP2A HGNC:17217      1
124                21       46458899        DIP2A HGNC:17217      1
125                21       46458899        DIP2A HGNC:17217      1
126                21       46458899        DIP2A HGNC:17217      1
127                21       46458899        DIP2A HGNC:17217      1
128                21       46458899        DIP2A HGNC:17217      1
129                21       46458899        DIP2A HGNC:17217      1
130                21       46458899        DIP2A HGNC:17217      1
131                21       46458899        DIP2A HGNC:17217      1
132                21       46458899        DIP2A HGNC:17217      1
133                21       46458899        DIP2A HGNC:17217      1
134                21       46458899        DIP2A HGNC:17217      1
135                21       46458899        DIP2A HGNC:17217      1
136                21       46458899        DIP2A HGNC:17217      1
137                21       46458899        DIP2A HGNC:17217      1
138                21       46458899        DIP2A HGNC:17217      1
139                21       46458899        DIP2A HGNC:17217      1
140                21       46458899        DIP2A HGNC:17217      1
141                21       46458899        DIP2A HGNC:17217      1
142                21       46458899        DIP2A HGNC:17217      1
143                21       46458899        DIP2A HGNC:17217      1
144                21       46458899        DIP2A HGNC:17217      1
145                21       46458899        DIP2A HGNC:17217      1
146                21       46458899        DIP2A HGNC:17217      1
147                21       46458899        DIP2A HGNC:17217      1
148                21       46458899        DIP2A HGNC:17217      1
149                21       46458899        DIP2A HGNC:17217      1
150                21       46458899        DIP2A HGNC:17217      1
151                21       46458899        DIP2A HGNC:17217      1
152                21       46458899        DIP2A HGNC:17217      1
153                21       46458899        DIP2A HGNC:17217      1
154                21       46458899        DIP2A HGNC:17217      1
155                21       46458899        DIP2A HGNC:17217      1
156                21       46458899        DIP2A HGNC:17217      1
157                21       46458899        DIP2A HGNC:17217      1
158                21       46458899        DIP2A HGNC:17217      1
159                21       46458899        DIP2A HGNC:17217      1
160                21       46458899        DIP2A HGNC:17217      1
161                21       46458899        DIP2A HGNC:17217      1
162                21       46458899        DIP2A HGNC:17217      1
163                21       46458899        DIP2A HGNC:17217      1
164                21       46458899        DIP2A HGNC:17217      1
165                21       46458899        DIP2A HGNC:17217      1
166                21       46458899        DIP2A HGNC:17217      1
167                21       46458899        DIP2A HGNC:17217      1
168                21       46458899        DIP2A HGNC:17217      1
169                21       46458899        DIP2A HGNC:17217      1
170                21       46458899        DIP2A HGNC:17217      1
171                21       46458899        DIP2A HGNC:17217      1
172                21       46458899        DIP2A HGNC:17217      1
173                21       46458899        DIP2A HGNC:17217      1
174                21       46458899        DIP2A HGNC:17217      1
175                21       46458899        DIP2A HGNC:17217      1
176                21       46458899        DIP2A HGNC:17217      1
177                21       46458899        DIP2A HGNC:17217      1
178                21       46458899        DIP2A HGNC:17217      1
179                21       46458899        DIP2A HGNC:17217      1
180                21       46458899        DIP2A HGNC:17217      1
181                21       46458899        DIP2A HGNC:17217      1
182                21       46458899        DIP2A HGNC:17217      1
183                21       46458899        DIP2A HGNC:17217      1
184                21       46458899        DIP2A HGNC:17217      1
185                21       46458899        DIP2A HGNC:17217      1
186                21       46458899        DIP2A HGNC:17217      1
187                21       46458899        DIP2A HGNC:17217      1
188                21       46458899        DIP2A HGNC:17217      1
189                21       46458899        DIP2A HGNC:17217      1
190                21       46458899        DIP2A HGNC:17217      1
191                21       46458899        DIP2A HGNC:17217      1
192                21       46458899        DIP2A HGNC:17217      1
193                21       46458899        DIP2A HGNC:17217      1
194                21       46458899        DIP2A HGNC:17217      1
195                21       46458899        DIP2A HGNC:17217      1
196                21       46458899        DIP2A HGNC:17217      1
197                21       46458899        DIP2A HGNC:17217      1
198                21       46458899        DIP2A HGNC:17217      1
199                21       46458899        DIP2A HGNC:17217      1
200                21       46458899        DIP2A HGNC:17217      1
201                21       46458899        DIP2A HGNC:17217      1
202                21       46458899        DIP2A HGNC:17217      1
203                21       46458899        DIP2A HGNC:17217      1
204                21       46458899        DIP2A HGNC:17217      1
205                21       46458899        DIP2A HGNC:17217      1
206                21       46458899        DIP2A HGNC:17217      1
207                21       46458899        DIP2A HGNC:17217      1
208                21       46458899        DIP2A HGNC:17217      1
209                21       46458899        DIP2A HGNC:17217      1
210                21       46458899        DIP2A HGNC:17217      1
211                21       46458899        DIP2A HGNC:17217      1
212                21       46458899        DIP2A HGNC:17217      1
213                21       46458899        DIP2A HGNC:17217      1
214                21       46458899        DIP2A HGNC:17217      1
215                21       46458899        DIP2A HGNC:17217      1
216                21       46458899        DIP2A HGNC:17217      1
217                21       46458899        DIP2A HGNC:17217      1
218                21       46458899        DIP2A HGNC:17217      1
219                21       46458899        DIP2A HGNC:17217      1
220                21       46458899        DIP2A HGNC:17217      1
221                21       46458899        DIP2A HGNC:17217      1
222                21       46458899        DIP2A HGNC:17217      1
223                21       46458899        DIP2A HGNC:17217      1
224                21       46458899        DIP2A HGNC:17217      1
225                21       46458899        DIP2A HGNC:17217      1
226                21       46458899        DIP2A HGNC:17217      1
227                21       46458899        DIP2A HGNC:17217      1
228                21       46458899        DIP2A HGNC:17217      1
229                21       46458899        DIP2A HGNC:17217      1
230                21       46458899        DIP2A HGNC:17217      1
231                21       46458899        DIP2A HGNC:17217      1
232                21       46458899        DIP2A HGNC:17217      1
233                21       46458899        DIP2A HGNC:17217      1
234                21       46458899        DIP2A HGNC:17217      1
235                21       46458899        DIP2A HGNC:17217      1
236                21       46458899        DIP2A HGNC:17217      1
237                21       46458899        DIP2A HGNC:17217      1
238                21       46458899        DIP2A HGNC:17217      1
239                21       46458899        DIP2A HGNC:17217      1
240                21       46458899        DIP2A HGNC:17217      1
241                21       46458899        DIP2A HGNC:17217      1
242                21       46458899        DIP2A HGNC:17217      1
243                21       46458899        DIP2A HGNC:17217      1
244                21       46458899        DIP2A HGNC:17217      1
245                21       46458899        DIP2A HGNC:17217      1
246                21       46458899        DIP2A HGNC:17217      1
247                21       46458899        DIP2A HGNC:17217      1
248                21       46458899        DIP2A HGNC:17217      1
249                21       46458899        DIP2A HGNC:17217      1
250                21       46458899        DIP2A HGNC:17217      1
251                21       46458899        DIP2A HGNC:17217      1
252                21       46458899        DIP2A HGNC:17217      1
253                21       46458899        DIP2A HGNC:17217      1
254                21       46458899        DIP2A HGNC:17217      1
255                21       46458899        DIP2A HGNC:17217      1
256                21       46458899        DIP2A HGNC:17217      1
257                21       46458899        DIP2A HGNC:17217      1
258                21       46458899        DIP2A HGNC:17217      1
259                21       46458899        DIP2A HGNC:17217      1
260                21       46458899        DIP2A HGNC:17217      1
261                21       46458899        DIP2A HGNC:17217      1
262                21       46458899        DIP2A HGNC:17217      1
263                21       46458899        DIP2A HGNC:17217      1
264                21       46458899        DIP2A HGNC:17217      1
265                21       46458899        DIP2A HGNC:17217      1
266                21       46458899        DIP2A HGNC:17217      1
267                21       46458899        DIP2A HGNC:17217      1
268                21       46458899        DIP2A HGNC:17217      1
269                21       46458899        DIP2A HGNC:17217      1
270                21       46458899        DIP2A HGNC:17217      1
271                21       46458899        DIP2A HGNC:17217      1
272                21       46458899        DIP2A HGNC:17217      1
273                21       46458899        DIP2A HGNC:17217      1
274                21       46458899        DIP2A HGNC:17217      1
275                21       46458899        DIP2A HGNC:17217      1
276                21       46458899        DIP2A HGNC:17217      1
277                21       46458899        DIP2A HGNC:17217      1
278                21       46458899        DIP2A HGNC:17217      1
279                21       46458899        DIP2A HGNC:17217      1
280                21       46458899        DIP2A HGNC:17217      1
281                21       46458899        DIP2A HGNC:17217      1
282                21       46458899        DIP2A HGNC:17217      1
283                21       46458899        DIP2A HGNC:17217      1
284                21       46458899        DIP2A HGNC:17217      1
285                21       46458899        DIP2A HGNC:17217      1
286                21       46458899        DIP2A HGNC:17217      1
287                21       46458899        DIP2A HGNC:17217      1
288                21       46458899        DIP2A HGNC:17217      1
289                21       46458899        DIP2A HGNC:17217      1
290                21       46458899        DIP2A HGNC:17217      1
291                21       46458899        DIP2A HGNC:17217      1
292                21       46458899        DIP2A HGNC:17217      1
293                21       46458899        DIP2A HGNC:17217      1
294                21       46458899        DIP2A HGNC:17217      1
295                21       46458899        DIP2A HGNC:17217      1
296                21       46458899        DIP2A HGNC:17217      1
297                21       46458899        DIP2A HGNC:17217      1
298                21       46458899        DIP2A HGNC:17217      1
299                21       46458899        DIP2A HGNC:17217      1
300                21       46458899        DIP2A HGNC:17217      1
301                21       46458899        DIP2A HGNC:17217      1
302                21       46458899        DIP2A HGNC:17217      1
303                21       46458899        DIP2A HGNC:17217      1
304                21       46458899        DIP2A HGNC:17217      1
305                21       46458899        DIP2A HGNC:17217      1
306                21       46458899        DIP2A HGNC:17217      1
307                21       46458899        DIP2A HGNC:17217      1
308                21       46458899        DIP2A HGNC:17217      1
309                21       46458899        DIP2A HGNC:17217      1
310                21       46458899        DIP2A HGNC:17217      1
311                21       46458899        DIP2A HGNC:17217      1
312                21       46525618    RNU6-396P HGNC:47359      1
313                21       46462471    DIP2A-IT1 HGNC:41430      1
314                21       46462471    DIP2A-IT1 HGNC:41430      1
315                21       46462471    DIP2A-IT1 HGNC:41430      1
316                21       46462471    DIP2A-IT1 HGNC:41430      1
317                21       46324122         PCNT HGNC:16068      1
318                21       46324122         PCNT HGNC:16068      1
319                21       46324122         PCNT HGNC:16068      1
320                21       46324122         PCNT HGNC:16068      1
321                21       46324122         PCNT HGNC:16068      1
322                21       46324122         PCNT HGNC:16068      1
323                21       46324122         PCNT HGNC:16068      1
324                21       46324122         PCNT HGNC:16068      1
325                21       46324122         PCNT HGNC:16068      1
326                21       46324122         PCNT HGNC:16068      1
327                21       46324122         PCNT HGNC:16068      1
328                21       46324122         PCNT HGNC:16068      1
329                21       46324122         PCNT HGNC:16068      1
330                21       46324122         PCNT HGNC:16068      1
331                21       46324122         PCNT HGNC:16068      1
332                21       46324122         PCNT HGNC:16068      1
333                21       46324122         PCNT HGNC:16068      1
334                21       46324122         PCNT HGNC:16068      1
335                21       46324122         PCNT HGNC:16068      1
336                21       46324122         PCNT HGNC:16068      1
337                21       46324122         PCNT HGNC:16068      1
338                21       46324122         PCNT HGNC:16068      1
339                21       46324122         PCNT HGNC:16068      1
340                21       46324122         PCNT HGNC:16068      1
341                21       46324122         PCNT HGNC:16068      1
342                21       46324122         PCNT HGNC:16068      1
343                21       46324122         PCNT HGNC:16068      1
344                21       46324122         PCNT HGNC:16068      1
345                21       46324122         PCNT HGNC:16068      1
346                21       46324122         PCNT HGNC:16068      1
347                21       46324122         PCNT HGNC:16068      1
348                21       46324122         PCNT HGNC:16068      1
349                21       46324122         PCNT HGNC:16068      1
350                21       46324122         PCNT HGNC:16068      1
351                21       46324122         PCNT HGNC:16068      1
352                21       46324122         PCNT HGNC:16068      1
353                21       46324122         PCNT HGNC:16068      1
354                21       46324122         PCNT HGNC:16068      1
355                21       46324122         PCNT HGNC:16068      1
356                21       46324122         PCNT HGNC:16068      1
357                21       46324122         PCNT HGNC:16068      1
358                21       46324122         PCNT HGNC:16068      1
359                21       46324122         PCNT HGNC:16068      1
360                21       46324122         PCNT HGNC:16068      1
361                21       46324122         PCNT HGNC:16068      1
362                21       46324122         PCNT HGNC:16068      1
363                21       46324122         PCNT HGNC:16068      1
364                21       46324122         PCNT HGNC:16068      1
365                21       46324122         PCNT HGNC:16068      1
366                21       46324122         PCNT HGNC:16068      1
367                21       46324122         PCNT HGNC:16068      1
368                21       46324122         PCNT HGNC:16068      1
369                21       46324122         PCNT HGNC:16068      1
370                21       46324122         PCNT HGNC:16068      1
371                21       46324122         PCNT HGNC:16068      1
372                21       46324122         PCNT HGNC:16068      1
373                21       46324122         PCNT HGNC:16068      1
374                21       46324122         PCNT HGNC:16068      1
375                21       46324122         PCNT HGNC:16068      1
376                21       46324122         PCNT HGNC:16068      1
377                21       46324122         PCNT HGNC:16068      1
378                21       46324122         PCNT HGNC:16068      1
379                21       46324122         PCNT HGNC:16068      1
380                21       46324122         PCNT HGNC:16068      1
381                21       46324122         PCNT HGNC:16068      1
382                21       46324122         PCNT HGNC:16068      1
383                21       46324122         PCNT HGNC:16068      1
384                21       46324122         PCNT HGNC:16068      1
385                21       46324122         PCNT HGNC:16068      1
386                21       46324122         PCNT HGNC:16068      1
387                21       46324122         PCNT HGNC:16068      1
388                21       46324122         PCNT HGNC:16068      1
389                21       46324122         PCNT HGNC:16068      1
390                21       46324122         PCNT HGNC:16068      1
391                21       46324122         PCNT HGNC:16068      1
392                21       46324122         PCNT HGNC:16068      1
393                21       46324122         PCNT HGNC:16068      1
394                21       46324122         PCNT HGNC:16068      1
395                21       46324122         PCNT HGNC:16068      1
396                21       46324122         PCNT HGNC:16068      1
397                21       46324122         PCNT HGNC:16068      1
398                21       46324122         PCNT HGNC:16068      1
399                21       46324122         PCNT HGNC:16068      1
400                21       46324122         PCNT HGNC:16068      1
401                21       46324122         PCNT HGNC:16068      1
402                21       46324122         PCNT HGNC:16068      1
403                21       46324122         PCNT HGNC:16068      1
404                21       46324122         PCNT HGNC:16068      1
405                21       46324122         PCNT HGNC:16068      1
406                21       46324122         PCNT HGNC:16068      1
407                21       46324122         PCNT HGNC:16068      1
408                21       46324122         PCNT HGNC:16068      1
409                21       46324122         PCNT HGNC:16068      1
410                21       46324122         PCNT HGNC:16068      1
411                21       46324122         PCNT HGNC:16068      1
412                21       46324122         PCNT HGNC:16068      1
413                21       46324122         PCNT HGNC:16068      1
414                21       46324122         PCNT HGNC:16068      1
415                21       46324122         PCNT HGNC:16068      1
416                21       46324122         PCNT HGNC:16068      1
417                21       46324122         PCNT HGNC:16068      1
418                21       46324122         PCNT HGNC:16068      1
419                21       46324122         PCNT HGNC:16068      1
420                21       46324122         PCNT HGNC:16068      1
421                21       46324122         PCNT HGNC:16068      1
422                21       46324122         PCNT HGNC:16068      1
423                21       46324122         PCNT HGNC:16068      1
424                21       46324122         PCNT HGNC:16068      1
425                21       46324122         PCNT HGNC:16068      1
426                21       46324122         PCNT HGNC:16068      1
427                21       46324122         PCNT HGNC:16068      1
428                21       46324122         PCNT HGNC:16068      1
429                21       46324122         PCNT HGNC:16068      1
430                21       46324122         PCNT HGNC:16068      1
431                21       46324122         PCNT HGNC:16068      1
432                21       46324122         PCNT HGNC:16068      1
433                21       46324122         PCNT HGNC:16068      1
434                21       46324122         PCNT HGNC:16068      1
435                21       46324122         PCNT HGNC:16068      1
436                21       46324122         PCNT HGNC:16068      1
437                21       46324122         PCNT HGNC:16068      1
438                21       46324122         PCNT HGNC:16068      1
439                21       46324122         PCNT HGNC:16068      1
440                21       46420553     RPL18AP2 HGNC:23774     -1
441                21       46300181     C21orf58  HGNC:1300     -1
442                21       46300181     C21orf58  HGNC:1300     -1
443                21       46300181     C21orf58  HGNC:1300     -1
444                21       46300181     C21orf58  HGNC:1300     -1
445                21       46300181     C21orf58  HGNC:1300     -1
446                21       46300181     C21orf58  HGNC:1300     -1
447                21       46300181     C21orf58  HGNC:1300     -1
448                21       46300181     C21orf58  HGNC:1300     -1
449                21       46300181     C21orf58  HGNC:1300     -1
450                21       46300181     C21orf58  HGNC:1300     -1
451                21       46300181     C21orf58  HGNC:1300     -1
452                21       46300181     C21orf58  HGNC:1300     -1
453                21       46300181     C21orf58  HGNC:1300     -1
454                21       46300181     C21orf58  HGNC:1300     -1
455                21       46300181     C21orf58  HGNC:1300     -1
456                21       46300181     C21orf58  HGNC:1300     -1
457                21       46300181     C21orf58  HGNC:1300     -1
458                21       46300181     C21orf58  HGNC:1300     -1
459                21       46300181     C21orf58  HGNC:1300     -1
460                21       46300181     C21orf58  HGNC:1300     -1
461                21       46300181     C21orf58  HGNC:1300     -1
462                21       46300181     C21orf58  HGNC:1300     -1
463                21       46300181     C21orf58  HGNC:1300     -1
464                21       46300181     C21orf58  HGNC:1300     -1
465                21       46300181     C21orf58  HGNC:1300     -1
466                21       46300181     C21orf58  HGNC:1300     -1
467                21       46300181     C21orf58  HGNC:1300     -1
468                21       46300181     C21orf58  HGNC:1300     -1
469                21       46300181     C21orf58  HGNC:1300     -1
470                21       46300181     C21orf58  HGNC:1300     -1
471                21       46300181     C21orf58  HGNC:1300     -1
472                21       46300181     C21orf58  HGNC:1300     -1
473                21       46300181     C21orf58  HGNC:1300     -1
474                21       46300181     C21orf58  HGNC:1300     -1
475                21       46300181     C21orf58  HGNC:1300     -1
476                21       46300181     C21orf58  HGNC:1300     -1
477                21       46300181     C21orf58  HGNC:1300     -1
478                21       46300181     C21orf58  HGNC:1300     -1
479                21       46300181     C21orf58  HGNC:1300     -1
480                21       46300181     C21orf58  HGNC:1300     -1
481                21       46300181     C21orf58  HGNC:1300     -1
482                21       46300181     C21orf58  HGNC:1300     -1
483                21       46300181     C21orf58  HGNC:1300     -1
484                21       46300181     C21orf58  HGNC:1300     -1
485                21       46300181     C21orf58  HGNC:1300     -1
486                21       46300181     C21orf58  HGNC:1300     -1
487                21       46300181     C21orf58  HGNC:1300     -1
488                21       46300181     C21orf58  HGNC:1300     -1
489                21       46300181     C21orf58  HGNC:1300     -1
490                21       46300181     C21orf58  HGNC:1300     -1
491                21       46300181     C21orf58  HGNC:1300     -1
492                21       46300181     C21orf58  HGNC:1300     -1
493                21       46300181     C21orf58  HGNC:1300     -1
494                21       46300181     C21orf58  HGNC:1300     -1
495                21       46300181     C21orf58  HGNC:1300     -1
496                21       46300181     C21orf58  HGNC:1300     -1
497                21       46300181     C21orf58  HGNC:1300     -1
498                21       46300181     C21orf58  HGNC:1300     -1
499                21       46300181     C21orf58  HGNC:1300     -1
500                21       46300181     C21orf58  HGNC:1300     -1
501                21       46300181     C21orf58  HGNC:1300     -1
502                21       46300181     C21orf58  HGNC:1300     -1
503                21       46300181     C21orf58  HGNC:1300     -1
504                21       46300181     C21orf58  HGNC:1300     -1
505                21       46300181     C21orf58  HGNC:1300     -1
506                21       46300181     C21orf58  HGNC:1300     -1
507                21       46300181     C21orf58  HGNC:1300     -1
508                21       46300181     C21orf58  HGNC:1300     -1
509                21       46300181     C21orf58  HGNC:1300     -1
510                21       46300181     C21orf58  HGNC:1300     -1
511                21       46286337         YBEY  HGNC:1299      1
512                21       46286337         YBEY  HGNC:1299      1
513                21       46286337         YBEY  HGNC:1299      1
514                21       46286337         YBEY  HGNC:1299      1
515                21       46286337         YBEY  HGNC:1299      1
516                21       46286337         YBEY  HGNC:1299      1
517                21       46286337         YBEY  HGNC:1299      1
518                21       46286337         YBEY  HGNC:1299      1
519                21       46286337         YBEY  HGNC:1299      1
520                21       46286337         YBEY  HGNC:1299      1
521                21       46286337         YBEY  HGNC:1299      1
522                21       46286337         YBEY  HGNC:1299      1
523                21       46286337         YBEY  HGNC:1299      1
524                21       46286337         YBEY  HGNC:1299      1
525                21       46286337         YBEY  HGNC:1299      1
526                21       46286337         YBEY  HGNC:1299      1
527                21       46286337         YBEY  HGNC:1299      1
528                21       46286337         YBEY  HGNC:1299      1
529                21       46286337         YBEY  HGNC:1299      1
530                21       46286337         YBEY  HGNC:1299      1
531                21       46286337         YBEY  HGNC:1299      1
532                21       46286337         YBEY  HGNC:1299      1
533                21       46286337         YBEY  HGNC:1299      1
534                21       46286337         YBEY  HGNC:1299      1
535                21       46286337         YBEY  HGNC:1299      1
536                21       46286337         YBEY  HGNC:1299      1
537                21       46286337         YBEY  HGNC:1299      1
538                21       46286337         YBEY  HGNC:1299      1
539                21       46286337         YBEY  HGNC:1299      1
540                21       46286337         YBEY  HGNC:1299      1
541                21       46286337         YBEY  HGNC:1299      1
542                21       46286337         YBEY  HGNC:1299      1
543                21       46286337         YBEY  HGNC:1299      1
544                21       46286337         YBEY  HGNC:1299      1
545                21       46235126       MCM3AP  HGNC:6946     -1
546                21       46235126       MCM3AP  HGNC:6946     -1
547                21       46235126       MCM3AP  HGNC:6946     -1
548                21       46235126       MCM3AP  HGNC:6946     -1
549                21       46235126       MCM3AP  HGNC:6946     -1
550                21       46235126       MCM3AP  HGNC:6946     -1
551                21       46235126       MCM3AP  HGNC:6946     -1
552                21       46235126       MCM3AP  HGNC:6946     -1
553                21       46235126       MCM3AP  HGNC:6946     -1
554                21       46235126       MCM3AP  HGNC:6946     -1
555                21       46235126       MCM3AP  HGNC:6946     -1
556                21       46235126       MCM3AP  HGNC:6946     -1
557                21       46235126       MCM3AP  HGNC:6946     -1
558                21       46235126       MCM3AP  HGNC:6946     -1
559                21       46235126       MCM3AP  HGNC:6946     -1
560                21       46235126       MCM3AP  HGNC:6946     -1
561                21       46235126       MCM3AP  HGNC:6946     -1
562                21       46235126       MCM3AP  HGNC:6946     -1
563                21       46235126       MCM3AP  HGNC:6946     -1
564                21       46235126       MCM3AP  HGNC:6946     -1
565                21       46235126       MCM3AP  HGNC:6946     -1
566                21       46235126       MCM3AP  HGNC:6946     -1
567                21       46235126       MCM3AP  HGNC:6946     -1
568                21       46235126       MCM3AP  HGNC:6946     -1
569                21       46235126       MCM3AP  HGNC:6946     -1
570                21       46235126       MCM3AP  HGNC:6946     -1
571                21       46235126       MCM3AP  HGNC:6946     -1
572                21       46235126       MCM3AP  HGNC:6946     -1
573                21       46235126       MCM3AP  HGNC:6946     -1
574                21       46235126       MCM3AP  HGNC:6946     -1
575                21       46235126       MCM3AP  HGNC:6946     -1
576                21       46235126       MCM3AP  HGNC:6946     -1
577                21       46235126       MCM3AP  HGNC:6946     -1
578                21       46235126       MCM3AP  HGNC:6946     -1
579                21       46235126       MCM3AP  HGNC:6946     -1
580                21       46235126       MCM3AP  HGNC:6946     -1
581                21       46235126       MCM3AP  HGNC:6946     -1
582                21       46235126       MCM3AP  HGNC:6946     -1
583                21       46235126       MCM3AP  HGNC:6946     -1
584                21       46235126       MCM3AP  HGNC:6946     -1
585                21       46235126       MCM3AP  HGNC:6946     -1
586                21       46235126       MCM3AP  HGNC:6946     -1
587                21       46235126       MCM3AP  HGNC:6946     -1
588                21       46235126       MCM3AP  HGNC:6946     -1
589                21       46235126       MCM3AP  HGNC:6946     -1
590                21       46235126       MCM3AP  HGNC:6946     -1
591                21       46235126       MCM3AP  HGNC:6946     -1
592                21       46235126       MCM3AP  HGNC:6946     -1
593                21       46235126       MCM3AP  HGNC:6946     -1
594                21       46235126       MCM3AP  HGNC:6946     -1
595                21       46235126       MCM3AP  HGNC:6946     -1
596                21       46235126       MCM3AP  HGNC:6946     -1
597                21       46235126       MCM3AP  HGNC:6946     -1
598                21       46235126       MCM3AP  HGNC:6946     -1
599                21       46235126       MCM3AP  HGNC:6946     -1
600                21       46235126       MCM3AP  HGNC:6946     -1
601                21       46235126       MCM3AP  HGNC:6946     -1
602                21       46235126       MCM3AP  HGNC:6946     -1
603                21       46235126       MCM3AP  HGNC:6946     -1
604                21       46235126       MCM3AP  HGNC:6946     -1
605                21       46235126       MCM3AP  HGNC:6946     -1
606                21       46235126       MCM3AP  HGNC:6946     -1
607                21       46235126       MCM3AP  HGNC:6946     -1
608                21       46235126       MCM3AP  HGNC:6946     -1
609                21       46235126       MCM3AP  HGNC:6946     -1
610                21       46235126       MCM3AP  HGNC:6946     -1
611                21       46235126       MCM3AP  HGNC:6946     -1
612                21       46235126       MCM3AP  HGNC:6946     -1
613                21       46235126       MCM3AP  HGNC:6946     -1
614                21       46235126       MCM3AP  HGNC:6946     -1
615                21       46235126       MCM3AP  HGNC:6946     -1
616                21       46235126       MCM3AP  HGNC:6946     -1
617                21       46235126       MCM3AP  HGNC:6946     -1
618                21       46235126       MCM3AP  HGNC:6946     -1
619                21       46235126       MCM3AP  HGNC:6946     -1
620                21       46235126       MCM3AP  HGNC:6946     -1
621                21       46235126       MCM3AP  HGNC:6946     -1
622                21       46235126       MCM3AP  HGNC:6946     -1
623                21       46235126       MCM3AP  HGNC:6946     -1
624                21       46235126       MCM3AP  HGNC:6946     -1
625                21       46235126       MCM3AP  HGNC:6946     -1
626                21       46235126       MCM3AP  HGNC:6946     -1
627                21       46235126       MCM3AP  HGNC:6946     -1
628                21       46235126       MCM3AP  HGNC:6946     -1
629                21       46235126       MCM3AP  HGNC:6946     -1
630                21       46235126       MCM3AP  HGNC:6946     -1
631                21       46235126       MCM3AP  HGNC:6946     -1
632                21       46235126       MCM3AP  HGNC:6946     -1
633                21       46235126       MCM3AP  HGNC:6946     -1
634                21       46235126       MCM3AP  HGNC:6946     -1
635                21       46235126       MCM3AP  HGNC:6946     -1
636                21       46235126       MCM3AP  HGNC:6946     -1
637                21       46235126       MCM3AP  HGNC:6946     -1
638                21       46235126       MCM3AP  HGNC:6946     -1
639                21       46235126       MCM3AP  HGNC:6946     -1
640                21       46235126       MCM3AP  HGNC:6946     -1
641                21       46235126       MCM3AP  HGNC:6946     -1
642                21       46235126       MCM3AP  HGNC:6946     -1
643                21       46235126       MCM3AP  HGNC:6946     -1
644                21       46235126       MCM3AP  HGNC:6946     -1
645                21       46235126       MCM3AP  HGNC:6946     -1
646                21       46235126       MCM3AP  HGNC:6946     -1
647                21       46235126       MCM3AP  HGNC:6946     -1
648                21       46235126       MCM3AP  HGNC:6946     -1
649                21       46235126       MCM3AP  HGNC:6946     -1
650                21       46235126       MCM3AP  HGNC:6946     -1
651                21       46235126       MCM3AP  HGNC:6946     -1
652                21       46235126       MCM3AP  HGNC:6946     -1
653                21       46235126       MCM3AP  HGNC:6946     -1
654                21       46235126       MCM3AP  HGNC:6946     -1
655                21       46235126       MCM3AP  HGNC:6946     -1
656                21       46235126       MCM3AP  HGNC:6946     -1
657                21       46235126       MCM3AP  HGNC:6946     -1
658                21       46235126       MCM3AP  HGNC:6946     -1
659                21       46235126       MCM3AP  HGNC:6946     -1
660                21       46235126       MCM3AP  HGNC:6946     -1
661                21       46235126       MCM3AP  HGNC:6946     -1
662                21       46235126       MCM3AP  HGNC:6946     -1
663                21       46229217   MCM3AP-AS1 HGNC:16417      1
664                21       46229217   MCM3AP-AS1 HGNC:16417      1
665                21       46229217   MCM3AP-AS1 HGNC:16417      1
666                21       46229217   MCM3AP-AS1 HGNC:16417      1
667                21       46229217   MCM3AP-AS1 HGNC:16417      1
668                21       46229217   MCM3AP-AS1 HGNC:16417      1
669                21       46229217   MCM3AP-AS1 HGNC:16417      1
670                21       46229217   MCM3AP-AS1 HGNC:16417      1
671                21       46229217   MCM3AP-AS1 HGNC:16417      1
672                21       46229217   MCM3AP-AS1 HGNC:16417      1
673                21       46229217   MCM3AP-AS1 HGNC:16417      1
674                21       46229217   MCM3AP-AS1 HGNC:16417      1
675                21       46229217   MCM3AP-AS1 HGNC:16417      1
676                21       46229217   MCM3AP-AS1 HGNC:16417      1
677                21       46229217   MCM3AP-AS1 HGNC:16417      1
678                21       46229217   MCM3AP-AS1 HGNC:16417      1
679                21       46229217   MCM3AP-AS1 HGNC:16417      1
680                21       46229217   MCM3AP-AS1 HGNC:16417      1
681                21       46229217   MCM3AP-AS1 HGNC:16417      1
682                21       46229217   MCM3AP-AS1 HGNC:16417      1
683                21       46229217   MCM3AP-AS1 HGNC:16417      1
684                21       46229217   MCM3AP-AS1 HGNC:16417      1
685                21       46229217   MCM3AP-AS1 HGNC:16417      1
686                21       46229217   MCM3AP-AS1 HGNC:16417      1
687                21       46229217   MCM3AP-AS1 HGNC:16417      1
688                21       46251549                             -1
689                21       46251549                             -1
690                21       46251549                             -1
691                21       46251549                             -1
692                21       46246890                              1
693                21       46246890                              1
694                21       46188141          LSS  HGNC:6708     -1
695                21       46188141          LSS  HGNC:6708     -1
696                21       46188141          LSS  HGNC:6708     -1
697                21       46188141          LSS  HGNC:6708     -1
698                21       46188141          LSS  HGNC:6708     -1
699                21       46188141          LSS  HGNC:6708     -1
700                21       46188141          LSS  HGNC:6708     -1
701                21       46188141          LSS  HGNC:6708     -1
702                21       46188141          LSS  HGNC:6708     -1
703                21       46188141          LSS  HGNC:6708     -1
704                21       46188141          LSS  HGNC:6708     -1
705                21       46188141          LSS  HGNC:6708     -1
706                21       46188141          LSS  HGNC:6708     -1
707                21       46188141          LSS  HGNC:6708     -1
708                21       46188141          LSS  HGNC:6708     -1
709                21       46188141          LSS  HGNC:6708     -1
710                21       46188141          LSS  HGNC:6708     -1
711                21       46188141          LSS  HGNC:6708     -1
712                21       46188141          LSS  HGNC:6708     -1
713                21       46188141          LSS  HGNC:6708     -1
714                21       46188141          LSS  HGNC:6708     -1
715                21       46188141          LSS  HGNC:6708     -1
716                21       46188141          LSS  HGNC:6708     -1
717                21       46188141          LSS  HGNC:6708     -1
718                21       46188141          LSS  HGNC:6708     -1
719                21       46188141          LSS  HGNC:6708     -1
720                21       46188141          LSS  HGNC:6708     -1
721                21       46188141          LSS  HGNC:6708     -1
722                21       46188141          LSS  HGNC:6708     -1
723                21       46188141          LSS  HGNC:6708     -1
724                21       46188141          LSS  HGNC:6708     -1
725                21       46188141          LSS  HGNC:6708     -1
726                21       46188141          LSS  HGNC:6708     -1
727                21       46188141          LSS  HGNC:6708     -1
728                21       46188141          LSS  HGNC:6708     -1
729                21       46188141          LSS  HGNC:6708     -1
730                21       46188141          LSS  HGNC:6708     -1
731                21       46188141          LSS  HGNC:6708     -1
732                21       46188141          LSS  HGNC:6708     -1
733                21       46188141          LSS  HGNC:6708     -1
734                21       46188141          LSS  HGNC:6708     -1
735                21       46188141          LSS  HGNC:6708     -1
736                21       46188141          LSS  HGNC:6708     -1
737                21       46188141          LSS  HGNC:6708     -1
738                21       46188141          LSS  HGNC:6708     -1
739                21       46188141          LSS  HGNC:6708     -1
740                21       46188141          LSS  HGNC:6708     -1
741                21       46188141          LSS  HGNC:6708     -1
742                21       46188141          LSS  HGNC:6708     -1
743                21       46188141          LSS  HGNC:6708     -1
744                21       46188141          LSS  HGNC:6708     -1
745                21       46188141          LSS  HGNC:6708     -1
746                21       46188141          LSS  HGNC:6708     -1
747                21       46188141          LSS  HGNC:6708     -1
748                21       46188141          LSS  HGNC:6708     -1
749                21       46188141          LSS  HGNC:6708     -1
750                21       46188141          LSS  HGNC:6708     -1
751                21       46188141          LSS  HGNC:6708     -1
752                21       46188141          LSS  HGNC:6708     -1
753                21       46188141          LSS  HGNC:6708     -1
754                21       46188141          LSS  HGNC:6708     -1
755                21       46188141          LSS  HGNC:6708     -1
756                21       46188141          LSS  HGNC:6708     -1
757                21       46188141          LSS  HGNC:6708     -1
758                21       46188141          LSS  HGNC:6708     -1
759                21       46188141          LSS  HGNC:6708     -1
760                21       46188141          LSS  HGNC:6708     -1
761                21       46188141          LSS  HGNC:6708     -1
762                21       46188141          LSS  HGNC:6708     -1
763                21       46188141          LSS  HGNC:6708     -1
764                21       46188141          LSS  HGNC:6708     -1
765                21       46188141          LSS  HGNC:6708     -1
766                21       46188141          LSS  HGNC:6708     -1
767                21       46188141          LSS  HGNC:6708     -1
768                21       46188141          LSS  HGNC:6708     -1
769                21       46188141          LSS  HGNC:6708     -1
770                21       46188141          LSS  HGNC:6708     -1
771                21       46188141          LSS  HGNC:6708     -1
772                21       46188141          LSS  HGNC:6708     -1
773                21       46188141          LSS  HGNC:6708     -1
774                21       46188141          LSS  HGNC:6708     -1
775                21       46188141          LSS  HGNC:6708     -1
776                21       46188141          LSS  HGNC:6708     -1
777                21       46188141          LSS  HGNC:6708     -1
778                21       46188141          LSS  HGNC:6708     -1
779                21       46188141          LSS  HGNC:6708     -1
780                21       46188141          LSS  HGNC:6708     -1
781                21       46188141          LSS  HGNC:6708     -1
782                21       46188141          LSS  HGNC:6708     -1
783                21       46188141          LSS  HGNC:6708     -1
784                21       46188141          LSS  HGNC:6708     -1
785                21       46188141          LSS  HGNC:6708     -1
786                21       46188141          LSS  HGNC:6708     -1
787                21       46188141          LSS  HGNC:6708     -1
788                21       46188141          LSS  HGNC:6708     -1
789                21       46188141          LSS  HGNC:6708     -1
790                21       46188141          LSS  HGNC:6708     -1
791                21       46188141          LSS  HGNC:6708     -1
792                21       46188141          LSS  HGNC:6708     -1
793                21       46188141          LSS  HGNC:6708     -1
794                21       46188141          LSS  HGNC:6708     -1
795                21       46188141          LSS  HGNC:6708     -1
796                21       46188141          LSS  HGNC:6708     -1
797                21       46188141          LSS  HGNC:6708     -1
798                21       46188141          LSS  HGNC:6708     -1
799                21       46188141          LSS  HGNC:6708     -1
800                21       46188141          LSS  HGNC:6708     -1
801                21       46188141          LSS  HGNC:6708     -1
802                21       46188141          LSS  HGNC:6708     -1
803                21       46188141          LSS  HGNC:6708     -1
804                21       46188141          LSS  HGNC:6708     -1
805                21       46188141          LSS  HGNC:6708     -1
806                21       46188141          LSS  HGNC:6708     -1
807                21       46188141          LSS  HGNC:6708     -1
808                21       46188141          LSS  HGNC:6708     -1
809                21       46220269                              1
810                21       46220269                              1
811                21       46220269                              1
812                21       46220269                              1
813                21       46220269                              1
814                21       46220269                              1
815                21       46185079                              1
816                21       46185079                              1
817                21       46161148      SPATC1L  HGNC:1298     -1
818                21       46161148      SPATC1L  HGNC:1298     -1
819                21       46161148      SPATC1L  HGNC:1298     -1
820                21       46161148      SPATC1L  HGNC:1298     -1
821                21       46161148      SPATC1L  HGNC:1298     -1
822                21       46161148      SPATC1L  HGNC:1298     -1
823                21       46161148      SPATC1L  HGNC:1298     -1
824                21       46161148      SPATC1L  HGNC:1298     -1
825                21       46161148      SPATC1L  HGNC:1298     -1
826                21       46136262         FTCD  HGNC:3974     -1
827                21       46136262         FTCD  HGNC:3974     -1
828                21       46136262         FTCD  HGNC:3974     -1
829                21       46136262         FTCD  HGNC:3974     -1
830                21       46136262         FTCD  HGNC:3974     -1
831                21       46136262         FTCD  HGNC:3974     -1
832                21       46136262         FTCD  HGNC:3974     -1
833                21       46136262         FTCD  HGNC:3974     -1
834                21       46136262         FTCD  HGNC:3974     -1
835                21       46136262         FTCD  HGNC:3974     -1
836                21       46136262         FTCD  HGNC:3974     -1
837                21       46136262         FTCD  HGNC:3974     -1
838                21       46136262         FTCD  HGNC:3974     -1
839                21       46136262         FTCD  HGNC:3974     -1
840                21       46136262         FTCD  HGNC:3974     -1
841                21       46136262         FTCD  HGNC:3974     -1
842                21       46136262         FTCD  HGNC:3974     -1
843                21       46136262         FTCD  HGNC:3974     -1
844                21       46136262         FTCD  HGNC:3974     -1
845                21       46136262         FTCD  HGNC:3974     -1
846                21       46136262         FTCD  HGNC:3974     -1
847                21       46136262         FTCD  HGNC:3974     -1
848                21       46136262         FTCD  HGNC:3974     -1
849                21       46136262         FTCD  HGNC:3974     -1
850                21       46136262         FTCD  HGNC:3974     -1
851                21       46136262         FTCD  HGNC:3974     -1
852                21       46136262         FTCD  HGNC:3974     -1
853                21       46136262         FTCD  HGNC:3974     -1
854                21       46136262         FTCD  HGNC:3974     -1
855                21       46136262         FTCD  HGNC:3974     -1
856                21       46136262         FTCD  HGNC:3974     -1
857                21       46136262         FTCD  HGNC:3974     -1
858                21       46136262         FTCD  HGNC:3974     -1
859                21       46136262         FTCD  HGNC:3974     -1
860                21       46136262         FTCD  HGNC:3974     -1
861                21       46136262         FTCD  HGNC:3974     -1
862                21       46136262         FTCD  HGNC:3974     -1
863                21       46136262         FTCD  HGNC:3974     -1
864                21       46136262         FTCD  HGNC:3974     -1
865                21       46136262         FTCD  HGNC:3974     -1
866                21       46136262         FTCD  HGNC:3974     -1
867                21       46136262         FTCD  HGNC:3974     -1
868                21       46136262         FTCD  HGNC:3974     -1
869                21       46136262         FTCD  HGNC:3974     -1
870                21       46136262         FTCD  HGNC:3974     -1
871                21       46136262         FTCD  HGNC:3974     -1
872                21       46136262         FTCD  HGNC:3974     -1
873                21       46136262         FTCD  HGNC:3974     -1
874                21       46136262         FTCD  HGNC:3974     -1
875                21       46136262         FTCD  HGNC:3974     -1
876                21       46136262         FTCD  HGNC:3974     -1
877                21       46136262         FTCD  HGNC:3974     -1
878                21       46136262         FTCD  HGNC:3974     -1
879                21       46136262         FTCD  HGNC:3974     -1
880                21       46136262         FTCD  HGNC:3974     -1
881                21       46136262         FTCD  HGNC:3974     -1
882                21       46136262         FTCD  HGNC:3974     -1
883                21       46136262         FTCD  HGNC:3974     -1
884                21       46136262         FTCD  HGNC:3974     -1
885                21       46136262         FTCD  HGNC:3974     -1
886                21       46136262         FTCD  HGNC:3974     -1
887                21       46136262         FTCD  HGNC:3974     -1
888                21       46136262         FTCD  HGNC:3974     -1
889                21       46136262         FTCD  HGNC:3974     -1
890                21       46136262         FTCD  HGNC:3974     -1
891                21       46136262         FTCD  HGNC:3974     -1
892                21       46136262         FTCD  HGNC:3974     -1
893                21       46136262         FTCD  HGNC:3974     -1
894                21       46136262         FTCD  HGNC:3974     -1
895                21       46136262         FTCD  HGNC:3974     -1
896                21       46136262         FTCD  HGNC:3974     -1
897                21       46136262         FTCD  HGNC:3974     -1
898                21       46136262         FTCD  HGNC:3974     -1
899                21       46136262         FTCD  HGNC:3974     -1
900                21       46136262         FTCD  HGNC:3974     -1
901                21       46136262         FTCD  HGNC:3974     -1
902                21       46136262         FTCD  HGNC:3974     -1
903                21       46136262         FTCD  HGNC:3974     -1
904                21       46136262         FTCD  HGNC:3974     -1
905                21       46136262         FTCD  HGNC:3974     -1
906                21       46136262         FTCD  HGNC:3974     -1
907                21       46136262         FTCD  HGNC:3974     -1
908                21       46136262         FTCD  HGNC:3974     -1
909                21       46136262         FTCD  HGNC:3974     -1
910                21       46136262         FTCD  HGNC:3974     -1
911                21       46136262         FTCD  HGNC:3974     -1
912                21       46136262         FTCD  HGNC:3974     -1
913                21       46136262         FTCD  HGNC:3974     -1
914                21       46136262         FTCD  HGNC:3974     -1
915                21       46136262         FTCD  HGNC:3974     -1
916                21       46136262         FTCD  HGNC:3974     -1
917                21       46136262         FTCD  HGNC:3974     -1
918                21       46136262         FTCD  HGNC:3974     -1
919                21       46136262         FTCD  HGNC:3974     -1
920                21       46136262         FTCD  HGNC:3974     -1
921                21       46151614     FTCD-AS1 HGNC:40243      1
922                21       46151614     FTCD-AS1 HGNC:40243      1
923                21       46098097       COL6A2  HGNC:2212      1
924                21       46098097       COL6A2  HGNC:2212      1
925                21       46098097       COL6A2  HGNC:2212      1
926                21       46098097       COL6A2  HGNC:2212      1
927                21       46098097       COL6A2  HGNC:2212      1
928                21       46098097       COL6A2  HGNC:2212      1
929                21       46098097       COL6A2  HGNC:2212      1
930                21       46098097       COL6A2  HGNC:2212      1
931                21       46098097       COL6A2  HGNC:2212      1
932                21       46098097       COL6A2  HGNC:2212      1
933                21       46098097       COL6A2  HGNC:2212      1
934                21       46098097       COL6A2  HGNC:2212      1
935                21       46098097       COL6A2  HGNC:2212      1
936                21       46098097       COL6A2  HGNC:2212      1
937                21       46098097       COL6A2  HGNC:2212      1
938                21       46098097       COL6A2  HGNC:2212      1
939                21       46098097       COL6A2  HGNC:2212      1
940                21       46098097       COL6A2  HGNC:2212      1
941                21       46098097       COL6A2  HGNC:2212      1
942                21       46098097       COL6A2  HGNC:2212      1
943                21       46098097       COL6A2  HGNC:2212      1
944                21       46098097       COL6A2  HGNC:2212      1
945                21       46098097       COL6A2  HGNC:2212      1
946                21       46098097       COL6A2  HGNC:2212      1
947                21       46098097       COL6A2  HGNC:2212      1
948                21       46098097       COL6A2  HGNC:2212      1
949                21       46098097       COL6A2  HGNC:2212      1
950                21       46098097       COL6A2  HGNC:2212      1
951                21       46098097       COL6A2  HGNC:2212      1
952                21       46098097       COL6A2  HGNC:2212      1
953                21       46098097       COL6A2  HGNC:2212      1
954                21       46098097       COL6A2  HGNC:2212      1
955                21       46098097       COL6A2  HGNC:2212      1
956                21       46098097       COL6A2  HGNC:2212      1
957                21       46098097       COL6A2  HGNC:2212      1
958                21       46098097       COL6A2  HGNC:2212      1
959                21       46098097       COL6A2  HGNC:2212      1
960                21       46098097       COL6A2  HGNC:2212      1
961                21       46098097       COL6A2  HGNC:2212      1
962                21       46098097       COL6A2  HGNC:2212      1
963                21       46098097       COL6A2  HGNC:2212      1
964                21       46098097       COL6A2  HGNC:2212      1
965                21       46098097       COL6A2  HGNC:2212      1
966                21       46098097       COL6A2  HGNC:2212      1
967                21       46098097       COL6A2  HGNC:2212      1
968                21       46098097       COL6A2  HGNC:2212      1
969                21       46098097       COL6A2  HGNC:2212      1
970                21       46098097       COL6A2  HGNC:2212      1
971                21       46098097       COL6A2  HGNC:2212      1
972                21       46098097       COL6A2  HGNC:2212      1
973                21       46098097       COL6A2  HGNC:2212      1
974                21       46098097       COL6A2  HGNC:2212      1
975                21       46098097       COL6A2  HGNC:2212      1
976                21       46098097       COL6A2  HGNC:2212      1
977                21       46098097       COL6A2  HGNC:2212      1
978                21       46098097       COL6A2  HGNC:2212      1
979                21       46098097       COL6A2  HGNC:2212      1
980                21       46098097       COL6A2  HGNC:2212      1
981                21       46098097       COL6A2  HGNC:2212      1
982                21       46098097       COL6A2  HGNC:2212      1
983                21       46098097       COL6A2  HGNC:2212      1
984                21       46098097       COL6A2  HGNC:2212      1
985                21       46098097       COL6A2  HGNC:2212      1
986                21       46098097       COL6A2  HGNC:2212      1
987                21       46098097       COL6A2  HGNC:2212      1
988                21       46098097       COL6A2  HGNC:2212      1
989                21       46098097       COL6A2  HGNC:2212      1
990                21       46098097       COL6A2  HGNC:2212      1
991                21       46098097       COL6A2  HGNC:2212      1
992                21       46098097       COL6A2  HGNC:2212      1
993                21       46098097       COL6A2  HGNC:2212      1
994                21       46098097       COL6A2  HGNC:2212      1
995                21       46098097       COL6A2  HGNC:2212      1
996                21       46098097       COL6A2  HGNC:2212      1
997                21       46098097       COL6A2  HGNC:2212      1
998                21       46098097       COL6A2  HGNC:2212      1
999                21       46098097       COL6A2  HGNC:2212      1
1000               21       46098097       COL6A2  HGNC:2212      1
1001               21       46098097       COL6A2  HGNC:2212      1
1002               21       46098097       COL6A2  HGNC:2212      1
1003               21       46098097       COL6A2  HGNC:2212      1
1004               21       46098097       COL6A2  HGNC:2212      1
1005               21       46098097       COL6A2  HGNC:2212      1
1006               21       46098097       COL6A2  HGNC:2212      1
1007               21       46098097       COL6A2  HGNC:2212      1
1008               21       46098097       COL6A2  HGNC:2212      1
1009               21       46098097       COL6A2  HGNC:2212      1
1010               21       46098097       COL6A2  HGNC:2212      1
1011               21       46098097       COL6A2  HGNC:2212      1
1012               21       46098097       COL6A2  HGNC:2212      1
1013               21       46098097       COL6A2  HGNC:2212      1
1014               21       46098097       COL6A2  HGNC:2212      1
1015               21       46098097       COL6A2  HGNC:2212      1
1016               21       46098097       COL6A2  HGNC:2212      1
1017               21       46098097       COL6A2  HGNC:2212      1
1018               21       46098097       COL6A2  HGNC:2212      1
1019               21       46098097       COL6A2  HGNC:2212      1
1020               21       46098097       COL6A2  HGNC:2212      1
1021               21       46098097       COL6A2  HGNC:2212      1
1022               21       46098097       COL6A2  HGNC:2212      1
1023               21       46098097       COL6A2  HGNC:2212      1
1024               21       46098097       COL6A2  HGNC:2212      1
1025               21       46098097       COL6A2  HGNC:2212      1
1026               21       46098097       COL6A2  HGNC:2212      1
1027               21       46098097       COL6A2  HGNC:2212      1
1028               21       46098097       COL6A2  HGNC:2212      1
1029               21       46098097       COL6A2  HGNC:2212      1
1030               21       46098097       COL6A2  HGNC:2212      1
1031               21       46098097       COL6A2  HGNC:2212      1
1032               21       46098097       COL6A2  HGNC:2212      1
1033               21       46098097       COL6A2  HGNC:2212      1
1034               21       46098097       COL6A2  HGNC:2212      1
1035               21       46098097       COL6A2  HGNC:2212      1
1036               21       46098097       COL6A2  HGNC:2212      1
1037               21       46098097       COL6A2  HGNC:2212      1
1038               21       46098097       COL6A2  HGNC:2212      1
1039               21       46098097       COL6A2  HGNC:2212      1
1040               21       46098097       COL6A2  HGNC:2212      1
1041               21       46098097       COL6A2  HGNC:2212      1
1042               21       46098097       COL6A2  HGNC:2212      1
1043               21       46098097       COL6A2  HGNC:2212      1
1044               21       46098097       COL6A2  HGNC:2212      1
1045               21       46098097       COL6A2  HGNC:2212      1
1046               21       46098097       COL6A2  HGNC:2212      1
1047               21       46098097       COL6A2  HGNC:2212      1
1048               21       46098097       COL6A2  HGNC:2212      1
1049               21       46098097       COL6A2  HGNC:2212      1
1050               21       46098097       COL6A2  HGNC:2212      1
1051               21       46098097       COL6A2  HGNC:2212      1
1052               21       46098097       COL6A2  HGNC:2212      1
1053               21       46098097       COL6A2  HGNC:2212      1
1054               21       46098097       COL6A2  HGNC:2212      1
1055               21       46098097       COL6A2  HGNC:2212      1
1056               21       46093264                             -1
1057               21       46093264                             -1
1058               21       46072085      PSMA6P3 HGNC:39608     -1
1059               21       46056516                              1
1060               21       46056516                              1
1061               21       46052596                              1
1062               21       46052596                              1
1063               21       46037052                              1
1064               21       46037052                              1
1065               21       45981737       COL6A1  HGNC:2211      1
1066               21       45981737       COL6A1  HGNC:2211      1
1067               21       45981737       COL6A1  HGNC:2211      1
1068               21       45981737       COL6A1  HGNC:2211      1
1069               21       45981737       COL6A1  HGNC:2211      1
1070               21       45981737       COL6A1  HGNC:2211      1
1071               21       45981737       COL6A1  HGNC:2211      1
1072               21       45981737       COL6A1  HGNC:2211      1
1073               21       45981737       COL6A1  HGNC:2211      1
1074               21       45981737       COL6A1  HGNC:2211      1
1075               21       45981737       COL6A1  HGNC:2211      1
1076               21       45981737       COL6A1  HGNC:2211      1
1077               21       45981737       COL6A1  HGNC:2211      1
1078               21       45981737       COL6A1  HGNC:2211      1
1079               21       45981737       COL6A1  HGNC:2211      1
1080               21       45981737       COL6A1  HGNC:2211      1
1081               21       45981737       COL6A1  HGNC:2211      1
1082               21       45981737       COL6A1  HGNC:2211      1
1083               21       45981737       COL6A1  HGNC:2211      1
1084               21       45981737       COL6A1  HGNC:2211      1
1085               21       45981737       COL6A1  HGNC:2211      1
1086               21       45981737       COL6A1  HGNC:2211      1
1087               21       45981737       COL6A1  HGNC:2211      1
1088               21       45981737       COL6A1  HGNC:2211      1
1089               21       45981737       COL6A1  HGNC:2211      1
1090               21       45981737       COL6A1  HGNC:2211      1
1091               21       45981737       COL6A1  HGNC:2211      1
1092               21       45981737       COL6A1  HGNC:2211      1
1093               21       45981737       COL6A1  HGNC:2211      1
1094               21       45981737       COL6A1  HGNC:2211      1
1095               21       45981737       COL6A1  HGNC:2211      1
1096               21       45981737       COL6A1  HGNC:2211      1
1097               21       45981737       COL6A1  HGNC:2211      1
1098               21       45981737       COL6A1  HGNC:2211      1
1099               21       45981737       COL6A1  HGNC:2211      1
1100               21       45981737       COL6A1  HGNC:2211      1
1101               21       45981737       COL6A1  HGNC:2211      1
1102               21       45981737       COL6A1  HGNC:2211      1
1103               21       45981737       COL6A1  HGNC:2211      1
1104               21       45981737       COL6A1  HGNC:2211      1
1105               21       45981737       COL6A1  HGNC:2211      1
1106               21       45981737       COL6A1  HGNC:2211      1
1107               21       45981737       COL6A1  HGNC:2211      1
1108               21       45981737       COL6A1  HGNC:2211      1
1109               21       45981737       COL6A1  HGNC:2211      1
1110               21       45981737       COL6A1  HGNC:2211      1
1111               21       45981737       COL6A1  HGNC:2211      1
1112               21       45981737       COL6A1  HGNC:2211      1
1113               21       45981737       COL6A1  HGNC:2211      1
1114               21       45981737       COL6A1  HGNC:2211      1
1115               21       45981737       COL6A1  HGNC:2211      1
1116               21       45981737       COL6A1  HGNC:2211      1
1117               21       45981737       COL6A1  HGNC:2211      1
1118               21       45981737       COL6A1  HGNC:2211      1
1119               21       45981737       COL6A1  HGNC:2211      1
1120               21       45981737       COL6A1  HGNC:2211      1
1121               21       45981737       COL6A1  HGNC:2211      1
1122               21       45981737       COL6A1  HGNC:2211      1
1123               21       45981737       COL6A1  HGNC:2211      1
1124               21       45981737       COL6A1  HGNC:2211      1
1125               21       45981737       COL6A1  HGNC:2211      1
1126               21       45981737       COL6A1  HGNC:2211      1
1127               21       45981737       COL6A1  HGNC:2211      1
1128               21       45981737       COL6A1  HGNC:2211      1
1129               21       45981737       COL6A1  HGNC:2211      1
1130               21       45981737       COL6A1  HGNC:2211      1
1131               21       45981737       COL6A1  HGNC:2211      1
1132               21       45981737       COL6A1  HGNC:2211      1
1133               21       45981737       COL6A1  HGNC:2211      1
1134               21       45981737       COL6A1  HGNC:2211      1
1135               21       45981737       COL6A1  HGNC:2211      1
1136               21       45981737       COL6A1  HGNC:2211      1
1137               21       45981737       COL6A1  HGNC:2211      1
1138               21       45981737       COL6A1  HGNC:2211      1
1139               21       45981737       COL6A1  HGNC:2211      1
1140               21       45981737       COL6A1  HGNC:2211      1
1141               21       45981737       COL6A1  HGNC:2211      1
1142               21       45981737       COL6A1  HGNC:2211      1
1143               21       45981737       COL6A1  HGNC:2211      1
1144               21       45981737       COL6A1  HGNC:2211      1
1145               21       45981737       COL6A1  HGNC:2211      1
1146               21       45981737       COL6A1  HGNC:2211      1
1147               21       45981737       COL6A1  HGNC:2211      1
1148               21       45981737       COL6A1  HGNC:2211      1
1149               21       45981737       COL6A1  HGNC:2211      1
1150               21       45981737       COL6A1  HGNC:2211      1
1151               21       45981737       COL6A1  HGNC:2211      1
1152               21       45981737       COL6A1  HGNC:2211      1
1153               21       45981737       COL6A1  HGNC:2211      1
1154               21       45974489                              1
1155               21       45643694        PCBP3  HGNC:8651      1
1156               21       45643694        PCBP3  HGNC:8651      1
1157               21       45643694        PCBP3  HGNC:8651      1
1158               21       45643694        PCBP3  HGNC:8651      1
1159               21       45643694        PCBP3  HGNC:8651      1
1160               21       45643694        PCBP3  HGNC:8651      1
1161               21       45643694        PCBP3  HGNC:8651      1
1162               21       45643694        PCBP3  HGNC:8651      1
1163               21       45643694        PCBP3  HGNC:8651      1
1164               21       45643694        PCBP3  HGNC:8651      1
1165               21       45643694        PCBP3  HGNC:8651      1
1166               21       45643694        PCBP3  HGNC:8651      1
1167               21       45643694        PCBP3  HGNC:8651      1
1168               21       45643694        PCBP3  HGNC:8651      1
1169               21       45643694        PCBP3  HGNC:8651      1
1170               21       45643694        PCBP3  HGNC:8651      1
1171               21       45643694        PCBP3  HGNC:8651      1
1172               21       45643694        PCBP3  HGNC:8651      1
1173               21       45643694        PCBP3  HGNC:8651      1
1174               21       45643694        PCBP3  HGNC:8651      1
1175               21       45643694        PCBP3  HGNC:8651      1
1176               21       45643694        PCBP3  HGNC:8651      1
1177               21       45643694        PCBP3  HGNC:8651      1
1178               21       45643694        PCBP3  HGNC:8651      1
1179               21       45643694        PCBP3  HGNC:8651      1
1180               21       45643694        PCBP3  HGNC:8651      1
1181               21       45643694        PCBP3  HGNC:8651      1
1182               21       45643694        PCBP3  HGNC:8651      1
1183               21       45643694        PCBP3  HGNC:8651      1
1184               21       45643694        PCBP3  HGNC:8651      1
1185               21       45643694        PCBP3  HGNC:8651      1
1186               21       45643694        PCBP3  HGNC:8651      1
1187               21       45643694        PCBP3  HGNC:8651      1
1188               21       45643694        PCBP3  HGNC:8651      1
1189               21       45643694        PCBP3  HGNC:8651      1
1190               21       45643694        PCBP3  HGNC:8651      1
1191               21       45643694        PCBP3  HGNC:8651      1
1192               21       45643694        PCBP3  HGNC:8651      1
1193               21       45643694        PCBP3  HGNC:8651      1
1194               21       45643694        PCBP3  HGNC:8651      1
1195               21       45643694        PCBP3  HGNC:8651      1
1196               21       45643694        PCBP3  HGNC:8651      1
1197               21       45643694        PCBP3  HGNC:8651      1
1198               21       45643694        PCBP3  HGNC:8651      1
1199               21       45643694        PCBP3  HGNC:8651      1
1200               21       45643694        PCBP3  HGNC:8651      1
1201               21       45643694        PCBP3  HGNC:8651      1
1202               21       45643694        PCBP3  HGNC:8651      1
1203               21       45643694        PCBP3  HGNC:8651      1
1204               21       45643694        PCBP3  HGNC:8651      1
1205               21       45643694        PCBP3  HGNC:8651      1
1206               21       45643694        PCBP3  HGNC:8651      1
1207               21       45643694        PCBP3  HGNC:8651      1
1208               21       45643694        PCBP3  HGNC:8651      1
1209               21       45643694        PCBP3  HGNC:8651      1
1210               21       45643694        PCBP3  HGNC:8651      1
1211               21       45643694        PCBP3  HGNC:8651      1
1212               21       45643694        PCBP3  HGNC:8651      1
1213               21       45643694        PCBP3  HGNC:8651      1
1214               21       45643694        PCBP3  HGNC:8651      1
1215               21       45643694        PCBP3  HGNC:8651      1
1216               21       45643694        PCBP3  HGNC:8651      1
1217               21       45643694        PCBP3  HGNC:8651      1
1218               21       45643694        PCBP3  HGNC:8651      1
1219               21       45643694        PCBP3  HGNC:8651      1
1220               21       45643694        PCBP3  HGNC:8651      1
1221               21       45643694        PCBP3  HGNC:8651      1
1222               21       45643694        PCBP3  HGNC:8651      1
1223               21       45643694        PCBP3  HGNC:8651      1
1224               21       45643694        PCBP3  HGNC:8651      1
1225               21       45643694        PCBP3  HGNC:8651      1
1226               21       45643694        PCBP3  HGNC:8651      1
1227               21       45643694        PCBP3  HGNC:8651      1
1228               21       45643694        PCBP3  HGNC:8651      1
1229               21       45643694        PCBP3  HGNC:8651      1
1230               21       45643694        PCBP3  HGNC:8651      1
1231               21       45643694        PCBP3  HGNC:8651      1
1232               21       45643694        PCBP3  HGNC:8651      1
1233               21       45643694        PCBP3  HGNC:8651      1
1234               21       45643694        PCBP3  HGNC:8651      1
1235               21       45643694        PCBP3  HGNC:8651      1
1236               21       45643694        PCBP3  HGNC:8651      1
1237               21       45643694        PCBP3  HGNC:8651      1
1238               21       45643694        PCBP3  HGNC:8651      1
1239               21       45643694        PCBP3  HGNC:8651      1
1240               21       45643694        PCBP3  HGNC:8651      1
1241               21       45643694        PCBP3  HGNC:8651      1
1242               21       45643694        PCBP3  HGNC:8651      1
1243               21       45643694        PCBP3  HGNC:8651      1
1244               21       45643694        PCBP3  HGNC:8651      1
1245               21       45643694        PCBP3  HGNC:8651      1
1246               21       45643694        PCBP3  HGNC:8651      1
1247               21       45643694        PCBP3  HGNC:8651      1
1248               21       45643694        PCBP3  HGNC:8651      1
1249               21       45643694        PCBP3  HGNC:8651      1
1250               21       45643694        PCBP3  HGNC:8651      1
1251               21       45643694        PCBP3  HGNC:8651      1
1252               21       45643694        PCBP3  HGNC:8651      1
1253               21       45643694        PCBP3  HGNC:8651      1
1254               21       45643694        PCBP3  HGNC:8651      1
1255               21       45643694        PCBP3  HGNC:8651      1
1256               21       45643694        PCBP3  HGNC:8651      1
1257               21       45643694        PCBP3  HGNC:8651      1
1258               21       45643694        PCBP3  HGNC:8651      1
1259               21       45643694        PCBP3  HGNC:8651      1
1260               21       45643694        PCBP3  HGNC:8651      1
1261               21       45643694        PCBP3  HGNC:8651      1
1262               21       45643694        PCBP3  HGNC:8651      1
1263               21       45643694        PCBP3  HGNC:8651      1
1264               21       45643694        PCBP3  HGNC:8651      1
1265               21       45643694        PCBP3  HGNC:8651      1
1266               21       45643694        PCBP3  HGNC:8651      1
1267               21       45643694        PCBP3  HGNC:8651      1
1268               21       45643694        PCBP3  HGNC:8651      1
1269               21       45643694        PCBP3  HGNC:8651      1
1270               21       45643694        PCBP3  HGNC:8651      1
1271               21       45643694        PCBP3  HGNC:8651      1
1272               21       45643694        PCBP3  HGNC:8651      1
1273               21       45643694        PCBP3  HGNC:8651      1
1274               21       45643694        PCBP3  HGNC:8651      1
1275               21       45643694        PCBP3  HGNC:8651      1
1276               21       45643694        PCBP3  HGNC:8651      1
1277               21       45643694        PCBP3  HGNC:8651      1
1278               21       45643694        PCBP3  HGNC:8651      1
1279               21       45643694        PCBP3  HGNC:8651      1
1280               21       45643694        PCBP3  HGNC:8651      1
1281               21       45643694        PCBP3  HGNC:8651      1
1282               21       45643694        PCBP3  HGNC:8651      1
1283               21       45643694        PCBP3  HGNC:8651      1
1284               21       45643694        PCBP3  HGNC:8651      1
1285               21       45643694        PCBP3  HGNC:8651      1
1286               21       45643694        PCBP3  HGNC:8651      1
1287               21       45643694        PCBP3  HGNC:8651      1
1288               21       45643694        PCBP3  HGNC:8651      1
1289               21       45643694        PCBP3  HGNC:8651      1
1290               21       45643694        PCBP3  HGNC:8651      1
1291               21       45643694        PCBP3  HGNC:8651      1
1292               21       45643694        PCBP3  HGNC:8651      1
1293               21       45643694        PCBP3  HGNC:8651      1
1294               21       45643694        PCBP3  HGNC:8651      1
1295               21       45643694        PCBP3  HGNC:8651      1
1296               21       45643694        PCBP3  HGNC:8651      1
1297               21       45643694        PCBP3  HGNC:8651      1
1298               21       45643694        PCBP3  HGNC:8651      1
1299               21       45643694        PCBP3  HGNC:8651      1
1300               21       45643694        PCBP3  HGNC:8651      1
1301               21       45643694        PCBP3  HGNC:8651      1
1302               21       45643694        PCBP3  HGNC:8651      1
1303               21       45643694        PCBP3  HGNC:8651      1
1304               21       45643694        PCBP3  HGNC:8651      1
1305               21       45643694        PCBP3  HGNC:8651      1
1306               21       45914296                              1
1307               21       45914296                              1
1308               21       45914296                              1
1309               21       45870854                              1
1310               21       45827961                             -1
1311               21       45827961                             -1
1312               21       45827961                             -1
1313               21       45759804                             -1
1314               21       45593654    LINC01694 HGNC:52481      1
1315               21       45593654    LINC01694 HGNC:52481      1
1316               21       45593654    LINC01694 HGNC:52481      1
1317               21       45593654    LINC01694 HGNC:52481      1
1318               21       45593654    LINC01694 HGNC:52481      1
1319               21       45493572      SLC19A1 HGNC:10937     -1
1320               21       45493572      SLC19A1 HGNC:10937     -1
1321               21       45493572      SLC19A1 HGNC:10937     -1
1322               21       45493572      SLC19A1 HGNC:10937     -1
1323               21       45493572      SLC19A1 HGNC:10937     -1
1324               21       45493572      SLC19A1 HGNC:10937     -1
1325               21       45493572      SLC19A1 HGNC:10937     -1
1326               21       45493572      SLC19A1 HGNC:10937     -1
1327               21       45493572      SLC19A1 HGNC:10937     -1
1328               21       45493572      SLC19A1 HGNC:10937     -1
1329               21       45493572      SLC19A1 HGNC:10937     -1
1330               21       45493572      SLC19A1 HGNC:10937     -1
1331               21       45493572      SLC19A1 HGNC:10937     -1
1332               21       45493572      SLC19A1 HGNC:10937     -1
1333               21       45493572      SLC19A1 HGNC:10937     -1
1334               21       45493572      SLC19A1 HGNC:10937     -1
1335               21       45493572      SLC19A1 HGNC:10937     -1
1336               21       45493572      SLC19A1 HGNC:10937     -1
1337               21       45493572      SLC19A1 HGNC:10937     -1
1338               21       45493572      SLC19A1 HGNC:10937     -1
1339               21       45493572      SLC19A1 HGNC:10937     -1
1340               21       45493572      SLC19A1 HGNC:10937     -1
1341               21       45493572      SLC19A1 HGNC:10937     -1
1342               21       45493572      SLC19A1 HGNC:10937     -1
1343               21       45493572      SLC19A1 HGNC:10937     -1
1344               21       45493572      SLC19A1 HGNC:10937     -1
1345               21       45493572      SLC19A1 HGNC:10937     -1
1346               21       45493572      SLC19A1 HGNC:10937     -1
1347               21       45493572      SLC19A1 HGNC:10937     -1
1348               21       45493572      SLC19A1 HGNC:10937     -1
1349               21       45493572      SLC19A1 HGNC:10937     -1
1350               21       45493572      SLC19A1 HGNC:10937     -1
1351               21       45493572      SLC19A1 HGNC:10937     -1
1352               21       45493572      SLC19A1 HGNC:10937     -1
1353               21       45493572      SLC19A1 HGNC:10937     -1
1354               21       45493572      SLC19A1 HGNC:10937     -1
1355               21       45493572      SLC19A1 HGNC:10937     -1
1356               21       45493572      SLC19A1 HGNC:10937     -1
1357               21       45493572      SLC19A1 HGNC:10937     -1
1358               21       45493572      SLC19A1 HGNC:10937     -1
1359               21       45493572      SLC19A1 HGNC:10937     -1
1360               21       45493572      SLC19A1 HGNC:10937     -1
1361               21       45493572      SLC19A1 HGNC:10937     -1
1362               21       45493572      SLC19A1 HGNC:10937     -1
1363               21       45493572      SLC19A1 HGNC:10937     -1
1364               21       45493572      SLC19A1 HGNC:10937     -1
1365               21       45493572      SLC19A1 HGNC:10937     -1
1366               21       45405137      COL18A1  HGNC:2195      1
1367               21       45405137      COL18A1  HGNC:2195      1
1368               21       45405137      COL18A1  HGNC:2195      1
1369               21       45405137      COL18A1  HGNC:2195      1
1370               21       45405137      COL18A1  HGNC:2195      1
1371               21       45405137      COL18A1  HGNC:2195      1
1372               21       45405137      COL18A1  HGNC:2195      1
1373               21       45405137      COL18A1  HGNC:2195      1
1374               21       45405137      COL18A1  HGNC:2195      1
1375               21       45405137      COL18A1  HGNC:2195      1
1376               21       45405137      COL18A1  HGNC:2195      1
1377               21       45405137      COL18A1  HGNC:2195      1
1378               21       45405137      COL18A1  HGNC:2195      1
1379               21       45405137      COL18A1  HGNC:2195      1
1380               21       45405137      COL18A1  HGNC:2195      1
1381               21       45405137      COL18A1  HGNC:2195      1
1382               21       45405137      COL18A1  HGNC:2195      1
1383               21       45405137      COL18A1  HGNC:2195      1
1384               21       45405137      COL18A1  HGNC:2195      1
1385               21       45405137      COL18A1  HGNC:2195      1
1386               21       45405137      COL18A1  HGNC:2195      1
1387               21       45405137      COL18A1  HGNC:2195      1
1388               21       45405137      COL18A1  HGNC:2195      1
1389               21       45405137      COL18A1  HGNC:2195      1
1390               21       45405137      COL18A1  HGNC:2195      1
1391               21       45405137      COL18A1  HGNC:2195      1
1392               21       45405137      COL18A1  HGNC:2195      1
1393               21       45405137      COL18A1  HGNC:2195      1
1394               21       45405137      COL18A1  HGNC:2195      1
1395               21       45405137      COL18A1  HGNC:2195      1
1396               21       45405137      COL18A1  HGNC:2195      1
1397               21       45405137      COL18A1  HGNC:2195      1
1398               21       45405137      COL18A1  HGNC:2195      1
1399               21       45405137      COL18A1  HGNC:2195      1
1400               21       45405137      COL18A1  HGNC:2195      1
1401               21       45405137      COL18A1  HGNC:2195      1
1402               21       45405137      COL18A1  HGNC:2195      1
1403               21       45405137      COL18A1  HGNC:2195      1
1404               21       45405137      COL18A1  HGNC:2195      1
1405               21       45405137      COL18A1  HGNC:2195      1
1406               21       45405137      COL18A1  HGNC:2195      1
1407               21       45405137      COL18A1  HGNC:2195      1
1408               21       45405137      COL18A1  HGNC:2195      1
1409               21       45405137      COL18A1  HGNC:2195      1
1410               21       45405137      COL18A1  HGNC:2195      1
1411               21       45405137      COL18A1  HGNC:2195      1
1412               21       45405137      COL18A1  HGNC:2195      1
1413               21       45405137      COL18A1  HGNC:2195      1
1414               21       45405137      COL18A1  HGNC:2195      1
1415               21       45405137      COL18A1  HGNC:2195      1
1416               21       45405137      COL18A1  HGNC:2195      1
1417               21       45405137      COL18A1  HGNC:2195      1
1418               21       45405137      COL18A1  HGNC:2195      1
1419               21       45405137      COL18A1  HGNC:2195      1
1420               21       45405137      COL18A1  HGNC:2195      1
1421               21       45405137      COL18A1  HGNC:2195      1
1422               21       45405137      COL18A1  HGNC:2195      1
1423               21       45405137      COL18A1  HGNC:2195      1
1424               21       45405137      COL18A1  HGNC:2195      1
1425               21       45405137      COL18A1  HGNC:2195      1
1426               21       45405137      COL18A1  HGNC:2195      1
1427               21       45405137      COL18A1  HGNC:2195      1
1428               21       45405137      COL18A1  HGNC:2195      1
1429               21       45405137      COL18A1  HGNC:2195      1
1430               21       45405137      COL18A1  HGNC:2195      1
1431               21       45405137      COL18A1  HGNC:2195      1
1432               21       45405137      COL18A1  HGNC:2195      1
1433               21       45405137      COL18A1  HGNC:2195      1
1434               21       45405137      COL18A1  HGNC:2195      1
1435               21       45405137      COL18A1  HGNC:2195      1
1436               21       45405137      COL18A1  HGNC:2195      1
1437               21       45405137      COL18A1  HGNC:2195      1
1438               21       45405137      COL18A1  HGNC:2195      1
1439               21       45405137      COL18A1  HGNC:2195      1
1440               21       45405137      COL18A1  HGNC:2195      1
1441               21       45405137      COL18A1  HGNC:2195      1
1442               21       45405137      COL18A1  HGNC:2195      1
1443               21       45405137      COL18A1  HGNC:2195      1
1444               21       45405137      COL18A1  HGNC:2195      1
1445               21       45405137      COL18A1  HGNC:2195      1
1446               21       45405137      COL18A1  HGNC:2195      1
1447               21       45405137      COL18A1  HGNC:2195      1
1448               21       45405137      COL18A1  HGNC:2195      1
1449               21       45405137      COL18A1  HGNC:2195      1
1450               21       45405137      COL18A1  HGNC:2195      1
1451               21       45405137      COL18A1  HGNC:2195      1
1452               21       45405137      COL18A1  HGNC:2195      1
1453               21       45405137      COL18A1  HGNC:2195      1
1454               21       45405137      COL18A1  HGNC:2195      1
1455               21       45405137      COL18A1  HGNC:2195      1
1456               21       45405137      COL18A1  HGNC:2195      1
1457               21       45405137      COL18A1  HGNC:2195      1
1458               21       45405137      COL18A1  HGNC:2195      1
1459               21       45405137      COL18A1  HGNC:2195      1
1460               21       45405137      COL18A1  HGNC:2195      1
1461               21       45405137      COL18A1  HGNC:2195      1
1462               21       45405137      COL18A1  HGNC:2195      1
1463               21       45405137      COL18A1  HGNC:2195      1
1464               21       45405137      COL18A1  HGNC:2195      1
1465               21       45405137      COL18A1  HGNC:2195      1
1466               21       45405137      COL18A1  HGNC:2195      1
1467               21       45405137      COL18A1  HGNC:2195      1
1468               21       45405137      COL18A1  HGNC:2195      1
1469               21       45405137      COL18A1  HGNC:2195      1
1470               21       45405137      COL18A1  HGNC:2195      1
1471               21       45405137      COL18A1  HGNC:2195      1
1472               21       45405137      COL18A1  HGNC:2195      1
1473               21       45405137      COL18A1  HGNC:2195      1
1474               21       45405137      COL18A1  HGNC:2195      1
1475               21       45405137      COL18A1  HGNC:2195      1
1476               21       45405137      COL18A1  HGNC:2195      1
1477               21       45405137      COL18A1  HGNC:2195      1
1478               21       45405137      COL18A1  HGNC:2195      1
1479               21       45405137      COL18A1  HGNC:2195      1
1480               21       45405137      COL18A1  HGNC:2195      1
1481               21       45405137      COL18A1  HGNC:2195      1
1482               21       45405137      COL18A1  HGNC:2195      1
1483               21       45405137      COL18A1  HGNC:2195      1
1484               21       45405137      COL18A1  HGNC:2195      1
1485               21       45405137      COL18A1  HGNC:2195      1
1486               21       45405137      COL18A1  HGNC:2195      1
1487               21       45405137      COL18A1  HGNC:2195      1
1488               21       45405137      COL18A1  HGNC:2195      1
1489               21       45405137      COL18A1  HGNC:2195      1
1490               21       45405137      COL18A1  HGNC:2195      1
1491               21       45405137      COL18A1  HGNC:2195      1
1492               21       45405137      COL18A1  HGNC:2195      1
1493               21       45405137      COL18A1  HGNC:2195      1
1494               21       45405137      COL18A1  HGNC:2195      1
1495               21       45405137      COL18A1  HGNC:2195      1
1496               21       45405137      COL18A1  HGNC:2195      1
1497               21       45405137      COL18A1  HGNC:2195      1
1498               21       45405137      COL18A1  HGNC:2195      1
1499               21       45405137      COL18A1  HGNC:2195      1
1500               21       45405137      COL18A1  HGNC:2195      1
1501               21       45405137      COL18A1  HGNC:2195      1
1502               21       45405137      COL18A1  HGNC:2195      1
1503               21       45405137      COL18A1  HGNC:2195      1
1504               21       45405137      COL18A1  HGNC:2195      1
1505               21       45405137      COL18A1  HGNC:2195      1
1506               21       45405137      COL18A1  HGNC:2195      1
1507               21       45405137      COL18A1  HGNC:2195      1
1508               21       45405137      COL18A1  HGNC:2195      1
1509               21       45405137      COL18A1  HGNC:2195      1
1510               21       45405137      COL18A1  HGNC:2195      1
1511               21       45405137      COL18A1  HGNC:2195      1
1512               21       45405137      COL18A1  HGNC:2195      1
1513               21       45405137      COL18A1  HGNC:2195      1
1514               21       45405137      COL18A1  HGNC:2195      1
1515               21       45405137      COL18A1  HGNC:2195      1
1516               21       45405137      COL18A1  HGNC:2195      1
1517               21       45405137      COL18A1  HGNC:2195      1
1518               21       45405137      COL18A1  HGNC:2195      1
1519               21       45405137      COL18A1  HGNC:2195      1
1520               21       45405137      COL18A1  HGNC:2195      1
1521               21       45405137      COL18A1  HGNC:2195      1
1522               21       45405137      COL18A1  HGNC:2195      1
1523               21       45405137      COL18A1  HGNC:2195      1
1524               21       45405137      COL18A1  HGNC:2195      1
1525               21       45405137      COL18A1  HGNC:2195      1
1526               21       45405137      COL18A1  HGNC:2195      1
1527               21       45405137      COL18A1  HGNC:2195      1
1528               21       45405137      COL18A1  HGNC:2195      1
1529               21       45405137      COL18A1  HGNC:2195      1
1530               21       45405137      COL18A1  HGNC:2195      1
1531               21       45405137      COL18A1  HGNC:2195      1
1532               21       45478266      MIR6815 HGNC:50225      1
1533               21       45419716  COL18A1-AS1 HGNC:23132     -1
1534               21       45419716  COL18A1-AS1 HGNC:23132     -1
1535               21       45419716  COL18A1-AS1 HGNC:23132     -1
1536               21       45419716  COL18A1-AS1 HGNC:23132     -1
1537               21       45419716  COL18A1-AS1 HGNC:23132     -1
1538               21       45419716  COL18A1-AS1 HGNC:23132     -1
1539               21       45407386  COL18A1-AS2 HGNC:40155     -1
1540               21       45407386  COL18A1-AS2 HGNC:40155     -1
1541               21       45407386  COL18A1-AS2 HGNC:40155     -1
1542               21       45407386  COL18A1-AS2 HGNC:40155     -1
1543               21       45403809                             -1
1544               21       45378201                             -1
1545               21       45378201                             -1
1546               21       45378201                             -1
1547               21       45378201                             -1
1548               21       45376191      MTCO1P3 HGNC:39604     -1
1549               21       45338590    LINC00316 HGNC:19723     -1
1550               21       45338590    LINC00316 HGNC:19723     -1
1551               21       45336707                              1
1552               21       45336707                              1
1553               21       45300245    LINC00315 HGNC:16621     -1
1554               21       45300245    LINC00315 HGNC:16621     -1
1555               21       45300245    LINC00315 HGNC:16621     -1
1556               21       45293285    LINC00205 HGNC:16420      1
1557               21       45293285    LINC00205 HGNC:16420      1
1558               21       45288052                              1
1559               21       45288052                              1
1560               21       45288052                              1
1561               21       45288052                              1
1562               21       45288052                              1
1563               21       45288052                              1
1564               21       45263928       POFUT2 HGNC:14683     -1
1565               21       45263928       POFUT2 HGNC:14683     -1
1566               21       45263928       POFUT2 HGNC:14683     -1
1567               21       45263928       POFUT2 HGNC:14683     -1
1568               21       45263928       POFUT2 HGNC:14683     -1
1569               21       45263928       POFUT2 HGNC:14683     -1
1570               21       45263928       POFUT2 HGNC:14683     -1
1571               21       45263928       POFUT2 HGNC:14683     -1
1572               21       45263928       POFUT2 HGNC:14683     -1
1573               21       45263928       POFUT2 HGNC:14683     -1
1574               21       45263928       POFUT2 HGNC:14683     -1
1575               21       45263928       POFUT2 HGNC:14683     -1
1576               21       45263928       POFUT2 HGNC:14683     -1
1577               21       45263928       POFUT2 HGNC:14683     -1
1578               21       45263928       POFUT2 HGNC:14683     -1
1579               21       45263928       POFUT2 HGNC:14683     -1
1580               21       45263928       POFUT2 HGNC:14683     -1
1581               21       45263928       POFUT2 HGNC:14683     -1
1582               21       45263928       POFUT2 HGNC:14683     -1
1583               21       45263928       POFUT2 HGNC:14683     -1
1584               21       45263928       POFUT2 HGNC:14683     -1
1585               21       45263928       POFUT2 HGNC:14683     -1
1586               21       45263928       POFUT2 HGNC:14683     -1
1587               21       45263928       POFUT2 HGNC:14683     -1
1588               21       45263928       POFUT2 HGNC:14683     -1
1589               21       45263928       POFUT2 HGNC:14683     -1
1590               21       45263928       POFUT2 HGNC:14683     -1
1591               21       45263928       POFUT2 HGNC:14683     -1
1592               21       45263928       POFUT2 HGNC:14683     -1
1593               21       45263928       POFUT2 HGNC:14683     -1
1594               21       45263928       POFUT2 HGNC:14683     -1
1595               21       45263928       POFUT2 HGNC:14683     -1
1596               21       45263928       POFUT2 HGNC:14683     -1
1597               21       45263928       POFUT2 HGNC:14683     -1
1598               21       45263928       POFUT2 HGNC:14683     -1
1599               21       45263928       POFUT2 HGNC:14683     -1
1600               21       45263928       POFUT2 HGNC:14683     -1
1601               21       45263928       POFUT2 HGNC:14683     -1
1602               21       45263928       POFUT2 HGNC:14683     -1
1603               21       45263928       POFUT2 HGNC:14683     -1
1604               21       45263928       POFUT2 HGNC:14683     -1
1605               21       45263928       POFUT2 HGNC:14683     -1
1606               21       45263928       POFUT2 HGNC:14683     -1
1607               21       45263928       POFUT2 HGNC:14683     -1
1608               21       45263928       POFUT2 HGNC:14683     -1
1609               21       45263928       POFUT2 HGNC:14683     -1
1610               21       45263928       POFUT2 HGNC:14683     -1
1611               21       45263928       POFUT2 HGNC:14683     -1
1612               21       45263928       POFUT2 HGNC:14683     -1
1613               21       45263928       POFUT2 HGNC:14683     -1
1614               21       45263928       POFUT2 HGNC:14683     -1
1615               21       45263928       POFUT2 HGNC:14683     -1
1616               21       45263928       POFUT2 HGNC:14683     -1
1617               21       45263928       POFUT2 HGNC:14683     -1
1618               21       45263928       POFUT2 HGNC:14683     -1
1619               21       45263928       POFUT2 HGNC:14683     -1
1620               21       45263928       POFUT2 HGNC:14683     -1
1621               21       45263928       POFUT2 HGNC:14683     -1
1622               21       45263928       POFUT2 HGNC:14683     -1
1623               21       45263928       POFUT2 HGNC:14683     -1
1624               21       45263928       POFUT2 HGNC:14683     -1
1625               21       45263928       POFUT2 HGNC:14683     -1
1626               21       45263928       POFUT2 HGNC:14683     -1
1627               21       45263928       POFUT2 HGNC:14683     -1
1628               21       45263928       POFUT2 HGNC:14683     -1
1629               21       45263928       POFUT2 HGNC:14683     -1
1630               21       45263928       POFUT2 HGNC:14683     -1
1631               21       45263928       POFUT2 HGNC:14683     -1
1632               21       45263928       POFUT2 HGNC:14683     -1
1633               21       45263928       POFUT2 HGNC:14683     -1
1634               21       45263928       POFUT2 HGNC:14683     -1
1635               21       45263928       POFUT2 HGNC:14683     -1
1636               21       45263928       POFUT2 HGNC:14683     -1
1637               21       45263928       POFUT2 HGNC:14683     -1
1638               21       45263928       POFUT2 HGNC:14683     -1
1639               21       45263928       POFUT2 HGNC:14683     -1
1640               21       45263928       POFUT2 HGNC:14683     -1
1641               21       45263928       POFUT2 HGNC:14683     -1
1642               21       45263928       POFUT2 HGNC:14683     -1
1643               21       45263928       POFUT2 HGNC:14683     -1
1644               21       45263928       POFUT2 HGNC:14683     -1
1645               21       45263928       POFUT2 HGNC:14683     -1
1646               21       45263928       POFUT2 HGNC:14683     -1
1647               21       45263928       POFUT2 HGNC:14683     -1
1648               21       45234340    LINC00334 HGNC:16425      1
1649               21       45234340    LINC00334 HGNC:16425      1
1650               21       45234340    LINC00334 HGNC:16425      1
1651               21       45234340    LINC00334 HGNC:16425      1
1652               21       45234340    LINC00334 HGNC:16425      1
1653               21       45234340    LINC00334 HGNC:16425      1
1654               21       45234340    LINC00334 HGNC:16425      1
1655               21       45234340    LINC00334 HGNC:16425      1
1656               21       45234340    LINC00334 HGNC:16425      1
1657               21       45234340    LINC00334 HGNC:16425      1
1658               21       45073853       ADARB1   HGNC:226      1
1659               21       45073853       ADARB1   HGNC:226      1
1660               21       45073853       ADARB1   HGNC:226      1
1661               21       45073853       ADARB1   HGNC:226      1
1662               21       45073853       ADARB1   HGNC:226      1
1663               21       45073853       ADARB1   HGNC:226      1
1664               21       45073853       ADARB1   HGNC:226      1
1665               21       45073853       ADARB1   HGNC:226      1
1666               21       45073853       ADARB1   HGNC:226      1
1667               21       45073853       ADARB1   HGNC:226      1
1668               21       45073853       ADARB1   HGNC:226      1
1669               21       45073853       ADARB1   HGNC:226      1
1670               21       45073853       ADARB1   HGNC:226      1
1671               21       45073853       ADARB1   HGNC:226      1
1672               21       45073853       ADARB1   HGNC:226      1
1673               21       45073853       ADARB1   HGNC:226      1
1674               21       45073853       ADARB1   HGNC:226      1
1675               21       45073853       ADARB1   HGNC:226      1
1676               21       45073853       ADARB1   HGNC:226      1
1677               21       45073853       ADARB1   HGNC:226      1
1678               21       45073853       ADARB1   HGNC:226      1
1679               21       45073853       ADARB1   HGNC:226      1
1680               21       45073853       ADARB1   HGNC:226      1
1681               21       45073853       ADARB1   HGNC:226      1
1682               21       45073853       ADARB1   HGNC:226      1
1683               21       45073853       ADARB1   HGNC:226      1
1684               21       45073853       ADARB1   HGNC:226      1
1685               21       45073853       ADARB1   HGNC:226      1
1686               21       45073853       ADARB1   HGNC:226      1
1687               21       45073853       ADARB1   HGNC:226      1
1688               21       45073853       ADARB1   HGNC:226      1
1689               21       45073853       ADARB1   HGNC:226      1
1690               21       45073853       ADARB1   HGNC:226      1
1691               21       45073853       ADARB1   HGNC:226      1
1692               21       45073853       ADARB1   HGNC:226      1
1693               21       45073853       ADARB1   HGNC:226      1
1694               21       45073853       ADARB1   HGNC:226      1
1695               21       45073853       ADARB1   HGNC:226      1
1696               21       45073853       ADARB1   HGNC:226      1
1697               21       45073853       ADARB1   HGNC:226      1
1698               21       45073853       ADARB1   HGNC:226      1
1699               21       45073853       ADARB1   HGNC:226      1
1700               21       45073853       ADARB1   HGNC:226      1
1701               21       45073853       ADARB1   HGNC:226      1
1702               21       45073853       ADARB1   HGNC:226      1
1703               21       45073853       ADARB1   HGNC:226      1
1704               21       45073853       ADARB1   HGNC:226      1
1705               21       45073853       ADARB1   HGNC:226      1
1706               21       45073853       ADARB1   HGNC:226      1
1707               21       45073853       ADARB1   HGNC:226      1
1708               21       45073853       ADARB1   HGNC:226      1
1709               21       45073853       ADARB1   HGNC:226      1
1710               21       45073853       ADARB1   HGNC:226      1
1711               21       45073853       ADARB1   HGNC:226      1
1712               21       45073853       ADARB1   HGNC:226      1
1713               21       45073853       ADARB1   HGNC:226      1
1714               21       45073853       ADARB1   HGNC:226      1
1715               21       45073853       ADARB1   HGNC:226      1
1716               21       45073853       ADARB1   HGNC:226      1
1717               21       45073853       ADARB1   HGNC:226      1
1718               21       45073853       ADARB1   HGNC:226      1
1719               21       45073853       ADARB1   HGNC:226      1
1720               21       45073853       ADARB1   HGNC:226      1
1721               21       45073853       ADARB1   HGNC:226      1
1722               21       45073853       ADARB1   HGNC:226      1
1723               21       45073853       ADARB1   HGNC:226      1
1724               21       45073853       ADARB1   HGNC:226      1
1725               21       45073853       ADARB1   HGNC:226      1
1726               21       45073853       ADARB1   HGNC:226      1
1727               21       45073853       ADARB1   HGNC:226      1
1728               21       45073853       ADARB1   HGNC:226      1
1729               21       45073853       ADARB1   HGNC:226      1
1730               21       45073853       ADARB1   HGNC:226      1
1731               21       45073853       ADARB1   HGNC:226      1
1732               21       45073853       ADARB1   HGNC:226      1
1733               21       45073853       ADARB1   HGNC:226      1
1734               21       45073853       ADARB1   HGNC:226      1
1735               21       45073853       ADARB1   HGNC:226      1
1736               21       45073853       ADARB1   HGNC:226      1
1737               21       45073853       ADARB1   HGNC:226      1
1738               21       45073853       ADARB1   HGNC:226      1
1739               21       45073853       ADARB1   HGNC:226      1
1740               21       45073853       ADARB1   HGNC:226      1
1741               21       45073853       ADARB1   HGNC:226      1
1742               21       45073853       ADARB1   HGNC:226      1
1743               21       45073853       ADARB1   HGNC:226      1
1744               21       45073853       ADARB1   HGNC:226      1
1745               21       45073853       ADARB1   HGNC:226      1
1746               21       45073853       ADARB1   HGNC:226      1
1747               21       45073853       ADARB1   HGNC:226      1
1748               21       45073853       ADARB1   HGNC:226      1
1749               21       45073853       ADARB1   HGNC:226      1
1750               21       45073853       ADARB1   HGNC:226      1
1751               21       45073853       ADARB1   HGNC:226      1
1752               21       45073853       ADARB1   HGNC:226      1
1753               21       45073853       ADARB1   HGNC:226      1
1754               21       45073853       ADARB1   HGNC:226      1
1755               21       45073853       ADARB1   HGNC:226      1
1756               21       45073853       ADARB1   HGNC:226      1
1757               21       45073853       ADARB1   HGNC:226      1
1758               21       45073853       ADARB1   HGNC:226      1
1759               21       45073853       ADARB1   HGNC:226      1
1760               21       45073853       ADARB1   HGNC:226      1
1761               21       45073853       ADARB1   HGNC:226      1
1762               21       45073853       ADARB1   HGNC:226      1
1763               21       45073853       ADARB1   HGNC:226      1
1764               21       45073853       ADARB1   HGNC:226      1
1765               21       45073853       ADARB1   HGNC:226      1
1766               21       45073853       ADARB1   HGNC:226      1
1767               21       45073853       ADARB1   HGNC:226      1
1768               21       45073853       ADARB1   HGNC:226      1
1769               21       45073853       ADARB1   HGNC:226      1
1770               21       45073853       ADARB1   HGNC:226      1
1771               21       45073853       ADARB1   HGNC:226      1
1772               21       45073853       ADARB1   HGNC:226      1
1773               21       45073853       ADARB1   HGNC:226      1
1774               21       45073853       ADARB1   HGNC:226      1
1775               21       45073853       ADARB1   HGNC:226      1
1776               21       45073853       ADARB1   HGNC:226      1
1777               21       45073853       ADARB1   HGNC:226      1
1778               21       45073853       ADARB1   HGNC:226      1
1779               21       45073853       ADARB1   HGNC:226      1
1780               21       45073853       ADARB1   HGNC:226      1
1781               21       45073853       ADARB1   HGNC:226      1
1782               21       45073853       ADARB1   HGNC:226      1
1783               21       45100487                             -1
1784               21       45070952       SSR4P1 HGNC:23131     -1
1785               21       45070952       SSR4P1 HGNC:23131     -1
1786               21       45070952       SSR4P1 HGNC:23131     -1
1787               21       45070952       SSR4P1 HGNC:23131     -1
1788               21       44999208       PICSAR HGNC:19725     -1
1789               21       44999208       PICSAR HGNC:19725     -1
1790               21       44994362    LINC00165 HGNC:33166     -1
1791               21       44989864    LINC00163 HGNC:33165     -1
1792               21       44989864    LINC00163 HGNC:33165     -1
1793               21       44989864    LINC00163 HGNC:33165     -1
1794               21       44989864    LINC00163 HGNC:33165     -1
1795               21       44978832                              1
1796               21       44940010      FAM207A HGNC:15811      1
1797               21       44940010      FAM207A HGNC:15811      1
1798               21       44940010      FAM207A HGNC:15811      1
1799               21       44940010      FAM207A HGNC:15811      1
1800               21       44940010      FAM207A HGNC:15811      1
1801               21       44940010      FAM207A HGNC:15811      1
1802               21       44940010      FAM207A HGNC:15811      1
1803               21       44940010      FAM207A HGNC:15811      1
1804               21       44940010      FAM207A HGNC:15811      1
1805               21       44940010      FAM207A HGNC:15811      1
1806               21       44940010      FAM207A HGNC:15811      1
1807               21       44940010      FAM207A HGNC:15811      1
1808               21       44940010      FAM207A HGNC:15811      1
1809               21       44940010      FAM207A HGNC:15811      1
1810               21       44940010      FAM207A HGNC:15811      1
1811               21       44940010      FAM207A HGNC:15811      1
1812               21       44940010      FAM207A HGNC:15811      1
1813               21       44940010      FAM207A HGNC:15811      1
1814               21       44940010      FAM207A HGNC:15811      1
1815               21       44940010      FAM207A HGNC:15811      1
1816               21       44940010      FAM207A HGNC:15811      1
1817               21       44940010      FAM207A HGNC:15811      1
1818               21       44940010      FAM207A HGNC:15811      1
1819               21       44940010      FAM207A HGNC:15811      1
1820               21       44932814    LINC01547 HGNC:15707     -1
1821               21       44932814    LINC01547 HGNC:15707     -1
1822               21       44932814    LINC01547 HGNC:15707     -1
1823               21       44932814    LINC01547 HGNC:15707     -1
1824               21       44932814    LINC01547 HGNC:15707     -1
1825               21       44932814    LINC01547 HGNC:15707     -1
1826               21       44932814    LINC01547 HGNC:15707     -1
1827               21       44932814    LINC01547 HGNC:15707     -1
1828               21       44932814    LINC01547 HGNC:15707     -1
1829               21       44932814    LINC01547 HGNC:15707     -1
1830               21       44936303                              1
1831               21       44885953        ITGB2  HGNC:6155     -1
1832               21       44885953        ITGB2  HGNC:6155     -1
1833               21       44885953        ITGB2  HGNC:6155     -1
1834               21       44885953        ITGB2  HGNC:6155     -1
1835               21       44885953        ITGB2  HGNC:6155     -1
1836               21       44885953        ITGB2  HGNC:6155     -1
1837               21       44885953        ITGB2  HGNC:6155     -1
1838               21       44885953        ITGB2  HGNC:6155     -1
1839               21       44885953        ITGB2  HGNC:6155     -1
1840               21       44885953        ITGB2  HGNC:6155     -1
1841               21       44885953        ITGB2  HGNC:6155     -1
1842               21       44885953        ITGB2  HGNC:6155     -1
1843               21       44885953        ITGB2  HGNC:6155     -1
1844               21       44885953        ITGB2  HGNC:6155     -1
1845               21       44885953        ITGB2  HGNC:6155     -1
1846               21       44885953        ITGB2  HGNC:6155     -1
1847               21       44885953        ITGB2  HGNC:6155     -1
1848               21       44885953        ITGB2  HGNC:6155     -1
1849               21       44885953        ITGB2  HGNC:6155     -1
1850               21       44885953        ITGB2  HGNC:6155     -1
1851               21       44885953        ITGB2  HGNC:6155     -1
1852               21       44885953        ITGB2  HGNC:6155     -1
1853               21       44885953        ITGB2  HGNC:6155     -1
1854               21       44885953        ITGB2  HGNC:6155     -1
1855               21       44885953        ITGB2  HGNC:6155     -1
1856               21       44885953        ITGB2  HGNC:6155     -1
1857               21       44885953        ITGB2  HGNC:6155     -1
1858               21       44885953        ITGB2  HGNC:6155     -1
1859               21       44885953        ITGB2  HGNC:6155     -1
1860               21       44885953        ITGB2  HGNC:6155     -1
1861               21       44885953        ITGB2  HGNC:6155     -1
1862               21       44885953        ITGB2  HGNC:6155     -1
1863               21       44885953        ITGB2  HGNC:6155     -1
1864               21       44885953        ITGB2  HGNC:6155     -1
1865               21       44885953        ITGB2  HGNC:6155     -1
1866               21       44885953        ITGB2  HGNC:6155     -1
1867               21       44885953        ITGB2  HGNC:6155     -1
1868               21       44885953        ITGB2  HGNC:6155     -1
1869               21       44885953        ITGB2  HGNC:6155     -1
1870               21       44885953        ITGB2  HGNC:6155     -1
1871               21       44885953        ITGB2  HGNC:6155     -1
1872               21       44885953        ITGB2  HGNC:6155     -1
1873               21       44885953        ITGB2  HGNC:6155     -1
1874               21       44885953        ITGB2  HGNC:6155     -1
1875               21       44885953        ITGB2  HGNC:6155     -1
1876               21       44885953        ITGB2  HGNC:6155     -1
1877               21       44885953        ITGB2  HGNC:6155     -1
1878               21       44885953        ITGB2  HGNC:6155     -1
1879               21       44885953        ITGB2  HGNC:6155     -1
1880               21       44885953        ITGB2  HGNC:6155     -1
1881               21       44885953        ITGB2  HGNC:6155     -1
1882               21       44885953        ITGB2  HGNC:6155     -1
1883               21       44885953        ITGB2  HGNC:6155     -1
1884               21       44885953        ITGB2  HGNC:6155     -1
1885               21       44885953        ITGB2  HGNC:6155     -1
1886               21       44885953        ITGB2  HGNC:6155     -1
1887               21       44885953        ITGB2  HGNC:6155     -1
1888               21       44885953        ITGB2  HGNC:6155     -1
1889               21       44885953        ITGB2  HGNC:6155     -1
1890               21       44885953        ITGB2  HGNC:6155     -1
1891               21       44885953        ITGB2  HGNC:6155     -1
1892               21       44885953        ITGB2  HGNC:6155     -1
1893               21       44885953        ITGB2  HGNC:6155     -1
1894               21       44885953        ITGB2  HGNC:6155     -1
1895               21       44885953        ITGB2  HGNC:6155     -1
1896               21       44885953        ITGB2  HGNC:6155     -1
1897               21       44885953        ITGB2  HGNC:6155     -1
1898               21       44885953        ITGB2  HGNC:6155     -1
1899               21       44885953        ITGB2  HGNC:6155     -1
1900               21       44885953        ITGB2  HGNC:6155     -1
1901               21       44885953        ITGB2  HGNC:6155     -1
1902               21       44885953        ITGB2  HGNC:6155     -1
1903               21       44885953        ITGB2  HGNC:6155     -1
1904               21       44885953        ITGB2  HGNC:6155     -1
1905               21       44885953        ITGB2  HGNC:6155     -1
1906               21       44885953        ITGB2  HGNC:6155     -1
1907               21       44885953        ITGB2  HGNC:6155     -1
1908               21       44885953        ITGB2  HGNC:6155     -1
1909               21       44885953        ITGB2  HGNC:6155     -1
1910               21       44885953        ITGB2  HGNC:6155     -1
1911               21       44885953        ITGB2  HGNC:6155     -1
1912               21       44885953        ITGB2  HGNC:6155     -1
1913               21       44885953        ITGB2  HGNC:6155     -1
1914               21       44885953        ITGB2  HGNC:6155     -1
1915               21       44885953        ITGB2  HGNC:6155     -1
1916               21       44885953        ITGB2  HGNC:6155     -1
1917               21       44885953        ITGB2  HGNC:6155     -1
1918               21       44885953        ITGB2  HGNC:6155     -1
1919               21       44885953        ITGB2  HGNC:6155     -1
1920               21       44885953        ITGB2  HGNC:6155     -1
1921               21       44885953        ITGB2  HGNC:6155     -1
1922               21       44885953        ITGB2  HGNC:6155     -1
1923               21       44885953        ITGB2  HGNC:6155     -1
1924               21       44885953        ITGB2  HGNC:6155     -1
1925               21       44885953        ITGB2  HGNC:6155     -1
1926               21       44885953        ITGB2  HGNC:6155     -1
1927               21       44885953        ITGB2  HGNC:6155     -1
1928               21       44885953        ITGB2  HGNC:6155     -1
1929               21       44885953        ITGB2  HGNC:6155     -1
1930               21       44885953        ITGB2  HGNC:6155     -1
1931               21       44885953        ITGB2  HGNC:6155     -1
1932               21       44885953        ITGB2  HGNC:6155     -1
1933               21       44885953        ITGB2  HGNC:6155     -1
1934               21       44885953        ITGB2  HGNC:6155     -1
1935               21       44885953        ITGB2  HGNC:6155     -1
1936               21       44885953        ITGB2  HGNC:6155     -1
1937               21       44885953        ITGB2  HGNC:6155     -1
1938               21       44885953        ITGB2  HGNC:6155     -1
1939               21       44885953        ITGB2  HGNC:6155     -1
1940               21       44885953        ITGB2  HGNC:6155     -1
1941               21       44885953        ITGB2  HGNC:6155     -1
1942               21       44885953        ITGB2  HGNC:6155     -1
1943               21       44885953        ITGB2  HGNC:6155     -1
1944               21       44885953        ITGB2  HGNC:6155     -1
1945               21       44885953        ITGB2  HGNC:6155     -1
1946               21       44885953        ITGB2  HGNC:6155     -1
1947               21       44885953        ITGB2  HGNC:6155     -1
1948               21       44885953        ITGB2  HGNC:6155     -1
1949               21       44885953        ITGB2  HGNC:6155     -1
1950               21       44885953        ITGB2  HGNC:6155     -1
1951               21       44885953        ITGB2  HGNC:6155     -1
1952               21       44885953        ITGB2  HGNC:6155     -1
1953               21       44885953        ITGB2  HGNC:6155     -1
1954               21       44885953        ITGB2  HGNC:6155     -1
1955               21       44885953        ITGB2  HGNC:6155     -1
1956               21       44885953        ITGB2  HGNC:6155     -1
1957               21       44885953        ITGB2  HGNC:6155     -1
1958               21       44885953        ITGB2  HGNC:6155     -1
1959               21       44885953        ITGB2  HGNC:6155     -1
1960               21       44885953        ITGB2  HGNC:6155     -1
1961               21       44885953        ITGB2  HGNC:6155     -1
1962               21       44885953        ITGB2  HGNC:6155     -1
1963               21       44885953        ITGB2  HGNC:6155     -1
1964               21       44885953        ITGB2  HGNC:6155     -1
1965               21       44885953        ITGB2  HGNC:6155     -1
1966               21       44885953        ITGB2  HGNC:6155     -1
1967               21       44885953        ITGB2  HGNC:6155     -1
1968               21       44885953        ITGB2  HGNC:6155     -1
1969               21       44885953        ITGB2  HGNC:6155     -1
1970               21       44885953        ITGB2  HGNC:6155     -1
1971               21       44885953        ITGB2  HGNC:6155     -1
1972               21       44885953        ITGB2  HGNC:6155     -1
1973               21       44885953        ITGB2  HGNC:6155     -1
1974               21       44885953        ITGB2  HGNC:6155     -1
1975               21       44885953        ITGB2  HGNC:6155     -1
1976               21       44885953        ITGB2  HGNC:6155     -1
1977               21       44885953        ITGB2  HGNC:6155     -1
1978               21       44885953        ITGB2  HGNC:6155     -1
1979               21       44885953        ITGB2  HGNC:6155     -1
1980               21       44885953        ITGB2  HGNC:6155     -1
1981               21       44885953        ITGB2  HGNC:6155     -1
1982               21       44885953        ITGB2  HGNC:6155     -1
1983               21       44885953        ITGB2  HGNC:6155     -1
1984               21       44885953        ITGB2  HGNC:6155     -1
1985               21       44885953        ITGB2  HGNC:6155     -1
1986               21       44885953        ITGB2  HGNC:6155     -1
1987               21       44885953        ITGB2  HGNC:6155     -1
1988               21       44885953        ITGB2  HGNC:6155     -1
1989               21       44885953        ITGB2  HGNC:6155     -1
1990               21       44885953        ITGB2  HGNC:6155     -1
1991               21       44885953        ITGB2  HGNC:6155     -1
1992               21       44885953        ITGB2  HGNC:6155     -1
1993               21       44885953        ITGB2  HGNC:6155     -1
1994               21       44885953        ITGB2  HGNC:6155     -1
1995               21       44885953        ITGB2  HGNC:6155     -1
1996               21       44885953        ITGB2  HGNC:6155     -1
1997               21       44885953        ITGB2  HGNC:6155     -1
1998               21       44885953        ITGB2  HGNC:6155     -1
1999               21       44885953        ITGB2  HGNC:6155     -1
2000               21       44885953        ITGB2  HGNC:6155     -1
2001               21       44885953        ITGB2  HGNC:6155     -1
2002               21       44885953        ITGB2  HGNC:6155     -1
2003               21       44885953        ITGB2  HGNC:6155     -1
2004               21       44885953        ITGB2  HGNC:6155     -1
2005               21       44885953        ITGB2  HGNC:6155     -1
2006               21       44885953        ITGB2  HGNC:6155     -1
2007               21       44885953        ITGB2  HGNC:6155     -1
2008               21       44885953        ITGB2  HGNC:6155     -1
2009               21       44885953        ITGB2  HGNC:6155     -1
2010               21       44885953        ITGB2  HGNC:6155     -1
2011               21       44885953        ITGB2  HGNC:6155     -1
2012               21       44885953        ITGB2  HGNC:6155     -1
2013               21       44885953        ITGB2  HGNC:6155     -1
2014               21       44885953        ITGB2  HGNC:6155     -1
2015               21       44885953        ITGB2  HGNC:6155     -1
2016               21       44885953        ITGB2  HGNC:6155     -1
2017               21       44885953        ITGB2  HGNC:6155     -1
2018               21       44885953        ITGB2  HGNC:6155     -1
2019               21       44885953        ITGB2  HGNC:6155     -1
2020               21       44885953        ITGB2  HGNC:6155     -1
2021               21       44885953        ITGB2  HGNC:6155     -1
2022               21       44885953        ITGB2  HGNC:6155     -1
2023               21       44885953        ITGB2  HGNC:6155     -1
2024               21       44885953        ITGB2  HGNC:6155     -1
2025               21       44885953        ITGB2  HGNC:6155     -1
2026               21       44885953        ITGB2  HGNC:6155     -1
2027               21       44929653                             -1
2028               21       44921051    ITGB2-AS1 HGNC:44304      1
2029               21       44921051    ITGB2-AS1 HGNC:44304      1
2030               21       44921051    ITGB2-AS1 HGNC:44304      1
2031               21       44921051    ITGB2-AS1 HGNC:44304      1
2032               21       44921051    ITGB2-AS1 HGNC:44304      1
2033               21       44921051    ITGB2-AS1 HGNC:44304      1
2034               21       44921051    ITGB2-AS1 HGNC:44304      1
2035               21       44921051    ITGB2-AS1 HGNC:44304      1
2036               21       44921051    ITGB2-AS1 HGNC:44304      1
2037               21       44921051    ITGB2-AS1 HGNC:44304      1
2038               21       44921051    ITGB2-AS1 HGNC:44304      1
2039               21       44921051    ITGB2-AS1 HGNC:44304      1
2040               21       44921051    ITGB2-AS1 HGNC:44304      1
2041               21       44921051    ITGB2-AS1 HGNC:44304      1
2042               21       44921051    ITGB2-AS1 HGNC:44304      1
2043               21       44921051    ITGB2-AS1 HGNC:44304      1
2044               21       44921051    ITGB2-AS1 HGNC:44304      1
2045               21       44921051    ITGB2-AS1 HGNC:44304      1
2046               21       44921051    ITGB2-AS1 HGNC:44304      1
2047               21       44921051    ITGB2-AS1 HGNC:44304      1
2048               21       44921051    ITGB2-AS1 HGNC:44304      1
2049               21       44921051    ITGB2-AS1 HGNC:44304      1
2050               21       44849585      PTTG1IP HGNC:13524     -1
2051               21       44849585      PTTG1IP HGNC:13524     -1
2052               21       44849585      PTTG1IP HGNC:13524     -1
2053               21       44849585      PTTG1IP HGNC:13524     -1
2054               21       44849585      PTTG1IP HGNC:13524     -1
2055               21       44849585      PTTG1IP HGNC:13524     -1
2056               21       44849585      PTTG1IP HGNC:13524     -1
2057               21       44849585      PTTG1IP HGNC:13524     -1
2058               21       44849585      PTTG1IP HGNC:13524     -1
2059               21       44849585      PTTG1IP HGNC:13524     -1
2060               21       44849585      PTTG1IP HGNC:13524     -1
2061               21       44849585      PTTG1IP HGNC:13524     -1
2062               21       44849585      PTTG1IP HGNC:13524     -1
2063               21       44849585      PTTG1IP HGNC:13524     -1
2064               21       44849585      PTTG1IP HGNC:13524     -1
2065               21       44849585      PTTG1IP HGNC:13524     -1
2066               21       44849585      PTTG1IP HGNC:13524     -1
2067               21       44849585      PTTG1IP HGNC:13524     -1
2068               21       44849585      PTTG1IP HGNC:13524     -1
2069               21       44849585      PTTG1IP HGNC:13524     -1
2070               21       44849585      PTTG1IP HGNC:13524     -1
2071               21       44849585      PTTG1IP HGNC:13524     -1
2072               21       44849585      PTTG1IP HGNC:13524     -1
2073               21       44849585      PTTG1IP HGNC:13524     -1
2074               21       44849585      PTTG1IP HGNC:13524     -1
2075               21       44849585      PTTG1IP HGNC:13524     -1
2076               21       44849585      PTTG1IP HGNC:13524     -1
2077               21       44849585      PTTG1IP HGNC:13524     -1
2078               21       44849585      PTTG1IP HGNC:13524     -1
2079               21       44849585      PTTG1IP HGNC:13524     -1
2080               21       44849585      PTTG1IP HGNC:13524     -1
2081               21       44849585      PTTG1IP HGNC:13524     -1
2082               21       44805617        SUMO3 HGNC:11124     -1
2083               21       44805617        SUMO3 HGNC:11124     -1
2084               21       44805617        SUMO3 HGNC:11124     -1
2085               21       44805617        SUMO3 HGNC:11124     -1
2086               21       44805617        SUMO3 HGNC:11124     -1
2087               21       44805617        SUMO3 HGNC:11124     -1
2088               21       44805617        SUMO3 HGNC:11124     -1
2089               21       44805617        SUMO3 HGNC:11124     -1
2090               21       44805617        SUMO3 HGNC:11124     -1
2091               21       44805617        SUMO3 HGNC:11124     -1
2092               21       44805617        SUMO3 HGNC:11124     -1
2093               21       44805617        SUMO3 HGNC:11124     -1
2094               21       44805617        SUMO3 HGNC:11124     -1
2095               21       44805617        SUMO3 HGNC:11124     -1
2096               21       44805617        SUMO3 HGNC:11124     -1
2097               21       44805617        SUMO3 HGNC:11124     -1
2098               21       44805617        SUMO3 HGNC:11124     -1
2099               21       44805617        SUMO3 HGNC:11124     -1
2100               21       44805617        SUMO3 HGNC:11124     -1
2101               21       44805617        SUMO3 HGNC:11124     -1
2102               21       44805617        SUMO3 HGNC:11124     -1
2103               21       44805617        SUMO3 HGNC:11124     -1
2104               21       44802577    LINC01424 HGNC:40558      1
2105               21       44802577    LINC01424 HGNC:40558      1
2106               21       44768580       UBE2G2 HGNC:12483     -1
2107               21       44768580       UBE2G2 HGNC:12483     -1
2108               21       44768580       UBE2G2 HGNC:12483     -1
2109               21       44768580       UBE2G2 HGNC:12483     -1
2110               21       44768580       UBE2G2 HGNC:12483     -1
2111               21       44768580       UBE2G2 HGNC:12483     -1
2112               21       44768580       UBE2G2 HGNC:12483     -1
2113               21       44768580       UBE2G2 HGNC:12483     -1
2114               21       44768580       UBE2G2 HGNC:12483     -1
2115               21       44768580       UBE2G2 HGNC:12483     -1
2116               21       44768580       UBE2G2 HGNC:12483     -1
2117               21       44768580       UBE2G2 HGNC:12483     -1
2118               21       44768580       UBE2G2 HGNC:12483     -1
2119               21       44768580       UBE2G2 HGNC:12483     -1
2120               21       44768580       UBE2G2 HGNC:12483     -1
2121               21       44768580       UBE2G2 HGNC:12483     -1
2122               21       44768580       UBE2G2 HGNC:12483     -1
2123               21       44768580       UBE2G2 HGNC:12483     -1
2124               21       44768580       UBE2G2 HGNC:12483     -1
2125               21       44768580       UBE2G2 HGNC:12483     -1
2126               21       44768580       UBE2G2 HGNC:12483     -1
2127               21       44768580       UBE2G2 HGNC:12483     -1
2128               21       44768580       UBE2G2 HGNC:12483     -1
2129               21       44768580       UBE2G2 HGNC:12483     -1
2130               21       44768580       UBE2G2 HGNC:12483     -1
2131               21       44768580       UBE2G2 HGNC:12483     -1
2132               21       44768580       UBE2G2 HGNC:12483     -1
2133               21       44768580       UBE2G2 HGNC:12483     -1
2134               21       44768580       UBE2G2 HGNC:12483     -1
2135               21       44768580       UBE2G2 HGNC:12483     -1
2136               21       44768580       UBE2G2 HGNC:12483     -1
2137               21       44768580       UBE2G2 HGNC:12483     -1
2138               21       44768580       UBE2G2 HGNC:12483     -1
2139               21       44768580       UBE2G2 HGNC:12483     -1
2140               21       44768580       UBE2G2 HGNC:12483     -1
2141               21       44768580       UBE2G2 HGNC:12483     -1
2142               21       44768580       UBE2G2 HGNC:12483     -1
2143               21       44768580       UBE2G2 HGNC:12483     -1
2144               21       44768580       UBE2G2 HGNC:12483     -1
2145               21       44768580       UBE2G2 HGNC:12483     -1
2146               21       44768580       UBE2G2 HGNC:12483     -1
2147               21       44768580       UBE2G2 HGNC:12483     -1
2148               21       44768580       UBE2G2 HGNC:12483     -1
2149               21       44768580       UBE2G2 HGNC:12483     -1
2150               21       44768580       UBE2G2 HGNC:12483     -1
2151               21       44768580       UBE2G2 HGNC:12483     -1
2152               21       44768580       UBE2G2 HGNC:12483     -1
2153               21       44768580       UBE2G2 HGNC:12483     -1
2154               21       44768580       UBE2G2 HGNC:12483     -1
2155               21       44768580       UBE2G2 HGNC:12483     -1
2156               21       44768580       UBE2G2 HGNC:12483     -1
2157               21       44768580       UBE2G2 HGNC:12483     -1
2158               21       44768580       UBE2G2 HGNC:12483     -1
2159               21       44768580       UBE2G2 HGNC:12483     -1
2160               21       44768580       UBE2G2 HGNC:12483     -1
2161               21       44768580       UBE2G2 HGNC:12483     -1
2162               21       44768580       UBE2G2 HGNC:12483     -1
2163               21       44768580       UBE2G2 HGNC:12483     -1
2164               21       44768580       UBE2G2 HGNC:12483     -1
2165               21       44768580       UBE2G2 HGNC:12483     -1
2166               21       44497892       TSPEAR  HGNC:1268     -1
2167               21       44497892       TSPEAR  HGNC:1268     -1
2168               21       44497892       TSPEAR  HGNC:1268     -1
2169               21       44497892       TSPEAR  HGNC:1268     -1
2170               21       44497892       TSPEAR  HGNC:1268     -1
2171               21       44497892       TSPEAR  HGNC:1268     -1
2172               21       44497892       TSPEAR  HGNC:1268     -1
2173               21       44497892       TSPEAR  HGNC:1268     -1
2174               21       44497892       TSPEAR  HGNC:1268     -1
2175               21       44497892       TSPEAR  HGNC:1268     -1
2176               21       44497892       TSPEAR  HGNC:1268     -1
2177               21       44497892       TSPEAR  HGNC:1268     -1
2178               21       44497892       TSPEAR  HGNC:1268     -1
2179               21       44497892       TSPEAR  HGNC:1268     -1
2180               21       44497892       TSPEAR  HGNC:1268     -1
2181               21       44497892       TSPEAR  HGNC:1268     -1
2182               21       44497892       TSPEAR  HGNC:1268     -1
2183               21       44497892       TSPEAR  HGNC:1268     -1
2184               21       44497892       TSPEAR  HGNC:1268     -1
2185               21       44497892       TSPEAR  HGNC:1268     -1
2186               21       44497892       TSPEAR  HGNC:1268     -1
2187               21       44497892       TSPEAR  HGNC:1268     -1
2188               21       44497892       TSPEAR  HGNC:1268     -1
2189               21       44497892       TSPEAR  HGNC:1268     -1
2190               21       44497892       TSPEAR  HGNC:1268     -1
2191               21       44497892       TSPEAR  HGNC:1268     -1
2192               21       44497892       TSPEAR  HGNC:1268     -1
2193               21       44497892       TSPEAR  HGNC:1268     -1
2194               21       44497892       TSPEAR  HGNC:1268     -1
2195               21       44497892       TSPEAR  HGNC:1268     -1
2196               21       44497892       TSPEAR  HGNC:1268     -1
2197               21       44497892       TSPEAR  HGNC:1268     -1
2198               21       44497892       TSPEAR  HGNC:1268     -1
2199               21       44497892       TSPEAR  HGNC:1268     -1
2200               21       44497892       TSPEAR  HGNC:1268     -1
2201               21       44497892       TSPEAR  HGNC:1268     -1
2202               21       44497892       TSPEAR  HGNC:1268     -1
2203               21       44497892       TSPEAR  HGNC:1268     -1
2204               21       44497892       TSPEAR  HGNC:1268     -1
2205               21       44497892       TSPEAR  HGNC:1268     -1
2206               21       44497892       TSPEAR  HGNC:1268     -1
2207               21       44497892       TSPEAR  HGNC:1268     -1
2208               21       44497892       TSPEAR  HGNC:1268     -1
2209               21       44497892       TSPEAR  HGNC:1268     -1
2210               21       44497892       TSPEAR  HGNC:1268     -1
2211               21       44497892       TSPEAR  HGNC:1268     -1
2212               21       44702221  KRTAP10-13P HGNC:34213      1
2213               21       44697172   KRTAP10-12 HGNC:20533      1
2214               21       44697172   KRTAP10-12 HGNC:20533      1
2215               21       44697172   KRTAP10-12 HGNC:20533      1
2216               21       44697172   KRTAP10-12 HGNC:20533      1
2217               21       44686358                              1
2218               21       44681576    KRTAP12-1 HGNC:20529     -1
2219               21       44675868       IMMTP1  HGNC:6048     -1
2220               21       44666189    KRTAP12-2 HGNC:20530     -1
2221               21       44657932    KRTAP12-3 HGNC:20531      1
2222               21       44654213    KRTAP12-4 HGNC:20532     -1
2223               21       44646414   KRTAP10-11 HGNC:20528      1
2224               21       44637356   KRTAP10-10 HGNC:22972      1
2225               21       44573724    KRTAP10-4 HGNC:20521      1
2226               21       44573724    KRTAP10-4 HGNC:20521      1
2227               21       44573724    KRTAP10-4 HGNC:20521      1
2228               21       44573724    KRTAP10-4 HGNC:20521      1
2229               21       44573724    KRTAP10-4 HGNC:20521      1
2230               21       44573724    KRTAP10-4 HGNC:20521      1
2231               21       44573724    KRTAP10-4 HGNC:20521      1
2232               21       44573724    KRTAP10-4 HGNC:20521      1
2233               21       44573724    KRTAP10-4 HGNC:20521      1
2234               21       44573724    KRTAP10-4 HGNC:20521      1
2235               21       44627123    KRTAP10-9 HGNC:22971      1
2236               21       44627123    KRTAP10-9 HGNC:22971      1
2237               21       44627123    KRTAP10-9 HGNC:22971      1
2238               21       44627123    KRTAP10-9 HGNC:22971      1
2239               21       44627123    KRTAP10-9 HGNC:22971      1
2240               21       44627123    KRTAP10-9 HGNC:22971      1
2241               21       44612079    KRTAP10-8 HGNC:20525      1
2242               21       44600597    KRTAP10-7 HGNC:22970      1
2243               21       44591268    KRTAP10-6 HGNC:20523     -1
2244               21       44579455    KRTAP10-5 HGNC:22969     -1
2245               21       44557790    KRTAP10-3 HGNC:22968     -1
2246               21       44550357    KRTAP10-2 HGNC:22967     -1
2247               21       44550357    KRTAP10-2 HGNC:22967     -1
2248               21       44550357    KRTAP10-2 HGNC:22967     -1
2249               21       44538981    KRTAP10-1 HGNC:22966     -1
2250               21       44517216   TSPEAR-AS2 HGNC:16428      1
2251               21       44517216   TSPEAR-AS2 HGNC:16428      1
2252               21       44517216   TSPEAR-AS2 HGNC:16428      1
2253               21       44517216   TSPEAR-AS2 HGNC:16428      1
2254               21       44517216   TSPEAR-AS2 HGNC:16428      1
2255               21       44517216   TSPEAR-AS2 HGNC:16428      1
2256               21       44517216   TSPEAR-AS2 HGNC:16428      1
2257               21       44506807   TSPEAR-AS1  HGNC:1271      1
2258               21       44506807   TSPEAR-AS1  HGNC:1271      1
2259               21       44506807   TSPEAR-AS1  HGNC:1271      1
2260               21       44506807   TSPEAR-AS1  HGNC:1271      1
2261               21       44506807   TSPEAR-AS1  HGNC:1271      1
2262               21       44506807   TSPEAR-AS1  HGNC:1271      1
2263               21       44506807   TSPEAR-AS1  HGNC:1271      1
2264               21       44506807   TSPEAR-AS1  HGNC:1271      1
2265               21       44506807   TSPEAR-AS1  HGNC:1271      1
2266               21       44494874                              1
2267               21       44485577                              1
2268               21       44485577                              1
2269               21       44477850                              1
2270               21       44473723      MTND5P1 HGNC:39644     -1
2271               21       44472895     MTND6P21 HGNC:39639      1
2272               21       44472895     MTND6P21 HGNC:39639      1
2273               21       44469929     MTCYBP21 HGNC:51977     -1
2274               21       44469929     MTCYBP21 HGNC:51977     -1
2275               21       44469929     MTCYBP21 HGNC:51977     -1
2276               21       44455486        LRRC3 HGNC:14965      1
2277               21       44455486        LRRC3 HGNC:14965      1
2278               21       44450986    LRRC3-AS1 HGNC:43636     -1
2279               21       44450986    LRRC3-AS1 HGNC:43636     -1
2280               21       44450986    LRRC3-AS1 HGNC:43636     -1
2281               21       44450986    LRRC3-AS1 HGNC:43636     -1
2282               21       44350163        TRPM2 HGNC:12339      1
2283               21       44350163        TRPM2 HGNC:12339      1
2284               21       44350163        TRPM2 HGNC:12339      1
2285               21       44350163        TRPM2 HGNC:12339      1
2286               21       44350163        TRPM2 HGNC:12339      1
2287               21       44350163        TRPM2 HGNC:12339      1
2288               21       44350163        TRPM2 HGNC:12339      1
2289               21       44350163        TRPM2 HGNC:12339      1
2290               21       44350163        TRPM2 HGNC:12339      1
2291               21       44350163        TRPM2 HGNC:12339      1
2292               21       44350163        TRPM2 HGNC:12339      1
2293               21       44350163        TRPM2 HGNC:12339      1
2294               21       44350163        TRPM2 HGNC:12339      1
2295               21       44350163        TRPM2 HGNC:12339      1
2296               21       44350163        TRPM2 HGNC:12339      1
2297               21       44350163        TRPM2 HGNC:12339      1
2298               21       44350163        TRPM2 HGNC:12339      1
2299               21       44350163        TRPM2 HGNC:12339      1
2300               21       44350163        TRPM2 HGNC:12339      1
2301               21       44350163        TRPM2 HGNC:12339      1
2302               21       44350163        TRPM2 HGNC:12339      1
2303               21       44350163        TRPM2 HGNC:12339      1
2304               21       44350163        TRPM2 HGNC:12339      1
2305               21       44350163        TRPM2 HGNC:12339      1
2306               21       44350163        TRPM2 HGNC:12339      1
2307               21       44350163        TRPM2 HGNC:12339      1
2308               21       44350163        TRPM2 HGNC:12339      1
2309               21       44350163        TRPM2 HGNC:12339      1
2310               21       44350163        TRPM2 HGNC:12339      1
2311               21       44350163        TRPM2 HGNC:12339      1
2312               21       44350163        TRPM2 HGNC:12339      1
2313               21       44350163        TRPM2 HGNC:12339      1
2314               21       44350163        TRPM2 HGNC:12339      1
2315               21       44350163        TRPM2 HGNC:12339      1
2316               21       44350163        TRPM2 HGNC:12339      1
2317               21       44350163        TRPM2 HGNC:12339      1
2318               21       44350163        TRPM2 HGNC:12339      1
2319               21       44350163        TRPM2 HGNC:12339      1
2320               21       44350163        TRPM2 HGNC:12339      1
2321               21       44350163        TRPM2 HGNC:12339      1
2322               21       44350163        TRPM2 HGNC:12339      1
2323               21       44350163        TRPM2 HGNC:12339      1
2324               21       44350163        TRPM2 HGNC:12339      1
2325               21       44350163        TRPM2 HGNC:12339      1
2326               21       44350163        TRPM2 HGNC:12339      1
2327               21       44350163        TRPM2 HGNC:12339      1
2328               21       44350163        TRPM2 HGNC:12339      1
2329               21       44350163        TRPM2 HGNC:12339      1
2330               21       44350163        TRPM2 HGNC:12339      1
2331               21       44350163        TRPM2 HGNC:12339      1
2332               21       44350163        TRPM2 HGNC:12339      1
2333               21       44350163        TRPM2 HGNC:12339      1
2334               21       44350163        TRPM2 HGNC:12339      1
2335               21       44350163        TRPM2 HGNC:12339      1
2336               21       44350163        TRPM2 HGNC:12339      1
2337               21       44350163        TRPM2 HGNC:12339      1
2338               21       44350163        TRPM2 HGNC:12339      1
2339               21       44350163        TRPM2 HGNC:12339      1
2340               21       44350163        TRPM2 HGNC:12339      1
2341               21       44350163        TRPM2 HGNC:12339      1
2342               21       44350163        TRPM2 HGNC:12339      1
2343               21       44350163        TRPM2 HGNC:12339      1
2344               21       44350163        TRPM2 HGNC:12339      1
2345               21       44350163        TRPM2 HGNC:12339      1
2346               21       44350163        TRPM2 HGNC:12339      1
2347               21       44350163        TRPM2 HGNC:12339      1
2348               21       44350163        TRPM2 HGNC:12339      1
2349               21       44350163        TRPM2 HGNC:12339      1
2350               21       44350163        TRPM2 HGNC:12339      1
2351               21       44350163        TRPM2 HGNC:12339      1
2352               21       44350163        TRPM2 HGNC:12339      1
2353               21       44350163        TRPM2 HGNC:12339      1
2354               21       44350163        TRPM2 HGNC:12339      1
2355               21       44350163        TRPM2 HGNC:12339      1
2356               21       44350163        TRPM2 HGNC:12339      1
2357               21       44350163        TRPM2 HGNC:12339      1
2358               21       44350163        TRPM2 HGNC:12339      1
2359               21       44350163        TRPM2 HGNC:12339      1
2360               21       44350163        TRPM2 HGNC:12339      1
2361               21       44350163        TRPM2 HGNC:12339      1
2362               21       44350163        TRPM2 HGNC:12339      1
2363               21       44350163        TRPM2 HGNC:12339      1
2364               21       44350163        TRPM2 HGNC:12339      1
2365               21       44350163        TRPM2 HGNC:12339      1
2366               21       44350163        TRPM2 HGNC:12339      1
2367               21       44350163        TRPM2 HGNC:12339      1
2368               21       44350163        TRPM2 HGNC:12339      1
2369               21       44350163        TRPM2 HGNC:12339      1
2370               21       44350163        TRPM2 HGNC:12339      1
2371               21       44350163        TRPM2 HGNC:12339      1
2372               21       44350163        TRPM2 HGNC:12339      1
2373               21       44350163        TRPM2 HGNC:12339      1
2374               21       44350163        TRPM2 HGNC:12339      1
2375               21       44350163        TRPM2 HGNC:12339      1
2376               21       44350163        TRPM2 HGNC:12339      1
2377               21       44350163        TRPM2 HGNC:12339      1
2378               21       44350163        TRPM2 HGNC:12339      1
2379               21       44350163        TRPM2 HGNC:12339      1
2380               21       44350163        TRPM2 HGNC:12339      1
2381               21       44350163        TRPM2 HGNC:12339      1
2382               21       44350163        TRPM2 HGNC:12339      1
2383               21       44350163        TRPM2 HGNC:12339      1
2384               21       44350163        TRPM2 HGNC:12339      1
2385               21       44350163        TRPM2 HGNC:12339      1
2386               21       44350163        TRPM2 HGNC:12339      1
2387               21       44350163        TRPM2 HGNC:12339      1
2388               21       44350163        TRPM2 HGNC:12339      1
2389               21       44350163        TRPM2 HGNC:12339      1
2390               21       44350163        TRPM2 HGNC:12339      1
2391               21       44350163        TRPM2 HGNC:12339      1
2392               21       44350163        TRPM2 HGNC:12339      1
2393               21       44350163        TRPM2 HGNC:12339      1
2394               21       44350163        TRPM2 HGNC:12339      1
2395               21       44350163        TRPM2 HGNC:12339      1
2396               21       44350163        TRPM2 HGNC:12339      1
2397               21       44350163        TRPM2 HGNC:12339      1
2398               21       44350163        TRPM2 HGNC:12339      1
2399               21       44350163        TRPM2 HGNC:12339      1
2400               21       44350163        TRPM2 HGNC:12339      1
2401               21       44350163        TRPM2 HGNC:12339      1
2402               21       44350163        TRPM2 HGNC:12339      1
2403               21       44350163        TRPM2 HGNC:12339      1
2404               21       44350163        TRPM2 HGNC:12339      1
2405               21       44350163        TRPM2 HGNC:12339      1
2406               21       44350163        TRPM2 HGNC:12339      1
2407               21       44350163        TRPM2 HGNC:12339      1
2408               21       44350163        TRPM2 HGNC:12339      1
2409               21       44350163        TRPM2 HGNC:12339      1
2410               21       44350163        TRPM2 HGNC:12339      1
2411               21       44350163        TRPM2 HGNC:12339      1
2412               21       44350163        TRPM2 HGNC:12339      1
2413               21       44350163        TRPM2 HGNC:12339      1
2414               21       44350163        TRPM2 HGNC:12339      1
2415               21       44350163        TRPM2 HGNC:12339      1
2416               21       44350163        TRPM2 HGNC:12339      1
2417               21       44350163        TRPM2 HGNC:12339      1
2418               21       44350163        TRPM2 HGNC:12339      1
2419               21       44350163        TRPM2 HGNC:12339      1
2420               21       44350163        TRPM2 HGNC:12339      1
2421               21       44350163        TRPM2 HGNC:12339      1
2422               21       44350163        TRPM2 HGNC:12339      1
2423               21       44350163        TRPM2 HGNC:12339      1
2424               21       44350163        TRPM2 HGNC:12339      1
2425               21       44350163        TRPM2 HGNC:12339      1
2426               21       44350163        TRPM2 HGNC:12339      1
2427               21       44350163        TRPM2 HGNC:12339      1
2428               21       44350163        TRPM2 HGNC:12339      1
2429               21       44350163        TRPM2 HGNC:12339      1
2430               21       44350163        TRPM2 HGNC:12339      1
2431               21       44350163        TRPM2 HGNC:12339      1
2432               21       44350163        TRPM2 HGNC:12339      1
2433               21       44350163        TRPM2 HGNC:12339      1
2434               21       44350163        TRPM2 HGNC:12339      1
2435               21       44350163        TRPM2 HGNC:12339      1
2436               21       44350163        TRPM2 HGNC:12339      1
2437               21       44350163        TRPM2 HGNC:12339      1
2438               21       44350163        TRPM2 HGNC:12339      1
2439               21       44350163        TRPM2 HGNC:12339      1
2440               21       44350163        TRPM2 HGNC:12339      1
2441               21       44350163        TRPM2 HGNC:12339      1
2442               21       44350163        TRPM2 HGNC:12339      1
2443               21       44350163        TRPM2 HGNC:12339      1
2444               21       44350163        TRPM2 HGNC:12339      1
2445               21       44350163        TRPM2 HGNC:12339      1
2446               21       44350163        TRPM2 HGNC:12339      1
2447               21       44350163        TRPM2 HGNC:12339      1
2448               21       44350163        TRPM2 HGNC:12339      1
2449               21       44350163        TRPM2 HGNC:12339      1
2450               21       44350163        TRPM2 HGNC:12339      1
2451               21       44350163        TRPM2 HGNC:12339      1
2452               21       44350163        TRPM2 HGNC:12339      1
2453               21       44350163        TRPM2 HGNC:12339      1
2454               21       44350163        TRPM2 HGNC:12339      1
2455               21       44350163        TRPM2 HGNC:12339      1
2456               21       44350163        TRPM2 HGNC:12339      1
2457               21       44350163        TRPM2 HGNC:12339      1
2458               21       44350163        TRPM2 HGNC:12339      1
2459               21       44350163        TRPM2 HGNC:12339      1
2460               21       44350163        TRPM2 HGNC:12339      1
2461               21       44350163        TRPM2 HGNC:12339      1
2462               21       44439035                              1
2463               21       44437121                              1
2464               21       44414588     TRPM2-AS HGNC:50758     -1
2465               21       44414588     TRPM2-AS HGNC:50758     -1
2466               21       44414588     TRPM2-AS HGNC:50758     -1
2467               21       44414588     TRPM2-AS HGNC:50758     -1
2468               21       44414588     TRPM2-AS HGNC:50758     -1
2469               21       44347767                             -1
2470               21       44339376                              1
2471               21       44339376                              1
2472               21       44328944      C21orf2  HGNC:1260     -1
2473               21       44328944      C21orf2  HGNC:1260     -1
2474               21       44328944      C21orf2  HGNC:1260     -1
2475               21       44328944      C21orf2  HGNC:1260     -1
2476               21       44328944      C21orf2  HGNC:1260     -1
2477               21       44328944      C21orf2  HGNC:1260     -1
2478               21       44328944      C21orf2  HGNC:1260     -1
2479               21       44328944      C21orf2  HGNC:1260     -1
2480               21       44328944      C21orf2  HGNC:1260     -1
2481               21       44328944      C21orf2  HGNC:1260     -1
2482               21       44328944      C21orf2  HGNC:1260     -1
2483               21       44328944      C21orf2  HGNC:1260     -1
2484               21       44328944      C21orf2  HGNC:1260     -1
2485               21       44328944      C21orf2  HGNC:1260     -1
2486               21       44328944      C21orf2  HGNC:1260     -1
2487               21       44328944      C21orf2  HGNC:1260     -1
2488               21       44328944      C21orf2  HGNC:1260     -1
2489               21       44328944      C21orf2  HGNC:1260     -1
2490               21       44328944      C21orf2  HGNC:1260     -1
2491               21       44328944      C21orf2  HGNC:1260     -1
2492               21       44328944      C21orf2  HGNC:1260     -1
2493               21       44328944      C21orf2  HGNC:1260     -1
2494               21       44328944      C21orf2  HGNC:1260     -1
2495               21       44328944      C21orf2  HGNC:1260     -1
2496               21       44328944      C21orf2  HGNC:1260     -1
2497               21       44328944      C21orf2  HGNC:1260     -1
2498               21       44328944      C21orf2  HGNC:1260     -1
2499               21       44328944      C21orf2  HGNC:1260     -1
2500               21       44328944      C21orf2  HGNC:1260     -1
2501               21       44328944      C21orf2  HGNC:1260     -1
2502               21       44328944      C21orf2  HGNC:1260     -1
2503               21       44328944      C21orf2  HGNC:1260     -1
2504               21       44328944      C21orf2  HGNC:1260     -1
2505               21       44328944      C21orf2  HGNC:1260     -1
2506               21       44328944      C21orf2  HGNC:1260     -1
2507               21       44328944      C21orf2  HGNC:1260     -1
2508               21       44328944      C21orf2  HGNC:1260     -1
2509               21       44328944      C21orf2  HGNC:1260     -1
2510               21       44328944      C21orf2  HGNC:1260     -1
2511               21       44328944      C21orf2  HGNC:1260     -1
2512               21       44331234                              1
2513               21       44331234                              1
2514               21       44328944                             -1
2515               21       44328944                             -1
2516               21       44328944                             -1
2517               21       44328944                             -1
2518               21       44328944                             -1
2519               21       44300051         PFKL  HGNC:8876      1
2520               21       44300051         PFKL  HGNC:8876      1
2521               21       44300051         PFKL  HGNC:8876      1
2522               21       44300051         PFKL  HGNC:8876      1
2523               21       44300051         PFKL  HGNC:8876      1
2524               21       44300051         PFKL  HGNC:8876      1
2525               21       44300051         PFKL  HGNC:8876      1
2526               21       44300051         PFKL  HGNC:8876      1
2527               21       44300051         PFKL  HGNC:8876      1
2528               21       44300051         PFKL  HGNC:8876      1
2529               21       44300051         PFKL  HGNC:8876      1
2530               21       44300051         PFKL  HGNC:8876      1
2531               21       44300051         PFKL  HGNC:8876      1
2532               21       44300051         PFKL  HGNC:8876      1
2533               21       44300051         PFKL  HGNC:8876      1
2534               21       44300051         PFKL  HGNC:8876      1
2535               21       44300051         PFKL  HGNC:8876      1
2536               21       44300051         PFKL  HGNC:8876      1
2537               21       44300051         PFKL  HGNC:8876      1
2538               21       44300051         PFKL  HGNC:8876      1
2539               21       44300051         PFKL  HGNC:8876      1
2540               21       44300051         PFKL  HGNC:8876      1
2541               21       44300051         PFKL  HGNC:8876      1
2542               21       44300051         PFKL  HGNC:8876      1
2543               21       44300051         PFKL  HGNC:8876      1
2544               21       44300051         PFKL  HGNC:8876      1
2545               21       44300051         PFKL  HGNC:8876      1
2546               21       44300051         PFKL  HGNC:8876      1
2547               21       44300051         PFKL  HGNC:8876      1
2548               21       44300051         PFKL  HGNC:8876      1
2549               21       44300051         PFKL  HGNC:8876      1
2550               21       44300051         PFKL  HGNC:8876      1
2551               21       44300051         PFKL  HGNC:8876      1
2552               21       44300051         PFKL  HGNC:8876      1
2553               21       44300051         PFKL  HGNC:8876      1
2554               21       44300051         PFKL  HGNC:8876      1
2555               21       44300051         PFKL  HGNC:8876      1
2556               21       44300051         PFKL  HGNC:8876      1
2557               21       44300051         PFKL  HGNC:8876      1
2558               21       44300051         PFKL  HGNC:8876      1
2559               21       44300051         PFKL  HGNC:8876      1
2560               21       44300051         PFKL  HGNC:8876      1
2561               21       44300051         PFKL  HGNC:8876      1
2562               21       44300051         PFKL  HGNC:8876      1
2563               21       44300051         PFKL  HGNC:8876      1
2564               21       44300051         PFKL  HGNC:8876      1
2565               21       44300051         PFKL  HGNC:8876      1
2566               21       44300051         PFKL  HGNC:8876      1
2567               21       44300051         PFKL  HGNC:8876      1
2568               21       44300051         PFKL  HGNC:8876      1
2569               21       44300051         PFKL  HGNC:8876      1
2570               21       44300051         PFKL  HGNC:8876      1
2571               21       44300051         PFKL  HGNC:8876      1
2572               21       44300051         PFKL  HGNC:8876      1
2573               21       44300051         PFKL  HGNC:8876      1
2574               21       44300051         PFKL  HGNC:8876      1
2575               21       44300051         PFKL  HGNC:8876      1
2576               21       44300051         PFKL  HGNC:8876      1
2577               21       44300051         PFKL  HGNC:8876      1
2578               21       44300051         PFKL  HGNC:8876      1
2579               21       44300051         PFKL  HGNC:8876      1
2580               21       44300051         PFKL  HGNC:8876      1
2581               21       44300051         PFKL  HGNC:8876      1
2582               21       44300051         PFKL  HGNC:8876      1
2583               21       44300051         PFKL  HGNC:8876      1
2584               21       44300051         PFKL  HGNC:8876      1
2585               21       44300051         PFKL  HGNC:8876      1
2586               21       44300051         PFKL  HGNC:8876      1
2587               21       44300051         PFKL  HGNC:8876      1
2588               21       44300051         PFKL  HGNC:8876      1
2589               21       44300051         PFKL  HGNC:8876      1
2590               21       44300051         PFKL  HGNC:8876      1
2591               21       44300051         PFKL  HGNC:8876      1
2592               21       44300051         PFKL  HGNC:8876      1
2593               21       44300051         PFKL  HGNC:8876      1
2594               21       44300051         PFKL  HGNC:8876      1
2595               21       44300051         PFKL  HGNC:8876      1
2596               21       44300051         PFKL  HGNC:8876      1
2597               21       44300051         PFKL  HGNC:8876      1
2598               21       44300051         PFKL  HGNC:8876      1
2599               21       44300051         PFKL  HGNC:8876      1
2600               21       44300051         PFKL  HGNC:8876      1
2601               21       44300051         PFKL  HGNC:8876      1
2602               21       44300051         PFKL  HGNC:8876      1
2603               21       44300051         PFKL  HGNC:8876      1
2604               21       44300051         PFKL  HGNC:8876      1
2605               21       44300051         PFKL  HGNC:8876      1
2606               21       44300051         PFKL  HGNC:8876      1
2607               21       44300051         PFKL  HGNC:8876      1
2608               21       44300051         PFKL  HGNC:8876      1
2609               21       44300051         PFKL  HGNC:8876      1
2610               21       44300051         PFKL  HGNC:8876      1
2611               21       44300051         PFKL  HGNC:8876      1
2612               21       44300051         PFKL  HGNC:8876      1
2613               21       44300051         PFKL  HGNC:8876      1
2614               21       44300051         PFKL  HGNC:8876      1
2615               21       44300051         PFKL  HGNC:8876      1
2616               21       44300051         PFKL  HGNC:8876      1
2617               21       44300051         PFKL  HGNC:8876      1
2618               21       44300051         PFKL  HGNC:8876      1
2619               21       44300051         PFKL  HGNC:8876      1
2620               21       44300051         PFKL  HGNC:8876      1
2621               21       44300051         PFKL  HGNC:8876      1
2622               21       44300051         PFKL  HGNC:8876      1
2623               21       44300051         PFKL  HGNC:8876      1
2624               21       44300051         PFKL  HGNC:8876      1
2625               21       44300051         PFKL  HGNC:8876      1
2626               21       44300051         PFKL  HGNC:8876      1
2627               21       44300051         PFKL  HGNC:8876      1
2628               21       44300051         PFKL  HGNC:8876      1
2629               21       44300051         PFKL  HGNC:8876      1
2630               21       44300051         PFKL  HGNC:8876      1
2631               21       44300051         PFKL  HGNC:8876      1
2632               21       44300051         PFKL  HGNC:8876      1
2633               21       44300051         PFKL  HGNC:8876      1
2634               21       44300051         PFKL  HGNC:8876      1
2635               21       44300051         PFKL  HGNC:8876      1
2636               21       44300051         PFKL  HGNC:8876      1
2637               21       44300051         PFKL  HGNC:8876      1
2638               21       44300051         PFKL  HGNC:8876      1
2639               21       44300051         PFKL  HGNC:8876      1
2640               21       44300051         PFKL  HGNC:8876      1
2641               21       44300051         PFKL  HGNC:8876      1
2642               21       44300051         PFKL  HGNC:8876      1
2643               21       44300051         PFKL  HGNC:8876      1
2644               21       44300051         PFKL  HGNC:8876      1
2645               21       44300051         PFKL  HGNC:8876      1
2646               21       44300051         PFKL  HGNC:8876      1
2647               21       44300051         PFKL  HGNC:8876      1
2648               21       44300051         PFKL  HGNC:8876      1
2649               21       44300051         PFKL  HGNC:8876      1
2650               21       44300051         PFKL  HGNC:8876      1
2651               21       44300051         PFKL  HGNC:8876      1
2652               21       44300051         PFKL  HGNC:8876      1
2653               21       44300051         PFKL  HGNC:8876      1
2654               21       44300051         PFKL  HGNC:8876      1
2655               21       44300051         PFKL  HGNC:8876      1
2656               21       44285838         AIRE   HGNC:360      1
2657               21       44285838         AIRE   HGNC:360      1
2658               21       44285838         AIRE   HGNC:360      1
2659               21       44285838         AIRE   HGNC:360      1
2660               21       44285838         AIRE   HGNC:360      1
2661               21       44285838         AIRE   HGNC:360      1
2662               21       44285838         AIRE   HGNC:360      1
2663               21       44285838         AIRE   HGNC:360      1
2664               21       44285838         AIRE   HGNC:360      1
2665               21       44285838         AIRE   HGNC:360      1
2666               21       44285838         AIRE   HGNC:360      1
2667               21       44285838         AIRE   HGNC:360      1
2668               21       44285838         AIRE   HGNC:360      1
2669               21       44285838         AIRE   HGNC:360      1
2670               21       44285838         AIRE   HGNC:360      1
2671               21       44285838         AIRE   HGNC:360      1
2672               21       44285838         AIRE   HGNC:360      1
2673               21       44285838         AIRE   HGNC:360      1
2674               21       44285838         AIRE   HGNC:360      1
2675               21       44285838         AIRE   HGNC:360      1
2676               21       44285838         AIRE   HGNC:360      1
2677               21       44285838         AIRE   HGNC:360      1
2678               21       44285838         AIRE   HGNC:360      1
2679               21       44285838         AIRE   HGNC:360      1
2680               21       44285838         AIRE   HGNC:360      1
2681               21       44285838         AIRE   HGNC:360      1
2682               21       44285838         AIRE   HGNC:360      1
2683               21       44285838         AIRE   HGNC:360      1
2684               21       44285838         AIRE   HGNC:360      1
2685               21       44285838         AIRE   HGNC:360      1
2686               21       44285838         AIRE   HGNC:360      1
2687               21       44285838         AIRE   HGNC:360      1
2688               21       44285838         AIRE   HGNC:360      1
2689               21       44285838         AIRE   HGNC:360      1
2690               21       44285838         AIRE   HGNC:360      1
2691               21       44285838         AIRE   HGNC:360      1
2692               21       44285838         AIRE   HGNC:360      1
2693               21       44285838         AIRE   HGNC:360      1
2694               21       44285838         AIRE   HGNC:360      1
2695               21       44285838         AIRE   HGNC:360      1
2696               21       44285838         AIRE   HGNC:360      1
2697               21       44285838         AIRE   HGNC:360      1
2698               21       44285838         AIRE   HGNC:360      1
2699               21       44285838         AIRE   HGNC:360      1
2700               21       44285838         AIRE   HGNC:360      1
2701               21       44285838         AIRE   HGNC:360      1
2702               21       44285838         AIRE   HGNC:360      1
2703               21       44285838         AIRE   HGNC:360      1
2704               21       44285838         AIRE   HGNC:360      1
2705               21       44285838         AIRE   HGNC:360      1
2706               21       44285838         AIRE   HGNC:360      1
2707               21       44285838         AIRE   HGNC:360      1
2708               21       44285838         AIRE   HGNC:360      1
2709               21       44285838         AIRE   HGNC:360      1
2710               21       44285838         AIRE   HGNC:360      1
2711               21       44246339       DNMT3L  HGNC:2980     -1
2712               21       44246339       DNMT3L  HGNC:2980     -1
2713               21       44246339       DNMT3L  HGNC:2980     -1
2714               21       44246339       DNMT3L  HGNC:2980     -1
2715               21       44246339       DNMT3L  HGNC:2980     -1
2716               21       44246339       DNMT3L  HGNC:2980     -1
2717               21       44246339       DNMT3L  HGNC:2980     -1
2718               21       44246339       DNMT3L  HGNC:2980     -1
2719               21       44246339       DNMT3L  HGNC:2980     -1
2720               21       44246339       DNMT3L  HGNC:2980     -1
2721               21       44246339       DNMT3L  HGNC:2980     -1
2722               21       44246339       DNMT3L  HGNC:2980     -1
2723               21       44246339       DNMT3L  HGNC:2980     -1
2724               21       44246339       DNMT3L  HGNC:2980     -1
2725               21       44246339       DNMT3L  HGNC:2980     -1
2726               21       44246339       DNMT3L  HGNC:2980     -1
2727               21       44246339       DNMT3L  HGNC:2980     -1
2728               21       44246339       DNMT3L  HGNC:2980     -1
2729               21       44246339       DNMT3L  HGNC:2980     -1
2730               21       44246339       DNMT3L  HGNC:2980     -1
2731               21       44246339       DNMT3L  HGNC:2980     -1
2732               21       44246339       DNMT3L  HGNC:2980     -1
2733               21       44246339       DNMT3L  HGNC:2980     -1
2734               21       44246339       DNMT3L  HGNC:2980     -1
2735               21       44246339       DNMT3L  HGNC:2980     -1
2736               21       44246339       DNMT3L  HGNC:2980     -1
2737               21       44246339       DNMT3L  HGNC:2980     -1
2738               21       44246339       DNMT3L  HGNC:2980     -1
2739               21       44246339       DNMT3L  HGNC:2980     -1
2740               21       44246339       DNMT3L  HGNC:2980     -1
2741               21       44246339       DNMT3L  HGNC:2980     -1
2742               21       44246339       DNMT3L  HGNC:2980     -1
2743               21       44246339       DNMT3L  HGNC:2980     -1
2744               21       44246339       DNMT3L  HGNC:2980     -1
2745               21       44246339       DNMT3L  HGNC:2980     -1
2746               21       44246339       DNMT3L  HGNC:2980     -1
2747               21       44246339       DNMT3L  HGNC:2980     -1
2748               21       44250813                              1
2749               21       44250813                              1
2750               21       44244545                              1
2751               21       44241847                              1
2752               21       44222991       ICOSLG HGNC:17087     -1
2753               21       44222991       ICOSLG HGNC:17087     -1
2754               21       44222991       ICOSLG HGNC:17087     -1
2755               21       44222991       ICOSLG HGNC:17087     -1
2756               21       44222991       ICOSLG HGNC:17087     -1
2757               21       44222991       ICOSLG HGNC:17087     -1
2758               21       44222991       ICOSLG HGNC:17087     -1
2759               21       44222991       ICOSLG HGNC:17087     -1
2760               21       44222991       ICOSLG HGNC:17087     -1
2761               21       44222991       ICOSLG HGNC:17087     -1
2762               21       44222991       ICOSLG HGNC:17087     -1
2763               21       44222991       ICOSLG HGNC:17087     -1
2764               21       44222991       ICOSLG HGNC:17087     -1
2765               21       44222991       ICOSLG HGNC:17087     -1
2766               21       44222991       ICOSLG HGNC:17087     -1
2767               21       44222991       ICOSLG HGNC:17087     -1
2768               21       44222991       ICOSLG HGNC:17087     -1
2769               21       44222991       ICOSLG HGNC:17087     -1
2770               21       44222991       ICOSLG HGNC:17087     -1
2771               21       44222991       ICOSLG HGNC:17087     -1
2772               21       44222991       ICOSLG HGNC:17087     -1
2773               21       44222991       ICOSLG HGNC:17087     -1
2774               21       44222991       ICOSLG HGNC:17087     -1
2775               21       44222991       ICOSLG HGNC:17087     -1
2776               21       44222991       ICOSLG HGNC:17087     -1
2777               21       44222991       ICOSLG HGNC:17087     -1
2778               21       44206525                             -1
2779               21       44206525                             -1
2780               21       44201290                              1
2781               21       44201290                              1
2782               21       44175489                              1
2783               21       44175489                              1
2784               21       44158740    LINC01678 HGNC:52466     -1
2785               21       44158740    LINC01678 HGNC:52466     -1
2786               21       44158740    LINC01678 HGNC:52466     -1
2787               21       44158740    LINC01678 HGNC:52466     -1
2788               21       44158740    LINC01678 HGNC:52466     -1
2789               21       44133605     C21orf33  HGNC:1273      1
2790               21       44133605     C21orf33  HGNC:1273      1
2791               21       44133605     C21orf33  HGNC:1273      1
2792               21       44133605     C21orf33  HGNC:1273      1
2793               21       44133605     C21orf33  HGNC:1273      1
2794               21       44133605     C21orf33  HGNC:1273      1
2795               21       44133605     C21orf33  HGNC:1273      1
2796               21       44133605     C21orf33  HGNC:1273      1
2797               21       44133605     C21orf33  HGNC:1273      1
2798               21       44133605     C21orf33  HGNC:1273      1
2799               21       44133605     C21orf33  HGNC:1273      1
2800               21       44133605     C21orf33  HGNC:1273      1
2801               21       44133605     C21orf33  HGNC:1273      1
2802               21       44133605     C21orf33  HGNC:1273      1
2803               21       44133605     C21orf33  HGNC:1273      1
2804               21       44133605     C21orf33  HGNC:1273      1
2805               21       44133605     C21orf33  HGNC:1273      1
2806               21       44133605     C21orf33  HGNC:1273      1
2807               21       44133605     C21orf33  HGNC:1273      1
2808               21       44133605     C21orf33  HGNC:1273      1
2809               21       44133605     C21orf33  HGNC:1273      1
2810               21       44133605     C21orf33  HGNC:1273      1
2811               21       44133605     C21orf33  HGNC:1273      1
2812               21       44133605     C21orf33  HGNC:1273      1
2813               21       44133605     C21orf33  HGNC:1273      1
2814               21       44133605     C21orf33  HGNC:1273      1
2815               21       44133605     C21orf33  HGNC:1273      1
2816               21       44133605     C21orf33  HGNC:1273      1
2817               21       44133605     C21orf33  HGNC:1273      1
2818               21       44133605     C21orf33  HGNC:1273      1
2819               21       44133605     C21orf33  HGNC:1273      1
2820               21       44133605     C21orf33  HGNC:1273      1
2821               21       44133605     C21orf33  HGNC:1273      1
2822               21       44133605     C21orf33  HGNC:1273      1
2823               21       44133605     C21orf33  HGNC:1273      1
2824               21       44133605     C21orf33  HGNC:1273      1
2825               21       44133605     C21orf33  HGNC:1273      1
2826               21       44133605     C21orf33  HGNC:1273      1
2827               21       44133605     C21orf33  HGNC:1273      1
2828               21       44133605     C21orf33  HGNC:1273      1
2829               21       44133605     C21orf33  HGNC:1273      1
2830               21       44133605     C21orf33  HGNC:1273      1
2831               21       44133605     C21orf33  HGNC:1273      1
2832               21       44133605     C21orf33  HGNC:1273      1
2833               21       44133605     C21orf33  HGNC:1273      1
2834               21       44133605     C21orf33  HGNC:1273      1
2835               21       44133605     C21orf33  HGNC:1273      1
2836               21       44133605     C21orf33  HGNC:1273      1
2837               21       44133605     C21orf33  HGNC:1273      1
2838               21       44133605     C21orf33  HGNC:1273      1
2839               21       44133605     C21orf33  HGNC:1273      1
2840               21       44133605     C21orf33  HGNC:1273      1
2841               21       44133605     C21orf33  HGNC:1273      1
2842               21       44133605     C21orf33  HGNC:1273      1
2843               21       44133605     C21orf33  HGNC:1273      1
2844               21       44133605     C21orf33  HGNC:1273      1
2845               21       44133605     C21orf33  HGNC:1273      1
2846               21       44133605     C21orf33  HGNC:1273      1
2847               21       44107290         PWP2  HGNC:9711      1
2848               21       44107290         PWP2  HGNC:9711      1
2849               21       44107290         PWP2  HGNC:9711      1
2850               21       44107290         PWP2  HGNC:9711      1
2851               21       44107290         PWP2  HGNC:9711      1
2852               21       44107290         PWP2  HGNC:9711      1
2853               21       44107290         PWP2  HGNC:9711      1
2854               21       44107290         PWP2  HGNC:9711      1
2855               21       44107290         PWP2  HGNC:9711      1
2856               21       44107290         PWP2  HGNC:9711      1
2857               21       44107290         PWP2  HGNC:9711      1
2858               21       44107290         PWP2  HGNC:9711      1
2859               21       44107290         PWP2  HGNC:9711      1
2860               21       44107290         PWP2  HGNC:9711      1
2861               21       44107290         PWP2  HGNC:9711      1
2862               21       44107290         PWP2  HGNC:9711      1
2863               21       44107290         PWP2  HGNC:9711      1
2864               21       44107290         PWP2  HGNC:9711      1
2865               21       44107290         PWP2  HGNC:9711      1
2866               21       44107290         PWP2  HGNC:9711      1
2867               21       44107290         PWP2  HGNC:9711      1
2868               21       44107290         PWP2  HGNC:9711      1
2869               21       44107290         PWP2  HGNC:9711      1
2870               21       44107290         PWP2  HGNC:9711      1
2871               21       44107290         PWP2  HGNC:9711      1
2872               21       44107290         PWP2  HGNC:9711      1
2873               21       44107290         PWP2  HGNC:9711      1
2874               21       44107290         PWP2  HGNC:9711      1
2875               21       44107290         PWP2  HGNC:9711      1
2876               21       44107290         PWP2  HGNC:9711      1
2877               21       44107290         PWP2  HGNC:9711      1
2878               21       44107290         PWP2  HGNC:9711      1
2879               21       44107290         PWP2  HGNC:9711      1
2880               21       44107290         PWP2  HGNC:9711      1
2881               21       44107290         PWP2  HGNC:9711      1
2882               21       44107290         PWP2  HGNC:9711      1
2883               21       44107290         PWP2  HGNC:9711      1
2884               21       44107290         PWP2  HGNC:9711      1
2885               21       44107290         PWP2  HGNC:9711      1
2886               21       44107290         PWP2  HGNC:9711      1
2887               21       44107290         PWP2  HGNC:9711      1
2888               21       44107290         PWP2  HGNC:9711      1
2889               21       44107290         PWP2  HGNC:9711      1
2890               21       44107290         PWP2  HGNC:9711      1
2891               21       44107290         PWP2  HGNC:9711      1
2892               21       44107290         PWP2  HGNC:9711      1
2893               21       44012319     TRAPPC10 HGNC:11868      1
2894               21       44012319     TRAPPC10 HGNC:11868      1
2895               21       44012319     TRAPPC10 HGNC:11868      1
2896               21       44012319     TRAPPC10 HGNC:11868      1
2897               21       44012319     TRAPPC10 HGNC:11868      1
2898               21       44012319     TRAPPC10 HGNC:11868      1
2899               21       44012319     TRAPPC10 HGNC:11868      1
2900               21       44012319     TRAPPC10 HGNC:11868      1
2901               21       44012319     TRAPPC10 HGNC:11868      1
2902               21       44012319     TRAPPC10 HGNC:11868      1
2903               21       44012319     TRAPPC10 HGNC:11868      1
2904               21       44012319     TRAPPC10 HGNC:11868      1
2905               21       44012319     TRAPPC10 HGNC:11868      1
2906               21       44012319     TRAPPC10 HGNC:11868      1
2907               21       44012319     TRAPPC10 HGNC:11868      1
2908               21       44012319     TRAPPC10 HGNC:11868      1
2909               21       44012319     TRAPPC10 HGNC:11868      1
2910               21       44012319     TRAPPC10 HGNC:11868      1
2911               21       44012319     TRAPPC10 HGNC:11868      1
2912               21       44012319     TRAPPC10 HGNC:11868      1
2913               21       44012319     TRAPPC10 HGNC:11868      1
2914               21       44012319     TRAPPC10 HGNC:11868      1
2915               21       44012319     TRAPPC10 HGNC:11868      1
2916               21       44012319     TRAPPC10 HGNC:11868      1
2917               21       44012319     TRAPPC10 HGNC:11868      1
2918               21       44012319     TRAPPC10 HGNC:11868      1
2919               21       44012319     TRAPPC10 HGNC:11868      1
2920               21       44012319     TRAPPC10 HGNC:11868      1
2921               21       44012319     TRAPPC10 HGNC:11868      1
2922               21       44012319     TRAPPC10 HGNC:11868      1
2923               21       44012319     TRAPPC10 HGNC:11868      1
2924               21       44012319     TRAPPC10 HGNC:11868      1
2925               21       44012319     TRAPPC10 HGNC:11868      1
2926               21       44012319     TRAPPC10 HGNC:11868      1
2927               21       44012319     TRAPPC10 HGNC:11868      1
2928               21       44012319     TRAPPC10 HGNC:11868      1
2929               21       44012319     TRAPPC10 HGNC:11868      1
2930               21       44012319     TRAPPC10 HGNC:11868      1
2931               21       44012319     TRAPPC10 HGNC:11868      1
2932               21       44012319     TRAPPC10 HGNC:11868      1
2933               21       44012319     TRAPPC10 HGNC:11868      1
2934               21       44012319     TRAPPC10 HGNC:11868      1
2935               21       44012319     TRAPPC10 HGNC:11868      1
2936               21       44012319     TRAPPC10 HGNC:11868      1
2937               21       44012319     TRAPPC10 HGNC:11868      1
2938               21       44012319     TRAPPC10 HGNC:11868      1
2939               21       44012319     TRAPPC10 HGNC:11868      1
2940               21       44012319     TRAPPC10 HGNC:11868      1
2941               21       44012319     TRAPPC10 HGNC:11868      1
2942               21       44012319     TRAPPC10 HGNC:11868      1
2943               21       44012319     TRAPPC10 HGNC:11868      1
2944               21       44012319     TRAPPC10 HGNC:11868      1
2945               21       44012319     TRAPPC10 HGNC:11868      1
2946               21       44012319     TRAPPC10 HGNC:11868      1
2947               21       44012319     TRAPPC10 HGNC:11868      1
2948               21       44012319     TRAPPC10 HGNC:11868      1
2949               21       44012319     TRAPPC10 HGNC:11868      1
2950               21       44012319     TRAPPC10 HGNC:11868      1
2951               21       44012319     TRAPPC10 HGNC:11868      1
2952               21       44012319     TRAPPC10 HGNC:11868      1
2953               21       44012319     TRAPPC10 HGNC:11868      1
2954               21       44012319     TRAPPC10 HGNC:11868      1
2955               21       44012319     TRAPPC10 HGNC:11868      1
2956               21       44012319     TRAPPC10 HGNC:11868      1
2957               21       44012319     TRAPPC10 HGNC:11868      1
2958               21       44012319     TRAPPC10 HGNC:11868      1
2959               21       44012319     TRAPPC10 HGNC:11868      1
2960               21       44012319     TRAPPC10 HGNC:11868      1
2961               21       44012319     TRAPPC10 HGNC:11868      1
2962               21       44012319     TRAPPC10 HGNC:11868      1
2963               21       44012319     TRAPPC10 HGNC:11868      1
2964               21       44012319     TRAPPC10 HGNC:11868      1
2965               21       44012319     TRAPPC10 HGNC:11868      1
2966               21       44012319     TRAPPC10 HGNC:11868      1
2967               21       44012319     TRAPPC10 HGNC:11868      1
2968               21       44012319     TRAPPC10 HGNC:11868      1
2969               21       44012319     TRAPPC10 HGNC:11868      1
2970               21       44012319     TRAPPC10 HGNC:11868      1
2971               21       44012319     TRAPPC10 HGNC:11868      1
2972               21       44012319     TRAPPC10 HGNC:11868      1
2973               21       44012319     TRAPPC10 HGNC:11868      1
2974               21       44012319     TRAPPC10 HGNC:11868      1
2975               21       44012319     TRAPPC10 HGNC:11868      1
2976               21       44012319     TRAPPC10 HGNC:11868      1
2977               21       44012319     TRAPPC10 HGNC:11868      1
2978               21       44012319     TRAPPC10 HGNC:11868      1
2979               21       44012319     TRAPPC10 HGNC:11868      1
2980               21       44012319     TRAPPC10 HGNC:11868      1
2981               21       44012319     TRAPPC10 HGNC:11868      1
2982               21       44012319     TRAPPC10 HGNC:11868      1
2983               21       44012319     TRAPPC10 HGNC:11868      1
2984               21       44046347      H2AFZP1  HGNC:4742     -1
2985               21       44046347      H2AFZP1  HGNC:4742     -1
2986               21       43996322   RNU6-1150P HGNC:48113     -1
2987               21       43865186       AGPAT3   HGNC:326      1
2988               21       43865186       AGPAT3   HGNC:326      1
2989               21       43865186       AGPAT3   HGNC:326      1
2990               21       43865186       AGPAT3   HGNC:326      1
2991               21       43865186       AGPAT3   HGNC:326      1
2992               21       43865186       AGPAT3   HGNC:326      1
2993               21       43865186       AGPAT3   HGNC:326      1
2994               21       43865186       AGPAT3   HGNC:326      1
2995               21       43865186       AGPAT3   HGNC:326      1
2996               21       43865186       AGPAT3   HGNC:326      1
2997               21       43865186       AGPAT3   HGNC:326      1
2998               21       43865186       AGPAT3   HGNC:326      1
2999               21       43865186       AGPAT3   HGNC:326      1
3000               21       43865186       AGPAT3   HGNC:326      1
3001               21       43865186       AGPAT3   HGNC:326      1
3002               21       43865186       AGPAT3   HGNC:326      1
3003               21       43865186       AGPAT3   HGNC:326      1
3004               21       43865186       AGPAT3   HGNC:326      1
3005               21       43865186       AGPAT3   HGNC:326      1
3006               21       43865186       AGPAT3   HGNC:326      1
3007               21       43865186       AGPAT3   HGNC:326      1
3008               21       43865186       AGPAT3   HGNC:326      1
3009               21       43865186       AGPAT3   HGNC:326      1
3010               21       43865186       AGPAT3   HGNC:326      1
3011               21       43865186       AGPAT3   HGNC:326      1
3012               21       43865186       AGPAT3   HGNC:326      1
3013               21       43865186       AGPAT3   HGNC:326      1
3014               21       43865186       AGPAT3   HGNC:326      1
3015               21       43865186       AGPAT3   HGNC:326      1
3016               21       43865186       AGPAT3   HGNC:326      1
3017               21       43865186       AGPAT3   HGNC:326      1
3018               21       43865186       AGPAT3   HGNC:326      1
3019               21       43865186       AGPAT3   HGNC:326      1
3020               21       43865186       AGPAT3   HGNC:326      1
3021               21       43865186       AGPAT3   HGNC:326      1
3022               21       43865186       AGPAT3   HGNC:326      1
3023               21       43865186       AGPAT3   HGNC:326      1
3024               21       43865186       AGPAT3   HGNC:326      1
3025               21       43865186       AGPAT3   HGNC:326      1
3026               21       43865186       AGPAT3   HGNC:326      1
3027               21       43865186       AGPAT3   HGNC:326      1
3028               21       43865186       AGPAT3   HGNC:326      1
3029               21       43865186       AGPAT3   HGNC:326      1
3030               21       43865186       AGPAT3   HGNC:326      1
3031               21       43865186       AGPAT3   HGNC:326      1
3032               21       43865186       AGPAT3   HGNC:326      1
3033               21       43865186       AGPAT3   HGNC:326      1
3034               21       43865186       AGPAT3   HGNC:326      1
3035               21       43865186       AGPAT3   HGNC:326      1
3036               21       43865186       AGPAT3   HGNC:326      1
3037               21       43865186       AGPAT3   HGNC:326      1
3038               21       43865186       AGPAT3   HGNC:326      1
3039               21       43865186       AGPAT3   HGNC:326      1
3040               21       43865186       AGPAT3   HGNC:326      1
3041               21       43865186       AGPAT3   HGNC:326      1
3042               21       43865186       AGPAT3   HGNC:326      1
3043               21       43865186       AGPAT3   HGNC:326      1
3044               21       43865186       AGPAT3   HGNC:326      1
3045               21       43865186       AGPAT3   HGNC:326      1
3046               21       43865186       AGPAT3   HGNC:326      1
3047               21       43865186       AGPAT3   HGNC:326      1
3048               21       43865186       AGPAT3   HGNC:326      1
3049               21       43865186       AGPAT3   HGNC:326      1
3050               21       43865186       AGPAT3   HGNC:326      1
3051               21       43865186       AGPAT3   HGNC:326      1
3052               21       43865186       AGPAT3   HGNC:326      1
3053               21       43865186       AGPAT3   HGNC:326      1
3054               21       43865186       AGPAT3   HGNC:326      1
3055               21       43865186       AGPAT3   HGNC:326      1
3056               21       43865186       AGPAT3   HGNC:326      1
3057               21       43865186       AGPAT3   HGNC:326      1
3058               21       43865186       AGPAT3   HGNC:326      1
3059               21       43865186       AGPAT3   HGNC:326      1
3060               21       43865186       AGPAT3   HGNC:326      1
3061               21       43865186       AGPAT3   HGNC:326      1
3062               21       43865186       AGPAT3   HGNC:326      1
3063               21       43865186       AGPAT3   HGNC:326      1
3064               21       43865186       AGPAT3   HGNC:326      1
3065               21       43865186       AGPAT3   HGNC:326      1
3066               21       43865186       AGPAT3   HGNC:326      1
3067               21       43865186       AGPAT3   HGNC:326      1
3068               21       43865186       AGPAT3   HGNC:326      1
3069               21       43865186       AGPAT3   HGNC:326      1
3070               21       43865186       AGPAT3   HGNC:326      1
3071               21       43865186       AGPAT3   HGNC:326      1
3072               21       43865186       AGPAT3   HGNC:326      1
3073               21       43865186       AGPAT3   HGNC:326      1
3074               21       43865186       AGPAT3   HGNC:326      1
3075               21       43865186       AGPAT3   HGNC:326      1
3076               21       43865186       AGPAT3   HGNC:326      1
3077               21       43865186       AGPAT3   HGNC:326      1
3078               21       43865186       AGPAT3   HGNC:326      1
3079               21       43865186       AGPAT3   HGNC:326      1
3080               21       43865186       AGPAT3   HGNC:326      1
3081               21       43865186       AGPAT3   HGNC:326      1
3082               21       43865186       AGPAT3   HGNC:326      1
3083               21       43865186       AGPAT3   HGNC:326      1
3084               21       43865186       AGPAT3   HGNC:326      1
3085               21       43865186       AGPAT3   HGNC:326      1
3086               21       43865186       AGPAT3   HGNC:326      1
3087               21       43865186       AGPAT3   HGNC:326      1
3088               21       43865186       AGPAT3   HGNC:326      1
3089               21       43865186       AGPAT3   HGNC:326      1
3090               21       43865186       AGPAT3   HGNC:326      1
3091               21       43865186       AGPAT3   HGNC:326      1
3092               21       43865186       AGPAT3   HGNC:326      1
3093               21       43865186       AGPAT3   HGNC:326      1
3094               21       43865186       AGPAT3   HGNC:326      1
3095               21       43865186       AGPAT3   HGNC:326      1
3096               21       43865186       AGPAT3   HGNC:326      1
3097               21       43865186       AGPAT3   HGNC:326      1
3098               21       43865186       AGPAT3   HGNC:326      1
3099               21       43865186       AGPAT3   HGNC:326      1
3100               21       43919795    RNU6-859P HGNC:47822     -1
3101               21       43855890       MYL6P1  HGNC:7588     -1
3102               21       43805758        AATBC HGNC:51526     -1
3103               21       43805758        AATBC HGNC:51526     -1
3104               21       43805758        AATBC HGNC:51526     -1
3105               21       43805758        AATBC HGNC:51526     -1
3106               21       43805758        AATBC HGNC:51526     -1
3107               21       43805758        AATBC HGNC:51526     -1
3108               21       43805758        AATBC HGNC:51526     -1
3109               21       43805758        AATBC HGNC:51526     -1
3110               21       43789513         RRP1 HGNC:18785      1
3111               21       43789513         RRP1 HGNC:18785      1
3112               21       43789513         RRP1 HGNC:18785      1
3113               21       43789513         RRP1 HGNC:18785      1
3114               21       43789513         RRP1 HGNC:18785      1
3115               21       43789513         RRP1 HGNC:18785      1
3116               21       43789513         RRP1 HGNC:18785      1
3117               21       43789513         RRP1 HGNC:18785      1
3118               21       43789513         RRP1 HGNC:18785      1
3119               21       43789513         RRP1 HGNC:18785      1
3120               21       43789513         RRP1 HGNC:18785      1
3121               21       43789513         RRP1 HGNC:18785      1
3122               21       43789513         RRP1 HGNC:18785      1
3123               21       43789513         RRP1 HGNC:18785      1
3124               21       43789513         RRP1 HGNC:18785      1
3125               21       43789513         RRP1 HGNC:18785      1
3126               21       43789513         RRP1 HGNC:18785      1
3127               21       43789513         RRP1 HGNC:18785      1
3128               21       43789513         RRP1 HGNC:18785      1
3129               21       43789513         RRP1 HGNC:18785      1
3130               21       43789513         RRP1 HGNC:18785      1
3131               21       43789513         RRP1 HGNC:18785      1
3132               21       43789513         RRP1 HGNC:18785      1
3133               21       43789513         RRP1 HGNC:18785      1
3134               21       43789513         RRP1 HGNC:18785      1
3135               21       43789513         RRP1 HGNC:18785      1
3136               21       43789513         RRP1 HGNC:18785      1
3137               21       43789513         RRP1 HGNC:18785      1
3138               21       43789513         RRP1 HGNC:18785      1
3139               21       43789513         RRP1 HGNC:18785      1
3140               21       43789513         RRP1 HGNC:18785      1
3141               21       43789513         RRP1 HGNC:18785      1
3142               21       43789513         RRP1 HGNC:18785      1
3143               21       43789513         RRP1 HGNC:18785      1
3144               21       43789513         RRP1 HGNC:18785      1
3145               21       43789513         RRP1 HGNC:18785      1
3146               21       43789513         RRP1 HGNC:18785      1
3147               21       43789513         RRP1 HGNC:18785      1
3148               21       43789513         RRP1 HGNC:18785      1
3149               21       43789513         RRP1 HGNC:18785      1
3150               21       43789513         RRP1 HGNC:18785      1
3151               21       43789513         RRP1 HGNC:18785      1
3152               21       43789513         RRP1 HGNC:18785      1
3153               21       43789513         RRP1 HGNC:18785      1
3154               21       43789513         RRP1 HGNC:18785      1
3155               21       43789513         RRP1 HGNC:18785      1
3156               21       43789513         RRP1 HGNC:18785      1
3157               21       43789513         RRP1 HGNC:18785      1
3158               21       43789513         RRP1 HGNC:18785      1
3159               21       43789513         RRP1 HGNC:18785      1
3160               21       43789513         RRP1 HGNC:18785      1
3161               21       43783123     TMEM97P1 HGNC:39640      1
3162               21       43772511         CSTB  HGNC:2482     -1
3163               21       43772511         CSTB  HGNC:2482     -1
3164               21       43772511         CSTB  HGNC:2482     -1
3165               21       43772511         CSTB  HGNC:2482     -1
3166               21       43772511         CSTB  HGNC:2482     -1
3167               21       43772511         CSTB  HGNC:2482     -1
3168               21       43772511         CSTB  HGNC:2482     -1
3169               21       43772511         CSTB  HGNC:2482     -1
3170               21       43719094         PDXK  HGNC:8819      1
3171               21       43719094         PDXK  HGNC:8819      1
3172               21       43719094         PDXK  HGNC:8819      1
3173               21       43719094         PDXK  HGNC:8819      1
3174               21       43719094         PDXK  HGNC:8819      1
3175               21       43719094         PDXK  HGNC:8819      1
3176               21       43719094         PDXK  HGNC:8819      1
3177               21       43719094         PDXK  HGNC:8819      1
3178               21       43719094         PDXK  HGNC:8819      1
3179               21       43719094         PDXK  HGNC:8819      1
3180               21       43719094         PDXK  HGNC:8819      1
3181               21       43719094         PDXK  HGNC:8819      1
3182               21       43719094         PDXK  HGNC:8819      1
3183               21       43719094         PDXK  HGNC:8819      1
3184               21       43719094         PDXK  HGNC:8819      1
3185               21       43719094         PDXK  HGNC:8819      1
3186               21       43719094         PDXK  HGNC:8819      1
3187               21       43719094         PDXK  HGNC:8819      1
3188               21       43719094         PDXK  HGNC:8819      1
3189               21       43719094         PDXK  HGNC:8819      1
3190               21       43719094         PDXK  HGNC:8819      1
3191               21       43719094         PDXK  HGNC:8819      1
3192               21       43719094         PDXK  HGNC:8819      1
3193               21       43719094         PDXK  HGNC:8819      1
3194               21       43719094         PDXK  HGNC:8819      1
3195               21       43719094         PDXK  HGNC:8819      1
3196               21       43719094         PDXK  HGNC:8819      1
3197               21       43719094         PDXK  HGNC:8819      1
3198               21       43719094         PDXK  HGNC:8819      1
3199               21       43719094         PDXK  HGNC:8819      1
3200               21       43719094         PDXK  HGNC:8819      1
3201               21       43719094         PDXK  HGNC:8819      1
3202               21       43719094         PDXK  HGNC:8819      1
3203               21       43719094         PDXK  HGNC:8819      1
3204               21       43719094         PDXK  HGNC:8819      1
3205               21       43719094         PDXK  HGNC:8819      1
3206               21       43719094         PDXK  HGNC:8819      1
3207               21       43719094         PDXK  HGNC:8819      1
3208               21       43719094         PDXK  HGNC:8819      1
3209               21       43719094         PDXK  HGNC:8819      1
3210               21       43719094         PDXK  HGNC:8819      1
3211               21       43719094         PDXK  HGNC:8819      1
3212               21       43719094         PDXK  HGNC:8819      1
3213               21       43719094         PDXK  HGNC:8819      1
3214               21       43719094         PDXK  HGNC:8819      1
3215               21       43719094         PDXK  HGNC:8819      1
3216               21       43719094         PDXK  HGNC:8819      1
3217               21       43719094         PDXK  HGNC:8819      1
3218               21       43719094         PDXK  HGNC:8819      1
3219               21       43719094         PDXK  HGNC:8819      1
3220               21       43719094         PDXK  HGNC:8819      1
3221               21       43719094         PDXK  HGNC:8819      1
3222               21       43719094         PDXK  HGNC:8819      1
3223               21       43719094         PDXK  HGNC:8819      1
3224               21       43719094         PDXK  HGNC:8819      1
3225               21       43719094         PDXK  HGNC:8819      1
3226               21       43719094         PDXK  HGNC:8819      1
3227               21       43719094         PDXK  HGNC:8819      1
3228               21       43719094         PDXK  HGNC:8819      1
3229               21       43719094         PDXK  HGNC:8819      1
3230               21       43719094         PDXK  HGNC:8819      1
3231               21       43719094         PDXK  HGNC:8819      1
3232               21       43719094         PDXK  HGNC:8819      1
3233               21       43719094         PDXK  HGNC:8819      1
3234               21       43719094         PDXK  HGNC:8819      1
3235               21       43719094         PDXK  HGNC:8819      1
3236               21       43719094         PDXK  HGNC:8819      1
3237               21       43719094         PDXK  HGNC:8819      1
3238               21       43719094         PDXK  HGNC:8819      1
3239               21       43719094         PDXK  HGNC:8819      1
3240               21       43719094         PDXK  HGNC:8819      1
3241               21       43719094         PDXK  HGNC:8819      1
3242               21       43719094         PDXK  HGNC:8819      1
3243               21       43719094         PDXK  HGNC:8819      1
3244               21       43719094         PDXK  HGNC:8819      1
3245               21       43719094         PDXK  HGNC:8819      1
3246               21       43719094         PDXK  HGNC:8819      1
3247               21       43719094         PDXK  HGNC:8819      1
3248               21       43719094         PDXK  HGNC:8819      1
3249               21       43719094         PDXK  HGNC:8819      1
3250               21       43719094         PDXK  HGNC:8819      1
3251               21       43719094         PDXK  HGNC:8819      1
3252               21       43719094         PDXK  HGNC:8819      1
3253               21       43719094         PDXK  HGNC:8819      1
3254               21       43719094         PDXK  HGNC:8819      1
3255               21       43719094         PDXK  HGNC:8819      1
3256               21       43719094         PDXK  HGNC:8819      1
3257               21       43719094         PDXK  HGNC:8819      1
3258               21       43719094         PDXK  HGNC:8819      1
3259               21       43719094         PDXK  HGNC:8819      1
3260               21       43719094         PDXK  HGNC:8819      1
3261               21       43719094         PDXK  HGNC:8819      1
3262               21       43719094         PDXK  HGNC:8819      1
3263               21       43719094         PDXK  HGNC:8819      1
3264               21       43719094         PDXK  HGNC:8819      1
3265               21       43719094         PDXK  HGNC:8819      1
3266               21       43719094         PDXK  HGNC:8819      1
3267               21       43719094         PDXK  HGNC:8819      1
3268               21       43719094         PDXK  HGNC:8819      1
3269               21       43719094         PDXK  HGNC:8819      1
3270               21       43719094         PDXK  HGNC:8819      1
3271               21       43719094         PDXK  HGNC:8819      1
3272               21       43719094         PDXK  HGNC:8819      1
3273               21       43719094         PDXK  HGNC:8819      1
3274               21       43719094         PDXK  HGNC:8819      1
3275               21       43719094         PDXK  HGNC:8819      1
3276               21       43719094         PDXK  HGNC:8819      1
3277               21       43719094         PDXK  HGNC:8819      1
3278               21       43719094         PDXK  HGNC:8819      1
3279               21       43719094         PDXK  HGNC:8819      1
3280               21       43719094         PDXK  HGNC:8819      1
3281               21       43719094         PDXK  HGNC:8819      1
3282               21       43719094         PDXK  HGNC:8819      1
3283               21       43719094         PDXK  HGNC:8819      1
3284               21       43719094         PDXK  HGNC:8819      1
3285               21       43719094         PDXK  HGNC:8819      1
3286               21       43719094         PDXK  HGNC:8819      1
3287               21       43719094         PDXK  HGNC:8819      1
3288               21       43719094         PDXK  HGNC:8819      1
3289               21       43719094         PDXK  HGNC:8819      1
3290               21       43719094         PDXK  HGNC:8819      1
3291               21       43719094         PDXK  HGNC:8819      1
3292               21       43748365                             -1
3293               21       43748365                             -1
3294               21       43659548        RRP1B HGNC:23818      1
3295               21       43659548        RRP1B HGNC:23818      1
3296               21       43659548        RRP1B HGNC:23818      1
3297               21       43659548        RRP1B HGNC:23818      1
3298               21       43659548        RRP1B HGNC:23818      1
3299               21       43659548        RRP1B HGNC:23818      1
3300               21       43659548        RRP1B HGNC:23818      1
3301               21       43659548        RRP1B HGNC:23818      1
3302               21       43659548        RRP1B HGNC:23818      1
3303               21       43659548        RRP1B HGNC:23818      1
3304               21       43659548        RRP1B HGNC:23818      1
3305               21       43659548        RRP1B HGNC:23818      1
3306               21       43659548        RRP1B HGNC:23818      1
3307               21       43659548        RRP1B HGNC:23818      1
3308               21       43659548        RRP1B HGNC:23818      1
3309               21       43659548        RRP1B HGNC:23818      1
3310               21       43659548        RRP1B HGNC:23818      1
3311               21       43659548        RRP1B HGNC:23818      1
3312               21       43659548        RRP1B HGNC:23818      1
3313               21       43659548        RRP1B HGNC:23818      1
3314               21       43659548        RRP1B HGNC:23818      1
3315               21       43529192       HSF2BP  HGNC:5226     -1
3316               21       43529192       HSF2BP  HGNC:5226     -1
3317               21       43529192       HSF2BP  HGNC:5226     -1
3318               21       43529192       HSF2BP  HGNC:5226     -1
3319               21       43529192       HSF2BP  HGNC:5226     -1
3320               21       43529192       HSF2BP  HGNC:5226     -1
3321               21       43529192       HSF2BP  HGNC:5226     -1
3322               21       43529192       HSF2BP  HGNC:5226     -1
3323               21       43529192       HSF2BP  HGNC:5226     -1
3324               21       43529192       HSF2BP  HGNC:5226     -1
3325               21       43529192       HSF2BP  HGNC:5226     -1
3326               21       43529192       HSF2BP  HGNC:5226     -1
3327               21       43529192       HSF2BP  HGNC:5226     -1
3328               21       43529192       HSF2BP  HGNC:5226     -1
3329               21       43529192       HSF2BP  HGNC:5226     -1
3330               21       43529192       HSF2BP  HGNC:5226     -1
3331               21       43609887      MIR6070 HGNC:49950     -1
3332               21       43565189        H2BFS  HGNC:4762      1
3333               21       43551229      RPL31P1 HGNC:10335      1
3334               21       43462094    LINC00313 HGNC:16416     -1
3335               21       43462094    LINC00313 HGNC:16416     -1
3336               21       43462094    LINC00313 HGNC:16416     -1
3337               21       43462094    LINC00313 HGNC:16416     -1
3338               21       43462094    LINC00313 HGNC:16416     -1
3339               21       43462094    LINC00313 HGNC:16416     -1
3340               21       43462094    LINC00313 HGNC:16416     -1
3341               21       43462094    LINC00313 HGNC:16416     -1
3342               21       43462094    LINC00313 HGNC:16416     -1
3343               21       43462094    LINC00313 HGNC:16416     -1
3344               21       43462094    LINC00313 HGNC:16416     -1
3345               21       43462094    LINC00313 HGNC:16416     -1
3346               21       43462094    LINC00313 HGNC:16416     -1
3347               21       43462094    LINC00313 HGNC:16416     -1
3348               21       43462094    LINC00313 HGNC:16416     -1
3349               21       43462094    LINC00313 HGNC:16416     -1
3350               21       43462094    LINC00313 HGNC:16416     -1
3351               21       43462094    LINC00313 HGNC:16416     -1
3352               21       43462094    LINC00313 HGNC:16416     -1
3353               21       43462094    LINC00313 HGNC:16416     -1
3354               21       43462094    LINC00313 HGNC:16416     -1
3355               21       43462094    LINC00313 HGNC:16416     -1
3356               21       43465309                              1
3357               21       43465309                              1
3358               21       43446601    LINC00319 HGNC:19730      1
3359               21       43446601    LINC00319 HGNC:19730      1
3360               21       43446601    LINC00319 HGNC:19730      1
3361               21       43446601    LINC00319 HGNC:19730      1
3362               21       43446601    LINC00319 HGNC:19730      1
3363               21       43446601    LINC00319 HGNC:19730      1
3364               21       43446601    LINC00319 HGNC:19730      1
3365               21       43414515         SIK1 HGNC:11142     -1
3366               21       43414515         SIK1 HGNC:11142     -1
3367               21       43414515         SIK1 HGNC:11142     -1
3368               21       43414515         SIK1 HGNC:11142     -1
3369               21       43414515         SIK1 HGNC:11142     -1
3370               21       43414515         SIK1 HGNC:11142     -1
3371               21       43414515         SIK1 HGNC:11142     -1
3372               21       43414515         SIK1 HGNC:11142     -1
3373               21       43414515         SIK1 HGNC:11142     -1
3374               21       43414515         SIK1 HGNC:11142     -1
3375               21       43414515         SIK1 HGNC:11142     -1
3376               21       43414515         SIK1 HGNC:11142     -1
3377               21       43414515         SIK1 HGNC:11142     -1
3378               21       43414515         SIK1 HGNC:11142     -1
3379               21       43414515         SIK1 HGNC:11142     -1
3380               21       43414515         SIK1 HGNC:11142     -1
3381               21       43414515         SIK1 HGNC:11142     -1
3382               21       43363332                              1
3383               21       43363332                              1
3384               21       43358147    LINC01679 HGNC:52469     -1
3385               21       43358147    LINC01679 HGNC:52469     -1
3386               21       43322417    LINC00322 HGNC:33698     -1
3387               21       43322417    LINC00322 HGNC:33698     -1
3388               21       43322417    LINC00322 HGNC:33698     -1
3389               21       43169008        CRYAA  HGNC:2388      1
3390               21       43169008        CRYAA  HGNC:2388      1
3391               21       43169008        CRYAA  HGNC:2388      1
3392               21       43169008        CRYAA  HGNC:2388      1
3393               21       43169008        CRYAA  HGNC:2388      1
3394               21       43169008        CRYAA  HGNC:2388      1
3395               21       43169008        CRYAA  HGNC:2388      1
3396               21       43169008        CRYAA  HGNC:2388      1
3397               21       43169008        CRYAA  HGNC:2388      1
3398               21       43169008        CRYAA  HGNC:2388      1
3399               21       43169008        CRYAA  HGNC:2388      1
3400               21       43169008        CRYAA  HGNC:2388      1
3401               21       43169008        CRYAA  HGNC:2388      1
3402               21       43169008        CRYAA  HGNC:2388      1
3403               21       43169008        CRYAA  HGNC:2388      1
3404               21       43159066                             -1
3405               21       43159066                             -1
3406               21       43159066                             -1
3407               21       43140523        FRGCA HGNC:51844     -1
3408               21       43140523        FRGCA HGNC:51844     -1
3409               21       43115334     MRPL51P2 HGNC:29724     -1
3410               21       43092956        U2AF1 HGNC:12453     -1
3411               21       43092956        U2AF1 HGNC:12453     -1
3412               21       43092956        U2AF1 HGNC:12453     -1
3413               21       43092956        U2AF1 HGNC:12453     -1
3414               21       43092956        U2AF1 HGNC:12453     -1
3415               21       43092956        U2AF1 HGNC:12453     -1
3416               21       43092956        U2AF1 HGNC:12453     -1
3417               21       43092956        U2AF1 HGNC:12453     -1
3418               21       43092956        U2AF1 HGNC:12453     -1
3419               21       43092956        U2AF1 HGNC:12453     -1
3420               21       43092956        U2AF1 HGNC:12453     -1
3421               21       43092956        U2AF1 HGNC:12453     -1
3422               21       43092956        U2AF1 HGNC:12453     -1
3423               21       43092956        U2AF1 HGNC:12453     -1
3424               21       43092956        U2AF1 HGNC:12453     -1
3425               21       43092956        U2AF1 HGNC:12453     -1
3426               21       43092956        U2AF1 HGNC:12453     -1
3427               21       43092956        U2AF1 HGNC:12453     -1
3428               21       43092956        U2AF1 HGNC:12453     -1
3429               21       43092956        U2AF1 HGNC:12453     -1
3430               21       43092956        U2AF1 HGNC:12453     -1
3431               21       43092956        U2AF1 HGNC:12453     -1
3432               21       43092956        U2AF1 HGNC:12453     -1
3433               21       43092956        U2AF1 HGNC:12453     -1
3434               21       43092956        U2AF1 HGNC:12453     -1
3435               21       43092956        U2AF1 HGNC:12453     -1
3436               21       43092956        U2AF1 HGNC:12453     -1
3437               21       43092956        U2AF1 HGNC:12453     -1
3438               21       43092956        U2AF1 HGNC:12453     -1
3439               21       43092956        U2AF1 HGNC:12453     -1
3440               21       43092956        U2AF1 HGNC:12453     -1
3441               21       43092956        U2AF1 HGNC:12453     -1
3442               21       43092956        U2AF1 HGNC:12453     -1
3443               21       43092956        U2AF1 HGNC:12453     -1
3444               21       43092956        U2AF1 HGNC:12453     -1
3445               21       43092956        U2AF1 HGNC:12453     -1
3446               21       43092956        U2AF1 HGNC:12453     -1
3447               21       43092956        U2AF1 HGNC:12453     -1
3448               21       43092956        U2AF1 HGNC:12453     -1
3449               21       43092956        U2AF1 HGNC:12453     -1
3450               21       43092956        U2AF1 HGNC:12453     -1
3451               21       43092956        U2AF1 HGNC:12453     -1
3452               21       43092956        U2AF1 HGNC:12453     -1
3453               21       43092956        U2AF1 HGNC:12453     -1
3454               21       43092956        U2AF1 HGNC:12453     -1
3455               21       43092956        U2AF1 HGNC:12453     -1
3456               21       43092956        U2AF1 HGNC:12453     -1
3457               21       43092956        U2AF1 HGNC:12453     -1
3458               21       43092956        U2AF1 HGNC:12453     -1
3459               21       43092956        U2AF1 HGNC:12453     -1
3460               21       43092956        U2AF1 HGNC:12453     -1
3461               21       43092956        U2AF1 HGNC:12453     -1
3462               21       43092956        U2AF1 HGNC:12453     -1
3463               21       43092956        U2AF1 HGNC:12453     -1
3464               21       43092956        U2AF1 HGNC:12453     -1
3465               21       43092956        U2AF1 HGNC:12453     -1
3466               21       43092956        U2AF1 HGNC:12453     -1
3467               21       43092956        U2AF1 HGNC:12453     -1
3468               21       43092956        U2AF1 HGNC:12453     -1
3469               21       43092956        U2AF1 HGNC:12453     -1
3470               21       43092956        U2AF1 HGNC:12453     -1
3471               21       43092956        U2AF1 HGNC:12453     -1
3472               21       43092956        U2AF1 HGNC:12453     -1
3473               21       43092956        U2AF1 HGNC:12453     -1
3474               21       43092956        U2AF1 HGNC:12453     -1
3475               21       43092956        U2AF1 HGNC:12453     -1
3476               21       43092956        U2AF1 HGNC:12453     -1
3477               21       43092956        U2AF1 HGNC:12453     -1
3478               21       43092956        U2AF1 HGNC:12453     -1
3479               21       43092956        U2AF1 HGNC:12453     -1
3480               21       43053191          CBS  HGNC:1550     -1
3481               21       43053191          CBS  HGNC:1550     -1
3482               21       43053191          CBS  HGNC:1550     -1
3483               21       43053191          CBS  HGNC:1550     -1
3484               21       43053191          CBS  HGNC:1550     -1
3485               21       43053191          CBS  HGNC:1550     -1
3486               21       43053191          CBS  HGNC:1550     -1
3487               21       43053191          CBS  HGNC:1550     -1
3488               21       43053191          CBS  HGNC:1550     -1
3489               21       43053191          CBS  HGNC:1550     -1
3490               21       43053191          CBS  HGNC:1550     -1
3491               21       43053191          CBS  HGNC:1550     -1
3492               21       43053191          CBS  HGNC:1550     -1
3493               21       43053191          CBS  HGNC:1550     -1
3494               21       43053191          CBS  HGNC:1550     -1
3495               21       43053191          CBS  HGNC:1550     -1
3496               21       43053191          CBS  HGNC:1550     -1
3497               21       43053191          CBS  HGNC:1550     -1
3498               21       43053191          CBS  HGNC:1550     -1
3499               21       43053191          CBS  HGNC:1550     -1
3500               21       43053191          CBS  HGNC:1550     -1
3501               21       43053191          CBS  HGNC:1550     -1
3502               21       43053191          CBS  HGNC:1550     -1
3503               21       43053191          CBS  HGNC:1550     -1
3504               21       43053191          CBS  HGNC:1550     -1
3505               21       43053191          CBS  HGNC:1550     -1
3506               21       43053191          CBS  HGNC:1550     -1
3507               21       43053191          CBS  HGNC:1550     -1
3508               21       43053191          CBS  HGNC:1550     -1
3509               21       43053191          CBS  HGNC:1550     -1
3510               21       43053191          CBS  HGNC:1550     -1
3511               21       43053191          CBS  HGNC:1550     -1
3512               21       43053191          CBS  HGNC:1550     -1
3513               21       43053191          CBS  HGNC:1550     -1
3514               21       43053191          CBS  HGNC:1550     -1
3515               21       43053191          CBS  HGNC:1550     -1
3516               21       43053191          CBS  HGNC:1550     -1
3517               21       43053191          CBS  HGNC:1550     -1
3518               21       43053191          CBS  HGNC:1550     -1
3519               21       43053191          CBS  HGNC:1550     -1
3520               21       43053191          CBS  HGNC:1550     -1
3521               21       43053191          CBS  HGNC:1550     -1
3522               21       43053191          CBS  HGNC:1550     -1
3523               21       43053191          CBS  HGNC:1550     -1
3524               21       43053191          CBS  HGNC:1550     -1
3525               21       43053191          CBS  HGNC:1550     -1
3526               21       43053191          CBS  HGNC:1550     -1
3527               21       43053191          CBS  HGNC:1550     -1
3528               21       43053191          CBS  HGNC:1550     -1
3529               21       43053191          CBS  HGNC:1550     -1
3530               21       43053191          CBS  HGNC:1550     -1
3531               21       43053191          CBS  HGNC:1550     -1
3532               21       43053191          CBS  HGNC:1550     -1
3533               21       43053191          CBS  HGNC:1550     -1
3534               21       43053191          CBS  HGNC:1550     -1
3535               21       43053191          CBS  HGNC:1550     -1
3536               21       43053191          CBS  HGNC:1550     -1
3537               21       43053191          CBS  HGNC:1550     -1
3538               21       43053191          CBS  HGNC:1550     -1
3539               21       43053191          CBS  HGNC:1550     -1
3540               21       43053191          CBS  HGNC:1550     -1
3541               21       43053191          CBS  HGNC:1550     -1
3542               21       43053191          CBS  HGNC:1550     -1
3543               21       43053191          CBS  HGNC:1550     -1
3544               21       43053191          CBS  HGNC:1550     -1
3545               21       43053191          CBS  HGNC:1550     -1
3546               21       43053191          CBS  HGNC:1550     -1
3547               21       43053191          CBS  HGNC:1550     -1
3548               21       43053191          CBS  HGNC:1550     -1
3549               21       43053191          CBS  HGNC:1550     -1
3550               21       43053191          CBS  HGNC:1550     -1
3551               21       43053191          CBS  HGNC:1550     -1
3552               21       43053191          CBS  HGNC:1550     -1
3553               21       43053191          CBS  HGNC:1550     -1
3554               21       43053191          CBS  HGNC:1550     -1
3555               21       43053191          CBS  HGNC:1550     -1
3556               21       43053191          CBS  HGNC:1550     -1
3557               21       43053191          CBS  HGNC:1550     -1
3558               21       43053191          CBS  HGNC:1550     -1
3559               21       43053191          CBS  HGNC:1550     -1
3560               21       43053191          CBS  HGNC:1550     -1
3561               21       43053191          CBS  HGNC:1550     -1
3562               21       43053191          CBS  HGNC:1550     -1
3563               21       43053191          CBS  HGNC:1550     -1
3564               21       43053191          CBS  HGNC:1550     -1
3565               21       43053191          CBS  HGNC:1550     -1
3566               21       43053191          CBS  HGNC:1550     -1
3567               21       43053191          CBS  HGNC:1550     -1
3568               21       43053191          CBS  HGNC:1550     -1
3569               21       43053191          CBS  HGNC:1550     -1
3570               21       43053191          CBS  HGNC:1550     -1
3571               21       43053191          CBS  HGNC:1550     -1
3572               21       43053191          CBS  HGNC:1550     -1
3573               21       43053191          CBS  HGNC:1550     -1
3574               21       43053191          CBS  HGNC:1550     -1
3575               21       43053191          CBS  HGNC:1550     -1
3576               21       43053191          CBS  HGNC:1550     -1
3577               21       43053191          CBS  HGNC:1550     -1
3578               21       43053191          CBS  HGNC:1550     -1
3579               21       43053191          CBS  HGNC:1550     -1
3580               21       43053191          CBS  HGNC:1550     -1
3581               21       43053191          CBS  HGNC:1550     -1
3582               21       43053191          CBS  HGNC:1550     -1
3583               21       43053191          CBS  HGNC:1550     -1
3584               21       43053191          CBS  HGNC:1550     -1
3585               21       43053191          CBS  HGNC:1550     -1
3586               21       43053191          CBS  HGNC:1550     -1
3587               21       43053191          CBS  HGNC:1550     -1
3588               21       43053191          CBS  HGNC:1550     -1
3589               21       43053191          CBS  HGNC:1550     -1
3590               21       43053191          CBS  HGNC:1550     -1
3591               21       43053191          CBS  HGNC:1550     -1
3592               21       43053191          CBS  HGNC:1550     -1
3593               21       43053191          CBS  HGNC:1550     -1
3594               21       43053191          CBS  HGNC:1550     -1
3595               21       43053191          CBS  HGNC:1550     -1
3596               21       43053191          CBS  HGNC:1550     -1
3597               21       43053191          CBS  HGNC:1550     -1
3598               21       43053191          CBS  HGNC:1550     -1
3599               21       43053191          CBS  HGNC:1550     -1
3600               21       43053191          CBS  HGNC:1550     -1
3601               21       43053191          CBS  HGNC:1550     -1
3602               21       43053191          CBS  HGNC:1550     -1
3603               21       43053191          CBS  HGNC:1550     -1
3604               21       43053191          CBS  HGNC:1550     -1
3605               21       43053191          CBS  HGNC:1550     -1
3606               21       43053191          CBS  HGNC:1550     -1
3607               21       43053191          CBS  HGNC:1550     -1
3608               21       43053191          CBS  HGNC:1550     -1
3609               21       43053191          CBS  HGNC:1550     -1
3610               21       43053191          CBS  HGNC:1550     -1
3611               21       43053191          CBS  HGNC:1550     -1
3612               21       43053191          CBS  HGNC:1550     -1
3613               21       43053191          CBS  HGNC:1550     -1
3614               21       43053191          CBS  HGNC:1550     -1
3615               21       43053191          CBS  HGNC:1550     -1
3616               21       43053191          CBS  HGNC:1550     -1
3617               21       43053191          CBS  HGNC:1550     -1
3618               21       43053191          CBS  HGNC:1550     -1
3619               21       42974510       PKNOX1  HGNC:9022      1
3620               21       42974510       PKNOX1  HGNC:9022      1
3621               21       42974510       PKNOX1  HGNC:9022      1
3622               21       42974510       PKNOX1  HGNC:9022      1
3623               21       42974510       PKNOX1  HGNC:9022      1
3624               21       42974510       PKNOX1  HGNC:9022      1
3625               21       42974510       PKNOX1  HGNC:9022      1
3626               21       42974510       PKNOX1  HGNC:9022      1
3627               21       42974510       PKNOX1  HGNC:9022      1
3628               21       42974510       PKNOX1  HGNC:9022      1
3629               21       42974510       PKNOX1  HGNC:9022      1
3630               21       42974510       PKNOX1  HGNC:9022      1
3631               21       42974510       PKNOX1  HGNC:9022      1
3632               21       42974510       PKNOX1  HGNC:9022      1
3633               21       42974510       PKNOX1  HGNC:9022      1
3634               21       42974510       PKNOX1  HGNC:9022      1
3635               21       42974510       PKNOX1  HGNC:9022      1
3636               21       42974510       PKNOX1  HGNC:9022      1
3637               21       42974510       PKNOX1  HGNC:9022      1
3638               21       42974510       PKNOX1  HGNC:9022      1
3639               21       42974510       PKNOX1  HGNC:9022      1
3640               21       42974510       PKNOX1  HGNC:9022      1
3641               21       42974510       PKNOX1  HGNC:9022      1
3642               21       42974510       PKNOX1  HGNC:9022      1
3643               21       42974510       PKNOX1  HGNC:9022      1
3644               21       42974510       PKNOX1  HGNC:9022      1
3645               21       42974510       PKNOX1  HGNC:9022      1
3646               21       42974510       PKNOX1  HGNC:9022      1
3647               21       42974510       PKNOX1  HGNC:9022      1
3648               21       42974510       PKNOX1  HGNC:9022      1
3649               21       42974510       PKNOX1  HGNC:9022      1
3650               21       42974510       PKNOX1  HGNC:9022      1
3651               21       42974510       PKNOX1  HGNC:9022      1
3652               21       42974510       PKNOX1  HGNC:9022      1
3653               21       42974510       PKNOX1  HGNC:9022      1
3654               21       42974510       PKNOX1  HGNC:9022      1
3655               21       42974510       PKNOX1  HGNC:9022      1
3656               21       42974510       PKNOX1  HGNC:9022      1
3657               21       42974510       PKNOX1  HGNC:9022      1
3658               21       42974510       PKNOX1  HGNC:9022      1
3659               21       42974510       PKNOX1  HGNC:9022      1
3660               21       42974510       PKNOX1  HGNC:9022      1
3661               21       42974510       PKNOX1  HGNC:9022      1
3662               21       42974510       PKNOX1  HGNC:9022      1
3663               21       42974510       PKNOX1  HGNC:9022      1
3664               21       42974510       PKNOX1  HGNC:9022      1
3665               21       42974510       PKNOX1  HGNC:9022      1
3666               21       42974510       PKNOX1  HGNC:9022      1
3667               21       42974510       PKNOX1  HGNC:9022      1
3668               21       42974510       PKNOX1  HGNC:9022      1
3669               21       42974510       PKNOX1  HGNC:9022      1
3670               21       42974510       PKNOX1  HGNC:9022      1
3671               21       42974510       PKNOX1  HGNC:9022      1
3672               21       42974510       PKNOX1  HGNC:9022      1
3673               21       42974510       PKNOX1  HGNC:9022      1
3674               21       42974510       PKNOX1  HGNC:9022      1
3675               21       42974510       PKNOX1  HGNC:9022      1
3676               21       42974510       PKNOX1  HGNC:9022      1
3677               21       42974510       PKNOX1  HGNC:9022      1
3678               21       42964639                             -1
3679               21       42964639                             -1
3680               21       42950928     MIR5692B HGNC:43535     -1
3681               21       42916803     ERVH48-1 HGNC:17216     -1
3682               21       42916803     ERVH48-1 HGNC:17216     -1
3683               21       42916803     ERVH48-1 HGNC:17216     -1
3684               21       42879644       NDUFV3  HGNC:7719      1
3685               21       42879644       NDUFV3  HGNC:7719      1
3686               21       42879644       NDUFV3  HGNC:7719      1
3687               21       42879644       NDUFV3  HGNC:7719      1
3688               21       42879644       NDUFV3  HGNC:7719      1
3689               21       42879644       NDUFV3  HGNC:7719      1
3690               21       42879644       NDUFV3  HGNC:7719      1
3691               21       42879644       NDUFV3  HGNC:7719      1
3692               21       42879644       NDUFV3  HGNC:7719      1
3693               21       42879644       NDUFV3  HGNC:7719      1
3694               21       42879644       NDUFV3  HGNC:7719      1
3695               21       42879644       NDUFV3  HGNC:7719      1
3696               21       42879644       NDUFV3  HGNC:7719      1
3697               21       42879644       NDUFV3  HGNC:7719      1
3698               21       42879644       NDUFV3  HGNC:7719      1
3699               21       42843094         WDR4 HGNC:12756     -1
3700               21       42843094         WDR4 HGNC:12756     -1
3701               21       42843094         WDR4 HGNC:12756     -1
3702               21       42843094         WDR4 HGNC:12756     -1
3703               21       42843094         WDR4 HGNC:12756     -1
3704               21       42843094         WDR4 HGNC:12756     -1
3705               21       42843094         WDR4 HGNC:12756     -1
3706               21       42843094         WDR4 HGNC:12756     -1
3707               21       42843094         WDR4 HGNC:12756     -1
3708               21       42843094         WDR4 HGNC:12756     -1
3709               21       42843094         WDR4 HGNC:12756     -1
3710               21       42843094         WDR4 HGNC:12756     -1
3711               21       42843094         WDR4 HGNC:12756     -1
3712               21       42843094         WDR4 HGNC:12756     -1
3713               21       42843094         WDR4 HGNC:12756     -1
3714               21       42843094         WDR4 HGNC:12756     -1
3715               21       42843094         WDR4 HGNC:12756     -1
3716               21       42843094         WDR4 HGNC:12756     -1
3717               21       42843094         WDR4 HGNC:12756     -1
3718               21       42843094         WDR4 HGNC:12756     -1
3719               21       42843094         WDR4 HGNC:12756     -1
3720               21       42843094         WDR4 HGNC:12756     -1
3721               21       42843094         WDR4 HGNC:12756     -1
3722               21       42843094         WDR4 HGNC:12756     -1
3723               21       42843094         WDR4 HGNC:12756     -1
3724               21       42843094         WDR4 HGNC:12756     -1
3725               21       42843094         WDR4 HGNC:12756     -1
3726               21       42843094         WDR4 HGNC:12756     -1
3727               21       42843094         WDR4 HGNC:12756     -1
3728               21       42843094         WDR4 HGNC:12756     -1
3729               21       42843094         WDR4 HGNC:12756     -1
3730               21       42843094         WDR4 HGNC:12756     -1
3731               21       42843094         WDR4 HGNC:12756     -1
3732               21       42843094         WDR4 HGNC:12756     -1
3733               21       42843094         WDR4 HGNC:12756     -1
3734               21       42843094         WDR4 HGNC:12756     -1
3735               21       42843094         WDR4 HGNC:12756     -1
3736               21       42843094         WDR4 HGNC:12756     -1
3737               21       42843094         WDR4 HGNC:12756     -1
3738               21       42843094         WDR4 HGNC:12756     -1
3739               21       42843094         WDR4 HGNC:12756     -1
3740               21       42843094         WDR4 HGNC:12756     -1
3741               21       42843094         WDR4 HGNC:12756     -1
3742               21       42843094         WDR4 HGNC:12756     -1
3743               21       42843094         WDR4 HGNC:12756     -1
3744               21       42843094         WDR4 HGNC:12756     -1
3745               21       42843094         WDR4 HGNC:12756     -1
3746               21       42843094         WDR4 HGNC:12756     -1
3747               21       42843094         WDR4 HGNC:12756     -1
3748               21       42843094         WDR4 HGNC:12756     -1
3749               21       42843094         WDR4 HGNC:12756     -1
3750               21       42843094         WDR4 HGNC:12756     -1
3751               21       42843094         WDR4 HGNC:12756     -1
3752               21       42843094         WDR4 HGNC:12756     -1
3753               21       42843094         WDR4 HGNC:12756     -1
3754               21       42843094         WDR4 HGNC:12756     -1
3755               21       42843094         WDR4 HGNC:12756     -1
3756               21       42843094         WDR4 HGNC:12756     -1
3757               21       42843094         WDR4 HGNC:12756     -1
3758               21       42843094         WDR4 HGNC:12756     -1
3759               21       42843094         WDR4 HGNC:12756     -1
3760               21       42843094         WDR4 HGNC:12756     -1
3761               21       42843094         WDR4 HGNC:12756     -1
3762               21       42843094         WDR4 HGNC:12756     -1
3763               21       42843094         WDR4 HGNC:12756     -1
3764               21       42831040                             -1
3765               21       42831040                             -1
3766               21       42831040                             -1
3767               21       42781074                             -1
3768               21       42781074                             -1
3769               21       42777819    LINC01668 HGNC:52456     -1
3770               21       42777819    LINC01668 HGNC:52456     -1
3771               21       42777819    LINC01668 HGNC:52456     -1
3772               21       42653636        PDE9A  HGNC:8795      1
3773               21       42653636        PDE9A  HGNC:8795      1
3774               21       42653636        PDE9A  HGNC:8795      1
3775               21       42653636        PDE9A  HGNC:8795      1
3776               21       42653636        PDE9A  HGNC:8795      1
3777               21       42653636        PDE9A  HGNC:8795      1
3778               21       42653636        PDE9A  HGNC:8795      1
3779               21       42653636        PDE9A  HGNC:8795      1
3780               21       42653636        PDE9A  HGNC:8795      1
3781               21       42653636        PDE9A  HGNC:8795      1
3782               21       42653636        PDE9A  HGNC:8795      1
3783               21       42653636        PDE9A  HGNC:8795      1
3784               21       42653636        PDE9A  HGNC:8795      1
3785               21       42653636        PDE9A  HGNC:8795      1
3786               21       42653636        PDE9A  HGNC:8795      1
3787               21       42653636        PDE9A  HGNC:8795      1
3788               21       42653636        PDE9A  HGNC:8795      1
3789               21       42653636        PDE9A  HGNC:8795      1
3790               21       42653636        PDE9A  HGNC:8795      1
3791               21       42653636        PDE9A  HGNC:8795      1
3792               21       42653636        PDE9A  HGNC:8795      1
3793               21       42653636        PDE9A  HGNC:8795      1
3794               21       42653636        PDE9A  HGNC:8795      1
3795               21       42653636        PDE9A  HGNC:8795      1
3796               21       42653636        PDE9A  HGNC:8795      1
3797               21       42653636        PDE9A  HGNC:8795      1
3798               21       42653636        PDE9A  HGNC:8795      1
3799               21       42653636        PDE9A  HGNC:8795      1
3800               21       42653636        PDE9A  HGNC:8795      1
3801               21       42653636        PDE9A  HGNC:8795      1
3802               21       42653636        PDE9A  HGNC:8795      1
3803               21       42653636        PDE9A  HGNC:8795      1
3804               21       42653636        PDE9A  HGNC:8795      1
3805               21       42653636        PDE9A  HGNC:8795      1
3806               21       42653636        PDE9A  HGNC:8795      1
3807               21       42653636        PDE9A  HGNC:8795      1
3808               21       42653636        PDE9A  HGNC:8795      1
3809               21       42653636        PDE9A  HGNC:8795      1
3810               21       42653636        PDE9A  HGNC:8795      1
3811               21       42653636        PDE9A  HGNC:8795      1
3812               21       42653636        PDE9A  HGNC:8795      1
3813               21       42653636        PDE9A  HGNC:8795      1
3814               21       42653636        PDE9A  HGNC:8795      1
3815               21       42653636        PDE9A  HGNC:8795      1
3816               21       42653636        PDE9A  HGNC:8795      1
3817               21       42653636        PDE9A  HGNC:8795      1
3818               21       42653636        PDE9A  HGNC:8795      1
3819               21       42653636        PDE9A  HGNC:8795      1
3820               21       42653636        PDE9A  HGNC:8795      1
3821               21       42653636        PDE9A  HGNC:8795      1
3822               21       42653636        PDE9A  HGNC:8795      1
3823               21       42653636        PDE9A  HGNC:8795      1
3824               21       42653636        PDE9A  HGNC:8795      1
3825               21       42653636        PDE9A  HGNC:8795      1
3826               21       42653636        PDE9A  HGNC:8795      1
3827               21       42653636        PDE9A  HGNC:8795      1
3828               21       42653636        PDE9A  HGNC:8795      1
3829               21       42653636        PDE9A  HGNC:8795      1
3830               21       42653636        PDE9A  HGNC:8795      1
3831               21       42653636        PDE9A  HGNC:8795      1
3832               21       42653636        PDE9A  HGNC:8795      1
3833               21       42653636        PDE9A  HGNC:8795      1
3834               21       42653636        PDE9A  HGNC:8795      1
3835               21       42653636        PDE9A  HGNC:8795      1
3836               21       42653636        PDE9A  HGNC:8795      1
3837               21       42653636        PDE9A  HGNC:8795      1
3838               21       42653636        PDE9A  HGNC:8795      1
3839               21       42653636        PDE9A  HGNC:8795      1
3840               21       42653636        PDE9A  HGNC:8795      1
3841               21       42653636        PDE9A  HGNC:8795      1
3842               21       42653636        PDE9A  HGNC:8795      1
3843               21       42653636        PDE9A  HGNC:8795      1
3844               21       42653636        PDE9A  HGNC:8795      1
3845               21       42653636        PDE9A  HGNC:8795      1
3846               21       42653636        PDE9A  HGNC:8795      1
3847               21       42653636        PDE9A  HGNC:8795      1
3848               21       42653636        PDE9A  HGNC:8795      1
3849               21       42653636        PDE9A  HGNC:8795      1
3850               21       42653636        PDE9A  HGNC:8795      1
3851               21       42653636        PDE9A  HGNC:8795      1
3852               21       42653636        PDE9A  HGNC:8795      1
3853               21       42653636        PDE9A  HGNC:8795      1
3854               21       42653636        PDE9A  HGNC:8795      1
3855               21       42653636        PDE9A  HGNC:8795      1
3856               21       42653636        PDE9A  HGNC:8795      1
3857               21       42653636        PDE9A  HGNC:8795      1
3858               21       42653636        PDE9A  HGNC:8795      1
3859               21       42653636        PDE9A  HGNC:8795      1
3860               21       42653636        PDE9A  HGNC:8795      1
3861               21       42653636        PDE9A  HGNC:8795      1
3862               21       42653636        PDE9A  HGNC:8795      1
3863               21       42653636        PDE9A  HGNC:8795      1
3864               21       42653636        PDE9A  HGNC:8795      1
3865               21       42653636        PDE9A  HGNC:8795      1
3866               21       42653636        PDE9A  HGNC:8795      1
3867               21       42653636        PDE9A  HGNC:8795      1
3868               21       42653636        PDE9A  HGNC:8795      1
3869               21       42653636        PDE9A  HGNC:8795      1
3870               21       42653636        PDE9A  HGNC:8795      1
3871               21       42653636        PDE9A  HGNC:8795      1
3872               21       42653636        PDE9A  HGNC:8795      1
3873               21       42653636        PDE9A  HGNC:8795      1
3874               21       42653636        PDE9A  HGNC:8795      1
3875               21       42653636        PDE9A  HGNC:8795      1
3876               21       42653636        PDE9A  HGNC:8795      1
3877               21       42653636        PDE9A  HGNC:8795      1
3878               21       42653636        PDE9A  HGNC:8795      1
3879               21       42653636        PDE9A  HGNC:8795      1
3880               21       42653636        PDE9A  HGNC:8795      1
3881               21       42653636        PDE9A  HGNC:8795      1
3882               21       42653636        PDE9A  HGNC:8795      1
3883               21       42653636        PDE9A  HGNC:8795      1
3884               21       42653636        PDE9A  HGNC:8795      1
3885               21       42653636        PDE9A  HGNC:8795      1
3886               21       42653636        PDE9A  HGNC:8795      1
3887               21       42653636        PDE9A  HGNC:8795      1
3888               21       42653636        PDE9A  HGNC:8795      1
3889               21       42653636        PDE9A  HGNC:8795      1
3890               21       42653636        PDE9A  HGNC:8795      1
3891               21       42653636        PDE9A  HGNC:8795      1
3892               21       42653636        PDE9A  HGNC:8795      1
3893               21       42653636        PDE9A  HGNC:8795      1
3894               21       42653636        PDE9A  HGNC:8795      1
3895               21       42653636        PDE9A  HGNC:8795      1
3896               21       42653636        PDE9A  HGNC:8795      1
3897               21       42653636        PDE9A  HGNC:8795      1
3898               21       42653636        PDE9A  HGNC:8795      1
3899               21       42653636        PDE9A  HGNC:8795      1
3900               21       42653636        PDE9A  HGNC:8795      1
3901               21       42653636        PDE9A  HGNC:8795      1
3902               21       42653636        PDE9A  HGNC:8795      1
3903               21       42653636        PDE9A  HGNC:8795      1
3904               21       42653636        PDE9A  HGNC:8795      1
3905               21       42653636        PDE9A  HGNC:8795      1
3906               21       42653636        PDE9A  HGNC:8795      1
3907               21       42653636        PDE9A  HGNC:8795      1
3908               21       42653636        PDE9A  HGNC:8795      1
3909               21       42653636        PDE9A  HGNC:8795      1
3910               21       42653636        PDE9A  HGNC:8795      1
3911               21       42653636        PDE9A  HGNC:8795      1
3912               21       42653636        PDE9A  HGNC:8795      1
3913               21       42653636        PDE9A  HGNC:8795      1
3914               21       42653636        PDE9A  HGNC:8795      1
3915               21       42653636        PDE9A  HGNC:8795      1
3916               21       42653636        PDE9A  HGNC:8795      1
3917               21       42653636        PDE9A  HGNC:8795      1
3918               21       42653636        PDE9A  HGNC:8795      1
3919               21       42653636        PDE9A  HGNC:8795      1
3920               21       42653636        PDE9A  HGNC:8795      1
3921               21       42653636        PDE9A  HGNC:8795      1
3922               21       42653636        PDE9A  HGNC:8795      1
3923               21       42653636        PDE9A  HGNC:8795      1
3924               21       42653636        PDE9A  HGNC:8795      1
3925               21       42653636        PDE9A  HGNC:8795      1
3926               21       42653636        PDE9A  HGNC:8795      1
3927               21       42653636        PDE9A  HGNC:8795      1
3928               21       42653636        PDE9A  HGNC:8795      1
3929               21       42653636        PDE9A  HGNC:8795      1
3930               21       42653636        PDE9A  HGNC:8795      1
3931               21       42653636        PDE9A  HGNC:8795      1
3932               21       42653636        PDE9A  HGNC:8795      1
3933               21       42653636        PDE9A  HGNC:8795      1
3934               21       42653636        PDE9A  HGNC:8795      1
3935               21       42653636        PDE9A  HGNC:8795      1
3936               21       42653636        PDE9A  HGNC:8795      1
3937               21       42653636        PDE9A  HGNC:8795      1
3938               21       42653636        PDE9A  HGNC:8795      1
3939               21       42653636        PDE9A  HGNC:8795      1
3940               21       42653636        PDE9A  HGNC:8795      1
3941               21       42653636        PDE9A  HGNC:8795      1
3942               21       42653636        PDE9A  HGNC:8795      1
3943               21       42653636        PDE9A  HGNC:8795      1
3944               21       42653636        PDE9A  HGNC:8795      1
3945               21       42653636        PDE9A  HGNC:8795      1
3946               21       42653636        PDE9A  HGNC:8795      1
3947               21       42653636        PDE9A  HGNC:8795      1
3948               21       42653636        PDE9A  HGNC:8795      1
3949               21       42653636        PDE9A  HGNC:8795      1
3950               21       42653636        PDE9A  HGNC:8795      1
3951               21       42653636        PDE9A  HGNC:8795      1
3952               21       42653636        PDE9A  HGNC:8795      1
3953               21       42653636        PDE9A  HGNC:8795      1
3954               21       42653636        PDE9A  HGNC:8795      1
3955               21       42653636        PDE9A  HGNC:8795      1
3956               21       42653636        PDE9A  HGNC:8795      1
3957               21       42653636        PDE9A  HGNC:8795      1
3958               21       42653636        PDE9A  HGNC:8795      1
3959               21       42653636        PDE9A  HGNC:8795      1
3960               21       42653636        PDE9A  HGNC:8795      1
3961               21       42653636        PDE9A  HGNC:8795      1
3962               21       42653636        PDE9A  HGNC:8795      1
3963               21       42653636        PDE9A  HGNC:8795      1
3964               21       42653636        PDE9A  HGNC:8795      1
3965               21       42653636        PDE9A  HGNC:8795      1
3966               21       42653636        PDE9A  HGNC:8795      1
3967               21       42653636        PDE9A  HGNC:8795      1
3968               21       42653636        PDE9A  HGNC:8795      1
3969               21       42653636        PDE9A  HGNC:8795      1
3970               21       42653636        PDE9A  HGNC:8795      1
3971               21       42653636        PDE9A  HGNC:8795      1
3972               21       42653636        PDE9A  HGNC:8795      1
3973               21       42653636        PDE9A  HGNC:8795      1
3974               21       42653636        PDE9A  HGNC:8795      1
3975               21       42653636        PDE9A  HGNC:8795      1
3976               21       42653636        PDE9A  HGNC:8795      1
3977               21       42653636        PDE9A  HGNC:8795      1
3978               21       42653636        PDE9A  HGNC:8795      1
3979               21       42653636        PDE9A  HGNC:8795      1
3980               21       42653636        PDE9A  HGNC:8795      1
3981               21       42653636        PDE9A  HGNC:8795      1
3982               21       42653636        PDE9A  HGNC:8795      1
3983               21       42653636        PDE9A  HGNC:8795      1
3984               21       42653636        PDE9A  HGNC:8795      1
3985               21       42653636        PDE9A  HGNC:8795      1
3986               21       42653636        PDE9A  HGNC:8795      1
3987               21       42653636        PDE9A  HGNC:8795      1
3988               21       42653636        PDE9A  HGNC:8795      1
3989               21       42653636        PDE9A  HGNC:8795      1
3990               21       42653636        PDE9A  HGNC:8795      1
3991               21       42653636        PDE9A  HGNC:8795      1
3992               21       42653636        PDE9A  HGNC:8795      1
3993               21       42653636        PDE9A  HGNC:8795      1
3994               21       42653636        PDE9A  HGNC:8795      1
3995               21       42653636        PDE9A  HGNC:8795      1
3996               21       42653636        PDE9A  HGNC:8795      1
3997               21       42653636        PDE9A  HGNC:8795      1
3998               21       42653636        PDE9A  HGNC:8795      1
3999               21       42653636        PDE9A  HGNC:8795      1
4000               21       42653636        PDE9A  HGNC:8795      1
4001               21       42653636        PDE9A  HGNC:8795      1
4002               21       42653636        PDE9A  HGNC:8795      1
4003               21       42653636        PDE9A  HGNC:8795      1
4004               21       42653636        PDE9A  HGNC:8795      1
4005               21       42653636        PDE9A  HGNC:8795      1
4006               21       42653636        PDE9A  HGNC:8795      1
4007               21       42653636        PDE9A  HGNC:8795      1
4008               21       42653636        PDE9A  HGNC:8795      1
4009               21       42653636        PDE9A  HGNC:8795      1
4010               21       42653636        PDE9A  HGNC:8795      1
4011               21       42653636        PDE9A  HGNC:8795      1
4012               21       42653636        PDE9A  HGNC:8795      1
4013               21       42653636        PDE9A  HGNC:8795      1
4014               21       42653636        PDE9A  HGNC:8795      1
4015               21       42653636        PDE9A  HGNC:8795      1
4016               21       42653636        PDE9A  HGNC:8795      1
4017               21       42653636        PDE9A  HGNC:8795      1
4018               21       42653636        PDE9A  HGNC:8795      1
4019               21       42653636        PDE9A  HGNC:8795      1
4020               21       42653636        PDE9A  HGNC:8795      1
4021               21       42653636        PDE9A  HGNC:8795      1
4022               21       42653636        PDE9A  HGNC:8795      1
4023               21       42653636        PDE9A  HGNC:8795      1
4024               21       42653636        PDE9A  HGNC:8795      1
4025               21       42653636        PDE9A  HGNC:8795      1
4026               21       42653636        PDE9A  HGNC:8795      1
4027               21       42653636        PDE9A  HGNC:8795      1
4028               21       42653636        PDE9A  HGNC:8795      1
4029               21       42653636        PDE9A  HGNC:8795      1
4030               21       42653636        PDE9A  HGNC:8795      1
4031               21       42653636        PDE9A  HGNC:8795      1
4032               21       42653636        PDE9A  HGNC:8795      1
4033               21       42653636        PDE9A  HGNC:8795      1
4034               21       42653636        PDE9A  HGNC:8795      1
4035               21       42653636        PDE9A  HGNC:8795      1
4036               21       42653636        PDE9A  HGNC:8795      1
4037               21       42653636        PDE9A  HGNC:8795      1
4038               21       42653636        PDE9A  HGNC:8795      1
4039               21       42653636        PDE9A  HGNC:8795      1
4040               21       42653636        PDE9A  HGNC:8795      1
4041               21       42653636        PDE9A  HGNC:8795      1
4042               21       42653636        PDE9A  HGNC:8795      1
4043               21       42653636        PDE9A  HGNC:8795      1
4044               21       42653636        PDE9A  HGNC:8795      1
4045               21       42653636        PDE9A  HGNC:8795      1
4046               21       42653636        PDE9A  HGNC:8795      1
4047               21       42653636        PDE9A  HGNC:8795      1
4048               21       42653636        PDE9A  HGNC:8795      1
4049               21       42653636        PDE9A  HGNC:8795      1
4050               21       42653636        PDE9A  HGNC:8795      1
4051               21       42653636        PDE9A  HGNC:8795      1
4052               21       42653636        PDE9A  HGNC:8795      1
4053               21       42653636        PDE9A  HGNC:8795      1
4054               21       42653636        PDE9A  HGNC:8795      1
4055               21       42653636        PDE9A  HGNC:8795      1
4056               21       42653636        PDE9A  HGNC:8795      1
4057               21       42653636        PDE9A  HGNC:8795      1
4058               21       42653636        PDE9A  HGNC:8795      1
4059               21       42653636        PDE9A  HGNC:8795      1
4060               21       42653636        PDE9A  HGNC:8795      1
4061               21       42653636        PDE9A  HGNC:8795      1
4062               21       42653636        PDE9A  HGNC:8795      1
4063               21       42653636        PDE9A  HGNC:8795      1
4064               21       42653636        PDE9A  HGNC:8795      1
4065               21       42653636        PDE9A  HGNC:8795      1
4066               21       42653636        PDE9A  HGNC:8795      1
4067               21       42653636        PDE9A  HGNC:8795      1
4068               21       42653636        PDE9A  HGNC:8795      1
4069               21       42653636        PDE9A  HGNC:8795      1
4070               21       42653636        PDE9A  HGNC:8795      1
4071               21       42653636        PDE9A  HGNC:8795      1
4072               21       42653636        PDE9A  HGNC:8795      1
4073               21       42653636        PDE9A  HGNC:8795      1
4074               21       42653636        PDE9A  HGNC:8795      1
4075               21       42653636        PDE9A  HGNC:8795      1
4076               21       42653636        PDE9A  HGNC:8795      1
4077               21       42653636        PDE9A  HGNC:8795      1
4078               21       42653636        PDE9A  HGNC:8795      1
4079               21       42653636        PDE9A  HGNC:8795      1
4080               21       42653636        PDE9A  HGNC:8795      1
4081               21       42653636        PDE9A  HGNC:8795      1
4082               21       42653636        PDE9A  HGNC:8795      1
4083               21       42653636        PDE9A  HGNC:8795      1
4084               21       42653636        PDE9A  HGNC:8795      1
4085               21       42653636        PDE9A  HGNC:8795      1
4086               21       42653636        PDE9A  HGNC:8795      1
4087               21       42653636        PDE9A  HGNC:8795      1
4088               21       42653636        PDE9A  HGNC:8795      1
4089               21       42653636        PDE9A  HGNC:8795      1
4090               21       42653636        PDE9A  HGNC:8795      1
4091               21       42653636        PDE9A  HGNC:8795      1
4092               21       42653636        PDE9A  HGNC:8795      1
4093               21       42653636        PDE9A  HGNC:8795      1
4094               21       42653636        PDE9A  HGNC:8795      1
4095               21       42653636        PDE9A  HGNC:8795      1
4096               21       42653636        PDE9A  HGNC:8795      1
4097               21       42653636        PDE9A  HGNC:8795      1
4098               21       42653636        PDE9A  HGNC:8795      1
4099               21       42653636        PDE9A  HGNC:8795      1
4100               21       42653636        PDE9A  HGNC:8795      1
4101               21       42653636        PDE9A  HGNC:8795      1
4102               21       42653636        PDE9A  HGNC:8795      1
4103               21       42653636        PDE9A  HGNC:8795      1
4104               21       42653636        PDE9A  HGNC:8795      1
4105               21       42653636        PDE9A  HGNC:8795      1
4106               21       42653636        PDE9A  HGNC:8795      1
4107               21       42653636        PDE9A  HGNC:8795      1
4108               21       42653636        PDE9A  HGNC:8795      1
4109               21       42653636        PDE9A  HGNC:8795      1
4110               21       42653636        PDE9A  HGNC:8795      1
4111               21       42653636        PDE9A  HGNC:8795      1
4112               21       42653636        PDE9A  HGNC:8795      1
4113               21       42653636        PDE9A  HGNC:8795      1
4114               21       42653636        PDE9A  HGNC:8795      1
4115               21       42653636        PDE9A  HGNC:8795      1
4116               21       42653636        PDE9A  HGNC:8795      1
4117               21       42653636        PDE9A  HGNC:8795      1
4118               21       42653636        PDE9A  HGNC:8795      1
4119               21       42653636        PDE9A  HGNC:8795      1
4120               21       42653636        PDE9A  HGNC:8795      1
4121               21       42653636        PDE9A  HGNC:8795      1
4122               21       42653636        PDE9A  HGNC:8795      1
4123               21       42653636        PDE9A  HGNC:8795      1
4124               21       42653636        PDE9A  HGNC:8795      1
4125               21       42653636        PDE9A  HGNC:8795      1
4126               21       42653636        PDE9A  HGNC:8795      1
4127               21       42653636        PDE9A  HGNC:8795      1
4128               21       42653636        PDE9A  HGNC:8795      1
4129               21       42653636        PDE9A  HGNC:8795      1
4130               21       42653636        PDE9A  HGNC:8795      1
4131               21       42653636        PDE9A  HGNC:8795      1
4132               21       42653636        PDE9A  HGNC:8795      1
4133               21       42653636        PDE9A  HGNC:8795      1
4134               21       42653636        PDE9A  HGNC:8795      1
4135               21       42653636        PDE9A  HGNC:8795      1
4136               21       42653636        PDE9A  HGNC:8795      1
4137               21       42653636        PDE9A  HGNC:8795      1
4138               21       42653636        PDE9A  HGNC:8795      1
4139               21       42653636        PDE9A  HGNC:8795      1
4140               21       42653636        PDE9A  HGNC:8795      1
4141               21       42653636        PDE9A  HGNC:8795      1
4142               21       42653636        PDE9A  HGNC:8795      1
4143               21       42653636        PDE9A  HGNC:8795      1
4144               21       42653636        PDE9A  HGNC:8795      1
4145               21       42653636        PDE9A  HGNC:8795      1
4146               21       42653636        PDE9A  HGNC:8795      1
4147               21       42653636        PDE9A  HGNC:8795      1
4148               21       42653636        PDE9A  HGNC:8795      1
4149               21       42653636        PDE9A  HGNC:8795      1
4150               21       42653636        PDE9A  HGNC:8795      1
4151               21       42653636        PDE9A  HGNC:8795      1
4152               21       42653636        PDE9A  HGNC:8795      1
4153               21       42653636        PDE9A  HGNC:8795      1
4154               21       42653636        PDE9A  HGNC:8795      1
4155               21       42653636        PDE9A  HGNC:8795      1
4156               21       42653636        PDE9A  HGNC:8795      1
4157               21       42653636        PDE9A  HGNC:8795      1
4158               21       42653636        PDE9A  HGNC:8795      1
4159               21       42653636        PDE9A  HGNC:8795      1
4160               21       42653636        PDE9A  HGNC:8795      1
4161               21       42653636        PDE9A  HGNC:8795      1
4162               21       42653636        PDE9A  HGNC:8795      1
4163               21       42653636        PDE9A  HGNC:8795      1
4164               21       42653636        PDE9A  HGNC:8795      1
4165               21       42653636        PDE9A  HGNC:8795      1
4166               21       42653636        PDE9A  HGNC:8795      1
4167               21       42653636        PDE9A  HGNC:8795      1
4168               21       42653636        PDE9A  HGNC:8795      1
4169               21       42653636        PDE9A  HGNC:8795      1
4170               21       42653636        PDE9A  HGNC:8795      1
4171               21       42653636        PDE9A  HGNC:8795      1
4172               21       42653636        PDE9A  HGNC:8795      1
4173               21       42653636        PDE9A  HGNC:8795      1
4174               21       42653636        PDE9A  HGNC:8795      1
4175               21       42653636        PDE9A  HGNC:8795      1
4176               21       42653636        PDE9A  HGNC:8795      1
4177               21       42653636        PDE9A  HGNC:8795      1
4178               21       42653636        PDE9A  HGNC:8795      1
4179               21       42653636        PDE9A  HGNC:8795      1
4180               21       42653636        PDE9A  HGNC:8795      1
4181               21       42653636        PDE9A  HGNC:8795      1
4182               21       42653636        PDE9A  HGNC:8795      1
4183               21       42653636        PDE9A  HGNC:8795      1
4184               21       42653636        PDE9A  HGNC:8795      1
4185               21       42653636        PDE9A  HGNC:8795      1
4186               21       42653636        PDE9A  HGNC:8795      1
4187               21       42653636        PDE9A  HGNC:8795      1
4188               21       42653636        PDE9A  HGNC:8795      1
4189               21       42653636        PDE9A  HGNC:8795      1
4190               21       42653636        PDE9A  HGNC:8795      1
4191               21       42653636        PDE9A  HGNC:8795      1
4192               21       42653636        PDE9A  HGNC:8795      1
4193               21       42653636        PDE9A  HGNC:8795      1
4194               21       42733594                             -1
4195               21       42733594                             -1
4196               21       42648271                             -1
4197               21       42648271                             -1
4198               21       42599280    LINC01671 HGNC:52459     -1
4199               21       42599280    LINC01671 HGNC:52459     -1
4200               21       42496008      SLC37A1 HGNC:11024      1
4201               21       42496008      SLC37A1 HGNC:11024      1
4202               21       42496008      SLC37A1 HGNC:11024      1
4203               21       42496008      SLC37A1 HGNC:11024      1
4204               21       42496008      SLC37A1 HGNC:11024      1
4205               21       42496008      SLC37A1 HGNC:11024      1
4206               21       42496008      SLC37A1 HGNC:11024      1
4207               21       42496008      SLC37A1 HGNC:11024      1
4208               21       42496008      SLC37A1 HGNC:11024      1
4209               21       42496008      SLC37A1 HGNC:11024      1
4210               21       42496008      SLC37A1 HGNC:11024      1
4211               21       42496008      SLC37A1 HGNC:11024      1
4212               21       42496008      SLC37A1 HGNC:11024      1
4213               21       42496008      SLC37A1 HGNC:11024      1
4214               21       42496008      SLC37A1 HGNC:11024      1
4215               21       42496008      SLC37A1 HGNC:11024      1
4216               21       42496008      SLC37A1 HGNC:11024      1
4217               21       42496008      SLC37A1 HGNC:11024      1
4218               21       42496008      SLC37A1 HGNC:11024      1
4219               21       42496008      SLC37A1 HGNC:11024      1
4220               21       42496008      SLC37A1 HGNC:11024      1
4221               21       42496008      SLC37A1 HGNC:11024      1
4222               21       42496008      SLC37A1 HGNC:11024      1
4223               21       42496008      SLC37A1 HGNC:11024      1
4224               21       42496008      SLC37A1 HGNC:11024      1
4225               21       42496008      SLC37A1 HGNC:11024      1
4226               21       42496008      SLC37A1 HGNC:11024      1
4227               21       42496008      SLC37A1 HGNC:11024      1
4228               21       42496008      SLC37A1 HGNC:11024      1
4229               21       42496008      SLC37A1 HGNC:11024      1
4230               21       42496008      SLC37A1 HGNC:11024      1
4231               21       42496008      SLC37A1 HGNC:11024      1
4232               21       42496008      SLC37A1 HGNC:11024      1
4233               21       42496008      SLC37A1 HGNC:11024      1
4234               21       42496008      SLC37A1 HGNC:11024      1
4235               21       42496008      SLC37A1 HGNC:11024      1
4236               21       42496008      SLC37A1 HGNC:11024      1
4237               21       42496008      SLC37A1 HGNC:11024      1
4238               21       42496008      SLC37A1 HGNC:11024      1
4239               21       42496008      SLC37A1 HGNC:11024      1
4240               21       42496008      SLC37A1 HGNC:11024      1
4241               21       42496008      SLC37A1 HGNC:11024      1
4242               21       42496008      SLC37A1 HGNC:11024      1
4243               21       42496008      SLC37A1 HGNC:11024      1
4244               21       42496008      SLC37A1 HGNC:11024      1
4245               21       42496008      SLC37A1 HGNC:11024      1
4246               21       42496008      SLC37A1 HGNC:11024      1
4247               21       42496008      SLC37A1 HGNC:11024      1
4248               21       42496008      SLC37A1 HGNC:11024      1
4249               21       42496008      SLC37A1 HGNC:11024      1
4250               21       42496008      SLC37A1 HGNC:11024      1
4251               21       42496008      SLC37A1 HGNC:11024      1
4252               21       42496008      SLC37A1 HGNC:11024      1
4253               21       42496008      SLC37A1 HGNC:11024      1
4254               21       42496008      SLC37A1 HGNC:11024      1
4255               21       42496008      SLC37A1 HGNC:11024      1
4256               21       42496008      SLC37A1 HGNC:11024      1
4257               21       42496008      SLC37A1 HGNC:11024      1
4258               21       42496008      SLC37A1 HGNC:11024      1
4259               21       42496008      SLC37A1 HGNC:11024      1
4260               21       42496008      SLC37A1 HGNC:11024      1
4261               21       42496008      SLC37A1 HGNC:11024      1
4262               21       42496008      SLC37A1 HGNC:11024      1
4263               21       42560374                             -1
4264               21       42560374                             -1
4265               21       42508624                              1
4266               21       42508624                              1
4267               21       42508624                              1
4268               21       42508624                              1
4269               21       42496539                              1
4270               21       42496539                              1
4271               21       42496539                              1
4272               21       42472486        RSPH1 HGNC:12371     -1
4273               21       42472486        RSPH1 HGNC:12371     -1
4274               21       42472486        RSPH1 HGNC:12371     -1
4275               21       42472486        RSPH1 HGNC:12371     -1
4276               21       42472486        RSPH1 HGNC:12371     -1
4277               21       42472486        RSPH1 HGNC:12371     -1
4278               21       42472486        RSPH1 HGNC:12371     -1
4279               21       42472486        RSPH1 HGNC:12371     -1
4280               21       42472486        RSPH1 HGNC:12371     -1
4281               21       42472486        RSPH1 HGNC:12371     -1
4282               21       42472486        RSPH1 HGNC:12371     -1
4283               21       42472486        RSPH1 HGNC:12371     -1
4284               21       42472486        RSPH1 HGNC:12371     -1
4285               21       42472486        RSPH1 HGNC:12371     -1
4286               21       42472486        RSPH1 HGNC:12371     -1
4287               21       42472486        RSPH1 HGNC:12371     -1
4288               21       42472486        RSPH1 HGNC:12371     -1
4289               21       42472486        RSPH1 HGNC:12371     -1
4290               21       42472486        RSPH1 HGNC:12371     -1
4291               21       42472486        RSPH1 HGNC:12371     -1
4292               21       42472486        RSPH1 HGNC:12371     -1
4293               21       42472486        RSPH1 HGNC:12371     -1
4294               21       42472486        RSPH1 HGNC:12371     -1
4295               21       42472486        RSPH1 HGNC:12371     -1
4296               21       42472486        RSPH1 HGNC:12371     -1
4297               21       42403447      UBASH3A HGNC:12462      1
4298               21       42403447      UBASH3A HGNC:12462      1
4299               21       42403447      UBASH3A HGNC:12462      1
4300               21       42403447      UBASH3A HGNC:12462      1
4301               21       42403447      UBASH3A HGNC:12462      1
4302               21       42403447      UBASH3A HGNC:12462      1
4303               21       42403447      UBASH3A HGNC:12462      1
4304               21       42403447      UBASH3A HGNC:12462      1
4305               21       42403447      UBASH3A HGNC:12462      1
4306               21       42403447      UBASH3A HGNC:12462      1
4307               21       42403447      UBASH3A HGNC:12462      1
4308               21       42403447      UBASH3A HGNC:12462      1
4309               21       42403447      UBASH3A HGNC:12462      1
4310               21       42403447      UBASH3A HGNC:12462      1
4311               21       42403447      UBASH3A HGNC:12462      1
4312               21       42403447      UBASH3A HGNC:12462      1
4313               21       42403447      UBASH3A HGNC:12462      1
4314               21       42403447      UBASH3A HGNC:12462      1
4315               21       42403447      UBASH3A HGNC:12462      1
4316               21       42403447      UBASH3A HGNC:12462      1
4317               21       42403447      UBASH3A HGNC:12462      1
4318               21       42403447      UBASH3A HGNC:12462      1
4319               21       42403447      UBASH3A HGNC:12462      1
4320               21       42403447      UBASH3A HGNC:12462      1
4321               21       42403447      UBASH3A HGNC:12462      1
4322               21       42403447      UBASH3A HGNC:12462      1
4323               21       42403447      UBASH3A HGNC:12462      1
4324               21       42403447      UBASH3A HGNC:12462      1
4325               21       42403447      UBASH3A HGNC:12462      1
4326               21       42403447      UBASH3A HGNC:12462      1
4327               21       42403447      UBASH3A HGNC:12462      1
4328               21       42403447      UBASH3A HGNC:12462      1
4329               21       42403447      UBASH3A HGNC:12462      1
4330               21       42403447      UBASH3A HGNC:12462      1
4331               21       42403447      UBASH3A HGNC:12462      1
4332               21       42403447      UBASH3A HGNC:12462      1
4333               21       42403447      UBASH3A HGNC:12462      1
4334               21       42403447      UBASH3A HGNC:12462      1
4335               21       42403447      UBASH3A HGNC:12462      1
4336               21       42403447      UBASH3A HGNC:12462      1
4337               21       42403447      UBASH3A HGNC:12462      1
4338               21       42403447      UBASH3A HGNC:12462      1
4339               21       42403447      UBASH3A HGNC:12462      1
4340               21       42403447      UBASH3A HGNC:12462      1
4341               21       42403447      UBASH3A HGNC:12462      1
4342               21       42403447      UBASH3A HGNC:12462      1
4343               21       42403447      UBASH3A HGNC:12462      1
4344               21       42403447      UBASH3A HGNC:12462      1
4345               21       42403447      UBASH3A HGNC:12462      1
4346               21       42403447      UBASH3A HGNC:12462      1
4347               21       42403447      UBASH3A HGNC:12462      1
4348               21       42403447      UBASH3A HGNC:12462      1
4349               21       42403447      UBASH3A HGNC:12462      1
4350               21       42403447      UBASH3A HGNC:12462      1
4351               21       42403447      UBASH3A HGNC:12462      1
4352               21       42403447      UBASH3A HGNC:12462      1
4353               21       42403447      UBASH3A HGNC:12462      1
4354               21       42403447      UBASH3A HGNC:12462      1
4355               21       42403447      UBASH3A HGNC:12462      1
4356               21       42403447      UBASH3A HGNC:12462      1
4357               21       42403447      UBASH3A HGNC:12462      1
4358               21       42403447      UBASH3A HGNC:12462      1
4359               21       42403447      UBASH3A HGNC:12462      1
4360               21       42403447      UBASH3A HGNC:12462      1
4361               21       42403447      UBASH3A HGNC:12462      1
4362               21       42403447      UBASH3A HGNC:12462      1
4363               21       42403447      UBASH3A HGNC:12462      1
4364               21       42403447      UBASH3A HGNC:12462      1
4365               21       42403447      UBASH3A HGNC:12462      1
4366               21       42403447      UBASH3A HGNC:12462      1
4367               21       42403447      UBASH3A HGNC:12462      1
4368               21       42403447      UBASH3A HGNC:12462      1
4369               21       42403447      UBASH3A HGNC:12462      1
4370               21       42403447      UBASH3A HGNC:12462      1
4371               21       42403447      UBASH3A HGNC:12462      1
4372               21       42403447      UBASH3A HGNC:12462      1
4373               21       42403447      UBASH3A HGNC:12462      1
4374               21       42403447      UBASH3A HGNC:12462      1
4375               21       42403447      UBASH3A HGNC:12462      1
4376               21       42403447      UBASH3A HGNC:12462      1
4377               21       42403447      UBASH3A HGNC:12462      1
4378               21       42403447      UBASH3A HGNC:12462      1
4379               21       42403447      UBASH3A HGNC:12462      1
4380               21       42403447      UBASH3A HGNC:12462      1
4381               21       42403447      UBASH3A HGNC:12462      1
4382               21       42403447      UBASH3A HGNC:12462      1
4383               21       42417497   RNU6-1149P HGNC:48112     -1
4384               21       42371890      TMPRSS3 HGNC:11877     -1
4385               21       42371890      TMPRSS3 HGNC:11877     -1
4386               21       42371890      TMPRSS3 HGNC:11877     -1
4387               21       42371890      TMPRSS3 HGNC:11877     -1
4388               21       42371890      TMPRSS3 HGNC:11877     -1
4389               21       42371890      TMPRSS3 HGNC:11877     -1
4390               21       42371890      TMPRSS3 HGNC:11877     -1
4391               21       42371890      TMPRSS3 HGNC:11877     -1
4392               21       42371890      TMPRSS3 HGNC:11877     -1
4393               21       42371890      TMPRSS3 HGNC:11877     -1
4394               21       42371890      TMPRSS3 HGNC:11877     -1
4395               21       42371890      TMPRSS3 HGNC:11877     -1
4396               21       42371890      TMPRSS3 HGNC:11877     -1
4397               21       42371890      TMPRSS3 HGNC:11877     -1
4398               21       42371890      TMPRSS3 HGNC:11877     -1
4399               21       42371890      TMPRSS3 HGNC:11877     -1
4400               21       42371890      TMPRSS3 HGNC:11877     -1
4401               21       42371890      TMPRSS3 HGNC:11877     -1
4402               21       42371890      TMPRSS3 HGNC:11877     -1
4403               21       42371890      TMPRSS3 HGNC:11877     -1
4404               21       42371890      TMPRSS3 HGNC:11877     -1
4405               21       42371890      TMPRSS3 HGNC:11877     -1
4406               21       42371890      TMPRSS3 HGNC:11877     -1
4407               21       42371890      TMPRSS3 HGNC:11877     -1
4408               21       42371890      TMPRSS3 HGNC:11877     -1
4409               21       42371890      TMPRSS3 HGNC:11877     -1
4410               21       42371890      TMPRSS3 HGNC:11877     -1
4411               21       42371890      TMPRSS3 HGNC:11877     -1
4412               21       42371890      TMPRSS3 HGNC:11877     -1
4413               21       42371890      TMPRSS3 HGNC:11877     -1
4414               21       42371890      TMPRSS3 HGNC:11877     -1
4415               21       42371890      TMPRSS3 HGNC:11877     -1
4416               21       42371890      TMPRSS3 HGNC:11877     -1
4417               21       42371890      TMPRSS3 HGNC:11877     -1
4418               21       42371890      TMPRSS3 HGNC:11877     -1
4419               21       42371890      TMPRSS3 HGNC:11877     -1
4420               21       42371890      TMPRSS3 HGNC:11877     -1
4421               21       42371890      TMPRSS3 HGNC:11877     -1
4422               21       42371890      TMPRSS3 HGNC:11877     -1
4423               21       42371890      TMPRSS3 HGNC:11877     -1
4424               21       42371890      TMPRSS3 HGNC:11877     -1
4425               21       42371890      TMPRSS3 HGNC:11877     -1
4426               21       42371890      TMPRSS3 HGNC:11877     -1
4427               21       42371890      TMPRSS3 HGNC:11877     -1
4428               21       42371890      TMPRSS3 HGNC:11877     -1
4429               21       42371890      TMPRSS3 HGNC:11877     -1
4430               21       42371890      TMPRSS3 HGNC:11877     -1
4431               21       42371890      TMPRSS3 HGNC:11877     -1
4432               21       42371890      TMPRSS3 HGNC:11877     -1
4433               21       42371890      TMPRSS3 HGNC:11877     -1
4434               21       42371890      TMPRSS3 HGNC:11877     -1
4435               21       42371890      TMPRSS3 HGNC:11877     -1
4436               21       42371890      TMPRSS3 HGNC:11877     -1
4437               21       42371890      TMPRSS3 HGNC:11877     -1
4438               21       42371890      TMPRSS3 HGNC:11877     -1
4439               21       42371890      TMPRSS3 HGNC:11877     -1
4440               21       42371890      TMPRSS3 HGNC:11877     -1
4441               21       42371890      TMPRSS3 HGNC:11877     -1
4442               21       42371890      TMPRSS3 HGNC:11877     -1
4443               21       42371890      TMPRSS3 HGNC:11877     -1
4444               21       42371890      TMPRSS3 HGNC:11877     -1
4445               21       42371890      TMPRSS3 HGNC:11877     -1
4446               21       42371890      TMPRSS3 HGNC:11877     -1
4447               21       42371890      TMPRSS3 HGNC:11877     -1
4448               21       42371890      TMPRSS3 HGNC:11877     -1
4449               21       42371890      TMPRSS3 HGNC:11877     -1
4450               21       42371890      TMPRSS3 HGNC:11877     -1
4451               21       42371890      TMPRSS3 HGNC:11877     -1
4452               21       42371890      TMPRSS3 HGNC:11877     -1
4453               21       42371890      TMPRSS3 HGNC:11877     -1
4454               21       42371890      TMPRSS3 HGNC:11877     -1
4455               21       42371890      TMPRSS3 HGNC:11877     -1
4456               21       42371890      TMPRSS3 HGNC:11877     -1
4457               21       42371890      TMPRSS3 HGNC:11877     -1
4458               21       42371890      TMPRSS3 HGNC:11877     -1
4459               21       42362282         TFF1 HGNC:11755     -1
4460               21       42362282         TFF1 HGNC:11755     -1
4461               21       42362282         TFF1 HGNC:11755     -1
4462               21       42346357         TFF2 HGNC:11756     -1
4463               21       42346357         TFF2 HGNC:11756     -1
4464               21       42346357         TFF2 HGNC:11756     -1
4465               21       42346357         TFF2 HGNC:11756     -1
4466               21       42346357         TFF2 HGNC:11756     -1
4467               21       42346357         TFF2 HGNC:11756     -1
4468               21       42346357         TFF2 HGNC:11756     -1
4469               21       42346357         TFF2 HGNC:11756     -1
4470               21       42346357         TFF2 HGNC:11756     -1
4471               21       42346357         TFF2 HGNC:11756     -1
4472               21       42346357         TFF2 HGNC:11756     -1
4473               21       42346357         TFF2 HGNC:11756     -1
4474               21       42346357         TFF2 HGNC:11756     -1
4475               21       42311667         TFF3 HGNC:11757     -1
4476               21       42311667         TFF3 HGNC:11757     -1
4477               21       42311667         TFF3 HGNC:11757     -1
4478               21       42311667         TFF3 HGNC:11757     -1
4479               21       42311667         TFF3 HGNC:11757     -1
4480               21       42311667         TFF3 HGNC:11757     -1
4481               21       42311667         TFF3 HGNC:11757     -1
4482               21       42311667         TFF3 HGNC:11757     -1
4483               21       42311667         TFF3 HGNC:11757     -1
4484               21       42311667         TFF3 HGNC:11757     -1
4485               21       42311667         TFF3 HGNC:11757     -1
4486               21       42311667         TFF3 HGNC:11757     -1
4487               21       42199689        ABCG1    HGNC:73      1
4488               21       42199689        ABCG1    HGNC:73      1
4489               21       42199689        ABCG1    HGNC:73      1
4490               21       42199689        ABCG1    HGNC:73      1
4491               21       42199689        ABCG1    HGNC:73      1
4492               21       42199689        ABCG1    HGNC:73      1
4493               21       42199689        ABCG1    HGNC:73      1
4494               21       42199689        ABCG1    HGNC:73      1
4495               21       42199689        ABCG1    HGNC:73      1
4496               21       42199689        ABCG1    HGNC:73      1
4497               21       42199689        ABCG1    HGNC:73      1
4498               21       42199689        ABCG1    HGNC:73      1
4499               21       42199689        ABCG1    HGNC:73      1
4500               21       42199689        ABCG1    HGNC:73      1
4501               21       42199689        ABCG1    HGNC:73      1
4502               21       42199689        ABCG1    HGNC:73      1
4503               21       42199689        ABCG1    HGNC:73      1
4504               21       42199689        ABCG1    HGNC:73      1
4505               21       42199689        ABCG1    HGNC:73      1
4506               21       42199689        ABCG1    HGNC:73      1
4507               21       42199689        ABCG1    HGNC:73      1
4508               21       42199689        ABCG1    HGNC:73      1
4509               21       42199689        ABCG1    HGNC:73      1
4510               21       42199689        ABCG1    HGNC:73      1
4511               21       42199689        ABCG1    HGNC:73      1
4512               21       42199689        ABCG1    HGNC:73      1
4513               21       42199689        ABCG1    HGNC:73      1
4514               21       42199689        ABCG1    HGNC:73      1
4515               21       42199689        ABCG1    HGNC:73      1
4516               21       42199689        ABCG1    HGNC:73      1
4517               21       42199689        ABCG1    HGNC:73      1
4518               21       42199689        ABCG1    HGNC:73      1
4519               21       42199689        ABCG1    HGNC:73      1
4520               21       42199689        ABCG1    HGNC:73      1
4521               21       42199689        ABCG1    HGNC:73      1
4522               21       42199689        ABCG1    HGNC:73      1
4523               21       42199689        ABCG1    HGNC:73      1
4524               21       42199689        ABCG1    HGNC:73      1
4525               21       42199689        ABCG1    HGNC:73      1
4526               21       42199689        ABCG1    HGNC:73      1
4527               21       42199689        ABCG1    HGNC:73      1
4528               21       42199689        ABCG1    HGNC:73      1
4529               21       42199689        ABCG1    HGNC:73      1
4530               21       42199689        ABCG1    HGNC:73      1
4531               21       42199689        ABCG1    HGNC:73      1
4532               21       42199689        ABCG1    HGNC:73      1
4533               21       42199689        ABCG1    HGNC:73      1
4534               21       42199689        ABCG1    HGNC:73      1
4535               21       42199689        ABCG1    HGNC:73      1
4536               21       42199689        ABCG1    HGNC:73      1
4537               21       42199689        ABCG1    HGNC:73      1
4538               21       42199689        ABCG1    HGNC:73      1
4539               21       42199689        ABCG1    HGNC:73      1
4540               21       42199689        ABCG1    HGNC:73      1
4541               21       42199689        ABCG1    HGNC:73      1
4542               21       42199689        ABCG1    HGNC:73      1
4543               21       42199689        ABCG1    HGNC:73      1
4544               21       42199689        ABCG1    HGNC:73      1
4545               21       42199689        ABCG1    HGNC:73      1
4546               21       42199689        ABCG1    HGNC:73      1
4547               21       42199689        ABCG1    HGNC:73      1
4548               21       42199689        ABCG1    HGNC:73      1
4549               21       42199689        ABCG1    HGNC:73      1
4550               21       42199689        ABCG1    HGNC:73      1
4551               21       42199689        ABCG1    HGNC:73      1
4552               21       42199689        ABCG1    HGNC:73      1
4553               21       42199689        ABCG1    HGNC:73      1
4554               21       42199689        ABCG1    HGNC:73      1
4555               21       42199689        ABCG1    HGNC:73      1
4556               21       42199689        ABCG1    HGNC:73      1
4557               21       42199689        ABCG1    HGNC:73      1
4558               21       42199689        ABCG1    HGNC:73      1
4559               21       42199689        ABCG1    HGNC:73      1
4560               21       42199689        ABCG1    HGNC:73      1
4561               21       42199689        ABCG1    HGNC:73      1
4562               21       42199689        ABCG1    HGNC:73      1
4563               21       42199689        ABCG1    HGNC:73      1
4564               21       42199689        ABCG1    HGNC:73      1
4565               21       42199689        ABCG1    HGNC:73      1
4566               21       42199689        ABCG1    HGNC:73      1
4567               21       42199689        ABCG1    HGNC:73      1
4568               21       42199689        ABCG1    HGNC:73      1
4569               21       42199689        ABCG1    HGNC:73      1
4570               21       42199689        ABCG1    HGNC:73      1
4571               21       42199689        ABCG1    HGNC:73      1
4572               21       42199689        ABCG1    HGNC:73      1
4573               21       42199689        ABCG1    HGNC:73      1
4574               21       42199689        ABCG1    HGNC:73      1
4575               21       42199689        ABCG1    HGNC:73      1
4576               21       42199689        ABCG1    HGNC:73      1
4577               21       42199689        ABCG1    HGNC:73      1
4578               21       42199689        ABCG1    HGNC:73      1
4579               21       42199689        ABCG1    HGNC:73      1
4580               21       42199689        ABCG1    HGNC:73      1
4581               21       42199689        ABCG1    HGNC:73      1
4582               21       42199689        ABCG1    HGNC:73      1
4583               21       42199689        ABCG1    HGNC:73      1
4584               21       42199689        ABCG1    HGNC:73      1
4585               21       42199689        ABCG1    HGNC:73      1
4586               21       42199689        ABCG1    HGNC:73      1
4587               21       42199689        ABCG1    HGNC:73      1
4588               21       42199689        ABCG1    HGNC:73      1
4589               21       42199689        ABCG1    HGNC:73      1
4590               21       42199689        ABCG1    HGNC:73      1
4591               21       42199689        ABCG1    HGNC:73      1
4592               21       42199689        ABCG1    HGNC:73      1
4593               21       42199689        ABCG1    HGNC:73      1
4594               21       42199689        ABCG1    HGNC:73      1
4595               21       42199689        ABCG1    HGNC:73      1
4596               21       42199689        ABCG1    HGNC:73      1
4597               21       42199689        ABCG1    HGNC:73      1
4598               21       42199689        ABCG1    HGNC:73      1
4599               21       42199689        ABCG1    HGNC:73      1
4600               21       42199689        ABCG1    HGNC:73      1
4601               21       42199689        ABCG1    HGNC:73      1
4602               21       42199689        ABCG1    HGNC:73      1
4603               21       42199689        ABCG1    HGNC:73      1
4604               21       42199689        ABCG1    HGNC:73      1
4605               21       42199689        ABCG1    HGNC:73      1
4606               21       42199689        ABCG1    HGNC:73      1
4607               21       42199689        ABCG1    HGNC:73      1
4608               21       42199689        ABCG1    HGNC:73      1
4609               21       42199689        ABCG1    HGNC:73      1
4610               21       42199689        ABCG1    HGNC:73      1
4611               21       42199689        ABCG1    HGNC:73      1
4612               21       42199689        ABCG1    HGNC:73      1
4613               21       42199689        ABCG1    HGNC:73      1
4614               21       42199689        ABCG1    HGNC:73      1
4615               21       42199689        ABCG1    HGNC:73      1
4616               21       42199689        ABCG1    HGNC:73      1
4617               21       42199689        ABCG1    HGNC:73      1
4618               21       42199689        ABCG1    HGNC:73      1
4619               21       42199689        ABCG1    HGNC:73      1
4620               21       42199689        ABCG1    HGNC:73      1
4621               21       42199689        ABCG1    HGNC:73      1
4622               21       42199689        ABCG1    HGNC:73      1
4623               21       42221173    RNA5SP492 HGNC:43392      1
4624               21       42062959       UMODL1 HGNC:12560      1
4625               21       42062959       UMODL1 HGNC:12560      1
4626               21       42062959       UMODL1 HGNC:12560      1
4627               21       42062959       UMODL1 HGNC:12560      1
4628               21       42062959       UMODL1 HGNC:12560      1
4629               21       42062959       UMODL1 HGNC:12560      1
4630               21       42062959       UMODL1 HGNC:12560      1
4631               21       42062959       UMODL1 HGNC:12560      1
4632               21       42062959       UMODL1 HGNC:12560      1
4633               21       42062959       UMODL1 HGNC:12560      1
4634               21       42062959       UMODL1 HGNC:12560      1
4635               21       42062959       UMODL1 HGNC:12560      1
4636               21       42062959       UMODL1 HGNC:12560      1
4637               21       42062959       UMODL1 HGNC:12560      1
4638               21       42062959       UMODL1 HGNC:12560      1
4639               21       42062959       UMODL1 HGNC:12560      1
4640               21       42062959       UMODL1 HGNC:12560      1
4641               21       42062959       UMODL1 HGNC:12560      1
4642               21       42062959       UMODL1 HGNC:12560      1
4643               21       42062959       UMODL1 HGNC:12560      1
4644               21       42062959       UMODL1 HGNC:12560      1
4645               21       42062959       UMODL1 HGNC:12560      1
4646               21       42062959       UMODL1 HGNC:12560      1
4647               21       42062959       UMODL1 HGNC:12560      1
4648               21       42062959       UMODL1 HGNC:12560      1
4649               21       42062959       UMODL1 HGNC:12560      1
4650               21       42062959       UMODL1 HGNC:12560      1
4651               21       42062959       UMODL1 HGNC:12560      1
4652               21       42062959       UMODL1 HGNC:12560      1
4653               21       42062959       UMODL1 HGNC:12560      1
4654               21       42062959       UMODL1 HGNC:12560      1
4655               21       42062959       UMODL1 HGNC:12560      1
4656               21       42062959       UMODL1 HGNC:12560      1
4657               21       42062959       UMODL1 HGNC:12560      1
4658               21       42062959       UMODL1 HGNC:12560      1
4659               21       42062959       UMODL1 HGNC:12560      1
4660               21       42062959       UMODL1 HGNC:12560      1
4661               21       42062959       UMODL1 HGNC:12560      1
4662               21       42062959       UMODL1 HGNC:12560      1
4663               21       42062959       UMODL1 HGNC:12560      1
4664               21       42062959       UMODL1 HGNC:12560      1
4665               21       42062959       UMODL1 HGNC:12560      1
4666               21       42062959       UMODL1 HGNC:12560      1
4667               21       42062959       UMODL1 HGNC:12560      1
4668               21       42062959       UMODL1 HGNC:12560      1
4669               21       42062959       UMODL1 HGNC:12560      1
4670               21       42062959       UMODL1 HGNC:12560      1
4671               21       42062959       UMODL1 HGNC:12560      1
4672               21       42062959       UMODL1 HGNC:12560      1
4673               21       42062959       UMODL1 HGNC:12560      1
4674               21       42062959       UMODL1 HGNC:12560      1
4675               21       42062959       UMODL1 HGNC:12560      1
4676               21       42062959       UMODL1 HGNC:12560      1
4677               21       42062959       UMODL1 HGNC:12560      1
4678               21       42062959       UMODL1 HGNC:12560      1
4679               21       42062959       UMODL1 HGNC:12560      1
4680               21       42062959       UMODL1 HGNC:12560      1
4681               21       42062959       UMODL1 HGNC:12560      1
4682               21       42062959       UMODL1 HGNC:12560      1
4683               21       42062959       UMODL1 HGNC:12560      1
4684               21       42062959       UMODL1 HGNC:12560      1
4685               21       42062959       UMODL1 HGNC:12560      1
4686               21       42062959       UMODL1 HGNC:12560      1
4687               21       42062959       UMODL1 HGNC:12560      1
4688               21       42062959       UMODL1 HGNC:12560      1
4689               21       42062959       UMODL1 HGNC:12560      1
4690               21       42062959       UMODL1 HGNC:12560      1
4691               21       42062959       UMODL1 HGNC:12560      1
4692               21       42062959       UMODL1 HGNC:12560      1
4693               21       42062959       UMODL1 HGNC:12560      1
4694               21       42062959       UMODL1 HGNC:12560      1
4695               21       42062959       UMODL1 HGNC:12560      1
4696               21       42062959       UMODL1 HGNC:12560      1
4697               21       42062959       UMODL1 HGNC:12560      1
4698               21       42062959       UMODL1 HGNC:12560      1
4699               21       42062959       UMODL1 HGNC:12560      1
4700               21       42062959       UMODL1 HGNC:12560      1
4701               21       42062959       UMODL1 HGNC:12560      1
4702               21       42062959       UMODL1 HGNC:12560      1
4703               21       42062959       UMODL1 HGNC:12560      1
4704               21       42062959       UMODL1 HGNC:12560      1
4705               21       42062959       UMODL1 HGNC:12560      1
4706               21       42062959       UMODL1 HGNC:12560      1
4707               21       42062959       UMODL1 HGNC:12560      1
4708               21       42062959       UMODL1 HGNC:12560      1
4709               21       42062959       UMODL1 HGNC:12560      1
4710               21       42062959       UMODL1 HGNC:12560      1
4711               21       42062959       UMODL1 HGNC:12560      1
4712               21       42062959       UMODL1 HGNC:12560      1
4713               21       42062959       UMODL1 HGNC:12560      1
4714               21       42062959       UMODL1 HGNC:12560      1
4715               21       42062959       UMODL1 HGNC:12560      1
4716               21       42062959       UMODL1 HGNC:12560      1
4717               21       42062959       UMODL1 HGNC:12560      1
4718               21       42062959       UMODL1 HGNC:12560      1
4719               21       42062959       UMODL1 HGNC:12560      1
4720               21       42062959       UMODL1 HGNC:12560      1
4721               21       42062959       UMODL1 HGNC:12560      1
4722               21       42062959       UMODL1 HGNC:12560      1
4723               21       42062959       UMODL1 HGNC:12560      1
4724               21       42062959       UMODL1 HGNC:12560      1
4725               21       42062959       UMODL1 HGNC:12560      1
4726               21       42062959       UMODL1 HGNC:12560      1
4727               21       42062959       UMODL1 HGNC:12560      1
4728               21       42062959       UMODL1 HGNC:12560      1
4729               21       42062959       UMODL1 HGNC:12560      1
4730               21       42062959       UMODL1 HGNC:12560      1
4731               21       42062959       UMODL1 HGNC:12560      1
4732               21       42062959       UMODL1 HGNC:12560      1
4733               21       42062959       UMODL1 HGNC:12560      1
4734               21       42062959       UMODL1 HGNC:12560      1
4735               21       42062959       UMODL1 HGNC:12560      1
4736               21       42062959       UMODL1 HGNC:12560      1
4737               21       42062959       UMODL1 HGNC:12560      1
4738               21       42062959       UMODL1 HGNC:12560      1
4739               21       42062959       UMODL1 HGNC:12560      1
4740               21       42062959       UMODL1 HGNC:12560      1
4741               21       42062959       UMODL1 HGNC:12560      1
4742               21       42062959       UMODL1 HGNC:12560      1
4743               21       42062959       UMODL1 HGNC:12560      1
4744               21       42062959       UMODL1 HGNC:12560      1
4745               21       42062959       UMODL1 HGNC:12560      1
4746               21       42062959       UMODL1 HGNC:12560      1
4747               21       42062959       UMODL1 HGNC:12560      1
4748               21       42062959       UMODL1 HGNC:12560      1
4749               21       42062959       UMODL1 HGNC:12560      1
4750               21       42062959       UMODL1 HGNC:12560      1
4751               21       42062959       UMODL1 HGNC:12560      1
4752               21       42062959       UMODL1 HGNC:12560      1
4753               21       42062959       UMODL1 HGNC:12560      1
4754               21       42062959       UMODL1 HGNC:12560      1
4755               21       42062959       UMODL1 HGNC:12560      1
4756               21       42062959       UMODL1 HGNC:12560      1
4757               21       42062959       UMODL1 HGNC:12560      1
4758               21       42062959       UMODL1 HGNC:12560      1
4759               21       42062959       UMODL1 HGNC:12560      1
4760               21       42062959       UMODL1 HGNC:12560      1
4761               21       42062959       UMODL1 HGNC:12560      1
4762               21       42062959       UMODL1 HGNC:12560      1
4763               21       42062959       UMODL1 HGNC:12560      1
4764               21       42062959       UMODL1 HGNC:12560      1
4765               21       42062959       UMODL1 HGNC:12560      1
4766               21       42062959       UMODL1 HGNC:12560      1
4767               21       42062959       UMODL1 HGNC:12560      1
4768               21       42062959       UMODL1 HGNC:12560      1
4769               21       42062959       UMODL1 HGNC:12560      1
4770               21       42062959       UMODL1 HGNC:12560      1
4771               21       42062959       UMODL1 HGNC:12560      1
4772               21       42062959       UMODL1 HGNC:12560      1
4773               21       42062959       UMODL1 HGNC:12560      1
4774               21       42062959       UMODL1 HGNC:12560      1
4775               21       42102134   UMODL1-AS1 HGNC:23821     -1
4776               21       42102134   UMODL1-AS1 HGNC:23821     -1
4777               21       42009194   ZNF295-AS1 HGNC:23130      1
4778               21       42009194   ZNF295-AS1 HGNC:23130      1
4779               21       42009194   ZNF295-AS1 HGNC:23130      1
4780               21       42009194   ZNF295-AS1 HGNC:23130      1
4781               21       42009194   ZNF295-AS1 HGNC:23130      1
4782               21       42009194   ZNF295-AS1 HGNC:23130      1
4783               21       41986831       ZBTB21 HGNC:13083     -1
4784               21       41986831       ZBTB21 HGNC:13083     -1
4785               21       41986831       ZBTB21 HGNC:13083     -1
4786               21       41986831       ZBTB21 HGNC:13083     -1
4787               21       41986831       ZBTB21 HGNC:13083     -1
4788               21       41986831       ZBTB21 HGNC:13083     -1
4789               21       41986831       ZBTB21 HGNC:13083     -1
4790               21       41986831       ZBTB21 HGNC:13083     -1
4791               21       41986831       ZBTB21 HGNC:13083     -1
4792               21       41986831       ZBTB21 HGNC:13083     -1
4793               21       41986831       ZBTB21 HGNC:13083     -1
4794               21       41986831       ZBTB21 HGNC:13083     -1
4795               21       41986831       ZBTB21 HGNC:13083     -1
4796               21       41986831       ZBTB21 HGNC:13083     -1
4797               21       41986831       ZBTB21 HGNC:13083     -1
4798               21       41986831       ZBTB21 HGNC:13083     -1
4799               21       41986831       ZBTB21 HGNC:13083     -1
4800               21       41986831       ZBTB21 HGNC:13083     -1
4801               21       41986831       ZBTB21 HGNC:13083     -1
4802               21       41986831       ZBTB21 HGNC:13083     -1
4803               21       41986831       ZBTB21 HGNC:13083     -1
4804               21       41986831       ZBTB21 HGNC:13083     -1
4805               21       41986831       ZBTB21 HGNC:13083     -1
4806               21       41986831       ZBTB21 HGNC:13083     -1
4807               21       41986831       ZBTB21 HGNC:13083     -1
4808               21       41986831       ZBTB21 HGNC:13083     -1
4809               21       41885112        C2CD2  HGNC:1266     -1
4810               21       41885112        C2CD2  HGNC:1266     -1
4811               21       41885112        C2CD2  HGNC:1266     -1
4812               21       41885112        C2CD2  HGNC:1266     -1
4813               21       41885112        C2CD2  HGNC:1266     -1
4814               21       41885112        C2CD2  HGNC:1266     -1
4815               21       41885112        C2CD2  HGNC:1266     -1
4816               21       41885112        C2CD2  HGNC:1266     -1
4817               21       41885112        C2CD2  HGNC:1266     -1
4818               21       41885112        C2CD2  HGNC:1266     -1
4819               21       41885112        C2CD2  HGNC:1266     -1
4820               21       41885112        C2CD2  HGNC:1266     -1
4821               21       41885112        C2CD2  HGNC:1266     -1
4822               21       41885112        C2CD2  HGNC:1266     -1
4823               21       41885112        C2CD2  HGNC:1266     -1
4824               21       41885112        C2CD2  HGNC:1266     -1
4825               21       41885112        C2CD2  HGNC:1266     -1
4826               21       41885112        C2CD2  HGNC:1266     -1
4827               21       41885112        C2CD2  HGNC:1266     -1
4828               21       41885112        C2CD2  HGNC:1266     -1
4829               21       41885112        C2CD2  HGNC:1266     -1
4830               21       41885112        C2CD2  HGNC:1266     -1
4831               21       41885112        C2CD2  HGNC:1266     -1
4832               21       41885112        C2CD2  HGNC:1266     -1
4833               21       41885112        C2CD2  HGNC:1266     -1
4834               21       41885112        C2CD2  HGNC:1266     -1
4835               21       41885112        C2CD2  HGNC:1266     -1
4836               21       41885112        C2CD2  HGNC:1266     -1
4837               21       41885112        C2CD2  HGNC:1266     -1
4838               21       41885112        C2CD2  HGNC:1266     -1
4839               21       41885112        C2CD2  HGNC:1266     -1
4840               21       41885112        C2CD2  HGNC:1266     -1
4841               21       41885112        C2CD2  HGNC:1266     -1
4842               21       41885112        C2CD2  HGNC:1266     -1
4843               21       41885112        C2CD2  HGNC:1266     -1
4844               21       41885112        C2CD2  HGNC:1266     -1
4845               21       41885112        C2CD2  HGNC:1266     -1
4846               21       41885112        C2CD2  HGNC:1266     -1
4847               21       41885112        C2CD2  HGNC:1266     -1
4848               21       41885112        C2CD2  HGNC:1266     -1
4849               21       41885112        C2CD2  HGNC:1266     -1
4850               21       41885112        C2CD2  HGNC:1266     -1
4851               21       41885112        C2CD2  HGNC:1266     -1
4852               21       41885112        C2CD2  HGNC:1266     -1
4853               21       41885112        C2CD2  HGNC:1266     -1
4854               21       41885112        C2CD2  HGNC:1266     -1
4855               21       41885112        C2CD2  HGNC:1266     -1
4856               21       41885112        C2CD2  HGNC:1266     -1
4857               21       41885112        C2CD2  HGNC:1266     -1
4858               21       41885112        C2CD2  HGNC:1266     -1
4859               21       41885112        C2CD2  HGNC:1266     -1
4860               21       41885112        C2CD2  HGNC:1266     -1
4861               21       41885112        C2CD2  HGNC:1266     -1
4862               21       41885112        C2CD2  HGNC:1266     -1
4863               21       41885112        C2CD2  HGNC:1266     -1
4864               21       41885112        C2CD2  HGNC:1266     -1
4865               21       41885112        C2CD2  HGNC:1266     -1
4866               21       41885112        C2CD2  HGNC:1266     -1
4867               21       41885112        C2CD2  HGNC:1266     -1
4868               21       41885112        C2CD2  HGNC:1266     -1
4869               21       41885112        C2CD2  HGNC:1266     -1
4870               21       41885112        C2CD2  HGNC:1266     -1
4871               21       41885112        C2CD2  HGNC:1266     -1
4872               21       41885112        C2CD2  HGNC:1266     -1
4873               21       41885112        C2CD2  HGNC:1266     -1
4874               21       41885112        C2CD2  HGNC:1266     -1
4875               21       41882205                              1
4876               21       41798225       PRDM15 HGNC:13999     -1
4877               21       41798225       PRDM15 HGNC:13999     -1
4878               21       41798225       PRDM15 HGNC:13999     -1
4879               21       41798225       PRDM15 HGNC:13999     -1
4880               21       41798225       PRDM15 HGNC:13999     -1
4881               21       41798225       PRDM15 HGNC:13999     -1
4882               21       41798225       PRDM15 HGNC:13999     -1
4883               21       41798225       PRDM15 HGNC:13999     -1
4884               21       41798225       PRDM15 HGNC:13999     -1
4885               21       41798225       PRDM15 HGNC:13999     -1
4886               21       41798225       PRDM15 HGNC:13999     -1
4887               21       41798225       PRDM15 HGNC:13999     -1
4888               21       41798225       PRDM15 HGNC:13999     -1
4889               21       41798225       PRDM15 HGNC:13999     -1
4890               21       41798225       PRDM15 HGNC:13999     -1
4891               21       41798225       PRDM15 HGNC:13999     -1
4892               21       41798225       PRDM15 HGNC:13999     -1
4893               21       41798225       PRDM15 HGNC:13999     -1
4894               21       41798225       PRDM15 HGNC:13999     -1
4895               21       41798225       PRDM15 HGNC:13999     -1
4896               21       41798225       PRDM15 HGNC:13999     -1
4897               21       41798225       PRDM15 HGNC:13999     -1
4898               21       41798225       PRDM15 HGNC:13999     -1
4899               21       41798225       PRDM15 HGNC:13999     -1
4900               21       41798225       PRDM15 HGNC:13999     -1
4901               21       41798225       PRDM15 HGNC:13999     -1
4902               21       41798225       PRDM15 HGNC:13999     -1
4903               21       41798225       PRDM15 HGNC:13999     -1
4904               21       41798225       PRDM15 HGNC:13999     -1
4905               21       41798225       PRDM15 HGNC:13999     -1
4906               21       41798225       PRDM15 HGNC:13999     -1
4907               21       41798225       PRDM15 HGNC:13999     -1
4908               21       41798225       PRDM15 HGNC:13999     -1
4909               21       41798225       PRDM15 HGNC:13999     -1
4910               21       41798225       PRDM15 HGNC:13999     -1
4911               21       41798225       PRDM15 HGNC:13999     -1
4912               21       41798225       PRDM15 HGNC:13999     -1
4913               21       41798225       PRDM15 HGNC:13999     -1
4914               21       41798225       PRDM15 HGNC:13999     -1
4915               21       41798225       PRDM15 HGNC:13999     -1
4916               21       41798225       PRDM15 HGNC:13999     -1
4917               21       41798225       PRDM15 HGNC:13999     -1
4918               21       41798225       PRDM15 HGNC:13999     -1
4919               21       41798225       PRDM15 HGNC:13999     -1
4920               21       41798225       PRDM15 HGNC:13999     -1
4921               21       41798225       PRDM15 HGNC:13999     -1
4922               21       41798225       PRDM15 HGNC:13999     -1
4923               21       41798225       PRDM15 HGNC:13999     -1
4924               21       41798225       PRDM15 HGNC:13999     -1
4925               21       41798225       PRDM15 HGNC:13999     -1
4926               21       41798225       PRDM15 HGNC:13999     -1
4927               21       41798225       PRDM15 HGNC:13999     -1
4928               21       41798225       PRDM15 HGNC:13999     -1
4929               21       41798225       PRDM15 HGNC:13999     -1
4930               21       41798225       PRDM15 HGNC:13999     -1
4931               21       41798225       PRDM15 HGNC:13999     -1
4932               21       41798225       PRDM15 HGNC:13999     -1
4933               21       41798225       PRDM15 HGNC:13999     -1
4934               21       41798225       PRDM15 HGNC:13999     -1
4935               21       41798225       PRDM15 HGNC:13999     -1
4936               21       41798225       PRDM15 HGNC:13999     -1
4937               21       41798225       PRDM15 HGNC:13999     -1
4938               21       41798225       PRDM15 HGNC:13999     -1
4939               21       41798225       PRDM15 HGNC:13999     -1
4940               21       41798225       PRDM15 HGNC:13999     -1
4941               21       41798225       PRDM15 HGNC:13999     -1
4942               21       41798225       PRDM15 HGNC:13999     -1
4943               21       41798225       PRDM15 HGNC:13999     -1
4944               21       41798225       PRDM15 HGNC:13999     -1
4945               21       41798225       PRDM15 HGNC:13999     -1
4946               21       41798225       PRDM15 HGNC:13999     -1
4947               21       41798225       PRDM15 HGNC:13999     -1
4948               21       41798225       PRDM15 HGNC:13999     -1
4949               21       41798225       PRDM15 HGNC:13999     -1
4950               21       41798225       PRDM15 HGNC:13999     -1
4951               21       41798225       PRDM15 HGNC:13999     -1
4952               21       41798225       PRDM15 HGNC:13999     -1
4953               21       41798225       PRDM15 HGNC:13999     -1
4954               21       41798225       PRDM15 HGNC:13999     -1
4955               21       41798225       PRDM15 HGNC:13999     -1
4956               21       41798225       PRDM15 HGNC:13999     -1
4957               21       41798225       PRDM15 HGNC:13999     -1
4958               21       41798225       PRDM15 HGNC:13999     -1
4959               21       41798225       PRDM15 HGNC:13999     -1
4960               21       41798225       PRDM15 HGNC:13999     -1
4961               21       41798225       PRDM15 HGNC:13999     -1
4962               21       41798225       PRDM15 HGNC:13999     -1
4963               21       41798225       PRDM15 HGNC:13999     -1
4964               21       41798225       PRDM15 HGNC:13999     -1
4965               21       41798225       PRDM15 HGNC:13999     -1
4966               21       41798225       PRDM15 HGNC:13999     -1
4967               21       41798225       PRDM15 HGNC:13999     -1
4968               21       41798225       PRDM15 HGNC:13999     -1
4969               21       41798225       PRDM15 HGNC:13999     -1
4970               21       41798225       PRDM15 HGNC:13999     -1
4971               21       41798225       PRDM15 HGNC:13999     -1
4972               21       41798225       PRDM15 HGNC:13999     -1
4973               21       41798225       PRDM15 HGNC:13999     -1
4974               21       41798225       PRDM15 HGNC:13999     -1
4975               21       41798225       PRDM15 HGNC:13999     -1
4976               21       41798225       PRDM15 HGNC:13999     -1
4977               21       41798225       PRDM15 HGNC:13999     -1
4978               21       41798225       PRDM15 HGNC:13999     -1
4979               21       41798225       PRDM15 HGNC:13999     -1
4980               21       41798225       PRDM15 HGNC:13999     -1
4981               21       41798225       PRDM15 HGNC:13999     -1
4982               21       41798225       PRDM15 HGNC:13999     -1
4983               21       41798225       PRDM15 HGNC:13999     -1
4984               21       41798225       PRDM15 HGNC:13999     -1
4985               21       41798225       PRDM15 HGNC:13999     -1
4986               21       41798225       PRDM15 HGNC:13999     -1
4987               21       41798225       PRDM15 HGNC:13999     -1
4988               21       41798225       PRDM15 HGNC:13999     -1
4989               21       41798225       PRDM15 HGNC:13999     -1
4990               21       41798225       PRDM15 HGNC:13999     -1
4991               21       41798225       PRDM15 HGNC:13999     -1
4992               21       41798225       PRDM15 HGNC:13999     -1
4993               21       41798225       PRDM15 HGNC:13999     -1
4994               21       41798225       PRDM15 HGNC:13999     -1
4995               21       41798225       PRDM15 HGNC:13999     -1
4996               21       41798225       PRDM15 HGNC:13999     -1
4997               21       41798225       PRDM15 HGNC:13999     -1
4998               21       41798225       PRDM15 HGNC:13999     -1
4999               21       41798225       PRDM15 HGNC:13999     -1
5000               21       41798225       PRDM15 HGNC:13999     -1
5001               21       41798225       PRDM15 HGNC:13999     -1
5002               21       41798225       PRDM15 HGNC:13999     -1
5003               21       41798225       PRDM15 HGNC:13999     -1
5004               21       41798225       PRDM15 HGNC:13999     -1
5005               21       41798225       PRDM15 HGNC:13999     -1
5006               21       41798225       PRDM15 HGNC:13999     -1
5007               21       41798225       PRDM15 HGNC:13999     -1
5008               21       41798225       PRDM15 HGNC:13999     -1
5009               21       41798225       PRDM15 HGNC:13999     -1
5010               21       41798225       PRDM15 HGNC:13999     -1
5011               21       41798225       PRDM15 HGNC:13999     -1
5012               21       41798225       PRDM15 HGNC:13999     -1
5013               21       41798225       PRDM15 HGNC:13999     -1
5014               21       41798225       PRDM15 HGNC:13999     -1
5015               21       41798225       PRDM15 HGNC:13999     -1
5016               21       41798225       PRDM15 HGNC:13999     -1
5017               21       41798225       PRDM15 HGNC:13999     -1
5018               21       41798225       PRDM15 HGNC:13999     -1
5019               21       41798225       PRDM15 HGNC:13999     -1
5020               21       41798225       PRDM15 HGNC:13999     -1
5021               21       41798225       PRDM15 HGNC:13999     -1
5022               21       41798225       PRDM15 HGNC:13999     -1
5023               21       41798225       PRDM15 HGNC:13999     -1
5024               21       41798225       PRDM15 HGNC:13999     -1
5025               21       41798225       PRDM15 HGNC:13999     -1
5026               21       41798225       PRDM15 HGNC:13999     -1
5027               21       41798225       PRDM15 HGNC:13999     -1
5028               21       41798225       PRDM15 HGNC:13999     -1
5029               21       41798225       PRDM15 HGNC:13999     -1
5030               21       41798225       PRDM15 HGNC:13999     -1
5031               21       41798225       PRDM15 HGNC:13999     -1
5032               21       41798225       PRDM15 HGNC:13999     -1
5033               21       41798225       PRDM15 HGNC:13999     -1
5034               21       41798225       PRDM15 HGNC:13999     -1
5035               21       41798225       PRDM15 HGNC:13999     -1
5036               21       41798225       PRDM15 HGNC:13999     -1
5037               21       41798225       PRDM15 HGNC:13999     -1
5038               21       41798225       PRDM15 HGNC:13999     -1
5039               21       41798225       PRDM15 HGNC:13999     -1
5040               21       41798225       PRDM15 HGNC:13999     -1
5041               21       41798225       PRDM15 HGNC:13999     -1
5042               21       41798225       PRDM15 HGNC:13999     -1
5043               21       41798225       PRDM15 HGNC:13999     -1
5044               21       41798225       PRDM15 HGNC:13999     -1
5045               21       41798225       PRDM15 HGNC:13999     -1
5046               21       41798225       PRDM15 HGNC:13999     -1
5047               21       41798225       PRDM15 HGNC:13999     -1
5048               21       41798225       PRDM15 HGNC:13999     -1
5049               21       41798225       PRDM15 HGNC:13999     -1
5050               21       41798225       PRDM15 HGNC:13999     -1
5051               21       41798225       PRDM15 HGNC:13999     -1
5052               21       41798225       PRDM15 HGNC:13999     -1
5053               21       41798225       PRDM15 HGNC:13999     -1
5054               21       41798225       PRDM15 HGNC:13999     -1
5055               21       41798225       PRDM15 HGNC:13999     -1
5056               21       41798225       PRDM15 HGNC:13999     -1
5057               21       41798225       PRDM15 HGNC:13999     -1
5058               21       41798225       PRDM15 HGNC:13999     -1
5059               21       41798225       PRDM15 HGNC:13999     -1
5060               21       41798225       PRDM15 HGNC:13999     -1
5061               21       41798225       PRDM15 HGNC:13999     -1
5062               21       41798225       PRDM15 HGNC:13999     -1
5063               21       41798225       PRDM15 HGNC:13999     -1
5064               21       41798225       PRDM15 HGNC:13999     -1
5065               21       41798225       PRDM15 HGNC:13999     -1
5066               21       41798225       PRDM15 HGNC:13999     -1
5067               21       41798225       PRDM15 HGNC:13999     -1
5068               21       41798225       PRDM15 HGNC:13999     -1
5069               21       41798225       PRDM15 HGNC:13999     -1
5070               21       41798225       PRDM15 HGNC:13999     -1
5071               21       41798225       PRDM15 HGNC:13999     -1
5072               21       41798225       PRDM15 HGNC:13999     -1
5073               21       41798225       PRDM15 HGNC:13999     -1
5074               21       41798225       PRDM15 HGNC:13999     -1
5075               21       41798225       PRDM15 HGNC:13999     -1
5076               21       41798225       PRDM15 HGNC:13999     -1
5077               21       41798225       PRDM15 HGNC:13999     -1
5078               21       41798225       PRDM15 HGNC:13999     -1
5079               21       41798225       PRDM15 HGNC:13999     -1
5080               21       41798225       PRDM15 HGNC:13999     -1
5081               21       41798225       PRDM15 HGNC:13999     -1
5082               21       41798225       PRDM15 HGNC:13999     -1
5083               21       41798225       PRDM15 HGNC:13999     -1
5084               21       41798225       PRDM15 HGNC:13999     -1
5085               21       41798225       PRDM15 HGNC:13999     -1
5086               21       41798225       PRDM15 HGNC:13999     -1
5087               21       41798225       PRDM15 HGNC:13999     -1
5088               21       41798225       PRDM15 HGNC:13999     -1
5089               21       41798225       PRDM15 HGNC:13999     -1
5090               21       41798225       PRDM15 HGNC:13999     -1
5091               21       41798225       PRDM15 HGNC:13999     -1
5092               21       41798225       PRDM15 HGNC:13999     -1
5093               21       41798225       PRDM15 HGNC:13999     -1
5094               21       41798225       PRDM15 HGNC:13999     -1
5095               21       41798225       PRDM15 HGNC:13999     -1
5096               21       41798225       PRDM15 HGNC:13999     -1
5097               21       41798225       PRDM15 HGNC:13999     -1
5098               21       41798225       PRDM15 HGNC:13999     -1
5099               21       41798225       PRDM15 HGNC:13999     -1
5100               21       41798225       PRDM15 HGNC:13999     -1
5101               21       41798225       PRDM15 HGNC:13999     -1
5102               21       41798225       PRDM15 HGNC:13999     -1
5103               21       41798225       PRDM15 HGNC:13999     -1
5104               21       41798225       PRDM15 HGNC:13999     -1
5105               21       41798225       PRDM15 HGNC:13999     -1
5106               21       41798225       PRDM15 HGNC:13999     -1
5107               21       41798225       PRDM15 HGNC:13999     -1
5108               21       41798225       PRDM15 HGNC:13999     -1
5109               21       41798225       PRDM15 HGNC:13999     -1
5110               21       41798225       PRDM15 HGNC:13999     -1
5111               21       41798225       PRDM15 HGNC:13999     -1
5112               21       41798225       PRDM15 HGNC:13999     -1
5113               21       41798225       PRDM15 HGNC:13999     -1
5114               21       41798225       PRDM15 HGNC:13999     -1
5115               21       41798225       PRDM15 HGNC:13999     -1
5116               21       41798225       PRDM15 HGNC:13999     -1
5117               21       41798225       PRDM15 HGNC:13999     -1
5118               21       41798225       PRDM15 HGNC:13999     -1
5119               21       41798225       PRDM15 HGNC:13999     -1
5120               21       41798225       PRDM15 HGNC:13999     -1
5121               21       41798225       PRDM15 HGNC:13999     -1
5122               21       41798225       PRDM15 HGNC:13999     -1
5123               21       41798225       PRDM15 HGNC:13999     -1
5124               21       41798225       PRDM15 HGNC:13999     -1
5125               21       41798225       PRDM15 HGNC:13999     -1
5126               21       41798225       PRDM15 HGNC:13999     -1
5127               21       41798225       PRDM15 HGNC:13999     -1
5128               21       41874756                             -1
5129               21       41874756                             -1
5130               21       41874756                             -1
5131               21       41870633                              1
5132               21       41870633                              1
5133               21       41739369        RIPK4   HGNC:496     -1
5134               21       41739369        RIPK4   HGNC:496     -1
5135               21       41739369        RIPK4   HGNC:496     -1
5136               21       41739369        RIPK4   HGNC:496     -1
5137               21       41739369        RIPK4   HGNC:496     -1
5138               21       41739369        RIPK4   HGNC:496     -1
5139               21       41739369        RIPK4   HGNC:496     -1
5140               21       41739369        RIPK4   HGNC:496     -1
5141               21       41739369        RIPK4   HGNC:496     -1
5142               21       41739369        RIPK4   HGNC:496     -1
5143               21       41739369        RIPK4   HGNC:496     -1
5144               21       41739369        RIPK4   HGNC:496     -1
5145               21       41739369        RIPK4   HGNC:496     -1
5146               21       41739369        RIPK4   HGNC:496     -1
5147               21       41739369        RIPK4   HGNC:496     -1
5148               21       41739369        RIPK4   HGNC:496     -1
5149               21       41739369        RIPK4   HGNC:496     -1
5150               21       41746772      MIR6814 HGNC:50145     -1
5151               21       41739373                              1
5152               21       41739373                              1
5153               21       41716436    LINC00112  HGNC:1263      1
5154               21       41716436    LINC00112  HGNC:1263      1
5155               21       41716436    LINC00112  HGNC:1263      1
5156               21       41711520    LINC00479 HGNC:19727     -1
5157               21       41711520    LINC00479 HGNC:19727     -1
5158               21       41711520    LINC00479 HGNC:19727     -1
5159               21       41711520    LINC00479 HGNC:19727     -1
5160               21       41711520    LINC00479 HGNC:19727     -1
5161               21       41711520    LINC00479 HGNC:19727     -1
5162               21       41711520    LINC00479 HGNC:19727     -1
5163               21       41711520    LINC00479 HGNC:19727     -1
5164               21       41711520    LINC00479 HGNC:19727     -1
5165               21       41711520    LINC00479 HGNC:19727     -1
5166               21       41711520    LINC00479 HGNC:19727     -1
5167               21       41711520    LINC00479 HGNC:19727     -1
5168               21       41711520    LINC00479 HGNC:19727     -1
5169               21       41711520    LINC00479 HGNC:19727     -1
5170               21       41711520    LINC00479 HGNC:19727     -1
5171               21       41711520    LINC00479 HGNC:19727     -1
5172               21       41711520    LINC00479 HGNC:19727     -1
5173               21       41711520    LINC00479 HGNC:19727     -1
5174               21       41711520    LINC00479 HGNC:19727     -1
5175               21       41711520    LINC00479 HGNC:19727     -1
5176               21       41679181    LINC00111  HGNC:1262      1
5177               21       41679181    LINC00111  HGNC:1262      1
5178               21       41679181    LINC00111  HGNC:1262      1
5179               21       41576135                             -1
5180               21       41576135                             -1
5181               21       41559125                             -1
5182               21       41559125                             -1
5183               21       41559125                             -1
5184               21       41539206                              1
5185               21       41464551      TMPRSS2 HGNC:11876     -1
5186               21       41464551      TMPRSS2 HGNC:11876     -1
5187               21       41464551      TMPRSS2 HGNC:11876     -1
5188               21       41464551      TMPRSS2 HGNC:11876     -1
5189               21       41464551      TMPRSS2 HGNC:11876     -1
5190               21       41464551      TMPRSS2 HGNC:11876     -1
5191               21       41464551      TMPRSS2 HGNC:11876     -1
5192               21       41464551      TMPRSS2 HGNC:11876     -1
5193               21       41464551      TMPRSS2 HGNC:11876     -1
5194               21       41464551      TMPRSS2 HGNC:11876     -1
5195               21       41464551      TMPRSS2 HGNC:11876     -1
5196               21       41464551      TMPRSS2 HGNC:11876     -1
5197               21       41464551      TMPRSS2 HGNC:11876     -1
5198               21       41464551      TMPRSS2 HGNC:11876     -1
5199               21       41464551      TMPRSS2 HGNC:11876     -1
5200               21       41464551      TMPRSS2 HGNC:11876     -1
5201               21       41464551      TMPRSS2 HGNC:11876     -1
5202               21       41464551      TMPRSS2 HGNC:11876     -1
5203               21       41464551      TMPRSS2 HGNC:11876     -1
5204               21       41464551      TMPRSS2 HGNC:11876     -1
5205               21       41464551      TMPRSS2 HGNC:11876     -1
5206               21       41464551      TMPRSS2 HGNC:11876     -1
5207               21       41464551      TMPRSS2 HGNC:11876     -1
5208               21       41464551      TMPRSS2 HGNC:11876     -1
5209               21       41464551      TMPRSS2 HGNC:11876     -1
5210               21       41464551      TMPRSS2 HGNC:11876     -1
5211               21       41464551      TMPRSS2 HGNC:11876     -1
5212               21       41464551      TMPRSS2 HGNC:11876     -1
5213               21       41464551      TMPRSS2 HGNC:11876     -1
5214               21       41464551      TMPRSS2 HGNC:11876     -1
5215               21       41464551      TMPRSS2 HGNC:11876     -1
5216               21       41464551      TMPRSS2 HGNC:11876     -1
5217               21       41464551      TMPRSS2 HGNC:11876     -1
5218               21       41464551      TMPRSS2 HGNC:11876     -1
5219               21       41464551      TMPRSS2 HGNC:11876     -1
5220               21       41464551      TMPRSS2 HGNC:11876     -1
5221               21       41464551      TMPRSS2 HGNC:11876     -1
5222               21       41464551      TMPRSS2 HGNC:11876     -1
5223               21       41464551      TMPRSS2 HGNC:11876     -1
5224               21       41464551      TMPRSS2 HGNC:11876     -1
5225               21       41464551      TMPRSS2 HGNC:11876     -1
5226               21       41464551      TMPRSS2 HGNC:11876     -1
5227               21       41464551      TMPRSS2 HGNC:11876     -1
5228               21       41464551      TMPRSS2 HGNC:11876     -1
5229               21       41464551      TMPRSS2 HGNC:11876     -1
5230               21       41464551      TMPRSS2 HGNC:11876     -1
5231               21       41464551      TMPRSS2 HGNC:11876     -1
5232               21       41464551      TMPRSS2 HGNC:11876     -1
5233               21       41464551      TMPRSS2 HGNC:11876     -1
5234               21       41464551      TMPRSS2 HGNC:11876     -1
5235               21       41464551      TMPRSS2 HGNC:11876     -1
5236               21       41464551      TMPRSS2 HGNC:11876     -1
5237               21       41464551      TMPRSS2 HGNC:11876     -1
5238               21       41464551      TMPRSS2 HGNC:11876     -1
5239               21       41464551      TMPRSS2 HGNC:11876     -1
5240               21       41464551      TMPRSS2 HGNC:11876     -1
5241               21       41464551      TMPRSS2 HGNC:11876     -1
5242               21       41464551      TMPRSS2 HGNC:11876     -1
5243               21       41464551      TMPRSS2 HGNC:11876     -1
5244               21       41464551      TMPRSS2 HGNC:11876     -1
5245               21       41464551      TMPRSS2 HGNC:11876     -1
5246               21       41464551      TMPRSS2 HGNC:11876     -1
5247               21       41464551      TMPRSS2 HGNC:11876     -1
5248               21       41464551      TMPRSS2 HGNC:11876     -1
5249               21       41464551      TMPRSS2 HGNC:11876     -1
5250               21       41464551      TMPRSS2 HGNC:11876     -1
5251               21       41464551      TMPRSS2 HGNC:11876     -1
5252               21       41464551      TMPRSS2 HGNC:11876     -1
5253               21       41464551      TMPRSS2 HGNC:11876     -1
5254               21       41464551      TMPRSS2 HGNC:11876     -1
5255               21       41464551      TMPRSS2 HGNC:11876     -1
5256               21       41464551      TMPRSS2 HGNC:11876     -1
5257               21       41464551      TMPRSS2 HGNC:11876     -1
5258               21       41464551      TMPRSS2 HGNC:11876     -1
5259               21       41464551      TMPRSS2 HGNC:11876     -1
5260               21       41464551      TMPRSS2 HGNC:11876     -1
5261               21       41464551      TMPRSS2 HGNC:11876     -1
5262               21       41464551      TMPRSS2 HGNC:11876     -1
5263               21       41464551      TMPRSS2 HGNC:11876     -1
5264               21       41464551      TMPRSS2 HGNC:11876     -1
5265               21       41420304          MX1  HGNC:7532      1
5266               21       41420304          MX1  HGNC:7532      1
5267               21       41420304          MX1  HGNC:7532      1
5268               21       41420304          MX1  HGNC:7532      1
5269               21       41420304          MX1  HGNC:7532      1
5270               21       41420304          MX1  HGNC:7532      1
5271               21       41420304          MX1  HGNC:7532      1
5272               21       41420304          MX1  HGNC:7532      1
5273               21       41420304          MX1  HGNC:7532      1
5274               21       41420304          MX1  HGNC:7532      1
5275               21       41420304          MX1  HGNC:7532      1
5276               21       41420304          MX1  HGNC:7532      1
5277               21       41420304          MX1  HGNC:7532      1
5278               21       41420304          MX1  HGNC:7532      1
5279               21       41420304          MX1  HGNC:7532      1
5280               21       41420304          MX1  HGNC:7532      1
5281               21       41420304          MX1  HGNC:7532      1
5282               21       41420304          MX1  HGNC:7532      1
5283               21       41420304          MX1  HGNC:7532      1
5284               21       41420304          MX1  HGNC:7532      1
5285               21       41420304          MX1  HGNC:7532      1
5286               21       41420304          MX1  HGNC:7532      1
5287               21       41420304          MX1  HGNC:7532      1
5288               21       41420304          MX1  HGNC:7532      1
5289               21       41420304          MX1  HGNC:7532      1
5290               21       41420304          MX1  HGNC:7532      1
5291               21       41420304          MX1  HGNC:7532      1
5292               21       41420304          MX1  HGNC:7532      1
5293               21       41420304          MX1  HGNC:7532      1
5294               21       41420304          MX1  HGNC:7532      1
5295               21       41420304          MX1  HGNC:7532      1
5296               21       41420304          MX1  HGNC:7532      1
5297               21       41420304          MX1  HGNC:7532      1
5298               21       41420304          MX1  HGNC:7532      1
5299               21       41420304          MX1  HGNC:7532      1
5300               21       41420304          MX1  HGNC:7532      1
5301               21       41420304          MX1  HGNC:7532      1
5302               21       41420304          MX1  HGNC:7532      1
5303               21       41420304          MX1  HGNC:7532      1
5304               21       41420304          MX1  HGNC:7532      1
5305               21       41420304          MX1  HGNC:7532      1
5306               21       41420304          MX1  HGNC:7532      1
5307               21       41420304          MX1  HGNC:7532      1
5308               21       41420304          MX1  HGNC:7532      1
5309               21       41420304          MX1  HGNC:7532      1
5310               21       41420304          MX1  HGNC:7532      1
5311               21       41420304          MX1  HGNC:7532      1
5312               21       41420304          MX1  HGNC:7532      1
5313               21       41420304          MX1  HGNC:7532      1
5314               21       41420304          MX1  HGNC:7532      1
5315               21       41420304          MX1  HGNC:7532      1
5316               21       41420304          MX1  HGNC:7532      1
5317               21       41420304          MX1  HGNC:7532      1
5318               21       41420304          MX1  HGNC:7532      1
5319               21       41420304          MX1  HGNC:7532      1
5320               21       41420304          MX1  HGNC:7532      1
5321               21       41420304          MX1  HGNC:7532      1
5322               21       41420304          MX1  HGNC:7532      1
5323               21       41420304          MX1  HGNC:7532      1
5324               21       41420304          MX1  HGNC:7532      1
5325               21       41420304          MX1  HGNC:7532      1
5326               21       41420304          MX1  HGNC:7532      1
5327               21       41420304          MX1  HGNC:7532      1
5328               21       41420304          MX1  HGNC:7532      1
5329               21       41420304          MX1  HGNC:7532      1
5330               21       41420304          MX1  HGNC:7532      1
5331               21       41420304          MX1  HGNC:7532      1
5332               21       41420304          MX1  HGNC:7532      1
5333               21       41420304          MX1  HGNC:7532      1
5334               21       41420304          MX1  HGNC:7532      1
5335               21       41420304          MX1  HGNC:7532      1
5336               21       41420304          MX1  HGNC:7532      1
5337               21       41420304          MX1  HGNC:7532      1
5338               21       41420304          MX1  HGNC:7532      1
5339               21       41420304          MX1  HGNC:7532      1
5340               21       41420304          MX1  HGNC:7532      1
5341               21       41420304          MX1  HGNC:7532      1
5342               21       41420304          MX1  HGNC:7532      1
5343               21       41420304          MX1  HGNC:7532      1
5344               21       41420304          MX1  HGNC:7532      1
5345               21       41420304          MX1  HGNC:7532      1
5346               21       41420304          MX1  HGNC:7532      1
5347               21       41420304          MX1  HGNC:7532      1
5348               21       41420304          MX1  HGNC:7532      1
5349               21       41420304          MX1  HGNC:7532      1
5350               21       41420304          MX1  HGNC:7532      1
5351               21       41420304          MX1  HGNC:7532      1
5352               21       41420304          MX1  HGNC:7532      1
5353               21       41420304          MX1  HGNC:7532      1
5354               21       41420304          MX1  HGNC:7532      1
5355               21       41420304          MX1  HGNC:7532      1
5356               21       41420304          MX1  HGNC:7532      1
5357               21       41420304          MX1  HGNC:7532      1
5358               21       41420304          MX1  HGNC:7532      1
5359               21       41420304          MX1  HGNC:7532      1
5360               21       41420304          MX1  HGNC:7532      1
5361               21       41420304          MX1  HGNC:7532      1
5362               21       41420304          MX1  HGNC:7532      1
5363               21       41420304          MX1  HGNC:7532      1
5364               21       41420304          MX1  HGNC:7532      1
5365               21       41420304          MX1  HGNC:7532      1
5366               21       41420304          MX1  HGNC:7532      1
5367               21       41420304          MX1  HGNC:7532      1
5368               21       41420304          MX1  HGNC:7532      1
5369               21       41420304          MX1  HGNC:7532      1
5370               21       41420304          MX1  HGNC:7532      1
5371               21       41420304          MX1  HGNC:7532      1
5372               21       41420304          MX1  HGNC:7532      1
5373               21       41420304          MX1  HGNC:7532      1
5374               21       41420304          MX1  HGNC:7532      1
5375               21       41420304          MX1  HGNC:7532      1
5376               21       41420304          MX1  HGNC:7532      1
5377               21       41420304          MX1  HGNC:7532      1
5378               21       41420304          MX1  HGNC:7532      1
5379               21       41420304          MX1  HGNC:7532      1
5380               21       41420304          MX1  HGNC:7532      1
5381               21       41420304          MX1  HGNC:7532      1
5382               21       41420304          MX1  HGNC:7532      1
5383               21       41420304          MX1  HGNC:7532      1
5384               21       41420304          MX1  HGNC:7532      1
5385               21       41420304          MX1  HGNC:7532      1
5386               21       41420304          MX1  HGNC:7532      1
5387               21       41420304          MX1  HGNC:7532      1
5388               21       41420304          MX1  HGNC:7532      1
5389               21       41420304          MX1  HGNC:7532      1
5390               21       41420304          MX1  HGNC:7532      1
5391               21       41420304          MX1  HGNC:7532      1
5392               21       41420304          MX1  HGNC:7532      1
5393               21       41420304          MX1  HGNC:7532      1
5394               21       41420304          MX1  HGNC:7532      1
5395               21       41420304          MX1  HGNC:7532      1
5396               21       41420304          MX1  HGNC:7532      1
5397               21       41441056                             -1
5398               21       41441056                             -1
5399               21       41441056                             -1
5400               21       41361943          MX2  HGNC:7533      1
5401               21       41361943          MX2  HGNC:7533      1
5402               21       41361943          MX2  HGNC:7533      1
5403               21       41361943          MX2  HGNC:7533      1
5404               21       41361943          MX2  HGNC:7533      1
5405               21       41361943          MX2  HGNC:7533      1
5406               21       41361943          MX2  HGNC:7533      1
5407               21       41361943          MX2  HGNC:7533      1
5408               21       41361943          MX2  HGNC:7533      1
5409               21       41361943          MX2  HGNC:7533      1
5410               21       41361943          MX2  HGNC:7533      1
5411               21       41361943          MX2  HGNC:7533      1
5412               21       41361943          MX2  HGNC:7533      1
5413               21       41361943          MX2  HGNC:7533      1
5414               21       41361943          MX2  HGNC:7533      1
5415               21       41361943          MX2  HGNC:7533      1
5416               21       41361943          MX2  HGNC:7533      1
5417               21       41361943          MX2  HGNC:7533      1
5418               21       41361943          MX2  HGNC:7533      1
5419               21       41361943          MX2  HGNC:7533      1
5420               21       41361943          MX2  HGNC:7533      1
5421               21       41361943          MX2  HGNC:7533      1
5422               21       41361943          MX2  HGNC:7533      1
5423               21       41361943          MX2  HGNC:7533      1
5424               21       41361943          MX2  HGNC:7533      1
5425               21       41361943          MX2  HGNC:7533      1
5426               21       41361943          MX2  HGNC:7533      1
5427               21       41361943          MX2  HGNC:7533      1
5428               21       41361943          MX2  HGNC:7533      1
5429               21       41361943          MX2  HGNC:7533      1
5430               21       41361943          MX2  HGNC:7533      1
5431               21       41361943          MX2  HGNC:7533      1
5432               21       41361943          MX2  HGNC:7533      1
5433               21       41361943          MX2  HGNC:7533      1
5434               21       41361943          MX2  HGNC:7533      1
5435               21       41361943          MX2  HGNC:7533      1
5436               21       41361943          MX2  HGNC:7533      1
5437               21       41361943          MX2  HGNC:7533      1
5438               21       41361943          MX2  HGNC:7533      1
5439               21       41361943          MX2  HGNC:7533      1
5440               21       41361943          MX2  HGNC:7533      1
5441               21       41361943          MX2  HGNC:7533      1
5442               21       41361943          MX2  HGNC:7533      1
5443               21       41361943          MX2  HGNC:7533      1
5444               21       41361943          MX2  HGNC:7533      1
5445               21       41361943          MX2  HGNC:7533      1
5446               21       41361943          MX2  HGNC:7533      1
5447               21       41361943          MX2  HGNC:7533      1
5448               21       41361943          MX2  HGNC:7533      1
5449               21       41361943          MX2  HGNC:7533      1
5450               21       41361943          MX2  HGNC:7533      1
5451               21       41361943          MX2  HGNC:7533      1
5452               21       41361943          MX2  HGNC:7533      1
5453               21       41361943          MX2  HGNC:7533      1
5454               21       41361943          MX2  HGNC:7533      1
5455               21       41361943          MX2  HGNC:7533      1
5456               21       41361943          MX2  HGNC:7533      1
5457               21       41361943          MX2  HGNC:7533      1
5458               21       41361943          MX2  HGNC:7533      1
5459               21       41361943          MX2  HGNC:7533      1
5460               21       41361943          MX2  HGNC:7533      1
5461               21       41361943          MX2  HGNC:7533      1
5462               21       41304212        FAM3B  HGNC:1253      1
5463               21       41304212        FAM3B  HGNC:1253      1
5464               21       41304212        FAM3B  HGNC:1253      1
5465               21       41304212        FAM3B  HGNC:1253      1
5466               21       41304212        FAM3B  HGNC:1253      1
5467               21       41304212        FAM3B  HGNC:1253      1
5468               21       41304212        FAM3B  HGNC:1253      1
5469               21       41304212        FAM3B  HGNC:1253      1
5470               21       41304212        FAM3B  HGNC:1253      1
5471               21       41304212        FAM3B  HGNC:1253      1
5472               21       41304212        FAM3B  HGNC:1253      1
5473               21       41304212        FAM3B  HGNC:1253      1
5474               21       41304212        FAM3B  HGNC:1253      1
5475               21       41304212        FAM3B  HGNC:1253      1
5476               21       41304212        FAM3B  HGNC:1253      1
5477               21       41304212        FAM3B  HGNC:1253      1
5478               21       41304212        FAM3B  HGNC:1253      1
5479               21       41304212        FAM3B  HGNC:1253      1
5480               21       41304212        FAM3B  HGNC:1253      1
5481               21       41304212        FAM3B  HGNC:1253      1
5482               21       41304212        FAM3B  HGNC:1253      1
5483               21       41304212        FAM3B  HGNC:1253      1
5484               21       41304212        FAM3B  HGNC:1253      1
5485               21       41304212        FAM3B  HGNC:1253      1
5486               21       41304212        FAM3B  HGNC:1253      1
5487               21       41304212        FAM3B  HGNC:1253      1
5488               21       41304212        FAM3B  HGNC:1253      1
5489               21       41304212        FAM3B  HGNC:1253      1
5490               21       41304212        FAM3B  HGNC:1253      1
5491               21       41304212        FAM3B  HGNC:1253      1
5492               21       41304212        FAM3B  HGNC:1253      1
5493               21       41304212        FAM3B  HGNC:1253      1
5494               21       41304212        FAM3B  HGNC:1253      1
5495               21       41304212        FAM3B  HGNC:1253      1
5496               21       41304212        FAM3B  HGNC:1253      1
5497               21       41304212        FAM3B  HGNC:1253      1
5498               21       41304212        FAM3B  HGNC:1253      1
5499               21       41304212        FAM3B  HGNC:1253      1
5500               21       41304212        FAM3B  HGNC:1253      1
5501               21       41304212        FAM3B  HGNC:1253      1
5502               21       41304212        FAM3B  HGNC:1253      1
5503               21       41304212        FAM3B  HGNC:1253      1
5504               21       41304212        FAM3B  HGNC:1253      1
5505               21       41304212        FAM3B  HGNC:1253      1
5506               21       41304212        FAM3B  HGNC:1253      1
5507               21       41304212        FAM3B  HGNC:1253      1
5508               21       41167801        BACE2   HGNC:934      1
5509               21       41167801        BACE2   HGNC:934      1
5510               21       41167801        BACE2   HGNC:934      1
5511               21       41167801        BACE2   HGNC:934      1
5512               21       41167801        BACE2   HGNC:934      1
5513               21       41167801        BACE2   HGNC:934      1
5514               21       41167801        BACE2   HGNC:934      1
5515               21       41167801        BACE2   HGNC:934      1
5516               21       41167801        BACE2   HGNC:934      1
5517               21       41167801        BACE2   HGNC:934      1
5518               21       41167801        BACE2   HGNC:934      1
5519               21       41167801        BACE2   HGNC:934      1
5520               21       41167801        BACE2   HGNC:934      1
5521               21       41167801        BACE2   HGNC:934      1
5522               21       41167801        BACE2   HGNC:934      1
5523               21       41167801        BACE2   HGNC:934      1
5524               21       41167801        BACE2   HGNC:934      1
5525               21       41167801        BACE2   HGNC:934      1
5526               21       41167801        BACE2   HGNC:934      1
5527               21       41167801        BACE2   HGNC:934      1
5528               21       41167801        BACE2   HGNC:934      1
5529               21       41167801        BACE2   HGNC:934      1
5530               21       41167801        BACE2   HGNC:934      1
5531               21       41167801        BACE2   HGNC:934      1
5532               21       41167801        BACE2   HGNC:934      1
5533               21       41167801        BACE2   HGNC:934      1
5534               21       41167801        BACE2   HGNC:934      1
5535               21       41167801        BACE2   HGNC:934      1
5536               21       41167801        BACE2   HGNC:934      1
5537               21       41167801        BACE2   HGNC:934      1
5538               21       41167801        BACE2   HGNC:934      1
5539               21       41167801        BACE2   HGNC:934      1
5540               21       41167801        BACE2   HGNC:934      1
5541               21       41167801        BACE2   HGNC:934      1
5542               21       41167801        BACE2   HGNC:934      1
5543               21       41167801        BACE2   HGNC:934      1
5544               21       41167801        BACE2   HGNC:934      1
5545               21       41167801        BACE2   HGNC:934      1
5546               21       41167801        BACE2   HGNC:934      1
5547               21       41167801        BACE2   HGNC:934      1
5548               21       41167801        BACE2   HGNC:934      1
5549               21       41167801        BACE2   HGNC:934      1
5550               21       41167801        BACE2   HGNC:934      1
5551               21       41167801        BACE2   HGNC:934      1
5552               21       41167801        BACE2   HGNC:934      1
5553               21       41167801        BACE2   HGNC:934      1
5554               21       41167801        BACE2   HGNC:934      1
5555               21       41167801        BACE2   HGNC:934      1
5556               21       41167801        BACE2   HGNC:934      1
5557               21       41167801        BACE2   HGNC:934      1
5558               21       41167801        BACE2   HGNC:934      1
5559               21       41167801        BACE2   HGNC:934      1
5560               21       41167801        BACE2   HGNC:934      1
5561               21       41167801        BACE2   HGNC:934      1
5562               21       41167801        BACE2   HGNC:934      1
5563               21       41167801        BACE2   HGNC:934      1
5564               21       41167801        BACE2   HGNC:934      1
5565               21       41167801        BACE2   HGNC:934      1
5566               21       41167801        BACE2   HGNC:934      1
5567               21       41167801        BACE2   HGNC:934      1
5568               21       41167801        BACE2   HGNC:934      1
5569               21       41167801        BACE2   HGNC:934      1
5570               21       41167801        BACE2   HGNC:934      1
5571               21       41167801        BACE2   HGNC:934      1
5572               21       41167801        BACE2   HGNC:934      1
5573               21       41176322                             -1
5574               21       41176322                             -1
5575               21       41176322                             -1
5576               21       41176322                             -1
5577               21       41176322                             -1
5578               21       41176322                             -1
5579               21       41176322                             -1
5580               21       41176322                             -1
5581               21       41176322                             -1
5582               21       41176322                             -1
5583               21       41175231        PLAC4 HGNC:14616     -1
5584               21       41175231        PLAC4 HGNC:14616     -1
5585               21       41180097    BACE2-IT1 HGNC:16024      1
5586               21       41180097    BACE2-IT1 HGNC:16024      1
5587               21       41167557      MIR3197 HGNC:38366      1
5588               21       41141493    LINC00323 HGNC:19720     -1
5589               21       41141493    LINC00323 HGNC:19720     -1
5590               21       41141493    LINC00323 HGNC:19720     -1
5591               21       41141493    LINC00323 HGNC:19720     -1
5592               21       41141493    LINC00323 HGNC:19720     -1
5593               21       41141493    LINC00323 HGNC:19720     -1
5594               21       41141493    LINC00323 HGNC:19720     -1
5595               21       40863994       YRDCP3 HGNC:39921      1
5596               21       40010999        DSCAM  HGNC:3039     -1
5597               21       40010999        DSCAM  HGNC:3039     -1
5598               21       40010999        DSCAM  HGNC:3039     -1
5599               21       40010999        DSCAM  HGNC:3039     -1
5600               21       40010999        DSCAM  HGNC:3039     -1
5601               21       40010999        DSCAM  HGNC:3039     -1
5602               21       40010999        DSCAM  HGNC:3039     -1
5603               21       40010999        DSCAM  HGNC:3039     -1
5604               21       40010999        DSCAM  HGNC:3039     -1
5605               21       40010999        DSCAM  HGNC:3039     -1
5606               21       40010999        DSCAM  HGNC:3039     -1
5607               21       40010999        DSCAM  HGNC:3039     -1
5608               21       40010999        DSCAM  HGNC:3039     -1
5609               21       40010999        DSCAM  HGNC:3039     -1
5610               21       40010999        DSCAM  HGNC:3039     -1
5611               21       40010999        DSCAM  HGNC:3039     -1
5612               21       40010999        DSCAM  HGNC:3039     -1
5613               21       40010999        DSCAM  HGNC:3039     -1
5614               21       40010999        DSCAM  HGNC:3039     -1
5615               21       40010999        DSCAM  HGNC:3039     -1
5616               21       40010999        DSCAM  HGNC:3039     -1
5617               21       40010999        DSCAM  HGNC:3039     -1
5618               21       40010999        DSCAM  HGNC:3039     -1
5619               21       40010999        DSCAM  HGNC:3039     -1
5620               21       40010999        DSCAM  HGNC:3039     -1
5621               21       40010999        DSCAM  HGNC:3039     -1
5622               21       40010999        DSCAM  HGNC:3039     -1
5623               21       40010999        DSCAM  HGNC:3039     -1
5624               21       40010999        DSCAM  HGNC:3039     -1
5625               21       40010999        DSCAM  HGNC:3039     -1
5626               21       40010999        DSCAM  HGNC:3039     -1
5627               21       40010999        DSCAM  HGNC:3039     -1
5628               21       40010999        DSCAM  HGNC:3039     -1
5629               21       40010999        DSCAM  HGNC:3039     -1
5630               21       40010999        DSCAM  HGNC:3039     -1
5631               21       40010999        DSCAM  HGNC:3039     -1
5632               21       40010999        DSCAM  HGNC:3039     -1
5633               21       40010999        DSCAM  HGNC:3039     -1
5634               21       40010999        DSCAM  HGNC:3039     -1
5635               21       40010999        DSCAM  HGNC:3039     -1
5636               21       40010999        DSCAM  HGNC:3039     -1
5637               21       40010999        DSCAM  HGNC:3039     -1
5638               21       40010999        DSCAM  HGNC:3039     -1
5639               21       40010999        DSCAM  HGNC:3039     -1
5640               21       40010999        DSCAM  HGNC:3039     -1
5641               21       40010999        DSCAM  HGNC:3039     -1
5642               21       40010999        DSCAM  HGNC:3039     -1
5643               21       40010999        DSCAM  HGNC:3039     -1
5644               21       40010999        DSCAM  HGNC:3039     -1
5645               21       40010999        DSCAM  HGNC:3039     -1
5646               21       40010999        DSCAM  HGNC:3039     -1
5647               21       40010999        DSCAM  HGNC:3039     -1
5648               21       40010999        DSCAM  HGNC:3039     -1
5649               21       40010999        DSCAM  HGNC:3039     -1
5650               21       40010999        DSCAM  HGNC:3039     -1
5651               21       40010999        DSCAM  HGNC:3039     -1
5652               21       40010999        DSCAM  HGNC:3039     -1
5653               21       40010999        DSCAM  HGNC:3039     -1
5654               21       40010999        DSCAM  HGNC:3039     -1
5655               21       40010999        DSCAM  HGNC:3039     -1
5656               21       40010999        DSCAM  HGNC:3039     -1
5657               21       40010999        DSCAM  HGNC:3039     -1
5658               21       40010999        DSCAM  HGNC:3039     -1
5659               21       40010999        DSCAM  HGNC:3039     -1
5660               21       40010999        DSCAM  HGNC:3039     -1
5661               21       40010999        DSCAM  HGNC:3039     -1
5662               21       40010999        DSCAM  HGNC:3039     -1
5663               21       40010999        DSCAM  HGNC:3039     -1
5664               21       40010999        DSCAM  HGNC:3039     -1
5665               21       40010999        DSCAM  HGNC:3039     -1
5666               21       40010999        DSCAM  HGNC:3039     -1
5667               21       40010999        DSCAM  HGNC:3039     -1
5668               21       40010999        DSCAM  HGNC:3039     -1
5669               21       40010999        DSCAM  HGNC:3039     -1
5670               21       40010999        DSCAM  HGNC:3039     -1
5671               21       40010999        DSCAM  HGNC:3039     -1
5672               21       40010999        DSCAM  HGNC:3039     -1
5673               21       40010999        DSCAM  HGNC:3039     -1
5674               21       40010999        DSCAM  HGNC:3039     -1
5675               21       40010999        DSCAM  HGNC:3039     -1
5676               21       40010999        DSCAM  HGNC:3039     -1
5677               21       40010999        DSCAM  HGNC:3039     -1
5678               21       40010999        DSCAM  HGNC:3039     -1
5679               21       40010999        DSCAM  HGNC:3039     -1
5680               21       40010999        DSCAM  HGNC:3039     -1
5681               21       40010999        DSCAM  HGNC:3039     -1
5682               21       40010999        DSCAM  HGNC:3039     -1
5683               21       40010999        DSCAM  HGNC:3039     -1
5684               21       40010999        DSCAM  HGNC:3039     -1
5685               21       40010999        DSCAM  HGNC:3039     -1
5686               21       40010999        DSCAM  HGNC:3039     -1
5687               21       40010999        DSCAM  HGNC:3039     -1
5688               21       40615378    DSCAM-IT1 HGNC:41327     -1
5689               21       40615378    DSCAM-IT1 HGNC:41327     -1
5690               21       40615378    DSCAM-IT1 HGNC:41327     -1
5691               21       40615378    DSCAM-IT1 HGNC:41327     -1
5692               21       40615378    DSCAM-IT1 HGNC:41327     -1
5693               21       40615378    DSCAM-IT1 HGNC:41327     -1
5694               21       40615378    DSCAM-IT1 HGNC:41327     -1
5695               21       40615378    DSCAM-IT1 HGNC:41327     -1
5696               21       40513144                              1
5697               21       40383083    DSCAM-AS1 HGNC:40197      1
5698               21       40383083    DSCAM-AS1 HGNC:40197      1
5699               21       40383083    DSCAM-AS1 HGNC:40197      1
5700               21       40383083    DSCAM-AS1 HGNC:40197      1
5701               21       40383083    DSCAM-AS1 HGNC:40197      1
5702               21       40383083    DSCAM-AS1 HGNC:40197      1
5703               21       40383083    DSCAM-AS1 HGNC:40197      1
5704               21       40383083    DSCAM-AS1 HGNC:40197      1
5705               21       40383083    DSCAM-AS1 HGNC:40197      1
5706               21       40383083    DSCAM-AS1 HGNC:40197      1
5707               21       40212352      MIR4760 HGNC:41698     -1
5708               21       39867317         PCP4  HGNC:8742      1
5709               21       39867317         PCP4  HGNC:8742      1
5710               21       39867317         PCP4  HGNC:8742      1
5711               21       39867317         PCP4  HGNC:8742      1
5712               21       39867317         PCP4  HGNC:8742      1
5713               21       39867317         PCP4  HGNC:8742      1
5714               21       39867317         PCP4  HGNC:8742      1
5715               21       39867317         PCP4  HGNC:8742      1
5716               21       39867317         PCP4  HGNC:8742      1
5717               21       39867317         PCP4  HGNC:8742      1
5718               21       39867317         PCP4  HGNC:8742      1
5719               21       39867317         PCP4  HGNC:8742      1
5720               21       39867317         PCP4  HGNC:8742      1
5721               21       39867317         PCP4  HGNC:8742      1
5722               21       39745407        IGSF5  HGNC:5952      1
5723               21       39745407        IGSF5  HGNC:5952      1
5724               21       39745407        IGSF5  HGNC:5952      1
5725               21       39745407        IGSF5  HGNC:5952      1
5726               21       39745407        IGSF5  HGNC:5952      1
5727               21       39745407        IGSF5  HGNC:5952      1
5728               21       39745407        IGSF5  HGNC:5952      1
5729               21       39745407        IGSF5  HGNC:5952      1
5730               21       39745407        IGSF5  HGNC:5952      1
5731               21       39745407        IGSF5  HGNC:5952      1
5732               21       39745407        IGSF5  HGNC:5952      1
5733               21       39745407        IGSF5  HGNC:5952      1
5734               21       39745407        IGSF5  HGNC:5952      1
5735               21       39745407        IGSF5  HGNC:5952      1
5736               21       39745407        IGSF5  HGNC:5952      1
5737               21       39745407        IGSF5  HGNC:5952      1
5738               21       39745407        IGSF5  HGNC:5952      1
5739               21       39727755                              1
5740               21       39727755                              1
5741               21       39727755                              1
5742               21       39727755                              1
5743               21       39727755                              1
5744               21       39630271                              1
5745               21       39630271                              1
5746               21       39630271                              1
5747               21       39556442      B3GALT5   HGNC:920      1
5748               21       39556442      B3GALT5   HGNC:920      1
5749               21       39556442      B3GALT5   HGNC:920      1
5750               21       39556442      B3GALT5   HGNC:920      1
5751               21       39556442      B3GALT5   HGNC:920      1
5752               21       39556442      B3GALT5   HGNC:920      1
5753               21       39556442      B3GALT5   HGNC:920      1
5754               21       39556442      B3GALT5   HGNC:920      1
5755               21       39556442      B3GALT5   HGNC:920      1
5756               21       39556442      B3GALT5   HGNC:920      1
5757               21       39556442      B3GALT5   HGNC:920      1
5758               21       39556442      B3GALT5   HGNC:920      1
5759               21       39556442      B3GALT5   HGNC:920      1
5760               21       39556442      B3GALT5   HGNC:920      1
5761               21       39556442      B3GALT5   HGNC:920      1
5762               21       39556442      B3GALT5   HGNC:920      1
5763               21       39556442      B3GALT5   HGNC:920      1
5764               21       39556442      B3GALT5   HGNC:920      1
5765               21       39597147  B3GALT5-AS1 HGNC:16424     -1
5766               21       39597147  B3GALT5-AS1 HGNC:16424     -1
5767               21       39597147  B3GALT5-AS1 HGNC:16424     -1
5768               21       39597147  B3GALT5-AS1 HGNC:16424     -1
5769               21       39597147  B3GALT5-AS1 HGNC:16424     -1
5770               21       39597147  B3GALT5-AS1 HGNC:16424     -1
5771               21       39597147  B3GALT5-AS1 HGNC:16424     -1
5772               21       39597147  B3GALT5-AS1 HGNC:16424     -1
5773               21       39597147  B3GALT5-AS1 HGNC:16424     -1
5774               21       39597147  B3GALT5-AS1 HGNC:16424     -1
5775               21       39597147  B3GALT5-AS1 HGNC:16424     -1
5776               21       39525583                              1
5777               21       39525583                              1
5778               21       39445855       SH3BGR HGNC:10822      1
5779               21       39445855       SH3BGR HGNC:10822      1
5780               21       39445855       SH3BGR HGNC:10822      1
5781               21       39445855       SH3BGR HGNC:10822      1
5782               21       39445855       SH3BGR HGNC:10822      1
5783               21       39445855       SH3BGR HGNC:10822      1
5784               21       39445855       SH3BGR HGNC:10822      1
5785               21       39445855       SH3BGR HGNC:10822      1
5786               21       39445855       SH3BGR HGNC:10822      1
5787               21       39445855       SH3BGR HGNC:10822      1
5788               21       39445855       SH3BGR HGNC:10822      1
5789               21       39445855       SH3BGR HGNC:10822      1
5790               21       39445855       SH3BGR HGNC:10822      1
5791               21       39445855       SH3BGR HGNC:10822      1
5792               21       39445855       SH3BGR HGNC:10822      1
5793               21       39445855       SH3BGR HGNC:10822      1
5794               21       39445855       SH3BGR HGNC:10822      1
5795               21       39445855       SH3BGR HGNC:10822      1
5796               21       39445855       SH3BGR HGNC:10822      1
5797               21       39445855       SH3BGR HGNC:10822      1
5798               21       39445855       SH3BGR HGNC:10822      1
5799               21       39445855       SH3BGR HGNC:10822      1
5800               21       39445855       SH3BGR HGNC:10822      1
5801               21       39445855       SH3BGR HGNC:10822      1
5802               21       39445855       SH3BGR HGNC:10822      1
5803               21       39445855       SH3BGR HGNC:10822      1
5804               21       39445855       SH3BGR HGNC:10822      1
5805               21       39445855       SH3BGR HGNC:10822      1
5806               21       39445855       SH3BGR HGNC:10822      1
5807               21       39445855       SH3BGR HGNC:10822      1
5808               21       39445855       SH3BGR HGNC:10822      1
5809               21       39445855       SH3BGR HGNC:10822      1
5810               21       39445855       SH3BGR HGNC:10822      1
5811               21       39445855       SH3BGR HGNC:10822      1
5812               21       39445855       SH3BGR HGNC:10822      1
5813               21       39445855       SH3BGR HGNC:10822      1
5814               21       39445855       SH3BGR HGNC:10822      1
5815               21       39445855       SH3BGR HGNC:10822      1
5816               21       39445855       SH3BGR HGNC:10822      1
5817               21       39445855       SH3BGR HGNC:10822      1
5818               21       39445855       SH3BGR HGNC:10822      1
5819               21       39445855       SH3BGR HGNC:10822      1
5820               21       39445855       SH3BGR HGNC:10822      1
5821               21       39445855       SH3BGR HGNC:10822      1
5822               21       39445855       SH3BGR HGNC:10822      1
5823               21       39445855       SH3BGR HGNC:10822      1
5824               21       39445855       SH3BGR HGNC:10822      1
5825               21       39445855       SH3BGR HGNC:10822      1
5826               21       39445855       SH3BGR HGNC:10822      1
5827               21       39445855       SH3BGR HGNC:10822      1
5828               21       39445855       SH3BGR HGNC:10822      1
5829               21       39445855       SH3BGR HGNC:10822      1
5830               21       39491544      RPS26P4 HGNC:23775     -1
5831               21       39488327       MYL6P2 HGNC:23772      1
5832               21       39447010      MIR6508 HGNC:50217      1
5833               21       39405844        LCA5L  HGNC:1255     -1
5834               21       39405844        LCA5L  HGNC:1255     -1
5835               21       39405844        LCA5L  HGNC:1255     -1
5836               21       39405844        LCA5L  HGNC:1255     -1
5837               21       39405844        LCA5L  HGNC:1255     -1
5838               21       39405844        LCA5L  HGNC:1255     -1
5839               21       39405844        LCA5L  HGNC:1255     -1
5840               21       39405844        LCA5L  HGNC:1255     -1
5841               21       39405844        LCA5L  HGNC:1255     -1
5842               21       39405844        LCA5L  HGNC:1255     -1
5843               21       39405844        LCA5L  HGNC:1255     -1
5844               21       39405844        LCA5L  HGNC:1255     -1
5845               21       39405844        LCA5L  HGNC:1255     -1
5846               21       39405844        LCA5L  HGNC:1255     -1
5847               21       39405844        LCA5L  HGNC:1255     -1
5848               21       39405844        LCA5L  HGNC:1255     -1
5849               21       39405844        LCA5L  HGNC:1255     -1
5850               21       39405844        LCA5L  HGNC:1255     -1
5851               21       39405844        LCA5L  HGNC:1255     -1
5852               21       39405844        LCA5L  HGNC:1255     -1
5853               21       39405844        LCA5L  HGNC:1255     -1
5854               21       39405844        LCA5L  HGNC:1255     -1
5855               21       39405844        LCA5L  HGNC:1255     -1
5856               21       39405844        LCA5L  HGNC:1255     -1
5857               21       39405844        LCA5L  HGNC:1255     -1
5858               21       39405844        LCA5L  HGNC:1255     -1
5859               21       39405844        LCA5L  HGNC:1255     -1
5860               21       39405844        LCA5L  HGNC:1255     -1
5861               21       39405844        LCA5L  HGNC:1255     -1
5862               21       39405844        LCA5L  HGNC:1255     -1
5863               21       39405844        LCA5L  HGNC:1255     -1
5864               21       39405844        LCA5L  HGNC:1255     -1
5865               21       39405844        LCA5L  HGNC:1255     -1
5866               21       39405844        LCA5L  HGNC:1255     -1
5867               21       39405844        LCA5L  HGNC:1255     -1
5868               21       39405844        LCA5L  HGNC:1255     -1
5869               21       39405844        LCA5L  HGNC:1255     -1
5870               21       39405844        LCA5L  HGNC:1255     -1
5871               21       39405844        LCA5L  HGNC:1255     -1
5872               21       39405844        LCA5L  HGNC:1255     -1
5873               21       39405844        LCA5L  HGNC:1255     -1
5874               21       39405844        LCA5L  HGNC:1255     -1
5875               21       39405844        LCA5L  HGNC:1255     -1
5876               21       39405844        LCA5L  HGNC:1255     -1
5877               21       39405844        LCA5L  HGNC:1255     -1
5878               21       39405844        LCA5L  HGNC:1255     -1
5879               21       39405844        LCA5L  HGNC:1255     -1
5880               21       39405844        LCA5L  HGNC:1255     -1
5881               21       39405844        LCA5L  HGNC:1255     -1
5882               21       39405844        LCA5L  HGNC:1255     -1
5883               21       39405844        LCA5L  HGNC:1255     -1
5884               21       39405844        LCA5L  HGNC:1255     -1
5885               21       39405844        LCA5L  HGNC:1255     -1
5886               21       39405844        LCA5L  HGNC:1255     -1
5887               21       39405844        LCA5L  HGNC:1255     -1
5888               21       39405844        LCA5L  HGNC:1255     -1
5889               21       39405844        LCA5L  HGNC:1255     -1
5890               21       39405844        LCA5L  HGNC:1255     -1
5891               21       39405844        LCA5L  HGNC:1255     -1
5892               21       39405844        LCA5L  HGNC:1255     -1
5893               21       39405844        LCA5L  HGNC:1255     -1
5894               21       39405844        LCA5L  HGNC:1255     -1
5895               21       39405844        LCA5L  HGNC:1255     -1
5896               21       39405844        LCA5L  HGNC:1255     -1
5897               21       39405844        LCA5L  HGNC:1255     -1
5898               21       39405844        LCA5L  HGNC:1255     -1
5899               21       39405844        LCA5L  HGNC:1255     -1
5900               21       39405844        LCA5L  HGNC:1255     -1
5901               21       39405844        LCA5L  HGNC:1255     -1
5902               21       39405844        LCA5L  HGNC:1255     -1
5903               21       39405844        LCA5L  HGNC:1255     -1
5904               21       39405844        LCA5L  HGNC:1255     -1
5905               21       39405844        LCA5L  HGNC:1255     -1
5906               21       39405844        LCA5L  HGNC:1255     -1
5907               21       39405844        LCA5L  HGNC:1255     -1
5908               21       39405844        LCA5L  HGNC:1255     -1
5909               21       39405844        LCA5L  HGNC:1255     -1
5910               21       39405844        LCA5L  HGNC:1255     -1
5911               21       39405844        LCA5L  HGNC:1255     -1
5912               21       39405844        LCA5L  HGNC:1255     -1
5913               21       39405844        LCA5L  HGNC:1255     -1
5914               21       39405844        LCA5L  HGNC:1255     -1
5915               21       39405844        LCA5L  HGNC:1255     -1
5916               21       39405844        LCA5L  HGNC:1255     -1
5917               21       39405844        LCA5L  HGNC:1255     -1
5918               21       39405844        LCA5L  HGNC:1255     -1
5919               21       39405844        LCA5L  HGNC:1255     -1
5920               21       39405844        LCA5L  HGNC:1255     -1
5921               21       39405844        LCA5L  HGNC:1255     -1
5922               21       39405844        LCA5L  HGNC:1255     -1
5923               21       39405844        LCA5L  HGNC:1255     -1
5924               21       39405844        LCA5L  HGNC:1255     -1
5925               21       39405844        LCA5L  HGNC:1255     -1
5926               21       39405844        LCA5L  HGNC:1255     -1
5927               21       39405844        LCA5L  HGNC:1255     -1
5928               21       39405844        LCA5L  HGNC:1255     -1
5929               21       39405844        LCA5L  HGNC:1255     -1
5930               21       39405844        LCA5L  HGNC:1255     -1
5931               21       39405844        LCA5L  HGNC:1255     -1
5932               21       39405844        LCA5L  HGNC:1255     -1
5933               21       39405844        LCA5L  HGNC:1255     -1
5934               21       39405844        LCA5L  HGNC:1255     -1
5935               21       39405844        LCA5L  HGNC:1255     -1
5936               21       39405844        LCA5L  HGNC:1255     -1
5937               21       39405844        LCA5L  HGNC:1255     -1
5938               21       39405844        LCA5L  HGNC:1255     -1
5939               21       39405844        LCA5L  HGNC:1255     -1
5940               21       39405844        LCA5L  HGNC:1255     -1
5941               21       39405844        LCA5L  HGNC:1255     -1
5942               21       39405844        LCA5L  HGNC:1255     -1
5943               21       39405844        LCA5L  HGNC:1255     -1
5944               21       39405844        LCA5L  HGNC:1255     -1
5945               21       39405844        LCA5L  HGNC:1255     -1
5946               21       39405844        LCA5L  HGNC:1255     -1
5947               21       39405844        LCA5L  HGNC:1255     -1
5948               21       39405844        LCA5L  HGNC:1255     -1
5949               21       39405844        LCA5L  HGNC:1255     -1
5950               21       39380244          WRB HGNC:12790      1
5951               21       39380244          WRB HGNC:12790      1
5952               21       39380244          WRB HGNC:12790      1
5953               21       39380244          WRB HGNC:12790      1
5954               21       39380244          WRB HGNC:12790      1
5955               21       39380244          WRB HGNC:12790      1
5956               21       39380244          WRB HGNC:12790      1
5957               21       39380244          WRB HGNC:12790      1
5958               21       39380244          WRB HGNC:12790      1
5959               21       39380244          WRB HGNC:12790      1
5960               21       39380244          WRB HGNC:12790      1
5961               21       39380244          WRB HGNC:12790      1
5962               21       39380244          WRB HGNC:12790      1
5963               21       39380244          WRB HGNC:12790      1
5964               21       39380244          WRB HGNC:12790      1
5965               21       39380244          WRB HGNC:12790      1
5966               21       39380244          WRB HGNC:12790      1
5967               21       39380244          WRB HGNC:12790      1
5968               21       39380244          WRB HGNC:12790      1
5969               21       39380244          WRB HGNC:12790      1
5970               21       39380244          WRB HGNC:12790      1
5971               21       39380244          WRB HGNC:12790      1
5972               21       39380244          WRB HGNC:12790      1
5973               21       39380244          WRB HGNC:12790      1
5974               21       39380244          WRB HGNC:12790      1
5975               21       39380244          WRB HGNC:12790      1
5976               21       39380244          WRB HGNC:12790      1
5977               21       39380244          WRB HGNC:12790      1
5978               21       39380244          WRB HGNC:12790      1
5979               21       39380244          WRB HGNC:12790      1
5980               21       39380244          WRB HGNC:12790      1
5981               21       39380244          WRB HGNC:12790      1
5982               21       39380244          WRB HGNC:12790      1
5983               21       39380244          WRB HGNC:12790      1
5984               21       39380244          WRB HGNC:12790      1
5985               21       39380244          WRB HGNC:12790      1
5986               21       39380244          WRB HGNC:12790      1
5987               21       39380244          WRB HGNC:12790      1
5988               21       39380244          WRB HGNC:12790      1
5989               21       39380244          WRB HGNC:12790      1
5990               21       39380244          WRB HGNC:12790      1
5991               21       39380244          WRB HGNC:12790      1
5992               21       39380244          WRB HGNC:12790      1
5993               21       39380244          WRB HGNC:12790      1
5994               21       39380244          WRB HGNC:12790      1
5995               21       39380244          WRB HGNC:12790      1
5996               21       39380244          WRB HGNC:12790      1
5997               21       39380244          WRB HGNC:12790      1
5998               21       39380244          WRB HGNC:12790      1
5999               21       39380244          WRB HGNC:12790      1
6000               21       39380244          WRB HGNC:12790      1
6001               21       39373763       RNF6P1 HGNC:39922     -1
6002               21       39373763       RNF6P1 HGNC:39922     -1
6003               21       39373763       RNF6P1 HGNC:39922     -1
6004               21       39373763       RNF6P1 HGNC:39922     -1
6005               21       39373763       RNF6P1 HGNC:39922     -1
6006               21       39342315        HMGN1  HGNC:4984     -1
6007               21       39342315        HMGN1  HGNC:4984     -1
6008               21       39342315        HMGN1  HGNC:4984     -1
6009               21       39342315        HMGN1  HGNC:4984     -1
6010               21       39342315        HMGN1  HGNC:4984     -1
6011               21       39342315        HMGN1  HGNC:4984     -1
6012               21       39342315        HMGN1  HGNC:4984     -1
6013               21       39342315        HMGN1  HGNC:4984     -1
6014               21       39342315        HMGN1  HGNC:4984     -1
6015               21       39342315        HMGN1  HGNC:4984     -1
6016               21       39342315        HMGN1  HGNC:4984     -1
6017               21       39342315        HMGN1  HGNC:4984     -1
6018               21       39342315        HMGN1  HGNC:4984     -1
6019               21       39342315        HMGN1  HGNC:4984     -1
6020               21       39342315        HMGN1  HGNC:4984     -1
6021               21       39342315        HMGN1  HGNC:4984     -1
6022               21       39342315        HMGN1  HGNC:4984     -1
6023               21       39342315        HMGN1  HGNC:4984     -1
6024               21       39342315        HMGN1  HGNC:4984     -1
6025               21       39342315        HMGN1  HGNC:4984     -1
6026               21       39342315        HMGN1  HGNC:4984     -1
6027               21       39342315        HMGN1  HGNC:4984     -1
6028               21       39342315        HMGN1  HGNC:4984     -1
6029               21       39342315        HMGN1  HGNC:4984     -1
6030               21       39342315        HMGN1  HGNC:4984     -1
6031               21       39342315        HMGN1  HGNC:4984     -1
6032               21       39342315        HMGN1  HGNC:4984     -1
6033               21       39342315        HMGN1  HGNC:4984     -1
6034               21       39342315        HMGN1  HGNC:4984     -1
6035               21       39342315        HMGN1  HGNC:4984     -1
6036               21       39342315        HMGN1  HGNC:4984     -1
6037               21       39342315        HMGN1  HGNC:4984     -1
6038               21       39342315        HMGN1  HGNC:4984     -1
6039               21       39342315        HMGN1  HGNC:4984     -1
6040               21       39342315        HMGN1  HGNC:4984     -1
6041               21       39342315        HMGN1  HGNC:4984     -1
6042               21       39342315        HMGN1  HGNC:4984     -1
6043               21       39342315        HMGN1  HGNC:4984     -1
6044               21       39342315        HMGN1  HGNC:4984     -1
6045               21       39342315        HMGN1  HGNC:4984     -1
6046               21       39342315        HMGN1  HGNC:4984     -1
6047               21       39342315        HMGN1  HGNC:4984     -1
6048               21       39342315        HMGN1  HGNC:4984     -1
6049               21       39342315        HMGN1  HGNC:4984     -1
6050               21       39342315        HMGN1  HGNC:4984     -1
6051               21       39342315        HMGN1  HGNC:4984     -1
6052               21       39342315        HMGN1  HGNC:4984     -1
6053               21       39342315        HMGN1  HGNC:4984     -1
6054               21       39342315        HMGN1  HGNC:4984     -1
6055               21       39342315        HMGN1  HGNC:4984     -1
6056               21       39342315        HMGN1  HGNC:4984     -1
6057               21       39342315        HMGN1  HGNC:4984     -1
6058               21       39342315        HMGN1  HGNC:4984     -1
6059               21       39342315        HMGN1  HGNC:4984     -1
6060               21       39342315        HMGN1  HGNC:4984     -1
6061               21       39342315        HMGN1  HGNC:4984     -1
6062               21       39342315        HMGN1  HGNC:4984     -1
6063               21       39342315        HMGN1  HGNC:4984     -1
6064               21       39342315        HMGN1  HGNC:4984     -1
6065               21       39342315        HMGN1  HGNC:4984     -1
6066               21       39342315        HMGN1  HGNC:4984     -1
6067               21       39342315        HMGN1  HGNC:4984     -1
6068               21       39342315        HMGN1  HGNC:4984     -1
6069               21       39342315        HMGN1  HGNC:4984     -1
6070               21       39342315        HMGN1  HGNC:4984     -1
6071               21       39342315        HMGN1  HGNC:4984     -1
6072               21       39342315        HMGN1  HGNC:4984     -1
6073               21       39342315        HMGN1  HGNC:4984     -1
6074               21       39342315        HMGN1  HGNC:4984     -1
6075               21       39342315        HMGN1  HGNC:4984     -1
6076               21       39342315        HMGN1  HGNC:4984     -1
6077               21       39342315        HMGN1  HGNC:4984     -1
6078               21       39342315        HMGN1  HGNC:4984     -1
6079               21       39342315        HMGN1  HGNC:4984     -1
6080               21       39342315        HMGN1  HGNC:4984     -1
6081               21       39342315        HMGN1  HGNC:4984     -1
6082               21       39342315        HMGN1  HGNC:4984     -1
6083               21       39342315        HMGN1  HGNC:4984     -1
6084               21       39342315        HMGN1  HGNC:4984     -1
6085               21       39342315        HMGN1  HGNC:4984     -1
6086               21       39342315        HMGN1  HGNC:4984     -1
6087               21       39342315        HMGN1  HGNC:4984     -1
6088               21       39342315        HMGN1  HGNC:4984     -1
6089               21       39342315        HMGN1  HGNC:4984     -1
6090               21       39342315        HMGN1  HGNC:4984     -1
6091               21       39342315        HMGN1  HGNC:4984     -1
6092               21       39342315        HMGN1  HGNC:4984     -1
6093               21       39342315        HMGN1  HGNC:4984     -1
6094               21       39342315        HMGN1  HGNC:4984     -1
6095               21       39342315        HMGN1  HGNC:4984     -1
6096               21       39342315        HMGN1  HGNC:4984     -1
6097               21       39342315        HMGN1  HGNC:4984     -1
6098               21       39342315        HMGN1  HGNC:4984     -1
6099               21       39342315        HMGN1  HGNC:4984     -1
6100               21       39342315        HMGN1  HGNC:4984     -1
6101               21       39342315        HMGN1  HGNC:4984     -1
6102               21       39342315        HMGN1  HGNC:4984     -1
6103               21       39342315        HMGN1  HGNC:4984     -1
6104               21       39342315        HMGN1  HGNC:4984     -1
6105               21       39342315        HMGN1  HGNC:4984     -1
6106               21       39342315        HMGN1  HGNC:4984     -1
6107               21       39342315        HMGN1  HGNC:4984     -1
6108               21       39342315        HMGN1  HGNC:4984     -1
6109               21       39342315        HMGN1  HGNC:4984     -1
6110               21       39342315        HMGN1  HGNC:4984     -1
6111               21       39342315        HMGN1  HGNC:4984     -1
6112               21       39342315        HMGN1  HGNC:4984     -1
6113               21       39342315        HMGN1  HGNC:4984     -1
6114               21       39342315        HMGN1  HGNC:4984     -1
6115               21       39342315        HMGN1  HGNC:4984     -1
6116               21       39342315        HMGN1  HGNC:4984     -1
6117               21       39342315        HMGN1  HGNC:4984     -1
6118               21       39342315        HMGN1  HGNC:4984     -1
6119               21       39342315        HMGN1  HGNC:4984     -1
6120               21       39342315        HMGN1  HGNC:4984     -1
6121               21       39342315        HMGN1  HGNC:4984     -1
6122               21       39342315        HMGN1  HGNC:4984     -1
6123               21       39344537                              1
6124               21       39315707    BRWD1-AS1 HGNC:40614      1
6125               21       39315707    BRWD1-AS1 HGNC:40614      1
6126               21       39315707    BRWD1-AS1 HGNC:40614      1
6127               21       39184176        BRWD1 HGNC:12760     -1
6128               21       39184176        BRWD1 HGNC:12760     -1
6129               21       39184176        BRWD1 HGNC:12760     -1
6130               21       39184176        BRWD1 HGNC:12760     -1
6131               21       39184176        BRWD1 HGNC:12760     -1
6132               21       39184176        BRWD1 HGNC:12760     -1
6133               21       39184176        BRWD1 HGNC:12760     -1
6134               21       39184176        BRWD1 HGNC:12760     -1
6135               21       39184176        BRWD1 HGNC:12760     -1
6136               21       39184176        BRWD1 HGNC:12760     -1
6137               21       39184176        BRWD1 HGNC:12760     -1
6138               21       39184176        BRWD1 HGNC:12760     -1
6139               21       39184176        BRWD1 HGNC:12760     -1
6140               21       39184176        BRWD1 HGNC:12760     -1
6141               21       39184176        BRWD1 HGNC:12760     -1
6142               21       39184176        BRWD1 HGNC:12760     -1
6143               21       39184176        BRWD1 HGNC:12760     -1
6144               21       39184176        BRWD1 HGNC:12760     -1
6145               21       39184176        BRWD1 HGNC:12760     -1
6146               21       39184176        BRWD1 HGNC:12760     -1
6147               21       39184176        BRWD1 HGNC:12760     -1
6148               21       39184176        BRWD1 HGNC:12760     -1
6149               21       39184176        BRWD1 HGNC:12760     -1
6150               21       39184176        BRWD1 HGNC:12760     -1
6151               21       39184176        BRWD1 HGNC:12760     -1
6152               21       39184176        BRWD1 HGNC:12760     -1
6153               21       39184176        BRWD1 HGNC:12760     -1
6154               21       39184176        BRWD1 HGNC:12760     -1
6155               21       39184176        BRWD1 HGNC:12760     -1
6156               21       39184176        BRWD1 HGNC:12760     -1
6157               21       39184176        BRWD1 HGNC:12760     -1
6158               21       39184176        BRWD1 HGNC:12760     -1
6159               21       39184176        BRWD1 HGNC:12760     -1
6160               21       39184176        BRWD1 HGNC:12760     -1
6161               21       39184176        BRWD1 HGNC:12760     -1
6162               21       39184176        BRWD1 HGNC:12760     -1
6163               21       39184176        BRWD1 HGNC:12760     -1
6164               21       39184176        BRWD1 HGNC:12760     -1
6165               21       39184176        BRWD1 HGNC:12760     -1
6166               21       39184176        BRWD1 HGNC:12760     -1
6167               21       39184176        BRWD1 HGNC:12760     -1
6168               21       39184176        BRWD1 HGNC:12760     -1
6169               21       39184176        BRWD1 HGNC:12760     -1
6170               21       39184176        BRWD1 HGNC:12760     -1
6171               21       39184176        BRWD1 HGNC:12760     -1
6172               21       39184176        BRWD1 HGNC:12760     -1
6173               21       39184176        BRWD1 HGNC:12760     -1
6174               21       39184176        BRWD1 HGNC:12760     -1
6175               21       39184176        BRWD1 HGNC:12760     -1
6176               21       39184176        BRWD1 HGNC:12760     -1
6177               21       39184176        BRWD1 HGNC:12760     -1
6178               21       39184176        BRWD1 HGNC:12760     -1
6179               21       39184176        BRWD1 HGNC:12760     -1
6180               21       39184176        BRWD1 HGNC:12760     -1
6181               21       39184176        BRWD1 HGNC:12760     -1
6182               21       39184176        BRWD1 HGNC:12760     -1
6183               21       39184176        BRWD1 HGNC:12760     -1
6184               21       39184176        BRWD1 HGNC:12760     -1
6185               21       39184176        BRWD1 HGNC:12760     -1
6186               21       39184176        BRWD1 HGNC:12760     -1
6187               21       39184176        BRWD1 HGNC:12760     -1
6188               21       39184176        BRWD1 HGNC:12760     -1
6189               21       39184176        BRWD1 HGNC:12760     -1
6190               21       39184176        BRWD1 HGNC:12760     -1
6191               21       39184176        BRWD1 HGNC:12760     -1
6192               21       39184176        BRWD1 HGNC:12760     -1
6193               21       39184176        BRWD1 HGNC:12760     -1
6194               21       39184176        BRWD1 HGNC:12760     -1
6195               21       39184176        BRWD1 HGNC:12760     -1
6196               21       39184176        BRWD1 HGNC:12760     -1
6197               21       39184176        BRWD1 HGNC:12760     -1
6198               21       39184176        BRWD1 HGNC:12760     -1
6199               21       39184176        BRWD1 HGNC:12760     -1
6200               21       39184176        BRWD1 HGNC:12760     -1
6201               21       39184176        BRWD1 HGNC:12760     -1
6202               21       39184176        BRWD1 HGNC:12760     -1
6203               21       39184176        BRWD1 HGNC:12760     -1
6204               21       39184176        BRWD1 HGNC:12760     -1
6205               21       39184176        BRWD1 HGNC:12760     -1
6206               21       39184176        BRWD1 HGNC:12760     -1
6207               21       39184176        BRWD1 HGNC:12760     -1
6208               21       39184176        BRWD1 HGNC:12760     -1
6209               21       39184176        BRWD1 HGNC:12760     -1
6210               21       39184176        BRWD1 HGNC:12760     -1
6211               21       39184176        BRWD1 HGNC:12760     -1
6212               21       39184176        BRWD1 HGNC:12760     -1
6213               21       39184176        BRWD1 HGNC:12760     -1
6214               21       39184176        BRWD1 HGNC:12760     -1
6215               21       39184176        BRWD1 HGNC:12760     -1
6216               21       39184176        BRWD1 HGNC:12760     -1
6217               21       39184176        BRWD1 HGNC:12760     -1
6218               21       39184176        BRWD1 HGNC:12760     -1
6219               21       39184176        BRWD1 HGNC:12760     -1
6220               21       39184176        BRWD1 HGNC:12760     -1
6221               21       39184176        BRWD1 HGNC:12760     -1
6222               21       39184176        BRWD1 HGNC:12760     -1
6223               21       39184176        BRWD1 HGNC:12760     -1
6224               21       39184176        BRWD1 HGNC:12760     -1
6225               21       39184176        BRWD1 HGNC:12760     -1
6226               21       39184176        BRWD1 HGNC:12760     -1
6227               21       39184176        BRWD1 HGNC:12760     -1
6228               21       39184176        BRWD1 HGNC:12760     -1
6229               21       39184176        BRWD1 HGNC:12760     -1
6230               21       39184176        BRWD1 HGNC:12760     -1
6231               21       39184176        BRWD1 HGNC:12760     -1
6232               21       39184176        BRWD1 HGNC:12760     -1
6233               21       39184176        BRWD1 HGNC:12760     -1
6234               21       39184176        BRWD1 HGNC:12760     -1
6235               21       39184176        BRWD1 HGNC:12760     -1
6236               21       39184176        BRWD1 HGNC:12760     -1
6237               21       39184176        BRWD1 HGNC:12760     -1
6238               21       39184176        BRWD1 HGNC:12760     -1
6239               21       39184176        BRWD1 HGNC:12760     -1
6240               21       39184176        BRWD1 HGNC:12760     -1
6241               21       39184176        BRWD1 HGNC:12760     -1
6242               21       39184176        BRWD1 HGNC:12760     -1
6243               21       39184176        BRWD1 HGNC:12760     -1
6244               21       39184176        BRWD1 HGNC:12760     -1
6245               21       39184176        BRWD1 HGNC:12760     -1
6246               21       39184176        BRWD1 HGNC:12760     -1
6247               21       39184176        BRWD1 HGNC:12760     -1
6248               21       39184176        BRWD1 HGNC:12760     -1
6249               21       39184176        BRWD1 HGNC:12760     -1
6250               21       39184176        BRWD1 HGNC:12760     -1
6251               21       39184176        BRWD1 HGNC:12760     -1
6252               21       39184176        BRWD1 HGNC:12760     -1
6253               21       39184176        BRWD1 HGNC:12760     -1
6254               21       39184176        BRWD1 HGNC:12760     -1
6255               21       39184176        BRWD1 HGNC:12760     -1
6256               21       39184176        BRWD1 HGNC:12760     -1
6257               21       39184176        BRWD1 HGNC:12760     -1
6258               21       39184176        BRWD1 HGNC:12760     -1
6259               21       39184176        BRWD1 HGNC:12760     -1
6260               21       39184176        BRWD1 HGNC:12760     -1
6261               21       39184176        BRWD1 HGNC:12760     -1
6262               21       39184176        BRWD1 HGNC:12760     -1
6263               21       39184176        BRWD1 HGNC:12760     -1
6264               21       39184176        BRWD1 HGNC:12760     -1
6265               21       39184176        BRWD1 HGNC:12760     -1
6266               21       39184176        BRWD1 HGNC:12760     -1
6267               21       39184176        BRWD1 HGNC:12760     -1
6268               21       39184176        BRWD1 HGNC:12760     -1
6269               21       39184176        BRWD1 HGNC:12760     -1
6270               21       39184176        BRWD1 HGNC:12760     -1
6271               21       39184176        BRWD1 HGNC:12760     -1
6272               21       39184176        BRWD1 HGNC:12760     -1
6273               21       39184176        BRWD1 HGNC:12760     -1
6274               21       39184176        BRWD1 HGNC:12760     -1
6275               21       39184176        BRWD1 HGNC:12760     -1
6276               21       39184176        BRWD1 HGNC:12760     -1
6277               21       39184176        BRWD1 HGNC:12760     -1
6278               21       39184176        BRWD1 HGNC:12760     -1
6279               21       39184176        BRWD1 HGNC:12760     -1
6280               21       39184176        BRWD1 HGNC:12760     -1
6281               21       39184176        BRWD1 HGNC:12760     -1
6282               21       39184176        BRWD1 HGNC:12760     -1
6283               21       39184176        BRWD1 HGNC:12760     -1
6284               21       39184176        BRWD1 HGNC:12760     -1
6285               21       39184176        BRWD1 HGNC:12760     -1
6286               21       39184176        BRWD1 HGNC:12760     -1
6287               21       39184176        BRWD1 HGNC:12760     -1
6288               21       39184176        BRWD1 HGNC:12760     -1
6289               21       39184176        BRWD1 HGNC:12760     -1
6290               21       39184176        BRWD1 HGNC:12760     -1
6291               21       39184176        BRWD1 HGNC:12760     -1
6292               21       39184176        BRWD1 HGNC:12760     -1
6293               21       39184176        BRWD1 HGNC:12760     -1
6294               21       39184176        BRWD1 HGNC:12760     -1
6295               21       39184176        BRWD1 HGNC:12760     -1
6296               21       39184176        BRWD1 HGNC:12760     -1
6297               21       39184176        BRWD1 HGNC:12760     -1
6298               21       39184176        BRWD1 HGNC:12760     -1
6299               21       39184176        BRWD1 HGNC:12760     -1
6300               21       39184176        BRWD1 HGNC:12760     -1
6301               21       39184176        BRWD1 HGNC:12760     -1
6302               21       39184176        BRWD1 HGNC:12760     -1
6303               21       39184176        BRWD1 HGNC:12760     -1
6304               21       39184176        BRWD1 HGNC:12760     -1
6305               21       39184176        BRWD1 HGNC:12760     -1
6306               21       39184176        BRWD1 HGNC:12760     -1
6307               21       39184176        BRWD1 HGNC:12760     -1
6308               21       39184176        BRWD1 HGNC:12760     -1
6309               21       39184176        BRWD1 HGNC:12760     -1
6310               21       39184176        BRWD1 HGNC:12760     -1
6311               21       39184176        BRWD1 HGNC:12760     -1
6312               21       39184176        BRWD1 HGNC:12760     -1
6313               21       39184176        BRWD1 HGNC:12760     -1
6314               21       39184176        BRWD1 HGNC:12760     -1
6315               21       39184176        BRWD1 HGNC:12760     -1
6316               21       39184176        BRWD1 HGNC:12760     -1
6317               21       39184176        BRWD1 HGNC:12760     -1
6318               21       39184176        BRWD1 HGNC:12760     -1
6319               21       39184176        BRWD1 HGNC:12760     -1
6320               21       39184176        BRWD1 HGNC:12760     -1
6321               21       39184176        BRWD1 HGNC:12760     -1
6322               21       39184176        BRWD1 HGNC:12760     -1
6323               21       39184176        BRWD1 HGNC:12760     -1
6324               21       39184176        BRWD1 HGNC:12760     -1
6325               21       39184176        BRWD1 HGNC:12760     -1
6326               21       39184176        BRWD1 HGNC:12760     -1
6327               21       39184176        BRWD1 HGNC:12760     -1
6328               21       39184176        BRWD1 HGNC:12760     -1
6329               21       39184176        BRWD1 HGNC:12760     -1
6330               21       39184176        BRWD1 HGNC:12760     -1
6331               21       39184176        BRWD1 HGNC:12760     -1
6332               21       39184176        BRWD1 HGNC:12760     -1
6333               21       39184176        BRWD1 HGNC:12760     -1
6334               21       39184176        BRWD1 HGNC:12760     -1
6335               21       39184176        BRWD1 HGNC:12760     -1
6336               21       39184176        BRWD1 HGNC:12760     -1
6337               21       39184176        BRWD1 HGNC:12760     -1
6338               21       39184176        BRWD1 HGNC:12760     -1
6339               21       39184176        BRWD1 HGNC:12760     -1
6340               21       39184176        BRWD1 HGNC:12760     -1
6341               21       39184176        BRWD1 HGNC:12760     -1
6342               21       39184176        BRWD1 HGNC:12760     -1
6343               21       39184176        BRWD1 HGNC:12760     -1
6344               21       39184176        BRWD1 HGNC:12760     -1
6345               21       39184176        BRWD1 HGNC:12760     -1
6346               21       39184176        BRWD1 HGNC:12760     -1
6347               21       39184176        BRWD1 HGNC:12760     -1
6348               21       39184176        BRWD1 HGNC:12760     -1
6349               21       39184176        BRWD1 HGNC:12760     -1
6350               21       39184176        BRWD1 HGNC:12760     -1
6351               21       39184176        BRWD1 HGNC:12760     -1
6352               21       39184176        BRWD1 HGNC:12760     -1
6353               21       39184176        BRWD1 HGNC:12760     -1
6354               21       39184176        BRWD1 HGNC:12760     -1
6355               21       39184176        BRWD1 HGNC:12760     -1
6356               21       39184176        BRWD1 HGNC:12760     -1
6357               21       39184176        BRWD1 HGNC:12760     -1
6358               21       39184176        BRWD1 HGNC:12760     -1
6359               21       39184176        BRWD1 HGNC:12760     -1
6360               21       39184176        BRWD1 HGNC:12760     -1
6361               21       39184176        BRWD1 HGNC:12760     -1
6362               21       39184176        BRWD1 HGNC:12760     -1
6363               21       39184176        BRWD1 HGNC:12760     -1
6364               21       39184176        BRWD1 HGNC:12760     -1
6365               21       39184176        BRWD1 HGNC:12760     -1
6366               21       39184176        BRWD1 HGNC:12760     -1
6367               21       39184176        BRWD1 HGNC:12760     -1
6368               21       39184176        BRWD1 HGNC:12760     -1
6369               21       39184176        BRWD1 HGNC:12760     -1
6370               21       39184176        BRWD1 HGNC:12760     -1
6371               21       39184176        BRWD1 HGNC:12760     -1
6372               21       39184176        BRWD1 HGNC:12760     -1
6373               21       39184176        BRWD1 HGNC:12760     -1
6374               21       39184176        BRWD1 HGNC:12760     -1
6375               21       39184176        BRWD1 HGNC:12760     -1
6376               21       39184176        BRWD1 HGNC:12760     -1
6377               21       39184176        BRWD1 HGNC:12760     -1
6378               21       39184176        BRWD1 HGNC:12760     -1
6379               21       39184176        BRWD1 HGNC:12760     -1
6380               21       39184176        BRWD1 HGNC:12760     -1
6381               21       39184176        BRWD1 HGNC:12760     -1
6382               21       39184176        BRWD1 HGNC:12760     -1
6383               21       39184176        BRWD1 HGNC:12760     -1
6384               21       39184176        BRWD1 HGNC:12760     -1
6385               21       39184176        BRWD1 HGNC:12760     -1
6386               21       39184176        BRWD1 HGNC:12760     -1
6387               21       39313935    BRWD1-AS2 HGNC:16423      1
6388               21       39235386   METTL21AP1 HGNC:41921     -1
6389               21       39217093    BRWD1-IT1 HGNC:41920     -1
6390               21       39217093    BRWD1-IT1 HGNC:41920     -1
6391               21       39216624      TIMM9P2 HGNC:39929      1
6392               21       39216624      TIMM9P2 HGNC:39929      1
6393               21       39184469                              1
6394               21       39174769        PSMG1  HGNC:3043     -1
6395               21       39174769        PSMG1  HGNC:3043     -1
6396               21       39174769        PSMG1  HGNC:3043     -1
6397               21       39174769        PSMG1  HGNC:3043     -1
6398               21       39174769        PSMG1  HGNC:3043     -1
6399               21       39174769        PSMG1  HGNC:3043     -1
6400               21       39174769        PSMG1  HGNC:3043     -1
6401               21       39174769        PSMG1  HGNC:3043     -1
6402               21       39174769        PSMG1  HGNC:3043     -1
6403               21       39174769        PSMG1  HGNC:3043     -1
6404               21       39174769        PSMG1  HGNC:3043     -1
6405               21       39174769        PSMG1  HGNC:3043     -1
6406               21       39174769        PSMG1  HGNC:3043     -1
6407               21       39174769        PSMG1  HGNC:3043     -1
6408               21       39174769        PSMG1  HGNC:3043     -1
6409               21       39174769        PSMG1  HGNC:3043     -1
6410               21       39174769        PSMG1  HGNC:3043     -1
6411               21       39174769        PSMG1  HGNC:3043     -1
6412               21       39174769        PSMG1  HGNC:3043     -1
6413               21       39174769        PSMG1  HGNC:3043     -1
6414               21       39174769        PSMG1  HGNC:3043     -1
6415               21       39174769        PSMG1  HGNC:3043     -1
6416               21       39174769        PSMG1  HGNC:3043     -1
6417               21       39174769        PSMG1  HGNC:3043     -1
6418               21       39174769        PSMG1  HGNC:3043     -1
6419               21       39174769        PSMG1  HGNC:3043     -1
6420               21       39174769        PSMG1  HGNC:3043     -1
6421               21       39174769        PSMG1  HGNC:3043     -1
6422               21       39174769        PSMG1  HGNC:3043     -1
6423               21       39171130      PCBP2P1  HGNC:8649     -1
6424               21       39171462                             -1
6425               21       39127568    RPL23AP12 HGNC:23840      1
6426               21       39028536                             -1
6427               21       39028536                             -1
6428               21       39006648                             -1
6429               21       39006648                             -1
6430               21       39006648                             -1
6431               21       38988707                             -1
6432               21       38988707                             -1
6433               21       38988707                             -1
6434               21       38974429    LINC01700 HGNC:52488     -1
6435               21       38974429    LINC01700 HGNC:52488     -1
6436               21       38974429    LINC01700 HGNC:52488     -1
6437               21       38863676                             -1
6438               21       38863676                             -1
6439               21       38863676                             -1
6440               21       38863676                             -1
6441               21       38863676                             -1
6442               21       38863676                             -1
6443               21       38863676                             -1
6444               21       38863676                             -1
6445               21       38863676                             -1
6446               21       38863676                             -1
6447               21       38863676                             -1
6448               21       38863676                             -1
6449               21       38863676                             -1
6450               21       38863676                             -1
6451               21       38863676                             -1
6452               21       38863676                             -1
6453               21       38863676                             -1
6454               21       38863676                             -1
6455               21       38863676                             -1
6456               21       38863676                             -1
6457               21       38863676                             -1
6458               21       38863676                             -1
6459               21       38863676                             -1
6460               21       38863676                             -1
6461               21       38863676                             -1
6462               21       38863676                             -1
6463               21       38863676                             -1
6464               21       38888772                              1
6465               21       38888772                              1
6466               21       38894917      RPSAP64 HGNC:39642      1
6467               21       38894785                              1
6468               21       38846247                              1
6469               21       38846247                              1
6470               21       38805307         ETS2  HGNC:3489      1
6471               21       38805307         ETS2  HGNC:3489      1
6472               21       38805307         ETS2  HGNC:3489      1
6473               21       38805307         ETS2  HGNC:3489      1
6474               21       38805307         ETS2  HGNC:3489      1
6475               21       38805307         ETS2  HGNC:3489      1
6476               21       38805307         ETS2  HGNC:3489      1
6477               21       38805307         ETS2  HGNC:3489      1
6478               21       38805307         ETS2  HGNC:3489      1
6479               21       38805307         ETS2  HGNC:3489      1
6480               21       38805307         ETS2  HGNC:3489      1
6481               21       38805307         ETS2  HGNC:3489      1
6482               21       38805307         ETS2  HGNC:3489      1
6483               21       38805307         ETS2  HGNC:3489      1
6484               21       38805307         ETS2  HGNC:3489      1
6485               21       38805307         ETS2  HGNC:3489      1
6486               21       38805307         ETS2  HGNC:3489      1
6487               21       38805307         ETS2  HGNC:3489      1
6488               21       38805307         ETS2  HGNC:3489      1
6489               21       38805307         ETS2  HGNC:3489      1
6490               21       38805307         ETS2  HGNC:3489      1
6491               21       38805307         ETS2  HGNC:3489      1
6492               21       38805307         ETS2  HGNC:3489      1
6493               21       38805307         ETS2  HGNC:3489      1
6494               21       38805307         ETS2  HGNC:3489      1
6495               21       38805307         ETS2  HGNC:3489      1
6496               21       38805307         ETS2  HGNC:3489      1
6497               21       38805307         ETS2  HGNC:3489      1
6498               21       38805307         ETS2  HGNC:3489      1
6499               21       38805307         ETS2  HGNC:3489      1
6500               21       38805307         ETS2  HGNC:3489      1
6501               21       38805307         ETS2  HGNC:3489      1
6502               21       38805307         ETS2  HGNC:3489      1
6503               21       38805307         ETS2  HGNC:3489      1
6504               21       38739021    LINC00114  HGNC:1265     -1
6505               21       38739021    LINC00114  HGNC:1265     -1
6506               21       38739021    LINC00114  HGNC:1265     -1
6507               21       38739021    LINC00114  HGNC:1265     -1
6508               21       38739021    LINC00114  HGNC:1265     -1
6509               21       38739021    LINC00114  HGNC:1265     -1
6510               21       38739021    LINC00114  HGNC:1265     -1
6511               21       38739021    LINC00114  HGNC:1265     -1
6512               21       38739021    LINC00114  HGNC:1265     -1
6513               21       38739021    LINC00114  HGNC:1265     -1
6514               21       38739021    LINC00114  HGNC:1265     -1
6515               21       38739021    LINC00114  HGNC:1265     -1
6516               21       38739021    LINC00114  HGNC:1265     -1
6517               21       38739021    LINC00114  HGNC:1265     -1
6518               21       38739021    LINC00114  HGNC:1265     -1
6519               21       38380027          ERG  HGNC:3446     -1
6520               21       38380027          ERG  HGNC:3446     -1
6521               21       38380027          ERG  HGNC:3446     -1
6522               21       38380027          ERG  HGNC:3446     -1
6523               21       38380027          ERG  HGNC:3446     -1
6524               21       38380027          ERG  HGNC:3446     -1
6525               21       38380027          ERG  HGNC:3446     -1
6526               21       38380027          ERG  HGNC:3446     -1
6527               21       38380027          ERG  HGNC:3446     -1
6528               21       38380027          ERG  HGNC:3446     -1
6529               21       38380027          ERG  HGNC:3446     -1
6530               21       38380027          ERG  HGNC:3446     -1
6531               21       38380027          ERG  HGNC:3446     -1
6532               21       38380027          ERG  HGNC:3446     -1
6533               21       38380027          ERG  HGNC:3446     -1
6534               21       38380027          ERG  HGNC:3446     -1
6535               21       38380027          ERG  HGNC:3446     -1
6536               21       38380027          ERG  HGNC:3446     -1
6537               21       38380027          ERG  HGNC:3446     -1
6538               21       38380027          ERG  HGNC:3446     -1
6539               21       38380027          ERG  HGNC:3446     -1
6540               21       38380027          ERG  HGNC:3446     -1
6541               21       38380027          ERG  HGNC:3446     -1
6542               21       38380027          ERG  HGNC:3446     -1
6543               21       38380027          ERG  HGNC:3446     -1
6544               21       38380027          ERG  HGNC:3446     -1
6545               21       38380027          ERG  HGNC:3446     -1
6546               21       38380027          ERG  HGNC:3446     -1
6547               21       38380027          ERG  HGNC:3446     -1
6548               21       38380027          ERG  HGNC:3446     -1
6549               21       38380027          ERG  HGNC:3446     -1
6550               21       38380027          ERG  HGNC:3446     -1
6551               21       38380027          ERG  HGNC:3446     -1
6552               21       38380027          ERG  HGNC:3446     -1
6553               21       38380027          ERG  HGNC:3446     -1
6554               21       38380027          ERG  HGNC:3446     -1
6555               21       38380027          ERG  HGNC:3446     -1
6556               21       38380027          ERG  HGNC:3446     -1
6557               21       38380027          ERG  HGNC:3446     -1
6558               21       38380027          ERG  HGNC:3446     -1
6559               21       38380027          ERG  HGNC:3446     -1
6560               21       38380027          ERG  HGNC:3446     -1
6561               21       38380027          ERG  HGNC:3446     -1
6562               21       38380027          ERG  HGNC:3446     -1
6563               21       38380027          ERG  HGNC:3446     -1
6564               21       38380027          ERG  HGNC:3446     -1
6565               21       38380027          ERG  HGNC:3446     -1
6566               21       38380027          ERG  HGNC:3446     -1
6567               21       38380027          ERG  HGNC:3446     -1
6568               21       38380027          ERG  HGNC:3446     -1
6569               21       38380027          ERG  HGNC:3446     -1
6570               21       38380027          ERG  HGNC:3446     -1
6571               21       38380027          ERG  HGNC:3446     -1
6572               21       38380027          ERG  HGNC:3446     -1
6573               21       38380027          ERG  HGNC:3446     -1
6574               21       38380027          ERG  HGNC:3446     -1
6575               21       38380027          ERG  HGNC:3446     -1
6576               21       38380027          ERG  HGNC:3446     -1
6577               21       38380027          ERG  HGNC:3446     -1
6578               21       38380027          ERG  HGNC:3446     -1
6579               21       38380027          ERG  HGNC:3446     -1
6580               21       38380027          ERG  HGNC:3446     -1
6581               21       38380027          ERG  HGNC:3446     -1
6582               21       38380027          ERG  HGNC:3446     -1
6583               21       38380027          ERG  HGNC:3446     -1
6584               21       38380027          ERG  HGNC:3446     -1
6585               21       38380027          ERG  HGNC:3446     -1
6586               21       38380027          ERG  HGNC:3446     -1
6587               21       38380027          ERG  HGNC:3446     -1
6588               21       38380027          ERG  HGNC:3446     -1
6589               21       38380027          ERG  HGNC:3446     -1
6590               21       38380027          ERG  HGNC:3446     -1
6591               21       38380027          ERG  HGNC:3446     -1
6592               21       38380027          ERG  HGNC:3446     -1
6593               21       38380027          ERG  HGNC:3446     -1
6594               21       38380027          ERG  HGNC:3446     -1
6595               21       38380027          ERG  HGNC:3446     -1
6596               21       38380027          ERG  HGNC:3446     -1
6597               21       38380027          ERG  HGNC:3446     -1
6598               21       38380027          ERG  HGNC:3446     -1
6599               21       38380027          ERG  HGNC:3446     -1
6600               21       38380027          ERG  HGNC:3446     -1
6601               21       38380027          ERG  HGNC:3446     -1
6602               21       38380027          ERG  HGNC:3446     -1
6603               21       38380027          ERG  HGNC:3446     -1
6604               21       38380027          ERG  HGNC:3446     -1
6605               21       38380027          ERG  HGNC:3446     -1
6606               21       38380027          ERG  HGNC:3446     -1
6607               21       38380027          ERG  HGNC:3446     -1
6608               21       38380027          ERG  HGNC:3446     -1
6609               21       38380027          ERG  HGNC:3446     -1
6610               21       38380027          ERG  HGNC:3446     -1
6611               21       38380027          ERG  HGNC:3446     -1
6612               21       38380027          ERG  HGNC:3446     -1
6613               21       38380027          ERG  HGNC:3446     -1
6614               21       38380027          ERG  HGNC:3446     -1
6615               21       38380027          ERG  HGNC:3446     -1
6616               21       38380027          ERG  HGNC:3446     -1
6617               21       38380027          ERG  HGNC:3446     -1
6618               21       38380027          ERG  HGNC:3446     -1
6619               21       38380027          ERG  HGNC:3446     -1
6620               21       38380027          ERG  HGNC:3446     -1
6621               21       38380027          ERG  HGNC:3446     -1
6622               21       38380027          ERG  HGNC:3446     -1
6623               21       38380027          ERG  HGNC:3446     -1
6624               21       38380027          ERG  HGNC:3446     -1
6625               21       38380027          ERG  HGNC:3446     -1
6626               21       38380027          ERG  HGNC:3446     -1
6627               21       38380027          ERG  HGNC:3446     -1
6628               21       38380027          ERG  HGNC:3446     -1
6629               21       38380027          ERG  HGNC:3446     -1
6630               21       38380027          ERG  HGNC:3446     -1
6631               21       38380027          ERG  HGNC:3446     -1
6632               21       38380027          ERG  HGNC:3446     -1
6633               21       38380027          ERG  HGNC:3446     -1
6634               21       38380027          ERG  HGNC:3446     -1
6635               21       38380027          ERG  HGNC:3446     -1
6636               21       38380027          ERG  HGNC:3446     -1
6637               21       38380027          ERG  HGNC:3446     -1
6638               21       38380027          ERG  HGNC:3446     -1
6639               21       38380027          ERG  HGNC:3446     -1
6640               21       38380027          ERG  HGNC:3446     -1
6641               21       38380027          ERG  HGNC:3446     -1
6642               21       38380027          ERG  HGNC:3446     -1
6643               21       38380027          ERG  HGNC:3446     -1
6644               21       38380027          ERG  HGNC:3446     -1
6645               21       38380027          ERG  HGNC:3446     -1
6646               21       38380027          ERG  HGNC:3446     -1
6647               21       38380027          ERG  HGNC:3446     -1
6648               21       38380027          ERG  HGNC:3446     -1
6649               21       38380027          ERG  HGNC:3446     -1
6650               21       38380027          ERG  HGNC:3446     -1
6651               21       38380027          ERG  HGNC:3446     -1
6652               21       38380027          ERG  HGNC:3446     -1
6653               21       38380027          ERG  HGNC:3446     -1
6654               21       38380027          ERG  HGNC:3446     -1
6655               21       38380027          ERG  HGNC:3446     -1
6656               21       38380027          ERG  HGNC:3446     -1
6657               21       38380027          ERG  HGNC:3446     -1
6658               21       38380027          ERG  HGNC:3446     -1
6659               21       38380027          ERG  HGNC:3446     -1
6660               21       38380027          ERG  HGNC:3446     -1
6661               21       38502445     SNRPGP13 HGNC:39332      1
6662               21       38323635    LINC01423 HGNC:50732     -1
6663               21       38323635    LINC01423 HGNC:50732     -1
6664               21       38323635    LINC01423 HGNC:50732     -1
6665               21       38323635    LINC01423 HGNC:50732     -1
6666               21       38323635    LINC01423 HGNC:50732     -1
6667               21       38323635    LINC01423 HGNC:50732     -1
6668               21       38323635    LINC01423 HGNC:50732     -1
6669               21       38323635    LINC01423 HGNC:50732     -1
6670               21       38323635    LINC01423 HGNC:50732     -1
6671               21       38157034       KCNJ15  HGNC:6261      1
6672               21       38157034       KCNJ15  HGNC:6261      1
6673               21       38157034       KCNJ15  HGNC:6261      1
6674               21       38157034       KCNJ15  HGNC:6261      1
6675               21       38157034       KCNJ15  HGNC:6261      1
6676               21       38157034       KCNJ15  HGNC:6261      1
6677               21       38157034       KCNJ15  HGNC:6261      1
6678               21       38157034       KCNJ15  HGNC:6261      1
6679               21       38157034       KCNJ15  HGNC:6261      1
6680               21       38157034       KCNJ15  HGNC:6261      1
6681               21       38157034       KCNJ15  HGNC:6261      1
6682               21       38157034       KCNJ15  HGNC:6261      1
6683               21       38157034       KCNJ15  HGNC:6261      1
6684               21       38157034       KCNJ15  HGNC:6261      1
6685               21       38157034       KCNJ15  HGNC:6261      1
6686               21       38157034       KCNJ15  HGNC:6261      1
6687               21       38157034       KCNJ15  HGNC:6261      1
6688               21       38157034       KCNJ15  HGNC:6261      1
6689               21       38157034       KCNJ15  HGNC:6261      1
6690               21       38157034       KCNJ15  HGNC:6261      1
6691               21       38157034       KCNJ15  HGNC:6261      1
6692               21       38157034       KCNJ15  HGNC:6261      1
6693               21       38157034       KCNJ15  HGNC:6261      1
6694               21       38157034       KCNJ15  HGNC:6261      1
6695               21       38157034       KCNJ15  HGNC:6261      1
6696               21       38157034       KCNJ15  HGNC:6261      1
6697               21       38157034       KCNJ15  HGNC:6261      1
6698               21       38157034       KCNJ15  HGNC:6261      1
6699               21       38157034       KCNJ15  HGNC:6261      1
6700               21       38157034       KCNJ15  HGNC:6261      1
6701               21       38157034       KCNJ15  HGNC:6261      1
6702               21       38157034       KCNJ15  HGNC:6261      1
6703               21       38157034       KCNJ15  HGNC:6261      1
6704               21       38157034       KCNJ15  HGNC:6261      1
6705               21       38157034       KCNJ15  HGNC:6261      1
6706               21       38157034       KCNJ15  HGNC:6261      1
6707               21       38157034       KCNJ15  HGNC:6261      1
6708               21       38157034       KCNJ15  HGNC:6261      1
6709               21       38157034       KCNJ15  HGNC:6261      1
6710               21       38157034       KCNJ15  HGNC:6261      1
6711               21       38157034       KCNJ15  HGNC:6261      1
6712               21       38157034       KCNJ15  HGNC:6261      1
6713               21       38157034       KCNJ15  HGNC:6261      1
6714               21       38157034       KCNJ15  HGNC:6261      1
6715               21       38157034       KCNJ15  HGNC:6261      1
6716               21       38157034       KCNJ15  HGNC:6261      1
6717               21       38157034       KCNJ15  HGNC:6261      1
6718               21       38157034       KCNJ15  HGNC:6261      1
6719               21       38157034       KCNJ15  HGNC:6261      1
6720               21       38157034       KCNJ15  HGNC:6261      1
6721               21       38157034       KCNJ15  HGNC:6261      1
6722               21       38157034       KCNJ15  HGNC:6261      1
6723               21       38157034       KCNJ15  HGNC:6261      1
6724               21       38157034       KCNJ15  HGNC:6261      1
6725               21       38157034       KCNJ15  HGNC:6261      1
6726               21       38157034       KCNJ15  HGNC:6261      1
6727               21       38157034       KCNJ15  HGNC:6261      1
6728               21       38157034       KCNJ15  HGNC:6261      1
6729               21       38157034       KCNJ15  HGNC:6261      1
6730               21       38157034       KCNJ15  HGNC:6261      1
6731               21       38157034       KCNJ15  HGNC:6261      1
6732               21       38157034       KCNJ15  HGNC:6261      1
6733               21       38157034       KCNJ15  HGNC:6261      1
6734               21       38157034       KCNJ15  HGNC:6261      1
6735               21       38157034       KCNJ15  HGNC:6261      1
6736               21       38157034       KCNJ15  HGNC:6261      1
6737               21       38157034       KCNJ15  HGNC:6261      1
6738               21       38157034       KCNJ15  HGNC:6261      1
6739               21       38157034       KCNJ15  HGNC:6261      1
6740               21       38157034       KCNJ15  HGNC:6261      1
6741               21       38157034       KCNJ15  HGNC:6261      1
6742               21       38157034       KCNJ15  HGNC:6261      1
6743               21       38157034       KCNJ15  HGNC:6261      1
6744               21       38157034       KCNJ15  HGNC:6261      1
6745               21       38157034       KCNJ15  HGNC:6261      1
6746               21       38157034       KCNJ15  HGNC:6261      1
6747               21       38157034       KCNJ15  HGNC:6261      1
6748               21       38157034       KCNJ15  HGNC:6261      1
6749               21       38157034       KCNJ15  HGNC:6261      1
6750               21       38157034       KCNJ15  HGNC:6261      1
6751               21       38157034       KCNJ15  HGNC:6261      1
6752               21       38157034       KCNJ15  HGNC:6261      1
6753               21       38157034       KCNJ15  HGNC:6261      1
6754               21       38157034       KCNJ15  HGNC:6261      1
6755               21       38157034       KCNJ15  HGNC:6261      1
6756               21       38157034       KCNJ15  HGNC:6261      1
6757               21       38157034       KCNJ15  HGNC:6261      1
6758               21       38157034       KCNJ15  HGNC:6261      1
6759               21       38157034       KCNJ15  HGNC:6261      1
6760               21       38157034       KCNJ15  HGNC:6261      1
6761               21       38238227    SPATA20P1 HGNC:39636     -1
6762               21       38237217                             -1
6763               21       38237217                             -1
6764               21       38206156       DSCR10 HGNC:16302      1
6765               21       38206156       DSCR10 HGNC:16302      1
6766               21       38206156       DSCR10 HGNC:16302      1
6767               21       38204141                             -1
6768               21       38204141                             -1
6769               21       38121451        DSCR8 HGNC:16707      1
6770               21       38121451        DSCR8 HGNC:16707      1
6771               21       38121451        DSCR8 HGNC:16707      1
6772               21       38121451        DSCR8 HGNC:16707      1
6773               21       38121451        DSCR8 HGNC:16707      1
6774               21       38121451        DSCR8 HGNC:16707      1
6775               21       38121451        DSCR8 HGNC:16707      1
6776               21       38121451        DSCR8 HGNC:16707      1
6777               21       38121451        DSCR8 HGNC:16707      1
6778               21       38121451        DSCR8 HGNC:16707      1
6779               21       38121451        DSCR8 HGNC:16707      1
6780               21       38121451        DSCR8 HGNC:16707      1
6781               21       38121451        DSCR8 HGNC:16707      1
6782               21       38121451        DSCR8 HGNC:16707      1
6783               21       38121451        DSCR8 HGNC:16707      1
6784               21       38121451        DSCR8 HGNC:16707      1
6785               21       38121451        DSCR8 HGNC:16707      1
6786               21       38121451        DSCR8 HGNC:16707      1
6787               21       38121451        DSCR8 HGNC:16707      1
6788               21       38121451        DSCR8 HGNC:16707      1
6789               21       38121451        DSCR8 HGNC:16707      1
6790               21       38121451        DSCR8 HGNC:16707      1
6791               21       38121451        DSCR8 HGNC:16707      1
6792               21       38121451        DSCR8 HGNC:16707      1
6793               21       38121451        DSCR8 HGNC:16707      1
6794               21       38121451        DSCR8 HGNC:16707      1
6795               21       38121451        DSCR8 HGNC:16707      1
6796               21       38121451        DSCR8 HGNC:16707      1
6797               21       38121451        DSCR8 HGNC:16707      1
6798               21       38121451        DSCR8 HGNC:16707      1
6799               21       37951425        DSCR4  HGNC:3045     -1
6800               21       37951425        DSCR4  HGNC:3045     -1
6801               21       37951425        DSCR4  HGNC:3045     -1
6802               21       37951425        DSCR4  HGNC:3045     -1
6803               21       37951425        DSCR4  HGNC:3045     -1
6804               21       37951425        DSCR4  HGNC:3045     -1
6805               21       37951425        DSCR4  HGNC:3045     -1
6806               21       37951425        DSCR4  HGNC:3045     -1
6807               21       37951425        DSCR4  HGNC:3045     -1
6808               21       37951425        DSCR4  HGNC:3045     -1
6809               21       37951425        DSCR4  HGNC:3045     -1
6810               21       37951425        DSCR4  HGNC:3045     -1
6811               21       37951425        DSCR4  HGNC:3045     -1
6812               21       38006544    DSCR4-IT1 HGNC:41328     -1
6813               21       38006544    DSCR4-IT1 HGNC:41328     -1
6814               21       37607376        KCNJ6  HGNC:6267     -1
6815               21       37607376        KCNJ6  HGNC:6267     -1
6816               21       37607376        KCNJ6  HGNC:6267     -1
6817               21       37607376        KCNJ6  HGNC:6267     -1
6818               21       37717102    KCNJ6-AS1 HGNC:41352     -1
6819               21       37717102    KCNJ6-AS1 HGNC:41352     -1
6820               21       37365790       DYRK1A  HGNC:3091      1
6821               21       37365790       DYRK1A  HGNC:3091      1
6822               21       37365790       DYRK1A  HGNC:3091      1
6823               21       37365790       DYRK1A  HGNC:3091      1
6824               21       37365790       DYRK1A  HGNC:3091      1
6825               21       37365790       DYRK1A  HGNC:3091      1
6826               21       37365790       DYRK1A  HGNC:3091      1
6827               21       37365790       DYRK1A  HGNC:3091      1
6828               21       37365790       DYRK1A  HGNC:3091      1
6829               21       37365790       DYRK1A  HGNC:3091      1
6830               21       37365790       DYRK1A  HGNC:3091      1
6831               21       37365790       DYRK1A  HGNC:3091      1
6832               21       37365790       DYRK1A  HGNC:3091      1
6833               21       37365790       DYRK1A  HGNC:3091      1
6834               21       37365790       DYRK1A  HGNC:3091      1
6835               21       37365790       DYRK1A  HGNC:3091      1
6836               21       37365790       DYRK1A  HGNC:3091      1
6837               21       37365790       DYRK1A  HGNC:3091      1
6838               21       37365790       DYRK1A  HGNC:3091      1
6839               21       37365790       DYRK1A  HGNC:3091      1
6840               21       37365790       DYRK1A  HGNC:3091      1
6841               21       37365790       DYRK1A  HGNC:3091      1
6842               21       37365790       DYRK1A  HGNC:3091      1
6843               21       37365790       DYRK1A  HGNC:3091      1
6844               21       37365790       DYRK1A  HGNC:3091      1
6845               21       37365790       DYRK1A  HGNC:3091      1
6846               21       37365790       DYRK1A  HGNC:3091      1
6847               21       37365790       DYRK1A  HGNC:3091      1
6848               21       37365790       DYRK1A  HGNC:3091      1
6849               21       37365790       DYRK1A  HGNC:3091      1
6850               21       37365790       DYRK1A  HGNC:3091      1
6851               21       37365790       DYRK1A  HGNC:3091      1
6852               21       37365790       DYRK1A  HGNC:3091      1
6853               21       37365790       DYRK1A  HGNC:3091      1
6854               21       37365790       DYRK1A  HGNC:3091      1
6855               21       37365790       DYRK1A  HGNC:3091      1
6856               21       37365790       DYRK1A  HGNC:3091      1
6857               21       37365790       DYRK1A  HGNC:3091      1
6858               21       37365790       DYRK1A  HGNC:3091      1
6859               21       37365790       DYRK1A  HGNC:3091      1
6860               21       37365790       DYRK1A  HGNC:3091      1
6861               21       37365790       DYRK1A  HGNC:3091      1
6862               21       37365790       DYRK1A  HGNC:3091      1
6863               21       37365790       DYRK1A  HGNC:3091      1
6864               21       37365790       DYRK1A  HGNC:3091      1
6865               21       37365790       DYRK1A  HGNC:3091      1
6866               21       37365790       DYRK1A  HGNC:3091      1
6867               21       37365790       DYRK1A  HGNC:3091      1
6868               21       37365790       DYRK1A  HGNC:3091      1
6869               21       37365790       DYRK1A  HGNC:3091      1
6870               21       37365790       DYRK1A  HGNC:3091      1
6871               21       37365790       DYRK1A  HGNC:3091      1
6872               21       37365790       DYRK1A  HGNC:3091      1
6873               21       37365790       DYRK1A  HGNC:3091      1
6874               21       37365790       DYRK1A  HGNC:3091      1
6875               21       37365790       DYRK1A  HGNC:3091      1
6876               21       37365790       DYRK1A  HGNC:3091      1
6877               21       37365790       DYRK1A  HGNC:3091      1
6878               21       37365790       DYRK1A  HGNC:3091      1
6879               21       37365790       DYRK1A  HGNC:3091      1
6880               21       37365790       DYRK1A  HGNC:3091      1
6881               21       37365790       DYRK1A  HGNC:3091      1
6882               21       37365790       DYRK1A  HGNC:3091      1
6883               21       37365790       DYRK1A  HGNC:3091      1
6884               21       37365477                             -1
6885               21       37267784                              1
6886               21       37223420        DSCR3  HGNC:3044     -1
6887               21       37223420        DSCR3  HGNC:3044     -1
6888               21       37223420        DSCR3  HGNC:3044     -1
6889               21       37223420        DSCR3  HGNC:3044     -1
6890               21       37223420        DSCR3  HGNC:3044     -1
6891               21       37223420        DSCR3  HGNC:3044     -1
6892               21       37223420        DSCR3  HGNC:3044     -1
6893               21       37223420        DSCR3  HGNC:3044     -1
6894               21       37223420        DSCR3  HGNC:3044     -1
6895               21       37223420        DSCR3  HGNC:3044     -1
6896               21       37223420        DSCR3  HGNC:3044     -1
6897               21       37223420        DSCR3  HGNC:3044     -1
6898               21       37223420        DSCR3  HGNC:3044     -1
6899               21       37223420        DSCR3  HGNC:3044     -1
6900               21       37223420        DSCR3  HGNC:3044     -1
6901               21       37223420        DSCR3  HGNC:3044     -1
6902               21       37223420        DSCR3  HGNC:3044     -1
6903               21       37223420        DSCR3  HGNC:3044     -1
6904               21       37223420        DSCR3  HGNC:3044     -1
6905               21       37223420        DSCR3  HGNC:3044     -1
6906               21       37223420        DSCR3  HGNC:3044     -1
6907               21       37223420        DSCR3  HGNC:3044     -1
6908               21       37223420        DSCR3  HGNC:3044     -1
6909               21       37223420        DSCR3  HGNC:3044     -1
6910               21       37223420        DSCR3  HGNC:3044     -1
6911               21       37223420        DSCR3  HGNC:3044     -1
6912               21       37223420        DSCR3  HGNC:3044     -1
6913               21       37223420        DSCR3  HGNC:3044     -1
6914               21       37223420        DSCR3  HGNC:3044     -1
6915               21       37223420        DSCR3  HGNC:3044     -1
6916               21       37223420        DSCR3  HGNC:3044     -1
6917               21       37223420        DSCR3  HGNC:3044     -1
6918               21       37223420        DSCR3  HGNC:3044     -1
6919               21       37223420        DSCR3  HGNC:3044     -1
6920               21       37223420        DSCR3  HGNC:3044     -1
6921               21       37223420        DSCR3  HGNC:3044     -1
6922               21       37223420        DSCR3  HGNC:3044     -1
6923               21       37223420        DSCR3  HGNC:3044     -1
6924               21       37223420        DSCR3  HGNC:3044     -1
6925               21       37223420        DSCR3  HGNC:3044     -1
6926               21       37223420        DSCR3  HGNC:3044     -1
6927               21       37223420        DSCR3  HGNC:3044     -1
6928               21       37223420        DSCR3  HGNC:3044     -1
6929               21       37223420        DSCR3  HGNC:3044     -1
6930               21       37223420        DSCR3  HGNC:3044     -1
6931               21       37223420        DSCR3  HGNC:3044     -1
6932               21       37223420        DSCR3  HGNC:3044     -1
6933               21       37223420        DSCR3  HGNC:3044     -1
6934               21       37223420        DSCR3  HGNC:3044     -1
6935               21       37223420        DSCR3  HGNC:3044     -1
6936               21       37223420        DSCR3  HGNC:3044     -1
6937               21       37223420        DSCR3  HGNC:3044     -1
6938               21       37223420        DSCR3  HGNC:3044     -1
6939               21       37223420        DSCR3  HGNC:3044     -1
6940               21       37223420        DSCR3  HGNC:3044     -1
6941               21       37223420        DSCR3  HGNC:3044     -1
6942               21       37223420        DSCR3  HGNC:3044     -1
6943               21       37223420        DSCR3  HGNC:3044     -1
6944               21       37223420        DSCR3  HGNC:3044     -1
6945               21       37223420        DSCR3  HGNC:3044     -1
6946               21       37223420        DSCR3  HGNC:3044     -1
6947               21       37223420        DSCR3  HGNC:3044     -1
6948               21       37223420        DSCR3  HGNC:3044     -1
6949               21       37223420        DSCR3  HGNC:3044     -1
6950               21       37223420        DSCR3  HGNC:3044     -1
6951               21       37221419                              1
6952               21       37221419                              1
6953               21       37208503        DSCR9 HGNC:16301      1
6954               21       37208503        DSCR9 HGNC:16301      1
6955               21       37208503        DSCR9 HGNC:16301      1
6956               21       37208503        DSCR9 HGNC:16301      1
6957               21       37208503        DSCR9 HGNC:16301      1
6958               21       37208503        DSCR9 HGNC:16301      1
6959               21       37208503        DSCR9 HGNC:16301      1
6960               21       37208503        DSCR9 HGNC:16301      1
6961               21       37208503        DSCR9 HGNC:16301      1
6962               21       37208503        DSCR9 HGNC:16301      1
6963               21       37208503        DSCR9 HGNC:16301      1
6964               21       37208503        DSCR9 HGNC:16301      1
6965               21       37208503        DSCR9 HGNC:16301      1
6966               21       37208503        DSCR9 HGNC:16301      1
6967               21       37208503        DSCR9 HGNC:16301      1
6968               21       37208503        DSCR9 HGNC:16301      1
6969               21       37208503        DSCR9 HGNC:16301      1
6970               21       37208503        DSCR9 HGNC:16301      1
6971               21       37208503        DSCR9 HGNC:16301      1
6972               21       37208503        DSCR9 HGNC:16301      1
6973               21       37208503        DSCR9 HGNC:16301      1
6974               21       37215605    RN7SL678P HGNC:46694      1
6975               21       37073226         TTC3 HGNC:12393      1
6976               21       37073226         TTC3 HGNC:12393      1
6977               21       37073226         TTC3 HGNC:12393      1
6978               21       37073226         TTC3 HGNC:12393      1
6979               21       37073226         TTC3 HGNC:12393      1
6980               21       37073226         TTC3 HGNC:12393      1
6981               21       37073226         TTC3 HGNC:12393      1
6982               21       37073226         TTC3 HGNC:12393      1
6983               21       37073226         TTC3 HGNC:12393      1
6984               21       37073226         TTC3 HGNC:12393      1
6985               21       37073226         TTC3 HGNC:12393      1
6986               21       37073226         TTC3 HGNC:12393      1
6987               21       37073226         TTC3 HGNC:12393      1
6988               21       37073226         TTC3 HGNC:12393      1
6989               21       37073226         TTC3 HGNC:12393      1
6990               21       37073226         TTC3 HGNC:12393      1
6991               21       37073226         TTC3 HGNC:12393      1
6992               21       37073226         TTC3 HGNC:12393      1
6993               21       37073226         TTC3 HGNC:12393      1
6994               21       37073226         TTC3 HGNC:12393      1
6995               21       37073226         TTC3 HGNC:12393      1
6996               21       37073226         TTC3 HGNC:12393      1
6997               21       37073226         TTC3 HGNC:12393      1
6998               21       37073226         TTC3 HGNC:12393      1
6999               21       37073226         TTC3 HGNC:12393      1
7000               21       37073226         TTC3 HGNC:12393      1
7001               21       37073226         TTC3 HGNC:12393      1
7002               21       37073226         TTC3 HGNC:12393      1
7003               21       37073226         TTC3 HGNC:12393      1
7004               21       37073226         TTC3 HGNC:12393      1
7005               21       37073226         TTC3 HGNC:12393      1
7006               21       37073226         TTC3 HGNC:12393      1
7007               21       37073226         TTC3 HGNC:12393      1
7008               21       37073226         TTC3 HGNC:12393      1
7009               21       37073226         TTC3 HGNC:12393      1
7010               21       37073226         TTC3 HGNC:12393      1
7011               21       37073226         TTC3 HGNC:12393      1
7012               21       37073226         TTC3 HGNC:12393      1
7013               21       37073226         TTC3 HGNC:12393      1
7014               21       37073226         TTC3 HGNC:12393      1
7015               21       37073226         TTC3 HGNC:12393      1
7016               21       37073226         TTC3 HGNC:12393      1
7017               21       37073226         TTC3 HGNC:12393      1
7018               21       37073226         TTC3 HGNC:12393      1
7019               21       37073226         TTC3 HGNC:12393      1
7020               21       37073226         TTC3 HGNC:12393      1
7021               21       37073226         TTC3 HGNC:12393      1
7022               21       37073226         TTC3 HGNC:12393      1
7023               21       37073226         TTC3 HGNC:12393      1
7024               21       37073226         TTC3 HGNC:12393      1
7025               21       37073226         TTC3 HGNC:12393      1
7026               21       37073226         TTC3 HGNC:12393      1
7027               21       37073226         TTC3 HGNC:12393      1
7028               21       37073226         TTC3 HGNC:12393      1
7029               21       37073226         TTC3 HGNC:12393      1
7030               21       37073226         TTC3 HGNC:12393      1
7031               21       37073226         TTC3 HGNC:12393      1
7032               21       37073226         TTC3 HGNC:12393      1
7033               21       37073226         TTC3 HGNC:12393      1
7034               21       37073226         TTC3 HGNC:12393      1
7035               21       37073226         TTC3 HGNC:12393      1
7036               21       37073226         TTC3 HGNC:12393      1
7037               21       37073226         TTC3 HGNC:12393      1
7038               21       37073226         TTC3 HGNC:12393      1
7039               21       37073226         TTC3 HGNC:12393      1
7040               21       37073226         TTC3 HGNC:12393      1
7041               21       37073226         TTC3 HGNC:12393      1
7042               21       37073226         TTC3 HGNC:12393      1
7043               21       37073226         TTC3 HGNC:12393      1
7044               21       37073226         TTC3 HGNC:12393      1
7045               21       37073226         TTC3 HGNC:12393      1
7046               21       37073226         TTC3 HGNC:12393      1
7047               21       37073226         TTC3 HGNC:12393      1
7048               21       37073226         TTC3 HGNC:12393      1
7049               21       37073226         TTC3 HGNC:12393      1
7050               21       37073226         TTC3 HGNC:12393      1
7051               21       37073226         TTC3 HGNC:12393      1
7052               21       37073226         TTC3 HGNC:12393      1
7053               21       37073226         TTC3 HGNC:12393      1
7054               21       37073226         TTC3 HGNC:12393      1
7055               21       37073226         TTC3 HGNC:12393      1
7056               21       37073226         TTC3 HGNC:12393      1
7057               21       37073226         TTC3 HGNC:12393      1
7058               21       37073226         TTC3 HGNC:12393      1
7059               21       37073226         TTC3 HGNC:12393      1
7060               21       37073226         TTC3 HGNC:12393      1
7061               21       37073226         TTC3 HGNC:12393      1
7062               21       37073226         TTC3 HGNC:12393      1
7063               21       37073226         TTC3 HGNC:12393      1
7064               21       37073226         TTC3 HGNC:12393      1
7065               21       37073226         TTC3 HGNC:12393      1
7066               21       37073226         TTC3 HGNC:12393      1
7067               21       37073226         TTC3 HGNC:12393      1
7068               21       37073226         TTC3 HGNC:12393      1
7069               21       37073226         TTC3 HGNC:12393      1
7070               21       37073226         TTC3 HGNC:12393      1
7071               21       37073226         TTC3 HGNC:12393      1
7072               21       37073226         TTC3 HGNC:12393      1
7073               21       37073226         TTC3 HGNC:12393      1
7074               21       37073226         TTC3 HGNC:12393      1
7075               21       37073226         TTC3 HGNC:12393      1
7076               21       37073226         TTC3 HGNC:12393      1
7077               21       37073226         TTC3 HGNC:12393      1
7078               21       37073226         TTC3 HGNC:12393      1
7079               21       37073226         TTC3 HGNC:12393      1
7080               21       37073226         TTC3 HGNC:12393      1
7081               21       37073226         TTC3 HGNC:12393      1
7082               21       37073226         TTC3 HGNC:12393      1
7083               21       37073226         TTC3 HGNC:12393      1
7084               21       37073226         TTC3 HGNC:12393      1
7085               21       37073226         TTC3 HGNC:12393      1
7086               21       37073226         TTC3 HGNC:12393      1
7087               21       37073226         TTC3 HGNC:12393      1
7088               21       37073226         TTC3 HGNC:12393      1
7089               21       37073226         TTC3 HGNC:12393      1
7090               21       37073226         TTC3 HGNC:12393      1
7091               21       37073226         TTC3 HGNC:12393      1
7092               21       37073226         TTC3 HGNC:12393      1
7093               21       37073226         TTC3 HGNC:12393      1
7094               21       37073226         TTC3 HGNC:12393      1
7095               21       37073226         TTC3 HGNC:12393      1
7096               21       37073226         TTC3 HGNC:12393      1
7097               21       37073226         TTC3 HGNC:12393      1
7098               21       37073226         TTC3 HGNC:12393      1
7099               21       37073226         TTC3 HGNC:12393      1
7100               21       37073226         TTC3 HGNC:12393      1
7101               21       37073226         TTC3 HGNC:12393      1
7102               21       37073226         TTC3 HGNC:12393      1
7103               21       37073226         TTC3 HGNC:12393      1
7104               21       37073226         TTC3 HGNC:12393      1
7105               21       37073226         TTC3 HGNC:12393      1
7106               21       37073226         TTC3 HGNC:12393      1
7107               21       37073226         TTC3 HGNC:12393      1
7108               21       37073226         TTC3 HGNC:12393      1
7109               21       37073226         TTC3 HGNC:12393      1
7110               21       37073226         TTC3 HGNC:12393      1
7111               21       37073226         TTC3 HGNC:12393      1
7112               21       37073226         TTC3 HGNC:12393      1
7113               21       37073226         TTC3 HGNC:12393      1
7114               21       37073226         TTC3 HGNC:12393      1
7115               21       37073226         TTC3 HGNC:12393      1
7116               21       37073226         TTC3 HGNC:12393      1
7117               21       37073226         TTC3 HGNC:12393      1
7118               21       37073226         TTC3 HGNC:12393      1
7119               21       37073226         TTC3 HGNC:12393      1
7120               21       37073226         TTC3 HGNC:12393      1
7121               21       37073226         TTC3 HGNC:12393      1
7122               21       37073226         TTC3 HGNC:12393      1
7123               21       37073226         TTC3 HGNC:12393      1
7124               21       37073226         TTC3 HGNC:12393      1
7125               21       37073226         TTC3 HGNC:12393      1
7126               21       37073226         TTC3 HGNC:12393      1
7127               21       37073226         TTC3 HGNC:12393      1
7128               21       37073226         TTC3 HGNC:12393      1
7129               21       37073226         TTC3 HGNC:12393      1
7130               21       37073226         TTC3 HGNC:12393      1
7131               21       37073226         TTC3 HGNC:12393      1
7132               21       37073226         TTC3 HGNC:12393      1
7133               21       37073226         TTC3 HGNC:12393      1
7134               21       37073226         TTC3 HGNC:12393      1
7135               21       37073226         TTC3 HGNC:12393      1
7136               21       37073226         TTC3 HGNC:12393      1
7137               21       37073226         TTC3 HGNC:12393      1
7138               21       37073226         TTC3 HGNC:12393      1
7139               21       37073226         TTC3 HGNC:12393      1
7140               21       37073226         TTC3 HGNC:12393      1
7141               21       37073226         TTC3 HGNC:12393      1
7142               21       37073226         TTC3 HGNC:12393      1
7143               21       37073226         TTC3 HGNC:12393      1
7144               21       37073226         TTC3 HGNC:12393      1
7145               21       37073226         TTC3 HGNC:12393      1
7146               21       37073226         TTC3 HGNC:12393      1
7147               21       37073226         TTC3 HGNC:12393      1
7148               21       37073226         TTC3 HGNC:12393      1
7149               21       37073226         TTC3 HGNC:12393      1
7150               21       37073226         TTC3 HGNC:12393      1
7151               21       37073226         TTC3 HGNC:12393      1
7152               21       37073226         TTC3 HGNC:12393      1
7153               21       37073226         TTC3 HGNC:12393      1
7154               21       37073226         TTC3 HGNC:12393      1
7155               21       37073226         TTC3 HGNC:12393      1
7156               21       37073226         TTC3 HGNC:12393      1
7157               21       37073226         TTC3 HGNC:12393      1
7158               21       37073226         TTC3 HGNC:12393      1
7159               21       37073226         TTC3 HGNC:12393      1
7160               21       37073226         TTC3 HGNC:12393      1
7161               21       37073226         TTC3 HGNC:12393      1
7162               21       37073226         TTC3 HGNC:12393      1
7163               21       37073226         TTC3 HGNC:12393      1
7164               21       37073226         TTC3 HGNC:12393      1
7165               21       37073226         TTC3 HGNC:12393      1
7166               21       37073226         TTC3 HGNC:12393      1
7167               21       37073226         TTC3 HGNC:12393      1
7168               21       37073226         TTC3 HGNC:12393      1
7169               21       37073226         TTC3 HGNC:12393      1
7170               21       37073226         TTC3 HGNC:12393      1
7171               21       37073226         TTC3 HGNC:12393      1
7172               21       37073226         TTC3 HGNC:12393      1
7173               21       37073226         TTC3 HGNC:12393      1
7174               21       37073226         TTC3 HGNC:12393      1
7175               21       37073226         TTC3 HGNC:12393      1
7176               21       37073226         TTC3 HGNC:12393      1
7177               21       37073226         TTC3 HGNC:12393      1
7178               21       37073226         TTC3 HGNC:12393      1
7179               21       37073226         TTC3 HGNC:12393      1
7180               21       37073226         TTC3 HGNC:12393      1
7181               21       37073226         TTC3 HGNC:12393      1
7182               21       37073226         TTC3 HGNC:12393      1
7183               21       37073226         TTC3 HGNC:12393      1
7184               21       37073226         TTC3 HGNC:12393      1
7185               21       37073226         TTC3 HGNC:12393      1
7186               21       37073226         TTC3 HGNC:12393      1
7187               21       37073226         TTC3 HGNC:12393      1
7188               21       37073226         TTC3 HGNC:12393      1
7189               21       37073226         TTC3 HGNC:12393      1
7190               21       37073226         TTC3 HGNC:12393      1
7191               21       37073226         TTC3 HGNC:12393      1
7192               21       37073226         TTC3 HGNC:12393      1
7193               21       37073226         TTC3 HGNC:12393      1
7194               21       37073226         TTC3 HGNC:12393      1
7195               21       37073226         TTC3 HGNC:12393      1
7196               21       37073226         TTC3 HGNC:12393      1
7197               21       37073226         TTC3 HGNC:12393      1
7198               21       37073226         TTC3 HGNC:12393      1
7199               21       37073226         TTC3 HGNC:12393      1
7200               21       37073226         TTC3 HGNC:12393      1
7201               21       37073226         TTC3 HGNC:12393      1
7202               21       37073226         TTC3 HGNC:12393      1
7203               21       37073226         TTC3 HGNC:12393      1
7204               21       37073226         TTC3 HGNC:12393      1
7205               21       37073226         TTC3 HGNC:12393      1
7206               21       37073226         TTC3 HGNC:12393      1
7207               21       37073226         TTC3 HGNC:12393      1
7208               21       37073226         TTC3 HGNC:12393      1
7209               21       37073226         TTC3 HGNC:12393      1
7210               21       37073226         TTC3 HGNC:12393      1
7211               21       37073226         TTC3 HGNC:12393      1
7212               21       37073226         TTC3 HGNC:12393      1
7213               21       37073226         TTC3 HGNC:12393      1
7214               21       37073226         TTC3 HGNC:12393      1
7215               21       37073226         TTC3 HGNC:12393      1
7216               21       37073226         TTC3 HGNC:12393      1
7217               21       37073226         TTC3 HGNC:12393      1
7218               21       37073226         TTC3 HGNC:12393      1
7219               21       37073226         TTC3 HGNC:12393      1
7220               21       37073226         TTC3 HGNC:12393      1
7221               21       37073226         TTC3 HGNC:12393      1
7222               21       37073226         TTC3 HGNC:12393      1
7223               21       37073226         TTC3 HGNC:12393      1
7224               21       37073226         TTC3 HGNC:12393      1
7225               21       37073226         TTC3 HGNC:12393      1
7226               21       37073226         TTC3 HGNC:12393      1
7227               21       37073226         TTC3 HGNC:12393      1
7228               21       37073226         TTC3 HGNC:12393      1
7229               21       37073226         TTC3 HGNC:12393      1
7230               21       37073226         TTC3 HGNC:12393      1
7231               21       37073226         TTC3 HGNC:12393      1
7232               21       37073226         TTC3 HGNC:12393      1
7233               21       37073226         TTC3 HGNC:12393      1
7234               21       37073226         TTC3 HGNC:12393      1
7235               21       37073226         TTC3 HGNC:12393      1
7236               21       37073226         TTC3 HGNC:12393      1
7237               21       37073226         TTC3 HGNC:12393      1
7238               21       37073226         TTC3 HGNC:12393      1
7239               21       37073226         TTC3 HGNC:12393      1
7240               21       37073226         TTC3 HGNC:12393      1
7241               21       37073226         TTC3 HGNC:12393      1
7242               21       37073226         TTC3 HGNC:12393      1
7243               21       37073226         TTC3 HGNC:12393      1
7244               21       37073226         TTC3 HGNC:12393      1
7245               21       37073226         TTC3 HGNC:12393      1
7246               21       37073226         TTC3 HGNC:12393      1
7247               21       37073226         TTC3 HGNC:12393      1
7248               21       37073226         TTC3 HGNC:12393      1
7249               21       37073226         TTC3 HGNC:12393      1
7250               21       37073226         TTC3 HGNC:12393      1
7251               21       37073226         TTC3 HGNC:12393      1
7252               21       37073226         TTC3 HGNC:12393      1
7253               21       37073226         TTC3 HGNC:12393      1
7254               21       37073226         TTC3 HGNC:12393      1
7255               21       37073226         TTC3 HGNC:12393      1
7256               21       37073226         TTC3 HGNC:12393      1
7257               21       37073226         TTC3 HGNC:12393      1
7258               21       37073226         TTC3 HGNC:12393      1
7259               21       37073226         TTC3 HGNC:12393      1
7260               21       37073226         TTC3 HGNC:12393      1
7261               21       37073226         TTC3 HGNC:12393      1
7262               21       37073226         TTC3 HGNC:12393      1
7263               21       37073226         TTC3 HGNC:12393      1
7264               21       37073226         TTC3 HGNC:12393      1
7265               21       37073226         TTC3 HGNC:12393      1
7266               21       37073226         TTC3 HGNC:12393      1
7267               21       37073226         TTC3 HGNC:12393      1
7268               21       37073226         TTC3 HGNC:12393      1
7269               21       37073226         TTC3 HGNC:12393      1
7270               21       37073226         TTC3 HGNC:12393      1
7271               21       37073226         TTC3 HGNC:12393      1
7272               21       37073226         TTC3 HGNC:12393      1
7273               21       37073226         TTC3 HGNC:12393      1
7274               21       37073226         TTC3 HGNC:12393      1
7275               21       37073226         TTC3 HGNC:12393      1
7276               21       37073226         TTC3 HGNC:12393      1
7277               21       37073226         TTC3 HGNC:12393      1
7278               21       37073226         TTC3 HGNC:12393      1
7279               21       37073226         TTC3 HGNC:12393      1
7280               21       37073226         TTC3 HGNC:12393      1
7281               21       37073226         TTC3 HGNC:12393      1
7282               21       37073226         TTC3 HGNC:12393      1
7283               21       37073226         TTC3 HGNC:12393      1
7284               21       37073226         TTC3 HGNC:12393      1
7285               21       37073226         TTC3 HGNC:12393      1
7286               21       37073226         TTC3 HGNC:12393      1
7287               21       37073226         TTC3 HGNC:12393      1
7288               21       37073226         TTC3 HGNC:12393      1
7289               21       37073226         TTC3 HGNC:12393      1
7290               21       37073226         TTC3 HGNC:12393      1
7291               21       37073226         TTC3 HGNC:12393      1
7292               21       37073226         TTC3 HGNC:12393      1
7293               21       37073226         TTC3 HGNC:12393      1
7294               21       37073226         TTC3 HGNC:12393      1
7295               21       37073226         TTC3 HGNC:12393      1
7296               21       37073226         TTC3 HGNC:12393      1
7297               21       37073226         TTC3 HGNC:12393      1
7298               21       37073226         TTC3 HGNC:12393      1
7299               21       37073226         TTC3 HGNC:12393      1
7300               21       37073226         TTC3 HGNC:12393      1
7301               21       37073226         TTC3 HGNC:12393      1
7302               21       37073226         TTC3 HGNC:12393      1
7303               21       37073226         TTC3 HGNC:12393      1
7304               21       37073226         TTC3 HGNC:12393      1
7305               21       37073226         TTC3 HGNC:12393      1
7306               21       37073226         TTC3 HGNC:12393      1
7307               21       37073226         TTC3 HGNC:12393      1
7308               21       37073226         TTC3 HGNC:12393      1
7309               21       37073226         TTC3 HGNC:12393      1
7310               21       37073226         TTC3 HGNC:12393      1
7311               21       37073226         TTC3 HGNC:12393      1
7312               21       37073226         TTC3 HGNC:12393      1
7313               21       37073226         TTC3 HGNC:12393      1
7314               21       37073226         TTC3 HGNC:12393      1
7315               21       37073226         TTC3 HGNC:12393      1
7316               21       37073226         TTC3 HGNC:12393      1
7317               21       37073226         TTC3 HGNC:12393      1
7318               21       37073226         TTC3 HGNC:12393      1
7319               21       37073226         TTC3 HGNC:12393      1
7320               21       37073226         TTC3 HGNC:12393      1
7321               21       37073226         TTC3 HGNC:12393      1
7322               21       37073226         TTC3 HGNC:12393      1
7323               21       37073226         TTC3 HGNC:12393      1
7324               21       37073226         TTC3 HGNC:12393      1
7325               21       37073226         TTC3 HGNC:12393      1
7326               21       37073226         TTC3 HGNC:12393      1
7327               21       37073226         TTC3 HGNC:12393      1
7328               21       37073226         TTC3 HGNC:12393      1
7329               21       37073226         TTC3 HGNC:12393      1
7330               21       37073226         TTC3 HGNC:12393      1
7331               21       37073226         TTC3 HGNC:12393      1
7332               21       37073226         TTC3 HGNC:12393      1
7333               21       37073226         TTC3 HGNC:12393      1
7334               21       37073226         TTC3 HGNC:12393      1
7335               21       37073226         TTC3 HGNC:12393      1
7336               21       37073226         TTC3 HGNC:12393      1
7337               21       37073226         TTC3 HGNC:12393      1
7338               21       37073226         TTC3 HGNC:12393      1
7339               21       37073226         TTC3 HGNC:12393      1
7340               21       37073226         TTC3 HGNC:12393      1
7341               21       37073226         TTC3 HGNC:12393      1
7342               21       37073226         TTC3 HGNC:12393      1
7343               21       37073226         TTC3 HGNC:12393      1
7344               21       37073226         TTC3 HGNC:12393      1
7345               21       37073226         TTC3 HGNC:12393      1
7346               21       37073226         TTC3 HGNC:12393      1
7347               21       37073226         TTC3 HGNC:12393      1
7348               21       37073226         TTC3 HGNC:12393      1
7349               21       37073226         TTC3 HGNC:12393      1
7350               21       37073226         TTC3 HGNC:12393      1
7351               21       37073226         TTC3 HGNC:12393      1
7352               21       37073226         TTC3 HGNC:12393      1
7353               21       37073226         TTC3 HGNC:12393      1
7354               21       37073226         TTC3 HGNC:12393      1
7355               21       37073226         TTC3 HGNC:12393      1
7356               21       37073226         TTC3 HGNC:12393      1
7357               21       37073226         TTC3 HGNC:12393      1
7358               21       37073226         TTC3 HGNC:12393      1
7359               21       37073226         TTC3 HGNC:12393      1
7360               21       37073226         TTC3 HGNC:12393      1
7361               21       37073226         TTC3 HGNC:12393      1
7362               21       37073226         TTC3 HGNC:12393      1
7363               21       37073226         TTC3 HGNC:12393      1
7364               21       37073226         TTC3 HGNC:12393      1
7365               21       37073226         TTC3 HGNC:12393      1
7366               21       37073226         TTC3 HGNC:12393      1
7367               21       37073226         TTC3 HGNC:12393      1
7368               21       37073226         TTC3 HGNC:12393      1
7369               21       37073226         TTC3 HGNC:12393      1
7370               21       37073226         TTC3 HGNC:12393      1
7371               21       37073226         TTC3 HGNC:12393      1
7372               21       37073226         TTC3 HGNC:12393      1
7373               21       37073226         TTC3 HGNC:12393      1
7374               21       37073226         TTC3 HGNC:12393      1
7375               21       37073226         TTC3 HGNC:12393      1
7376               21       37073226         TTC3 HGNC:12393      1
7377               21       37073226         TTC3 HGNC:12393      1
7378               21       37073226         TTC3 HGNC:12393      1
7379               21       37073226         TTC3 HGNC:12393      1
7380               21       37073226         TTC3 HGNC:12393      1
7381               21       37073226         TTC3 HGNC:12393      1
7382               21       37073226         TTC3 HGNC:12393      1
7383               21       37073226         TTC3 HGNC:12393      1
7384               21       37073226         TTC3 HGNC:12393      1
7385               21       37073226         TTC3 HGNC:12393      1
7386               21       37073226         TTC3 HGNC:12393      1
7387               21       37073226         TTC3 HGNC:12393      1
7388               21       37073226         TTC3 HGNC:12393      1
7389               21       37073226         TTC3 HGNC:12393      1
7390               21       37073226         TTC3 HGNC:12393      1
7391               21       37073226         TTC3 HGNC:12393      1
7392               21       37073226         TTC3 HGNC:12393      1
7393               21       37073226         TTC3 HGNC:12393      1
7394               21       37073226         TTC3 HGNC:12393      1
7395               21       37073226         TTC3 HGNC:12393      1
7396               21       37073226         TTC3 HGNC:12393      1
7397               21       37073226         TTC3 HGNC:12393      1
7398               21       37073226         TTC3 HGNC:12393      1
7399               21       37073226         TTC3 HGNC:12393      1
7400               21       37073226         TTC3 HGNC:12393      1
7401               21       37073226         TTC3 HGNC:12393      1
7402               21       37073226         TTC3 HGNC:12393      1
7403               21       37073226         TTC3 HGNC:12393      1
7404               21       37073226         TTC3 HGNC:12393      1
7405               21       37073226         TTC3 HGNC:12393      1
7406               21       37073226         TTC3 HGNC:12393      1
7407               21       37073226         TTC3 HGNC:12393      1
7408               21       37073226         TTC3 HGNC:12393      1
7409               21       37073226         TTC3 HGNC:12393      1
7410               21       37073226         TTC3 HGNC:12393      1
7411               21       37073226         TTC3 HGNC:12393      1
7412               21       37073226         TTC3 HGNC:12393      1
7413               21       37073226         TTC3 HGNC:12393      1
7414               21       37073226         TTC3 HGNC:12393      1
7415               21       37073226         TTC3 HGNC:12393      1
7416               21       37073226         TTC3 HGNC:12393      1
7417               21       37073226         TTC3 HGNC:12393      1
7418               21       37073226         TTC3 HGNC:12393      1
7419               21       37073226         TTC3 HGNC:12393      1
7420               21       37073226         TTC3 HGNC:12393      1
7421               21       37073226         TTC3 HGNC:12393      1
7422               21       37073226         TTC3 HGNC:12393      1
7423               21       37073226         TTC3 HGNC:12393      1
7424               21       37073226         TTC3 HGNC:12393      1
7425               21       37073226         TTC3 HGNC:12393      1
7426               21       37073226         TTC3 HGNC:12393      1
7427               21       37073226         TTC3 HGNC:12393      1
7428               21       37073226         TTC3 HGNC:12393      1
7429               21       37073226         TTC3 HGNC:12393      1
7430               21       37073226         TTC3 HGNC:12393      1
7431               21       37073226         TTC3 HGNC:12393      1
7432               21       37073226         TTC3 HGNC:12393      1
7433               21       37073226         TTC3 HGNC:12393      1
7434               21       37073226         TTC3 HGNC:12393      1
7435               21       37073226         TTC3 HGNC:12393      1
7436               21       37073226         TTC3 HGNC:12393      1
7437               21       37073226         TTC3 HGNC:12393      1
7438               21       37073226         TTC3 HGNC:12393      1
7439               21       37073226         TTC3 HGNC:12393      1
7440               21       37073226         TTC3 HGNC:12393      1
7441               21       37073226         TTC3 HGNC:12393      1
7442               21       37073226         TTC3 HGNC:12393      1
7443               21       37073226         TTC3 HGNC:12393      1
7444               21       37073226         TTC3 HGNC:12393      1
7445               21       37073226         TTC3 HGNC:12393      1
7446               21       37073226         TTC3 HGNC:12393      1
7447               21       37073226         TTC3 HGNC:12393      1
7448               21       37073226         TTC3 HGNC:12393      1
7449               21       37073226         TTC3 HGNC:12393      1
7450               21       37187666     TTC3-AS1 HGNC:40595     -1
7451               21       37187666     TTC3-AS1 HGNC:40595     -1
7452               21       37100814                              1
7453               21       37059170         PIGP  HGNC:3046     -1
7454               21       37059170         PIGP  HGNC:3046     -1
7455               21       37059170         PIGP  HGNC:3046     -1
7456               21       37059170         PIGP  HGNC:3046     -1
7457               21       37059170         PIGP  HGNC:3046     -1
7458               21       37059170         PIGP  HGNC:3046     -1
7459               21       37059170         PIGP  HGNC:3046     -1
7460               21       37059170         PIGP  HGNC:3046     -1
7461               21       37059170         PIGP  HGNC:3046     -1
7462               21       37059170         PIGP  HGNC:3046     -1
7463               21       37059170         PIGP  HGNC:3046     -1
7464               21       37059170         PIGP  HGNC:3046     -1
7465               21       37059170         PIGP  HGNC:3046     -1
7466               21       37059170         PIGP  HGNC:3046     -1
7467               21       37059170         PIGP  HGNC:3046     -1
7468               21       37059170         PIGP  HGNC:3046     -1
7469               21       37059170         PIGP  HGNC:3046     -1
7470               21       37059170         PIGP  HGNC:3046     -1
7471               21       37059170         PIGP  HGNC:3046     -1
7472               21       37059170         PIGP  HGNC:3046     -1
7473               21       37059170         PIGP  HGNC:3046     -1
7474               21       37059170         PIGP  HGNC:3046     -1
7475               21       37059170         PIGP  HGNC:3046     -1
7476               21       37059170         PIGP  HGNC:3046     -1
7477               21       37059170         PIGP  HGNC:3046     -1
7478               21       37059170         PIGP  HGNC:3046     -1
7479               21       37059170         PIGP  HGNC:3046     -1
7480               21       37059170         PIGP  HGNC:3046     -1
7481               21       37059170         PIGP  HGNC:3046     -1
7482               21       37059170         PIGP  HGNC:3046     -1
7483               21       37059170         PIGP  HGNC:3046     -1
7484               21       37059170         PIGP  HGNC:3046     -1
7485               21       37059170         PIGP  HGNC:3046     -1
7486               21       37045530    RNU6-696P HGNC:47659      1
7487               21       37006150      RIPPLY3  HGNC:3047      1
7488               21       37006150      RIPPLY3  HGNC:3047      1
7489               21       37006150      RIPPLY3  HGNC:3047      1
7490               21       37006150      RIPPLY3  HGNC:3047      1
7491               21       37006150      RIPPLY3  HGNC:3047      1
7492               21       37006150      RIPPLY3  HGNC:3047      1
7493               21       37006150      RIPPLY3  HGNC:3047      1
7494               21       37006150      RIPPLY3  HGNC:3047      1
7495               21       37006150      RIPPLY3  HGNC:3047      1
7496               21       37006150      RIPPLY3  HGNC:3047      1
7497               21       37006150      RIPPLY3  HGNC:3047      1
7498               21       36994643     MRPL20P1 HGNC:29699      1
7499               21       36750888         HLCS  HGNC:4976     -1
7500               21       36750888         HLCS  HGNC:4976     -1
7501               21       36750888         HLCS  HGNC:4976     -1
7502               21       36750888         HLCS  HGNC:4976     -1
7503               21       36750888         HLCS  HGNC:4976     -1
7504               21       36750888         HLCS  HGNC:4976     -1
7505               21       36750888         HLCS  HGNC:4976     -1
7506               21       36750888         HLCS  HGNC:4976     -1
7507               21       36750888         HLCS  HGNC:4976     -1
7508               21       36750888         HLCS  HGNC:4976     -1
7509               21       36750888         HLCS  HGNC:4976     -1
7510               21       36750888         HLCS  HGNC:4976     -1
7511               21       36750888         HLCS  HGNC:4976     -1
7512               21       36750888         HLCS  HGNC:4976     -1
7513               21       36750888         HLCS  HGNC:4976     -1
7514               21       36750888         HLCS  HGNC:4976     -1
7515               21       36750888         HLCS  HGNC:4976     -1
7516               21       36750888         HLCS  HGNC:4976     -1
7517               21       36750888         HLCS  HGNC:4976     -1
7518               21       36750888         HLCS  HGNC:4976     -1
7519               21       36750888         HLCS  HGNC:4976     -1
7520               21       36750888         HLCS  HGNC:4976     -1
7521               21       36750888         HLCS  HGNC:4976     -1
7522               21       36750888         HLCS  HGNC:4976     -1
7523               21       36750888         HLCS  HGNC:4976     -1
7524               21       36750888         HLCS  HGNC:4976     -1
7525               21       36750888         HLCS  HGNC:4976     -1
7526               21       36750888         HLCS  HGNC:4976     -1
7527               21       36750888         HLCS  HGNC:4976     -1
7528               21       36750888         HLCS  HGNC:4976     -1
7529               21       36750888         HLCS  HGNC:4976     -1
7530               21       36750888         HLCS  HGNC:4976     -1
7531               21       36750888         HLCS  HGNC:4976     -1
7532               21       36750888         HLCS  HGNC:4976     -1
7533               21       36750888         HLCS  HGNC:4976     -1
7534               21       36750888         HLCS  HGNC:4976     -1
7535               21       36750888         HLCS  HGNC:4976     -1
7536               21       36750888         HLCS  HGNC:4976     -1
7537               21       36750888         HLCS  HGNC:4976     -1
7538               21       36750888         HLCS  HGNC:4976     -1
7539               21       36750888         HLCS  HGNC:4976     -1
7540               21       36750888         HLCS  HGNC:4976     -1
7541               21       36750888         HLCS  HGNC:4976     -1
7542               21       36750888         HLCS  HGNC:4976     -1
7543               21       36750888         HLCS  HGNC:4976     -1
7544               21       36750888         HLCS  HGNC:4976     -1
7545               21       36750888         HLCS  HGNC:4976     -1
7546               21       36750888         HLCS  HGNC:4976     -1
7547               21       36750888         HLCS  HGNC:4976     -1
7548               21       36750888         HLCS  HGNC:4976     -1
7549               21       36750888         HLCS  HGNC:4976     -1
7550               21       36986739                             -1
7551               21       36966492                              1
7552               21       36966492                              1
7553               21       36966492                              1
7554               21       36966492                              1
7555               21       36966492                              1
7556               21       36966492                              1
7557               21       36966492                              1
7558               21       36966492                              1
7559               21       36943267       DPRXP5 HGNC:32171      1
7560               21       36943267       DPRXP5 HGNC:32171      1
7561               21       36851911    RNA5SP491 HGNC:43391      1
7562               21       36803984     HLCS-IT1 HGNC:41343     -1
7563               21       36803984     HLCS-IT1 HGNC:41343     -1
7564               21       36699133         SIM2 HGNC:10883      1
7565               21       36699133         SIM2 HGNC:10883      1
7566               21       36699133         SIM2 HGNC:10883      1
7567               21       36699133         SIM2 HGNC:10883      1
7568               21       36699133         SIM2 HGNC:10883      1
7569               21       36699133         SIM2 HGNC:10883      1
7570               21       36699133         SIM2 HGNC:10883      1
7571               21       36699133         SIM2 HGNC:10883      1
7572               21       36699133         SIM2 HGNC:10883      1
7573               21       36699133         SIM2 HGNC:10883      1
7574               21       36699133         SIM2 HGNC:10883      1
7575               21       36699133         SIM2 HGNC:10883      1
7576               21       36699133         SIM2 HGNC:10883      1
7577               21       36699133         SIM2 HGNC:10883      1
7578               21       36699133         SIM2 HGNC:10883      1
7579               21       36699133         SIM2 HGNC:10883      1
7580               21       36699133         SIM2 HGNC:10883      1
7581               21       36699133         SIM2 HGNC:10883      1
7582               21       36699133         SIM2 HGNC:10883      1
7583               21       36699133         SIM2 HGNC:10883      1
7584               21       36699133         SIM2 HGNC:10883      1
7585               21       36699133         SIM2 HGNC:10883      1
7586               21       36699133         SIM2 HGNC:10883      1
7587               21       36699133         SIM2 HGNC:10883      1
7588               21       36699133         SIM2 HGNC:10883      1
7589               21       36699133         SIM2 HGNC:10883      1
7590               21       36699133         SIM2 HGNC:10883      1
7591               21       36699133         SIM2 HGNC:10883      1
7592               21       36699133         SIM2 HGNC:10883      1
7593               21       36699133         SIM2 HGNC:10883      1
7594               21       36699133         SIM2 HGNC:10883      1
7595               21       36699133         SIM2 HGNC:10883      1
7596               21       36699133         SIM2 HGNC:10883      1
7597               21       36699133         SIM2 HGNC:10883      1
7598               21       36699133         SIM2 HGNC:10883      1
7599               21       36698773                             -1
7600               21       36698773                             -1
7601               21       36632681                             -1
7602               21       36632681                             -1
7603               21       36460621       CLDN14  HGNC:2035     -1
7604               21       36460621       CLDN14  HGNC:2035     -1
7605               21       36460621       CLDN14  HGNC:2035     -1
7606               21       36460621       CLDN14  HGNC:2035     -1
7607               21       36460621       CLDN14  HGNC:2035     -1
7608               21       36460621       CLDN14  HGNC:2035     -1
7609               21       36460621       CLDN14  HGNC:2035     -1
7610               21       36460621       CLDN14  HGNC:2035     -1
7611               21       36460621       CLDN14  HGNC:2035     -1
7612               21       36460621       CLDN14  HGNC:2035     -1
7613               21       36460621       CLDN14  HGNC:2035     -1
7614               21       36460621       CLDN14  HGNC:2035     -1
7615               21       36460621       CLDN14  HGNC:2035     -1
7616               21       36460621       CLDN14  HGNC:2035     -1
7617               21       36460621       CLDN14  HGNC:2035     -1
7618               21       36445731                              1
7619               21       36445731                              1
7620               21       36445731                              1
7621               21       36445731                              1
7622               21       36485867                              1
7623               21       36485983      PSMD4P1  HGNC:9562     -1
7624               21       36485983      PSMD4P1  HGNC:9562     -1
7625               21       36430360                              1
7626               21       36430360                              1
7627               21       36385378       CHAF1B  HGNC:1911      1
7628               21       36385378       CHAF1B  HGNC:1911      1
7629               21       36385378       CHAF1B  HGNC:1911      1
7630               21       36385378       CHAF1B  HGNC:1911      1
7631               21       36385378       CHAF1B  HGNC:1911      1
7632               21       36385378       CHAF1B  HGNC:1911      1
7633               21       36385378       CHAF1B  HGNC:1911      1
7634               21       36385378       CHAF1B  HGNC:1911      1
7635               21       36385378       CHAF1B  HGNC:1911      1
7636               21       36385378       CHAF1B  HGNC:1911      1
7637               21       36385378       CHAF1B  HGNC:1911      1
7638               21       36385378       CHAF1B  HGNC:1911      1
7639               21       36385378       CHAF1B  HGNC:1911      1
7640               21       36385378       CHAF1B  HGNC:1911      1
7641               21       36385378       CHAF1B  HGNC:1911      1
7642               21       36385378       CHAF1B  HGNC:1911      1
7643               21       36385378       CHAF1B  HGNC:1911      1
7644               21       36385378       CHAF1B  HGNC:1911      1
7645               21       36385378       CHAF1B  HGNC:1911      1
7646               21       36385378       CHAF1B  HGNC:1911      1
7647               21       36385378       CHAF1B  HGNC:1911      1
7648               21       36385378       CHAF1B  HGNC:1911      1
7649               21       36385378       CHAF1B  HGNC:1911      1
7650               21       36385378       CHAF1B  HGNC:1911      1
7651               21       36388878     ATP5J2LP   HGNC:849     -1
7652               21       36320189        MORC3 HGNC:23572      1
7653               21       36320189        MORC3 HGNC:23572      1
7654               21       36320189        MORC3 HGNC:23572      1
7655               21       36320189        MORC3 HGNC:23572      1
7656               21       36320189        MORC3 HGNC:23572      1
7657               21       36320189        MORC3 HGNC:23572      1
7658               21       36320189        MORC3 HGNC:23572      1
7659               21       36320189        MORC3 HGNC:23572      1
7660               21       36320189        MORC3 HGNC:23572      1
7661               21       36320189        MORC3 HGNC:23572      1
7662               21       36320189        MORC3 HGNC:23572      1
7663               21       36320189        MORC3 HGNC:23572      1
7664               21       36320189        MORC3 HGNC:23572      1
7665               21       36320189        MORC3 HGNC:23572      1
7666               21       36320189        MORC3 HGNC:23572      1
7667               21       36320189        MORC3 HGNC:23572      1
7668               21       36320189        MORC3 HGNC:23572      1
7669               21       36320189        MORC3 HGNC:23572      1
7670               21       36320189        MORC3 HGNC:23572      1
7671               21       36320189        MORC3 HGNC:23572      1
7672               21       36320189        MORC3 HGNC:23572      1
7673               21       36320189        MORC3 HGNC:23572      1
7674               21       36320189        MORC3 HGNC:23572      1
7675               21       36320189        MORC3 HGNC:23572      1
7676               21       36320189        MORC3 HGNC:23572      1
7677               21       36320189        MORC3 HGNC:23572      1
7678               21       36320189        MORC3 HGNC:23572      1
7679               21       36320189        MORC3 HGNC:23572      1
7680               21       36320189        MORC3 HGNC:23572      1
7681               21       36320189        MORC3 HGNC:23572      1
7682               21       36320189        MORC3 HGNC:23572      1
7683               21       36320189        MORC3 HGNC:23572      1
7684               21       36320189        MORC3 HGNC:23572      1
7685               21       36320189        MORC3 HGNC:23572      1
7686               21       36320189        MORC3 HGNC:23572      1
7687               21       36320189        MORC3 HGNC:23572      1
7688               21       36320189        MORC3 HGNC:23572      1
7689               21       36320189        MORC3 HGNC:23572      1
7690               21       36320189        MORC3 HGNC:23572      1
7691               21       36320189        MORC3 HGNC:23572      1
7692               21       36320189        MORC3 HGNC:23572      1
7693               21       36320189        MORC3 HGNC:23572      1
7694               21       36320189        MORC3 HGNC:23572      1
7695               21       36320189        MORC3 HGNC:23572      1
7696               21       36320189        MORC3 HGNC:23572      1
7697               21       36320189        MORC3 HGNC:23572      1
7698               21       36320189        MORC3 HGNC:23572      1
7699               21       36320189        MORC3 HGNC:23572      1
7700               21       36320189        MORC3 HGNC:23572      1
7701               21       36320189        MORC3 HGNC:23572      1
7702               21       36320189        MORC3 HGNC:23572      1
7703               21       36320189        MORC3 HGNC:23572      1
7704               21       36320189        MORC3 HGNC:23572      1
7705               21       36320189        MORC3 HGNC:23572      1
7706               21       36320189        MORC3 HGNC:23572      1
7707               21       36320189        MORC3 HGNC:23572      1
7708               21       36320189        MORC3 HGNC:23572      1
7709               21       36320189        MORC3 HGNC:23572      1
7710               21       36320189        MORC3 HGNC:23572      1
7711               21       36320189        MORC3 HGNC:23572      1
7712               21       36320189        MORC3 HGNC:23572      1
7713               21       36320189        MORC3 HGNC:23572      1
7714               21       36320189        MORC3 HGNC:23572      1
7715               21       36320189        MORC3 HGNC:23572      1
7716               21       36320189        MORC3 HGNC:23572      1
7717               21       36320189        MORC3 HGNC:23572      1
7718               21       36320189        MORC3 HGNC:23572      1
7719               21       36320189        MORC3 HGNC:23572      1
7720               21       36320189        MORC3 HGNC:23572      1
7721               21       36320189        MORC3 HGNC:23572      1
7722               21       36320189        MORC3 HGNC:23572      1
7723               21       36320189        MORC3 HGNC:23572      1
7724               21       36320189        MORC3 HGNC:23572      1
7725               21       36320189        MORC3 HGNC:23572      1
7726               21       36320189        MORC3 HGNC:23572      1
7727               21       36320189        MORC3 HGNC:23572      1
7728               21       36320189        MORC3 HGNC:23572      1
7729               21       36320189        MORC3 HGNC:23572      1
7730               21       36320189        MORC3 HGNC:23572      1
7731               21       36320189        MORC3 HGNC:23572      1
7732               21       36320189        MORC3 HGNC:23572      1
7733               21       36320189        MORC3 HGNC:23572      1
7734               21       36320189        MORC3 HGNC:23572      1
7735               21       36360630                              1
7736               21       36360630                              1
7737               21       36319792                             -1
7738               21       36295173      SRSF9P1 HGNC:10792     -1
7739               21       36156782       DOPEY2  HGNC:1291      1
7740               21       36156782       DOPEY2  HGNC:1291      1
7741               21       36156782       DOPEY2  HGNC:1291      1
7742               21       36156782       DOPEY2  HGNC:1291      1
7743               21       36156782       DOPEY2  HGNC:1291      1
7744               21       36156782       DOPEY2  HGNC:1291      1
7745               21       36156782       DOPEY2  HGNC:1291      1
7746               21       36156782       DOPEY2  HGNC:1291      1
7747               21       36156782       DOPEY2  HGNC:1291      1
7748               21       36156782       DOPEY2  HGNC:1291      1
7749               21       36156782       DOPEY2  HGNC:1291      1
7750               21       36156782       DOPEY2  HGNC:1291      1
7751               21       36156782       DOPEY2  HGNC:1291      1
7752               21       36156782       DOPEY2  HGNC:1291      1
7753               21       36156782       DOPEY2  HGNC:1291      1
7754               21       36156782       DOPEY2  HGNC:1291      1
7755               21       36156782       DOPEY2  HGNC:1291      1
7756               21       36156782       DOPEY2  HGNC:1291      1
7757               21       36156782       DOPEY2  HGNC:1291      1
7758               21       36156782       DOPEY2  HGNC:1291      1
7759               21       36156782       DOPEY2  HGNC:1291      1
7760               21       36156782       DOPEY2  HGNC:1291      1
7761               21       36156782       DOPEY2  HGNC:1291      1
7762               21       36156782       DOPEY2  HGNC:1291      1
7763               21       36156782       DOPEY2  HGNC:1291      1
7764               21       36156782       DOPEY2  HGNC:1291      1
7765               21       36156782       DOPEY2  HGNC:1291      1
7766               21       36156782       DOPEY2  HGNC:1291      1
7767               21       36156782       DOPEY2  HGNC:1291      1
7768               21       36156782       DOPEY2  HGNC:1291      1
7769               21       36156782       DOPEY2  HGNC:1291      1
7770               21       36156782       DOPEY2  HGNC:1291      1
7771               21       36156782       DOPEY2  HGNC:1291      1
7772               21       36156782       DOPEY2  HGNC:1291      1
7773               21       36156782       DOPEY2  HGNC:1291      1
7774               21       36156782       DOPEY2  HGNC:1291      1
7775               21       36156782       DOPEY2  HGNC:1291      1
7776               21       36156782       DOPEY2  HGNC:1291      1
7777               21       36156782       DOPEY2  HGNC:1291      1
7778               21       36156782       DOPEY2  HGNC:1291      1
7779               21       36156782       DOPEY2  HGNC:1291      1
7780               21       36156782       DOPEY2  HGNC:1291      1
7781               21       36156782       DOPEY2  HGNC:1291      1
7782               21       36156782       DOPEY2  HGNC:1291      1
7783               21       36156782       DOPEY2  HGNC:1291      1
7784               21       36156782       DOPEY2  HGNC:1291      1
7785               21       36156782       DOPEY2  HGNC:1291      1
7786               21       36156782       DOPEY2  HGNC:1291      1
7787               21       36156782       DOPEY2  HGNC:1291      1
7788               21       36156782       DOPEY2  HGNC:1291      1
7789               21       36156782       DOPEY2  HGNC:1291      1
7790               21       36131767     CBR3-AS1 HGNC:43664     -1
7791               21       36131767     CBR3-AS1 HGNC:43664     -1
7792               21       36131767     CBR3-AS1 HGNC:43664     -1
7793               21       36131767     CBR3-AS1 HGNC:43664     -1
7794               21       36131767     CBR3-AS1 HGNC:43664     -1
7795               21       36131767     CBR3-AS1 HGNC:43664     -1
7796               21       36131767     CBR3-AS1 HGNC:43664     -1
7797               21       36131767     CBR3-AS1 HGNC:43664     -1
7798               21       36131767     CBR3-AS1 HGNC:43664     -1
7799               21       36131767     CBR3-AS1 HGNC:43664     -1
7800               21       36131767     CBR3-AS1 HGNC:43664     -1
7801               21       36131767     CBR3-AS1 HGNC:43664     -1
7802               21       36131767     CBR3-AS1 HGNC:43664     -1
7803               21       36131767     CBR3-AS1 HGNC:43664     -1
7804               21       36131767     CBR3-AS1 HGNC:43664     -1
7805               21       36131767     CBR3-AS1 HGNC:43664     -1
7806               21       36131767     CBR3-AS1 HGNC:43664     -1
7807               21       36131767     CBR3-AS1 HGNC:43664     -1
7808               21       36131767     CBR3-AS1 HGNC:43664     -1
7809               21       36131767     CBR3-AS1 HGNC:43664     -1
7810               21       36131767     CBR3-AS1 HGNC:43664     -1
7811               21       36131767     CBR3-AS1 HGNC:43664     -1
7812               21       36131767     CBR3-AS1 HGNC:43664     -1
7813               21       36131767     CBR3-AS1 HGNC:43664     -1
7814               21       36131767     CBR3-AS1 HGNC:43664     -1
7815               21       36131767     CBR3-AS1 HGNC:43664     -1
7816               21       36131767     CBR3-AS1 HGNC:43664     -1
7817               21       36131767     CBR3-AS1 HGNC:43664     -1
7818               21       36131767     CBR3-AS1 HGNC:43664     -1
7819               21       36131767     CBR3-AS1 HGNC:43664     -1
7820               21       36131767     CBR3-AS1 HGNC:43664     -1
7821               21       36131767     CBR3-AS1 HGNC:43664     -1
7822               21       36131767     CBR3-AS1 HGNC:43664     -1
7823               21       36131767     CBR3-AS1 HGNC:43664     -1
7824               21       36131767     CBR3-AS1 HGNC:43664     -1
7825               21       36131767     CBR3-AS1 HGNC:43664     -1
7826               21       36131767     CBR3-AS1 HGNC:43664     -1
7827               21       36131767     CBR3-AS1 HGNC:43664     -1
7828               21       36131767     CBR3-AS1 HGNC:43664     -1
7829               21       36131767     CBR3-AS1 HGNC:43664     -1
7830               21       36131767     CBR3-AS1 HGNC:43664     -1
7831               21       36131767     CBR3-AS1 HGNC:43664     -1
7832               21       36131767     CBR3-AS1 HGNC:43664     -1
7833               21       36131767     CBR3-AS1 HGNC:43664     -1
7834               21       36131767     CBR3-AS1 HGNC:43664     -1
7835               21       36131767     CBR3-AS1 HGNC:43664     -1
7836               21       36131767     CBR3-AS1 HGNC:43664     -1
7837               21       36131767     CBR3-AS1 HGNC:43664     -1
7838               21       36131767     CBR3-AS1 HGNC:43664     -1
7839               21       36131767     CBR3-AS1 HGNC:43664     -1
7840               21       36131767     CBR3-AS1 HGNC:43664     -1
7841               21       36131767     CBR3-AS1 HGNC:43664     -1
7842               21       36131767     CBR3-AS1 HGNC:43664     -1
7843               21       36131767     CBR3-AS1 HGNC:43664     -1
7844               21       36131767     CBR3-AS1 HGNC:43664     -1
7845               21       36131767     CBR3-AS1 HGNC:43664     -1
7846               21       36131767     CBR3-AS1 HGNC:43664     -1
7847               21       36168970       RPL3P1 HGNC:10352     -1
7848               21       36134912         CBR3  HGNC:1549      1
7849               21       36134912         CBR3  HGNC:1549      1
7850               21       36134912         CBR3  HGNC:1549      1
7851               21       36132450       RPS9P1 HGNC:10443      1
7852               21       36130489      MEMO1P1 HGNC:23274      1
7853               21       36069642                             -1
7854               21       36069642                             -1
7855               21       36069642                             -1
7856               21       36069642                             -1
7857               21       36069642                             -1
7858               21       36069642                             -1
7859               21       36104881                              1
7860               21       36104881                              1
7861               21       36082859                              1
7862               21       36082859                              1
7863               21       36034541        SETD4  HGNC:1258     -1
7864               21       36034541        SETD4  HGNC:1258     -1
7865               21       36034541        SETD4  HGNC:1258     -1
7866               21       36034541        SETD4  HGNC:1258     -1
7867               21       36034541        SETD4  HGNC:1258     -1
7868               21       36034541        SETD4  HGNC:1258     -1
7869               21       36034541        SETD4  HGNC:1258     -1
7870               21       36034541        SETD4  HGNC:1258     -1
7871               21       36034541        SETD4  HGNC:1258     -1
7872               21       36034541        SETD4  HGNC:1258     -1
7873               21       36034541        SETD4  HGNC:1258     -1
7874               21       36034541        SETD4  HGNC:1258     -1
7875               21       36034541        SETD4  HGNC:1258     -1
7876               21       36034541        SETD4  HGNC:1258     -1
7877               21       36034541        SETD4  HGNC:1258     -1
7878               21       36034541        SETD4  HGNC:1258     -1
7879               21       36034541        SETD4  HGNC:1258     -1
7880               21       36034541        SETD4  HGNC:1258     -1
7881               21       36034541        SETD4  HGNC:1258     -1
7882               21       36034541        SETD4  HGNC:1258     -1
7883               21       36034541        SETD4  HGNC:1258     -1
7884               21       36034541        SETD4  HGNC:1258     -1
7885               21       36034541        SETD4  HGNC:1258     -1
7886               21       36034541        SETD4  HGNC:1258     -1
7887               21       36034541        SETD4  HGNC:1258     -1
7888               21       36034541        SETD4  HGNC:1258     -1
7889               21       36034541        SETD4  HGNC:1258     -1
7890               21       36034541        SETD4  HGNC:1258     -1
7891               21       36034541        SETD4  HGNC:1258     -1
7892               21       36034541        SETD4  HGNC:1258     -1
7893               21       36034541        SETD4  HGNC:1258     -1
7894               21       36034541        SETD4  HGNC:1258     -1
7895               21       36034541        SETD4  HGNC:1258     -1
7896               21       36034541        SETD4  HGNC:1258     -1
7897               21       36034541        SETD4  HGNC:1258     -1
7898               21       36034541        SETD4  HGNC:1258     -1
7899               21       36034541        SETD4  HGNC:1258     -1
7900               21       36034541        SETD4  HGNC:1258     -1
7901               21       36034541        SETD4  HGNC:1258     -1
7902               21       36034541        SETD4  HGNC:1258     -1
7903               21       36034541        SETD4  HGNC:1258     -1
7904               21       36034541        SETD4  HGNC:1258     -1
7905               21       36034541        SETD4  HGNC:1258     -1
7906               21       36034541        SETD4  HGNC:1258     -1
7907               21       36034541        SETD4  HGNC:1258     -1
7908               21       36034541        SETD4  HGNC:1258     -1
7909               21       36034541        SETD4  HGNC:1258     -1
7910               21       36034541        SETD4  HGNC:1258     -1
7911               21       36034541        SETD4  HGNC:1258     -1
7912               21       36034541        SETD4  HGNC:1258     -1
7913               21       36034541        SETD4  HGNC:1258     -1
7914               21       36034541        SETD4  HGNC:1258     -1
7915               21       36034541        SETD4  HGNC:1258     -1
7916               21       36034541        SETD4  HGNC:1258     -1
7917               21       36034541        SETD4  HGNC:1258     -1
7918               21       36034541        SETD4  HGNC:1258     -1
7919               21       36034541        SETD4  HGNC:1258     -1
7920               21       36034541        SETD4  HGNC:1258     -1
7921               21       36034541        SETD4  HGNC:1258     -1
7922               21       36034541        SETD4  HGNC:1258     -1
7923               21       36034541        SETD4  HGNC:1258     -1
7924               21       36034541        SETD4  HGNC:1258     -1
7925               21       36034541        SETD4  HGNC:1258     -1
7926               21       36034541        SETD4  HGNC:1258     -1
7927               21       36034541        SETD4  HGNC:1258     -1
7928               21       36034541        SETD4  HGNC:1258     -1
7929               21       36034541        SETD4  HGNC:1258     -1
7930               21       36034541        SETD4  HGNC:1258     -1
7931               21       36034541        SETD4  HGNC:1258     -1
7932               21       36034541        SETD4  HGNC:1258     -1
7933               21       36034541        SETD4  HGNC:1258     -1
7934               21       36034541        SETD4  HGNC:1258     -1
7935               21       36034541        SETD4  HGNC:1258     -1
7936               21       36034541        SETD4  HGNC:1258     -1
7937               21       36034541        SETD4  HGNC:1258     -1
7938               21       36034541        SETD4  HGNC:1258     -1
7939               21       36034541        SETD4  HGNC:1258     -1
7940               21       36034541        SETD4  HGNC:1258     -1
7941               21       36034541        SETD4  HGNC:1258     -1
7942               21       36034541        SETD4  HGNC:1258     -1
7943               21       36034541        SETD4  HGNC:1258     -1
7944               21       36034541        SETD4  HGNC:1258     -1
7945               21       36034541        SETD4  HGNC:1258     -1
7946               21       36034541        SETD4  HGNC:1258     -1
7947               21       36034541        SETD4  HGNC:1258     -1
7948               21       36034541        SETD4  HGNC:1258     -1
7949               21       36034541        SETD4  HGNC:1258     -1
7950               21       36034541        SETD4  HGNC:1258     -1
7951               21       36034541        SETD4  HGNC:1258     -1
7952               21       36034541        SETD4  HGNC:1258     -1
7953               21       36034541        SETD4  HGNC:1258     -1
7954               21       36034541        SETD4  HGNC:1258     -1
7955               21       36034541        SETD4  HGNC:1258     -1
7956               21       36034541        SETD4  HGNC:1258     -1
7957               21       36034541        SETD4  HGNC:1258     -1
7958               21       36034541        SETD4  HGNC:1258     -1
7959               21       36034541        SETD4  HGNC:1258     -1
7960               21       36034541        SETD4  HGNC:1258     -1
7961               21       36034541        SETD4  HGNC:1258     -1
7962               21       36034541        SETD4  HGNC:1258     -1
7963               21       36034541        SETD4  HGNC:1258     -1
7964               21       36034541        SETD4  HGNC:1258     -1
7965               21       36034541        SETD4  HGNC:1258     -1
7966               21       36034541        SETD4  HGNC:1258     -1
7967               21       36034541        SETD4  HGNC:1258     -1
7968               21       36034541        SETD4  HGNC:1258     -1
7969               21       36034541        SETD4  HGNC:1258     -1
7970               21       36034541        SETD4  HGNC:1258     -1
7971               21       36034541        SETD4  HGNC:1258     -1
7972               21       36034541        SETD4  HGNC:1258     -1
7973               21       36034541        SETD4  HGNC:1258     -1
7974               21       36034541        SETD4  HGNC:1258     -1
7975               21       36034541        SETD4  HGNC:1258     -1
7976               21       36034541        SETD4  HGNC:1258     -1
7977               21       36034541        SETD4  HGNC:1258     -1
7978               21       36034541        SETD4  HGNC:1258     -1
7979               21       36034541        SETD4  HGNC:1258     -1
7980               21       36034541        SETD4  HGNC:1258     -1
7981               21       36034541        SETD4  HGNC:1258     -1
7982               21       36034541        SETD4  HGNC:1258     -1
7983               21       36069941         CBR1  HGNC:1548      1
7984               21       36069941         CBR1  HGNC:1548      1
7985               21       36069941         CBR1  HGNC:1548      1
7986               21       36069941         CBR1  HGNC:1548      1
7987               21       36069941         CBR1  HGNC:1548      1
7988               21       36069941         CBR1  HGNC:1548      1
7989               21       36069941         CBR1  HGNC:1548      1
7990               21       36069941         CBR1  HGNC:1548      1
7991               21       36069941         CBR1  HGNC:1548      1
7992               21       36069941         CBR1  HGNC:1548      1
7993               21       36069941         CBR1  HGNC:1548      1
7994               21       36069941         CBR1  HGNC:1548      1
7995               21       36069941         CBR1  HGNC:1548      1
7996               21       36069941         CBR1  HGNC:1548      1
7997               21       36066545    RNU6-992P HGNC:47955      1
7998               21       36060432                              1
7999               21       36060432                              1
8000               21       36060432                              1
8001               21       36050214     RIMKLBP1 HGNC:34034      1
8002               21       36016079     RPL23AP3 HGNC:10320     -1
8003               21       36005338    LINC01436 HGNC:50754      1
8004               21       36005338    LINC01436 HGNC:50754      1
8005               21       34787801        RUNX1 HGNC:10471     -1
8006               21       34787801        RUNX1 HGNC:10471     -1
8007               21       34787801        RUNX1 HGNC:10471     -1
8008               21       34787801        RUNX1 HGNC:10471     -1
8009               21       34787801        RUNX1 HGNC:10471     -1
8010               21       34787801        RUNX1 HGNC:10471     -1
8011               21       34787801        RUNX1 HGNC:10471     -1
8012               21       34787801        RUNX1 HGNC:10471     -1
8013               21       34787801        RUNX1 HGNC:10471     -1
8014               21       34787801        RUNX1 HGNC:10471     -1
8015               21       34787801        RUNX1 HGNC:10471     -1
8016               21       34787801        RUNX1 HGNC:10471     -1
8017               21       34787801        RUNX1 HGNC:10471     -1
8018               21       34787801        RUNX1 HGNC:10471     -1
8019               21       34787801        RUNX1 HGNC:10471     -1
8020               21       34787801        RUNX1 HGNC:10471     -1
8021               21       34787801        RUNX1 HGNC:10471     -1
8022               21       34787801        RUNX1 HGNC:10471     -1
8023               21       34787801        RUNX1 HGNC:10471     -1
8024               21       34787801        RUNX1 HGNC:10471     -1
8025               21       34787801        RUNX1 HGNC:10471     -1
8026               21       34787801        RUNX1 HGNC:10471     -1
8027               21       34787801        RUNX1 HGNC:10471     -1
8028               21       34787801        RUNX1 HGNC:10471     -1
8029               21       34787801        RUNX1 HGNC:10471     -1
8030               21       34787801        RUNX1 HGNC:10471     -1
8031               21       34787801        RUNX1 HGNC:10471     -1
8032               21       34787801        RUNX1 HGNC:10471     -1
8033               21       34787801        RUNX1 HGNC:10471     -1
8034               21       34787801        RUNX1 HGNC:10471     -1
8035               21       34787801        RUNX1 HGNC:10471     -1
8036               21       34787801        RUNX1 HGNC:10471     -1
8037               21       34787801        RUNX1 HGNC:10471     -1
8038               21       34787801        RUNX1 HGNC:10471     -1
8039               21       34787801        RUNX1 HGNC:10471     -1
8040               21       34787801        RUNX1 HGNC:10471     -1
8041               21       34787801        RUNX1 HGNC:10471     -1
8042               21       34787801        RUNX1 HGNC:10471     -1
8043               21       34787801        RUNX1 HGNC:10471     -1
8044               21       34787801        RUNX1 HGNC:10471     -1
8045               21       34787801        RUNX1 HGNC:10471     -1
8046               21       34787801        RUNX1 HGNC:10471     -1
8047               21       34787801        RUNX1 HGNC:10471     -1
8048               21       34787801        RUNX1 HGNC:10471     -1
8049               21       34787801        RUNX1 HGNC:10471     -1
8050               21       34787801        RUNX1 HGNC:10471     -1
8051               21       34787801        RUNX1 HGNC:10471     -1
8052               21       34787801        RUNX1 HGNC:10471     -1
8053               21       34787801        RUNX1 HGNC:10471     -1
8054               21       34787801        RUNX1 HGNC:10471     -1
8055               21       34787801        RUNX1 HGNC:10471     -1
8056               21       34787801        RUNX1 HGNC:10471     -1
8057               21       34787801        RUNX1 HGNC:10471     -1
8058               21       34787801        RUNX1 HGNC:10471     -1
8059               21       34787801        RUNX1 HGNC:10471     -1
8060               21       34787801        RUNX1 HGNC:10471     -1
8061               21       34787801        RUNX1 HGNC:10471     -1
8062               21       34787801        RUNX1 HGNC:10471     -1
8063               21       34787801        RUNX1 HGNC:10471     -1
8064               21       34787801        RUNX1 HGNC:10471     -1
8065               21       34787801        RUNX1 HGNC:10471     -1
8066               21       34787801        RUNX1 HGNC:10471     -1
8067               21       34787801        RUNX1 HGNC:10471     -1
8068               21       34787801        RUNX1 HGNC:10471     -1
8069               21       34787801        RUNX1 HGNC:10471     -1
8070               21       34787801        RUNX1 HGNC:10471     -1
8071               21       34787801        RUNX1 HGNC:10471     -1
8072               21       34787801        RUNX1 HGNC:10471     -1
8073               21       34787801        RUNX1 HGNC:10471     -1
8074               21       34787801        RUNX1 HGNC:10471     -1
8075               21       34787801        RUNX1 HGNC:10471     -1
8076               21       34787801        RUNX1 HGNC:10471     -1
8077               21       34787801        RUNX1 HGNC:10471     -1
8078               21       34787801        RUNX1 HGNC:10471     -1
8079               21       34787801        RUNX1 HGNC:10471     -1
8080               21       34787801        RUNX1 HGNC:10471     -1
8081               21       34787801        RUNX1 HGNC:10471     -1
8082               21       34787801        RUNX1 HGNC:10471     -1
8083               21       34787801        RUNX1 HGNC:10471     -1
8084               21       34787801        RUNX1 HGNC:10471     -1
8085               21       34787801        RUNX1 HGNC:10471     -1
8086               21       34787801        RUNX1 HGNC:10471     -1
8087               21       34787801        RUNX1 HGNC:10471     -1
8088               21       35887195     PPP1R2P2  HGNC:9290      1
8089               21       35713139                             -1
8090               21       35713139                             -1
8091               21       35724747      RPS20P1 HGNC:10408     -1
8092               21       35720715       MIR802 HGNC:33140      1
8093               21       35599732       EZH2P1 HGNC:39918     -1
8094               21       35472095      RPL34P3 HGNC:10343     -1
8095               21       35136638                              1
8096               21       35136638                              1
8097               21       34745757    LINC01426 HGNC:50734      1
8098               21       34745757    LINC01426 HGNC:50734      1
8099               21       34745757    LINC01426 HGNC:50734      1
8100               21       34745757    LINC01426 HGNC:50734      1
8101               21       34745757    LINC01426 HGNC:50734      1
8102               21       34723807    LINC00160  HGNC:1294     -1
8103               21       34723807    LINC00160  HGNC:1294     -1
8104               21       34723807    LINC00160  HGNC:1294     -1
8105               21       34723807    LINC00160  HGNC:1294     -1
8106               21       34723807    LINC00160  HGNC:1294     -1
8107               21       34723807    LINC00160  HGNC:1294     -1
8108               21       34669389        CLIC6  HGNC:2065      1
8109               21       34669389        CLIC6  HGNC:2065      1
8110               21       34669389        CLIC6  HGNC:2065      1
8111               21       34669389        CLIC6  HGNC:2065      1
8112               21       34669389        CLIC6  HGNC:2065      1
8113               21       34669389        CLIC6  HGNC:2065      1
8114               21       34669389        CLIC6  HGNC:2065      1
8115               21       34669389        CLIC6  HGNC:2065      1
8116               21       34669389        CLIC6  HGNC:2065      1
8117               21       34669389        CLIC6  HGNC:2065      1
8118               21       34669389        CLIC6  HGNC:2065      1
8119               21       34669389        CLIC6  HGNC:2065      1
8120               21       34669389        CLIC6  HGNC:2065      1
8121               21       34513142        RCAN1  HGNC:3040     -1
8122               21       34513142        RCAN1  HGNC:3040     -1
8123               21       34513142        RCAN1  HGNC:3040     -1
8124               21       34513142        RCAN1  HGNC:3040     -1
8125               21       34513142        RCAN1  HGNC:3040     -1
8126               21       34513142        RCAN1  HGNC:3040     -1
8127               21       34513142        RCAN1  HGNC:3040     -1
8128               21       34513142        RCAN1  HGNC:3040     -1
8129               21       34513142        RCAN1  HGNC:3040     -1
8130               21       34513142        RCAN1  HGNC:3040     -1
8131               21       34513142        RCAN1  HGNC:3040     -1
8132               21       34513142        RCAN1  HGNC:3040     -1
8133               21       34513142        RCAN1  HGNC:3040     -1
8134               21       34513142        RCAN1  HGNC:3040     -1
8135               21       34513142        RCAN1  HGNC:3040     -1
8136               21       34513142        RCAN1  HGNC:3040     -1
8137               21       34513142        RCAN1  HGNC:3040     -1
8138               21       34513142        RCAN1  HGNC:3040     -1
8139               21       34513142        RCAN1  HGNC:3040     -1
8140               21       34513142        RCAN1  HGNC:3040     -1
8141               21       34513142        RCAN1  HGNC:3040     -1
8142               21       34513142        RCAN1  HGNC:3040     -1
8143               21       34513142        RCAN1  HGNC:3040     -1
8144               21       34513142        RCAN1  HGNC:3040     -1
8145               21       34513142        RCAN1  HGNC:3040     -1
8146               21       34513142        RCAN1  HGNC:3040     -1
8147               21       34513142        RCAN1  HGNC:3040     -1
8148               21       34513142        RCAN1  HGNC:3040     -1
8149               21       34513142        RCAN1  HGNC:3040     -1
8150               21       34513142        RCAN1  HGNC:3040     -1
8151               21       34513142        RCAN1  HGNC:3040     -1
8152               21       34513142        RCAN1  HGNC:3040     -1
8153               21       34513142        RCAN1  HGNC:3040     -1
8154               21       34513142        RCAN1  HGNC:3040     -1
8155               21       34513142        RCAN1  HGNC:3040     -1
8156               21       34513142        RCAN1  HGNC:3040     -1
8157               21       34513142        RCAN1  HGNC:3040     -1
8158               21       34513142        RCAN1  HGNC:3040     -1
8159               21       34513142        RCAN1  HGNC:3040     -1
8160               21       34513142        RCAN1  HGNC:3040     -1
8161               21       34513142        RCAN1  HGNC:3040     -1
8162               21       34513142        RCAN1  HGNC:3040     -1
8163               21       34513142        RCAN1  HGNC:3040     -1
8164               21       34513142        RCAN1  HGNC:3040     -1
8165               21       34513142        RCAN1  HGNC:3040     -1
8166               21       34513142        RCAN1  HGNC:3040     -1
8167               21       34513142        RCAN1  HGNC:3040     -1
8168               21       34513142        RCAN1  HGNC:3040     -1
8169               21       34513142        RCAN1  HGNC:3040     -1
8170               21       34446688        KCNE1  HGNC:6240     -1
8171               21       34446688        KCNE1  HGNC:6240     -1
8172               21       34446688        KCNE1  HGNC:6240     -1
8173               21       34446688        KCNE1  HGNC:6240     -1
8174               21       34446688        KCNE1  HGNC:6240     -1
8175               21       34446688        KCNE1  HGNC:6240     -1
8176               21       34446688        KCNE1  HGNC:6240     -1
8177               21       34446688        KCNE1  HGNC:6240     -1
8178               21       34446688        KCNE1  HGNC:6240     -1
8179               21       34446688        KCNE1  HGNC:6240     -1
8180               21       34446688        KCNE1  HGNC:6240     -1
8181               21       34446688        KCNE1  HGNC:6240     -1
8182               21       34446688        KCNE1  HGNC:6240     -1
8183               21       34446688        KCNE1  HGNC:6240     -1
8184               21       34446688        KCNE1  HGNC:6240     -1
8185               21       34446688        KCNE1  HGNC:6240     -1
8186               21       34446688        KCNE1  HGNC:6240     -1
8187               21       34446688        KCNE1  HGNC:6240     -1
8188               21       34446688        KCNE1  HGNC:6240     -1
8189               21       34446688        KCNE1  HGNC:6240     -1
8190               21       34446688        KCNE1  HGNC:6240     -1
8191               21       34446688        KCNE1  HGNC:6240     -1
8192               21       34446688        KCNE1  HGNC:6240     -1
8193               21       34446688        KCNE1  HGNC:6240     -1
8194               21       34446688        KCNE1  HGNC:6240     -1
8195               21       34456110                             -1
8196               21       34425508                              1
8197               21       34418715                             -1
8198               21       34418715                             -1
8199               21       34412200                              1
8200               21       34375480      SMIM11A  HGNC:1293      1
8201               21       34375480      SMIM11A  HGNC:1293      1
8202               21       34375480      SMIM11A  HGNC:1293      1
8203               21       34375480      SMIM11A  HGNC:1293      1
8204               21       34375480      SMIM11A  HGNC:1293      1
8205               21       34375480      SMIM11A  HGNC:1293      1
8206               21       34375480      SMIM11A  HGNC:1293      1
8207               21       34375480      SMIM11A  HGNC:1293      1
8208               21       34375480      SMIM11A  HGNC:1293      1
8209               21       34375480      SMIM11A  HGNC:1293      1
8210               21       34375480      SMIM11A  HGNC:1293      1
8211               21       34375480      SMIM11A  HGNC:1293      1
8212               21       34375480      SMIM11A  HGNC:1293      1
8213               21       34375480      SMIM11A  HGNC:1293      1
8214               21       34375480      SMIM11A  HGNC:1293      1
8215               21       34375480      SMIM11A  HGNC:1293      1
8216               21       34375480      SMIM11A  HGNC:1293      1
8217               21       34375480      SMIM11A  HGNC:1293      1
8218               21       34375480      SMIM11A  HGNC:1293      1
8219               21       34375480      SMIM11A  HGNC:1293      1
8220               21       34375480      SMIM11A  HGNC:1293      1
8221               21       34375480      SMIM11A  HGNC:1293      1
8222               21       34375480      SMIM11A  HGNC:1293      1
8223               21       34375480      SMIM11A  HGNC:1293      1
8224               21       34375480      SMIM11A  HGNC:1293      1
8225               21       34375480      SMIM11A  HGNC:1293      1
8226               21       34375480      SMIM11A  HGNC:1293      1
8227               21       34375480      SMIM11A  HGNC:1293      1
8228               21       34375480      SMIM11A  HGNC:1293      1
8229               21       34375480      SMIM11A  HGNC:1293      1
8230               21       34400317    C21orf140 HGNC:39602     -1
8231               21       34370802                             -1
8232               21       34370802                             -1
8233               21       34364024        KCNE2  HGNC:6242      1
8234               21       34364024        KCNE2  HGNC:6242      1
8235               21       34073592                              1
8236               21       34073592                              1
8237               21       34073592                              1
8238               21       34073592                              1
8239               21       34073592                              1
8240               21       34073592                              1
8241               21       34205055                              1
8242               21       34205055                              1
8243               21       34205055                              1
8244               21       34205055                              1
8245               21       34205055                              1
8246               21       34157724    LINC00310 HGNC:16414      1
8247               21       34157724    LINC00310 HGNC:16414      1
8248               21       34157724    LINC00310 HGNC:16414      1
8249               21       34157724    LINC00310 HGNC:16414      1
8250               21       34157724    LINC00310 HGNC:16414      1
8251               21       34157724    LINC00310 HGNC:16414      1
8252               21       34157724    LINC00310 HGNC:16414      1
8253               21       34157724    LINC00310 HGNC:16414      1
8254               21       34157724    LINC00310 HGNC:16414      1
8255               21       34157724    LINC00310 HGNC:16414      1
8256               21       34157724    LINC00310 HGNC:16414      1
8257               21       34157724    LINC00310 HGNC:16414      1
8258               21       34157724    LINC00310 HGNC:16414      1
8259               21       34157724    LINC00310 HGNC:16414      1
8260               21       34157724    LINC00310 HGNC:16414      1
8261               21       34157724    LINC00310 HGNC:16414      1
8262               21       34157724    LINC00310 HGNC:16414      1
8263               21       34157724    LINC00310 HGNC:16414      1
8264               21       34157724    LINC00310 HGNC:16414      1
8265               21       34157724    LINC00310 HGNC:16414      1
8266               21       34157724    LINC00310 HGNC:16414      1
8267               21       34073224        MRPS6 HGNC:14051      1
8268               21       34073224        MRPS6 HGNC:14051      1
8269               21       34073224        MRPS6 HGNC:14051      1
8270               21       34073224        MRPS6 HGNC:14051      1
8271               21       34073224        MRPS6 HGNC:14051      1
8272               21       34073224        MRPS6 HGNC:14051      1
8273               21       34073224        MRPS6 HGNC:14051      1
8274               21       34073224        MRPS6 HGNC:14051      1
8275               21       34073224        MRPS6 HGNC:14051      1
8276               21       34073224        MRPS6 HGNC:14051      1
8277               21       34073224        MRPS6 HGNC:14051      1
8278               21       34073224        MRPS6 HGNC:14051      1
8279               21       34073224        MRPS6 HGNC:14051      1
8280               21       34073224        MRPS6 HGNC:14051      1
8281               21       34073224        MRPS6 HGNC:14051      1
8282               21       34073224        MRPS6 HGNC:14051      1
8283               21       34073224        MRPS6 HGNC:14051      1
8284               21       34073224        MRPS6 HGNC:14051      1
8285               21       34135432       RPS5P2 HGNC:17222     -1
8286               21       34073570       SLC5A3 HGNC:11038      1
8287               21       34073570       SLC5A3 HGNC:11038      1
8288               21       33915534    LINC00649 HGNC:44305      1
8289               21       33915534    LINC00649 HGNC:44305      1
8290               21       33915534    LINC00649 HGNC:44305      1
8291               21       33915534    LINC00649 HGNC:44305      1
8292               21       33915534    LINC00649 HGNC:44305      1
8293               21       33915534    LINC00649 HGNC:44305      1
8294               21       33915534    LINC00649 HGNC:44305      1
8295               21       33915534    LINC00649 HGNC:44305      1
8296               21       33915534    LINC00649 HGNC:44305      1
8297               21       33915534    LINC00649 HGNC:44305      1
8298               21       33915534    LINC00649 HGNC:44305      1
8299               21       33915534    LINC00649 HGNC:44305      1
8300               21       33915534    LINC00649 HGNC:44305      1
8301               21       33915534    LINC00649 HGNC:44305      1
8302               21       33915534    LINC00649 HGNC:44305      1
8303               21       33915534    LINC00649 HGNC:44305      1
8304               21       33915534    LINC00649 HGNC:44305      1
8305               21       33915534    LINC00649 HGNC:44305      1
8306               21       33915534    LINC00649 HGNC:44305      1
8307               21       33915534    LINC00649 HGNC:44305      1
8308               21       33915534    LINC00649 HGNC:44305      1
8309               21       33915534    LINC00649 HGNC:44305      1
8310               21       33915534    LINC00649 HGNC:44305      1
8311               21       33915534    LINC00649 HGNC:44305      1
8312               21       33915534    LINC00649 HGNC:44305      1
8313               21       33915534    LINC00649 HGNC:44305      1
8314               21       33915534    LINC00649 HGNC:44305      1
8315               21       33915534    LINC00649 HGNC:44305      1
8316               21       33915534    LINC00649 HGNC:44305      1
8317               21       33915534    LINC00649 HGNC:44305      1
8318               21       33915534    LINC00649 HGNC:44305      1
8319               21       33915534    LINC00649 HGNC:44305      1
8320               21       33915534    LINC00649 HGNC:44305      1
8321               21       33915534    LINC00649 HGNC:44305      1
8322               21       33915534    LINC00649 HGNC:44305      1
8323               21       33915534    LINC00649 HGNC:44305      1
8324               21       33915534    LINC00649 HGNC:44305      1
8325               21       33915534    LINC00649 HGNC:44305      1
8326               21       33915534    LINC00649 HGNC:44305      1
8327               21       33915534    LINC00649 HGNC:44305      1
8328               21       33915534    LINC00649 HGNC:44305      1
8329               21       33915534    LINC00649 HGNC:44305      1
8330               21       33915534    LINC00649 HGNC:44305      1
8331               21       33915534    LINC00649 HGNC:44305      1
8332               21       33915534    LINC00649 HGNC:44305      1
8333               21       33915534    LINC00649 HGNC:44305      1
8334               21       33915534    LINC00649 HGNC:44305      1
8335               21       33915534    LINC00649 HGNC:44305      1
8336               21       33915534    LINC00649 HGNC:44305      1
8337               21       33915534    LINC00649 HGNC:44305      1
8338               21       33915534    LINC00649 HGNC:44305      1
8339               21       33915534    LINC00649 HGNC:44305      1
8340               21       33915534    LINC00649 HGNC:44305      1
8341               21       33915534    LINC00649 HGNC:44305      1
8342               21       33915534    LINC00649 HGNC:44305      1
8343               21       33915534    LINC00649 HGNC:44305      1
8344               21       33967101                             -1
8345               21       33967101                             -1
8346               21       33584687                             -1
8347               21       33584687                             -1
8348               21       33584687                             -1
8349               21       33584687                             -1
8350               21       33584687                             -1
8351               21       33584687                             -1
8352               21       33584687                             -1
8353               21       33584687                             -1
8354               21       33918995    RN7SL740P HGNC:46756     -1
8355               21       33903453        ATP5O   HGNC:850     -1
8356               21       33903453        ATP5O   HGNC:850     -1
8357               21       33903453        ATP5O   HGNC:850     -1
8358               21       33903453        ATP5O   HGNC:850     -1
8359               21       33903453        ATP5O   HGNC:850     -1
8360               21       33903453        ATP5O   HGNC:850     -1
8361               21       33903453        ATP5O   HGNC:850     -1
8362               21       33903453        ATP5O   HGNC:850     -1
8363               21       33903453        ATP5O   HGNC:850     -1
8364               21       33903453        ATP5O   HGNC:850     -1
8365               21       33903453        ATP5O   HGNC:850     -1
8366               21       33903453        ATP5O   HGNC:850     -1
8367               21       33903453        ATP5O   HGNC:850     -1
8368               21       33903453        ATP5O   HGNC:850     -1
8369               21       33903453        ATP5O   HGNC:850     -1
8370               21       33903453        ATP5O   HGNC:850     -1
8371               21       33903453        ATP5O   HGNC:850     -1
8372               21       33903453        ATP5O   HGNC:850     -1
8373               21       33903453        ATP5O   HGNC:850     -1
8374               21       33903453        ATP5O   HGNC:850     -1
8375               21       33903453        ATP5O   HGNC:850     -1
8376               21       33903453        ATP5O   HGNC:850     -1
8377               21       33903453        ATP5O   HGNC:850     -1
8378               21       33903453        ATP5O   HGNC:850     -1
8379               21       33903453        ATP5O   HGNC:850     -1
8380               21       33903453        ATP5O   HGNC:850     -1
8381               21       33903453        ATP5O   HGNC:850     -1
8382               21       33903453        ATP5O   HGNC:850     -1
8383               21       33903453        ATP5O   HGNC:850     -1
8384               21       33903453        ATP5O   HGNC:850     -1
8385               21       33903453        ATP5O   HGNC:850     -1
8386               21       33903453        ATP5O   HGNC:850     -1
8387               21       33903453        ATP5O   HGNC:850     -1
8388               21       33903453        ATP5O   HGNC:850     -1
8389               21       33903453        ATP5O   HGNC:850     -1
8390               21       33903453        ATP5O   HGNC:850     -1
8391               21       33903453        ATP5O   HGNC:850     -1
8392               21       33903453        ATP5O   HGNC:850     -1
8393               21       33903453        ATP5O   HGNC:850     -1
8394               21       33903453        ATP5O   HGNC:850     -1
8395               21       33903453        ATP5O   HGNC:850     -1
8396               21       33903453        ATP5O   HGNC:850     -1
8397               21       33903453        ATP5O   HGNC:850     -1
8398               21       33903453        ATP5O   HGNC:850     -1
8399               21       33903453        ATP5O   HGNC:850     -1
8400               21       33642400        ITSN1  HGNC:6183      1
8401               21       33642400        ITSN1  HGNC:6183      1
8402               21       33642400        ITSN1  HGNC:6183      1
8403               21       33642400        ITSN1  HGNC:6183      1
8404               21       33642400        ITSN1  HGNC:6183      1
8405               21       33642400        ITSN1  HGNC:6183      1
8406               21       33642400        ITSN1  HGNC:6183      1
8407               21       33642400        ITSN1  HGNC:6183      1
8408               21       33642400        ITSN1  HGNC:6183      1
8409               21       33642400        ITSN1  HGNC:6183      1
8410               21       33642400        ITSN1  HGNC:6183      1
8411               21       33642400        ITSN1  HGNC:6183      1
8412               21       33642400        ITSN1  HGNC:6183      1
8413               21       33642400        ITSN1  HGNC:6183      1
8414               21       33642400        ITSN1  HGNC:6183      1
8415               21       33642400        ITSN1  HGNC:6183      1
8416               21       33642400        ITSN1  HGNC:6183      1
8417               21       33642400        ITSN1  HGNC:6183      1
8418               21       33642400        ITSN1  HGNC:6183      1
8419               21       33642400        ITSN1  HGNC:6183      1
8420               21       33642400        ITSN1  HGNC:6183      1
8421               21       33642400        ITSN1  HGNC:6183      1
8422               21       33642400        ITSN1  HGNC:6183      1
8423               21       33642400        ITSN1  HGNC:6183      1
8424               21       33642400        ITSN1  HGNC:6183      1
8425               21       33642400        ITSN1  HGNC:6183      1
8426               21       33642400        ITSN1  HGNC:6183      1
8427               21       33642400        ITSN1  HGNC:6183      1
8428               21       33642400        ITSN1  HGNC:6183      1
8429               21       33642400        ITSN1  HGNC:6183      1
8430               21       33642400        ITSN1  HGNC:6183      1
8431               21       33642400        ITSN1  HGNC:6183      1
8432               21       33642400        ITSN1  HGNC:6183      1
8433               21       33642400        ITSN1  HGNC:6183      1
8434               21       33642400        ITSN1  HGNC:6183      1
8435               21       33642400        ITSN1  HGNC:6183      1
8436               21       33642400        ITSN1  HGNC:6183      1
8437               21       33642400        ITSN1  HGNC:6183      1
8438               21       33642400        ITSN1  HGNC:6183      1
8439               21       33642400        ITSN1  HGNC:6183      1
8440               21       33642400        ITSN1  HGNC:6183      1
8441               21       33642400        ITSN1  HGNC:6183      1
8442               21       33642400        ITSN1  HGNC:6183      1
8443               21       33642400        ITSN1  HGNC:6183      1
8444               21       33642400        ITSN1  HGNC:6183      1
8445               21       33642400        ITSN1  HGNC:6183      1
8446               21       33642400        ITSN1  HGNC:6183      1
8447               21       33642400        ITSN1  HGNC:6183      1
8448               21       33642400        ITSN1  HGNC:6183      1
8449               21       33642400        ITSN1  HGNC:6183      1
8450               21       33642400        ITSN1  HGNC:6183      1
8451               21       33642400        ITSN1  HGNC:6183      1
8452               21       33642400        ITSN1  HGNC:6183      1
8453               21       33642400        ITSN1  HGNC:6183      1
8454               21       33642400        ITSN1  HGNC:6183      1
8455               21       33642400        ITSN1  HGNC:6183      1
8456               21       33642400        ITSN1  HGNC:6183      1
8457               21       33642400        ITSN1  HGNC:6183      1
8458               21       33642400        ITSN1  HGNC:6183      1
8459               21       33642400        ITSN1  HGNC:6183      1
8460               21       33642400        ITSN1  HGNC:6183      1
8461               21       33642400        ITSN1  HGNC:6183      1
8462               21       33642400        ITSN1  HGNC:6183      1
8463               21       33642400        ITSN1  HGNC:6183      1
8464               21       33642400        ITSN1  HGNC:6183      1
8465               21       33642400        ITSN1  HGNC:6183      1
8466               21       33642400        ITSN1  HGNC:6183      1
8467               21       33642400        ITSN1  HGNC:6183      1
8468               21       33642400        ITSN1  HGNC:6183      1
8469               21       33642400        ITSN1  HGNC:6183      1
8470               21       33642400        ITSN1  HGNC:6183      1
8471               21       33642400        ITSN1  HGNC:6183      1
8472               21       33642400        ITSN1  HGNC:6183      1
8473               21       33642400        ITSN1  HGNC:6183      1
8474               21       33642400        ITSN1  HGNC:6183      1
8475               21       33642400        ITSN1  HGNC:6183      1
8476               21       33642400        ITSN1  HGNC:6183      1
8477               21       33642400        ITSN1  HGNC:6183      1
8478               21       33642400        ITSN1  HGNC:6183      1
8479               21       33642400        ITSN1  HGNC:6183      1
8480               21       33642400        ITSN1  HGNC:6183      1
8481               21       33642400        ITSN1  HGNC:6183      1
8482               21       33642400        ITSN1  HGNC:6183      1
8483               21       33642400        ITSN1  HGNC:6183      1
8484               21       33642400        ITSN1  HGNC:6183      1
8485               21       33642400        ITSN1  HGNC:6183      1
8486               21       33642400        ITSN1  HGNC:6183      1
8487               21       33642400        ITSN1  HGNC:6183      1
8488               21       33642400        ITSN1  HGNC:6183      1
8489               21       33642400        ITSN1  HGNC:6183      1
8490               21       33642400        ITSN1  HGNC:6183      1
8491               21       33642400        ITSN1  HGNC:6183      1
8492               21       33642400        ITSN1  HGNC:6183      1
8493               21       33642400        ITSN1  HGNC:6183      1
8494               21       33642400        ITSN1  HGNC:6183      1
8495               21       33642400        ITSN1  HGNC:6183      1
8496               21       33642400        ITSN1  HGNC:6183      1
8497               21       33642400        ITSN1  HGNC:6183      1
8498               21       33642400        ITSN1  HGNC:6183      1
8499               21       33642400        ITSN1  HGNC:6183      1
8500               21       33642400        ITSN1  HGNC:6183      1
8501               21       33642400        ITSN1  HGNC:6183      1
8502               21       33642400        ITSN1  HGNC:6183      1
8503               21       33642400        ITSN1  HGNC:6183      1
8504               21       33642400        ITSN1  HGNC:6183      1
8505               21       33642400        ITSN1  HGNC:6183      1
8506               21       33642400        ITSN1  HGNC:6183      1
8507               21       33642400        ITSN1  HGNC:6183      1
8508               21       33642400        ITSN1  HGNC:6183      1
8509               21       33642400        ITSN1  HGNC:6183      1
8510               21       33642400        ITSN1  HGNC:6183      1
8511               21       33642400        ITSN1  HGNC:6183      1
8512               21       33642400        ITSN1  HGNC:6183      1
8513               21       33642400        ITSN1  HGNC:6183      1
8514               21       33642400        ITSN1  HGNC:6183      1
8515               21       33642400        ITSN1  HGNC:6183      1
8516               21       33642400        ITSN1  HGNC:6183      1
8517               21       33642400        ITSN1  HGNC:6183      1
8518               21       33642400        ITSN1  HGNC:6183      1
8519               21       33642400        ITSN1  HGNC:6183      1
8520               21       33642400        ITSN1  HGNC:6183      1
8521               21       33642400        ITSN1  HGNC:6183      1
8522               21       33642400        ITSN1  HGNC:6183      1
8523               21       33642400        ITSN1  HGNC:6183      1
8524               21       33642400        ITSN1  HGNC:6183      1
8525               21       33642400        ITSN1  HGNC:6183      1
8526               21       33642400        ITSN1  HGNC:6183      1
8527               21       33642400        ITSN1  HGNC:6183      1
8528               21       33642400        ITSN1  HGNC:6183      1
8529               21       33642400        ITSN1  HGNC:6183      1
8530               21       33642400        ITSN1  HGNC:6183      1
8531               21       33642400        ITSN1  HGNC:6183      1
8532               21       33642400        ITSN1  HGNC:6183      1
8533               21       33642400        ITSN1  HGNC:6183      1
8534               21       33642400        ITSN1  HGNC:6183      1
8535               21       33642400        ITSN1  HGNC:6183      1
8536               21       33642400        ITSN1  HGNC:6183      1
8537               21       33642400        ITSN1  HGNC:6183      1
8538               21       33642400        ITSN1  HGNC:6183      1
8539               21       33642400        ITSN1  HGNC:6183      1
8540               21       33642400        ITSN1  HGNC:6183      1
8541               21       33642400        ITSN1  HGNC:6183      1
8542               21       33642400        ITSN1  HGNC:6183      1
8543               21       33642400        ITSN1  HGNC:6183      1
8544               21       33642400        ITSN1  HGNC:6183      1
8545               21       33642400        ITSN1  HGNC:6183      1
8546               21       33642400        ITSN1  HGNC:6183      1
8547               21       33642400        ITSN1  HGNC:6183      1
8548               21       33642400        ITSN1  HGNC:6183      1
8549               21       33642400        ITSN1  HGNC:6183      1
8550               21       33642400        ITSN1  HGNC:6183      1
8551               21       33642400        ITSN1  HGNC:6183      1
8552               21       33642400        ITSN1  HGNC:6183      1
8553               21       33642400        ITSN1  HGNC:6183      1
8554               21       33642400        ITSN1  HGNC:6183      1
8555               21       33642400        ITSN1  HGNC:6183      1
8556               21       33642400        ITSN1  HGNC:6183      1
8557               21       33642400        ITSN1  HGNC:6183      1
8558               21       33642400        ITSN1  HGNC:6183      1
8559               21       33642400        ITSN1  HGNC:6183      1
8560               21       33642400        ITSN1  HGNC:6183      1
8561               21       33642400        ITSN1  HGNC:6183      1
8562               21       33642400        ITSN1  HGNC:6183      1
8563               21       33642400        ITSN1  HGNC:6183      1
8564               21       33642400        ITSN1  HGNC:6183      1
8565               21       33642400        ITSN1  HGNC:6183      1
8566               21       33642400        ITSN1  HGNC:6183      1
8567               21       33642400        ITSN1  HGNC:6183      1
8568               21       33642400        ITSN1  HGNC:6183      1
8569               21       33642400        ITSN1  HGNC:6183      1
8570               21       33642400        ITSN1  HGNC:6183      1
8571               21       33642400        ITSN1  HGNC:6183      1
8572               21       33642400        ITSN1  HGNC:6183      1
8573               21       33642400        ITSN1  HGNC:6183      1
8574               21       33642400        ITSN1  HGNC:6183      1
8575               21       33642400        ITSN1  HGNC:6183      1
8576               21       33642400        ITSN1  HGNC:6183      1
8577               21       33642400        ITSN1  HGNC:6183      1
8578               21       33642400        ITSN1  HGNC:6183      1
8579               21       33642400        ITSN1  HGNC:6183      1
8580               21       33642400        ITSN1  HGNC:6183      1
8581               21       33642400        ITSN1  HGNC:6183      1
8582               21       33642400        ITSN1  HGNC:6183      1
8583               21       33642400        ITSN1  HGNC:6183      1
8584               21       33642400        ITSN1  HGNC:6183      1
8585               21       33642400        ITSN1  HGNC:6183      1
8586               21       33642400        ITSN1  HGNC:6183      1
8587               21       33642400        ITSN1  HGNC:6183      1
8588               21       33642400        ITSN1  HGNC:6183      1
8589               21       33642400        ITSN1  HGNC:6183      1
8590               21       33642400        ITSN1  HGNC:6183      1
8591               21       33642400        ITSN1  HGNC:6183      1
8592               21       33642400        ITSN1  HGNC:6183      1
8593               21       33642400        ITSN1  HGNC:6183      1
8594               21       33642400        ITSN1  HGNC:6183      1
8595               21       33642400        ITSN1  HGNC:6183      1
8596               21       33642400        ITSN1  HGNC:6183      1
8597               21       33642400        ITSN1  HGNC:6183      1
8598               21       33642400        ITSN1  HGNC:6183      1
8599               21       33642400        ITSN1  HGNC:6183      1
8600               21       33642400        ITSN1  HGNC:6183      1
8601               21       33642400        ITSN1  HGNC:6183      1
8602               21       33642400        ITSN1  HGNC:6183      1
8603               21       33642400        ITSN1  HGNC:6183      1
8604               21       33642400        ITSN1  HGNC:6183      1
8605               21       33642400        ITSN1  HGNC:6183      1
8606               21       33642400        ITSN1  HGNC:6183      1
8607               21       33642400        ITSN1  HGNC:6183      1
8608               21       33642400        ITSN1  HGNC:6183      1
8609               21       33642400        ITSN1  HGNC:6183      1
8610               21       33642400        ITSN1  HGNC:6183      1
8611               21       33642400        ITSN1  HGNC:6183      1
8612               21       33642400        ITSN1  HGNC:6183      1
8613               21       33642400        ITSN1  HGNC:6183      1
8614               21       33642400        ITSN1  HGNC:6183      1
8615               21       33642400        ITSN1  HGNC:6183      1
8616               21       33642400        ITSN1  HGNC:6183      1
8617               21       33642400        ITSN1  HGNC:6183      1
8618               21       33642400        ITSN1  HGNC:6183      1
8619               21       33642400        ITSN1  HGNC:6183      1
8620               21       33642400        ITSN1  HGNC:6183      1
8621               21       33642400        ITSN1  HGNC:6183      1
8622               21       33642400        ITSN1  HGNC:6183      1
8623               21       33642400        ITSN1  HGNC:6183      1
8624               21       33642400        ITSN1  HGNC:6183      1
8625               21       33642400        ITSN1  HGNC:6183      1
8626               21       33642400        ITSN1  HGNC:6183      1
8627               21       33642400        ITSN1  HGNC:6183      1
8628               21       33642400        ITSN1  HGNC:6183      1
8629               21       33642400        ITSN1  HGNC:6183      1
8630               21       33642400        ITSN1  HGNC:6183      1
8631               21       33642400        ITSN1  HGNC:6183      1
8632               21       33642400        ITSN1  HGNC:6183      1
8633               21       33642400        ITSN1  HGNC:6183      1
8634               21       33642400        ITSN1  HGNC:6183      1
8635               21       33642400        ITSN1  HGNC:6183      1
8636               21       33642400        ITSN1  HGNC:6183      1
8637               21       33642400        ITSN1  HGNC:6183      1
8638               21       33642400        ITSN1  HGNC:6183      1
8639               21       33642400        ITSN1  HGNC:6183      1
8640               21       33642400        ITSN1  HGNC:6183      1
8641               21       33642400        ITSN1  HGNC:6183      1
8642               21       33642400        ITSN1  HGNC:6183      1
8643               21       33642400        ITSN1  HGNC:6183      1
8644               21       33642400        ITSN1  HGNC:6183      1
8645               21       33642400        ITSN1  HGNC:6183      1
8646               21       33642400        ITSN1  HGNC:6183      1
8647               21       33642400        ITSN1  HGNC:6183      1
8648               21       33642400        ITSN1  HGNC:6183      1
8649               21       33642400        ITSN1  HGNC:6183      1
8650               21       33642400        ITSN1  HGNC:6183      1
8651               21       33642400        ITSN1  HGNC:6183      1
8652               21       33642400        ITSN1  HGNC:6183      1
8653               21       33642400        ITSN1  HGNC:6183      1
8654               21       33642400        ITSN1  HGNC:6183      1
8655               21       33642400        ITSN1  HGNC:6183      1
8656               21       33642400        ITSN1  HGNC:6183      1
8657               21       33642400        ITSN1  HGNC:6183      1
8658               21       33642400        ITSN1  HGNC:6183      1
8659               21       33642400        ITSN1  HGNC:6183      1
8660               21       33642400        ITSN1  HGNC:6183      1
8661               21       33642400        ITSN1  HGNC:6183      1
8662               21       33642400        ITSN1  HGNC:6183      1
8663               21       33642400        ITSN1  HGNC:6183      1
8664               21       33642400        ITSN1  HGNC:6183      1
8665               21       33642400        ITSN1  HGNC:6183      1
8666               21       33642400        ITSN1  HGNC:6183      1
8667               21       33642400        ITSN1  HGNC:6183      1
8668               21       33642400        ITSN1  HGNC:6183      1
8669               21       33642400        ITSN1  HGNC:6183      1
8670               21       33642400        ITSN1  HGNC:6183      1
8671               21       33642400        ITSN1  HGNC:6183      1
8672               21       33642400        ITSN1  HGNC:6183      1
8673               21       33642400        ITSN1  HGNC:6183      1
8674               21       33642400        ITSN1  HGNC:6183      1
8675               21       33642400        ITSN1  HGNC:6183      1
8676               21       33642400        ITSN1  HGNC:6183      1
8677               21       33642400        ITSN1  HGNC:6183      1
8678               21       33642400        ITSN1  HGNC:6183      1
8679               21       33642400        ITSN1  HGNC:6183      1
8680               21       33642400        ITSN1  HGNC:6183      1
8681               21       33642400        ITSN1  HGNC:6183      1
8682               21       33642400        ITSN1  HGNC:6183      1
8683               21       33642400        ITSN1  HGNC:6183      1
8684               21       33642400        ITSN1  HGNC:6183      1
8685               21       33642400        ITSN1  HGNC:6183      1
8686               21       33642400        ITSN1  HGNC:6183      1
8687               21       33642400        ITSN1  HGNC:6183      1
8688               21       33642400        ITSN1  HGNC:6183      1
8689               21       33642400        ITSN1  HGNC:6183      1
8690               21       33642400        ITSN1  HGNC:6183      1
8691               21       33642400        ITSN1  HGNC:6183      1
8692               21       33642400        ITSN1  HGNC:6183      1
8693               21       33642400        ITSN1  HGNC:6183      1
8694               21       33642400        ITSN1  HGNC:6183      1
8695               21       33642400        ITSN1  HGNC:6183      1
8696               21       33642400        ITSN1  HGNC:6183      1
8697               21       33642400        ITSN1  HGNC:6183      1
8698               21       33642400        ITSN1  HGNC:6183      1
8699               21       33642400        ITSN1  HGNC:6183      1
8700               21       33642400        ITSN1  HGNC:6183      1
8701               21       33642400        ITSN1  HGNC:6183      1
8702               21       33642400        ITSN1  HGNC:6183      1
8703               21       33642400        ITSN1  HGNC:6183      1
8704               21       33642400        ITSN1  HGNC:6183      1
8705               21       33642400        ITSN1  HGNC:6183      1
8706               21       33642400        ITSN1  HGNC:6183      1
8707               21       33642400        ITSN1  HGNC:6183      1
8708               21       33642400        ITSN1  HGNC:6183      1
8709               21       33642400        ITSN1  HGNC:6183      1
8710               21       33642400        ITSN1  HGNC:6183      1
8711               21       33642400        ITSN1  HGNC:6183      1
8712               21       33642400        ITSN1  HGNC:6183      1
8713               21       33642400        ITSN1  HGNC:6183      1
8714               21       33642400        ITSN1  HGNC:6183      1
8715               21       33642400        ITSN1  HGNC:6183      1
8716               21       33642400        ITSN1  HGNC:6183      1
8717               21       33642400        ITSN1  HGNC:6183      1
8718               21       33642400        ITSN1  HGNC:6183      1
8719               21       33642400        ITSN1  HGNC:6183      1
8720               21       33642400        ITSN1  HGNC:6183      1
8721               21       33642400        ITSN1  HGNC:6183      1
8722               21       33642400        ITSN1  HGNC:6183      1
8723               21       33642400        ITSN1  HGNC:6183      1
8724               21       33642400        ITSN1  HGNC:6183      1
8725               21       33642400        ITSN1  HGNC:6183      1
8726               21       33642400        ITSN1  HGNC:6183      1
8727               21       33642400        ITSN1  HGNC:6183      1
8728               21       33642400        ITSN1  HGNC:6183      1
8729               21       33642400        ITSN1  HGNC:6183      1
8730               21       33642400        ITSN1  HGNC:6183      1
8731               21       33642400        ITSN1  HGNC:6183      1
8732               21       33642400        ITSN1  HGNC:6183      1
8733               21       33642400        ITSN1  HGNC:6183      1
8734               21       33642400        ITSN1  HGNC:6183      1
8735               21       33642400        ITSN1  HGNC:6183      1
8736               21       33642400        ITSN1  HGNC:6183      1
8737               21       33642400        ITSN1  HGNC:6183      1
8738               21       33642400        ITSN1  HGNC:6183      1
8739               21       33642400        ITSN1  HGNC:6183      1
8740               21       33642400        ITSN1  HGNC:6183      1
8741               21       33642400        ITSN1  HGNC:6183      1
8742               21       33642400        ITSN1  HGNC:6183      1
8743               21       33642400        ITSN1  HGNC:6183      1
8744               21       33642400        ITSN1  HGNC:6183      1
8745               21       33642400        ITSN1  HGNC:6183      1
8746               21       33642400        ITSN1  HGNC:6183      1
8747               21       33642400        ITSN1  HGNC:6183      1
8748               21       33642400        ITSN1  HGNC:6183      1
8749               21       33642400        ITSN1  HGNC:6183      1
8750               21       33642400        ITSN1  HGNC:6183      1
8751               21       33642400        ITSN1  HGNC:6183      1
8752               21       33642400        ITSN1  HGNC:6183      1
8753               21       33642400        ITSN1  HGNC:6183      1
8754               21       33642400        ITSN1  HGNC:6183      1
8755               21       33642400        ITSN1  HGNC:6183      1
8756               21       33642400        ITSN1  HGNC:6183      1
8757               21       33642400        ITSN1  HGNC:6183      1
8758               21       33642400        ITSN1  HGNC:6183      1
8759               21       33642400        ITSN1  HGNC:6183      1
8760               21       33642400        ITSN1  HGNC:6183      1
8761               21       33642400        ITSN1  HGNC:6183      1
8762               21       33642400        ITSN1  HGNC:6183      1
8763               21       33642400        ITSN1  HGNC:6183      1
8764               21       33642400        ITSN1  HGNC:6183      1
8765               21       33642400        ITSN1  HGNC:6183      1
8766               21       33642400        ITSN1  HGNC:6183      1
8767               21       33642400        ITSN1  HGNC:6183      1
8768               21       33642400        ITSN1  HGNC:6183      1
8769               21       33642400        ITSN1  HGNC:6183      1
8770               21       33642400        ITSN1  HGNC:6183      1
8771               21       33642400        ITSN1  HGNC:6183      1
8772               21       33642400        ITSN1  HGNC:6183      1
8773               21       33642400        ITSN1  HGNC:6183      1
8774               21       33642400        ITSN1  HGNC:6183      1
8775               21       33642400        ITSN1  HGNC:6183      1
8776               21       33642400        ITSN1  HGNC:6183      1
8777               21       33642400        ITSN1  HGNC:6183      1
8778               21       33642400        ITSN1  HGNC:6183      1
8779               21       33642400        ITSN1  HGNC:6183      1
8780               21       33642400        ITSN1  HGNC:6183      1
8781               21       33642400        ITSN1  HGNC:6183      1
8782               21       33642400        ITSN1  HGNC:6183      1
8783               21       33642400        ITSN1  HGNC:6183      1
8784               21       33642400        ITSN1  HGNC:6183      1
8785               21       33642400        ITSN1  HGNC:6183      1
8786               21       33642400        ITSN1  HGNC:6183      1
8787               21       33642400        ITSN1  HGNC:6183      1
8788               21       33642400        ITSN1  HGNC:6183      1
8789               21       33642400        ITSN1  HGNC:6183      1
8790               21       33642400        ITSN1  HGNC:6183      1
8791               21       33642400        ITSN1  HGNC:6183      1
8792               21       33642400        ITSN1  HGNC:6183      1
8793               21       33642400        ITSN1  HGNC:6183      1
8794               21       33642400        ITSN1  HGNC:6183      1
8795               21       33642400        ITSN1  HGNC:6183      1
8796               21       33642400        ITSN1  HGNC:6183      1
8797               21       33642400        ITSN1  HGNC:6183      1
8798               21       33642400        ITSN1  HGNC:6183      1
8799               21       33642400        ITSN1  HGNC:6183      1
8800               21       33642400        ITSN1  HGNC:6183      1
8801               21       33642400        ITSN1  HGNC:6183      1
8802               21       33642400        ITSN1  HGNC:6183      1
8803               21       33642400        ITSN1  HGNC:6183      1
8804               21       33642400        ITSN1  HGNC:6183      1
8805               21       33642400        ITSN1  HGNC:6183      1
8806               21       33642400        ITSN1  HGNC:6183      1
8807               21       33642400        ITSN1  HGNC:6183      1
8808               21       33642400        ITSN1  HGNC:6183      1
8809               21       33589341       CRYZL1  HGNC:2420     -1
8810               21       33589341       CRYZL1  HGNC:2420     -1
8811               21       33589341       CRYZL1  HGNC:2420     -1
8812               21       33589341       CRYZL1  HGNC:2420     -1
8813               21       33589341       CRYZL1  HGNC:2420     -1
8814               21       33589341       CRYZL1  HGNC:2420     -1
8815               21       33589341       CRYZL1  HGNC:2420     -1
8816               21       33589341       CRYZL1  HGNC:2420     -1
8817               21       33589341       CRYZL1  HGNC:2420     -1
8818               21       33589341       CRYZL1  HGNC:2420     -1
8819               21       33589341       CRYZL1  HGNC:2420     -1
8820               21       33589341       CRYZL1  HGNC:2420     -1
8821               21       33589341       CRYZL1  HGNC:2420     -1
8822               21       33589341       CRYZL1  HGNC:2420     -1
8823               21       33589341       CRYZL1  HGNC:2420     -1
8824               21       33589341       CRYZL1  HGNC:2420     -1
8825               21       33589341       CRYZL1  HGNC:2420     -1
8826               21       33589341       CRYZL1  HGNC:2420     -1
8827               21       33589341       CRYZL1  HGNC:2420     -1
8828               21       33589341       CRYZL1  HGNC:2420     -1
8829               21       33589341       CRYZL1  HGNC:2420     -1
8830               21       33589341       CRYZL1  HGNC:2420     -1
8831               21       33589341       CRYZL1  HGNC:2420     -1
8832               21       33589341       CRYZL1  HGNC:2420     -1
8833               21       33589341       CRYZL1  HGNC:2420     -1
8834               21       33589341       CRYZL1  HGNC:2420     -1
8835               21       33589341       CRYZL1  HGNC:2420     -1
8836               21       33589341       CRYZL1  HGNC:2420     -1
8837               21       33589341       CRYZL1  HGNC:2420     -1
8838               21       33589341       CRYZL1  HGNC:2420     -1
8839               21       33589341       CRYZL1  HGNC:2420     -1
8840               21       33589341       CRYZL1  HGNC:2420     -1
8841               21       33589341       CRYZL1  HGNC:2420     -1
8842               21       33589341       CRYZL1  HGNC:2420     -1
8843               21       33589341       CRYZL1  HGNC:2420     -1
8844               21       33589341       CRYZL1  HGNC:2420     -1
8845               21       33589341       CRYZL1  HGNC:2420     -1
8846               21       33589341       CRYZL1  HGNC:2420     -1
8847               21       33589341       CRYZL1  HGNC:2420     -1
8848               21       33589341       CRYZL1  HGNC:2420     -1
8849               21       33589341       CRYZL1  HGNC:2420     -1
8850               21       33589341       CRYZL1  HGNC:2420     -1
8851               21       33589341       CRYZL1  HGNC:2420     -1
8852               21       33589341       CRYZL1  HGNC:2420     -1
8853               21       33589341       CRYZL1  HGNC:2420     -1
8854               21       33589341       CRYZL1  HGNC:2420     -1
8855               21       33589341       CRYZL1  HGNC:2420     -1
8856               21       33589341       CRYZL1  HGNC:2420     -1
8857               21       33589341       CRYZL1  HGNC:2420     -1
8858               21       33589341       CRYZL1  HGNC:2420     -1
8859               21       33589341       CRYZL1  HGNC:2420     -1
8860               21       33589341       CRYZL1  HGNC:2420     -1
8861               21       33589341       CRYZL1  HGNC:2420     -1
8862               21       33589341       CRYZL1  HGNC:2420     -1
8863               21       33589341       CRYZL1  HGNC:2420     -1
8864               21       33589341       CRYZL1  HGNC:2420     -1
8865               21       33589341       CRYZL1  HGNC:2420     -1
8866               21       33589341       CRYZL1  HGNC:2420     -1
8867               21       33589341       CRYZL1  HGNC:2420     -1
8868               21       33589341       CRYZL1  HGNC:2420     -1
8869               21       33589341       CRYZL1  HGNC:2420     -1
8870               21       33589341       CRYZL1  HGNC:2420     -1
8871               21       33589341       CRYZL1  HGNC:2420     -1
8872               21       33589341       CRYZL1  HGNC:2420     -1
8873               21       33589341       CRYZL1  HGNC:2420     -1
8874               21       33589341       CRYZL1  HGNC:2420     -1
8875               21       33589341       CRYZL1  HGNC:2420     -1
8876               21       33589341       CRYZL1  HGNC:2420     -1
8877               21       33589341       CRYZL1  HGNC:2420     -1
8878               21       33589341       CRYZL1  HGNC:2420     -1
8879               21       33589341       CRYZL1  HGNC:2420     -1
8880               21       33589341       CRYZL1  HGNC:2420     -1
8881               21       33589341       CRYZL1  HGNC:2420     -1
8882               21       33589341       CRYZL1  HGNC:2420     -1
8883               21       33589341       CRYZL1  HGNC:2420     -1
8884               21       33589341       CRYZL1  HGNC:2420     -1
8885               21       33589341       CRYZL1  HGNC:2420     -1
8886               21       33589341       CRYZL1  HGNC:2420     -1
8887               21       33589341       CRYZL1  HGNC:2420     -1
8888               21       33589341       CRYZL1  HGNC:2420     -1
8889               21       33589341       CRYZL1  HGNC:2420     -1
8890               21       33589341       CRYZL1  HGNC:2420     -1
8891               21       33589341       CRYZL1  HGNC:2420     -1
8892               21       33589341       CRYZL1  HGNC:2420     -1
8893               21       33589341       CRYZL1  HGNC:2420     -1
8894               21       33589341       CRYZL1  HGNC:2420     -1
8895               21       33589341       CRYZL1  HGNC:2420     -1
8896               21       33589341       CRYZL1  HGNC:2420     -1
8897               21       33589341       CRYZL1  HGNC:2420     -1
8898               21       33589341       CRYZL1  HGNC:2420     -1
8899               21       33589341       CRYZL1  HGNC:2420     -1
8900               21       33589341       CRYZL1  HGNC:2420     -1
8901               21       33589341       CRYZL1  HGNC:2420     -1
8902               21       33589341       CRYZL1  HGNC:2420     -1
8903               21       33589341       CRYZL1  HGNC:2420     -1
8904               21       33589341       CRYZL1  HGNC:2420     -1
8905               21       33589341       CRYZL1  HGNC:2420     -1
8906               21       33589341       CRYZL1  HGNC:2420     -1
8907               21       33589341       CRYZL1  HGNC:2420     -1
8908               21       33589341       CRYZL1  HGNC:2420     -1
8909               21       33589341       CRYZL1  HGNC:2420     -1
8910               21       33589341       CRYZL1  HGNC:2420     -1
8911               21       33589341       CRYZL1  HGNC:2420     -1
8912               21       33589341       CRYZL1  HGNC:2420     -1
8913               21       33589341       CRYZL1  HGNC:2420     -1
8914               21       33589341       CRYZL1  HGNC:2420     -1
8915               21       33589341       CRYZL1  HGNC:2420     -1
8916               21       33589341       CRYZL1  HGNC:2420     -1
8917               21       33589341       CRYZL1  HGNC:2420     -1
8918               21       33589341       CRYZL1  HGNC:2420     -1
8919               21       33589341       CRYZL1  HGNC:2420     -1
8920               21       33589341       CRYZL1  HGNC:2420     -1
8921               21       33589341       CRYZL1  HGNC:2420     -1
8922               21       33589341       CRYZL1  HGNC:2420     -1
8923               21       33589341       CRYZL1  HGNC:2420     -1
8924               21       33589341       CRYZL1  HGNC:2420     -1
8925               21       33589341       CRYZL1  HGNC:2420     -1
8926               21       33589341       CRYZL1  HGNC:2420     -1
8927               21       33589341       CRYZL1  HGNC:2420     -1
8928               21       33589341       CRYZL1  HGNC:2420     -1
8929               21       33589341       CRYZL1  HGNC:2420     -1
8930               21       33589341       CRYZL1  HGNC:2420     -1
8931               21       33589341       CRYZL1  HGNC:2420     -1
8932               21       33589341       CRYZL1  HGNC:2420     -1
8933               21       33589341       CRYZL1  HGNC:2420     -1
8934               21       33589341       CRYZL1  HGNC:2420     -1
8935               21       33589341       CRYZL1  HGNC:2420     -1
8936               21       33589341       CRYZL1  HGNC:2420     -1
8937               21       33589341       CRYZL1  HGNC:2420     -1
8938               21       33589341       CRYZL1  HGNC:2420     -1
8939               21       33589341       CRYZL1  HGNC:2420     -1
8940               21       33589341       CRYZL1  HGNC:2420     -1
8941               21       33589341       CRYZL1  HGNC:2420     -1
8942               21       33589341       CRYZL1  HGNC:2420     -1
8943               21       33589341       CRYZL1  HGNC:2420     -1
8944               21       33589341       CRYZL1  HGNC:2420     -1
8945               21       33589341       CRYZL1  HGNC:2420     -1
8946               21       33589341       CRYZL1  HGNC:2420     -1
8947               21       33589341       CRYZL1  HGNC:2420     -1
8948               21       33589341       CRYZL1  HGNC:2420     -1
8949               21       33589341       CRYZL1  HGNC:2420     -1
8950               21       33589341       CRYZL1  HGNC:2420     -1
8951               21       33589341       CRYZL1  HGNC:2420     -1
8952               21       33589341       CRYZL1  HGNC:2420     -1
8953               21       33589341       CRYZL1  HGNC:2420     -1
8954               21       33589341       CRYZL1  HGNC:2420     -1
8955               21       33589341       CRYZL1  HGNC:2420     -1
8956               21       33589341       CRYZL1  HGNC:2420     -1
8957               21       33589341       CRYZL1  HGNC:2420     -1
8958               21       33589341       CRYZL1  HGNC:2420     -1
8959               21       33589341       CRYZL1  HGNC:2420     -1
8960               21       33589341       CRYZL1  HGNC:2420     -1
8961               21       33589341       CRYZL1  HGNC:2420     -1
8962               21       33589341       CRYZL1  HGNC:2420     -1
8963               21       33589341       CRYZL1  HGNC:2420     -1
8964               21       33589341       CRYZL1  HGNC:2420     -1
8965               21       33589341       CRYZL1  HGNC:2420     -1
8966               21       33589341       CRYZL1  HGNC:2420     -1
8967               21       33589341       CRYZL1  HGNC:2420     -1
8968               21       33589341       CRYZL1  HGNC:2420     -1
8969               21       33589341       CRYZL1  HGNC:2420     -1
8970               21       33589341       CRYZL1  HGNC:2420     -1
8971               21       33589341       CRYZL1  HGNC:2420     -1
8972               21       33589341       CRYZL1  HGNC:2420     -1
8973               21       33589341       CRYZL1  HGNC:2420     -1
8974               21       33589341       CRYZL1  HGNC:2420     -1
8975               21       33589341       CRYZL1  HGNC:2420     -1
8976               21       33589341       CRYZL1  HGNC:2420     -1
8977               21       33559542       DONSON  HGNC:2993     -1
8978               21       33559542       DONSON  HGNC:2993     -1
8979               21       33559542       DONSON  HGNC:2993     -1
8980               21       33559542       DONSON  HGNC:2993     -1
8981               21       33559542       DONSON  HGNC:2993     -1
8982               21       33559542       DONSON  HGNC:2993     -1
8983               21       33559542       DONSON  HGNC:2993     -1
8984               21       33559542       DONSON  HGNC:2993     -1
8985               21       33559542       DONSON  HGNC:2993     -1
8986               21       33559542       DONSON  HGNC:2993     -1
8987               21       33559542       DONSON  HGNC:2993     -1
8988               21       33559542       DONSON  HGNC:2993     -1
8989               21       33559542       DONSON  HGNC:2993     -1
8990               21       33559542       DONSON  HGNC:2993     -1
8991               21       33559542       DONSON  HGNC:2993     -1
8992               21       33559542       DONSON  HGNC:2993     -1
8993               21       33559542       DONSON  HGNC:2993     -1
8994               21       33559542       DONSON  HGNC:2993     -1
8995               21       33559542       DONSON  HGNC:2993     -1
8996               21       33559542       DONSON  HGNC:2993     -1
8997               21       33559542       DONSON  HGNC:2993     -1
8998               21       33559542       DONSON  HGNC:2993     -1
8999               21       33559542       DONSON  HGNC:2993     -1
9000               21       33559542       DONSON  HGNC:2993     -1
9001               21       33559542       DONSON  HGNC:2993     -1
9002               21       33559542       DONSON  HGNC:2993     -1
9003               21       33559542       DONSON  HGNC:2993     -1
9004               21       33559542       DONSON  HGNC:2993     -1
9005               21       33559542       DONSON  HGNC:2993     -1
9006               21       33559542       DONSON  HGNC:2993     -1
9007               21       33559542       DONSON  HGNC:2993     -1
9008               21       33559542       DONSON  HGNC:2993     -1
9009               21       33559542       DONSON  HGNC:2993     -1
9010               21       33559542       DONSON  HGNC:2993     -1
9011               21       33559542       DONSON  HGNC:2993     -1
9012               21       33559542       DONSON  HGNC:2993     -1
9013               21       33559542       DONSON  HGNC:2993     -1
9014               21       33559542       DONSON  HGNC:2993     -1
9015               21       33559542       DONSON  HGNC:2993     -1
9016               21       33559542       DONSON  HGNC:2993     -1
9017               21       33559542       DONSON  HGNC:2993     -1
9018               21       33559542       DONSON  HGNC:2993     -1
9019               21       33559542       DONSON  HGNC:2993     -1
9020               21       33559542       DONSON  HGNC:2993     -1
9021               21       33559542       DONSON  HGNC:2993     -1
9022               21       33559542       DONSON  HGNC:2993     -1
9023               21       33559542       DONSON  HGNC:2993     -1
9024               21       33559542       DONSON  HGNC:2993     -1
9025               21       33559542       DONSON  HGNC:2993     -1
9026               21       33559542       DONSON  HGNC:2993     -1
9027               21       33559542       DONSON  HGNC:2993     -1
9028               21       33559542       DONSON  HGNC:2993     -1
9029               21       33559542       DONSON  HGNC:2993     -1
9030               21       33559542       DONSON  HGNC:2993     -1
9031               21       33559542       DONSON  HGNC:2993     -1
9032               21       33559542       DONSON  HGNC:2993     -1
9033               21       33559542       DONSON  HGNC:2993     -1
9034               21       33559542       DONSON  HGNC:2993     -1
9035               21       33559542       DONSON  HGNC:2993     -1
9036               21       33559542       DONSON  HGNC:2993     -1
9037               21       33559542       DONSON  HGNC:2993     -1
9038               21       33559542       DONSON  HGNC:2993     -1
9039               21       33559542       DONSON  HGNC:2993     -1
9040               21       33559542       DONSON  HGNC:2993     -1
9041               21       33559542       DONSON  HGNC:2993     -1
9042               21       33559542       DONSON  HGNC:2993     -1
9043               21       33559542       DONSON  HGNC:2993     -1
9044               21       33559542       DONSON  HGNC:2993     -1
9045               21       33559542       DONSON  HGNC:2993     -1
9046               21       33559542       DONSON  HGNC:2993     -1
9047               21       33559542       DONSON  HGNC:2993     -1
9048               21       33559542       DONSON  HGNC:2993     -1
9049               21       33559542       DONSON  HGNC:2993     -1
9050               21       33559542       DONSON  HGNC:2993     -1
9051               21       33559542       DONSON  HGNC:2993     -1
9052               21       33559542       DONSON  HGNC:2993     -1
9053               21       33559542       DONSON  HGNC:2993     -1
9054               21       33559542       DONSON  HGNC:2993     -1
9055               21       33559542       DONSON  HGNC:2993     -1
9056               21       33559542       DONSON  HGNC:2993     -1
9057               21       33559542       DONSON  HGNC:2993     -1
9058               21       33559542       DONSON  HGNC:2993     -1
9059               21       33559542       DONSON  HGNC:2993     -1
9060               21       33559542       DONSON  HGNC:2993     -1
9061               21       33559542       DONSON  HGNC:2993     -1
9062               21       33559542       DONSON  HGNC:2993     -1
9063               21       33559542       DONSON  HGNC:2993     -1
9064               21       33559542       DONSON  HGNC:2993     -1
9065               21       33559542       DONSON  HGNC:2993     -1
9066               21       33559542       DONSON  HGNC:2993     -1
9067               21       33559542       DONSON  HGNC:2993     -1
9068               21       33559542       DONSON  HGNC:2993     -1
9069               21       33559542       DONSON  HGNC:2993     -1
9070               21       33542618          SON HGNC:11183      1
9071               21       33542618          SON HGNC:11183      1
9072               21       33542618          SON HGNC:11183      1
9073               21       33542618          SON HGNC:11183      1
9074               21       33542618          SON HGNC:11183      1
9075               21       33542618          SON HGNC:11183      1
9076               21       33542618          SON HGNC:11183      1
9077               21       33542618          SON HGNC:11183      1
9078               21       33542618          SON HGNC:11183      1
9079               21       33542618          SON HGNC:11183      1
9080               21       33542618          SON HGNC:11183      1
9081               21       33542618          SON HGNC:11183      1
9082               21       33542618          SON HGNC:11183      1
9083               21       33542618          SON HGNC:11183      1
9084               21       33542618          SON HGNC:11183      1
9085               21       33542618          SON HGNC:11183      1
9086               21       33542618          SON HGNC:11183      1
9087               21       33542618          SON HGNC:11183      1
9088               21       33542618          SON HGNC:11183      1
9089               21       33542618          SON HGNC:11183      1
9090               21       33542618          SON HGNC:11183      1
9091               21       33542618          SON HGNC:11183      1
9092               21       33542618          SON HGNC:11183      1
9093               21       33542618          SON HGNC:11183      1
9094               21       33542618          SON HGNC:11183      1
9095               21       33542618          SON HGNC:11183      1
9096               21       33542618          SON HGNC:11183      1
9097               21       33542618          SON HGNC:11183      1
9098               21       33542618          SON HGNC:11183      1
9099               21       33542618          SON HGNC:11183      1
9100               21       33542618          SON HGNC:11183      1
9101               21       33542618          SON HGNC:11183      1
9102               21       33542618          SON HGNC:11183      1
9103               21       33542618          SON HGNC:11183      1
9104               21       33542618          SON HGNC:11183      1
9105               21       33542618          SON HGNC:11183      1
9106               21       33542618          SON HGNC:11183      1
9107               21       33542618          SON HGNC:11183      1
9108               21       33542618          SON HGNC:11183      1
9109               21       33542618          SON HGNC:11183      1
9110               21       33542618          SON HGNC:11183      1
9111               21       33542618          SON HGNC:11183      1
9112               21       33542618          SON HGNC:11183      1
9113               21       33542618          SON HGNC:11183      1
9114               21       33542618          SON HGNC:11183      1
9115               21       33542618          SON HGNC:11183      1
9116               21       33542618          SON HGNC:11183      1
9117               21       33542618          SON HGNC:11183      1
9118               21       33542618          SON HGNC:11183      1
9119               21       33542618          SON HGNC:11183      1
9120               21       33542618          SON HGNC:11183      1
9121               21       33542618          SON HGNC:11183      1
9122               21       33542618          SON HGNC:11183      1
9123               21       33542618          SON HGNC:11183      1
9124               21       33542618          SON HGNC:11183      1
9125               21       33542618          SON HGNC:11183      1
9126               21       33542618          SON HGNC:11183      1
9127               21       33542618          SON HGNC:11183      1
9128               21       33542618          SON HGNC:11183      1
9129               21       33542618          SON HGNC:11183      1
9130               21       33542618          SON HGNC:11183      1
9131               21       33542618          SON HGNC:11183      1
9132               21       33542618          SON HGNC:11183      1
9133               21       33542618          SON HGNC:11183      1
9134               21       33542618          SON HGNC:11183      1
9135               21       33542618          SON HGNC:11183      1
9136               21       33542618          SON HGNC:11183      1
9137               21       33542618          SON HGNC:11183      1
9138               21       33542618          SON HGNC:11183      1
9139               21       33542618          SON HGNC:11183      1
9140               21       33542618          SON HGNC:11183      1
9141               21       33542618          SON HGNC:11183      1
9142               21       33542618          SON HGNC:11183      1
9143               21       33542618          SON HGNC:11183      1
9144               21       33542618          SON HGNC:11183      1
9145               21       33542618          SON HGNC:11183      1
9146               21       33542618          SON HGNC:11183      1
9147               21       33542618          SON HGNC:11183      1
9148               21       33542618          SON HGNC:11183      1
9149               21       33542618          SON HGNC:11183      1
9150               21       33542618          SON HGNC:11183      1
9151               21       33542618          SON HGNC:11183      1
9152               21       33542618          SON HGNC:11183      1
9153               21       33542618          SON HGNC:11183      1
9154               21       33542618          SON HGNC:11183      1
9155               21       33542618          SON HGNC:11183      1
9156               21       33542618          SON HGNC:11183      1
9157               21       33542618          SON HGNC:11183      1
9158               21       33542618          SON HGNC:11183      1
9159               21       33542618          SON HGNC:11183      1
9160               21       33542618          SON HGNC:11183      1
9161               21       33542618          SON HGNC:11183      1
9162               21       33542618          SON HGNC:11183      1
9163               21       33542618          SON HGNC:11183      1
9164               21       33542618          SON HGNC:11183      1
9165               21       33542618          SON HGNC:11183      1
9166               21       33542618          SON HGNC:11183      1
9167               21       33542618          SON HGNC:11183      1
9168               21       33542618          SON HGNC:11183      1
9169               21       33542618          SON HGNC:11183      1
9170               21       33542618          SON HGNC:11183      1
9171               21       33542618          SON HGNC:11183      1
9172               21       33542618          SON HGNC:11183      1
9173               21       33542618          SON HGNC:11183      1
9174               21       33542618          SON HGNC:11183      1
9175               21       33542618          SON HGNC:11183      1
9176               21       33542618          SON HGNC:11183      1
9177               21       33542618          SON HGNC:11183      1
9178               21       33542618          SON HGNC:11183      1
9179               21       33542618          SON HGNC:11183      1
9180               21       33542618          SON HGNC:11183      1
9181               21       33542618          SON HGNC:11183      1
9182               21       33542618          SON HGNC:11183      1
9183               21       33542618          SON HGNC:11183      1
9184               21       33542618          SON HGNC:11183      1
9185               21       33542618          SON HGNC:11183      1
9186               21       33542618          SON HGNC:11183      1
9187               21       33542618          SON HGNC:11183      1
9188               21       33542618          SON HGNC:11183      1
9189               21       33542618          SON HGNC:11183      1
9190               21       33542618          SON HGNC:11183      1
9191               21       33542618          SON HGNC:11183      1
9192               21       33542618          SON HGNC:11183      1
9193               21       33542618          SON HGNC:11183      1
9194               21       33550662      MIR6501 HGNC:50033      1
9195               21       33503931         GART  HGNC:4163     -1
9196               21       33503931         GART  HGNC:4163     -1
9197               21       33503931         GART  HGNC:4163     -1
9198               21       33503931         GART  HGNC:4163     -1
9199               21       33503931         GART  HGNC:4163     -1
9200               21       33503931         GART  HGNC:4163     -1
9201               21       33503931         GART  HGNC:4163     -1
9202               21       33503931         GART  HGNC:4163     -1
9203               21       33503931         GART  HGNC:4163     -1
9204               21       33503931         GART  HGNC:4163     -1
9205               21       33503931         GART  HGNC:4163     -1
9206               21       33503931         GART  HGNC:4163     -1
9207               21       33503931         GART  HGNC:4163     -1
9208               21       33503931         GART  HGNC:4163     -1
9209               21       33503931         GART  HGNC:4163     -1
9210               21       33503931         GART  HGNC:4163     -1
9211               21       33503931         GART  HGNC:4163     -1
9212               21       33503931         GART  HGNC:4163     -1
9213               21       33503931         GART  HGNC:4163     -1
9214               21       33503931         GART  HGNC:4163     -1
9215               21       33503931         GART  HGNC:4163     -1
9216               21       33503931         GART  HGNC:4163     -1
9217               21       33503931         GART  HGNC:4163     -1
9218               21       33503931         GART  HGNC:4163     -1
9219               21       33503931         GART  HGNC:4163     -1
9220               21       33503931         GART  HGNC:4163     -1
9221               21       33503931         GART  HGNC:4163     -1
9222               21       33503931         GART  HGNC:4163     -1
9223               21       33503931         GART  HGNC:4163     -1
9224               21       33503931         GART  HGNC:4163     -1
9225               21       33503931         GART  HGNC:4163     -1
9226               21       33503931         GART  HGNC:4163     -1
9227               21       33503931         GART  HGNC:4163     -1
9228               21       33503931         GART  HGNC:4163     -1
9229               21       33503931         GART  HGNC:4163     -1
9230               21       33503931         GART  HGNC:4163     -1
9231               21       33503931         GART  HGNC:4163     -1
9232               21       33503931         GART  HGNC:4163     -1
9233               21       33503931         GART  HGNC:4163     -1
9234               21       33503931         GART  HGNC:4163     -1
9235               21       33503931         GART  HGNC:4163     -1
9236               21       33503931         GART  HGNC:4163     -1
9237               21       33503931         GART  HGNC:4163     -1
9238               21       33503931         GART  HGNC:4163     -1
9239               21       33503931         GART  HGNC:4163     -1
9240               21       33503931         GART  HGNC:4163     -1
9241               21       33503931         GART  HGNC:4163     -1
9242               21       33503931         GART  HGNC:4163     -1
9243               21       33503931         GART  HGNC:4163     -1
9244               21       33503931         GART  HGNC:4163     -1
9245               21       33503931         GART  HGNC:4163     -1
9246               21       33503931         GART  HGNC:4163     -1
9247               21       33503931         GART  HGNC:4163     -1
9248               21       33503931         GART  HGNC:4163     -1
9249               21       33503931         GART  HGNC:4163     -1
9250               21       33503931         GART  HGNC:4163     -1
9251               21       33503931         GART  HGNC:4163     -1
9252               21       33503931         GART  HGNC:4163     -1
9253               21       33503931         GART  HGNC:4163     -1
9254               21       33503931         GART  HGNC:4163     -1
9255               21       33503931         GART  HGNC:4163     -1
9256               21       33503931         GART  HGNC:4163     -1
9257               21       33503931         GART  HGNC:4163     -1
9258               21       33503931         GART  HGNC:4163     -1
9259               21       33503931         GART  HGNC:4163     -1
9260               21       33503931         GART  HGNC:4163     -1
9261               21       33503931         GART  HGNC:4163     -1
9262               21       33503931         GART  HGNC:4163     -1
9263               21       33503931         GART  HGNC:4163     -1
9264               21       33503931         GART  HGNC:4163     -1
9265               21       33503931         GART  HGNC:4163     -1
9266               21       33503931         GART  HGNC:4163     -1
9267               21       33503931         GART  HGNC:4163     -1
9268               21       33503931         GART  HGNC:4163     -1
9269               21       33503931         GART  HGNC:4163     -1
9270               21       33503931         GART  HGNC:4163     -1
9271               21       33503931         GART  HGNC:4163     -1
9272               21       33503931         GART  HGNC:4163     -1
9273               21       33503931         GART  HGNC:4163     -1
9274               21       33503931         GART  HGNC:4163     -1
9275               21       33503931         GART  HGNC:4163     -1
9276               21       33503931         GART  HGNC:4163     -1
9277               21       33503931         GART  HGNC:4163     -1
9278               21       33503931         GART  HGNC:4163     -1
9279               21       33503931         GART  HGNC:4163     -1
9280               21       33503931         GART  HGNC:4163     -1
9281               21       33503931         GART  HGNC:4163     -1
9282               21       33503931         GART  HGNC:4163     -1
9283               21       33503931         GART  HGNC:4163     -1
9284               21       33503931         GART  HGNC:4163     -1
9285               21       33503931         GART  HGNC:4163     -1
9286               21       33503931         GART  HGNC:4163     -1
9287               21       33503931         GART  HGNC:4163     -1
9288               21       33503931         GART  HGNC:4163     -1
9289               21       33503931         GART  HGNC:4163     -1
9290               21       33503931         GART  HGNC:4163     -1
9291               21       33503931         GART  HGNC:4163     -1
9292               21       33503931         GART  HGNC:4163     -1
9293               21       33503931         GART  HGNC:4163     -1
9294               21       33503931         GART  HGNC:4163     -1
9295               21       33503931         GART  HGNC:4163     -1
9296               21       33503931         GART  HGNC:4163     -1
9297               21       33503931         GART  HGNC:4163     -1
9298               21       33503931         GART  HGNC:4163     -1
9299               21       33503931         GART  HGNC:4163     -1
9300               21       33503931         GART  HGNC:4163     -1
9301               21       33503931         GART  HGNC:4163     -1
9302               21       33503931         GART  HGNC:4163     -1
9303               21       33503931         GART  HGNC:4163     -1
9304               21       33503931         GART  HGNC:4163     -1
9305               21       33503931         GART  HGNC:4163     -1
9306               21       33503931         GART  HGNC:4163     -1
9307               21       33503931         GART  HGNC:4163     -1
9308               21       33503931         GART  HGNC:4163     -1
9309               21       33503931         GART  HGNC:4163     -1
9310               21       33503931         GART  HGNC:4163     -1
9311               21       33503931         GART  HGNC:4163     -1
9312               21       33503931         GART  HGNC:4163     -1
9313               21       33503931         GART  HGNC:4163     -1
9314               21       33503931         GART  HGNC:4163     -1
9315               21       33503931         GART  HGNC:4163     -1
9316               21       33503931         GART  HGNC:4163     -1
9317               21       33503931         GART  HGNC:4163     -1
9318               21       33503931         GART  HGNC:4163     -1
9319               21       33503931         GART  HGNC:4163     -1
9320               21       33503931         GART  HGNC:4163     -1
9321               21       33503931         GART  HGNC:4163     -1
9322               21       33503931         GART  HGNC:4163     -1
9323               21       33503931         GART  HGNC:4163     -1
9324               21       33503931         GART  HGNC:4163     -1
9325               21       33503931         GART  HGNC:4163     -1
9326               21       33503931         GART  HGNC:4163     -1
9327               21       33503931         GART  HGNC:4163     -1
9328               21       33503931         GART  HGNC:4163     -1
9329               21       33503931         GART  HGNC:4163     -1
9330               21       33503931         GART  HGNC:4163     -1
9331               21       33503931         GART  HGNC:4163     -1
9332               21       33503931         GART  HGNC:4163     -1
9333               21       33503931         GART  HGNC:4163     -1
9334               21       33503931         GART  HGNC:4163     -1
9335               21       33503931         GART  HGNC:4163     -1
9336               21       33503931         GART  HGNC:4163     -1
9337               21       33503931         GART  HGNC:4163     -1
9338               21       33503931         GART  HGNC:4163     -1
9339               21       33503931         GART  HGNC:4163     -1
9340               21       33503931         GART  HGNC:4163     -1
9341               21       33503931         GART  HGNC:4163     -1
9342               21       33503931         GART  HGNC:4163     -1
9343               21       33503931         GART  HGNC:4163     -1
9344               21       33503931         GART  HGNC:4163     -1
9345               21       33503931         GART  HGNC:4163     -1
9346               21       33503931         GART  HGNC:4163     -1
9347               21       33503931         GART  HGNC:4163     -1
9348               21       33503931         GART  HGNC:4163     -1
9349               21       33503931         GART  HGNC:4163     -1
9350               21       33518610       BTF3P6 HGNC:23765     -1
9351               21       33485530      DNAJC28  HGNC:1297     -1
9352               21       33485530      DNAJC28  HGNC:1297     -1
9353               21       33485530      DNAJC28  HGNC:1297     -1
9354               21       33485530      DNAJC28  HGNC:1297     -1
9355               21       33485530      DNAJC28  HGNC:1297     -1
9356               21       33485530      DNAJC28  HGNC:1297     -1
9357               21       33485530      DNAJC28  HGNC:1297     -1
9358               21       33485530      DNAJC28  HGNC:1297     -1
9359               21       33485530      DNAJC28  HGNC:1297     -1
9360               21       33482499                             -1
9361               21       33482499                             -1
9362               21       33482499                             -1
9363               21       33481580       RPS5P3 HGNC:10427     -1
9364               21       33432485      TMEM50B  HGNC:1280     -1
9365               21       33432485      TMEM50B  HGNC:1280     -1
9366               21       33432485      TMEM50B  HGNC:1280     -1
9367               21       33432485      TMEM50B  HGNC:1280     -1
9368               21       33432485      TMEM50B  HGNC:1280     -1
9369               21       33432485      TMEM50B  HGNC:1280     -1
9370               21       33432485      TMEM50B  HGNC:1280     -1
9371               21       33432485      TMEM50B  HGNC:1280     -1
9372               21       33432485      TMEM50B  HGNC:1280     -1
9373               21       33432485      TMEM50B  HGNC:1280     -1
9374               21       33432485      TMEM50B  HGNC:1280     -1
9375               21       33432485      TMEM50B  HGNC:1280     -1
9376               21       33432485      TMEM50B  HGNC:1280     -1
9377               21       33432485      TMEM50B  HGNC:1280     -1
9378               21       33432485      TMEM50B  HGNC:1280     -1
9379               21       33432485      TMEM50B  HGNC:1280     -1
9380               21       33432485      TMEM50B  HGNC:1280     -1
9381               21       33432485      TMEM50B  HGNC:1280     -1
9382               21       33432485      TMEM50B  HGNC:1280     -1
9383               21       33432485      TMEM50B  HGNC:1280     -1
9384               21       33432485      TMEM50B  HGNC:1280     -1
9385               21       33432485      TMEM50B  HGNC:1280     -1
9386               21       33432485      TMEM50B  HGNC:1280     -1
9387               21       33432485      TMEM50B  HGNC:1280     -1
9388               21       33432485      TMEM50B  HGNC:1280     -1
9389               21       33432485      TMEM50B  HGNC:1280     -1
9390               21       33432485      TMEM50B  HGNC:1280     -1
9391               21       33432485      TMEM50B  HGNC:1280     -1
9392               21       33432485      TMEM50B  HGNC:1280     -1
9393               21       33432485      TMEM50B  HGNC:1280     -1
9394               21       33432485      TMEM50B  HGNC:1280     -1
9395               21       33432485      TMEM50B  HGNC:1280     -1
9396               21       33432485      TMEM50B  HGNC:1280     -1
9397               21       33432485      TMEM50B  HGNC:1280     -1
9398               21       33432485      TMEM50B  HGNC:1280     -1
9399               21       33432485      TMEM50B  HGNC:1280     -1
9400               21       33432485      TMEM50B  HGNC:1280     -1
9401               21       33432485      TMEM50B  HGNC:1280     -1
9402               21       33432485      TMEM50B  HGNC:1280     -1
9403               21       33432485      TMEM50B  HGNC:1280     -1
9404               21       33432485      TMEM50B  HGNC:1280     -1
9405               21       33432485      TMEM50B  HGNC:1280     -1
9406               21       33432485      TMEM50B  HGNC:1280     -1
9407               21       33432485      TMEM50B  HGNC:1280     -1
9408               21       33432485      TMEM50B  HGNC:1280     -1
9409               21       33432485      TMEM50B  HGNC:1280     -1
9410               21       33432485      TMEM50B  HGNC:1280     -1
9411               21       33432485      TMEM50B  HGNC:1280     -1
9412               21       33432485      TMEM50B  HGNC:1280     -1
9413               21       33402896       IFNGR2  HGNC:5440      1
9414               21       33402896       IFNGR2  HGNC:5440      1
9415               21       33402896       IFNGR2  HGNC:5440      1
9416               21       33402896       IFNGR2  HGNC:5440      1
9417               21       33402896       IFNGR2  HGNC:5440      1
9418               21       33402896       IFNGR2  HGNC:5440      1
9419               21       33402896       IFNGR2  HGNC:5440      1
9420               21       33402896       IFNGR2  HGNC:5440      1
9421               21       33402896       IFNGR2  HGNC:5440      1
9422               21       33402896       IFNGR2  HGNC:5440      1
9423               21       33402896       IFNGR2  HGNC:5440      1
9424               21       33402896       IFNGR2  HGNC:5440      1
9425               21       33402896       IFNGR2  HGNC:5440      1
9426               21       33402896       IFNGR2  HGNC:5440      1
9427               21       33402896       IFNGR2  HGNC:5440      1
9428               21       33402896       IFNGR2  HGNC:5440      1
9429               21       33402896       IFNGR2  HGNC:5440      1
9430               21       33402896       IFNGR2  HGNC:5440      1
9431               21       33402896       IFNGR2  HGNC:5440      1
9432               21       33402896       IFNGR2  HGNC:5440      1
9433               21       33402896       IFNGR2  HGNC:5440      1
9434               21       33402896       IFNGR2  HGNC:5440      1
9435               21       33402896       IFNGR2  HGNC:5440      1
9436               21       33402896       IFNGR2  HGNC:5440      1
9437               21       33402896       IFNGR2  HGNC:5440      1
9438               21       33402896       IFNGR2  HGNC:5440      1
9439               21       33402896       IFNGR2  HGNC:5440      1
9440               21       33402896       IFNGR2  HGNC:5440      1
9441               21       33402896       IFNGR2  HGNC:5440      1
9442               21       33402896       IFNGR2  HGNC:5440      1
9443               21       33402896       IFNGR2  HGNC:5440      1
9444               21       33402896       IFNGR2  HGNC:5440      1
9445               21       33402896       IFNGR2  HGNC:5440      1
9446               21       33402896       IFNGR2  HGNC:5440      1
9447               21       33402896       IFNGR2  HGNC:5440      1
9448               21       33402896       IFNGR2  HGNC:5440      1
9449               21       33402896       IFNGR2  HGNC:5440      1
9450               21       33402896       IFNGR2  HGNC:5440      1
9451               21       33402896       IFNGR2  HGNC:5440      1
9452               21       33324477       IFNAR1  HGNC:5432      1
9453               21       33324477       IFNAR1  HGNC:5432      1
9454               21       33324477       IFNAR1  HGNC:5432      1
9455               21       33324477       IFNAR1  HGNC:5432      1
9456               21       33324477       IFNAR1  HGNC:5432      1
9457               21       33324477       IFNAR1  HGNC:5432      1
9458               21       33324477       IFNAR1  HGNC:5432      1
9459               21       33324477       IFNAR1  HGNC:5432      1
9460               21       33324477       IFNAR1  HGNC:5432      1
9461               21       33324477       IFNAR1  HGNC:5432      1
9462               21       33324477       IFNAR1  HGNC:5432      1
9463               21       33324477       IFNAR1  HGNC:5432      1
9464               21       33324477       IFNAR1  HGNC:5432      1
9465               21       33324477       IFNAR1  HGNC:5432      1
9466               21       33324477       IFNAR1  HGNC:5432      1
9467               21       33324477       IFNAR1  HGNC:5432      1
9468               21       33324477       IFNAR1  HGNC:5432      1
9469               21       33334571       USF1P1 HGNC:23773      1
9470               21       33266358       IL10RB  HGNC:5965      1
9471               21       33266358       IL10RB  HGNC:5965      1
9472               21       33266358       IL10RB  HGNC:5965      1
9473               21       33266358       IL10RB  HGNC:5965      1
9474               21       33266358       IL10RB  HGNC:5965      1
9475               21       33266358       IL10RB  HGNC:5965      1
9476               21       33266358       IL10RB  HGNC:5965      1
9477               21       33266358       IL10RB  HGNC:5965      1
9478               21       33266358       IL10RB  HGNC:5965      1
9479               21       33266358       IL10RB  HGNC:5965      1
9480               21       33266358       IL10RB  HGNC:5965      1
9481               21       33266358       IL10RB  HGNC:5965      1
9482               21       33266358       IL10RB  HGNC:5965      1
9483               21       33266358       IL10RB  HGNC:5965      1
9484               21       33266358       IL10RB  HGNC:5965      1
9485               21       33266358       IL10RB  HGNC:5965      1
9486               21       33266358       IL10RB  HGNC:5965      1
9487               21       33266358       IL10RB  HGNC:5965      1
9488               21       33266358       IL10RB  HGNC:5965      1
9489               21       33266358       IL10RB  HGNC:5965      1
9490               21       33266358       IL10RB  HGNC:5965      1
9491               21       33266358       IL10RB  HGNC:5965      1
9492               21       33266358       IL10RB  HGNC:5965      1
9493               21       33266358       IL10RB  HGNC:5965      1
9494               21       33266358       IL10RB  HGNC:5965      1
9495               21       33266358       IL10RB  HGNC:5965      1
9496               21       33266358       IL10RB  HGNC:5965      1
9497               21       33266358       IL10RB  HGNC:5965      1
9498               21       33266358       IL10RB  HGNC:5965      1
9499               21       33266358       IL10RB  HGNC:5965      1
9500               21       33266358       IL10RB  HGNC:5965      1
9501               21       33266358       IL10RB  HGNC:5965      1
9502               21       33266358       IL10RB  HGNC:5965      1
9503               21       33246774                              1
9504               21       33246774                              1
9505               21       33246774                              1
9506               21       33246774                              1
9507               21       33246774                              1
9508               21       33246774                              1
9509               21       33246774                              1
9510               21       33246774                              1
9511               21       33246774                              1
9512               21       33246774                              1
9513               21       33246774                              1
9514               21       33246774                              1
9515               21       33263873   IL10RB-AS1 HGNC:44303     -1
9516               21       33263873   IL10RB-AS1 HGNC:44303     -1
9517               21       33229901       IFNAR2  HGNC:5433      1
9518               21       33229901       IFNAR2  HGNC:5433      1
9519               21       33229901       IFNAR2  HGNC:5433      1
9520               21       33229901       IFNAR2  HGNC:5433      1
9521               21       33229901       IFNAR2  HGNC:5433      1
9522               21       33229901       IFNAR2  HGNC:5433      1
9523               21       33229901       IFNAR2  HGNC:5433      1
9524               21       33229901       IFNAR2  HGNC:5433      1
9525               21       33229901       IFNAR2  HGNC:5433      1
9526               21       33229901       IFNAR2  HGNC:5433      1
9527               21       33229901       IFNAR2  HGNC:5433      1
9528               21       33229901       IFNAR2  HGNC:5433      1
9529               21       33229901       IFNAR2  HGNC:5433      1
9530               21       33229901       IFNAR2  HGNC:5433      1
9531               21       33229901       IFNAR2  HGNC:5433      1
9532               21       33229901       IFNAR2  HGNC:5433      1
9533               21       33229901       IFNAR2  HGNC:5433      1
9534               21       33229901       IFNAR2  HGNC:5433      1
9535               21       33229901       IFNAR2  HGNC:5433      1
9536               21       33229901       IFNAR2  HGNC:5433      1
9537               21       33229901       IFNAR2  HGNC:5433      1
9538               21       33229901       IFNAR2  HGNC:5433      1
9539               21       33229901       IFNAR2  HGNC:5433      1
9540               21       33229901       IFNAR2  HGNC:5433      1
9541               21       33229901       IFNAR2  HGNC:5433      1
9542               21       33229901       IFNAR2  HGNC:5433      1
9543               21       33229901       IFNAR2  HGNC:5433      1
9544               21       33229901       IFNAR2  HGNC:5433      1
9545               21       33229901       IFNAR2  HGNC:5433      1
9546               21       33229901       IFNAR2  HGNC:5433      1
9547               21       33229901       IFNAR2  HGNC:5433      1
9548               21       33229901       IFNAR2  HGNC:5433      1
9549               21       33229901       IFNAR2  HGNC:5433      1
9550               21       33229901       IFNAR2  HGNC:5433      1
9551               21       33229901       IFNAR2  HGNC:5433      1
9552               21       33229901       IFNAR2  HGNC:5433      1
9553               21       33229901       IFNAR2  HGNC:5433      1
9554               21       33229901       IFNAR2  HGNC:5433      1
9555               21       33229901       IFNAR2  HGNC:5433      1
9556               21       33229901       IFNAR2  HGNC:5433      1
9557               21       33229901       IFNAR2  HGNC:5433      1
9558               21       33229901       IFNAR2  HGNC:5433      1
9559               21       33229901       IFNAR2  HGNC:5433      1
9560               21       33229901       IFNAR2  HGNC:5433      1
9561               21       33229901       IFNAR2  HGNC:5433      1
9562               21       33229901       IFNAR2  HGNC:5433      1
9563               21       33229901       IFNAR2  HGNC:5433      1
9564               21       33229901       IFNAR2  HGNC:5433      1
9565               21       33229901       IFNAR2  HGNC:5433      1
9566               21       33229901       IFNAR2  HGNC:5433      1
9567               21       33229901       IFNAR2  HGNC:5433      1
9568               21       33229901       IFNAR2  HGNC:5433      1
9569               21       33229901       IFNAR2  HGNC:5433      1
9570               21       33229901       IFNAR2  HGNC:5433      1
9571               21       33229901       IFNAR2  HGNC:5433      1
9572               21       33229901       IFNAR2  HGNC:5433      1
9573               21       33229901       IFNAR2  HGNC:5433      1
9574               21       33229901       IFNAR2  HGNC:5433      1
9575               21       33229901       IFNAR2  HGNC:5433      1
9576               21       33229901       IFNAR2  HGNC:5433      1
9577               21       33229901       IFNAR2  HGNC:5433      1
9578               21       33229901       IFNAR2  HGNC:5433      1
9579               21       33229901       IFNAR2  HGNC:5433      1
9580               21       33229901       IFNAR2  HGNC:5433      1
9581               21       33229901       IFNAR2  HGNC:5433      1
9582               21       33229901       IFNAR2  HGNC:5433      1
9583               21       33229901       IFNAR2  HGNC:5433      1
9584               21       33229901       IFNAR2  HGNC:5433      1
9585               21       33229901       IFNAR2  HGNC:5433      1
9586               21       33229901       IFNAR2  HGNC:5433      1
9587               21       33229901       IFNAR2  HGNC:5433      1
9588               21       33229901       IFNAR2  HGNC:5433      1
9589               21       33229901       IFNAR2  HGNC:5433      1
9590               21       33165470    LINC01548  HGNC:1296     -1
9591               21       33165470    LINC01548  HGNC:1296     -1
9592               21       33165470    LINC01548  HGNC:1296     -1
9593               21       33165470    LINC01548  HGNC:1296     -1
9594               21       33165470    LINC01548  HGNC:1296     -1
9595               21       33165470    LINC01548  HGNC:1296     -1
9596               21       33165470    LINC01548  HGNC:1296     -1
9597               21       33165470    LINC01548  HGNC:1296     -1
9598               21       33165470    LINC01548  HGNC:1296     -1
9599               21       33156632                              1
9600               21       33156632                              1
9601               21       33111699                             -1
9602               21       33111699                             -1
9603               21       33111699                             -1
9604               21       33070144        OLIG1 HGNC:16983      1
9605               21       33070144        OLIG1 HGNC:16983      1
9606               21       33070144        OLIG1 HGNC:16983      1
9607               21       33070144        OLIG1 HGNC:16983      1
9608               21       33070144        OLIG1 HGNC:16983      1
9609               21       32913649                             -1
9610               21       32913649                             -1
9611               21       33057829    LINC00945 HGNC:48643      1
9612               21       33057829    LINC00945 HGNC:48643      1
9613               21       33057829    LINC00945 HGNC:48643      1
9614               21       33057829    LINC00945 HGNC:48643      1
9615               21       33057829    LINC00945 HGNC:48643      1
9616               21       33025845        OLIG2  HGNC:9398      1
9617               21       33025845        OLIG2  HGNC:9398      1
9618               21       33025845        OLIG2  HGNC:9398      1
9619               21       33025845        OLIG2  HGNC:9398      1
9620               21       33025845        OLIG2  HGNC:9398      1
9621               21       32958888                              1
9622               21       32958888                              1
9623               21       32772100 C21orf62-AS1  HGNC:1290      1
9624               21       32772100 C21orf62-AS1  HGNC:1290      1
9625               21       32772100 C21orf62-AS1  HGNC:1290      1
9626               21       32772100 C21orf62-AS1  HGNC:1290      1
9627               21       32772100 C21orf62-AS1  HGNC:1290      1
9628               21       32772100 C21orf62-AS1  HGNC:1290      1
9629               21       32772100 C21orf62-AS1  HGNC:1290      1
9630               21       32772100 C21orf62-AS1  HGNC:1290      1
9631               21       32772100 C21orf62-AS1  HGNC:1290      1
9632               21       32772100 C21orf62-AS1  HGNC:1290      1
9633               21       32772100 C21orf62-AS1  HGNC:1290      1
9634               21       32772100 C21orf62-AS1  HGNC:1290      1
9635               21       32772100 C21orf62-AS1  HGNC:1290      1
9636               21       32772100 C21orf62-AS1  HGNC:1290      1
9637               21       32772100 C21orf62-AS1  HGNC:1290      1
9638               21       32772100 C21orf62-AS1  HGNC:1290      1
9639               21       32772100 C21orf62-AS1  HGNC:1290      1
9640               21       32772100 C21orf62-AS1  HGNC:1290      1
9641               21       32772100 C21orf62-AS1  HGNC:1290      1
9642               21       32772100 C21orf62-AS1  HGNC:1290      1
9643               21       32772100 C21orf62-AS1  HGNC:1290      1
9644               21       32772100 C21orf62-AS1  HGNC:1290      1
9645               21       32772100 C21orf62-AS1  HGNC:1290      1
9646               21       32844367                             -1
9647               21       32844367                             -1
9648               21       32841861                             -1
9649               21       32841496                             -1
9650               21       32793564     C21orf62  HGNC:1305     -1
9651               21       32793564     C21orf62  HGNC:1305     -1
9652               21       32793564     C21orf62  HGNC:1305     -1
9653               21       32793564     C21orf62  HGNC:1305     -1
9654               21       32793564     C21orf62  HGNC:1305     -1
9655               21       32793564     C21orf62  HGNC:1305     -1
9656               21       32793564     C21orf62  HGNC:1305     -1
9657               21       32793564     C21orf62  HGNC:1305     -1
9658               21       32793564     C21orf62  HGNC:1305     -1
9659               21       32793564     C21orf62  HGNC:1305     -1
9660               21       32793564     C21orf62  HGNC:1305     -1
9661               21       32793564     C21orf62  HGNC:1305     -1
9662               21       32790673                             -1
9663               21       32733899       PAXBP1 HGNC:13579     -1
9664               21       32733899       PAXBP1 HGNC:13579     -1
9665               21       32733899       PAXBP1 HGNC:13579     -1
9666               21       32733899       PAXBP1 HGNC:13579     -1
9667               21       32733899       PAXBP1 HGNC:13579     -1
9668               21       32733899       PAXBP1 HGNC:13579     -1
9669               21       32733899       PAXBP1 HGNC:13579     -1
9670               21       32733899       PAXBP1 HGNC:13579     -1
9671               21       32733899       PAXBP1 HGNC:13579     -1
9672               21       32733899       PAXBP1 HGNC:13579     -1
9673               21       32733899       PAXBP1 HGNC:13579     -1
9674               21       32733899       PAXBP1 HGNC:13579     -1
9675               21       32733899       PAXBP1 HGNC:13579     -1
9676               21       32733899       PAXBP1 HGNC:13579     -1
9677               21       32733899       PAXBP1 HGNC:13579     -1
9678               21       32733899       PAXBP1 HGNC:13579     -1
9679               21       32733899       PAXBP1 HGNC:13579     -1
9680               21       32733899       PAXBP1 HGNC:13579     -1
9681               21       32733899       PAXBP1 HGNC:13579     -1
9682               21       32733899       PAXBP1 HGNC:13579     -1
9683               21       32733899       PAXBP1 HGNC:13579     -1
9684               21       32733899       PAXBP1 HGNC:13579     -1
9685               21       32733899       PAXBP1 HGNC:13579     -1
9686               21       32733899       PAXBP1 HGNC:13579     -1
9687               21       32733899       PAXBP1 HGNC:13579     -1
9688               21       32733899       PAXBP1 HGNC:13579     -1
9689               21       32733899       PAXBP1 HGNC:13579     -1
9690               21       32733899       PAXBP1 HGNC:13579     -1
9691               21       32733899       PAXBP1 HGNC:13579     -1
9692               21       32733899       PAXBP1 HGNC:13579     -1
9693               21       32733899       PAXBP1 HGNC:13579     -1
9694               21       32733899       PAXBP1 HGNC:13579     -1
9695               21       32733899       PAXBP1 HGNC:13579     -1
9696               21       32733899       PAXBP1 HGNC:13579     -1
9697               21       32733899       PAXBP1 HGNC:13579     -1
9698               21       32733899       PAXBP1 HGNC:13579     -1
9699               21       32733899       PAXBP1 HGNC:13579     -1
9700               21       32733899       PAXBP1 HGNC:13579     -1
9701               21       32733899       PAXBP1 HGNC:13579     -1
9702               21       32733899       PAXBP1 HGNC:13579     -1
9703               21       32733899       PAXBP1 HGNC:13579     -1
9704               21       32733899       PAXBP1 HGNC:13579     -1
9705               21       32733899       PAXBP1 HGNC:13579     -1
9706               21       32733899       PAXBP1 HGNC:13579     -1
9707               21       32733899       PAXBP1 HGNC:13579     -1
9708               21       32733899       PAXBP1 HGNC:13579     -1
9709               21       32733899       PAXBP1 HGNC:13579     -1
9710               21       32733899       PAXBP1 HGNC:13579     -1
9711               21       32733899       PAXBP1 HGNC:13579     -1
9712               21       32733899       PAXBP1 HGNC:13579     -1
9713               21       32733899       PAXBP1 HGNC:13579     -1
9714               21       32733899       PAXBP1 HGNC:13579     -1
9715               21       32733899       PAXBP1 HGNC:13579     -1
9716               21       32733899       PAXBP1 HGNC:13579     -1
9717               21       32733899       PAXBP1 HGNC:13579     -1
9718               21       32733899       PAXBP1 HGNC:13579     -1
9719               21       32733899       PAXBP1 HGNC:13579     -1
9720               21       32733899       PAXBP1 HGNC:13579     -1
9721               21       32733899       PAXBP1 HGNC:13579     -1
9722               21       32733899       PAXBP1 HGNC:13579     -1
9723               21       32733899       PAXBP1 HGNC:13579     -1
9724               21       32733899       PAXBP1 HGNC:13579     -1
9725               21       32733899       PAXBP1 HGNC:13579     -1
9726               21       32733899       PAXBP1 HGNC:13579     -1
9727               21       32733899       PAXBP1 HGNC:13579     -1
9728               21       32733899       PAXBP1 HGNC:13579     -1
9729               21       32733899       PAXBP1 HGNC:13579     -1
9730               21       32733899       PAXBP1 HGNC:13579     -1
9731               21       32733899       PAXBP1 HGNC:13579     -1
9732               21       32733899       PAXBP1 HGNC:13579     -1
9733               21       32733899       PAXBP1 HGNC:13579     -1
9734               21       32733899       PAXBP1 HGNC:13579     -1
9735               21       32733899       PAXBP1 HGNC:13579     -1
9736               21       32733899       PAXBP1 HGNC:13579     -1
9737               21       32733899       PAXBP1 HGNC:13579     -1
9738               21       32733899       PAXBP1 HGNC:13579     -1
9739               21       32733899       PAXBP1 HGNC:13579     -1
9740               21       32733899       PAXBP1 HGNC:13579     -1
9741               21       32733899       PAXBP1 HGNC:13579     -1
9742               21       32733899       PAXBP1 HGNC:13579     -1
9743               21       32733899       PAXBP1 HGNC:13579     -1
9744               21       32733899       PAXBP1 HGNC:13579     -1
9745               21       32733899       PAXBP1 HGNC:13579     -1
9746               21       32733899       PAXBP1 HGNC:13579     -1
9747               21       32733899       PAXBP1 HGNC:13579     -1
9748               21       32733899       PAXBP1 HGNC:13579     -1
9749               21       32733899       PAXBP1 HGNC:13579     -1
9750               21       32733899       PAXBP1 HGNC:13579     -1
9751               21       32733899       PAXBP1 HGNC:13579     -1
9752               21       32733899       PAXBP1 HGNC:13579     -1
9753               21       32733899       PAXBP1 HGNC:13579     -1
9754               21       32733899       PAXBP1 HGNC:13579     -1
9755               21       32733899       PAXBP1 HGNC:13579     -1
9756               21       32733899       PAXBP1 HGNC:13579     -1
9757               21       32728115   PAXBP1-AS1 HGNC:39603      1
9758               21       32728115   PAXBP1-AS1 HGNC:39603      1
9759               21       32728115   PAXBP1-AS1 HGNC:39603      1
9760               21       32728115   PAXBP1-AS1 HGNC:39603      1
9761               21       32728115   PAXBP1-AS1 HGNC:39603      1
9762               21       32728115   PAXBP1-AS1 HGNC:39603      1
9763               21       32728115   PAXBP1-AS1 HGNC:39603      1
9764               21       32728115   PAXBP1-AS1 HGNC:39603      1
9765               21       32728115   PAXBP1-AS1 HGNC:39603      1
9766               21       32628759        SYNJ1 HGNC:11503     -1
9767               21       32628759        SYNJ1 HGNC:11503     -1
9768               21       32628759        SYNJ1 HGNC:11503     -1
9769               21       32628759        SYNJ1 HGNC:11503     -1
9770               21       32628759        SYNJ1 HGNC:11503     -1
9771               21       32628759        SYNJ1 HGNC:11503     -1
9772               21       32628759        SYNJ1 HGNC:11503     -1
9773               21       32628759        SYNJ1 HGNC:11503     -1
9774               21       32628759        SYNJ1 HGNC:11503     -1
9775               21       32628759        SYNJ1 HGNC:11503     -1
9776               21       32628759        SYNJ1 HGNC:11503     -1
9777               21       32628759        SYNJ1 HGNC:11503     -1
9778               21       32628759        SYNJ1 HGNC:11503     -1
9779               21       32628759        SYNJ1 HGNC:11503     -1
9780               21       32628759        SYNJ1 HGNC:11503     -1
9781               21       32628759        SYNJ1 HGNC:11503     -1
9782               21       32628759        SYNJ1 HGNC:11503     -1
9783               21       32628759        SYNJ1 HGNC:11503     -1
9784               21       32628759        SYNJ1 HGNC:11503     -1
9785               21       32628759        SYNJ1 HGNC:11503     -1
9786               21       32628759        SYNJ1 HGNC:11503     -1
9787               21       32628759        SYNJ1 HGNC:11503     -1
9788               21       32628759        SYNJ1 HGNC:11503     -1
9789               21       32628759        SYNJ1 HGNC:11503     -1
9790               21       32628759        SYNJ1 HGNC:11503     -1
9791               21       32628759        SYNJ1 HGNC:11503     -1
9792               21       32628759        SYNJ1 HGNC:11503     -1
9793               21       32628759        SYNJ1 HGNC:11503     -1
9794               21       32628759        SYNJ1 HGNC:11503     -1
9795               21       32628759        SYNJ1 HGNC:11503     -1
9796               21       32628759        SYNJ1 HGNC:11503     -1
9797               21       32628759        SYNJ1 HGNC:11503     -1
9798               21       32628759        SYNJ1 HGNC:11503     -1
9799               21       32628759        SYNJ1 HGNC:11503     -1
9800               21       32628759        SYNJ1 HGNC:11503     -1
9801               21       32628759        SYNJ1 HGNC:11503     -1
9802               21       32628759        SYNJ1 HGNC:11503     -1
9803               21       32628759        SYNJ1 HGNC:11503     -1
9804               21       32628759        SYNJ1 HGNC:11503     -1
9805               21       32628759        SYNJ1 HGNC:11503     -1
9806               21       32628759        SYNJ1 HGNC:11503     -1
9807               21       32628759        SYNJ1 HGNC:11503     -1
9808               21       32628759        SYNJ1 HGNC:11503     -1
9809               21       32628759        SYNJ1 HGNC:11503     -1
9810               21       32628759        SYNJ1 HGNC:11503     -1
9811               21       32628759        SYNJ1 HGNC:11503     -1
9812               21       32628759        SYNJ1 HGNC:11503     -1
9813               21       32628759        SYNJ1 HGNC:11503     -1
9814               21       32628759        SYNJ1 HGNC:11503     -1
9815               21       32628759        SYNJ1 HGNC:11503     -1
9816               21       32628759        SYNJ1 HGNC:11503     -1
9817               21       32628759        SYNJ1 HGNC:11503     -1
9818               21       32628759        SYNJ1 HGNC:11503     -1
9819               21       32628759        SYNJ1 HGNC:11503     -1
9820               21       32628759        SYNJ1 HGNC:11503     -1
9821               21       32628759        SYNJ1 HGNC:11503     -1
9822               21       32628759        SYNJ1 HGNC:11503     -1
9823               21       32628759        SYNJ1 HGNC:11503     -1
9824               21       32628759        SYNJ1 HGNC:11503     -1
9825               21       32628759        SYNJ1 HGNC:11503     -1
9826               21       32628759        SYNJ1 HGNC:11503     -1
9827               21       32628759        SYNJ1 HGNC:11503     -1
9828               21       32628759        SYNJ1 HGNC:11503     -1
9829               21       32628759        SYNJ1 HGNC:11503     -1
9830               21       32628759        SYNJ1 HGNC:11503     -1
9831               21       32628759        SYNJ1 HGNC:11503     -1
9832               21       32628759        SYNJ1 HGNC:11503     -1
9833               21       32628759        SYNJ1 HGNC:11503     -1
9834               21       32628759        SYNJ1 HGNC:11503     -1
9835               21       32628759        SYNJ1 HGNC:11503     -1
9836               21       32628759        SYNJ1 HGNC:11503     -1
9837               21       32628759        SYNJ1 HGNC:11503     -1
9838               21       32628759        SYNJ1 HGNC:11503     -1
9839               21       32628759        SYNJ1 HGNC:11503     -1
9840               21       32628759        SYNJ1 HGNC:11503     -1
9841               21       32628759        SYNJ1 HGNC:11503     -1
9842               21       32628759        SYNJ1 HGNC:11503     -1
9843               21       32628759        SYNJ1 HGNC:11503     -1
9844               21       32628759        SYNJ1 HGNC:11503     -1
9845               21       32628759        SYNJ1 HGNC:11503     -1
9846               21       32628759        SYNJ1 HGNC:11503     -1
9847               21       32628759        SYNJ1 HGNC:11503     -1
9848               21       32628759        SYNJ1 HGNC:11503     -1
9849               21       32628759        SYNJ1 HGNC:11503     -1
9850               21       32628759        SYNJ1 HGNC:11503     -1
9851               21       32628759        SYNJ1 HGNC:11503     -1
9852               21       32628759        SYNJ1 HGNC:11503     -1
9853               21       32628759        SYNJ1 HGNC:11503     -1
9854               21       32628759        SYNJ1 HGNC:11503     -1
9855               21       32628759        SYNJ1 HGNC:11503     -1
9856               21       32628759        SYNJ1 HGNC:11503     -1
9857               21       32628759        SYNJ1 HGNC:11503     -1
9858               21       32628759        SYNJ1 HGNC:11503     -1
9859               21       32628759        SYNJ1 HGNC:11503     -1
9860               21       32628759        SYNJ1 HGNC:11503     -1
9861               21       32628759        SYNJ1 HGNC:11503     -1
9862               21       32628759        SYNJ1 HGNC:11503     -1
9863               21       32628759        SYNJ1 HGNC:11503     -1
9864               21       32628759        SYNJ1 HGNC:11503     -1
9865               21       32628759        SYNJ1 HGNC:11503     -1
9866               21       32628759        SYNJ1 HGNC:11503     -1
9867               21       32628759        SYNJ1 HGNC:11503     -1
9868               21       32628759        SYNJ1 HGNC:11503     -1
9869               21       32628759        SYNJ1 HGNC:11503     -1
9870               21       32628759        SYNJ1 HGNC:11503     -1
9871               21       32628759        SYNJ1 HGNC:11503     -1
9872               21       32628759        SYNJ1 HGNC:11503     -1
9873               21       32628759        SYNJ1 HGNC:11503     -1
9874               21       32628759        SYNJ1 HGNC:11503     -1
9875               21       32628759        SYNJ1 HGNC:11503     -1
9876               21       32628759        SYNJ1 HGNC:11503     -1
9877               21       32628759        SYNJ1 HGNC:11503     -1
9878               21       32628759        SYNJ1 HGNC:11503     -1
9879               21       32628759        SYNJ1 HGNC:11503     -1
9880               21       32628759        SYNJ1 HGNC:11503     -1
9881               21       32628759        SYNJ1 HGNC:11503     -1
9882               21       32628759        SYNJ1 HGNC:11503     -1
9883               21       32628759        SYNJ1 HGNC:11503     -1
9884               21       32628759        SYNJ1 HGNC:11503     -1
9885               21       32628759        SYNJ1 HGNC:11503     -1
9886               21       32628759        SYNJ1 HGNC:11503     -1
9887               21       32628759        SYNJ1 HGNC:11503     -1
9888               21       32628759        SYNJ1 HGNC:11503     -1
9889               21       32628759        SYNJ1 HGNC:11503     -1
9890               21       32628759        SYNJ1 HGNC:11503     -1
9891               21       32628759        SYNJ1 HGNC:11503     -1
9892               21       32628759        SYNJ1 HGNC:11503     -1
9893               21       32628759        SYNJ1 HGNC:11503     -1
9894               21       32628759        SYNJ1 HGNC:11503     -1
9895               21       32628759        SYNJ1 HGNC:11503     -1
9896               21       32628759        SYNJ1 HGNC:11503     -1
9897               21       32628759        SYNJ1 HGNC:11503     -1
9898               21       32628759        SYNJ1 HGNC:11503     -1
9899               21       32628759        SYNJ1 HGNC:11503     -1
9900               21       32628759        SYNJ1 HGNC:11503     -1
9901               21       32628759        SYNJ1 HGNC:11503     -1
9902               21       32628759        SYNJ1 HGNC:11503     -1
9903               21       32628759        SYNJ1 HGNC:11503     -1
9904               21       32628759        SYNJ1 HGNC:11503     -1
9905               21       32628759        SYNJ1 HGNC:11503     -1
9906               21       32628759        SYNJ1 HGNC:11503     -1
9907               21       32628759        SYNJ1 HGNC:11503     -1
9908               21       32628759        SYNJ1 HGNC:11503     -1
9909               21       32628759        SYNJ1 HGNC:11503     -1
9910               21       32628759        SYNJ1 HGNC:11503     -1
9911               21       32628759        SYNJ1 HGNC:11503     -1
9912               21       32628759        SYNJ1 HGNC:11503     -1
9913               21       32628759        SYNJ1 HGNC:11503     -1
9914               21       32628759        SYNJ1 HGNC:11503     -1
9915               21       32628759        SYNJ1 HGNC:11503     -1
9916               21       32628759        SYNJ1 HGNC:11503     -1
9917               21       32628759        SYNJ1 HGNC:11503     -1
9918               21       32628759        SYNJ1 HGNC:11503     -1
9919               21       32628759        SYNJ1 HGNC:11503     -1
9920               21       32628759        SYNJ1 HGNC:11503     -1
9921               21       32628759        SYNJ1 HGNC:11503     -1
9922               21       32628759        SYNJ1 HGNC:11503     -1
9923               21       32628759        SYNJ1 HGNC:11503     -1
9924               21       32628759        SYNJ1 HGNC:11503     -1
9925               21       32628759        SYNJ1 HGNC:11503     -1
9926               21       32628759        SYNJ1 HGNC:11503     -1
9927               21       32628759        SYNJ1 HGNC:11503     -1
9928               21       32628759        SYNJ1 HGNC:11503     -1
9929               21       32628759        SYNJ1 HGNC:11503     -1
9930               21       32628759        SYNJ1 HGNC:11503     -1
9931               21       32628759        SYNJ1 HGNC:11503     -1
9932               21       32628759        SYNJ1 HGNC:11503     -1
9933               21       32628759        SYNJ1 HGNC:11503     -1
9934               21       32628759        SYNJ1 HGNC:11503     -1
9935               21       32628759        SYNJ1 HGNC:11503     -1
9936               21       32628759        SYNJ1 HGNC:11503     -1
9937               21       32628759        SYNJ1 HGNC:11503     -1
9938               21       32628759        SYNJ1 HGNC:11503     -1
9939               21       32628759        SYNJ1 HGNC:11503     -1
9940               21       32628759        SYNJ1 HGNC:11503     -1
9941               21       32628759        SYNJ1 HGNC:11503     -1
9942               21       32628759        SYNJ1 HGNC:11503     -1
9943               21       32628759        SYNJ1 HGNC:11503     -1
9944               21       32628759        SYNJ1 HGNC:11503     -1
9945               21       32628759        SYNJ1 HGNC:11503     -1
9946               21       32628759        SYNJ1 HGNC:11503     -1
9947               21       32628759        SYNJ1 HGNC:11503     -1
9948               21       32628759        SYNJ1 HGNC:11503     -1
9949               21       32628759        SYNJ1 HGNC:11503     -1
9950               21       32628759        SYNJ1 HGNC:11503     -1
9951               21       32628759        SYNJ1 HGNC:11503     -1
9952               21       32628759        SYNJ1 HGNC:11503     -1
9953               21       32628759        SYNJ1 HGNC:11503     -1
9954               21       32628759        SYNJ1 HGNC:11503     -1
9955               21       32628759        SYNJ1 HGNC:11503     -1
9956               21       32628759        SYNJ1 HGNC:11503     -1
9957               21       32628759        SYNJ1 HGNC:11503     -1
9958               21       32628759        SYNJ1 HGNC:11503     -1
9959               21       32624416                             -1
9960               21       32624416                             -1
9961               21       32621049      OR7E23P  HGNC:8395      1
9962               21       32592079     C21orf59  HGNC:1301     -1
9963               21       32592079     C21orf59  HGNC:1301     -1
9964               21       32592079     C21orf59  HGNC:1301     -1
9965               21       32592079     C21orf59  HGNC:1301     -1
9966               21       32592079     C21orf59  HGNC:1301     -1
9967               21       32592079     C21orf59  HGNC:1301     -1
9968               21       32592079     C21orf59  HGNC:1301     -1
9969               21       32592079     C21orf59  HGNC:1301     -1
9970               21       32592079     C21orf59  HGNC:1301     -1
9971               21       32592079     C21orf59  HGNC:1301     -1
9972               21       32592079     C21orf59  HGNC:1301     -1
9973               21       32592079     C21orf59  HGNC:1301     -1
9974               21       32592079     C21orf59  HGNC:1301     -1
9975               21       32592079     C21orf59  HGNC:1301     -1
9976               21       32592079     C21orf59  HGNC:1301     -1
9977               21       32592079     C21orf59  HGNC:1301     -1
9978               21       32592079     C21orf59  HGNC:1301     -1
9979               21       32592079     C21orf59  HGNC:1301     -1
9980               21       32592079     C21orf59  HGNC:1301     -1
9981               21       32592079     C21orf59  HGNC:1301     -1
9982               21       32592079     C21orf59  HGNC:1301     -1
9983               21       32592079     C21orf59  HGNC:1301     -1
9984               21       32592079     C21orf59  HGNC:1301     -1
9985               21       32592079     C21orf59  HGNC:1301     -1
9986               21       32592079     C21orf59  HGNC:1301     -1
9987               21       32592079     C21orf59  HGNC:1301     -1
9988               21       32592079     C21orf59  HGNC:1301     -1
9989               21       32592079     C21orf59  HGNC:1301     -1
9990               21       32592079     C21orf59  HGNC:1301     -1
9991               21       32592079     C21orf59  HGNC:1301     -1
9992               21       32592079     C21orf59  HGNC:1301     -1
9993               21       32592079     C21orf59  HGNC:1301     -1
9994               21       32592079     C21orf59  HGNC:1301     -1
9995               21       32592079     C21orf59  HGNC:1301     -1
9996               21       32592079     C21orf59  HGNC:1301     -1
9997               21       32592079     C21orf59  HGNC:1301     -1
9998               21       32578822                             -1
9999               21       32578822                             -1
                            gene_biotype
1                   processed_pseudogene
2                         protein_coding
3                         protein_coding
4                         protein_coding
5                         protein_coding
6                         protein_coding
7                         protein_coding
8                         protein_coding
9                         protein_coding
10                        protein_coding
11                        protein_coding
12                        protein_coding
13                        protein_coding
14                        protein_coding
15                        protein_coding
16                        protein_coding
17                        protein_coding
18                        protein_coding
19                        protein_coding
20                        protein_coding
21                        protein_coding
22                        protein_coding
23                        protein_coding
24                        protein_coding
25                        protein_coding
26                        protein_coding
27                        protein_coding
28                        protein_coding
29                        protein_coding
30                        protein_coding
31                        protein_coding
32                        protein_coding
33                        protein_coding
34                        protein_coding
35                        protein_coding
36                        protein_coding
37                        protein_coding
38                        protein_coding
39                        protein_coding
40                        protein_coding
41                        protein_coding
42                        protein_coding
43                        protein_coding
44                        protein_coding
45                        protein_coding
46                        protein_coding
47                        protein_coding
48                        protein_coding
49                        protein_coding
50                        protein_coding
51                        protein_coding
52                        protein_coding
53                        protein_coding
54                        protein_coding
55                        protein_coding
56                        protein_coding
57                        protein_coding
58                        protein_coding
59                        protein_coding
60                        protein_coding
61                        protein_coding
62                        protein_coding
63                        protein_coding
64                        protein_coding
65                        protein_coding
66                        protein_coding
67                        protein_coding
68                        protein_coding
69                        protein_coding
70                        protein_coding
71                        protein_coding
72                        protein_coding
73                        protein_coding
74                        protein_coding
75                        protein_coding
76                        protein_coding
77                        protein_coding
78                        protein_coding
79                        protein_coding
80                        protein_coding
81                        protein_coding
82                        protein_coding
83                        protein_coding
84                        protein_coding
85                        protein_coding
86                        protein_coding
87                        protein_coding
88                        protein_coding
89                        protein_coding
90                        protein_coding
91                        protein_coding
92                        protein_coding
93                        protein_coding
94                        protein_coding
95                        protein_coding
96                        protein_coding
97                        protein_coding
98                        protein_coding
99                        protein_coding
100                       protein_coding
101                       protein_coding
102                       protein_coding
103                       protein_coding
104                       protein_coding
105                       protein_coding
106                       protein_coding
107                       protein_coding
108                       protein_coding
109                       protein_coding
110                       protein_coding
111                 processed_pseudogene
112                       protein_coding
113                       protein_coding
114                       protein_coding
115                       protein_coding
116                       protein_coding
117                       protein_coding
118                       protein_coding
119                       protein_coding
120                       protein_coding
121                       protein_coding
122                       protein_coding
123                       protein_coding
124                       protein_coding
125                       protein_coding
126                       protein_coding
127                       protein_coding
128                       protein_coding
129                       protein_coding
130                       protein_coding
131                       protein_coding
132                       protein_coding
133                       protein_coding
134                       protein_coding
135                       protein_coding
136                       protein_coding
137                       protein_coding
138                       protein_coding
139                       protein_coding
140                       protein_coding
141                       protein_coding
142                       protein_coding
143                       protein_coding
144                       protein_coding
145                       protein_coding
146                       protein_coding
147                       protein_coding
148                       protein_coding
149                       protein_coding
150                       protein_coding
151                       protein_coding
152                       protein_coding
153                       protein_coding
154                       protein_coding
155                       protein_coding
156                       protein_coding
157                       protein_coding
158                       protein_coding
159                       protein_coding
160                       protein_coding
161                       protein_coding
162                       protein_coding
163                       protein_coding
164                       protein_coding
165                       protein_coding
166                       protein_coding
167                       protein_coding
168                       protein_coding
169                       protein_coding
170                       protein_coding
171                       protein_coding
172                       protein_coding
173                       protein_coding
174                       protein_coding
175                       protein_coding
176                       protein_coding
177                       protein_coding
178                       protein_coding
179                       protein_coding
180                       protein_coding
181                       protein_coding
182                       protein_coding
183                       protein_coding
184                       protein_coding
185                       protein_coding
186                       protein_coding
187                       protein_coding
188                       protein_coding
189                       protein_coding
190                       protein_coding
191                       protein_coding
192                       protein_coding
193                       protein_coding
194                       protein_coding
195                       protein_coding
196                       protein_coding
197                       protein_coding
198                       protein_coding
199                       protein_coding
200                       protein_coding
201                       protein_coding
202                       protein_coding
203                       protein_coding
204                       protein_coding
205                       protein_coding
206                       protein_coding
207                       protein_coding
208                       protein_coding
209                       protein_coding
210                       protein_coding
211                       protein_coding
212                       protein_coding
213                       protein_coding
214                       protein_coding
215                       protein_coding
216                       protein_coding
217                       protein_coding
218                       protein_coding
219                       protein_coding
220                       protein_coding
221                       protein_coding
222                       protein_coding
223                       protein_coding
224                       protein_coding
225                       protein_coding
226                       protein_coding
227                       protein_coding
228                       protein_coding
229                       protein_coding
230                       protein_coding
231                       protein_coding
232                       protein_coding
233                       protein_coding
234                       protein_coding
235                       protein_coding
236                       protein_coding
237                       protein_coding
238                       protein_coding
239                       protein_coding
240                       protein_coding
241                       protein_coding
242                       protein_coding
243                       protein_coding
244                       protein_coding
245                       protein_coding
246                       protein_coding
247                       protein_coding
248                       protein_coding
249                       protein_coding
250                       protein_coding
251                       protein_coding
252                       protein_coding
253                       protein_coding
254                       protein_coding
255                       protein_coding
256                       protein_coding
257                       protein_coding
258                       protein_coding
259                       protein_coding
260                       protein_coding
261                       protein_coding
262                       protein_coding
263                       protein_coding
264                       protein_coding
265                       protein_coding
266                       protein_coding
267                       protein_coding
268                       protein_coding
269                       protein_coding
270                       protein_coding
271                       protein_coding
272                       protein_coding
273                       protein_coding
274                       protein_coding
275                       protein_coding
276                       protein_coding
277                       protein_coding
278                       protein_coding
279                       protein_coding
280                       protein_coding
281                       protein_coding
282                       protein_coding
283                       protein_coding
284                       protein_coding
285                       protein_coding
286                       protein_coding
287                       protein_coding
288                       protein_coding
289                       protein_coding
290                       protein_coding
291                       protein_coding
292                       protein_coding
293                       protein_coding
294                       protein_coding
295                       protein_coding
296                       protein_coding
297                       protein_coding
298                       protein_coding
299                       protein_coding
300                       protein_coding
301                       protein_coding
302                       protein_coding
303                       protein_coding
304                       protein_coding
305                       protein_coding
306                       protein_coding
307                       protein_coding
308                       protein_coding
309                       protein_coding
310                       protein_coding
311                       protein_coding
312                                snRNA
313                       sense_intronic
314                       sense_intronic
315                       sense_intronic
316                       sense_intronic
317                       protein_coding
318                       protein_coding
319                       protein_coding
320                       protein_coding
321                       protein_coding
322                       protein_coding
323                       protein_coding
324                       protein_coding
325                       protein_coding
326                       protein_coding
327                       protein_coding
328                       protein_coding
329                       protein_coding
330                       protein_coding
331                       protein_coding
332                       protein_coding
333                       protein_coding
334                       protein_coding
335                       protein_coding
336                       protein_coding
337                       protein_coding
338                       protein_coding
339                       protein_coding
340                       protein_coding
341                       protein_coding
342                       protein_coding
343                       protein_coding
344                       protein_coding
345                       protein_coding
346                       protein_coding
347                       protein_coding
348                       protein_coding
349                       protein_coding
350                       protein_coding
351                       protein_coding
352                       protein_coding
353                       protein_coding
354                       protein_coding
355                       protein_coding
356                       protein_coding
357                       protein_coding
358                       protein_coding
359                       protein_coding
360                       protein_coding
361                       protein_coding
362                       protein_coding
363                       protein_coding
364                       protein_coding
365                       protein_coding
366                       protein_coding
367                       protein_coding
368                       protein_coding
369                       protein_coding
370                       protein_coding
371                       protein_coding
372                       protein_coding
373                       protein_coding
374                       protein_coding
375                       protein_coding
376                       protein_coding
377                       protein_coding
378                       protein_coding
379                       protein_coding
380                       protein_coding
381                       protein_coding
382                       protein_coding
383                       protein_coding
384                       protein_coding
385                       protein_coding
386                       protein_coding
387                       protein_coding
388                       protein_coding
389                       protein_coding
390                       protein_coding
391                       protein_coding
392                       protein_coding
393                       protein_coding
394                       protein_coding
395                       protein_coding
396                       protein_coding
397                       protein_coding
398                       protein_coding
399                       protein_coding
400                       protein_coding
401                       protein_coding
402                       protein_coding
403                       protein_coding
404                       protein_coding
405                       protein_coding
406                       protein_coding
407                       protein_coding
408                       protein_coding
409                       protein_coding
410                       protein_coding
411                       protein_coding
412                       protein_coding
413                       protein_coding
414                       protein_coding
415                       protein_coding
416                       protein_coding
417                       protein_coding
418                       protein_coding
419                       protein_coding
420                       protein_coding
421                       protein_coding
422                       protein_coding
423                       protein_coding
424                       protein_coding
425                       protein_coding
426                       protein_coding
427                       protein_coding
428                       protein_coding
429                       protein_coding
430                       protein_coding
431                       protein_coding
432                       protein_coding
433                       protein_coding
434                       protein_coding
435                       protein_coding
436                       protein_coding
437                       protein_coding
438                       protein_coding
439                       protein_coding
440                 processed_pseudogene
441                       protein_coding
442                       protein_coding
443                       protein_coding
444                       protein_coding
445                       protein_coding
446                       protein_coding
447                       protein_coding
448                       protein_coding
449                       protein_coding
450                       protein_coding
451                       protein_coding
452                       protein_coding
453                       protein_coding
454                       protein_coding
455                       protein_coding
456                       protein_coding
457                       protein_coding
458                       protein_coding
459                       protein_coding
460                       protein_coding
461                       protein_coding
462                       protein_coding
463                       protein_coding
464                       protein_coding
465                       protein_coding
466                       protein_coding
467                       protein_coding
468                       protein_coding
469                       protein_coding
470                       protein_coding
471                       protein_coding
472                       protein_coding
473                       protein_coding
474                       protein_coding
475                       protein_coding
476                       protein_coding
477                       protein_coding
478                       protein_coding
479                       protein_coding
480                       protein_coding
481                       protein_coding
482                       protein_coding
483                       protein_coding
484                       protein_coding
485                       protein_coding
486                       protein_coding
487                       protein_coding
488                       protein_coding
489                       protein_coding
490                       protein_coding
491                       protein_coding
492                       protein_coding
493                       protein_coding
494                       protein_coding
495                       protein_coding
496                       protein_coding
497                       protein_coding
498                       protein_coding
499                       protein_coding
500                       protein_coding
501                       protein_coding
502                       protein_coding
503                       protein_coding
504                       protein_coding
505                       protein_coding
506                       protein_coding
507                       protein_coding
508                       protein_coding
509                       protein_coding
510                       protein_coding
511                       protein_coding
512                       protein_coding
513                       protein_coding
514                       protein_coding
515                       protein_coding
516                       protein_coding
517                       protein_coding
518                       protein_coding
519                       protein_coding
520                       protein_coding
521                       protein_coding
522                       protein_coding
523                       protein_coding
524                       protein_coding
525                       protein_coding
526                       protein_coding
527                       protein_coding
528                       protein_coding
529                       protein_coding
530                       protein_coding
531                       protein_coding
532                       protein_coding
533                       protein_coding
534                       protein_coding
535                       protein_coding
536                       protein_coding
537                       protein_coding
538                       protein_coding
539                       protein_coding
540                       protein_coding
541                       protein_coding
542                       protein_coding
543                       protein_coding
544                       protein_coding
545                       protein_coding
546                       protein_coding
547                       protein_coding
548                       protein_coding
549                       protein_coding
550                       protein_coding
551                       protein_coding
552                       protein_coding
553                       protein_coding
554                       protein_coding
555                       protein_coding
556                       protein_coding
557                       protein_coding
558                       protein_coding
559                       protein_coding
560                       protein_coding
561                       protein_coding
562                       protein_coding
563                       protein_coding
564                       protein_coding
565                       protein_coding
566                       protein_coding
567                       protein_coding
568                       protein_coding
569                       protein_coding
570                       protein_coding
571                       protein_coding
572                       protein_coding
573                       protein_coding
574                       protein_coding
575                       protein_coding
576                       protein_coding
577                       protein_coding
578                       protein_coding
579                       protein_coding
580                       protein_coding
581                       protein_coding
582                       protein_coding
583                       protein_coding
584                       protein_coding
585                       protein_coding
586                       protein_coding
587                       protein_coding
588                       protein_coding
589                       protein_coding
590                       protein_coding
591                       protein_coding
592                       protein_coding
593                       protein_coding
594                       protein_coding
595                       protein_coding
596                       protein_coding
597                       protein_coding
598                       protein_coding
599                       protein_coding
600                       protein_coding
601                       protein_coding
602                       protein_coding
603                       protein_coding
604                       protein_coding
605                       protein_coding
606                       protein_coding
607                       protein_coding
608                       protein_coding
609                       protein_coding
610                       protein_coding
611                       protein_coding
612                       protein_coding
613                       protein_coding
614                       protein_coding
615                       protein_coding
616                       protein_coding
617                       protein_coding
618                       protein_coding
619                       protein_coding
620                       protein_coding
621                       protein_coding
622                       protein_coding
623                       protein_coding
624                       protein_coding
625                       protein_coding
626                       protein_coding
627                       protein_coding
628                       protein_coding
629                       protein_coding
630                       protein_coding
631                       protein_coding
632                       protein_coding
633                       protein_coding
634                       protein_coding
635                       protein_coding
636                       protein_coding
637                       protein_coding
638                       protein_coding
639                       protein_coding
640                       protein_coding
641                       protein_coding
642                       protein_coding
643                       protein_coding
644                       protein_coding
645                       protein_coding
646                       protein_coding
647                       protein_coding
648                       protein_coding
649                       protein_coding
650                       protein_coding
651                       protein_coding
652                       protein_coding
653                       protein_coding
654                       protein_coding
655                       protein_coding
656                       protein_coding
657                       protein_coding
658                       protein_coding
659                       protein_coding
660                       protein_coding
661                       protein_coding
662                       protein_coding
663                            antisense
664                            antisense
665                            antisense
666                            antisense
667                            antisense
668                            antisense
669                            antisense
670                            antisense
671                            antisense
672                            antisense
673                            antisense
674                            antisense
675                            antisense
676                            antisense
677                            antisense
678                            antisense
679                            antisense
680                            antisense
681                            antisense
682                            antisense
683                            antisense
684                            antisense
685                            antisense
686                            antisense
687                            antisense
688                            antisense
689                            antisense
690                            antisense
691                            antisense
692                            antisense
693                            antisense
694                       protein_coding
695                       protein_coding
696                       protein_coding
697                       protein_coding
698                       protein_coding
699                       protein_coding
700                       protein_coding
701                       protein_coding
702                       protein_coding
703                       protein_coding
704                       protein_coding
705                       protein_coding
706                       protein_coding
707                       protein_coding
708                       protein_coding
709                       protein_coding
710                       protein_coding
711                       protein_coding
712                       protein_coding
713                       protein_coding
714                       protein_coding
715                       protein_coding
716                       protein_coding
717                       protein_coding
718                       protein_coding
719                       protein_coding
720                       protein_coding
721                       protein_coding
722                       protein_coding
723                       protein_coding
724                       protein_coding
725                       protein_coding
726                       protein_coding
727                       protein_coding
728                       protein_coding
729                       protein_coding
730                       protein_coding
731                       protein_coding
732                       protein_coding
733                       protein_coding
734                       protein_coding
735                       protein_coding
736                       protein_coding
737                       protein_coding
738                       protein_coding
739                       protein_coding
740                       protein_coding
741                       protein_coding
742                       protein_coding
743                       protein_coding
744                       protein_coding
745                       protein_coding
746                       protein_coding
747                       protein_coding
748                       protein_coding
749                       protein_coding
750                       protein_coding
751                       protein_coding
752                       protein_coding
753                       protein_coding
754                       protein_coding
755                       protein_coding
756                       protein_coding
757                       protein_coding
758                       protein_coding
759                       protein_coding
760                       protein_coding
761                       protein_coding
762                       protein_coding
763                       protein_coding
764                       protein_coding
765                       protein_coding
766                       protein_coding
767                       protein_coding
768                       protein_coding
769                       protein_coding
770                       protein_coding
771                       protein_coding
772                       protein_coding
773                       protein_coding
774                       protein_coding
775                       protein_coding
776                       protein_coding
777                       protein_coding
778                       protein_coding
779                       protein_coding
780                       protein_coding
781                       protein_coding
782                       protein_coding
783                       protein_coding
784                       protein_coding
785                       protein_coding
786                       protein_coding
787                       protein_coding
788                       protein_coding
789                       protein_coding
790                       protein_coding
791                       protein_coding
792                       protein_coding
793                       protein_coding
794                       protein_coding
795                       protein_coding
796                       protein_coding
797                       protein_coding
798                       protein_coding
799                       protein_coding
800                       protein_coding
801                       protein_coding
802                       protein_coding
803                       protein_coding
804                       protein_coding
805                       protein_coding
806                       protein_coding
807                       protein_coding
808                       protein_coding
809                            antisense
810                            antisense
811                            antisense
812                            antisense
813                            antisense
814                            antisense
815                            antisense
816                            antisense
817                       protein_coding
818                       protein_coding
819                       protein_coding
820                       protein_coding
821                       protein_coding
822                       protein_coding
823                       protein_coding
824                       protein_coding
825                       protein_coding
826                       protein_coding
827                       protein_coding
828                       protein_coding
829                       protein_coding
830                       protein_coding
831                       protein_coding
832                       protein_coding
833                       protein_coding
834                       protein_coding
835                       protein_coding
836                       protein_coding
837                       protein_coding
838                       protein_coding
839                       protein_coding
840                       protein_coding
841                       protein_coding
842                       protein_coding
843                       protein_coding
844                       protein_coding
845                       protein_coding
846                       protein_coding
847                       protein_coding
848                       protein_coding
849                       protein_coding
850                       protein_coding
851                       protein_coding
852                       protein_coding
853                       protein_coding
854                       protein_coding
855                       protein_coding
856                       protein_coding
857                       protein_coding
858                       protein_coding
859                       protein_coding
860                       protein_coding
861                       protein_coding
862                       protein_coding
863                       protein_coding
864                       protein_coding
865                       protein_coding
866                       protein_coding
867                       protein_coding
868                       protein_coding
869                       protein_coding
870                       protein_coding
871                       protein_coding
872                       protein_coding
873                       protein_coding
874                       protein_coding
875                       protein_coding
876                       protein_coding
877                       protein_coding
878                       protein_coding
879                       protein_coding
880                       protein_coding
881                       protein_coding
882                       protein_coding
883                       protein_coding
884                       protein_coding
885                       protein_coding
886                       protein_coding
887                       protein_coding
888                       protein_coding
889                       protein_coding
890                       protein_coding
891                       protein_coding
892                       protein_coding
893                       protein_coding
894                       protein_coding
895                       protein_coding
896                       protein_coding
897                       protein_coding
898                       protein_coding
899                       protein_coding
900                       protein_coding
901                       protein_coding
902                       protein_coding
903                       protein_coding
904                       protein_coding
905                       protein_coding
906                       protein_coding
907                       protein_coding
908                       protein_coding
909                       protein_coding
910                       protein_coding
911                       protein_coding
912                       protein_coding
913                       protein_coding
914                       protein_coding
915                       protein_coding
916                       protein_coding
917                       protein_coding
918                       protein_coding
919                       protein_coding
920                       protein_coding
921                            antisense
922                            antisense
923                       protein_coding
924                       protein_coding
925                       protein_coding
926                       protein_coding
927                       protein_coding
928                       protein_coding
929                       protein_coding
930                       protein_coding
931                       protein_coding
932                       protein_coding
933                       protein_coding
934                       protein_coding
935                       protein_coding
936                       protein_coding
937                       protein_coding
938                       protein_coding
939                       protein_coding
940                       protein_coding
941                       protein_coding
942                       protein_coding
943                       protein_coding
944                       protein_coding
945                       protein_coding
946                       protein_coding
947                       protein_coding
948                       protein_coding
949                       protein_coding
950                       protein_coding
951                       protein_coding
952                       protein_coding
953                       protein_coding
954                       protein_coding
955                       protein_coding
956                       protein_coding
957                       protein_coding
958                       protein_coding
959                       protein_coding
960                       protein_coding
961                       protein_coding
962                       protein_coding
963                       protein_coding
964                       protein_coding
965                       protein_coding
966                       protein_coding
967                       protein_coding
968                       protein_coding
969                       protein_coding
970                       protein_coding
971                       protein_coding
972                       protein_coding
973                       protein_coding
974                       protein_coding
975                       protein_coding
976                       protein_coding
977                       protein_coding
978                       protein_coding
979                       protein_coding
980                       protein_coding
981                       protein_coding
982                       protein_coding
983                       protein_coding
984                       protein_coding
985                       protein_coding
986                       protein_coding
987                       protein_coding
988                       protein_coding
989                       protein_coding
990                       protein_coding
991                       protein_coding
992                       protein_coding
993                       protein_coding
994                       protein_coding
995                       protein_coding
996                       protein_coding
997                       protein_coding
998                       protein_coding
999                       protein_coding
1000                      protein_coding
1001                      protein_coding
1002                      protein_coding
1003                      protein_coding
1004                      protein_coding
1005                      protein_coding
1006                      protein_coding
1007                      protein_coding
1008                      protein_coding
1009                      protein_coding
1010                      protein_coding
1011                      protein_coding
1012                      protein_coding
1013                      protein_coding
1014                      protein_coding
1015                      protein_coding
1016                      protein_coding
1017                      protein_coding
1018                      protein_coding
1019                      protein_coding
1020                      protein_coding
1021                      protein_coding
1022                      protein_coding
1023                      protein_coding
1024                      protein_coding
1025                      protein_coding
1026                      protein_coding
1027                      protein_coding
1028                      protein_coding
1029                      protein_coding
1030                      protein_coding
1031                      protein_coding
1032                      protein_coding
1033                      protein_coding
1034                      protein_coding
1035                      protein_coding
1036                      protein_coding
1037                      protein_coding
1038                      protein_coding
1039                      protein_coding
1040                      protein_coding
1041                      protein_coding
1042                      protein_coding
1043                      protein_coding
1044                      protein_coding
1045                      protein_coding
1046                      protein_coding
1047                      protein_coding
1048                      protein_coding
1049                      protein_coding
1050                      protein_coding
1051                      protein_coding
1052                      protein_coding
1053                      protein_coding
1054                      protein_coding
1055                      protein_coding
1056                           antisense
1057                           antisense
1058                processed_pseudogene
1059                             lincRNA
1060                             lincRNA
1061                             lincRNA
1062                             lincRNA
1063                             lincRNA
1064                             lincRNA
1065                      protein_coding
1066                      protein_coding
1067                      protein_coding
1068                      protein_coding
1069                      protein_coding
1070                      protein_coding
1071                      protein_coding
1072                      protein_coding
1073                      protein_coding
1074                      protein_coding
1075                      protein_coding
1076                      protein_coding
1077                      protein_coding
1078                      protein_coding
1079                      protein_coding
1080                      protein_coding
1081                      protein_coding
1082                      protein_coding
1083                      protein_coding
1084                      protein_coding
1085                      protein_coding
1086                      protein_coding
1087                      protein_coding
1088                      protein_coding
1089                      protein_coding
1090                      protein_coding
1091                      protein_coding
1092                      protein_coding
1093                      protein_coding
1094                      protein_coding
1095                      protein_coding
1096                      protein_coding
1097                      protein_coding
1098                      protein_coding
1099                      protein_coding
1100                      protein_coding
1101                      protein_coding
1102                      protein_coding
1103                      protein_coding
1104                      protein_coding
1105                      protein_coding
1106                      protein_coding
1107                      protein_coding
1108                      protein_coding
1109                      protein_coding
1110                      protein_coding
1111                      protein_coding
1112                      protein_coding
1113                      protein_coding
1114                      protein_coding
1115                      protein_coding
1116                      protein_coding
1117                      protein_coding
1118                      protein_coding
1119                      protein_coding
1120                      protein_coding
1121                      protein_coding
1122                      protein_coding
1123                      protein_coding
1124                      protein_coding
1125                      protein_coding
1126                      protein_coding
1127                      protein_coding
1128                      protein_coding
1129                      protein_coding
1130                      protein_coding
1131                      protein_coding
1132                      protein_coding
1133                      protein_coding
1134                      protein_coding
1135                      protein_coding
1136                      protein_coding
1137                      protein_coding
1138                      protein_coding
1139                      protein_coding
1140                      protein_coding
1141                      protein_coding
1142                      protein_coding
1143                      protein_coding
1144                      protein_coding
1145                      protein_coding
1146                      protein_coding
1147                      protein_coding
1148                      protein_coding
1149                      protein_coding
1150                      protein_coding
1151                      protein_coding
1152                      protein_coding
1153                      protein_coding
1154                             lincRNA
1155                      protein_coding
1156                      protein_coding
1157                      protein_coding
1158                      protein_coding
1159                      protein_coding
1160                      protein_coding
1161                      protein_coding
1162                      protein_coding
1163                      protein_coding
1164                      protein_coding
1165                      protein_coding
1166                      protein_coding
1167                      protein_coding
1168                      protein_coding
1169                      protein_coding
1170                      protein_coding
1171                      protein_coding
1172                      protein_coding
1173                      protein_coding
1174                      protein_coding
1175                      protein_coding
1176                      protein_coding
1177                      protein_coding
1178                      protein_coding
1179                      protein_coding
1180                      protein_coding
1181                      protein_coding
1182                      protein_coding
1183                      protein_coding
1184                      protein_coding
1185                      protein_coding
1186                      protein_coding
1187                      protein_coding
1188                      protein_coding
1189                      protein_coding
1190                      protein_coding
1191                      protein_coding
1192                      protein_coding
1193                      protein_coding
1194                      protein_coding
1195                      protein_coding
1196                      protein_coding
1197                      protein_coding
1198                      protein_coding
1199                      protein_coding
1200                      protein_coding
1201                      protein_coding
1202                      protein_coding
1203                      protein_coding
1204                      protein_coding
1205                      protein_coding
1206                      protein_coding
1207                      protein_coding
1208                      protein_coding
1209                      protein_coding
1210                      protein_coding
1211                      protein_coding
1212                      protein_coding
1213                      protein_coding
1214                      protein_coding
1215                      protein_coding
1216                      protein_coding
1217                      protein_coding
1218                      protein_coding
1219                      protein_coding
1220                      protein_coding
1221                      protein_coding
1222                      protein_coding
1223                      protein_coding
1224                      protein_coding
1225                      protein_coding
1226                      protein_coding
1227                      protein_coding
1228                      protein_coding
1229                      protein_coding
1230                      protein_coding
1231                      protein_coding
1232                      protein_coding
1233                      protein_coding
1234                      protein_coding
1235                      protein_coding
1236                      protein_coding
1237                      protein_coding
1238                      protein_coding
1239                      protein_coding
1240                      protein_coding
1241                      protein_coding
1242                      protein_coding
1243                      protein_coding
1244                      protein_coding
1245                      protein_coding
1246                      protein_coding
1247                      protein_coding
1248                      protein_coding
1249                      protein_coding
1250                      protein_coding
1251                      protein_coding
1252                      protein_coding
1253                      protein_coding
1254                      protein_coding
1255                      protein_coding
1256                      protein_coding
1257                      protein_coding
1258                      protein_coding
1259                      protein_coding
1260                      protein_coding
1261                      protein_coding
1262                      protein_coding
1263                      protein_coding
1264                      protein_coding
1265                      protein_coding
1266                      protein_coding
1267                      protein_coding
1268                      protein_coding
1269                      protein_coding
1270                      protein_coding
1271                      protein_coding
1272                      protein_coding
1273                      protein_coding
1274                      protein_coding
1275                      protein_coding
1276                      protein_coding
1277                      protein_coding
1278                      protein_coding
1279                      protein_coding
1280                      protein_coding
1281                      protein_coding
1282                      protein_coding
1283                      protein_coding
1284                      protein_coding
1285                      protein_coding
1286                      protein_coding
1287                      protein_coding
1288                      protein_coding
1289                      protein_coding
1290                      protein_coding
1291                      protein_coding
1292                      protein_coding
1293                      protein_coding
1294                      protein_coding
1295                      protein_coding
1296                      protein_coding
1297                      protein_coding
1298                      protein_coding
1299                      protein_coding
1300                      protein_coding
1301                      protein_coding
1302                      protein_coding
1303                      protein_coding
1304                      protein_coding
1305                      protein_coding
1306                   sense_overlapping
1307                   sense_overlapping
1308                   sense_overlapping
1309                      sense_intronic
1310                           antisense
1311                           antisense
1312                           antisense
1313                           antisense
1314                             lincRNA
1315                             lincRNA
1316                             lincRNA
1317                             lincRNA
1318                             lincRNA
1319                      protein_coding
1320                      protein_coding
1321                      protein_coding
1322                      protein_coding
1323                      protein_coding
1324                      protein_coding
1325                      protein_coding
1326                      protein_coding
1327                      protein_coding
1328                      protein_coding
1329                      protein_coding
1330                      protein_coding
1331                      protein_coding
1332                      protein_coding
1333                      protein_coding
1334                      protein_coding
1335                      protein_coding
1336                      protein_coding
1337                      protein_coding
1338                      protein_coding
1339                      protein_coding
1340                      protein_coding
1341                      protein_coding
1342                      protein_coding
1343                      protein_coding
1344                      protein_coding
1345                      protein_coding
1346                      protein_coding
1347                      protein_coding
1348                      protein_coding
1349                      protein_coding
1350                      protein_coding
1351                      protein_coding
1352                      protein_coding
1353                      protein_coding
1354                      protein_coding
1355                      protein_coding
1356                      protein_coding
1357                      protein_coding
1358                      protein_coding
1359                      protein_coding
1360                      protein_coding
1361                      protein_coding
1362                      protein_coding
1363                      protein_coding
1364                      protein_coding
1365                      protein_coding
1366                      protein_coding
1367                      protein_coding
1368                      protein_coding
1369                      protein_coding
1370                      protein_coding
1371                      protein_coding
1372                      protein_coding
1373                      protein_coding
1374                      protein_coding
1375                      protein_coding
1376                      protein_coding
1377                      protein_coding
1378                      protein_coding
1379                      protein_coding
1380                      protein_coding
1381                      protein_coding
1382                      protein_coding
1383                      protein_coding
1384                      protein_coding
1385                      protein_coding
1386                      protein_coding
1387                      protein_coding
1388                      protein_coding
1389                      protein_coding
1390                      protein_coding
1391                      protein_coding
1392                      protein_coding
1393                      protein_coding
1394                      protein_coding
1395                      protein_coding
1396                      protein_coding
1397                      protein_coding
1398                      protein_coding
1399                      protein_coding
1400                      protein_coding
1401                      protein_coding
1402                      protein_coding
1403                      protein_coding
1404                      protein_coding
1405                      protein_coding
1406                      protein_coding
1407                      protein_coding
1408                      protein_coding
1409                      protein_coding
1410                      protein_coding
1411                      protein_coding
1412                      protein_coding
1413                      protein_coding
1414                      protein_coding
1415                      protein_coding
1416                      protein_coding
1417                      protein_coding
1418                      protein_coding
1419                      protein_coding
1420                      protein_coding
1421                      protein_coding
1422                      protein_coding
1423                      protein_coding
1424                      protein_coding
1425                      protein_coding
1426                      protein_coding
1427                      protein_coding
1428                      protein_coding
1429                      protein_coding
1430                      protein_coding
1431                      protein_coding
1432                      protein_coding
1433                      protein_coding
1434                      protein_coding
1435                      protein_coding
1436                      protein_coding
1437                      protein_coding
1438                      protein_coding
1439                      protein_coding
1440                      protein_coding
1441                      protein_coding
1442                      protein_coding
1443                      protein_coding
1444                      protein_coding
1445                      protein_coding
1446                      protein_coding
1447                      protein_coding
1448                      protein_coding
1449                      protein_coding
1450                      protein_coding
1451                      protein_coding
1452                      protein_coding
1453                      protein_coding
1454                      protein_coding
1455                      protein_coding
1456                      protein_coding
1457                      protein_coding
1458                      protein_coding
1459                      protein_coding
1460                      protein_coding
1461                      protein_coding
1462                      protein_coding
1463                      protein_coding
1464                      protein_coding
1465                      protein_coding
1466                      protein_coding
1467                      protein_coding
1468                      protein_coding
1469                      protein_coding
1470                      protein_coding
1471                      protein_coding
1472                      protein_coding
1473                      protein_coding
1474                      protein_coding
1475                      protein_coding
1476                      protein_coding
1477                      protein_coding
1478                      protein_coding
1479                      protein_coding
1480                      protein_coding
1481                      protein_coding
1482                      protein_coding
1483                      protein_coding
1484                      protein_coding
1485                      protein_coding
1486                      protein_coding
1487                      protein_coding
1488                      protein_coding
1489                      protein_coding
1490                      protein_coding
1491                      protein_coding
1492                      protein_coding
1493                      protein_coding
1494                      protein_coding
1495                      protein_coding
1496                      protein_coding
1497                      protein_coding
1498                      protein_coding
1499                      protein_coding
1500                      protein_coding
1501                      protein_coding
1502                      protein_coding
1503                      protein_coding
1504                      protein_coding
1505                      protein_coding
1506                      protein_coding
1507                      protein_coding
1508                      protein_coding
1509                      protein_coding
1510                      protein_coding
1511                      protein_coding
1512                      protein_coding
1513                      protein_coding
1514                      protein_coding
1515                      protein_coding
1516                      protein_coding
1517                      protein_coding
1518                      protein_coding
1519                      protein_coding
1520                      protein_coding
1521                      protein_coding
1522                      protein_coding
1523                      protein_coding
1524                      protein_coding
1525                      protein_coding
1526                      protein_coding
1527                      protein_coding
1528                      protein_coding
1529                      protein_coding
1530                      protein_coding
1531                      protein_coding
1532                               miRNA
1533                           antisense
1534                           antisense
1535                           antisense
1536                           antisense
1537                           antisense
1538                           antisense
1539                           antisense
1540                           antisense
1541                           antisense
1542                           antisense
1543                             lincRNA
1544                           antisense
1545                           antisense
1546                           antisense
1547                           antisense
1548                processed_pseudogene
1549                             lincRNA
1550                             lincRNA
1551                             lincRNA
1552                             lincRNA
1553                             lincRNA
1554                             lincRNA
1555                             lincRNA
1556                             lincRNA
1557                             lincRNA
1558                processed_transcript
1559                processed_transcript
1560                processed_transcript
1561                processed_transcript
1562                processed_transcript
1563                processed_transcript
1564                      protein_coding
1565                      protein_coding
1566                      protein_coding
1567                      protein_coding
1568                      protein_coding
1569                      protein_coding
1570                      protein_coding
1571                      protein_coding
1572                      protein_coding
1573                      protein_coding
1574                      protein_coding
1575                      protein_coding
1576                      protein_coding
1577                      protein_coding
1578                      protein_coding
1579                      protein_coding
1580                      protein_coding
1581                      protein_coding
1582                      protein_coding
1583                      protein_coding
1584                      protein_coding
1585                      protein_coding
1586                      protein_coding
1587                      protein_coding
1588                      protein_coding
1589                      protein_coding
1590                      protein_coding
1591                      protein_coding
1592                      protein_coding
1593                      protein_coding
1594                      protein_coding
1595                      protein_coding
1596                      protein_coding
1597                      protein_coding
1598                      protein_coding
1599                      protein_coding
1600                      protein_coding
1601                      protein_coding
1602                      protein_coding
1603                      protein_coding
1604                      protein_coding
1605                      protein_coding
1606                      protein_coding
1607                      protein_coding
1608                      protein_coding
1609                      protein_coding
1610                      protein_coding
1611                      protein_coding
1612                      protein_coding
1613                      protein_coding
1614                      protein_coding
1615                      protein_coding
1616                      protein_coding
1617                      protein_coding
1618                      protein_coding
1619                      protein_coding
1620                      protein_coding
1621                      protein_coding
1622                      protein_coding
1623                      protein_coding
1624                      protein_coding
1625                      protein_coding
1626                      protein_coding
1627                      protein_coding
1628                      protein_coding
1629                      protein_coding
1630                      protein_coding
1631                      protein_coding
1632                      protein_coding
1633                      protein_coding
1634                      protein_coding
1635                      protein_coding
1636                      protein_coding
1637                      protein_coding
1638                      protein_coding
1639                      protein_coding
1640                      protein_coding
1641                      protein_coding
1642                      protein_coding
1643                      protein_coding
1644                      protein_coding
1645                      protein_coding
1646                      protein_coding
1647                      protein_coding
1648                             lincRNA
1649                             lincRNA
1650                             lincRNA
1651                             lincRNA
1652                             lincRNA
1653                             lincRNA
1654                             lincRNA
1655                             lincRNA
1656                             lincRNA
1657                             lincRNA
1658                      protein_coding
1659                      protein_coding
1660                      protein_coding
1661                      protein_coding
1662                      protein_coding
1663                      protein_coding
1664                      protein_coding
1665                      protein_coding
1666                      protein_coding
1667                      protein_coding
1668                      protein_coding
1669                      protein_coding
1670                      protein_coding
1671                      protein_coding
1672                      protein_coding
1673                      protein_coding
1674                      protein_coding
1675                      protein_coding
1676                      protein_coding
1677                      protein_coding
1678                      protein_coding
1679                      protein_coding
1680                      protein_coding
1681                      protein_coding
1682                      protein_coding
1683                      protein_coding
1684                      protein_coding
1685                      protein_coding
1686                      protein_coding
1687                      protein_coding
1688                      protein_coding
1689                      protein_coding
1690                      protein_coding
1691                      protein_coding
1692                      protein_coding
1693                      protein_coding
1694                      protein_coding
1695                      protein_coding
1696                      protein_coding
1697                      protein_coding
1698                      protein_coding
1699                      protein_coding
1700                      protein_coding
1701                      protein_coding
1702                      protein_coding
1703                      protein_coding
1704                      protein_coding
1705                      protein_coding
1706                      protein_coding
1707                      protein_coding
1708                      protein_coding
1709                      protein_coding
1710                      protein_coding
1711                      protein_coding
1712                      protein_coding
1713                      protein_coding
1714                      protein_coding
1715                      protein_coding
1716                      protein_coding
1717                      protein_coding
1718                      protein_coding
1719                      protein_coding
1720                      protein_coding
1721                      protein_coding
1722                      protein_coding
1723                      protein_coding
1724                      protein_coding
1725                      protein_coding
1726                      protein_coding
1727                      protein_coding
1728                      protein_coding
1729                      protein_coding
1730                      protein_coding
1731                      protein_coding
1732                      protein_coding
1733                      protein_coding
1734                      protein_coding
1735                      protein_coding
1736                      protein_coding
1737                      protein_coding
1738                      protein_coding
1739                      protein_coding
1740                      protein_coding
1741                      protein_coding
1742                      protein_coding
1743                      protein_coding
1744                      protein_coding
1745                      protein_coding
1746                      protein_coding
1747                      protein_coding
1748                      protein_coding
1749                      protein_coding
1750                      protein_coding
1751                      protein_coding
1752                      protein_coding
1753                      protein_coding
1754                      protein_coding
1755                      protein_coding
1756                      protein_coding
1757                      protein_coding
1758                      protein_coding
1759                      protein_coding
1760                      protein_coding
1761                      protein_coding
1762                      protein_coding
1763                      protein_coding
1764                      protein_coding
1765                      protein_coding
1766                      protein_coding
1767                      protein_coding
1768                      protein_coding
1769                      protein_coding
1770                      protein_coding
1771                      protein_coding
1772                      protein_coding
1773                      protein_coding
1774                      protein_coding
1775                      protein_coding
1776                      protein_coding
1777                      protein_coding
1778                      protein_coding
1779                      protein_coding
1780                      protein_coding
1781                      protein_coding
1782                      protein_coding
1783                             lincRNA
1784    transcribed_processed_pseudogene
1785    transcribed_processed_pseudogene
1786    transcribed_processed_pseudogene
1787    transcribed_processed_pseudogene
1788                             lincRNA
1789                             lincRNA
1790                             lincRNA
1791                             lincRNA
1792                             lincRNA
1793                             lincRNA
1794                             lincRNA
1795                             lincRNA
1796                      protein_coding
1797                      protein_coding
1798                      protein_coding
1799                      protein_coding
1800                      protein_coding
1801                      protein_coding
1802                      protein_coding
1803                      protein_coding
1804                      protein_coding
1805                      protein_coding
1806                      protein_coding
1807                      protein_coding
1808                      protein_coding
1809                      protein_coding
1810                      protein_coding
1811                      protein_coding
1812                      protein_coding
1813                      protein_coding
1814                      protein_coding
1815                      protein_coding
1816                      protein_coding
1817                      protein_coding
1818                      protein_coding
1819                      protein_coding
1820                             lincRNA
1821                             lincRNA
1822                             lincRNA
1823                             lincRNA
1824                             lincRNA
1825                             lincRNA
1826                             lincRNA
1827                             lincRNA
1828                             lincRNA
1829                             lincRNA
1830                           antisense
1831                      protein_coding
1832                      protein_coding
1833                      protein_coding
1834                      protein_coding
1835                      protein_coding
1836                      protein_coding
1837                      protein_coding
1838                      protein_coding
1839                      protein_coding
1840                      protein_coding
1841                      protein_coding
1842                      protein_coding
1843                      protein_coding
1844                      protein_coding
1845                      protein_coding
1846                      protein_coding
1847                      protein_coding
1848                      protein_coding
1849                      protein_coding
1850                      protein_coding
1851                      protein_coding
1852                      protein_coding
1853                      protein_coding
1854                      protein_coding
1855                      protein_coding
1856                      protein_coding
1857                      protein_coding
1858                      protein_coding
1859                      protein_coding
1860                      protein_coding
1861                      protein_coding
1862                      protein_coding
1863                      protein_coding
1864                      protein_coding
1865                      protein_coding
1866                      protein_coding
1867                      protein_coding
1868                      protein_coding
1869                      protein_coding
1870                      protein_coding
1871                      protein_coding
1872                      protein_coding
1873                      protein_coding
1874                      protein_coding
1875                      protein_coding
1876                      protein_coding
1877                      protein_coding
1878                      protein_coding
1879                      protein_coding
1880                      protein_coding
1881                      protein_coding
1882                      protein_coding
1883                      protein_coding
1884                      protein_coding
1885                      protein_coding
1886                      protein_coding
1887                      protein_coding
1888                      protein_coding
1889                      protein_coding
1890                      protein_coding
1891                      protein_coding
1892                      protein_coding
1893                      protein_coding
1894                      protein_coding
1895                      protein_coding
1896                      protein_coding
1897                      protein_coding
1898                      protein_coding
1899                      protein_coding
1900                      protein_coding
1901                      protein_coding
1902                      protein_coding
1903                      protein_coding
1904                      protein_coding
1905                      protein_coding
1906                      protein_coding
1907                      protein_coding
1908                      protein_coding
1909                      protein_coding
1910                      protein_coding
1911                      protein_coding
1912                      protein_coding
1913                      protein_coding
1914                      protein_coding
1915                      protein_coding
1916                      protein_coding
1917                      protein_coding
1918                      protein_coding
1919                      protein_coding
1920                      protein_coding
1921                      protein_coding
1922                      protein_coding
1923                      protein_coding
1924                      protein_coding
1925                      protein_coding
1926                      protein_coding
1927                      protein_coding
1928                      protein_coding
1929                      protein_coding
1930                      protein_coding
1931                      protein_coding
1932                      protein_coding
1933                      protein_coding
1934                      protein_coding
1935                      protein_coding
1936                      protein_coding
1937                      protein_coding
1938                      protein_coding
1939                      protein_coding
1940                      protein_coding
1941                      protein_coding
1942                      protein_coding
1943                      protein_coding
1944                      protein_coding
1945                      protein_coding
1946                      protein_coding
1947                      protein_coding
1948                      protein_coding
1949                      protein_coding
1950                      protein_coding
1951                      protein_coding
1952                      protein_coding
1953                      protein_coding
1954                      protein_coding
1955                      protein_coding
1956                      protein_coding
1957                      protein_coding
1958                      protein_coding
1959                      protein_coding
1960                      protein_coding
1961                      protein_coding
1962                      protein_coding
1963                      protein_coding
1964                      protein_coding
1965                      protein_coding
1966                      protein_coding
1967                      protein_coding
1968                      protein_coding
1969                      protein_coding
1970                      protein_coding
1971                      protein_coding
1972                      protein_coding
1973                      protein_coding
1974                      protein_coding
1975                      protein_coding
1976                      protein_coding
1977                      protein_coding
1978                      protein_coding
1979                      protein_coding
1980                      protein_coding
1981                      protein_coding
1982                      protein_coding
1983                      protein_coding
1984                      protein_coding
1985                      protein_coding
1986                      protein_coding
1987                      protein_coding
1988                      protein_coding
1989                      protein_coding
1990                      protein_coding
1991                      protein_coding
1992                      protein_coding
1993                      protein_coding
1994                      protein_coding
1995                      protein_coding
1996                      protein_coding
1997                      protein_coding
1998                      protein_coding
1999                      protein_coding
2000                      protein_coding
2001                      protein_coding
2002                      protein_coding
2003                      protein_coding
2004                      protein_coding
2005                      protein_coding
2006                      protein_coding
2007                      protein_coding
2008                      protein_coding
2009                      protein_coding
2010                      protein_coding
2011                      protein_coding
2012                      protein_coding
2013                      protein_coding
2014                      protein_coding
2015                      protein_coding
2016                      protein_coding
2017                      protein_coding
2018                      protein_coding
2019                      protein_coding
2020                      protein_coding
2021                      protein_coding
2022                      protein_coding
2023                      protein_coding
2024                      protein_coding
2025                      protein_coding
2026                      protein_coding
2027                      sense_intronic
2028                           antisense
2029                           antisense
2030                           antisense
2031                           antisense
2032                           antisense
2033                           antisense
2034                           antisense
2035                           antisense
2036                           antisense
2037                           antisense
2038                           antisense
2039                           antisense
2040                           antisense
2041                           antisense
2042                           antisense
2043                           antisense
2044                           antisense
2045                           antisense
2046                           antisense
2047                           antisense
2048                           antisense
2049                           antisense
2050                      protein_coding
2051                      protein_coding
2052                      protein_coding
2053                      protein_coding
2054                      protein_coding
2055                      protein_coding
2056                      protein_coding
2057                      protein_coding
2058                      protein_coding
2059                      protein_coding
2060                      protein_coding
2061                      protein_coding
2062                      protein_coding
2063                      protein_coding
2064                      protein_coding
2065                      protein_coding
2066                      protein_coding
2067                      protein_coding
2068                      protein_coding
2069                      protein_coding
2070                      protein_coding
2071                      protein_coding
2072                      protein_coding
2073                      protein_coding
2074                      protein_coding
2075                      protein_coding
2076                      protein_coding
2077                      protein_coding
2078                      protein_coding
2079                      protein_coding
2080                      protein_coding
2081                      protein_coding
2082                      protein_coding
2083                      protein_coding
2084                      protein_coding
2085                      protein_coding
2086                      protein_coding
2087                      protein_coding
2088                      protein_coding
2089                      protein_coding
2090                      protein_coding
2091                      protein_coding
2092                      protein_coding
2093                      protein_coding
2094                      protein_coding
2095                      protein_coding
2096                      protein_coding
2097                      protein_coding
2098                      protein_coding
2099                      protein_coding
2100                      protein_coding
2101                      protein_coding
2102                      protein_coding
2103                      protein_coding
2104                           antisense
2105                           antisense
2106                      protein_coding
2107                      protein_coding
2108                      protein_coding
2109                      protein_coding
2110                      protein_coding
2111                      protein_coding
2112                      protein_coding
2113                      protein_coding
2114                      protein_coding
2115                      protein_coding
2116                      protein_coding
2117                      protein_coding
2118                      protein_coding
2119                      protein_coding
2120                      protein_coding
2121                      protein_coding
2122                      protein_coding
2123                      protein_coding
2124                      protein_coding
2125                      protein_coding
2126                      protein_coding
2127                      protein_coding
2128                      protein_coding
2129                      protein_coding
2130                      protein_coding
2131                      protein_coding
2132                      protein_coding
2133                      protein_coding
2134                      protein_coding
2135                      protein_coding
2136                      protein_coding
2137                      protein_coding
2138                      protein_coding
2139                      protein_coding
2140                      protein_coding
2141                      protein_coding
2142                      protein_coding
2143                      protein_coding
2144                      protein_coding
2145                      protein_coding
2146                      protein_coding
2147                      protein_coding
2148                      protein_coding
2149                      protein_coding
2150                      protein_coding
2151                      protein_coding
2152                      protein_coding
2153                      protein_coding
2154                      protein_coding
2155                      protein_coding
2156                      protein_coding
2157                      protein_coding
2158                      protein_coding
2159                      protein_coding
2160                      protein_coding
2161                      protein_coding
2162                      protein_coding
2163                      protein_coding
2164                      protein_coding
2165                      protein_coding
2166                      protein_coding
2167                      protein_coding
2168                      protein_coding
2169                      protein_coding
2170                      protein_coding
2171                      protein_coding
2172                      protein_coding
2173                      protein_coding
2174                      protein_coding
2175                      protein_coding
2176                      protein_coding
2177                      protein_coding
2178                      protein_coding
2179                      protein_coding
2180                      protein_coding
2181                      protein_coding
2182                      protein_coding
2183                      protein_coding
2184                      protein_coding
2185                      protein_coding
2186                      protein_coding
2187                      protein_coding
2188                      protein_coding
2189                      protein_coding
2190                      protein_coding
2191                      protein_coding
2192                      protein_coding
2193                      protein_coding
2194                      protein_coding
2195                      protein_coding
2196                      protein_coding
2197                      protein_coding
2198                      protein_coding
2199                      protein_coding
2200                      protein_coding
2201                      protein_coding
2202                      protein_coding
2203                      protein_coding
2204                      protein_coding
2205                      protein_coding
2206                      protein_coding
2207                      protein_coding
2208                      protein_coding
2209                      protein_coding
2210                      protein_coding
2211                      protein_coding
2212              unprocessed_pseudogene
2213                      protein_coding
2214                      protein_coding
2215                      protein_coding
2216                      protein_coding
2217                processed_pseudogene
2218                      protein_coding
2219                processed_pseudogene
2220                      protein_coding
2221                      protein_coding
2222                      protein_coding
2223                      protein_coding
2224                      protein_coding
2225                      protein_coding
2226                      protein_coding
2227                      protein_coding
2228                      protein_coding
2229                      protein_coding
2230                      protein_coding
2231                      protein_coding
2232                      protein_coding
2233                      protein_coding
2234                      protein_coding
2235                      protein_coding
2236                      protein_coding
2237                      protein_coding
2238                      protein_coding
2239                      protein_coding
2240                      protein_coding
2241                      protein_coding
2242                      protein_coding
2243                      protein_coding
2244                      protein_coding
2245                      protein_coding
2246                      protein_coding
2247                      protein_coding
2248                      protein_coding
2249                      protein_coding
2250                           antisense
2251                           antisense
2252                           antisense
2253                           antisense
2254                           antisense
2255                           antisense
2256                           antisense
2257                           antisense
2258                           antisense
2259                           antisense
2260                           antisense
2261                           antisense
2262                           antisense
2263                           antisense
2264                           antisense
2265                           antisense
2266                             lincRNA
2267                             lincRNA
2268                             lincRNA
2269                             lincRNA
2270                processed_pseudogene
2271                processed_pseudogene
2272                processed_pseudogene
2273                processed_pseudogene
2274                processed_pseudogene
2275                processed_pseudogene
2276                      protein_coding
2277                      protein_coding
2278                           antisense
2279                           antisense
2280                           antisense
2281                           antisense
2282                      protein_coding
2283                      protein_coding
2284                      protein_coding
2285                      protein_coding
2286                      protein_coding
2287                      protein_coding
2288                      protein_coding
2289                      protein_coding
2290                      protein_coding
2291                      protein_coding
2292                      protein_coding
2293                      protein_coding
2294                      protein_coding
2295                      protein_coding
2296                      protein_coding
2297                      protein_coding
2298                      protein_coding
2299                      protein_coding
2300                      protein_coding
2301                      protein_coding
2302                      protein_coding
2303                      protein_coding
2304                      protein_coding
2305                      protein_coding
2306                      protein_coding
2307                      protein_coding
2308                      protein_coding
2309                      protein_coding
2310                      protein_coding
2311                      protein_coding
2312                      protein_coding
2313                      protein_coding
2314                      protein_coding
2315                      protein_coding
2316                      protein_coding
2317                      protein_coding
2318                      protein_coding
2319                      protein_coding
2320                      protein_coding
2321                      protein_coding
2322                      protein_coding
2323                      protein_coding
2324                      protein_coding
2325                      protein_coding
2326                      protein_coding
2327                      protein_coding
2328                      protein_coding
2329                      protein_coding
2330                      protein_coding
2331                      protein_coding
2332                      protein_coding
2333                      protein_coding
2334                      protein_coding
2335                      protein_coding
2336                      protein_coding
2337                      protein_coding
2338                      protein_coding
2339                      protein_coding
2340                      protein_coding
2341                      protein_coding
2342                      protein_coding
2343                      protein_coding
2344                      protein_coding
2345                      protein_coding
2346                      protein_coding
2347                      protein_coding
2348                      protein_coding
2349                      protein_coding
2350                      protein_coding
2351                      protein_coding
2352                      protein_coding
2353                      protein_coding
2354                      protein_coding
2355                      protein_coding
2356                      protein_coding
2357                      protein_coding
2358                      protein_coding
2359                      protein_coding
2360                      protein_coding
2361                      protein_coding
2362                      protein_coding
2363                      protein_coding
2364                      protein_coding
2365                      protein_coding
2366                      protein_coding
2367                      protein_coding
2368                      protein_coding
2369                      protein_coding
2370                      protein_coding
2371                      protein_coding
2372                      protein_coding
2373                      protein_coding
2374                      protein_coding
2375                      protein_coding
2376                      protein_coding
2377                      protein_coding
2378                      protein_coding
2379                      protein_coding
2380                      protein_coding
2381                      protein_coding
2382                      protein_coding
2383                      protein_coding
2384                      protein_coding
2385                      protein_coding
2386                      protein_coding
2387                      protein_coding
2388                      protein_coding
2389                      protein_coding
2390                      protein_coding
2391                      protein_coding
2392                      protein_coding
2393                      protein_coding
2394                      protein_coding
2395                      protein_coding
2396                      protein_coding
2397                      protein_coding
2398                      protein_coding
2399                      protein_coding
2400                      protein_coding
2401                      protein_coding
2402                      protein_coding
2403                      protein_coding
2404                      protein_coding
2405                      protein_coding
2406                      protein_coding
2407                      protein_coding
2408                      protein_coding
2409                      protein_coding
2410                      protein_coding
2411                      protein_coding
2412                      protein_coding
2413                      protein_coding
2414                      protein_coding
2415                      protein_coding
2416                      protein_coding
2417                      protein_coding
2418                      protein_coding
2419                      protein_coding
2420                      protein_coding
2421                      protein_coding
2422                      protein_coding
2423                      protein_coding
2424                      protein_coding
2425                      protein_coding
2426                      protein_coding
2427                      protein_coding
2428                      protein_coding
2429                      protein_coding
2430                      protein_coding
2431                      protein_coding
2432                      protein_coding
2433                      protein_coding
2434                      protein_coding
2435                      protein_coding
2436                      protein_coding
2437                      protein_coding
2438                      protein_coding
2439                      protein_coding
2440                      protein_coding
2441                      protein_coding
2442                      protein_coding
2443                      protein_coding
2444                      protein_coding
2445                      protein_coding
2446                      protein_coding
2447                      protein_coding
2448                      protein_coding
2449                      protein_coding
2450                      protein_coding
2451                      protein_coding
2452                      protein_coding
2453                      protein_coding
2454                      protein_coding
2455                      protein_coding
2456                      protein_coding
2457                      protein_coding
2458                      protein_coding
2459                      protein_coding
2460                      protein_coding
2461                      protein_coding
2462                              snoRNA
2463                              snoRNA
2464                           antisense
2465                           antisense
2466                           antisense
2467                           antisense
2468                           antisense
2469                             lincRNA
2470                           antisense
2471                           antisense
2472                      protein_coding
2473                      protein_coding
2474                      protein_coding
2475                      protein_coding
2476                      protein_coding
2477                      protein_coding
2478                      protein_coding
2479                      protein_coding
2480                      protein_coding
2481                      protein_coding
2482                      protein_coding
2483                      protein_coding
2484                      protein_coding
2485                      protein_coding
2486                      protein_coding
2487                      protein_coding
2488                      protein_coding
2489                      protein_coding
2490                      protein_coding
2491                      protein_coding
2492                      protein_coding
2493                      protein_coding
2494                      protein_coding
2495                      protein_coding
2496                      protein_coding
2497                      protein_coding
2498                      protein_coding
2499                      protein_coding
2500                      protein_coding
2501                      protein_coding
2502                      protein_coding
2503                      protein_coding
2504                      protein_coding
2505                      protein_coding
2506                      protein_coding
2507                      protein_coding
2508                      protein_coding
2509                      protein_coding
2510                      protein_coding
2511                      protein_coding
2512                           antisense
2513                           antisense
2514                   sense_overlapping
2515                   sense_overlapping
2516                   sense_overlapping
2517                   sense_overlapping
2518                   sense_overlapping
2519                      protein_coding
2520                      protein_coding
2521                      protein_coding
2522                      protein_coding
2523                      protein_coding
2524                      protein_coding
2525                      protein_coding
2526                      protein_coding
2527                      protein_coding
2528                      protein_coding
2529                      protein_coding
2530                      protein_coding
2531                      protein_coding
2532                      protein_coding
2533                      protein_coding
2534                      protein_coding
2535                      protein_coding
2536                      protein_coding
2537                      protein_coding
2538                      protein_coding
2539                      protein_coding
2540                      protein_coding
2541                      protein_coding
2542                      protein_coding
2543                      protein_coding
2544                      protein_coding
2545                      protein_coding
2546                      protein_coding
2547                      protein_coding
2548                      protein_coding
2549                      protein_coding
2550                      protein_coding
2551                      protein_coding
2552                      protein_coding
2553                      protein_coding
2554                      protein_coding
2555                      protein_coding
2556                      protein_coding
2557                      protein_coding
2558                      protein_coding
2559                      protein_coding
2560                      protein_coding
2561                      protein_coding
2562                      protein_coding
2563                      protein_coding
2564                      protein_coding
2565                      protein_coding
2566                      protein_coding
2567                      protein_coding
2568                      protein_coding
2569                      protein_coding
2570                      protein_coding
2571                      protein_coding
2572                      protein_coding
2573                      protein_coding
2574                      protein_coding
2575                      protein_coding
2576                      protein_coding
2577                      protein_coding
2578                      protein_coding
2579                      protein_coding
2580                      protein_coding
2581                      protein_coding
2582                      protein_coding
2583                      protein_coding
2584                      protein_coding
2585                      protein_coding
2586                      protein_coding
2587                      protein_coding
2588                      protein_coding
2589                      protein_coding
2590                      protein_coding
2591                      protein_coding
2592                      protein_coding
2593                      protein_coding
2594                      protein_coding
2595                      protein_coding
2596                      protein_coding
2597                      protein_coding
2598                      protein_coding
2599                      protein_coding
2600                      protein_coding
2601                      protein_coding
2602                      protein_coding
2603                      protein_coding
2604                      protein_coding
2605                      protein_coding
2606                      protein_coding
2607                      protein_coding
2608                      protein_coding
2609                      protein_coding
2610                      protein_coding
2611                      protein_coding
2612                      protein_coding
2613                      protein_coding
2614                      protein_coding
2615                      protein_coding
2616                      protein_coding
2617                      protein_coding
2618                      protein_coding
2619                      protein_coding
2620                      protein_coding
2621                      protein_coding
2622                      protein_coding
2623                      protein_coding
2624                      protein_coding
2625                      protein_coding
2626                      protein_coding
2627                      protein_coding
2628                      protein_coding
2629                      protein_coding
2630                      protein_coding
2631                      protein_coding
2632                      protein_coding
2633                      protein_coding
2634                      protein_coding
2635                      protein_coding
2636                      protein_coding
2637                      protein_coding
2638                      protein_coding
2639                      protein_coding
2640                      protein_coding
2641                      protein_coding
2642                      protein_coding
2643                      protein_coding
2644                      protein_coding
2645                      protein_coding
2646                      protein_coding
2647                      protein_coding
2648                      protein_coding
2649                      protein_coding
2650                      protein_coding
2651                      protein_coding
2652                      protein_coding
2653                      protein_coding
2654                      protein_coding
2655                      protein_coding
2656                      protein_coding
2657                      protein_coding
2658                      protein_coding
2659                      protein_coding
2660                      protein_coding
2661                      protein_coding
2662                      protein_coding
2663                      protein_coding
2664                      protein_coding
2665                      protein_coding
2666                      protein_coding
2667                      protein_coding
2668                      protein_coding
2669                      protein_coding
2670                      protein_coding
2671                      protein_coding
2672                      protein_coding
2673                      protein_coding
2674                      protein_coding
2675                      protein_coding
2676                      protein_coding
2677                      protein_coding
2678                      protein_coding
2679                      protein_coding
2680                      protein_coding
2681                      protein_coding
2682                      protein_coding
2683                      protein_coding
2684                      protein_coding
2685                      protein_coding
2686                      protein_coding
2687                      protein_coding
2688                      protein_coding
2689                      protein_coding
2690                      protein_coding
2691                      protein_coding
2692                      protein_coding
2693                      protein_coding
2694                      protein_coding
2695                      protein_coding
2696                      protein_coding
2697                      protein_coding
2698                      protein_coding
2699                      protein_coding
2700                      protein_coding
2701                      protein_coding
2702                      protein_coding
2703                      protein_coding
2704                      protein_coding
2705                      protein_coding
2706                      protein_coding
2707                      protein_coding
2708                      protein_coding
2709                      protein_coding
2710                      protein_coding
2711                      protein_coding
2712                      protein_coding
2713                      protein_coding
2714                      protein_coding
2715                      protein_coding
2716                      protein_coding
2717                      protein_coding
2718                      protein_coding
2719                      protein_coding
2720                      protein_coding
2721                      protein_coding
2722                      protein_coding
2723                      protein_coding
2724                      protein_coding
2725                      protein_coding
2726                      protein_coding
2727                      protein_coding
2728                      protein_coding
2729                      protein_coding
2730                      protein_coding
2731                      protein_coding
2732                      protein_coding
2733                      protein_coding
2734                      protein_coding
2735                      protein_coding
2736                      protein_coding
2737                      protein_coding
2738                      protein_coding
2739                      protein_coding
2740                      protein_coding
2741                      protein_coding
2742                      protein_coding
2743                      protein_coding
2744                      protein_coding
2745                      protein_coding
2746                      protein_coding
2747                      protein_coding
2748                           antisense
2749                           antisense
2750                             lincRNA
2751                             lincRNA
2752                      protein_coding
2753                      protein_coding
2754                      protein_coding
2755                      protein_coding
2756                      protein_coding
2757                      protein_coding
2758                      protein_coding
2759                      protein_coding
2760                      protein_coding
2761                      protein_coding
2762                      protein_coding
2763                      protein_coding
2764                      protein_coding
2765                      protein_coding
2766                      protein_coding
2767                      protein_coding
2768                      protein_coding
2769                      protein_coding
2770                      protein_coding
2771                      protein_coding
2772                      protein_coding
2773                      protein_coding
2774                      protein_coding
2775                      protein_coding
2776                      protein_coding
2777                      protein_coding
2778                             lincRNA
2779                             lincRNA
2780                           antisense
2781                           antisense
2782                             lincRNA
2783                             lincRNA
2784                             lincRNA
2785                             lincRNA
2786                             lincRNA
2787                             lincRNA
2788                             lincRNA
2789                      protein_coding
2790                      protein_coding
2791                      protein_coding
2792                      protein_coding
2793                      protein_coding
2794                      protein_coding
2795                      protein_coding
2796                      protein_coding
2797                      protein_coding
2798                      protein_coding
2799                      protein_coding
2800                      protein_coding
2801                      protein_coding
2802                      protein_coding
2803                      protein_coding
2804                      protein_coding
2805                      protein_coding
2806                      protein_coding
2807                      protein_coding
2808                      protein_coding
2809                      protein_coding
2810                      protein_coding
2811                      protein_coding
2812                      protein_coding
2813                      protein_coding
2814                      protein_coding
2815                      protein_coding
2816                      protein_coding
2817                      protein_coding
2818                      protein_coding
2819                      protein_coding
2820                      protein_coding
2821                      protein_coding
2822                      protein_coding
2823                      protein_coding
2824                      protein_coding
2825                      protein_coding
2826                      protein_coding
2827                      protein_coding
2828                      protein_coding
2829                      protein_coding
2830                      protein_coding
2831                      protein_coding
2832                      protein_coding
2833                      protein_coding
2834                      protein_coding
2835                      protein_coding
2836                      protein_coding
2837                      protein_coding
2838                      protein_coding
2839                      protein_coding
2840                      protein_coding
2841                      protein_coding
2842                      protein_coding
2843                      protein_coding
2844                      protein_coding
2845                      protein_coding
2846                      protein_coding
2847                      protein_coding
2848                      protein_coding
2849                      protein_coding
2850                      protein_coding
2851                      protein_coding
2852                      protein_coding
2853                      protein_coding
2854                      protein_coding
2855                      protein_coding
2856                      protein_coding
2857                      protein_coding
2858                      protein_coding
2859                      protein_coding
2860                      protein_coding
2861                      protein_coding
2862                      protein_coding
2863                      protein_coding
2864                      protein_coding
2865                      protein_coding
2866                      protein_coding
2867                      protein_coding
2868                      protein_coding
2869                      protein_coding
2870                      protein_coding
2871                      protein_coding
2872                      protein_coding
2873                      protein_coding
2874                      protein_coding
2875                      protein_coding
2876                      protein_coding
2877                      protein_coding
2878                      protein_coding
2879                      protein_coding
2880                      protein_coding
2881                      protein_coding
2882                      protein_coding
2883                      protein_coding
2884                      protein_coding
2885                      protein_coding
2886                      protein_coding
2887                      protein_coding
2888                      protein_coding
2889                      protein_coding
2890                      protein_coding
2891                      protein_coding
2892                      protein_coding
2893                      protein_coding
2894                      protein_coding
2895                      protein_coding
2896                      protein_coding
2897                      protein_coding
2898                      protein_coding
2899                      protein_coding
2900                      protein_coding
2901                      protein_coding
2902                      protein_coding
2903                      protein_coding
2904                      protein_coding
2905                      protein_coding
2906                      protein_coding
2907                      protein_coding
2908                      protein_coding
2909                      protein_coding
2910                      protein_coding
2911                      protein_coding
2912                      protein_coding
2913                      protein_coding
2914                      protein_coding
2915                      protein_coding
2916                      protein_coding
2917                      protein_coding
2918                      protein_coding
2919                      protein_coding
2920                      protein_coding
2921                      protein_coding
2922                      protein_coding
2923                      protein_coding
2924                      protein_coding
2925                      protein_coding
2926                      protein_coding
2927                      protein_coding
2928                      protein_coding
2929                      protein_coding
2930                      protein_coding
2931                      protein_coding
2932                      protein_coding
2933                      protein_coding
2934                      protein_coding
2935                      protein_coding
2936                      protein_coding
2937                      protein_coding
2938                      protein_coding
2939                      protein_coding
2940                      protein_coding
2941                      protein_coding
2942                      protein_coding
2943                      protein_coding
2944                      protein_coding
2945                      protein_coding
2946                      protein_coding
2947                      protein_coding
2948                      protein_coding
2949                      protein_coding
2950                      protein_coding
2951                      protein_coding
2952                      protein_coding
2953                      protein_coding
2954                      protein_coding
2955                      protein_coding
2956                      protein_coding
2957                      protein_coding
2958                      protein_coding
2959                      protein_coding
2960                      protein_coding
2961                      protein_coding
2962                      protein_coding
2963                      protein_coding
2964                      protein_coding
2965                      protein_coding
2966                      protein_coding
2967                      protein_coding
2968                      protein_coding
2969                      protein_coding
2970                      protein_coding
2971                      protein_coding
2972                      protein_coding
2973                      protein_coding
2974                      protein_coding
2975                      protein_coding
2976                      protein_coding
2977                      protein_coding
2978                      protein_coding
2979                      protein_coding
2980                      protein_coding
2981                      protein_coding
2982                      protein_coding
2983                      protein_coding
2984                processed_pseudogene
2985                processed_pseudogene
2986                               snRNA
2987                      protein_coding
2988                      protein_coding
2989                      protein_coding
2990                      protein_coding
2991                      protein_coding
2992                      protein_coding
2993                      protein_coding
2994                      protein_coding
2995                      protein_coding
2996                      protein_coding
2997                      protein_coding
2998                      protein_coding
2999                      protein_coding
3000                      protein_coding
3001                      protein_coding
3002                      protein_coding
3003                      protein_coding
3004                      protein_coding
3005                      protein_coding
3006                      protein_coding
3007                      protein_coding
3008                      protein_coding
3009                      protein_coding
3010                      protein_coding
3011                      protein_coding
3012                      protein_coding
3013                      protein_coding
3014                      protein_coding
3015                      protein_coding
3016                      protein_coding
3017                      protein_coding
3018                      protein_coding
3019                      protein_coding
3020                      protein_coding
3021                      protein_coding
3022                      protein_coding
3023                      protein_coding
3024                      protein_coding
3025                      protein_coding
3026                      protein_coding
3027                      protein_coding
3028                      protein_coding
3029                      protein_coding
3030                      protein_coding
3031                      protein_coding
3032                      protein_coding
3033                      protein_coding
3034                      protein_coding
3035                      protein_coding
3036                      protein_coding
3037                      protein_coding
3038                      protein_coding
3039                      protein_coding
3040                      protein_coding
3041                      protein_coding
3042                      protein_coding
3043                      protein_coding
3044                      protein_coding
3045                      protein_coding
3046                      protein_coding
3047                      protein_coding
3048                      protein_coding
3049                      protein_coding
3050                      protein_coding
3051                      protein_coding
3052                      protein_coding
3053                      protein_coding
3054                      protein_coding
3055                      protein_coding
3056                      protein_coding
3057                      protein_coding
3058                      protein_coding
3059                      protein_coding
3060                      protein_coding
3061                      protein_coding
3062                      protein_coding
3063                      protein_coding
3064                      protein_coding
3065                      protein_coding
3066                      protein_coding
3067                      protein_coding
3068                      protein_coding
3069                      protein_coding
3070                      protein_coding
3071                      protein_coding
3072                      protein_coding
3073                      protein_coding
3074                      protein_coding
3075                      protein_coding
3076                      protein_coding
3077                      protein_coding
3078                      protein_coding
3079                      protein_coding
3080                      protein_coding
3081                      protein_coding
3082                      protein_coding
3083                      protein_coding
3084                      protein_coding
3085                      protein_coding
3086                      protein_coding
3087                      protein_coding
3088                      protein_coding
3089                      protein_coding
3090                      protein_coding
3091                      protein_coding
3092                      protein_coding
3093                      protein_coding
3094                      protein_coding
3095                      protein_coding
3096                      protein_coding
3097                      protein_coding
3098                      protein_coding
3099                      protein_coding
3100                               snRNA
3101                processed_pseudogene
3102                           antisense
3103                           antisense
3104                           antisense
3105                           antisense
3106                           antisense
3107                           antisense
3108                           antisense
3109                           antisense
3110                      protein_coding
3111                      protein_coding
3112                      protein_coding
3113                      protein_coding
3114                      protein_coding
3115                      protein_coding
3116                      protein_coding
3117                      protein_coding
3118                      protein_coding
3119                      protein_coding
3120                      protein_coding
3121                      protein_coding
3122                      protein_coding
3123                      protein_coding
3124                      protein_coding
3125                      protein_coding
3126                      protein_coding
3127                      protein_coding
3128                      protein_coding
3129                      protein_coding
3130                      protein_coding
3131                      protein_coding
3132                      protein_coding
3133                      protein_coding
3134                      protein_coding
3135                      protein_coding
3136                      protein_coding
3137                      protein_coding
3138                      protein_coding
3139                      protein_coding
3140                      protein_coding
3141                      protein_coding
3142                      protein_coding
3143                      protein_coding
3144                      protein_coding
3145                      protein_coding
3146                      protein_coding
3147                      protein_coding
3148                      protein_coding
3149                      protein_coding
3150                      protein_coding
3151                      protein_coding
3152                      protein_coding
3153                      protein_coding
3154                      protein_coding
3155                      protein_coding
3156                      protein_coding
3157                      protein_coding
3158                      protein_coding
3159                      protein_coding
3160                      protein_coding
3161                processed_pseudogene
3162                      protein_coding
3163                      protein_coding
3164                      protein_coding
3165                      protein_coding
3166                      protein_coding
3167                      protein_coding
3168                      protein_coding
3169                      protein_coding
3170                      protein_coding
3171                      protein_coding
3172                      protein_coding
3173                      protein_coding
3174                      protein_coding
3175                      protein_coding
3176                      protein_coding
3177                      protein_coding
3178                      protein_coding
3179                      protein_coding
3180                      protein_coding
3181                      protein_coding
3182                      protein_coding
3183                      protein_coding
3184                      protein_coding
3185                      protein_coding
3186                      protein_coding
3187                      protein_coding
3188                      protein_coding
3189                      protein_coding
3190                      protein_coding
3191                      protein_coding
3192                      protein_coding
3193                      protein_coding
3194                      protein_coding
3195                      protein_coding
3196                      protein_coding
3197                      protein_coding
3198                      protein_coding
3199                      protein_coding
3200                      protein_coding
3201                      protein_coding
3202                      protein_coding
3203                      protein_coding
3204                      protein_coding
3205                      protein_coding
3206                      protein_coding
3207                      protein_coding
3208                      protein_coding
3209                      protein_coding
3210                      protein_coding
3211                      protein_coding
3212                      protein_coding
3213                      protein_coding
3214                      protein_coding
3215                      protein_coding
3216                      protein_coding
3217                      protein_coding
3218                      protein_coding
3219                      protein_coding
3220                      protein_coding
3221                      protein_coding
3222                      protein_coding
3223                      protein_coding
3224                      protein_coding
3225                      protein_coding
3226                      protein_coding
3227                      protein_coding
3228                      protein_coding
3229                      protein_coding
3230                      protein_coding
3231                      protein_coding
3232                      protein_coding
3233                      protein_coding
3234                      protein_coding
3235                      protein_coding
3236                      protein_coding
3237                      protein_coding
3238                      protein_coding
3239                      protein_coding
3240                      protein_coding
3241                      protein_coding
3242                      protein_coding
3243                      protein_coding
3244                      protein_coding
3245                      protein_coding
3246                      protein_coding
3247                      protein_coding
3248                      protein_coding
3249                      protein_coding
3250                      protein_coding
3251                      protein_coding
3252                      protein_coding
3253                      protein_coding
3254                      protein_coding
3255                      protein_coding
3256                      protein_coding
3257                      protein_coding
3258                      protein_coding
3259                      protein_coding
3260                      protein_coding
3261                      protein_coding
3262                      protein_coding
3263                      protein_coding
3264                      protein_coding
3265                      protein_coding
3266                      protein_coding
3267                      protein_coding
3268                      protein_coding
3269                      protein_coding
3270                      protein_coding
3271                      protein_coding
3272                      protein_coding
3273                      protein_coding
3274                      protein_coding
3275                      protein_coding
3276                      protein_coding
3277                      protein_coding
3278                      protein_coding
3279                      protein_coding
3280                      protein_coding
3281                      protein_coding
3282                      protein_coding
3283                      protein_coding
3284                      protein_coding
3285                      protein_coding
3286                      protein_coding
3287                      protein_coding
3288                      protein_coding
3289                      protein_coding
3290                      protein_coding
3291                      protein_coding
3292                          pseudogene
3293                          pseudogene
3294                      protein_coding
3295                      protein_coding
3296                      protein_coding
3297                      protein_coding
3298                      protein_coding
3299                      protein_coding
3300                      protein_coding
3301                      protein_coding
3302                      protein_coding
3303                      protein_coding
3304                      protein_coding
3305                      protein_coding
3306                      protein_coding
3307                      protein_coding
3308                      protein_coding
3309                      protein_coding
3310                      protein_coding
3311                      protein_coding
3312                      protein_coding
3313                      protein_coding
3314                      protein_coding
3315                      protein_coding
3316                      protein_coding
3317                      protein_coding
3318                      protein_coding
3319                      protein_coding
3320                      protein_coding
3321                      protein_coding
3322                      protein_coding
3323                      protein_coding
3324                      protein_coding
3325                      protein_coding
3326                      protein_coding
3327                      protein_coding
3328                      protein_coding
3329                      protein_coding
3330                      protein_coding
3331                               miRNA
3332                      protein_coding
3333                processed_pseudogene
3334                             lincRNA
3335                             lincRNA
3336                             lincRNA
3337                             lincRNA
3338                             lincRNA
3339                             lincRNA
3340                             lincRNA
3341                             lincRNA
3342                             lincRNA
3343                             lincRNA
3344                             lincRNA
3345                             lincRNA
3346                             lincRNA
3347                             lincRNA
3348                             lincRNA
3349                             lincRNA
3350                             lincRNA
3351                             lincRNA
3352                             lincRNA
3353                             lincRNA
3354                             lincRNA
3355                             lincRNA
3356                             lincRNA
3357                             lincRNA
3358                             lincRNA
3359                             lincRNA
3360                             lincRNA
3361                             lincRNA
3362                             lincRNA
3363                             lincRNA
3364                             lincRNA
3365                      protein_coding
3366                      protein_coding
3367                      protein_coding
3368                      protein_coding
3369                      protein_coding
3370                      protein_coding
3371                      protein_coding
3372                      protein_coding
3373                      protein_coding
3374                      protein_coding
3375                      protein_coding
3376                      protein_coding
3377                      protein_coding
3378                      protein_coding
3379                      protein_coding
3380                      protein_coding
3381                      protein_coding
3382                             lincRNA
3383                             lincRNA
3384                             lincRNA
3385                             lincRNA
3386                             lincRNA
3387                             lincRNA
3388                             lincRNA
3389                      protein_coding
3390                      protein_coding
3391                      protein_coding
3392                      protein_coding
3393                      protein_coding
3394                      protein_coding
3395                      protein_coding
3396                      protein_coding
3397                      protein_coding
3398                      protein_coding
3399                      protein_coding
3400                      protein_coding
3401                      protein_coding
3402                      protein_coding
3403                      protein_coding
3404                             lincRNA
3405                             lincRNA
3406                             lincRNA
3407                           antisense
3408                           antisense
3409                processed_pseudogene
3410                      protein_coding
3411                      protein_coding
3412                      protein_coding
3413                      protein_coding
3414                      protein_coding
3415                      protein_coding
3416                      protein_coding
3417                      protein_coding
3418                      protein_coding
3419                      protein_coding
3420                      protein_coding
3421                      protein_coding
3422                      protein_coding
3423                      protein_coding
3424                      protein_coding
3425                      protein_coding
3426                      protein_coding
3427                      protein_coding
3428                      protein_coding
3429                      protein_coding
3430                      protein_coding
3431                      protein_coding
3432                      protein_coding
3433                      protein_coding
3434                      protein_coding
3435                      protein_coding
3436                      protein_coding
3437                      protein_coding
3438                      protein_coding
3439                      protein_coding
3440                      protein_coding
3441                      protein_coding
3442                      protein_coding
3443                      protein_coding
3444                      protein_coding
3445                      protein_coding
3446                      protein_coding
3447                      protein_coding
3448                      protein_coding
3449                      protein_coding
3450                      protein_coding
3451                      protein_coding
3452                      protein_coding
3453                      protein_coding
3454                      protein_coding
3455                      protein_coding
3456                      protein_coding
3457                      protein_coding
3458                      protein_coding
3459                      protein_coding
3460                      protein_coding
3461                      protein_coding
3462                      protein_coding
3463                      protein_coding
3464                      protein_coding
3465                      protein_coding
3466                      protein_coding
3467                      protein_coding
3468                      protein_coding
3469                      protein_coding
3470                      protein_coding
3471                      protein_coding
3472                      protein_coding
3473                      protein_coding
3474                      protein_coding
3475                      protein_coding
3476                      protein_coding
3477                      protein_coding
3478                      protein_coding
3479                      protein_coding
3480                      protein_coding
3481                      protein_coding
3482                      protein_coding
3483                      protein_coding
3484                      protein_coding
3485                      protein_coding
3486                      protein_coding
3487                      protein_coding
3488                      protein_coding
3489                      protein_coding
3490                      protein_coding
3491                      protein_coding
3492                      protein_coding
3493                      protein_coding
3494                      protein_coding
3495                      protein_coding
3496                      protein_coding
3497                      protein_coding
3498                      protein_coding
3499                      protein_coding
3500                      protein_coding
3501                      protein_coding
3502                      protein_coding
3503                      protein_coding
3504                      protein_coding
3505                      protein_coding
3506                      protein_coding
3507                      protein_coding
3508                      protein_coding
3509                      protein_coding
3510                      protein_coding
3511                      protein_coding
3512                      protein_coding
3513                      protein_coding
3514                      protein_coding
3515                      protein_coding
3516                      protein_coding
3517                      protein_coding
3518                      protein_coding
3519                      protein_coding
3520                      protein_coding
3521                      protein_coding
3522                      protein_coding
3523                      protein_coding
3524                      protein_coding
3525                      protein_coding
3526                      protein_coding
3527                      protein_coding
3528                      protein_coding
3529                      protein_coding
3530                      protein_coding
3531                      protein_coding
3532                      protein_coding
3533                      protein_coding
3534                      protein_coding
3535                      protein_coding
3536                      protein_coding
3537                      protein_coding
3538                      protein_coding
3539                      protein_coding
3540                      protein_coding
3541                      protein_coding
3542                      protein_coding
3543                      protein_coding
3544                      protein_coding
3545                      protein_coding
3546                      protein_coding
3547                      protein_coding
3548                      protein_coding
3549                      protein_coding
3550                      protein_coding
3551                      protein_coding
3552                      protein_coding
3553                      protein_coding
3554                      protein_coding
3555                      protein_coding
3556                      protein_coding
3557                      protein_coding
3558                      protein_coding
3559                      protein_coding
3560                      protein_coding
3561                      protein_coding
3562                      protein_coding
3563                      protein_coding
3564                      protein_coding
3565                      protein_coding
3566                      protein_coding
3567                      protein_coding
3568                      protein_coding
3569                      protein_coding
3570                      protein_coding
3571                      protein_coding
3572                      protein_coding
3573                      protein_coding
3574                      protein_coding
3575                      protein_coding
3576                      protein_coding
3577                      protein_coding
3578                      protein_coding
3579                      protein_coding
3580                      protein_coding
3581                      protein_coding
3582                      protein_coding
3583                      protein_coding
3584                      protein_coding
3585                      protein_coding
3586                      protein_coding
3587                      protein_coding
3588                      protein_coding
3589                      protein_coding
3590                      protein_coding
3591                      protein_coding
3592                      protein_coding
3593                      protein_coding
3594                      protein_coding
3595                      protein_coding
3596                      protein_coding
3597                      protein_coding
3598                      protein_coding
3599                      protein_coding
3600                      protein_coding
3601                      protein_coding
3602                      protein_coding
3603                      protein_coding
3604                      protein_coding
3605                      protein_coding
3606                      protein_coding
3607                      protein_coding
3608                      protein_coding
3609                      protein_coding
3610                      protein_coding
3611                      protein_coding
3612                      protein_coding
3613                      protein_coding
3614                      protein_coding
3615                      protein_coding
3616                      protein_coding
3617                      protein_coding
3618                      protein_coding
3619                      protein_coding
3620                      protein_coding
3621                      protein_coding
3622                      protein_coding
3623                      protein_coding
3624                      protein_coding
3625                      protein_coding
3626                      protein_coding
3627                      protein_coding
3628                      protein_coding
3629                      protein_coding
3630                      protein_coding
3631                      protein_coding
3632                      protein_coding
3633                      protein_coding
3634                      protein_coding
3635                      protein_coding
3636                      protein_coding
3637                      protein_coding
3638                      protein_coding
3639                      protein_coding
3640                      protein_coding
3641                      protein_coding
3642                      protein_coding
3643                      protein_coding
3644                      protein_coding
3645                      protein_coding
3646                      protein_coding
3647                      protein_coding
3648                      protein_coding
3649                      protein_coding
3650                      protein_coding
3651                      protein_coding
3652                      protein_coding
3653                      protein_coding
3654                      protein_coding
3655                      protein_coding
3656                      protein_coding
3657                      protein_coding
3658                      protein_coding
3659                      protein_coding
3660                      protein_coding
3661                      protein_coding
3662                      protein_coding
3663                      protein_coding
3664                      protein_coding
3665                      protein_coding
3666                      protein_coding
3667                      protein_coding
3668                      protein_coding
3669                      protein_coding
3670                      protein_coding
3671                      protein_coding
3672                      protein_coding
3673                      protein_coding
3674                      protein_coding
3675                      protein_coding
3676                      protein_coding
3677                      protein_coding
3678                           antisense
3679                           antisense
3680                               miRNA
3681                             lincRNA
3682                             lincRNA
3683                             lincRNA
3684                      protein_coding
3685                      protein_coding
3686                      protein_coding
3687                      protein_coding
3688                      protein_coding
3689                      protein_coding
3690                      protein_coding
3691                      protein_coding
3692                      protein_coding
3693                      protein_coding
3694                      protein_coding
3695                      protein_coding
3696                      protein_coding
3697                      protein_coding
3698                      protein_coding
3699                      protein_coding
3700                      protein_coding
3701                      protein_coding
3702                      protein_coding
3703                      protein_coding
3704                      protein_coding
3705                      protein_coding
3706                      protein_coding
3707                      protein_coding
3708                      protein_coding
3709                      protein_coding
3710                      protein_coding
3711                      protein_coding
3712                      protein_coding
3713                      protein_coding
3714                      protein_coding
3715                      protein_coding
3716                      protein_coding
3717                      protein_coding
3718                      protein_coding
3719                      protein_coding
3720                      protein_coding
3721                      protein_coding
3722                      protein_coding
3723                      protein_coding
3724                      protein_coding
3725                      protein_coding
3726                      protein_coding
3727                      protein_coding
3728                      protein_coding
3729                      protein_coding
3730                      protein_coding
3731                      protein_coding
3732                      protein_coding
3733                      protein_coding
3734                      protein_coding
3735                      protein_coding
3736                      protein_coding
3737                      protein_coding
3738                      protein_coding
3739                      protein_coding
3740                      protein_coding
3741                      protein_coding
3742                      protein_coding
3743                      protein_coding
3744                      protein_coding
3745                      protein_coding
3746                      protein_coding
3747                      protein_coding
3748                      protein_coding
3749                      protein_coding
3750                      protein_coding
3751                      protein_coding
3752                      protein_coding
3753                      protein_coding
3754                      protein_coding
3755                      protein_coding
3756                      protein_coding
3757                      protein_coding
3758                      protein_coding
3759                      protein_coding
3760                      protein_coding
3761                      protein_coding
3762                      protein_coding
3763                      protein_coding
3764                             lincRNA
3765                             lincRNA
3766                             lincRNA
3767                             lincRNA
3768                             lincRNA
3769                             lincRNA
3770                             lincRNA
3771                             lincRNA
3772                      protein_coding
3773                      protein_coding
3774                      protein_coding
3775                      protein_coding
3776                      protein_coding
3777                      protein_coding
3778                      protein_coding
3779                      protein_coding
3780                      protein_coding
3781                      protein_coding
3782                      protein_coding
3783                      protein_coding
3784                      protein_coding
3785                      protein_coding
3786                      protein_coding
3787                      protein_coding
3788                      protein_coding
3789                      protein_coding
3790                      protein_coding
3791                      protein_coding
3792                      protein_coding
3793                      protein_coding
3794                      protein_coding
3795                      protein_coding
3796                      protein_coding
3797                      protein_coding
3798                      protein_coding
3799                      protein_coding
3800                      protein_coding
3801                      protein_coding
3802                      protein_coding
3803                      protein_coding
3804                      protein_coding
3805                      protein_coding
3806                      protein_coding
3807                      protein_coding
3808                      protein_coding
3809                      protein_coding
3810                      protein_coding
3811                      protein_coding
3812                      protein_coding
3813                      protein_coding
3814                      protein_coding
3815                      protein_coding
3816                      protein_coding
3817                      protein_coding
3818                      protein_coding
3819                      protein_coding
3820                      protein_coding
3821                      protein_coding
3822                      protein_coding
3823                      protein_coding
3824                      protein_coding
3825                      protein_coding
3826                      protein_coding
3827                      protein_coding
3828                      protein_coding
3829                      protein_coding
3830                      protein_coding
3831                      protein_coding
3832                      protein_coding
3833                      protein_coding
3834                      protein_coding
3835                      protein_coding
3836                      protein_coding
3837                      protein_coding
3838                      protein_coding
3839                      protein_coding
3840                      protein_coding
3841                      protein_coding
3842                      protein_coding
3843                      protein_coding
3844                      protein_coding
3845                      protein_coding
3846                      protein_coding
3847                      protein_coding
3848                      protein_coding
3849                      protein_coding
3850                      protein_coding
3851                      protein_coding
3852                      protein_coding
3853                      protein_coding
3854                      protein_coding
3855                      protein_coding
3856                      protein_coding
3857                      protein_coding
3858                      protein_coding
3859                      protein_coding
3860                      protein_coding
3861                      protein_coding
3862                      protein_coding
3863                      protein_coding
3864                      protein_coding
3865                      protein_coding
3866                      protein_coding
3867                      protein_coding
3868                      protein_coding
3869                      protein_coding
3870                      protein_coding
3871                      protein_coding
3872                      protein_coding
3873                      protein_coding
3874                      protein_coding
3875                      protein_coding
3876                      protein_coding
3877                      protein_coding
3878                      protein_coding
3879                      protein_coding
3880                      protein_coding
3881                      protein_coding
3882                      protein_coding
3883                      protein_coding
3884                      protein_coding
3885                      protein_coding
3886                      protein_coding
3887                      protein_coding
3888                      protein_coding
3889                      protein_coding
3890                      protein_coding
3891                      protein_coding
3892                      protein_coding
3893                      protein_coding
3894                      protein_coding
3895                      protein_coding
3896                      protein_coding
3897                      protein_coding
3898                      protein_coding
3899                      protein_coding
3900                      protein_coding
3901                      protein_coding
3902                      protein_coding
3903                      protein_coding
3904                      protein_coding
3905                      protein_coding
3906                      protein_coding
3907                      protein_coding
3908                      protein_coding
3909                      protein_coding
3910                      protein_coding
3911                      protein_coding
3912                      protein_coding
3913                      protein_coding
3914                      protein_coding
3915                      protein_coding
3916                      protein_coding
3917                      protein_coding
3918                      protein_coding
3919                      protein_coding
3920                      protein_coding
3921                      protein_coding
3922                      protein_coding
3923                      protein_coding
3924                      protein_coding
3925                      protein_coding
3926                      protein_coding
3927                      protein_coding
3928                      protein_coding
3929                      protein_coding
3930                      protein_coding
3931                      protein_coding
3932                      protein_coding
3933                      protein_coding
3934                      protein_coding
3935                      protein_coding
3936                      protein_coding
3937                      protein_coding
3938                      protein_coding
3939                      protein_coding
3940                      protein_coding
3941                      protein_coding
3942                      protein_coding
3943                      protein_coding
3944                      protein_coding
3945                      protein_coding
3946                      protein_coding
3947                      protein_coding
3948                      protein_coding
3949                      protein_coding
3950                      protein_coding
3951                      protein_coding
3952                      protein_coding
3953                      protein_coding
3954                      protein_coding
3955                      protein_coding
3956                      protein_coding
3957                      protein_coding
3958                      protein_coding
3959                      protein_coding
3960                      protein_coding
3961                      protein_coding
3962                      protein_coding
3963                      protein_coding
3964                      protein_coding
3965                      protein_coding
3966                      protein_coding
3967                      protein_coding
3968                      protein_coding
3969                      protein_coding
3970                      protein_coding
3971                      protein_coding
3972                      protein_coding
3973                      protein_coding
3974                      protein_coding
3975                      protein_coding
3976                      protein_coding
3977                      protein_coding
3978                      protein_coding
3979                      protein_coding
3980                      protein_coding
3981                      protein_coding
3982                      protein_coding
3983                      protein_coding
3984                      protein_coding
3985                      protein_coding
3986                      protein_coding
3987                      protein_coding
3988                      protein_coding
3989                      protein_coding
3990                      protein_coding
3991                      protein_coding
3992                      protein_coding
3993                      protein_coding
3994                      protein_coding
3995                      protein_coding
3996                      protein_coding
3997                      protein_coding
3998                      protein_coding
3999                      protein_coding
4000                      protein_coding
4001                      protein_coding
4002                      protein_coding
4003                      protein_coding
4004                      protein_coding
4005                      protein_coding
4006                      protein_coding
4007                      protein_coding
4008                      protein_coding
4009                      protein_coding
4010                      protein_coding
4011                      protein_coding
4012                      protein_coding
4013                      protein_coding
4014                      protein_coding
4015                      protein_coding
4016                      protein_coding
4017                      protein_coding
4018                      protein_coding
4019                      protein_coding
4020                      protein_coding
4021                      protein_coding
4022                      protein_coding
4023                      protein_coding
4024                      protein_coding
4025                      protein_coding
4026                      protein_coding
4027                      protein_coding
4028                      protein_coding
4029                      protein_coding
4030                      protein_coding
4031                      protein_coding
4032                      protein_coding
4033                      protein_coding
4034                      protein_coding
4035                      protein_coding
4036                      protein_coding
4037                      protein_coding
4038                      protein_coding
4039                      protein_coding
4040                      protein_coding
4041                      protein_coding
4042                      protein_coding
4043                      protein_coding
4044                      protein_coding
4045                      protein_coding
4046                      protein_coding
4047                      protein_coding
4048                      protein_coding
4049                      protein_coding
4050                      protein_coding
4051                      protein_coding
4052                      protein_coding
4053                      protein_coding
4054                      protein_coding
4055                      protein_coding
4056                      protein_coding
4057                      protein_coding
4058                      protein_coding
4059                      protein_coding
4060                      protein_coding
4061                      protein_coding
4062                      protein_coding
4063                      protein_coding
4064                      protein_coding
4065                      protein_coding
4066                      protein_coding
4067                      protein_coding
4068                      protein_coding
4069                      protein_coding
4070                      protein_coding
4071                      protein_coding
4072                      protein_coding
4073                      protein_coding
4074                      protein_coding
4075                      protein_coding
4076                      protein_coding
4077                      protein_coding
4078                      protein_coding
4079                      protein_coding
4080                      protein_coding
4081                      protein_coding
4082                      protein_coding
4083                      protein_coding
4084                      protein_coding
4085                      protein_coding
4086                      protein_coding
4087                      protein_coding
4088                      protein_coding
4089                      protein_coding
4090                      protein_coding
4091                      protein_coding
4092                      protein_coding
4093                      protein_coding
4094                      protein_coding
4095                      protein_coding
4096                      protein_coding
4097                      protein_coding
4098                      protein_coding
4099                      protein_coding
4100                      protein_coding
4101                      protein_coding
4102                      protein_coding
4103                      protein_coding
4104                      protein_coding
4105                      protein_coding
4106                      protein_coding
4107                      protein_coding
4108                      protein_coding
4109                      protein_coding
4110                      protein_coding
4111                      protein_coding
4112                      protein_coding
4113                      protein_coding
4114                      protein_coding
4115                      protein_coding
4116                      protein_coding
4117                      protein_coding
4118                      protein_coding
4119                      protein_coding
4120                      protein_coding
4121                      protein_coding
4122                      protein_coding
4123                      protein_coding
4124                      protein_coding
4125                      protein_coding
4126                      protein_coding
4127                      protein_coding
4128                      protein_coding
4129                      protein_coding
4130                      protein_coding
4131                      protein_coding
4132                      protein_coding
4133                      protein_coding
4134                      protein_coding
4135                      protein_coding
4136                      protein_coding
4137                      protein_coding
4138                      protein_coding
4139                      protein_coding
4140                      protein_coding
4141                      protein_coding
4142                      protein_coding
4143                      protein_coding
4144                      protein_coding
4145                      protein_coding
4146                      protein_coding
4147                      protein_coding
4148                      protein_coding
4149                      protein_coding
4150                      protein_coding
4151                      protein_coding
4152                      protein_coding
4153                      protein_coding
4154                      protein_coding
4155                      protein_coding
4156                      protein_coding
4157                      protein_coding
4158                      protein_coding
4159                      protein_coding
4160                      protein_coding
4161                      protein_coding
4162                      protein_coding
4163                      protein_coding
4164                      protein_coding
4165                      protein_coding
4166                      protein_coding
4167                      protein_coding
4168                      protein_coding
4169                      protein_coding
4170                      protein_coding
4171                      protein_coding
4172                      protein_coding
4173                      protein_coding
4174                      protein_coding
4175                      protein_coding
4176                      protein_coding
4177                      protein_coding
4178                      protein_coding
4179                      protein_coding
4180                      protein_coding
4181                      protein_coding
4182                      protein_coding
4183                      protein_coding
4184                      protein_coding
4185                      protein_coding
4186                      protein_coding
4187                      protein_coding
4188                      protein_coding
4189                      protein_coding
4190                      protein_coding
4191                      protein_coding
4192                      protein_coding
4193                      protein_coding
4194                           antisense
4195                           antisense
4196                           antisense
4197                           antisense
4198                             lincRNA
4199                             lincRNA
4200                      protein_coding
4201                      protein_coding
4202                      protein_coding
4203                      protein_coding
4204                      protein_coding
4205                      protein_coding
4206                      protein_coding
4207                      protein_coding
4208                      protein_coding
4209                      protein_coding
4210                      protein_coding
4211                      protein_coding
4212                      protein_coding
4213                      protein_coding
4214                      protein_coding
4215                      protein_coding
4216                      protein_coding
4217                      protein_coding
4218                      protein_coding
4219                      protein_coding
4220                      protein_coding
4221                      protein_coding
4222                      protein_coding
4223                      protein_coding
4224                      protein_coding
4225                      protein_coding
4226                      protein_coding
4227                      protein_coding
4228                      protein_coding
4229                      protein_coding
4230                      protein_coding
4231                      protein_coding
4232                      protein_coding
4233                      protein_coding
4234                      protein_coding
4235                      protein_coding
4236                      protein_coding
4237                      protein_coding
4238                      protein_coding
4239                      protein_coding
4240                      protein_coding
4241                      protein_coding
4242                      protein_coding
4243                      protein_coding
4244                      protein_coding
4245                      protein_coding
4246                      protein_coding
4247                      protein_coding
4248                      protein_coding
4249                      protein_coding
4250                      protein_coding
4251                      protein_coding
4252                      protein_coding
4253                      protein_coding
4254                      protein_coding
4255                      protein_coding
4256                      protein_coding
4257                      protein_coding
4258                      protein_coding
4259                      protein_coding
4260                      protein_coding
4261                      protein_coding
4262                      protein_coding
4263                           antisense
4264                           antisense
4265                      sense_intronic
4266                      sense_intronic
4267                      sense_intronic
4268                      sense_intronic
4269                      sense_intronic
4270                      sense_intronic
4271                      sense_intronic
4272                      protein_coding
4273                      protein_coding
4274                      protein_coding
4275                      protein_coding
4276                      protein_coding
4277                      protein_coding
4278                      protein_coding
4279                      protein_coding
4280                      protein_coding
4281                      protein_coding
4282                      protein_coding
4283                      protein_coding
4284                      protein_coding
4285                      protein_coding
4286                      protein_coding
4287                      protein_coding
4288                      protein_coding
4289                      protein_coding
4290                      protein_coding
4291                      protein_coding
4292                      protein_coding
4293                      protein_coding
4294                      protein_coding
4295                      protein_coding
4296                      protein_coding
4297                      protein_coding
4298                      protein_coding
4299                      protein_coding
4300                      protein_coding
4301                      protein_coding
4302                      protein_coding
4303                      protein_coding
4304                      protein_coding
4305                      protein_coding
4306                      protein_coding
4307                      protein_coding
4308                      protein_coding
4309                      protein_coding
4310                      protein_coding
4311                      protein_coding
4312                      protein_coding
4313                      protein_coding
4314                      protein_coding
4315                      protein_coding
4316                      protein_coding
4317                      protein_coding
4318                      protein_coding
4319                      protein_coding
4320                      protein_coding
4321                      protein_coding
4322                      protein_coding
4323                      protein_coding
4324                      protein_coding
4325                      protein_coding
4326                      protein_coding
4327                      protein_coding
4328                      protein_coding
4329                      protein_coding
4330                      protein_coding
4331                      protein_coding
4332                      protein_coding
4333                      protein_coding
4334                      protein_coding
4335                      protein_coding
4336                      protein_coding
4337                      protein_coding
4338                      protein_coding
4339                      protein_coding
4340                      protein_coding
4341                      protein_coding
4342                      protein_coding
4343                      protein_coding
4344                      protein_coding
4345                      protein_coding
4346                      protein_coding
4347                      protein_coding
4348                      protein_coding
4349                      protein_coding
4350                      protein_coding
4351                      protein_coding
4352                      protein_coding
4353                      protein_coding
4354                      protein_coding
4355                      protein_coding
4356                      protein_coding
4357                      protein_coding
4358                      protein_coding
4359                      protein_coding
4360                      protein_coding
4361                      protein_coding
4362                      protein_coding
4363                      protein_coding
4364                      protein_coding
4365                      protein_coding
4366                      protein_coding
4367                      protein_coding
4368                      protein_coding
4369                      protein_coding
4370                      protein_coding
4371                      protein_coding
4372                      protein_coding
4373                      protein_coding
4374                      protein_coding
4375                      protein_coding
4376                      protein_coding
4377                      protein_coding
4378                      protein_coding
4379                      protein_coding
4380                      protein_coding
4381                      protein_coding
4382                      protein_coding
4383                               snRNA
4384                      protein_coding
4385                      protein_coding
4386                      protein_coding
4387                      protein_coding
4388                      protein_coding
4389                      protein_coding
4390                      protein_coding
4391                      protein_coding
4392                      protein_coding
4393                      protein_coding
4394                      protein_coding
4395                      protein_coding
4396                      protein_coding
4397                      protein_coding
4398                      protein_coding
4399                      protein_coding
4400                      protein_coding
4401                      protein_coding
4402                      protein_coding
4403                      protein_coding
4404                      protein_coding
4405                      protein_coding
4406                      protein_coding
4407                      protein_coding
4408                      protein_coding
4409                      protein_coding
4410                      protein_coding
4411                      protein_coding
4412                      protein_coding
4413                      protein_coding
4414                      protein_coding
4415                      protein_coding
4416                      protein_coding
4417                      protein_coding
4418                      protein_coding
4419                      protein_coding
4420                      protein_coding
4421                      protein_coding
4422                      protein_coding
4423                      protein_coding
4424                      protein_coding
4425                      protein_coding
4426                      protein_coding
4427                      protein_coding
4428                      protein_coding
4429                      protein_coding
4430                      protein_coding
4431                      protein_coding
4432                      protein_coding
4433                      protein_coding
4434                      protein_coding
4435                      protein_coding
4436                      protein_coding
4437                      protein_coding
4438                      protein_coding
4439                      protein_coding
4440                      protein_coding
4441                      protein_coding
4442                      protein_coding
4443                      protein_coding
4444                      protein_coding
4445                      protein_coding
4446                      protein_coding
4447                      protein_coding
4448                      protein_coding
4449                      protein_coding
4450                      protein_coding
4451                      protein_coding
4452                      protein_coding
4453                      protein_coding
4454                      protein_coding
4455                      protein_coding
4456                      protein_coding
4457                      protein_coding
4458                      protein_coding
4459                      protein_coding
4460                      protein_coding
4461                      protein_coding
4462                      protein_coding
4463                      protein_coding
4464                      protein_coding
4465                      protein_coding
4466                      protein_coding
4467                      protein_coding
4468                      protein_coding
4469                      protein_coding
4470                      protein_coding
4471                      protein_coding
4472                      protein_coding
4473                      protein_coding
4474                      protein_coding
4475                      protein_coding
4476                      protein_coding
4477                      protein_coding
4478                      protein_coding
4479                      protein_coding
4480                      protein_coding
4481                      protein_coding
4482                      protein_coding
4483                      protein_coding
4484                      protein_coding
4485                      protein_coding
4486                      protein_coding
4487                      protein_coding
4488                      protein_coding
4489                      protein_coding
4490                      protein_coding
4491                      protein_coding
4492                      protein_coding
4493                      protein_coding
4494                      protein_coding
4495                      protein_coding
4496                      protein_coding
4497                      protein_coding
4498                      protein_coding
4499                      protein_coding
4500                      protein_coding
4501                      protein_coding
4502                      protein_coding
4503                      protein_coding
4504                      protein_coding
4505                      protein_coding
4506                      protein_coding
4507                      protein_coding
4508                      protein_coding
4509                      protein_coding
4510                      protein_coding
4511                      protein_coding
4512                      protein_coding
4513                      protein_coding
4514                      protein_coding
4515                      protein_coding
4516                      protein_coding
4517                      protein_coding
4518                      protein_coding
4519                      protein_coding
4520                      protein_coding
4521                      protein_coding
4522                      protein_coding
4523                      protein_coding
4524                      protein_coding
4525                      protein_coding
4526                      protein_coding
4527                      protein_coding
4528                      protein_coding
4529                      protein_coding
4530                      protein_coding
4531                      protein_coding
4532                      protein_coding
4533                      protein_coding
4534                      protein_coding
4535                      protein_coding
4536                      protein_coding
4537                      protein_coding
4538                      protein_coding
4539                      protein_coding
4540                      protein_coding
4541                      protein_coding
4542                      protein_coding
4543                      protein_coding
4544                      protein_coding
4545                      protein_coding
4546                      protein_coding
4547                      protein_coding
4548                      protein_coding
4549                      protein_coding
4550                      protein_coding
4551                      protein_coding
4552                      protein_coding
4553                      protein_coding
4554                      protein_coding
4555                      protein_coding
4556                      protein_coding
4557                      protein_coding
4558                      protein_coding
4559                      protein_coding
4560                      protein_coding
4561                      protein_coding
4562                      protein_coding
4563                      protein_coding
4564                      protein_coding
4565                      protein_coding
4566                      protein_coding
4567                      protein_coding
4568                      protein_coding
4569                      protein_coding
4570                      protein_coding
4571                      protein_coding
4572                      protein_coding
4573                      protein_coding
4574                      protein_coding
4575                      protein_coding
4576                      protein_coding
4577                      protein_coding
4578                      protein_coding
4579                      protein_coding
4580                      protein_coding
4581                      protein_coding
4582                      protein_coding
4583                      protein_coding
4584                      protein_coding
4585                      protein_coding
4586                      protein_coding
4587                      protein_coding
4588                      protein_coding
4589                      protein_coding
4590                      protein_coding
4591                      protein_coding
4592                      protein_coding
4593                      protein_coding
4594                      protein_coding
4595                      protein_coding
4596                      protein_coding
4597                      protein_coding
4598                      protein_coding
4599                      protein_coding
4600                      protein_coding
4601                      protein_coding
4602                      protein_coding
4603                      protein_coding
4604                      protein_coding
4605                      protein_coding
4606                      protein_coding
4607                      protein_coding
4608                      protein_coding
4609                      protein_coding
4610                      protein_coding
4611                      protein_coding
4612                      protein_coding
4613                      protein_coding
4614                      protein_coding
4615                      protein_coding
4616                      protein_coding
4617                      protein_coding
4618                      protein_coding
4619                      protein_coding
4620                      protein_coding
4621                      protein_coding
4622                      protein_coding
4623                                rRNA
4624                      protein_coding
4625                      protein_coding
4626                      protein_coding
4627                      protein_coding
4628                      protein_coding
4629                      protein_coding
4630                      protein_coding
4631                      protein_coding
4632                      protein_coding
4633                      protein_coding
4634                      protein_coding
4635                      protein_coding
4636                      protein_coding
4637                      protein_coding
4638                      protein_coding
4639                      protein_coding
4640                      protein_coding
4641                      protein_coding
4642                      protein_coding
4643                      protein_coding
4644                      protein_coding
4645                      protein_coding
4646                      protein_coding
4647                      protein_coding
4648                      protein_coding
4649                      protein_coding
4650                      protein_coding
4651                      protein_coding
4652                      protein_coding
4653                      protein_coding
4654                      protein_coding
4655                      protein_coding
4656                      protein_coding
4657                      protein_coding
4658                      protein_coding
4659                      protein_coding
4660                      protein_coding
4661                      protein_coding
4662                      protein_coding
4663                      protein_coding
4664                      protein_coding
4665                      protein_coding
4666                      protein_coding
4667                      protein_coding
4668                      protein_coding
4669                      protein_coding
4670                      protein_coding
4671                      protein_coding
4672                      protein_coding
4673                      protein_coding
4674                      protein_coding
4675                      protein_coding
4676                      protein_coding
4677                      protein_coding
4678                      protein_coding
4679                      protein_coding
4680                      protein_coding
4681                      protein_coding
4682                      protein_coding
4683                      protein_coding
4684                      protein_coding
4685                      protein_coding
4686                      protein_coding
4687                      protein_coding
4688                      protein_coding
4689                      protein_coding
4690                      protein_coding
4691                      protein_coding
4692                      protein_coding
4693                      protein_coding
4694                      protein_coding
4695                      protein_coding
4696                      protein_coding
4697                      protein_coding
4698                      protein_coding
4699                      protein_coding
4700                      protein_coding
4701                      protein_coding
4702                      protein_coding
4703                      protein_coding
4704                      protein_coding
4705                      protein_coding
4706                      protein_coding
4707                      protein_coding
4708                      protein_coding
4709                      protein_coding
4710                      protein_coding
4711                      protein_coding
4712                      protein_coding
4713                      protein_coding
4714                      protein_coding
4715                      protein_coding
4716                      protein_coding
4717                      protein_coding
4718                      protein_coding
4719                      protein_coding
4720                      protein_coding
4721                      protein_coding
4722                      protein_coding
4723                      protein_coding
4724                      protein_coding
4725                      protein_coding
4726                      protein_coding
4727                      protein_coding
4728                      protein_coding
4729                      protein_coding
4730                      protein_coding
4731                      protein_coding
4732                      protein_coding
4733                      protein_coding
4734                      protein_coding
4735                      protein_coding
4736                      protein_coding
4737                      protein_coding
4738                      protein_coding
4739                      protein_coding
4740                      protein_coding
4741                      protein_coding
4742                      protein_coding
4743                      protein_coding
4744                      protein_coding
4745                      protein_coding
4746                      protein_coding
4747                      protein_coding
4748                      protein_coding
4749                      protein_coding
4750                      protein_coding
4751                      protein_coding
4752                      protein_coding
4753                      protein_coding
4754                      protein_coding
4755                      protein_coding
4756                      protein_coding
4757                      protein_coding
4758                      protein_coding
4759                      protein_coding
4760                      protein_coding
4761                      protein_coding
4762                      protein_coding
4763                      protein_coding
4764                      protein_coding
4765                      protein_coding
4766                      protein_coding
4767                      protein_coding
4768                      protein_coding
4769                      protein_coding
4770                      protein_coding
4771                      protein_coding
4772                      protein_coding
4773                      protein_coding
4774                      protein_coding
4775                   sense_overlapping
4776                   sense_overlapping
4777                             lincRNA
4778                             lincRNA
4779                             lincRNA
4780                             lincRNA
4781                             lincRNA
4782                             lincRNA
4783                      protein_coding
4784                      protein_coding
4785                      protein_coding
4786                      protein_coding
4787                      protein_coding
4788                      protein_coding
4789                      protein_coding
4790                      protein_coding
4791                      protein_coding
4792                      protein_coding
4793                      protein_coding
4794                      protein_coding
4795                      protein_coding
4796                      protein_coding
4797                      protein_coding
4798                      protein_coding
4799                      protein_coding
4800                      protein_coding
4801                      protein_coding
4802                      protein_coding
4803                      protein_coding
4804                      protein_coding
4805                      protein_coding
4806                      protein_coding
4807                      protein_coding
4808                      protein_coding
4809                      protein_coding
4810                      protein_coding
4811                      protein_coding
4812                      protein_coding
4813                      protein_coding
4814                      protein_coding
4815                      protein_coding
4816                      protein_coding
4817                      protein_coding
4818                      protein_coding
4819                      protein_coding
4820                      protein_coding
4821                      protein_coding
4822                      protein_coding
4823                      protein_coding
4824                      protein_coding
4825                      protein_coding
4826                      protein_coding
4827                      protein_coding
4828                      protein_coding
4829                      protein_coding
4830                      protein_coding
4831                      protein_coding
4832                      protein_coding
4833                      protein_coding
4834                      protein_coding
4835                      protein_coding
4836                      protein_coding
4837                      protein_coding
4838                      protein_coding
4839                      protein_coding
4840                      protein_coding
4841                      protein_coding
4842                      protein_coding
4843                      protein_coding
4844                      protein_coding
4845                      protein_coding
4846                      protein_coding
4847                      protein_coding
4848                      protein_coding
4849                      protein_coding
4850                      protein_coding
4851                      protein_coding
4852                      protein_coding
4853                      protein_coding
4854                      protein_coding
4855                      protein_coding
4856                      protein_coding
4857                      protein_coding
4858                      protein_coding
4859                      protein_coding
4860                      protein_coding
4861                      protein_coding
4862                      protein_coding
4863                      protein_coding
4864                      protein_coding
4865                      protein_coding
4866                      protein_coding
4867                      protein_coding
4868                      protein_coding
4869                      protein_coding
4870                      protein_coding
4871                      protein_coding
4872                      protein_coding
4873                      protein_coding
4874                      protein_coding
4875                              snoRNA
4876                      protein_coding
4877                      protein_coding
4878                      protein_coding
4879                      protein_coding
4880                      protein_coding
4881                      protein_coding
4882                      protein_coding
4883                      protein_coding
4884                      protein_coding
4885                      protein_coding
4886                      protein_coding
4887                      protein_coding
4888                      protein_coding
4889                      protein_coding
4890                      protein_coding
4891                      protein_coding
4892                      protein_coding
4893                      protein_coding
4894                      protein_coding
4895                      protein_coding
4896                      protein_coding
4897                      protein_coding
4898                      protein_coding
4899                      protein_coding
4900                      protein_coding
4901                      protein_coding
4902                      protein_coding
4903                      protein_coding
4904                      protein_coding
4905                      protein_coding
4906                      protein_coding
4907                      protein_coding
4908                      protein_coding
4909                      protein_coding
4910                      protein_coding
4911                      protein_coding
4912                      protein_coding
4913                      protein_coding
4914                      protein_coding
4915                      protein_coding
4916                      protein_coding
4917                      protein_coding
4918                      protein_coding
4919                      protein_coding
4920                      protein_coding
4921                      protein_coding
4922                      protein_coding
4923                      protein_coding
4924                      protein_coding
4925                      protein_coding
4926                      protein_coding
4927                      protein_coding
4928                      protein_coding
4929                      protein_coding
4930                      protein_coding
4931                      protein_coding
4932                      protein_coding
4933                      protein_coding
4934                      protein_coding
4935                      protein_coding
4936                      protein_coding
4937                      protein_coding
4938                      protein_coding
4939                      protein_coding
4940                      protein_coding
4941                      protein_coding
4942                      protein_coding
4943                      protein_coding
4944                      protein_coding
4945                      protein_coding
4946                      protein_coding
4947                      protein_coding
4948                      protein_coding
4949                      protein_coding
4950                      protein_coding
4951                      protein_coding
4952                      protein_coding
4953                      protein_coding
4954                      protein_coding
4955                      protein_coding
4956                      protein_coding
4957                      protein_coding
4958                      protein_coding
4959                      protein_coding
4960                      protein_coding
4961                      protein_coding
4962                      protein_coding
4963                      protein_coding
4964                      protein_coding
4965                      protein_coding
4966                      protein_coding
4967                      protein_coding
4968                      protein_coding
4969                      protein_coding
4970                      protein_coding
4971                      protein_coding
4972                      protein_coding
4973                      protein_coding
4974                      protein_coding
4975                      protein_coding
4976                      protein_coding
4977                      protein_coding
4978                      protein_coding
4979                      protein_coding
4980                      protein_coding
4981                      protein_coding
4982                      protein_coding
4983                      protein_coding
4984                      protein_coding
4985                      protein_coding
4986                      protein_coding
4987                      protein_coding
4988                      protein_coding
4989                      protein_coding
4990                      protein_coding
4991                      protein_coding
4992                      protein_coding
4993                      protein_coding
4994                      protein_coding
4995                      protein_coding
4996                      protein_coding
4997                      protein_coding
4998                      protein_coding
4999                      protein_coding
5000                      protein_coding
5001                      protein_coding
5002                      protein_coding
5003                      protein_coding
5004                      protein_coding
5005                      protein_coding
5006                      protein_coding
5007                      protein_coding
5008                      protein_coding
5009                      protein_coding
5010                      protein_coding
5011                      protein_coding
5012                      protein_coding
5013                      protein_coding
5014                      protein_coding
5015                      protein_coding
5016                      protein_coding
5017                      protein_coding
5018                      protein_coding
5019                      protein_coding
5020                      protein_coding
5021                      protein_coding
5022                      protein_coding
5023                      protein_coding
5024                      protein_coding
5025                      protein_coding
5026                      protein_coding
5027                      protein_coding
5028                      protein_coding
5029                      protein_coding
5030                      protein_coding
5031                      protein_coding
5032                      protein_coding
5033                      protein_coding
5034                      protein_coding
5035                      protein_coding
5036                      protein_coding
5037                      protein_coding
5038                      protein_coding
5039                      protein_coding
5040                      protein_coding
5041                      protein_coding
5042                      protein_coding
5043                      protein_coding
5044                      protein_coding
5045                      protein_coding
5046                      protein_coding
5047                      protein_coding
5048                      protein_coding
5049                      protein_coding
5050                      protein_coding
5051                      protein_coding
5052                      protein_coding
5053                      protein_coding
5054                      protein_coding
5055                      protein_coding
5056                      protein_coding
5057                      protein_coding
5058                      protein_coding
5059                      protein_coding
5060                      protein_coding
5061                      protein_coding
5062                      protein_coding
5063                      protein_coding
5064                      protein_coding
5065                      protein_coding
5066                      protein_coding
5067                      protein_coding
5068                      protein_coding
5069                      protein_coding
5070                      protein_coding
5071                      protein_coding
5072                      protein_coding
5073                      protein_coding
5074                      protein_coding
5075                      protein_coding
5076                      protein_coding
5077                      protein_coding
5078                      protein_coding
5079                      protein_coding
5080                      protein_coding
5081                      protein_coding
5082                      protein_coding
5083                      protein_coding
5084                      protein_coding
5085                      protein_coding
5086                      protein_coding
5087                      protein_coding
5088                      protein_coding
5089                      protein_coding
5090                      protein_coding
5091                      protein_coding
5092                      protein_coding
5093                      protein_coding
5094                      protein_coding
5095                      protein_coding
5096                      protein_coding
5097                      protein_coding
5098                      protein_coding
5099                      protein_coding
5100                      protein_coding
5101                      protein_coding
5102                      protein_coding
5103                      protein_coding
5104                      protein_coding
5105                      protein_coding
5106                      protein_coding
5107                      protein_coding
5108                      protein_coding
5109                      protein_coding
5110                      protein_coding
5111                      protein_coding
5112                      protein_coding
5113                      protein_coding
5114                      protein_coding
5115                      protein_coding
5116                      protein_coding
5117                      protein_coding
5118                      protein_coding
5119                      protein_coding
5120                      protein_coding
5121                      protein_coding
5122                      protein_coding
5123                      protein_coding
5124                      protein_coding
5125                      protein_coding
5126                      protein_coding
5127                      protein_coding
5128                      sense_intronic
5129                      sense_intronic
5130                      sense_intronic
5131                           antisense
5132                           antisense
5133                      protein_coding
5134                      protein_coding
5135                      protein_coding
5136                      protein_coding
5137                      protein_coding
5138                      protein_coding
5139                      protein_coding
5140                      protein_coding
5141                      protein_coding
5142                      protein_coding
5143                      protein_coding
5144                      protein_coding
5145                      protein_coding
5146                      protein_coding
5147                      protein_coding
5148                      protein_coding
5149                      protein_coding
5150                               miRNA
5151                           antisense
5152                           antisense
5153                           antisense
5154                           antisense
5155                           antisense
5156                             lincRNA
5157                             lincRNA
5158                             lincRNA
5159                             lincRNA
5160                             lincRNA
5161                             lincRNA
5162                             lincRNA
5163                             lincRNA
5164                             lincRNA
5165                             lincRNA
5166                             lincRNA
5167                             lincRNA
5168                             lincRNA
5169                             lincRNA
5170                             lincRNA
5171                             lincRNA
5172                             lincRNA
5173                             lincRNA
5174                             lincRNA
5175                             lincRNA
5176                             lincRNA
5177                             lincRNA
5178                             lincRNA
5179                             lincRNA
5180                             lincRNA
5181                             lincRNA
5182                             lincRNA
5183                             lincRNA
5184                              snoRNA
5185                      protein_coding
5186                      protein_coding
5187                      protein_coding
5188                      protein_coding
5189                      protein_coding
5190                      protein_coding
5191                      protein_coding
5192                      protein_coding
5193                      protein_coding
5194                      protein_coding
5195                      protein_coding
5196                      protein_coding
5197                      protein_coding
5198                      protein_coding
5199                      protein_coding
5200                      protein_coding
5201                      protein_coding
5202                      protein_coding
5203                      protein_coding
5204                      protein_coding
5205                      protein_coding
5206                      protein_coding
5207                      protein_coding
5208                      protein_coding
5209                      protein_coding
5210                      protein_coding
5211                      protein_coding
5212                      protein_coding
5213                      protein_coding
5214                      protein_coding
5215                      protein_coding
5216                      protein_coding
5217                      protein_coding
5218                      protein_coding
5219                      protein_coding
5220                      protein_coding
5221                      protein_coding
5222                      protein_coding
5223                      protein_coding
5224                      protein_coding
5225                      protein_coding
5226                      protein_coding
5227                      protein_coding
5228                      protein_coding
5229                      protein_coding
5230                      protein_coding
5231                      protein_coding
5232                      protein_coding
5233                      protein_coding
5234                      protein_coding
5235                      protein_coding
5236                      protein_coding
5237                      protein_coding
5238                      protein_coding
5239                      protein_coding
5240                      protein_coding
5241                      protein_coding
5242                      protein_coding
5243                      protein_coding
5244                      protein_coding
5245                      protein_coding
5246                      protein_coding
5247                      protein_coding
5248                      protein_coding
5249                      protein_coding
5250                      protein_coding
5251                      protein_coding
5252                      protein_coding
5253                      protein_coding
5254                      protein_coding
5255                      protein_coding
5256                      protein_coding
5257                      protein_coding
5258                      protein_coding
5259                      protein_coding
5260                      protein_coding
5261                      protein_coding
5262                      protein_coding
5263                      protein_coding
5264                      protein_coding
5265                      protein_coding
5266                      protein_coding
5267                      protein_coding
5268                      protein_coding
5269                      protein_coding
5270                      protein_coding
5271                      protein_coding
5272                      protein_coding
5273                      protein_coding
5274                      protein_coding
5275                      protein_coding
5276                      protein_coding
5277                      protein_coding
5278                      protein_coding
5279                      protein_coding
5280                      protein_coding
5281                      protein_coding
5282                      protein_coding
5283                      protein_coding
5284                      protein_coding
5285                      protein_coding
5286                      protein_coding
5287                      protein_coding
5288                      protein_coding
5289                      protein_coding
5290                      protein_coding
5291                      protein_coding
5292                      protein_coding
5293                      protein_coding
5294                      protein_coding
5295                      protein_coding
5296                      protein_coding
5297                      protein_coding
5298                      protein_coding
5299                      protein_coding
5300                      protein_coding
5301                      protein_coding
5302                      protein_coding
5303                      protein_coding
5304                      protein_coding
5305                      protein_coding
5306                      protein_coding
5307                      protein_coding
5308                      protein_coding
5309                      protein_coding
5310                      protein_coding
5311                      protein_coding
5312                      protein_coding
5313                      protein_coding
5314                      protein_coding
5315                      protein_coding
5316                      protein_coding
5317                      protein_coding
5318                      protein_coding
5319                      protein_coding
5320                      protein_coding
5321                      protein_coding
5322                      protein_coding
5323                      protein_coding
5324                      protein_coding
5325                      protein_coding
5326                      protein_coding
5327                      protein_coding
5328                      protein_coding
5329                      protein_coding
5330                      protein_coding
5331                      protein_coding
5332                      protein_coding
5333                      protein_coding
5334                      protein_coding
5335                      protein_coding
5336                      protein_coding
5337                      protein_coding
5338                      protein_coding
5339                      protein_coding
5340                      protein_coding
5341                      protein_coding
5342                      protein_coding
5343                      protein_coding
5344                      protein_coding
5345                      protein_coding
5346                      protein_coding
5347                      protein_coding
5348                      protein_coding
5349                      protein_coding
5350                      protein_coding
5351                      protein_coding
5352                      protein_coding
5353                      protein_coding
5354                      protein_coding
5355                      protein_coding
5356                      protein_coding
5357                      protein_coding
5358                      protein_coding
5359                      protein_coding
5360                      protein_coding
5361                      protein_coding
5362                      protein_coding
5363                      protein_coding
5364                      protein_coding
5365                      protein_coding
5366                      protein_coding
5367                      protein_coding
5368                      protein_coding
5369                      protein_coding
5370                      protein_coding
5371                      protein_coding
5372                      protein_coding
5373                      protein_coding
5374                      protein_coding
5375                      protein_coding
5376                      protein_coding
5377                      protein_coding
5378                      protein_coding
5379                      protein_coding
5380                      protein_coding
5381                      protein_coding
5382                      protein_coding
5383                      protein_coding
5384                      protein_coding
5385                      protein_coding
5386                      protein_coding
5387                      protein_coding
5388                      protein_coding
5389                      protein_coding
5390                      protein_coding
5391                      protein_coding
5392                      protein_coding
5393                      protein_coding
5394                      protein_coding
5395                      protein_coding
5396                      protein_coding
5397                           antisense
5398                           antisense
5399                           antisense
5400                      protein_coding
5401                      protein_coding
5402                      protein_coding
5403                      protein_coding
5404                      protein_coding
5405                      protein_coding
5406                      protein_coding
5407                      protein_coding
5408                      protein_coding
5409                      protein_coding
5410                      protein_coding
5411                      protein_coding
5412                      protein_coding
5413                      protein_coding
5414                      protein_coding
5415                      protein_coding
5416                      protein_coding
5417                      protein_coding
5418                      protein_coding
5419                      protein_coding
5420                      protein_coding
5421                      protein_coding
5422                      protein_coding
5423                      protein_coding
5424                      protein_coding
5425                      protein_coding
5426                      protein_coding
5427                      protein_coding
5428                      protein_coding
5429                      protein_coding
5430                      protein_coding
5431                      protein_coding
5432                      protein_coding
5433                      protein_coding
5434                      protein_coding
5435                      protein_coding
5436                      protein_coding
5437                      protein_coding
5438                      protein_coding
5439                      protein_coding
5440                      protein_coding
5441                      protein_coding
5442                      protein_coding
5443                      protein_coding
5444                      protein_coding
5445                      protein_coding
5446                      protein_coding
5447                      protein_coding
5448                      protein_coding
5449                      protein_coding
5450                      protein_coding
5451                      protein_coding
5452                      protein_coding
5453                      protein_coding
5454                      protein_coding
5455                      protein_coding
5456                      protein_coding
5457                      protein_coding
5458                      protein_coding
5459                      protein_coding
5460                      protein_coding
5461                      protein_coding
5462                      protein_coding
5463                      protein_coding
5464                      protein_coding
5465                      protein_coding
5466                      protein_coding
5467                      protein_coding
5468                      protein_coding
5469                      protein_coding
5470                      protein_coding
5471                      protein_coding
5472                      protein_coding
5473                      protein_coding
5474                      protein_coding
5475                      protein_coding
5476                      protein_coding
5477                      protein_coding
5478                      protein_coding
5479                      protein_coding
5480                      protein_coding
5481                      protein_coding
5482                      protein_coding
5483                      protein_coding
5484                      protein_coding
5485                      protein_coding
5486                      protein_coding
5487                      protein_coding
5488                      protein_coding
5489                      protein_coding
5490                      protein_coding
5491                      protein_coding
5492                      protein_coding
5493                      protein_coding
5494                      protein_coding
5495                      protein_coding
5496                      protein_coding
5497                      protein_coding
5498                      protein_coding
5499                      protein_coding
5500                      protein_coding
5501                      protein_coding
5502                      protein_coding
5503                      protein_coding
5504                      protein_coding
5505                      protein_coding
5506                      protein_coding
5507                      protein_coding
5508                      protein_coding
5509                      protein_coding
5510                      protein_coding
5511                      protein_coding
5512                      protein_coding
5513                      protein_coding
5514                      protein_coding
5515                      protein_coding
5516                      protein_coding
5517                      protein_coding
5518                      protein_coding
5519                      protein_coding
5520                      protein_coding
5521                      protein_coding
5522                      protein_coding
5523                      protein_coding
5524                      protein_coding
5525                      protein_coding
5526                      protein_coding
5527                      protein_coding
5528                      protein_coding
5529                      protein_coding
5530                      protein_coding
5531                      protein_coding
5532                      protein_coding
5533                      protein_coding
5534                      protein_coding
5535                      protein_coding
5536                      protein_coding
5537                      protein_coding
5538                      protein_coding
5539                      protein_coding
5540                      protein_coding
5541                      protein_coding
5542                      protein_coding
5543                      protein_coding
5544                      protein_coding
5545                      protein_coding
5546                      protein_coding
5547                      protein_coding
5548                      protein_coding
5549                      protein_coding
5550                      protein_coding
5551                      protein_coding
5552                      protein_coding
5553                      protein_coding
5554                      protein_coding
5555                      protein_coding
5556                      protein_coding
5557                      protein_coding
5558                      protein_coding
5559                      protein_coding
5560                      protein_coding
5561                      protein_coding
5562                      protein_coding
5563                      protein_coding
5564                      protein_coding
5565                      protein_coding
5566                      protein_coding
5567                      protein_coding
5568                      protein_coding
5569                      protein_coding
5570                      protein_coding
5571                      protein_coding
5572                      protein_coding
5573                           antisense
5574                           antisense
5575                           antisense
5576                           antisense
5577                           antisense
5578                           antisense
5579                           antisense
5580                           antisense
5581                           antisense
5582                           antisense
5583                                 TEC
5584                                 TEC
5585                           antisense
5586                           antisense
5587                               miRNA
5588                           antisense
5589                           antisense
5590                           antisense
5591                           antisense
5592                           antisense
5593                           antisense
5594                           antisense
5595                processed_pseudogene
5596                      protein_coding
5597                      protein_coding
5598                      protein_coding
5599                      protein_coding
5600                      protein_coding
5601                      protein_coding
5602                      protein_coding
5603                      protein_coding
5604                      protein_coding
5605                      protein_coding
5606                      protein_coding
5607                      protein_coding
5608                      protein_coding
5609                      protein_coding
5610                      protein_coding
5611                      protein_coding
5612                      protein_coding
5613                      protein_coding
5614                      protein_coding
5615                      protein_coding
5616                      protein_coding
5617                      protein_coding
5618                      protein_coding
5619                      protein_coding
5620                      protein_coding
5621                      protein_coding
5622                      protein_coding
5623                      protein_coding
5624                      protein_coding
5625                      protein_coding
5626                      protein_coding
5627                      protein_coding
5628                      protein_coding
5629                      protein_coding
5630                      protein_coding
5631                      protein_coding
5632                      protein_coding
5633                      protein_coding
5634                      protein_coding
5635                      protein_coding
5636                      protein_coding
5637                      protein_coding
5638                      protein_coding
5639                      protein_coding
5640                      protein_coding
5641                      protein_coding
5642                      protein_coding
5643                      protein_coding
5644                      protein_coding
5645                      protein_coding
5646                      protein_coding
5647                      protein_coding
5648                      protein_coding
5649                      protein_coding
5650                      protein_coding
5651                      protein_coding
5652                      protein_coding
5653                      protein_coding
5654                      protein_coding
5655                      protein_coding
5656                      protein_coding
5657                      protein_coding
5658                      protein_coding
5659                      protein_coding
5660                      protein_coding
5661                      protein_coding
5662                      protein_coding
5663                      protein_coding
5664                      protein_coding
5665                      protein_coding
5666                      protein_coding
5667                      protein_coding
5668                      protein_coding
5669                      protein_coding
5670                      protein_coding
5671                      protein_coding
5672                      protein_coding
5673                      protein_coding
5674                      protein_coding
5675                      protein_coding
5676                      protein_coding
5677                      protein_coding
5678                      protein_coding
5679                      protein_coding
5680                      protein_coding
5681                      protein_coding
5682                      protein_coding
5683                      protein_coding
5684                      protein_coding
5685                      protein_coding
5686                      protein_coding
5687                      protein_coding
5688                      sense_intronic
5689                      sense_intronic
5690                      sense_intronic
5691                      sense_intronic
5692                      sense_intronic
5693                      sense_intronic
5694                      sense_intronic
5695                      sense_intronic
5696                              snoRNA
5697                           antisense
5698                           antisense
5699                           antisense
5700                           antisense
5701                           antisense
5702                           antisense
5703                           antisense
5704                           antisense
5705                           antisense
5706                           antisense
5707                               miRNA
5708                      protein_coding
5709                      protein_coding
5710                      protein_coding
5711                      protein_coding
5712                      protein_coding
5713                      protein_coding
5714                      protein_coding
5715                      protein_coding
5716                      protein_coding
5717                      protein_coding
5718                      protein_coding
5719                      protein_coding
5720                      protein_coding
5721                      protein_coding
5722                      protein_coding
5723                      protein_coding
5724                      protein_coding
5725                      protein_coding
5726                      protein_coding
5727                      protein_coding
5728                      protein_coding
5729                      protein_coding
5730                      protein_coding
5731                      protein_coding
5732                      protein_coding
5733                      protein_coding
5734                      protein_coding
5735                      protein_coding
5736                      protein_coding
5737                      protein_coding
5738                      protein_coding
5739                             lincRNA
5740                             lincRNA
5741                             lincRNA
5742                             lincRNA
5743                             lincRNA
5744                   sense_overlapping
5745                   sense_overlapping
5746                   sense_overlapping
5747                      protein_coding
5748                      protein_coding
5749                      protein_coding
5750                      protein_coding
5751                      protein_coding
5752                      protein_coding
5753                      protein_coding
5754                      protein_coding
5755                      protein_coding
5756                      protein_coding
5757                      protein_coding
5758                      protein_coding
5759                      protein_coding
5760                      protein_coding
5761                      protein_coding
5762                      protein_coding
5763                      protein_coding
5764                      protein_coding
5765                           antisense
5766                           antisense
5767                           antisense
5768                           antisense
5769                           antisense
5770                           antisense
5771                           antisense
5772                           antisense
5773                           antisense
5774                           antisense
5775                           antisense
5776                processed_pseudogene
5777                processed_pseudogene
5778                      protein_coding
5779                      protein_coding
5780                      protein_coding
5781                      protein_coding
5782                      protein_coding
5783                      protein_coding
5784                      protein_coding
5785                      protein_coding
5786                      protein_coding
5787                      protein_coding
5788                      protein_coding
5789                      protein_coding
5790                      protein_coding
5791                      protein_coding
5792                      protein_coding
5793                      protein_coding
5794                      protein_coding
5795                      protein_coding
5796                      protein_coding
5797                      protein_coding
5798                      protein_coding
5799                      protein_coding
5800                      protein_coding
5801                      protein_coding
5802                      protein_coding
5803                      protein_coding
5804                      protein_coding
5805                      protein_coding
5806                      protein_coding
5807                      protein_coding
5808                      protein_coding
5809                      protein_coding
5810                      protein_coding
5811                      protein_coding
5812                      protein_coding
5813                      protein_coding
5814                      protein_coding
5815                      protein_coding
5816                      protein_coding
5817                      protein_coding
5818                      protein_coding
5819                      protein_coding
5820                      protein_coding
5821                      protein_coding
5822                      protein_coding
5823                      protein_coding
5824                      protein_coding
5825                      protein_coding
5826                      protein_coding
5827                      protein_coding
5828                      protein_coding
5829                      protein_coding
5830                processed_pseudogene
5831                processed_pseudogene
5832                               miRNA
5833                      protein_coding
5834                      protein_coding
5835                      protein_coding
5836                      protein_coding
5837                      protein_coding
5838                      protein_coding
5839                      protein_coding
5840                      protein_coding
5841                      protein_coding
5842                      protein_coding
5843                      protein_coding
5844                      protein_coding
5845                      protein_coding
5846                      protein_coding
5847                      protein_coding
5848                      protein_coding
5849                      protein_coding
5850                      protein_coding
5851                      protein_coding
5852                      protein_coding
5853                      protein_coding
5854                      protein_coding
5855                      protein_coding
5856                      protein_coding
5857                      protein_coding
5858                      protein_coding
5859                      protein_coding
5860                      protein_coding
5861                      protein_coding
5862                      protein_coding
5863                      protein_coding
5864                      protein_coding
5865                      protein_coding
5866                      protein_coding
5867                      protein_coding
5868                      protein_coding
5869                      protein_coding
5870                      protein_coding
5871                      protein_coding
5872                      protein_coding
5873                      protein_coding
5874                      protein_coding
5875                      protein_coding
5876                      protein_coding
5877                      protein_coding
5878                      protein_coding
5879                      protein_coding
5880                      protein_coding
5881                      protein_coding
5882                      protein_coding
5883                      protein_coding
5884                      protein_coding
5885                      protein_coding
5886                      protein_coding
5887                      protein_coding
5888                      protein_coding
5889                      protein_coding
5890                      protein_coding
5891                      protein_coding
5892                      protein_coding
5893                      protein_coding
5894                      protein_coding
5895                      protein_coding
5896                      protein_coding
5897                      protein_coding
5898                      protein_coding
5899                      protein_coding
5900                      protein_coding
5901                      protein_coding
5902                      protein_coding
5903                      protein_coding
5904                      protein_coding
5905                      protein_coding
5906                      protein_coding
5907                      protein_coding
5908                      protein_coding
5909                      protein_coding
5910                      protein_coding
5911                      protein_coding
5912                      protein_coding
5913                      protein_coding
5914                      protein_coding
5915                      protein_coding
5916                      protein_coding
5917                      protein_coding
5918                      protein_coding
5919                      protein_coding
5920                      protein_coding
5921                      protein_coding
5922                      protein_coding
5923                      protein_coding
5924                      protein_coding
5925                      protein_coding
5926                      protein_coding
5927                      protein_coding
5928                      protein_coding
5929                      protein_coding
5930                      protein_coding
5931                      protein_coding
5932                      protein_coding
5933                      protein_coding
5934                      protein_coding
5935                      protein_coding
5936                      protein_coding
5937                      protein_coding
5938                      protein_coding
5939                      protein_coding
5940                      protein_coding
5941                      protein_coding
5942                      protein_coding
5943                      protein_coding
5944                      protein_coding
5945                      protein_coding
5946                      protein_coding
5947                      protein_coding
5948                      protein_coding
5949                      protein_coding
5950                      protein_coding
5951                      protein_coding
5952                      protein_coding
5953                      protein_coding
5954                      protein_coding
5955                      protein_coding
5956                      protein_coding
5957                      protein_coding
5958                      protein_coding
5959                      protein_coding
5960                      protein_coding
5961                      protein_coding
5962                      protein_coding
5963                      protein_coding
5964                      protein_coding
5965                      protein_coding
5966                      protein_coding
5967                      protein_coding
5968                      protein_coding
5969                      protein_coding
5970                      protein_coding
5971                      protein_coding
5972                      protein_coding
5973                      protein_coding
5974                      protein_coding
5975                      protein_coding
5976                      protein_coding
5977                      protein_coding
5978                      protein_coding
5979                      protein_coding
5980                      protein_coding
5981                      protein_coding
5982                      protein_coding
5983                      protein_coding
5984                      protein_coding
5985                      protein_coding
5986                      protein_coding
5987                      protein_coding
5988                      protein_coding
5989                      protein_coding
5990                      protein_coding
5991                      protein_coding
5992                      protein_coding
5993                      protein_coding
5994                      protein_coding
5995                      protein_coding
5996                      protein_coding
5997                      protein_coding
5998                      protein_coding
5999                      protein_coding
6000                      protein_coding
6001                processed_pseudogene
6002                processed_pseudogene
6003                processed_pseudogene
6004                processed_pseudogene
6005                processed_pseudogene
6006                      protein_coding
6007                      protein_coding
6008                      protein_coding
6009                      protein_coding
6010                      protein_coding
6011                      protein_coding
6012                      protein_coding
6013                      protein_coding
6014                      protein_coding
6015                      protein_coding
6016                      protein_coding
6017                      protein_coding
6018                      protein_coding
6019                      protein_coding
6020                      protein_coding
6021                      protein_coding
6022                      protein_coding
6023                      protein_coding
6024                      protein_coding
6025                      protein_coding
6026                      protein_coding
6027                      protein_coding
6028                      protein_coding
6029                      protein_coding
6030                      protein_coding
6031                      protein_coding
6032                      protein_coding
6033                      protein_coding
6034                      protein_coding
6035                      protein_coding
6036                      protein_coding
6037                      protein_coding
6038                      protein_coding
6039                      protein_coding
6040                      protein_coding
6041                      protein_coding
6042                      protein_coding
6043                      protein_coding
6044                      protein_coding
6045                      protein_coding
6046                      protein_coding
6047                      protein_coding
6048                      protein_coding
6049                      protein_coding
6050                      protein_coding
6051                      protein_coding
6052                      protein_coding
6053                      protein_coding
6054                      protein_coding
6055                      protein_coding
6056                      protein_coding
6057                      protein_coding
6058                      protein_coding
6059                      protein_coding
6060                      protein_coding
6061                      protein_coding
6062                      protein_coding
6063                      protein_coding
6064                      protein_coding
6065                      protein_coding
6066                      protein_coding
6067                      protein_coding
6068                      protein_coding
6069                      protein_coding
6070                      protein_coding
6071                      protein_coding
6072                      protein_coding
6073                      protein_coding
6074                      protein_coding
6075                      protein_coding
6076                      protein_coding
6077                      protein_coding
6078                      protein_coding
6079                      protein_coding
6080                      protein_coding
6081                      protein_coding
6082                      protein_coding
6083                      protein_coding
6084                      protein_coding
6085                      protein_coding
6086                      protein_coding
6087                      protein_coding
6088                      protein_coding
6089                      protein_coding
6090                      protein_coding
6091                      protein_coding
6092                      protein_coding
6093                      protein_coding
6094                      protein_coding
6095                      protein_coding
6096                      protein_coding
6097                      protein_coding
6098                      protein_coding
6099                      protein_coding
6100                      protein_coding
6101                      protein_coding
6102                      protein_coding
6103                      protein_coding
6104                      protein_coding
6105                      protein_coding
6106                      protein_coding
6107                      protein_coding
6108                      protein_coding
6109                      protein_coding
6110                      protein_coding
6111                      protein_coding
6112                      protein_coding
6113                      protein_coding
6114                      protein_coding
6115                      protein_coding
6116                      protein_coding
6117                      protein_coding
6118                      protein_coding
6119                      protein_coding
6120                      protein_coding
6121                      protein_coding
6122                      protein_coding
6123                            misc_RNA
6124                           antisense
6125                           antisense
6126                           antisense
6127                      protein_coding
6128                      protein_coding
6129                      protein_coding
6130                      protein_coding
6131                      protein_coding
6132                      protein_coding
6133                      protein_coding
6134                      protein_coding
6135                      protein_coding
6136                      protein_coding
6137                      protein_coding
6138                      protein_coding
6139                      protein_coding
6140                      protein_coding
6141                      protein_coding
6142                      protein_coding
6143                      protein_coding
6144                      protein_coding
6145                      protein_coding
6146                      protein_coding
6147                      protein_coding
6148                      protein_coding
6149                      protein_coding
6150                      protein_coding
6151                      protein_coding
6152                      protein_coding
6153                      protein_coding
6154                      protein_coding
6155                      protein_coding
6156                      protein_coding
6157                      protein_coding
6158                      protein_coding
6159                      protein_coding
6160                      protein_coding
6161                      protein_coding
6162                      protein_coding
6163                      protein_coding
6164                      protein_coding
6165                      protein_coding
6166                      protein_coding
6167                      protein_coding
6168                      protein_coding
6169                      protein_coding
6170                      protein_coding
6171                      protein_coding
6172                      protein_coding
6173                      protein_coding
6174                      protein_coding
6175                      protein_coding
6176                      protein_coding
6177                      protein_coding
6178                      protein_coding
6179                      protein_coding
6180                      protein_coding
6181                      protein_coding
6182                      protein_coding
6183                      protein_coding
6184                      protein_coding
6185                      protein_coding
6186                      protein_coding
6187                      protein_coding
6188                      protein_coding
6189                      protein_coding
6190                      protein_coding
6191                      protein_coding
6192                      protein_coding
6193                      protein_coding
6194                      protein_coding
6195                      protein_coding
6196                      protein_coding
6197                      protein_coding
6198                      protein_coding
6199                      protein_coding
6200                      protein_coding
6201                      protein_coding
6202                      protein_coding
6203                      protein_coding
6204                      protein_coding
6205                      protein_coding
6206                      protein_coding
6207                      protein_coding
6208                      protein_coding
6209                      protein_coding
6210                      protein_coding
6211                      protein_coding
6212                      protein_coding
6213                      protein_coding
6214                      protein_coding
6215                      protein_coding
6216                      protein_coding
6217                      protein_coding
6218                      protein_coding
6219                      protein_coding
6220                      protein_coding
6221                      protein_coding
6222                      protein_coding
6223                      protein_coding
6224                      protein_coding
6225                      protein_coding
6226                      protein_coding
6227                      protein_coding
6228                      protein_coding
6229                      protein_coding
6230                      protein_coding
6231                      protein_coding
6232                      protein_coding
6233                      protein_coding
6234                      protein_coding
6235                      protein_coding
6236                      protein_coding
6237                      protein_coding
6238                      protein_coding
6239                      protein_coding
6240                      protein_coding
6241                      protein_coding
6242                      protein_coding
6243                      protein_coding
6244                      protein_coding
6245                      protein_coding
6246                      protein_coding
6247                      protein_coding
6248                      protein_coding
6249                      protein_coding
6250                      protein_coding
6251                      protein_coding
6252                      protein_coding
6253                      protein_coding
6254                      protein_coding
6255                      protein_coding
6256                      protein_coding
6257                      protein_coding
6258                      protein_coding
6259                      protein_coding
6260                      protein_coding
6261                      protein_coding
6262                      protein_coding
6263                      protein_coding
6264                      protein_coding
6265                      protein_coding
6266                      protein_coding
6267                      protein_coding
6268                      protein_coding
6269                      protein_coding
6270                      protein_coding
6271                      protein_coding
6272                      protein_coding
6273                      protein_coding
6274                      protein_coding
6275                      protein_coding
6276                      protein_coding
6277                      protein_coding
6278                      protein_coding
6279                      protein_coding
6280                      protein_coding
6281                      protein_coding
6282                      protein_coding
6283                      protein_coding
6284                      protein_coding
6285                      protein_coding
6286                      protein_coding
6287                      protein_coding
6288                      protein_coding
6289                      protein_coding
6290                      protein_coding
6291                      protein_coding
6292                      protein_coding
6293                      protein_coding
6294                      protein_coding
6295                      protein_coding
6296                      protein_coding
6297                      protein_coding
6298                      protein_coding
6299                      protein_coding
6300                      protein_coding
6301                      protein_coding
6302                      protein_coding
6303                      protein_coding
6304                      protein_coding
6305                      protein_coding
6306                      protein_coding
6307                      protein_coding
6308                      protein_coding
6309                      protein_coding
6310                      protein_coding
6311                      protein_coding
6312                      protein_coding
6313                      protein_coding
6314                      protein_coding
6315                      protein_coding
6316                      protein_coding
6317                      protein_coding
6318                      protein_coding
6319                      protein_coding
6320                      protein_coding
6321                      protein_coding
6322                      protein_coding
6323                      protein_coding
6324                      protein_coding
6325                      protein_coding
6326                      protein_coding
6327                      protein_coding
6328                      protein_coding
6329                      protein_coding
6330                      protein_coding
6331                      protein_coding
6332                      protein_coding
6333                      protein_coding
6334                      protein_coding
6335                      protein_coding
6336                      protein_coding
6337                      protein_coding
6338                      protein_coding
6339                      protein_coding
6340                      protein_coding
6341                      protein_coding
6342                      protein_coding
6343                      protein_coding
6344                      protein_coding
6345                      protein_coding
6346                      protein_coding
6347                      protein_coding
6348                      protein_coding
6349                      protein_coding
6350                      protein_coding
6351                      protein_coding
6352                      protein_coding
6353                      protein_coding
6354                      protein_coding
6355                      protein_coding
6356                      protein_coding
6357                      protein_coding
6358                      protein_coding
6359                      protein_coding
6360                      protein_coding
6361                      protein_coding
6362                      protein_coding
6363                      protein_coding
6364                      protein_coding
6365                      protein_coding
6366                      protein_coding
6367                      protein_coding
6368                      protein_coding
6369                      protein_coding
6370                      protein_coding
6371                      protein_coding
6372                      protein_coding
6373                      protein_coding
6374                      protein_coding
6375                      protein_coding
6376                      protein_coding
6377                      protein_coding
6378                      protein_coding
6379                      protein_coding
6380                      protein_coding
6381                      protein_coding
6382                      protein_coding
6383                      protein_coding
6384                      protein_coding
6385                      protein_coding
6386                      protein_coding
6387                           antisense
6388                processed_pseudogene
6389                   sense_overlapping
6390                   sense_overlapping
6391                processed_pseudogene
6392                processed_pseudogene
6393                           antisense
6394                      protein_coding
6395                      protein_coding
6396                      protein_coding
6397                      protein_coding
6398                      protein_coding
6399                      protein_coding
6400                      protein_coding
6401                      protein_coding
6402                      protein_coding
6403                      protein_coding
6404                      protein_coding
6405                      protein_coding
6406                      protein_coding
6407                      protein_coding
6408                      protein_coding
6409                      protein_coding
6410                      protein_coding
6411                      protein_coding
6412                      protein_coding
6413                      protein_coding
6414                      protein_coding
6415                      protein_coding
6416                      protein_coding
6417                      protein_coding
6418                      protein_coding
6419                      protein_coding
6420                      protein_coding
6421                      protein_coding
6422                      protein_coding
6423                processed_pseudogene
6424                            misc_RNA
6425                processed_pseudogene
6426                             lincRNA
6427                             lincRNA
6428                             lincRNA
6429                             lincRNA
6430                             lincRNA
6431                             lincRNA
6432                             lincRNA
6433                             lincRNA
6434                             lincRNA
6435                             lincRNA
6436                             lincRNA
6437                             lincRNA
6438                             lincRNA
6439                             lincRNA
6440                             lincRNA
6441                             lincRNA
6442                             lincRNA
6443                             lincRNA
6444                             lincRNA
6445                             lincRNA
6446                             lincRNA
6447                             lincRNA
6448                             lincRNA
6449                             lincRNA
6450                             lincRNA
6451                             lincRNA
6452                             lincRNA
6453                             lincRNA
6454                             lincRNA
6455                             lincRNA
6456                             lincRNA
6457                             lincRNA
6458                             lincRNA
6459                             lincRNA
6460                             lincRNA
6461                             lincRNA
6462                             lincRNA
6463                             lincRNA
6464                             lincRNA
6465                             lincRNA
6466                processed_pseudogene
6467                              snoRNA
6468                             lincRNA
6469                             lincRNA
6470                      protein_coding
6471                      protein_coding
6472                      protein_coding
6473                      protein_coding
6474                      protein_coding
6475                      protein_coding
6476                      protein_coding
6477                      protein_coding
6478                      protein_coding
6479                      protein_coding
6480                      protein_coding
6481                      protein_coding
6482                      protein_coding
6483                      protein_coding
6484                      protein_coding
6485                      protein_coding
6486                      protein_coding
6487                      protein_coding
6488                      protein_coding
6489                      protein_coding
6490                      protein_coding
6491                      protein_coding
6492                      protein_coding
6493                      protein_coding
6494                      protein_coding
6495                      protein_coding
6496                      protein_coding
6497                      protein_coding
6498                      protein_coding
6499                      protein_coding
6500                      protein_coding
6501                      protein_coding
6502                      protein_coding
6503                      protein_coding
6504                             lincRNA
6505                             lincRNA
6506                             lincRNA
6507                             lincRNA
6508                             lincRNA
6509                             lincRNA
6510                             lincRNA
6511                             lincRNA
6512                             lincRNA
6513                             lincRNA
6514                             lincRNA
6515                             lincRNA
6516                             lincRNA
6517                             lincRNA
6518                             lincRNA
6519                      protein_coding
6520                      protein_coding
6521                      protein_coding
6522                      protein_coding
6523                      protein_coding
6524                      protein_coding
6525                      protein_coding
6526                      protein_coding
6527                      protein_coding
6528                      protein_coding
6529                      protein_coding
6530                      protein_coding
6531                      protein_coding
6532                      protein_coding
6533                      protein_coding
6534                      protein_coding
6535                      protein_coding
6536                      protein_coding
6537                      protein_coding
6538                      protein_coding
6539                      protein_coding
6540                      protein_coding
6541                      protein_coding
6542                      protein_coding
6543                      protein_coding
6544                      protein_coding
6545                      protein_coding
6546                      protein_coding
6547                      protein_coding
6548                      protein_coding
6549                      protein_coding
6550                      protein_coding
6551                      protein_coding
6552                      protein_coding
6553                      protein_coding
6554                      protein_coding
6555                      protein_coding
6556                      protein_coding
6557                      protein_coding
6558                      protein_coding
6559                      protein_coding
6560                      protein_coding
6561                      protein_coding
6562                      protein_coding
6563                      protein_coding
6564                      protein_coding
6565                      protein_coding
6566                      protein_coding
6567                      protein_coding
6568                      protein_coding
6569                      protein_coding
6570                      protein_coding
6571                      protein_coding
6572                      protein_coding
6573                      protein_coding
6574                      protein_coding
6575                      protein_coding
6576                      protein_coding
6577                      protein_coding
6578                      protein_coding
6579                      protein_coding
6580                      protein_coding
6581                      protein_coding
6582                      protein_coding
6583                      protein_coding
6584                      protein_coding
6585                      protein_coding
6586                      protein_coding
6587                      protein_coding
6588                      protein_coding
6589                      protein_coding
6590                      protein_coding
6591                      protein_coding
6592                      protein_coding
6593                      protein_coding
6594                      protein_coding
6595                      protein_coding
6596                      protein_coding
6597                      protein_coding
6598                      protein_coding
6599                      protein_coding
6600                      protein_coding
6601                      protein_coding
6602                      protein_coding
6603                      protein_coding
6604                      protein_coding
6605                      protein_coding
6606                      protein_coding
6607                      protein_coding
6608                      protein_coding
6609                      protein_coding
6610                      protein_coding
6611                      protein_coding
6612                      protein_coding
6613                      protein_coding
6614                      protein_coding
6615                      protein_coding
6616                      protein_coding
6617                      protein_coding
6618                      protein_coding
6619                      protein_coding
6620                      protein_coding
6621                      protein_coding
6622                      protein_coding
6623                      protein_coding
6624                      protein_coding
6625                      protein_coding
6626                      protein_coding
6627                      protein_coding
6628                      protein_coding
6629                      protein_coding
6630                      protein_coding
6631                      protein_coding
6632                      protein_coding
6633                      protein_coding
6634                      protein_coding
6635                      protein_coding
6636                      protein_coding
6637                      protein_coding
6638                      protein_coding
6639                      protein_coding
6640                      protein_coding
6641                      protein_coding
6642                      protein_coding
6643                      protein_coding
6644                      protein_coding
6645                      protein_coding
6646                      protein_coding
6647                      protein_coding
6648                      protein_coding
6649                      protein_coding
6650                      protein_coding
6651                      protein_coding
6652                      protein_coding
6653                      protein_coding
6654                      protein_coding
6655                      protein_coding
6656                      protein_coding
6657                      protein_coding
6658                      protein_coding
6659                      protein_coding
6660                      protein_coding
6661                processed_pseudogene
6662                             lincRNA
6663                             lincRNA
6664                             lincRNA
6665                             lincRNA
6666                             lincRNA
6667                             lincRNA
6668                             lincRNA
6669                             lincRNA
6670                             lincRNA
6671                      protein_coding
6672                      protein_coding
6673                      protein_coding
6674                      protein_coding
6675                      protein_coding
6676                      protein_coding
6677                      protein_coding
6678                      protein_coding
6679                      protein_coding
6680                      protein_coding
6681                      protein_coding
6682                      protein_coding
6683                      protein_coding
6684                      protein_coding
6685                      protein_coding
6686                      protein_coding
6687                      protein_coding
6688                      protein_coding
6689                      protein_coding
6690                      protein_coding
6691                      protein_coding
6692                      protein_coding
6693                      protein_coding
6694                      protein_coding
6695                      protein_coding
6696                      protein_coding
6697                      protein_coding
6698                      protein_coding
6699                      protein_coding
6700                      protein_coding
6701                      protein_coding
6702                      protein_coding
6703                      protein_coding
6704                      protein_coding
6705                      protein_coding
6706                      protein_coding
6707                      protein_coding
6708                      protein_coding
6709                      protein_coding
6710                      protein_coding
6711                      protein_coding
6712                      protein_coding
6713                      protein_coding
6714                      protein_coding
6715                      protein_coding
6716                      protein_coding
6717                      protein_coding
6718                      protein_coding
6719                      protein_coding
6720                      protein_coding
6721                      protein_coding
6722                      protein_coding
6723                      protein_coding
6724                      protein_coding
6725                      protein_coding
6726                      protein_coding
6727                      protein_coding
6728                      protein_coding
6729                      protein_coding
6730                      protein_coding
6731                      protein_coding
6732                      protein_coding
6733                      protein_coding
6734                      protein_coding
6735                      protein_coding
6736                      protein_coding
6737                      protein_coding
6738                      protein_coding
6739                      protein_coding
6740                      protein_coding
6741                      protein_coding
6742                      protein_coding
6743                      protein_coding
6744                      protein_coding
6745                      protein_coding
6746                      protein_coding
6747                      protein_coding
6748                      protein_coding
6749                      protein_coding
6750                      protein_coding
6751                      protein_coding
6752                      protein_coding
6753                      protein_coding
6754                      protein_coding
6755                      protein_coding
6756                      protein_coding
6757                      protein_coding
6758                      protein_coding
6759                      protein_coding
6760                      protein_coding
6761                processed_pseudogene
6762                             lincRNA
6763                             lincRNA
6764                      sense_intronic
6765                      sense_intronic
6766                      sense_intronic
6767    transcribed_processed_pseudogene
6768    transcribed_processed_pseudogene
6769                      protein_coding
6770                      protein_coding
6771                      protein_coding
6772                      protein_coding
6773                      protein_coding
6774                      protein_coding
6775                      protein_coding
6776                      protein_coding
6777                      protein_coding
6778                      protein_coding
6779                      protein_coding
6780                      protein_coding
6781                      protein_coding
6782                      protein_coding
6783                      protein_coding
6784                      protein_coding
6785                      protein_coding
6786                      protein_coding
6787                      protein_coding
6788                      protein_coding
6789                      protein_coding
6790                      protein_coding
6791                      protein_coding
6792                      protein_coding
6793                      protein_coding
6794                      protein_coding
6795                      protein_coding
6796                      protein_coding
6797                      protein_coding
6798                      protein_coding
6799                      protein_coding
6800                      protein_coding
6801                      protein_coding
6802                      protein_coding
6803                      protein_coding
6804                      protein_coding
6805                      protein_coding
6806                      protein_coding
6807                      protein_coding
6808                      protein_coding
6809                      protein_coding
6810                      protein_coding
6811                      protein_coding
6812                      sense_intronic
6813                      sense_intronic
6814                      protein_coding
6815                      protein_coding
6816                      protein_coding
6817                      protein_coding
6818                      sense_intronic
6819                      sense_intronic
6820                      protein_coding
6821                      protein_coding
6822                      protein_coding
6823                      protein_coding
6824                      protein_coding
6825                      protein_coding
6826                      protein_coding
6827                      protein_coding
6828                      protein_coding
6829                      protein_coding
6830                      protein_coding
6831                      protein_coding
6832                      protein_coding
6833                      protein_coding
6834                      protein_coding
6835                      protein_coding
6836                      protein_coding
6837                      protein_coding
6838                      protein_coding
6839                      protein_coding
6840                      protein_coding
6841                      protein_coding
6842                      protein_coding
6843                      protein_coding
6844                      protein_coding
6845                      protein_coding
6846                      protein_coding
6847                      protein_coding
6848                      protein_coding
6849                      protein_coding
6850                      protein_coding
6851                      protein_coding
6852                      protein_coding
6853                      protein_coding
6854                      protein_coding
6855                      protein_coding
6856                      protein_coding
6857                      protein_coding
6858                      protein_coding
6859                      protein_coding
6860                      protein_coding
6861                      protein_coding
6862                      protein_coding
6863                      protein_coding
6864                      protein_coding
6865                      protein_coding
6866                      protein_coding
6867                      protein_coding
6868                      protein_coding
6869                      protein_coding
6870                      protein_coding
6871                      protein_coding
6872                      protein_coding
6873                      protein_coding
6874                      protein_coding
6875                      protein_coding
6876                      protein_coding
6877                      protein_coding
6878                      protein_coding
6879                      protein_coding
6880                      protein_coding
6881                      protein_coding
6882                      protein_coding
6883                      protein_coding
6884                           antisense
6885                           antisense
6886                      protein_coding
6887                      protein_coding
6888                      protein_coding
6889                      protein_coding
6890                      protein_coding
6891                      protein_coding
6892                      protein_coding
6893                      protein_coding
6894                      protein_coding
6895                      protein_coding
6896                      protein_coding
6897                      protein_coding
6898                      protein_coding
6899                      protein_coding
6900                      protein_coding
6901                      protein_coding
6902                      protein_coding
6903                      protein_coding
6904                      protein_coding
6905                      protein_coding
6906                      protein_coding
6907                      protein_coding
6908                      protein_coding
6909                      protein_coding
6910                      protein_coding
6911                      protein_coding
6912                      protein_coding
6913                      protein_coding
6914                      protein_coding
6915                      protein_coding
6916                      protein_coding
6917                      protein_coding
6918                      protein_coding
6919                      protein_coding
6920                      protein_coding
6921                      protein_coding
6922                      protein_coding
6923                      protein_coding
6924                      protein_coding
6925                      protein_coding
6926                      protein_coding
6927                      protein_coding
6928                      protein_coding
6929                      protein_coding
6930                      protein_coding
6931                      protein_coding
6932                      protein_coding
6933                      protein_coding
6934                      protein_coding
6935                      protein_coding
6936                      protein_coding
6937                      protein_coding
6938                      protein_coding
6939                      protein_coding
6940                      protein_coding
6941                      protein_coding
6942                      protein_coding
6943                      protein_coding
6944                      protein_coding
6945                      protein_coding
6946                      protein_coding
6947                      protein_coding
6948                      protein_coding
6949                      protein_coding
6950                      protein_coding
6951                             lincRNA
6952                             lincRNA
6953                             lincRNA
6954                             lincRNA
6955                             lincRNA
6956                             lincRNA
6957                             lincRNA
6958                             lincRNA
6959                             lincRNA
6960                             lincRNA
6961                             lincRNA
6962                             lincRNA
6963                             lincRNA
6964                             lincRNA
6965                             lincRNA
6966                             lincRNA
6967                             lincRNA
6968                             lincRNA
6969                             lincRNA
6970                             lincRNA
6971                             lincRNA
6972                             lincRNA
6973                             lincRNA
6974                            misc_RNA
6975                      protein_coding
6976                      protein_coding
6977                      protein_coding
6978                      protein_coding
6979                      protein_coding
6980                      protein_coding
6981                      protein_coding
6982                      protein_coding
6983                      protein_coding
6984                      protein_coding
6985                      protein_coding
6986                      protein_coding
6987                      protein_coding
6988                      protein_coding
6989                      protein_coding
6990                      protein_coding
6991                      protein_coding
6992                      protein_coding
6993                      protein_coding
6994                      protein_coding
6995                      protein_coding
6996                      protein_coding
6997                      protein_coding
6998                      protein_coding
6999                      protein_coding
7000                      protein_coding
7001                      protein_coding
7002                      protein_coding
7003                      protein_coding
7004                      protein_coding
7005                      protein_coding
7006                      protein_coding
7007                      protein_coding
7008                      protein_coding
7009                      protein_coding
7010                      protein_coding
7011                      protein_coding
7012                      protein_coding
7013                      protein_coding
7014                      protein_coding
7015                      protein_coding
7016                      protein_coding
7017                      protein_coding
7018                      protein_coding
7019                      protein_coding
7020                      protein_coding
7021                      protein_coding
7022                      protein_coding
7023                      protein_coding
7024                      protein_coding
7025                      protein_coding
7026                      protein_coding
7027                      protein_coding
7028                      protein_coding
7029                      protein_coding
7030                      protein_coding
7031                      protein_coding
7032                      protein_coding
7033                      protein_coding
7034                      protein_coding
7035                      protein_coding
7036                      protein_coding
7037                      protein_coding
7038                      protein_coding
7039                      protein_coding
7040                      protein_coding
7041                      protein_coding
7042                      protein_coding
7043                      protein_coding
7044                      protein_coding
7045                      protein_coding
7046                      protein_coding
7047                      protein_coding
7048                      protein_coding
7049                      protein_coding
7050                      protein_coding
7051                      protein_coding
7052                      protein_coding
7053                      protein_coding
7054                      protein_coding
7055                      protein_coding
7056                      protein_coding
7057                      protein_coding
7058                      protein_coding
7059                      protein_coding
7060                      protein_coding
7061                      protein_coding
7062                      protein_coding
7063                      protein_coding
7064                      protein_coding
7065                      protein_coding
7066                      protein_coding
7067                      protein_coding
7068                      protein_coding
7069                      protein_coding
7070                      protein_coding
7071                      protein_coding
7072                      protein_coding
7073                      protein_coding
7074                      protein_coding
7075                      protein_coding
7076                      protein_coding
7077                      protein_coding
7078                      protein_coding
7079                      protein_coding
7080                      protein_coding
7081                      protein_coding
7082                      protein_coding
7083                      protein_coding
7084                      protein_coding
7085                      protein_coding
7086                      protein_coding
7087                      protein_coding
7088                      protein_coding
7089                      protein_coding
7090                      protein_coding
7091                      protein_coding
7092                      protein_coding
7093                      protein_coding
7094                      protein_coding
7095                      protein_coding
7096                      protein_coding
7097                      protein_coding
7098                      protein_coding
7099                      protein_coding
7100                      protein_coding
7101                      protein_coding
7102                      protein_coding
7103                      protein_coding
7104                      protein_coding
7105                      protein_coding
7106                      protein_coding
7107                      protein_coding
7108                      protein_coding
7109                      protein_coding
7110                      protein_coding
7111                      protein_coding
7112                      protein_coding
7113                      protein_coding
7114                      protein_coding
7115                      protein_coding
7116                      protein_coding
7117                      protein_coding
7118                      protein_coding
7119                      protein_coding
7120                      protein_coding
7121                      protein_coding
7122                      protein_coding
7123                      protein_coding
7124                      protein_coding
7125                      protein_coding
7126                      protein_coding
7127                      protein_coding
7128                      protein_coding
7129                      protein_coding
7130                      protein_coding
7131                      protein_coding
7132                      protein_coding
7133                      protein_coding
7134                      protein_coding
7135                      protein_coding
7136                      protein_coding
7137                      protein_coding
7138                      protein_coding
7139                      protein_coding
7140                      protein_coding
7141                      protein_coding
7142                      protein_coding
7143                      protein_coding
7144                      protein_coding
7145                      protein_coding
7146                      protein_coding
7147                      protein_coding
7148                      protein_coding
7149                      protein_coding
7150                      protein_coding
7151                      protein_coding
7152                      protein_coding
7153                      protein_coding
7154                      protein_coding
7155                      protein_coding
7156                      protein_coding
7157                      protein_coding
7158                      protein_coding
7159                      protein_coding
7160                      protein_coding
7161                      protein_coding
7162                      protein_coding
7163                      protein_coding
7164                      protein_coding
7165                      protein_coding
7166                      protein_coding
7167                      protein_coding
7168                      protein_coding
7169                      protein_coding
7170                      protein_coding
7171                      protein_coding
7172                      protein_coding
7173                      protein_coding
7174                      protein_coding
7175                      protein_coding
7176                      protein_coding
7177                      protein_coding
7178                      protein_coding
7179                      protein_coding
7180                      protein_coding
7181                      protein_coding
7182                      protein_coding
7183                      protein_coding
7184                      protein_coding
7185                      protein_coding
7186                      protein_coding
7187                      protein_coding
7188                      protein_coding
7189                      protein_coding
7190                      protein_coding
7191                      protein_coding
7192                      protein_coding
7193                      protein_coding
7194                      protein_coding
7195                      protein_coding
7196                      protein_coding
7197                      protein_coding
7198                      protein_coding
7199                      protein_coding
7200                      protein_coding
7201                      protein_coding
7202                      protein_coding
7203                      protein_coding
7204                      protein_coding
7205                      protein_coding
7206                      protein_coding
7207                      protein_coding
7208                      protein_coding
7209                      protein_coding
7210                      protein_coding
7211                      protein_coding
7212                      protein_coding
7213                      protein_coding
7214                      protein_coding
7215                      protein_coding
7216                      protein_coding
7217                      protein_coding
7218                      protein_coding
7219                      protein_coding
7220                      protein_coding
7221                      protein_coding
7222                      protein_coding
7223                      protein_coding
7224                      protein_coding
7225                      protein_coding
7226                      protein_coding
7227                      protein_coding
7228                      protein_coding
7229                      protein_coding
7230                      protein_coding
7231                      protein_coding
7232                      protein_coding
7233                      protein_coding
7234                      protein_coding
7235                      protein_coding
7236                      protein_coding
7237                      protein_coding
7238                      protein_coding
7239                      protein_coding
7240                      protein_coding
7241                      protein_coding
7242                      protein_coding
7243                      protein_coding
7244                      protein_coding
7245                      protein_coding
7246                      protein_coding
7247                      protein_coding
7248                      protein_coding
7249                      protein_coding
7250                      protein_coding
7251                      protein_coding
7252                      protein_coding
7253                      protein_coding
7254                      protein_coding
7255                      protein_coding
7256                      protein_coding
7257                      protein_coding
7258                      protein_coding
7259                      protein_coding
7260                      protein_coding
7261                      protein_coding
7262                      protein_coding
7263                      protein_coding
7264                      protein_coding
7265                      protein_coding
7266                      protein_coding
7267                      protein_coding
7268                      protein_coding
7269                      protein_coding
7270                      protein_coding
7271                      protein_coding
7272                      protein_coding
7273                      protein_coding
7274                      protein_coding
7275                      protein_coding
7276                      protein_coding
7277                      protein_coding
7278                      protein_coding
7279                      protein_coding
7280                      protein_coding
7281                      protein_coding
7282                      protein_coding
7283                      protein_coding
7284                      protein_coding
7285                      protein_coding
7286                      protein_coding
7287                      protein_coding
7288                      protein_coding
7289                      protein_coding
7290                      protein_coding
7291                      protein_coding
7292                      protein_coding
7293                      protein_coding
7294                      protein_coding
7295                      protein_coding
7296                      protein_coding
7297                      protein_coding
7298                      protein_coding
7299                      protein_coding
7300                      protein_coding
7301                      protein_coding
7302                      protein_coding
7303                      protein_coding
7304                      protein_coding
7305                      protein_coding
7306                      protein_coding
7307                      protein_coding
7308                      protein_coding
7309                      protein_coding
7310                      protein_coding
7311                      protein_coding
7312                      protein_coding
7313                      protein_coding
7314                      protein_coding
7315                      protein_coding
7316                      protein_coding
7317                      protein_coding
7318                      protein_coding
7319                      protein_coding
7320                      protein_coding
7321                      protein_coding
7322                      protein_coding
7323                      protein_coding
7324                      protein_coding
7325                      protein_coding
7326                      protein_coding
7327                      protein_coding
7328                      protein_coding
7329                      protein_coding
7330                      protein_coding
7331                      protein_coding
7332                      protein_coding
7333                      protein_coding
7334                      protein_coding
7335                      protein_coding
7336                      protein_coding
7337                      protein_coding
7338                      protein_coding
7339                      protein_coding
7340                      protein_coding
7341                      protein_coding
7342                      protein_coding
7343                      protein_coding
7344                      protein_coding
7345                      protein_coding
7346                      protein_coding
7347                      protein_coding
7348                      protein_coding
7349                      protein_coding
7350                      protein_coding
7351                      protein_coding
7352                      protein_coding
7353                      protein_coding
7354                      protein_coding
7355                      protein_coding
7356                      protein_coding
7357                      protein_coding
7358                      protein_coding
7359                      protein_coding
7360                      protein_coding
7361                      protein_coding
7362                      protein_coding
7363                      protein_coding
7364                      protein_coding
7365                      protein_coding
7366                      protein_coding
7367                      protein_coding
7368                      protein_coding
7369                      protein_coding
7370                      protein_coding
7371                      protein_coding
7372                      protein_coding
7373                      protein_coding
7374                      protein_coding
7375                      protein_coding
7376                      protein_coding
7377                      protein_coding
7378                      protein_coding
7379                      protein_coding
7380                      protein_coding
7381                      protein_coding
7382                      protein_coding
7383                      protein_coding
7384                      protein_coding
7385                      protein_coding
7386                      protein_coding
7387                      protein_coding
7388                      protein_coding
7389                      protein_coding
7390                      protein_coding
7391                      protein_coding
7392                      protein_coding
7393                      protein_coding
7394                      protein_coding
7395                      protein_coding
7396                      protein_coding
7397                      protein_coding
7398                      protein_coding
7399                      protein_coding
7400                      protein_coding
7401                      protein_coding
7402                      protein_coding
7403                      protein_coding
7404                      protein_coding
7405                      protein_coding
7406                      protein_coding
7407                      protein_coding
7408                      protein_coding
7409                      protein_coding
7410                      protein_coding
7411                      protein_coding
7412                      protein_coding
7413                      protein_coding
7414                      protein_coding
7415                      protein_coding
7416                      protein_coding
7417                      protein_coding
7418                      protein_coding
7419                      protein_coding
7420                      protein_coding
7421                      protein_coding
7422                      protein_coding
7423                      protein_coding
7424                      protein_coding
7425                      protein_coding
7426                      protein_coding
7427                      protein_coding
7428                      protein_coding
7429                      protein_coding
7430                      protein_coding
7431                      protein_coding
7432                      protein_coding
7433                      protein_coding
7434                      protein_coding
7435                      protein_coding
7436                      protein_coding
7437                      protein_coding
7438                      protein_coding
7439                      protein_coding
7440                      protein_coding
7441                      protein_coding
7442                      protein_coding
7443                      protein_coding
7444                      protein_coding
7445                      protein_coding
7446                      protein_coding
7447                      protein_coding
7448                      protein_coding
7449                      protein_coding
7450                           antisense
7451                           antisense
7452                      sense_intronic
7453                      protein_coding
7454                      protein_coding
7455                      protein_coding
7456                      protein_coding
7457                      protein_coding
7458                      protein_coding
7459                      protein_coding
7460                      protein_coding
7461                      protein_coding
7462                      protein_coding
7463                      protein_coding
7464                      protein_coding
7465                      protein_coding
7466                      protein_coding
7467                      protein_coding
7468                      protein_coding
7469                      protein_coding
7470                      protein_coding
7471                      protein_coding
7472                      protein_coding
7473                      protein_coding
7474                      protein_coding
7475                      protein_coding
7476                      protein_coding
7477                      protein_coding
7478                      protein_coding
7479                      protein_coding
7480                      protein_coding
7481                      protein_coding
7482                      protein_coding
7483                      protein_coding
7484                      protein_coding
7485                      protein_coding
7486                               snRNA
7487                      protein_coding
7488                      protein_coding
7489                      protein_coding
7490                      protein_coding
7491                      protein_coding
7492                      protein_coding
7493                      protein_coding
7494                      protein_coding
7495                      protein_coding
7496                      protein_coding
7497                      protein_coding
7498                processed_pseudogene
7499                      protein_coding
7500                      protein_coding
7501                      protein_coding
7502                      protein_coding
7503                      protein_coding
7504                      protein_coding
7505                      protein_coding
7506                      protein_coding
7507                      protein_coding
7508                      protein_coding
7509                      protein_coding
7510                      protein_coding
7511                      protein_coding
7512                      protein_coding
7513                      protein_coding
7514                      protein_coding
7515                      protein_coding
7516                      protein_coding
7517                      protein_coding
7518                      protein_coding
7519                      protein_coding
7520                      protein_coding
7521                      protein_coding
7522                      protein_coding
7523                      protein_coding
7524                      protein_coding
7525                      protein_coding
7526                      protein_coding
7527                      protein_coding
7528                      protein_coding
7529                      protein_coding
7530                      protein_coding
7531                      protein_coding
7532                      protein_coding
7533                      protein_coding
7534                      protein_coding
7535                      protein_coding
7536                      protein_coding
7537                      protein_coding
7538                      protein_coding
7539                      protein_coding
7540                      protein_coding
7541                      protein_coding
7542                      protein_coding
7543                      protein_coding
7544                      protein_coding
7545                      protein_coding
7546                      protein_coding
7547                      protein_coding
7548                      protein_coding
7549                      protein_coding
7550                            misc_RNA
7551                             lincRNA
7552                             lincRNA
7553                             lincRNA
7554                             lincRNA
7555                             lincRNA
7556                             lincRNA
7557                             lincRNA
7558                             lincRNA
7559                processed_pseudogene
7560                processed_pseudogene
7561                                rRNA
7562                      sense_intronic
7563                      sense_intronic
7564                      protein_coding
7565                      protein_coding
7566                      protein_coding
7567                      protein_coding
7568                      protein_coding
7569                      protein_coding
7570                      protein_coding
7571                      protein_coding
7572                      protein_coding
7573                      protein_coding
7574                      protein_coding
7575                      protein_coding
7576                      protein_coding
7577                      protein_coding
7578                      protein_coding
7579                      protein_coding
7580                      protein_coding
7581                      protein_coding
7582                      protein_coding
7583                      protein_coding
7584                      protein_coding
7585                      protein_coding
7586                      protein_coding
7587                      protein_coding
7588                      protein_coding
7589                      protein_coding
7590                      protein_coding
7591                      protein_coding
7592                      protein_coding
7593                      protein_coding
7594                      protein_coding
7595                      protein_coding
7596                      protein_coding
7597                      protein_coding
7598                      protein_coding
7599                           antisense
7600                           antisense
7601                             lincRNA
7602                             lincRNA
7603                      protein_coding
7604                      protein_coding
7605                      protein_coding
7606                      protein_coding
7607                      protein_coding
7608                      protein_coding
7609                      protein_coding
7610                      protein_coding
7611                      protein_coding
7612                      protein_coding
7613                      protein_coding
7614                      protein_coding
7615                      protein_coding
7616                      protein_coding
7617                      protein_coding
7618                           antisense
7619                           antisense
7620                           antisense
7621                           antisense
7622                                 TEC
7623                processed_pseudogene
7624                processed_pseudogene
7625                           antisense
7626                           antisense
7627                      protein_coding
7628                      protein_coding
7629                      protein_coding
7630                      protein_coding
7631                      protein_coding
7632                      protein_coding
7633                      protein_coding
7634                      protein_coding
7635                      protein_coding
7636                      protein_coding
7637                      protein_coding
7638                      protein_coding
7639                      protein_coding
7640                      protein_coding
7641                      protein_coding
7642                      protein_coding
7643                      protein_coding
7644                      protein_coding
7645                      protein_coding
7646                      protein_coding
7647                      protein_coding
7648                      protein_coding
7649                      protein_coding
7650                      protein_coding
7651                processed_pseudogene
7652                      protein_coding
7653                      protein_coding
7654                      protein_coding
7655                      protein_coding
7656                      protein_coding
7657                      protein_coding
7658                      protein_coding
7659                      protein_coding
7660                      protein_coding
7661                      protein_coding
7662                      protein_coding
7663                      protein_coding
7664                      protein_coding
7665                      protein_coding
7666                      protein_coding
7667                      protein_coding
7668                      protein_coding
7669                      protein_coding
7670                      protein_coding
7671                      protein_coding
7672                      protein_coding
7673                      protein_coding
7674                      protein_coding
7675                      protein_coding
7676                      protein_coding
7677                      protein_coding
7678                      protein_coding
7679                      protein_coding
7680                      protein_coding
7681                      protein_coding
7682                      protein_coding
7683                      protein_coding
7684                      protein_coding
7685                      protein_coding
7686                      protein_coding
7687                      protein_coding
7688                      protein_coding
7689                      protein_coding
7690                      protein_coding
7691                      protein_coding
7692                      protein_coding
7693                      protein_coding
7694                      protein_coding
7695                      protein_coding
7696                      protein_coding
7697                      protein_coding
7698                      protein_coding
7699                      protein_coding
7700                      protein_coding
7701                      protein_coding
7702                      protein_coding
7703                      protein_coding
7704                      protein_coding
7705                      protein_coding
7706                      protein_coding
7707                      protein_coding
7708                      protein_coding
7709                      protein_coding
7710                      protein_coding
7711                      protein_coding
7712                      protein_coding
7713                      protein_coding
7714                      protein_coding
7715                      protein_coding
7716                      protein_coding
7717                      protein_coding
7718                      protein_coding
7719                      protein_coding
7720                      protein_coding
7721                      protein_coding
7722                      protein_coding
7723                      protein_coding
7724                      protein_coding
7725                      protein_coding
7726                      protein_coding
7727                      protein_coding
7728                      protein_coding
7729                      protein_coding
7730                      protein_coding
7731                      protein_coding
7732                      protein_coding
7733                      protein_coding
7734                      protein_coding
7735                   sense_overlapping
7736                   sense_overlapping
7737                           antisense
7738                processed_pseudogene
7739                      protein_coding
7740                      protein_coding
7741                      protein_coding
7742                      protein_coding
7743                      protein_coding
7744                      protein_coding
7745                      protein_coding
7746                      protein_coding
7747                      protein_coding
7748                      protein_coding
7749                      protein_coding
7750                      protein_coding
7751                      protein_coding
7752                      protein_coding
7753                      protein_coding
7754                      protein_coding
7755                      protein_coding
7756                      protein_coding
7757                      protein_coding
7758                      protein_coding
7759                      protein_coding
7760                      protein_coding
7761                      protein_coding
7762                      protein_coding
7763                      protein_coding
7764                      protein_coding
7765                      protein_coding
7766                      protein_coding
7767                      protein_coding
7768                      protein_coding
7769                      protein_coding
7770                      protein_coding
7771                      protein_coding
7772                      protein_coding
7773                      protein_coding
7774                      protein_coding
7775                      protein_coding
7776                      protein_coding
7777                      protein_coding
7778                      protein_coding
7779                      protein_coding
7780                      protein_coding
7781                      protein_coding
7782                      protein_coding
7783                      protein_coding
7784                      protein_coding
7785                      protein_coding
7786                      protein_coding
7787                      protein_coding
7788                      protein_coding
7789                      protein_coding
7790                processed_transcript
7791                processed_transcript
7792                processed_transcript
7793                processed_transcript
7794                processed_transcript
7795                processed_transcript
7796                processed_transcript
7797                processed_transcript
7798                processed_transcript
7799                processed_transcript
7800                processed_transcript
7801                processed_transcript
7802                processed_transcript
7803                processed_transcript
7804                processed_transcript
7805                processed_transcript
7806                processed_transcript
7807                processed_transcript
7808                processed_transcript
7809                processed_transcript
7810                processed_transcript
7811                processed_transcript
7812                processed_transcript
7813                processed_transcript
7814                processed_transcript
7815                processed_transcript
7816                processed_transcript
7817                processed_transcript
7818                processed_transcript
7819                processed_transcript
7820                processed_transcript
7821                processed_transcript
7822                processed_transcript
7823                processed_transcript
7824                processed_transcript
7825                processed_transcript
7826                processed_transcript
7827                processed_transcript
7828                processed_transcript
7829                processed_transcript
7830                processed_transcript
7831                processed_transcript
7832                processed_transcript
7833                processed_transcript
7834                processed_transcript
7835                processed_transcript
7836                processed_transcript
7837                processed_transcript
7838                processed_transcript
7839                processed_transcript
7840                processed_transcript
7841                processed_transcript
7842                processed_transcript
7843                processed_transcript
7844                processed_transcript
7845                processed_transcript
7846                processed_transcript
7847                processed_pseudogene
7848                      protein_coding
7849                      protein_coding
7850                      protein_coding
7851                processed_pseudogene
7852                processed_pseudogene
7853                      sense_intronic
7854                      sense_intronic
7855                      sense_intronic
7856                      sense_intronic
7857                      sense_intronic
7858                      sense_intronic
7859                             lincRNA
7860                             lincRNA
7861                             lincRNA
7862                             lincRNA
7863                      protein_coding
7864                      protein_coding
7865                      protein_coding
7866                      protein_coding
7867                      protein_coding
7868                      protein_coding
7869                      protein_coding
7870                      protein_coding
7871                      protein_coding
7872                      protein_coding
7873                      protein_coding
7874                      protein_coding
7875                      protein_coding
7876                      protein_coding
7877                      protein_coding
7878                      protein_coding
7879                      protein_coding
7880                      protein_coding
7881                      protein_coding
7882                      protein_coding
7883                      protein_coding
7884                      protein_coding
7885                      protein_coding
7886                      protein_coding
7887                      protein_coding
7888                      protein_coding
7889                      protein_coding
7890                      protein_coding
7891                      protein_coding
7892                      protein_coding
7893                      protein_coding
7894                      protein_coding
7895                      protein_coding
7896                      protein_coding
7897                      protein_coding
7898                      protein_coding
7899                      protein_coding
7900                      protein_coding
7901                      protein_coding
7902                      protein_coding
7903                      protein_coding
7904                      protein_coding
7905                      protein_coding
7906                      protein_coding
7907                      protein_coding
7908                      protein_coding
7909                      protein_coding
7910                      protein_coding
7911                      protein_coding
7912                      protein_coding
7913                      protein_coding
7914                      protein_coding
7915                      protein_coding
7916                      protein_coding
7917                      protein_coding
7918                      protein_coding
7919                      protein_coding
7920                      protein_coding
7921                      protein_coding
7922                      protein_coding
7923                      protein_coding
7924                      protein_coding
7925                      protein_coding
7926                      protein_coding
7927                      protein_coding
7928                      protein_coding
7929                      protein_coding
7930                      protein_coding
7931                      protein_coding
7932                      protein_coding
7933                      protein_coding
7934                      protein_coding
7935                      protein_coding
7936                      protein_coding
7937                      protein_coding
7938                      protein_coding
7939                      protein_coding
7940                      protein_coding
7941                      protein_coding
7942                      protein_coding
7943                      protein_coding
7944                      protein_coding
7945                      protein_coding
7946                      protein_coding
7947                      protein_coding
7948                      protein_coding
7949                      protein_coding
7950                      protein_coding
7951                      protein_coding
7952                      protein_coding
7953                      protein_coding
7954                      protein_coding
7955                      protein_coding
7956                      protein_coding
7957                      protein_coding
7958                      protein_coding
7959                      protein_coding
7960                      protein_coding
7961                      protein_coding
7962                      protein_coding
7963                      protein_coding
7964                      protein_coding
7965                      protein_coding
7966                      protein_coding
7967                      protein_coding
7968                      protein_coding
7969                      protein_coding
7970                      protein_coding
7971                      protein_coding
7972                      protein_coding
7973                      protein_coding
7974                      protein_coding
7975                      protein_coding
7976                      protein_coding
7977                      protein_coding
7978                      protein_coding
7979                      protein_coding
7980                      protein_coding
7981                      protein_coding
7982                      protein_coding
7983                      protein_coding
7984                      protein_coding
7985                      protein_coding
7986                      protein_coding
7987                      protein_coding
7988                      protein_coding
7989                      protein_coding
7990                      protein_coding
7991                      protein_coding
7992                      protein_coding
7993                      protein_coding
7994                      protein_coding
7995                      protein_coding
7996                      protein_coding
7997                               snRNA
7998                           antisense
7999                           antisense
8000                           antisense
8001                processed_pseudogene
8002                processed_pseudogene
8003                             lincRNA
8004                             lincRNA
8005                      protein_coding
8006                      protein_coding
8007                      protein_coding
8008                      protein_coding
8009                      protein_coding
8010                      protein_coding
8011                      protein_coding
8012                      protein_coding
8013                      protein_coding
8014                      protein_coding
8015                      protein_coding
8016                      protein_coding
8017                      protein_coding
8018                      protein_coding
8019                      protein_coding
8020                      protein_coding
8021                      protein_coding
8022                      protein_coding
8023                      protein_coding
8024                      protein_coding
8025                      protein_coding
8026                      protein_coding
8027                      protein_coding
8028                      protein_coding
8029                      protein_coding
8030                      protein_coding
8031                      protein_coding
8032                      protein_coding
8033                      protein_coding
8034                      protein_coding
8035                      protein_coding
8036                      protein_coding
8037                      protein_coding
8038                      protein_coding
8039                      protein_coding
8040                      protein_coding
8041                      protein_coding
8042                      protein_coding
8043                      protein_coding
8044                      protein_coding
8045                      protein_coding
8046                      protein_coding
8047                      protein_coding
8048                      protein_coding
8049                      protein_coding
8050                      protein_coding
8051                      protein_coding
8052                      protein_coding
8053                      protein_coding
8054                      protein_coding
8055                      protein_coding
8056                      protein_coding
8057                      protein_coding
8058                      protein_coding
8059                      protein_coding
8060                      protein_coding
8061                      protein_coding
8062                      protein_coding
8063                      protein_coding
8064                      protein_coding
8065                      protein_coding
8066                      protein_coding
8067                      protein_coding
8068                      protein_coding
8069                      protein_coding
8070                      protein_coding
8071                      protein_coding
8072                      protein_coding
8073                      protein_coding
8074                      protein_coding
8075                      protein_coding
8076                      protein_coding
8077                      protein_coding
8078                      protein_coding
8079                      protein_coding
8080                      protein_coding
8081                      protein_coding
8082                      protein_coding
8083                      protein_coding
8084                      protein_coding
8085                      protein_coding
8086                      protein_coding
8087                      protein_coding
8088                processed_pseudogene
8089                             lincRNA
8090                             lincRNA
8091                processed_pseudogene
8092                               miRNA
8093                processed_pseudogene
8094                processed_pseudogene
8095                             lincRNA
8096                             lincRNA
8097                           antisense
8098                           antisense
8099                           antisense
8100                           antisense
8101                           antisense
8102                             lincRNA
8103                             lincRNA
8104                             lincRNA
8105                             lincRNA
8106                             lincRNA
8107                             lincRNA
8108                      protein_coding
8109                      protein_coding
8110                      protein_coding
8111                      protein_coding
8112                      protein_coding
8113                      protein_coding
8114                      protein_coding
8115                      protein_coding
8116                      protein_coding
8117                      protein_coding
8118                      protein_coding
8119                      protein_coding
8120                      protein_coding
8121                      protein_coding
8122                      protein_coding
8123                      protein_coding
8124                      protein_coding
8125                      protein_coding
8126                      protein_coding
8127                      protein_coding
8128                      protein_coding
8129                      protein_coding
8130                      protein_coding
8131                      protein_coding
8132                      protein_coding
8133                      protein_coding
8134                      protein_coding
8135                      protein_coding
8136                      protein_coding
8137                      protein_coding
8138                      protein_coding
8139                      protein_coding
8140                      protein_coding
8141                      protein_coding
8142                      protein_coding
8143                      protein_coding
8144                      protein_coding
8145                      protein_coding
8146                      protein_coding
8147                      protein_coding
8148                      protein_coding
8149                      protein_coding
8150                      protein_coding
8151                      protein_coding
8152                      protein_coding
8153                      protein_coding
8154                      protein_coding
8155                      protein_coding
8156                      protein_coding
8157                      protein_coding
8158                      protein_coding
8159                      protein_coding
8160                      protein_coding
8161                      protein_coding
8162                      protein_coding
8163                      protein_coding
8164                      protein_coding
8165                      protein_coding
8166                      protein_coding
8167                      protein_coding
8168                      protein_coding
8169                      protein_coding
8170                      protein_coding
8171                      protein_coding
8172                      protein_coding
8173                      protein_coding
8174                      protein_coding
8175                      protein_coding
8176                      protein_coding
8177                      protein_coding
8178                      protein_coding
8179                      protein_coding
8180                      protein_coding
8181                      protein_coding
8182                      protein_coding
8183                      protein_coding
8184                      protein_coding
8185                      protein_coding
8186                      protein_coding
8187                      protein_coding
8188                      protein_coding
8189                      protein_coding
8190                      protein_coding
8191                      protein_coding
8192                      protein_coding
8193                      protein_coding
8194                      protein_coding
8195                              snoRNA
8196                             lincRNA
8197                      protein_coding
8198                      protein_coding
8199                             lincRNA
8200                      protein_coding
8201                      protein_coding
8202                      protein_coding
8203                      protein_coding
8204                      protein_coding
8205                      protein_coding
8206                      protein_coding
8207                      protein_coding
8208                      protein_coding
8209                      protein_coding
8210                      protein_coding
8211                      protein_coding
8212                      protein_coding
8213                      protein_coding
8214                      protein_coding
8215                      protein_coding
8216                      protein_coding
8217                      protein_coding
8218                      protein_coding
8219                      protein_coding
8220                      protein_coding
8221                      protein_coding
8222                      protein_coding
8223                      protein_coding
8224                      protein_coding
8225                      protein_coding
8226                      protein_coding
8227                      protein_coding
8228                      protein_coding
8229                      protein_coding
8230                      protein_coding
8231                           antisense
8232                           antisense
8233                      protein_coding
8234                      protein_coding
8235                processed_transcript
8236                processed_transcript
8237                processed_transcript
8238                processed_transcript
8239                processed_transcript
8240                processed_transcript
8241                             lincRNA
8242                             lincRNA
8243                             lincRNA
8244                             lincRNA
8245                             lincRNA
8246                             lincRNA
8247                             lincRNA
8248                             lincRNA
8249                             lincRNA
8250                             lincRNA
8251                             lincRNA
8252                             lincRNA
8253                             lincRNA
8254                             lincRNA
8255                             lincRNA
8256                             lincRNA
8257                             lincRNA
8258                             lincRNA
8259                             lincRNA
8260                             lincRNA
8261                             lincRNA
8262                             lincRNA
8263                             lincRNA
8264                             lincRNA
8265                             lincRNA
8266                             lincRNA
8267                      protein_coding
8268                      protein_coding
8269                      protein_coding
8270                      protein_coding
8271                      protein_coding
8272                      protein_coding
8273                      protein_coding
8274                      protein_coding
8275                      protein_coding
8276                      protein_coding
8277                      protein_coding
8278                      protein_coding
8279                      protein_coding
8280                      protein_coding
8281                      protein_coding
8282                      protein_coding
8283                      protein_coding
8284                      protein_coding
8285                processed_pseudogene
8286                      protein_coding
8287                      protein_coding
8288                           antisense
8289                           antisense
8290                           antisense
8291                           antisense
8292                           antisense
8293                           antisense
8294                           antisense
8295                           antisense
8296                           antisense
8297                           antisense
8298                           antisense
8299                           antisense
8300                           antisense
8301                           antisense
8302                           antisense
8303                           antisense
8304                           antisense
8305                           antisense
8306                           antisense
8307                           antisense
8308                           antisense
8309                           antisense
8310                           antisense
8311                           antisense
8312                           antisense
8313                           antisense
8314                           antisense
8315                           antisense
8316                           antisense
8317                           antisense
8318                           antisense
8319                           antisense
8320                           antisense
8321                           antisense
8322                           antisense
8323                           antisense
8324                           antisense
8325                           antisense
8326                           antisense
8327                           antisense
8328                           antisense
8329                           antisense
8330                           antisense
8331                           antisense
8332                           antisense
8333                           antisense
8334                           antisense
8335                           antisense
8336                           antisense
8337                           antisense
8338                           antisense
8339                           antisense
8340                           antisense
8341                           antisense
8342                           antisense
8343                           antisense
8344                             lincRNA
8345                             lincRNA
8346                      protein_coding
8347                      protein_coding
8348                      protein_coding
8349                      protein_coding
8350                      protein_coding
8351                      protein_coding
8352                      protein_coding
8353                      protein_coding
8354                            misc_RNA
8355                      protein_coding
8356                      protein_coding
8357                      protein_coding
8358                      protein_coding
8359                      protein_coding
8360                      protein_coding
8361                      protein_coding
8362                      protein_coding
8363                      protein_coding
8364                      protein_coding
8365                      protein_coding
8366                      protein_coding
8367                      protein_coding
8368                      protein_coding
8369                      protein_coding
8370                      protein_coding
8371                      protein_coding
8372                      protein_coding
8373                      protein_coding
8374                      protein_coding
8375                      protein_coding
8376                      protein_coding
8377                      protein_coding
8378                      protein_coding
8379                      protein_coding
8380                      protein_coding
8381                      protein_coding
8382                      protein_coding
8383                      protein_coding
8384                      protein_coding
8385                      protein_coding
8386                      protein_coding
8387                      protein_coding
8388                      protein_coding
8389                      protein_coding
8390                      protein_coding
8391                      protein_coding
8392                      protein_coding
8393                      protein_coding
8394                      protein_coding
8395                      protein_coding
8396                      protein_coding
8397                      protein_coding
8398                      protein_coding
8399                      protein_coding
8400                      protein_coding
8401                      protein_coding
8402                      protein_coding
8403                      protein_coding
8404                      protein_coding
8405                      protein_coding
8406                      protein_coding
8407                      protein_coding
8408                      protein_coding
8409                      protein_coding
8410                      protein_coding
8411                      protein_coding
8412                      protein_coding
8413                      protein_coding
8414                      protein_coding
8415                      protein_coding
8416                      protein_coding
8417                      protein_coding
8418                      protein_coding
8419                      protein_coding
8420                      protein_coding
8421                      protein_coding
8422                      protein_coding
8423                      protein_coding
8424                      protein_coding
8425                      protein_coding
8426                      protein_coding
8427                      protein_coding
8428                      protein_coding
8429                      protein_coding
8430                      protein_coding
8431                      protein_coding
8432                      protein_coding
8433                      protein_coding
8434                      protein_coding
8435                      protein_coding
8436                      protein_coding
8437                      protein_coding
8438                      protein_coding
8439                      protein_coding
8440                      protein_coding
8441                      protein_coding
8442                      protein_coding
8443                      protein_coding
8444                      protein_coding
8445                      protein_coding
8446                      protein_coding
8447                      protein_coding
8448                      protein_coding
8449                      protein_coding
8450                      protein_coding
8451                      protein_coding
8452                      protein_coding
8453                      protein_coding
8454                      protein_coding
8455                      protein_coding
8456                      protein_coding
8457                      protein_coding
8458                      protein_coding
8459                      protein_coding
8460                      protein_coding
8461                      protein_coding
8462                      protein_coding
8463                      protein_coding
8464                      protein_coding
8465                      protein_coding
8466                      protein_coding
8467                      protein_coding
8468                      protein_coding
8469                      protein_coding
8470                      protein_coding
8471                      protein_coding
8472                      protein_coding
8473                      protein_coding
8474                      protein_coding
8475                      protein_coding
8476                      protein_coding
8477                      protein_coding
8478                      protein_coding
8479                      protein_coding
8480                      protein_coding
8481                      protein_coding
8482                      protein_coding
8483                      protein_coding
8484                      protein_coding
8485                      protein_coding
8486                      protein_coding
8487                      protein_coding
8488                      protein_coding
8489                      protein_coding
8490                      protein_coding
8491                      protein_coding
8492                      protein_coding
8493                      protein_coding
8494                      protein_coding
8495                      protein_coding
8496                      protein_coding
8497                      protein_coding
8498                      protein_coding
8499                      protein_coding
8500                      protein_coding
8501                      protein_coding
8502                      protein_coding
8503                      protein_coding
8504                      protein_coding
8505                      protein_coding
8506                      protein_coding
8507                      protein_coding
8508                      protein_coding
8509                      protein_coding
8510                      protein_coding
8511                      protein_coding
8512                      protein_coding
8513                      protein_coding
8514                      protein_coding
8515                      protein_coding
8516                      protein_coding
8517                      protein_coding
8518                      protein_coding
8519                      protein_coding
8520                      protein_coding
8521                      protein_coding
8522                      protein_coding
8523                      protein_coding
8524                      protein_coding
8525                      protein_coding
8526                      protein_coding
8527                      protein_coding
8528                      protein_coding
8529                      protein_coding
8530                      protein_coding
8531                      protein_coding
8532                      protein_coding
8533                      protein_coding
8534                      protein_coding
8535                      protein_coding
8536                      protein_coding
8537                      protein_coding
8538                      protein_coding
8539                      protein_coding
8540                      protein_coding
8541                      protein_coding
8542                      protein_coding
8543                      protein_coding
8544                      protein_coding
8545                      protein_coding
8546                      protein_coding
8547                      protein_coding
8548                      protein_coding
8549                      protein_coding
8550                      protein_coding
8551                      protein_coding
8552                      protein_coding
8553                      protein_coding
8554                      protein_coding
8555                      protein_coding
8556                      protein_coding
8557                      protein_coding
8558                      protein_coding
8559                      protein_coding
8560                      protein_coding
8561                      protein_coding
8562                      protein_coding
8563                      protein_coding
8564                      protein_coding
8565                      protein_coding
8566                      protein_coding
8567                      protein_coding
8568                      protein_coding
8569                      protein_coding
8570                      protein_coding
8571                      protein_coding
8572                      protein_coding
8573                      protein_coding
8574                      protein_coding
8575                      protein_coding
8576                      protein_coding
8577                      protein_coding
8578                      protein_coding
8579                      protein_coding
8580                      protein_coding
8581                      protein_coding
8582                      protein_coding
8583                      protein_coding
8584                      protein_coding
8585                      protein_coding
8586                      protein_coding
8587                      protein_coding
8588                      protein_coding
8589                      protein_coding
8590                      protein_coding
8591                      protein_coding
8592                      protein_coding
8593                      protein_coding
8594                      protein_coding
8595                      protein_coding
8596                      protein_coding
8597                      protein_coding
8598                      protein_coding
8599                      protein_coding
8600                      protein_coding
8601                      protein_coding
8602                      protein_coding
8603                      protein_coding
8604                      protein_coding
8605                      protein_coding
8606                      protein_coding
8607                      protein_coding
8608                      protein_coding
8609                      protein_coding
8610                      protein_coding
8611                      protein_coding
8612                      protein_coding
8613                      protein_coding
8614                      protein_coding
8615                      protein_coding
8616                      protein_coding
8617                      protein_coding
8618                      protein_coding
8619                      protein_coding
8620                      protein_coding
8621                      protein_coding
8622                      protein_coding
8623                      protein_coding
8624                      protein_coding
8625                      protein_coding
8626                      protein_coding
8627                      protein_coding
8628                      protein_coding
8629                      protein_coding
8630                      protein_coding
8631                      protein_coding
8632                      protein_coding
8633                      protein_coding
8634                      protein_coding
8635                      protein_coding
8636                      protein_coding
8637                      protein_coding
8638                      protein_coding
8639                      protein_coding
8640                      protein_coding
8641                      protein_coding
8642                      protein_coding
8643                      protein_coding
8644                      protein_coding
8645                      protein_coding
8646                      protein_coding
8647                      protein_coding
8648                      protein_coding
8649                      protein_coding
8650                      protein_coding
8651                      protein_coding
8652                      protein_coding
8653                      protein_coding
8654                      protein_coding
8655                      protein_coding
8656                      protein_coding
8657                      protein_coding
8658                      protein_coding
8659                      protein_coding
8660                      protein_coding
8661                      protein_coding
8662                      protein_coding
8663                      protein_coding
8664                      protein_coding
8665                      protein_coding
8666                      protein_coding
8667                      protein_coding
8668                      protein_coding
8669                      protein_coding
8670                      protein_coding
8671                      protein_coding
8672                      protein_coding
8673                      protein_coding
8674                      protein_coding
8675                      protein_coding
8676                      protein_coding
8677                      protein_coding
8678                      protein_coding
8679                      protein_coding
8680                      protein_coding
8681                      protein_coding
8682                      protein_coding
8683                      protein_coding
8684                      protein_coding
8685                      protein_coding
8686                      protein_coding
8687                      protein_coding
8688                      protein_coding
8689                      protein_coding
8690                      protein_coding
8691                      protein_coding
8692                      protein_coding
8693                      protein_coding
8694                      protein_coding
8695                      protein_coding
8696                      protein_coding
8697                      protein_coding
8698                      protein_coding
8699                      protein_coding
8700                      protein_coding
8701                      protein_coding
8702                      protein_coding
8703                      protein_coding
8704                      protein_coding
8705                      protein_coding
8706                      protein_coding
8707                      protein_coding
8708                      protein_coding
8709                      protein_coding
8710                      protein_coding
8711                      protein_coding
8712                      protein_coding
8713                      protein_coding
8714                      protein_coding
8715                      protein_coding
8716                      protein_coding
8717                      protein_coding
8718                      protein_coding
8719                      protein_coding
8720                      protein_coding
8721                      protein_coding
8722                      protein_coding
8723                      protein_coding
8724                      protein_coding
8725                      protein_coding
8726                      protein_coding
8727                      protein_coding
8728                      protein_coding
8729                      protein_coding
8730                      protein_coding
8731                      protein_coding
8732                      protein_coding
8733                      protein_coding
8734                      protein_coding
8735                      protein_coding
8736                      protein_coding
8737                      protein_coding
8738                      protein_coding
8739                      protein_coding
8740                      protein_coding
8741                      protein_coding
8742                      protein_coding
8743                      protein_coding
8744                      protein_coding
8745                      protein_coding
8746                      protein_coding
8747                      protein_coding
8748                      protein_coding
8749                      protein_coding
8750                      protein_coding
8751                      protein_coding
8752                      protein_coding
8753                      protein_coding
8754                      protein_coding
8755                      protein_coding
8756                      protein_coding
8757                      protein_coding
8758                      protein_coding
8759                      protein_coding
8760                      protein_coding
8761                      protein_coding
8762                      protein_coding
8763                      protein_coding
8764                      protein_coding
8765                      protein_coding
8766                      protein_coding
8767                      protein_coding
8768                      protein_coding
8769                      protein_coding
8770                      protein_coding
8771                      protein_coding
8772                      protein_coding
8773                      protein_coding
8774                      protein_coding
8775                      protein_coding
8776                      protein_coding
8777                      protein_coding
8778                      protein_coding
8779                      protein_coding
8780                      protein_coding
8781                      protein_coding
8782                      protein_coding
8783                      protein_coding
8784                      protein_coding
8785                      protein_coding
8786                      protein_coding
8787                      protein_coding
8788                      protein_coding
8789                      protein_coding
8790                      protein_coding
8791                      protein_coding
8792                      protein_coding
8793                      protein_coding
8794                      protein_coding
8795                      protein_coding
8796                      protein_coding
8797                      protein_coding
8798                      protein_coding
8799                      protein_coding
8800                      protein_coding
8801                      protein_coding
8802                      protein_coding
8803                      protein_coding
8804                      protein_coding
8805                      protein_coding
8806                      protein_coding
8807                      protein_coding
8808                      protein_coding
8809                      protein_coding
8810                      protein_coding
8811                      protein_coding
8812                      protein_coding
8813                      protein_coding
8814                      protein_coding
8815                      protein_coding
8816                      protein_coding
8817                      protein_coding
8818                      protein_coding
8819                      protein_coding
8820                      protein_coding
8821                      protein_coding
8822                      protein_coding
8823                      protein_coding
8824                      protein_coding
8825                      protein_coding
8826                      protein_coding
8827                      protein_coding
8828                      protein_coding
8829                      protein_coding
8830                      protein_coding
8831                      protein_coding
8832                      protein_coding
8833                      protein_coding
8834                      protein_coding
8835                      protein_coding
8836                      protein_coding
8837                      protein_coding
8838                      protein_coding
8839                      protein_coding
8840                      protein_coding
8841                      protein_coding
8842                      protein_coding
8843                      protein_coding
8844                      protein_coding
8845                      protein_coding
8846                      protein_coding
8847                      protein_coding
8848                      protein_coding
8849                      protein_coding
8850                      protein_coding
8851                      protein_coding
8852                      protein_coding
8853                      protein_coding
8854                      protein_coding
8855                      protein_coding
8856                      protein_coding
8857                      protein_coding
8858                      protein_coding
8859                      protein_coding
8860                      protein_coding
8861                      protein_coding
8862                      protein_coding
8863                      protein_coding
8864                      protein_coding
8865                      protein_coding
8866                      protein_coding
8867                      protein_coding
8868                      protein_coding
8869                      protein_coding
8870                      protein_coding
8871                      protein_coding
8872                      protein_coding
8873                      protein_coding
8874                      protein_coding
8875                      protein_coding
8876                      protein_coding
8877                      protein_coding
8878                      protein_coding
8879                      protein_coding
8880                      protein_coding
8881                      protein_coding
8882                      protein_coding
8883                      protein_coding
8884                      protein_coding
8885                      protein_coding
8886                      protein_coding
8887                      protein_coding
8888                      protein_coding
8889                      protein_coding
8890                      protein_coding
8891                      protein_coding
8892                      protein_coding
8893                      protein_coding
8894                      protein_coding
8895                      protein_coding
8896                      protein_coding
8897                      protein_coding
8898                      protein_coding
8899                      protein_coding
8900                      protein_coding
8901                      protein_coding
8902                      protein_coding
8903                      protein_coding
8904                      protein_coding
8905                      protein_coding
8906                      protein_coding
8907                      protein_coding
8908                      protein_coding
8909                      protein_coding
8910                      protein_coding
8911                      protein_coding
8912                      protein_coding
8913                      protein_coding
8914                      protein_coding
8915                      protein_coding
8916                      protein_coding
8917                      protein_coding
8918                      protein_coding
8919                      protein_coding
8920                      protein_coding
8921                      protein_coding
8922                      protein_coding
8923                      protein_coding
8924                      protein_coding
8925                      protein_coding
8926                      protein_coding
8927                      protein_coding
8928                      protein_coding
8929                      protein_coding
8930                      protein_coding
8931                      protein_coding
8932                      protein_coding
8933                      protein_coding
8934                      protein_coding
8935                      protein_coding
8936                      protein_coding
8937                      protein_coding
8938                      protein_coding
8939                      protein_coding
8940                      protein_coding
8941                      protein_coding
8942                      protein_coding
8943                      protein_coding
8944                      protein_coding
8945                      protein_coding
8946                      protein_coding
8947                      protein_coding
8948                      protein_coding
8949                      protein_coding
8950                      protein_coding
8951                      protein_coding
8952                      protein_coding
8953                      protein_coding
8954                      protein_coding
8955                      protein_coding
8956                      protein_coding
8957                      protein_coding
8958                      protein_coding
8959                      protein_coding
8960                      protein_coding
8961                      protein_coding
8962                      protein_coding
8963                      protein_coding
8964                      protein_coding
8965                      protein_coding
8966                      protein_coding
8967                      protein_coding
8968                      protein_coding
8969                      protein_coding
8970                      protein_coding
8971                      protein_coding
8972                      protein_coding
8973                      protein_coding
8974                      protein_coding
8975                      protein_coding
8976                      protein_coding
8977                      protein_coding
8978                      protein_coding
8979                      protein_coding
8980                      protein_coding
8981                      protein_coding
8982                      protein_coding
8983                      protein_coding
8984                      protein_coding
8985                      protein_coding
8986                      protein_coding
8987                      protein_coding
8988                      protein_coding
8989                      protein_coding
8990                      protein_coding
8991                      protein_coding
8992                      protein_coding
8993                      protein_coding
8994                      protein_coding
8995                      protein_coding
8996                      protein_coding
8997                      protein_coding
8998                      protein_coding
8999                      protein_coding
9000                      protein_coding
9001                      protein_coding
9002                      protein_coding
9003                      protein_coding
9004                      protein_coding
9005                      protein_coding
9006                      protein_coding
9007                      protein_coding
9008                      protein_coding
9009                      protein_coding
9010                      protein_coding
9011                      protein_coding
9012                      protein_coding
9013                      protein_coding
9014                      protein_coding
9015                      protein_coding
9016                      protein_coding
9017                      protein_coding
9018                      protein_coding
9019                      protein_coding
9020                      protein_coding
9021                      protein_coding
9022                      protein_coding
9023                      protein_coding
9024                      protein_coding
9025                      protein_coding
9026                      protein_coding
9027                      protein_coding
9028                      protein_coding
9029                      protein_coding
9030                      protein_coding
9031                      protein_coding
9032                      protein_coding
9033                      protein_coding
9034                      protein_coding
9035                      protein_coding
9036                      protein_coding
9037                      protein_coding
9038                      protein_coding
9039                      protein_coding
9040                      protein_coding
9041                      protein_coding
9042                      protein_coding
9043                      protein_coding
9044                      protein_coding
9045                      protein_coding
9046                      protein_coding
9047                      protein_coding
9048                      protein_coding
9049                      protein_coding
9050                      protein_coding
9051                      protein_coding
9052                      protein_coding
9053                      protein_coding
9054                      protein_coding
9055                      protein_coding
9056                      protein_coding
9057                      protein_coding
9058                      protein_coding
9059                      protein_coding
9060                      protein_coding
9061                      protein_coding
9062                      protein_coding
9063                      protein_coding
9064                      protein_coding
9065                      protein_coding
9066                      protein_coding
9067                      protein_coding
9068                      protein_coding
9069                      protein_coding
9070                      protein_coding
9071                      protein_coding
9072                      protein_coding
9073                      protein_coding
9074                      protein_coding
9075                      protein_coding
9076                      protein_coding
9077                      protein_coding
9078                      protein_coding
9079                      protein_coding
9080                      protein_coding
9081                      protein_coding
9082                      protein_coding
9083                      protein_coding
9084                      protein_coding
9085                      protein_coding
9086                      protein_coding
9087                      protein_coding
9088                      protein_coding
9089                      protein_coding
9090                      protein_coding
9091                      protein_coding
9092                      protein_coding
9093                      protein_coding
9094                      protein_coding
9095                      protein_coding
9096                      protein_coding
9097                      protein_coding
9098                      protein_coding
9099                      protein_coding
9100                      protein_coding
9101                      protein_coding
9102                      protein_coding
9103                      protein_coding
9104                      protein_coding
9105                      protein_coding
9106                      protein_coding
9107                      protein_coding
9108                      protein_coding
9109                      protein_coding
9110                      protein_coding
9111                      protein_coding
9112                      protein_coding
9113                      protein_coding
9114                      protein_coding
9115                      protein_coding
9116                      protein_coding
9117                      protein_coding
9118                      protein_coding
9119                      protein_coding
9120                      protein_coding
9121                      protein_coding
9122                      protein_coding
9123                      protein_coding
9124                      protein_coding
9125                      protein_coding
9126                      protein_coding
9127                      protein_coding
9128                      protein_coding
9129                      protein_coding
9130                      protein_coding
9131                      protein_coding
9132                      protein_coding
9133                      protein_coding
9134                      protein_coding
9135                      protein_coding
9136                      protein_coding
9137                      protein_coding
9138                      protein_coding
9139                      protein_coding
9140                      protein_coding
9141                      protein_coding
9142                      protein_coding
9143                      protein_coding
9144                      protein_coding
9145                      protein_coding
9146                      protein_coding
9147                      protein_coding
9148                      protein_coding
9149                      protein_coding
9150                      protein_coding
9151                      protein_coding
9152                      protein_coding
9153                      protein_coding
9154                      protein_coding
9155                      protein_coding
9156                      protein_coding
9157                      protein_coding
9158                      protein_coding
9159                      protein_coding
9160                      protein_coding
9161                      protein_coding
9162                      protein_coding
9163                      protein_coding
9164                      protein_coding
9165                      protein_coding
9166                      protein_coding
9167                      protein_coding
9168                      protein_coding
9169                      protein_coding
9170                      protein_coding
9171                      protein_coding
9172                      protein_coding
9173                      protein_coding
9174                      protein_coding
9175                      protein_coding
9176                      protein_coding
9177                      protein_coding
9178                      protein_coding
9179                      protein_coding
9180                      protein_coding
9181                      protein_coding
9182                      protein_coding
9183                      protein_coding
9184                      protein_coding
9185                      protein_coding
9186                      protein_coding
9187                      protein_coding
9188                      protein_coding
9189                      protein_coding
9190                      protein_coding
9191                      protein_coding
9192                      protein_coding
9193                      protein_coding
9194                               miRNA
9195                      protein_coding
9196                      protein_coding
9197                      protein_coding
9198                      protein_coding
9199                      protein_coding
9200                      protein_coding
9201                      protein_coding
9202                      protein_coding
9203                      protein_coding
9204                      protein_coding
9205                      protein_coding
9206                      protein_coding
9207                      protein_coding
9208                      protein_coding
9209                      protein_coding
9210                      protein_coding
9211                      protein_coding
9212                      protein_coding
9213                      protein_coding
9214                      protein_coding
9215                      protein_coding
9216                      protein_coding
9217                      protein_coding
9218                      protein_coding
9219                      protein_coding
9220                      protein_coding
9221                      protein_coding
9222                      protein_coding
9223                      protein_coding
9224                      protein_coding
9225                      protein_coding
9226                      protein_coding
9227                      protein_coding
9228                      protein_coding
9229                      protein_coding
9230                      protein_coding
9231                      protein_coding
9232                      protein_coding
9233                      protein_coding
9234                      protein_coding
9235                      protein_coding
9236                      protein_coding
9237                      protein_coding
9238                      protein_coding
9239                      protein_coding
9240                      protein_coding
9241                      protein_coding
9242                      protein_coding
9243                      protein_coding
9244                      protein_coding
9245                      protein_coding
9246                      protein_coding
9247                      protein_coding
9248                      protein_coding
9249                      protein_coding
9250                      protein_coding
9251                      protein_coding
9252                      protein_coding
9253                      protein_coding
9254                      protein_coding
9255                      protein_coding
9256                      protein_coding
9257                      protein_coding
9258                      protein_coding
9259                      protein_coding
9260                      protein_coding
9261                      protein_coding
9262                      protein_coding
9263                      protein_coding
9264                      protein_coding
9265                      protein_coding
9266                      protein_coding
9267                      protein_coding
9268                      protein_coding
9269                      protein_coding
9270                      protein_coding
9271                      protein_coding
9272                      protein_coding
9273                      protein_coding
9274                      protein_coding
9275                      protein_coding
9276                      protein_coding
9277                      protein_coding
9278                      protein_coding
9279                      protein_coding
9280                      protein_coding
9281                      protein_coding
9282                      protein_coding
9283                      protein_coding
9284                      protein_coding
9285                      protein_coding
9286                      protein_coding
9287                      protein_coding
9288                      protein_coding
9289                      protein_coding
9290                      protein_coding
9291                      protein_coding
9292                      protein_coding
9293                      protein_coding
9294                      protein_coding
9295                      protein_coding
9296                      protein_coding
9297                      protein_coding
9298                      protein_coding
9299                      protein_coding
9300                      protein_coding
9301                      protein_coding
9302                      protein_coding
9303                      protein_coding
9304                      protein_coding
9305                      protein_coding
9306                      protein_coding
9307                      protein_coding
9308                      protein_coding
9309                      protein_coding
9310                      protein_coding
9311                      protein_coding
9312                      protein_coding
9313                      protein_coding
9314                      protein_coding
9315                      protein_coding
9316                      protein_coding
9317                      protein_coding
9318                      protein_coding
9319                      protein_coding
9320                      protein_coding
9321                      protein_coding
9322                      protein_coding
9323                      protein_coding
9324                      protein_coding
9325                      protein_coding
9326                      protein_coding
9327                      protein_coding
9328                      protein_coding
9329                      protein_coding
9330                      protein_coding
9331                      protein_coding
9332                      protein_coding
9333                      protein_coding
9334                      protein_coding
9335                      protein_coding
9336                      protein_coding
9337                      protein_coding
9338                      protein_coding
9339                      protein_coding
9340                      protein_coding
9341                      protein_coding
9342                      protein_coding
9343                      protein_coding
9344                      protein_coding
9345                      protein_coding
9346                      protein_coding
9347                      protein_coding
9348                      protein_coding
9349                      protein_coding
9350                processed_pseudogene
9351                      protein_coding
9352                      protein_coding
9353                      protein_coding
9354                      protein_coding
9355                      protein_coding
9356                      protein_coding
9357                      protein_coding
9358                      protein_coding
9359                      protein_coding
9360                           antisense
9361                           antisense
9362                           antisense
9363                processed_pseudogene
9364                      protein_coding
9365                      protein_coding
9366                      protein_coding
9367                      protein_coding
9368                      protein_coding
9369                      protein_coding
9370                      protein_coding
9371                      protein_coding
9372                      protein_coding
9373                      protein_coding
9374                      protein_coding
9375                      protein_coding
9376                      protein_coding
9377                      protein_coding
9378                      protein_coding
9379                      protein_coding
9380                      protein_coding
9381                      protein_coding
9382                      protein_coding
9383                      protein_coding
9384                      protein_coding
9385                      protein_coding
9386                      protein_coding
9387                      protein_coding
9388                      protein_coding
9389                      protein_coding
9390                      protein_coding
9391                      protein_coding
9392                      protein_coding
9393                      protein_coding
9394                      protein_coding
9395                      protein_coding
9396                      protein_coding
9397                      protein_coding
9398                      protein_coding
9399                      protein_coding
9400                      protein_coding
9401                      protein_coding
9402                      protein_coding
9403                      protein_coding
9404                      protein_coding
9405                      protein_coding
9406                      protein_coding
9407                      protein_coding
9408                      protein_coding
9409                      protein_coding
9410                      protein_coding
9411                      protein_coding
9412                      protein_coding
9413                      protein_coding
9414                      protein_coding
9415                      protein_coding
9416                      protein_coding
9417                      protein_coding
9418                      protein_coding
9419                      protein_coding
9420                      protein_coding
9421                      protein_coding
9422                      protein_coding
9423                      protein_coding
9424                      protein_coding
9425                      protein_coding
9426                      protein_coding
9427                      protein_coding
9428                      protein_coding
9429                      protein_coding
9430                      protein_coding
9431                      protein_coding
9432                      protein_coding
9433                      protein_coding
9434                      protein_coding
9435                      protein_coding
9436                      protein_coding
9437                      protein_coding
9438                      protein_coding
9439                      protein_coding
9440                      protein_coding
9441                      protein_coding
9442                      protein_coding
9443                      protein_coding
9444                      protein_coding
9445                      protein_coding
9446                      protein_coding
9447                      protein_coding
9448                      protein_coding
9449                      protein_coding
9450                      protein_coding
9451                      protein_coding
9452                      protein_coding
9453                      protein_coding
9454                      protein_coding
9455                      protein_coding
9456                      protein_coding
9457                      protein_coding
9458                      protein_coding
9459                      protein_coding
9460                      protein_coding
9461                      protein_coding
9462                      protein_coding
9463                      protein_coding
9464                      protein_coding
9465                      protein_coding
9466                      protein_coding
9467                      protein_coding
9468                      protein_coding
9469                processed_pseudogene
9470                      protein_coding
9471                      protein_coding
9472                      protein_coding
9473                      protein_coding
9474                      protein_coding
9475                      protein_coding
9476                      protein_coding
9477                      protein_coding
9478                      protein_coding
9479                      protein_coding
9480                      protein_coding
9481                      protein_coding
9482                      protein_coding
9483                      protein_coding
9484                      protein_coding
9485                      protein_coding
9486                      protein_coding
9487                      protein_coding
9488                      protein_coding
9489                      protein_coding
9490                      protein_coding
9491                      protein_coding
9492                      protein_coding
9493                      protein_coding
9494                      protein_coding
9495                      protein_coding
9496                      protein_coding
9497                      protein_coding
9498                      protein_coding
9499                      protein_coding
9500                      protein_coding
9501                      protein_coding
9502                      protein_coding
9503                      protein_coding
9504                      protein_coding
9505                      protein_coding
9506                      protein_coding
9507                      protein_coding
9508                      protein_coding
9509                      protein_coding
9510                      protein_coding
9511                      protein_coding
9512                      protein_coding
9513                      protein_coding
9514                      protein_coding
9515                           antisense
9516                           antisense
9517                      protein_coding
9518                      protein_coding
9519                      protein_coding
9520                      protein_coding
9521                      protein_coding
9522                      protein_coding
9523                      protein_coding
9524                      protein_coding
9525                      protein_coding
9526                      protein_coding
9527                      protein_coding
9528                      protein_coding
9529                      protein_coding
9530                      protein_coding
9531                      protein_coding
9532                      protein_coding
9533                      protein_coding
9534                      protein_coding
9535                      protein_coding
9536                      protein_coding
9537                      protein_coding
9538                      protein_coding
9539                      protein_coding
9540                      protein_coding
9541                      protein_coding
9542                      protein_coding
9543                      protein_coding
9544                      protein_coding
9545                      protein_coding
9546                      protein_coding
9547                      protein_coding
9548                      protein_coding
9549                      protein_coding
9550                      protein_coding
9551                      protein_coding
9552                      protein_coding
9553                      protein_coding
9554                      protein_coding
9555                      protein_coding
9556                      protein_coding
9557                      protein_coding
9558                      protein_coding
9559                      protein_coding
9560                      protein_coding
9561                      protein_coding
9562                      protein_coding
9563                      protein_coding
9564                      protein_coding
9565                      protein_coding
9566                      protein_coding
9567                      protein_coding
9568                      protein_coding
9569                      protein_coding
9570                      protein_coding
9571                      protein_coding
9572                      protein_coding
9573                      protein_coding
9574                      protein_coding
9575                      protein_coding
9576                      protein_coding
9577                      protein_coding
9578                      protein_coding
9579                      protein_coding
9580                      protein_coding
9581                      protein_coding
9582                      protein_coding
9583                      protein_coding
9584                      protein_coding
9585                      protein_coding
9586                      protein_coding
9587                      protein_coding
9588                      protein_coding
9589                      protein_coding
9590                             lincRNA
9591                             lincRNA
9592                             lincRNA
9593                             lincRNA
9594                             lincRNA
9595                             lincRNA
9596                             lincRNA
9597                             lincRNA
9598                             lincRNA
9599                           antisense
9600                           antisense
9601                             lincRNA
9602                             lincRNA
9603                             lincRNA
9604                      protein_coding
9605                      protein_coding
9606                      protein_coding
9607                      protein_coding
9608                      protein_coding
9609                           antisense
9610                           antisense
9611                             lincRNA
9612                             lincRNA
9613                             lincRNA
9614                             lincRNA
9615                             lincRNA
9616                      protein_coding
9617                      protein_coding
9618                      protein_coding
9619                      protein_coding
9620                      protein_coding
9621                             lincRNA
9622                             lincRNA
9623                           antisense
9624                           antisense
9625                           antisense
9626                           antisense
9627                           antisense
9628                           antisense
9629                           antisense
9630                           antisense
9631                           antisense
9632                           antisense
9633                           antisense
9634                           antisense
9635                           antisense
9636                           antisense
9637                           antisense
9638                           antisense
9639                           antisense
9640                           antisense
9641                           antisense
9642                           antisense
9643                           antisense
9644                           antisense
9645                           antisense
9646                           antisense
9647                           antisense
9648                              snoRNA
9649                processed_pseudogene
9650                      protein_coding
9651                      protein_coding
9652                      protein_coding
9653                      protein_coding
9654                      protein_coding
9655                      protein_coding
9656                      protein_coding
9657                      protein_coding
9658                      protein_coding
9659                      protein_coding
9660                      protein_coding
9661                      protein_coding
9662                                 TEC
9663                      protein_coding
9664                      protein_coding
9665                      protein_coding
9666                      protein_coding
9667                      protein_coding
9668                      protein_coding
9669                      protein_coding
9670                      protein_coding
9671                      protein_coding
9672                      protein_coding
9673                      protein_coding
9674                      protein_coding
9675                      protein_coding
9676                      protein_coding
9677                      protein_coding
9678                      protein_coding
9679                      protein_coding
9680                      protein_coding
9681                      protein_coding
9682                      protein_coding
9683                      protein_coding
9684                      protein_coding
9685                      protein_coding
9686                      protein_coding
9687                      protein_coding
9688                      protein_coding
9689                      protein_coding
9690                      protein_coding
9691                      protein_coding
9692                      protein_coding
9693                      protein_coding
9694                      protein_coding
9695                      protein_coding
9696                      protein_coding
9697                      protein_coding
9698                      protein_coding
9699                      protein_coding
9700                      protein_coding
9701                      protein_coding
9702                      protein_coding
9703                      protein_coding
9704                      protein_coding
9705                      protein_coding
9706                      protein_coding
9707                      protein_coding
9708                      protein_coding
9709                      protein_coding
9710                      protein_coding
9711                      protein_coding
9712                      protein_coding
9713                      protein_coding
9714                      protein_coding
9715                      protein_coding
9716                      protein_coding
9717                      protein_coding
9718                      protein_coding
9719                      protein_coding
9720                      protein_coding
9721                      protein_coding
9722                      protein_coding
9723                      protein_coding
9724                      protein_coding
9725                      protein_coding
9726                      protein_coding
9727                      protein_coding
9728                      protein_coding
9729                      protein_coding
9730                      protein_coding
9731                      protein_coding
9732                      protein_coding
9733                      protein_coding
9734                      protein_coding
9735                      protein_coding
9736                      protein_coding
9737                      protein_coding
9738                      protein_coding
9739                      protein_coding
9740                      protein_coding
9741                      protein_coding
9742                      protein_coding
9743                      protein_coding
9744                      protein_coding
9745                      protein_coding
9746                      protein_coding
9747                      protein_coding
9748                      protein_coding
9749                      protein_coding
9750                      protein_coding
9751                      protein_coding
9752                      protein_coding
9753                      protein_coding
9754                      protein_coding
9755                      protein_coding
9756                      protein_coding
9757                           antisense
9758                           antisense
9759                           antisense
9760                           antisense
9761                           antisense
9762                           antisense
9763                           antisense
9764                           antisense
9765                           antisense
9766                      protein_coding
9767                      protein_coding
9768                      protein_coding
9769                      protein_coding
9770                      protein_coding
9771                      protein_coding
9772                      protein_coding
9773                      protein_coding
9774                      protein_coding
9775                      protein_coding
9776                      protein_coding
9777                      protein_coding
9778                      protein_coding
9779                      protein_coding
9780                      protein_coding
9781                      protein_coding
9782                      protein_coding
9783                      protein_coding
9784                      protein_coding
9785                      protein_coding
9786                      protein_coding
9787                      protein_coding
9788                      protein_coding
9789                      protein_coding
9790                      protein_coding
9791                      protein_coding
9792                      protein_coding
9793                      protein_coding
9794                      protein_coding
9795                      protein_coding
9796                      protein_coding
9797                      protein_coding
9798                      protein_coding
9799                      protein_coding
9800                      protein_coding
9801                      protein_coding
9802                      protein_coding
9803                      protein_coding
9804                      protein_coding
9805                      protein_coding
9806                      protein_coding
9807                      protein_coding
9808                      protein_coding
9809                      protein_coding
9810                      protein_coding
9811                      protein_coding
9812                      protein_coding
9813                      protein_coding
9814                      protein_coding
9815                      protein_coding
9816                      protein_coding
9817                      protein_coding
9818                      protein_coding
9819                      protein_coding
9820                      protein_coding
9821                      protein_coding
9822                      protein_coding
9823                      protein_coding
9824                      protein_coding
9825                      protein_coding
9826                      protein_coding
9827                      protein_coding
9828                      protein_coding
9829                      protein_coding
9830                      protein_coding
9831                      protein_coding
9832                      protein_coding
9833                      protein_coding
9834                      protein_coding
9835                      protein_coding
9836                      protein_coding
9837                      protein_coding
9838                      protein_coding
9839                      protein_coding
9840                      protein_coding
9841                      protein_coding
9842                      protein_coding
9843                      protein_coding
9844                      protein_coding
9845                      protein_coding
9846                      protein_coding
9847                      protein_coding
9848                      protein_coding
9849                      protein_coding
9850                      protein_coding
9851                      protein_coding
9852                      protein_coding
9853                      protein_coding
9854                      protein_coding
9855                      protein_coding
9856                      protein_coding
9857                      protein_coding
9858                      protein_coding
9859                      protein_coding
9860                      protein_coding
9861                      protein_coding
9862                      protein_coding
9863                      protein_coding
9864                      protein_coding
9865                      protein_coding
9866                      protein_coding
9867                      protein_coding
9868                      protein_coding
9869                      protein_coding
9870                      protein_coding
9871                      protein_coding
9872                      protein_coding
9873                      protein_coding
9874                      protein_coding
9875                      protein_coding
9876                      protein_coding
9877                      protein_coding
9878                      protein_coding
9879                      protein_coding
9880                      protein_coding
9881                      protein_coding
9882                      protein_coding
9883                      protein_coding
9884                      protein_coding
9885                      protein_coding
9886                      protein_coding
9887                      protein_coding
9888                      protein_coding
9889                      protein_coding
9890                      protein_coding
9891                      protein_coding
9892                      protein_coding
9893                      protein_coding
9894                      protein_coding
9895                      protein_coding
9896                      protein_coding
9897                      protein_coding
9898                      protein_coding
9899                      protein_coding
9900                      protein_coding
9901                      protein_coding
9902                      protein_coding
9903                      protein_coding
9904                      protein_coding
9905                      protein_coding
9906                      protein_coding
9907                      protein_coding
9908                      protein_coding
9909                      protein_coding
9910                      protein_coding
9911                      protein_coding
9912                      protein_coding
9913                      protein_coding
9914                      protein_coding
9915                      protein_coding
9916                      protein_coding
9917                      protein_coding
9918                      protein_coding
9919                      protein_coding
9920                      protein_coding
9921                      protein_coding
9922                      protein_coding
9923                      protein_coding
9924                      protein_coding
9925                      protein_coding
9926                      protein_coding
9927                      protein_coding
9928                      protein_coding
9929                      protein_coding
9930                      protein_coding
9931                      protein_coding
9932                      protein_coding
9933                      protein_coding
9934                      protein_coding
9935                      protein_coding
9936                      protein_coding
9937                      protein_coding
9938                      protein_coding
9939                      protein_coding
9940                      protein_coding
9941                      protein_coding
9942                      protein_coding
9943                      protein_coding
9944                      protein_coding
9945                      protein_coding
9946                      protein_coding
9947                      protein_coding
9948                      protein_coding
9949                      protein_coding
9950                      protein_coding
9951                      protein_coding
9952                      protein_coding
9953                      protein_coding
9954                      protein_coding
9955                      protein_coding
9956                      protein_coding
9957                      protein_coding
9958                      protein_coding
9959                processed_pseudogene
9960                processed_pseudogene
9961                processed_pseudogene
9962                      protein_coding
9963                      protein_coding
9964                      protein_coding
9965                      protein_coding
9966                      protein_coding
9967                      protein_coding
9968                      protein_coding
9969                      protein_coding
9970                      protein_coding
9971                      protein_coding
9972                      protein_coding
9973                      protein_coding
9974                      protein_coding
9975                      protein_coding
9976                      protein_coding
9977                      protein_coding
9978                      protein_coding
9979                      protein_coding
9980                      protein_coding
9981                      protein_coding
9982                      protein_coding
9983                      protein_coding
9984                      protein_coding
9985                      protein_coding
9986                      protein_coding
9987                      protein_coding
9988                      protein_coding
9989                      protein_coding
9990                      protein_coding
9991                      protein_coding
9992                      protein_coding
9993                      protein_coding
9994                      protein_coding
9995                      protein_coding
9996                      protein_coding
9997                      protein_coding
9998                      protein_coding
9999                      protein_coding
 [ reached getOption("max.print") -- omitted 3979 rows ]

select()

Selecting specific columns

select() is part of the biomaRt package, need to address dplyr-package!

gene_by_exon %>%
  dplyr::select(hgnc_symbol, chromosome_name, start_position, end_position)
       hgnc_symbol chromosome_name start_position end_position
1                               21       44439035     44439110
2                               21        7092616      7092716
3                               21        8433085      8433174
4                               21       39171462     39171560
5                               21       41870633     41872054
6                               21       41870633     41872054
7            ITGB2              21       44885953     44931989
8            ITGB2              21       44885953     44931989
9            ITGB2              21       44885953     44931989
10           ITGB2              21       44885953     44931989
11           ITGB2              21       44885953     44931989
12           ITGB2              21       44885953     44931989
13           ITGB2              21       44885953     44931989
14           ITGB2              21       44885953     44931989
15           ITGB2              21       44885953     44931989
16           ITGB2              21       44885953     44931989
17           ITGB2              21       44885953     44931989
18           ITGB2              21       44885953     44931989
19           ITGB2              21       44885953     44931989
20           ITGB2              21       44885953     44931989
21           ITGB2              21       44885953     44931989
22           ITGB2              21       44885953     44931989
23           ITGB2              21       44885953     44931989
24           ITGB2              21       44885953     44931989
25           ITGB2              21       44885953     44931989
26           ITGB2              21       44885953     44931989
27           ITGB2              21       44885953     44931989
28           ITGB2              21       44885953     44931989
29           ITGB2              21       44885953     44931989
30           ITGB2              21       44885953     44931989
31           ITGB2              21       44885953     44931989
32           ITGB2              21       44885953     44931989
33           ITGB2              21       44885953     44931989
34           ITGB2              21       44885953     44931989
35           ITGB2              21       44885953     44931989
36           ITGB2              21       44885953     44931989
37           ITGB2              21       44885953     44931989
38           ITGB2              21       44885953     44931989
39           ITGB2              21       44885953     44931989
40           ITGB2              21       44885953     44931989
41           ITGB2              21       44885953     44931989
42           ITGB2              21       44885953     44931989
43           ITGB2              21       44885953     44931989
44           ITGB2              21       44885953     44931989
45           ITGB2              21       44885953     44931989
46           ITGB2              21       44885953     44931989
47           ITGB2              21       44885953     44931989
48           ITGB2              21       44885953     44931989
49           ITGB2              21       44885953     44931989
50           ITGB2              21       44885953     44931989
51           ITGB2              21       44885953     44931989
52           ITGB2              21       44885953     44931989
53           ITGB2              21       44885953     44931989
54           ITGB2              21       44885953     44931989
55           ITGB2              21       44885953     44931989
56           ITGB2              21       44885953     44931989
57           ITGB2              21       44885953     44931989
58           ITGB2              21       44885953     44931989
59           ITGB2              21       44885953     44931989
60           ITGB2              21       44885953     44931989
61           ITGB2              21       44885953     44931989
62           ITGB2              21       44885953     44931989
63           ITGB2              21       44885953     44931989
64           ITGB2              21       44885953     44931989
65           ITGB2              21       44885953     44931989
66           ITGB2              21       44885953     44931989
67           ITGB2              21       44885953     44931989
68           ITGB2              21       44885953     44931989
69           ITGB2              21       44885953     44931989
70           ITGB2              21       44885953     44931989
71           ITGB2              21       44885953     44931989
72           ITGB2              21       44885953     44931989
73           ITGB2              21       44885953     44931989
74           ITGB2              21       44885953     44931989
75           ITGB2              21       44885953     44931989
76           ITGB2              21       44885953     44931989
77           ITGB2              21       44885953     44931989
78           ITGB2              21       44885953     44931989
79           ITGB2              21       44885953     44931989
80           ITGB2              21       44885953     44931989
81           ITGB2              21       44885953     44931989
82           ITGB2              21       44885953     44931989
83           ITGB2              21       44885953     44931989
84           ITGB2              21       44885953     44931989
85           ITGB2              21       44885953     44931989
86           ITGB2              21       44885953     44931989
87           ITGB2              21       44885953     44931989
88           ITGB2              21       44885953     44931989
89           ITGB2              21       44885953     44931989
90           ITGB2              21       44885953     44931989
91           ITGB2              21       44885953     44931989
92           ITGB2              21       44885953     44931989
93           ITGB2              21       44885953     44931989
94           ITGB2              21       44885953     44931989
95           ITGB2              21       44885953     44931989
96           ITGB2              21       44885953     44931989
97           ITGB2              21       44885953     44931989
98           ITGB2              21       44885953     44931989
99           ITGB2              21       44885953     44931989
100          ITGB2              21       44885953     44931989
101          ITGB2              21       44885953     44931989
102          ITGB2              21       44885953     44931989
103          ITGB2              21       44885953     44931989
104          ITGB2              21       44885953     44931989
105          ITGB2              21       44885953     44931989
106          ITGB2              21       44885953     44931989
107          ITGB2              21       44885953     44931989
108          ITGB2              21       44885953     44931989
109          ITGB2              21       44885953     44931989
110          ITGB2              21       44885953     44931989
111          ITGB2              21       44885953     44931989
112          ITGB2              21       44885953     44931989
113          ITGB2              21       44885953     44931989
114          ITGB2              21       44885953     44931989
115          ITGB2              21       44885953     44931989
116          ITGB2              21       44885953     44931989
117          ITGB2              21       44885953     44931989
118          ITGB2              21       44885953     44931989
119          ITGB2              21       44885953     44931989
120          ITGB2              21       44885953     44931989
121          ITGB2              21       44885953     44931989
122          ITGB2              21       44885953     44931989
123          ITGB2              21       44885953     44931989
124          ITGB2              21       44885953     44931989
125          ITGB2              21       44885953     44931989
126          ITGB2              21       44885953     44931989
127          ITGB2              21       44885953     44931989
128          ITGB2              21       44885953     44931989
129          ITGB2              21       44885953     44931989
130          ITGB2              21       44885953     44931989
131          ITGB2              21       44885953     44931989
132          ITGB2              21       44885953     44931989
133          ITGB2              21       44885953     44931989
134          ITGB2              21       44885953     44931989
135          ITGB2              21       44885953     44931989
136          ITGB2              21       44885953     44931989
137          ITGB2              21       44885953     44931989
138          ITGB2              21       44885953     44931989
139          ITGB2              21       44885953     44931989
140          ITGB2              21       44885953     44931989
141          ITGB2              21       44885953     44931989
142          ITGB2              21       44885953     44931989
143          ITGB2              21       44885953     44931989
144          ITGB2              21       44885953     44931989
145          ITGB2              21       44885953     44931989
146          ITGB2              21       44885953     44931989
147          ITGB2              21       44885953     44931989
148          ITGB2              21       44885953     44931989
149          ITGB2              21       44885953     44931989
150          ITGB2              21       44885953     44931989
151          ITGB2              21       44885953     44931989
152          ITGB2              21       44885953     44931989
153          ITGB2              21       44885953     44931989
154          ITGB2              21       44885953     44931989
155          ITGB2              21       44885953     44931989
156          ITGB2              21       44885953     44931989
157          ITGB2              21       44885953     44931989
158          ITGB2              21       44885953     44931989
159          ITGB2              21       44885953     44931989
160          ITGB2              21       44885953     44931989
161          ITGB2              21       44885953     44931989
162          ITGB2              21       44885953     44931989
163          ITGB2              21       44885953     44931989
164          ITGB2              21       44885953     44931989
165          ITGB2              21       44885953     44931989
166          ITGB2              21       44885953     44931989
167          ITGB2              21       44885953     44931989
168          ITGB2              21       44885953     44931989
169          ITGB2              21       44885953     44931989
170          ITGB2              21       44885953     44931989
171          ITGB2              21       44885953     44931989
172          ITGB2              21       44885953     44931989
173          ITGB2              21       44885953     44931989
174          ITGB2              21       44885953     44931989
175          ITGB2              21       44885953     44931989
176          ITGB2              21       44885953     44931989
177          ITGB2              21       44885953     44931989
178          ITGB2              21       44885953     44931989
179          ITGB2              21       44885953     44931989
180          ITGB2              21       44885953     44931989
181          ITGB2              21       44885953     44931989
182          ITGB2              21       44885953     44931989
183          ITGB2              21       44885953     44931989
184          ITGB2              21       44885953     44931989
185          ITGB2              21       44885953     44931989
186          ITGB2              21       44885953     44931989
187          ITGB2              21       44885953     44931989
188          ITGB2              21       44885953     44931989
189          ITGB2              21       44885953     44931989
190          ITGB2              21       44885953     44931989
191          ITGB2              21       44885953     44931989
192          ITGB2              21       44885953     44931989
193          ITGB2              21       44885953     44931989
194          ITGB2              21       44885953     44931989
195          ITGB2              21       44885953     44931989
196          ITGB2              21       44885953     44931989
197          ITGB2              21       44885953     44931989
198          ITGB2              21       44885953     44931989
199          ITGB2              21       44885953     44931989
200          ITGB2              21       44885953     44931989
201          ITGB2              21       44885953     44931989
202          ITGB2              21       44885953     44931989
203      RNA5SP489              21       25202207     25202315
204     RNU6-1149P              21       42417497     42417593
205                             21       43748365     43748468
206                             21       43748365     43748468
207         MIR802              21       35720715     35720808
208       RNU2-55P              21       23281736     23281909
209                             21       17527140     17527247
210                             21       28743208     28743291
211        MIR4760              21       40212352     40212431
212          S100B              21       46598962     46605208
213          S100B              21       46598962     46605208
214          S100B              21       46598962     46605208
215          S100B              21       46598962     46605208
216          S100B              21       46598962     46605208
217          S100B              21       46598962     46605208
218          S100B              21       46598962     46605208
219          S100B              21       46598962     46605208
220          S100B              21       46598962     46605208
221          DIP2A              21       46458899     46569852
222          DIP2A              21       46458899     46569852
223          DIP2A              21       46458899     46569852
224          DIP2A              21       46458899     46569852
225          DIP2A              21       46458899     46569852
226          DIP2A              21       46458899     46569852
227          DIP2A              21       46458899     46569852
228          DIP2A              21       46458899     46569852
229          DIP2A              21       46458899     46569852
230          DIP2A              21       46458899     46569852
231          DIP2A              21       46458899     46569852
232          DIP2A              21       46458899     46569852
233          DIP2A              21       46458899     46569852
234          DIP2A              21       46458899     46569852
235          DIP2A              21       46458899     46569852
236          DIP2A              21       46458899     46569852
237          DIP2A              21       46458899     46569852
238          DIP2A              21       46458899     46569852
239          DIP2A              21       46458899     46569852
240          DIP2A              21       46458899     46569852
241          DIP2A              21       46458899     46569852
242          DIP2A              21       46458899     46569852
243          DIP2A              21       46458899     46569852
244          DIP2A              21       46458899     46569852
245          DIP2A              21       46458899     46569852
246          DIP2A              21       46458899     46569852
247          DIP2A              21       46458899     46569852
248          DIP2A              21       46458899     46569852
249          DIP2A              21       46458899     46569852
250          DIP2A              21       46458899     46569852
251          DIP2A              21       46458899     46569852
252          DIP2A              21       46458899     46569852
253          DIP2A              21       46458899     46569852
254          DIP2A              21       46458899     46569852
255          DIP2A              21       46458899     46569852
256          DIP2A              21       46458899     46569852
257          DIP2A              21       46458899     46569852
258          DIP2A              21       46458899     46569852
259          DIP2A              21       46458899     46569852
260          DIP2A              21       46458899     46569852
261          DIP2A              21       46458899     46569852
262          DIP2A              21       46458899     46569852
263          DIP2A              21       46458899     46569852
264          DIP2A              21       46458899     46569852
265          DIP2A              21       46458899     46569852
266          DIP2A              21       46458899     46569852
267          DIP2A              21       46458899     46569852
268          DIP2A              21       46458899     46569852
269          DIP2A              21       46458899     46569852
270          DIP2A              21       46458899     46569852
271          DIP2A              21       46458899     46569852
272          DIP2A              21       46458899     46569852
273          DIP2A              21       46458899     46569852
274          DIP2A              21       46458899     46569852
275          DIP2A              21       46458899     46569852
276          DIP2A              21       46458899     46569852
277          DIP2A              21       46458899     46569852
278          DIP2A              21       46458899     46569852
279          DIP2A              21       46458899     46569852
280          DIP2A              21       46458899     46569852
281          DIP2A              21       46458899     46569852
282          DIP2A              21       46458899     46569852
283          DIP2A              21       46458899     46569852
284          DIP2A              21       46458899     46569852
285          DIP2A              21       46458899     46569852
286          DIP2A              21       46458899     46569852
287          DIP2A              21       46458899     46569852
288          DIP2A              21       46458899     46569852
289          DIP2A              21       46458899     46569852
290          DIP2A              21       46458899     46569852
291          DIP2A              21       46458899     46569852
292          DIP2A              21       46458899     46569852
293          DIP2A              21       46458899     46569852
294          DIP2A              21       46458899     46569852
295          DIP2A              21       46458899     46569852
296          DIP2A              21       46458899     46569852
297          DIP2A              21       46458899     46569852
298          DIP2A              21       46458899     46569852
299          DIP2A              21       46458899     46569852
300          DIP2A              21       46458899     46569852
301          DIP2A              21       46458899     46569852
302          DIP2A              21       46458899     46569852
303          DIP2A              21       46458899     46569852
304          DIP2A              21       46458899     46569852
305          DIP2A              21       46458899     46569852
306          DIP2A              21       46458899     46569852
307          DIP2A              21       46458899     46569852
308          DIP2A              21       46458899     46569852
309          DIP2A              21       46458899     46569852
310          DIP2A              21       46458899     46569852
311          DIP2A              21       46458899     46569852
312          DIP2A              21       46458899     46569852
313          DIP2A              21       46458899     46569852
314          DIP2A              21       46458899     46569852
315          DIP2A              21       46458899     46569852
316          DIP2A              21       46458899     46569852
317          DIP2A              21       46458899     46569852
318          DIP2A              21       46458899     46569852
319          DIP2A              21       46458899     46569852
320          DIP2A              21       46458899     46569852
321          DIP2A              21       46458899     46569852
322          DIP2A              21       46458899     46569852
323          DIP2A              21       46458899     46569852
324          DIP2A              21       46458899     46569852
325          DIP2A              21       46458899     46569852
326          DIP2A              21       46458899     46569852
327          DIP2A              21       46458899     46569852
328          DIP2A              21       46458899     46569852
329          DIP2A              21       46458899     46569852
330          DIP2A              21       46458899     46569852
331          DIP2A              21       46458899     46569852
332          DIP2A              21       46458899     46569852
333          DIP2A              21       46458899     46569852
334          DIP2A              21       46458899     46569852
335          DIP2A              21       46458899     46569852
336          DIP2A              21       46458899     46569852
337          DIP2A              21       46458899     46569852
338          DIP2A              21       46458899     46569852
339          DIP2A              21       46458899     46569852
340          DIP2A              21       46458899     46569852
341          DIP2A              21       46458899     46569852
342          DIP2A              21       46458899     46569852
343          DIP2A              21       46458899     46569852
344          DIP2A              21       46458899     46569852
345          DIP2A              21       46458899     46569852
346          DIP2A              21       46458899     46569852
347          DIP2A              21       46458899     46569852
348          DIP2A              21       46458899     46569852
349          DIP2A              21       46458899     46569852
350          DIP2A              21       46458899     46569852
351          DIP2A              21       46458899     46569852
352          DIP2A              21       46458899     46569852
353          DIP2A              21       46458899     46569852
354          DIP2A              21       46458899     46569852
355          DIP2A              21       46458899     46569852
356          DIP2A              21       46458899     46569852
357          DIP2A              21       46458899     46569852
358          DIP2A              21       46458899     46569852
359          DIP2A              21       46458899     46569852
360          DIP2A              21       46458899     46569852
361          DIP2A              21       46458899     46569852
362          DIP2A              21       46458899     46569852
363          DIP2A              21       46458899     46569852
364          DIP2A              21       46458899     46569852
365          DIP2A              21       46458899     46569852
366          DIP2A              21       46458899     46569852
367          DIP2A              21       46458899     46569852
368          DIP2A              21       46458899     46569852
369          DIP2A              21       46458899     46569852
370          DIP2A              21       46458899     46569852
371          DIP2A              21       46458899     46569852
372          DIP2A              21       46458899     46569852
373          DIP2A              21       46458899     46569852
374          DIP2A              21       46458899     46569852
375          DIP2A              21       46458899     46569852
376          DIP2A              21       46458899     46569852
377          DIP2A              21       46458899     46569852
378          DIP2A              21       46458899     46569852
379          DIP2A              21       46458899     46569852
380          DIP2A              21       46458899     46569852
381          DIP2A              21       46458899     46569852
382          DIP2A              21       46458899     46569852
383          DIP2A              21       46458899     46569852
384          DIP2A              21       46458899     46569852
385          DIP2A              21       46458899     46569852
386          DIP2A              21       46458899     46569852
387          DIP2A              21       46458899     46569852
388          DIP2A              21       46458899     46569852
389          DIP2A              21       46458899     46569852
390          DIP2A              21       46458899     46569852
391          DIP2A              21       46458899     46569852
392          DIP2A              21       46458899     46569852
393          DIP2A              21       46458899     46569852
394          DIP2A              21       46458899     46569852
395          DIP2A              21       46458899     46569852
396          DIP2A              21       46458899     46569852
397          DIP2A              21       46458899     46569852
398          DIP2A              21       46458899     46569852
399          DIP2A              21       46458899     46569852
400          DIP2A              21       46458899     46569852
401          DIP2A              21       46458899     46569852
402          DIP2A              21       46458899     46569852
403          DIP2A              21       46458899     46569852
404          DIP2A              21       46458899     46569852
405          DIP2A              21       46458899     46569852
406          DIP2A              21       46458899     46569852
407          DIP2A              21       46458899     46569852
408          DIP2A              21       46458899     46569852
409          DIP2A              21       46458899     46569852
410          DIP2A              21       46458899     46569852
411          DIP2A              21       46458899     46569852
412      RNU6-772P              21       20355748     20355852
413      MIR3648-2              21        8986999      8987178
414        MIR6501              21       33550662     33550728
415                             21       16284696     16284768
416         MIR155              21       25573980     25574044
417      MIR3118-1              21       13644775     13644850
418       MIR5692B              21       42950928     42951014
419      LINC01424              21       44802577     44804717
420      LINC01424              21       44802577     44804717
421      KRTAP12-2              21       44666189     44666927
422      KRTAP12-4              21       44654213     44654659
423                             21       37267784     37268497
424           PCNT              21       46324122     46445769
425           PCNT              21       46324122     46445769
426           PCNT              21       46324122     46445769
427           PCNT              21       46324122     46445769
428           PCNT              21       46324122     46445769
429           PCNT              21       46324122     46445769
430           PCNT              21       46324122     46445769
431           PCNT              21       46324122     46445769
432           PCNT              21       46324122     46445769
433           PCNT              21       46324122     46445769
434           PCNT              21       46324122     46445769
435           PCNT              21       46324122     46445769
436           PCNT              21       46324122     46445769
437           PCNT              21       46324122     46445769
438           PCNT              21       46324122     46445769
439           PCNT              21       46324122     46445769
440           PCNT              21       46324122     46445769
441           PCNT              21       46324122     46445769
442           PCNT              21       46324122     46445769
443           PCNT              21       46324122     46445769
444           PCNT              21       46324122     46445769
445           PCNT              21       46324122     46445769
446           PCNT              21       46324122     46445769
447           PCNT              21       46324122     46445769
448           PCNT              21       46324122     46445769
449           PCNT              21       46324122     46445769
450           PCNT              21       46324122     46445769
451           PCNT              21       46324122     46445769
452           PCNT              21       46324122     46445769
453           PCNT              21       46324122     46445769
454           PCNT              21       46324122     46445769
455           PCNT              21       46324122     46445769
456           PCNT              21       46324122     46445769
457           PCNT              21       46324122     46445769
458           PCNT              21       46324122     46445769
459           PCNT              21       46324122     46445769
460           PCNT              21       46324122     46445769
461           PCNT              21       46324122     46445769
462           PCNT              21       46324122     46445769
463           PCNT              21       46324122     46445769
464           PCNT              21       46324122     46445769
465           PCNT              21       46324122     46445769
466           PCNT              21       46324122     46445769
467           PCNT              21       46324122     46445769
468           PCNT              21       46324122     46445769
469           PCNT              21       46324122     46445769
470           PCNT              21       46324122     46445769
471           PCNT              21       46324122     46445769
472           PCNT              21       46324122     46445769
473           PCNT              21       46324122     46445769
474           PCNT              21       46324122     46445769
475           PCNT              21       46324122     46445769
476           PCNT              21       46324122     46445769
477           PCNT              21       46324122     46445769
478           PCNT              21       46324122     46445769
479           PCNT              21       46324122     46445769
480           PCNT              21       46324122     46445769
481           PCNT              21       46324122     46445769
482           PCNT              21       46324122     46445769
483           PCNT              21       46324122     46445769
484           PCNT              21       46324122     46445769
485           PCNT              21       46324122     46445769
486           PCNT              21       46324122     46445769
487           PCNT              21       46324122     46445769
488           PCNT              21       46324122     46445769
489           PCNT              21       46324122     46445769
490           PCNT              21       46324122     46445769
491           PCNT              21       46324122     46445769
492           PCNT              21       46324122     46445769
493           PCNT              21       46324122     46445769
494           PCNT              21       46324122     46445769
495           PCNT              21       46324122     46445769
496           PCNT              21       46324122     46445769
497           PCNT              21       46324122     46445769
498           PCNT              21       46324122     46445769
499           PCNT              21       46324122     46445769
500           PCNT              21       46324122     46445769
501           PCNT              21       46324122     46445769
502           PCNT              21       46324122     46445769
503           PCNT              21       46324122     46445769
504           PCNT              21       46324122     46445769
505           PCNT              21       46324122     46445769
506           PCNT              21       46324122     46445769
507           PCNT              21       46324122     46445769
508           PCNT              21       46324122     46445769
509           PCNT              21       46324122     46445769
510           PCNT              21       46324122     46445769
511           PCNT              21       46324122     46445769
512           PCNT              21       46324122     46445769
513           PCNT              21       46324122     46445769
514           PCNT              21       46324122     46445769
515           PCNT              21       46324122     46445769
516           PCNT              21       46324122     46445769
517           PCNT              21       46324122     46445769
518           PCNT              21       46324122     46445769
519           PCNT              21       46324122     46445769
520           PCNT              21       46324122     46445769
521           PCNT              21       46324122     46445769
522           PCNT              21       46324122     46445769
523           PCNT              21       46324122     46445769
524           PCNT              21       46324122     46445769
525           PCNT              21       46324122     46445769
526           PCNT              21       46324122     46445769
527           PCNT              21       46324122     46445769
528           PCNT              21       46324122     46445769
529           PCNT              21       46324122     46445769
530           PCNT              21       46324122     46445769
531           PCNT              21       46324122     46445769
532           PCNT              21       46324122     46445769
533           PCNT              21       46324122     46445769
534           PCNT              21       46324122     46445769
535           PCNT              21       46324122     46445769
536           PCNT              21       46324122     46445769
537           PCNT              21       46324122     46445769
538           PCNT              21       46324122     46445769
539           PCNT              21       46324122     46445769
540           PCNT              21       46324122     46445769
541           PCNT              21       46324122     46445769
542           PCNT              21       46324122     46445769
543           PCNT              21       46324122     46445769
544           PCNT              21       46324122     46445769
545           PCNT              21       46324122     46445769
546           PCNT              21       46324122     46445769
547      KRTAP12-3              21       44657932     44658341
548      KRTAP10-6              21       44591268     44592505
549      KRTAP12-1              21       44681576     44682163
550      KRTAP10-2              21       44550357     44551505
551      KRTAP10-2              21       44550357     44551505
552      KRTAP10-2              21       44550357     44551505
553      LRRC3-AS1              21       44450986     44455284
554      LRRC3-AS1              21       44450986     44455284
555      LRRC3-AS1              21       44450986     44455284
556      LRRC3-AS1              21       44450986     44455284
557                             21        8388898      8388987
558                             21       36986739     36986851
559      BACE2-IT1              21       41180097     41180626
560      BACE2-IT1              21       41180097     41180626
561                             21       33967101     33968573
562                             21       33967101     33968573
563                             21        8197620      8227646
564                             21        8197620      8227646
565                             21        8197620      8227646
566                             21        8197620      8227646
567                             21        8197620      8227646
568                             21        8197620      8227646
569                             21        8197620      8227646
570                             21       29359002     29359453
571      BACH1-IT3              21       29496047     29500386
572      BACH1-IT3              21       29496047     29500386
573          BACH1              21       29194071     29630751
574          BACH1              21       29194071     29630751
575          BACH1              21       29194071     29630751
576          BACH1              21       29194071     29630751
577          BACH1              21       29194071     29630751
578          BACH1              21       29194071     29630751
579          BACH1              21       29194071     29630751
580          BACH1              21       29194071     29630751
581          BACH1              21       29194071     29630751
582          BACH1              21       29194071     29630751
583          BACH1              21       29194071     29630751
584          BACH1              21       29194071     29630751
585          BACH1              21       29194071     29630751
586          BACH1              21       29194071     29630751
587          BACH1              21       29194071     29630751
588          BACH1              21       29194071     29630751
589          BACH1              21       29194071     29630751
590          BACH1              21       29194071     29630751
591          BACH1              21       29194071     29630751
592          BACH1              21       29194071     29630751
593          BACH1              21       29194071     29630751
594          BACH1              21       29194071     29630751
595          BACH1              21       29194071     29630751
596          BACH1              21       29194071     29630751
597          BACH1              21       29194071     29630751
598          BACH1              21       29194071     29630751
599          BACH1              21       29194071     29630751
600          BACH1              21       29194071     29630751
601          BACH1              21       29194071     29630751
602          BACH1              21       29194071     29630751
603          BACH1              21       29194071     29630751
604          BACH1              21       29194071     29630751
605          BACH1              21       29194071     29630751
606          BACH1              21       29194071     29630751
607          BACH1              21       29194071     29630751
608          BACH1              21       29194071     29630751
609          BACH1              21       29194071     29630751
610          BACH1              21       29194071     29630751
611          BACH1              21       29194071     29630751
612          BACH1              21       29194071     29630751
613          BACH1              21       29194071     29630751
614          BACH1              21       29194071     29630751
615          BACH1              21       29194071     29630751
616          BACH1              21       29194071     29630751
617          BACH1              21       29194071     29630751
618                             21       37100814     37101343
619                             21        7669397      7681742
620                             21        7669397      7681742
621                             21        7669397      7681742
622                             21        7669397      7681742
623                             21        7669397      7681742
624                             21        7669397      7681742
625                             21        7669397      7681742
626                             21        7669397      7681742
627                             21        7669397      7681742
628                             21        7669397      7681742
629                             21        7669397      7681742
630                             21        7669397      7681742
631                             21        7669397      7681742
632                             21        7669397      7681742
633                             21        7669397      7681742
634                             21        7669397      7681742
635                             21        7669397      7681742
636                             21        7669397      7681742
637                             21        7669397      7681742
638                             21        7669397      7681742
639                             21        7669397      7681742
640       RNA5-8S5              21        8256781      8256933
641                             21        8205851      8205940
642        MIR4759              21       26953961     26954043
643       RPL18AP2              21       46420553     46421034
644      LINC00479              21       41711520     41715775
645      LINC00479              21       41711520     41715775
646      LINC00479              21       41711520     41715775
647      LINC00479              21       41711520     41715775
648      LINC00479              21       41711520     41715775
649      LINC00479              21       41711520     41715775
650      LINC00479              21       41711520     41715775
651      LINC00479              21       41711520     41715775
652      LINC00479              21       41711520     41715775
653      LINC00479              21       41711520     41715775
654      LINC00479              21       41711520     41715775
655      LINC00479              21       41711520     41715775
656      LINC00479              21       41711520     41715775
657      LINC00479              21       41711520     41715775
658      LINC00479              21       41711520     41715775
659      LINC00479              21       41711520     41715775
660      LINC00479              21       41711520     41715775
661      LINC00479              21       41711520     41715775
662      LINC00479              21       41711520     41715775
663      LINC00479              21       41711520     41715775
664     TSPEAR-AS2              21       44517216     44525952
665     TSPEAR-AS2              21       44517216     44525952
666     TSPEAR-AS2              21       44517216     44525952
667     TSPEAR-AS2              21       44517216     44525952
668     TSPEAR-AS2              21       44517216     44525952
669     TSPEAR-AS2              21       44517216     44525952
670     TSPEAR-AS2              21       44517216     44525952
671      KRTAP10-8              21       44612079     44612954
672                             21       32841861     32841995
673      MIR8069-1              21        6859171      6859256
674         UBE2G2              21       44768580     44802019
675         UBE2G2              21       44768580     44802019
676         UBE2G2              21       44768580     44802019
677         UBE2G2              21       44768580     44802019
678         UBE2G2              21       44768580     44802019
679         UBE2G2              21       44768580     44802019
680         UBE2G2              21       44768580     44802019
681         UBE2G2              21       44768580     44802019
682         UBE2G2              21       44768580     44802019
683         UBE2G2              21       44768580     44802019
684         UBE2G2              21       44768580     44802019
685         UBE2G2              21       44768580     44802019
686         UBE2G2              21       44768580     44802019
687         UBE2G2              21       44768580     44802019
688         UBE2G2              21       44768580     44802019
689         UBE2G2              21       44768580     44802019
690         UBE2G2              21       44768580     44802019
691         UBE2G2              21       44768580     44802019
692         UBE2G2              21       44768580     44802019
693         UBE2G2              21       44768580     44802019
694         UBE2G2              21       44768580     44802019
695         UBE2G2              21       44768580     44802019
696         UBE2G2              21       44768580     44802019
697         UBE2G2              21       44768580     44802019
698         UBE2G2              21       44768580     44802019
699         UBE2G2              21       44768580     44802019
700         UBE2G2              21       44768580     44802019
701         UBE2G2              21       44768580     44802019
702         UBE2G2              21       44768580     44802019
703         UBE2G2              21       44768580     44802019
704         UBE2G2              21       44768580     44802019
705         UBE2G2              21       44768580     44802019
706         UBE2G2              21       44768580     44802019
707         UBE2G2              21       44768580     44802019
708         UBE2G2              21       44768580     44802019
709         UBE2G2              21       44768580     44802019
710         UBE2G2              21       44768580     44802019
711         UBE2G2              21       44768580     44802019
712         UBE2G2              21       44768580     44802019
713         UBE2G2              21       44768580     44802019
714         UBE2G2              21       44768580     44802019
715         UBE2G2              21       44768580     44802019
716         UBE2G2              21       44768580     44802019
717         UBE2G2              21       44768580     44802019
718         UBE2G2              21       44768580     44802019
719         UBE2G2              21       44768580     44802019
720         UBE2G2              21       44768580     44802019
721         UBE2G2              21       44768580     44802019
722         UBE2G2              21       44768580     44802019
723         UBE2G2              21       44768580     44802019
724         UBE2G2              21       44768580     44802019
725         UBE2G2              21       44768580     44802019
726         UBE2G2              21       44768580     44802019
727         UBE2G2              21       44768580     44802019
728         UBE2G2              21       44768580     44802019
729         UBE2G2              21       44768580     44802019
730         UBE2G2              21       44768580     44802019
731         UBE2G2              21       44768580     44802019
732         UBE2G2              21       44768580     44802019
733         UBE2G2              21       44768580     44802019
734      KRTAP10-3              21       44557790     44558760
735      KRTAP10-7              21       44600597     44602174
736                             21       42781074     42782229
737                             21       42781074     42782229
738          BACE2              21       41167801     41282518
739          BACE2              21       41167801     41282518
740          BACE2              21       41167801     41282518
741          BACE2              21       41167801     41282518
742          BACE2              21       41167801     41282518
743          BACE2              21       41167801     41282518
744          BACE2              21       41167801     41282518
745          BACE2              21       41167801     41282518
746          BACE2              21       41167801     41282518
747          BACE2              21       41167801     41282518
748          BACE2              21       41167801     41282518
749          BACE2              21       41167801     41282518
750          BACE2              21       41167801     41282518
751          BACE2              21       41167801     41282518
752          BACE2              21       41167801     41282518
753          BACE2              21       41167801     41282518
754          BACE2              21       41167801     41282518
755          BACE2              21       41167801     41282518
756          BACE2              21       41167801     41282518
757          BACE2              21       41167801     41282518
758          BACE2              21       41167801     41282518
759          BACE2              21       41167801     41282518
760          BACE2              21       41167801     41282518
761          BACE2              21       41167801     41282518
762          BACE2              21       41167801     41282518
763          BACE2              21       41167801     41282518
764          BACE2              21       41167801     41282518
765          BACE2              21       41167801     41282518
766          BACE2              21       41167801     41282518
767          BACE2              21       41167801     41282518
768          BACE2              21       41167801     41282518
769          BACE2              21       41167801     41282518
770          BACE2              21       41167801     41282518
771          BACE2              21       41167801     41282518
772          BACE2              21       41167801     41282518
773          BACE2              21       41167801     41282518
774          BACE2              21       41167801     41282518
775          BACE2              21       41167801     41282518
776          BACE2              21       41167801     41282518
777          BACE2              21       41167801     41282518
778          BACE2              21       41167801     41282518
779          BACE2              21       41167801     41282518
780          BACE2              21       41167801     41282518
781          BACE2              21       41167801     41282518
782          BACE2              21       41167801     41282518
783          BACE2              21       41167801     41282518
784          BACE2              21       41167801     41282518
785          BACE2              21       41167801     41282518
786          BACE2              21       41167801     41282518
787          BACE2              21       41167801     41282518
788          BACE2              21       41167801     41282518
789          BACE2              21       41167801     41282518
790          BACE2              21       41167801     41282518
791          BACE2              21       41167801     41282518
792          BACE2              21       41167801     41282518
793          BACE2              21       41167801     41282518
794          BACE2              21       41167801     41282518
795          BACE2              21       41167801     41282518
796          BACE2              21       41167801     41282518
797          BACE2              21       41167801     41282518
798          BACE2              21       41167801     41282518
799          BACE2              21       41167801     41282518
800          BACE2              21       41167801     41282518
801          BACE2              21       41167801     41282518
802          BACE2              21       41167801     41282518
803      LINC00323              21       41141493     41148133
804      LINC00323              21       41141493     41148133
805      LINC00323              21       41141493     41148133
806      LINC00323              21       41141493     41148133
807      LINC00323              21       41141493     41148133
808      LINC00323              21       41141493     41148133
809      LINC00323              21       41141493     41148133
810         YRDCP3              21       40863994     40864473
811      RNU6-286P              21       13621577     13621683
812                             21        8250060      8250149
813                             21       44929653     44930112
814          RIPK4              21       41739369     41767106
815          RIPK4              21       41739369     41767106
816          RIPK4              21       41739369     41767106
817          RIPK4              21       41739369     41767106
818          RIPK4              21       41739369     41767106
819          RIPK4              21       41739369     41767106
820          RIPK4              21       41739369     41767106
821          RIPK4              21       41739369     41767106
822          RIPK4              21       41739369     41767106
823          RIPK4              21       41739369     41767106
824          RIPK4              21       41739369     41767106
825          RIPK4              21       41739369     41767106
826          RIPK4              21       41739369     41767106
827          RIPK4              21       41739369     41767106
828          RIPK4              21       41739369     41767106
829          RIPK4              21       41739369     41767106
830          RIPK4              21       41739369     41767106
831        TMPRSS2              21       41464551     41531116
832        TMPRSS2              21       41464551     41531116
833        TMPRSS2              21       41464551     41531116
834        TMPRSS2              21       41464551     41531116
835        TMPRSS2              21       41464551     41531116
836        TMPRSS2              21       41464551     41531116
837        TMPRSS2              21       41464551     41531116
838        TMPRSS2              21       41464551     41531116
839        TMPRSS2              21       41464551     41531116
840        TMPRSS2              21       41464551     41531116
841        TMPRSS2              21       41464551     41531116
842        TMPRSS2              21       41464551     41531116
843        TMPRSS2              21       41464551     41531116
844        TMPRSS2              21       41464551     41531116
845        TMPRSS2              21       41464551     41531116
846        TMPRSS2              21       41464551     41531116
847        TMPRSS2              21       41464551     41531116
848        TMPRSS2              21       41464551     41531116
849        TMPRSS2              21       41464551     41531116
850        TMPRSS2              21       41464551     41531116
851        TMPRSS2              21       41464551     41531116
852        TMPRSS2              21       41464551     41531116
853        TMPRSS2              21       41464551     41531116
854        TMPRSS2              21       41464551     41531116
855        TMPRSS2              21       41464551     41531116
856        TMPRSS2              21       41464551     41531116
857        TMPRSS2              21       41464551     41531116
858        TMPRSS2              21       41464551     41531116
859        TMPRSS2              21       41464551     41531116
860        TMPRSS2              21       41464551     41531116
861        TMPRSS2              21       41464551     41531116
862        TMPRSS2              21       41464551     41531116
863        TMPRSS2              21       41464551     41531116
864        TMPRSS2              21       41464551     41531116
865        TMPRSS2              21       41464551     41531116
866        TMPRSS2              21       41464551     41531116
867        TMPRSS2              21       41464551     41531116
868        TMPRSS2              21       41464551     41531116
869        TMPRSS2              21       41464551     41531116
870        TMPRSS2              21       41464551     41531116
871        TMPRSS2              21       41464551     41531116
872        TMPRSS2              21       41464551     41531116
873        TMPRSS2              21       41464551     41531116
874        TMPRSS2              21       41464551     41531116
875        TMPRSS2              21       41464551     41531116
876        TMPRSS2              21       41464551     41531116
877        TMPRSS2              21       41464551     41531116
878        TMPRSS2              21       41464551     41531116
879        TMPRSS2              21       41464551     41531116
880        TMPRSS2              21       41464551     41531116
881        TMPRSS2              21       41464551     41531116
882        TMPRSS2              21       41464551     41531116
883        TMPRSS2              21       41464551     41531116
884        TMPRSS2              21       41464551     41531116
885        TMPRSS2              21       41464551     41531116
886        TMPRSS2              21       41464551     41531116
887        TMPRSS2              21       41464551     41531116
888        TMPRSS2              21       41464551     41531116
889        TMPRSS2              21       41464551     41531116
890        TMPRSS2              21       41464551     41531116
891        TMPRSS2              21       41464551     41531116
892        TMPRSS2              21       41464551     41531116
893        TMPRSS2              21       41464551     41531116
894        TMPRSS2              21       41464551     41531116
895        TMPRSS2              21       41464551     41531116
896        TMPRSS2              21       41464551     41531116
897        TMPRSS2              21       41464551     41531116
898        TMPRSS2              21       41464551     41531116
899        TMPRSS2              21       41464551     41531116
900        TMPRSS2              21       41464551     41531116
901        TMPRSS2              21       41464551     41531116
902        TMPRSS2              21       41464551     41531116
903        TMPRSS2              21       41464551     41531116
904        TMPRSS2              21       41464551     41531116
905        TMPRSS2              21       41464551     41531116
906        TMPRSS2              21       41464551     41531116
907        TMPRSS2              21       41464551     41531116
908        TMPRSS2              21       41464551     41531116
909        TMPRSS2              21       41464551     41531116
910        TMPRSS2              21       41464551     41531116
911          SUMO3              21       44805617     44818779
912          SUMO3              21       44805617     44818779
913          SUMO3              21       44805617     44818779
914          SUMO3              21       44805617     44818779
915          SUMO3              21       44805617     44818779
916          SUMO3              21       44805617     44818779
917          SUMO3              21       44805617     44818779
918          SUMO3              21       44805617     44818779
919          SUMO3              21       44805617     44818779
920          SUMO3              21       44805617     44818779
921          SUMO3              21       44805617     44818779
922          SUMO3              21       44805617     44818779
923          SUMO3              21       44805617     44818779
924          SUMO3              21       44805617     44818779
925          SUMO3              21       44805617     44818779
926          SUMO3              21       44805617     44818779
927          SUMO3              21       44805617     44818779
928          SUMO3              21       44805617     44818779
929          SUMO3              21       44805617     44818779
930          SUMO3              21       44805617     44818779
931          SUMO3              21       44805617     44818779
932          SUMO3              21       44805617     44818779
933      MIR8069-2              21       13724189     13724274
934        MIR6130              21       23079284     23079392
935      MIR6724-1              21        8205315      8205406
936      RNU6-696P              21       37045530     37045636
937     RNU6-1326P              21       15614283     15614389
938     KRTAP10-11              21       44646414     44647650
939                             21       44686358     44686629
940      DSCAM-AS1              21       40383083     40385358
941      DSCAM-AS1              21       40383083     40385358
942      DSCAM-AS1              21       40383083     40385358
943      DSCAM-AS1              21       40383083     40385358
944      DSCAM-AS1              21       40383083     40385358
945      DSCAM-AS1              21       40383083     40385358
946      DSCAM-AS1              21       40383083     40385358
947      DSCAM-AS1              21       40383083     40385358
948      DSCAM-AS1              21       40383083     40385358
949      DSCAM-AS1              21       40383083     40385358
950      MIR6724-4              21        8432530      8432621
951      RNU6-123P              21       25943044     25943145
952      RNA5SP492              21       42221173     42221286
953      RNU1-139P              21       19345148     19345312
954      MIR3648-1              21        8208473      8208652
955                             21        6228966      6267317
956                             21        6228966      6267317
957                             21        6228966      6267317
958                             21        6228966      6267317
959                             21        6228966      6267317
960                             21        6228966      6267317
961                             21        6228966      6267317
962                             21        6228966      6267317
963                             21        6228966      6267317
964                             21        6228966      6267317
965                             21        6228966      6267317
966                             21        6228966      6267317
967                             21        6228966      6267317
968                             21        6228966      6267317
969                             21        6228966      6267317
970                             21        6228966      6267317
971                             21        6228966      6267317
972                             21        6228966      6267317
973                             21        6228966      6267317
974                             21        6228966      6267317
975                             21        6228966      6267317
976                             21        5707004      5709456
977                             21        5707004      5709456
978       C21orf33              21       44133605     44145723
979       C21orf33              21       44133605     44145723
980       C21orf33              21       44133605     44145723
981       C21orf33              21       44133605     44145723
982       C21orf33              21       44133605     44145723
983       C21orf33              21       44133605     44145723
984       C21orf33              21       44133605     44145723
985       C21orf33              21       44133605     44145723
986       C21orf33              21       44133605     44145723
987       C21orf33              21       44133605     44145723
988       C21orf33              21       44133605     44145723
989       C21orf33              21       44133605     44145723
990       C21orf33              21       44133605     44145723
991       C21orf33              21       44133605     44145723
992       C21orf33              21       44133605     44145723
993       C21orf33              21       44133605     44145723
994       C21orf33              21       44133605     44145723
995       C21orf33              21       44133605     44145723
996       C21orf33              21       44133605     44145723
997       C21orf33              21       44133605     44145723
998       C21orf33              21       44133605     44145723
999       C21orf33              21       44133605     44145723
1000      C21orf33              21       44133605     44145723
1001      C21orf33              21       44133605     44145723
1002      C21orf33              21       44133605     44145723
1003      C21orf33              21       44133605     44145723
1004      C21orf33              21       44133605     44145723
1005      C21orf33              21       44133605     44145723
1006      C21orf33              21       44133605     44145723
1007      C21orf33              21       44133605     44145723
1008      C21orf33              21       44133605     44145723
1009      C21orf33              21       44133605     44145723
1010      C21orf33              21       44133605     44145723
1011      C21orf33              21       44133605     44145723
1012      C21orf33              21       44133605     44145723
1013      C21orf33              21       44133605     44145723
1014      C21orf33              21       44133605     44145723
1015      C21orf33              21       44133605     44145723
1016      C21orf33              21       44133605     44145723
1017      C21orf33              21       44133605     44145723
1018      C21orf33              21       44133605     44145723
1019      C21orf33              21       44133605     44145723
1020      C21orf33              21       44133605     44145723
1021      C21orf33              21       44133605     44145723
1022      C21orf33              21       44133605     44145723
1023      C21orf33              21       44133605     44145723
1024      C21orf33              21       44133605     44145723
1025      C21orf33              21       44133605     44145723
1026      C21orf33              21       44133605     44145723
1027      C21orf33              21       44133605     44145723
1028      C21orf33              21       44133605     44145723
1029      C21orf33              21       44133605     44145723
1030      C21orf33              21       44133605     44145723
1031      C21orf33              21       44133605     44145723
1032      C21orf33              21       44133605     44145723
1033      C21orf33              21       44133605     44145723
1034      C21orf33              21       44133605     44145723
1035      C21orf33              21       44133605     44145723
1036          CBR1              21       36069941     36073166
1037          CBR1              21       36069941     36073166
1038          CBR1              21       36069941     36073166
1039          CBR1              21       36069941     36073166
1040          CBR1              21       36069941     36073166
1041          CBR1              21       36069941     36073166
1042          CBR1              21       36069941     36073166
1043          CBR1              21       36069941     36073166
1044          CBR1              21       36069941     36073166
1045          CBR1              21       36069941     36073166
1046          CBR1              21       36069941     36073166
1047          CBR1              21       36069941     36073166
1048          CBR1              21       36069941     36073166
1049          CBR1              21       36069941     36073166
1050      ATP5J2LP              21       36388878     36389112
1051        DOPEY2              21       36156782     36294274
1052        DOPEY2              21       36156782     36294274
1053        DOPEY2              21       36156782     36294274
1054        DOPEY2              21       36156782     36294274
1055        DOPEY2              21       36156782     36294274
1056        DOPEY2              21       36156782     36294274
1057        DOPEY2              21       36156782     36294274
1058        DOPEY2              21       36156782     36294274
1059        DOPEY2              21       36156782     36294274
1060        DOPEY2              21       36156782     36294274
1061        DOPEY2              21       36156782     36294274
1062        DOPEY2              21       36156782     36294274
1063        DOPEY2              21       36156782     36294274
1064        DOPEY2              21       36156782     36294274
1065        DOPEY2              21       36156782     36294274
1066        DOPEY2              21       36156782     36294274
1067        DOPEY2              21       36156782     36294274
1068        DOPEY2              21       36156782     36294274
1069        DOPEY2              21       36156782     36294274
1070        DOPEY2              21       36156782     36294274
1071        DOPEY2              21       36156782     36294274
1072        DOPEY2              21       36156782     36294274
1073        DOPEY2              21       36156782     36294274
1074        DOPEY2              21       36156782     36294274
1075        DOPEY2              21       36156782     36294274
1076        DOPEY2              21       36156782     36294274
1077        DOPEY2              21       36156782     36294274
1078        DOPEY2              21       36156782     36294274
1079        DOPEY2              21       36156782     36294274
1080        DOPEY2              21       36156782     36294274
1081        DOPEY2              21       36156782     36294274
1082        DOPEY2              21       36156782     36294274
1083        DOPEY2              21       36156782     36294274
1084        DOPEY2              21       36156782     36294274
1085        DOPEY2              21       36156782     36294274
1086        DOPEY2              21       36156782     36294274
1087        DOPEY2              21       36156782     36294274
1088        DOPEY2              21       36156782     36294274
1089        DOPEY2              21       36156782     36294274
1090        DOPEY2              21       36156782     36294274
1091        DOPEY2              21       36156782     36294274
1092        DOPEY2              21       36156782     36294274
1093        DOPEY2              21       36156782     36294274
1094        DOPEY2              21       36156782     36294274
1095        DOPEY2              21       36156782     36294274
1096        DOPEY2              21       36156782     36294274
1097        DOPEY2              21       36156782     36294274
1098        DOPEY2              21       36156782     36294274
1099        DOPEY2              21       36156782     36294274
1100        DOPEY2              21       36156782     36294274
1101        DOPEY2              21       36156782     36294274
1102         CLIC6              21       34669389     34718227
1103         CLIC6              21       34669389     34718227
1104         CLIC6              21       34669389     34718227
1105         CLIC6              21       34669389     34718227
1106         CLIC6              21       34669389     34718227
1107         CLIC6              21       34669389     34718227
1108         CLIC6              21       34669389     34718227
1109         CLIC6              21       34669389     34718227
1110         CLIC6              21       34669389     34718227
1111         CLIC6              21       34669389     34718227
1112         CLIC6              21       34669389     34718227
1113         CLIC6              21       34669389     34718227
1114         CLIC6              21       34669389     34718227
1115        HSPA13              21       14371115     14383484
1116        HSPA13              21       14371115     14383484
1117        HSPA13              21       14371115     14383484
1118        HSPA13              21       14371115     14383484
1119        HSPA13              21       14371115     14383484
1120        HSPA13              21       14371115     14383484
1121        HSPA13              21       14371115     14383484
1122        HSPA13              21       14371115     14383484
1123                            21       16630827     16640683
1124                            21       16630827     16640683
1125                            21       16630827     16640683
1126                            21       16630827     16640683
1127                            21       16643529     16645065
1128                            21       16754519     16815688
1129                            21       16754519     16815688
1130                            21       16754519     16815688
1131         KCNE2              21       34364024     34371389
1132         KCNE2              21       34364024     34371389
1133        AGPAT3              21       43865186     43986536
1134        AGPAT3              21       43865186     43986536
1135        AGPAT3              21       43865186     43986536
1136        AGPAT3              21       43865186     43986536
1137        AGPAT3              21       43865186     43986536
1138        AGPAT3              21       43865186     43986536
1139        AGPAT3              21       43865186     43986536
1140        AGPAT3              21       43865186     43986536
1141        AGPAT3              21       43865186     43986536
1142        AGPAT3              21       43865186     43986536
1143        AGPAT3              21       43865186     43986536
1144        AGPAT3              21       43865186     43986536
1145        AGPAT3              21       43865186     43986536
1146        AGPAT3              21       43865186     43986536
1147        AGPAT3              21       43865186     43986536
1148        AGPAT3              21       43865186     43986536
1149        AGPAT3              21       43865186     43986536
1150        AGPAT3              21       43865186     43986536
1151        AGPAT3              21       43865186     43986536
1152        AGPAT3              21       43865186     43986536
1153        AGPAT3              21       43865186     43986536
1154        AGPAT3              21       43865186     43986536
1155        AGPAT3              21       43865186     43986536
1156        AGPAT3              21       43865186     43986536
1157        AGPAT3              21       43865186     43986536
1158        AGPAT3              21       43865186     43986536
1159        AGPAT3              21       43865186     43986536
1160        AGPAT3              21       43865186     43986536
1161        AGPAT3              21       43865186     43986536
1162        AGPAT3              21       43865186     43986536
1163        AGPAT3              21       43865186     43986536
1164        AGPAT3              21       43865186     43986536
1165        AGPAT3              21       43865186     43986536
1166        AGPAT3              21       43865186     43986536
1167        AGPAT3              21       43865186     43986536
1168        AGPAT3              21       43865186     43986536
1169        AGPAT3              21       43865186     43986536
1170        AGPAT3              21       43865186     43986536
1171        AGPAT3              21       43865186     43986536
1172        AGPAT3              21       43865186     43986536
1173        AGPAT3              21       43865186     43986536
1174        AGPAT3              21       43865186     43986536
1175        AGPAT3              21       43865186     43986536
1176        AGPAT3              21       43865186     43986536
1177        AGPAT3              21       43865186     43986536
1178        AGPAT3              21       43865186     43986536
1179        AGPAT3              21       43865186     43986536
1180        AGPAT3              21       43865186     43986536
1181        AGPAT3              21       43865186     43986536
1182        AGPAT3              21       43865186     43986536
1183        AGPAT3              21       43865186     43986536
1184        AGPAT3              21       43865186     43986536
1185        AGPAT3              21       43865186     43986536
1186        AGPAT3              21       43865186     43986536
1187        AGPAT3              21       43865186     43986536
1188        AGPAT3              21       43865186     43986536
1189        AGPAT3              21       43865186     43986536
1190        AGPAT3              21       43865186     43986536
1191        AGPAT3              21       43865186     43986536
1192        AGPAT3              21       43865186     43986536
1193        AGPAT3              21       43865186     43986536
1194        AGPAT3              21       43865186     43986536
1195        AGPAT3              21       43865186     43986536
1196        AGPAT3              21       43865186     43986536
1197        AGPAT3              21       43865186     43986536
1198        AGPAT3              21       43865186     43986536
1199        AGPAT3              21       43865186     43986536
1200        AGPAT3              21       43865186     43986536
1201        AGPAT3              21       43865186     43986536
1202        AGPAT3              21       43865186     43986536
1203        AGPAT3              21       43865186     43986536
1204        AGPAT3              21       43865186     43986536
1205        AGPAT3              21       43865186     43986536
1206        AGPAT3              21       43865186     43986536
1207        AGPAT3              21       43865186     43986536
1208        AGPAT3              21       43865186     43986536
1209        AGPAT3              21       43865186     43986536
1210        AGPAT3              21       43865186     43986536
1211        AGPAT3              21       43865186     43986536
1212        AGPAT3              21       43865186     43986536
1213        AGPAT3              21       43865186     43986536
1214        AGPAT3              21       43865186     43986536
1215        AGPAT3              21       43865186     43986536
1216        AGPAT3              21       43865186     43986536
1217        AGPAT3              21       43865186     43986536
1218        AGPAT3              21       43865186     43986536
1219        AGPAT3              21       43865186     43986536
1220        AGPAT3              21       43865186     43986536
1221        AGPAT3              21       43865186     43986536
1222        AGPAT3              21       43865186     43986536
1223        AGPAT3              21       43865186     43986536
1224        AGPAT3              21       43865186     43986536
1225        AGPAT3              21       43865186     43986536
1226        AGPAT3              21       43865186     43986536
1227        AGPAT3              21       43865186     43986536
1228        AGPAT3              21       43865186     43986536
1229        AGPAT3              21       43865186     43986536
1230        AGPAT3              21       43865186     43986536
1231        AGPAT3              21       43865186     43986536
1232        AGPAT3              21       43865186     43986536
1233        AGPAT3              21       43865186     43986536
1234        AGPAT3              21       43865186     43986536
1235        AGPAT3              21       43865186     43986536
1236        AGPAT3              21       43865186     43986536
1237        AGPAT3              21       43865186     43986536
1238        AGPAT3              21       43865186     43986536
1239        AGPAT3              21       43865186     43986536
1240        AGPAT3              21       43865186     43986536
1241        AGPAT3              21       43865186     43986536
1242        AGPAT3              21       43865186     43986536
1243        AGPAT3              21       43865186     43986536
1244        AGPAT3              21       43865186     43986536
1245        AGPAT3              21       43865186     43986536
1246                            21       34370802     34375348
1247                            21       34370802     34375348
1248                            21       45974489     45974953
1249     C21orf140              21       34400317     34401072
1250       SMIM11A              21       34375480     34407866
1251       SMIM11A              21       34375480     34407866
1252       SMIM11A              21       34375480     34407866
1253       SMIM11A              21       34375480     34407866
1254       SMIM11A              21       34375480     34407866
1255       SMIM11A              21       34375480     34407866
1256       SMIM11A              21       34375480     34407866
1257       SMIM11A              21       34375480     34407866
1258       SMIM11A              21       34375480     34407866
1259       SMIM11A              21       34375480     34407866
1260       SMIM11A              21       34375480     34407866
1261       SMIM11A              21       34375480     34407866
1262       SMIM11A              21       34375480     34407866
1263       SMIM11A              21       34375480     34407866
1264       SMIM11A              21       34375480     34407866
1265       SMIM11A              21       34375480     34407866
1266       SMIM11A              21       34375480     34407866
1267       SMIM11A              21       34375480     34407866
1268       SMIM11A              21       34375480     34407866
1269       SMIM11A              21       34375480     34407866
1270       SMIM11A              21       34375480     34407866
1271       SMIM11A              21       34375480     34407866
1272       SMIM11A              21       34375480     34407866
1273       SMIM11A              21       34375480     34407866
1274       SMIM11A              21       34375480     34407866
1275       SMIM11A              21       34375480     34407866
1276       SMIM11A              21       34375480     34407866
1277       SMIM11A              21       34375480     34407866
1278       SMIM11A              21       34375480     34407866
1279       SMIM11A              21       34375480     34407866
1280       UBASH3A              21       42403447     42447681
1281       UBASH3A              21       42403447     42447681
1282       UBASH3A              21       42403447     42447681
1283       UBASH3A              21       42403447     42447681
1284       UBASH3A              21       42403447     42447681
1285       UBASH3A              21       42403447     42447681
1286       UBASH3A              21       42403447     42447681
1287       UBASH3A              21       42403447     42447681
1288       UBASH3A              21       42403447     42447681
1289       UBASH3A              21       42403447     42447681
1290       UBASH3A              21       42403447     42447681
1291       UBASH3A              21       42403447     42447681
1292       UBASH3A              21       42403447     42447681
1293       UBASH3A              21       42403447     42447681
1294       UBASH3A              21       42403447     42447681
1295       UBASH3A              21       42403447     42447681
1296       UBASH3A              21       42403447     42447681
1297       UBASH3A              21       42403447     42447681
1298       UBASH3A              21       42403447     42447681
1299       UBASH3A              21       42403447     42447681
1300       UBASH3A              21       42403447     42447681
1301       UBASH3A              21       42403447     42447681
1302       UBASH3A              21       42403447     42447681
1303       UBASH3A              21       42403447     42447681
1304       UBASH3A              21       42403447     42447681
1305       UBASH3A              21       42403447     42447681
1306       UBASH3A              21       42403447     42447681
1307       UBASH3A              21       42403447     42447681
1308       UBASH3A              21       42403447     42447681
1309       UBASH3A              21       42403447     42447681
1310       UBASH3A              21       42403447     42447681
1311       UBASH3A              21       42403447     42447681
1312       UBASH3A              21       42403447     42447681
1313       UBASH3A              21       42403447     42447681
1314       UBASH3A              21       42403447     42447681
1315       UBASH3A              21       42403447     42447681
1316       UBASH3A              21       42403447     42447681
1317       UBASH3A              21       42403447     42447681
1318       UBASH3A              21       42403447     42447681
1319       UBASH3A              21       42403447     42447681
1320       UBASH3A              21       42403447     42447681
1321       UBASH3A              21       42403447     42447681
1322       UBASH3A              21       42403447     42447681
1323       UBASH3A              21       42403447     42447681
1324       UBASH3A              21       42403447     42447681
1325       UBASH3A              21       42403447     42447681
1326       UBASH3A              21       42403447     42447681
1327       UBASH3A              21       42403447     42447681
1328       UBASH3A              21       42403447     42447681
1329       UBASH3A              21       42403447     42447681
1330       UBASH3A              21       42403447     42447681
1331       UBASH3A              21       42403447     42447681
1332       UBASH3A              21       42403447     42447681
1333       UBASH3A              21       42403447     42447681
1334       UBASH3A              21       42403447     42447681
1335       UBASH3A              21       42403447     42447681
1336       UBASH3A              21       42403447     42447681
1337       UBASH3A              21       42403447     42447681
1338       UBASH3A              21       42403447     42447681
1339       UBASH3A              21       42403447     42447681
1340       UBASH3A              21       42403447     42447681
1341       UBASH3A              21       42403447     42447681
1342       UBASH3A              21       42403447     42447681
1343       UBASH3A              21       42403447     42447681
1344       UBASH3A              21       42403447     42447681
1345       UBASH3A              21       42403447     42447681
1346       UBASH3A              21       42403447     42447681
1347       UBASH3A              21       42403447     42447681
1348       UBASH3A              21       42403447     42447681
1349       UBASH3A              21       42403447     42447681
1350       UBASH3A              21       42403447     42447681
1351       UBASH3A              21       42403447     42447681
1352       UBASH3A              21       42403447     42447681
1353       UBASH3A              21       42403447     42447681
1354       UBASH3A              21       42403447     42447681
1355       UBASH3A              21       42403447     42447681
1356       UBASH3A              21       42403447     42447681
1357       UBASH3A              21       42403447     42447681
1358       UBASH3A              21       42403447     42447681
1359       UBASH3A              21       42403447     42447681
1360       UBASH3A              21       42403447     42447681
1361       UBASH3A              21       42403447     42447681
1362       UBASH3A              21       42403447     42447681
1363       UBASH3A              21       42403447     42447681
1364       UBASH3A              21       42403447     42447681
1365       UBASH3A              21       42403447     42447681
1366                            21       34412200     34412587
1367                            21       34418715     34423966
1368                            21       34418715     34423966
1369                            21       34425508     34426017
1370         RBM11              21       14216130     14228372
1371         RBM11              21       14216130     14228372
1372         RBM11              21       14216130     14228372
1373         RBM11              21       14216130     14228372
1374         RBM11              21       14216130     14228372
1375         RBM11              21       14216130     14228372
1376         RBM11              21       14216130     14228372
1377         RBM11              21       14216130     14228372
1378         RBM11              21       14216130     14228372
1379         RBM11              21       14216130     14228372
1380         RBM11              21       14216130     14228372
1381         RBM11              21       14216130     14228372
1382         RBM11              21       14216130     14228372
1383         RBM11              21       14216130     14228372
1384         RBM11              21       14216130     14228372
1385         RBM11              21       14216130     14228372
1386         RBM11              21       14216130     14228372
1387         RBM11              21       14216130     14228372
1388         RBM11              21       14216130     14228372
1389         RBM11              21       14216130     14228372
1390         RBM11              21       14216130     14228372
1391         RBM11              21       14216130     14228372
1392         RBM11              21       14216130     14228372
1393         RBM11              21       14216130     14228372
1394                            21       16862875     16873691
1395                            21       16862875     16873691
1396                            21       16862875     16873691
1397                            21       16862875     16873691
1398        COL6A1              21       45981737     46005050
1399        COL6A1              21       45981737     46005050
1400        COL6A1              21       45981737     46005050
1401        COL6A1              21       45981737     46005050
1402        COL6A1              21       45981737     46005050
1403        COL6A1              21       45981737     46005050
1404        COL6A1              21       45981737     46005050
1405        COL6A1              21       45981737     46005050
1406        COL6A1              21       45981737     46005050
1407        COL6A1              21       45981737     46005050
1408        COL6A1              21       45981737     46005050
1409        COL6A1              21       45981737     46005050
1410        COL6A1              21       45981737     46005050
1411        COL6A1              21       45981737     46005050
1412        COL6A1              21       45981737     46005050
1413        COL6A1              21       45981737     46005050
1414        COL6A1              21       45981737     46005050
1415        COL6A1              21       45981737     46005050
1416        COL6A1              21       45981737     46005050
1417        COL6A1              21       45981737     46005050
1418        COL6A1              21       45981737     46005050
1419        COL6A1              21       45981737     46005050
1420        COL6A1              21       45981737     46005050
1421        COL6A1              21       45981737     46005050
1422        COL6A1              21       45981737     46005050
1423        COL6A1              21       45981737     46005050
1424        COL6A1              21       45981737     46005050
1425        COL6A1              21       45981737     46005050
1426        COL6A1              21       45981737     46005050
1427        COL6A1              21       45981737     46005050
1428        COL6A1              21       45981737     46005050
1429        COL6A1              21       45981737     46005050
1430        COL6A1              21       45981737     46005050
1431        COL6A1              21       45981737     46005050
1432        COL6A1              21       45981737     46005050
1433        COL6A1              21       45981737     46005050
1434        COL6A1              21       45981737     46005050
1435        COL6A1              21       45981737     46005050
1436        COL6A1              21       45981737     46005050
1437        COL6A1              21       45981737     46005050
1438        COL6A1              21       45981737     46005050
1439        COL6A1              21       45981737     46005050
1440        COL6A1              21       45981737     46005050
1441        COL6A1              21       45981737     46005050
1442        COL6A1              21       45981737     46005050
1443        COL6A1              21       45981737     46005050
1444        COL6A1              21       45981737     46005050
1445        COL6A1              21       45981737     46005050
1446        COL6A1              21       45981737     46005050
1447        COL6A1              21       45981737     46005050
1448        COL6A1              21       45981737     46005050
1449        COL6A1              21       45981737     46005050
1450        COL6A1              21       45981737     46005050
1451        COL6A1              21       45981737     46005050
1452        COL6A1              21       45981737     46005050
1453        COL6A1              21       45981737     46005050
1454        COL6A1              21       45981737     46005050
1455        COL6A1              21       45981737     46005050
1456        COL6A1              21       45981737     46005050
1457        COL6A1              21       45981737     46005050
1458        COL6A1              21       45981737     46005050
1459        COL6A1              21       45981737     46005050
1460        COL6A1              21       45981737     46005050
1461        COL6A1              21       45981737     46005050
1462        COL6A1              21       45981737     46005050
1463        COL6A1              21       45981737     46005050
1464        COL6A1              21       45981737     46005050
1465        COL6A1              21       45981737     46005050
1466        COL6A1              21       45981737     46005050
1467        COL6A1              21       45981737     46005050
1468        COL6A1              21       45981737     46005050
1469        COL6A1              21       45981737     46005050
1470        COL6A1              21       45981737     46005050
1471        COL6A1              21       45981737     46005050
1472        COL6A1              21       45981737     46005050
1473        COL6A1              21       45981737     46005050
1474        COL6A1              21       45981737     46005050
1475        COL6A1              21       45981737     46005050
1476        COL6A1              21       45981737     46005050
1477        COL6A1              21       45981737     46005050
1478        COL6A1              21       45981737     46005050
1479        COL6A1              21       45981737     46005050
1480        COL6A1              21       45981737     46005050
1481        COL6A1              21       45981737     46005050
1482        COL6A1              21       45981737     46005050
1483        COL6A1              21       45981737     46005050
1484        COL6A1              21       45981737     46005050
1485        COL6A1              21       45981737     46005050
1486        COL6A1              21       45981737     46005050
1487        NEK4P1              21       17210469     17211347
1488                            21       17296219     17296596
1489     LINC01549              21       17438890     17449185
1490     LINC01549              21       17438890     17449185
1491     LINC01549              21       17438890     17449185
1492     LINC01549              21       17438890     17449185
1493     LINC01549              21       17438890     17449185
1494     LINC01549              21       17438890     17449185
1495     LINC01549              21       17438890     17449185
1496      RPL39P40              21       17500679     17500824
1497         KCNE1              21       34446688     34512275
1498         KCNE1              21       34446688     34512275
1499         KCNE1              21       34446688     34512275
1500         KCNE1              21       34446688     34512275
1501         KCNE1              21       34446688     34512275
1502         KCNE1              21       34446688     34512275
1503         KCNE1              21       34446688     34512275
1504         KCNE1              21       34446688     34512275
1505         KCNE1              21       34446688     34512275
1506         KCNE1              21       34446688     34512275
1507         KCNE1              21       34446688     34512275
1508         KCNE1              21       34446688     34512275
1509         KCNE1              21       34446688     34512275
1510         KCNE1              21       34446688     34512275
1511         KCNE1              21       34446688     34512275
1512         KCNE1              21       34446688     34512275
1513         KCNE1              21       34446688     34512275
1514         KCNE1              21       34446688     34512275
1515         KCNE1              21       34446688     34512275
1516         KCNE1              21       34446688     34512275
1517         KCNE1              21       34446688     34512275
1518         KCNE1              21       34446688     34512275
1519         KCNE1              21       34446688     34512275
1520         KCNE1              21       34446688     34512275
1521         KCNE1              21       34446688     34512275
1522         CXADR              21       17512382     17593579
1523         CXADR              21       17512382     17593579
1524         CXADR              21       17512382     17593579
1525         CXADR              21       17512382     17593579
1526         CXADR              21       17512382     17593579
1527         CXADR              21       17512382     17593579
1528         CXADR              21       17512382     17593579
1529         CXADR              21       17512382     17593579
1530         CXADR              21       17512382     17593579
1531         CXADR              21       17512382     17593579
1532         CXADR              21       17512382     17593579
1533         CXADR              21       17512382     17593579
1534         CXADR              21       17512382     17593579
1535         CXADR              21       17512382     17593579
1536         CXADR              21       17512382     17593579
1537         CXADR              21       17512382     17593579
1538         CXADR              21       17512382     17593579
1539         CXADR              21       17512382     17593579
1540         CXADR              21       17512382     17593579
1541         CXADR              21       17512382     17593579
1542         CXADR              21       17512382     17593579
1543         CXADR              21       17512382     17593579
1544         CXADR              21       17512382     17593579
1545         CXADR              21       17512382     17593579
1546         CXADR              21       17512382     17593579
1547         CXADR              21       17512382     17593579
1548         CXADR              21       17512382     17593579
1549      BTF3L4P1              21       17518526     17518993
1550                            21       46037052     46039807
1551                            21       46037052     46039807
1552                            21       46052596     46053105
1553                            21       46052596     46053105
1554                            21       46056516     46057567
1555                            21       46056516     46057567
1556        ABCC13              21       14236206     14362754
1557        ABCC13              21       14236206     14362754
1558        ABCC13              21       14236206     14362754
1559        ABCC13              21       14236206     14362754
1560        ABCC13              21       14236206     14362754
1561        ABCC13              21       14236206     14362754
1562        ABCC13              21       14236206     14362754
1563        ABCC13              21       14236206     14362754
1564        ABCC13              21       14236206     14362754
1565        ABCC13              21       14236206     14362754
1566        ABCC13              21       14236206     14362754
1567        ABCC13              21       14236206     14362754
1568        ABCC13              21       14236206     14362754
1569        ABCC13              21       14236206     14362754
1570        ABCC13              21       14236206     14362754
1571        ABCC13              21       14236206     14362754
1572        ABCC13              21       14236206     14362754
1573        ABCC13              21       14236206     14362754
1574        ABCC13              21       14236206     14362754
1575        ABCC13              21       14236206     14362754
1576        ABCC13              21       14236206     14362754
1577        ABCC13              21       14236206     14362754
1578        ABCC13              21       14236206     14362754
1579        ABCC13              21       14236206     14362754
1580        ABCC13              21       14236206     14362754
1581        ABCC13              21       14236206     14362754
1582        ABCC13              21       14236206     14362754
1583        ABCC13              21       14236206     14362754
1584        ABCC13              21       14236206     14362754
1585        ABCC13              21       14236206     14362754
1586        ABCC13              21       14236206     14362754
1587        ABCC13              21       14236206     14362754
1588        ABCC13              21       14236206     14362754
1589        ABCC13              21       14236206     14362754
1590        ABCC13              21       14236206     14362754
1591        ABCC13              21       14236206     14362754
1592        ABCC13              21       14236206     14362754
1593        ABCC13              21       14236206     14362754
1594        ABCC13              21       14236206     14362754
1595        ABCC13              21       14236206     14362754
1596        ABCC13              21       14236206     14362754
1597        ABCC13              21       14236206     14362754
1598        ABCC13              21       14236206     14362754
1599        ABCC13              21       14236206     14362754
1600        ABCC13              21       14236206     14362754
1601        ABCC13              21       14236206     14362754
1602        ABCC13              21       14236206     14362754
1603        ABCC13              21       14236206     14362754
1604        ABCC13              21       14236206     14362754
1605        ABCC13              21       14236206     14362754
1606        ABCC13              21       14236206     14362754
1607        ABCC13              21       14236206     14362754
1608        ABCC13              21       14236206     14362754
1609        ABCC13              21       14236206     14362754
1610        ABCC13              21       14236206     14362754
1611        ABCC13              21       14236206     14362754
1612        ABCC13              21       14236206     14362754
1613        ABCC13              21       14236206     14362754
1614        ABCC13              21       14236206     14362754
1615        ABCC13              21       14236206     14362754
1616        ABCC13              21       14236206     14362754
1617        ABCC13              21       14236206     14362754
1618        ABCC13              21       14236206     14362754
1619         RCAN1              21       34513142     34615142
1620         RCAN1              21       34513142     34615142
1621         RCAN1              21       34513142     34615142
1622         RCAN1              21       34513142     34615142
1623         RCAN1              21       34513142     34615142
1624         RCAN1              21       34513142     34615142
1625         RCAN1              21       34513142     34615142
1626         RCAN1              21       34513142     34615142
1627         RCAN1              21       34513142     34615142
1628         RCAN1              21       34513142     34615142
1629         RCAN1              21       34513142     34615142
1630         RCAN1              21       34513142     34615142
1631         RCAN1              21       34513142     34615142
1632         RCAN1              21       34513142     34615142
1633         RCAN1              21       34513142     34615142
1634         RCAN1              21       34513142     34615142
1635         RCAN1              21       34513142     34615142
1636         RCAN1              21       34513142     34615142
1637         RCAN1              21       34513142     34615142
1638         RCAN1              21       34513142     34615142
1639         RCAN1              21       34513142     34615142
1640         RCAN1              21       34513142     34615142
1641         RCAN1              21       34513142     34615142
1642         RCAN1              21       34513142     34615142
1643         RCAN1              21       34513142     34615142
1644         RCAN1              21       34513142     34615142
1645         RCAN1              21       34513142     34615142
1646         RCAN1              21       34513142     34615142
1647         RCAN1              21       34513142     34615142
1648         RCAN1              21       34513142     34615142
1649         RCAN1              21       34513142     34615142
1650         RCAN1              21       34513142     34615142
1651         RCAN1              21       34513142     34615142
1652         RCAN1              21       34513142     34615142
1653         RCAN1              21       34513142     34615142
1654         RCAN1              21       34513142     34615142
1655         RCAN1              21       34513142     34615142
1656         RCAN1              21       34513142     34615142
1657         RCAN1              21       34513142     34615142
1658         RCAN1              21       34513142     34615142
1659         RCAN1              21       34513142     34615142
1660         RCAN1              21       34513142     34615142
1661         RCAN1              21       34513142     34615142
1662         RCAN1              21       34513142     34615142
1663         RCAN1              21       34513142     34615142
1664         RCAN1              21       34513142     34615142
1665         RCAN1              21       34513142     34615142
1666         RCAN1              21       34513142     34615142
1667         RCAN1              21       34513142     34615142
1668       PSMA6P3              21       46072085     46072248
1669          BTG3              21       17593653     17612947
1670          BTG3              21       17593653     17612947
1671          BTG3              21       17593653     17612947
1672          BTG3              21       17593653     17612947
1673          BTG3              21       17593653     17612947
1674          BTG3              21       17593653     17612947
1675          BTG3              21       17593653     17612947
1676          BTG3              21       17593653     17612947
1677          BTG3              21       17593653     17612947
1678          BTG3              21       17593653     17612947
1679          BTG3              21       17593653     17612947
1680          BTG3              21       17593653     17612947
1681          BTG3              21       17593653     17612947
1682          BTG3              21       17593653     17612947
1683          BTG3              21       17593653     17612947
1684          BTG3              21       17593653     17612947
1685          BTG3              21       17593653     17612947
1686          BTG3              21       17593653     17612947
1687          BTG3              21       17593653     17612947
1688          BTG3              21       17593653     17612947
1689                            21       17611744     17633199
1690                            21       17611744     17633199
1691                            21       17611744     17633199
1692                            21       17611744     17633199
1693    PAXBP1-AS1              21       32728115     32743122
1694    PAXBP1-AS1              21       32728115     32743122
1695    PAXBP1-AS1              21       32728115     32743122
1696    PAXBP1-AS1              21       32728115     32743122
1697    PAXBP1-AS1              21       32728115     32743122
1698    PAXBP1-AS1              21       32728115     32743122
1699    PAXBP1-AS1              21       32728115     32743122
1700    PAXBP1-AS1              21       32728115     32743122
1701    PAXBP1-AS1              21       32728115     32743122
1702        PAXBP1              21       32733899     32771858
1703        PAXBP1              21       32733899     32771858
1704        PAXBP1              21       32733899     32771858
1705        PAXBP1              21       32733899     32771858
1706        PAXBP1              21       32733899     32771858
1707        PAXBP1              21       32733899     32771858
1708        PAXBP1              21       32733899     32771858
1709        PAXBP1              21       32733899     32771858
1710        PAXBP1              21       32733899     32771858
1711        PAXBP1              21       32733899     32771858
1712        PAXBP1              21       32733899     32771858
1713        PAXBP1              21       32733899     32771858
1714        PAXBP1              21       32733899     32771858
1715        PAXBP1              21       32733899     32771858
1716        PAXBP1              21       32733899     32771858
1717        PAXBP1              21       32733899     32771858
1718        PAXBP1              21       32733899     32771858
1719        PAXBP1              21       32733899     32771858
1720        PAXBP1              21       32733899     32771858
1721        PAXBP1              21       32733899     32771858
1722        PAXBP1              21       32733899     32771858
1723        PAXBP1              21       32733899     32771858
1724        PAXBP1              21       32733899     32771858
1725        PAXBP1              21       32733899     32771858
1726        PAXBP1              21       32733899     32771858
1727        PAXBP1              21       32733899     32771858
1728        PAXBP1              21       32733899     32771858
1729        PAXBP1              21       32733899     32771858
1730        PAXBP1              21       32733899     32771858
1731        PAXBP1              21       32733899     32771858
1732        PAXBP1              21       32733899     32771858
1733        PAXBP1              21       32733899     32771858
1734        PAXBP1              21       32733899     32771858
1735        PAXBP1              21       32733899     32771858
1736        PAXBP1              21       32733899     32771858
1737        PAXBP1              21       32733899     32771858
1738        PAXBP1              21       32733899     32771858
1739        PAXBP1              21       32733899     32771858
1740        PAXBP1              21       32733899     32771858
1741        PAXBP1              21       32733899     32771858
1742        PAXBP1              21       32733899     32771858
1743        PAXBP1              21       32733899     32771858
1744        PAXBP1              21       32733899     32771858
1745        PAXBP1              21       32733899     32771858
1746        PAXBP1              21       32733899     32771858
1747        PAXBP1              21       32733899     32771858
1748        PAXBP1              21       32733899     32771858
1749        PAXBP1              21       32733899     32771858
1750        PAXBP1              21       32733899     32771858
1751        PAXBP1              21       32733899     32771858
1752        PAXBP1              21       32733899     32771858
1753        PAXBP1              21       32733899     32771858
1754        PAXBP1              21       32733899     32771858
1755        PAXBP1              21       32733899     32771858
1756        PAXBP1              21       32733899     32771858
1757        PAXBP1              21       32733899     32771858
1758        PAXBP1              21       32733899     32771858
1759        PAXBP1              21       32733899     32771858
1760        PAXBP1              21       32733899     32771858
1761        PAXBP1              21       32733899     32771858
1762        PAXBP1              21       32733899     32771858
1763        PAXBP1              21       32733899     32771858
1764        PAXBP1              21       32733899     32771858
1765        PAXBP1              21       32733899     32771858
1766        PAXBP1              21       32733899     32771858
1767        PAXBP1              21       32733899     32771858
1768        PAXBP1              21       32733899     32771858
1769        PAXBP1              21       32733899     32771858
1770        PAXBP1              21       32733899     32771858
1771        PAXBP1              21       32733899     32771858
1772        PAXBP1              21       32733899     32771858
1773        PAXBP1              21       32733899     32771858
1774        PAXBP1              21       32733899     32771858
1775        PAXBP1              21       32733899     32771858
1776        PAXBP1              21       32733899     32771858
1777        PAXBP1              21       32733899     32771858
1778        PAXBP1              21       32733899     32771858
1779        PAXBP1              21       32733899     32771858
1780        PAXBP1              21       32733899     32771858
1781        PAXBP1              21       32733899     32771858
1782        PAXBP1              21       32733899     32771858
1783        PAXBP1              21       32733899     32771858
1784        PAXBP1              21       32733899     32771858
1785        PAXBP1              21       32733899     32771858
1786        PAXBP1              21       32733899     32771858
1787        PAXBP1              21       32733899     32771858
1788        PAXBP1              21       32733899     32771858
1789        PAXBP1              21       32733899     32771858
1790        PAXBP1              21       32733899     32771858
1791        PAXBP1              21       32733899     32771858
1792        PAXBP1              21       32733899     32771858
1793        PAXBP1              21       32733899     32771858
1794        PAXBP1              21       32733899     32771858
1795        PAXBP1              21       32733899     32771858
1796      RNU1-98P              21       16718998     16719157
1797     MIR3687-2              21        8987370      8987430
1798                            21        7826098      7826225
1799     RNA5SP491              21       36851911     36852028
1800     MIR6724-2              21        8249505      8249596
1801     RNU6-426P              21       16035413     16035509
1802         FAM3B              21       41304212     41357431
1803         FAM3B              21       41304212     41357431
1804         FAM3B              21       41304212     41357431
1805         FAM3B              21       41304212     41357431
1806         FAM3B              21       41304212     41357431
1807         FAM3B              21       41304212     41357431
1808         FAM3B              21       41304212     41357431
1809         FAM3B              21       41304212     41357431
1810         FAM3B              21       41304212     41357431
1811         FAM3B              21       41304212     41357431
1812         FAM3B              21       41304212     41357431
1813         FAM3B              21       41304212     41357431
1814         FAM3B              21       41304212     41357431
1815         FAM3B              21       41304212     41357431
1816         FAM3B              21       41304212     41357431
1817         FAM3B              21       41304212     41357431
1818         FAM3B              21       41304212     41357431
1819         FAM3B              21       41304212     41357431
1820         FAM3B              21       41304212     41357431
1821         FAM3B              21       41304212     41357431
1822         FAM3B              21       41304212     41357431
1823         FAM3B              21       41304212     41357431
1824         FAM3B              21       41304212     41357431
1825         FAM3B              21       41304212     41357431
1826         FAM3B              21       41304212     41357431
1827         FAM3B              21       41304212     41357431
1828         FAM3B              21       41304212     41357431
1829         FAM3B              21       41304212     41357431
1830         FAM3B              21       41304212     41357431
1831         FAM3B              21       41304212     41357431
1832         FAM3B              21       41304212     41357431
1833         FAM3B              21       41304212     41357431
1834         FAM3B              21       41304212     41357431
1835         FAM3B              21       41304212     41357431
1836         FAM3B              21       41304212     41357431
1837         FAM3B              21       41304212     41357431
1838         FAM3B              21       41304212     41357431
1839         FAM3B              21       41304212     41357431
1840         FAM3B              21       41304212     41357431
1841         FAM3B              21       41304212     41357431
1842         FAM3B              21       41304212     41357431
1843         FAM3B              21       41304212     41357431
1844         FAM3B              21       41304212     41357431
1845         FAM3B              21       41304212     41357431
1846         FAM3B              21       41304212     41357431
1847         FAM3B              21       41304212     41357431
1848                            21       42964639     42965363
1849                            21       42964639     42965363
1850          WDR4              21       42843094     42879568
1851          WDR4              21       42843094     42879568
1852          WDR4              21       42843094     42879568
1853          WDR4              21       42843094     42879568
1854          WDR4              21       42843094     42879568
1855          WDR4              21       42843094     42879568
1856          WDR4              21       42843094     42879568
1857          WDR4              21       42843094     42879568
1858          WDR4              21       42843094     42879568
1859          WDR4              21       42843094     42879568
1860          WDR4              21       42843094     42879568
1861          WDR4              21       42843094     42879568
1862          WDR4              21       42843094     42879568
1863          WDR4              21       42843094     42879568
1864          WDR4              21       42843094     42879568
1865          WDR4              21       42843094     42879568
1866          WDR4              21       42843094     42879568
1867          WDR4              21       42843094     42879568
1868          WDR4              21       42843094     42879568
1869          WDR4              21       42843094     42879568
1870          WDR4              21       42843094     42879568
1871          WDR4              21       42843094     42879568
1872          WDR4              21       42843094     42879568
1873          WDR4              21       42843094     42879568
1874          WDR4              21       42843094     42879568
1875          WDR4              21       42843094     42879568
1876          WDR4              21       42843094     42879568
1877          WDR4              21       42843094     42879568
1878          WDR4              21       42843094     42879568
1879          WDR4              21       42843094     42879568
1880          WDR4              21       42843094     42879568
1881          WDR4              21       42843094     42879568
1882          WDR4              21       42843094     42879568
1883          WDR4              21       42843094     42879568
1884          WDR4              21       42843094     42879568
1885          WDR4              21       42843094     42879568
1886          WDR4              21       42843094     42879568
1887          WDR4              21       42843094     42879568
1888          WDR4              21       42843094     42879568
1889          WDR4              21       42843094     42879568
1890          WDR4              21       42843094     42879568
1891          WDR4              21       42843094     42879568
1892          WDR4              21       42843094     42879568
1893          WDR4              21       42843094     42879568
1894          WDR4              21       42843094     42879568
1895          WDR4              21       42843094     42879568
1896          WDR4              21       42843094     42879568
1897          WDR4              21       42843094     42879568
1898          WDR4              21       42843094     42879568
1899          WDR4              21       42843094     42879568
1900          WDR4              21       42843094     42879568
1901          WDR4              21       42843094     42879568
1902          WDR4              21       42843094     42879568
1903          WDR4              21       42843094     42879568
1904          WDR4              21       42843094     42879568
1905          WDR4              21       42843094     42879568
1906          WDR4              21       42843094     42879568
1907          WDR4              21       42843094     42879568
1908          WDR4              21       42843094     42879568
1909          WDR4              21       42843094     42879568
1910          WDR4              21       42843094     42879568
1911          WDR4              21       42843094     42879568
1912          WDR4              21       42843094     42879568
1913          WDR4              21       42843094     42879568
1914          WDR4              21       42843094     42879568
1915      TTC3-AS1              21       37187666     37193926
1916      TTC3-AS1              21       37187666     37193926
1917                            21       44250813     44251520
1918                            21       44250813     44251520
1919                            21        7626344      7627528
1920                            21       44241847     44242081
1921                            21        6560714      6564489
1922                            21        6560714      6564489
1923                            21        6560714      6564489
1924                            21        6560714      6564489
1925                            21        6560714      6564489
1926                            21        6560714      6564489
1927                            21        6560714      6564489
1928                            21        6560714      6564489
1929                            21        6560714      6564489
1930                            21        6560714      6564489
1931                            21        6560714      6564489
1932                            21        6520344      6520670
1933                            21       29024255     29024890
1934                            21       41441056     41445708
1935                            21       41441056     41445708
1936                            21       41441056     41445708
1937           MX1              21       41420304     41459214
1938           MX1              21       41420304     41459214
1939           MX1              21       41420304     41459214
1940           MX1              21       41420304     41459214
1941           MX1              21       41420304     41459214
1942           MX1              21       41420304     41459214
1943           MX1              21       41420304     41459214
1944           MX1              21       41420304     41459214
1945           MX1              21       41420304     41459214
1946           MX1              21       41420304     41459214
1947           MX1              21       41420304     41459214
1948           MX1              21       41420304     41459214
1949           MX1              21       41420304     41459214
1950           MX1              21       41420304     41459214
1951           MX1              21       41420304     41459214
1952           MX1              21       41420304     41459214
1953           MX1              21       41420304     41459214
1954           MX1              21       41420304     41459214
1955           MX1              21       41420304     41459214
1956           MX1              21       41420304     41459214
1957           MX1              21       41420304     41459214
1958           MX1              21       41420304     41459214
1959           MX1              21       41420304     41459214
1960           MX1              21       41420304     41459214
1961           MX1              21       41420304     41459214
1962           MX1              21       41420304     41459214
1963           MX1              21       41420304     41459214
1964           MX1              21       41420304     41459214
1965           MX1              21       41420304     41459214
1966           MX1              21       41420304     41459214
1967           MX1              21       41420304     41459214
1968           MX1              21       41420304     41459214
1969           MX1              21       41420304     41459214
1970           MX1              21       41420304     41459214
1971           MX1              21       41420304     41459214
1972           MX1              21       41420304     41459214
1973           MX1              21       41420304     41459214
1974           MX1              21       41420304     41459214
1975           MX1              21       41420304     41459214
1976           MX1              21       41420304     41459214
1977           MX1              21       41420304     41459214
1978           MX1              21       41420304     41459214
1979           MX1              21       41420304     41459214
1980           MX1              21       41420304     41459214
1981           MX1              21       41420304     41459214
1982           MX1              21       41420304     41459214
1983           MX1              21       41420304     41459214
1984           MX1              21       41420304     41459214
1985           MX1              21       41420304     41459214
1986           MX1              21       41420304     41459214
1987           MX1              21       41420304     41459214
1988           MX1              21       41420304     41459214
1989           MX1              21       41420304     41459214
1990           MX1              21       41420304     41459214
1991           MX1              21       41420304     41459214
1992           MX1              21       41420304     41459214
1993           MX1              21       41420304     41459214
1994           MX1              21       41420304     41459214
1995           MX1              21       41420304     41459214
1996           MX1              21       41420304     41459214
1997           MX1              21       41420304     41459214
1998           MX1              21       41420304     41459214
1999           MX1              21       41420304     41459214
2000           MX1              21       41420304     41459214
2001           MX1              21       41420304     41459214
2002           MX1              21       41420304     41459214
2003           MX1              21       41420304     41459214
2004           MX1              21       41420304     41459214
2005           MX1              21       41420304     41459214
2006           MX1              21       41420304     41459214
2007           MX1              21       41420304     41459214
2008           MX1              21       41420304     41459214
2009           MX1              21       41420304     41459214
2010           MX1              21       41420304     41459214
2011           MX1              21       41420304     41459214
2012           MX1              21       41420304     41459214
2013           MX1              21       41420304     41459214
2014           MX1              21       41420304     41459214
2015           MX1              21       41420304     41459214
2016           MX1              21       41420304     41459214
2017           MX1              21       41420304     41459214
2018           MX1              21       41420304     41459214
2019           MX1              21       41420304     41459214
2020           MX1              21       41420304     41459214
2021           MX1              21       41420304     41459214
2022           MX1              21       41420304     41459214
2023           MX1              21       41420304     41459214
2024           MX1              21       41420304     41459214
2025           MX1              21       41420304     41459214
2026           MX1              21       41420304     41459214
2027           MX1              21       41420304     41459214
2028           MX1              21       41420304     41459214
2029           MX1              21       41420304     41459214
2030           MX1              21       41420304     41459214
2031           MX1              21       41420304     41459214
2032           MX1              21       41420304     41459214
2033           MX1              21       41420304     41459214
2034           MX1              21       41420304     41459214
2035           MX1              21       41420304     41459214
2036           MX1              21       41420304     41459214
2037           MX1              21       41420304     41459214
2038           MX1              21       41420304     41459214
2039           MX1              21       41420304     41459214
2040           MX1              21       41420304     41459214
2041           MX1              21       41420304     41459214
2042           MX1              21       41420304     41459214
2043           MX1              21       41420304     41459214
2044           MX1              21       41420304     41459214
2045           MX1              21       41420304     41459214
2046           MX1              21       41420304     41459214
2047           MX1              21       41420304     41459214
2048           MX1              21       41420304     41459214
2049           MX1              21       41420304     41459214
2050           MX1              21       41420304     41459214
2051           MX1              21       41420304     41459214
2052           MX1              21       41420304     41459214
2053           MX1              21       41420304     41459214
2054           MX1              21       41420304     41459214
2055           MX1              21       41420304     41459214
2056           MX1              21       41420304     41459214
2057           MX1              21       41420304     41459214
2058           MX1              21       41420304     41459214
2059           MX1              21       41420304     41459214
2060           MX1              21       41420304     41459214
2061           MX1              21       41420304     41459214
2062           MX1              21       41420304     41459214
2063           MX1              21       41420304     41459214
2064           MX1              21       41420304     41459214
2065           MX1              21       41420304     41459214
2066           MX1              21       41420304     41459214
2067           MX1              21       41420304     41459214
2068           MX1              21       41420304     41459214
2069                            21       44477850     44478493
2070                            21       44485577     44490288
2071                            21       44485577     44490288
2072                            21       44494874     44495519
2073     RN7SL163P              21       17506453     17506728
2074                            21        6365955      6366055
2075                            21       46220269     46225364
2076                            21       46220269     46225364
2077                            21       46220269     46225364
2078                            21       46220269     46225364
2079                            21       46220269     46225364
2080                            21       46220269     46225364
2081                            21        7788703      7793954
2082                            21        7788703      7793954
2083                            21        7048891      7087229
2084                            21        7048891      7087229
2085                            21        7048891      7087229
2086                            21        7048891      7087229
2087                            21        7048891      7087229
2088                            21        7048891      7087229
2089                            21        7048891      7087229
2090                            21        7048891      7087229
2091                            21        7048891      7087229
2092                            21        7048891      7087229
2093                            21        7048891      7087229
2094                            21        7048891      7087229
2095                            21        7048891      7087229
2096                            21        7048891      7087229
2097                            21        7048891      7087229
2098                            21        7048891      7087229
2099                            21        7048891      7087229
2100                            21        7048891      7087229
2101                            21        7048891      7087229
2102        RNF6P1              21       39373763     39377066
2103        RNF6P1              21       39373763     39377066
2104        RNF6P1              21       39373763     39377066
2105        RNF6P1              21       39373763     39377066
2106        RNF6P1              21       39373763     39377066
2107          YBEY              21       46286337     46297751
2108          YBEY              21       46286337     46297751
2109          YBEY              21       46286337     46297751
2110          YBEY              21       46286337     46297751
2111          YBEY              21       46286337     46297751
2112          YBEY              21       46286337     46297751
2113          YBEY              21       46286337     46297751
2114          YBEY              21       46286337     46297751
2115          YBEY              21       46286337     46297751
2116          YBEY              21       46286337     46297751
2117          YBEY              21       46286337     46297751
2118          YBEY              21       46286337     46297751
2119          YBEY              21       46286337     46297751
2120          YBEY              21       46286337     46297751
2121          YBEY              21       46286337     46297751
2122          YBEY              21       46286337     46297751
2123          YBEY              21       46286337     46297751
2124          YBEY              21       46286337     46297751
2125          YBEY              21       46286337     46297751
2126          YBEY              21       46286337     46297751
2127          YBEY              21       46286337     46297751
2128          YBEY              21       46286337     46297751
2129          YBEY              21       46286337     46297751
2130          YBEY              21       46286337     46297751
2131          YBEY              21       46286337     46297751
2132          YBEY              21       46286337     46297751
2133          YBEY              21       46286337     46297751
2134          YBEY              21       46286337     46297751
2135          YBEY              21       46286337     46297751
2136          YBEY              21       46286337     46297751
2137          YBEY              21       46286337     46297751
2138          YBEY              21       46286337     46297751
2139          YBEY              21       46286337     46297751
2140          YBEY              21       46286337     46297751
2141        NDUFV3              21       42879644     42913304
2142        NDUFV3              21       42879644     42913304
2143        NDUFV3              21       42879644     42913304
2144        NDUFV3              21       42879644     42913304
2145        NDUFV3              21       42879644     42913304
2146        NDUFV3              21       42879644     42913304
2147        NDUFV3              21       42879644     42913304
2148        NDUFV3              21       42879644     42913304
2149        NDUFV3              21       42879644     42913304
2150        NDUFV3              21       42879644     42913304
2151        NDUFV3              21       42879644     42913304
2152        NDUFV3              21       42879644     42913304
2153        NDUFV3              21       42879644     42913304
2154        NDUFV3              21       42879644     42913304
2155        NDUFV3              21       42879644     42913304
2156     ITGB2-AS1              21       44921051     44929678
2157     ITGB2-AS1              21       44921051     44929678
2158     ITGB2-AS1              21       44921051     44929678
2159     ITGB2-AS1              21       44921051     44929678
2160     ITGB2-AS1              21       44921051     44929678
2161     ITGB2-AS1              21       44921051     44929678
2162     ITGB2-AS1              21       44921051     44929678
2163     ITGB2-AS1              21       44921051     44929678
2164     ITGB2-AS1              21       44921051     44929678
2165     ITGB2-AS1              21       44921051     44929678
2166     ITGB2-AS1              21       44921051     44929678
2167     ITGB2-AS1              21       44921051     44929678
2168     ITGB2-AS1              21       44921051     44929678
2169     ITGB2-AS1              21       44921051     44929678
2170     ITGB2-AS1              21       44921051     44929678
2171     ITGB2-AS1              21       44921051     44929678
2172     ITGB2-AS1              21       44921051     44929678
2173     ITGB2-AS1              21       44921051     44929678
2174     ITGB2-AS1              21       44921051     44929678
2175     ITGB2-AS1              21       44921051     44929678
2176     ITGB2-AS1              21       44921051     44929678
2177     ITGB2-AS1              21       44921051     44929678
2178                            21       41739373     41741308
2179                            21       41739373     41741308
2180       ADAMTS5              21       26917912     26966513
2181       ADAMTS5              21       26917912     26966513
2182       ADAMTS5              21       26917912     26966513
2183       ADAMTS5              21       26917912     26966513
2184       ADAMTS5              21       26917912     26966513
2185       ADAMTS5              21       26917912     26966513
2186       ADAMTS5              21       26917912     26966513
2187       ADAMTS5              21       26917912     26966513
2188      MRPL51P2              21       43115334     43115709
2189         FRGCA              21       43140523     43141092
2190         FRGCA              21       43140523     43141092
2191                            21       43159066     43162277
2192                            21       43159066     43162277
2193                            21       43159066     43162277
2194         CRYAA              21       43169008     43172805
2195         CRYAA              21       43169008     43172805
2196         CRYAA              21       43169008     43172805
2197         CRYAA              21       43169008     43172805
2198         CRYAA              21       43169008     43172805
2199         CRYAA              21       43169008     43172805
2200         CRYAA              21       43169008     43172805
2201         CRYAA              21       43169008     43172805
2202         CRYAA              21       43169008     43172805
2203         CRYAA              21       43169008     43172805
2204         CRYAA              21       43169008     43172805
2205         CRYAA              21       43169008     43172805
2206         CRYAA              21       43169008     43172805
2207         CRYAA              21       43169008     43172805
2208         CRYAA              21       43169008     43172805
2209       PTTG1IP              21       44849585     44873903
2210       PTTG1IP              21       44849585     44873903
2211       PTTG1IP              21       44849585     44873903
2212       PTTG1IP              21       44849585     44873903
2213       PTTG1IP              21       44849585     44873903
2214       PTTG1IP              21       44849585     44873903
2215       PTTG1IP              21       44849585     44873903
2216       PTTG1IP              21       44849585     44873903
2217       PTTG1IP              21       44849585     44873903
2218       PTTG1IP              21       44849585     44873903
2219       PTTG1IP              21       44849585     44873903
2220       PTTG1IP              21       44849585     44873903
2221       PTTG1IP              21       44849585     44873903
2222       PTTG1IP              21       44849585     44873903
2223       PTTG1IP              21       44849585     44873903
2224       PTTG1IP              21       44849585     44873903
2225       PTTG1IP              21       44849585     44873903
2226       PTTG1IP              21       44849585     44873903
2227       PTTG1IP              21       44849585     44873903
2228       PTTG1IP              21       44849585     44873903
2229       PTTG1IP              21       44849585     44873903
2230       PTTG1IP              21       44849585     44873903
2231       PTTG1IP              21       44849585     44873903
2232       PTTG1IP              21       44849585     44873903
2233       PTTG1IP              21       44849585     44873903
2234       PTTG1IP              21       44849585     44873903
2235       PTTG1IP              21       44849585     44873903
2236       PTTG1IP              21       44849585     44873903
2237       PTTG1IP              21       44849585     44873903
2238       PTTG1IP              21       44849585     44873903
2239       PTTG1IP              21       44849585     44873903
2240       PTTG1IP              21       44849585     44873903
2241     LINC00111              21       41679181     41697336
2242     LINC00111              21       41679181     41697336
2243     LINC00111              21       41679181     41697336
2244    TSPEAR-AS1              21       44506807     44516575
2245    TSPEAR-AS1              21       44506807     44516575
2246    TSPEAR-AS1              21       44506807     44516575
2247    TSPEAR-AS1              21       44506807     44516575
2248    TSPEAR-AS1              21       44506807     44516575
2249    TSPEAR-AS1              21       44506807     44516575
2250    TSPEAR-AS1              21       44506807     44516575
2251    TSPEAR-AS1              21       44506807     44516575
2252    TSPEAR-AS1              21       44506807     44516575
2253    KRTAP10-10              21       44637356     44638455
2254                            21       46251549     46254133
2255                            21       46251549     46254133
2256                            21       46251549     46254133
2257                            21       46251549     46254133
2258    MCM3AP-AS1              21       46229217     46259390
2259    MCM3AP-AS1              21       46229217     46259390
2260    MCM3AP-AS1              21       46229217     46259390
2261    MCM3AP-AS1              21       46229217     46259390
2262    MCM3AP-AS1              21       46229217     46259390
2263    MCM3AP-AS1              21       46229217     46259390
2264    MCM3AP-AS1              21       46229217     46259390
2265    MCM3AP-AS1              21       46229217     46259390
2266    MCM3AP-AS1              21       46229217     46259390
2267    MCM3AP-AS1              21       46229217     46259390
2268    MCM3AP-AS1              21       46229217     46259390
2269    MCM3AP-AS1              21       46229217     46259390
2270    MCM3AP-AS1              21       46229217     46259390
2271    MCM3AP-AS1              21       46229217     46259390
2272    MCM3AP-AS1              21       46229217     46259390
2273    MCM3AP-AS1              21       46229217     46259390
2274    MCM3AP-AS1              21       46229217     46259390
2275    MCM3AP-AS1              21       46229217     46259390
2276    MCM3AP-AS1              21       46229217     46259390
2277    MCM3AP-AS1              21       46229217     46259390
2278    MCM3AP-AS1              21       46229217     46259390
2279    MCM3AP-AS1              21       46229217     46259390
2280    MCM3AP-AS1              21       46229217     46259390
2281    MCM3AP-AS1              21       46229217     46259390
2282    MCM3AP-AS1              21       46229217     46259390
2283        MCM3AP              21       46235126     46286297
2284        MCM3AP              21       46235126     46286297
2285        MCM3AP              21       46235126     46286297
2286        MCM3AP              21       46235126     46286297
2287        MCM3AP              21       46235126     46286297
2288        MCM3AP              21       46235126     46286297
2289        MCM3AP              21       46235126     46286297
2290        MCM3AP              21       46235126     46286297
2291        MCM3AP              21       46235126     46286297
2292        MCM3AP              21       46235126     46286297
2293        MCM3AP              21       46235126     46286297
2294        MCM3AP              21       46235126     46286297
2295        MCM3AP              21       46235126     46286297
2296        MCM3AP              21       46235126     46286297
2297        MCM3AP              21       46235126     46286297
2298        MCM3AP              21       46235126     46286297
2299        MCM3AP              21       46235126     46286297
2300        MCM3AP              21       46235126     46286297
2301        MCM3AP              21       46235126     46286297
2302        MCM3AP              21       46235126     46286297
2303        MCM3AP              21       46235126     46286297
2304        MCM3AP              21       46235126     46286297
2305        MCM3AP              21       46235126     46286297
2306        MCM3AP              21       46235126     46286297
2307        MCM3AP              21       46235126     46286297
2308        MCM3AP              21       46235126     46286297
2309        MCM3AP              21       46235126     46286297
2310        MCM3AP              21       46235126     46286297
2311        MCM3AP              21       46235126     46286297
2312        MCM3AP              21       46235126     46286297
2313        MCM3AP              21       46235126     46286297
2314        MCM3AP              21       46235126     46286297
2315        MCM3AP              21       46235126     46286297
2316        MCM3AP              21       46235126     46286297
2317        MCM3AP              21       46235126     46286297
2318        MCM3AP              21       46235126     46286297
2319        MCM3AP              21       46235126     46286297
2320        MCM3AP              21       46235126     46286297
2321        MCM3AP              21       46235126     46286297
2322        MCM3AP              21       46235126     46286297
2323        MCM3AP              21       46235126     46286297
2324        MCM3AP              21       46235126     46286297
2325        MCM3AP              21       46235126     46286297
2326        MCM3AP              21       46235126     46286297
2327        MCM3AP              21       46235126     46286297
2328        MCM3AP              21       46235126     46286297
2329        MCM3AP              21       46235126     46286297
2330        MCM3AP              21       46235126     46286297
2331        MCM3AP              21       46235126     46286297
2332        MCM3AP              21       46235126     46286297
2333        MCM3AP              21       46235126     46286297
2334        MCM3AP              21       46235126     46286297
2335        MCM3AP              21       46235126     46286297
2336        MCM3AP              21       46235126     46286297
2337        MCM3AP              21       46235126     46286297
2338        MCM3AP              21       46235126     46286297
2339        MCM3AP              21       46235126     46286297
2340        MCM3AP              21       46235126     46286297
2341        MCM3AP              21       46235126     46286297
2342        MCM3AP              21       46235126     46286297
2343        MCM3AP              21       46235126     46286297
2344        MCM3AP              21       46235126     46286297
2345        MCM3AP              21       46235126     46286297
2346        MCM3AP              21       46235126     46286297
2347        MCM3AP              21       46235126     46286297
2348        MCM3AP              21       46235126     46286297
2349        MCM3AP              21       46235126     46286297
2350        MCM3AP              21       46235126     46286297
2351        MCM3AP              21       46235126     46286297
2352        MCM3AP              21       46235126     46286297
2353        MCM3AP              21       46235126     46286297
2354        MCM3AP              21       46235126     46286297
2355        MCM3AP              21       46235126     46286297
2356        MCM3AP              21       46235126     46286297
2357        MCM3AP              21       46235126     46286297
2358        MCM3AP              21       46235126     46286297
2359        MCM3AP              21       46235126     46286297
2360        MCM3AP              21       46235126     46286297
2361        MCM3AP              21       46235126     46286297
2362        MCM3AP              21       46235126     46286297
2363        MCM3AP              21       46235126     46286297
2364        MCM3AP              21       46235126     46286297
2365        MCM3AP              21       46235126     46286297
2366        MCM3AP              21       46235126     46286297
2367        MCM3AP              21       46235126     46286297
2368        MCM3AP              21       46235126     46286297
2369        MCM3AP              21       46235126     46286297
2370        MCM3AP              21       46235126     46286297
2371        MCM3AP              21       46235126     46286297
2372        MCM3AP              21       46235126     46286297
2373        MCM3AP              21       46235126     46286297
2374        MCM3AP              21       46235126     46286297
2375        MCM3AP              21       46235126     46286297
2376        MCM3AP              21       46235126     46286297
2377        MCM3AP              21       46235126     46286297
2378        MCM3AP              21       46235126     46286297
2379        MCM3AP              21       46235126     46286297
2380        MCM3AP              21       46235126     46286297
2381        MCM3AP              21       46235126     46286297
2382        MCM3AP              21       46235126     46286297
2383        MCM3AP              21       46235126     46286297
2384        MCM3AP              21       46235126     46286297
2385        MCM3AP              21       46235126     46286297
2386        MCM3AP              21       46235126     46286297
2387        MCM3AP              21       46235126     46286297
2388        MCM3AP              21       46235126     46286297
2389        MCM3AP              21       46235126     46286297
2390        MCM3AP              21       46235126     46286297
2391        MCM3AP              21       46235126     46286297
2392        MCM3AP              21       46235126     46286297
2393        MCM3AP              21       46235126     46286297
2394        MCM3AP              21       46235126     46286297
2395        MCM3AP              21       46235126     46286297
2396        MCM3AP              21       46235126     46286297
2397        MCM3AP              21       46235126     46286297
2398        MCM3AP              21       46235126     46286297
2399        MCM3AP              21       46235126     46286297
2400        MCM3AP              21       46235126     46286297
2401        PKNOX1              21       42974510     43033931
2402        PKNOX1              21       42974510     43033931
2403        PKNOX1              21       42974510     43033931
2404        PKNOX1              21       42974510     43033931
2405        PKNOX1              21       42974510     43033931
2406        PKNOX1              21       42974510     43033931
2407        PKNOX1              21       42974510     43033931
2408        PKNOX1              21       42974510     43033931
2409        PKNOX1              21       42974510     43033931
2410        PKNOX1              21       42974510     43033931
2411        PKNOX1              21       42974510     43033931
2412        PKNOX1              21       42974510     43033931
2413        PKNOX1              21       42974510     43033931
2414        PKNOX1              21       42974510     43033931
2415        PKNOX1              21       42974510     43033931
2416        PKNOX1              21       42974510     43033931
2417        PKNOX1              21       42974510     43033931
2418        PKNOX1              21       42974510     43033931
2419        PKNOX1              21       42974510     43033931
2420        PKNOX1              21       42974510     43033931
2421        PKNOX1              21       42974510     43033931
2422        PKNOX1              21       42974510     43033931
2423        PKNOX1              21       42974510     43033931
2424        PKNOX1              21       42974510     43033931
2425        PKNOX1              21       42974510     43033931
2426        PKNOX1              21       42974510     43033931
2427        PKNOX1              21       42974510     43033931
2428        PKNOX1              21       42974510     43033931
2429        PKNOX1              21       42974510     43033931
2430        PKNOX1              21       42974510     43033931
2431        PKNOX1              21       42974510     43033931
2432        PKNOX1              21       42974510     43033931
2433        PKNOX1              21       42974510     43033931
2434        PKNOX1              21       42974510     43033931
2435        PKNOX1              21       42974510     43033931
2436        PKNOX1              21       42974510     43033931
2437        PKNOX1              21       42974510     43033931
2438        PKNOX1              21       42974510     43033931
2439        PKNOX1              21       42974510     43033931
2440        PKNOX1              21       42974510     43033931
2441        PKNOX1              21       42974510     43033931
2442        PKNOX1              21       42974510     43033931
2443        PKNOX1              21       42974510     43033931
2444        PKNOX1              21       42974510     43033931
2445        PKNOX1              21       42974510     43033931
2446        PKNOX1              21       42974510     43033931
2447        PKNOX1              21       42974510     43033931
2448        PKNOX1              21       42974510     43033931
2449        PKNOX1              21       42974510     43033931
2450        PKNOX1              21       42974510     43033931
2451        PKNOX1              21       42974510     43033931
2452        PKNOX1              21       42974510     43033931
2453        PKNOX1              21       42974510     43033931
2454        PKNOX1              21       42974510     43033931
2455        PKNOX1              21       42974510     43033931
2456        PKNOX1              21       42974510     43033931
2457        PKNOX1              21       42974510     43033931
2458        PKNOX1              21       42974510     43033931
2459        PKNOX1              21       42974510     43033931
2460     LINC00112              21       41716436     41717580
2461     LINC00112              21       41716436     41717580
2462     LINC00112              21       41716436     41717580
2463                            21       41576135     41581319
2464                            21       41576135     41581319
2465                            21       41559125     41562958
2466                            21       41559125     41562958
2467                            21       41559125     41562958
2468     DIP2A-IT1              21       46462471     46469306
2469     DIP2A-IT1              21       46462471     46469306
2470     DIP2A-IT1              21       46462471     46469306
2471     DIP2A-IT1              21       46462471     46469306
2472        TSPEAR              21       44497892     44711580
2473        TSPEAR              21       44497892     44711580
2474        TSPEAR              21       44497892     44711580
2475        TSPEAR              21       44497892     44711580
2476        TSPEAR              21       44497892     44711580
2477        TSPEAR              21       44497892     44711580
2478        TSPEAR              21       44497892     44711580
2479        TSPEAR              21       44497892     44711580
2480        TSPEAR              21       44497892     44711580
2481        TSPEAR              21       44497892     44711580
2482        TSPEAR              21       44497892     44711580
2483        TSPEAR              21       44497892     44711580
2484        TSPEAR              21       44497892     44711580
2485        TSPEAR              21       44497892     44711580
2486        TSPEAR              21       44497892     44711580
2487        TSPEAR              21       44497892     44711580
2488        TSPEAR              21       44497892     44711580
2489        TSPEAR              21       44497892     44711580
2490        TSPEAR              21       44497892     44711580
2491        TSPEAR              21       44497892     44711580
2492        TSPEAR              21       44497892     44711580
2493        TSPEAR              21       44497892     44711580
2494        TSPEAR              21       44497892     44711580
2495        TSPEAR              21       44497892     44711580
2496        TSPEAR              21       44497892     44711580
2497        TSPEAR              21       44497892     44711580
2498        TSPEAR              21       44497892     44711580
2499        TSPEAR              21       44497892     44711580
2500        TSPEAR              21       44497892     44711580
2501        TSPEAR              21       44497892     44711580
2502        TSPEAR              21       44497892     44711580
2503        TSPEAR              21       44497892     44711580
2504        TSPEAR              21       44497892     44711580
2505        TSPEAR              21       44497892     44711580
2506        TSPEAR              21       44497892     44711580
2507        TSPEAR              21       44497892     44711580
2508        TSPEAR              21       44497892     44711580
2509        TSPEAR              21       44497892     44711580
2510        TSPEAR              21       44497892     44711580
2511        TSPEAR              21       44497892     44711580
2512        TSPEAR              21       44497892     44711580
2513        TSPEAR              21       44497892     44711580
2514        TSPEAR              21       44497892     44711580
2515        TSPEAR              21       44497892     44711580
2516        TSPEAR              21       44497892     44711580
2517        TSPEAR              21       44497892     44711580
2518     KRTAP10-1              21       44538981     44540195
2519                            21        8380665      8410645
2520                            21        8380665      8410645
2521                            21        8380665      8410645
2522                            21        8380665      8410645
2523                            21        8380665      8410645
2524                            21        8380665      8410645
2525                            21        8380665      8410645
2526                            21       29182027     29187795
2527                            21       29182027     29187795
2528                            21        6223480      6223580
2529                            21       41539206     41539326
2530       MIR6814              21       41746772     41746841
2531     RN7SKP147              21       20356653     20356896
2532     KRTAP10-4              21       44573724     44638284
2533     KRTAP10-4              21       44573724     44638284
2534     KRTAP10-4              21       44573724     44638284
2535     KRTAP10-4              21       44573724     44638284
2536     KRTAP10-4              21       44573724     44638284
2537     KRTAP10-4              21       44573724     44638284
2538     KRTAP10-4              21       44573724     44638284
2539     KRTAP10-4              21       44573724     44638284
2540     KRTAP10-4              21       44573724     44638284
2541     KRTAP10-4              21       44573724     44638284
2542        IMMTP1              21       44675868     44678086
2543      MIR125B2              21       16590237     16590325
2544                            21        7663911      7664011
2545                            21       29139283     29139384
2546                            21       44437121     44437175
2547     KRTAP10-9              21       44627123     44628293
2548     KRTAP10-9              21       44627123     44628293
2549     KRTAP10-9              21       44627123     44628293
2550     KRTAP10-9              21       44627123     44628293
2551     KRTAP10-9              21       44627123     44628293
2552     KRTAP10-9              21       44627123     44628293
2553           CBS              21       43053191     43076943
2554           CBS              21       43053191     43076943
2555           CBS              21       43053191     43076943
2556           CBS              21       43053191     43076943
2557           CBS              21       43053191     43076943
2558           CBS              21       43053191     43076943
2559           CBS              21       43053191     43076943
2560           CBS              21       43053191     43076943
2561           CBS              21       43053191     43076943
2562           CBS              21       43053191     43076943
2563           CBS              21       43053191     43076943
2564           CBS              21       43053191     43076943
2565           CBS              21       43053191     43076943
2566           CBS              21       43053191     43076943
2567           CBS              21       43053191     43076943
2568           CBS              21       43053191     43076943
2569           CBS              21       43053191     43076943
2570           CBS              21       43053191     43076943
2571           CBS              21       43053191     43076943
2572           CBS              21       43053191     43076943
2573           CBS              21       43053191     43076943
2574           CBS              21       43053191     43076943
2575           CBS              21       43053191     43076943
2576           CBS              21       43053191     43076943
2577           CBS              21       43053191     43076943
2578           CBS              21       43053191     43076943
2579           CBS              21       43053191     43076943
2580           CBS              21       43053191     43076943
2581           CBS              21       43053191     43076943
2582           CBS              21       43053191     43076943
2583           CBS              21       43053191     43076943
2584           CBS              21       43053191     43076943
2585           CBS              21       43053191     43076943
2586           CBS              21       43053191     43076943
2587           CBS              21       43053191     43076943
2588           CBS              21       43053191     43076943
2589           CBS              21       43053191     43076943
2590           CBS              21       43053191     43076943
2591           CBS              21       43053191     43076943
2592           CBS              21       43053191     43076943
2593           CBS              21       43053191     43076943
2594           CBS              21       43053191     43076943
2595           CBS              21       43053191     43076943
2596           CBS              21       43053191     43076943
2597           CBS              21       43053191     43076943
2598           CBS              21       43053191     43076943
2599           CBS              21       43053191     43076943
2600           CBS              21       43053191     43076943
2601           CBS              21       43053191     43076943
2602           CBS              21       43053191     43076943
2603           CBS              21       43053191     43076943
2604           CBS              21       43053191     43076943
2605           CBS              21       43053191     43076943
2606           CBS              21       43053191     43076943
2607           CBS              21       43053191     43076943
2608           CBS              21       43053191     43076943
2609           CBS              21       43053191     43076943
2610           CBS              21       43053191     43076943
2611           CBS              21       43053191     43076943
2612           CBS              21       43053191     43076943
2613           CBS              21       43053191     43076943
2614           CBS              21       43053191     43076943
2615           CBS              21       43053191     43076943
2616           CBS              21       43053191     43076943
2617           CBS              21       43053191     43076943
2618           CBS              21       43053191     43076943
2619           CBS              21       43053191     43076943
2620           CBS              21       43053191     43076943
2621           CBS              21       43053191     43076943
2622           CBS              21       43053191     43076943
2623           CBS              21       43053191     43076943
2624           CBS              21       43053191     43076943
2625           CBS              21       43053191     43076943
2626           CBS              21       43053191     43076943
2627           CBS              21       43053191     43076943
2628           CBS              21       43053191     43076943
2629           CBS              21       43053191     43076943
2630           CBS              21       43053191     43076943
2631           CBS              21       43053191     43076943
2632           CBS              21       43053191     43076943
2633           CBS              21       43053191     43076943
2634           CBS              21       43053191     43076943
2635           CBS              21       43053191     43076943
2636           CBS              21       43053191     43076943
2637           CBS              21       43053191     43076943
2638           CBS              21       43053191     43076943
2639           CBS              21       43053191     43076943
2640           CBS              21       43053191     43076943
2641           CBS              21       43053191     43076943
2642           CBS              21       43053191     43076943
2643           CBS              21       43053191     43076943
2644           CBS              21       43053191     43076943
2645           CBS              21       43053191     43076943
2646           CBS              21       43053191     43076943
2647           CBS              21       43053191     43076943
2648           CBS              21       43053191     43076943
2649           CBS              21       43053191     43076943
2650           CBS              21       43053191     43076943
2651           CBS              21       43053191     43076943
2652           CBS              21       43053191     43076943
2653           CBS              21       43053191     43076943
2654           CBS              21       43053191     43076943
2655           CBS              21       43053191     43076943
2656           CBS              21       43053191     43076943
2657           CBS              21       43053191     43076943
2658           CBS              21       43053191     43076943
2659           CBS              21       43053191     43076943
2660           CBS              21       43053191     43076943
2661           CBS              21       43053191     43076943
2662           CBS              21       43053191     43076943
2663           CBS              21       43053191     43076943
2664           CBS              21       43053191     43076943
2665           CBS              21       43053191     43076943
2666           CBS              21       43053191     43076943
2667           CBS              21       43053191     43076943
2668           CBS              21       43053191     43076943
2669           CBS              21       43053191     43076943
2670           CBS              21       43053191     43076943
2671           CBS              21       43053191     43076943
2672           CBS              21       43053191     43076943
2673           CBS              21       43053191     43076943
2674           CBS              21       43053191     43076943
2675           CBS              21       43053191     43076943
2676           CBS              21       43053191     43076943
2677           CBS              21       43053191     43076943
2678           CBS              21       43053191     43076943
2679           CBS              21       43053191     43076943
2680           CBS              21       43053191     43076943
2681           CBS              21       43053191     43076943
2682           CBS              21       43053191     43076943
2683           CBS              21       43053191     43076943
2684           CBS              21       43053191     43076943
2685           CBS              21       43053191     43076943
2686           CBS              21       43053191     43076943
2687           CBS              21       43053191     43076943
2688           CBS              21       43053191     43076943
2689           CBS              21       43053191     43076943
2690           CBS              21       43053191     43076943
2691           CBS              21       43053191     43076943
2692                            21       46246890     46247682
2693                            21       46246890     46247682
2694         DSCR9              21       37208503     37221736
2695         DSCR9              21       37208503     37221736
2696         DSCR9              21       37208503     37221736
2697         DSCR9              21       37208503     37221736
2698         DSCR9              21       37208503     37221736
2699         DSCR9              21       37208503     37221736
2700         DSCR9              21       37208503     37221736
2701         DSCR9              21       37208503     37221736
2702         DSCR9              21       37208503     37221736
2703         DSCR9              21       37208503     37221736
2704         DSCR9              21       37208503     37221736
2705         DSCR9              21       37208503     37221736
2706         DSCR9              21       37208503     37221736
2707         DSCR9              21       37208503     37221736
2708         DSCR9              21       37208503     37221736
2709         DSCR9              21       37208503     37221736
2710         DSCR9              21       37208503     37221736
2711         DSCR9              21       37208503     37221736
2712         DSCR9              21       37208503     37221736
2713         DSCR9              21       37208503     37221736
2714         DSCR9              21       37208503     37221736
2715         DSCR3              21       37223420     37267919
2716         DSCR3              21       37223420     37267919
2717         DSCR3              21       37223420     37267919
2718         DSCR3              21       37223420     37267919
2719         DSCR3              21       37223420     37267919
2720         DSCR3              21       37223420     37267919
2721         DSCR3              21       37223420     37267919
2722         DSCR3              21       37223420     37267919
2723         DSCR3              21       37223420     37267919
2724         DSCR3              21       37223420     37267919
2725         DSCR3              21       37223420     37267919
2726         DSCR3              21       37223420     37267919
2727         DSCR3              21       37223420     37267919
2728         DSCR3              21       37223420     37267919
2729         DSCR3              21       37223420     37267919
2730         DSCR3              21       37223420     37267919
2731         DSCR3              21       37223420     37267919
2732         DSCR3              21       37223420     37267919
2733         DSCR3              21       37223420     37267919
2734         DSCR3              21       37223420     37267919
2735         DSCR3              21       37223420     37267919
2736         DSCR3              21       37223420     37267919
2737         DSCR3              21       37223420     37267919
2738         DSCR3              21       37223420     37267919
2739         DSCR3              21       37223420     37267919
2740         DSCR3              21       37223420     37267919
2741         DSCR3              21       37223420     37267919
2742         DSCR3              21       37223420     37267919
2743         DSCR3              21       37223420     37267919
2744         DSCR3              21       37223420     37267919
2745         DSCR3              21       37223420     37267919
2746         DSCR3              21       37223420     37267919
2747         DSCR3              21       37223420     37267919
2748         DSCR3              21       37223420     37267919
2749         DSCR3              21       37223420     37267919
2750         DSCR3              21       37223420     37267919
2751         DSCR3              21       37223420     37267919
2752         DSCR3              21       37223420     37267919
2753         DSCR3              21       37223420     37267919
2754         DSCR3              21       37223420     37267919
2755         DSCR3              21       37223420     37267919
2756         DSCR3              21       37223420     37267919
2757         DSCR3              21       37223420     37267919
2758         DSCR3              21       37223420     37267919
2759         DSCR3              21       37223420     37267919
2760         DSCR3              21       37223420     37267919
2761         DSCR3              21       37223420     37267919
2762         DSCR3              21       37223420     37267919
2763         DSCR3              21       37223420     37267919
2764         DSCR3              21       37223420     37267919
2765         DSCR3              21       37223420     37267919
2766         DSCR3              21       37223420     37267919
2767         DSCR3              21       37223420     37267919
2768         DSCR3              21       37223420     37267919
2769         DSCR3              21       37223420     37267919
2770         DSCR3              21       37223420     37267919
2771         DSCR3              21       37223420     37267919
2772         DSCR3              21       37223420     37267919
2773         DSCR3              21       37223420     37267919
2774         DSCR3              21       37223420     37267919
2775         DSCR3              21       37223420     37267919
2776         DSCR3              21       37223420     37267919
2777         DSCR3              21       37223420     37267919
2778         DSCR3              21       37223420     37267919
2779         DSCR3              21       37223420     37267919
2780                            21       34456110     34456237
2781     MIR3687-1              21        8208844      8208904
2782       MIR6815              21       45478266     45478326
2783                            21       41874756     41877613
2784                            21       41874756     41877613
2785                            21       41874756     41877613
2786     KRTAP10-5              21       44579455     44580604
2787                            21       37221419     37237744
2788                            21       37221419     37237744
2789                            21       44206525     44207399
2790                            21       44206525     44207399
2791                            21       32841496     32841811
2792         NCAM2              21       20998315     21543329
2793         NCAM2              21       20998315     21543329
2794         NCAM2              21       20998315     21543329
2795         NCAM2              21       20998315     21543329
2796         NCAM2              21       20998315     21543329
2797         NCAM2              21       20998315     21543329
2798         NCAM2              21       20998315     21543329
2799         NCAM2              21       20998315     21543329
2800         NCAM2              21       20998315     21543329
2801         NCAM2              21       20998315     21543329
2802         NCAM2              21       20998315     21543329
2803         NCAM2              21       20998315     21543329
2804         NCAM2              21       20998315     21543329
2805         NCAM2              21       20998315     21543329
2806         NCAM2              21       20998315     21543329
2807         NCAM2              21       20998315     21543329
2808         NCAM2              21       20998315     21543329
2809         NCAM2              21       20998315     21543329
2810         NCAM2              21       20998315     21543329
2811         NCAM2              21       20998315     21543329
2812         NCAM2              21       20998315     21543329
2813         NCAM2              21       20998315     21543329
2814         NCAM2              21       20998315     21543329
2815         NCAM2              21       20998315     21543329
2816         NCAM2              21       20998315     21543329
2817         NCAM2              21       20998315     21543329
2818         NCAM2              21       20998315     21543329
2819         NCAM2              21       20998315     21543329
2820         NCAM2              21       20998315     21543329
2821         NCAM2              21       20998315     21543329
2822         NCAM2              21       20998315     21543329
2823         NCAM2              21       20998315     21543329
2824         NCAM2              21       20998315     21543329
2825         NCAM2              21       20998315     21543329
2826         NCAM2              21       20998315     21543329
2827         NCAM2              21       20998315     21543329
2828         NCAM2              21       20998315     21543329
2829         NCAM2              21       20998315     21543329
2830         NCAM2              21       20998315     21543329
2831         NCAM2              21       20998315     21543329
2832         NCAM2              21       20998315     21543329
2833         NCAM2              21       20998315     21543329
2834         NCAM2              21       20998315     21543329
2835         NCAM2              21       20998315     21543329
2836         NCAM2              21       20998315     21543329
2837         NCAM2              21       20998315     21543329
2838         NCAM2              21       20998315     21543329
2839         NCAM2              21       20998315     21543329
2840                            21       36069642     36126640
2841                            21       36069642     36126640
2842                            21       36069642     36126640
2843                            21       36069642     36126640
2844                            21       36069642     36126640
2845                            21       36069642     36126640
2846                            21       36104881     36109690
2847                            21       36104881     36109690
2848        RPS9P1              21       36132450     36133032
2849         HMGN1              21       39342315     39349647
2850         HMGN1              21       39342315     39349647
2851         HMGN1              21       39342315     39349647
2852         HMGN1              21       39342315     39349647
2853         HMGN1              21       39342315     39349647
2854         HMGN1              21       39342315     39349647
2855         HMGN1              21       39342315     39349647
2856         HMGN1              21       39342315     39349647
2857         HMGN1              21       39342315     39349647
2858         HMGN1              21       39342315     39349647
2859         HMGN1              21       39342315     39349647
2860         HMGN1              21       39342315     39349647
2861         HMGN1              21       39342315     39349647
2862         HMGN1              21       39342315     39349647
2863         HMGN1              21       39342315     39349647
2864         HMGN1              21       39342315     39349647
2865         HMGN1              21       39342315     39349647
2866         HMGN1              21       39342315     39349647
2867         HMGN1              21       39342315     39349647
2868         HMGN1              21       39342315     39349647
2869         HMGN1              21       39342315     39349647
2870         HMGN1              21       39342315     39349647
2871         HMGN1              21       39342315     39349647
2872         HMGN1              21       39342315     39349647
2873         HMGN1              21       39342315     39349647
2874         HMGN1              21       39342315     39349647
2875         HMGN1              21       39342315     39349647
2876         HMGN1              21       39342315     39349647
2877         HMGN1              21       39342315     39349647
2878         HMGN1              21       39342315     39349647
2879         HMGN1              21       39342315     39349647
2880         HMGN1              21       39342315     39349647
2881         HMGN1              21       39342315     39349647
2882         HMGN1              21       39342315     39349647
2883         HMGN1              21       39342315     39349647
2884         HMGN1              21       39342315     39349647
2885         HMGN1              21       39342315     39349647
2886         HMGN1              21       39342315     39349647
2887         HMGN1              21       39342315     39349647
2888         HMGN1              21       39342315     39349647
2889         HMGN1              21       39342315     39349647
2890         HMGN1              21       39342315     39349647
2891         HMGN1              21       39342315     39349647
2892         HMGN1              21       39342315     39349647
2893         HMGN1              21       39342315     39349647
2894         HMGN1              21       39342315     39349647
2895         HMGN1              21       39342315     39349647
2896         HMGN1              21       39342315     39349647
2897         HMGN1              21       39342315     39349647
2898         HMGN1              21       39342315     39349647
2899         HMGN1              21       39342315     39349647
2900         HMGN1              21       39342315     39349647
2901         HMGN1              21       39342315     39349647
2902         HMGN1              21       39342315     39349647
2903         HMGN1              21       39342315     39349647
2904         HMGN1              21       39342315     39349647
2905         HMGN1              21       39342315     39349647
2906         HMGN1              21       39342315     39349647
2907         HMGN1              21       39342315     39349647
2908         HMGN1              21       39342315     39349647
2909         HMGN1              21       39342315     39349647
2910         HMGN1              21       39342315     39349647
2911         HMGN1              21       39342315     39349647
2912         HMGN1              21       39342315     39349647
2913         HMGN1              21       39342315     39349647
2914         HMGN1              21       39342315     39349647
2915         HMGN1              21       39342315     39349647
2916         HMGN1              21       39342315     39349647
2917         HMGN1              21       39342315     39349647
2918         HMGN1              21       39342315     39349647
2919         HMGN1              21       39342315     39349647
2920         HMGN1              21       39342315     39349647
2921         HMGN1              21       39342315     39349647
2922         HMGN1              21       39342315     39349647
2923         HMGN1              21       39342315     39349647
2924         HMGN1              21       39342315     39349647
2925         HMGN1              21       39342315     39349647
2926         HMGN1              21       39342315     39349647
2927         HMGN1              21       39342315     39349647
2928         HMGN1              21       39342315     39349647
2929         HMGN1              21       39342315     39349647
2930         HMGN1              21       39342315     39349647
2931         HMGN1              21       39342315     39349647
2932         HMGN1              21       39342315     39349647
2933         HMGN1              21       39342315     39349647
2934         HMGN1              21       39342315     39349647
2935         HMGN1              21       39342315     39349647
2936         HMGN1              21       39342315     39349647
2937         HMGN1              21       39342315     39349647
2938         HMGN1              21       39342315     39349647
2939         HMGN1              21       39342315     39349647
2940         HMGN1              21       39342315     39349647
2941         HMGN1              21       39342315     39349647
2942         HMGN1              21       39342315     39349647
2943         HMGN1              21       39342315     39349647
2944         HMGN1              21       39342315     39349647
2945         HMGN1              21       39342315     39349647
2946         HMGN1              21       39342315     39349647
2947         HMGN1              21       39342315     39349647
2948         HMGN1              21       39342315     39349647
2949         HMGN1              21       39342315     39349647
2950         HMGN1              21       39342315     39349647
2951         HMGN1              21       39342315     39349647
2952         HMGN1              21       39342315     39349647
2953         HMGN1              21       39342315     39349647
2954         HMGN1              21       39342315     39349647
2955         HMGN1              21       39342315     39349647
2956         HMGN1              21       39342315     39349647
2957         HMGN1              21       39342315     39349647
2958         HMGN1              21       39342315     39349647
2959         HMGN1              21       39342315     39349647
2960         HMGN1              21       39342315     39349647
2961         HMGN1              21       39342315     39349647
2962         HMGN1              21       39342315     39349647
2963         HMGN1              21       39342315     39349647
2964         HMGN1              21       39342315     39349647
2965         HMGN1              21       39342315     39349647
2966       RPS26P5              21       16121310     16121644
2967                            21       16525919     16527019
2968                            21       16574718     16582637
2969                            21       16574718     16582637
2970                            21       16417139     16419080
2971                            21       16417139     16419080
2972                            21       16417139     16419080
2973                            21       16291791     16308133
2974                            21       16291791     16308133
2975                            21       16291791     16308133
2976         LRRC3              21       44455486     44462196
2977         LRRC3              21       44455486     44462196
2978      ERVH48-1              21       42916803     42925646
2979      ERVH48-1              21       42916803     42925646
2980      ERVH48-1              21       42916803     42925646
2981        CRYZL1              21       33589341     33643926
2982        CRYZL1              21       33589341     33643926
2983        CRYZL1              21       33589341     33643926
2984        CRYZL1              21       33589341     33643926
2985        CRYZL1              21       33589341     33643926
2986        CRYZL1              21       33589341     33643926
2987        CRYZL1              21       33589341     33643926
2988        CRYZL1              21       33589341     33643926
2989        CRYZL1              21       33589341     33643926
2990        CRYZL1              21       33589341     33643926
2991        CRYZL1              21       33589341     33643926
2992        CRYZL1              21       33589341     33643926
2993        CRYZL1              21       33589341     33643926
2994        CRYZL1              21       33589341     33643926
2995        CRYZL1              21       33589341     33643926
2996        CRYZL1              21       33589341     33643926
2997        CRYZL1              21       33589341     33643926
2998        CRYZL1              21       33589341     33643926
2999        CRYZL1              21       33589341     33643926
3000        CRYZL1              21       33589341     33643926
3001        CRYZL1              21       33589341     33643926
3002        CRYZL1              21       33589341     33643926
3003        CRYZL1              21       33589341     33643926
3004        CRYZL1              21       33589341     33643926
3005        CRYZL1              21       33589341     33643926
3006        CRYZL1              21       33589341     33643926
3007        CRYZL1              21       33589341     33643926
3008        CRYZL1              21       33589341     33643926
3009        CRYZL1              21       33589341     33643926
3010        CRYZL1              21       33589341     33643926
3011        CRYZL1              21       33589341     33643926
3012        CRYZL1              21       33589341     33643926
3013        CRYZL1              21       33589341     33643926
3014        CRYZL1              21       33589341     33643926
3015        CRYZL1              21       33589341     33643926
3016        CRYZL1              21       33589341     33643926
3017        CRYZL1              21       33589341     33643926
3018        CRYZL1              21       33589341     33643926
3019        CRYZL1              21       33589341     33643926
3020        CRYZL1              21       33589341     33643926
3021        CRYZL1              21       33589341     33643926
3022        CRYZL1              21       33589341     33643926
3023        CRYZL1              21       33589341     33643926
3024        CRYZL1              21       33589341     33643926
3025        CRYZL1              21       33589341     33643926
3026        CRYZL1              21       33589341     33643926
3027        CRYZL1              21       33589341     33643926
3028        CRYZL1              21       33589341     33643926
3029        CRYZL1              21       33589341     33643926
3030        CRYZL1              21       33589341     33643926
3031        CRYZL1              21       33589341     33643926
3032        CRYZL1              21       33589341     33643926
3033        CRYZL1              21       33589341     33643926
3034        CRYZL1              21       33589341     33643926
3035        CRYZL1              21       33589341     33643926
3036        CRYZL1              21       33589341     33643926
3037        CRYZL1              21       33589341     33643926
3038        CRYZL1              21       33589341     33643926
3039        CRYZL1              21       33589341     33643926
3040        CRYZL1              21       33589341     33643926
3041        CRYZL1              21       33589341     33643926
3042        CRYZL1              21       33589341     33643926
3043        CRYZL1              21       33589341     33643926
3044        CRYZL1              21       33589341     33643926
3045        CRYZL1              21       33589341     33643926
3046        CRYZL1              21       33589341     33643926
3047        CRYZL1              21       33589341     33643926
3048        CRYZL1              21       33589341     33643926
3049        CRYZL1              21       33589341     33643926
3050        CRYZL1              21       33589341     33643926
3051        CRYZL1              21       33589341     33643926
3052        CRYZL1              21       33589341     33643926
3053        CRYZL1              21       33589341     33643926
3054        CRYZL1              21       33589341     33643926
3055        CRYZL1              21       33589341     33643926
3056        CRYZL1              21       33589341     33643926
3057        CRYZL1              21       33589341     33643926
3058        CRYZL1              21       33589341     33643926
3059        CRYZL1              21       33589341     33643926
3060        CRYZL1              21       33589341     33643926
3061        CRYZL1              21       33589341     33643926
3062        CRYZL1              21       33589341     33643926
3063        CRYZL1              21       33589341     33643926
3064        CRYZL1              21       33589341     33643926
3065        CRYZL1              21       33589341     33643926
3066        CRYZL1              21       33589341     33643926
3067        CRYZL1              21       33589341     33643926
3068        CRYZL1              21       33589341     33643926
3069        CRYZL1              21       33589341     33643926
3070        CRYZL1              21       33589341     33643926
3071        CRYZL1              21       33589341     33643926
3072        CRYZL1              21       33589341     33643926
3073        CRYZL1              21       33589341     33643926
3074        CRYZL1              21       33589341     33643926
3075        CRYZL1              21       33589341     33643926
3076        CRYZL1              21       33589341     33643926
3077        CRYZL1              21       33589341     33643926
3078        CRYZL1              21       33589341     33643926
3079        CRYZL1              21       33589341     33643926
3080        CRYZL1              21       33589341     33643926
3081        CRYZL1              21       33589341     33643926
3082        CRYZL1              21       33589341     33643926
3083        CRYZL1              21       33589341     33643926
3084        CRYZL1              21       33589341     33643926
3085        CRYZL1              21       33589341     33643926
3086        CRYZL1              21       33589341     33643926
3087        CRYZL1              21       33589341     33643926
3088        CRYZL1              21       33589341     33643926
3089        CRYZL1              21       33589341     33643926
3090        CRYZL1              21       33589341     33643926
3091        CRYZL1              21       33589341     33643926
3092        CRYZL1              21       33589341     33643926
3093        CRYZL1              21       33589341     33643926
3094        CRYZL1              21       33589341     33643926
3095        CRYZL1              21       33589341     33643926
3096        CRYZL1              21       33589341     33643926
3097        CRYZL1              21       33589341     33643926
3098        CRYZL1              21       33589341     33643926
3099        CRYZL1              21       33589341     33643926
3100        CRYZL1              21       33589341     33643926
3101        CRYZL1              21       33589341     33643926
3102        CRYZL1              21       33589341     33643926
3103        CRYZL1              21       33589341     33643926
3104        CRYZL1              21       33589341     33643926
3105        CRYZL1              21       33589341     33643926
3106        CRYZL1              21       33589341     33643926
3107        CRYZL1              21       33589341     33643926
3108        CRYZL1              21       33589341     33643926
3109        CRYZL1              21       33589341     33643926
3110        CRYZL1              21       33589341     33643926
3111        CRYZL1              21       33589341     33643926
3112        CRYZL1              21       33589341     33643926
3113        CRYZL1              21       33589341     33643926
3114        CRYZL1              21       33589341     33643926
3115        CRYZL1              21       33589341     33643926
3116        CRYZL1              21       33589341     33643926
3117        CRYZL1              21       33589341     33643926
3118        CRYZL1              21       33589341     33643926
3119        CRYZL1              21       33589341     33643926
3120        CRYZL1              21       33589341     33643926
3121        CRYZL1              21       33589341     33643926
3122        CRYZL1              21       33589341     33643926
3123        CRYZL1              21       33589341     33643926
3124        CRYZL1              21       33589341     33643926
3125        CRYZL1              21       33589341     33643926
3126        CRYZL1              21       33589341     33643926
3127        CRYZL1              21       33589341     33643926
3128        CRYZL1              21       33589341     33643926
3129        CRYZL1              21       33589341     33643926
3130        CRYZL1              21       33589341     33643926
3131        CRYZL1              21       33589341     33643926
3132        CRYZL1              21       33589341     33643926
3133        CRYZL1              21       33589341     33643926
3134        CRYZL1              21       33589341     33643926
3135        CRYZL1              21       33589341     33643926
3136        CRYZL1              21       33589341     33643926
3137        CRYZL1              21       33589341     33643926
3138        CRYZL1              21       33589341     33643926
3139        CRYZL1              21       33589341     33643926
3140        CRYZL1              21       33589341     33643926
3141        CRYZL1              21       33589341     33643926
3142        CRYZL1              21       33589341     33643926
3143        CRYZL1              21       33589341     33643926
3144        CRYZL1              21       33589341     33643926
3145        CRYZL1              21       33589341     33643926
3146        CRYZL1              21       33589341     33643926
3147        CRYZL1              21       33589341     33643926
3148        CRYZL1              21       33589341     33643926
3149       RPS26P4              21       39491544     39491898
3150     BACH1-AS1              21       29370019     29376339
3151     BACH1-AS1              21       29370019     29376339
3152     BACH1-AS1              21       29370019     29376339
3153     BACH1-AS1              21       29370019     29376339
3154        DONSON              21       33559542     33588708
3155        DONSON              21       33559542     33588708
3156        DONSON              21       33559542     33588708
3157        DONSON              21       33559542     33588708
3158        DONSON              21       33559542     33588708
3159        DONSON              21       33559542     33588708
3160        DONSON              21       33559542     33588708
3161        DONSON              21       33559542     33588708
3162        DONSON              21       33559542     33588708
3163        DONSON              21       33559542     33588708
3164        DONSON              21       33559542     33588708
3165        DONSON              21       33559542     33588708
3166        DONSON              21       33559542     33588708
3167        DONSON              21       33559542     33588708
3168        DONSON              21       33559542     33588708
3169        DONSON              21       33559542     33588708
3170        DONSON              21       33559542     33588708
3171        DONSON              21       33559542     33588708
3172        DONSON              21       33559542     33588708
3173        DONSON              21       33559542     33588708
3174        DONSON              21       33559542     33588708
3175        DONSON              21       33559542     33588708
3176        DONSON              21       33559542     33588708
3177        DONSON              21       33559542     33588708
3178        DONSON              21       33559542     33588708
3179        DONSON              21       33559542     33588708
3180        DONSON              21       33559542     33588708
3181        DONSON              21       33559542     33588708
3182        DONSON              21       33559542     33588708
3183        DONSON              21       33559542     33588708
3184        DONSON              21       33559542     33588708
3185        DONSON              21       33559542     33588708
3186        DONSON              21       33559542     33588708
3187        DONSON              21       33559542     33588708
3188        DONSON              21       33559542     33588708
3189        DONSON              21       33559542     33588708
3190        DONSON              21       33559542     33588708
3191        DONSON              21       33559542     33588708
3192        DONSON              21       33559542     33588708
3193        DONSON              21       33559542     33588708
3194        DONSON              21       33559542     33588708
3195        DONSON              21       33559542     33588708
3196        DONSON              21       33559542     33588708
3197        DONSON              21       33559542     33588708
3198        DONSON              21       33559542     33588708
3199        DONSON              21       33559542     33588708
3200        DONSON              21       33559542     33588708
3201        DONSON              21       33559542     33588708
3202        DONSON              21       33559542     33588708
3203        DONSON              21       33559542     33588708
3204        DONSON              21       33559542     33588708
3205        DONSON              21       33559542     33588708
3206        DONSON              21       33559542     33588708
3207        DONSON              21       33559542     33588708
3208        DONSON              21       33559542     33588708
3209        DONSON              21       33559542     33588708
3210        DONSON              21       33559542     33588708
3211        DONSON              21       33559542     33588708
3212        DONSON              21       33559542     33588708
3213        DONSON              21       33559542     33588708
3214        DONSON              21       33559542     33588708
3215        DONSON              21       33559542     33588708
3216        DONSON              21       33559542     33588708
3217        DONSON              21       33559542     33588708
3218        DONSON              21       33559542     33588708
3219        DONSON              21       33559542     33588708
3220        DONSON              21       33559542     33588708
3221        DONSON              21       33559542     33588708
3222        DONSON              21       33559542     33588708
3223        DONSON              21       33559542     33588708
3224        DONSON              21       33559542     33588708
3225        DONSON              21       33559542     33588708
3226        DONSON              21       33559542     33588708
3227        DONSON              21       33559542     33588708
3228        DONSON              21       33559542     33588708
3229        DONSON              21       33559542     33588708
3230        DONSON              21       33559542     33588708
3231        DONSON              21       33559542     33588708
3232        DONSON              21       33559542     33588708
3233        DONSON              21       33559542     33588708
3234        DONSON              21       33559542     33588708
3235        DONSON              21       33559542     33588708
3236        DONSON              21       33559542     33588708
3237        DONSON              21       33559542     33588708
3238        DONSON              21       33559542     33588708
3239        DONSON              21       33559542     33588708
3240        DONSON              21       33559542     33588708
3241        DONSON              21       33559542     33588708
3242        DONSON              21       33559542     33588708
3243        DONSON              21       33559542     33588708
3244        DONSON              21       33559542     33588708
3245        DONSON              21       33559542     33588708
3246        DONSON              21       33559542     33588708
3247          PFKL              21       44300051     44327376
3248          PFKL              21       44300051     44327376
3249          PFKL              21       44300051     44327376
3250          PFKL              21       44300051     44327376
3251          PFKL              21       44300051     44327376
3252          PFKL              21       44300051     44327376
3253          PFKL              21       44300051     44327376
3254          PFKL              21       44300051     44327376
3255          PFKL              21       44300051     44327376
3256          PFKL              21       44300051     44327376
3257          PFKL              21       44300051     44327376
3258          PFKL              21       44300051     44327376
3259          PFKL              21       44300051     44327376
3260          PFKL              21       44300051     44327376
3261          PFKL              21       44300051     44327376
3262          PFKL              21       44300051     44327376
3263          PFKL              21       44300051     44327376
3264          PFKL              21       44300051     44327376
3265          PFKL              21       44300051     44327376
3266          PFKL              21       44300051     44327376
3267          PFKL              21       44300051     44327376
3268          PFKL              21       44300051     44327376
3269          PFKL              21       44300051     44327376
3270          PFKL              21       44300051     44327376
3271          PFKL              21       44300051     44327376
3272          PFKL              21       44300051     44327376
3273          PFKL              21       44300051     44327376
3274          PFKL              21       44300051     44327376
3275          PFKL              21       44300051     44327376
3276          PFKL              21       44300051     44327376
3277          PFKL              21       44300051     44327376
3278          PFKL              21       44300051     44327376
3279          PFKL              21       44300051     44327376
3280          PFKL              21       44300051     44327376
3281          PFKL              21       44300051     44327376
3282          PFKL              21       44300051     44327376
3283          PFKL              21       44300051     44327376
3284          PFKL              21       44300051     44327376
3285          PFKL              21       44300051     44327376
3286          PFKL              21       44300051     44327376
3287          PFKL              21       44300051     44327376
3288          PFKL              21       44300051     44327376
3289          PFKL              21       44300051     44327376
3290          PFKL              21       44300051     44327376
3291          PFKL              21       44300051     44327376
3292          PFKL              21       44300051     44327376
3293          PFKL              21       44300051     44327376
3294          PFKL              21       44300051     44327376
3295          PFKL              21       44300051     44327376
3296          PFKL              21       44300051     44327376
3297          PFKL              21       44300051     44327376
3298          PFKL              21       44300051     44327376
3299          PFKL              21       44300051     44327376
3300          PFKL              21       44300051     44327376
3301          PFKL              21       44300051     44327376
3302          PFKL              21       44300051     44327376
3303          PFKL              21       44300051     44327376
3304          PFKL              21       44300051     44327376
3305          PFKL              21       44300051     44327376
3306          PFKL              21       44300051     44327376
3307          PFKL              21       44300051     44327376
3308          PFKL              21       44300051     44327376
3309          PFKL              21       44300051     44327376
3310          PFKL              21       44300051     44327376
3311          PFKL              21       44300051     44327376
3312          PFKL              21       44300051     44327376
3313          PFKL              21       44300051     44327376
3314          PFKL              21       44300051     44327376
3315          PFKL              21       44300051     44327376
3316          PFKL              21       44300051     44327376
3317          PFKL              21       44300051     44327376
3318          PFKL              21       44300051     44327376
3319          PFKL              21       44300051     44327376
3320          PFKL              21       44300051     44327376
3321          PFKL              21       44300051     44327376
3322          PFKL              21       44300051     44327376
3323          PFKL              21       44300051     44327376
3324          PFKL              21       44300051     44327376
3325          PFKL              21       44300051     44327376
3326          PFKL              21       44300051     44327376
3327          PFKL              21       44300051     44327376
3328          PFKL              21       44300051     44327376
3329          PFKL              21       44300051     44327376
3330          PFKL              21       44300051     44327376
3331          PFKL              21       44300051     44327376
3332          PFKL              21       44300051     44327376
3333          PFKL              21       44300051     44327376
3334          PFKL              21       44300051     44327376
3335          PFKL              21       44300051     44327376
3336          PFKL              21       44300051     44327376
3337          PFKL              21       44300051     44327376
3338          PFKL              21       44300051     44327376
3339          PFKL              21       44300051     44327376
3340          PFKL              21       44300051     44327376
3341          PFKL              21       44300051     44327376
3342          PFKL              21       44300051     44327376
3343          PFKL              21       44300051     44327376
3344          PFKL              21       44300051     44327376
3345          PFKL              21       44300051     44327376
3346          PFKL              21       44300051     44327376
3347          PFKL              21       44300051     44327376
3348          PFKL              21       44300051     44327376
3349          PFKL              21       44300051     44327376
3350          PFKL              21       44300051     44327376
3351          PFKL              21       44300051     44327376
3352          PFKL              21       44300051     44327376
3353          PFKL              21       44300051     44327376
3354          PFKL              21       44300051     44327376
3355          PFKL              21       44300051     44327376
3356          PFKL              21       44300051     44327376
3357          PFKL              21       44300051     44327376
3358          PFKL              21       44300051     44327376
3359          PFKL              21       44300051     44327376
3360          PFKL              21       44300051     44327376
3361          PFKL              21       44300051     44327376
3362          PFKL              21       44300051     44327376
3363          PFKL              21       44300051     44327376
3364          PFKL              21       44300051     44327376
3365          PFKL              21       44300051     44327376
3366          PFKL              21       44300051     44327376
3367          PFKL              21       44300051     44327376
3368          PFKL              21       44300051     44327376
3369          PFKL              21       44300051     44327376
3370          PFKL              21       44300051     44327376
3371          PFKL              21       44300051     44327376
3372          PFKL              21       44300051     44327376
3373          PFKL              21       44300051     44327376
3374          PFKL              21       44300051     44327376
3375          PFKL              21       44300051     44327376
3376          PFKL              21       44300051     44327376
3377          PFKL              21       44300051     44327376
3378          PFKL              21       44300051     44327376
3379          PFKL              21       44300051     44327376
3380          PFKL              21       44300051     44327376
3381          PFKL              21       44300051     44327376
3382          PFKL              21       44300051     44327376
3383          PFKL              21       44300051     44327376
3384                            21        8254592      8255514
3385     BACH1-IT1              21       29351634     29361894
3386     BACH1-IT1              21       29351634     29361894
3387     BACH1-IT1              21       29351634     29361894
3388     BACH1-IT1              21       29351634     29361894
3389    KRTAP10-12              21       44697172     44698044
3390    KRTAP10-12              21       44697172     44698044
3391    KRTAP10-12              21       44697172     44698044
3392    KRTAP10-12              21       44697172     44698044
3393      MTCYBP21              21       44469929     44472516
3394      MTCYBP21              21       44469929     44472516
3395      MTCYBP21              21       44469929     44472516
3396                            21       44347767     44348295
3397                            21       44328944     44330221
3398                            21       44328944     44330221
3399                            21       44328944     44330221
3400                            21       44328944     44330221
3401                            21       44328944     44330221
3402         GRIK1              21       29536933     29940033
3403         GRIK1              21       29536933     29940033
3404         GRIK1              21       29536933     29940033
3405         GRIK1              21       29536933     29940033
3406         GRIK1              21       29536933     29940033
3407         GRIK1              21       29536933     29940033
3408         GRIK1              21       29536933     29940033
3409         GRIK1              21       29536933     29940033
3410         GRIK1              21       29536933     29940033
3411         GRIK1              21       29536933     29940033
3412         GRIK1              21       29536933     29940033
3413         GRIK1              21       29536933     29940033
3414         GRIK1              21       29536933     29940033
3415         GRIK1              21       29536933     29940033
3416         GRIK1              21       29536933     29940033
3417         GRIK1              21       29536933     29940033
3418         GRIK1              21       29536933     29940033
3419         GRIK1              21       29536933     29940033
3420         GRIK1              21       29536933     29940033
3421         GRIK1              21       29536933     29940033
3422         GRIK1              21       29536933     29940033
3423         GRIK1              21       29536933     29940033
3424         GRIK1              21       29536933     29940033
3425         GRIK1              21       29536933     29940033
3426         GRIK1              21       29536933     29940033
3427         GRIK1              21       29536933     29940033
3428         GRIK1              21       29536933     29940033
3429         GRIK1              21       29536933     29940033
3430         GRIK1              21       29536933     29940033
3431         GRIK1              21       29536933     29940033
3432         GRIK1              21       29536933     29940033
3433         GRIK1              21       29536933     29940033
3434         GRIK1              21       29536933     29940033
3435         GRIK1              21       29536933     29940033
3436         GRIK1              21       29536933     29940033
3437         GRIK1              21       29536933     29940033
3438         GRIK1              21       29536933     29940033
3439         GRIK1              21       29536933     29940033
3440         GRIK1              21       29536933     29940033
3441         GRIK1              21       29536933     29940033
3442         GRIK1              21       29536933     29940033
3443         GRIK1              21       29536933     29940033
3444         GRIK1              21       29536933     29940033
3445         GRIK1              21       29536933     29940033
3446         GRIK1              21       29536933     29940033
3447         GRIK1              21       29536933     29940033
3448         GRIK1              21       29536933     29940033
3449         GRIK1              21       29536933     29940033
3450         GRIK1              21       29536933     29940033
3451         GRIK1              21       29536933     29940033
3452         GRIK1              21       29536933     29940033
3453         GRIK1              21       29536933     29940033
3454         GRIK1              21       29536933     29940033
3455         GRIK1              21       29536933     29940033
3456         GRIK1              21       29536933     29940033
3457         GRIK1              21       29536933     29940033
3458         GRIK1              21       29536933     29940033
3459         GRIK1              21       29536933     29940033
3460         GRIK1              21       29536933     29940033
3461         GRIK1              21       29536933     29940033
3462         GRIK1              21       29536933     29940033
3463         GRIK1              21       29536933     29940033
3464         GRIK1              21       29536933     29940033
3465         GRIK1              21       29536933     29940033
3466         GRIK1              21       29536933     29940033
3467         GRIK1              21       29536933     29940033
3468         GRIK1              21       29536933     29940033
3469         GRIK1              21       29536933     29940033
3470         GRIK1              21       29536933     29940033
3471         GRIK1              21       29536933     29940033
3472         GRIK1              21       29536933     29940033
3473         GRIK1              21       29536933     29940033
3474         GRIK1              21       29536933     29940033
3475         GRIK1              21       29536933     29940033
3476         GRIK1              21       29536933     29940033
3477         GRIK1              21       29536933     29940033
3478         GRIK1              21       29536933     29940033
3479         GRIK1              21       29536933     29940033
3480         GRIK1              21       29536933     29940033
3481         GRIK1              21       29536933     29940033
3482         GRIK1              21       29536933     29940033
3483         GRIK1              21       29536933     29940033
3484         GRIK1              21       29536933     29940033
3485         GRIK1              21       29536933     29940033
3486         GRIK1              21       29536933     29940033
3487         GRIK1              21       29536933     29940033
3488         GRIK1              21       29536933     29940033
3489         GRIK1              21       29536933     29940033
3490         GRIK1              21       29536933     29940033
3491         GRIK1              21       29536933     29940033
3492         GRIK1              21       29536933     29940033
3493         GRIK1              21       29536933     29940033
3494         GRIK1              21       29536933     29940033
3495         GRIK1              21       29536933     29940033
3496         GRIK1              21       29536933     29940033
3497         GRIK1              21       29536933     29940033
3498         GRIK1              21       29536933     29940033
3499         GRIK1              21       29536933     29940033
3500         GRIK1              21       29536933     29940033
3501         GRIK1              21       29536933     29940033
3502         GRIK1              21       29536933     29940033
3503         GRIK1              21       29536933     29940033
3504         GRIK1              21       29536933     29940033
3505         GRIK1              21       29536933     29940033
3506         GRIK1              21       29536933     29940033
3507         GRIK1              21       29536933     29940033
3508         GRIK1              21       29536933     29940033
3509         GRIK1              21       29536933     29940033
3510         GRIK1              21       29536933     29940033
3511         GRIK1              21       29536933     29940033
3512         GRIK1              21       29536933     29940033
3513         GRIK1              21       29536933     29940033
3514         GRIK1              21       29536933     29940033
3515         GRIK1              21       29536933     29940033
3516         GRIK1              21       29536933     29940033
3517         GRIK1              21       29536933     29940033
3518         GRIK1              21       29536933     29940033
3519         GRIK1              21       29536933     29940033
3520         GRIK1              21       29536933     29940033
3521         GRIK1              21       29536933     29940033
3522         GRIK1              21       29536933     29940033
3523         GRIK1              21       29536933     29940033
3524         GRIK1              21       29536933     29940033
3525         GRIK1              21       29536933     29940033
3526         GRIK1              21       29536933     29940033
3527         GRIK1              21       29536933     29940033
3528       SMIM11B              21        7744962      7777853
3529       SMIM11B              21        7744962      7777853
3530       SMIM11B              21        7744962      7777853
3531       SMIM11B              21        7744962      7777853
3532       SMIM11B              21        7744962      7777853
3533       SMIM11B              21        7744962      7777853
3534       SMIM11B              21        7744962      7777853
3535       SMIM11B              21        7744962      7777853
3536       SMIM11B              21        7744962      7777853
3537       SMIM11B              21        7744962      7777853
3538       SMIM11B              21        7744962      7777853
3539       SMIM11B              21        7744962      7777853
3540       SMIM11B              21        7744962      7777853
3541       SMIM11B              21        7744962      7777853
3542       SMIM11B              21        7744962      7777853
3543       SMIM11B              21        7744962      7777853
3544       SMIM11B              21        7744962      7777853
3545       SMIM11B              21        7744962      7777853
3546       SMIM11B              21        7744962      7777853
3547       SMIM11B              21        7744962      7777853
3548       SMIM11B              21        7744962      7777853
3549       SMIM11B              21        7744962      7777853
3550       SMIM11B              21        7744962      7777853
3551       SMIM11B              21        7744962      7777853
3552       SMIM11B              21        7744962      7777853
3553       SMIM11B              21        7744962      7777853
3554       SMIM11B              21        7744962      7777853
3555                            21        7421442      7425839
3556                            21        7421442      7425839
3557                            21        7421442      7425839
3558                            21        7421442      7425839
3559                            21        7421442      7425839
3560                            21        7421442      7425839
3561                            21        7421442      7425839
3562                            21        7421442      7425839
3563                            21        7421442      7425839
3564                            21        7421442      7425839
3565       RPL23P2              21       28997613     28998033
3566           LSS              21       46188141     46228824
3567           LSS              21       46188141     46228824
3568           LSS              21       46188141     46228824
3569           LSS              21       46188141     46228824
3570           LSS              21       46188141     46228824
3571           LSS              21       46188141     46228824
3572           LSS              21       46188141     46228824
3573           LSS              21       46188141     46228824
3574           LSS              21       46188141     46228824
3575           LSS              21       46188141     46228824
3576           LSS              21       46188141     46228824
3577           LSS              21       46188141     46228824
3578           LSS              21       46188141     46228824
3579           LSS              21       46188141     46228824
3580           LSS              21       46188141     46228824
3581           LSS              21       46188141     46228824
3582           LSS              21       46188141     46228824
3583           LSS              21       46188141     46228824
3584           LSS              21       46188141     46228824
3585           LSS              21       46188141     46228824
3586           LSS              21       46188141     46228824
3587           LSS              21       46188141     46228824
3588           LSS              21       46188141     46228824
3589           LSS              21       46188141     46228824
3590           LSS              21       46188141     46228824
3591           LSS              21       46188141     46228824
3592           LSS              21       46188141     46228824
3593           LSS              21       46188141     46228824
3594           LSS              21       46188141     46228824
3595           LSS              21       46188141     46228824
3596           LSS              21       46188141     46228824
3597           LSS              21       46188141     46228824
3598           LSS              21       46188141     46228824
3599           LSS              21       46188141     46228824
3600           LSS              21       46188141     46228824
3601           LSS              21       46188141     46228824
3602           LSS              21       46188141     46228824
3603           LSS              21       46188141     46228824
3604           LSS              21       46188141     46228824
3605           LSS              21       46188141     46228824
3606           LSS              21       46188141     46228824
3607           LSS              21       46188141     46228824
3608           LSS              21       46188141     46228824
3609           LSS              21       46188141     46228824
3610           LSS              21       46188141     46228824
3611           LSS              21       46188141     46228824
3612           LSS              21       46188141     46228824
3613           LSS              21       46188141     46228824
3614           LSS              21       46188141     46228824
3615           LSS              21       46188141     46228824
3616           LSS              21       46188141     46228824
3617           LSS              21       46188141     46228824
3618           LSS              21       46188141     46228824
3619           LSS              21       46188141     46228824
3620           LSS              21       46188141     46228824
3621           LSS              21       46188141     46228824
3622           LSS              21       46188141     46228824
3623           LSS              21       46188141     46228824
3624           LSS              21       46188141     46228824
3625           LSS              21       46188141     46228824
3626           LSS              21       46188141     46228824
3627           LSS              21       46188141     46228824
3628           LSS              21       46188141     46228824
3629           LSS              21       46188141     46228824
3630           LSS              21       46188141     46228824
3631           LSS              21       46188141     46228824
3632           LSS              21       46188141     46228824
3633           LSS              21       46188141     46228824
3634           LSS              21       46188141     46228824
3635           LSS              21       46188141     46228824
3636           LSS              21       46188141     46228824
3637           LSS              21       46188141     46228824
3638           LSS              21       46188141     46228824
3639           LSS              21       46188141     46228824
3640           LSS              21       46188141     46228824
3641           LSS              21       46188141     46228824
3642           LSS              21       46188141     46228824
3643           LSS              21       46188141     46228824
3644           LSS              21       46188141     46228824
3645           LSS              21       46188141     46228824
3646           LSS              21       46188141     46228824
3647           LSS              21       46188141     46228824
3648           LSS              21       46188141     46228824
3649           LSS              21       46188141     46228824
3650           LSS              21       46188141     46228824
3651           LSS              21       46188141     46228824
3652           LSS              21       46188141     46228824
3653           LSS              21       46188141     46228824
3654           LSS              21       46188141     46228824
3655           LSS              21       46188141     46228824
3656           LSS              21       46188141     46228824
3657           LSS              21       46188141     46228824
3658           LSS              21       46188141     46228824
3659           LSS              21       46188141     46228824
3660           LSS              21       46188141     46228824
3661           LSS              21       46188141     46228824
3662           LSS              21       46188141     46228824
3663           LSS              21       46188141     46228824
3664           LSS              21       46188141     46228824
3665           LSS              21       46188141     46228824
3666           LSS              21       46188141     46228824
3667           LSS              21       46188141     46228824
3668           LSS              21       46188141     46228824
3669           LSS              21       46188141     46228824
3670           LSS              21       46188141     46228824
3671           LSS              21       46188141     46228824
3672           LSS              21       46188141     46228824
3673           LSS              21       46188141     46228824
3674           LSS              21       46188141     46228824
3675           LSS              21       46188141     46228824
3676           LSS              21       46188141     46228824
3677           LSS              21       46188141     46228824
3678           LSS              21       46188141     46228824
3679           LSS              21       46188141     46228824
3680           LSS              21       46188141     46228824
3681        PRDM15              21       41798225     41879482
3682        PRDM15              21       41798225     41879482
3683        PRDM15              21       41798225     41879482
3684        PRDM15              21       41798225     41879482
3685        PRDM15              21       41798225     41879482
3686        PRDM15              21       41798225     41879482
3687        PRDM15              21       41798225     41879482
3688        PRDM15              21       41798225     41879482
3689        PRDM15              21       41798225     41879482
3690        PRDM15              21       41798225     41879482
3691        PRDM15              21       41798225     41879482
3692        PRDM15              21       41798225     41879482
3693        PRDM15              21       41798225     41879482
3694        PRDM15              21       41798225     41879482
3695        PRDM15              21       41798225     41879482
3696        PRDM15              21       41798225     41879482
3697        PRDM15              21       41798225     41879482
3698        PRDM15              21       41798225     41879482
3699        PRDM15              21       41798225     41879482
3700        PRDM15              21       41798225     41879482
3701        PRDM15              21       41798225     41879482
3702        PRDM15              21       41798225     41879482
3703        PRDM15              21       41798225     41879482
3704        PRDM15              21       41798225     41879482
3705        PRDM15              21       41798225     41879482
3706        PRDM15              21       41798225     41879482
3707        PRDM15              21       41798225     41879482
3708        PRDM15              21       41798225     41879482
3709        PRDM15              21       41798225     41879482
3710        PRDM15              21       41798225     41879482
3711        PRDM15              21       41798225     41879482
3712        PRDM15              21       41798225     41879482
3713        PRDM15              21       41798225     41879482
3714        PRDM15              21       41798225     41879482
3715        PRDM15              21       41798225     41879482
3716        PRDM15              21       41798225     41879482
3717        PRDM15              21       41798225     41879482
3718        PRDM15              21       41798225     41879482
3719        PRDM15              21       41798225     41879482
3720        PRDM15              21       41798225     41879482
3721        PRDM15              21       41798225     41879482
3722        PRDM15              21       41798225     41879482
3723        PRDM15              21       41798225     41879482
3724        PRDM15              21       41798225     41879482
3725        PRDM15              21       41798225     41879482
3726        PRDM15              21       41798225     41879482
3727        PRDM15              21       41798225     41879482
3728        PRDM15              21       41798225     41879482
3729        PRDM15              21       41798225     41879482
3730        PRDM15              21       41798225     41879482
3731        PRDM15              21       41798225     41879482
3732        PRDM15              21       41798225     41879482
3733        PRDM15              21       41798225     41879482
3734        PRDM15              21       41798225     41879482
3735        PRDM15              21       41798225     41879482
3736        PRDM15              21       41798225     41879482
3737        PRDM15              21       41798225     41879482
3738        PRDM15              21       41798225     41879482
3739        PRDM15              21       41798225     41879482
3740        PRDM15              21       41798225     41879482
3741        PRDM15              21       41798225     41879482
3742        PRDM15              21       41798225     41879482
3743        PRDM15              21       41798225     41879482
3744        PRDM15              21       41798225     41879482
3745        PRDM15              21       41798225     41879482
3746        PRDM15              21       41798225     41879482
3747        PRDM15              21       41798225     41879482
3748        PRDM15              21       41798225     41879482
3749        PRDM15              21       41798225     41879482
3750        PRDM15              21       41798225     41879482
3751        PRDM15              21       41798225     41879482
3752        PRDM15              21       41798225     41879482
3753        PRDM15              21       41798225     41879482
3754        PRDM15              21       41798225     41879482
3755        PRDM15              21       41798225     41879482
3756        PRDM15              21       41798225     41879482
3757        PRDM15              21       41798225     41879482
3758        PRDM15              21       41798225     41879482
3759        PRDM15              21       41798225     41879482
3760        PRDM15              21       41798225     41879482
3761        PRDM15              21       41798225     41879482
3762        PRDM15              21       41798225     41879482
3763        PRDM15              21       41798225     41879482
3764        PRDM15              21       41798225     41879482
3765        PRDM15              21       41798225     41879482
3766        PRDM15              21       41798225     41879482
3767        PRDM15              21       41798225     41879482
3768        PRDM15              21       41798225     41879482
3769        PRDM15              21       41798225     41879482
3770        PRDM15              21       41798225     41879482
3771        PRDM15              21       41798225     41879482
3772        PRDM15              21       41798225     41879482
3773        PRDM15              21       41798225     41879482
3774        PRDM15              21       41798225     41879482
3775        PRDM15              21       41798225     41879482
3776        PRDM15              21       41798225     41879482
3777        PRDM15              21       41798225     41879482
3778        PRDM15              21       41798225     41879482
3779        PRDM15              21       41798225     41879482
3780        PRDM15              21       41798225     41879482
3781        PRDM15              21       41798225     41879482
3782        PRDM15              21       41798225     41879482
3783        PRDM15              21       41798225     41879482
3784        PRDM15              21       41798225     41879482
3785        PRDM15              21       41798225     41879482
3786        PRDM15              21       41798225     41879482
3787        PRDM15              21       41798225     41879482
3788        PRDM15              21       41798225     41879482
3789        PRDM15              21       41798225     41879482
3790        PRDM15              21       41798225     41879482
3791        PRDM15              21       41798225     41879482
3792        PRDM15              21       41798225     41879482
3793        PRDM15              21       41798225     41879482
3794        PRDM15              21       41798225     41879482
3795        PRDM15              21       41798225     41879482
3796        PRDM15              21       41798225     41879482
3797        PRDM15              21       41798225     41879482
3798        PRDM15              21       41798225     41879482
3799        PRDM15              21       41798225     41879482
3800        PRDM15              21       41798225     41879482
3801        PRDM15              21       41798225     41879482
3802        PRDM15              21       41798225     41879482
3803        PRDM15              21       41798225     41879482
3804        PRDM15              21       41798225     41879482
3805        PRDM15              21       41798225     41879482
3806        PRDM15              21       41798225     41879482
3807        PRDM15              21       41798225     41879482
3808        PRDM15              21       41798225     41879482
3809        PRDM15              21       41798225     41879482
3810        PRDM15              21       41798225     41879482
3811        PRDM15              21       41798225     41879482
3812        PRDM15              21       41798225     41879482
3813        PRDM15              21       41798225     41879482
3814        PRDM15              21       41798225     41879482
3815        PRDM15              21       41798225     41879482
3816        PRDM15              21       41798225     41879482
3817        PRDM15              21       41798225     41879482
3818        PRDM15              21       41798225     41879482
3819        PRDM15              21       41798225     41879482
3820        PRDM15              21       41798225     41879482
3821        PRDM15              21       41798225     41879482
3822        PRDM15              21       41798225     41879482
3823        PRDM15              21       41798225     41879482
3824        PRDM15              21       41798225     41879482
3825        PRDM15              21       41798225     41879482
3826        PRDM15              21       41798225     41879482
3827        PRDM15              21       41798225     41879482
3828        PRDM15              21       41798225     41879482
3829        PRDM15              21       41798225     41879482
3830        PRDM15              21       41798225     41879482
3831        PRDM15              21       41798225     41879482
3832        PRDM15              21       41798225     41879482
3833        PRDM15              21       41798225     41879482
3834        PRDM15              21       41798225     41879482
3835        PRDM15              21       41798225     41879482
3836        PRDM15              21       41798225     41879482
3837        PRDM15              21       41798225     41879482
3838        PRDM15              21       41798225     41879482
3839        PRDM15              21       41798225     41879482
3840        PRDM15              21       41798225     41879482
3841        PRDM15              21       41798225     41879482
3842        PRDM15              21       41798225     41879482
3843        PRDM15              21       41798225     41879482
3844        PRDM15              21       41798225     41879482
3845        PRDM15              21       41798225     41879482
3846        PRDM15              21       41798225     41879482
3847        PRDM15              21       41798225     41879482
3848        PRDM15              21       41798225     41879482
3849        PRDM15              21       41798225     41879482
3850        PRDM15              21       41798225     41879482
3851        PRDM15              21       41798225     41879482
3852        PRDM15              21       41798225     41879482
3853        PRDM15              21       41798225     41879482
3854        PRDM15              21       41798225     41879482
3855        PRDM15              21       41798225     41879482
3856        PRDM15              21       41798225     41879482
3857        PRDM15              21       41798225     41879482
3858        PRDM15              21       41798225     41879482
3859        PRDM15              21       41798225     41879482
3860        PRDM15              21       41798225     41879482
3861        PRDM15              21       41798225     41879482
3862        PRDM15              21       41798225     41879482
3863        PRDM15              21       41798225     41879482
3864        PRDM15              21       41798225     41879482
3865        PRDM15              21       41798225     41879482
3866        PRDM15              21       41798225     41879482
3867        PRDM15              21       41798225     41879482
3868        PRDM15              21       41798225     41879482
3869        PRDM15              21       41798225     41879482
3870        PRDM15              21       41798225     41879482
3871        PRDM15              21       41798225     41879482
3872        PRDM15              21       41798225     41879482
3873        PRDM15              21       41798225     41879482
3874        PRDM15              21       41798225     41879482
3875        PRDM15              21       41798225     41879482
3876        PRDM15              21       41798225     41879482
3877        PRDM15              21       41798225     41879482
3878        PRDM15              21       41798225     41879482
3879        PRDM15              21       41798225     41879482
3880        PRDM15              21       41798225     41879482
3881        PRDM15              21       41798225     41879482
3882        PRDM15              21       41798225     41879482
3883        PRDM15              21       41798225     41879482
3884        PRDM15              21       41798225     41879482
3885        PRDM15              21       41798225     41879482
3886        PRDM15              21       41798225     41879482
3887        PRDM15              21       41798225     41879482
3888        PRDM15              21       41798225     41879482
3889        PRDM15              21       41798225     41879482
3890        PRDM15              21       41798225     41879482
3891        PRDM15              21       41798225     41879482
3892        PRDM15              21       41798225     41879482
3893        PRDM15              21       41798225     41879482
3894        PRDM15              21       41798225     41879482
3895        PRDM15              21       41798225     41879482
3896        PRDM15              21       41798225     41879482
3897        PRDM15              21       41798225     41879482
3898        PRDM15              21       41798225     41879482
3899        PRDM15              21       41798225     41879482
3900        PRDM15              21       41798225     41879482
3901        PRDM15              21       41798225     41879482
3902        PRDM15              21       41798225     41879482
3903        PRDM15              21       41798225     41879482
3904        PRDM15              21       41798225     41879482
3905        PRDM15              21       41798225     41879482
3906        PRDM15              21       41798225     41879482
3907        PRDM15              21       41798225     41879482
3908        PRDM15              21       41798225     41879482
3909        PRDM15              21       41798225     41879482
3910        PRDM15              21       41798225     41879482
3911        PRDM15              21       41798225     41879482
3912        PRDM15              21       41798225     41879482
3913        PRDM15              21       41798225     41879482
3914        PRDM15              21       41798225     41879482
3915        PRDM15              21       41798225     41879482
3916        PRDM15              21       41798225     41879482
3917        PRDM15              21       41798225     41879482
3918        PRDM15              21       41798225     41879482
3919        PRDM15              21       41798225     41879482
3920        PRDM15              21       41798225     41879482
3921        PRDM15              21       41798225     41879482
3922        PRDM15              21       41798225     41879482
3923        PRDM15              21       41798225     41879482
3924        PRDM15              21       41798225     41879482
3925        PRDM15              21       41798225     41879482
3926        PRDM15              21       41798225     41879482
3927        PRDM15              21       41798225     41879482
3928        PRDM15              21       41798225     41879482
3929        PRDM15              21       41798225     41879482
3930        PRDM15              21       41798225     41879482
3931        PRDM15              21       41798225     41879482
3932        PRDM15              21       41798225     41879482
3933      MAP3K7CL              21       29077471     29175889
3934      MAP3K7CL              21       29077471     29175889
3935      MAP3K7CL              21       29077471     29175889
3936      MAP3K7CL              21       29077471     29175889
3937      MAP3K7CL              21       29077471     29175889
3938      MAP3K7CL              21       29077471     29175889
3939      MAP3K7CL              21       29077471     29175889
3940      MAP3K7CL              21       29077471     29175889
3941      MAP3K7CL              21       29077471     29175889
3942      MAP3K7CL              21       29077471     29175889
3943      MAP3K7CL              21       29077471     29175889
3944      MAP3K7CL              21       29077471     29175889
3945      MAP3K7CL              21       29077471     29175889
3946      MAP3K7CL              21       29077471     29175889
3947      MAP3K7CL              21       29077471     29175889
3948      MAP3K7CL              21       29077471     29175889
3949      MAP3K7CL              21       29077471     29175889
3950      MAP3K7CL              21       29077471     29175889
3951      MAP3K7CL              21       29077471     29175889
3952      MAP3K7CL              21       29077471     29175889
3953      MAP3K7CL              21       29077471     29175889
3954      MAP3K7CL              21       29077471     29175889
3955      MAP3K7CL              21       29077471     29175889
3956      MAP3K7CL              21       29077471     29175889
3957      MAP3K7CL              21       29077471     29175889
3958      MAP3K7CL              21       29077471     29175889
3959      MAP3K7CL              21       29077471     29175889
3960      MAP3K7CL              21       29077471     29175889
3961      MAP3K7CL              21       29077471     29175889
3962      MAP3K7CL              21       29077471     29175889
3963      MAP3K7CL              21       29077471     29175889
3964      MAP3K7CL              21       29077471     29175889
3965      MAP3K7CL              21       29077471     29175889
3966      MAP3K7CL              21       29077471     29175889
3967      MAP3K7CL              21       29077471     29175889
3968      MAP3K7CL              21       29077471     29175889
3969      MAP3K7CL              21       29077471     29175889
3970      MAP3K7CL              21       29077471     29175889
3971      MAP3K7CL              21       29077471     29175889
3972      MAP3K7CL              21       29077471     29175889
3973      MAP3K7CL              21       29077471     29175889
3974      MAP3K7CL              21       29077471     29175889
3975      MAP3K7CL              21       29077471     29175889
3976      MAP3K7CL              21       29077471     29175889
3977      MAP3K7CL              21       29077471     29175889
3978      MAP3K7CL              21       29077471     29175889
3979      MAP3K7CL              21       29077471     29175889
3980      MAP3K7CL              21       29077471     29175889
3981      MAP3K7CL              21       29077471     29175889
3982      MAP3K7CL              21       29077471     29175889
3983      MAP3K7CL              21       29077471     29175889
3984      MAP3K7CL              21       29077471     29175889
3985      MAP3K7CL              21       29077471     29175889
3986      MAP3K7CL              21       29077471     29175889
3987      MAP3K7CL              21       29077471     29175889
3988      MAP3K7CL              21       29077471     29175889
3989      MAP3K7CL              21       29077471     29175889
3990      MAP3K7CL              21       29077471     29175889
3991      MAP3K7CL              21       29077471     29175889
3992      MAP3K7CL              21       29077471     29175889
3993      MAP3K7CL              21       29077471     29175889
3994      MAP3K7CL              21       29077471     29175889
3995      MAP3K7CL              21       29077471     29175889
3996      MAP3K7CL              21       29077471     29175889
3997      MAP3K7CL              21       29077471     29175889
3998      MAP3K7CL              21       29077471     29175889
3999      MAP3K7CL              21       29077471     29175889
4000      MAP3K7CL              21       29077471     29175889
4001      MAP3K7CL              21       29077471     29175889
4002      MAP3K7CL              21       29077471     29175889
4003      MAP3K7CL              21       29077471     29175889
4004      MAP3K7CL              21       29077471     29175889
4005      MAP3K7CL              21       29077471     29175889
4006      MAP3K7CL              21       29077471     29175889
4007      MAP3K7CL              21       29077471     29175889
4008      MAP3K7CL              21       29077471     29175889
4009      MAP3K7CL              21       29077471     29175889
4010      MAP3K7CL              21       29077471     29175889
4011      MAP3K7CL              21       29077471     29175889
4012      MAP3K7CL              21       29077471     29175889
4013      MAP3K7CL              21       29077471     29175889
4014      MAP3K7CL              21       29077471     29175889
4015      MAP3K7CL              21       29077471     29175889
4016      MAP3K7CL              21       29077471     29175889
4017      MAP3K7CL              21       29077471     29175889
4018      MAP3K7CL              21       29077471     29175889
4019      MAP3K7CL              21       29077471     29175889
4020      MAP3K7CL              21       29077471     29175889
4021      MAP3K7CL              21       29077471     29175889
4022      MAP3K7CL              21       29077471     29175889
4023      MAP3K7CL              21       29077471     29175889
4024      MAP3K7CL              21       29077471     29175889
4025      MAP3K7CL              21       29077471     29175889
4026      MAP3K7CL              21       29077471     29175889
4027      MAP3K7CL              21       29077471     29175889
4028      MAP3K7CL              21       29077471     29175889
4029      MAP3K7CL              21       29077471     29175889
4030      MAP3K7CL              21       29077471     29175889
4031      MAP3K7CL              21       29077471     29175889
4032      MAP3K7CL              21       29077471     29175889
4033       RPL12P9              21       29127701     29128188
4034     LINC01669              21        6060340      6076305
4035     LINC01669              21        6060340      6076305
4036     LINC01669              21        6060340      6076305
4037     LINC01669              21        6060340      6076305
4038     LINC01669              21        6060340      6076305
4039     LINC01669              21        6060340      6076305
4040     LINC01669              21        6060340      6076305
4041     LINC01669              21        6060340      6076305
4042     LINC01669              21        6060340      6076305
4043     LINC01669              21        6060340      6076305
4044     LINC01669              21        6060340      6076305
4045     LINC01669              21        6060340      6076305
4046     LINC01669              21        6060340      6076305
4047     LINC01669              21        6060340      6076305
4048     LINC01669              21        6060340      6076305
4049                            21        5703182      5705637
4050                            21        5705345      5707160
4051                            21        5705345      5707160
4052                            21       23065491     23131206
4053                            21       23065491     23131206
4054                            21       23065491     23131206
4055                            21       23065491     23131206
4056                            21       23065491     23131206
4057     LINC01687              21       22008944     22098459
4058     LINC01687              21       22008944     22098459
4059     LINC01687              21       22008944     22098459
4060     LINC01687              21       22008944     22098459
4061     LINC01687              21       22008944     22098459
4062     LINC01687              21       22008944     22098459
4063     LINC01687              21       22008944     22098459
4064     LINC01687              21       22008944     22098459
4065     LINC01687              21       22008944     22098459
4066     LINC01687              21       22008944     22098459
4067     LINC01687              21       22008944     22098459
4068     LINC01687              21       22008944     22098459
4069                            21       21933315     21975681
4070                            21       21933315     21975681
4071                            21       21933315     21975681
4072                            21       36060432     36064408
4073                            21       36060432     36064408
4074                            21       36060432     36064408
4075     LINC01683              21       19893279     19899755
4076     LINC01683              21       19893279     19899755
4077     LINC01683              21       19893279     19899755
4078         EVA1C              21       32412006     32515397
4079         EVA1C              21       32412006     32515397
4080         EVA1C              21       32412006     32515397
4081         EVA1C              21       32412006     32515397
4082         EVA1C              21       32412006     32515397
4083         EVA1C              21       32412006     32515397
4084         EVA1C              21       32412006     32515397
4085         EVA1C              21       32412006     32515397
4086         EVA1C              21       32412006     32515397
4087         EVA1C              21       32412006     32515397
4088         EVA1C              21       32412006     32515397
4089         EVA1C              21       32412006     32515397
4090         EVA1C              21       32412006     32515397
4091         EVA1C              21       32412006     32515397
4092         EVA1C              21       32412006     32515397
4093         EVA1C              21       32412006     32515397
4094         EVA1C              21       32412006     32515397
4095         EVA1C              21       32412006     32515397
4096         EVA1C              21       32412006     32515397
4097         EVA1C              21       32412006     32515397
4098         EVA1C              21       32412006     32515397
4099         EVA1C              21       32412006     32515397
4100         EVA1C              21       32412006     32515397
4101         EVA1C              21       32412006     32515397
4102         EVA1C              21       32412006     32515397
4103         EVA1C              21       32412006     32515397
4104         EVA1C              21       32412006     32515397
4105         EVA1C              21       32412006     32515397
4106         EVA1C              21       32412006     32515397
4107         EVA1C              21       32412006     32515397
4108         EVA1C              21       32412006     32515397
4109         EVA1C              21       32412006     32515397
4110         EVA1C              21       32412006     32515397
4111         EVA1C              21       32412006     32515397
4112         EVA1C              21       32412006     32515397
4113         EVA1C              21       32412006     32515397
4114         EVA1C              21       32412006     32515397
4115         EVA1C              21       32412006     32515397
4116         EVA1C              21       32412006     32515397
4117         EVA1C              21       32412006     32515397
4118         EVA1C              21       32412006     32515397
4119         EVA1C              21       32412006     32515397
4120         EVA1C              21       32412006     32515397
4121         EVA1C              21       32412006     32515397
4122         EVA1C              21       32412006     32515397
4123         EVA1C              21       32412006     32515397
4124         EVA1C              21       32412006     32515397
4125         EVA1C              21       32412006     32515397
4126         EVA1C              21       32412006     32515397
4127         EVA1C              21       32412006     32515397
4128         EVA1C              21       32412006     32515397
4129         EVA1C              21       32412006     32515397
4130         EVA1C              21       32412006     32515397
4131         EVA1C              21       32412006     32515397
4132         EVA1C              21       32412006     32515397
4133         EVA1C              21       32412006     32515397
4134         EVA1C              21       32412006     32515397
4135         EVA1C              21       32412006     32515397
4136         EVA1C              21       32412006     32515397
4137         EVA1C              21       32412006     32515397
4138         EVA1C              21       32412006     32515397
4139         EVA1C              21       32412006     32515397
4140         EVA1C              21       32412006     32515397
4141         EVA1C              21       32412006     32515397
4142         EVA1C              21       32412006     32515397
4143         EVA1C              21       32412006     32515397
4144         EVA1C              21       32412006     32515397
4145         EVA1C              21       32412006     32515397
4146         EVA1C              21       32412006     32515397
4147         EVA1C              21       32412006     32515397
4148         EVA1C              21       32412006     32515397
4149         EVA1C              21       32412006     32515397
4150         EVA1C              21       32412006     32515397
4151                            21       38988707     39006153
4152                            21       38988707     39006153
4153                            21       38988707     39006153
4154   ANKRD20A18P              21       14064325     14069087
4155   ANKRD20A18P              21       14064325     14069087
4156   ANKRD20A18P              21       14064325     14069087
4157                            21       13120244     13120807
4158         TIAM1              21       31118416     31559977
4159         TIAM1              21       31118416     31559977
4160         TIAM1              21       31118416     31559977
4161         TIAM1              21       31118416     31559977
4162         TIAM1              21       31118416     31559977
4163         TIAM1              21       31118416     31559977
4164         TIAM1              21       31118416     31559977
4165         TIAM1              21       31118416     31559977
4166         TIAM1              21       31118416     31559977
4167         TIAM1              21       31118416     31559977
4168         TIAM1              21       31118416     31559977
4169         TIAM1              21       31118416     31559977
4170         TIAM1              21       31118416     31559977
4171         TIAM1              21       31118416     31559977
4172         TIAM1              21       31118416     31559977
4173         TIAM1              21       31118416     31559977
4174         TIAM1              21       31118416     31559977
4175         TIAM1              21       31118416     31559977
4176         TIAM1              21       31118416     31559977
4177         TIAM1              21       31118416     31559977
4178         TIAM1              21       31118416     31559977
4179         TIAM1              21       31118416     31559977
4180         TIAM1              21       31118416     31559977
4181         TIAM1              21       31118416     31559977
4182         TIAM1              21       31118416     31559977
4183         TIAM1              21       31118416     31559977
4184         TIAM1              21       31118416     31559977
4185         TIAM1              21       31118416     31559977
4186         TIAM1              21       31118416     31559977
4187         TIAM1              21       31118416     31559977
4188         TIAM1              21       31118416     31559977
4189         TIAM1              21       31118416     31559977
4190         TIAM1              21       31118416     31559977
4191         TIAM1              21       31118416     31559977
4192         TIAM1              21       31118416     31559977
4193         TIAM1              21       31118416     31559977
4194         TIAM1              21       31118416     31559977
4195         TIAM1              21       31118416     31559977
4196         TIAM1              21       31118416     31559977
4197         TIAM1              21       31118416     31559977
4198         TIAM1              21       31118416     31559977
4199         TIAM1              21       31118416     31559977
4200         TIAM1              21       31118416     31559977
4201         TIAM1              21       31118416     31559977
4202         TIAM1              21       31118416     31559977
4203         TIAM1              21       31118416     31559977
4204         TIAM1              21       31118416     31559977
4205         TIAM1              21       31118416     31559977
4206         TIAM1              21       31118416     31559977
4207         TIAM1              21       31118416     31559977
4208         TIAM1              21       31118416     31559977
4209         TIAM1              21       31118416     31559977
4210         TIAM1              21       31118416     31559977
4211         TIAM1              21       31118416     31559977
4212         TIAM1              21       31118416     31559977
4213         TIAM1              21       31118416     31559977
4214         TIAM1              21       31118416     31559977
4215         TIAM1              21       31118416     31559977
4216         TIAM1              21       31118416     31559977
4217         TIAM1              21       31118416     31559977
4218         TIAM1              21       31118416     31559977
4219         TIAM1              21       31118416     31559977
4220         TIAM1              21       31118416     31559977
4221         TIAM1              21       31118416     31559977
4222         TIAM1              21       31118416     31559977
4223         TIAM1              21       31118416     31559977
4224         TIAM1              21       31118416     31559977
4225         TIAM1              21       31118416     31559977
4226         TIAM1              21       31118416     31559977
4227         TIAM1              21       31118416     31559977
4228         TIAM1              21       31118416     31559977
4229         TIAM1              21       31118416     31559977
4230         TIAM1              21       31118416     31559977
4231         TIAM1              21       31118416     31559977
4232         TIAM1              21       31118416     31559977
4233         TIAM1              21       31118416     31559977
4234         TIAM1              21       31118416     31559977
4235         TIAM1              21       31118416     31559977
4236         TIAM1              21       31118416     31559977
4237         TIAM1              21       31118416     31559977
4238         TIAM1              21       31118416     31559977
4239         TIAM1              21       31118416     31559977
4240         TIAM1              21       31118416     31559977
4241         TIAM1              21       31118416     31559977
4242         TIAM1              21       31118416     31559977
4243         TIAM1              21       31118416     31559977
4244         TIAM1              21       31118416     31559977
4245         TIAM1              21       31118416     31559977
4246         TIAM1              21       31118416     31559977
4247          JAM2              21       25639272     25717562
4248          JAM2              21       25639272     25717562
4249          JAM2              21       25639272     25717562
4250          JAM2              21       25639272     25717562
4251          JAM2              21       25639272     25717562
4252          JAM2              21       25639272     25717562
4253          JAM2              21       25639272     25717562
4254          JAM2              21       25639272     25717562
4255          JAM2              21       25639272     25717562
4256          JAM2              21       25639272     25717562
4257          JAM2              21       25639272     25717562
4258          JAM2              21       25639272     25717562
4259          JAM2              21       25639272     25717562
4260          JAM2              21       25639272     25717562
4261          JAM2              21       25639272     25717562
4262          JAM2              21       25639272     25717562
4263          JAM2              21       25639272     25717562
4264          JAM2              21       25639272     25717562
4265          JAM2              21       25639272     25717562
4266          JAM2              21       25639272     25717562
4267          JAM2              21       25639272     25717562
4268          JAM2              21       25639272     25717562
4269          JAM2              21       25639272     25717562
4270          JAM2              21       25639272     25717562
4271          JAM2              21       25639272     25717562
4272          JAM2              21       25639272     25717562
4273          JAM2              21       25639272     25717562
4274          JAM2              21       25639272     25717562
4275          JAM2              21       25639272     25717562
4276          JAM2              21       25639272     25717562
4277          JAM2              21       25639272     25717562
4278          JAM2              21       25639272     25717562
4279          JAM2              21       25639272     25717562
4280          JAM2              21       25639272     25717562
4281          JAM2              21       25639272     25717562
4282          JAM2              21       25639272     25717562
4283          JAM2              21       25639272     25717562
4284          JAM2              21       25639272     25717562
4285          JAM2              21       25639272     25717562
4286          JAM2              21       25639272     25717562
4287          JAM2              21       25639272     25717562
4288          JAM2              21       25639272     25717562
4289          JAM2              21       25639272     25717562
4290          JAM2              21       25639272     25717562
4291          JAM2              21       25639272     25717562
4292          JAM2              21       25639272     25717562
4293     KRTAP19-5              21       30501657     30502117
4294      TRPM2-AS              21       44414588     44425272
4295      TRPM2-AS              21       44414588     44425272
4296      TRPM2-AS              21       44414588     44425272
4297      TRPM2-AS              21       44414588     44425272
4298      TRPM2-AS              21       44414588     44425272
4299         TRPM2              21       44350163     44443081
4300         TRPM2              21       44350163     44443081
4301         TRPM2              21       44350163     44443081
4302         TRPM2              21       44350163     44443081
4303         TRPM2              21       44350163     44443081
4304         TRPM2              21       44350163     44443081
4305         TRPM2              21       44350163     44443081
4306         TRPM2              21       44350163     44443081
4307         TRPM2              21       44350163     44443081
4308         TRPM2              21       44350163     44443081
4309         TRPM2              21       44350163     44443081
4310         TRPM2              21       44350163     44443081
4311         TRPM2              21       44350163     44443081
4312         TRPM2              21       44350163     44443081
4313         TRPM2              21       44350163     44443081
4314         TRPM2              21       44350163     44443081
4315         TRPM2              21       44350163     44443081
4316         TRPM2              21       44350163     44443081
4317         TRPM2              21       44350163     44443081
4318         TRPM2              21       44350163     44443081
4319         TRPM2              21       44350163     44443081
4320         TRPM2              21       44350163     44443081
4321         TRPM2              21       44350163     44443081
4322         TRPM2              21       44350163     44443081
4323         TRPM2              21       44350163     44443081
4324         TRPM2              21       44350163     44443081
4325         TRPM2              21       44350163     44443081
4326         TRPM2              21       44350163     44443081
4327         TRPM2              21       44350163     44443081
4328         TRPM2              21       44350163     44443081
4329         TRPM2              21       44350163     44443081
4330         TRPM2              21       44350163     44443081
4331         TRPM2              21       44350163     44443081
4332         TRPM2              21       44350163     44443081
4333         TRPM2              21       44350163     44443081
4334         TRPM2              21       44350163     44443081
4335         TRPM2              21       44350163     44443081
4336         TRPM2              21       44350163     44443081
4337         TRPM2              21       44350163     44443081
4338         TRPM2              21       44350163     44443081
4339         TRPM2              21       44350163     44443081
4340         TRPM2              21       44350163     44443081
4341         TRPM2              21       44350163     44443081
4342         TRPM2              21       44350163     44443081
4343         TRPM2              21       44350163     44443081
4344         TRPM2              21       44350163     44443081
4345         TRPM2              21       44350163     44443081
4346         TRPM2              21       44350163     44443081
4347         TRPM2              21       44350163     44443081
4348         TRPM2              21       44350163     44443081
4349         TRPM2              21       44350163     44443081
4350         TRPM2              21       44350163     44443081
4351         TRPM2              21       44350163     44443081
4352         TRPM2              21       44350163     44443081
4353         TRPM2              21       44350163     44443081
4354         TRPM2              21       44350163     44443081
4355         TRPM2              21       44350163     44443081
4356         TRPM2              21       44350163     44443081
4357         TRPM2              21       44350163     44443081
4358         TRPM2              21       44350163     44443081
4359         TRPM2              21       44350163     44443081
4360         TRPM2              21       44350163     44443081
4361         TRPM2              21       44350163     44443081
4362         TRPM2              21       44350163     44443081
4363         TRPM2              21       44350163     44443081
4364         TRPM2              21       44350163     44443081
4365         TRPM2              21       44350163     44443081
4366         TRPM2              21       44350163     44443081
4367         TRPM2              21       44350163     44443081
4368         TRPM2              21       44350163     44443081
4369         TRPM2              21       44350163     44443081
4370         TRPM2              21       44350163     44443081
4371         TRPM2              21       44350163     44443081
4372         TRPM2              21       44350163     44443081
4373         TRPM2              21       44350163     44443081
4374         TRPM2              21       44350163     44443081
4375         TRPM2              21       44350163     44443081
4376         TRPM2              21       44350163     44443081
4377         TRPM2              21       44350163     44443081
4378         TRPM2              21       44350163     44443081
4379         TRPM2              21       44350163     44443081
4380         TRPM2              21       44350163     44443081
4381         TRPM2              21       44350163     44443081
4382         TRPM2              21       44350163     44443081
4383         TRPM2              21       44350163     44443081
4384         TRPM2              21       44350163     44443081
4385         TRPM2              21       44350163     44443081
4386         TRPM2              21       44350163     44443081
4387         TRPM2              21       44350163     44443081
4388         TRPM2              21       44350163     44443081
4389         TRPM2              21       44350163     44443081
4390         TRPM2              21       44350163     44443081
4391         TRPM2              21       44350163     44443081
4392         TRPM2              21       44350163     44443081
4393         TRPM2              21       44350163     44443081
4394         TRPM2              21       44350163     44443081
4395         TRPM2              21       44350163     44443081
4396         TRPM2              21       44350163     44443081
4397         TRPM2              21       44350163     44443081
4398         TRPM2              21       44350163     44443081
4399         TRPM2              21       44350163     44443081
4400         TRPM2              21       44350163     44443081
4401         TRPM2              21       44350163     44443081
4402         TRPM2              21       44350163     44443081
4403         TRPM2              21       44350163     44443081
4404         TRPM2              21       44350163     44443081
4405         TRPM2              21       44350163     44443081
4406         TRPM2              21       44350163     44443081
4407         TRPM2              21       44350163     44443081
4408         TRPM2              21       44350163     44443081
4409         TRPM2              21       44350163     44443081
4410         TRPM2              21       44350163     44443081
4411         TRPM2              21       44350163     44443081
4412         TRPM2              21       44350163     44443081
4413         TRPM2              21       44350163     44443081
4414         TRPM2              21       44350163     44443081
4415         TRPM2              21       44350163     44443081
4416         TRPM2              21       44350163     44443081
4417         TRPM2              21       44350163     44443081
4418         TRPM2              21       44350163     44443081
4419         TRPM2              21       44350163     44443081
4420         TRPM2              21       44350163     44443081
4421         TRPM2              21       44350163     44443081
4422         TRPM2              21       44350163     44443081
4423         TRPM2              21       44350163     44443081
4424         TRPM2              21       44350163     44443081
4425         TRPM2              21       44350163     44443081
4426         TRPM2              21       44350163     44443081
4427         TRPM2              21       44350163     44443081
4428         TRPM2              21       44350163     44443081
4429         TRPM2              21       44350163     44443081
4430         TRPM2              21       44350163     44443081
4431         TRPM2              21       44350163     44443081
4432         TRPM2              21       44350163     44443081
4433         TRPM2              21       44350163     44443081
4434         TRPM2              21       44350163     44443081
4435         TRPM2              21       44350163     44443081
4436         TRPM2              21       44350163     44443081
4437         TRPM2              21       44350163     44443081
4438         TRPM2              21       44350163     44443081
4439         TRPM2              21       44350163     44443081
4440         TRPM2              21       44350163     44443081
4441         TRPM2              21       44350163     44443081
4442         TRPM2              21       44350163     44443081
4443         TRPM2              21       44350163     44443081
4444         TRPM2              21       44350163     44443081
4445         TRPM2              21       44350163     44443081
4446         TRPM2              21       44350163     44443081
4447         TRPM2              21       44350163     44443081
4448         TRPM2              21       44350163     44443081
4449         TRPM2              21       44350163     44443081
4450         TRPM2              21       44350163     44443081
4451         TRPM2              21       44350163     44443081
4452         TRPM2              21       44350163     44443081
4453         TRPM2              21       44350163     44443081
4454         TRPM2              21       44350163     44443081
4455         TRPM2              21       44350163     44443081
4456         TRPM2              21       44350163     44443081
4457         TRPM2              21       44350163     44443081
4458         TRPM2              21       44350163     44443081
4459         TRPM2              21       44350163     44443081
4460         TRPM2              21       44350163     44443081
4461         TRPM2              21       44350163     44443081
4462         TRPM2              21       44350163     44443081
4463         TRPM2              21       44350163     44443081
4464         TRPM2              21       44350163     44443081
4465         TRPM2              21       44350163     44443081
4466         TRPM2              21       44350163     44443081
4467         TRPM2              21       44350163     44443081
4468         TRPM2              21       44350163     44443081
4469         TRPM2              21       44350163     44443081
4470         TRPM2              21       44350163     44443081
4471         TRPM2              21       44350163     44443081
4472         TRPM2              21       44350163     44443081
4473         TRPM2              21       44350163     44443081
4474         TRPM2              21       44350163     44443081
4475         TRPM2              21       44350163     44443081
4476         TRPM2              21       44350163     44443081
4477         TRPM2              21       44350163     44443081
4478         TRPM2              21       44350163     44443081
4479                            21       46185079     46188941
4480                            21       46185079     46188941
4481     DSCAM-IT1              21       40615378     40630767
4482     DSCAM-IT1              21       40615378     40630767
4483     DSCAM-IT1              21       40615378     40630767
4484     DSCAM-IT1              21       40615378     40630767
4485     DSCAM-IT1              21       40615378     40630767
4486     DSCAM-IT1              21       40615378     40630767
4487     DSCAM-IT1              21       40615378     40630767
4488     DSCAM-IT1              21       40615378     40630767
4489        SH3BGR              21       39445855     39515506
4490        SH3BGR              21       39445855     39515506
4491        SH3BGR              21       39445855     39515506
4492        SH3BGR              21       39445855     39515506
4493        SH3BGR              21       39445855     39515506
4494        SH3BGR              21       39445855     39515506
4495        SH3BGR              21       39445855     39515506
4496        SH3BGR              21       39445855     39515506
4497        SH3BGR              21       39445855     39515506
4498        SH3BGR              21       39445855     39515506
4499        SH3BGR              21       39445855     39515506
4500        SH3BGR              21       39445855     39515506
4501        SH3BGR              21       39445855     39515506
4502        SH3BGR              21       39445855     39515506
4503        SH3BGR              21       39445855     39515506
4504        SH3BGR              21       39445855     39515506
4505        SH3BGR              21       39445855     39515506
4506        SH3BGR              21       39445855     39515506
4507        SH3BGR              21       39445855     39515506
4508        SH3BGR              21       39445855     39515506
4509        SH3BGR              21       39445855     39515506
4510        SH3BGR              21       39445855     39515506
4511        SH3BGR              21       39445855     39515506
4512        SH3BGR              21       39445855     39515506
4513        SH3BGR              21       39445855     39515506
4514        SH3BGR              21       39445855     39515506
4515        SH3BGR              21       39445855     39515506
4516        SH3BGR              21       39445855     39515506
4517        SH3BGR              21       39445855     39515506
4518        SH3BGR              21       39445855     39515506
4519        SH3BGR              21       39445855     39515506
4520        SH3BGR              21       39445855     39515506
4521        SH3BGR              21       39445855     39515506
4522        SH3BGR              21       39445855     39515506
4523        SH3BGR              21       39445855     39515506
4524        SH3BGR              21       39445855     39515506
4525        SH3BGR              21       39445855     39515506
4526        SH3BGR              21       39445855     39515506
4527        SH3BGR              21       39445855     39515506
4528        SH3BGR              21       39445855     39515506
4529        SH3BGR              21       39445855     39515506
4530        SH3BGR              21       39445855     39515506
4531        SH3BGR              21       39445855     39515506
4532        SH3BGR              21       39445855     39515506
4533        SH3BGR              21       39445855     39515506
4534        SH3BGR              21       39445855     39515506
4535        SH3BGR              21       39445855     39515506
4536        SH3BGR              21       39445855     39515506
4537        SH3BGR              21       39445855     39515506
4538        SH3BGR              21       39445855     39515506
4539        SH3BGR              21       39445855     39515506
4540        SH3BGR              21       39445855     39515506
4541     GRIK1-AS1              21       29748175     29764002
4542     GRIK1-AS1              21       29748175     29764002
4543     GRIK1-AS1              21       29748175     29764002
4544     GRIK1-AS1              21       29748175     29764002
4545     GRIK1-AS1              21       29748175     29764002
4546     GRIK1-AS1              21       29748175     29764002
4547     GRIK1-AS1              21       29748175     29764002
4548     GRIK1-AS1              21       29748175     29764002
4549     GRIK1-AS1              21       29748175     29764002
4550     GRIK1-AS1              21       29748175     29764002
4551     GRIK1-AS1              21       29748175     29764002
4552     GRIK1-AS1              21       29748175     29764002
4553     GRIK1-AS1              21       29748175     29764002
4554     GRIK1-AS1              21       29748175     29764002
4555     GRIK1-AS1              21       29748175     29764002
4556     GRIK1-AS1              21       29748175     29764002
4557        COL6A2              21       46098097     46132849
4558        COL6A2              21       46098097     46132849
4559        COL6A2              21       46098097     46132849
4560        COL6A2              21       46098097     46132849
4561        COL6A2              21       46098097     46132849
4562        COL6A2              21       46098097     46132849
4563        COL6A2              21       46098097     46132849
4564        COL6A2              21       46098097     46132849
4565        COL6A2              21       46098097     46132849
4566        COL6A2              21       46098097     46132849
4567        COL6A2              21       46098097     46132849
4568        COL6A2              21       46098097     46132849
4569        COL6A2              21       46098097     46132849
4570        COL6A2              21       46098097     46132849
4571        COL6A2              21       46098097     46132849
4572        COL6A2              21       46098097     46132849
4573        COL6A2              21       46098097     46132849
4574        COL6A2              21       46098097     46132849
4575        COL6A2              21       46098097     46132849
4576        COL6A2              21       46098097     46132849
4577        COL6A2              21       46098097     46132849
4578        COL6A2              21       46098097     46132849
4579        COL6A2              21       46098097     46132849
4580        COL6A2              21       46098097     46132849
4581        COL6A2              21       46098097     46132849
4582        COL6A2              21       46098097     46132849
4583        COL6A2              21       46098097     46132849
4584        COL6A2              21       46098097     46132849
4585        COL6A2              21       46098097     46132849
4586        COL6A2              21       46098097     46132849
4587        COL6A2              21       46098097     46132849
4588        COL6A2              21       46098097     46132849
4589        COL6A2              21       46098097     46132849
4590        COL6A2              21       46098097     46132849
4591        COL6A2              21       46098097     46132849
4592        COL6A2              21       46098097     46132849
4593        COL6A2              21       46098097     46132849
4594        COL6A2              21       46098097     46132849
4595        COL6A2              21       46098097     46132849
4596        COL6A2              21       46098097     46132849
4597        COL6A2              21       46098097     46132849
4598        COL6A2              21       46098097     46132849
4599        COL6A2              21       46098097     46132849
4600        COL6A2              21       46098097     46132849
4601        COL6A2              21       46098097     46132849
4602        COL6A2              21       46098097     46132849
4603        COL6A2              21       46098097     46132849
4604        COL6A2              21       46098097     46132849
4605        COL6A2              21       46098097     46132849
4606        COL6A2              21       46098097     46132849
4607        COL6A2              21       46098097     46132849
4608        COL6A2              21       46098097     46132849
4609        COL6A2              21       46098097     46132849
4610        COL6A2              21       46098097     46132849
4611        COL6A2              21       46098097     46132849
4612        COL6A2              21       46098097     46132849
4613        COL6A2              21       46098097     46132849
4614        COL6A2              21       46098097     46132849
4615        COL6A2              21       46098097     46132849
4616        COL6A2              21       46098097     46132849
4617        COL6A2              21       46098097     46132849
4618        COL6A2              21       46098097     46132849
4619        COL6A2              21       46098097     46132849
4620        COL6A2              21       46098097     46132849
4621        COL6A2              21       46098097     46132849
4622        COL6A2              21       46098097     46132849
4623        COL6A2              21       46098097     46132849
4624        COL6A2              21       46098097     46132849
4625        COL6A2              21       46098097     46132849
4626        COL6A2              21       46098097     46132849
4627        COL6A2              21       46098097     46132849
4628        COL6A2              21       46098097     46132849
4629        COL6A2              21       46098097     46132849
4630        COL6A2              21       46098097     46132849
4631        COL6A2              21       46098097     46132849
4632        COL6A2              21       46098097     46132849
4633        COL6A2              21       46098097     46132849
4634        COL6A2              21       46098097     46132849
4635        COL6A2              21       46098097     46132849
4636        COL6A2              21       46098097     46132849
4637        COL6A2              21       46098097     46132849
4638        COL6A2              21       46098097     46132849
4639        COL6A2              21       46098097     46132849
4640        COL6A2              21       46098097     46132849
4641        COL6A2              21       46098097     46132849
4642        COL6A2              21       46098097     46132849
4643        COL6A2              21       46098097     46132849
4644        COL6A2              21       46098097     46132849
4645        COL6A2              21       46098097     46132849
4646        COL6A2              21       46098097     46132849
4647        COL6A2              21       46098097     46132849
4648        COL6A2              21       46098097     46132849
4649        COL6A2              21       46098097     46132849
4650        COL6A2              21       46098097     46132849
4651        COL6A2              21       46098097     46132849
4652        COL6A2              21       46098097     46132849
4653        COL6A2              21       46098097     46132849
4654        COL6A2              21       46098097     46132849
4655        COL6A2              21       46098097     46132849
4656        COL6A2              21       46098097     46132849
4657        COL6A2              21       46098097     46132849
4658        COL6A2              21       46098097     46132849
4659        COL6A2              21       46098097     46132849
4660        COL6A2              21       46098097     46132849
4661        COL6A2              21       46098097     46132849
4662        COL6A2              21       46098097     46132849
4663        COL6A2              21       46098097     46132849
4664        COL6A2              21       46098097     46132849
4665        COL6A2              21       46098097     46132849
4666        COL6A2              21       46098097     46132849
4667        COL6A2              21       46098097     46132849
4668        COL6A2              21       46098097     46132849
4669        COL6A2              21       46098097     46132849
4670        COL6A2              21       46098097     46132849
4671        COL6A2              21       46098097     46132849
4672        COL6A2              21       46098097     46132849
4673        COL6A2              21       46098097     46132849
4674        COL6A2              21       46098097     46132849
4675        COL6A2              21       46098097     46132849
4676        COL6A2              21       46098097     46132849
4677        COL6A2              21       46098097     46132849
4678        COL6A2              21       46098097     46132849
4679        COL6A2              21       46098097     46132849
4680        COL6A2              21       46098097     46132849
4681        COL6A2              21       46098097     46132849
4682        COL6A2              21       46098097     46132849
4683        COL6A2              21       46098097     46132849
4684        COL6A2              21       46098097     46132849
4685        COL6A2              21       46098097     46132849
4686        COL6A2              21       46098097     46132849
4687        COL6A2              21       46098097     46132849
4688        COL6A2              21       46098097     46132849
4689        COL6A2              21       46098097     46132849
4690                            21       33584687     33931607
4691                            21       33584687     33931607
4692                            21       33584687     33931607
4693                            21       33584687     33931607
4694                            21       33584687     33931607
4695                            21       33584687     33931607
4696                            21       33584687     33931607
4697                            21       33584687     33931607
4698       C21orf2              21       44328944     44339402
4699       C21orf2              21       44328944     44339402
4700       C21orf2              21       44328944     44339402
4701       C21orf2              21       44328944     44339402
4702       C21orf2              21       44328944     44339402
4703       C21orf2              21       44328944     44339402
4704       C21orf2              21       44328944     44339402
4705       C21orf2              21       44328944     44339402
4706       C21orf2              21       44328944     44339402
4707       C21orf2              21       44328944     44339402
4708       C21orf2              21       44328944     44339402
4709       C21orf2              21       44328944     44339402
4710       C21orf2              21       44328944     44339402
4711       C21orf2              21       44328944     44339402
4712       C21orf2              21       44328944     44339402
4713       C21orf2              21       44328944     44339402
4714       C21orf2              21       44328944     44339402
4715       C21orf2              21       44328944     44339402
4716       C21orf2              21       44328944     44339402
4717       C21orf2              21       44328944     44339402
4718       C21orf2              21       44328944     44339402
4719       C21orf2              21       44328944     44339402
4720       C21orf2              21       44328944     44339402
4721       C21orf2              21       44328944     44339402
4722       C21orf2              21       44328944     44339402
4723       C21orf2              21       44328944     44339402
4724       C21orf2              21       44328944     44339402
4725       C21orf2              21       44328944     44339402
4726       C21orf2              21       44328944     44339402
4727       C21orf2              21       44328944     44339402
4728       C21orf2              21       44328944     44339402
4729       C21orf2              21       44328944     44339402
4730       C21orf2              21       44328944     44339402
4731       C21orf2              21       44328944     44339402
4732       C21orf2              21       44328944     44339402
4733       C21orf2              21       44328944     44339402
4734       C21orf2              21       44328944     44339402
4735       C21orf2              21       44328944     44339402
4736       C21orf2              21       44328944     44339402
4737       C21orf2              21       44328944     44339402
4738          FTCD              21       46136262     46155567
4739          FTCD              21       46136262     46155567
4740          FTCD              21       46136262     46155567
4741          FTCD              21       46136262     46155567
4742          FTCD              21       46136262     46155567
4743          FTCD              21       46136262     46155567
4744          FTCD              21       46136262     46155567
4745          FTCD              21       46136262     46155567
4746          FTCD              21       46136262     46155567
4747          FTCD              21       46136262     46155567
4748          FTCD              21       46136262     46155567
4749          FTCD              21       46136262     46155567
4750          FTCD              21       46136262     46155567
4751          FTCD              21       46136262     46155567
4752          FTCD              21       46136262     46155567
4753          FTCD              21       46136262     46155567
4754          FTCD              21       46136262     46155567
4755          FTCD              21       46136262     46155567
4756          FTCD              21       46136262     46155567
4757          FTCD              21       46136262     46155567
4758          FTCD              21       46136262     46155567
4759          FTCD              21       46136262     46155567
4760          FTCD              21       46136262     46155567
4761          FTCD              21       46136262     46155567
4762          FTCD              21       46136262     46155567
4763          FTCD              21       46136262     46155567
4764          FTCD              21       46136262     46155567
4765          FTCD              21       46136262     46155567
4766          FTCD              21       46136262     46155567
4767          FTCD              21       46136262     46155567
4768          FTCD              21       46136262     46155567
4769          FTCD              21       46136262     46155567
4770          FTCD              21       46136262     46155567
4771          FTCD              21       46136262     46155567
4772          FTCD              21       46136262     46155567
4773          FTCD              21       46136262     46155567
4774          FTCD              21       46136262     46155567
4775          FTCD              21       46136262     46155567
4776          FTCD              21       46136262     46155567
4777          FTCD              21       46136262     46155567
4778          FTCD              21       46136262     46155567
4779          FTCD              21       46136262     46155567
4780          FTCD              21       46136262     46155567
4781          FTCD              21       46136262     46155567
4782          FTCD              21       46136262     46155567
4783          FTCD              21       46136262     46155567
4784          FTCD              21       46136262     46155567
4785          FTCD              21       46136262     46155567
4786          FTCD              21       46136262     46155567
4787          FTCD              21       46136262     46155567
4788          FTCD              21       46136262     46155567
4789          FTCD              21       46136262     46155567
4790          FTCD              21       46136262     46155567
4791          FTCD              21       46136262     46155567
4792          FTCD              21       46136262     46155567
4793          FTCD              21       46136262     46155567
4794          FTCD              21       46136262     46155567
4795          FTCD              21       46136262     46155567
4796          FTCD              21       46136262     46155567
4797          FTCD              21       46136262     46155567
4798          FTCD              21       46136262     46155567
4799          FTCD              21       46136262     46155567
4800          FTCD              21       46136262     46155567
4801          FTCD              21       46136262     46155567
4802          FTCD              21       46136262     46155567
4803          FTCD              21       46136262     46155567
4804          FTCD              21       46136262     46155567
4805          FTCD              21       46136262     46155567
4806          FTCD              21       46136262     46155567
4807          FTCD              21       46136262     46155567
4808          FTCD              21       46136262     46155567
4809          FTCD              21       46136262     46155567
4810          FTCD              21       46136262     46155567
4811          FTCD              21       46136262     46155567
4812          FTCD              21       46136262     46155567
4813          FTCD              21       46136262     46155567
4814          FTCD              21       46136262     46155567
4815          FTCD              21       46136262     46155567
4816          FTCD              21       46136262     46155567
4817          FTCD              21       46136262     46155567
4818          FTCD              21       46136262     46155567
4819          FTCD              21       46136262     46155567
4820          FTCD              21       46136262     46155567
4821          FTCD              21       46136262     46155567
4822          FTCD              21       46136262     46155567
4823          FTCD              21       46136262     46155567
4824          FTCD              21       46136262     46155567
4825          FTCD              21       46136262     46155567
4826          FTCD              21       46136262     46155567
4827          FTCD              21       46136262     46155567
4828          FTCD              21       46136262     46155567
4829          FTCD              21       46136262     46155567
4830          FTCD              21       46136262     46155567
4831          FTCD              21       46136262     46155567
4832          FTCD              21       46136262     46155567
4833      MTND6P21              21       44472895     44473739
4834      MTND6P21              21       44472895     44473739
4835       MTND5P1              21       44473723     44475097
4836                            21       41176322     41186788
4837                            21       41176322     41186788
4838                            21       41176322     41186788
4839                            21       41176322     41186788
4840                            21       41176322     41186788
4841                            21       41176322     41186788
4842                            21       41176322     41186788
4843                            21       41176322     41186788
4844                            21       41176322     41186788
4845                            21       41176322     41186788
4846   KRTAP10-13P              21       44702221     44702791
4847     LINC01548              21       33165470     33170649
4848     LINC01548              21       33165470     33170649
4849     LINC01548              21       33165470     33170649
4850     LINC01548              21       33165470     33170649
4851     LINC01548              21       33165470     33170649
4852     LINC01548              21       33165470     33170649
4853     LINC01548              21       33165470     33170649
4854     LINC01548              21       33165470     33170649
4855     LINC01548              21       33165470     33170649
4856                            21        6111134      6123739
4857                            21        6111134      6123739
4858                            21        6111134      6123739
4859                            21        6111134      6123739
4860                            21        6111134      6123739
4861                            21        6111134      6123739
4862                            21        6111134      6123739
4863                            21        6111134      6123739
4864                            21        6111134      6123739
4865                            21        6111134      6123739
4866                            21        6111134      6123739
4867                            21        6111134      6123739
4868                            21        6111134      6123739
4869                            21        6111134      6123739
4870                            21        6111134      6123739
4871                            21        6111134      6123739
4872                            21        6111134      6123739
4873                            21       22209939     22420819
4874                            21       22209939     22420819
4875                            21       22209939     22420819
4876     LINC00308              21       22098617     22116528
4877     LINC00308              21       22098617     22116528
4878     LINC00308              21       22098617     22116528
4879     LINC00308              21       22098617     22116528
4880     LINC00308              21       22098617     22116528
4881     LINC00308              21       22098617     22116528
4882     LINC01436              21       36005338     36007838
4883     LINC01436              21       36005338     36007838
4884                            21       42496539     42497443
4885                            21       42496539     42497443
4886                            21       42496539     42497443
4887         CHODL              21       17901263     18267373
4888         CHODL              21       17901263     18267373
4889         CHODL              21       17901263     18267373
4890         CHODL              21       17901263     18267373
4891         CHODL              21       17901263     18267373
4892         CHODL              21       17901263     18267373
4893         CHODL              21       17901263     18267373
4894         CHODL              21       17901263     18267373
4895         CHODL              21       17901263     18267373
4896         CHODL              21       17901263     18267373
4897         CHODL              21       17901263     18267373
4898         CHODL              21       17901263     18267373
4899         CHODL              21       17901263     18267373
4900         CHODL              21       17901263     18267373
4901         CHODL              21       17901263     18267373
4902         CHODL              21       17901263     18267373
4903         CHODL              21       17901263     18267373
4904         CHODL              21       17901263     18267373
4905         CHODL              21       17901263     18267373
4906         CHODL              21       17901263     18267373
4907         CHODL              21       17901263     18267373
4908         CHODL              21       17901263     18267373
4909         CHODL              21       17901263     18267373
4910         CHODL              21       17901263     18267373
4911         CHODL              21       17901263     18267373
4912         CHODL              21       17901263     18267373
4913         CHODL              21       17901263     18267373
4914         CHODL              21       17901263     18267373
4915         CHODL              21       17901263     18267373
4916         CHODL              21       17901263     18267373
4917         CHODL              21       17901263     18267373
4918         CHODL              21       17901263     18267373
4919         CHODL              21       17901263     18267373
4920         CHODL              21       17901263     18267373
4921         CHODL              21       17901263     18267373
4922         CHODL              21       17901263     18267373
4923         CHODL              21       17901263     18267373
4924         CHODL              21       17901263     18267373
4925         CHODL              21       17901263     18267373
4926         CHODL              21       17901263     18267373
4927         CHODL              21       17901263     18267373
4928                            21       46093264     46097530
4929                            21       46093264     46097530
4930                            21        6081193      6082585
4931                            21        6081193      6082585
4932                            21       23361104     23384861
4933                            21       23361104     23384861
4934                            21       23361104     23384861
4935                            21       23361104     23384861
4936                            21       23361104     23384861
4937       SLC37A1              21       42496008     42581440
4938       SLC37A1              21       42496008     42581440
4939       SLC37A1              21       42496008     42581440
4940       SLC37A1              21       42496008     42581440
4941       SLC37A1              21       42496008     42581440
4942       SLC37A1              21       42496008     42581440
4943       SLC37A1              21       42496008     42581440
4944       SLC37A1              21       42496008     42581440
4945       SLC37A1              21       42496008     42581440
4946       SLC37A1              21       42496008     42581440
4947       SLC37A1              21       42496008     42581440
4948       SLC37A1              21       42496008     42581440
4949       SLC37A1              21       42496008     42581440
4950       SLC37A1              21       42496008     42581440
4951       SLC37A1              21       42496008     42581440
4952       SLC37A1              21       42496008     42581440
4953       SLC37A1              21       42496008     42581440
4954       SLC37A1              21       42496008     42581440
4955       SLC37A1              21       42496008     42581440
4956       SLC37A1              21       42496008     42581440
4957       SLC37A1              21       42496008     42581440
4958       SLC37A1              21       42496008     42581440
4959       SLC37A1              21       42496008     42581440
4960       SLC37A1              21       42496008     42581440
4961       SLC37A1              21       42496008     42581440
4962       SLC37A1              21       42496008     42581440
4963       SLC37A1              21       42496008     42581440
4964       SLC37A1              21       42496008     42581440
4965       SLC37A1              21       42496008     42581440
4966       SLC37A1              21       42496008     42581440
4967       SLC37A1              21       42496008     42581440
4968       SLC37A1              21       42496008     42581440
4969       SLC37A1              21       42496008     42581440
4970       SLC37A1              21       42496008     42581440
4971       SLC37A1              21       42496008     42581440
4972       SLC37A1              21       42496008     42581440
4973       SLC37A1              21       42496008     42581440
4974       SLC37A1              21       42496008     42581440
4975       SLC37A1              21       42496008     42581440
4976       SLC37A1              21       42496008     42581440
4977       SLC37A1              21       42496008     42581440
4978       SLC37A1              21       42496008     42581440
4979       SLC37A1              21       42496008     42581440
4980       SLC37A1              21       42496008     42581440
4981       SLC37A1              21       42496008     42581440
4982       SLC37A1              21       42496008     42581440
4983       SLC37A1              21       42496008     42581440
4984       SLC37A1              21       42496008     42581440
4985       SLC37A1              21       42496008     42581440
4986       SLC37A1              21       42496008     42581440
4987       SLC37A1              21       42496008     42581440
4988       SLC37A1              21       42496008     42581440
4989       SLC37A1              21       42496008     42581440
4990       SLC37A1              21       42496008     42581440
4991       SLC37A1              21       42496008     42581440
4992       SLC37A1              21       42496008     42581440
4993       SLC37A1              21       42496008     42581440
4994       SLC37A1              21       42496008     42581440
4995       SLC37A1              21       42496008     42581440
4996       SLC37A1              21       42496008     42581440
4997       SLC37A1              21       42496008     42581440
4998       SLC37A1              21       42496008     42581440
4999       SLC37A1              21       42496008     42581440
5000                            21       45827961     45836419
5001                            21       45827961     45836419
5002                            21       45827961     45836419
5003     BRWD1-IT1              21       39217093     39219805
5004     BRWD1-IT1              21       39217093     39219805
5005      GAPDHP16              21       14774301     14775262
5006                            21       14918534     14947096
5007                            21       14918534     14947096
5008                            21       14818843     15014430
5009                            21       14818843     15014430
5010                            21       14818843     15014430
5011                            21       14818843     15014430
5012                            21       14819699     14918552
5013                            21       14819699     14918552
5014                            21       14819699     14918552
5015                            21       14819699     14918552
5016                            21       14819699     14918552
5017                            21       14819699     14918552
5018                            21       14819699     14918552
5019                            21       14819699     14918552
5020                            21       14819699     14918552
5021                            21       14819699     14918552
5022                            21       14819699     14918552
5023                            21       14819699     14918552
5024                            21       14819699     14918552
5025                            21       14819699     14918552
5026                            21       14819699     14918552
5027                            21       14819699     14918552
5028                            21       14819699     14918552
5029                            21       14819699     14918552
5030                            21       14819699     14918552
5031                            21       14819699     14918552
5032                            21       14819699     14918552
5033                            21       14819699     14918552
5034                            21       14819699     14918552
5035         ABCG1              21       42199689     42297244
5036         ABCG1              21       42199689     42297244
5037         ABCG1              21       42199689     42297244
5038         ABCG1              21       42199689     42297244
5039         ABCG1              21       42199689     42297244
5040         ABCG1              21       42199689     42297244
5041         ABCG1              21       42199689     42297244
5042         ABCG1              21       42199689     42297244
5043         ABCG1              21       42199689     42297244
5044         ABCG1              21       42199689     42297244
5045         ABCG1              21       42199689     42297244
5046         ABCG1              21       42199689     42297244
5047         ABCG1              21       42199689     42297244
5048         ABCG1              21       42199689     42297244
5049         ABCG1              21       42199689     42297244
5050         ABCG1              21       42199689     42297244
5051         ABCG1              21       42199689     42297244
5052         ABCG1              21       42199689     42297244
5053         ABCG1              21       42199689     42297244
5054         ABCG1              21       42199689     42297244
5055         ABCG1              21       42199689     42297244
5056         ABCG1              21       42199689     42297244
5057         ABCG1              21       42199689     42297244
5058         ABCG1              21       42199689     42297244
5059         ABCG1              21       42199689     42297244
5060         ABCG1              21       42199689     42297244
5061         ABCG1              21       42199689     42297244
5062         ABCG1              21       42199689     42297244
5063         ABCG1              21       42199689     42297244
5064         ABCG1              21       42199689     42297244
5065         ABCG1              21       42199689     42297244
5066         ABCG1              21       42199689     42297244
5067         ABCG1              21       42199689     42297244
5068         ABCG1              21       42199689     42297244
5069         ABCG1              21       42199689     42297244
5070         ABCG1              21       42199689     42297244
5071         ABCG1              21       42199689     42297244
5072         ABCG1              21       42199689     42297244
5073         ABCG1              21       42199689     42297244
5074         ABCG1              21       42199689     42297244
5075         ABCG1              21       42199689     42297244
5076         ABCG1              21       42199689     42297244
5077         ABCG1              21       42199689     42297244
5078         ABCG1              21       42199689     42297244
5079         ABCG1              21       42199689     42297244
5080         ABCG1              21       42199689     42297244
5081         ABCG1              21       42199689     42297244
5082         ABCG1              21       42199689     42297244
5083         ABCG1              21       42199689     42297244
5084         ABCG1              21       42199689     42297244
5085         ABCG1              21       42199689     42297244
5086         ABCG1              21       42199689     42297244
5087         ABCG1              21       42199689     42297244
5088         ABCG1              21       42199689     42297244
5089         ABCG1              21       42199689     42297244
5090         ABCG1              21       42199689     42297244
5091         ABCG1              21       42199689     42297244
5092         ABCG1              21       42199689     42297244
5093         ABCG1              21       42199689     42297244
5094         ABCG1              21       42199689     42297244
5095         ABCG1              21       42199689     42297244
5096         ABCG1              21       42199689     42297244
5097         ABCG1              21       42199689     42297244
5098         ABCG1              21       42199689     42297244
5099         ABCG1              21       42199689     42297244
5100         ABCG1              21       42199689     42297244
5101         ABCG1              21       42199689     42297244
5102         ABCG1              21       42199689     42297244
5103         ABCG1              21       42199689     42297244
5104         ABCG1              21       42199689     42297244
5105         ABCG1              21       42199689     42297244
5106         ABCG1              21       42199689     42297244
5107         ABCG1              21       42199689     42297244
5108         ABCG1              21       42199689     42297244
5109         ABCG1              21       42199689     42297244
5110         ABCG1              21       42199689     42297244
5111         ABCG1              21       42199689     42297244
5112         ABCG1              21       42199689     42297244
5113         ABCG1              21       42199689     42297244
5114         ABCG1              21       42199689     42297244
5115         ABCG1              21       42199689     42297244
5116         ABCG1              21       42199689     42297244
5117         ABCG1              21       42199689     42297244
5118         ABCG1              21       42199689     42297244
5119         ABCG1              21       42199689     42297244
5120         ABCG1              21       42199689     42297244
5121         ABCG1              21       42199689     42297244
5122         ABCG1              21       42199689     42297244
5123         ABCG1              21       42199689     42297244
5124         ABCG1              21       42199689     42297244
5125         ABCG1              21       42199689     42297244
5126         ABCG1              21       42199689     42297244
5127         ABCG1              21       42199689     42297244
5128         ABCG1              21       42199689     42297244
5129         ABCG1              21       42199689     42297244
5130         ABCG1              21       42199689     42297244
5131         ABCG1              21       42199689     42297244
5132         ABCG1              21       42199689     42297244
5133         ABCG1              21       42199689     42297244
5134         ABCG1              21       42199689     42297244
5135         ABCG1              21       42199689     42297244
5136         ABCG1              21       42199689     42297244
5137         ABCG1              21       42199689     42297244
5138         ABCG1              21       42199689     42297244
5139         ABCG1              21       42199689     42297244
5140         ABCG1              21       42199689     42297244
5141         ABCG1              21       42199689     42297244
5142         ABCG1              21       42199689     42297244
5143         ABCG1              21       42199689     42297244
5144         ABCG1              21       42199689     42297244
5145         ABCG1              21       42199689     42297244
5146         ABCG1              21       42199689     42297244
5147         ABCG1              21       42199689     42297244
5148         ABCG1              21       42199689     42297244
5149         ABCG1              21       42199689     42297244
5150         ABCG1              21       42199689     42297244
5151         ABCG1              21       42199689     42297244
5152         ABCG1              21       42199689     42297244
5153         ABCG1              21       42199689     42297244
5154         ABCG1              21       42199689     42297244
5155         ABCG1              21       42199689     42297244
5156         ABCG1              21       42199689     42297244
5157         ABCG1              21       42199689     42297244
5158         ABCG1              21       42199689     42297244
5159         ABCG1              21       42199689     42297244
5160         ABCG1              21       42199689     42297244
5161         ABCG1              21       42199689     42297244
5162         ABCG1              21       42199689     42297244
5163         ABCG1              21       42199689     42297244
5164         ABCG1              21       42199689     42297244
5165         ABCG1              21       42199689     42297244
5166         ABCG1              21       42199689     42297244
5167         ABCG1              21       42199689     42297244
5168         ABCG1              21       42199689     42297244
5169         ABCG1              21       42199689     42297244
5170         ABCG1              21       42199689     42297244
5171         NRIP1              21       14961235     15065936
5172         NRIP1              21       14961235     15065936
5173         NRIP1              21       14961235     15065936
5174         NRIP1              21       14961235     15065936
5175         NRIP1              21       14961235     15065936
5176         NRIP1              21       14961235     15065936
5177         NRIP1              21       14961235     15065936
5178         NRIP1              21       14961235     15065936
5179         NRIP1              21       14961235     15065936
5180         NRIP1              21       14961235     15065936
5181         NRIP1              21       14961235     15065936
5182         NRIP1              21       14961235     15065936
5183         NRIP1              21       14961235     15065936
5184         NRIP1              21       14961235     15065936
5185         NRIP1              21       14961235     15065936
5186         NRIP1              21       14961235     15065936
5187         NRIP1              21       14961235     15065936
5188         NRIP1              21       14961235     15065936
5189         NRIP1              21       14961235     15065936
5190         NRIP1              21       14961235     15065936
5191         NRIP1              21       14961235     15065936
5192         NRIP1              21       14961235     15065936
5193         NRIP1              21       14961235     15065936
5194       RBMX2P1              21       14829154     14829989
5195       SLC19A1              21       45493572     45544411
5196       SLC19A1              21       45493572     45544411
5197       SLC19A1              21       45493572     45544411
5198       SLC19A1              21       45493572     45544411
5199       SLC19A1              21       45493572     45544411
5200       SLC19A1              21       45493572     45544411
5201       SLC19A1              21       45493572     45544411
5202       SLC19A1              21       45493572     45544411
5203       SLC19A1              21       45493572     45544411
5204       SLC19A1              21       45493572     45544411
5205       SLC19A1              21       45493572     45544411
5206       SLC19A1              21       45493572     45544411
5207       SLC19A1              21       45493572     45544411
5208       SLC19A1              21       45493572     45544411
5209       SLC19A1              21       45493572     45544411
5210       SLC19A1              21       45493572     45544411
5211       SLC19A1              21       45493572     45544411
5212       SLC19A1              21       45493572     45544411
5213       SLC19A1              21       45493572     45544411
5214       SLC19A1              21       45493572     45544411
5215       SLC19A1              21       45493572     45544411
5216       SLC19A1              21       45493572     45544411
5217       SLC19A1              21       45493572     45544411
5218       SLC19A1              21       45493572     45544411
5219       SLC19A1              21       45493572     45544411
5220       SLC19A1              21       45493572     45544411
5221       SLC19A1              21       45493572     45544411
5222       SLC19A1              21       45493572     45544411
5223       SLC19A1              21       45493572     45544411
5224       SLC19A1              21       45493572     45544411
5225       SLC19A1              21       45493572     45544411
5226       SLC19A1              21       45493572     45544411
5227       SLC19A1              21       45493572     45544411
5228       SLC19A1              21       45493572     45544411
5229       SLC19A1              21       45493572     45544411
5230       SLC19A1              21       45493572     45544411
5231       SLC19A1              21       45493572     45544411
5232       SLC19A1              21       45493572     45544411
5233       SLC19A1              21       45493572     45544411
5234       SLC19A1              21       45493572     45544411
5235       SLC19A1              21       45493572     45544411
5236       SLC19A1              21       45493572     45544411
5237       SLC19A1              21       45493572     45544411
5238       SLC19A1              21       45493572     45544411
5239       SLC19A1              21       45493572     45544411
5240       SLC19A1              21       45493572     45544411
5241       SLC19A1              21       45493572     45544411
5242                            21       14961309     14964233
5243                            21       14961309     14964233
5244                            21       15050189     15052379
5245                            21       14971470     14992854
5246                            21       14971470     14992854
5247                            21       14971470     14992854
5248   COL18A1-AS1              21       45419716     45425070
5249   COL18A1-AS1              21       45419716     45425070
5250   COL18A1-AS1              21       45419716     45425070
5251   COL18A1-AS1              21       45419716     45425070
5252   COL18A1-AS1              21       45419716     45425070
5253   COL18A1-AS1              21       45419716     45425070
5254        MYL6P2              21       39488327     39488760
5255      C21orf58              21       46300181     46323875
5256      C21orf58              21       46300181     46323875
5257      C21orf58              21       46300181     46323875
5258      C21orf58              21       46300181     46323875
5259      C21orf58              21       46300181     46323875
5260      C21orf58              21       46300181     46323875
5261      C21orf58              21       46300181     46323875
5262      C21orf58              21       46300181     46323875
5263      C21orf58              21       46300181     46323875
5264      C21orf58              21       46300181     46323875
5265      C21orf58              21       46300181     46323875
5266      C21orf58              21       46300181     46323875
5267      C21orf58              21       46300181     46323875
5268      C21orf58              21       46300181     46323875
5269      C21orf58              21       46300181     46323875
5270      C21orf58              21       46300181     46323875
5271      C21orf58              21       46300181     46323875
5272      C21orf58              21       46300181     46323875
5273      C21orf58              21       46300181     46323875
5274      C21orf58              21       46300181     46323875
5275      C21orf58              21       46300181     46323875
5276      C21orf58              21       46300181     46323875
5277      C21orf58              21       46300181     46323875
5278      C21orf58              21       46300181     46323875
5279      C21orf58              21       46300181     46323875
5280      C21orf58              21       46300181     46323875
5281      C21orf58              21       46300181     46323875
5282      C21orf58              21       46300181     46323875
5283      C21orf58              21       46300181     46323875
5284      C21orf58              21       46300181     46323875
5285      C21orf58              21       46300181     46323875
5286      C21orf58              21       46300181     46323875
5287      C21orf58              21       46300181     46323875
5288      C21orf58              21       46300181     46323875
5289      C21orf58              21       46300181     46323875
5290      C21orf58              21       46300181     46323875
5291      C21orf58              21       46300181     46323875
5292      C21orf58              21       46300181     46323875
5293      C21orf58              21       46300181     46323875
5294      C21orf58              21       46300181     46323875
5295      C21orf58              21       46300181     46323875
5296      C21orf58              21       46300181     46323875
5297      C21orf58              21       46300181     46323875
5298      C21orf58              21       46300181     46323875
5299      C21orf58              21       46300181     46323875
5300      C21orf58              21       46300181     46323875
5301      C21orf58              21       46300181     46323875
5302      C21orf58              21       46300181     46323875
5303      C21orf58              21       46300181     46323875
5304      C21orf58              21       46300181     46323875
5305      C21orf58              21       46300181     46323875
5306      C21orf58              21       46300181     46323875
5307      C21orf58              21       46300181     46323875
5308      C21orf58              21       46300181     46323875
5309      C21orf58              21       46300181     46323875
5310      C21orf58              21       46300181     46323875
5311      C21orf58              21       46300181     46323875
5312      C21orf58              21       46300181     46323875
5313      C21orf58              21       46300181     46323875
5314      C21orf58              21       46300181     46323875
5315      C21orf58              21       46300181     46323875
5316      C21orf58              21       46300181     46323875
5317      C21orf58              21       46300181     46323875
5318      C21orf58              21       46300181     46323875
5319      C21orf58              21       46300181     46323875
5320      C21orf58              21       46300181     46323875
5321      C21orf58              21       46300181     46323875
5322      C21orf58              21       46300181     46323875
5323      C21orf58              21       46300181     46323875
5324      C21orf58              21       46300181     46323875
5325           MX2              21       41361943     41409390
5326           MX2              21       41361943     41409390
5327           MX2              21       41361943     41409390
5328           MX2              21       41361943     41409390
5329           MX2              21       41361943     41409390
5330           MX2              21       41361943     41409390
5331           MX2              21       41361943     41409390
5332           MX2              21       41361943     41409390
5333           MX2              21       41361943     41409390
5334           MX2              21       41361943     41409390
5335           MX2              21       41361943     41409390
5336           MX2              21       41361943     41409390
5337           MX2              21       41361943     41409390
5338           MX2              21       41361943     41409390
5339           MX2              21       41361943     41409390
5340           MX2              21       41361943     41409390
5341           MX2              21       41361943     41409390
5342           MX2              21       41361943     41409390
5343           MX2              21       41361943     41409390
5344           MX2              21       41361943     41409390
5345           MX2              21       41361943     41409390
5346           MX2              21       41361943     41409390
5347           MX2              21       41361943     41409390
5348           MX2              21       41361943     41409390
5349           MX2              21       41361943     41409390
5350           MX2              21       41361943     41409390
5351           MX2              21       41361943     41409390
5352           MX2              21       41361943     41409390
5353           MX2              21       41361943     41409390
5354           MX2              21       41361943     41409390
5355           MX2              21       41361943     41409390
5356           MX2              21       41361943     41409390
5357           MX2              21       41361943     41409390
5358           MX2              21       41361943     41409390
5359           MX2              21       41361943     41409390
5360           MX2              21       41361943     41409390
5361           MX2              21       41361943     41409390
5362           MX2              21       41361943     41409390
5363           MX2              21       41361943     41409390
5364           MX2              21       41361943     41409390
5365           MX2              21       41361943     41409390
5366           MX2              21       41361943     41409390
5367           MX2              21       41361943     41409390
5368           MX2              21       41361943     41409390
5369           MX2              21       41361943     41409390
5370           MX2              21       41361943     41409390
5371           MX2              21       41361943     41409390
5372           MX2              21       41361943     41409390
5373           MX2              21       41361943     41409390
5374           MX2              21       41361943     41409390
5375           MX2              21       41361943     41409390
5376           MX2              21       41361943     41409390
5377           MX2              21       41361943     41409390
5378           MX2              21       41361943     41409390
5379           MX2              21       41361943     41409390
5380           MX2              21       41361943     41409390
5381           MX2              21       41361943     41409390
5382           MX2              21       41361943     41409390
5383           MX2              21       41361943     41409390
5384           MX2              21       41361943     41409390
5385           MX2              21       41361943     41409390
5386           MX2              21       41361943     41409390
5387          PCP4              21       39867317     39929397
5388          PCP4              21       39867317     39929397
5389          PCP4              21       39867317     39929397
5390          PCP4              21       39867317     39929397
5391          PCP4              21       39867317     39929397
5392          PCP4              21       39867317     39929397
5393          PCP4              21       39867317     39929397
5394          PCP4              21       39867317     39929397
5395          PCP4              21       39867317     39929397
5396          PCP4              21       39867317     39929397
5397          PCP4              21       39867317     39929397
5398          PCP4              21       39867317     39929397
5399          PCP4              21       39867317     39929397
5400          PCP4              21       39867317     39929397
5401                            21       39525583     39529855
5402                            21       39525583     39529855
5403     LINC00649              21       33915534     33977691
5404     LINC00649              21       33915534     33977691
5405     LINC00649              21       33915534     33977691
5406     LINC00649              21       33915534     33977691
5407     LINC00649              21       33915534     33977691
5408     LINC00649              21       33915534     33977691
5409     LINC00649              21       33915534     33977691
5410     LINC00649              21       33915534     33977691
5411     LINC00649              21       33915534     33977691
5412     LINC00649              21       33915534     33977691
5413     LINC00649              21       33915534     33977691
5414     LINC00649              21       33915534     33977691
5415     LINC00649              21       33915534     33977691
5416     LINC00649              21       33915534     33977691
5417     LINC00649              21       33915534     33977691
5418     LINC00649              21       33915534     33977691
5419     LINC00649              21       33915534     33977691
5420     LINC00649              21       33915534     33977691
5421     LINC00649              21       33915534     33977691
5422     LINC00649              21       33915534     33977691
5423     LINC00649              21       33915534     33977691
5424     LINC00649              21       33915534     33977691
5425     LINC00649              21       33915534     33977691
5426     LINC00649              21       33915534     33977691
5427     LINC00649              21       33915534     33977691
5428     LINC00649              21       33915534     33977691
5429     LINC00649              21       33915534     33977691
5430     LINC00649              21       33915534     33977691
5431     LINC00649              21       33915534     33977691
5432     LINC00649              21       33915534     33977691
5433     LINC00649              21       33915534     33977691
5434     LINC00649              21       33915534     33977691
5435     LINC00649              21       33915534     33977691
5436     LINC00649              21       33915534     33977691
5437     LINC00649              21       33915534     33977691
5438     LINC00649              21       33915534     33977691
5439     LINC00649              21       33915534     33977691
5440     LINC00649              21       33915534     33977691
5441     LINC00649              21       33915534     33977691
5442     LINC00649              21       33915534     33977691
5443     LINC00649              21       33915534     33977691
5444     LINC00649              21       33915534     33977691
5445     LINC00649              21       33915534     33977691
5446     LINC00649              21       33915534     33977691
5447     LINC00649              21       33915534     33977691
5448     LINC00649              21       33915534     33977691
5449     LINC00649              21       33915534     33977691
5450     LINC00649              21       33915534     33977691
5451     LINC00649              21       33915534     33977691
5452     LINC00649              21       33915534     33977691
5453     LINC00649              21       33915534     33977691
5454     LINC00649              21       33915534     33977691
5455     LINC00649              21       33915534     33977691
5456     LINC00649              21       33915534     33977691
5457     LINC00649              21       33915534     33977691
5458     LINC00649              21       33915534     33977691
5459        BTF3P6              21       33518610     33519108
5460       B3GALT5              21       39556442     39673137
5461       B3GALT5              21       39556442     39673137
5462       B3GALT5              21       39556442     39673137
5463       B3GALT5              21       39556442     39673137
5464       B3GALT5              21       39556442     39673137
5465       B3GALT5              21       39556442     39673137
5466       B3GALT5              21       39556442     39673137
5467       B3GALT5              21       39556442     39673137
5468       B3GALT5              21       39556442     39673137
5469       B3GALT5              21       39556442     39673137
5470       B3GALT5              21       39556442     39673137
5471       B3GALT5              21       39556442     39673137
5472       B3GALT5              21       39556442     39673137
5473       B3GALT5              21       39556442     39673137
5474       B3GALT5              21       39556442     39673137
5475       B3GALT5              21       39556442     39673137
5476       B3GALT5              21       39556442     39673137
5477       B3GALT5              21       39556442     39673137
5478           SON              21       33542618     33577481
5479           SON              21       33542618     33577481
5480           SON              21       33542618     33577481
5481           SON              21       33542618     33577481
5482           SON              21       33542618     33577481
5483           SON              21       33542618     33577481
5484           SON              21       33542618     33577481
5485           SON              21       33542618     33577481
5486           SON              21       33542618     33577481
5487           SON              21       33542618     33577481
5488           SON              21       33542618     33577481
5489           SON              21       33542618     33577481
5490           SON              21       33542618     33577481
5491           SON              21       33542618     33577481
5492           SON              21       33542618     33577481
5493           SON              21       33542618     33577481
5494           SON              21       33542618     33577481
5495           SON              21       33542618     33577481
5496           SON              21       33542618     33577481
5497           SON              21       33542618     33577481
5498           SON              21       33542618     33577481
5499           SON              21       33542618     33577481
5500           SON              21       33542618     33577481
5501           SON              21       33542618     33577481
5502           SON              21       33542618     33577481
5503           SON              21       33542618     33577481
5504           SON              21       33542618     33577481
5505           SON              21       33542618     33577481
5506           SON              21       33542618     33577481
5507           SON              21       33542618     33577481
5508           SON              21       33542618     33577481
5509           SON              21       33542618     33577481
5510           SON              21       33542618     33577481
5511           SON              21       33542618     33577481
5512           SON              21       33542618     33577481
5513           SON              21       33542618     33577481
5514           SON              21       33542618     33577481
5515           SON              21       33542618     33577481
5516           SON              21       33542618     33577481
5517           SON              21       33542618     33577481
5518           SON              21       33542618     33577481
5519           SON              21       33542618     33577481
5520           SON              21       33542618     33577481
5521           SON              21       33542618     33577481
5522           SON              21       33542618     33577481
5523           SON              21       33542618     33577481
5524           SON              21       33542618     33577481
5525           SON              21       33542618     33577481
5526           SON              21       33542618     33577481
5527           SON              21       33542618     33577481
5528           SON              21       33542618     33577481
5529           SON              21       33542618     33577481
5530           SON              21       33542618     33577481
5531           SON              21       33542618     33577481
5532           SON              21       33542618     33577481
5533           SON              21       33542618     33577481
5534           SON              21       33542618     33577481
5535           SON              21       33542618     33577481
5536           SON              21       33542618     33577481
5537           SON              21       33542618     33577481
5538           SON              21       33542618     33577481
5539           SON              21       33542618     33577481
5540           SON              21       33542618     33577481
5541           SON              21       33542618     33577481
5542           SON              21       33542618     33577481
5543           SON              21       33542618     33577481
5544           SON              21       33542618     33577481
5545           SON              21       33542618     33577481
5546           SON              21       33542618     33577481
5547           SON              21       33542618     33577481
5548           SON              21       33542618     33577481
5549           SON              21       33542618     33577481
5550           SON              21       33542618     33577481
5551           SON              21       33542618     33577481
5552           SON              21       33542618     33577481
5553           SON              21       33542618     33577481
5554           SON              21       33542618     33577481
5555           SON              21       33542618     33577481
5556           SON              21       33542618     33577481
5557           SON              21       33542618     33577481
5558           SON              21       33542618     33577481
5559           SON              21       33542618     33577481
5560           SON              21       33542618     33577481
5561           SON              21       33542618     33577481
5562           SON              21       33542618     33577481
5563           SON              21       33542618     33577481
5564           SON              21       33542618     33577481
5565           SON              21       33542618     33577481
5566           SON              21       33542618     33577481
5567           SON              21       33542618     33577481
5568           SON              21       33542618     33577481
5569           SON              21       33542618     33577481
5570           SON              21       33542618     33577481
5571           SON              21       33542618     33577481
5572           SON              21       33542618     33577481
5573           SON              21       33542618     33577481
5574           SON              21       33542618     33577481
5575           SON              21       33542618     33577481
5576           SON              21       33542618     33577481
5577           SON              21       33542618     33577481
5578           SON              21       33542618     33577481
5579           SON              21       33542618     33577481
5580           SON              21       33542618     33577481
5581           SON              21       33542618     33577481
5582           SON              21       33542618     33577481
5583           SON              21       33542618     33577481
5584           SON              21       33542618     33577481
5585           SON              21       33542618     33577481
5586           SON              21       33542618     33577481
5587           SON              21       33542618     33577481
5588           SON              21       33542618     33577481
5589           SON              21       33542618     33577481
5590           SON              21       33542618     33577481
5591           SON              21       33542618     33577481
5592           SON              21       33542618     33577481
5593           SON              21       33542618     33577481
5594           SON              21       33542618     33577481
5595           SON              21       33542618     33577481
5596           SON              21       33542618     33577481
5597           SON              21       33542618     33577481
5598           SON              21       33542618     33577481
5599           SON              21       33542618     33577481
5600           SON              21       33542618     33577481
5601           SON              21       33542618     33577481
5602      FTCD-AS1              21       46151614     46152647
5603      FTCD-AS1              21       46151614     46152647
5604                            21       39630271     39726085
5605                            21       39630271     39726085
5606                            21       39630271     39726085
5607   B3GALT5-AS1              21       39597147     39612821
5608   B3GALT5-AS1              21       39597147     39612821
5609   B3GALT5-AS1              21       39597147     39612821
5610   B3GALT5-AS1              21       39597147     39612821
5611   B3GALT5-AS1              21       39597147     39612821
5612   B3GALT5-AS1              21       39597147     39612821
5613   B3GALT5-AS1              21       39597147     39612821
5614   B3GALT5-AS1              21       39597147     39612821
5615   B3GALT5-AS1              21       39597147     39612821
5616   B3GALT5-AS1              21       39597147     39612821
5617   B3GALT5-AS1              21       39597147     39612821
5618                            21       39727755     39730680
5619                            21       39727755     39730680
5620                            21       39727755     39730680
5621                            21       39727755     39730680
5622                            21       39727755     39730680
5623         IGSF5              21       39745407     39802096
5624         IGSF5              21       39745407     39802096
5625         IGSF5              21       39745407     39802096
5626         IGSF5              21       39745407     39802096
5627         IGSF5              21       39745407     39802096
5628         IGSF5              21       39745407     39802096
5629         IGSF5              21       39745407     39802096
5630         IGSF5              21       39745407     39802096
5631         IGSF5              21       39745407     39802096
5632         IGSF5              21       39745407     39802096
5633         IGSF5              21       39745407     39802096
5634         IGSF5              21       39745407     39802096
5635         IGSF5              21       39745407     39802096
5636         IGSF5              21       39745407     39802096
5637         IGSF5              21       39745407     39802096
5638         IGSF5              21       39745407     39802096
5639         IGSF5              21       39745407     39802096
5640                            21       44339376     44340470
5641                            21       44339376     44340470
5642                            21       44331234     44335851
5643                            21       44331234     44335851
5644         ATP5O              21       33903453     33915980
5645         ATP5O              21       33903453     33915980
5646         ATP5O              21       33903453     33915980
5647         ATP5O              21       33903453     33915980
5648         ATP5O              21       33903453     33915980
5649         ATP5O              21       33903453     33915980
5650         ATP5O              21       33903453     33915980
5651         ATP5O              21       33903453     33915980
5652         ATP5O              21       33903453     33915980
5653         ATP5O              21       33903453     33915980
5654         ATP5O              21       33903453     33915980
5655         ATP5O              21       33903453     33915980
5656         ATP5O              21       33903453     33915980
5657         ATP5O              21       33903453     33915980
5658         ATP5O              21       33903453     33915980
5659         ATP5O              21       33903453     33915980
5660         ATP5O              21       33903453     33915980
5661         ATP5O              21       33903453     33915980
5662         ATP5O              21       33903453     33915980
5663         ATP5O              21       33903453     33915980
5664         ATP5O              21       33903453     33915980
5665         ATP5O              21       33903453     33915980
5666         ATP5O              21       33903453     33915980
5667         ATP5O              21       33903453     33915980
5668         ATP5O              21       33903453     33915980
5669         ATP5O              21       33903453     33915980
5670         ATP5O              21       33903453     33915980
5671         ATP5O              21       33903453     33915980
5672         ATP5O              21       33903453     33915980
5673         ATP5O              21       33903453     33915980
5674         ATP5O              21       33903453     33915980
5675         ATP5O              21       33903453     33915980
5676         ATP5O              21       33903453     33915980
5677         ATP5O              21       33903453     33915980
5678         ATP5O              21       33903453     33915980
5679         ATP5O              21       33903453     33915980
5680         ATP5O              21       33903453     33915980
5681         ATP5O              21       33903453     33915980
5682         ATP5O              21       33903453     33915980
5683         ATP5O              21       33903453     33915980
5684         ATP5O              21       33903453     33915980
5685         ATP5O              21       33903453     33915980
5686         ATP5O              21       33903453     33915980
5687         ATP5O              21       33903453     33915980
5688         ATP5O              21       33903453     33915980
5689     LINC00189              21       29193480     29288205
5690     LINC00189              21       29193480     29288205
5691     LINC00189              21       29193480     29288205
5692     LINC00189              21       29193480     29288205
5693     LINC00189              21       29193480     29288205
5694     LINC00189              21       29193480     29288205
5695     LINC00189              21       29193480     29288205
5696     LINC00189              21       29193480     29288205
5697         DSCAM              21       40010999     40847139
5698         DSCAM              21       40010999     40847139
5699         DSCAM              21       40010999     40847139
5700         DSCAM              21       40010999     40847139
5701         DSCAM              21       40010999     40847139
5702         DSCAM              21       40010999     40847139
5703         DSCAM              21       40010999     40847139
5704         DSCAM              21       40010999     40847139
5705         DSCAM              21       40010999     40847139
5706         DSCAM              21       40010999     40847139
5707         DSCAM              21       40010999     40847139
5708         DSCAM              21       40010999     40847139
5709         DSCAM              21       40010999     40847139
5710         DSCAM              21       40010999     40847139
5711         DSCAM              21       40010999     40847139
5712         DSCAM              21       40010999     40847139
5713         DSCAM              21       40010999     40847139
5714         DSCAM              21       40010999     40847139
5715         DSCAM              21       40010999     40847139
5716         DSCAM              21       40010999     40847139
5717         DSCAM              21       40010999     40847139
5718         DSCAM              21       40010999     40847139
5719         DSCAM              21       40010999     40847139
5720         DSCAM              21       40010999     40847139
5721         DSCAM              21       40010999     40847139
5722         DSCAM              21       40010999     40847139
5723         DSCAM              21       40010999     40847139
5724         DSCAM              21       40010999     40847139
5725         DSCAM              21       40010999     40847139
5726         DSCAM              21       40010999     40847139
5727         DSCAM              21       40010999     40847139
5728         DSCAM              21       40010999     40847139
5729         DSCAM              21       40010999     40847139
5730         DSCAM              21       40010999     40847139
5731         DSCAM              21       40010999     40847139
5732         DSCAM              21       40010999     40847139
5733         DSCAM              21       40010999     40847139
5734         DSCAM              21       40010999     40847139
5735         DSCAM              21       40010999     40847139
5736         DSCAM              21       40010999     40847139
5737         DSCAM              21       40010999     40847139
5738         DSCAM              21       40010999     40847139
5739         DSCAM              21       40010999     40847139
5740         DSCAM              21       40010999     40847139
5741         DSCAM              21       40010999     40847139
5742         DSCAM              21       40010999     40847139
5743         DSCAM              21       40010999     40847139
5744         DSCAM              21       40010999     40847139
5745         DSCAM              21       40010999     40847139
5746         DSCAM              21       40010999     40847139
5747         DSCAM              21       40010999     40847139
5748         DSCAM              21       40010999     40847139
5749         DSCAM              21       40010999     40847139
5750         DSCAM              21       40010999     40847139
5751         DSCAM              21       40010999     40847139
5752         DSCAM              21       40010999     40847139
5753         DSCAM              21       40010999     40847139
5754         DSCAM              21       40010999     40847139
5755         DSCAM              21       40010999     40847139
5756         DSCAM              21       40010999     40847139
5757         DSCAM              21       40010999     40847139
5758         DSCAM              21       40010999     40847139
5759         DSCAM              21       40010999     40847139
5760         DSCAM              21       40010999     40847139
5761         DSCAM              21       40010999     40847139
5762         DSCAM              21       40010999     40847139
5763         DSCAM              21       40010999     40847139
5764         DSCAM              21       40010999     40847139
5765         DSCAM              21       40010999     40847139
5766         DSCAM              21       40010999     40847139
5767         DSCAM              21       40010999     40847139
5768         DSCAM              21       40010999     40847139
5769         DSCAM              21       40010999     40847139
5770         DSCAM              21       40010999     40847139
5771         DSCAM              21       40010999     40847139
5772         DSCAM              21       40010999     40847139
5773         DSCAM              21       40010999     40847139
5774         DSCAM              21       40010999     40847139
5775         DSCAM              21       40010999     40847139
5776         DSCAM              21       40010999     40847139
5777         DSCAM              21       40010999     40847139
5778         DSCAM              21       40010999     40847139
5779         DSCAM              21       40010999     40847139
5780         DSCAM              21       40010999     40847139
5781         DSCAM              21       40010999     40847139
5782         DSCAM              21       40010999     40847139
5783         DSCAM              21       40010999     40847139
5784         DSCAM              21       40010999     40847139
5785         DSCAM              21       40010999     40847139
5786         DSCAM              21       40010999     40847139
5787         DSCAM              21       40010999     40847139
5788         DSCAM              21       40010999     40847139
5789          TTC3              21       37073226     37203112
5790          TTC3              21       37073226     37203112
5791          TTC3              21       37073226     37203112
5792          TTC3              21       37073226     37203112
5793          TTC3              21       37073226     37203112
5794          TTC3              21       37073226     37203112
5795          TTC3              21       37073226     37203112
5796          TTC3              21       37073226     37203112
5797          TTC3              21       37073226     37203112
5798          TTC3              21       37073226     37203112
5799          TTC3              21       37073226     37203112
5800          TTC3              21       37073226     37203112
5801          TTC3              21       37073226     37203112
5802          TTC3              21       37073226     37203112
5803          TTC3              21       37073226     37203112
5804          TTC3              21       37073226     37203112
5805          TTC3              21       37073226     37203112
5806          TTC3              21       37073226     37203112
5807          TTC3              21       37073226     37203112
5808          TTC3              21       37073226     37203112
5809          TTC3              21       37073226     37203112
5810          TTC3              21       37073226     37203112
5811          TTC3              21       37073226     37203112
5812          TTC3              21       37073226     37203112
5813          TTC3              21       37073226     37203112
5814          TTC3              21       37073226     37203112
5815          TTC3              21       37073226     37203112
5816          TTC3              21       37073226     37203112
5817          TTC3              21       37073226     37203112
5818          TTC3              21       37073226     37203112
5819          TTC3              21       37073226     37203112
5820          TTC3              21       37073226     37203112
5821          TTC3              21       37073226     37203112
5822          TTC3              21       37073226     37203112
5823          TTC3              21       37073226     37203112
5824          TTC3              21       37073226     37203112
5825          TTC3              21       37073226     37203112
5826          TTC3              21       37073226     37203112
5827          TTC3              21       37073226     37203112
5828          TTC3              21       37073226     37203112
5829          TTC3              21       37073226     37203112
5830          TTC3              21       37073226     37203112
5831          TTC3              21       37073226     37203112
5832          TTC3              21       37073226     37203112
5833          TTC3              21       37073226     37203112
5834          TTC3              21       37073226     37203112
5835          TTC3              21       37073226     37203112
5836          TTC3              21       37073226     37203112
5837          TTC3              21       37073226     37203112
5838          TTC3              21       37073226     37203112
5839          TTC3              21       37073226     37203112
5840          TTC3              21       37073226     37203112
5841          TTC3              21       37073226     37203112
5842          TTC3              21       37073226     37203112
5843          TTC3              21       37073226     37203112
5844          TTC3              21       37073226     37203112
5845          TTC3              21       37073226     37203112
5846          TTC3              21       37073226     37203112
5847          TTC3              21       37073226     37203112
5848          TTC3              21       37073226     37203112
5849          TTC3              21       37073226     37203112
5850          TTC3              21       37073226     37203112
5851          TTC3              21       37073226     37203112
5852          TTC3              21       37073226     37203112
5853          TTC3              21       37073226     37203112
5854          TTC3              21       37073226     37203112
5855          TTC3              21       37073226     37203112
5856          TTC3              21       37073226     37203112
5857          TTC3              21       37073226     37203112
5858          TTC3              21       37073226     37203112
5859          TTC3              21       37073226     37203112
5860          TTC3              21       37073226     37203112
5861          TTC3              21       37073226     37203112
5862          TTC3              21       37073226     37203112
5863          TTC3              21       37073226     37203112
5864          TTC3              21       37073226     37203112
5865          TTC3              21       37073226     37203112
5866          TTC3              21       37073226     37203112
5867          TTC3              21       37073226     37203112
5868          TTC3              21       37073226     37203112
5869          TTC3              21       37073226     37203112
5870          TTC3              21       37073226     37203112
5871          TTC3              21       37073226     37203112
5872          TTC3              21       37073226     37203112
5873          TTC3              21       37073226     37203112
5874          TTC3              21       37073226     37203112
5875          TTC3              21       37073226     37203112
5876          TTC3              21       37073226     37203112
5877          TTC3              21       37073226     37203112
5878          TTC3              21       37073226     37203112
5879          TTC3              21       37073226     37203112
5880          TTC3              21       37073226     37203112
5881          TTC3              21       37073226     37203112
5882          TTC3              21       37073226     37203112
5883          TTC3              21       37073226     37203112
5884          TTC3              21       37073226     37203112
5885          TTC3              21       37073226     37203112
5886          TTC3              21       37073226     37203112
5887          TTC3              21       37073226     37203112
5888          TTC3              21       37073226     37203112
5889          TTC3              21       37073226     37203112
5890          TTC3              21       37073226     37203112
5891          TTC3              21       37073226     37203112
5892          TTC3              21       37073226     37203112
5893          TTC3              21       37073226     37203112
5894          TTC3              21       37073226     37203112
5895          TTC3              21       37073226     37203112
5896          TTC3              21       37073226     37203112
5897          TTC3              21       37073226     37203112
5898          TTC3              21       37073226     37203112
5899          TTC3              21       37073226     37203112
5900          TTC3              21       37073226     37203112
5901          TTC3              21       37073226     37203112
5902          TTC3              21       37073226     37203112
5903          TTC3              21       37073226     37203112
5904          TTC3              21       37073226     37203112
5905          TTC3              21       37073226     37203112
5906          TTC3              21       37073226     37203112
5907          TTC3              21       37073226     37203112
5908          TTC3              21       37073226     37203112
5909          TTC3              21       37073226     37203112
5910          TTC3              21       37073226     37203112
5911          TTC3              21       37073226     37203112
5912          TTC3              21       37073226     37203112
5913          TTC3              21       37073226     37203112
5914          TTC3              21       37073226     37203112
5915          TTC3              21       37073226     37203112
5916          TTC3              21       37073226     37203112
5917          TTC3              21       37073226     37203112
5918          TTC3              21       37073226     37203112
5919          TTC3              21       37073226     37203112
5920          TTC3              21       37073226     37203112
5921          TTC3              21       37073226     37203112
5922          TTC3              21       37073226     37203112
5923          TTC3              21       37073226     37203112
5924          TTC3              21       37073226     37203112
5925          TTC3              21       37073226     37203112
5926          TTC3              21       37073226     37203112
5927          TTC3              21       37073226     37203112
5928          TTC3              21       37073226     37203112
5929          TTC3              21       37073226     37203112
5930          TTC3              21       37073226     37203112
5931          TTC3              21       37073226     37203112
5932          TTC3              21       37073226     37203112
5933          TTC3              21       37073226     37203112
5934          TTC3              21       37073226     37203112
5935          TTC3              21       37073226     37203112
5936          TTC3              21       37073226     37203112
5937          TTC3              21       37073226     37203112
5938          TTC3              21       37073226     37203112
5939          TTC3              21       37073226     37203112
5940          TTC3              21       37073226     37203112
5941          TTC3              21       37073226     37203112
5942          TTC3              21       37073226     37203112
5943          TTC3              21       37073226     37203112
5944          TTC3              21       37073226     37203112
5945          TTC3              21       37073226     37203112
5946          TTC3              21       37073226     37203112
5947          TTC3              21       37073226     37203112
5948          TTC3              21       37073226     37203112
5949          TTC3              21       37073226     37203112
5950          TTC3              21       37073226     37203112
5951          TTC3              21       37073226     37203112
5952          TTC3              21       37073226     37203112
5953          TTC3              21       37073226     37203112
5954          TTC3              21       37073226     37203112
5955          TTC3              21       37073226     37203112
5956          TTC3              21       37073226     37203112
5957          TTC3              21       37073226     37203112
5958          TTC3              21       37073226     37203112
5959          TTC3              21       37073226     37203112
5960          TTC3              21       37073226     37203112
5961          TTC3              21       37073226     37203112
5962          TTC3              21       37073226     37203112
5963          TTC3              21       37073226     37203112
5964          TTC3              21       37073226     37203112
5965          TTC3              21       37073226     37203112
5966          TTC3              21       37073226     37203112
5967          TTC3              21       37073226     37203112
5968          TTC3              21       37073226     37203112
5969          TTC3              21       37073226     37203112
5970          TTC3              21       37073226     37203112
5971          TTC3              21       37073226     37203112
5972          TTC3              21       37073226     37203112
5973          TTC3              21       37073226     37203112
5974          TTC3              21       37073226     37203112
5975          TTC3              21       37073226     37203112
5976          TTC3              21       37073226     37203112
5977          TTC3              21       37073226     37203112
5978          TTC3              21       37073226     37203112
5979          TTC3              21       37073226     37203112
5980          TTC3              21       37073226     37203112
5981          TTC3              21       37073226     37203112
5982          TTC3              21       37073226     37203112
5983          TTC3              21       37073226     37203112
5984          TTC3              21       37073226     37203112
5985          TTC3              21       37073226     37203112
5986          TTC3              21       37073226     37203112
5987          TTC3              21       37073226     37203112
5988          TTC3              21       37073226     37203112
5989          TTC3              21       37073226     37203112
5990          TTC3              21       37073226     37203112
5991          TTC3              21       37073226     37203112
5992          TTC3              21       37073226     37203112
5993          TTC3              21       37073226     37203112
5994          TTC3              21       37073226     37203112
5995          TTC3              21       37073226     37203112
5996          TTC3              21       37073226     37203112
5997          TTC3              21       37073226     37203112
5998          TTC3              21       37073226     37203112
5999          TTC3              21       37073226     37203112
6000          TTC3              21       37073226     37203112
6001          TTC3              21       37073226     37203112
6002          TTC3              21       37073226     37203112
6003          TTC3              21       37073226     37203112
6004          TTC3              21       37073226     37203112
6005          TTC3              21       37073226     37203112
6006          TTC3              21       37073226     37203112
6007          TTC3              21       37073226     37203112
6008          TTC3              21       37073226     37203112
6009          TTC3              21       37073226     37203112
6010          TTC3              21       37073226     37203112
6011          TTC3              21       37073226     37203112
6012          TTC3              21       37073226     37203112
6013          TTC3              21       37073226     37203112
6014          TTC3              21       37073226     37203112
6015          TTC3              21       37073226     37203112
6016          TTC3              21       37073226     37203112
6017          TTC3              21       37073226     37203112
6018          TTC3              21       37073226     37203112
6019          TTC3              21       37073226     37203112
6020          TTC3              21       37073226     37203112
6021          TTC3              21       37073226     37203112
6022          TTC3              21       37073226     37203112
6023          TTC3              21       37073226     37203112
6024          TTC3              21       37073226     37203112
6025          TTC3              21       37073226     37203112
6026          TTC3              21       37073226     37203112
6027          TTC3              21       37073226     37203112
6028          TTC3              21       37073226     37203112
6029          TTC3              21       37073226     37203112
6030          TTC3              21       37073226     37203112
6031          TTC3              21       37073226     37203112
6032          TTC3              21       37073226     37203112
6033          TTC3              21       37073226     37203112
6034          TTC3              21       37073226     37203112
6035          TTC3              21       37073226     37203112
6036          TTC3              21       37073226     37203112
6037          TTC3              21       37073226     37203112
6038          TTC3              21       37073226     37203112
6039          TTC3              21       37073226     37203112
6040          TTC3              21       37073226     37203112
6041          TTC3              21       37073226     37203112
6042          TTC3              21       37073226     37203112
6043          TTC3              21       37073226     37203112
6044          TTC3              21       37073226     37203112
6045          TTC3              21       37073226     37203112
6046          TTC3              21       37073226     37203112
6047          TTC3              21       37073226     37203112
6048          TTC3              21       37073226     37203112
6049          TTC3              21       37073226     37203112
6050          TTC3              21       37073226     37203112
6051          TTC3              21       37073226     37203112
6052          TTC3              21       37073226     37203112
6053          TTC3              21       37073226     37203112
6054          TTC3              21       37073226     37203112
6055          TTC3              21       37073226     37203112
6056          TTC3              21       37073226     37203112
6057          TTC3              21       37073226     37203112
6058          TTC3              21       37073226     37203112
6059          TTC3              21       37073226     37203112
6060          TTC3              21       37073226     37203112
6061          TTC3              21       37073226     37203112
6062          TTC3              21       37073226     37203112
6063          TTC3              21       37073226     37203112
6064          TTC3              21       37073226     37203112
6065          TTC3              21       37073226     37203112
6066          TTC3              21       37073226     37203112
6067          TTC3              21       37073226     37203112
6068          TTC3              21       37073226     37203112
6069          TTC3              21       37073226     37203112
6070          TTC3              21       37073226     37203112
6071          TTC3              21       37073226     37203112
6072          TTC3              21       37073226     37203112
6073          TTC3              21       37073226     37203112
6074          TTC3              21       37073226     37203112
6075          TTC3              21       37073226     37203112
6076          TTC3              21       37073226     37203112
6077          TTC3              21       37073226     37203112
6078          TTC3              21       37073226     37203112
6079          TTC3              21       37073226     37203112
6080          TTC3              21       37073226     37203112
6081          TTC3              21       37073226     37203112
6082          TTC3              21       37073226     37203112
6083          TTC3              21       37073226     37203112
6084          TTC3              21       37073226     37203112
6085          TTC3              21       37073226     37203112
6086          TTC3              21       37073226     37203112
6087          TTC3              21       37073226     37203112
6088          TTC3              21       37073226     37203112
6089          TTC3              21       37073226     37203112
6090          TTC3              21       37073226     37203112
6091          TTC3              21       37073226     37203112
6092          TTC3              21       37073226     37203112
6093          TTC3              21       37073226     37203112
6094          TTC3              21       37073226     37203112
6095          TTC3              21       37073226     37203112
6096          TTC3              21       37073226     37203112
6097          TTC3              21       37073226     37203112
6098          TTC3              21       37073226     37203112
6099          TTC3              21       37073226     37203112
6100          TTC3              21       37073226     37203112
6101          TTC3              21       37073226     37203112
6102          TTC3              21       37073226     37203112
6103          TTC3              21       37073226     37203112
6104          TTC3              21       37073226     37203112
6105          TTC3              21       37073226     37203112
6106          TTC3              21       37073226     37203112
6107          TTC3              21       37073226     37203112
6108          TTC3              21       37073226     37203112
6109          TTC3              21       37073226     37203112
6110          TTC3              21       37073226     37203112
6111          TTC3              21       37073226     37203112
6112          TTC3              21       37073226     37203112
6113          TTC3              21       37073226     37203112
6114          TTC3              21       37073226     37203112
6115          TTC3              21       37073226     37203112
6116          TTC3              21       37073226     37203112
6117          TTC3              21       37073226     37203112
6118          TTC3              21       37073226     37203112
6119          TTC3              21       37073226     37203112
6120          TTC3              21       37073226     37203112
6121          TTC3              21       37073226     37203112
6122          TTC3              21       37073226     37203112
6123          TTC3              21       37073226     37203112
6124          TTC3              21       37073226     37203112
6125          TTC3              21       37073226     37203112
6126          TTC3              21       37073226     37203112
6127          TTC3              21       37073226     37203112
6128          TTC3              21       37073226     37203112
6129          TTC3              21       37073226     37203112
6130          TTC3              21       37073226     37203112
6131          TTC3              21       37073226     37203112
6132          TTC3              21       37073226     37203112
6133          TTC3              21       37073226     37203112
6134          TTC3              21       37073226     37203112
6135          TTC3              21       37073226     37203112
6136          TTC3              21       37073226     37203112
6137          TTC3              21       37073226     37203112
6138          TTC3              21       37073226     37203112
6139          TTC3              21       37073226     37203112
6140          TTC3              21       37073226     37203112
6141          TTC3              21       37073226     37203112
6142          TTC3              21       37073226     37203112
6143          TTC3              21       37073226     37203112
6144          TTC3              21       37073226     37203112
6145          TTC3              21       37073226     37203112
6146          TTC3              21       37073226     37203112
6147          TTC3              21       37073226     37203112
6148          TTC3              21       37073226     37203112
6149          TTC3              21       37073226     37203112
6150          TTC3              21       37073226     37203112
6151          TTC3              21       37073226     37203112
6152          TTC3              21       37073226     37203112
6153          TTC3              21       37073226     37203112
6154          TTC3              21       37073226     37203112
6155          TTC3              21       37073226     37203112
6156          TTC3              21       37073226     37203112
6157          TTC3              21       37073226     37203112
6158          TTC3              21       37073226     37203112
6159          TTC3              21       37073226     37203112
6160          TTC3              21       37073226     37203112
6161          TTC3              21       37073226     37203112
6162          TTC3              21       37073226     37203112
6163          TTC3              21       37073226     37203112
6164          TTC3              21       37073226     37203112
6165          TTC3              21       37073226     37203112
6166          TTC3              21       37073226     37203112
6167          TTC3              21       37073226     37203112
6168          TTC3              21       37073226     37203112
6169          TTC3              21       37073226     37203112
6170          TTC3              21       37073226     37203112
6171          TTC3              21       37073226     37203112
6172          TTC3              21       37073226     37203112
6173          TTC3              21       37073226     37203112
6174          TTC3              21       37073226     37203112
6175          TTC3              21       37073226     37203112
6176          TTC3              21       37073226     37203112
6177          TTC3              21       37073226     37203112
6178          TTC3              21       37073226     37203112
6179          TTC3              21       37073226     37203112
6180          TTC3              21       37073226     37203112
6181          TTC3              21       37073226     37203112
6182          TTC3              21       37073226     37203112
6183          TTC3              21       37073226     37203112
6184          TTC3              21       37073226     37203112
6185          TTC3              21       37073226     37203112
6186          TTC3              21       37073226     37203112
6187          TTC3              21       37073226     37203112
6188          TTC3              21       37073226     37203112
6189          TTC3              21       37073226     37203112
6190          TTC3              21       37073226     37203112
6191          TTC3              21       37073226     37203112
6192          TTC3              21       37073226     37203112
6193          TTC3              21       37073226     37203112
6194          TTC3              21       37073226     37203112
6195          TTC3              21       37073226     37203112
6196          TTC3              21       37073226     37203112
6197          TTC3              21       37073226     37203112
6198          TTC3              21       37073226     37203112
6199          TTC3              21       37073226     37203112
6200          TTC3              21       37073226     37203112
6201          TTC3              21       37073226     37203112
6202          TTC3              21       37073226     37203112
6203          TTC3              21       37073226     37203112
6204          TTC3              21       37073226     37203112
6205          TTC3              21       37073226     37203112
6206          TTC3              21       37073226     37203112
6207          TTC3              21       37073226     37203112
6208          TTC3              21       37073226     37203112
6209          TTC3              21       37073226     37203112
6210          TTC3              21       37073226     37203112
6211          TTC3              21       37073226     37203112
6212          TTC3              21       37073226     37203112
6213          TTC3              21       37073226     37203112
6214          TTC3              21       37073226     37203112
6215          TTC3              21       37073226     37203112
6216          TTC3              21       37073226     37203112
6217          TTC3              21       37073226     37203112
6218          TTC3              21       37073226     37203112
6219          TTC3              21       37073226     37203112
6220          TTC3              21       37073226     37203112
6221          TTC3              21       37073226     37203112
6222          TTC3              21       37073226     37203112
6223          TTC3              21       37073226     37203112
6224          TTC3              21       37073226     37203112
6225          TTC3              21       37073226     37203112
6226          TTC3              21       37073226     37203112
6227          TTC3              21       37073226     37203112
6228          TTC3              21       37073226     37203112
6229          TTC3              21       37073226     37203112
6230          TTC3              21       37073226     37203112
6231          TTC3              21       37073226     37203112
6232          TTC3              21       37073226     37203112
6233          TTC3              21       37073226     37203112
6234          TTC3              21       37073226     37203112
6235          TTC3              21       37073226     37203112
6236          TTC3              21       37073226     37203112
6237          TTC3              21       37073226     37203112
6238          TTC3              21       37073226     37203112
6239          TTC3              21       37073226     37203112
6240          TTC3              21       37073226     37203112
6241          TTC3              21       37073226     37203112
6242          TTC3              21       37073226     37203112
6243          TTC3              21       37073226     37203112
6244          TTC3              21       37073226     37203112
6245          TTC3              21       37073226     37203112
6246          TTC3              21       37073226     37203112
6247          TTC3              21       37073226     37203112
6248          TTC3              21       37073226     37203112
6249          TTC3              21       37073226     37203112
6250          TTC3              21       37073226     37203112
6251          TTC3              21       37073226     37203112
6252          TTC3              21       37073226     37203112
6253          TTC3              21       37073226     37203112
6254          TTC3              21       37073226     37203112
6255          TTC3              21       37073226     37203112
6256          TTC3              21       37073226     37203112
6257          TTC3              21       37073226     37203112
6258          TTC3              21       37073226     37203112
6259          TTC3              21       37073226     37203112
6260          TTC3              21       37073226     37203112
6261          TTC3              21       37073226     37203112
6262          TTC3              21       37073226     37203112
6263          TTC3              21       37073226     37203112
6264                            21        6789592      6812297
6265                            21        6789592      6812297
6266                            21        6789592      6812297
6267                            21       29058073     29060095
6268                            21       29058073     29060095
6269          CCT8              21       29055805     29073797
6270          CCT8              21       29055805     29073797
6271          CCT8              21       29055805     29073797
6272          CCT8              21       29055805     29073797
6273          CCT8              21       29055805     29073797
6274          CCT8              21       29055805     29073797
6275          CCT8              21       29055805     29073797
6276          CCT8              21       29055805     29073797
6277          CCT8              21       29055805     29073797
6278          CCT8              21       29055805     29073797
6279          CCT8              21       29055805     29073797
6280          CCT8              21       29055805     29073797
6281          CCT8              21       29055805     29073797
6282          CCT8              21       29055805     29073797
6283          CCT8              21       29055805     29073797
6284          CCT8              21       29055805     29073797
6285          CCT8              21       29055805     29073797
6286          CCT8              21       29055805     29073797
6287          CCT8              21       29055805     29073797
6288          CCT8              21       29055805     29073797
6289          CCT8              21       29055805     29073797
6290          CCT8              21       29055805     29073797
6291          CCT8              21       29055805     29073797
6292          CCT8              21       29055805     29073797
6293          CCT8              21       29055805     29073797
6294          CCT8              21       29055805     29073797
6295          CCT8              21       29055805     29073797
6296          CCT8              21       29055805     29073797
6297          CCT8              21       29055805     29073797
6298          CCT8              21       29055805     29073797
6299          CCT8              21       29055805     29073797
6300          CCT8              21       29055805     29073797
6301          CCT8              21       29055805     29073797
6302          CCT8              21       29055805     29073797
6303          CCT8              21       29055805     29073797
6304          CCT8              21       29055805     29073797
6305          CCT8              21       29055805     29073797
6306          CCT8              21       29055805     29073797
6307          CCT8              21       29055805     29073797
6308          CCT8              21       29055805     29073797
6309          CCT8              21       29055805     29073797
6310          CCT8              21       29055805     29073797
6311          CCT8              21       29055805     29073797
6312          CCT8              21       29055805     29073797
6313          CCT8              21       29055805     29073797
6314          CCT8              21       29055805     29073797
6315          CCT8              21       29055805     29073797
6316          CCT8              21       29055805     29073797
6317          CCT8              21       29055805     29073797
6318          CCT8              21       29055805     29073797
6319          CCT8              21       29055805     29073797
6320          CCT8              21       29055805     29073797
6321          CCT8              21       29055805     29073797
6322          CCT8              21       29055805     29073797
6323          CCT8              21       29055805     29073797
6324          CCT8              21       29055805     29073797
6325          CCT8              21       29055805     29073797
6326          CCT8              21       29055805     29073797
6327          CCT8              21       29055805     29073797
6328          CCT8              21       29055805     29073797
6329          CCT8              21       29055805     29073797
6330          CCT8              21       29055805     29073797
6331          CCT8              21       29055805     29073797
6332          CCT8              21       29055805     29073797
6333          CCT8              21       29055805     29073797
6334          CCT8              21       29055805     29073797
6335          CCT8              21       29055805     29073797
6336          CCT8              21       29055805     29073797
6337          CCT8              21       29055805     29073797
6338          CCT8              21       29055805     29073797
6339          CCT8              21       29055805     29073797
6340          CCT8              21       29055805     29073797
6341          CCT8              21       29055805     29073797
6342          CCT8              21       29055805     29073797
6343          CCT8              21       29055805     29073797
6344          CCT8              21       29055805     29073797
6345          CCT8              21       29055805     29073797
6346          CCT8              21       29055805     29073797
6347          CCT8              21       29055805     29073797
6348          CCT8              21       29055805     29073797
6349          CCT8              21       29055805     29073797
6350          CCT8              21       29055805     29073797
6351          CCT8              21       29055805     29073797
6352          CCT8              21       29055805     29073797
6353          CCT8              21       29055805     29073797
6354          CCT8              21       29055805     29073797
6355          CCT8              21       29055805     29073797
6356          CCT8              21       29055805     29073797
6357          CCT8              21       29055805     29073797
6358          CCT8              21       29055805     29073797
6359          CCT8              21       29055805     29073797
6360          CCT8              21       29055805     29073797
6361          CCT8              21       29055805     29073797
6362          CCT8              21       29055805     29073797
6363          CCT8              21       29055805     29073797
6364          CCT8              21       29055805     29073797
6365          CCT8              21       29055805     29073797
6366          CCT8              21       29055805     29073797
6367          CCT8              21       29055805     29073797
6368          CCT8              21       29055805     29073797
6369          CCT8              21       29055805     29073797
6370          CCT8              21       29055805     29073797
6371                            21        6858539      6897263
6372                            21        6858539      6897263
6373                            21        6858539      6897263
6374        USF1P1              21       33334571     33335096
6375        IFNAR1              21       33324477     33359862
6376        IFNAR1              21       33324477     33359862
6377        IFNAR1              21       33324477     33359862
6378        IFNAR1              21       33324477     33359862
6379        IFNAR1              21       33324477     33359862
6380        IFNAR1              21       33324477     33359862
6381        IFNAR1              21       33324477     33359862
6382        IFNAR1              21       33324477     33359862
6383        IFNAR1              21       33324477     33359862
6384        IFNAR1              21       33324477     33359862
6385        IFNAR1              21       33324477     33359862
6386        IFNAR1              21       33324477     33359862
6387        IFNAR1              21       33324477     33359862
6388        IFNAR1              21       33324477     33359862
6389        IFNAR1              21       33324477     33359862
6390        IFNAR1              21       33324477     33359862
6391        IFNAR1              21       33324477     33359862
6392                            21        6897291      6899280
6393                            21        6904884      6906692
6394                            21        6904884      6906692
6395                            21        6994374      6997737
6396                            21        6994374      6997737
6397                            21        6994374      6997737
6398                            21        6986450      6997765
6399                            21        6986450      6997765
6400                            21        6986450      6997765
6401                            21        6986450      6997765
6402                            21        6986450      6997765
6403                            21        6986450      6997765
6404                            21        6986450      6997765
6405                            21        6986450      6997765
6406                            21        6986450      6997765
6407                            21        6986450      6997765
6408                            21        6986450      6997765
6409         LCA5L              21       39405844     39445805
6410         LCA5L              21       39405844     39445805
6411         LCA5L              21       39405844     39445805
6412         LCA5L              21       39405844     39445805
6413         LCA5L              21       39405844     39445805
6414         LCA5L              21       39405844     39445805
6415         LCA5L              21       39405844     39445805
6416         LCA5L              21       39405844     39445805
6417         LCA5L              21       39405844     39445805
6418         LCA5L              21       39405844     39445805
6419         LCA5L              21       39405844     39445805
6420         LCA5L              21       39405844     39445805
6421         LCA5L              21       39405844     39445805
6422         LCA5L              21       39405844     39445805
6423         LCA5L              21       39405844     39445805
6424         LCA5L              21       39405844     39445805
6425         LCA5L              21       39405844     39445805
6426         LCA5L              21       39405844     39445805
6427         LCA5L              21       39405844     39445805
6428         LCA5L              21       39405844     39445805
6429         LCA5L              21       39405844     39445805
6430         LCA5L              21       39405844     39445805
6431         LCA5L              21       39405844     39445805
6432         LCA5L              21       39405844     39445805
6433         LCA5L              21       39405844     39445805
6434         LCA5L              21       39405844     39445805
6435         LCA5L              21       39405844     39445805
6436         LCA5L              21       39405844     39445805
6437         LCA5L              21       39405844     39445805
6438         LCA5L              21       39405844     39445805
6439         LCA5L              21       39405844     39445805
6440         LCA5L              21       39405844     39445805
6441         LCA5L              21       39405844     39445805
6442         LCA5L              21       39405844     39445805
6443         LCA5L              21       39405844     39445805
6444         LCA5L              21       39405844     39445805
6445         LCA5L              21       39405844     39445805
6446         LCA5L              21       39405844     39445805
6447         LCA5L              21       39405844     39445805
6448         LCA5L              21       39405844     39445805
6449         LCA5L              21       39405844     39445805
6450         LCA5L              21       39405844     39445805
6451         LCA5L              21       39405844     39445805
6452         LCA5L              21       39405844     39445805
6453         LCA5L              21       39405844     39445805
6454         LCA5L              21       39405844     39445805
6455         LCA5L              21       39405844     39445805
6456         LCA5L              21       39405844     39445805
6457         LCA5L              21       39405844     39445805
6458         LCA5L              21       39405844     39445805
6459         LCA5L              21       39405844     39445805
6460         LCA5L              21       39405844     39445805
6461         LCA5L              21       39405844     39445805
6462         LCA5L              21       39405844     39445805
6463         LCA5L              21       39405844     39445805
6464         LCA5L              21       39405844     39445805
6465         LCA5L              21       39405844     39445805
6466         LCA5L              21       39405844     39445805
6467         LCA5L              21       39405844     39445805
6468         LCA5L              21       39405844     39445805
6469         LCA5L              21       39405844     39445805
6470         LCA5L              21       39405844     39445805
6471         LCA5L              21       39405844     39445805
6472         LCA5L              21       39405844     39445805
6473         LCA5L              21       39405844     39445805
6474         LCA5L              21       39405844     39445805
6475         LCA5L              21       39405844     39445805
6476         LCA5L              21       39405844     39445805
6477         LCA5L              21       39405844     39445805
6478         LCA5L              21       39405844     39445805
6479         LCA5L              21       39405844     39445805
6480         LCA5L              21       39405844     39445805
6481         LCA5L              21       39405844     39445805
6482         LCA5L              21       39405844     39445805
6483         LCA5L              21       39405844     39445805
6484         LCA5L              21       39405844     39445805
6485         LCA5L              21       39405844     39445805
6486         LCA5L              21       39405844     39445805
6487         LCA5L              21       39405844     39445805
6488         LCA5L              21       39405844     39445805
6489         LCA5L              21       39405844     39445805
6490         LCA5L              21       39405844     39445805
6491         LCA5L              21       39405844     39445805
6492         LCA5L              21       39405844     39445805
6493         LCA5L              21       39405844     39445805
6494         LCA5L              21       39405844     39445805
6495         LCA5L              21       39405844     39445805
6496         LCA5L              21       39405844     39445805
6497         LCA5L              21       39405844     39445805
6498         LCA5L              21       39405844     39445805
6499         LCA5L              21       39405844     39445805
6500         LCA5L              21       39405844     39445805
6501         LCA5L              21       39405844     39445805
6502         LCA5L              21       39405844     39445805
6503         LCA5L              21       39405844     39445805
6504         LCA5L              21       39405844     39445805
6505         LCA5L              21       39405844     39445805
6506         LCA5L              21       39405844     39445805
6507         LCA5L              21       39405844     39445805
6508         LCA5L              21       39405844     39445805
6509         LCA5L              21       39405844     39445805
6510         LCA5L              21       39405844     39445805
6511         LCA5L              21       39405844     39445805
6512         LCA5L              21       39405844     39445805
6513         LCA5L              21       39405844     39445805
6514         LCA5L              21       39405844     39445805
6515         LCA5L              21       39405844     39445805
6516         LCA5L              21       39405844     39445805
6517         LCA5L              21       39405844     39445805
6518         LCA5L              21       39405844     39445805
6519         LCA5L              21       39405844     39445805
6520         LCA5L              21       39405844     39445805
6521         LCA5L              21       39405844     39445805
6522         LCA5L              21       39405844     39445805
6523         LCA5L              21       39405844     39445805
6524         LCA5L              21       39405844     39445805
6525         LCA5L              21       39405844     39445805
6526                            21        7003248      7007022
6527                            21        7003248      7007022
6528                            21        7003248      7007022
6529                            21        7003248      7007022
6530                            21        7003248      7007022
6531                            21        7003248      7007022
6532                            21        7003248      7007022
6533                            21        7003248      7007022
6534                            21        7003248      7007022
6535    IL10RB-AS1              21       33263873     33266260
6536    IL10RB-AS1              21       33263873     33266260
6537         USP16              21       29024629     29054488
6538         USP16              21       29024629     29054488
6539         USP16              21       29024629     29054488
6540         USP16              21       29024629     29054488
6541         USP16              21       29024629     29054488
6542         USP16              21       29024629     29054488
6543         USP16              21       29024629     29054488
6544         USP16              21       29024629     29054488
6545         USP16              21       29024629     29054488
6546         USP16              21       29024629     29054488
6547         USP16              21       29024629     29054488
6548         USP16              21       29024629     29054488
6549         USP16              21       29024629     29054488
6550         USP16              21       29024629     29054488
6551         USP16              21       29024629     29054488
6552         USP16              21       29024629     29054488
6553         USP16              21       29024629     29054488
6554         USP16              21       29024629     29054488
6555         USP16              21       29024629     29054488
6556         USP16              21       29024629     29054488
6557         USP16              21       29024629     29054488
6558         USP16              21       29024629     29054488
6559         USP16              21       29024629     29054488
6560         USP16              21       29024629     29054488
6561         USP16              21       29024629     29054488
6562         USP16              21       29024629     29054488
6563         USP16              21       29024629     29054488
6564         USP16              21       29024629     29054488
6565         USP16              21       29024629     29054488
6566         USP16              21       29024629     29054488
6567         USP16              21       29024629     29054488
6568         USP16              21       29024629     29054488
6569         USP16              21       29024629     29054488
6570         USP16              21       29024629     29054488
6571         USP16              21       29024629     29054488
6572         USP16              21       29024629     29054488
6573         USP16              21       29024629     29054488
6574         USP16              21       29024629     29054488
6575         USP16              21       29024629     29054488
6576         USP16              21       29024629     29054488
6577         USP16              21       29024629     29054488
6578         USP16              21       29024629     29054488
6579         USP16              21       29024629     29054488
6580         USP16              21       29024629     29054488
6581         USP16              21       29024629     29054488
6582         USP16              21       29024629     29054488
6583         USP16              21       29024629     29054488
6584         USP16              21       29024629     29054488
6585         USP16              21       29024629     29054488
6586         USP16              21       29024629     29054488
6587         USP16              21       29024629     29054488
6588         USP16              21       29024629     29054488
6589         USP16              21       29024629     29054488
6590         USP16              21       29024629     29054488
6591         USP16              21       29024629     29054488
6592         USP16              21       29024629     29054488
6593         USP16              21       29024629     29054488
6594         USP16              21       29024629     29054488
6595         USP16              21       29024629     29054488
6596         USP16              21       29024629     29054488
6597         USP16              21       29024629     29054488
6598         USP16              21       29024629     29054488
6599         USP16              21       29024629     29054488
6600         USP16              21       29024629     29054488
6601         USP16              21       29024629     29054488
6602         USP16              21       29024629     29054488
6603         USP16              21       29024629     29054488
6604         USP16              21       29024629     29054488
6605         USP16              21       29024629     29054488
6606         USP16              21       29024629     29054488
6607         USP16              21       29024629     29054488
6608         USP16              21       29024629     29054488
6609         USP16              21       29024629     29054488
6610         USP16              21       29024629     29054488
6611         USP16              21       29024629     29054488
6612         USP16              21       29024629     29054488
6613         USP16              21       29024629     29054488
6614         USP16              21       29024629     29054488
6615         USP16              21       29024629     29054488
6616      C21orf62              21       32793564     32813743
6617      C21orf62              21       32793564     32813743
6618      C21orf62              21       32793564     32813743
6619      C21orf62              21       32793564     32813743
6620      C21orf62              21       32793564     32813743
6621      C21orf62              21       32793564     32813743
6622      C21orf62              21       32793564     32813743
6623      C21orf62              21       32793564     32813743
6624      C21orf62              21       32793564     32813743
6625      C21orf62              21       32793564     32813743
6626      C21orf62              21       32793564     32813743
6627      C21orf62              21       32793564     32813743
6628       PSMD4P1              21       36485983     36487411
6629       PSMD4P1              21       36485983     36487411
6630       ZNF299P              21       23090028     23091831
6631      MAPK6PS2              21       22436290     22438349
6632     LINC00317              21       21723293     21737319
6633     LINC00317              21       21723293     21737319
6634     LINC00317              21       21723293     21737319
6635          PWP2              21       44107290     44131181
6636          PWP2              21       44107290     44131181
6637          PWP2              21       44107290     44131181
6638          PWP2              21       44107290     44131181
6639          PWP2              21       44107290     44131181
6640          PWP2              21       44107290     44131181
6641          PWP2              21       44107290     44131181
6642          PWP2              21       44107290     44131181
6643          PWP2              21       44107290     44131181
6644          PWP2              21       44107290     44131181
6645          PWP2              21       44107290     44131181
6646          PWP2              21       44107290     44131181
6647          PWP2              21       44107290     44131181
6648          PWP2              21       44107290     44131181
6649          PWP2              21       44107290     44131181
6650          PWP2              21       44107290     44131181
6651          PWP2              21       44107290     44131181
6652          PWP2              21       44107290     44131181
6653          PWP2              21       44107290     44131181
6654          PWP2              21       44107290     44131181
6655          PWP2              21       44107290     44131181
6656          PWP2              21       44107290     44131181
6657          PWP2              21       44107290     44131181
6658          PWP2              21       44107290     44131181
6659          PWP2              21       44107290     44131181
6660          PWP2              21       44107290     44131181
6661          PWP2              21       44107290     44131181
6662          PWP2              21       44107290     44131181
6663          PWP2              21       44107290     44131181
6664          PWP2              21       44107290     44131181
6665          PWP2              21       44107290     44131181
6666          PWP2              21       44107290     44131181
6667          PWP2              21       44107290     44131181
6668          PWP2              21       44107290     44131181
6669          PWP2              21       44107290     44131181
6670          PWP2              21       44107290     44131181
6671          PWP2              21       44107290     44131181
6672          PWP2              21       44107290     44131181
6673          PWP2              21       44107290     44131181
6674          PWP2              21       44107290     44131181
6675          PWP2              21       44107290     44131181
6676          PWP2              21       44107290     44131181
6677          PWP2              21       44107290     44131181
6678          PWP2              21       44107290     44131181
6679          PWP2              21       44107290     44131181
6680          PWP2              21       44107290     44131181
6681                            21       19130523     19134423
6682                            21       19130523     19134423
6683      SLC6A6P1              21       19244543     19246392
6684       TMEM50B              21       33432485     33480011
6685       TMEM50B              21       33432485     33480011
6686       TMEM50B              21       33432485     33480011
6687       TMEM50B              21       33432485     33480011
6688       TMEM50B              21       33432485     33480011
6689       TMEM50B              21       33432485     33480011
6690       TMEM50B              21       33432485     33480011
6691       TMEM50B              21       33432485     33480011
6692       TMEM50B              21       33432485     33480011
6693       TMEM50B              21       33432485     33480011
6694       TMEM50B              21       33432485     33480011
6695       TMEM50B              21       33432485     33480011
6696       TMEM50B              21       33432485     33480011
6697       TMEM50B              21       33432485     33480011
6698       TMEM50B              21       33432485     33480011
6699       TMEM50B              21       33432485     33480011
6700       TMEM50B              21       33432485     33480011
6701       TMEM50B              21       33432485     33480011
6702       TMEM50B              21       33432485     33480011
6703       TMEM50B              21       33432485     33480011
6704       TMEM50B              21       33432485     33480011
6705       TMEM50B              21       33432485     33480011
6706       TMEM50B              21       33432485     33480011
6707       TMEM50B              21       33432485     33480011
6708       TMEM50B              21       33432485     33480011
6709       TMEM50B              21       33432485     33480011
6710       TMEM50B              21       33432485     33480011
6711       TMEM50B              21       33432485     33480011
6712       TMEM50B              21       33432485     33480011
6713       TMEM50B              21       33432485     33480011
6714       TMEM50B              21       33432485     33480011
6715       TMEM50B              21       33432485     33480011
6716       TMEM50B              21       33432485     33480011
6717       TMEM50B              21       33432485     33480011
6718       TMEM50B              21       33432485     33480011
6719       TMEM50B              21       33432485     33480011
6720       TMEM50B              21       33432485     33480011
6721       TMEM50B              21       33432485     33480011
6722       TMEM50B              21       33432485     33480011
6723       TMEM50B              21       33432485     33480011
6724       TMEM50B              21       33432485     33480011
6725       TMEM50B              21       33432485     33480011
6726       TMEM50B              21       33432485     33480011
6727       TMEM50B              21       33432485     33480011
6728       TMEM50B              21       33432485     33480011
6729       TMEM50B              21       33432485     33480011
6730       TMEM50B              21       33432485     33480011
6731       TMEM50B              21       33432485     33480011
6732       TMEM50B              21       33432485     33480011
6733         OLIG1              21       33070144     33072420
6734         OLIG1              21       33070144     33072420
6735         OLIG1              21       33070144     33072420
6736         OLIG1              21       33070144     33072420
6737         OLIG1              21       33070144     33072420
6738                            21       32844367     32849934
6739                            21       32844367     32849934
6740                            21        6309161      6312948
6741                            21        6309161      6312948
6742                            21        6309161      6312948
6743                            21        6309161      6312948
6744                            21        6309161      6312948
6745                            21        6309161      6312948
6746          HLCS              21       36750888     36990236
6747          HLCS              21       36750888     36990236
6748          HLCS              21       36750888     36990236
6749          HLCS              21       36750888     36990236
6750          HLCS              21       36750888     36990236
6751          HLCS              21       36750888     36990236
6752          HLCS              21       36750888     36990236
6753          HLCS              21       36750888     36990236
6754          HLCS              21       36750888     36990236
6755          HLCS              21       36750888     36990236
6756          HLCS              21       36750888     36990236
6757          HLCS              21       36750888     36990236
6758          HLCS              21       36750888     36990236
6759          HLCS              21       36750888     36990236
6760          HLCS              21       36750888     36990236
6761          HLCS              21       36750888     36990236
6762          HLCS              21       36750888     36990236
6763          HLCS              21       36750888     36990236
6764          HLCS              21       36750888     36990236
6765          HLCS              21       36750888     36990236
6766          HLCS              21       36750888     36990236
6767          HLCS              21       36750888     36990236
6768          HLCS              21       36750888     36990236
6769          HLCS              21       36750888     36990236
6770          HLCS              21       36750888     36990236
6771          HLCS              21       36750888     36990236
6772          HLCS              21       36750888     36990236
6773          HLCS              21       36750888     36990236
6774          HLCS              21       36750888     36990236
6775          HLCS              21       36750888     36990236
6776          HLCS              21       36750888     36990236
6777          HLCS              21       36750888     36990236
6778          HLCS              21       36750888     36990236
6779          HLCS              21       36750888     36990236
6780          HLCS              21       36750888     36990236
6781          HLCS              21       36750888     36990236
6782          HLCS              21       36750888     36990236
6783          HLCS              21       36750888     36990236
6784          HLCS              21       36750888     36990236
6785          HLCS              21       36750888     36990236
6786          HLCS              21       36750888     36990236
6787          HLCS              21       36750888     36990236
6788          HLCS              21       36750888     36990236
6789          HLCS              21       36750888     36990236
6790          HLCS              21       36750888     36990236
6791          HLCS              21       36750888     36990236
6792          HLCS              21       36750888     36990236
6793          HLCS              21       36750888     36990236
6794          HLCS              21       36750888     36990236
6795          HLCS              21       36750888     36990236
6796          HLCS              21       36750888     36990236
6797                            21       36698773     36701564
6798                            21       36698773     36701564
6799                            21        6008604      6008810
6800                            21        7020599      7025166
6801                            21        7020599      7025166
6802        RWDD2B              21       29004384     29019378
6803        RWDD2B              21       29004384     29019378
6804        RWDD2B              21       29004384     29019378
6805        RWDD2B              21       29004384     29019378
6806        RWDD2B              21       29004384     29019378
6807        RWDD2B              21       29004384     29019378
6808        RWDD2B              21       29004384     29019378
6809        RWDD2B              21       29004384     29019378
6810        RWDD2B              21       29004384     29019378
6811        RWDD2B              21       29004384     29019378
6812        RWDD2B              21       29004384     29019378
6813        RWDD2B              21       29004384     29019378
6814        RWDD2B              21       29004384     29019378
6815        RWDD2B              21       29004384     29019378
6816        RWDD2B              21       29004384     29019378
6817        RWDD2B              21       29004384     29019378
6818        RWDD2B              21       29004384     29019378
6819        RWDD2B              21       29004384     29019378
6820        RWDD2B              21       29004384     29019378
6821        RWDD2B              21       29004384     29019378
6822        RWDD2B              21       29004384     29019378
6823        RWDD2B              21       29004384     29019378
6824        RWDD2B              21       29004384     29019378
6825        RWDD2B              21       29004384     29019378
6826        RWDD2B              21       29004384     29019378
6827        RWDD2B              21       29004384     29019378
6828        RWDD2B              21       29004384     29019378
6829        RWDD2B              21       29004384     29019378
6830        RWDD2B              21       29004384     29019378
6831       RIPPLY3              21       37006150     37019659
6832       RIPPLY3              21       37006150     37019659
6833       RIPPLY3              21       37006150     37019659
6834       RIPPLY3              21       37006150     37019659
6835       RIPPLY3              21       37006150     37019659
6836       RIPPLY3              21       37006150     37019659
6837       RIPPLY3              21       37006150     37019659
6838       RIPPLY3              21       37006150     37019659
6839       RIPPLY3              21       37006150     37019659
6840       RIPPLY3              21       37006150     37019659
6841       RIPPLY3              21       37006150     37019659
6842          SIM2              21       36699133     36749917
6843          SIM2              21       36699133     36749917
6844          SIM2              21       36699133     36749917
6845          SIM2              21       36699133     36749917
6846          SIM2              21       36699133     36749917
6847          SIM2              21       36699133     36749917
6848          SIM2              21       36699133     36749917
6849          SIM2              21       36699133     36749917
6850          SIM2              21       36699133     36749917
6851          SIM2              21       36699133     36749917
6852          SIM2              21       36699133     36749917
6853          SIM2              21       36699133     36749917
6854          SIM2              21       36699133     36749917
6855          SIM2              21       36699133     36749917
6856          SIM2              21       36699133     36749917
6857          SIM2              21       36699133     36749917
6858          SIM2              21       36699133     36749917
6859          SIM2              21       36699133     36749917
6860          SIM2              21       36699133     36749917
6861          SIM2              21       36699133     36749917
6862          SIM2              21       36699133     36749917
6863          SIM2              21       36699133     36749917
6864          SIM2              21       36699133     36749917
6865          SIM2              21       36699133     36749917
6866          SIM2              21       36699133     36749917
6867          SIM2              21       36699133     36749917
6868          SIM2              21       36699133     36749917
6869          SIM2              21       36699133     36749917
6870          SIM2              21       36699133     36749917
6871          SIM2              21       36699133     36749917
6872          SIM2              21       36699133     36749917
6873          SIM2              21       36699133     36749917
6874          SIM2              21       36699133     36749917
6875          SIM2              21       36699133     36749917
6876          SIM2              21       36699133     36749917
6877                            21       36632681     36637033
6878                            21       36632681     36637033
6879                            21        5972924      5973383
6880                            21       21223295     21226829
6881                            21       21223295     21226829
6882                            21       19739709     19740150
6883       RPL37P4              21       19593841     19594108
6884     MIR548XHG              21       18561265     18760003
6885     MIR548XHG              21       18561265     18760003
6886     MIR548XHG              21       18561265     18760003
6887     MIR548XHG              21       18561265     18760003
6888     MIR548XHG              21       18561265     18760003
6889     MIR548XHG              21       18561265     18760003
6890     MIR548XHG              21       18561265     18760003
6891     MIR548XHG              21       18561265     18760003
6892     MIR548XHG              21       18561265     18760003
6893     MIR548XHG              21       18561265     18760003
6894     MIR548XHG              21       18561265     18760003
6895     MIR548XHG              21       18561265     18760003
6896                            21       42831040     42836477
6897                            21       42831040     42836477
6898                            21       42831040     42836477
6899     LINC01668              21       42777819     42779994
6900     LINC01668              21       42777819     42779994
6901     LINC01668              21       42777819     42779994
6902       SPATC1L              21       46161148     46184476
6903       SPATC1L              21       46161148     46184476
6904       SPATC1L              21       46161148     46184476
6905       SPATC1L              21       46161148     46184476
6906       SPATC1L              21       46161148     46184476
6907       SPATC1L              21       46161148     46184476
6908       SPATC1L              21       46161148     46184476
6909       SPATC1L              21       46161148     46184476
6910       SPATC1L              21       46161148     46184476
6911         PLAC4              21       41175231     41185239
6912         PLAC4              21       41175231     41185239
6913         ITSN1              21       33642400     33899861
6914         ITSN1              21       33642400     33899861
6915         ITSN1              21       33642400     33899861
6916         ITSN1              21       33642400     33899861
6917         ITSN1              21       33642400     33899861
6918         ITSN1              21       33642400     33899861
6919         ITSN1              21       33642400     33899861
6920         ITSN1              21       33642400     33899861
6921         ITSN1              21       33642400     33899861
6922         ITSN1              21       33642400     33899861
6923         ITSN1              21       33642400     33899861
6924         ITSN1              21       33642400     33899861
6925         ITSN1              21       33642400     33899861
6926         ITSN1              21       33642400     33899861
6927         ITSN1              21       33642400     33899861
6928         ITSN1              21       33642400     33899861
6929         ITSN1              21       33642400     33899861
6930         ITSN1              21       33642400     33899861
6931         ITSN1              21       33642400     33899861
6932         ITSN1              21       33642400     33899861
6933         ITSN1              21       33642400     33899861
6934         ITSN1              21       33642400     33899861
6935         ITSN1              21       33642400     33899861
6936         ITSN1              21       33642400     33899861
6937         ITSN1              21       33642400     33899861
6938         ITSN1              21       33642400     33899861
6939         ITSN1              21       33642400     33899861
6940         ITSN1              21       33642400     33899861
6941         ITSN1              21       33642400     33899861
6942         ITSN1              21       33642400     33899861
6943         ITSN1              21       33642400     33899861
6944         ITSN1              21       33642400     33899861
6945         ITSN1              21       33642400     33899861
6946         ITSN1              21       33642400     33899861
6947         ITSN1              21       33642400     33899861
6948         ITSN1              21       33642400     33899861
6949         ITSN1              21       33642400     33899861
6950         ITSN1              21       33642400     33899861
6951         ITSN1              21       33642400     33899861
6952         ITSN1              21       33642400     33899861
6953         ITSN1              21       33642400     33899861
6954         ITSN1              21       33642400     33899861
6955         ITSN1              21       33642400     33899861
6956         ITSN1              21       33642400     33899861
6957         ITSN1              21       33642400     33899861
6958         ITSN1              21       33642400     33899861
6959         ITSN1              21       33642400     33899861
6960         ITSN1              21       33642400     33899861
6961         ITSN1              21       33642400     33899861
6962         ITSN1              21       33642400     33899861
6963         ITSN1              21       33642400     33899861
6964         ITSN1              21       33642400     33899861
6965         ITSN1              21       33642400     33899861
6966         ITSN1              21       33642400     33899861
6967         ITSN1              21       33642400     33899861
6968         ITSN1              21       33642400     33899861
6969         ITSN1              21       33642400     33899861
6970         ITSN1              21       33642400     33899861
6971         ITSN1              21       33642400     33899861
6972         ITSN1              21       33642400     33899861
6973         ITSN1              21       33642400     33899861
6974         ITSN1              21       33642400     33899861
6975         ITSN1              21       33642400     33899861
6976         ITSN1              21       33642400     33899861
6977         ITSN1              21       33642400     33899861
6978         ITSN1              21       33642400     33899861
6979         ITSN1              21       33642400     33899861
6980         ITSN1              21       33642400     33899861
6981         ITSN1              21       33642400     33899861
6982         ITSN1              21       33642400     33899861
6983         ITSN1              21       33642400     33899861
6984         ITSN1              21       33642400     33899861
6985         ITSN1              21       33642400     33899861
6986         ITSN1              21       33642400     33899861
6987         ITSN1              21       33642400     33899861
6988         ITSN1              21       33642400     33899861
6989         ITSN1              21       33642400     33899861
6990         ITSN1              21       33642400     33899861
6991         ITSN1              21       33642400     33899861
6992         ITSN1              21       33642400     33899861
6993         ITSN1              21       33642400     33899861
6994         ITSN1              21       33642400     33899861
6995         ITSN1              21       33642400     33899861
6996         ITSN1              21       33642400     33899861
6997         ITSN1              21       33642400     33899861
6998         ITSN1              21       33642400     33899861
6999         ITSN1              21       33642400     33899861
7000         ITSN1              21       33642400     33899861
7001         ITSN1              21       33642400     33899861
7002         ITSN1              21       33642400     33899861
7003         ITSN1              21       33642400     33899861
7004         ITSN1              21       33642400     33899861
7005         ITSN1              21       33642400     33899861
7006         ITSN1              21       33642400     33899861
7007         ITSN1              21       33642400     33899861
7008         ITSN1              21       33642400     33899861
7009         ITSN1              21       33642400     33899861
7010         ITSN1              21       33642400     33899861
7011         ITSN1              21       33642400     33899861
7012         ITSN1              21       33642400     33899861
7013         ITSN1              21       33642400     33899861
7014         ITSN1              21       33642400     33899861
7015         ITSN1              21       33642400     33899861
7016         ITSN1              21       33642400     33899861
7017         ITSN1              21       33642400     33899861
7018         ITSN1              21       33642400     33899861
7019         ITSN1              21       33642400     33899861
7020         ITSN1              21       33642400     33899861
7021         ITSN1              21       33642400     33899861
7022         ITSN1              21       33642400     33899861
7023         ITSN1              21       33642400     33899861
7024         ITSN1              21       33642400     33899861
7025         ITSN1              21       33642400     33899861
7026         ITSN1              21       33642400     33899861
7027         ITSN1              21       33642400     33899861
7028         ITSN1              21       33642400     33899861
7029         ITSN1              21       33642400     33899861
7030         ITSN1              21       33642400     33899861
7031         ITSN1              21       33642400     33899861
7032         ITSN1              21       33642400     33899861
7033         ITSN1              21       33642400     33899861
7034         ITSN1              21       33642400     33899861
7035         ITSN1              21       33642400     33899861
7036         ITSN1              21       33642400     33899861
7037         ITSN1              21       33642400     33899861
7038         ITSN1              21       33642400     33899861
7039         ITSN1              21       33642400     33899861
7040         ITSN1              21       33642400     33899861
7041         ITSN1              21       33642400     33899861
7042         ITSN1              21       33642400     33899861
7043         ITSN1              21       33642400     33899861
7044         ITSN1              21       33642400     33899861
7045         ITSN1              21       33642400     33899861
7046         ITSN1              21       33642400     33899861
7047         ITSN1              21       33642400     33899861
7048         ITSN1              21       33642400     33899861
7049         ITSN1              21       33642400     33899861
7050         ITSN1              21       33642400     33899861
7051         ITSN1              21       33642400     33899861
7052         ITSN1              21       33642400     33899861
7053         ITSN1              21       33642400     33899861
7054         ITSN1              21       33642400     33899861
7055         ITSN1              21       33642400     33899861
7056         ITSN1              21       33642400     33899861
7057         ITSN1              21       33642400     33899861
7058         ITSN1              21       33642400     33899861
7059         ITSN1              21       33642400     33899861
7060         ITSN1              21       33642400     33899861
7061         ITSN1              21       33642400     33899861
7062         ITSN1              21       33642400     33899861
7063         ITSN1              21       33642400     33899861
7064         ITSN1              21       33642400     33899861
7065         ITSN1              21       33642400     33899861
7066         ITSN1              21       33642400     33899861
7067         ITSN1              21       33642400     33899861
7068         ITSN1              21       33642400     33899861
7069         ITSN1              21       33642400     33899861
7070         ITSN1              21       33642400     33899861
7071         ITSN1              21       33642400     33899861
7072         ITSN1              21       33642400     33899861
7073         ITSN1              21       33642400     33899861
7074         ITSN1              21       33642400     33899861
7075         ITSN1              21       33642400     33899861
7076         ITSN1              21       33642400     33899861
7077         ITSN1              21       33642400     33899861
7078         ITSN1              21       33642400     33899861
7079         ITSN1              21       33642400     33899861
7080         ITSN1              21       33642400     33899861
7081         ITSN1              21       33642400     33899861
7082         ITSN1              21       33642400     33899861
7083         ITSN1              21       33642400     33899861
7084         ITSN1              21       33642400     33899861
7085         ITSN1              21       33642400     33899861
7086         ITSN1              21       33642400     33899861
7087         ITSN1              21       33642400     33899861
7088         ITSN1              21       33642400     33899861
7089         ITSN1              21       33642400     33899861
7090         ITSN1              21       33642400     33899861
7091         ITSN1              21       33642400     33899861
7092         ITSN1              21       33642400     33899861
7093         ITSN1              21       33642400     33899861
7094         ITSN1              21       33642400     33899861
7095         ITSN1              21       33642400     33899861
7096         ITSN1              21       33642400     33899861
7097         ITSN1              21       33642400     33899861
7098         ITSN1              21       33642400     33899861
7099         ITSN1              21       33642400     33899861
7100         ITSN1              21       33642400     33899861
7101         ITSN1              21       33642400     33899861
7102         ITSN1              21       33642400     33899861
7103         ITSN1              21       33642400     33899861
7104         ITSN1              21       33642400     33899861
7105         ITSN1              21       33642400     33899861
7106         ITSN1              21       33642400     33899861
7107         ITSN1              21       33642400     33899861
7108         ITSN1              21       33642400     33899861
7109         ITSN1              21       33642400     33899861
7110         ITSN1              21       33642400     33899861
7111         ITSN1              21       33642400     33899861
7112         ITSN1              21       33642400     33899861
7113         ITSN1              21       33642400     33899861
7114         ITSN1              21       33642400     33899861
7115         ITSN1              21       33642400     33899861
7116         ITSN1              21       33642400     33899861
7117         ITSN1              21       33642400     33899861
7118         ITSN1              21       33642400     33899861
7119         ITSN1              21       33642400     33899861
7120         ITSN1              21       33642400     33899861
7121         ITSN1              21       33642400     33899861
7122         ITSN1              21       33642400     33899861
7123         ITSN1              21       33642400     33899861
7124         ITSN1              21       33642400     33899861
7125         ITSN1              21       33642400     33899861
7126         ITSN1              21       33642400     33899861
7127         ITSN1              21       33642400     33899861
7128         ITSN1              21       33642400     33899861
7129         ITSN1              21       33642400     33899861
7130         ITSN1              21       33642400     33899861
7131         ITSN1              21       33642400     33899861
7132         ITSN1              21       33642400     33899861
7133         ITSN1              21       33642400     33899861
7134         ITSN1              21       33642400     33899861
7135         ITSN1              21       33642400     33899861
7136         ITSN1              21       33642400     33899861
7137         ITSN1              21       33642400     33899861
7138         ITSN1              21       33642400     33899861
7139         ITSN1              21       33642400     33899861
7140         ITSN1              21       33642400     33899861
7141         ITSN1              21       33642400     33899861
7142         ITSN1              21       33642400     33899861
7143         ITSN1              21       33642400     33899861
7144         ITSN1              21       33642400     33899861
7145         ITSN1              21       33642400     33899861
7146         ITSN1              21       33642400     33899861
7147         ITSN1              21       33642400     33899861
7148         ITSN1              21       33642400     33899861
7149         ITSN1              21       33642400     33899861
7150         ITSN1              21       33642400     33899861
7151         ITSN1              21       33642400     33899861
7152         ITSN1              21       33642400     33899861
7153         ITSN1              21       33642400     33899861
7154         ITSN1              21       33642400     33899861
7155         ITSN1              21       33642400     33899861
7156         ITSN1              21       33642400     33899861
7157         ITSN1              21       33642400     33899861
7158         ITSN1              21       33642400     33899861
7159         ITSN1              21       33642400     33899861
7160         ITSN1              21       33642400     33899861
7161         ITSN1              21       33642400     33899861
7162         ITSN1              21       33642400     33899861
7163         ITSN1              21       33642400     33899861
7164         ITSN1              21       33642400     33899861
7165         ITSN1              21       33642400     33899861
7166         ITSN1              21       33642400     33899861
7167         ITSN1              21       33642400     33899861
7168         ITSN1              21       33642400     33899861
7169         ITSN1              21       33642400     33899861
7170         ITSN1              21       33642400     33899861
7171         ITSN1              21       33642400     33899861
7172         ITSN1              21       33642400     33899861
7173         ITSN1              21       33642400     33899861
7174         ITSN1              21       33642400     33899861
7175         ITSN1              21       33642400     33899861
7176         ITSN1              21       33642400     33899861
7177         ITSN1              21       33642400     33899861
7178         ITSN1              21       33642400     33899861
7179         ITSN1              21       33642400     33899861
7180         ITSN1              21       33642400     33899861
7181         ITSN1              21       33642400     33899861
7182         ITSN1              21       33642400     33899861
7183         ITSN1              21       33642400     33899861
7184         ITSN1              21       33642400     33899861
7185         ITSN1              21       33642400     33899861
7186         ITSN1              21       33642400     33899861
7187         ITSN1              21       33642400     33899861
7188         ITSN1              21       33642400     33899861
7189         ITSN1              21       33642400     33899861
7190         ITSN1              21       33642400     33899861
7191         ITSN1              21       33642400     33899861
7192         ITSN1              21       33642400     33899861
7193         ITSN1              21       33642400     33899861
7194         ITSN1              21       33642400     33899861
7195         ITSN1              21       33642400     33899861
7196         ITSN1              21       33642400     33899861
7197         ITSN1              21       33642400     33899861
7198         ITSN1              21       33642400     33899861
7199         ITSN1              21       33642400     33899861
7200         ITSN1              21       33642400     33899861
7201         ITSN1              21       33642400     33899861
7202         ITSN1              21       33642400     33899861
7203         ITSN1              21       33642400     33899861
7204         ITSN1              21       33642400     33899861
7205         ITSN1              21       33642400     33899861
7206         ITSN1              21       33642400     33899861
7207         ITSN1              21       33642400     33899861
7208         ITSN1              21       33642400     33899861
7209         ITSN1              21       33642400     33899861
7210         ITSN1              21       33642400     33899861
7211         ITSN1              21       33642400     33899861
7212         ITSN1              21       33642400     33899861
7213         ITSN1              21       33642400     33899861
7214         ITSN1              21       33642400     33899861
7215         ITSN1              21       33642400     33899861
7216         ITSN1              21       33642400     33899861
7217         ITSN1              21       33642400     33899861
7218         ITSN1              21       33642400     33899861
7219         ITSN1              21       33642400     33899861
7220         ITSN1              21       33642400     33899861
7221         ITSN1              21       33642400     33899861
7222         ITSN1              21       33642400     33899861
7223         ITSN1              21       33642400     33899861
7224         ITSN1              21       33642400     33899861
7225         ITSN1              21       33642400     33899861
7226         ITSN1              21       33642400     33899861
7227         ITSN1              21       33642400     33899861
7228         ITSN1              21       33642400     33899861
7229         ITSN1              21       33642400     33899861
7230         ITSN1              21       33642400     33899861
7231         ITSN1              21       33642400     33899861
7232         ITSN1              21       33642400     33899861
7233         ITSN1              21       33642400     33899861
7234         ITSN1              21       33642400     33899861
7235         ITSN1              21       33642400     33899861
7236         ITSN1              21       33642400     33899861
7237         ITSN1              21       33642400     33899861
7238         ITSN1              21       33642400     33899861
7239         ITSN1              21       33642400     33899861
7240         ITSN1              21       33642400     33899861
7241         ITSN1              21       33642400     33899861
7242         ITSN1              21       33642400     33899861
7243         ITSN1              21       33642400     33899861
7244         ITSN1              21       33642400     33899861
7245         ITSN1              21       33642400     33899861
7246         ITSN1              21       33642400     33899861
7247         ITSN1              21       33642400     33899861
7248         ITSN1              21       33642400     33899861
7249         ITSN1              21       33642400     33899861
7250         ITSN1              21       33642400     33899861
7251         ITSN1              21       33642400     33899861
7252         ITSN1              21       33642400     33899861
7253         ITSN1              21       33642400     33899861
7254         ITSN1              21       33642400     33899861
7255         ITSN1              21       33642400     33899861
7256         ITSN1              21       33642400     33899861
7257         ITSN1              21       33642400     33899861
7258         ITSN1              21       33642400     33899861
7259         ITSN1              21       33642400     33899861
7260         ITSN1              21       33642400     33899861
7261         ITSN1              21       33642400     33899861
7262         ITSN1              21       33642400     33899861
7263         ITSN1              21       33642400     33899861
7264         ITSN1              21       33642400     33899861
7265         ITSN1              21       33642400     33899861
7266         ITSN1              21       33642400     33899861
7267         ITSN1              21       33642400     33899861
7268         ITSN1              21       33642400     33899861
7269         ITSN1              21       33642400     33899861
7270         ITSN1              21       33642400     33899861
7271         ITSN1              21       33642400     33899861
7272         ITSN1              21       33642400     33899861
7273         ITSN1              21       33642400     33899861
7274         ITSN1              21       33642400     33899861
7275         ITSN1              21       33642400     33899861
7276         ITSN1              21       33642400     33899861
7277         ITSN1              21       33642400     33899861
7278         ITSN1              21       33642400     33899861
7279         ITSN1              21       33642400     33899861
7280         ITSN1              21       33642400     33899861
7281         ITSN1              21       33642400     33899861
7282         ITSN1              21       33642400     33899861
7283         ITSN1              21       33642400     33899861
7284         ITSN1              21       33642400     33899861
7285         ITSN1              21       33642400     33899861
7286         ITSN1              21       33642400     33899861
7287         ITSN1              21       33642400     33899861
7288         ITSN1              21       33642400     33899861
7289         ITSN1              21       33642400     33899861
7290         ITSN1              21       33642400     33899861
7291         ITSN1              21       33642400     33899861
7292         ITSN1              21       33642400     33899861
7293         ITSN1              21       33642400     33899861
7294         ITSN1              21       33642400     33899861
7295         ITSN1              21       33642400     33899861
7296         ITSN1              21       33642400     33899861
7297         ITSN1              21       33642400     33899861
7298         ITSN1              21       33642400     33899861
7299         ITSN1              21       33642400     33899861
7300         ITSN1              21       33642400     33899861
7301         ITSN1              21       33642400     33899861
7302         ITSN1              21       33642400     33899861
7303         ITSN1              21       33642400     33899861
7304         ITSN1              21       33642400     33899861
7305         ITSN1              21       33642400     33899861
7306         ITSN1              21       33642400     33899861
7307         ITSN1              21       33642400     33899861
7308         ITSN1              21       33642400     33899861
7309         ITSN1              21       33642400     33899861
7310         ITSN1              21       33642400     33899861
7311         ITSN1              21       33642400     33899861
7312         ITSN1              21       33642400     33899861
7313         ITSN1              21       33642400     33899861
7314         ITSN1              21       33642400     33899861
7315         ITSN1              21       33642400     33899861
7316         ITSN1              21       33642400     33899861
7317         ITSN1              21       33642400     33899861
7318         ITSN1              21       33642400     33899861
7319         ITSN1              21       33642400     33899861
7320         ITSN1              21       33642400     33899861
7321         ITSN1              21       33642400     33899861
7322                            21        8101251      8103706
7323        MYL6P1              21       43855890     43856342
7324                            21       45759804     45763758
7325                            21       45914296     45919483
7326                            21       45914296     45919483
7327                            21       45914296     45919483
7328         CYYR1              21       26466209     26573284
7329         CYYR1              21       26466209     26573284
7330         CYYR1              21       26466209     26573284
7331         CYYR1              21       26466209     26573284
7332         CYYR1              21       26466209     26573284
7333         CYYR1              21       26466209     26573284
7334         CYYR1              21       26466209     26573284
7335         CYYR1              21       26466209     26573284
7336                            21       26378552     26471698
7337                            21       26378552     26471698
7338                            21       26378552     26471698
7339                            21       26378552     26471698
7340                            21       26378552     26471698
7341                            21       26378552     26471698
7342                            21       26378552     26471698
7343                            21       26378552     26471698
7344                            21       26378552     26471698
7345                            21       26378552     26471698
7346                            21       26378552     26471698
7347                            21       26378552     26471698
7348                            21       26378552     26471698
7349                            21       26378552     26471698
7350      POLR2CP1              21       14757588     14758352
7351      HUNK-AS1              21       32020966     32021782
7352      HUNK-AS1              21       32020966     32021782
7353          HUNK              21       31873315     32044633
7354          HUNK              21       31873315     32044633
7355          HUNK              21       31873315     32044633
7356          HUNK              21       31873315     32044633
7357          HUNK              21       31873315     32044633
7358          HUNK              21       31873315     32044633
7359          HUNK              21       31873315     32044633
7360          HUNK              21       31873315     32044633
7361          HUNK              21       31873315     32044633
7362          HUNK              21       31873315     32044633
7363          HUNK              21       31873315     32044633
7364          HUNK              21       31873315     32044633
7365          HUNK              21       31873315     32044633
7366          HUNK              21       31873315     32044633
7367          HUNK              21       31873315     32044633
7368          HUNK              21       31873315     32044633
7369          HUNK              21       31873315     32044633
7370          HUNK              21       31873315     32044633
7371          HUNK              21       31873315     32044633
7372          HUNK              21       31873315     32044633
7373          HUNK              21       31873315     32044633
7374          HUNK              21       31873315     32044633
7375          HUNK              21       31873315     32044633
7376          HUNK              21       31873315     32044633
7377     LINC00114              21       38739021     38747460
7378     LINC00114              21       38739021     38747460
7379     LINC00114              21       38739021     38747460
7380     LINC00114              21       38739021     38747460
7381     LINC00114              21       38739021     38747460
7382     LINC00114              21       38739021     38747460
7383     LINC00114              21       38739021     38747460
7384     LINC00114              21       38739021     38747460
7385     LINC00114              21       38739021     38747460
7386     LINC00114              21       38739021     38747460
7387     LINC00114              21       38739021     38747460
7388     LINC00114              21       38739021     38747460
7389     LINC00114              21       38739021     38747460
7390     LINC00114              21       38739021     38747460
7391     LINC00114              21       38739021     38747460
7392                            21        6550749      6553955
7393                            21        6550749      6553955
7394                            21        6550749      6553955
7395        IFNAR2              21       33229901     33265675
7396        IFNAR2              21       33229901     33265675
7397        IFNAR2              21       33229901     33265675
7398        IFNAR2              21       33229901     33265675
7399        IFNAR2              21       33229901     33265675
7400        IFNAR2              21       33229901     33265675
7401        IFNAR2              21       33229901     33265675
7402        IFNAR2              21       33229901     33265675
7403        IFNAR2              21       33229901     33265675
7404        IFNAR2              21       33229901     33265675
7405        IFNAR2              21       33229901     33265675
7406        IFNAR2              21       33229901     33265675
7407        IFNAR2              21       33229901     33265675
7408        IFNAR2              21       33229901     33265675
7409        IFNAR2              21       33229901     33265675
7410        IFNAR2              21       33229901     33265675
7411        IFNAR2              21       33229901     33265675
7412        IFNAR2              21       33229901     33265675
7413        IFNAR2              21       33229901     33265675
7414        IFNAR2              21       33229901     33265675
7415        IFNAR2              21       33229901     33265675
7416        IFNAR2              21       33229901     33265675
7417        IFNAR2              21       33229901     33265675
7418        IFNAR2              21       33229901     33265675
7419        IFNAR2              21       33229901     33265675
7420        IFNAR2              21       33229901     33265675
7421        IFNAR2              21       33229901     33265675
7422        IFNAR2              21       33229901     33265675
7423        IFNAR2              21       33229901     33265675
7424        IFNAR2              21       33229901     33265675
7425        IFNAR2              21       33229901     33265675
7426        IFNAR2              21       33229901     33265675
7427        IFNAR2              21       33229901     33265675
7428        IFNAR2              21       33229901     33265675
7429        IFNAR2              21       33229901     33265675
7430        IFNAR2              21       33229901     33265675
7431        IFNAR2              21       33229901     33265675
7432        IFNAR2              21       33229901     33265675
7433        IFNAR2              21       33229901     33265675
7434        IFNAR2              21       33229901     33265675
7435        IFNAR2              21       33229901     33265675
7436        IFNAR2              21       33229901     33265675
7437        IFNAR2              21       33229901     33265675
7438        IFNAR2              21       33229901     33265675
7439        IFNAR2              21       33229901     33265675
7440        IFNAR2              21       33229901     33265675
7441        IFNAR2              21       33229901     33265675
7442        IFNAR2              21       33229901     33265675
7443        IFNAR2              21       33229901     33265675
7444        IFNAR2              21       33229901     33265675
7445        IFNAR2              21       33229901     33265675
7446        IFNAR2              21       33229901     33265675
7447        IFNAR2              21       33229901     33265675
7448        IFNAR2              21       33229901     33265675
7449        IFNAR2              21       33229901     33265675
7450        IFNAR2              21       33229901     33265675
7451        IFNAR2              21       33229901     33265675
7452        IFNAR2              21       33229901     33265675
7453        IFNAR2              21       33229901     33265675
7454        IFNAR2              21       33229901     33265675
7455        IFNAR2              21       33229901     33265675
7456        IFNAR2              21       33229901     33265675
7457        IFNAR2              21       33229901     33265675
7458        IFNAR2              21       33229901     33265675
7459        IFNAR2              21       33229901     33265675
7460        IFNAR2              21       33229901     33265675
7461        IFNAR2              21       33229901     33265675
7462        IFNAR2              21       33229901     33265675
7463        IFNAR2              21       33229901     33265675
7464        IFNAR2              21       33229901     33265675
7465        IFNAR2              21       33229901     33265675
7466        IFNAR2              21       33229901     33265675
7467        IFNAR2              21       33229901     33265675
7468     LINC01678              21       44158740     44160076
7469     LINC01678              21       44158740     44160076
7470     LINC01678              21       44158740     44160076
7471     LINC01678              21       44158740     44160076
7472     LINC01678              21       44158740     44160076
7473          CBSL              21        6444869      6468040
7474          CBSL              21        6444869      6468040
7475          CBSL              21        6444869      6468040
7476          CBSL              21        6444869      6468040
7477          CBSL              21        6444869      6468040
7478          CBSL              21        6444869      6468040
7479          CBSL              21        6444869      6468040
7480          CBSL              21        6444869      6468040
7481          CBSL              21        6444869      6468040
7482          CBSL              21        6444869      6468040
7483          CBSL              21        6444869      6468040
7484          CBSL              21        6444869      6468040
7485          CBSL              21        6444869      6468040
7486          CBSL              21        6444869      6468040
7487          CBSL              21        6444869      6468040
7488          CBSL              21        6444869      6468040
7489          CBSL              21        6444869      6468040
7490          CBSL              21        6444869      6468040
7491          CBSL              21        6444869      6468040
7492          CBSL              21        6444869      6468040
7493          CBSL              21        6444869      6468040
7494          CBSL              21        6444869      6468040
7495          CBSL              21        6444869      6468040
7496          CBSL              21        6444869      6468040
7497          CBSL              21        6444869      6468040
7498          CBSL              21        6444869      6468040
7499          CBSL              21        6444869      6468040
7500          CBSL              21        6444869      6468040
7501          CBSL              21        6444869      6468040
7502          CBSL              21        6444869      6468040
7503          CBSL              21        6444869      6468040
7504          CBSL              21        6444869      6468040
7505          CBSL              21        6444869      6468040
7506          CBSL              21        6444869      6468040
7507          CBSL              21        6444869      6468040
7508          CBSL              21        6444869      6468040
7509          CBSL              21        6444869      6468040
7510          CBSL              21        6444869      6468040
7511          CBSL              21        6444869      6468040
7512          CBSL              21        6444869      6468040
7513          CBSL              21        6444869      6468040
7514          CBSL              21        6444869      6468040
7515          CBSL              21        6444869      6468040
7516          CBSL              21        6444869      6468040
7517          CBSL              21        6444869      6468040
7518          CBSL              21        6444869      6468040
7519          CBSL              21        6444869      6468040
7520          CBSL              21        6444869      6468040
7521          CBSL              21        6444869      6468040
7522          CBSL              21        6444869      6468040
7523          CBSL              21        6444869      6468040
7524          CBSL              21        6444869      6468040
7525          CBSL              21        6444869      6468040
7526          CBSL              21        6444869      6468040
7527          CBSL              21        6444869      6468040
7528          CBSL              21        6444869      6468040
7529          CBSL              21        6444869      6468040
7530          CBSL              21        6444869      6468040
7531          CBSL              21        6444869      6468040
7532          CBSL              21        6444869      6468040
7533          CBSL              21        6444869      6468040
7534          CBSL              21        6444869      6468040
7535          CBSL              21        6444869      6468040
7536          CBSL              21        6444869      6468040
7537          CBSL              21        6444869      6468040
7538          CBSL              21        6444869      6468040
7539          CBSL              21        6444869      6468040
7540          CBSL              21        6444869      6468040
7541          CBSL              21        6444869      6468040
7542          CBSL              21        6444869      6468040
7543          CBSL              21        6444869      6468040
7544          CBSL              21        6444869      6468040
7545          CBSL              21        6444869      6468040
7546          CBSL              21        6444869      6468040
7547          CBSL              21        6444869      6468040
7548          CBSL              21        6444869      6468040
7549          CBSL              21        6444869      6468040
7550          CBSL              21        6444869      6468040
7551          CBSL              21        6444869      6468040
7552          CBSL              21        6444869      6468040
7553          CBSL              21        6444869      6468040
7554          CBSL              21        6444869      6468040
7555          CBSL              21        6444869      6468040
7556          CBSL              21        6444869      6468040
7557          CBSL              21        6444869      6468040
7558          CBSL              21        6444869      6468040
7559          CBSL              21        6444869      6468040
7560          CBSL              21        6444869      6468040
7561          CBSL              21        6444869      6468040
7562          CBSL              21        6444869      6468040
7563          CBSL              21        6444869      6468040
7564          CBSL              21        6444869      6468040
7565          CBSL              21        6444869      6468040
7566          CBSL              21        6444869      6468040
7567          CBSL              21        6444869      6468040
7568          CBSL              21        6444869      6468040
7569          CBSL              21        6444869      6468040
7570          CBSL              21        6444869      6468040
7571          CBSL              21        6444869      6468040
7572          CBSL              21        6444869      6468040
7573          CBSL              21        6444869      6468040
7574          CBSL              21        6444869      6468040
7575          CBSL              21        6444869      6468040
7576          CBSL              21        6444869      6468040
7577          CBSL              21        6444869      6468040
7578          CBSL              21        6444869      6468040
7579          CBSL              21        6444869      6468040
7580          CBSL              21        6444869      6468040
7581          CBSL              21        6444869      6468040
7582          CBSL              21        6444869      6468040
7583          CBSL              21        6444869      6468040
7584          CBSL              21        6444869      6468040
7585          CBSL              21        6444869      6468040
7586          CBSL              21        6444869      6468040
7587          CBSL              21        6444869      6468040
7588          CBSL              21        6444869      6468040
7589          CBSL              21        6444869      6468040
7590          CBSL              21        6444869      6468040
7591          CBSL              21        6444869      6468040
7592          CBSL              21        6444869      6468040
7593                            21       32913649     33071104
7594                            21       32913649     33071104
7595                            21       36082859     36090414
7596                            21       36082859     36090414
7597         PDE9A              21       42653636     42775509
7598         PDE9A              21       42653636     42775509
7599         PDE9A              21       42653636     42775509
7600         PDE9A              21       42653636     42775509
7601         PDE9A              21       42653636     42775509
7602         PDE9A              21       42653636     42775509
7603         PDE9A              21       42653636     42775509
7604         PDE9A              21       42653636     42775509
7605         PDE9A              21       42653636     42775509
7606         PDE9A              21       42653636     42775509
7607         PDE9A              21       42653636     42775509
7608         PDE9A              21       42653636     42775509
7609         PDE9A              21       42653636     42775509
7610         PDE9A              21       42653636     42775509
7611         PDE9A              21       42653636     42775509
7612         PDE9A              21       42653636     42775509
7613         PDE9A              21       42653636     42775509
7614         PDE9A              21       42653636     42775509
7615         PDE9A              21       42653636     42775509
7616         PDE9A              21       42653636     42775509
7617         PDE9A              21       42653636     42775509
7618         PDE9A              21       42653636     42775509
7619         PDE9A              21       42653636     42775509
7620         PDE9A              21       42653636     42775509
7621         PDE9A              21       42653636     42775509
7622         PDE9A              21       42653636     42775509
7623         PDE9A              21       42653636     42775509
7624         PDE9A              21       42653636     42775509
7625         PDE9A              21       42653636     42775509
7626         PDE9A              21       42653636     42775509
7627         PDE9A              21       42653636     42775509
7628         PDE9A              21       42653636     42775509
7629         PDE9A              21       42653636     42775509
7630         PDE9A              21       42653636     42775509
7631         PDE9A              21       42653636     42775509
7632         PDE9A              21       42653636     42775509
7633         PDE9A              21       42653636     42775509
7634         PDE9A              21       42653636     42775509
7635         PDE9A              21       42653636     42775509
7636         PDE9A              21       42653636     42775509
7637         PDE9A              21       42653636     42775509
7638         PDE9A              21       42653636     42775509
7639         PDE9A              21       42653636     42775509
7640         PDE9A              21       42653636     42775509
7641         PDE9A              21       42653636     42775509
7642         PDE9A              21       42653636     42775509
7643         PDE9A              21       42653636     42775509
7644         PDE9A              21       42653636     42775509
7645         PDE9A              21       42653636     42775509
7646         PDE9A              21       42653636     42775509
7647         PDE9A              21       42653636     42775509
7648         PDE9A              21       42653636     42775509
7649         PDE9A              21       42653636     42775509
7650         PDE9A              21       42653636     42775509
7651         PDE9A              21       42653636     42775509
7652         PDE9A              21       42653636     42775509
7653         PDE9A              21       42653636     42775509
7654         PDE9A              21       42653636     42775509
7655         PDE9A              21       42653636     42775509
7656         PDE9A              21       42653636     42775509
7657         PDE9A              21       42653636     42775509
7658         PDE9A              21       42653636     42775509
7659         PDE9A              21       42653636     42775509
7660         PDE9A              21       42653636     42775509
7661         PDE9A              21       42653636     42775509
7662         PDE9A              21       42653636     42775509
7663         PDE9A              21       42653636     42775509
7664         PDE9A              21       42653636     42775509
7665         PDE9A              21       42653636     42775509
7666         PDE9A              21       42653636     42775509
7667         PDE9A              21       42653636     42775509
7668         PDE9A              21       42653636     42775509
7669         PDE9A              21       42653636     42775509
7670         PDE9A              21       42653636     42775509
7671         PDE9A              21       42653636     42775509
7672         PDE9A              21       42653636     42775509
7673         PDE9A              21       42653636     42775509
7674         PDE9A              21       42653636     42775509
7675         PDE9A              21       42653636     42775509
7676         PDE9A              21       42653636     42775509
7677         PDE9A              21       42653636     42775509
7678         PDE9A              21       42653636     42775509
7679         PDE9A              21       42653636     42775509
7680         PDE9A              21       42653636     42775509
7681         PDE9A              21       42653636     42775509
7682         PDE9A              21       42653636     42775509
7683         PDE9A              21       42653636     42775509
7684         PDE9A              21       42653636     42775509
7685         PDE9A              21       42653636     42775509
7686         PDE9A              21       42653636     42775509
7687         PDE9A              21       42653636     42775509
7688         PDE9A              21       42653636     42775509
7689         PDE9A              21       42653636     42775509
7690         PDE9A              21       42653636     42775509
7691         PDE9A              21       42653636     42775509
7692         PDE9A              21       42653636     42775509
7693         PDE9A              21       42653636     42775509
7694         PDE9A              21       42653636     42775509
7695         PDE9A              21       42653636     42775509
7696         PDE9A              21       42653636     42775509
7697         PDE9A              21       42653636     42775509
7698         PDE9A              21       42653636     42775509
7699         PDE9A              21       42653636     42775509
7700         PDE9A              21       42653636     42775509
7701         PDE9A              21       42653636     42775509
7702         PDE9A              21       42653636     42775509
7703         PDE9A              21       42653636     42775509
7704         PDE9A              21       42653636     42775509
7705         PDE9A              21       42653636     42775509
7706         PDE9A              21       42653636     42775509
7707         PDE9A              21       42653636     42775509
7708         PDE9A              21       42653636     42775509
7709         PDE9A              21       42653636     42775509
7710         PDE9A              21       42653636     42775509
7711         PDE9A              21       42653636     42775509
7712         PDE9A              21       42653636     42775509
7713         PDE9A              21       42653636     42775509
7714         PDE9A              21       42653636     42775509
7715         PDE9A              21       42653636     42775509
7716         PDE9A              21       42653636     42775509
7717         PDE9A              21       42653636     42775509
7718         PDE9A              21       42653636     42775509
7719         PDE9A              21       42653636     42775509
7720         PDE9A              21       42653636     42775509
7721         PDE9A              21       42653636     42775509
7722         PDE9A              21       42653636     42775509
7723         PDE9A              21       42653636     42775509
7724         PDE9A              21       42653636     42775509
7725         PDE9A              21       42653636     42775509
7726         PDE9A              21       42653636     42775509
7727         PDE9A              21       42653636     42775509
7728         PDE9A              21       42653636     42775509
7729         PDE9A              21       42653636     42775509
7730         PDE9A              21       42653636     42775509
7731         PDE9A              21       42653636     42775509
7732         PDE9A              21       42653636     42775509
7733         PDE9A              21       42653636     42775509
7734         PDE9A              21       42653636     42775509
7735         PDE9A              21       42653636     42775509
7736         PDE9A              21       42653636     42775509
7737         PDE9A              21       42653636     42775509
7738         PDE9A              21       42653636     42775509
7739         PDE9A              21       42653636     42775509
7740         PDE9A              21       42653636     42775509
7741         PDE9A              21       42653636     42775509
7742         PDE9A              21       42653636     42775509
7743         PDE9A              21       42653636     42775509
7744         PDE9A              21       42653636     42775509
7745         PDE9A              21       42653636     42775509
7746         PDE9A              21       42653636     42775509
7747         PDE9A              21       42653636     42775509
7748         PDE9A              21       42653636     42775509
7749         PDE9A              21       42653636     42775509
7750         PDE9A              21       42653636     42775509
7751         PDE9A              21       42653636     42775509
7752         PDE9A              21       42653636     42775509
7753         PDE9A              21       42653636     42775509
7754         PDE9A              21       42653636     42775509
7755         PDE9A              21       42653636     42775509
7756         PDE9A              21       42653636     42775509
7757         PDE9A              21       42653636     42775509
7758         PDE9A              21       42653636     42775509
7759         PDE9A              21       42653636     42775509
7760         PDE9A              21       42653636     42775509
7761         PDE9A              21       42653636     42775509
7762         PDE9A              21       42653636     42775509
7763         PDE9A              21       42653636     42775509
7764         PDE9A              21       42653636     42775509
7765         PDE9A              21       42653636     42775509
7766         PDE9A              21       42653636     42775509
7767         PDE9A              21       42653636     42775509
7768         PDE9A              21       42653636     42775509
7769         PDE9A              21       42653636     42775509
7770         PDE9A              21       42653636     42775509
7771         PDE9A              21       42653636     42775509
7772         PDE9A              21       42653636     42775509
7773         PDE9A              21       42653636     42775509
7774         PDE9A              21       42653636     42775509
7775         PDE9A              21       42653636     42775509
7776         PDE9A              21       42653636     42775509
7777         PDE9A              21       42653636     42775509
7778         PDE9A              21       42653636     42775509
7779         PDE9A              21       42653636     42775509
7780         PDE9A              21       42653636     42775509
7781         PDE9A              21       42653636     42775509
7782         PDE9A              21       42653636     42775509
7783         PDE9A              21       42653636     42775509
7784         PDE9A              21       42653636     42775509
7785         PDE9A              21       42653636     42775509
7786         PDE9A              21       42653636     42775509
7787         PDE9A              21       42653636     42775509
7788         PDE9A              21       42653636     42775509
7789         PDE9A              21       42653636     42775509
7790         PDE9A              21       42653636     42775509
7791         PDE9A              21       42653636     42775509
7792         PDE9A              21       42653636     42775509
7793         PDE9A              21       42653636     42775509
7794         PDE9A              21       42653636     42775509
7795         PDE9A              21       42653636     42775509
7796         PDE9A              21       42653636     42775509
7797         PDE9A              21       42653636     42775509
7798         PDE9A              21       42653636     42775509
7799         PDE9A              21       42653636     42775509
7800         PDE9A              21       42653636     42775509
7801         PDE9A              21       42653636     42775509
7802         PDE9A              21       42653636     42775509
7803         PDE9A              21       42653636     42775509
7804         PDE9A              21       42653636     42775509
7805         PDE9A              21       42653636     42775509
7806         PDE9A              21       42653636     42775509
7807         PDE9A              21       42653636     42775509
7808         PDE9A              21       42653636     42775509
7809         PDE9A              21       42653636     42775509
7810         PDE9A              21       42653636     42775509
7811         PDE9A              21       42653636     42775509
7812         PDE9A              21       42653636     42775509
7813         PDE9A              21       42653636     42775509
7814         PDE9A              21       42653636     42775509
7815         PDE9A              21       42653636     42775509
7816         PDE9A              21       42653636     42775509
7817         PDE9A              21       42653636     42775509
7818         PDE9A              21       42653636     42775509
7819         PDE9A              21       42653636     42775509
7820         PDE9A              21       42653636     42775509
7821         PDE9A              21       42653636     42775509
7822         PDE9A              21       42653636     42775509
7823         PDE9A              21       42653636     42775509
7824         PDE9A              21       42653636     42775509
7825         PDE9A              21       42653636     42775509
7826         PDE9A              21       42653636     42775509
7827         PDE9A              21       42653636     42775509
7828         PDE9A              21       42653636     42775509
7829         PDE9A              21       42653636     42775509
7830         PDE9A              21       42653636     42775509
7831         PDE9A              21       42653636     42775509
7832         PDE9A              21       42653636     42775509
7833         PDE9A              21       42653636     42775509
7834         PDE9A              21       42653636     42775509
7835         PDE9A              21       42653636     42775509
7836         PDE9A              21       42653636     42775509
7837         PDE9A              21       42653636     42775509
7838         PDE9A              21       42653636     42775509
7839         PDE9A              21       42653636     42775509
7840         PDE9A              21       42653636     42775509
7841         PDE9A              21       42653636     42775509
7842         PDE9A              21       42653636     42775509
7843         PDE9A              21       42653636     42775509
7844         PDE9A              21       42653636     42775509
7845         PDE9A              21       42653636     42775509
7846         PDE9A              21       42653636     42775509
7847         PDE9A              21       42653636     42775509
7848         PDE9A              21       42653636     42775509
7849         PDE9A              21       42653636     42775509
7850         PDE9A              21       42653636     42775509
7851         PDE9A              21       42653636     42775509
7852         PDE9A              21       42653636     42775509
7853         PDE9A              21       42653636     42775509
7854         PDE9A              21       42653636     42775509
7855         PDE9A              21       42653636     42775509
7856         PDE9A              21       42653636     42775509
7857         PDE9A              21       42653636     42775509
7858         PDE9A              21       42653636     42775509
7859         PDE9A              21       42653636     42775509
7860         PDE9A              21       42653636     42775509
7861         PDE9A              21       42653636     42775509
7862         PDE9A              21       42653636     42775509
7863         PDE9A              21       42653636     42775509
7864         PDE9A              21       42653636     42775509
7865         PDE9A              21       42653636     42775509
7866         PDE9A              21       42653636     42775509
7867         PDE9A              21       42653636     42775509
7868         PDE9A              21       42653636     42775509
7869         PDE9A              21       42653636     42775509
7870         PDE9A              21       42653636     42775509
7871         PDE9A              21       42653636     42775509
7872         PDE9A              21       42653636     42775509
7873         PDE9A              21       42653636     42775509
7874         PDE9A              21       42653636     42775509
7875         PDE9A              21       42653636     42775509
7876         PDE9A              21       42653636     42775509
7877         PDE9A              21       42653636     42775509
7878         PDE9A              21       42653636     42775509
7879         PDE9A              21       42653636     42775509
7880         PDE9A              21       42653636     42775509
7881         PDE9A              21       42653636     42775509
7882         PDE9A              21       42653636     42775509
7883         PDE9A              21       42653636     42775509
7884         PDE9A              21       42653636     42775509
7885         PDE9A              21       42653636     42775509
7886         PDE9A              21       42653636     42775509
7887         PDE9A              21       42653636     42775509
7888         PDE9A              21       42653636     42775509
7889         PDE9A              21       42653636     42775509
7890         PDE9A              21       42653636     42775509
7891         PDE9A              21       42653636     42775509
7892         PDE9A              21       42653636     42775509
7893         PDE9A              21       42653636     42775509
7894         PDE9A              21       42653636     42775509
7895         PDE9A              21       42653636     42775509
7896         PDE9A              21       42653636     42775509
7897         PDE9A              21       42653636     42775509
7898         PDE9A              21       42653636     42775509
7899         PDE9A              21       42653636     42775509
7900         PDE9A              21       42653636     42775509
7901         PDE9A              21       42653636     42775509
7902         PDE9A              21       42653636     42775509
7903         PDE9A              21       42653636     42775509
7904         PDE9A              21       42653636     42775509
7905         PDE9A              21       42653636     42775509
7906         PDE9A              21       42653636     42775509
7907         PDE9A              21       42653636     42775509
7908         PDE9A              21       42653636     42775509
7909         PDE9A              21       42653636     42775509
7910         PDE9A              21       42653636     42775509
7911         PDE9A              21       42653636     42775509
7912         PDE9A              21       42653636     42775509
7913         PDE9A              21       42653636     42775509
7914         PDE9A              21       42653636     42775509
7915         PDE9A              21       42653636     42775509
7916         PDE9A              21       42653636     42775509
7917         PDE9A              21       42653636     42775509
7918         PDE9A              21       42653636     42775509
7919         PDE9A              21       42653636     42775509
7920         PDE9A              21       42653636     42775509
7921         PDE9A              21       42653636     42775509
7922         PDE9A              21       42653636     42775509
7923         PDE9A              21       42653636     42775509
7924         PDE9A              21       42653636     42775509
7925         PDE9A              21       42653636     42775509
7926         PDE9A              21       42653636     42775509
7927         PDE9A              21       42653636     42775509
7928         PDE9A              21       42653636     42775509
7929         PDE9A              21       42653636     42775509
7930         PDE9A              21       42653636     42775509
7931         PDE9A              21       42653636     42775509
7932         PDE9A              21       42653636     42775509
7933         PDE9A              21       42653636     42775509
7934         PDE9A              21       42653636     42775509
7935         PDE9A              21       42653636     42775509
7936         PDE9A              21       42653636     42775509
7937         PDE9A              21       42653636     42775509
7938         PDE9A              21       42653636     42775509
7939         PDE9A              21       42653636     42775509
7940         PDE9A              21       42653636     42775509
7941         PDE9A              21       42653636     42775509
7942         PDE9A              21       42653636     42775509
7943         PDE9A              21       42653636     42775509
7944         PDE9A              21       42653636     42775509
7945         PDE9A              21       42653636     42775509
7946         PDE9A              21       42653636     42775509
7947         PDE9A              21       42653636     42775509
7948         PDE9A              21       42653636     42775509
7949         PDE9A              21       42653636     42775509
7950         PDE9A              21       42653636     42775509
7951         PDE9A              21       42653636     42775509
7952         PDE9A              21       42653636     42775509
7953         PDE9A              21       42653636     42775509
7954         PDE9A              21       42653636     42775509
7955         PDE9A              21       42653636     42775509
7956         PDE9A              21       42653636     42775509
7957         PDE9A              21       42653636     42775509
7958         PDE9A              21       42653636     42775509
7959         PDE9A              21       42653636     42775509
7960         PDE9A              21       42653636     42775509
7961         PDE9A              21       42653636     42775509
7962         PDE9A              21       42653636     42775509
7963         PDE9A              21       42653636     42775509
7964         PDE9A              21       42653636     42775509
7965         PDE9A              21       42653636     42775509
7966         PDE9A              21       42653636     42775509
7967         PDE9A              21       42653636     42775509
7968         PDE9A              21       42653636     42775509
7969         PDE9A              21       42653636     42775509
7970         PDE9A              21       42653636     42775509
7971         PDE9A              21       42653636     42775509
7972         PDE9A              21       42653636     42775509
7973         PDE9A              21       42653636     42775509
7974         PDE9A              21       42653636     42775509
7975         PDE9A              21       42653636     42775509
7976         PDE9A              21       42653636     42775509
7977         PDE9A              21       42653636     42775509
7978         PDE9A              21       42653636     42775509
7979         PDE9A              21       42653636     42775509
7980         PDE9A              21       42653636     42775509
7981         PDE9A              21       42653636     42775509
7982         PDE9A              21       42653636     42775509
7983         PDE9A              21       42653636     42775509
7984         PDE9A              21       42653636     42775509
7985         PDE9A              21       42653636     42775509
7986         PDE9A              21       42653636     42775509
7987         PDE9A              21       42653636     42775509
7988         PDE9A              21       42653636     42775509
7989         PDE9A              21       42653636     42775509
7990         PDE9A              21       42653636     42775509
7991         PDE9A              21       42653636     42775509
7992         PDE9A              21       42653636     42775509
7993         PDE9A              21       42653636     42775509
7994         PDE9A              21       42653636     42775509
7995         PDE9A              21       42653636     42775509
7996         PDE9A              21       42653636     42775509
7997         PDE9A              21       42653636     42775509
7998         PDE9A              21       42653636     42775509
7999         PDE9A              21       42653636     42775509
8000         PDE9A              21       42653636     42775509
8001         PDE9A              21       42653636     42775509
8002         PDE9A              21       42653636     42775509
8003         PDE9A              21       42653636     42775509
8004         PDE9A              21       42653636     42775509
8005         PDE9A              21       42653636     42775509
8006         PDE9A              21       42653636     42775509
8007         PDE9A              21       42653636     42775509
8008         PDE9A              21       42653636     42775509
8009         PDE9A              21       42653636     42775509
8010         PDE9A              21       42653636     42775509
8011         PDE9A              21       42653636     42775509
8012         PDE9A              21       42653636     42775509
8013         PDE9A              21       42653636     42775509
8014         PDE9A              21       42653636     42775509
8015         PDE9A              21       42653636     42775509
8016         PDE9A              21       42653636     42775509
8017         PDE9A              21       42653636     42775509
8018         PDE9A              21       42653636     42775509
8019         RSPH1              21       42472486     42496354
8020         RSPH1              21       42472486     42496354
8021         RSPH1              21       42472486     42496354
8022         RSPH1              21       42472486     42496354
8023         RSPH1              21       42472486     42496354
8024         RSPH1              21       42472486     42496354
8025         RSPH1              21       42472486     42496354
8026         RSPH1              21       42472486     42496354
8027         RSPH1              21       42472486     42496354
8028         RSPH1              21       42472486     42496354
8029         RSPH1              21       42472486     42496354
8030         RSPH1              21       42472486     42496354
8031         RSPH1              21       42472486     42496354
8032         RSPH1              21       42472486     42496354
8033         RSPH1              21       42472486     42496354
8034         RSPH1              21       42472486     42496354
8035         RSPH1              21       42472486     42496354
8036         RSPH1              21       42472486     42496354
8037         RSPH1              21       42472486     42496354
8038         RSPH1              21       42472486     42496354
8039         RSPH1              21       42472486     42496354
8040         RSPH1              21       42472486     42496354
8041         RSPH1              21       42472486     42496354
8042         RSPH1              21       42472486     42496354
8043         RSPH1              21       42472486     42496354
8044       RPL34P3              21       35472095     35472432
8045       RPS20P1              21       35724747     35725100
8046                            21       35713139     35732942
8047                            21       35713139     35732942
8048         RUNX1              21       34787801     36004667
8049         RUNX1              21       34787801     36004667
8050         RUNX1              21       34787801     36004667
8051         RUNX1              21       34787801     36004667
8052         RUNX1              21       34787801     36004667
8053         RUNX1              21       34787801     36004667
8054         RUNX1              21       34787801     36004667
8055         RUNX1              21       34787801     36004667
8056         RUNX1              21       34787801     36004667
8057         RUNX1              21       34787801     36004667
8058         RUNX1              21       34787801     36004667
8059         RUNX1              21       34787801     36004667
8060         RUNX1              21       34787801     36004667
8061         RUNX1              21       34787801     36004667
8062         RUNX1              21       34787801     36004667
8063         RUNX1              21       34787801     36004667
8064         RUNX1              21       34787801     36004667
8065         RUNX1              21       34787801     36004667
8066         RUNX1              21       34787801     36004667
8067         RUNX1              21       34787801     36004667
8068         RUNX1              21       34787801     36004667
8069         RUNX1              21       34787801     36004667
8070         RUNX1              21       34787801     36004667
8071         RUNX1              21       34787801     36004667
8072         RUNX1              21       34787801     36004667
8073         RUNX1              21       34787801     36004667
8074         RUNX1              21       34787801     36004667
8075         RUNX1              21       34787801     36004667
8076         RUNX1              21       34787801     36004667
8077         RUNX1              21       34787801     36004667
8078         RUNX1              21       34787801     36004667
8079         RUNX1              21       34787801     36004667
8080         RUNX1              21       34787801     36004667
8081         RUNX1              21       34787801     36004667
8082         RUNX1              21       34787801     36004667
8083         RUNX1              21       34787801     36004667
8084         RUNX1              21       34787801     36004667
8085         RUNX1              21       34787801     36004667
8086         RUNX1              21       34787801     36004667
8087         RUNX1              21       34787801     36004667
8088         RUNX1              21       34787801     36004667
8089         RUNX1              21       34787801     36004667
8090         RUNX1              21       34787801     36004667
8091         RUNX1              21       34787801     36004667
8092         RUNX1              21       34787801     36004667
8093         RUNX1              21       34787801     36004667
8094         RUNX1              21       34787801     36004667
8095         RUNX1              21       34787801     36004667
8096         RUNX1              21       34787801     36004667
8097         RUNX1              21       34787801     36004667
8098         RUNX1              21       34787801     36004667
8099         RUNX1              21       34787801     36004667
8100         RUNX1              21       34787801     36004667
8101         RUNX1              21       34787801     36004667
8102         RUNX1              21       34787801     36004667
8103         RUNX1              21       34787801     36004667
8104         RUNX1              21       34787801     36004667
8105         RUNX1              21       34787801     36004667
8106         RUNX1              21       34787801     36004667
8107         RUNX1              21       34787801     36004667
8108         RUNX1              21       34787801     36004667
8109         RUNX1              21       34787801     36004667
8110         RUNX1              21       34787801     36004667
8111         RUNX1              21       34787801     36004667
8112         RUNX1              21       34787801     36004667
8113         RUNX1              21       34787801     36004667
8114         RUNX1              21       34787801     36004667
8115         RUNX1              21       34787801     36004667
8116         RUNX1              21       34787801     36004667
8117         RUNX1              21       34787801     36004667
8118         RUNX1              21       34787801     36004667
8119         RUNX1              21       34787801     36004667
8120         RUNX1              21       34787801     36004667
8121         RUNX1              21       34787801     36004667
8122         RUNX1              21       34787801     36004667
8123         RUNX1              21       34787801     36004667
8124         RUNX1              21       34787801     36004667
8125         RUNX1              21       34787801     36004667
8126         RUNX1              21       34787801     36004667
8127         RUNX1              21       34787801     36004667
8128         RUNX1              21       34787801     36004667
8129         RUNX1              21       34787801     36004667
8130         RUNX1              21       34787801     36004667
8131       MEMO1P1              21       36130489     36131376
8132                            21       17793488     17810845
8133                            21       17793488     17810845
8134                            21       17793488     17810845
8135                            21       17793488     17810845
8136         AATBC              21       43805758     43812567
8137         AATBC              21       43805758     43812567
8138         AATBC              21       43805758     43812567
8139         AATBC              21       43805758     43812567
8140         AATBC              21       43805758     43812567
8141         AATBC              21       43805758     43812567
8142         AATBC              21       43805758     43812567
8143         AATBC              21       43805758     43812567
8144                            21       26459903     26460214
8145      URB1-AS1              21       32393130     32393960
8146          PDXK              21       43719094     43762307
8147          PDXK              21       43719094     43762307
8148          PDXK              21       43719094     43762307
8149          PDXK              21       43719094     43762307
8150          PDXK              21       43719094     43762307
8151          PDXK              21       43719094     43762307
8152          PDXK              21       43719094     43762307
8153          PDXK              21       43719094     43762307
8154          PDXK              21       43719094     43762307
8155          PDXK              21       43719094     43762307
8156          PDXK              21       43719094     43762307
8157          PDXK              21       43719094     43762307
8158          PDXK              21       43719094     43762307
8159          PDXK              21       43719094     43762307
8160          PDXK              21       43719094     43762307
8161          PDXK              21       43719094     43762307
8162          PDXK              21       43719094     43762307
8163          PDXK              21       43719094     43762307
8164          PDXK              21       43719094     43762307
8165          PDXK              21       43719094     43762307
8166          PDXK              21       43719094     43762307
8167          PDXK              21       43719094     43762307
8168          PDXK              21       43719094     43762307
8169          PDXK              21       43719094     43762307
8170          PDXK              21       43719094     43762307
8171          PDXK              21       43719094     43762307
8172          PDXK              21       43719094     43762307
8173          PDXK              21       43719094     43762307
8174          PDXK              21       43719094     43762307
8175          PDXK              21       43719094     43762307
8176          PDXK              21       43719094     43762307
8177          PDXK              21       43719094     43762307
8178          PDXK              21       43719094     43762307
8179          PDXK              21       43719094     43762307
8180          PDXK              21       43719094     43762307
8181          PDXK              21       43719094     43762307
8182          PDXK              21       43719094     43762307
8183          PDXK              21       43719094     43762307
8184          PDXK              21       43719094     43762307
8185          PDXK              21       43719094     43762307
8186          PDXK              21       43719094     43762307
8187          PDXK              21       43719094     43762307
8188          PDXK              21       43719094     43762307
8189          PDXK              21       43719094     43762307
8190          PDXK              21       43719094     43762307
8191          PDXK              21       43719094     43762307
8192          PDXK              21       43719094     43762307
8193          PDXK              21       43719094     43762307
8194          PDXK              21       43719094     43762307
8195          PDXK              21       43719094     43762307
8196          PDXK              21       43719094     43762307
8197          PDXK              21       43719094     43762307
8198          PDXK              21       43719094     43762307
8199          PDXK              21       43719094     43762307
8200          PDXK              21       43719094     43762307
8201          PDXK              21       43719094     43762307
8202          PDXK              21       43719094     43762307
8203          PDXK              21       43719094     43762307
8204          PDXK              21       43719094     43762307
8205          PDXK              21       43719094     43762307
8206          PDXK              21       43719094     43762307
8207          PDXK              21       43719094     43762307
8208          PDXK              21       43719094     43762307
8209          PDXK              21       43719094     43762307
8210          PDXK              21       43719094     43762307
8211          PDXK              21       43719094     43762307
8212          PDXK              21       43719094     43762307
8213          PDXK              21       43719094     43762307
8214          PDXK              21       43719094     43762307
8215          PDXK              21       43719094     43762307
8216          PDXK              21       43719094     43762307
8217          PDXK              21       43719094     43762307
8218          PDXK              21       43719094     43762307
8219          PDXK              21       43719094     43762307
8220          PDXK              21       43719094     43762307
8221          PDXK              21       43719094     43762307
8222          PDXK              21       43719094     43762307
8223          PDXK              21       43719094     43762307
8224          PDXK              21       43719094     43762307
8225          PDXK              21       43719094     43762307
8226          PDXK              21       43719094     43762307
8227          PDXK              21       43719094     43762307
8228          PDXK              21       43719094     43762307
8229          PDXK              21       43719094     43762307
8230          PDXK              21       43719094     43762307
8231          PDXK              21       43719094     43762307
8232          PDXK              21       43719094     43762307
8233          PDXK              21       43719094     43762307
8234          PDXK              21       43719094     43762307
8235          PDXK              21       43719094     43762307
8236          PDXK              21       43719094     43762307
8237          PDXK              21       43719094     43762307
8238          PDXK              21       43719094     43762307
8239          PDXK              21       43719094     43762307
8240          PDXK              21       43719094     43762307
8241          PDXK              21       43719094     43762307
8242          PDXK              21       43719094     43762307
8243          PDXK              21       43719094     43762307
8244          PDXK              21       43719094     43762307
8245          PDXK              21       43719094     43762307
8246          PDXK              21       43719094     43762307
8247          PDXK              21       43719094     43762307
8248          PDXK              21       43719094     43762307
8249          PDXK              21       43719094     43762307
8250          PDXK              21       43719094     43762307
8251          PDXK              21       43719094     43762307
8252          PDXK              21       43719094     43762307
8253          PDXK              21       43719094     43762307
8254          PDXK              21       43719094     43762307
8255          PDXK              21       43719094     43762307
8256          PDXK              21       43719094     43762307
8257          PDXK              21       43719094     43762307
8258          PDXK              21       43719094     43762307
8259          PDXK              21       43719094     43762307
8260          PDXK              21       43719094     43762307
8261          PDXK              21       43719094     43762307
8262          PDXK              21       43719094     43762307
8263          PDXK              21       43719094     43762307
8264          PDXK              21       43719094     43762307
8265          PDXK              21       43719094     43762307
8266          PDXK              21       43719094     43762307
8267          PDXK              21       43719094     43762307
8268     BACH1-IT2              21       29370497     29373709
8269     BACH1-IT2              21       29370497     29373709
8270     BACH1-IT2              21       29370497     29373709
8271     BACH1-IT2              21       29370497     29373709
8272     BACH1-IT2              21       29370497     29373709
8273     BACH1-IT2              21       29370497     29373709
8274     BACH1-IT2              21       29370497     29373709
8275     BACH1-IT2              21       29370497     29373709
8276                            21        6712596      6716361
8277                            21        6712596      6716361
8278                            21        6712596      6716361
8279                            21        6712596      6716361
8280                            21        6712596      6716361
8281                            21        6712596      6716361
8282                            21        6712596      6716361
8283                            21        6712596      6716361
8284                            21        6676178      6679962
8285                            21        6676178      6679962
8286                            21        6676178      6679962
8287                            21        6676178      6679962
8288                            21        6676178      6679962
8289                            21        6676178      6679962
8290                            21        6676178      6679962
8291                            21        6676178      6679962
8292                            21        6676178      6679962
8293                            21       44201290     44202696
8294                            21       44201290     44202696
8295          PIGP              21       37059170     37073170
8296          PIGP              21       37059170     37073170
8297          PIGP              21       37059170     37073170
8298          PIGP              21       37059170     37073170
8299          PIGP              21       37059170     37073170
8300          PIGP              21       37059170     37073170
8301          PIGP              21       37059170     37073170
8302          PIGP              21       37059170     37073170
8303          PIGP              21       37059170     37073170
8304          PIGP              21       37059170     37073170
8305          PIGP              21       37059170     37073170
8306          PIGP              21       37059170     37073170
8307          PIGP              21       37059170     37073170
8308          PIGP              21       37059170     37073170
8309          PIGP              21       37059170     37073170
8310          PIGP              21       37059170     37073170
8311          PIGP              21       37059170     37073170
8312          PIGP              21       37059170     37073170
8313          PIGP              21       37059170     37073170
8314          PIGP              21       37059170     37073170
8315          PIGP              21       37059170     37073170
8316          PIGP              21       37059170     37073170
8317          PIGP              21       37059170     37073170
8318          PIGP              21       37059170     37073170
8319          PIGP              21       37059170     37073170
8320          PIGP              21       37059170     37073170
8321          PIGP              21       37059170     37073170
8322          PIGP              21       37059170     37073170
8323          PIGP              21       37059170     37073170
8324          PIGP              21       37059170     37073170
8325          PIGP              21       37059170     37073170
8326          PIGP              21       37059170     37073170
8327          PIGP              21       37059170     37073170
8328                            21        6084364      6091407
8329                            21        6084364      6091407
8330                            21        6084364      6091407
8331                            21        6084364      6091407
8332                            21        6084364      6091407
8333                            21        6084364      6091407
8334                            21        6084364      6091407
8335     MSANTD2P1              21       23101223     23103074
8336     MSANTD2P1              21       23101223     23103074
8337     MSANTD2P1              21       23101223     23103074
8338                            21       22882582     22884000
8339                            21       22882582     22884000
8340                            21       22882582     22884000
8341                            21       21655038     21686329
8342                            21       21655038     21686329
8343                            21       21655038     21686329
8344                            21       21655038     21686329
8345                            21       21655038     21686329
8346                            21       21566763     21615437
8347                            21       21566763     21615437
8348         SETD4              21       36034541     36079389
8349         SETD4              21       36034541     36079389
8350         SETD4              21       36034541     36079389
8351         SETD4              21       36034541     36079389
8352         SETD4              21       36034541     36079389
8353         SETD4              21       36034541     36079389
8354         SETD4              21       36034541     36079389
8355         SETD4              21       36034541     36079389
8356         SETD4              21       36034541     36079389
8357         SETD4              21       36034541     36079389
8358         SETD4              21       36034541     36079389
8359         SETD4              21       36034541     36079389
8360         SETD4              21       36034541     36079389
8361         SETD4              21       36034541     36079389
8362         SETD4              21       36034541     36079389
8363         SETD4              21       36034541     36079389
8364         SETD4              21       36034541     36079389
8365         SETD4              21       36034541     36079389
8366         SETD4              21       36034541     36079389
8367         SETD4              21       36034541     36079389
8368         SETD4              21       36034541     36079389
8369         SETD4              21       36034541     36079389
8370         SETD4              21       36034541     36079389
8371         SETD4              21       36034541     36079389
8372         SETD4              21       36034541     36079389
8373         SETD4              21       36034541     36079389
8374         SETD4              21       36034541     36079389
8375         SETD4              21       36034541     36079389
8376         SETD4              21       36034541     36079389
8377         SETD4              21       36034541     36079389
8378         SETD4              21       36034541     36079389
8379         SETD4              21       36034541     36079389
8380         SETD4              21       36034541     36079389
8381         SETD4              21       36034541     36079389
8382         SETD4              21       36034541     36079389
8383         SETD4              21       36034541     36079389
8384         SETD4              21       36034541     36079389
8385         SETD4              21       36034541     36079389
8386         SETD4              21       36034541     36079389
8387         SETD4              21       36034541     36079389
8388         SETD4              21       36034541     36079389
8389         SETD4              21       36034541     36079389
8390         SETD4              21       36034541     36079389
8391         SETD4              21       36034541     36079389
8392         SETD4              21       36034541     36079389
8393         SETD4              21       36034541     36079389
8394         SETD4              21       36034541     36079389
8395         SETD4              21       36034541     36079389
8396         SETD4              21       36034541     36079389
8397         SETD4              21       36034541     36079389
8398         SETD4              21       36034541     36079389
8399         SETD4              21       36034541     36079389
8400         SETD4              21       36034541     36079389
8401         SETD4              21       36034541     36079389
8402         SETD4              21       36034541     36079389
8403         SETD4              21       36034541     36079389
8404         SETD4              21       36034541     36079389
8405         SETD4              21       36034541     36079389
8406         SETD4              21       36034541     36079389
8407         SETD4              21       36034541     36079389
8408         SETD4              21       36034541     36079389
8409         SETD4              21       36034541     36079389
8410         SETD4              21       36034541     36079389
8411         SETD4              21       36034541     36079389
8412         SETD4              21       36034541     36079389
8413         SETD4              21       36034541     36079389
8414         SETD4              21       36034541     36079389
8415         SETD4              21       36034541     36079389
8416         SETD4              21       36034541     36079389
8417         SETD4              21       36034541     36079389
8418         SETD4              21       36034541     36079389
8419         SETD4              21       36034541     36079389
8420         SETD4              21       36034541     36079389
8421         SETD4              21       36034541     36079389
8422         SETD4              21       36034541     36079389
8423         SETD4              21       36034541     36079389
8424         SETD4              21       36034541     36079389
8425         SETD4              21       36034541     36079389
8426         SETD4              21       36034541     36079389
8427         SETD4              21       36034541     36079389
8428         SETD4              21       36034541     36079389
8429         SETD4              21       36034541     36079389
8430         SETD4              21       36034541     36079389
8431         SETD4              21       36034541     36079389
8432         SETD4              21       36034541     36079389
8433         SETD4              21       36034541     36079389
8434         SETD4              21       36034541     36079389
8435         SETD4              21       36034541     36079389
8436         SETD4              21       36034541     36079389
8437         SETD4              21       36034541     36079389
8438         SETD4              21       36034541     36079389
8439         SETD4              21       36034541     36079389
8440         SETD4              21       36034541     36079389
8441         SETD4              21       36034541     36079389
8442         SETD4              21       36034541     36079389
8443         SETD4              21       36034541     36079389
8444         SETD4              21       36034541     36079389
8445         SETD4              21       36034541     36079389
8446         SETD4              21       36034541     36079389
8447         SETD4              21       36034541     36079389
8448         SETD4              21       36034541     36079389
8449         SETD4              21       36034541     36079389
8450         SETD4              21       36034541     36079389
8451         SETD4              21       36034541     36079389
8452         SETD4              21       36034541     36079389
8453         SETD4              21       36034541     36079389
8454         SETD4              21       36034541     36079389
8455         SETD4              21       36034541     36079389
8456         SETD4              21       36034541     36079389
8457         SETD4              21       36034541     36079389
8458         SETD4              21       36034541     36079389
8459         SETD4              21       36034541     36079389
8460         SETD4              21       36034541     36079389
8461         SETD4              21       36034541     36079389
8462         SETD4              21       36034541     36079389
8463         SETD4              21       36034541     36079389
8464         SETD4              21       36034541     36079389
8465         SETD4              21       36034541     36079389
8466         SETD4              21       36034541     36079389
8467         SETD4              21       36034541     36079389
8468                            21       20597953     20598163
8469       RPS3AP1              21       20430443     20430762
8470       KRT18P2              21       20424949     20426206
8471       C1QBPP1              21       19759359     19760128
8472         MORC3              21       36320189     36386148
8473         MORC3              21       36320189     36386148
8474         MORC3              21       36320189     36386148
8475         MORC3              21       36320189     36386148
8476         MORC3              21       36320189     36386148
8477         MORC3              21       36320189     36386148
8478         MORC3              21       36320189     36386148
8479         MORC3              21       36320189     36386148
8480         MORC3              21       36320189     36386148
8481         MORC3              21       36320189     36386148
8482         MORC3              21       36320189     36386148
8483         MORC3              21       36320189     36386148
8484         MORC3              21       36320189     36386148
8485         MORC3              21       36320189     36386148
8486         MORC3              21       36320189     36386148
8487         MORC3              21       36320189     36386148
8488         MORC3              21       36320189     36386148
8489         MORC3              21       36320189     36386148
8490         MORC3              21       36320189     36386148
8491         MORC3              21       36320189     36386148
8492         MORC3              21       36320189     36386148
8493         MORC3              21       36320189     36386148
8494         MORC3              21       36320189     36386148
8495         MORC3              21       36320189     36386148
8496         MORC3              21       36320189     36386148
8497         MORC3              21       36320189     36386148
8498         MORC3              21       36320189     36386148
8499         MORC3              21       36320189     36386148
8500         MORC3              21       36320189     36386148
8501         MORC3              21       36320189     36386148
8502         MORC3              21       36320189     36386148
8503         MORC3              21       36320189     36386148
8504         MORC3              21       36320189     36386148
8505         MORC3              21       36320189     36386148
8506         MORC3              21       36320189     36386148
8507         MORC3              21       36320189     36386148
8508         MORC3              21       36320189     36386148
8509         MORC3              21       36320189     36386148
8510         MORC3              21       36320189     36386148
8511         MORC3              21       36320189     36386148
8512         MORC3              21       36320189     36386148
8513         MORC3              21       36320189     36386148
8514         MORC3              21       36320189     36386148
8515         MORC3              21       36320189     36386148
8516         MORC3              21       36320189     36386148
8517         MORC3              21       36320189     36386148
8518         MORC3              21       36320189     36386148
8519         MORC3              21       36320189     36386148
8520         MORC3              21       36320189     36386148
8521         MORC3              21       36320189     36386148
8522         MORC3              21       36320189     36386148
8523         MORC3              21       36320189     36386148
8524         MORC3              21       36320189     36386148
8525         MORC3              21       36320189     36386148
8526         MORC3              21       36320189     36386148
8527         MORC3              21       36320189     36386148
8528         MORC3              21       36320189     36386148
8529         MORC3              21       36320189     36386148
8530         MORC3              21       36320189     36386148
8531         MORC3              21       36320189     36386148
8532         MORC3              21       36320189     36386148
8533         MORC3              21       36320189     36386148
8534         MORC3              21       36320189     36386148
8535         MORC3              21       36320189     36386148
8536         MORC3              21       36320189     36386148
8537         MORC3              21       36320189     36386148
8538         MORC3              21       36320189     36386148
8539         MORC3              21       36320189     36386148
8540         MORC3              21       36320189     36386148
8541         MORC3              21       36320189     36386148
8542         MORC3              21       36320189     36386148
8543         MORC3              21       36320189     36386148
8544         MORC3              21       36320189     36386148
8545         MORC3              21       36320189     36386148
8546         MORC3              21       36320189     36386148
8547         MORC3              21       36320189     36386148
8548         MORC3              21       36320189     36386148
8549         MORC3              21       36320189     36386148
8550         MORC3              21       36320189     36386148
8551         MORC3              21       36320189     36386148
8552         MORC3              21       36320189     36386148
8553         MORC3              21       36320189     36386148
8554         MORC3              21       36320189     36386148
8555                            21       36360630     36362040
8556                            21       36360630     36362040
8557        CHAF1B              21       36385378     36419015
8558        CHAF1B              21       36385378     36419015
8559        CHAF1B              21       36385378     36419015
8560        CHAF1B              21       36385378     36419015
8561        CHAF1B              21       36385378     36419015
8562        CHAF1B              21       36385378     36419015
8563        CHAF1B              21       36385378     36419015
8564        CHAF1B              21       36385378     36419015
8565        CHAF1B              21       36385378     36419015
8566        CHAF1B              21       36385378     36419015
8567        CHAF1B              21       36385378     36419015
8568        CHAF1B              21       36385378     36419015
8569        CHAF1B              21       36385378     36419015
8570        CHAF1B              21       36385378     36419015
8571        CHAF1B              21       36385378     36419015
8572        CHAF1B              21       36385378     36419015
8573        CHAF1B              21       36385378     36419015
8574        CHAF1B              21       36385378     36419015
8575        CHAF1B              21       36385378     36419015
8576        CHAF1B              21       36385378     36419015
8577        CHAF1B              21       36385378     36419015
8578        CHAF1B              21       36385378     36419015
8579        CHAF1B              21       36385378     36419015
8580        CHAF1B              21       36385378     36419015
8581      PPP1R2P2              21       35887195     35887807
8582        RPL3P1              21       36168970     36170180
8583          RRP1              21       43789513     43805293
8584          RRP1              21       43789513     43805293
8585          RRP1              21       43789513     43805293
8586          RRP1              21       43789513     43805293
8587          RRP1              21       43789513     43805293
8588          RRP1              21       43789513     43805293
8589          RRP1              21       43789513     43805293
8590          RRP1              21       43789513     43805293
8591          RRP1              21       43789513     43805293
8592          RRP1              21       43789513     43805293
8593          RRP1              21       43789513     43805293
8594          RRP1              21       43789513     43805293
8595          RRP1              21       43789513     43805293
8596          RRP1              21       43789513     43805293
8597          RRP1              21       43789513     43805293
8598          RRP1              21       43789513     43805293
8599          RRP1              21       43789513     43805293
8600          RRP1              21       43789513     43805293
8601          RRP1              21       43789513     43805293
8602          RRP1              21       43789513     43805293
8603          RRP1              21       43789513     43805293
8604          RRP1              21       43789513     43805293
8605          RRP1              21       43789513     43805293
8606          RRP1              21       43789513     43805293
8607          RRP1              21       43789513     43805293
8608          RRP1              21       43789513     43805293
8609          RRP1              21       43789513     43805293
8610          RRP1              21       43789513     43805293
8611          RRP1              21       43789513     43805293
8612          RRP1              21       43789513     43805293
8613          RRP1              21       43789513     43805293
8614          RRP1              21       43789513     43805293
8615          RRP1              21       43789513     43805293
8616          RRP1              21       43789513     43805293
8617          RRP1              21       43789513     43805293
8618          RRP1              21       43789513     43805293
8619          RRP1              21       43789513     43805293
8620          RRP1              21       43789513     43805293
8621          RRP1              21       43789513     43805293
8622          RRP1              21       43789513     43805293
8623          RRP1              21       43789513     43805293
8624          RRP1              21       43789513     43805293
8625          RRP1              21       43789513     43805293
8626          RRP1              21       43789513     43805293
8627          RRP1              21       43789513     43805293
8628          RRP1              21       43789513     43805293
8629          RRP1              21       43789513     43805293
8630          RRP1              21       43789513     43805293
8631          RRP1              21       43789513     43805293
8632          RRP1              21       43789513     43805293
8633          RRP1              21       43789513     43805293
8634                            21       22134698     22136083
8635      TMPRSS15              21       18269116     18485879
8636      TMPRSS15              21       18269116     18485879
8637      TMPRSS15              21       18269116     18485879
8638      TMPRSS15              21       18269116     18485879
8639      TMPRSS15              21       18269116     18485879
8640      TMPRSS15              21       18269116     18485879
8641      TMPRSS15              21       18269116     18485879
8642      TMPRSS15              21       18269116     18485879
8643      TMPRSS15              21       18269116     18485879
8644      TMPRSS15              21       18269116     18485879
8645      TMPRSS15              21       18269116     18485879
8646      TMPRSS15              21       18269116     18485879
8647      TMPRSS15              21       18269116     18485879
8648      TMPRSS15              21       18269116     18485879
8649      TMPRSS15              21       18269116     18485879
8650      TMPRSS15              21       18269116     18485879
8651      TMPRSS15              21       18269116     18485879
8652      TMPRSS15              21       18269116     18485879
8653      TMPRSS15              21       18269116     18485879
8654      TMPRSS15              21       18269116     18485879
8655      TMPRSS15              21       18269116     18485879
8656      TMPRSS15              21       18269116     18485879
8657      TMPRSS15              21       18269116     18485879
8658      TMPRSS15              21       18269116     18485879
8659      TMPRSS15              21       18269116     18485879
8660      TMPRSS15              21       18269116     18485879
8661      TMPRSS15              21       18269116     18485879
8662      TMPRSS15              21       18269116     18485879
8663      TMPRSS15              21       18269116     18485879
8664      TMPRSS15              21       18269116     18485879
8665      TMPRSS15              21       18269116     18485879
8666      TMPRSS15              21       18269116     18485879
8667      TMPRSS15              21       18269116     18485879
8668      TMPRSS15              21       18269116     18485879
8669      TMPRSS15              21       18269116     18485879
8670      TMPRSS15              21       18269116     18485879
8671      TMPRSS15              21       18269116     18485879
8672     CHODL-AS1              21       17835016     17885608
8673     CHODL-AS1              21       17835016     17885608
8674     CHODL-AS1              21       17835016     17885608
8675         SYNJ1              21       32628759     32728048
8676         SYNJ1              21       32628759     32728048
8677         SYNJ1              21       32628759     32728048
8678         SYNJ1              21       32628759     32728048
8679         SYNJ1              21       32628759     32728048
8680         SYNJ1              21       32628759     32728048
8681         SYNJ1              21       32628759     32728048
8682         SYNJ1              21       32628759     32728048
8683         SYNJ1              21       32628759     32728048
8684         SYNJ1              21       32628759     32728048
8685         SYNJ1              21       32628759     32728048
8686         SYNJ1              21       32628759     32728048
8687         SYNJ1              21       32628759     32728048
8688         SYNJ1              21       32628759     32728048
8689         SYNJ1              21       32628759     32728048
8690         SYNJ1              21       32628759     32728048
8691         SYNJ1              21       32628759     32728048
8692         SYNJ1              21       32628759     32728048
8693         SYNJ1              21       32628759     32728048
8694         SYNJ1              21       32628759     32728048
8695         SYNJ1              21       32628759     32728048
8696         SYNJ1              21       32628759     32728048
8697         SYNJ1              21       32628759     32728048
8698         SYNJ1              21       32628759     32728048
8699         SYNJ1              21       32628759     32728048
8700         SYNJ1              21       32628759     32728048
8701         SYNJ1              21       32628759     32728048
8702         SYNJ1              21       32628759     32728048
8703         SYNJ1              21       32628759     32728048
8704         SYNJ1              21       32628759     32728048
8705         SYNJ1              21       32628759     32728048
8706         SYNJ1              21       32628759     32728048
8707         SYNJ1              21       32628759     32728048
8708         SYNJ1              21       32628759     32728048
8709         SYNJ1              21       32628759     32728048
8710         SYNJ1              21       32628759     32728048
8711         SYNJ1              21       32628759     32728048
8712         SYNJ1              21       32628759     32728048
8713         SYNJ1              21       32628759     32728048
8714         SYNJ1              21       32628759     32728048
8715         SYNJ1              21       32628759     32728048
8716         SYNJ1              21       32628759     32728048
8717         SYNJ1              21       32628759     32728048
8718         SYNJ1              21       32628759     32728048
8719         SYNJ1              21       32628759     32728048
8720         SYNJ1              21       32628759     32728048
8721         SYNJ1              21       32628759     32728048
8722         SYNJ1              21       32628759     32728048
8723         SYNJ1              21       32628759     32728048
8724         SYNJ1              21       32628759     32728048
8725         SYNJ1              21       32628759     32728048
8726         SYNJ1              21       32628759     32728048
8727         SYNJ1              21       32628759     32728048
8728         SYNJ1              21       32628759     32728048
8729         SYNJ1              21       32628759     32728048
8730         SYNJ1              21       32628759     32728048
8731         SYNJ1              21       32628759     32728048
8732         SYNJ1              21       32628759     32728048
8733         SYNJ1              21       32628759     32728048
8734         SYNJ1              21       32628759     32728048
8735         SYNJ1              21       32628759     32728048
8736         SYNJ1              21       32628759     32728048
8737         SYNJ1              21       32628759     32728048
8738         SYNJ1              21       32628759     32728048
8739         SYNJ1              21       32628759     32728048
8740         SYNJ1              21       32628759     32728048
8741         SYNJ1              21       32628759     32728048
8742         SYNJ1              21       32628759     32728048
8743         SYNJ1              21       32628759     32728048
8744         SYNJ1              21       32628759     32728048
8745         SYNJ1              21       32628759     32728048
8746         SYNJ1              21       32628759     32728048
8747         SYNJ1              21       32628759     32728048
8748         SYNJ1              21       32628759     32728048
8749         SYNJ1              21       32628759     32728048
8750         SYNJ1              21       32628759     32728048
8751         SYNJ1              21       32628759     32728048
8752         SYNJ1              21       32628759     32728048
8753         SYNJ1              21       32628759     32728048
8754         SYNJ1              21       32628759     32728048
8755         SYNJ1              21       32628759     32728048
8756         SYNJ1              21       32628759     32728048
8757         SYNJ1              21       32628759     32728048
8758         SYNJ1              21       32628759     32728048
8759         SYNJ1              21       32628759     32728048
8760         SYNJ1              21       32628759     32728048
8761         SYNJ1              21       32628759     32728048
8762         SYNJ1              21       32628759     32728048
8763         SYNJ1              21       32628759     32728048
8764         SYNJ1              21       32628759     32728048
8765         SYNJ1              21       32628759     32728048
8766         SYNJ1              21       32628759     32728048
8767         SYNJ1              21       32628759     32728048
8768         SYNJ1              21       32628759     32728048
8769         SYNJ1              21       32628759     32728048
8770         SYNJ1              21       32628759     32728048
8771         SYNJ1              21       32628759     32728048
8772         SYNJ1              21       32628759     32728048
8773         SYNJ1              21       32628759     32728048
8774         SYNJ1              21       32628759     32728048
8775         SYNJ1              21       32628759     32728048
8776         SYNJ1              21       32628759     32728048
8777         SYNJ1              21       32628759     32728048
8778         SYNJ1              21       32628759     32728048
8779         SYNJ1              21       32628759     32728048
8780         SYNJ1              21       32628759     32728048
8781         SYNJ1              21       32628759     32728048
8782         SYNJ1              21       32628759     32728048
8783         SYNJ1              21       32628759     32728048
8784         SYNJ1              21       32628759     32728048
8785         SYNJ1              21       32628759     32728048
8786         SYNJ1              21       32628759     32728048
8787         SYNJ1              21       32628759     32728048
8788         SYNJ1              21       32628759     32728048
8789         SYNJ1              21       32628759     32728048
8790         SYNJ1              21       32628759     32728048
8791         SYNJ1              21       32628759     32728048
8792         SYNJ1              21       32628759     32728048
8793         SYNJ1              21       32628759     32728048
8794         SYNJ1              21       32628759     32728048
8795         SYNJ1              21       32628759     32728048
8796         SYNJ1              21       32628759     32728048
8797         SYNJ1              21       32628759     32728048
8798         SYNJ1              21       32628759     32728048
8799         SYNJ1              21       32628759     32728048
8800         SYNJ1              21       32628759     32728048
8801         SYNJ1              21       32628759     32728048
8802         SYNJ1              21       32628759     32728048
8803         SYNJ1              21       32628759     32728048
8804         SYNJ1              21       32628759     32728048
8805         SYNJ1              21       32628759     32728048
8806         SYNJ1              21       32628759     32728048
8807         SYNJ1              21       32628759     32728048
8808         SYNJ1              21       32628759     32728048
8809         SYNJ1              21       32628759     32728048
8810         SYNJ1              21       32628759     32728048
8811         SYNJ1              21       32628759     32728048
8812         SYNJ1              21       32628759     32728048
8813         SYNJ1              21       32628759     32728048
8814         SYNJ1              21       32628759     32728048
8815         SYNJ1              21       32628759     32728048
8816         SYNJ1              21       32628759     32728048
8817         SYNJ1              21       32628759     32728048
8818         SYNJ1              21       32628759     32728048
8819         SYNJ1              21       32628759     32728048
8820         SYNJ1              21       32628759     32728048
8821         SYNJ1              21       32628759     32728048
8822         SYNJ1              21       32628759     32728048
8823         SYNJ1              21       32628759     32728048
8824         SYNJ1              21       32628759     32728048
8825         SYNJ1              21       32628759     32728048
8826         SYNJ1              21       32628759     32728048
8827         SYNJ1              21       32628759     32728048
8828         SYNJ1              21       32628759     32728048
8829         SYNJ1              21       32628759     32728048
8830         SYNJ1              21       32628759     32728048
8831         SYNJ1              21       32628759     32728048
8832         SYNJ1              21       32628759     32728048
8833         SYNJ1              21       32628759     32728048
8834         SYNJ1              21       32628759     32728048
8835         SYNJ1              21       32628759     32728048
8836         SYNJ1              21       32628759     32728048
8837         SYNJ1              21       32628759     32728048
8838         SYNJ1              21       32628759     32728048
8839         SYNJ1              21       32628759     32728048
8840         SYNJ1              21       32628759     32728048
8841         SYNJ1              21       32628759     32728048
8842         SYNJ1              21       32628759     32728048
8843         SYNJ1              21       32628759     32728048
8844         SYNJ1              21       32628759     32728048
8845         SYNJ1              21       32628759     32728048
8846         SYNJ1              21       32628759     32728048
8847         SYNJ1              21       32628759     32728048
8848         SYNJ1              21       32628759     32728048
8849         SYNJ1              21       32628759     32728048
8850         SYNJ1              21       32628759     32728048
8851         SYNJ1              21       32628759     32728048
8852         SYNJ1              21       32628759     32728048
8853         SYNJ1              21       32628759     32728048
8854         SYNJ1              21       32628759     32728048
8855         SYNJ1              21       32628759     32728048
8856         SYNJ1              21       32628759     32728048
8857         SYNJ1              21       32628759     32728048
8858         SYNJ1              21       32628759     32728048
8859         SYNJ1              21       32628759     32728048
8860         SYNJ1              21       32628759     32728048
8861         SYNJ1              21       32628759     32728048
8862         SYNJ1              21       32628759     32728048
8863         SYNJ1              21       32628759     32728048
8864         SYNJ1              21       32628759     32728048
8865         SYNJ1              21       32628759     32728048
8866         SYNJ1              21       32628759     32728048
8867         SYNJ1              21       32628759     32728048
8868         BRWD1              21       39184176     39321559
8869         BRWD1              21       39184176     39321559
8870         BRWD1              21       39184176     39321559
8871         BRWD1              21       39184176     39321559
8872         BRWD1              21       39184176     39321559
8873         BRWD1              21       39184176     39321559
8874         BRWD1              21       39184176     39321559
8875         BRWD1              21       39184176     39321559
8876         BRWD1              21       39184176     39321559
8877         BRWD1              21       39184176     39321559
8878         BRWD1              21       39184176     39321559
8879         BRWD1              21       39184176     39321559
8880         BRWD1              21       39184176     39321559
8881         BRWD1              21       39184176     39321559
8882         BRWD1              21       39184176     39321559
8883         BRWD1              21       39184176     39321559
8884         BRWD1              21       39184176     39321559
8885         BRWD1              21       39184176     39321559
8886         BRWD1              21       39184176     39321559
8887         BRWD1              21       39184176     39321559
8888         BRWD1              21       39184176     39321559
8889         BRWD1              21       39184176     39321559
8890         BRWD1              21       39184176     39321559
8891         BRWD1              21       39184176     39321559
8892         BRWD1              21       39184176     39321559
8893         BRWD1              21       39184176     39321559
8894         BRWD1              21       39184176     39321559
8895         BRWD1              21       39184176     39321559
8896         BRWD1              21       39184176     39321559
8897         BRWD1              21       39184176     39321559
8898         BRWD1              21       39184176     39321559
8899         BRWD1              21       39184176     39321559
8900         BRWD1              21       39184176     39321559
8901         BRWD1              21       39184176     39321559
8902         BRWD1              21       39184176     39321559
8903         BRWD1              21       39184176     39321559
8904         BRWD1              21       39184176     39321559
8905         BRWD1              21       39184176     39321559
8906         BRWD1              21       39184176     39321559
8907         BRWD1              21       39184176     39321559
8908         BRWD1              21       39184176     39321559
8909         BRWD1              21       39184176     39321559
8910         BRWD1              21       39184176     39321559
8911         BRWD1              21       39184176     39321559
8912         BRWD1              21       39184176     39321559
8913         BRWD1              21       39184176     39321559
8914         BRWD1              21       39184176     39321559
8915         BRWD1              21       39184176     39321559
8916         BRWD1              21       39184176     39321559
8917         BRWD1              21       39184176     39321559
8918         BRWD1              21       39184176     39321559
8919         BRWD1              21       39184176     39321559
8920         BRWD1              21       39184176     39321559
8921         BRWD1              21       39184176     39321559
8922         BRWD1              21       39184176     39321559
8923         BRWD1              21       39184176     39321559
8924         BRWD1              21       39184176     39321559
8925         BRWD1              21       39184176     39321559
8926         BRWD1              21       39184176     39321559
8927         BRWD1              21       39184176     39321559
8928         BRWD1              21       39184176     39321559
8929         BRWD1              21       39184176     39321559
8930         BRWD1              21       39184176     39321559
8931         BRWD1              21       39184176     39321559
8932         BRWD1              21       39184176     39321559
8933         BRWD1              21       39184176     39321559
8934         BRWD1              21       39184176     39321559
8935         BRWD1              21       39184176     39321559
8936         BRWD1              21       39184176     39321559
8937         BRWD1              21       39184176     39321559
8938         BRWD1              21       39184176     39321559
8939         BRWD1              21       39184176     39321559
8940         BRWD1              21       39184176     39321559
8941         BRWD1              21       39184176     39321559
8942         BRWD1              21       39184176     39321559
8943         BRWD1              21       39184176     39321559
8944         BRWD1              21       39184176     39321559
8945         BRWD1              21       39184176     39321559
8946         BRWD1              21       39184176     39321559
8947         BRWD1              21       39184176     39321559
8948         BRWD1              21       39184176     39321559
8949         BRWD1              21       39184176     39321559
8950         BRWD1              21       39184176     39321559
8951         BRWD1              21       39184176     39321559
8952         BRWD1              21       39184176     39321559
8953         BRWD1              21       39184176     39321559
8954         BRWD1              21       39184176     39321559
8955         BRWD1              21       39184176     39321559
8956         BRWD1              21       39184176     39321559
8957         BRWD1              21       39184176     39321559
8958         BRWD1              21       39184176     39321559
8959         BRWD1              21       39184176     39321559
8960         BRWD1              21       39184176     39321559
8961         BRWD1              21       39184176     39321559
8962         BRWD1              21       39184176     39321559
8963         BRWD1              21       39184176     39321559
8964         BRWD1              21       39184176     39321559
8965         BRWD1              21       39184176     39321559
8966         BRWD1              21       39184176     39321559
8967         BRWD1              21       39184176     39321559
8968         BRWD1              21       39184176     39321559
8969         BRWD1              21       39184176     39321559
8970         BRWD1              21       39184176     39321559
8971         BRWD1              21       39184176     39321559
8972         BRWD1              21       39184176     39321559
8973         BRWD1              21       39184176     39321559
8974         BRWD1              21       39184176     39321559
8975         BRWD1              21       39184176     39321559
8976         BRWD1              21       39184176     39321559
8977         BRWD1              21       39184176     39321559
8978         BRWD1              21       39184176     39321559
8979         BRWD1              21       39184176     39321559
8980         BRWD1              21       39184176     39321559
8981         BRWD1              21       39184176     39321559
8982         BRWD1              21       39184176     39321559
8983         BRWD1              21       39184176     39321559
8984         BRWD1              21       39184176     39321559
8985         BRWD1              21       39184176     39321559
8986         BRWD1              21       39184176     39321559
8987         BRWD1              21       39184176     39321559
8988         BRWD1              21       39184176     39321559
8989         BRWD1              21       39184176     39321559
8990         BRWD1              21       39184176     39321559
8991         BRWD1              21       39184176     39321559
8992         BRWD1              21       39184176     39321559
8993         BRWD1              21       39184176     39321559
8994         BRWD1              21       39184176     39321559
8995         BRWD1              21       39184176     39321559
8996         BRWD1              21       39184176     39321559
8997         BRWD1              21       39184176     39321559
8998         BRWD1              21       39184176     39321559
8999         BRWD1              21       39184176     39321559
9000         BRWD1              21       39184176     39321559
9001         BRWD1              21       39184176     39321559
9002         BRWD1              21       39184176     39321559
9003         BRWD1              21       39184176     39321559
9004         BRWD1              21       39184176     39321559
9005         BRWD1              21       39184176     39321559
9006         BRWD1              21       39184176     39321559
9007         BRWD1              21       39184176     39321559
9008         BRWD1              21       39184176     39321559
9009         BRWD1              21       39184176     39321559
9010         BRWD1              21       39184176     39321559
9011         BRWD1              21       39184176     39321559
9012         BRWD1              21       39184176     39321559
9013         BRWD1              21       39184176     39321559
9014         BRWD1              21       39184176     39321559
9015         BRWD1              21       39184176     39321559
9016         BRWD1              21       39184176     39321559
9017         BRWD1              21       39184176     39321559
9018         BRWD1              21       39184176     39321559
9019         BRWD1              21       39184176     39321559
9020         BRWD1              21       39184176     39321559
9021         BRWD1              21       39184176     39321559
9022         BRWD1              21       39184176     39321559
9023         BRWD1              21       39184176     39321559
9024         BRWD1              21       39184176     39321559
9025         BRWD1              21       39184176     39321559
9026         BRWD1              21       39184176     39321559
9027         BRWD1              21       39184176     39321559
9028         BRWD1              21       39184176     39321559
9029         BRWD1              21       39184176     39321559
9030         BRWD1              21       39184176     39321559
9031         BRWD1              21       39184176     39321559
9032         BRWD1              21       39184176     39321559
9033         BRWD1              21       39184176     39321559
9034         BRWD1              21       39184176     39321559
9035         BRWD1              21       39184176     39321559
9036         BRWD1              21       39184176     39321559
9037         BRWD1              21       39184176     39321559
9038         BRWD1              21       39184176     39321559
9039         BRWD1              21       39184176     39321559
9040         BRWD1              21       39184176     39321559
9041         BRWD1              21       39184176     39321559
9042         BRWD1              21       39184176     39321559
9043         BRWD1              21       39184176     39321559
9044         BRWD1              21       39184176     39321559
9045         BRWD1              21       39184176     39321559
9046         BRWD1              21       39184176     39321559
9047         BRWD1              21       39184176     39321559
9048         BRWD1              21       39184176     39321559
9049         BRWD1              21       39184176     39321559
9050         BRWD1              21       39184176     39321559
9051         BRWD1              21       39184176     39321559
9052         BRWD1              21       39184176     39321559
9053         BRWD1              21       39184176     39321559
9054         BRWD1              21       39184176     39321559
9055         BRWD1              21       39184176     39321559
9056         BRWD1              21       39184176     39321559
9057         BRWD1              21       39184176     39321559
9058         BRWD1              21       39184176     39321559
9059         BRWD1              21       39184176     39321559
9060         BRWD1              21       39184176     39321559
9061         BRWD1              21       39184176     39321559
9062         BRWD1              21       39184176     39321559
9063         BRWD1              21       39184176     39321559
9064         BRWD1              21       39184176     39321559
9065         BRWD1              21       39184176     39321559
9066         BRWD1              21       39184176     39321559
9067         BRWD1              21       39184176     39321559
9068         BRWD1              21       39184176     39321559
9069         BRWD1              21       39184176     39321559
9070         BRWD1              21       39184176     39321559
9071         BRWD1              21       39184176     39321559
9072         BRWD1              21       39184176     39321559
9073         BRWD1              21       39184176     39321559
9074         BRWD1              21       39184176     39321559
9075         BRWD1              21       39184176     39321559
9076         BRWD1              21       39184176     39321559
9077         BRWD1              21       39184176     39321559
9078         BRWD1              21       39184176     39321559
9079         BRWD1              21       39184176     39321559
9080         BRWD1              21       39184176     39321559
9081         BRWD1              21       39184176     39321559
9082         BRWD1              21       39184176     39321559
9083         BRWD1              21       39184176     39321559
9084         BRWD1              21       39184176     39321559
9085         BRWD1              21       39184176     39321559
9086         BRWD1              21       39184176     39321559
9087         BRWD1              21       39184176     39321559
9088         BRWD1              21       39184176     39321559
9089         BRWD1              21       39184176     39321559
9090         BRWD1              21       39184176     39321559
9091         BRWD1              21       39184176     39321559
9092         BRWD1              21       39184176     39321559
9093         BRWD1              21       39184176     39321559
9094         BRWD1              21       39184176     39321559
9095         BRWD1              21       39184176     39321559
9096         BRWD1              21       39184176     39321559
9097         BRWD1              21       39184176     39321559
9098         BRWD1              21       39184176     39321559
9099         BRWD1              21       39184176     39321559
9100         BRWD1              21       39184176     39321559
9101         BRWD1              21       39184176     39321559
9102         BRWD1              21       39184176     39321559
9103         BRWD1              21       39184176     39321559
9104         BRWD1              21       39184176     39321559
9105         BRWD1              21       39184176     39321559
9106         BRWD1              21       39184176     39321559
9107         BRWD1              21       39184176     39321559
9108         BRWD1              21       39184176     39321559
9109         BRWD1              21       39184176     39321559
9110         BRWD1              21       39184176     39321559
9111         BRWD1              21       39184176     39321559
9112         BRWD1              21       39184176     39321559
9113         BRWD1              21       39184176     39321559
9114         BRWD1              21       39184176     39321559
9115         BRWD1              21       39184176     39321559
9116         BRWD1              21       39184176     39321559
9117         BRWD1              21       39184176     39321559
9118         BRWD1              21       39184176     39321559
9119         BRWD1              21       39184176     39321559
9120         BRWD1              21       39184176     39321559
9121         BRWD1              21       39184176     39321559
9122         BRWD1              21       39184176     39321559
9123         BRWD1              21       39184176     39321559
9124         BRWD1              21       39184176     39321559
9125         BRWD1              21       39184176     39321559
9126         BRWD1              21       39184176     39321559
9127         BRWD1              21       39184176     39321559
9128     BRWD1-AS2              21       39313935     39314962
9129                            21       38863676     38956467
9130                            21       38863676     38956467
9131                            21       38863676     38956467
9132                            21       38863676     38956467
9133                            21       38863676     38956467
9134                            21       38863676     38956467
9135                            21       38863676     38956467
9136                            21       38863676     38956467
9137                            21       38863676     38956467
9138                            21       38863676     38956467
9139                            21       38863676     38956467
9140                            21       38863676     38956467
9141                            21       38863676     38956467
9142                            21       38863676     38956467
9143                            21       38863676     38956467
9144                            21       38863676     38956467
9145                            21       38863676     38956467
9146                            21       38863676     38956467
9147                            21       38863676     38956467
9148                            21       38863676     38956467
9149                            21       38863676     38956467
9150                            21       38863676     38956467
9151                            21       38863676     38956467
9152                            21       38863676     38956467
9153                            21       38863676     38956467
9154                            21       38863676     38956467
9155                            21       38863676     38956467
9156                            21       38846247     38848644
9157                            21       38846247     38848644
9158                            21       14591930     14658821
9159                            21       14591930     14658821
9160                            21       14591930     14658821
9161                            21       14591930     14658821
9162                            21       14591930     14658821
9163                            21       14591930     14658821
9164                            21       14591930     14658821
9165                            21       14591930     14658821
9166                            21       14591930     14658821
9167                            21       14591930     14658821
9168                            21       14591930     14658821
9169                            21       14591930     14658821
9170                            21       14591930     14658821
9171                            21       14591930     14658821
9172                            21       14591930     14658821
9173                            21       14591930     14658821
9174                            21       14591930     14658821
9175                            21       14591930     14658821
9176                            21       14591930     14658821
9177        RPS5P3              21       33481580     33482195
9178        DNMT3L              21       44246339     44262216
9179        DNMT3L              21       44246339     44262216
9180        DNMT3L              21       44246339     44262216
9181        DNMT3L              21       44246339     44262216
9182        DNMT3L              21       44246339     44262216
9183        DNMT3L              21       44246339     44262216
9184        DNMT3L              21       44246339     44262216
9185        DNMT3L              21       44246339     44262216
9186        DNMT3L              21       44246339     44262216
9187        DNMT3L              21       44246339     44262216
9188        DNMT3L              21       44246339     44262216
9189        DNMT3L              21       44246339     44262216
9190        DNMT3L              21       44246339     44262216
9191        DNMT3L              21       44246339     44262216
9192        DNMT3L              21       44246339     44262216
9193        DNMT3L              21       44246339     44262216
9194        DNMT3L              21       44246339     44262216
9195        DNMT3L              21       44246339     44262216
9196        DNMT3L              21       44246339     44262216
9197        DNMT3L              21       44246339     44262216
9198        DNMT3L              21       44246339     44262216
9199        DNMT3L              21       44246339     44262216
9200        DNMT3L              21       44246339     44262216
9201        DNMT3L              21       44246339     44262216
9202        DNMT3L              21       44246339     44262216
9203        DNMT3L              21       44246339     44262216
9204        DNMT3L              21       44246339     44262216
9205        DNMT3L              21       44246339     44262216
9206        DNMT3L              21       44246339     44262216
9207        DNMT3L              21       44246339     44262216
9208        DNMT3L              21       44246339     44262216
9209        DNMT3L              21       44246339     44262216
9210        DNMT3L              21       44246339     44262216
9211        DNMT3L              21       44246339     44262216
9212        DNMT3L              21       44246339     44262216
9213        DNMT3L              21       44246339     44262216
9214        DNMT3L              21       44246339     44262216
9215                            21       32790673     32791504
9216                            21        5155499      5165472
9217                            21        5155499      5165472
9218                            21        5155499      5165472
9219                            21        5155499      5165472
9220                            21        5155499      5165472
9221                            21        5155499      5165472
9222                            21       15493932     15496124
9223                            21       15493932     15496124
9224       CYCSP42              21       15490530     15490767
9225       COL18A1              21       45405137     45513720
9226       COL18A1              21       45405137     45513720
9227       COL18A1              21       45405137     45513720
9228       COL18A1              21       45405137     45513720
9229       COL18A1              21       45405137     45513720
9230       COL18A1              21       45405137     45513720
9231       COL18A1              21       45405137     45513720
9232       COL18A1              21       45405137     45513720
9233       COL18A1              21       45405137     45513720
9234       COL18A1              21       45405137     45513720
9235       COL18A1              21       45405137     45513720
9236       COL18A1              21       45405137     45513720
9237       COL18A1              21       45405137     45513720
9238       COL18A1              21       45405137     45513720
9239       COL18A1              21       45405137     45513720
9240       COL18A1              21       45405137     45513720
9241       COL18A1              21       45405137     45513720
9242       COL18A1              21       45405137     45513720
9243       COL18A1              21       45405137     45513720
9244       COL18A1              21       45405137     45513720
9245       COL18A1              21       45405137     45513720
9246       COL18A1              21       45405137     45513720
9247       COL18A1              21       45405137     45513720
9248       COL18A1              21       45405137     45513720
9249       COL18A1              21       45405137     45513720
9250       COL18A1              21       45405137     45513720
9251       COL18A1              21       45405137     45513720
9252       COL18A1              21       45405137     45513720
9253       COL18A1              21       45405137     45513720
9254       COL18A1              21       45405137     45513720
9255       COL18A1              21       45405137     45513720
9256       COL18A1              21       45405137     45513720
9257       COL18A1              21       45405137     45513720
9258       COL18A1              21       45405137     45513720
9259       COL18A1              21       45405137     45513720
9260       COL18A1              21       45405137     45513720
9261       COL18A1              21       45405137     45513720
9262       COL18A1              21       45405137     45513720
9263       COL18A1              21       45405137     45513720
9264       COL18A1              21       45405137     45513720
9265       COL18A1              21       45405137     45513720
9266       COL18A1              21       45405137     45513720
9267       COL18A1              21       45405137     45513720
9268       COL18A1              21       45405137     45513720
9269       COL18A1              21       45405137     45513720
9270       COL18A1              21       45405137     45513720
9271       COL18A1              21       45405137     45513720
9272       COL18A1              21       45405137     45513720
9273       COL18A1              21       45405137     45513720
9274       COL18A1              21       45405137     45513720
9275       COL18A1              21       45405137     45513720
9276       COL18A1              21       45405137     45513720
9277       COL18A1              21       45405137     45513720
9278       COL18A1              21       45405137     45513720
9279       COL18A1              21       45405137     45513720
9280       COL18A1              21       45405137     45513720
9281       COL18A1              21       45405137     45513720
9282       COL18A1              21       45405137     45513720
9283       COL18A1              21       45405137     45513720
9284       COL18A1              21       45405137     45513720
9285       COL18A1              21       45405137     45513720
9286       COL18A1              21       45405137     45513720
9287       COL18A1              21       45405137     45513720
9288       COL18A1              21       45405137     45513720
9289       COL18A1              21       45405137     45513720
9290       COL18A1              21       45405137     45513720
9291       COL18A1              21       45405137     45513720
9292       COL18A1              21       45405137     45513720
9293       COL18A1              21       45405137     45513720
9294       COL18A1              21       45405137     45513720
9295       COL18A1              21       45405137     45513720
9296       COL18A1              21       45405137     45513720
9297       COL18A1              21       45405137     45513720
9298       COL18A1              21       45405137     45513720
9299       COL18A1              21       45405137     45513720
9300       COL18A1              21       45405137     45513720
9301       COL18A1              21       45405137     45513720
9302       COL18A1              21       45405137     45513720
9303       COL18A1              21       45405137     45513720
9304       COL18A1              21       45405137     45513720
9305       COL18A1              21       45405137     45513720
9306       COL18A1              21       45405137     45513720
9307       COL18A1              21       45405137     45513720
9308       COL18A1              21       45405137     45513720
9309       COL18A1              21       45405137     45513720
9310       COL18A1              21       45405137     45513720
9311       COL18A1              21       45405137     45513720
9312       COL18A1              21       45405137     45513720
9313       COL18A1              21       45405137     45513720
9314       COL18A1              21       45405137     45513720
9315       COL18A1              21       45405137     45513720
9316       COL18A1              21       45405137     45513720
9317       COL18A1              21       45405137     45513720
9318       COL18A1              21       45405137     45513720
9319       COL18A1              21       45405137     45513720
9320       COL18A1              21       45405137     45513720
9321       COL18A1              21       45405137     45513720
9322       COL18A1              21       45405137     45513720
9323       COL18A1              21       45405137     45513720
9324       COL18A1              21       45405137     45513720
9325       COL18A1              21       45405137     45513720
9326       COL18A1              21       45405137     45513720
9327       COL18A1              21       45405137     45513720
9328       COL18A1              21       45405137     45513720
9329       COL18A1              21       45405137     45513720
9330       COL18A1              21       45405137     45513720
9331       COL18A1              21       45405137     45513720
9332       COL18A1              21       45405137     45513720
9333       COL18A1              21       45405137     45513720
9334       COL18A1              21       45405137     45513720
9335       COL18A1              21       45405137     45513720
9336       COL18A1              21       45405137     45513720
9337       COL18A1              21       45405137     45513720
9338       COL18A1              21       45405137     45513720
9339       COL18A1              21       45405137     45513720
9340       COL18A1              21       45405137     45513720
9341       COL18A1              21       45405137     45513720
9342       COL18A1              21       45405137     45513720
9343       COL18A1              21       45405137     45513720
9344       COL18A1              21       45405137     45513720
9345       COL18A1              21       45405137     45513720
9346       COL18A1              21       45405137     45513720
9347       COL18A1              21       45405137     45513720
9348       COL18A1              21       45405137     45513720
9349       COL18A1              21       45405137     45513720
9350       COL18A1              21       45405137     45513720
9351       COL18A1              21       45405137     45513720
9352       COL18A1              21       45405137     45513720
9353       COL18A1              21       45405137     45513720
9354       COL18A1              21       45405137     45513720
9355       COL18A1              21       45405137     45513720
9356       COL18A1              21       45405137     45513720
9357       COL18A1              21       45405137     45513720
9358       COL18A1              21       45405137     45513720
9359       COL18A1              21       45405137     45513720
9360       COL18A1              21       45405137     45513720
9361       COL18A1              21       45405137     45513720
9362       COL18A1              21       45405137     45513720
9363       COL18A1              21       45405137     45513720
9364       COL18A1              21       45405137     45513720
9365       COL18A1              21       45405137     45513720
9366       COL18A1              21       45405137     45513720
9367       COL18A1              21       45405137     45513720
9368       COL18A1              21       45405137     45513720
9369       COL18A1              21       45405137     45513720
9370       COL18A1              21       45405137     45513720
9371       COL18A1              21       45405137     45513720
9372       COL18A1              21       45405137     45513720
9373       COL18A1              21       45405137     45513720
9374       COL18A1              21       45405137     45513720
9375       COL18A1              21       45405137     45513720
9376       COL18A1              21       45405137     45513720
9377       COL18A1              21       45405137     45513720
9378       COL18A1              21       45405137     45513720
9379       COL18A1              21       45405137     45513720
9380       COL18A1              21       45405137     45513720
9381       COL18A1              21       45405137     45513720
9382       COL18A1              21       45405137     45513720
9383       COL18A1              21       45405137     45513720
9384       COL18A1              21       45405137     45513720
9385       COL18A1              21       45405137     45513720
9386       COL18A1              21       45405137     45513720
9387       COL18A1              21       45405137     45513720
9388       COL18A1              21       45405137     45513720
9389       COL18A1              21       45405137     45513720
9390       COL18A1              21       45405137     45513720
9391     LINC01700              21       38974429     38977774
9392     LINC01700              21       38974429     38977774
9393     LINC01700              21       38974429     38977774
9394    MIS18A-AS1              21       32277863     32280988
9395    MIS18A-AS1              21       32277863     32280988
9396    MIS18A-AS1              21       32277863     32280988
9397       RPL31P1              21       43551229     43551600
9398     LINC01674              21       13546033     13558461
9399     LINC01674              21       13546033     13558461
9400     LINC01674              21       13546033     13558461
9401     LINC01674              21       13546033     13558461
9402        VN1R8P              21       13476371     13477263
9403        FGF7P2              21       13349265     13350648
9404        FGF7P2              21       13349265     13350648
9405        POFUT2              21       45263928     45287898
9406        POFUT2              21       45263928     45287898
9407        POFUT2              21       45263928     45287898
9408        POFUT2              21       45263928     45287898
9409        POFUT2              21       45263928     45287898
9410        POFUT2              21       45263928     45287898
9411        POFUT2              21       45263928     45287898
9412        POFUT2              21       45263928     45287898
9413        POFUT2              21       45263928     45287898
9414        POFUT2              21       45263928     45287898
9415        POFUT2              21       45263928     45287898
9416        POFUT2              21       45263928     45287898
9417        POFUT2              21       45263928     45287898
9418        POFUT2              21       45263928     45287898
9419        POFUT2              21       45263928     45287898
9420        POFUT2              21       45263928     45287898
9421        POFUT2              21       45263928     45287898
9422        POFUT2              21       45263928     45287898
9423        POFUT2              21       45263928     45287898
9424        POFUT2              21       45263928     45287898
9425        POFUT2              21       45263928     45287898
9426        POFUT2              21       45263928     45287898
9427        POFUT2              21       45263928     45287898
9428        POFUT2              21       45263928     45287898
9429        POFUT2              21       45263928     45287898
9430        POFUT2              21       45263928     45287898
9431        POFUT2              21       45263928     45287898
9432        POFUT2              21       45263928     45287898
9433        POFUT2              21       45263928     45287898
9434        POFUT2              21       45263928     45287898
9435        POFUT2              21       45263928     45287898
9436        POFUT2              21       45263928     45287898
9437        POFUT2              21       45263928     45287898
9438        POFUT2              21       45263928     45287898
9439        POFUT2              21       45263928     45287898
9440        POFUT2              21       45263928     45287898
9441        POFUT2              21       45263928     45287898
9442        POFUT2              21       45263928     45287898
9443        POFUT2              21       45263928     45287898
9444        POFUT2              21       45263928     45287898
9445        POFUT2              21       45263928     45287898
9446        POFUT2              21       45263928     45287898
9447        POFUT2              21       45263928     45287898
9448        POFUT2              21       45263928     45287898
9449        POFUT2              21       45263928     45287898
9450        POFUT2              21       45263928     45287898
9451        POFUT2              21       45263928     45287898
9452        POFUT2              21       45263928     45287898
9453        POFUT2              21       45263928     45287898
9454        POFUT2              21       45263928     45287898
9455        POFUT2              21       45263928     45287898
9456        POFUT2              21       45263928     45287898
9457        POFUT2              21       45263928     45287898
9458        POFUT2              21       45263928     45287898
9459        POFUT2              21       45263928     45287898
9460        POFUT2              21       45263928     45287898
9461        POFUT2              21       45263928     45287898
9462        POFUT2              21       45263928     45287898
9463        POFUT2              21       45263928     45287898
9464        POFUT2              21       45263928     45287898
9465        POFUT2              21       45263928     45287898
9466        POFUT2              21       45263928     45287898
9467        POFUT2              21       45263928     45287898
9468        POFUT2              21       45263928     45287898
9469        POFUT2              21       45263928     45287898
9470        POFUT2              21       45263928     45287898
9471        POFUT2              21       45263928     45287898
9472        POFUT2              21       45263928     45287898
9473        POFUT2              21       45263928     45287898
9474        POFUT2              21       45263928     45287898
9475        POFUT2              21       45263928     45287898
9476        POFUT2              21       45263928     45287898
9477        POFUT2              21       45263928     45287898
9478        POFUT2              21       45263928     45287898
9479        POFUT2              21       45263928     45287898
9480        POFUT2              21       45263928     45287898
9481        POFUT2              21       45263928     45287898
9482        POFUT2              21       45263928     45287898
9483        POFUT2              21       45263928     45287898
9484        POFUT2              21       45263928     45287898
9485        POFUT2              21       45263928     45287898
9486        POFUT2              21       45263928     45287898
9487        POFUT2              21       45263928     45287898
9488        POFUT2              21       45263928     45287898
9489   IGHV1OR21-1              21       10649400     10649835
9490   IGHV1OR21-1              21       10649400     10649835
9491        ADARB1              21       45073853     45226560
9492        ADARB1              21       45073853     45226560
9493        ADARB1              21       45073853     45226560
9494        ADARB1              21       45073853     45226560
9495        ADARB1              21       45073853     45226560
9496        ADARB1              21       45073853     45226560
9497        ADARB1              21       45073853     45226560
9498        ADARB1              21       45073853     45226560
9499        ADARB1              21       45073853     45226560
9500        ADARB1              21       45073853     45226560
9501        ADARB1              21       45073853     45226560
9502        ADARB1              21       45073853     45226560
9503        ADARB1              21       45073853     45226560
9504        ADARB1              21       45073853     45226560
9505        ADARB1              21       45073853     45226560
9506        ADARB1              21       45073853     45226560
9507        ADARB1              21       45073853     45226560
9508        ADARB1              21       45073853     45226560
9509        ADARB1              21       45073853     45226560
9510        ADARB1              21       45073853     45226560
9511        ADARB1              21       45073853     45226560
9512        ADARB1              21       45073853     45226560
9513        ADARB1              21       45073853     45226560
9514        ADARB1              21       45073853     45226560
9515        ADARB1              21       45073853     45226560
9516        ADARB1              21       45073853     45226560
9517        ADARB1              21       45073853     45226560
9518        ADARB1              21       45073853     45226560
9519        ADARB1              21       45073853     45226560
9520        ADARB1              21       45073853     45226560
9521        ADARB1              21       45073853     45226560
9522        ADARB1              21       45073853     45226560
9523        ADARB1              21       45073853     45226560
9524        ADARB1              21       45073853     45226560
9525        ADARB1              21       45073853     45226560
9526        ADARB1              21       45073853     45226560
9527        ADARB1              21       45073853     45226560
9528        ADARB1              21       45073853     45226560
9529        ADARB1              21       45073853     45226560
9530        ADARB1              21       45073853     45226560
9531        ADARB1              21       45073853     45226560
9532        ADARB1              21       45073853     45226560
9533        ADARB1              21       45073853     45226560
9534        ADARB1              21       45073853     45226560
9535        ADARB1              21       45073853     45226560
9536        ADARB1              21       45073853     45226560
9537        ADARB1              21       45073853     45226560
9538        ADARB1              21       45073853     45226560
9539        ADARB1              21       45073853     45226560
9540        ADARB1              21       45073853     45226560
9541        ADARB1              21       45073853     45226560
9542        ADARB1              21       45073853     45226560
9543        ADARB1              21       45073853     45226560
9544        ADARB1              21       45073853     45226560
9545        ADARB1              21       45073853     45226560
9546        ADARB1              21       45073853     45226560
9547        ADARB1              21       45073853     45226560
9548        ADARB1              21       45073853     45226560
9549        ADARB1              21       45073853     45226560
9550        ADARB1              21       45073853     45226560
9551        ADARB1              21       45073853     45226560
9552        ADARB1              21       45073853     45226560
9553        ADARB1              21       45073853     45226560
9554        ADARB1              21       45073853     45226560
9555        ADARB1              21       45073853     45226560
9556        ADARB1              21       45073853     45226560
9557        ADARB1              21       45073853     45226560
9558        ADARB1              21       45073853     45226560
9559        ADARB1              21       45073853     45226560
9560        ADARB1              21       45073853     45226560
9561        ADARB1              21       45073853     45226560
9562        ADARB1              21       45073853     45226560
9563        ADARB1              21       45073853     45226560
9564        ADARB1              21       45073853     45226560
9565        ADARB1              21       45073853     45226560
9566        ADARB1              21       45073853     45226560
9567        ADARB1              21       45073853     45226560
9568        ADARB1              21       45073853     45226560
9569        ADARB1              21       45073853     45226560
9570        ADARB1              21       45073853     45226560
9571        ADARB1              21       45073853     45226560
9572        ADARB1              21       45073853     45226560
9573        ADARB1              21       45073853     45226560
9574        ADARB1              21       45073853     45226560
9575        ADARB1              21       45073853     45226560
9576        ADARB1              21       45073853     45226560
9577        ADARB1              21       45073853     45226560
9578        ADARB1              21       45073853     45226560
9579        ADARB1              21       45073853     45226560
9580        ADARB1              21       45073853     45226560
9581        ADARB1              21       45073853     45226560
9582        ADARB1              21       45073853     45226560
9583        ADARB1              21       45073853     45226560
9584        ADARB1              21       45073853     45226560
9585        ADARB1              21       45073853     45226560
9586        ADARB1              21       45073853     45226560
9587        ADARB1              21       45073853     45226560
9588        ADARB1              21       45073853     45226560
9589        ADARB1              21       45073853     45226560
9590        ADARB1              21       45073853     45226560
9591        ADARB1              21       45073853     45226560
9592        ADARB1              21       45073853     45226560
9593        ADARB1              21       45073853     45226560
9594        ADARB1              21       45073853     45226560
9595        ADARB1              21       45073853     45226560
9596        ADARB1              21       45073853     45226560
9597        ADARB1              21       45073853     45226560
9598        ADARB1              21       45073853     45226560
9599        ADARB1              21       45073853     45226560
9600        ADARB1              21       45073853     45226560
9601        ADARB1              21       45073853     45226560
9602        ADARB1              21       45073853     45226560
9603        ADARB1              21       45073853     45226560
9604        ADARB1              21       45073853     45226560
9605        ADARB1              21       45073853     45226560
9606        ADARB1              21       45073853     45226560
9607        ADARB1              21       45073853     45226560
9608        ADARB1              21       45073853     45226560
9609        ADARB1              21       45073853     45226560
9610        ADARB1              21       45073853     45226560
9611        ADARB1              21       45073853     45226560
9612        ADARB1              21       45073853     45226560
9613        ADARB1              21       45073853     45226560
9614        ADARB1              21       45073853     45226560
9615        ADARB1              21       45073853     45226560
9616       FAM207A              21       44940010     44976989
9617       FAM207A              21       44940010     44976989
9618       FAM207A              21       44940010     44976989
9619       FAM207A              21       44940010     44976989
9620       FAM207A              21       44940010     44976989
9621       FAM207A              21       44940010     44976989
9622       FAM207A              21       44940010     44976989
9623       FAM207A              21       44940010     44976989
9624       FAM207A              21       44940010     44976989
9625       FAM207A              21       44940010     44976989
9626       FAM207A              21       44940010     44976989
9627       FAM207A              21       44940010     44976989
9628       FAM207A              21       44940010     44976989
9629       FAM207A              21       44940010     44976989
9630       FAM207A              21       44940010     44976989
9631       FAM207A              21       44940010     44976989
9632       FAM207A              21       44940010     44976989
9633       FAM207A              21       44940010     44976989
9634       FAM207A              21       44940010     44976989
9635       FAM207A              21       44940010     44976989
9636       FAM207A              21       44940010     44976989
9637       FAM207A              21       44940010     44976989
9638       FAM207A              21       44940010     44976989
9639       FAM207A              21       44940010     44976989
9640     KRTAP19-4              21       30496824     30497133
9641     KRTAP19-2              21       30487057     30487436
9642          GART              21       33503931     33543491
9643          GART              21       33503931     33543491
9644          GART              21       33503931     33543491
9645          GART              21       33503931     33543491
9646          GART              21       33503931     33543491
9647          GART              21       33503931     33543491
9648          GART              21       33503931     33543491
9649          GART              21       33503931     33543491
9650          GART              21       33503931     33543491
9651          GART              21       33503931     33543491
9652          GART              21       33503931     33543491
9653          GART              21       33503931     33543491
9654          GART              21       33503931     33543491
9655          GART              21       33503931     33543491
9656          GART              21       33503931     33543491
9657          GART              21       33503931     33543491
9658          GART              21       33503931     33543491
9659          GART              21       33503931     33543491
9660          GART              21       33503931     33543491
9661          GART              21       33503931     33543491
9662          GART              21       33503931     33543491
9663          GART              21       33503931     33543491
9664          GART              21       33503931     33543491
9665          GART              21       33503931     33543491
9666          GART              21       33503931     33543491
9667          GART              21       33503931     33543491
9668          GART              21       33503931     33543491
9669          GART              21       33503931     33543491
9670          GART              21       33503931     33543491
9671          GART              21       33503931     33543491
9672          GART              21       33503931     33543491
9673          GART              21       33503931     33543491
9674          GART              21       33503931     33543491
9675          GART              21       33503931     33543491
9676          GART              21       33503931     33543491
9677          GART              21       33503931     33543491
9678          GART              21       33503931     33543491
9679          GART              21       33503931     33543491
9680          GART              21       33503931     33543491
9681          GART              21       33503931     33543491
9682          GART              21       33503931     33543491
9683          GART              21       33503931     33543491
9684          GART              21       33503931     33543491
9685          GART              21       33503931     33543491
9686          GART              21       33503931     33543491
9687          GART              21       33503931     33543491
9688          GART              21       33503931     33543491
9689          GART              21       33503931     33543491
9690          GART              21       33503931     33543491
9691          GART              21       33503931     33543491
9692          GART              21       33503931     33543491
9693          GART              21       33503931     33543491
9694          GART              21       33503931     33543491
9695          GART              21       33503931     33543491
9696          GART              21       33503931     33543491
9697          GART              21       33503931     33543491
9698          GART              21       33503931     33543491
9699          GART              21       33503931     33543491
9700          GART              21       33503931     33543491
9701          GART              21       33503931     33543491
9702          GART              21       33503931     33543491
9703          GART              21       33503931     33543491
9704          GART              21       33503931     33543491
9705          GART              21       33503931     33543491
9706          GART              21       33503931     33543491
9707          GART              21       33503931     33543491
9708          GART              21       33503931     33543491
9709          GART              21       33503931     33543491
9710          GART              21       33503931     33543491
9711          GART              21       33503931     33543491
9712          GART              21       33503931     33543491
9713          GART              21       33503931     33543491
9714          GART              21       33503931     33543491
9715          GART              21       33503931     33543491
9716          GART              21       33503931     33543491
9717          GART              21       33503931     33543491
9718          GART              21       33503931     33543491
9719          GART              21       33503931     33543491
9720          GART              21       33503931     33543491
9721          GART              21       33503931     33543491
9722          GART              21       33503931     33543491
9723          GART              21       33503931     33543491
9724          GART              21       33503931     33543491
9725          GART              21       33503931     33543491
9726          GART              21       33503931     33543491
9727          GART              21       33503931     33543491
9728          GART              21       33503931     33543491
9729          GART              21       33503931     33543491
9730          GART              21       33503931     33543491
9731          GART              21       33503931     33543491
9732          GART              21       33503931     33543491
9733          GART              21       33503931     33543491
9734          GART              21       33503931     33543491
9735          GART              21       33503931     33543491
9736          GART              21       33503931     33543491
9737          GART              21       33503931     33543491
9738          GART              21       33503931     33543491
9739          GART              21       33503931     33543491
9740          GART              21       33503931     33543491
9741          GART              21       33503931     33543491
9742          GART              21       33503931     33543491
9743          GART              21       33503931     33543491
9744          GART              21       33503931     33543491
9745          GART              21       33503931     33543491
9746          GART              21       33503931     33543491
9747          GART              21       33503931     33543491
9748          GART              21       33503931     33543491
9749          GART              21       33503931     33543491
9750          GART              21       33503931     33543491
9751          GART              21       33503931     33543491
9752          GART              21       33503931     33543491
9753          GART              21       33503931     33543491
9754          GART              21       33503931     33543491
9755          GART              21       33503931     33543491
9756          GART              21       33503931     33543491
9757          GART              21       33503931     33543491
9758          GART              21       33503931     33543491
9759          GART              21       33503931     33543491
9760          GART              21       33503931     33543491
9761          GART              21       33503931     33543491
9762          GART              21       33503931     33543491
9763          GART              21       33503931     33543491
9764          GART              21       33503931     33543491
9765          GART              21       33503931     33543491
9766          GART              21       33503931     33543491
9767          GART              21       33503931     33543491
9768          GART              21       33503931     33543491
9769          GART              21       33503931     33543491
9770          GART              21       33503931     33543491
9771          GART              21       33503931     33543491
9772          GART              21       33503931     33543491
9773          GART              21       33503931     33543491
9774          GART              21       33503931     33543491
9775          GART              21       33503931     33543491
9776          GART              21       33503931     33543491
9777          GART              21       33503931     33543491
9778          GART              21       33503931     33543491
9779          GART              21       33503931     33543491
9780          GART              21       33503931     33543491
9781          GART              21       33503931     33543491
9782          GART              21       33503931     33543491
9783          GART              21       33503931     33543491
9784          GART              21       33503931     33543491
9785          GART              21       33503931     33543491
9786          GART              21       33503931     33543491
9787          GART              21       33503931     33543491
9788          GART              21       33503931     33543491
9789          GART              21       33503931     33543491
9790          GART              21       33503931     33543491
9791          GART              21       33503931     33543491
9792          GART              21       33503931     33543491
9793          GART              21       33503931     33543491
9794          GART              21       33503931     33543491
9795          GART              21       33503931     33543491
9796          GART              21       33503931     33543491
9797      GAPDHP14              21       29222321     29223257
9798        KCNE1B              21        7816675      7829926
9799        KCNE1B              21        7816675      7829926
9800        KCNE1B              21        7816675      7829926
9801        KCNE1B              21        7816675      7829926
9802        KCNE1B              21        7816675      7829926
9803        KCNE1B              21        7816675      7829926
9804        KCNE1B              21        7816675      7829926
9805        KCNE1B              21        7816675      7829926
9806        KCNE1B              21        7816675      7829926
9807        KCNE1B              21        7816675      7829926
9808        KCNE1B              21        7816675      7829926
9809          AIRE              21       44285838     44298648
9810          AIRE              21       44285838     44298648
9811          AIRE              21       44285838     44298648
9812          AIRE              21       44285838     44298648
9813          AIRE              21       44285838     44298648
9814          AIRE              21       44285838     44298648
9815          AIRE              21       44285838     44298648
9816          AIRE              21       44285838     44298648
9817          AIRE              21       44285838     44298648
9818          AIRE              21       44285838     44298648
9819          AIRE              21       44285838     44298648
9820          AIRE              21       44285838     44298648
9821          AIRE              21       44285838     44298648
9822          AIRE              21       44285838     44298648
9823          AIRE              21       44285838     44298648
9824          AIRE              21       44285838     44298648
9825          AIRE              21       44285838     44298648
9826          AIRE              21       44285838     44298648
9827          AIRE              21       44285838     44298648
9828          AIRE              21       44285838     44298648
9829          AIRE              21       44285838     44298648
9830          AIRE              21       44285838     44298648
9831          AIRE              21       44285838     44298648
9832          AIRE              21       44285838     44298648
9833          AIRE              21       44285838     44298648
9834          AIRE              21       44285838     44298648
9835          AIRE              21       44285838     44298648
9836          AIRE              21       44285838     44298648
9837          AIRE              21       44285838     44298648
9838          AIRE              21       44285838     44298648
9839          AIRE              21       44285838     44298648
9840          AIRE              21       44285838     44298648
9841          AIRE              21       44285838     44298648
9842          AIRE              21       44285838     44298648
9843          AIRE              21       44285838     44298648
9844          AIRE              21       44285838     44298648
9845          AIRE              21       44285838     44298648
9846          AIRE              21       44285838     44298648
9847          AIRE              21       44285838     44298648
9848          AIRE              21       44285838     44298648
9849          AIRE              21       44285838     44298648
9850          AIRE              21       44285838     44298648
9851          AIRE              21       44285838     44298648
9852          AIRE              21       44285838     44298648
9853          AIRE              21       44285838     44298648
9854          AIRE              21       44285838     44298648
9855          AIRE              21       44285838     44298648
9856          AIRE              21       44285838     44298648
9857          AIRE              21       44285838     44298648
9858          AIRE              21       44285838     44298648
9859          AIRE              21       44285838     44298648
9860          AIRE              21       44285838     44298648
9861          AIRE              21       44285838     44298648
9862          AIRE              21       44285838     44298648
9863          AIRE              21       44285838     44298648
9864           WRB              21       39380244     39428528
9865           WRB              21       39380244     39428528
9866           WRB              21       39380244     39428528
9867           WRB              21       39380244     39428528
9868           WRB              21       39380244     39428528
9869           WRB              21       39380244     39428528
9870           WRB              21       39380244     39428528
9871           WRB              21       39380244     39428528
9872           WRB              21       39380244     39428528
9873           WRB              21       39380244     39428528
9874           WRB              21       39380244     39428528
9875           WRB              21       39380244     39428528
9876           WRB              21       39380244     39428528
9877           WRB              21       39380244     39428528
9878           WRB              21       39380244     39428528
9879           WRB              21       39380244     39428528
9880           WRB              21       39380244     39428528
9881           WRB              21       39380244     39428528
9882           WRB              21       39380244     39428528
9883           WRB              21       39380244     39428528
9884           WRB              21       39380244     39428528
9885           WRB              21       39380244     39428528
9886           WRB              21       39380244     39428528
9887           WRB              21       39380244     39428528
9888           WRB              21       39380244     39428528
9889           WRB              21       39380244     39428528
9890           WRB              21       39380244     39428528
9891           WRB              21       39380244     39428528
9892           WRB              21       39380244     39428528
9893           WRB              21       39380244     39428528
9894           WRB              21       39380244     39428528
9895           WRB              21       39380244     39428528
9896           WRB              21       39380244     39428528
9897           WRB              21       39380244     39428528
9898           WRB              21       39380244     39428528
9899           WRB              21       39380244     39428528
9900           WRB              21       39380244     39428528
9901           WRB              21       39380244     39428528
9902           WRB              21       39380244     39428528
9903           WRB              21       39380244     39428528
9904           WRB              21       39380244     39428528
9905           WRB              21       39380244     39428528
9906           WRB              21       39380244     39428528
9907           WRB              21       39380244     39428528
9908           WRB              21       39380244     39428528
9909           WRB              21       39380244     39428528
9910           WRB              21       39380244     39428528
9911           WRB              21       39380244     39428528
9912           WRB              21       39380244     39428528
9913           WRB              21       39380244     39428528
9914           WRB              21       39380244     39428528
9915                            21        6507017      6507389
9916        IL10RB              21       33266358     33310187
9917        IL10RB              21       33266358     33310187
9918        IL10RB              21       33266358     33310187
9919        IL10RB              21       33266358     33310187
9920        IL10RB              21       33266358     33310187
9921        IL10RB              21       33266358     33310187
9922        IL10RB              21       33266358     33310187
9923        IL10RB              21       33266358     33310187
9924        IL10RB              21       33266358     33310187
9925        IL10RB              21       33266358     33310187
9926        IL10RB              21       33266358     33310187
9927        IL10RB              21       33266358     33310187
9928        IL10RB              21       33266358     33310187
9929        IL10RB              21       33266358     33310187
9930        IL10RB              21       33266358     33310187
9931        IL10RB              21       33266358     33310187
9932        IL10RB              21       33266358     33310187
9933        IL10RB              21       33266358     33310187
9934        IL10RB              21       33266358     33310187
9935        IL10RB              21       33266358     33310187
9936        IL10RB              21       33266358     33310187
9937        IL10RB              21       33266358     33310187
9938        IL10RB              21       33266358     33310187
9939        IL10RB              21       33266358     33310187
9940        IL10RB              21       33266358     33310187
9941        IL10RB              21       33266358     33310187
9942        IL10RB              21       33266358     33310187
9943        IL10RB              21       33266358     33310187
9944        IL10RB              21       33266358     33310187
9945        IL10RB              21       33266358     33310187
9946        IL10RB              21       33266358     33310187
9947        IL10RB              21       33266358     33310187
9948        IL10RB              21       33266358     33310187
9949                            21        8393419      8394341
9950                            21        8210384      8211306
9951                            21        7768884      7770591
9952                            21       44244545     44244993
9953                            21        7135334      7137789
9954                            21        6272135      6276532
9955                            21        6272135      6276532
9956                            21        6272135      6276532
9957                            21        6272135      6276532
9958                            21        6272135      6276532
9959                            21        6272135      6276532
9960                            21        6272135      6276532
9961                            21        6272135      6276532
9962                            21        6272135      6276532
9963                            21        6272135      6276532
9964                            21       36430360     36481070
9965                            21       36430360     36481070
9966                            21       36485867     36487760
9967                            21       20256752     20258820
9968                            21       20256752     20258820
9969                            21       19620695     19621545
9970                            21       19046310     19047684
9971                            21       19046310     19047684
9972                            21       35136638     35139222
9973                            21       35136638     35139222
9974      C21orf91              21       17788967     17819386
9975      C21orf91              21       17788967     17819386
9976      C21orf91              21       17788967     17819386
9977      C21orf91              21       17788967     17819386
9978      C21orf91              21       17788967     17819386
9979      C21orf91              21       17788967     17819386
9980      C21orf91              21       17788967     17819386
9981      C21orf91              21       17788967     17819386
9982      C21orf91              21       17788967     17819386
9983      C21orf91              21       17788967     17819386
9984      C21orf91              21       17788967     17819386
9985      C21orf91              21       17788967     17819386
9986      C21orf91              21       17788967     17819386
9987      C21orf91              21       17788967     17819386
9988      C21orf91              21       17788967     17819386
9989      C21orf91              21       17788967     17819386
9990      C21orf91              21       17788967     17819386
9991      C21orf91              21       17788967     17819386
9992      C21orf91              21       17788967     17819386
9993      C21orf91              21       17788967     17819386
9994      C21orf91              21       17788967     17819386
9995      C21orf91              21       17788967     17819386
9996      C21orf91              21       17788967     17819386
9997      C21orf91              21       17788967     17819386
9998      C21orf91              21       17788967     17819386
9999                            21       28439346     28674848
10000                           21       28439346     28674848
10001                           21       28439346     28674848
10002                           21       28439346     28674848
10003                           21       28439346     28674848
10004                           21       28439346     28674848
10005                           21       28439346     28674848
10006                           21       28439346     28674848
10007                           21       28439346     28674848
10008                           21       28439346     28674848
10009                           21       28439346     28674848
10010                           21       28439346     28674848
10011    LINC00161              21       28539318     28540355
10012    LINC00161              21       28539318     28540355
10013    LINC00161              21       28539318     28540355
10014    LINC00161              21       28539318     28540355
10015                           21       34205055     34325034
10016                           21       34205055     34325034
10017                           21       34205055     34325034
10018                           21       34205055     34325034
10019                           21       34205055     34325034
10020                           21       34073592     34360033
10021                           21       34073592     34360033
10022                           21       34073592     34360033
10023                           21       34073592     34360033
10024                           21       34073592     34360033
10025                           21       34073592     34360033
10026    LINC00310              21       34157724     34190244
10027    LINC00310              21       34157724     34190244
10028    LINC00310              21       34157724     34190244
10029    LINC00310              21       34157724     34190244
10030    LINC00310              21       34157724     34190244
10031    LINC00310              21       34157724     34190244
10032    LINC00310              21       34157724     34190244
10033    LINC00310              21       34157724     34190244
10034    LINC00310              21       34157724     34190244
10035    LINC00310              21       34157724     34190244
10036    LINC00310              21       34157724     34190244
10037    LINC00310              21       34157724     34190244
10038    LINC00310              21       34157724     34190244
10039    LINC00310              21       34157724     34190244
10040    LINC00310              21       34157724     34190244
10041    LINC00310              21       34157724     34190244
10042    LINC00310              21       34157724     34190244
10043    LINC00310              21       34157724     34190244
10044    LINC00310              21       34157724     34190244
10045    LINC00310              21       34157724     34190244
10046    LINC00310              21       34157724     34190244
10047        MRPS6              21       34073224     34143034
10048        MRPS6              21       34073224     34143034
10049        MRPS6              21       34073224     34143034
10050        MRPS6              21       34073224     34143034
10051        MRPS6              21       34073224     34143034
10052        MRPS6              21       34073224     34143034
10053        MRPS6              21       34073224     34143034
10054        MRPS6              21       34073224     34143034
10055        MRPS6              21       34073224     34143034
10056        MRPS6              21       34073224     34143034
10057        MRPS6              21       34073224     34143034
10058        MRPS6              21       34073224     34143034
10059        MRPS6              21       34073224     34143034
10060        MRPS6              21       34073224     34143034
10061        MRPS6              21       34073224     34143034
10062        MRPS6              21       34073224     34143034
10063        MRPS6              21       34073224     34143034
10064        MRPS6              21       34073224     34143034
10065                           21        7129103      7130287
10066                           21        6721812      6725209
10067                           21        6721812      6725209
10068                           21        6721812      6725209
10069                           21        6630182      6670695
10070                           21        6630182      6670695
10071                           21        6630182      6670695
10072                           21        6630182      6670695
10073                           21        6630182      6670695
10074                           21        6630182      6670695
10075                           21        6630182      6670695
10076                           21        6630182      6670695
10077                           21        6630182      6670695
10078                           21        6630182      6670695
10079                           21        6630182      6670695
10080                           21        6630182      6670695
10081                           21        6630182      6670695
10082                           21        6630182      6670695
10083                           21        6630182      6670695
10084                           21        6630182      6670695
10085                           21        6630182      6670695
10086                           21        6630182      6670695
10087                           21        6630182      6670695
10088                           21        6630182      6670695
10089                           21        6630182      6670695
10090                           21        6630182      6670695
10091                           21        6630182      6670695
10092                           21        6630182      6670695
10093                           21        6630182      6670695
10094       FDPSP6              21       20388334     20388845
10095                           21       17659276     17660384
10096                           21       17659276     17660384
10097       RPS5P2              21       34135432     34136071
10098       SLC5A3              21       34073570     34106262
10099       SLC5A3              21       34073570     34106262
10100         TFF1              21       42362282     42366594
10101         TFF1              21       42362282     42366594
10102         TFF1              21       42362282     42366594
10103      RPL10P1              21       27420380     27421023
10104       GPX1P2              21       27143344     27143949
10105         TFF3              21       42311667     42315651
10106         TFF3              21       42311667     42315651
10107         TFF3              21       42311667     42315651
10108         TFF3              21       42311667     42315651
10109         TFF3              21       42311667     42315651
10110         TFF3              21       42311667     42315651
10111         TFF3              21       42311667     42315651
10112         TFF3              21       42311667     42315651
10113         TFF3              21       42311667     42315651
10114         TFF3              21       42311667     42315651
10115         TFF3              21       42311667     42315651
10116         TFF3              21       42311667     42315651
10117     ERLEC1P1              21       14143581     14144158
10118         LIPI              21       14108813     14210891
10119         LIPI              21       14108813     14210891
10120         LIPI              21       14108813     14210891
10121         LIPI              21       14108813     14210891
10122         LIPI              21       14108813     14210891
10123         LIPI              21       14108813     14210891
10124         LIPI              21       14108813     14210891
10125         LIPI              21       14108813     14210891
10126         LIPI              21       14108813     14210891
10127         LIPI              21       14108813     14210891
10128         LIPI              21       14108813     14210891
10129         LIPI              21       14108813     14210891
10130         LIPI              21       14108813     14210891
10131         LIPI              21       14108813     14210891
10132         LIPI              21       14108813     14210891
10133         LIPI              21       14108813     14210891
10134         LIPI              21       14108813     14210891
10135         LIPI              21       14108813     14210891
10136         LIPI              21       14108813     14210891
10137         LIPI              21       14108813     14210891
10138         LIPI              21       14108813     14210891
10139         LIPI              21       14108813     14210891
10140         LIPI              21       14108813     14210891
10141         LIPI              21       14108813     14210891
10142         LIPI              21       14108813     14210891
10143         LIPI              21       14108813     14210891
10144         LIPI              21       14108813     14210891
10145         LIPI              21       14108813     14210891
10146         LIPI              21       14108813     14210891
10147         LIPI              21       14108813     14210891
10148         LIPI              21       14108813     14210891
10149         LIPI              21       14108813     14210891
10150         LIPI              21       14108813     14210891
10151                           21       31653593     31659500
10152                           21       31653593     31659500
10153                           21       31653593     31659500
10154      OR4K12P              21       13581044     13582004
10155      ZNF355P              21       13095305     13113790
10156      ZNF355P              21       13095305     13113790
10157      ZNF355P              21       13095305     13113790
10158                           21       12999676     13016692
10159                           21       12999676     13016692
10160        DSCR8              21       38121451     38188016
10161        DSCR8              21       38121451     38188016
10162        DSCR8              21       38121451     38188016
10163        DSCR8              21       38121451     38188016
10164        DSCR8              21       38121451     38188016
10165        DSCR8              21       38121451     38188016
10166        DSCR8              21       38121451     38188016
10167        DSCR8              21       38121451     38188016
10168        DSCR8              21       38121451     38188016
10169        DSCR8              21       38121451     38188016
10170        DSCR8              21       38121451     38188016
10171        DSCR8              21       38121451     38188016
10172        DSCR8              21       38121451     38188016
10173        DSCR8              21       38121451     38188016
10174        DSCR8              21       38121451     38188016
10175        DSCR8              21       38121451     38188016
10176        DSCR8              21       38121451     38188016
10177        DSCR8              21       38121451     38188016
10178        DSCR8              21       38121451     38188016
10179        DSCR8              21       38121451     38188016
10180        DSCR8              21       38121451     38188016
10181        DSCR8              21       38121451     38188016
10182        DSCR8              21       38121451     38188016
10183        DSCR8              21       38121451     38188016
10184        DSCR8              21       38121451     38188016
10185        DSCR8              21       38121451     38188016
10186        DSCR8              21       38121451     38188016
10187        DSCR8              21       38121451     38188016
10188        DSCR8              21       38121451     38188016
10189        DSCR8              21       38121451     38188016
10190    KRTAP19-8              21       31038159     31038476
10191      UBE3AP2              21       31060600     31063168
10192      UBE3AP2              21       31060600     31063168
10193      RNGTTP1              21       25643489     25644216
10194        ATP5J              21       25716503     25735673
10195        ATP5J              21       25716503     25735673
10196        ATP5J              21       25716503     25735673
10197        ATP5J              21       25716503     25735673
10198        ATP5J              21       25716503     25735673
10199        ATP5J              21       25716503     25735673
10200        ATP5J              21       25716503     25735673
10201        ATP5J              21       25716503     25735673
10202        ATP5J              21       25716503     25735673
10203        ATP5J              21       25716503     25735673
10204        ATP5J              21       25716503     25735673
10205        ATP5J              21       25716503     25735673
10206        ATP5J              21       25716503     25735673
10207        ATP5J              21       25716503     25735673
10208        ATP5J              21       25716503     25735673
10209        ATP5J              21       25716503     25735673
10210        ATP5J              21       25716503     25735673
10211        ATP5J              21       25716503     25735673
10212        ATP5J              21       25716503     25735673
10213        ATP5J              21       25716503     25735673
10214        ATP5J              21       25716503     25735673
10215        ATP5J              21       25716503     25735673
10216        ATP5J              21       25716503     25735673
10217        ATP5J              21       25716503     25735673
10218        ATP5J              21       25716503     25735673
10219        ATP5J              21       25716503     25735673
10220        ATP5J              21       25716503     25735673
10221        ATP5J              21       25716503     25735673
10222        ATP5J              21       25716503     25735673
10223        ATP5J              21       25716503     25735673
10224        ATP5J              21       25716503     25735673
10225        ATP5J              21       25716503     25735673
10226        ATP5J              21       25716503     25735673
10227       FDX1P2              21       25692180     25692554
10228        GABPA              21       25734570     25772460
10229        GABPA              21       25734570     25772460
10230        GABPA              21       25734570     25772460
10231        GABPA              21       25734570     25772460
10232        GABPA              21       25734570     25772460
10233        GABPA              21       25734570     25772460
10234        GABPA              21       25734570     25772460
10235        GABPA              21       25734570     25772460
10236        GABPA              21       25734570     25772460
10237        GABPA              21       25734570     25772460
10238        GABPA              21       25734570     25772460
10239        GABPA              21       25734570     25772460
10240        GABPA              21       25734570     25772460
10241        GABPA              21       25734570     25772460
10242        GABPA              21       25734570     25772460
10243        GABPA              21       25734570     25772460
10244        GABPA              21       25734570     25772460
10245        GABPA              21       25734570     25772460
10246        GABPA              21       25734570     25772460
10247        GABPA              21       25734570     25772460
10248        GABPA              21       25734570     25772460
10249        GABPA              21       25734570     25772460
10250        GABPA              21       25734570     25772460
10251        GABPA              21       25734570     25772460
10252    LINC01679              21       43358147     43362349
10253    LINC01679              21       43358147     43362349
10254       LLPHP2              21       25762938     25763333
10255                           21       45100487     45101094
10256    KRTAP8-3P              21       30806932     30807119
10257    KRTAP21-1              21       30754830     30755428
10258    KRTAP21-2              21       30746794     30747233
10259        DSCR4              21       37951425     38121360
10260        DSCR4              21       37951425     38121360
10261        DSCR4              21       37951425     38121360
10262        DSCR4              21       37951425     38121360
10263        DSCR4              21       37951425     38121360
10264        DSCR4              21       37951425     38121360
10265        DSCR4              21       37951425     38121360
10266        DSCR4              21       37951425     38121360
10267        DSCR4              21       37951425     38121360
10268        DSCR4              21       37951425     38121360
10269        DSCR4              21       37951425     38121360
10270        DSCR4              21       37951425     38121360
10271        DSCR4              21       37951425     38121360
10272    DSCR4-IT1              21       38006544     38010618
10273    DSCR4-IT1              21       38006544     38010618
10274        U2AF1              21       43092956     43107587
10275        U2AF1              21       43092956     43107587
10276        U2AF1              21       43092956     43107587
10277        U2AF1              21       43092956     43107587
10278        U2AF1              21       43092956     43107587
10279        U2AF1              21       43092956     43107587
10280        U2AF1              21       43092956     43107587
10281        U2AF1              21       43092956     43107587
10282        U2AF1              21       43092956     43107587
10283        U2AF1              21       43092956     43107587
10284        U2AF1              21       43092956     43107587
10285        U2AF1              21       43092956     43107587
10286        U2AF1              21       43092956     43107587
10287        U2AF1              21       43092956     43107587
10288        U2AF1              21       43092956     43107587
10289        U2AF1              21       43092956     43107587
10290        U2AF1              21       43092956     43107587
10291        U2AF1              21       43092956     43107587
10292        U2AF1              21       43092956     43107587
10293        U2AF1              21       43092956     43107587
10294        U2AF1              21       43092956     43107587
10295        U2AF1              21       43092956     43107587
10296        U2AF1              21       43092956     43107587
10297        U2AF1              21       43092956     43107587
10298        U2AF1              21       43092956     43107587
10299        U2AF1              21       43092956     43107587
10300        U2AF1              21       43092956     43107587
10301        U2AF1              21       43092956     43107587
10302        U2AF1              21       43092956     43107587
10303        U2AF1              21       43092956     43107587
10304        U2AF1              21       43092956     43107587
10305        U2AF1              21       43092956     43107587
10306        U2AF1              21       43092956     43107587
10307        U2AF1              21       43092956     43107587
10308        U2AF1              21       43092956     43107587
10309        U2AF1              21       43092956     43107587
10310        U2AF1              21       43092956     43107587
10311        U2AF1              21       43092956     43107587
10312        U2AF1              21       43092956     43107587
10313        U2AF1              21       43092956     43107587
10314        U2AF1              21       43092956     43107587
10315        U2AF1              21       43092956     43107587
10316        U2AF1              21       43092956     43107587
10317        U2AF1              21       43092956     43107587
10318        U2AF1              21       43092956     43107587
10319        U2AF1              21       43092956     43107587
10320        U2AF1              21       43092956     43107587
10321        U2AF1              21       43092956     43107587
10322        U2AF1              21       43092956     43107587
10323        U2AF1              21       43092956     43107587
10324        U2AF1              21       43092956     43107587
10325        U2AF1              21       43092956     43107587
10326        U2AF1              21       43092956     43107587
10327        U2AF1              21       43092956     43107587
10328        U2AF1              21       43092956     43107587
10329        U2AF1              21       43092956     43107587
10330        U2AF1              21       43092956     43107587
10331        U2AF1              21       43092956     43107587
10332        U2AF1              21       43092956     43107587
10333        U2AF1              21       43092956     43107587
10334        U2AF1              21       43092956     43107587
10335        U2AF1              21       43092956     43107587
10336        U2AF1              21       43092956     43107587
10337        U2AF1              21       43092956     43107587
10338        U2AF1              21       43092956     43107587
10339        U2AF1              21       43092956     43107587
10340        U2AF1              21       43092956     43107587
10341        U2AF1              21       43092956     43107587
10342        U2AF1              21       43092956     43107587
10343        U2AF1              21       43092956     43107587
10344     MRPL20P1              21       36994643     36995075
10345                           21        6318434      6360415
10346                           21        6318434      6360415
10347                           21        6318434      6360415
10348                           21        6318434      6360415
10349                           21        6318434      6360415
10350                           21        6318434      6360415
10351                           21        6318434      6360415
10352                           21        6318434      6360415
10353                           21        6318434      6360415
10354                           21        6318434      6360415
10355                           21        6318434      6360415
10356                           21        6318434      6360415
10357                           21        6318434      6360415
10358                           21        6318434      6360415
10359                           21        6318434      6360415
10360                           21        6318434      6360415
10361                           21        6318434      6360415
10362                           21        6318434      6360415
10363       DPRXP5              21       36943267     36944125
10364       DPRXP5              21       36943267     36944125
10365     HLCS-IT1              21       36803984     36806284
10366     HLCS-IT1              21       36803984     36806284
10367    THUMPD1P1              21       28901779     28903697
10368    THUMPD1P1              21       28901779     28903697
10369    THUMPD1P1              21       28901779     28903697
10370    LINC01425              21       21746973     21797415
10371    LINC01425              21       21746973     21797415
10372    LINC01425              21       21746973     21797415
10373    LINC01425              21       21746973     21797415
10374    LINC01425              21       21746973     21797415
10375    LINC01425              21       21746973     21797415
10376    LINC01425              21       21746973     21797415
10377    LINC01425              21       21746973     21797415
10378    LINC01425              21       21746973     21797415
10379       PPIAP1              21       20828127     20828622
10380                           21       42560374     42561934
10381                           21       42560374     42561934
10382     EXOSC3P1              21       32496812     32497311
10383                           21       45378201     45379635
10384                           21       45378201     45379635
10385                           21       45378201     45379635
10386                           21       45378201     45379635
10387                           21       45403809     45404369
10388       HSF2BP              21       43529192     43659493
10389       HSF2BP              21       43529192     43659493
10390       HSF2BP              21       43529192     43659493
10391       HSF2BP              21       43529192     43659493
10392       HSF2BP              21       43529192     43659493
10393       HSF2BP              21       43529192     43659493
10394       HSF2BP              21       43529192     43659493
10395       HSF2BP              21       43529192     43659493
10396       HSF2BP              21       43529192     43659493
10397       HSF2BP              21       43529192     43659493
10398       HSF2BP              21       43529192     43659493
10399       HSF2BP              21       43529192     43659493
10400       HSF2BP              21       43529192     43659493
10401       HSF2BP              21       43529192     43659493
10402       HSF2BP              21       43529192     43659493
10403       HSF2BP              21       43529192     43659493
10404      OR4K11P              21       13544282     13545185
10405       DSCR10              21       38206156     38208644
10406       DSCR10              21       38206156     38208644
10407       DSCR10              21       38206156     38208644
10408                           21       29657406     29657831
10409      DNAJC28              21       33485530     33491720
10410      DNAJC28              21       33485530     33491720
10411      DNAJC28              21       33485530     33491720
10412      DNAJC28              21       33485530     33491720
10413      DNAJC28              21       33485530     33491720
10414      DNAJC28              21       33485530     33491720
10415      DNAJC28              21       33485530     33491720
10416      DNAJC28              21       33485530     33491720
10417      DNAJC28              21       33485530     33491720
10418                           21       33482499     33484258
10419                           21       33482499     33484258
10420                           21       33482499     33484258
10421                           21        7385058      7388799
10422                           21        7385058      7388799
10423                           21        7385058      7388799
10424                           21        7385058      7388799
10425                           21        7385058      7388799
10426                           21        7385058      7388799
10427                           21        7385058      7388799
10428                           21        7385058      7388799
10429                           21        7385058      7388799
10430       IFNGR2              21       33402896     33479348
10431       IFNGR2              21       33402896     33479348
10432       IFNGR2              21       33402896     33479348
10433       IFNGR2              21       33402896     33479348
10434       IFNGR2              21       33402896     33479348
10435       IFNGR2              21       33402896     33479348
10436       IFNGR2              21       33402896     33479348
10437       IFNGR2              21       33402896     33479348
10438       IFNGR2              21       33402896     33479348
10439       IFNGR2              21       33402896     33479348
10440       IFNGR2              21       33402896     33479348
10441       IFNGR2              21       33402896     33479348
10442       IFNGR2              21       33402896     33479348
10443       IFNGR2              21       33402896     33479348
10444       IFNGR2              21       33402896     33479348
10445       IFNGR2              21       33402896     33479348
10446       IFNGR2              21       33402896     33479348
10447       IFNGR2              21       33402896     33479348
10448       IFNGR2              21       33402896     33479348
10449       IFNGR2              21       33402896     33479348
10450       IFNGR2              21       33402896     33479348
10451       IFNGR2              21       33402896     33479348
10452       IFNGR2              21       33402896     33479348
10453       IFNGR2              21       33402896     33479348
10454       IFNGR2              21       33402896     33479348
10455       IFNGR2              21       33402896     33479348
10456       IFNGR2              21       33402896     33479348
10457       IFNGR2              21       33402896     33479348
10458       IFNGR2              21       33402896     33479348
10459       IFNGR2              21       33402896     33479348
10460       IFNGR2              21       33402896     33479348
10461       IFNGR2              21       33402896     33479348
10462       IFNGR2              21       33402896     33479348
10463       IFNGR2              21       33402896     33479348
10464       IFNGR2              21       33402896     33479348
10465       IFNGR2              21       33402896     33479348
10466       IFNGR2              21       33402896     33479348
10467       IFNGR2              21       33402896     33479348
10468       IFNGR2              21       33402896     33479348
10469      U2AF1L5              21        6484623      6499261
10470      U2AF1L5              21        6484623      6499261
10471      U2AF1L5              21        6484623      6499261
10472      U2AF1L5              21        6484623      6499261
10473      U2AF1L5              21        6484623      6499261
10474      U2AF1L5              21        6484623      6499261
10475      U2AF1L5              21        6484623      6499261
10476      U2AF1L5              21        6484623      6499261
10477      U2AF1L5              21        6484623      6499261
10478      U2AF1L5              21        6484623      6499261
10479      U2AF1L5              21        6484623      6499261
10480      U2AF1L5              21        6484623      6499261
10481      U2AF1L5              21        6484623      6499261
10482      U2AF1L5              21        6484623      6499261
10483      U2AF1L5              21        6484623      6499261
10484      U2AF1L5              21        6484623      6499261
10485      U2AF1L5              21        6484623      6499261
10486      U2AF1L5              21        6484623      6499261
10487      U2AF1L5              21        6484623      6499261
10488      U2AF1L5              21        6484623      6499261
10489      U2AF1L5              21        6484623      6499261
10490      U2AF1L5              21        6484623      6499261
10491      U2AF1L5              21        6484623      6499261
10492      U2AF1L5              21        6484623      6499261
10493      U2AF1L5              21        6484623      6499261
10494      U2AF1L5              21        6484623      6499261
10495      U2AF1L5              21        6484623      6499261
10496      U2AF1L5              21        6484623      6499261
10497      U2AF1L5              21        6484623      6499261
10498      U2AF1L5              21        6484623      6499261
10499      U2AF1L5              21        6484623      6499261
10500      U2AF1L5              21        6484623      6499261
10501      U2AF1L5              21        6484623      6499261
10502      U2AF1L5              21        6484623      6499261
10503      U2AF1L5              21        6484623      6499261
10504      U2AF1L5              21        6484623      6499261
10505      U2AF1L5              21        6484623      6499261
10506      U2AF1L5              21        6484623      6499261
10507      U2AF1L5              21        6484623      6499261
10508      U2AF1L5              21        6484623      6499261
10509      U2AF1L5              21        6484623      6499261
10510      U2AF1L5              21        6484623      6499261
10511      U2AF1L5              21        6484623      6499261
10512      U2AF1L5              21        6484623      6499261
10513      U2AF1L5              21        6484623      6499261
10514      U2AF1L5              21        6484623      6499261
10515      U2AF1L5              21        6484623      6499261
10516      U2AF1L5              21        6484623      6499261
10517      U2AF1L5              21        6484623      6499261
10518      U2AF1L5              21        6484623      6499261
10519      U2AF1L5              21        6484623      6499261
10520      U2AF1L5              21        6484623      6499261
10521      U2AF1L5              21        6484623      6499261
10522      U2AF1L5              21        6484623      6499261
10523      U2AF1L5              21        6484623      6499261
10524      U2AF1L5              21        6484623      6499261
10525      U2AF1L5              21        6484623      6499261
10526      U2AF1L5              21        6484623      6499261
10527      U2AF1L5              21        6484623      6499261
10528      U2AF1L5              21        6484623      6499261
10529      U2AF1L5              21        6484623      6499261
10530      U2AF1L5              21        6484623      6499261
10531      U2AF1L5              21        6484623      6499261
10532      U2AF1L5              21        6484623      6499261
10533      U2AF1L5              21        6484623      6499261
10534      U2AF1L5              21        6484623      6499261
10535      U2AF1L5              21        6484623      6499261
10536      U2AF1L5              21        6484623      6499261
10537      U2AF1L5              21        6484623      6499261
10538      U2AF1L5              21        6484623      6499261
10539                           21       44175489     44176453
10540                           21       44175489     44176453
10541                           21       33246774     33283212
10542                           21       33246774     33283212
10543                           21       33246774     33283212
10544                           21       33246774     33283212
10545                           21       33246774     33283212
10546                           21       33246774     33283212
10547                           21       33246774     33283212
10548                           21       33246774     33283212
10549                           21       33246774     33283212
10550                           21       33246774     33283212
10551                           21       33246774     33283212
10552                           21       33246774     33283212
10553       CLDN14              21       36460621     36576569
10554       CLDN14              21       36460621     36576569
10555       CLDN14              21       36460621     36576569
10556       CLDN14              21       36460621     36576569
10557       CLDN14              21       36460621     36576569
10558       CLDN14              21       36460621     36576569
10559       CLDN14              21       36460621     36576569
10560       CLDN14              21       36460621     36576569
10561       CLDN14              21       36460621     36576569
10562       CLDN14              21       36460621     36576569
10563       CLDN14              21       36460621     36576569
10564       CLDN14              21       36460621     36576569
10565       CLDN14              21       36460621     36576569
10566       CLDN14              21       36460621     36576569
10567       CLDN14              21       36460621     36576569
10568 C21orf91-OT1              21       17763315     17792523
10569 C21orf91-OT1              21       17763315     17792523
10570 C21orf91-OT1              21       17763315     17792523
10571 C21orf91-OT1              21       17763315     17792523
10572 C21orf91-OT1              21       17763315     17792523
10573 C21orf91-OT1              21       17763315     17792523
10574 C21orf91-OT1              21       17763315     17792523
10575 C21orf91-OT1              21       17763315     17792523
10576 C21orf91-OT1              21       17763315     17792523
10577 C21orf91-OT1              21       17763315     17792523
10578 C21orf91-OT1              21       17763315     17792523
10579 C21orf91-OT1              21       17763315     17792523
10580      TMPRSS3              21       42371890     42396846
10581      TMPRSS3              21       42371890     42396846
10582      TMPRSS3              21       42371890     42396846
10583      TMPRSS3              21       42371890     42396846
10584      TMPRSS3              21       42371890     42396846
10585      TMPRSS3              21       42371890     42396846
10586      TMPRSS3              21       42371890     42396846
10587      TMPRSS3              21       42371890     42396846
10588      TMPRSS3              21       42371890     42396846
10589      TMPRSS3              21       42371890     42396846
10590      TMPRSS3              21       42371890     42396846
10591      TMPRSS3              21       42371890     42396846
10592      TMPRSS3              21       42371890     42396846
10593      TMPRSS3              21       42371890     42396846
10594      TMPRSS3              21       42371890     42396846
10595      TMPRSS3              21       42371890     42396846
10596      TMPRSS3              21       42371890     42396846
10597      TMPRSS3              21       42371890     42396846
10598      TMPRSS3              21       42371890     42396846
10599      TMPRSS3              21       42371890     42396846
10600      TMPRSS3              21       42371890     42396846
10601      TMPRSS3              21       42371890     42396846
10602      TMPRSS3              21       42371890     42396846
10603      TMPRSS3              21       42371890     42396846
10604      TMPRSS3              21       42371890     42396846
10605      TMPRSS3              21       42371890     42396846
10606      TMPRSS3              21       42371890     42396846
10607      TMPRSS3              21       42371890     42396846
10608      TMPRSS3              21       42371890     42396846
10609      TMPRSS3              21       42371890     42396846
10610      TMPRSS3              21       42371890     42396846
10611      TMPRSS3              21       42371890     42396846
10612      TMPRSS3              21       42371890     42396846
10613      TMPRSS3              21       42371890     42396846
10614      TMPRSS3              21       42371890     42396846
10615      TMPRSS3              21       42371890     42396846
10616      TMPRSS3              21       42371890     42396846
10617      TMPRSS3              21       42371890     42396846
10618      TMPRSS3              21       42371890     42396846
10619      TMPRSS3              21       42371890     42396846
10620      TMPRSS3              21       42371890     42396846
10621      TMPRSS3              21       42371890     42396846
10622      TMPRSS3              21       42371890     42396846
10623      TMPRSS3              21       42371890     42396846
10624      TMPRSS3              21       42371890     42396846
10625      TMPRSS3              21       42371890     42396846
10626      TMPRSS3              21       42371890     42396846
10627      TMPRSS3              21       42371890     42396846
10628      TMPRSS3              21       42371890     42396846
10629      TMPRSS3              21       42371890     42396846
10630      TMPRSS3              21       42371890     42396846
10631      TMPRSS3              21       42371890     42396846
10632      TMPRSS3              21       42371890     42396846
10633      TMPRSS3              21       42371890     42396846
10634      TMPRSS3              21       42371890     42396846
10635      TMPRSS3              21       42371890     42396846
10636      TMPRSS3              21       42371890     42396846
10637      TMPRSS3              21       42371890     42396846
10638      TMPRSS3              21       42371890     42396846
10639      TMPRSS3              21       42371890     42396846
10640      TMPRSS3              21       42371890     42396846
10641      TMPRSS3              21       42371890     42396846
10642      TMPRSS3              21       42371890     42396846
10643      TMPRSS3              21       42371890     42396846
10644      TMPRSS3              21       42371890     42396846
10645      TMPRSS3              21       42371890     42396846
10646      TMPRSS3              21       42371890     42396846
10647      TMPRSS3              21       42371890     42396846
10648      TMPRSS3              21       42371890     42396846
10649      TMPRSS3              21       42371890     42396846
10650      TMPRSS3              21       42371890     42396846
10651      TMPRSS3              21       42371890     42396846
10652      TMPRSS3              21       42371890     42396846
10653      TMPRSS3              21       42371890     42396846
10654      TMPRSS3              21       42371890     42396846
10655    LINC01673              21       27638693     27653491
10656    LINC01673              21       27638693     27653491
10657    LINC01673              21       27638693     27653491
10658                           21        7430659      7469007
10659                           21        7430659      7469007
10660                           21        7430659      7469007
10661                           21        7430659      7469007
10662                           21        7430659      7469007
10663                           21        7430659      7469007
10664                           21        7430659      7469007
10665                           21        7430659      7469007
10666                           21        7430659      7469007
10667                           21        7430659      7469007
10668                           21        7430659      7469007
10669                           21        7430659      7469007
10670                           21        7430659      7469007
10671                           21        7430659      7469007
10672                           21        7430659      7469007
10673                           21        7430659      7469007
10674                           21        7430659      7469007
10675                           21        7430659      7469007
10676                           21        7430659      7469007
10677                           21        7430659      7469007
10678                           21        7430659      7469007
10679                           21        7430659      7469007
10680                           21        7430659      7469007
10681       ICOSLG              21       44222991     44240966
10682       ICOSLG              21       44222991     44240966
10683       ICOSLG              21       44222991     44240966
10684       ICOSLG              21       44222991     44240966
10685       ICOSLG              21       44222991     44240966
10686       ICOSLG              21       44222991     44240966
10687       ICOSLG              21       44222991     44240966
10688       ICOSLG              21       44222991     44240966
10689       ICOSLG              21       44222991     44240966
10690       ICOSLG              21       44222991     44240966
10691       ICOSLG              21       44222991     44240966
10692       ICOSLG              21       44222991     44240966
10693       ICOSLG              21       44222991     44240966
10694       ICOSLG              21       44222991     44240966
10695       ICOSLG              21       44222991     44240966
10696       ICOSLG              21       44222991     44240966
10697       ICOSLG              21       44222991     44240966
10698       ICOSLG              21       44222991     44240966
10699       ICOSLG              21       44222991     44240966
10700       ICOSLG              21       44222991     44240966
10701       ICOSLG              21       44222991     44240966
10702       ICOSLG              21       44222991     44240966
10703       ICOSLG              21       44222991     44240966
10704       ICOSLG              21       44222991     44240966
10705       ICOSLG              21       44222991     44240966
10706       ICOSLG              21       44222991     44240966
10707                           21       33156632     33159110
10708                           21       33156632     33159110
10709                           21       33111699     33123703
10710                           21       33111699     33123703
10711                           21       33111699     33123703
10712        OLIG2              21       33025845     33029196
10713        OLIG2              21       33025845     33029196
10714        OLIG2              21       33025845     33029196
10715        OLIG2              21       33025845     33029196
10716        OLIG2              21       33025845     33029196
10717    LINC00945              21       33057829     33064983
10718    LINC00945              21       33057829     33064983
10719    LINC00945              21       33057829     33064983
10720    LINC00945              21       33057829     33064983
10721    LINC00945              21       33057829     33064983
10722                           21       32958888     32960566
10723                           21       32958888     32960566
10724                           21        6034690      6036093
10725                           21        5232668      5243833
10726                           21        5232668      5243833
10727    LINC01670              21        5499151      5502542
10728    LINC01670              21        5499151      5502542
10729    LINC01670              21        5499151      5502542
10730    LINC01670              21        5499151      5502542
10731    LINC01670              21        5499151      5502542
10732    LINC01670              21        5499151      5502542
10733    LINC01670              21        5499151      5502542
10734    LINC01670              21        5499151      5502542
10735                           21       36966492     36975164
10736                           21       36966492     36975164
10737                           21       36966492     36975164
10738                           21       36966492     36975164
10739                           21       36966492     36975164
10740                           21       36966492     36975164
10741                           21       36966492     36975164
10742                           21       36966492     36975164
10743                           21        5553637      5614880
10744                           21        5553637      5614880
10745                           21        5553637      5614880
10746                           21        5553637      5614880
10747                           21        5553637      5614880
10748                           21        5553637      5614880
10749                           21        5553637      5614880
10750                           21        5553637      5614880
10751                           21        5553637      5614880
10752                           21        5553637      5614880
10753                           21        5553637      5614880
10754                           21        5553637      5614880
10755                           21        5553637      5614880
10756                           21        5553637      5614880
10757                           21        5553637      5614880
10758                           21        5553637      5614880
10759                           21        5553637      5614880
10760                           21        5553637      5614880
10761                           21        5553637      5614880
10762                           21        5553637      5614880
10763                           21        5553637      5614880
10764                           21        5553637      5614880
10765                           21        5553637      5614880
10766                           21        5553637      5614880
10767                           21        5553637      5614880
10768                           21        5553637      5614880
10769                           21        5553637      5614880
10770                           21        5553637      5614880
10771                           21        5553637      5614880
10772                           21        5553637      5614880
10773                           21        5553637      5614880
10774                           21        5553637      5614880
10775                           21        5553637      5614880
10776                           21        5553637      5614880
10777                           21        5553637      5614880
10778                           21        5553637      5614880
10779                           21        5553637      5614880
10780                           21        5553637      5614880
10781                           21        5553637      5614880
10782                           21        5553637      5614880
10783    LINC00320              21       20742590     20803216
10784    LINC00320              21       20742590     20803216
10785    LINC00320              21       20742590     20803216
10786    LINC00320              21       20742590     20803216
10787    LINC00320              21       20742590     20803216
10788    LINC00320              21       20742590     20803216
10789    LINC00320              21       20742590     20803216
10790    LINC00320              21       20742590     20803216
10791    LINC00320              21       20742590     20803216
10792    LINC00320              21       20742590     20803216
10793    LINC00320              21       20742590     20803216
10794    LINC00320              21       20742590     20803216
10795    LINC00320              21       20742590     20803216
10796    LINC00320              21       20742590     20803216
10797    LINC00320              21       20742590     20803216
10798    LINC00320              21       20742590     20803216
10799    LINC00320              21       20742590     20803216
10800    LINC00320              21       20742590     20803216
10801    LINC00320              21       20742590     20803216
10802    LINC00320              21       20742590     20803216
10803    LINC00320              21       20742590     20803216
10804    LINC00320              21       20742590     20803216
10805    LINC00320              21       20742590     20803216
10806    LINC00320              21       20742590     20803216
10807    LINC00320              21       20742590     20803216
10808    LINC00320              21       20742590     20803216
10809    LINC00320              21       20742590     20803216
10810    LINC00320              21       20742590     20803216
10811    LINC00320              21       20742590     20803216
10812    LINC00320              21       20742590     20803216
10813    LINC00320              21       20742590     20803216
10814    LINC00320              21       20742590     20803216
10815    LINC00320              21       20742590     20803216
10816    LINC00320              21       20742590     20803216
10817    LINC00320              21       20742590     20803216
10818    LINC00320              21       20742590     20803216
10819    LINC00320              21       20742590     20803216
10820                           21       19301613     19303739
10821                           21       19301613     19303739
10822                           21       18614431     18650360
10823                           21       18614431     18650360
10824                           21       18614431     18650360
10825                           21        6667304      6670667
10826                           21        6667304      6670667
10827                           21        6667304      6670667
10828                           21        6667304      6670667
10829                           21        6667304      6670667
10830 C21orf62-AS1              21       32772100     32893735
10831 C21orf62-AS1              21       32772100     32893735
10832 C21orf62-AS1              21       32772100     32893735
10833 C21orf62-AS1              21       32772100     32893735
10834 C21orf62-AS1              21       32772100     32893735
10835 C21orf62-AS1              21       32772100     32893735
10836 C21orf62-AS1              21       32772100     32893735
10837 C21orf62-AS1              21       32772100     32893735
10838 C21orf62-AS1              21       32772100     32893735
10839 C21orf62-AS1              21       32772100     32893735
10840 C21orf62-AS1              21       32772100     32893735
10841 C21orf62-AS1              21       32772100     32893735
10842 C21orf62-AS1              21       32772100     32893735
10843 C21orf62-AS1              21       32772100     32893735
10844 C21orf62-AS1              21       32772100     32893735
10845 C21orf62-AS1              21       32772100     32893735
10846 C21orf62-AS1              21       32772100     32893735
10847 C21orf62-AS1              21       32772100     32893735
10848 C21orf62-AS1              21       32772100     32893735
10849 C21orf62-AS1              21       32772100     32893735
10850 C21orf62-AS1              21       32772100     32893735
10851 C21orf62-AS1              21       32772100     32893735
10852 C21orf62-AS1              21       32772100     32893735
10853         LTN1              21       28928144     28992956
10854         LTN1              21       28928144     28992956
10855         LTN1              21       28928144     28992956
10856         LTN1              21       28928144     28992956
10857         LTN1              21       28928144     28992956
10858         LTN1              21       28928144     28992956
10859         LTN1              21       28928144     28992956
10860         LTN1              21       28928144     28992956
10861         LTN1              21       28928144     28992956
10862         LTN1              21       28928144     28992956
10863         LTN1              21       28928144     28992956
10864         LTN1              21       28928144     28992956
10865         LTN1              21       28928144     28992956
10866         LTN1              21       28928144     28992956
10867         LTN1              21       28928144     28992956
10868         LTN1              21       28928144     28992956
10869         LTN1              21       28928144     28992956
10870         LTN1              21       28928144     28992956
10871         LTN1              21       28928144     28992956
10872         LTN1              21       28928144     28992956
10873         LTN1              21       28928144     28992956
10874         LTN1              21       28928144     28992956
10875         LTN1              21       28928144     28992956
10876         LTN1              21       28928144     28992956
10877         LTN1              21       28928144     28992956
10878         LTN1              21       28928144     28992956
10879         LTN1              21       28928144     28992956
10880         LTN1              21       28928144     28992956
10881         LTN1              21       28928144     28992956
10882         LTN1              21       28928144     28992956
10883         LTN1              21       28928144     28992956
10884         LTN1              21       28928144     28992956
10885         LTN1              21       28928144     28992956
10886         LTN1              21       28928144     28992956
10887         LTN1              21       28928144     28992956
10888         LTN1              21       28928144     28992956
10889         LTN1              21       28928144     28992956
10890         LTN1              21       28928144     28992956
10891         LTN1              21       28928144     28992956
10892         LTN1              21       28928144     28992956
10893         LTN1              21       28928144     28992956
10894         LTN1              21       28928144     28992956
10895         LTN1              21       28928144     28992956
10896         LTN1              21       28928144     28992956
10897         LTN1              21       28928144     28992956
10898         LTN1              21       28928144     28992956
10899         LTN1              21       28928144     28992956
10900         LTN1              21       28928144     28992956
10901         LTN1              21       28928144     28992956
10902         LTN1              21       28928144     28992956
10903         LTN1              21       28928144     28992956
10904         LTN1              21       28928144     28992956
10905         LTN1              21       28928144     28992956
10906         LTN1              21       28928144     28992956
10907         LTN1              21       28928144     28992956
10908         LTN1              21       28928144     28992956
10909         LTN1              21       28928144     28992956
10910         LTN1              21       28928144     28992956
10911         LTN1              21       28928144     28992956
10912         LTN1              21       28928144     28992956
10913         LTN1              21       28928144     28992956
10914         LTN1              21       28928144     28992956
10915         LTN1              21       28928144     28992956
10916         LTN1              21       28928144     28992956
10917         LTN1              21       28928144     28992956
10918         LTN1              21       28928144     28992956
10919         LTN1              21       28928144     28992956
10920         LTN1              21       28928144     28992956
10921         LTN1              21       28928144     28992956
10922         LTN1              21       28928144     28992956
10923         LTN1              21       28928144     28992956
10924         LTN1              21       28928144     28992956
10925         LTN1              21       28928144     28992956
10926         LTN1              21       28928144     28992956
10927         LTN1              21       28928144     28992956
10928         LTN1              21       28928144     28992956
10929         LTN1              21       28928144     28992956
10930         LTN1              21       28928144     28992956
10931         LTN1              21       28928144     28992956
10932         LTN1              21       28928144     28992956
10933         LTN1              21       28928144     28992956
10934         LTN1              21       28928144     28992956
10935         LTN1              21       28928144     28992956
10936         LTN1              21       28928144     28992956
10937         LTN1              21       28928144     28992956
10938         LTN1              21       28928144     28992956
10939         LTN1              21       28928144     28992956
10940         LTN1              21       28928144     28992956
10941         LTN1              21       28928144     28992956
10942         LTN1              21       28928144     28992956
10943         LTN1              21       28928144     28992956
10944         LTN1              21       28928144     28992956
10945         LTN1              21       28928144     28992956
10946         LTN1              21       28928144     28992956
10947         LTN1              21       28928144     28992956
10948         LTN1              21       28928144     28992956
10949         LTN1              21       28928144     28992956
10950         LTN1              21       28928144     28992956
10951         LTN1              21       28928144     28992956
10952         LTN1              21       28928144     28992956
10953         LTN1              21       28928144     28992956
10954         LTN1              21       28928144     28992956
10955         LTN1              21       28928144     28992956
10956         LTN1              21       28928144     28992956
10957         LTN1              21       28928144     28992956
10958         LTN1              21       28928144     28992956
10959         LTN1              21       28928144     28992956
10960         LTN1              21       28928144     28992956
10961         LTN1              21       28928144     28992956
10962         LTN1              21       28928144     28992956
10963         LTN1              21       28928144     28992956
10964         LTN1              21       28928144     28992956
10965         LTN1              21       28928144     28992956
10966         LTN1              21       28928144     28992956
10967         LTN1              21       28928144     28992956
10968         LTN1              21       28928144     28992956
10969         LTN1              21       28928144     28992956
10970         LTN1              21       28928144     28992956
10971      HSPD1P7              21       28887280     28889272
10972      HSPD1P7              21       28887280     28889272
10973       N6AMT1              21       28872191     28885371
10974       N6AMT1              21       28872191     28885371
10975       N6AMT1              21       28872191     28885371
10976       N6AMT1              21       28872191     28885371
10977       N6AMT1              21       28872191     28885371
10978       N6AMT1              21       28872191     28885371
10979       N6AMT1              21       28872191     28885371
10980       N6AMT1              21       28872191     28885371
10981       N6AMT1              21       28872191     28885371
10982       N6AMT1              21       28872191     28885371
10983       N6AMT1              21       28872191     28885371
10984       N6AMT1              21       28872191     28885371
10985       N6AMT1              21       28872191     28885371
10986       N6AMT1              21       28872191     28885371
10987       N6AMT1              21       28872191     28885371
10988       N6AMT1              21       28872191     28885371
10989       N6AMT1              21       28872191     28885371
10990       N6AMT1              21       28872191     28885371
10991       EZH2P1              21       35599732     35600022
10992      VDAC2P1              21       16094415     16095372
10993    LINC01697              21       28048404     28137611
10994    LINC01697              21       28048404     28137611
10995    LINC01697              21       28048404     28137611
10996    LINC01697              21       28048404     28137611
10997    LINC01697              21       28048404     28137611
10998    LINC01697              21       28048404     28137611
10999    LINC01697              21       28048404     28137611
11000    LINC01697              21       28048404     28137611
11001    LINC01697              21       28048404     28137611
11002    LINC01697              21       28048404     28137611
11003    LINC01697              21       28048404     28137611
11004    LINC01697              21       28048404     28137611
11005    LINC01697              21       28048404     28137611
11006    LINC01697              21       28048404     28137611
11007    LINC01697              21       28048404     28137611
11008    LINC01697              21       28048404     28137611
11009    LINC01697              21       28048404     28137611
11010    LINC01697              21       28048404     28137611
11011    LINC01697              21       28048404     28137611
11012    LINC01697              21       28048404     28137611
11013                           21       27954922     27985295
11014                           21       27954922     27985295
11015                           21       27954922     27985295
11016                           21       27358885     27448579
11017                           21       27358885     27448579
11018                           21       27358885     27448579
11019                           21       27358885     27448579
11020                           21       32578822     32612281
11021                           21       32578822     32612281
11022                           21       32578822     32612281
11023                           21       32578822     32612281
11024                           21       32578822     32612281
11025                           21       32578822     32612281
11026                           21       32578822     32612281
11027                           21       32578822     32612281
11028                           21       32578822     32612281
11029                           21       32578822     32612281
11030                           21       32578822     32612281
11031                           21       32578822     32612281
11032                           21       32578822     32612281
11033                           21       32578822     32612281
11034                           21       32578822     32612281
11035       TPT1P1              21       31840341     31840858
11036   UMODL1-AS1              21       42102134     42108534
11037   UMODL1-AS1              21       42102134     42108534
11038                           21       14027421     14144468
11039                           21       14027421     14144468
11040                           21       14027421     14144468
11041                           21       14027421     14144468
11042                           21       14027421     14144468
11043                           21       14027421     14144468
11044                           21       14027421     14144468
11045                           21       14027421     14144468
11046                           21       14027421     14144468
11047      HMGN1P2              21       31706555     31706864
11048  ANKRD20A11P              21       13909574     13980437
11049  ANKRD20A11P              21       13909574     13980437
11050  ANKRD20A11P              21       13909574     13980437
11051  ANKRD20A11P              21       13909574     13980437
11052  ANKRD20A11P              21       13909574     13980437
11053  ANKRD20A11P              21       13909574     13980437
11054  ANKRD20A11P              21       13909574     13980437
11055  ANKRD20A11P              21       13909574     13980437
11056  ANKRD20A11P              21       13909574     13980437
11057  ANKRD20A11P              21       13909574     13980437
11058  ANKRD20A11P              21       13909574     13980437
11059  ANKRD20A11P              21       13909574     13980437
11060  ANKRD20A11P              21       13909574     13980437
11061  ANKRD20A11P              21       13909574     13980437
11062  ANKRD20A11P              21       13909574     13980437
11063  ANKRD20A11P              21       13909574     13980437
11064  ANKRD20A11P              21       13909574     13980437
11065  ANKRD20A11P              21       13909574     13980437
11066  ANKRD20A11P              21       13909574     13980437
11067  ANKRD20A11P              21       13909574     13980437
11068  ANKRD20A11P              21       13909574     13980437
11069  ANKRD20A11P              21       13909574     13980437
11070  ANKRD20A11P              21       13909574     13980437
11071  ANKRD20A11P              21       13909574     13980437
11072  ANKRD20A11P              21       13909574     13980437
11073  ANKRD20A11P              21       13909574     13980437
11074  ANKRD20A11P              21       13909574     13980437
11075  ANKRD20A11P              21       13909574     13980437
11076  ANKRD20A11P              21       13909574     13980437
11077  ANKRD20A11P              21       13909574     13980437
11078  ANKRD20A11P              21       13909574     13980437
11079  ANKRD20A11P              21       13909574     13980437
11080  ANKRD20A11P              21       13909574     13980437
11081  ANKRD20A11P              21       13909574     13980437
11082  ANKRD20A11P              21       13909574     13980437
11083  ANKRD20A11P              21       13909574     13980437
11084  ANKRD20A11P              21       13909574     13980437
11085  ANKRD20A11P              21       13909574     13980437
11086  ANKRD20A11P              21       13909574     13980437
11087  ANKRD20A11P              21       13909574     13980437
11088  ANKRD20A11P              21       13909574     13980437
11089  ANKRD20A11P              21       13909574     13980437
11090  ANKRD20A11P              21       13909574     13980437
11091  ANKRD20A11P              21       13909574     13980437
11092  ANKRD20A11P              21       13909574     13980437
11093  ANKRD20A11P              21       13909574     13980437
11094  ANKRD20A11P              21       13909574     13980437
11095  ANKRD20A11P              21       13909574     13980437
11096  ANKRD20A11P              21       13909574     13980437
11097  ANKRD20A11P              21       13909574     13980437
11098  ANKRD20A11P              21       13909574     13980437
11099  ANKRD20A11P              21       13909574     13980437
11100  ANKRD20A11P              21       13909574     13980437
11101  ANKRD20A11P              21       13909574     13980437
11102  ANKRD20A11P              21       13909574     13980437
11103  ANKRD20A11P              21       13909574     13980437
11104  ANKRD20A11P              21       13909574     13980437
11105  ANKRD20A11P              21       13909574     13980437
11106  ANKRD20A11P              21       13909574     13980437
11107                           21       31559245     31560487
11108                           21       31559245     31560487
11109     KRTAP7-1              21       30829039     30829759
11110    KRTAP20-3              21       30642864     30643136
11111                           21       37365477     37365932
11112       DYRK1A              21       37365790     37517450
11113       DYRK1A              21       37365790     37517450
11114       DYRK1A              21       37365790     37517450
11115       DYRK1A              21       37365790     37517450
11116       DYRK1A              21       37365790     37517450
11117       DYRK1A              21       37365790     37517450
11118       DYRK1A              21       37365790     37517450
11119       DYRK1A              21       37365790     37517450
11120       DYRK1A              21       37365790     37517450
11121       DYRK1A              21       37365790     37517450
11122       DYRK1A              21       37365790     37517450
11123       DYRK1A              21       37365790     37517450
11124       DYRK1A              21       37365790     37517450
11125       DYRK1A              21       37365790     37517450
11126       DYRK1A              21       37365790     37517450
11127       DYRK1A              21       37365790     37517450
11128       DYRK1A              21       37365790     37517450
11129       DYRK1A              21       37365790     37517450
11130       DYRK1A              21       37365790     37517450
11131       DYRK1A              21       37365790     37517450
11132       DYRK1A              21       37365790     37517450
11133       DYRK1A              21       37365790     37517450
11134       DYRK1A              21       37365790     37517450
11135       DYRK1A              21       37365790     37517450
11136       DYRK1A              21       37365790     37517450
11137       DYRK1A              21       37365790     37517450
11138       DYRK1A              21       37365790     37517450
11139       DYRK1A              21       37365790     37517450
11140       DYRK1A              21       37365790     37517450
11141       DYRK1A              21       37365790     37517450
11142       DYRK1A              21       37365790     37517450
11143       DYRK1A              21       37365790     37517450
11144       DYRK1A              21       37365790     37517450
11145       DYRK1A              21       37365790     37517450
11146       DYRK1A              21       37365790     37517450
11147       DYRK1A              21       37365790     37517450
11148       DYRK1A              21       37365790     37517450
11149       DYRK1A              21       37365790     37517450
11150       DYRK1A              21       37365790     37517450
11151       DYRK1A              21       37365790     37517450
11152       DYRK1A              21       37365790     37517450
11153       DYRK1A              21       37365790     37517450
11154       DYRK1A              21       37365790     37517450
11155       DYRK1A              21       37365790     37517450
11156       DYRK1A              21       37365790     37517450
11157       DYRK1A              21       37365790     37517450
11158       DYRK1A              21       37365790     37517450
11159       DYRK1A              21       37365790     37517450
11160       DYRK1A              21       37365790     37517450
11161       DYRK1A              21       37365790     37517450
11162       DYRK1A              21       37365790     37517450
11163       DYRK1A              21       37365790     37517450
11164       DYRK1A              21       37365790     37517450
11165       DYRK1A              21       37365790     37517450
11166       DYRK1A              21       37365790     37517450
11167       DYRK1A              21       37365790     37517450
11168       DYRK1A              21       37365790     37517450
11169       DYRK1A              21       37365790     37517450
11170       DYRK1A              21       37365790     37517450
11171       DYRK1A              21       37365790     37517450
11172       DYRK1A              21       37365790     37517450
11173       DYRK1A              21       37365790     37517450
11174       DYRK1A              21       37365790     37517450
11175       DYRK1A              21       37365790     37517450
11176       RPL8P2              21       30263380     30263881
11177       DSTNP1              21       46653558     46654022
11178        PRMT2              21       46635167     46665124
11179        PRMT2              21       46635167     46665124
11180        PRMT2              21       46635167     46665124
11181        PRMT2              21       46635167     46665124
11182        PRMT2              21       46635167     46665124
11183        PRMT2              21       46635167     46665124
11184        PRMT2              21       46635167     46665124
11185        PRMT2              21       46635167     46665124
11186        PRMT2              21       46635167     46665124
11187        PRMT2              21       46635167     46665124
11188        PRMT2              21       46635167     46665124
11189        PRMT2              21       46635167     46665124
11190        PRMT2              21       46635167     46665124
11191        PRMT2              21       46635167     46665124
11192        PRMT2              21       46635167     46665124
11193        PRMT2              21       46635167     46665124
11194        PRMT2              21       46635167     46665124
11195        PRMT2              21       46635167     46665124
11196        PRMT2              21       46635167     46665124
11197        PRMT2              21       46635167     46665124
11198        PRMT2              21       46635167     46665124
11199        PRMT2              21       46635167     46665124
11200        PRMT2              21       46635167     46665124
11201        PRMT2              21       46635167     46665124
11202        PRMT2              21       46635167     46665124
11203        PRMT2              21       46635167     46665124
11204        PRMT2              21       46635167     46665124
11205        PRMT2              21       46635167     46665124
11206        PRMT2              21       46635167     46665124
11207        PRMT2              21       46635167     46665124
11208        PRMT2              21       46635167     46665124
11209        PRMT2              21       46635167     46665124
11210        PRMT2              21       46635167     46665124
11211        PRMT2              21       46635167     46665124
11212        PRMT2              21       46635167     46665124
11213        PRMT2              21       46635167     46665124
11214        PRMT2              21       46635167     46665124
11215        PRMT2              21       46635167     46665124
11216        PRMT2              21       46635167     46665124
11217        PRMT2              21       46635167     46665124
11218        PRMT2              21       46635167     46665124
11219        PRMT2              21       46635167     46665124
11220        PRMT2              21       46635167     46665124
11221        PRMT2              21       46635167     46665124
11222        PRMT2              21       46635167     46665124
11223        PRMT2              21       46635167     46665124
11224        PRMT2              21       46635167     46665124
11225        PRMT2              21       46635167     46665124
11226        PRMT2              21       46635167     46665124
11227        PRMT2              21       46635167     46665124
11228        PRMT2              21       46635167     46665124
11229        PRMT2              21       46635167     46665124
11230        PRMT2              21       46635167     46665124
11231        PRMT2              21       46635167     46665124
11232        PRMT2              21       46635167     46665124
11233        PRMT2              21       46635167     46665124
11234        PRMT2              21       46635167     46665124
11235        PRMT2              21       46635167     46665124
11236        PRMT2              21       46635167     46665124
11237        PRMT2              21       46635167     46665124
11238        PRMT2              21       46635167     46665124
11239        PRMT2              21       46635167     46665124
11240        PRMT2              21       46635167     46665124
11241        PRMT2              21       46635167     46665124
11242        PRMT2              21       46635167     46665124
11243        PRMT2              21       46635167     46665124
11244        PRMT2              21       46635167     46665124
11245        PRMT2              21       46635167     46665124
11246        PRMT2              21       46635167     46665124
11247        PRMT2              21       46635167     46665124
11248        PRMT2              21       46635167     46665124
11249        PRMT2              21       46635167     46665124
11250        PRMT2              21       46635167     46665124
11251        PRMT2              21       46635167     46665124
11252        PRMT2              21       46635167     46665124
11253        PRMT2              21       46635167     46665124
11254        PRMT2              21       46635167     46665124
11255        PRMT2              21       46635167     46665124
11256        PRMT2              21       46635167     46665124
11257        PRMT2              21       46635167     46665124
11258        PRMT2              21       46635167     46665124
11259        PRMT2              21       46635167     46665124
11260        PRMT2              21       46635167     46665124
11261        PRMT2              21       46635167     46665124
11262        PRMT2              21       46635167     46665124
11263        PRMT2              21       46635167     46665124
11264        PRMT2              21       46635167     46665124
11265        PRMT2              21       46635167     46665124
11266        PRMT2              21       46635167     46665124
11267        PRMT2              21       46635167     46665124
11268        PRMT2              21       46635167     46665124
11269        PRMT2              21       46635167     46665124
11270        PRMT2              21       46635167     46665124
11271        PRMT2              21       46635167     46665124
11272        PRMT2              21       46635167     46665124
11273        PRMT2              21       46635167     46665124
11274        PRMT2              21       46635167     46665124
11275        PRMT2              21       46635167     46665124
11276        PRMT2              21       46635167     46665124
11277        PRMT2              21       46635167     46665124
11278        PRMT2              21       46635167     46665124
11279        PRMT2              21       46635167     46665124
11280        PRMT2              21       46635167     46665124
11281        PRMT2              21       46635167     46665124
11282        PRMT2              21       46635167     46665124
11283        PRMT2              21       46635167     46665124
11284        PRMT2              21       46635167     46665124
11285        PRMT2              21       46635167     46665124
11286        PRMT2              21       46635167     46665124
11287    KRTAP24-1              21       30281309     30282958
11288    KRTAP25-1              21       30289145     30289514
11289    KRTAP26-1              21       30319124     30320316
11290    KRTAP27-1              21       30337013     30337694
11291    KRTAP23-1              21       30348399     30348609
11292   KRTAP13-6P              21       30356515     30356885
11293    KRTAP13-2              21       30371391     30372257
11294    KRTAP13-1              21       30396074     30396822
11295    KRTAP13-3              21       30425265     30425968
11296    KRTAP13-4              21       30430230     30431026
11297    LINC00314              21       28013363     28023233
11298    LINC00314              21       28013363     28023233
11299      RBPMSLP              21       15744004     15745080
11300      RBPMSLP              21       15744004     15745080
11301       SAMSN1              21       14485228     14583402
11302       SAMSN1              21       14485228     14583402
11303       SAMSN1              21       14485228     14583402
11304       SAMSN1              21       14485228     14583402
11305       SAMSN1              21       14485228     14583402
11306       SAMSN1              21       14485228     14583402
11307       SAMSN1              21       14485228     14583402
11308       SAMSN1              21       14485228     14583402
11309       SAMSN1              21       14485228     14583402
11310       SAMSN1              21       14485228     14583402
11311       SAMSN1              21       14485228     14583402
11312       SAMSN1              21       14485228     14583402
11313       SAMSN1              21       14485228     14583402
11314       SAMSN1              21       14485228     14583402
11315       SAMSN1              21       14485228     14583402
11316       SAMSN1              21       14485228     14583402
11317       SAMSN1              21       14485228     14583402
11318       SAMSN1              21       14485228     14583402
11319       SAMSN1              21       14485228     14583402
11320       SAMSN1              21       14485228     14583402
11321       SAMSN1              21       14485228     14583402
11322       SAMSN1              21       14485228     14583402
11323       SAMSN1              21       14485228     14583402
11324       SAMSN1              21       14485228     14583402
11325       SAMSN1              21       14485228     14583402
11326       SAMSN1              21       14485228     14583402
11327       SAMSN1              21       14485228     14583402
11328       SAMSN1              21       14485228     14583402
11329       SAMSN1              21       14485228     14583402
11330       SAMSN1              21       14485228     14583402
11331       SAMSN1              21       14485228     14583402
11332       SAMSN1              21       14485228     14583402
11333       SAMSN1              21       14485228     14583402
11334       SAMSN1              21       14485228     14583402
11335       SAMSN1              21       14485228     14583402
11336       SAMSN1              21       14485228     14583402
11337    LINC00159              21       32080316     32197813
11338    LINC00159              21       32080316     32197813
11339    LINC00159              21       32080316     32197813
11340    LINC00159              21       32080316     32197813
11341    LINC00159              21       32080316     32197813
11342    LINC00159              21       32080316     32197813
11343    LINC00159              21       32080316     32197813
11344                           21        5073458      5087867
11345                           21        5073458      5087867
11346    LINC01423              21       38323635     38333421
11347    LINC01423              21       38323635     38333421
11348    LINC01423              21       38323635     38333421
11349    LINC01423              21       38323635     38333421
11350    LINC01423              21       38323635     38333421
11351    LINC01423              21       38323635     38333421
11352    LINC01423              21       38323635     38333421
11353    LINC01423              21       38323635     38333421
11354    LINC01423              21       38323635     38333421
11355     FBXW11P1              21       31627127     31628600
11356    LINC00322              21       43322417     43332039
11357    LINC00322              21       43322417     43332039
11358    LINC00322              21       43322417     43332039
11359    SPATA20P1              21       38238227     38238664
11360                           21       30762682     30762882
11361    KRTAP19-3              21       30491464     30491985
11362    KRTAP15-1              21       30440275     30440945
11363        BAGE2              21       10413477     10516431
11364        BAGE2              21       10413477     10516431
11365        BAGE2              21       10413477     10516431
11366        BAGE2              21       10413477     10516431
11367        BAGE2              21       10413477     10516431
11368        BAGE2              21       10413477     10516431
11369        BAGE2              21       10413477     10516431
11370        BAGE2              21       10413477     10516431
11371        BAGE2              21       10413477     10516431
11372        BAGE2              21       10413477     10516431
11373        BAGE2              21       10413477     10516431
11374        BAGE2              21       10413477     10516431
11375        BAGE2              21       10413477     10516431
11376        BAGE2              21       10413477     10516431
11377        BAGE2              21       10413477     10516431
11378        BAGE2              21       10413477     10516431
11379        BAGE2              21       10413477     10516431
11380        BAGE2              21       10413477     10516431
11381        BAGE2              21       10413477     10516431
11382        BAGE2              21       10413477     10516431
11383        BAGE2              21       10413477     10516431
11384        BAGE2              21       10413477     10516431
11385        BAGE2              21       10413477     10516431
11386        BAGE2              21       10413477     10516431
11387        BAGE2              21       10413477     10516431
11388        BAGE2              21       10413477     10516431
11389        BAGE2              21       10413477     10516431
11390        BAGE2              21       10413477     10516431
11391                           21       10482738     10605716
11392                           21       10482738     10605716
11393                           21       10482738     10605716
11394                           21       10482738     10605716
11395                           21       10482738     10605716
11396                           21       10482738     10605716
11397                           21       10482738     10605716
11398                           21       10482738     10605716
11399                           21       10482738     10605716
11400                           21       10482738     10605716
11401                           21       10482738     10605716
11402                           21       10482738     10605716
11403                           21       10482738     10605716
11404                           21       10482738     10605716
11405                           21       10482738     10605716
11406                           21       10482738     10605716
11407                           21       10482738     10605716
11408                           21       10482738     10605716
11409                           21       10482738     10605716
11410                           21       10482738     10605716
11411                           21       10482738     10605716
11412                           21       10482738     10605716
11413                           21       10482738     10605716
11414                           21       10482738     10605716
11415                           21       10482738     10605716
11416                           21       10482738     10605716
11417                           21       10482738     10605716
11418                           21       10482738     10605716
11419                           21       10482738     10605716
11420                           21       10482738     10605716
11421                           21       10482738     10605716
11422                           21       10482738     10605716
11423                           21       18477358     18486599
11424                           21       18477358     18486599
11425     MIR99AHG              21       15928296     16627397
11426     MIR99AHG              21       15928296     16627397
11427     MIR99AHG              21       15928296     16627397
11428     MIR99AHG              21       15928296     16627397
11429     MIR99AHG              21       15928296     16627397
11430     MIR99AHG              21       15928296     16627397
11431     MIR99AHG              21       15928296     16627397
11432     MIR99AHG              21       15928296     16627397
11433     MIR99AHG              21       15928296     16627397
11434     MIR99AHG              21       15928296     16627397
11435     MIR99AHG              21       15928296     16627397
11436     MIR99AHG              21       15928296     16627397
11437     MIR99AHG              21       15928296     16627397
11438     MIR99AHG              21       15928296     16627397
11439     MIR99AHG              21       15928296     16627397
11440     MIR99AHG              21       15928296     16627397
11441     MIR99AHG              21       15928296     16627397
11442     MIR99AHG              21       15928296     16627397
11443     MIR99AHG              21       15928296     16627397
11444     MIR99AHG              21       15928296     16627397
11445     MIR99AHG              21       15928296     16627397
11446     MIR99AHG              21       15928296     16627397
11447     MIR99AHG              21       15928296     16627397
11448     MIR99AHG              21       15928296     16627397
11449     MIR99AHG              21       15928296     16627397
11450     MIR99AHG              21       15928296     16627397
11451     MIR99AHG              21       15928296     16627397
11452     MIR99AHG              21       15928296     16627397
11453     MIR99AHG              21       15928296     16627397
11454     MIR99AHG              21       15928296     16627397
11455     MIR99AHG              21       15928296     16627397
11456     MIR99AHG              21       15928296     16627397
11457     MIR99AHG              21       15928296     16627397
11458     MIR99AHG              21       15928296     16627397
11459     MIR99AHG              21       15928296     16627397
11460     MIR99AHG              21       15928296     16627397
11461     MIR99AHG              21       15928296     16627397
11462     MIR99AHG              21       15928296     16627397
11463     MIR99AHG              21       15928296     16627397
11464     MIR99AHG              21       15928296     16627397
11465     MIR99AHG              21       15928296     16627397
11466     MIR99AHG              21       15928296     16627397
11467     MIR99AHG              21       15928296     16627397
11468     MIR99AHG              21       15928296     16627397
11469     MIR99AHG              21       15928296     16627397
11470     MIR99AHG              21       15928296     16627397
11471     MIR99AHG              21       15928296     16627397
11472     MIR99AHG              21       15928296     16627397
11473     MIR99AHG              21       15928296     16627397
11474     MIR99AHG              21       15928296     16627397
11475     MIR99AHG              21       15928296     16627397
11476     MIR99AHG              21       15928296     16627397
11477     MIR99AHG              21       15928296     16627397
11478     MIR99AHG              21       15928296     16627397
11479     MIR99AHG              21       15928296     16627397
11480     MIR99AHG              21       15928296     16627397
11481     MIR99AHG              21       15928296     16627397
11482     MIR99AHG              21       15928296     16627397
11483     MIR99AHG              21       15928296     16627397
11484     MIR99AHG              21       15928296     16627397
11485     MIR99AHG              21       15928296     16627397
11486     MIR99AHG              21       15928296     16627397
11487     MIR99AHG              21       15928296     16627397
11488     MIR99AHG              21       15928296     16627397
11489     MIR99AHG              21       15928296     16627397
11490     MIR99AHG              21       15928296     16627397
11491     MIR99AHG              21       15928296     16627397
11492     MIR99AHG              21       15928296     16627397
11493     MIR99AHG              21       15928296     16627397
11494     MIR99AHG              21       15928296     16627397
11495     MIR99AHG              21       15928296     16627397
11496     MIR99AHG              21       15928296     16627397
11497     MIR99AHG              21       15928296     16627397
11498     MIR99AHG              21       15928296     16627397
11499     MIR99AHG              21       15928296     16627397
11500     MIR99AHG              21       15928296     16627397
11501     MIR99AHG              21       15928296     16627397
11502     MIR99AHG              21       15928296     16627397
11503     MIR99AHG              21       15928296     16627397
11504     MIR99AHG              21       15928296     16627397
11505     MIR99AHG              21       15928296     16627397
11506     MIR99AHG              21       15928296     16627397
11507     MIR99AHG              21       15928296     16627397
11508     MIR99AHG              21       15928296     16627397
11509     MIR99AHG              21       15928296     16627397
11510     MIR99AHG              21       15928296     16627397
11511     MIR99AHG              21       15928296     16627397
11512     MIR99AHG              21       15928296     16627397
11513     MIR99AHG              21       15928296     16627397
11514     MIR99AHG              21       15928296     16627397
11515     MIR99AHG              21       15928296     16627397
11516     MIR99AHG              21       15928296     16627397
11517     MIR99AHG              21       15928296     16627397
11518     MIR99AHG              21       15928296     16627397
11519     MIR99AHG              21       15928296     16627397
11520     MIR99AHG              21       15928296     16627397
11521     MIR99AHG              21       15928296     16627397
11522     MIR99AHG              21       15928296     16627397
11523     MIR99AHG              21       15928296     16627397
11524     MIR99AHG              21       15928296     16627397
11525     MIR99AHG              21       15928296     16627397
11526                           21       32624416     32625096
11527                           21       32624416     32625096
11528     EIF4A1P1              21       27367014     27367947
11529                           21       39184469     39184899
11530    BRWD1-AS1              21       39315707     39323218
11531    BRWD1-AS1              21       39315707     39323218
11532    BRWD1-AS1              21       39315707     39323218
11533      PCBP2P1              21       39171130     39172106
11534                           21       26170871     26217381
11535                           21       26170871     26217381
11536                           21       26170871     26217381
11537                           21       26170871     26217381
11538                           21       26170871     26217381
11539                           21       26170871     26217381
11540                           21       26170871     26217381
11541          APP              21       25880550     26171128
11542          APP              21       25880550     26171128
11543          APP              21       25880550     26171128
11544          APP              21       25880550     26171128
11545          APP              21       25880550     26171128
11546          APP              21       25880550     26171128
11547          APP              21       25880550     26171128
11548          APP              21       25880550     26171128
11549          APP              21       25880550     26171128
11550          APP              21       25880550     26171128
11551          APP              21       25880550     26171128
11552          APP              21       25880550     26171128
11553          APP              21       25880550     26171128
11554          APP              21       25880550     26171128
11555          APP              21       25880550     26171128
11556          APP              21       25880550     26171128
11557          APP              21       25880550     26171128
11558          APP              21       25880550     26171128
11559          APP              21       25880550     26171128
11560          APP              21       25880550     26171128
11561          APP              21       25880550     26171128
11562          APP              21       25880550     26171128
11563          APP              21       25880550     26171128
11564          APP              21       25880550     26171128
11565          APP              21       25880550     26171128
11566          APP              21       25880550     26171128
11567          APP              21       25880550     26171128
11568          APP              21       25880550     26171128
11569          APP              21       25880550     26171128
11570          APP              21       25880550     26171128
11571          APP              21       25880550     26171128
11572          APP              21       25880550     26171128
11573          APP              21       25880550     26171128
11574          APP              21       25880550     26171128
11575          APP              21       25880550     26171128
11576          APP              21       25880550     26171128
11577          APP              21       25880550     26171128
11578          APP              21       25880550     26171128
11579          APP              21       25880550     26171128
11580          APP              21       25880550     26171128
11581          APP              21       25880550     26171128
11582          APP              21       25880550     26171128
11583          APP              21       25880550     26171128
11584          APP              21       25880550     26171128
11585          APP              21       25880550     26171128
11586          APP              21       25880550     26171128
11587          APP              21       25880550     26171128
11588          APP              21       25880550     26171128
11589          APP              21       25880550     26171128
11590          APP              21       25880550     26171128
11591          APP              21       25880550     26171128
11592          APP              21       25880550     26171128
11593          APP              21       25880550     26171128
11594          APP              21       25880550     26171128
11595          APP              21       25880550     26171128
11596          APP              21       25880550     26171128
11597          APP              21       25880550     26171128
11598          APP              21       25880550     26171128
11599          APP              21       25880550     26171128
11600          APP              21       25880550     26171128
11601          APP              21       25880550     26171128
11602          APP              21       25880550     26171128
11603          APP              21       25880550     26171128
11604          APP              21       25880550     26171128
11605          APP              21       25880550     26171128
11606          APP              21       25880550     26171128
11607          APP              21       25880550     26171128
11608          APP              21       25880550     26171128
11609          APP              21       25880550     26171128
11610          APP              21       25880550     26171128
11611          APP              21       25880550     26171128
11612          APP              21       25880550     26171128
11613          APP              21       25880550     26171128
11614          APP              21       25880550     26171128
11615          APP              21       25880550     26171128
11616          APP              21       25880550     26171128
11617          APP              21       25880550     26171128
11618          APP              21       25880550     26171128
11619          APP              21       25880550     26171128
11620          APP              21       25880550     26171128
11621          APP              21       25880550     26171128
11622          APP              21       25880550     26171128
11623          APP              21       25880550     26171128
11624          APP              21       25880550     26171128
11625          APP              21       25880550     26171128
11626          APP              21       25880550     26171128
11627          APP              21       25880550     26171128
11628          APP              21       25880550     26171128
11629          APP              21       25880550     26171128
11630          APP              21       25880550     26171128
11631          APP              21       25880550     26171128
11632          APP              21       25880550     26171128
11633          APP              21       25880550     26171128
11634          APP              21       25880550     26171128
11635          APP              21       25880550     26171128
11636          APP              21       25880550     26171128
11637          APP              21       25880550     26171128
11638          APP              21       25880550     26171128
11639          APP              21       25880550     26171128
11640          APP              21       25880550     26171128
11641          APP              21       25880550     26171128
11642          APP              21       25880550     26171128
11643          APP              21       25880550     26171128
11644          APP              21       25880550     26171128
11645          APP              21       25880550     26171128
11646          APP              21       25880550     26171128
11647          APP              21       25880550     26171128
11648          APP              21       25880550     26171128
11649          APP              21       25880550     26171128
11650          APP              21       25880550     26171128
11651          APP              21       25880550     26171128
11652          APP              21       25880550     26171128
11653          APP              21       25880550     26171128
11654          APP              21       25880550     26171128
11655          APP              21       25880550     26171128
11656          APP              21       25880550     26171128
11657          APP              21       25880550     26171128
11658          APP              21       25880550     26171128
11659          APP              21       25880550     26171128
11660          APP              21       25880550     26171128
11661          APP              21       25880550     26171128
11662          APP              21       25880550     26171128
11663          APP              21       25880550     26171128
11664          APP              21       25880550     26171128
11665          APP              21       25880550     26171128
11666          APP              21       25880550     26171128
11667          APP              21       25880550     26171128
11668          APP              21       25880550     26171128
11669          APP              21       25880550     26171128
11670          APP              21       25880550     26171128
11671          APP              21       25880550     26171128
11672          APP              21       25880550     26171128
11673          APP              21       25880550     26171128
11674          APP              21       25880550     26171128
11675          APP              21       25880550     26171128
11676          APP              21       25880550     26171128
11677          APP              21       25880550     26171128
11678          APP              21       25880550     26171128
11679          APP              21       25880550     26171128
11680          APP              21       25880550     26171128
11681          APP              21       25880550     26171128
11682          APP              21       25880550     26171128
11683          APP              21       25880550     26171128
11684          APP              21       25880550     26171128
11685          APP              21       25880550     26171128
11686          APP              21       25880550     26171128
11687          APP              21       25880550     26171128
11688          APP              21       25880550     26171128
11689          APP              21       25880550     26171128
11690          APP              21       25880550     26171128
11691          APP              21       25880550     26171128
11692          APP              21       25880550     26171128
11693          APP              21       25880550     26171128
11694          APP              21       25880550     26171128
11695          APP              21       25880550     26171128
11696          APP              21       25880550     26171128
11697          APP              21       25880550     26171128
11698          APP              21       25880550     26171128
11699          APP              21       25880550     26171128
11700          APP              21       25880550     26171128
11701          APP              21       25880550     26171128
11702          APP              21       25880550     26171128
11703          APP              21       25880550     26171128
11704          APP              21       25880550     26171128
11705          APP              21       25880550     26171128
11706          APP              21       25880550     26171128
11707          APP              21       25880550     26171128
11708          APP              21       25880550     26171128
11709          APP              21       25880550     26171128
11710          APP              21       25880550     26171128
11711          APP              21       25880550     26171128
11712          APP              21       25880550     26171128
11713          APP              21       25880550     26171128
11714          APP              21       25880550     26171128
11715    LINC01695              21       28116094     28228667
11716    LINC01695              21       28116094     28228667
11717    LINC01695              21       28116094     28228667
11718    LINC01695              21       28116094     28228667
11719    LINC01695              21       28116094     28228667
11720    LINC01695              21       28116094     28228667
11721    LINC01695              21       28116094     28228667
11722    LINC01695              21       28116094     28228667
11723    LINC01695              21       28116094     28228667
11724    LINC01695              21       28116094     28228667
11725    LINC01695              21       28116094     28228667
11726    LINC01695              21       28116094     28228667
11727    LINC01695              21       28116094     28228667
11728    LINC01694              21       45593654     45603056
11729    LINC01694              21       45593654     45603056
11730    LINC01694              21       45593654     45603056
11731    LINC01694              21       45593654     45603056
11732    LINC01694              21       45593654     45603056
11733    LINC00316              21       45338590     45341990
11734    LINC00316              21       45338590     45341990
11735                           21       45336707     45338665
11736                           21       45336707     45338665
11737    LINC00315              21       45300245     45305257
11738    LINC00315              21       45300245     45305257
11739    LINC00315              21       45300245     45305257
11740    LINC00205              21       45293285     45297354
11741    LINC00205              21       45293285     45297354
11742         URB1              21       32311018     32393026
11743         URB1              21       32311018     32393026
11744         URB1              21       32311018     32393026
11745         URB1              21       32311018     32393026
11746         URB1              21       32311018     32393026
11747         URB1              21       32311018     32393026
11748         URB1              21       32311018     32393026
11749         URB1              21       32311018     32393026
11750         URB1              21       32311018     32393026
11751         URB1              21       32311018     32393026
11752         URB1              21       32311018     32393026
11753         URB1              21       32311018     32393026
11754         URB1              21       32311018     32393026
11755         URB1              21       32311018     32393026
11756         URB1              21       32311018     32393026
11757         URB1              21       32311018     32393026
11758         URB1              21       32311018     32393026
11759         URB1              21       32311018     32393026
11760         URB1              21       32311018     32393026
11761         URB1              21       32311018     32393026
11762         URB1              21       32311018     32393026
11763         URB1              21       32311018     32393026
11764         URB1              21       32311018     32393026
11765         URB1              21       32311018     32393026
11766         URB1              21       32311018     32393026
11767         URB1              21       32311018     32393026
11768         URB1              21       32311018     32393026
11769         URB1              21       32311018     32393026
11770         URB1              21       32311018     32393026
11771         URB1              21       32311018     32393026
11772         URB1              21       32311018     32393026
11773         URB1              21       32311018     32393026
11774         URB1              21       32311018     32393026
11775         URB1              21       32311018     32393026
11776         URB1              21       32311018     32393026
11777         URB1              21       32311018     32393026
11778         URB1              21       32311018     32393026
11779         URB1              21       32311018     32393026
11780         URB1              21       32311018     32393026
11781         URB1              21       32311018     32393026
11782         URB1              21       32311018     32393026
11783         URB1              21       32311018     32393026
11784         URB1              21       32311018     32393026
11785      NCSTNP1              21       27492118     27492261
11786                           21       26889376     26939742
11787                           21       26889376     26939742
11788                           21       26889376     26939742
11789                           21       26349780     26350634
11790                           21       26349780     26350634
11791   METTL21AP1              21       39235386     39236020
11792        POTED              21       13609858     13641585
11793        POTED              21       13609858     13641585
11794        POTED              21       13609858     13641585
11795        POTED              21       13609858     13641585
11796        POTED              21       13609858     13641585
11797        POTED              21       13609858     13641585
11798        POTED              21       13609858     13641585
11799        POTED              21       13609858     13641585
11800        POTED              21       13609858     13641585
11801        POTED              21       13609858     13641585
11802        POTED              21       13609858     13641585
11803        POTED              21       13609858     13641585
11804        POTED              21       13609858     13641585
11805        POTED              21       13609858     13641585
11806        POTED              21       13609858     13641585
11807        POTED              21       13609858     13641585
11808        POTED              21       13609858     13641585
11809        POTED              21       13609858     13641585
11810        POTED              21       13609858     13641585
11811                           21       31666728     31667247
11812         SOD1              21       31659622     31668931
11813         SOD1              21       31659622     31668931
11814         SOD1              21       31659622     31668931
11815         SOD1              21       31659622     31668931
11816         SOD1              21       31659622     31668931
11817         SOD1              21       31659622     31668931
11818         SOD1              21       31659622     31668931
11819         SOD1              21       31659622     31668931
11820         SOD1              21       31659622     31668931
11821         SOD1              21       31659622     31668931
11822         SOD1              21       31659622     31668931
11823         SOD1              21       31659622     31668931
11824         SOD1              21       31659622     31668931
11825         SOD1              21       31659622     31668931
11826         SOD1              21       31659622     31668931
11827         SOD1              21       31659622     31668931
11828         SOD1              21       31659622     31668931
11829         SOD1              21       31659622     31668931
11830         SOD1              21       31659622     31668931
11831         SOD1              21       31659622     31668931
11832    LINC00319              21       43446601     43453893
11833    LINC00319              21       43446601     43453893
11834    LINC00319              21       43446601     43453893
11835    LINC00319              21       43446601     43453893
11836    LINC00319              21       43446601     43453893
11837    LINC00319              21       43446601     43453893
11838    LINC00319              21       43446601     43453893
11839                           21       43465309     43467298
11840                           21       43465309     43467298
11841    LINC00313              21       43462094     43479534
11842    LINC00313              21       43462094     43479534
11843    LINC00313              21       43462094     43479534
11844    LINC00313              21       43462094     43479534
11845    LINC00313              21       43462094     43479534
11846    LINC00313              21       43462094     43479534
11847    LINC00313              21       43462094     43479534
11848    LINC00313              21       43462094     43479534
11849    LINC00313              21       43462094     43479534
11850    LINC00313              21       43462094     43479534
11851    LINC00313              21       43462094     43479534
11852    LINC00313              21       43462094     43479534
11853    LINC00313              21       43462094     43479534
11854    LINC00313              21       43462094     43479534
11855    LINC00313              21       43462094     43479534
11856    LINC00313              21       43462094     43479534
11857    LINC00313              21       43462094     43479534
11858    LINC00313              21       43462094     43479534
11859    LINC00313              21       43462094     43479534
11860    LINC00313              21       43462094     43479534
11861    LINC00313              21       43462094     43479534
11862    LINC00313              21       43462094     43479534
11863                           21       13654073     13654356
11864     GRAMD4P1              21       13665868     13667546
11865     GRAMD4P1              21       13665868     13667546
11866      CXADRP1              21       13676022     13677116
11867                           21       13679300     13681138
11868                           21       13704853     13705518
11869      FEM1AP1              21       13762338     13764332
11870                           21       13769932     13771740
11871                           21       13769932     13771740
11872      TERF1P1              21       13776086     13777266
11873       ZBTB21              21       41986831     42010387
11874       ZBTB21              21       41986831     42010387
11875       ZBTB21              21       41986831     42010387
11876       ZBTB21              21       41986831     42010387
11877       ZBTB21              21       41986831     42010387
11878       ZBTB21              21       41986831     42010387
11879       ZBTB21              21       41986831     42010387
11880       ZBTB21              21       41986831     42010387
11881       ZBTB21              21       41986831     42010387
11882       ZBTB21              21       41986831     42010387
11883       ZBTB21              21       41986831     42010387
11884       ZBTB21              21       41986831     42010387
11885       ZBTB21              21       41986831     42010387
11886       ZBTB21              21       41986831     42010387
11887       ZBTB21              21       41986831     42010387
11888       ZBTB21              21       41986831     42010387
11889       ZBTB21              21       41986831     42010387
11890       ZBTB21              21       41986831     42010387
11891       ZBTB21              21       41986831     42010387
11892       ZBTB21              21       41986831     42010387
11893       ZBTB21              21       41986831     42010387
11894       ZBTB21              21       41986831     42010387
11895       ZBTB21              21       41986831     42010387
11896       ZBTB21              21       41986831     42010387
11897       ZBTB21              21       41986831     42010387
11898       ZBTB21              21       41986831     42010387
11899   ZNF295-AS1              21       42009194     42024924
11900   ZNF295-AS1              21       42009194     42024924
11901   ZNF295-AS1              21       42009194     42024924
11902   ZNF295-AS1              21       42009194     42024924
11903   ZNF295-AS1              21       42009194     42024924
11904   ZNF295-AS1              21       42009194     42024924
11905     FAM207CP              21       13792635     13793141
11906     GXYLT1P2              21       13824406     13825635
11907       CNN2P7              21       13826696     13827627
11908     ZNF114P1              21       13839118     13839409
11909     CYP4F29P              21       13843133     13848364
11910     CYP4F29P              21       13843133     13848364
11911     CYP4F29P              21       13843133     13848364
11912     CYP4F29P              21       13843133     13848364
11913     CYP4F29P              21       13843133     13848364
11914     CYP4F29P              21       13843133     13848364
11915     CYP4F29P              21       13843133     13848364
11916     CYP4F29P              21       13843133     13848364
11917     CYP4F29P              21       13843133     13848364
11918     CYP4F29P              21       13843133     13848364
11919     CYP4F29P              21       13843133     13848364
11920     CYP4F29P              21       13843133     13848364
11921     SNX18P13              21       13905960     13906488
11922          ERG              21       38380027     38661780
11923          ERG              21       38380027     38661780
11924          ERG              21       38380027     38661780
11925          ERG              21       38380027     38661780
11926          ERG              21       38380027     38661780
11927          ERG              21       38380027     38661780
11928          ERG              21       38380027     38661780
11929          ERG              21       38380027     38661780
11930          ERG              21       38380027     38661780
11931          ERG              21       38380027     38661780
11932          ERG              21       38380027     38661780
11933          ERG              21       38380027     38661780
11934          ERG              21       38380027     38661780
11935          ERG              21       38380027     38661780
11936          ERG              21       38380027     38661780
11937          ERG              21       38380027     38661780
11938          ERG              21       38380027     38661780
11939          ERG              21       38380027     38661780
11940          ERG              21       38380027     38661780
11941          ERG              21       38380027     38661780
11942          ERG              21       38380027     38661780
11943          ERG              21       38380027     38661780
11944          ERG              21       38380027     38661780
11945          ERG              21       38380027     38661780
11946          ERG              21       38380027     38661780
11947          ERG              21       38380027     38661780
11948          ERG              21       38380027     38661780
11949          ERG              21       38380027     38661780
11950          ERG              21       38380027     38661780
11951          ERG              21       38380027     38661780
11952          ERG              21       38380027     38661780
11953          ERG              21       38380027     38661780
11954          ERG              21       38380027     38661780
11955          ERG              21       38380027     38661780
11956          ERG              21       38380027     38661780
11957          ERG              21       38380027     38661780
11958          ERG              21       38380027     38661780
11959          ERG              21       38380027     38661780
11960          ERG              21       38380027     38661780
11961          ERG              21       38380027     38661780
11962          ERG              21       38380027     38661780
11963          ERG              21       38380027     38661780
11964          ERG              21       38380027     38661780
11965          ERG              21       38380027     38661780
11966          ERG              21       38380027     38661780
11967          ERG              21       38380027     38661780
11968          ERG              21       38380027     38661780
11969          ERG              21       38380027     38661780
11970          ERG              21       38380027     38661780
11971          ERG              21       38380027     38661780
11972          ERG              21       38380027     38661780
11973          ERG              21       38380027     38661780
11974          ERG              21       38380027     38661780
11975          ERG              21       38380027     38661780
11976          ERG              21       38380027     38661780
11977          ERG              21       38380027     38661780
11978          ERG              21       38380027     38661780
11979          ERG              21       38380027     38661780
11980          ERG              21       38380027     38661780
11981          ERG              21       38380027     38661780
11982          ERG              21       38380027     38661780
11983          ERG              21       38380027     38661780
11984          ERG              21       38380027     38661780
11985          ERG              21       38380027     38661780
11986          ERG              21       38380027     38661780
11987          ERG              21       38380027     38661780
11988          ERG              21       38380027     38661780
11989          ERG              21       38380027     38661780
11990          ERG              21       38380027     38661780
11991          ERG              21       38380027     38661780
11992          ERG              21       38380027     38661780
11993          ERG              21       38380027     38661780
11994          ERG              21       38380027     38661780
11995          ERG              21       38380027     38661780
11996          ERG              21       38380027     38661780
11997          ERG              21       38380027     38661780
11998          ERG              21       38380027     38661780
11999          ERG              21       38380027     38661780
12000          ERG              21       38380027     38661780
12001          ERG              21       38380027     38661780
12002          ERG              21       38380027     38661780
12003          ERG              21       38380027     38661780
12004          ERG              21       38380027     38661780
12005          ERG              21       38380027     38661780
12006          ERG              21       38380027     38661780
12007          ERG              21       38380027     38661780
12008          ERG              21       38380027     38661780
12009          ERG              21       38380027     38661780
12010          ERG              21       38380027     38661780
12011          ERG              21       38380027     38661780
12012          ERG              21       38380027     38661780
12013          ERG              21       38380027     38661780
12014          ERG              21       38380027     38661780
12015          ERG              21       38380027     38661780
12016          ERG              21       38380027     38661780
12017          ERG              21       38380027     38661780
12018          ERG              21       38380027     38661780
12019          ERG              21       38380027     38661780
12020          ERG              21       38380027     38661780
12021          ERG              21       38380027     38661780
12022          ERG              21       38380027     38661780
12023          ERG              21       38380027     38661780
12024          ERG              21       38380027     38661780
12025          ERG              21       38380027     38661780
12026          ERG              21       38380027     38661780
12027          ERG              21       38380027     38661780
12028          ERG              21       38380027     38661780
12029          ERG              21       38380027     38661780
12030          ERG              21       38380027     38661780
12031          ERG              21       38380027     38661780
12032          ERG              21       38380027     38661780
12033          ERG              21       38380027     38661780
12034          ERG              21       38380027     38661780
12035          ERG              21       38380027     38661780
12036          ERG              21       38380027     38661780
12037          ERG              21       38380027     38661780
12038          ERG              21       38380027     38661780
12039          ERG              21       38380027     38661780
12040          ERG              21       38380027     38661780
12041          ERG              21       38380027     38661780
12042          ERG              21       38380027     38661780
12043          ERG              21       38380027     38661780
12044          ERG              21       38380027     38661780
12045          ERG              21       38380027     38661780
12046          ERG              21       38380027     38661780
12047          ERG              21       38380027     38661780
12048          ERG              21       38380027     38661780
12049          ERG              21       38380027     38661780
12050          ERG              21       38380027     38661780
12051          ERG              21       38380027     38661780
12052          ERG              21       38380027     38661780
12053          ERG              21       38380027     38661780
12054          ERG              21       38380027     38661780
12055          ERG              21       38380027     38661780
12056          ERG              21       38380027     38661780
12057          ERG              21       38380027     38661780
12058          ERG              21       38380027     38661780
12059          ERG              21       38380027     38661780
12060          ERG              21       38380027     38661780
12061          ERG              21       38380027     38661780
12062          ERG              21       38380027     38661780
12063          ERG              21       38380027     38661780
12064      GTF2IP2              21       13443373     13489176
12065      GTF2IP2              21       13443373     13489176
12066      GTF2IP2              21       13443373     13489176
12067      GTF2IP2              21       13443373     13489176
12068      GTF2IP2              21       13443373     13489176
12069      GTF2IP2              21       13443373     13489176
12070    KRTAP20-2              21       30635236     30635619
12071                           21       39028536     39029128
12072                           21       39028536     39029128
12073                           21       31735732     31736407
12074   ANKRD30BP1              21       13384249     13427773
12075   ANKRD30BP1              21       13384249     13427773
12076   ANKRD30BP1              21       13384249     13427773
12077   ANKRD30BP1              21       13384249     13427773
12078   ANKRD30BP1              21       13384249     13427773
12079   ANKRD30BP1              21       13384249     13427773
12080   ANKRD30BP1              21       13384249     13427773
12081   ANKRD30BP1              21       13384249     13427773
12082   ANKRD30BP1              21       13384249     13427773
12083   ANKRD30BP1              21       13384249     13427773
12084   ANKRD30BP1              21       13384249     13427773
12085   ANKRD30BP1              21       13384249     13427773
12086   ANKRD30BP1              21       13384249     13427773
12087   ANKRD30BP1              21       13384249     13427773
12088   ANKRD30BP1              21       13384249     13427773
12089   ANKRD30BP1              21       13384249     13427773
12090   ANKRD30BP1              21       13384249     13427773
12091   ANKRD30BP1              21       13384249     13427773
12092    KRTAP19-6              21       30541535     30541864
12093     RPL23AP3              21       36016079     36016546
12094                           21       36319792     36320670
12095      H2AFZP1              21       44046347     44047041
12096      H2AFZP1              21       44046347     44047041
12097      RPL37P3              21       17894193     17894485
12098         TFF2              21       42346357     42351128
12099         TFF2              21       42346357     42351128
12100         TFF2              21       42346357     42351128
12101         TFF2              21       42346357     42351128
12102         TFF2              21       42346357     42351128
12103         TFF2              21       42346357     42351128
12104         TFF2              21       42346357     42351128
12105         TFF2              21       42346357     42351128
12106         TFF2              21       42346357     42351128
12107         TFF2              21       42346357     42351128
12108         TFF2              21       42346357     42351128
12109         TFF2              21       42346357     42351128
12110         TFF2              21       42346357     42351128
12111      RHOT1P2              21       13936993     13937325
12112                           21       43363332     43366566
12113                           21       43363332     43366566
12114    KRTAP8-2P              21       30802242     30802427
12115    KRTAP21-3              21       30718525     30718777
12116                           21       44936303     44936954
12117    KRTAP19-7              21       30560875     30561314
12118        CLDN8              21       30214006     30216073
12119                           21       10397644     10397778
12120                           21       10328411     10342737
12121                           21       10328411     10342737
12122                           21       10328411     10342737
12123                           21       10328411     10342737
12124                           21       10328411     10342737
12125                           21       10328411     10342737
12126                           21       10136419     10137004
12127                           21       25515473     25518338
12128                           21       25515473     25518338
12129    LINC00158              21       25385820     25431701
12130    LINC00158              21       25385820     25431701
12131    LINC00158              21       25385820     25431701
12132    LINC00158              21       25385820     25431701
12133    LINC00158              21       25385820     25431701
12134    LINC00158              21       25385820     25431701
12135    LINC00158              21       25385820     25431701
12136    LINC00158              21       25385820     25431701
12137    LINC00158              21       25385820     25431701
12138    LINC00158              21       25385820     25431701
12139    LINC00158              21       25385820     25431701
12140    LINC00158              21       25385820     25431701
12141    LINC00158              21       25385820     25431701
12142    LINC00158              21       25385820     25431701
12143    LINC00158              21       25385820     25431701
12144    LINC00158              21       25385820     25431701
12145                           21       25371827     25372043
12146     RPL13AP7              21       25361821     25362431
12147    LINC01667              21        9781918      9814009
12148    LINC01667              21        9781918      9814009
12149    LINC01667              21        9781918      9814009
12150    LINC01667              21        9781918      9814009
12151    LINC01667              21        9781918      9814009
12152    LINC01667              21        9781918      9814009
12153    LINC01667              21        9781918      9814009
12154    LINC01667              21        9781918      9814009
12155    LINC01667              21        9781918      9814009
12156    LINC01667              21        9781918      9814009
12157    LINC01667              21        9781918      9814009
12158    LINC01667              21        9781918      9814009
12159    LINC01667              21        9781918      9814009
12160    LINC01667              21        9781918      9814009
12161                           21        9810381      9810503
12162                           21        9580024      9580415
12163                           21        9558970      9559155
12164     SNX18P12              21        9364467      9365225
12165                           21       25169431     25333825
12166                           21       25169431     25333825
12167                           21       25169431     25333825
12168                           21       25169431     25333825
12169                           21       25127469     25135247
12170                           21       25127469     25135247
12171                           21       25127469     25135247
12172                           21       25127469     25135247
12173                           21       25095022     25103670
12174                           21       25095022     25103670
12175                           21       25095022     25103670
12176                           21       25095022     25103670
12177                           21       25095022     25103670
12178                           21       25095022     25103670
12179                           21       24886676     24902756
12180                           21       24886676     24902756
12181    LINC01692              21       24840550     25057746
12182    LINC01692              21       24840550     25057746
12183    LINC01692              21       24840550     25057746
12184    LINC01692              21       24840550     25057746
12185                           21       24938431     24992817
12186                           21       24938431     24992817
12187                           21       24938431     24992817
12188                           21       24938431     24992817
12189                           21       24938431     24992817
12190                           21       24938431     24992817
12191    LINC01684              21       24428740     24547942
12192    LINC01684              21       24428740     24547942
12193    LINC01684              21       24428740     24547942
12194    LINC01684              21       24428740     24547942
12195    LINC01684              21       24428740     24547942
12196    LINC01684              21       24428740     24547942
12197    LINC01684              21       24428740     24547942
12198    LINC01684              21       24428740     24547942
12199    LINC01684              21       24428740     24547942
12200    LINC01684              21       24428740     24547942
12201    LINC01684              21       24428740     24547942
12202    LINC01684              21       24428740     24547942
12203                           21       24043257     24050286
12204                           21       24043257     24050286
12205                           21       24043257     24050286
12206                           21       24043257     24050286
12207                           21       23960905     23967273
12208                           21       23960905     23967273
12209                           21        9082601      9083101
12210                           21       23477641     23490724
12211                           21       23477641     23490724
12212                           21        8996496      9018670
12213                           21        8996496      9018670
12214        TUBAP              21       23407658     23409128
12215        TUBAP              21       23407658     23409128
12216     RIMKLBP1              21       36050214     36051377
12217         CBR3              21       36134912     36146566
12218         CBR3              21       36134912     36146566
12219         CBR3              21       36134912     36146566
12220     TRAPPC10              21       44012319     44106552
12221     TRAPPC10              21       44012319     44106552
12222     TRAPPC10              21       44012319     44106552
12223     TRAPPC10              21       44012319     44106552
12224     TRAPPC10              21       44012319     44106552
12225     TRAPPC10              21       44012319     44106552
12226     TRAPPC10              21       44012319     44106552
12227     TRAPPC10              21       44012319     44106552
12228     TRAPPC10              21       44012319     44106552
12229     TRAPPC10              21       44012319     44106552
12230     TRAPPC10              21       44012319     44106552
12231     TRAPPC10              21       44012319     44106552
12232     TRAPPC10              21       44012319     44106552
12233     TRAPPC10              21       44012319     44106552
12234     TRAPPC10              21       44012319     44106552
12235     TRAPPC10              21       44012319     44106552
12236     TRAPPC10              21       44012319     44106552
12237     TRAPPC10              21       44012319     44106552
12238     TRAPPC10              21       44012319     44106552
12239     TRAPPC10              21       44012319     44106552
12240     TRAPPC10              21       44012319     44106552
12241     TRAPPC10              21       44012319     44106552
12242     TRAPPC10              21       44012319     44106552
12243     TRAPPC10              21       44012319     44106552
12244     TRAPPC10              21       44012319     44106552
12245     TRAPPC10              21       44012319     44106552
12246     TRAPPC10              21       44012319     44106552
12247     TRAPPC10              21       44012319     44106552
12248     TRAPPC10              21       44012319     44106552
12249     TRAPPC10              21       44012319     44106552
12250     TRAPPC10              21       44012319     44106552
12251     TRAPPC10              21       44012319     44106552
12252     TRAPPC10              21       44012319     44106552
12253     TRAPPC10              21       44012319     44106552
12254     TRAPPC10              21       44012319     44106552
12255     TRAPPC10              21       44012319     44106552
12256     TRAPPC10              21       44012319     44106552
12257     TRAPPC10              21       44012319     44106552
12258     TRAPPC10              21       44012319     44106552
12259     TRAPPC10              21       44012319     44106552
12260     TRAPPC10              21       44012319     44106552
12261     TRAPPC10              21       44012319     44106552
12262     TRAPPC10              21       44012319     44106552
12263     TRAPPC10              21       44012319     44106552
12264     TRAPPC10              21       44012319     44106552
12265     TRAPPC10              21       44012319     44106552
12266     TRAPPC10              21       44012319     44106552
12267     TRAPPC10              21       44012319     44106552
12268     TRAPPC10              21       44012319     44106552
12269     TRAPPC10              21       44012319     44106552
12270     TRAPPC10              21       44012319     44106552
12271     TRAPPC10              21       44012319     44106552
12272     TRAPPC10              21       44012319     44106552
12273     TRAPPC10              21       44012319     44106552
12274     TRAPPC10              21       44012319     44106552
12275     TRAPPC10              21       44012319     44106552
12276     TRAPPC10              21       44012319     44106552
12277     TRAPPC10              21       44012319     44106552
12278     TRAPPC10              21       44012319     44106552
12279     TRAPPC10              21       44012319     44106552
12280     TRAPPC10              21       44012319     44106552
12281     TRAPPC10              21       44012319     44106552
12282     TRAPPC10              21       44012319     44106552
12283     TRAPPC10              21       44012319     44106552
12284     TRAPPC10              21       44012319     44106552
12285     TRAPPC10              21       44012319     44106552
12286     TRAPPC10              21       44012319     44106552
12287     TRAPPC10              21       44012319     44106552
12288     TRAPPC10              21       44012319     44106552
12289     TRAPPC10              21       44012319     44106552
12290     TRAPPC10              21       44012319     44106552
12291     TRAPPC10              21       44012319     44106552
12292     TRAPPC10              21       44012319     44106552
12293     TRAPPC10              21       44012319     44106552
12294     TRAPPC10              21       44012319     44106552
12295     TRAPPC10              21       44012319     44106552
12296     TRAPPC10              21       44012319     44106552
12297     TRAPPC10              21       44012319     44106552
12298     TRAPPC10              21       44012319     44106552
12299     TRAPPC10              21       44012319     44106552
12300     TRAPPC10              21       44012319     44106552
12301     TRAPPC10              21       44012319     44106552
12302     TRAPPC10              21       44012319     44106552
12303     TRAPPC10              21       44012319     44106552
12304     TRAPPC10              21       44012319     44106552
12305     TRAPPC10              21       44012319     44106552
12306     TRAPPC10              21       44012319     44106552
12307     TRAPPC10              21       44012319     44106552
12308     TRAPPC10              21       44012319     44106552
12309     TRAPPC10              21       44012319     44106552
12310     TRAPPC10              21       44012319     44106552
12311        PCBP3              21       45643694     45942454
12312        PCBP3              21       45643694     45942454
12313        PCBP3              21       45643694     45942454
12314        PCBP3              21       45643694     45942454
12315        PCBP3              21       45643694     45942454
12316        PCBP3              21       45643694     45942454
12317        PCBP3              21       45643694     45942454
12318        PCBP3              21       45643694     45942454
12319        PCBP3              21       45643694     45942454
12320        PCBP3              21       45643694     45942454
12321        PCBP3              21       45643694     45942454
12322        PCBP3              21       45643694     45942454
12323        PCBP3              21       45643694     45942454
12324        PCBP3              21       45643694     45942454
12325        PCBP3              21       45643694     45942454
12326        PCBP3              21       45643694     45942454
12327        PCBP3              21       45643694     45942454
12328        PCBP3              21       45643694     45942454
12329        PCBP3              21       45643694     45942454
12330        PCBP3              21       45643694     45942454
12331        PCBP3              21       45643694     45942454
12332        PCBP3              21       45643694     45942454
12333        PCBP3              21       45643694     45942454
12334        PCBP3              21       45643694     45942454
12335        PCBP3              21       45643694     45942454
12336        PCBP3              21       45643694     45942454
12337        PCBP3              21       45643694     45942454
12338        PCBP3              21       45643694     45942454
12339        PCBP3              21       45643694     45942454
12340        PCBP3              21       45643694     45942454
12341        PCBP3              21       45643694     45942454
12342        PCBP3              21       45643694     45942454
12343        PCBP3              21       45643694     45942454
12344        PCBP3              21       45643694     45942454
12345        PCBP3              21       45643694     45942454
12346        PCBP3              21       45643694     45942454
12347        PCBP3              21       45643694     45942454
12348        PCBP3              21       45643694     45942454
12349        PCBP3              21       45643694     45942454
12350        PCBP3              21       45643694     45942454
12351        PCBP3              21       45643694     45942454
12352        PCBP3              21       45643694     45942454
12353        PCBP3              21       45643694     45942454
12354        PCBP3              21       45643694     45942454
12355        PCBP3              21       45643694     45942454
12356        PCBP3              21       45643694     45942454
12357        PCBP3              21       45643694     45942454
12358        PCBP3              21       45643694     45942454
12359        PCBP3              21       45643694     45942454
12360        PCBP3              21       45643694     45942454
12361        PCBP3              21       45643694     45942454
12362        PCBP3              21       45643694     45942454
12363        PCBP3              21       45643694     45942454
12364        PCBP3              21       45643694     45942454
12365        PCBP3              21       45643694     45942454
12366        PCBP3              21       45643694     45942454
12367        PCBP3              21       45643694     45942454
12368        PCBP3              21       45643694     45942454
12369        PCBP3              21       45643694     45942454
12370        PCBP3              21       45643694     45942454
12371        PCBP3              21       45643694     45942454
12372        PCBP3              21       45643694     45942454
12373        PCBP3              21       45643694     45942454
12374        PCBP3              21       45643694     45942454
12375        PCBP3              21       45643694     45942454
12376        PCBP3              21       45643694     45942454
12377        PCBP3              21       45643694     45942454
12378        PCBP3              21       45643694     45942454
12379        PCBP3              21       45643694     45942454
12380        PCBP3              21       45643694     45942454
12381        PCBP3              21       45643694     45942454
12382        PCBP3              21       45643694     45942454
12383        PCBP3              21       45643694     45942454
12384        PCBP3              21       45643694     45942454
12385        PCBP3              21       45643694     45942454
12386        PCBP3              21       45643694     45942454
12387        PCBP3              21       45643694     45942454
12388        PCBP3              21       45643694     45942454
12389        PCBP3              21       45643694     45942454
12390        PCBP3              21       45643694     45942454
12391        PCBP3              21       45643694     45942454
12392        PCBP3              21       45643694     45942454
12393        PCBP3              21       45643694     45942454
12394        PCBP3              21       45643694     45942454
12395        PCBP3              21       45643694     45942454
12396        PCBP3              21       45643694     45942454
12397        PCBP3              21       45643694     45942454
12398        PCBP3              21       45643694     45942454
12399        PCBP3              21       45643694     45942454
12400        PCBP3              21       45643694     45942454
12401        PCBP3              21       45643694     45942454
12402        PCBP3              21       45643694     45942454
12403        PCBP3              21       45643694     45942454
12404        PCBP3              21       45643694     45942454
12405        PCBP3              21       45643694     45942454
12406        PCBP3              21       45643694     45942454
12407        PCBP3              21       45643694     45942454
12408        PCBP3              21       45643694     45942454
12409        PCBP3              21       45643694     45942454
12410        PCBP3              21       45643694     45942454
12411        PCBP3              21       45643694     45942454
12412        PCBP3              21       45643694     45942454
12413        PCBP3              21       45643694     45942454
12414        PCBP3              21       45643694     45942454
12415        PCBP3              21       45643694     45942454
12416        PCBP3              21       45643694     45942454
12417        PCBP3              21       45643694     45942454
12418        PCBP3              21       45643694     45942454
12419        PCBP3              21       45643694     45942454
12420        PCBP3              21       45643694     45942454
12421        PCBP3              21       45643694     45942454
12422        PCBP3              21       45643694     45942454
12423        PCBP3              21       45643694     45942454
12424        PCBP3              21       45643694     45942454
12425        PCBP3              21       45643694     45942454
12426        PCBP3              21       45643694     45942454
12427        PCBP3              21       45643694     45942454
12428        PCBP3              21       45643694     45942454
12429        PCBP3              21       45643694     45942454
12430        PCBP3              21       45643694     45942454
12431        PCBP3              21       45643694     45942454
12432        PCBP3              21       45643694     45942454
12433        PCBP3              21       45643694     45942454
12434        PCBP3              21       45643694     45942454
12435        PCBP3              21       45643694     45942454
12436        PCBP3              21       45643694     45942454
12437        PCBP3              21       45643694     45942454
12438        PCBP3              21       45643694     45942454
12439        PCBP3              21       45643694     45942454
12440        PCBP3              21       45643694     45942454
12441        PCBP3              21       45643694     45942454
12442        PCBP3              21       45643694     45942454
12443        PCBP3              21       45643694     45942454
12444        PCBP3              21       45643694     45942454
12445        PCBP3              21       45643694     45942454
12446        PCBP3              21       45643694     45942454
12447        PCBP3              21       45643694     45942454
12448        PCBP3              21       45643694     45942454
12449        PCBP3              21       45643694     45942454
12450        PCBP3              21       45643694     45942454
12451        PCBP3              21       45643694     45942454
12452        PCBP3              21       45643694     45942454
12453        PCBP3              21       45643694     45942454
12454        PCBP3              21       45643694     45942454
12455        PCBP3              21       45643694     45942454
12456        PCBP3              21       45643694     45942454
12457        PCBP3              21       45643694     45942454
12458        PCBP3              21       45643694     45942454
12459        PCBP3              21       45643694     45942454
12460        PCBP3              21       45643694     45942454
12461        PCBP3              21       45643694     45942454
12462         CSTB              21       43772511     43776445
12463         CSTB              21       43772511     43776445
12464         CSTB              21       43772511     43776445
12465         CSTB              21       43772511     43776445
12466         CSTB              21       43772511     43776445
12467         CSTB              21       43772511     43776445
12468         CSTB              21       43772511     43776445
12469         CSTB              21       43772511     43776445
12470        USP25              21       15730025     15880069
12471        USP25              21       15730025     15880069
12472        USP25              21       15730025     15880069
12473        USP25              21       15730025     15880069
12474        USP25              21       15730025     15880069
12475        USP25              21       15730025     15880069
12476        USP25              21       15730025     15880069
12477        USP25              21       15730025     15880069
12478        USP25              21       15730025     15880069
12479        USP25              21       15730025     15880069
12480        USP25              21       15730025     15880069
12481        USP25              21       15730025     15880069
12482        USP25              21       15730025     15880069
12483        USP25              21       15730025     15880069
12484        USP25              21       15730025     15880069
12485        USP25              21       15730025     15880069
12486        USP25              21       15730025     15880069
12487        USP25              21       15730025     15880069
12488        USP25              21       15730025     15880069
12489        USP25              21       15730025     15880069
12490        USP25              21       15730025     15880069
12491        USP25              21       15730025     15880069
12492        USP25              21       15730025     15880069
12493        USP25              21       15730025     15880069
12494        USP25              21       15730025     15880069
12495        USP25              21       15730025     15880069
12496        USP25              21       15730025     15880069
12497        USP25              21       15730025     15880069
12498        USP25              21       15730025     15880069
12499        USP25              21       15730025     15880069
12500        USP25              21       15730025     15880069
12501        USP25              21       15730025     15880069
12502        USP25              21       15730025     15880069
12503        USP25              21       15730025     15880069
12504        USP25              21       15730025     15880069
12505        USP25              21       15730025     15880069
12506        USP25              21       15730025     15880069
12507        USP25              21       15730025     15880069
12508        USP25              21       15730025     15880069
12509        USP25              21       15730025     15880069
12510        USP25              21       15730025     15880069
12511        USP25              21       15730025     15880069
12512        USP25              21       15730025     15880069
12513        USP25              21       15730025     15880069
12514        USP25              21       15730025     15880069
12515        USP25              21       15730025     15880069
12516        USP25              21       15730025     15880069
12517        USP25              21       15730025     15880069
12518        USP25              21       15730025     15880069
12519        USP25              21       15730025     15880069
12520        USP25              21       15730025     15880069
12521        USP25              21       15730025     15880069
12522        USP25              21       15730025     15880069
12523        USP25              21       15730025     15880069
12524        USP25              21       15730025     15880069
12525        USP25              21       15730025     15880069
12526        USP25              21       15730025     15880069
12527        USP25              21       15730025     15880069
12528        USP25              21       15730025     15880069
12529        USP25              21       15730025     15880069
12530        USP25              21       15730025     15880069
12531        USP25              21       15730025     15880069
12532        USP25              21       15730025     15880069
12533        USP25              21       15730025     15880069
12534        USP25              21       15730025     15880069
12535        USP25              21       15730025     15880069
12536        USP25              21       15730025     15880069
12537        USP25              21       15730025     15880069
12538        USP25              21       15730025     15880069
12539        USP25              21       15730025     15880069
12540        USP25              21       15730025     15880069
12541        USP25              21       15730025     15880069
12542        USP25              21       15730025     15880069
12543        USP25              21       15730025     15880069
12544        USP25              21       15730025     15880069
12545        USP25              21       15730025     15880069
12546        USP25              21       15730025     15880069
12547        USP25              21       15730025     15880069
12548        USP25              21       15730025     15880069
12549        USP25              21       15730025     15880069
12550        USP25              21       15730025     15880069
12551        USP25              21       15730025     15880069
12552        USP25              21       15730025     15880069
12553        USP25              21       15730025     15880069
12554        USP25              21       15730025     15880069
12555        USP25              21       15730025     15880069
12556        USP25              21       15730025     15880069
12557        USP25              21       15730025     15880069
12558        USP25              21       15730025     15880069
12559        USP25              21       15730025     15880069
12560        USP25              21       15730025     15880069
12561        USP25              21       15730025     15880069
12562        USP25              21       15730025     15880069
12563        USP25              21       15730025     15880069
12564        USP25              21       15730025     15880069
12565        USP25              21       15730025     15880069
12566        USP25              21       15730025     15880069
12567        USP25              21       15730025     15880069
12568        USP25              21       15730025     15880069
12569        USP25              21       15730025     15880069
12570        USP25              21       15730025     15880069
12571        USP25              21       15730025     15880069
12572        USP25              21       15730025     15880069
12573        USP25              21       15730025     15880069
12574        USP25              21       15730025     15880069
12575        USP25              21       15730025     15880069
12576        USP25              21       15730025     15880069
12577        USP25              21       15730025     15880069
12578        USP25              21       15730025     15880069
12579        USP25              21       15730025     15880069
12580        USP25              21       15730025     15880069
12581        USP25              21       15730025     15880069
12582        USP25              21       15730025     15880069
12583        USP25              21       15730025     15880069
12584        USP25              21       15730025     15880069
12585        USP25              21       15730025     15880069
12586        PSMG1              21       39174769     39183851
12587        PSMG1              21       39174769     39183851
12588        PSMG1              21       39174769     39183851
12589        PSMG1              21       39174769     39183851
12590        PSMG1              21       39174769     39183851
12591        PSMG1              21       39174769     39183851
12592        PSMG1              21       39174769     39183851
12593        PSMG1              21       39174769     39183851
12594        PSMG1              21       39174769     39183851
12595        PSMG1              21       39174769     39183851
12596        PSMG1              21       39174769     39183851
12597        PSMG1              21       39174769     39183851
12598        PSMG1              21       39174769     39183851
12599        PSMG1              21       39174769     39183851
12600        PSMG1              21       39174769     39183851
12601        PSMG1              21       39174769     39183851
12602        PSMG1              21       39174769     39183851
12603        PSMG1              21       39174769     39183851
12604        PSMG1              21       39174769     39183851
12605        PSMG1              21       39174769     39183851
12606        PSMG1              21       39174769     39183851
12607        PSMG1              21       39174769     39183851
12608        PSMG1              21       39174769     39183851
12609        PSMG1              21       39174769     39183851
12610        PSMG1              21       39174769     39183851
12611        PSMG1              21       39174769     39183851
12612        PSMG1              21       39174769     39183851
12613        PSMG1              21       39174769     39183851
12614        PSMG1              21       39174769     39183851
12615                           21       45288052     45291738
12616                           21       45288052     45291738
12617                           21       45288052     45291738
12618                           21       45288052     45291738
12619                           21       45288052     45291738
12620                           21       45288052     45291738
12621    RPL23AP12              21       39127568     39128040
12622        NF1P3              21       14000927     14005279
12623        NF1P3              21       14000927     14005279
12624        NF1P3              21       14000927     14005279
12625        NF1P3              21       14000927     14005279
12626                           21        5011799      5017145
12627                           21        5011799      5017145
12628                           21        5011799      5017145
12629                           21        5011799      5017145
12630      SNX19P1              21       13525599     13528579
12631         SIK1              21       43414515     43427128
12632         SIK1              21       43414515     43427128
12633         SIK1              21       43414515     43427128
12634         SIK1              21       43414515     43427128
12635         SIK1              21       43414515     43427128
12636         SIK1              21       43414515     43427128
12637         SIK1              21       43414515     43427128
12638         SIK1              21       43414515     43427128
12639         SIK1              21       43414515     43427128
12640         SIK1              21       43414515     43427128
12641         SIK1              21       43414515     43427128
12642         SIK1              21       43414515     43427128
12643         SIK1              21       43414515     43427128
12644         SIK1              21       43414515     43427128
12645         SIK1              21       43414515     43427128
12646         SIK1              21       43414515     43427128
12647         SIK1              21       43414515     43427128
12648                           21       13305152     13314944
12649                           21       13305152     13314944
12650    LINC00334              21       45234340     45264548
12651    LINC00334              21       45234340     45264548
12652    LINC00334              21       45234340     45264548
12653    LINC00334              21       45234340     45264548
12654    LINC00334              21       45234340     45264548
12655    LINC00334              21       45234340     45264548
12656    LINC00334              21       45234340     45264548
12657    LINC00334              21       45234340     45264548
12658    LINC00334              21       45234340     45264548
12659    LINC00334              21       45234340     45264548
12660       KCNJ15              21       38157034     38307357
12661       KCNJ15              21       38157034     38307357
12662       KCNJ15              21       38157034     38307357
12663       KCNJ15              21       38157034     38307357
12664       KCNJ15              21       38157034     38307357
12665       KCNJ15              21       38157034     38307357
12666       KCNJ15              21       38157034     38307357
12667       KCNJ15              21       38157034     38307357
12668       KCNJ15              21       38157034     38307357
12669       KCNJ15              21       38157034     38307357
12670       KCNJ15              21       38157034     38307357
12671       KCNJ15              21       38157034     38307357
12672       KCNJ15              21       38157034     38307357
12673       KCNJ15              21       38157034     38307357
12674       KCNJ15              21       38157034     38307357
12675       KCNJ15              21       38157034     38307357
12676       KCNJ15              21       38157034     38307357
12677       KCNJ15              21       38157034     38307357
12678       KCNJ15              21       38157034     38307357
12679       KCNJ15              21       38157034     38307357
12680       KCNJ15              21       38157034     38307357
12681       KCNJ15              21       38157034     38307357
12682       KCNJ15              21       38157034     38307357
12683       KCNJ15              21       38157034     38307357
12684       KCNJ15              21       38157034     38307357
12685       KCNJ15              21       38157034     38307357
12686       KCNJ15              21       38157034     38307357
12687       KCNJ15              21       38157034     38307357
12688       KCNJ15              21       38157034     38307357
12689       KCNJ15              21       38157034     38307357
12690       KCNJ15              21       38157034     38307357
12691       KCNJ15              21       38157034     38307357
12692       KCNJ15              21       38157034     38307357
12693       KCNJ15              21       38157034     38307357
12694       KCNJ15              21       38157034     38307357
12695       KCNJ15              21       38157034     38307357
12696       KCNJ15              21       38157034     38307357
12697       KCNJ15              21       38157034     38307357
12698       KCNJ15              21       38157034     38307357
12699       KCNJ15              21       38157034     38307357
12700       KCNJ15              21       38157034     38307357
12701       KCNJ15              21       38157034     38307357
12702       KCNJ15              21       38157034     38307357
12703       KCNJ15              21       38157034     38307357
12704       KCNJ15              21       38157034     38307357
12705       KCNJ15              21       38157034     38307357
12706       KCNJ15              21       38157034     38307357
12707       KCNJ15              21       38157034     38307357
12708       KCNJ15              21       38157034     38307357
12709       KCNJ15              21       38157034     38307357
12710       KCNJ15              21       38157034     38307357
12711       KCNJ15              21       38157034     38307357
12712       KCNJ15              21       38157034     38307357
12713       KCNJ15              21       38157034     38307357
12714       KCNJ15              21       38157034     38307357
12715       KCNJ15              21       38157034     38307357
12716       KCNJ15              21       38157034     38307357
12717       KCNJ15              21       38157034     38307357
12718       KCNJ15              21       38157034     38307357
12719       KCNJ15              21       38157034     38307357
12720       KCNJ15              21       38157034     38307357
12721       KCNJ15              21       38157034     38307357
12722       KCNJ15              21       38157034     38307357
12723       KCNJ15              21       38157034     38307357
12724       KCNJ15              21       38157034     38307357
12725       KCNJ15              21       38157034     38307357
12726       KCNJ15              21       38157034     38307357
12727       KCNJ15              21       38157034     38307357
12728       KCNJ15              21       38157034     38307357
12729       KCNJ15              21       38157034     38307357
12730       KCNJ15              21       38157034     38307357
12731       KCNJ15              21       38157034     38307357
12732       KCNJ15              21       38157034     38307357
12733       KCNJ15              21       38157034     38307357
12734       KCNJ15              21       38157034     38307357
12735       KCNJ15              21       38157034     38307357
12736       KCNJ15              21       38157034     38307357
12737       KCNJ15              21       38157034     38307357
12738       KCNJ15              21       38157034     38307357
12739       KCNJ15              21       38157034     38307357
12740       KCNJ15              21       38157034     38307357
12741       KCNJ15              21       38157034     38307357
12742       KCNJ15              21       38157034     38307357
12743       KCNJ15              21       38157034     38307357
12744       KCNJ15              21       38157034     38307357
12745       KCNJ15              21       38157034     38307357
12746       KCNJ15              21       38157034     38307357
12747       KCNJ15              21       38157034     38307357
12748       KCNJ15              21       38157034     38307357
12749       KCNJ15              21       38157034     38307357
12750                           21       38237217     38238201
12751                           21       38237217     38238201
12752    LINC01547              21       44932814     44939913
12753    LINC01547              21       44932814     44939913
12754    LINC01547              21       44932814     44939913
12755    LINC01547              21       44932814     44939913
12756    LINC01547              21       44932814     44939913
12757    LINC01547              21       44932814     44939913
12758    LINC01547              21       44932814     44939913
12759    LINC01547              21       44932814     44939913
12760    LINC01547              21       44932814     44939913
12761    LINC01547              21       44932814     44939913
12762                           21       30526546     30526701
12763  KRTAP19-10P              21       30514613     30514799
12764   KRTAP19-9P              21       30510307     30510497
12765                           21       30089717     30097836
12766                           21       30089717     30097836
12767                           21       18917213     18917429
12768      PPIAP22              21       18857779     18858276
12769                           21       42648271     42651244
12770                           21       42648271     42651244
12771      ADAMTS1              21       26835747     26845409
12772      ADAMTS1              21       26835747     26845409
12773      ADAMTS1              21       26835747     26845409
12774      ADAMTS1              21       26835747     26845409
12775      ADAMTS1              21       26835747     26845409
12776      ADAMTS1              21       26835747     26845409
12777      ADAMTS1              21       26835747     26845409
12778      ADAMTS1              21       26835747     26845409
12779      ADAMTS1              21       26835747     26845409
12780      ADAMTS1              21       26835747     26845409
12781      ADAMTS1              21       26835747     26845409
12782      ADAMTS1              21       26835747     26845409
12783      ADAMTS1              21       26835747     26845409
12784      ADAMTS1              21       26835747     26845409
12785      ADAMTS1              21       26835747     26845409
12786      ADAMTS1              21       26835747     26845409
12787      ADAMTS1              21       26835747     26845409
12788      ADAMTS1              21       26835747     26845409
12789      ADAMTS1              21       26835747     26845409
12790      ADAMTS1              21       26835747     26845409
12791      ADAMTS1              21       26835747     26845409
12792      ADAMTS1              21       26835747     26845409
12793      ADAMTS1              21       26835747     26845409
12794      ADAMTS1              21       26835747     26845409
12795      ADAMTS1              21       26835747     26845409
12796      ADAMTS1              21       26835747     26845409
12797      ADAMTS1              21       26835747     26845409
12798      ADAMTS1              21       26835747     26845409
12799      TIMM9P2              21       39216624     39217506
12800      TIMM9P2              21       39216624     39217506
12801       TCP10L              21       32574841     32587373
12802       TCP10L              21       32574841     32587373
12803       TCP10L              21       32574841     32587373
12804       TCP10L              21       32574841     32587373
12805       TCP10L              21       32574841     32587373
12806       TCP10L              21       32574841     32587373
12807       TCP10L              21       32574841     32587373
12808       TCP10L              21       32574841     32587373
12809       TCP10L              21       32574841     32587373
12810       TCP10L              21       32574841     32587373
12811       TCP10L              21       32574841     32587373
12812       TCP10L              21       32574841     32587373
12813       TCP10L              21       32574841     32587373
12814       TCP10L              21       32574841     32587373
12815       TCP10L              21       32574841     32587373
12816       TCP10L              21       32574841     32587373
12817       TCP10L              21       32574841     32587373
12818       TCP10L              21       32574841     32587373
12819    LINC00846              21       32572238     32575881
12820    LINC00846              21       32572238     32575881
12821    LINC00846              21       32572238     32575881
12822    LINC00846              21       32572238     32575881
12823                           21       25928754     25942686
12824                           21       25928754     25942686
12825                           21       25928754     25942686
12826                           21       25928754     25942686
12827                           21       25928754     25942686
12828                           21       25928754     25942686
12829                           21       25928754     25942686
12830                           21       25928754     25942686
12831                           21       25928754     25942686
12832                           21       25928754     25942686
12833                           21       25928754     25942686
12834                           21       25928754     25942686
12835                           21       25928754     25942686
12836                           21       25928754     25942686
12837                           21       25928754     25942686
12838                           21       25928754     25942686
12839       MIS18A              21       32268219     32279069
12840       MIS18A              21       32268219     32279069
12841       MIS18A              21       32268219     32279069
12842       MIS18A              21       32268219     32279069
12843       MIS18A              21       32268219     32279069
12844       MIS18A              21       32268219     32279069
12845       MIS18A              21       32268219     32279069
12846      RPSAP64              21       38894917     38895252
12847    LINC00113              21       27722379     27751233
12848    LINC00113              21       27722379     27751233
12849    LINC00113              21       27722379     27751233
12850    LINC00113              21       27722379     27751233
12851    LINC00113              21       27722379     27751233
12852    LINC00113              21       27722379     27751233
12853    LINC00113              21       27722379     27751233
12854    LINC00113              21       27722379     27751233
12855    LINC00113              21       27722379     27751233
12856    LINC00113              21       27722379     27751233
12857    LINC00113              21       27722379     27751233
12858    LINC00113              21       27722379     27751233
12859                           21       27361164     27395787
12860                           21       27361164     27395787
12861                           21       27361164     27395787
12862                           21       27361164     27395787
12863                           21       27361164     27395787
12864                           21       14746762     14753863
12865                           21       14746762     14753863
12866                           21       14746762     14753863
12867                           21       14746762     14753863
12868                           21       14746762     14753863
12869                           21       14746762     14753863
12870                           21       38888772     38903905
12871                           21       38888772     38903905
12872        H2BFS              21       43565189     43565648
12873   SLC25A15P4              21       10612455     10613379
12874   SLC25A15P4              21       10612455     10613379
12875    LINC00160              21       34723807     34737181
12876    LINC00160              21       34723807     34737181
12877    LINC00160              21       34723807     34737181
12878    LINC00160              21       34723807     34737181
12879    LINC00160              21       34723807     34737181
12880    LINC00160              21       34723807     34737181
12881     C21orf59              21       32592079     32612866
12882     C21orf59              21       32592079     32612866
12883     C21orf59              21       32592079     32612866
12884     C21orf59              21       32592079     32612866
12885     C21orf59              21       32592079     32612866
12886     C21orf59              21       32592079     32612866
12887     C21orf59              21       32592079     32612866
12888     C21orf59              21       32592079     32612866
12889     C21orf59              21       32592079     32612866
12890     C21orf59              21       32592079     32612866
12891     C21orf59              21       32592079     32612866
12892     C21orf59              21       32592079     32612866
12893     C21orf59              21       32592079     32612866
12894     C21orf59              21       32592079     32612866
12895     C21orf59              21       32592079     32612866
12896     C21orf59              21       32592079     32612866
12897     C21orf59              21       32592079     32612866
12898     C21orf59              21       32592079     32612866
12899     C21orf59              21       32592079     32612866
12900     C21orf59              21       32592079     32612866
12901     C21orf59              21       32592079     32612866
12902     C21orf59              21       32592079     32612866
12903     C21orf59              21       32592079     32612866
12904     C21orf59              21       32592079     32612866
12905     C21orf59              21       32592079     32612866
12906     C21orf59              21       32592079     32612866
12907     C21orf59              21       32592079     32612866
12908     C21orf59              21       32592079     32612866
12909     C21orf59              21       32592079     32612866
12910     C21orf59              21       32592079     32612866
12911     C21orf59              21       32592079     32612866
12912     C21orf59              21       32592079     32612866
12913     C21orf59              21       32592079     32612866
12914     C21orf59              21       32592079     32612866
12915     C21orf59              21       32592079     32612866
12916     C21orf59              21       32592079     32612866
12917                           21       26158091     26175824
12918                           21       26158091     26175824
12919                           21       36445731     36532408
12920                           21       36445731     36532408
12921                           21       36445731     36532408
12922                           21       36445731     36532408
12923                           21       22500604     22520058
12924                           21       22500604     22520058
12925                           21       22500604     22520058
12926                           21       22153950     22154299
12927                           21       18917934     18935859
12928                           21       18917934     18935859
12929                           21       42733594     42741758
12930                           21       42733594     42741758
12931      SRSF9P1              21       36295173     36295702
12932                           21       18022370     18114904
12933                           21       18022370     18114904
12934                           21       18022370     18114904
12935                           21       18022370     18114904
12936                           21       18022370     18114904
12937     CBR3-AS1              21       36131767     36175815
12938     CBR3-AS1              21       36131767     36175815
12939     CBR3-AS1              21       36131767     36175815
12940     CBR3-AS1              21       36131767     36175815
12941     CBR3-AS1              21       36131767     36175815
12942     CBR3-AS1              21       36131767     36175815
12943     CBR3-AS1              21       36131767     36175815
12944     CBR3-AS1              21       36131767     36175815
12945     CBR3-AS1              21       36131767     36175815
12946     CBR3-AS1              21       36131767     36175815
12947     CBR3-AS1              21       36131767     36175815
12948     CBR3-AS1              21       36131767     36175815
12949     CBR3-AS1              21       36131767     36175815
12950     CBR3-AS1              21       36131767     36175815
12951     CBR3-AS1              21       36131767     36175815
12952     CBR3-AS1              21       36131767     36175815
12953     CBR3-AS1              21       36131767     36175815
12954     CBR3-AS1              21       36131767     36175815
12955     CBR3-AS1              21       36131767     36175815
12956     CBR3-AS1              21       36131767     36175815
12957     CBR3-AS1              21       36131767     36175815
12958     CBR3-AS1              21       36131767     36175815
12959     CBR3-AS1              21       36131767     36175815
12960     CBR3-AS1              21       36131767     36175815
12961     CBR3-AS1              21       36131767     36175815
12962     CBR3-AS1              21       36131767     36175815
12963     CBR3-AS1              21       36131767     36175815
12964     CBR3-AS1              21       36131767     36175815
12965     CBR3-AS1              21       36131767     36175815
12966     CBR3-AS1              21       36131767     36175815
12967     CBR3-AS1              21       36131767     36175815
12968     CBR3-AS1              21       36131767     36175815
12969     CBR3-AS1              21       36131767     36175815
12970     CBR3-AS1              21       36131767     36175815
12971     CBR3-AS1              21       36131767     36175815
12972     CBR3-AS1              21       36131767     36175815
12973     CBR3-AS1              21       36131767     36175815
12974     CBR3-AS1              21       36131767     36175815
12975     CBR3-AS1              21       36131767     36175815
12976     CBR3-AS1              21       36131767     36175815
12977     CBR3-AS1              21       36131767     36175815
12978     CBR3-AS1              21       36131767     36175815
12979     CBR3-AS1              21       36131767     36175815
12980     CBR3-AS1              21       36131767     36175815
12981     CBR3-AS1              21       36131767     36175815
12982     CBR3-AS1              21       36131767     36175815
12983     CBR3-AS1              21       36131767     36175815
12984     CBR3-AS1              21       36131767     36175815
12985     CBR3-AS1              21       36131767     36175815
12986     CBR3-AS1              21       36131767     36175815
12987     CBR3-AS1              21       36131767     36175815
12988     CBR3-AS1              21       36131767     36175815
12989     CBR3-AS1              21       36131767     36175815
12990     CBR3-AS1              21       36131767     36175815
12991     CBR3-AS1              21       36131767     36175815
12992     CBR3-AS1              21       36131767     36175815
12993     CBR3-AS1              21       36131767     36175815
12994                           21       17705408     17707455
12995      OR7E23P              21       32621049     32622096
12996                           21       15346652     15346738
12997        RRP1B              21       43659548     43696079
12998        RRP1B              21       43659548     43696079
12999        RRP1B              21       43659548     43696079
13000        RRP1B              21       43659548     43696079
13001        RRP1B              21       43659548     43696079
13002        RRP1B              21       43659548     43696079
13003        RRP1B              21       43659548     43696079
13004        RRP1B              21       43659548     43696079
13005        RRP1B              21       43659548     43696079
13006        RRP1B              21       43659548     43696079
13007        RRP1B              21       43659548     43696079
13008        RRP1B              21       43659548     43696079
13009        RRP1B              21       43659548     43696079
13010        RRP1B              21       43659548     43696079
13011        RRP1B              21       43659548     43696079
13012        RRP1B              21       43659548     43696079
13013        RRP1B              21       43659548     43696079
13014        RRP1B              21       43659548     43696079
13015        RRP1B              21       43659548     43696079
13016        RRP1B              21       43659548     43696079
13017        RRP1B              21       43659548     43696079
13018                           21        5116343      5133805
13019                           21        5116343      5133805
13020                           21        5116343      5133805
13021                           21        5116343      5133805
13022                           21        5116343      5133805
13023                           21        5116343      5133805
13024                           21        5116343      5133805
13025        SCAF4              21       31671033     31732075
13026        SCAF4              21       31671033     31732075
13027        SCAF4              21       31671033     31732075
13028        SCAF4              21       31671033     31732075
13029        SCAF4              21       31671033     31732075
13030        SCAF4              21       31671033     31732075
13031        SCAF4              21       31671033     31732075
13032        SCAF4              21       31671033     31732075
13033        SCAF4              21       31671033     31732075
13034        SCAF4              21       31671033     31732075
13035        SCAF4              21       31671033     31732075
13036        SCAF4              21       31671033     31732075
13037        SCAF4              21       31671033     31732075
13038        SCAF4              21       31671033     31732075
13039        SCAF4              21       31671033     31732075
13040        SCAF4              21       31671033     31732075
13041        SCAF4              21       31671033     31732075
13042        SCAF4              21       31671033     31732075
13043        SCAF4              21       31671033     31732075
13044        SCAF4              21       31671033     31732075
13045        SCAF4              21       31671033     31732075
13046        SCAF4              21       31671033     31732075
13047        SCAF4              21       31671033     31732075
13048        SCAF4              21       31671033     31732075
13049        SCAF4              21       31671033     31732075
13050        SCAF4              21       31671033     31732075
13051        SCAF4              21       31671033     31732075
13052        SCAF4              21       31671033     31732075
13053        SCAF4              21       31671033     31732075
13054        SCAF4              21       31671033     31732075
13055        SCAF4              21       31671033     31732075
13056        SCAF4              21       31671033     31732075
13057        SCAF4              21       31671033     31732075
13058        SCAF4              21       31671033     31732075
13059        SCAF4              21       31671033     31732075
13060        SCAF4              21       31671033     31732075
13061        SCAF4              21       31671033     31732075
13062        SCAF4              21       31671033     31732075
13063        SCAF4              21       31671033     31732075
13064        SCAF4              21       31671033     31732075
13065        SCAF4              21       31671033     31732075
13066        SCAF4              21       31671033     31732075
13067        SCAF4              21       31671033     31732075
13068        SCAF4              21       31671033     31732075
13069        SCAF4              21       31671033     31732075
13070        SCAF4              21       31671033     31732075
13071        SCAF4              21       31671033     31732075
13072        SCAF4              21       31671033     31732075
13073        SCAF4              21       31671033     31732075
13074        SCAF4              21       31671033     31732075
13075        SCAF4              21       31671033     31732075
13076        SCAF4              21       31671033     31732075
13077        SCAF4              21       31671033     31732075
13078        SCAF4              21       31671033     31732075
13079        SCAF4              21       31671033     31732075
13080        SCAF4              21       31671033     31732075
13081        SCAF4              21       31671033     31732075
13082        SCAF4              21       31671033     31732075
13083        SCAF4              21       31671033     31732075
13084        SCAF4              21       31671033     31732075
13085        SCAF4              21       31671033     31732075
13086        SCAF4              21       31671033     31732075
13087        SCAF4              21       31671033     31732075
13088        SCAF4              21       31671033     31732075
13089        SCAF4              21       31671033     31732075
13090        SCAF4              21       31671033     31732075
13091        SCAF4              21       31671033     31732075
13092        SCAF4              21       31671033     31732075
13093        SCAF4              21       31671033     31732075
13094        SCAF4              21       31671033     31732075
13095        SCAF4              21       31671033     31732075
13096        SCAF4              21       31671033     31732075
13097        SCAF4              21       31671033     31732075
13098        SCAF4              21       31671033     31732075
13099        SCAF4              21       31671033     31732075
13100        SCAF4              21       31671033     31732075
13101        SCAF4              21       31671033     31732075
13102        SCAF4              21       31671033     31732075
13103        SCAF4              21       31671033     31732075
13104        SCAF4              21       31671033     31732075
13105        SCAF4              21       31671033     31732075
13106        SCAF4              21       31671033     31732075
13107        SCAF4              21       31671033     31732075
13108        C2CD2              21       41885112     41953890
13109        C2CD2              21       41885112     41953890
13110        C2CD2              21       41885112     41953890
13111        C2CD2              21       41885112     41953890
13112        C2CD2              21       41885112     41953890
13113        C2CD2              21       41885112     41953890
13114        C2CD2              21       41885112     41953890
13115        C2CD2              21       41885112     41953890
13116        C2CD2              21       41885112     41953890
13117        C2CD2              21       41885112     41953890
13118        C2CD2              21       41885112     41953890
13119        C2CD2              21       41885112     41953890
13120        C2CD2              21       41885112     41953890
13121        C2CD2              21       41885112     41953890
13122        C2CD2              21       41885112     41953890
13123        C2CD2              21       41885112     41953890
13124        C2CD2              21       41885112     41953890
13125        C2CD2              21       41885112     41953890
13126        C2CD2              21       41885112     41953890
13127        C2CD2              21       41885112     41953890
13128        C2CD2              21       41885112     41953890
13129        C2CD2              21       41885112     41953890
13130        C2CD2              21       41885112     41953890
13131        C2CD2              21       41885112     41953890
13132        C2CD2              21       41885112     41953890
13133        C2CD2              21       41885112     41953890
13134        C2CD2              21       41885112     41953890
13135        C2CD2              21       41885112     41953890
13136        C2CD2              21       41885112     41953890
13137        C2CD2              21       41885112     41953890
13138        C2CD2              21       41885112     41953890
13139        C2CD2              21       41885112     41953890
13140        C2CD2              21       41885112     41953890
13141        C2CD2              21       41885112     41953890
13142        C2CD2              21       41885112     41953890
13143        C2CD2              21       41885112     41953890
13144        C2CD2              21       41885112     41953890
13145        C2CD2              21       41885112     41953890
13146        C2CD2              21       41885112     41953890
13147        C2CD2              21       41885112     41953890
13148        C2CD2              21       41885112     41953890
13149        C2CD2              21       41885112     41953890
13150        C2CD2              21       41885112     41953890
13151        C2CD2              21       41885112     41953890
13152        C2CD2              21       41885112     41953890
13153        C2CD2              21       41885112     41953890
13154        C2CD2              21       41885112     41953890
13155        C2CD2              21       41885112     41953890
13156        C2CD2              21       41885112     41953890
13157        C2CD2              21       41885112     41953890
13158        C2CD2              21       41885112     41953890
13159        C2CD2              21       41885112     41953890
13160        C2CD2              21       41885112     41953890
13161        C2CD2              21       41885112     41953890
13162        C2CD2              21       41885112     41953890
13163        C2CD2              21       41885112     41953890
13164        C2CD2              21       41885112     41953890
13165        C2CD2              21       41885112     41953890
13166        C2CD2              21       41885112     41953890
13167        C2CD2              21       41885112     41953890
13168        C2CD2              21       41885112     41953890
13169        C2CD2              21       41885112     41953890
13170        C2CD2              21       41885112     41953890
13171        C2CD2              21       41885112     41953890
13172        C2CD2              21       41885112     41953890
13173        C2CD2              21       41885112     41953890
13174    LINC01426              21       34745757     34784886
13175    LINC01426              21       34745757     34784886
13176    LINC01426              21       34745757     34784886
13177    LINC01426              21       34745757     34784886
13178    LINC01426              21       34745757     34784886
13179         MRAP              21       32291813     32314784
13180         MRAP              21       32291813     32314784
13181         MRAP              21       32291813     32314784
13182         MRAP              21       32291813     32314784
13183         MRAP              21       32291813     32314784
13184         MRAP              21       32291813     32314784
13185         MRAP              21       32291813     32314784
13186         MRAP              21       32291813     32314784
13187         MRAP              21       32291813     32314784
13188         MRAP              21       32291813     32314784
13189         MRAP              21       32291813     32314784
13190         MRAP              21       32291813     32314784
13191         MRAP              21       32291813     32314784
13192         MRAP              21       32291813     32314784
13193         MRAP              21       32291813     32314784
13194       FRG2MP              21       14019060     14020725
13195       FRG2MP              21       14019060     14020725
13196       FRG2MP              21       14019060     14020725
13197       FRG2MP              21       14019060     14020725
13198                           21        5022493      5040666
13199                           21        5022493      5040666
13200                           21        5022493      5040666
13201                           21        5022493      5040666
13202                           21        5022493      5040666
13203                           21        5022493      5040666
13204                           21        5022493      5040666
13205                           21        5022493      5040666
13206                           21        5022493      5040666
13207                           21        5022493      5040666
13208                           21        5022493      5040666
13209                           21        5022493      5040666
13210                           21        5022493      5040666
13211                           21        5022493      5040666
13212                           21        5022493      5040666
13213                           21        5022493      5040666
13214                           21        5022493      5040666
13215                           21        5022493      5040666
13216                           21        5022493      5040666
13217                           21        5022493      5040666
13218                           21        5022493      5040666
13219                           21        5022493      5040666
13220                           21        5022493      5040666
13221                           21        5022493      5040666
13222                           21        5022493      5040666
13223                           21        5022493      5040666
13224                           21        5022493      5040666
13225                           21        5022493      5040666
13226                           21        5022493      5040666
13227                           21        5022493      5040666
13228                           21        5022493      5040666
13229                           21        5022493      5040666
13230                           21        5022493      5040666
13231     SNRPGP13              21       38502445     38502621
13232                           21       18953264     18967058
13233                           21       18953264     18967058
13234                           21       42508624     42509661
13235                           21       42508624     42509661
13236                           21       42508624     42509661
13237                           21       42508624     42509661
13238                           21       45870854     45873345
13239     TMEM97P1              21       43783123     43783573
13240                           21       15370500     15627342
13241                           21       15370500     15627342
13242                           21       15370500     15627342
13243                           21       15370500     15627342
13244                           21       15370500     15627342
13245                           21       15370500     15627342
13246                           21       15370500     15627342
13247                           21       15370500     15627342
13248                           21       15370500     15627342
13249                           21       15370500     15627342
13250                           21       15370500     15627342
13251                           21       15370500     15627342
13252                           21       15370500     15627342
13253                           21       15370500     15627342
13254                           21       15370500     15627342
13255                           21       15370500     15627342
13256                           21       15370500     15627342
13257                           21       15370500     15627342
13258                           21       15370500     15627342
13259                           21       15370500     15627342
13260                           21       15370500     15627342
13261                           21       15370500     15627342
13262                           21       15370500     15627342
13263                           21       15370500     15627342
13264                           21       15370500     15627342
13265                           21       15370500     15627342
13266                           21       15370500     15627342
13267                           21       15370500     15627342
13268                           21       15370500     15627342
13269                           21       15370500     15627342
13270                           21       15370500     15627342
13271                           21       15370500     15627342
13272                           21       15370500     15627342
13273                           21       15370500     15627342
13274                           21       15370500     15627342
13275                           21       15370500     15627342
13276                           21       15370500     15627342
13277                           21       15370500     15627342
13278                           21       15370500     15627342
13279                           21       15370500     15627342
13280                           21       15370500     15627342
13281                           21       15370500     15627342
13282                           21       15370500     15627342
13283                           21       15370500     15627342
13284                           21       15370500     15627342
13285                           21       15370500     15627342
13286                           21       15370500     15627342
13287                           21       15370500     15627342
13288                           21       15370500     15627342
13289                           21       15370500     15627342
13290                           21       15370500     15627342
13291                           21       15370500     15627342
13292                           21       15370500     15627342
13293                           21       15370500     15627342
13294                           21       15370500     15627342
13295                           21       15370500     15627342
13296                           21       15370500     15627342
13297                           21       15370500     15627342
13298                           21       15370500     15627342
13299                           21       15370500     15627342
13300                           21       15370500     15627342
13301                           21       15370500     15627342
13302                           21       15370500     15627342
13303                           21       15370500     15627342
13304                           21       15370500     15627342
13305                           21       15370500     15627342
13306                           21       15370500     15627342
13307                           21       15370500     15627342
13308                           21       15370500     15627342
13309                           21       15370500     15627342
13310                           21       15370500     15627342
13311  COL18A1-AS2              21       45407386     45410065
13312  COL18A1-AS2              21       45407386     45410065
13313  COL18A1-AS2              21       45407386     45410065
13314  COL18A1-AS2              21       45407386     45410065
13315                           21       14761710     14763090
13316                           21       14761710     14763090
13317   SAMSN1-AS1              21       14582202     14598303
13318   SAMSN1-AS1              21       14582202     14598303
13319   SAMSN1-AS1              21       14582202     14598303
13320   SAMSN1-AS1              21       14582202     14598303
13321   SAMSN1-AS1              21       14582202     14598303
13322    KRTAP19-1              21       30479699     30480344
13323   KRTAP13-5P              21       30436466     30436964
13324      CYCSP41              21       10576292     10576587
13325         TPTE              21       10521553     10606140
13326         TPTE              21       10521553     10606140
13327         TPTE              21       10521553     10606140
13328         TPTE              21       10521553     10606140
13329         TPTE              21       10521553     10606140
13330         TPTE              21       10521553     10606140
13331         TPTE              21       10521553     10606140
13332         TPTE              21       10521553     10606140
13333         TPTE              21       10521553     10606140
13334         TPTE              21       10521553     10606140
13335         TPTE              21       10521553     10606140
13336         TPTE              21       10521553     10606140
13337         TPTE              21       10521553     10606140
13338         TPTE              21       10521553     10606140
13339         TPTE              21       10521553     10606140
13340         TPTE              21       10521553     10606140
13341         TPTE              21       10521553     10606140
13342         TPTE              21       10521553     10606140
13343         TPTE              21       10521553     10606140
13344         TPTE              21       10521553     10606140
13345         TPTE              21       10521553     10606140
13346         TPTE              21       10521553     10606140
13347         TPTE              21       10521553     10606140
13348         TPTE              21       10521553     10606140
13349         TPTE              21       10521553     10606140
13350         TPTE              21       10521553     10606140
13351         TPTE              21       10521553     10606140
13352         TPTE              21       10521553     10606140
13353         TPTE              21       10521553     10606140
13354         TPTE              21       10521553     10606140
13355         TPTE              21       10521553     10606140
13356         TPTE              21       10521553     10606140
13357         TPTE              21       10521553     10606140
13358         TPTE              21       10521553     10606140
13359         TPTE              21       10521553     10606140
13360         TPTE              21       10521553     10606140
13361         TPTE              21       10521553     10606140
13362         TPTE              21       10521553     10606140
13363         TPTE              21       10521553     10606140
13364         TPTE              21       10521553     10606140
13365         TPTE              21       10521553     10606140
13366         TPTE              21       10521553     10606140
13367         TPTE              21       10521553     10606140
13368         TPTE              21       10521553     10606140
13369         TPTE              21       10521553     10606140
13370         TPTE              21       10521553     10606140
13371         TPTE              21       10521553     10606140
13372         TPTE              21       10521553     10606140
13373         TPTE              21       10521553     10606140
13374         TPTE              21       10521553     10606140
13375         TPTE              21       10521553     10606140
13376         TPTE              21       10521553     10606140
13377         TPTE              21       10521553     10606140
13378         TPTE              21       10521553     10606140
13379         TPTE              21       10521553     10606140
13380         TPTE              21       10521553     10606140
13381         TPTE              21       10521553     10606140
13382         TPTE              21       10521553     10606140
13383         TPTE              21       10521553     10606140
13384         TPTE              21       10521553     10606140
13385         TPTE              21       10521553     10606140
13386         TPTE              21       10521553     10606140
13387         TPTE              21       10521553     10606140
13388         TPTE              21       10521553     10606140
13389         TPTE              21       10521553     10606140
13390         TPTE              21       10521553     10606140
13391         TPTE              21       10521553     10606140
13392         TPTE              21       10521553     10606140
13393         TPTE              21       10521553     10606140
13394         TPTE              21       10521553     10606140
13395         TPTE              21       10521553     10606140
13396         TPTE              21       10521553     10606140
13397         TPTE              21       10521553     10606140
13398         TPTE              21       10521553     10606140
13399         TPTE              21       10521553     10606140
13400         TPTE              21       10521553     10606140
13401         TPTE              21       10521553     10606140
13402         TPTE              21       10521553     10606140
13403         TPTE              21       10521553     10606140
13404         TPTE              21       10521553     10606140
13405         TPTE              21       10521553     10606140
13406         TPTE              21       10521553     10606140
13407         TPTE              21       10521553     10606140
13408         TPTE              21       10521553     10606140
13409         TPTE              21       10521553     10606140
13410         TPTE              21       10521553     10606140
13411         TPTE              21       10521553     10606140
13412         TPTE              21       10521553     10606140
13413         TPTE              21       10521553     10606140
13414         TPTE              21       10521553     10606140
13415         TPTE              21       10521553     10606140
13416         TPTE              21       10521553     10606140
13417         TPTE              21       10521553     10606140
13418         TPTE              21       10521553     10606140
13419         TPTE              21       10521553     10606140
13420         TPTE              21       10521553     10606140
13421         TPTE              21       10521553     10606140
13422         TPTE              21       10521553     10606140
13423    LINC01689              21       24304550     24321377
13424    LINC01689              21       24304550     24321377
13425    LINC01689              21       24304550     24321377
13426    LINC01689              21       24304550     24321377
13427                           21       23888798     23890541
13428                           21       23888798     23890541
13429                           21       23888798     23890541
13430      TEKT4P2              21        9068361      9129752
13431      TEKT4P2              21        9068361      9129752
13432      TEKT4P2              21        9068361      9129752
13433      TEKT4P2              21        9068361      9129752
13434      TEKT4P2              21        9068361      9129752
13435      TEKT4P2              21        9068361      9129752
13436      TEKT4P2              21        9068361      9129752
13437      TEKT4P2              21        9068361      9129752
13438      TEKT4P2              21        9068361      9129752
13439      TEKT4P2              21        9068361      9129752
13440                           21        9053122      9059060
13441                           21        9053122      9059060
13442     EEF1A1P1              21       23390258     23390996
13443                           21        8857260      8880976
13444                           21        8857260      8880976
13445                           21        8857260      8880976
13446                           21        8857260      8880976
13447                           21        8857260      8880976
13448                           21        8857260      8880976
13449                           21        8857260      8880976
13450                           21        8857260      8880976
13451                           21        8857260      8880976
13452                           21       31452466     31453223
13453    LINC00307              21       30209151     30211783
13454    LINC00307              21       30209151     30211783
13455    LINC00307              21       30209151     30211783
13456       CLDN17              21       30165564     30166756
13457       VN1R7P              21       10357400     10358620
13458       VN1R7P              21       10357400     10358620
13459                           21       25582770     25583326
13460      EIF3FP1              21       10330732     10331537
13461                           21        9810501      9810848
13462                           21        9369285      9376645
13463                           21        9369285      9376645
13464                           21        9369285      9376645
13465                           21        9369285      9376645
13466                           21        9325013      9368775
13467                           21        9325013      9368775
13468                           21        9325013      9368775
13469                           21        9325013      9368775
13470                           21        9325013      9368775
13471                           21        9325013      9368775
13472                           21        9325013      9368775
13473                           21        9325013      9368775
13474                           21        9325013      9368775
13475                           21        9325013      9368775
13476                           21        9325013      9368775
13477                           21        9325013      9368775
13478                           21        9325013      9368775
13479                           21        9325013      9368775
13480                           21        9325013      9368775
13481                           21        9325013      9368775
13482                           21        9325013      9368775
13483                           21        9325013      9368775
13484                           21        9325013      9368775
13485                           21        9325013      9368775
13486                           21       25055535     25069906
13487                           21       25055535     25069906
13488                           21       25055535     25069906
13489                           21       25055535     25069906
13490                           21       25031005     25031529
13491                           21       24155170     24188342
13492                           21       24155170     24188342
13493                           21       24155170     24188342
13494                           21        9088188      9088391
13495                           21        9026821      9027329
13496      MTCO1P1              21        8845566      8846646
13497     SNX18P10              21        8801362      8801880
13498    LINC01666              21        8759077      8761335
13499    LINC01666              21        8759077      8761335
13500    LINC01666              21        8759077      8761335
13501    LINC01666              21        8759077      8761335
13502                           21        8701461      8701562
13503                           21        8680538      8680934
13504      RPSAP68              21        8603547      8603984
13505                           21        8437629      8438551
13506     PPP6R2P1              21       14007134     14014880
13507     PPP6R2P1              21       14007134     14014880
13508     PPP6R2P1              21       14007134     14014880
13509     PPP6R2P1              21       14007134     14014880
13510     PPP6R2P1              21       14007134     14014880
13511     PPP6R2P1              21       14007134     14014880
13512     PPP6R2P1              21       14007134     14014880
13513     PPP6R2P1              21       14007134     14014880
13514     PPP6R2P1              21       14007134     14014880
13515     PPP6R2P1              21       14007134     14014880
13516     PPP6R2P1              21       14007134     14014880
13517  KRTAP19-11P              21       30537278     30537381
13518       MRPL39              21       25585656     25607517
13519       MRPL39              21       25585656     25607517
13520       MRPL39              21       25585656     25607517
13521       MRPL39              21       25585656     25607517
13522       MRPL39              21       25585656     25607517
13523       MRPL39              21       25585656     25607517
13524       MRPL39              21       25585656     25607517
13525       MRPL39              21       25585656     25607517
13526       MRPL39              21       25585656     25607517
13527       MRPL39              21       25585656     25607517
13528       MRPL39              21       25585656     25607517
13529       MRPL39              21       25585656     25607517
13530       MRPL39              21       25585656     25607517
13531       MRPL39              21       25585656     25607517
13532       MRPL39              21       25585656     25607517
13533       MRPL39              21       25585656     25607517
13534       MRPL39              21       25585656     25607517
13535       MRPL39              21       25585656     25607517
13536       MRPL39              21       25585656     25607517
13537       MRPL39              21       25585656     25607517
13538       MRPL39              21       25585656     25607517
13539       MRPL39              21       25585656     25607517
13540       MRPL39              21       25585656     25607517
13541       MRPL39              21       25585656     25607517
13542       MRPL39              21       25585656     25607517
13543       MRPL39              21       25585656     25607517
13544       MRPL39              21       25585656     25607517
13545       MRPL39              21       25585656     25607517
13546       MRPL39              21       25585656     25607517
13547     MIR155HG              21       25561909     25575168
13548     MIR155HG              21       25561909     25575168
13549     MIR155HG              21       25561909     25575168
13550     MIR155HG              21       25561909     25575168
13551                           21        9913117      9914846
13552                           21        9913117      9914846
13553                           21        9913117      9914846
13554                           21        9913117      9914846
13555                           21        9913117      9914846
13556                           21        9975017     10119309
13557                           21        9975017     10119309
13558                           21        9975017     10119309
13559                           21        9975017     10119309
13560                           21        9975017     10119309
13561                           21        9975017     10119309
13562                           21        9975017     10119309
13563                           21        9975017     10119309
13564                           21        9975017     10119309
13565                           21        9975017     10119309
13566                           21        9975017     10119309
13567                           21        9975017     10119309
13568                           21       10028361     10029855
13569                           21       10122273     10129029
13570                           21       10122273     10129029
13571    LINC01671              21       42599280     42615058
13572    LINC01671              21       42599280     42615058
13573    CYYR1-AS1              21       26393635     26569252
13574    CYYR1-AS1              21       26393635     26569252
13575    CYYR1-AS1              21       26393635     26569252
13576    CYYR1-AS1              21       26393635     26569252
13577    CYYR1-AS1              21       26393635     26569252
13578    CYYR1-AS1              21       26393635     26569252
13579    CYYR1-AS1              21       26393635     26569252
13580    CYYR1-AS1              21       26393635     26569252
13581     RAD23BLP              21       15694300     15696581
13582     RAD23BLP              21       15694300     15696581
13583                           21       15067070     15067837
13584                           21       15067070     15067837
13585      MTCO1P3              21       45376191     45376382
13586                           21       32306464     32308737
13587                           21       32306464     32308737
13588                           21       39006648     39011329
13589                           21       39006648     39011329
13590                           21       39006648     39011329
13591                           21       32259804     32261585
13592         ETS2              21       38805307     38824955
13593         ETS2              21       38805307     38824955
13594         ETS2              21       38805307     38824955
13595         ETS2              21       38805307     38824955
13596         ETS2              21       38805307     38824955
13597         ETS2              21       38805307     38824955
13598         ETS2              21       38805307     38824955
13599         ETS2              21       38805307     38824955
13600         ETS2              21       38805307     38824955
13601         ETS2              21       38805307     38824955
13602         ETS2              21       38805307     38824955
13603         ETS2              21       38805307     38824955
13604         ETS2              21       38805307     38824955
13605         ETS2              21       38805307     38824955
13606         ETS2              21       38805307     38824955
13607         ETS2              21       38805307     38824955
13608         ETS2              21       38805307     38824955
13609         ETS2              21       38805307     38824955
13610         ETS2              21       38805307     38824955
13611         ETS2              21       38805307     38824955
13612         ETS2              21       38805307     38824955
13613         ETS2              21       38805307     38824955
13614         ETS2              21       38805307     38824955
13615         ETS2              21       38805307     38824955
13616         ETS2              21       38805307     38824955
13617         ETS2              21       38805307     38824955
13618         ETS2              21       38805307     38824955
13619         ETS2              21       38805307     38824955
13620         ETS2              21       38805307     38824955
13621         ETS2              21       38805307     38824955
13622         ETS2              21       38805307     38824955
13623         ETS2              21       38805307     38824955
13624         ETS2              21       38805307     38824955
13625         ETS2              21       38805307     38824955
13626       UMODL1              21       42062959     42143453
13627       UMODL1              21       42062959     42143453
13628       UMODL1              21       42062959     42143453
13629       UMODL1              21       42062959     42143453
13630       UMODL1              21       42062959     42143453
13631       UMODL1              21       42062959     42143453
13632       UMODL1              21       42062959     42143453
13633       UMODL1              21       42062959     42143453
13634       UMODL1              21       42062959     42143453
13635       UMODL1              21       42062959     42143453
13636       UMODL1              21       42062959     42143453
13637       UMODL1              21       42062959     42143453
13638       UMODL1              21       42062959     42143453
13639       UMODL1              21       42062959     42143453
13640       UMODL1              21       42062959     42143453
13641       UMODL1              21       42062959     42143453
13642       UMODL1              21       42062959     42143453
13643       UMODL1              21       42062959     42143453
13644       UMODL1              21       42062959     42143453
13645       UMODL1              21       42062959     42143453
13646       UMODL1              21       42062959     42143453
13647       UMODL1              21       42062959     42143453
13648       UMODL1              21       42062959     42143453
13649       UMODL1              21       42062959     42143453
13650       UMODL1              21       42062959     42143453
13651       UMODL1              21       42062959     42143453
13652       UMODL1              21       42062959     42143453
13653       UMODL1              21       42062959     42143453
13654       UMODL1              21       42062959     42143453
13655       UMODL1              21       42062959     42143453
13656       UMODL1              21       42062959     42143453
13657       UMODL1              21       42062959     42143453
13658       UMODL1              21       42062959     42143453
13659       UMODL1              21       42062959     42143453
13660       UMODL1              21       42062959     42143453
13661       UMODL1              21       42062959     42143453
13662       UMODL1              21       42062959     42143453
13663       UMODL1              21       42062959     42143453
13664       UMODL1              21       42062959     42143453
13665       UMODL1              21       42062959     42143453
13666       UMODL1              21       42062959     42143453
13667       UMODL1              21       42062959     42143453
13668       UMODL1              21       42062959     42143453
13669       UMODL1              21       42062959     42143453
13670       UMODL1              21       42062959     42143453
13671       UMODL1              21       42062959     42143453
13672       UMODL1              21       42062959     42143453
13673       UMODL1              21       42062959     42143453
13674       UMODL1              21       42062959     42143453
13675       UMODL1              21       42062959     42143453
13676       UMODL1              21       42062959     42143453
13677       UMODL1              21       42062959     42143453
13678       UMODL1              21       42062959     42143453
13679       UMODL1              21       42062959     42143453
13680       UMODL1              21       42062959     42143453
13681       UMODL1              21       42062959     42143453
13682       UMODL1              21       42062959     42143453
13683       UMODL1              21       42062959     42143453
13684       UMODL1              21       42062959     42143453
13685       UMODL1              21       42062959     42143453
13686       UMODL1              21       42062959     42143453
13687       UMODL1              21       42062959     42143453
13688       UMODL1              21       42062959     42143453
13689       UMODL1              21       42062959     42143453
13690       UMODL1              21       42062959     42143453
13691       UMODL1              21       42062959     42143453
13692       UMODL1              21       42062959     42143453
13693       UMODL1              21       42062959     42143453
13694       UMODL1              21       42062959     42143453
13695       UMODL1              21       42062959     42143453
13696       UMODL1              21       42062959     42143453
13697       UMODL1              21       42062959     42143453
13698       UMODL1              21       42062959     42143453
13699       UMODL1              21       42062959     42143453
13700       UMODL1              21       42062959     42143453
13701       UMODL1              21       42062959     42143453
13702       UMODL1              21       42062959     42143453
13703       UMODL1              21       42062959     42143453
13704       UMODL1              21       42062959     42143453
13705       UMODL1              21       42062959     42143453
13706       UMODL1              21       42062959     42143453
13707       UMODL1              21       42062959     42143453
13708       UMODL1              21       42062959     42143453
13709       UMODL1              21       42062959     42143453
13710       UMODL1              21       42062959     42143453
13711       UMODL1              21       42062959     42143453
13712       UMODL1              21       42062959     42143453
13713       UMODL1              21       42062959     42143453
13714       UMODL1              21       42062959     42143453
13715       UMODL1              21       42062959     42143453
13716       UMODL1              21       42062959     42143453
13717       UMODL1              21       42062959     42143453
13718       UMODL1              21       42062959     42143453
13719       UMODL1              21       42062959     42143453
13720       UMODL1              21       42062959     42143453
13721       UMODL1              21       42062959     42143453
13722       UMODL1              21       42062959     42143453
13723       UMODL1              21       42062959     42143453
13724       UMODL1              21       42062959     42143453
13725       UMODL1              21       42062959     42143453
13726       UMODL1              21       42062959     42143453
13727       UMODL1              21       42062959     42143453
13728       UMODL1              21       42062959     42143453
13729       UMODL1              21       42062959     42143453
13730       UMODL1              21       42062959     42143453
13731       UMODL1              21       42062959     42143453
13732       UMODL1              21       42062959     42143453
13733       UMODL1              21       42062959     42143453
13734       UMODL1              21       42062959     42143453
13735       UMODL1              21       42062959     42143453
13736       UMODL1              21       42062959     42143453
13737       UMODL1              21       42062959     42143453
13738       UMODL1              21       42062959     42143453
13739       UMODL1              21       42062959     42143453
13740       UMODL1              21       42062959     42143453
13741       UMODL1              21       42062959     42143453
13742       UMODL1              21       42062959     42143453
13743       UMODL1              21       42062959     42143453
13744       UMODL1              21       42062959     42143453
13745       UMODL1              21       42062959     42143453
13746       UMODL1              21       42062959     42143453
13747       UMODL1              21       42062959     42143453
13748       UMODL1              21       42062959     42143453
13749       UMODL1              21       42062959     42143453
13750       UMODL1              21       42062959     42143453
13751       UMODL1              21       42062959     42143453
13752       UMODL1              21       42062959     42143453
13753       UMODL1              21       42062959     42143453
13754       UMODL1              21       42062959     42143453
13755       UMODL1              21       42062959     42143453
13756       UMODL1              21       42062959     42143453
13757       UMODL1              21       42062959     42143453
13758       UMODL1              21       42062959     42143453
13759       UMODL1              21       42062959     42143453
13760       UMODL1              21       42062959     42143453
13761       UMODL1              21       42062959     42143453
13762       UMODL1              21       42062959     42143453
13763       UMODL1              21       42062959     42143453
13764       UMODL1              21       42062959     42143453
13765       UMODL1              21       42062959     42143453
13766       UMODL1              21       42062959     42143453
13767       UMODL1              21       42062959     42143453
13768       UMODL1              21       42062959     42143453
13769       UMODL1              21       42062959     42143453
13770       UMODL1              21       42062959     42143453
13771       UMODL1              21       42062959     42143453
13772       UMODL1              21       42062959     42143453
13773       UMODL1              21       42062959     42143453
13774       UMODL1              21       42062959     42143453
13775       UMODL1              21       42062959     42143453
13776       UMODL1              21       42062959     42143453
13777                           21        5130871      5154734
13778                           21        5130871      5154734
13779                           21        5130871      5154734
13780                           21        5130871      5154734
13781                           21        5130871      5154734
13782                           21        5130871      5154734
13783                           21        5130871      5154734
13784                           21        5130871      5154734
13785                           21        5130871      5154734
13786                           21        5130871      5154734
13787                           21        5130871      5154734
13788                           21        5130871      5154734
13789                           21        5130871      5154734
13790                           21        5130871      5154734
13791                           21        5130871      5154734
13792                           21        5130871      5154734
13793                           21        5130871      5154734
13794                           21        5130871      5154734
13795                           21        5130871      5154734
13796                           21        5130871      5154734
13797                           21        5130871      5154734
13798                           21        5130871      5154734
13799                           21        5130871      5154734
13800                           21        5130871      5154734
13801                           21        5130871      5154734
13802                           21        5130871      5154734
13803                           21        5130871      5154734
13804                           21        5130871      5154734
13805                           21        5130871      5154734
13806                           21        5130871      5154734
13807                           21        5130871      5154734
13808                           21        5130871      5154734
13809                           21        5130871      5154734
13810                           21        5130871      5154734
13811                           21        5130871      5154734
13812                           21        5130871      5154734
13813                           21        5130871      5154734
13814                           21        5130871      5154734
13815                           21        5130871      5154734
13816                           21        5130871      5154734
13817                           21        5130871      5154734
13818                           21        5130871      5154734
13819                           21        5130871      5154734
13820                           21        5130871      5154734
13821                           21        5130871      5154734
13822                           21        5130871      5154734
13823                           21        5130871      5154734
13824                           21        5130871      5154734
13825                           21        5130871      5154734
13826                           21        5130871      5154734
13827                           21        5130871      5154734
13828                           21        5079294      5128425
13829                           21        5079294      5128425
13830                           21        5079294      5128425
13831                           21        5079294      5128425
13832                           21        5079294      5128425
13833                           21        5079294      5128425
13834                           21        5079294      5128425
13835                           21        5079294      5128425
13836                           21        5079294      5128425
13837                           21        5079294      5128425
13838                           21        5079294      5128425
13839                           21        5079294      5128425
13840                           21        5079294      5128425
13841                           21        5079294      5128425
13842                           21        5079294      5128425
13843                           21        5079294      5128425
13844                           21        5079294      5128425
13845                           21        5079294      5128425
13846                           21        5079294      5128425
13847                           21        5079294      5128425
13848                           21        5079294      5128425
13849                           21        5079294      5128425
13850                           21        5079294      5128425
13851                           21        5079294      5128425
13852                           21        5079294      5128425
13853                           21        5079294      5128425
13854                           21        5079294      5128425
13855                           21        5079294      5128425
13856                           21        5079294      5128425
13857                           21        5079294      5128425
13858                           21        5079294      5128425
13859                           21        5079294      5128425
13860                           21        5079294      5128425
13861                           21        5079294      5128425
13862                           21        5079294      5128425
13863                           21        5079294      5128425
13864                           21        5079294      5128425
13865                           21        5079294      5128425
13866                           21        5079294      5128425
13867                           21        5079294      5128425
13868                           21        5079294      5128425
13869                           21        5079294      5128425
13870                           21        5079294      5128425
13871                           21        5079294      5128425
13872                           21        5079294      5128425
13873                           21        5079294      5128425
13874                           21        5079294      5128425
13875                           21        5079294      5128425
13876                           21        5079294      5128425
13877                           21        5079294      5128425
13878                           21        5079294      5128425
13879                           21        5079294      5128425
13880                           21        5079294      5128425
13881                           21        5079294      5128425
13882                           21        5079294      5128425
13883   ANKRD30BP2              21       13038160     13067033
13884   ANKRD30BP2              21       13038160     13067033
13885   ANKRD30BP2              21       13038160     13067033
13886   ANKRD30BP2              21       13038160     13067033
13887   ANKRD30BP2              21       13038160     13067033
13888   ANKRD30BP2              21       13038160     13067033
13889   ANKRD30BP2              21       13038160     13067033
13890   ANKRD30BP2              21       13038160     13067033
13891   ANKRD30BP2              21       13038160     13067033
13892   ANKRD30BP2              21       13038160     13067033
13893   ANKRD30BP2              21       13038160     13067033
13894   ANKRD30BP2              21       13038160     13067033
13895   ANKRD30BP2              21       13038160     13067033
13896   ANKRD30BP2              21       13038160     13067033
13897   ANKRD30BP2              21       13038160     13067033
13898   ANKRD30BP2              21       13038160     13067033
13899   ANKRD30BP2              21       13038160     13067033
13900   ANKRD30BP2              21       13038160     13067033
13901   ANKRD30BP2              21       13038160     13067033
13902   ANKRD30BP2              21       13038160     13067033
13903   ANKRD30BP2              21       13038160     13067033
13904   ANKRD30BP2              21       13038160     13067033
13905                           21       10640028     10640338
13906                           21       38204141     38206080
13907                           21       38204141     38206080
13908    KRTAP11-1              21       30880644     30881555
13909     KRTAP8-1              21       30812697     30813252
13910   KRTAP21-4P              21       30741780     30742595
13911        KCNJ6              21       37607376     37916446
13912        KCNJ6              21       37607376     37916446
13913        KCNJ6              21       37607376     37916446
13914        KCNJ6              21       37607376     37916446
13915    KCNJ6-AS1              21       37717102     37719569
13916    KCNJ6-AS1              21       37717102     37719569
13917    KRTAP22-2              21       30590105     30590397
13918     KRTAP6-3              21       30592440     30593075
13919     RPL23AP4              21       46690764     46691226
13920     KRTAP6-2              21       30598590     30598902
13921    KRTAP22-1              21       30601087     30601382
13922     KRTAP6-1              21       30613431     30613930
13923    KRTAP20-1              21       30616425     30616699
13924    KRTAP20-4              21       30620627     30620850
13925                           21       44978832     44979274
13926    LINC00163              21       44989864     44994086
13927    LINC00163              21       44989864     44994086
13928    LINC00163              21       44989864     44994086
13929    LINC00163              21       44989864     44994086
13930    LINC00165              21       44994362     44995185
13931       PICSAR              21       44999208     45004727
13932       PICSAR              21       44999208     45004727
13933       SSR4P1              21       45070952     45074165
13934       SSR4P1              21       45070952     45074165
13935       SSR4P1              21       45070952     45074165
13936       SSR4P1              21       45070952     45074165
13937   RNU6-1150P              21       43996322     43996420
13938                           21       23432181     23432282
13939                           21        5597390      5597490
13940                           21        7474394      7474494
13941    RNU6-614P              21       13047583     13047689
13942     MIRLET7C              21       16539828     16539911
13943    RN7SKP236              21       25101132     25101415
13944    RN7SL740P              21       33918995     33919338
13945    RNU6-992P              21       36066545     36066652
13946                           21       31664306     31664482
13947    RNU6-859P              21       43919795     43919901
13948    RNA5SP490              21       32563075     32563210
13949      MIR4327              21       30375294     30375378
13950                           21       39344537     39344628
13951    RNU6-926P              21       26190707     26190813
13952    RNU6-113P              21       17431547     17431647
13953                           21        9646825      9647000
13954      MIR3197              21       41167557     41167629
13955                           21       40513144     40513279
13956       MIR99A              21       16539089     16539169
13957      MIR6070              21       43609887     43609989
13958    MIR6724-3              21        8388362      8388453
13959                           21       14075950     14076038
13960                           21       41882205     41882300
13961                           21       38894785     38894867
13962     RNA5-8S5              21        8212572      8212724
13963     RN7SL52P              21        9902344      9902627
13964      MIR6508              21       39447010     39447069
13965                           21        9907916      9908010
13966    MIR3156-3              21       13406384     13406460
13967     SNORA80A              21       32377187     32377322
13968                           21       29180425     29180639
13969    RNA5SP488              21       14070871     14070986
13970                           21       32538299     32538434
13971      MIR548X              21       18686090     18686164
13972     RNU4-45P              21       22205192     22205332
13973    RNU6-954P              21       13968489     13968595
13974    RN7SL678P              21       37215605     37215903
13975     RNA5-8S5              21        8439823      8439975
13976     RNA5-8S5              21        8395607      8395759
13977                           21       17576798     17576906
13978    RNU6-396P              21       46525618     46525722

select()

Negative selection

Dropping columns

We can drop columns by "negating" their names. Since helpers give us column names, we can negate them too. Note that the

gene_by_exon %>%
  dplyr::select(-strand, -starts_with("ensembl"),
         -ends_with("id"))
      chromosome_name start_position end_position  hgnc_symbol
1                  21       44439035     44439110             
2                  21        7092616      7092716             
3                  21        8433085      8433174             
4                  21       39171462     39171560             
5                  21       41870633     41872054             
6                  21       41870633     41872054             
7                  21       44885953     44931989        ITGB2
8                  21       44885953     44931989        ITGB2
9                  21       44885953     44931989        ITGB2
10                 21       44885953     44931989        ITGB2
11                 21       44885953     44931989        ITGB2
12                 21       44885953     44931989        ITGB2
13                 21       44885953     44931989        ITGB2
14                 21       44885953     44931989        ITGB2
15                 21       44885953     44931989        ITGB2
16                 21       44885953     44931989        ITGB2
17                 21       44885953     44931989        ITGB2
18                 21       44885953     44931989        ITGB2
19                 21       44885953     44931989        ITGB2
20                 21       44885953     44931989        ITGB2
21                 21       44885953     44931989        ITGB2
22                 21       44885953     44931989        ITGB2
23                 21       44885953     44931989        ITGB2
24                 21       44885953     44931989        ITGB2
25                 21       44885953     44931989        ITGB2
26                 21       44885953     44931989        ITGB2
27                 21       44885953     44931989        ITGB2
28                 21       44885953     44931989        ITGB2
29                 21       44885953     44931989        ITGB2
30                 21       44885953     44931989        ITGB2
31                 21       44885953     44931989        ITGB2
32                 21       44885953     44931989        ITGB2
33                 21       44885953     44931989        ITGB2
34                 21       44885953     44931989        ITGB2
35                 21       44885953     44931989        ITGB2
36                 21       44885953     44931989        ITGB2
37                 21       44885953     44931989        ITGB2
38                 21       44885953     44931989        ITGB2
39                 21       44885953     44931989        ITGB2
40                 21       44885953     44931989        ITGB2
41                 21       44885953     44931989        ITGB2
42                 21       44885953     44931989        ITGB2
43                 21       44885953     44931989        ITGB2
44                 21       44885953     44931989        ITGB2
45                 21       44885953     44931989        ITGB2
46                 21       44885953     44931989        ITGB2
47                 21       44885953     44931989        ITGB2
48                 21       44885953     44931989        ITGB2
49                 21       44885953     44931989        ITGB2
50                 21       44885953     44931989        ITGB2
51                 21       44885953     44931989        ITGB2
52                 21       44885953     44931989        ITGB2
53                 21       44885953     44931989        ITGB2
54                 21       44885953     44931989        ITGB2
55                 21       44885953     44931989        ITGB2
56                 21       44885953     44931989        ITGB2
57                 21       44885953     44931989        ITGB2
58                 21       44885953     44931989        ITGB2
59                 21       44885953     44931989        ITGB2
60                 21       44885953     44931989        ITGB2
61                 21       44885953     44931989        ITGB2
62                 21       44885953     44931989        ITGB2
63                 21       44885953     44931989        ITGB2
64                 21       44885953     44931989        ITGB2
65                 21       44885953     44931989        ITGB2
66                 21       44885953     44931989        ITGB2
67                 21       44885953     44931989        ITGB2
68                 21       44885953     44931989        ITGB2
69                 21       44885953     44931989        ITGB2
70                 21       44885953     44931989        ITGB2
71                 21       44885953     44931989        ITGB2
72                 21       44885953     44931989        ITGB2
73                 21       44885953     44931989        ITGB2
74                 21       44885953     44931989        ITGB2
75                 21       44885953     44931989        ITGB2
76                 21       44885953     44931989        ITGB2
77                 21       44885953     44931989        ITGB2
78                 21       44885953     44931989        ITGB2
79                 21       44885953     44931989        ITGB2
80                 21       44885953     44931989        ITGB2
81                 21       44885953     44931989        ITGB2
82                 21       44885953     44931989        ITGB2
83                 21       44885953     44931989        ITGB2
84                 21       44885953     44931989        ITGB2
85                 21       44885953     44931989        ITGB2
86                 21       44885953     44931989        ITGB2
87                 21       44885953     44931989        ITGB2
88                 21       44885953     44931989        ITGB2
89                 21       44885953     44931989        ITGB2
90                 21       44885953     44931989        ITGB2
91                 21       44885953     44931989        ITGB2
92                 21       44885953     44931989        ITGB2
93                 21       44885953     44931989        ITGB2
94                 21       44885953     44931989        ITGB2
95                 21       44885953     44931989        ITGB2
96                 21       44885953     44931989        ITGB2
97                 21       44885953     44931989        ITGB2
98                 21       44885953     44931989        ITGB2
99                 21       44885953     44931989        ITGB2
100                21       44885953     44931989        ITGB2
101                21       44885953     44931989        ITGB2
102                21       44885953     44931989        ITGB2
103                21       44885953     44931989        ITGB2
104                21       44885953     44931989        ITGB2
105                21       44885953     44931989        ITGB2
106                21       44885953     44931989        ITGB2
107                21       44885953     44931989        ITGB2
108                21       44885953     44931989        ITGB2
109                21       44885953     44931989        ITGB2
110                21       44885953     44931989        ITGB2
111                21       44885953     44931989        ITGB2
112                21       44885953     44931989        ITGB2
113                21       44885953     44931989        ITGB2
114                21       44885953     44931989        ITGB2
115                21       44885953     44931989        ITGB2
116                21       44885953     44931989        ITGB2
117                21       44885953     44931989        ITGB2
118                21       44885953     44931989        ITGB2
119                21       44885953     44931989        ITGB2
120                21       44885953     44931989        ITGB2
121                21       44885953     44931989        ITGB2
122                21       44885953     44931989        ITGB2
123                21       44885953     44931989        ITGB2
124                21       44885953     44931989        ITGB2
125                21       44885953     44931989        ITGB2
126                21       44885953     44931989        ITGB2
127                21       44885953     44931989        ITGB2
128                21       44885953     44931989        ITGB2
129                21       44885953     44931989        ITGB2
130                21       44885953     44931989        ITGB2
131                21       44885953     44931989        ITGB2
132                21       44885953     44931989        ITGB2
133                21       44885953     44931989        ITGB2
134                21       44885953     44931989        ITGB2
135                21       44885953     44931989        ITGB2
136                21       44885953     44931989        ITGB2
137                21       44885953     44931989        ITGB2
138                21       44885953     44931989        ITGB2
139                21       44885953     44931989        ITGB2
140                21       44885953     44931989        ITGB2
141                21       44885953     44931989        ITGB2
142                21       44885953     44931989        ITGB2
143                21       44885953     44931989        ITGB2
144                21       44885953     44931989        ITGB2
145                21       44885953     44931989        ITGB2
146                21       44885953     44931989        ITGB2
147                21       44885953     44931989        ITGB2
148                21       44885953     44931989        ITGB2
149                21       44885953     44931989        ITGB2
150                21       44885953     44931989        ITGB2
151                21       44885953     44931989        ITGB2
152                21       44885953     44931989        ITGB2
153                21       44885953     44931989        ITGB2
154                21       44885953     44931989        ITGB2
155                21       44885953     44931989        ITGB2
156                21       44885953     44931989        ITGB2
157                21       44885953     44931989        ITGB2
158                21       44885953     44931989        ITGB2
159                21       44885953     44931989        ITGB2
160                21       44885953     44931989        ITGB2
161                21       44885953     44931989        ITGB2
162                21       44885953     44931989        ITGB2
163                21       44885953     44931989        ITGB2
164                21       44885953     44931989        ITGB2
165                21       44885953     44931989        ITGB2
166                21       44885953     44931989        ITGB2
167                21       44885953     44931989        ITGB2
168                21       44885953     44931989        ITGB2
169                21       44885953     44931989        ITGB2
170                21       44885953     44931989        ITGB2
171                21       44885953     44931989        ITGB2
172                21       44885953     44931989        ITGB2
173                21       44885953     44931989        ITGB2
174                21       44885953     44931989        ITGB2
175                21       44885953     44931989        ITGB2
176                21       44885953     44931989        ITGB2
177                21       44885953     44931989        ITGB2
178                21       44885953     44931989        ITGB2
179                21       44885953     44931989        ITGB2
180                21       44885953     44931989        ITGB2
181                21       44885953     44931989        ITGB2
182                21       44885953     44931989        ITGB2
183                21       44885953     44931989        ITGB2
184                21       44885953     44931989        ITGB2
185                21       44885953     44931989        ITGB2
186                21       44885953     44931989        ITGB2
187                21       44885953     44931989        ITGB2
188                21       44885953     44931989        ITGB2
189                21       44885953     44931989        ITGB2
190                21       44885953     44931989        ITGB2
191                21       44885953     44931989        ITGB2
192                21       44885953     44931989        ITGB2
193                21       44885953     44931989        ITGB2
194                21       44885953     44931989        ITGB2
195                21       44885953     44931989        ITGB2
196                21       44885953     44931989        ITGB2
197                21       44885953     44931989        ITGB2
198                21       44885953     44931989        ITGB2
199                21       44885953     44931989        ITGB2
200                21       44885953     44931989        ITGB2
201                21       44885953     44931989        ITGB2
202                21       44885953     44931989        ITGB2
203                21       25202207     25202315    RNA5SP489
204                21       42417497     42417593   RNU6-1149P
205                21       43748365     43748468             
206                21       43748365     43748468             
207                21       35720715     35720808       MIR802
208                21       23281736     23281909     RNU2-55P
209                21       17527140     17527247             
210                21       28743208     28743291             
211                21       40212352     40212431      MIR4760
212                21       46598962     46605208        S100B
213                21       46598962     46605208        S100B
214                21       46598962     46605208        S100B
215                21       46598962     46605208        S100B
216                21       46598962     46605208        S100B
217                21       46598962     46605208        S100B
218                21       46598962     46605208        S100B
219                21       46598962     46605208        S100B
220                21       46598962     46605208        S100B
221                21       46458899     46569852        DIP2A
222                21       46458899     46569852        DIP2A
223                21       46458899     46569852        DIP2A
224                21       46458899     46569852        DIP2A
225                21       46458899     46569852        DIP2A
226                21       46458899     46569852        DIP2A
227                21       46458899     46569852        DIP2A
228                21       46458899     46569852        DIP2A
229                21       46458899     46569852        DIP2A
230                21       46458899     46569852        DIP2A
231                21       46458899     46569852        DIP2A
232                21       46458899     46569852        DIP2A
233                21       46458899     46569852        DIP2A
234                21       46458899     46569852        DIP2A
235                21       46458899     46569852        DIP2A
236                21       46458899     46569852        DIP2A
237                21       46458899     46569852        DIP2A
238                21       46458899     46569852        DIP2A
239                21       46458899     46569852        DIP2A
240                21       46458899     46569852        DIP2A
241                21       46458899     46569852        DIP2A
242                21       46458899     46569852        DIP2A
243                21       46458899     46569852        DIP2A
244                21       46458899     46569852        DIP2A
245                21       46458899     46569852        DIP2A
246                21       46458899     46569852        DIP2A
247                21       46458899     46569852        DIP2A
248                21       46458899     46569852        DIP2A
249                21       46458899     46569852        DIP2A
250                21       46458899     46569852        DIP2A
251                21       46458899     46569852        DIP2A
252                21       46458899     46569852        DIP2A
253                21       46458899     46569852        DIP2A
254                21       46458899     46569852        DIP2A
255                21       46458899     46569852        DIP2A
256                21       46458899     46569852        DIP2A
257                21       46458899     46569852        DIP2A
258                21       46458899     46569852        DIP2A
259                21       46458899     46569852        DIP2A
260                21       46458899     46569852        DIP2A
261                21       46458899     46569852        DIP2A
262                21       46458899     46569852        DIP2A
263                21       46458899     46569852        DIP2A
264                21       46458899     46569852        DIP2A
265                21       46458899     46569852        DIP2A
266                21       46458899     46569852        DIP2A
267                21       46458899     46569852        DIP2A
268                21       46458899     46569852        DIP2A
269                21       46458899     46569852        DIP2A
270                21       46458899     46569852        DIP2A
271                21       46458899     46569852        DIP2A
272                21       46458899     46569852        DIP2A
273                21       46458899     46569852        DIP2A
274                21       46458899     46569852        DIP2A
275                21       46458899     46569852        DIP2A
276                21       46458899     46569852        DIP2A
277                21       46458899     46569852        DIP2A
278                21       46458899     46569852        DIP2A
279                21       46458899     46569852        DIP2A
280                21       46458899     46569852        DIP2A
281                21       46458899     46569852        DIP2A
282                21       46458899     46569852        DIP2A
283                21       46458899     46569852        DIP2A
284                21       46458899     46569852        DIP2A
285                21       46458899     46569852        DIP2A
286                21       46458899     46569852        DIP2A
287                21       46458899     46569852        DIP2A
288                21       46458899     46569852        DIP2A
289                21       46458899     46569852        DIP2A
290                21       46458899     46569852        DIP2A
291                21       46458899     46569852        DIP2A
292                21       46458899     46569852        DIP2A
293                21       46458899     46569852        DIP2A
294                21       46458899     46569852        DIP2A
295                21       46458899     46569852        DIP2A
296                21       46458899     46569852        DIP2A
297                21       46458899     46569852        DIP2A
298                21       46458899     46569852        DIP2A
299                21       46458899     46569852        DIP2A
300                21       46458899     46569852        DIP2A
301                21       46458899     46569852        DIP2A
302                21       46458899     46569852        DIP2A
303                21       46458899     46569852        DIP2A
304                21       46458899     46569852        DIP2A
305                21       46458899     46569852        DIP2A
306                21       46458899     46569852        DIP2A
307                21       46458899     46569852        DIP2A
308                21       46458899     46569852        DIP2A
309                21       46458899     46569852        DIP2A
310                21       46458899     46569852        DIP2A
311                21       46458899     46569852        DIP2A
312                21       46458899     46569852        DIP2A
313                21       46458899     46569852        DIP2A
314                21       46458899     46569852        DIP2A
315                21       46458899     46569852        DIP2A
316                21       46458899     46569852        DIP2A
317                21       46458899     46569852        DIP2A
318                21       46458899     46569852        DIP2A
319                21       46458899     46569852        DIP2A
320                21       46458899     46569852        DIP2A
321                21       46458899     46569852        DIP2A
322                21       46458899     46569852        DIP2A
323                21       46458899     46569852        DIP2A
324                21       46458899     46569852        DIP2A
325                21       46458899     46569852        DIP2A
326                21       46458899     46569852        DIP2A
327                21       46458899     46569852        DIP2A
328                21       46458899     46569852        DIP2A
329                21       46458899     46569852        DIP2A
330                21       46458899     46569852        DIP2A
331                21       46458899     46569852        DIP2A
332                21       46458899     46569852        DIP2A
333                21       46458899     46569852        DIP2A
334                21       46458899     46569852        DIP2A
335                21       46458899     46569852        DIP2A
336                21       46458899     46569852        DIP2A
337                21       46458899     46569852        DIP2A
338                21       46458899     46569852        DIP2A
339                21       46458899     46569852        DIP2A
340                21       46458899     46569852        DIP2A
341                21       46458899     46569852        DIP2A
342                21       46458899     46569852        DIP2A
343                21       46458899     46569852        DIP2A
344                21       46458899     46569852        DIP2A
345                21       46458899     46569852        DIP2A
346                21       46458899     46569852        DIP2A
347                21       46458899     46569852        DIP2A
348                21       46458899     46569852        DIP2A
349                21       46458899     46569852        DIP2A
350                21       46458899     46569852        DIP2A
351                21       46458899     46569852        DIP2A
352                21       46458899     46569852        DIP2A
353                21       46458899     46569852        DIP2A
354                21       46458899     46569852        DIP2A
355                21       46458899     46569852        DIP2A
356                21       46458899     46569852        DIP2A
357                21       46458899     46569852        DIP2A
358                21       46458899     46569852        DIP2A
359                21       46458899     46569852        DIP2A
360                21       46458899     46569852        DIP2A
361                21       46458899     46569852        DIP2A
362                21       46458899     46569852        DIP2A
363                21       46458899     46569852        DIP2A
364                21       46458899     46569852        DIP2A
365                21       46458899     46569852        DIP2A
366                21       46458899     46569852        DIP2A
367                21       46458899     46569852        DIP2A
368                21       46458899     46569852        DIP2A
369                21       46458899     46569852        DIP2A
370                21       46458899     46569852        DIP2A
371                21       46458899     46569852        DIP2A
372                21       46458899     46569852        DIP2A
373                21       46458899     46569852        DIP2A
374                21       46458899     46569852        DIP2A
375                21       46458899     46569852        DIP2A
376                21       46458899     46569852        DIP2A
377                21       46458899     46569852        DIP2A
378                21       46458899     46569852        DIP2A
379                21       46458899     46569852        DIP2A
380                21       46458899     46569852        DIP2A
381                21       46458899     46569852        DIP2A
382                21       46458899     46569852        DIP2A
383                21       46458899     46569852        DIP2A
384                21       46458899     46569852        DIP2A
385                21       46458899     46569852        DIP2A
386                21       46458899     46569852        DIP2A
387                21       46458899     46569852        DIP2A
388                21       46458899     46569852        DIP2A
389                21       46458899     46569852        DIP2A
390                21       46458899     46569852        DIP2A
391                21       46458899     46569852        DIP2A
392                21       46458899     46569852        DIP2A
393                21       46458899     46569852        DIP2A
394                21       46458899     46569852        DIP2A
395                21       46458899     46569852        DIP2A
396                21       46458899     46569852        DIP2A
397                21       46458899     46569852        DIP2A
398                21       46458899     46569852        DIP2A
399                21       46458899     46569852        DIP2A
400                21       46458899     46569852        DIP2A
401                21       46458899     46569852        DIP2A
402                21       46458899     46569852        DIP2A
403                21       46458899     46569852        DIP2A
404                21       46458899     46569852        DIP2A
405                21       46458899     46569852        DIP2A
406                21       46458899     46569852        DIP2A
407                21       46458899     46569852        DIP2A
408                21       46458899     46569852        DIP2A
409                21       46458899     46569852        DIP2A
410                21       46458899     46569852        DIP2A
411                21       46458899     46569852        DIP2A
412                21       20355748     20355852    RNU6-772P
413                21        8986999      8987178    MIR3648-2
414                21       33550662     33550728      MIR6501
415                21       16284696     16284768             
416                21       25573980     25574044       MIR155
417                21       13644775     13644850    MIR3118-1
418                21       42950928     42951014     MIR5692B
419                21       44802577     44804717    LINC01424
420                21       44802577     44804717    LINC01424
421                21       44666189     44666927    KRTAP12-2
422                21       44654213     44654659    KRTAP12-4
423                21       37267784     37268497             
424                21       46324122     46445769         PCNT
425                21       46324122     46445769         PCNT
426                21       46324122     46445769         PCNT
427                21       46324122     46445769         PCNT
428                21       46324122     46445769         PCNT
429                21       46324122     46445769         PCNT
430                21       46324122     46445769         PCNT
431                21       46324122     46445769         PCNT
432                21       46324122     46445769         PCNT
433                21       46324122     46445769         PCNT
434                21       46324122     46445769         PCNT
435                21       46324122     46445769         PCNT
436                21       46324122     46445769         PCNT
437                21       46324122     46445769         PCNT
438                21       46324122     46445769         PCNT
439                21       46324122     46445769         PCNT
440                21       46324122     46445769         PCNT
441                21       46324122     46445769         PCNT
442                21       46324122     46445769         PCNT
443                21       46324122     46445769         PCNT
444                21       46324122     46445769         PCNT
445                21       46324122     46445769         PCNT
446                21       46324122     46445769         PCNT
447                21       46324122     46445769         PCNT
448                21       46324122     46445769         PCNT
449                21       46324122     46445769         PCNT
450                21       46324122     46445769         PCNT
451                21       46324122     46445769         PCNT
452                21       46324122     46445769         PCNT
453                21       46324122     46445769         PCNT
454                21       46324122     46445769         PCNT
455                21       46324122     46445769         PCNT
456                21       46324122     46445769         PCNT
457                21       46324122     46445769         PCNT
458                21       46324122     46445769         PCNT
459                21       46324122     46445769         PCNT
460                21       46324122     46445769         PCNT
461                21       46324122     46445769         PCNT
462                21       46324122     46445769         PCNT
463                21       46324122     46445769         PCNT
464                21       46324122     46445769         PCNT
465                21       46324122     46445769         PCNT
466                21       46324122     46445769         PCNT
467                21       46324122     46445769         PCNT
468                21       46324122     46445769         PCNT
469                21       46324122     46445769         PCNT
470                21       46324122     46445769         PCNT
471                21       46324122     46445769         PCNT
472                21       46324122     46445769         PCNT
473                21       46324122     46445769         PCNT
474                21       46324122     46445769         PCNT
475                21       46324122     46445769         PCNT
476                21       46324122     46445769         PCNT
477                21       46324122     46445769         PCNT
478                21       46324122     46445769         PCNT
479                21       46324122     46445769         PCNT
480                21       46324122     46445769         PCNT
481                21       46324122     46445769         PCNT
482                21       46324122     46445769         PCNT
483                21       46324122     46445769         PCNT
484                21       46324122     46445769         PCNT
485                21       46324122     46445769         PCNT
486                21       46324122     46445769         PCNT
487                21       46324122     46445769         PCNT
488                21       46324122     46445769         PCNT
489                21       46324122     46445769         PCNT
490                21       46324122     46445769         PCNT
491                21       46324122     46445769         PCNT
492                21       46324122     46445769         PCNT
493                21       46324122     46445769         PCNT
494                21       46324122     46445769         PCNT
495                21       46324122     46445769         PCNT
496                21       46324122     46445769         PCNT
497                21       46324122     46445769         PCNT
498                21       46324122     46445769         PCNT
499                21       46324122     46445769         PCNT
500                21       46324122     46445769         PCNT
501                21       46324122     46445769         PCNT
502                21       46324122     46445769         PCNT
503                21       46324122     46445769         PCNT
504                21       46324122     46445769         PCNT
505                21       46324122     46445769         PCNT
506                21       46324122     46445769         PCNT
507                21       46324122     46445769         PCNT
508                21       46324122     46445769         PCNT
509                21       46324122     46445769         PCNT
510                21       46324122     46445769         PCNT
511                21       46324122     46445769         PCNT
512                21       46324122     46445769         PCNT
513                21       46324122     46445769         PCNT
514                21       46324122     46445769         PCNT
515                21       46324122     46445769         PCNT
516                21       46324122     46445769         PCNT
517                21       46324122     46445769         PCNT
518                21       46324122     46445769         PCNT
519                21       46324122     46445769         PCNT
520                21       46324122     46445769         PCNT
521                21       46324122     46445769         PCNT
522                21       46324122     46445769         PCNT
523                21       46324122     46445769         PCNT
524                21       46324122     46445769         PCNT
525                21       46324122     46445769         PCNT
526                21       46324122     46445769         PCNT
527                21       46324122     46445769         PCNT
528                21       46324122     46445769         PCNT
529                21       46324122     46445769         PCNT
530                21       46324122     46445769         PCNT
531                21       46324122     46445769         PCNT
532                21       46324122     46445769         PCNT
533                21       46324122     46445769         PCNT
534                21       46324122     46445769         PCNT
535                21       46324122     46445769         PCNT
536                21       46324122     46445769         PCNT
537                21       46324122     46445769         PCNT
538                21       46324122     46445769         PCNT
539                21       46324122     46445769         PCNT
540                21       46324122     46445769         PCNT
541                21       46324122     46445769         PCNT
542                21       46324122     46445769         PCNT
543                21       46324122     46445769         PCNT
544                21       46324122     46445769         PCNT
545                21       46324122     46445769         PCNT
546                21       46324122     46445769         PCNT
547                21       44657932     44658341    KRTAP12-3
548                21       44591268     44592505    KRTAP10-6
549                21       44681576     44682163    KRTAP12-1
550                21       44550357     44551505    KRTAP10-2
551                21       44550357     44551505    KRTAP10-2
552                21       44550357     44551505    KRTAP10-2
553                21       44450986     44455284    LRRC3-AS1
554                21       44450986     44455284    LRRC3-AS1
555                21       44450986     44455284    LRRC3-AS1
556                21       44450986     44455284    LRRC3-AS1
557                21        8388898      8388987             
558                21       36986739     36986851             
559                21       41180097     41180626    BACE2-IT1
560                21       41180097     41180626    BACE2-IT1
561                21       33967101     33968573             
562                21       33967101     33968573             
563                21        8197620      8227646             
564                21        8197620      8227646             
565                21        8197620      8227646             
566                21        8197620      8227646             
567                21        8197620      8227646             
568                21        8197620      8227646             
569                21        8197620      8227646             
570                21       29359002     29359453             
571                21       29496047     29500386    BACH1-IT3
572                21       29496047     29500386    BACH1-IT3
573                21       29194071     29630751        BACH1
574                21       29194071     29630751        BACH1
575                21       29194071     29630751        BACH1
576                21       29194071     29630751        BACH1
577                21       29194071     29630751        BACH1
578                21       29194071     29630751        BACH1
579                21       29194071     29630751        BACH1
580                21       29194071     29630751        BACH1
581                21       29194071     29630751        BACH1
582                21       29194071     29630751        BACH1
583                21       29194071     29630751        BACH1
584                21       29194071     29630751        BACH1
585                21       29194071     29630751        BACH1
586                21       29194071     29630751        BACH1
587                21       29194071     29630751        BACH1
588                21       29194071     29630751        BACH1
589                21       29194071     29630751        BACH1
590                21       29194071     29630751        BACH1
591                21       29194071     29630751        BACH1
592                21       29194071     29630751        BACH1
593                21       29194071     29630751        BACH1
594                21       29194071     29630751        BACH1
595                21       29194071     29630751        BACH1
596                21       29194071     29630751        BACH1
597                21       29194071     29630751        BACH1
598                21       29194071     29630751        BACH1
599                21       29194071     29630751        BACH1
600                21       29194071     29630751        BACH1
601                21       29194071     29630751        BACH1
602                21       29194071     29630751        BACH1
603                21       29194071     29630751        BACH1
604                21       29194071     29630751        BACH1
605                21       29194071     29630751        BACH1
606                21       29194071     29630751        BACH1
607                21       29194071     29630751        BACH1
608                21       29194071     29630751        BACH1
609                21       29194071     29630751        BACH1
610                21       29194071     29630751        BACH1
611                21       29194071     29630751        BACH1
612                21       29194071     29630751        BACH1
613                21       29194071     29630751        BACH1
614                21       29194071     29630751        BACH1
615                21       29194071     29630751        BACH1
616                21       29194071     29630751        BACH1
617                21       29194071     29630751        BACH1
618                21       37100814     37101343             
619                21        7669397      7681742             
620                21        7669397      7681742             
621                21        7669397      7681742             
622                21        7669397      7681742             
623                21        7669397      7681742             
624                21        7669397      7681742             
625                21        7669397      7681742             
626                21        7669397      7681742             
627                21        7669397      7681742             
628                21        7669397      7681742             
629                21        7669397      7681742             
630                21        7669397      7681742             
631                21        7669397      7681742             
632                21        7669397      7681742             
633                21        7669397      7681742             
634                21        7669397      7681742             
635                21        7669397      7681742             
636                21        7669397      7681742             
637                21        7669397      7681742             
638                21        7669397      7681742             
639                21        7669397      7681742             
640                21        8256781      8256933     RNA5-8S5
641                21        8205851      8205940             
642                21       26953961     26954043      MIR4759
643                21       46420553     46421034     RPL18AP2
644                21       41711520     41715775    LINC00479
645                21       41711520     41715775    LINC00479
646                21       41711520     41715775    LINC00479
647                21       41711520     41715775    LINC00479
648                21       41711520     41715775    LINC00479
649                21       41711520     41715775    LINC00479
650                21       41711520     41715775    LINC00479
651                21       41711520     41715775    LINC00479
652                21       41711520     41715775    LINC00479
653                21       41711520     41715775    LINC00479
654                21       41711520     41715775    LINC00479
655                21       41711520     41715775    LINC00479
656                21       41711520     41715775    LINC00479
657                21       41711520     41715775    LINC00479
658                21       41711520     41715775    LINC00479
659                21       41711520     41715775    LINC00479
660                21       41711520     41715775    LINC00479
661                21       41711520     41715775    LINC00479
662                21       41711520     41715775    LINC00479
663                21       41711520     41715775    LINC00479
664                21       44517216     44525952   TSPEAR-AS2
665                21       44517216     44525952   TSPEAR-AS2
666                21       44517216     44525952   TSPEAR-AS2
667                21       44517216     44525952   TSPEAR-AS2
668                21       44517216     44525952   TSPEAR-AS2
669                21       44517216     44525952   TSPEAR-AS2
670                21       44517216     44525952   TSPEAR-AS2
671                21       44612079     44612954    KRTAP10-8
672                21       32841861     32841995             
673                21        6859171      6859256    MIR8069-1
674                21       44768580     44802019       UBE2G2
675                21       44768580     44802019       UBE2G2
676                21       44768580     44802019       UBE2G2
677                21       44768580     44802019       UBE2G2
678                21       44768580     44802019       UBE2G2
679                21       44768580     44802019       UBE2G2
680                21       44768580     44802019       UBE2G2
681                21       44768580     44802019       UBE2G2
682                21       44768580     44802019       UBE2G2
683                21       44768580     44802019       UBE2G2
684                21       44768580     44802019       UBE2G2
685                21       44768580     44802019       UBE2G2
686                21       44768580     44802019       UBE2G2
687                21       44768580     44802019       UBE2G2
688                21       44768580     44802019       UBE2G2
689                21       44768580     44802019       UBE2G2
690                21       44768580     44802019       UBE2G2
691                21       44768580     44802019       UBE2G2
692                21       44768580     44802019       UBE2G2
693                21       44768580     44802019       UBE2G2
694                21       44768580     44802019       UBE2G2
695                21       44768580     44802019       UBE2G2
696                21       44768580     44802019       UBE2G2
697                21       44768580     44802019       UBE2G2
698                21       44768580     44802019       UBE2G2
699                21       44768580     44802019       UBE2G2
700                21       44768580     44802019       UBE2G2
701                21       44768580     44802019       UBE2G2
702                21       44768580     44802019       UBE2G2
703                21       44768580     44802019       UBE2G2
704                21       44768580     44802019       UBE2G2
705                21       44768580     44802019       UBE2G2
706                21       44768580     44802019       UBE2G2
707                21       44768580     44802019       UBE2G2
708                21       44768580     44802019       UBE2G2
709                21       44768580     44802019       UBE2G2
710                21       44768580     44802019       UBE2G2
711                21       44768580     44802019       UBE2G2
712                21       44768580     44802019       UBE2G2
713                21       44768580     44802019       UBE2G2
714                21       44768580     44802019       UBE2G2
715                21       44768580     44802019       UBE2G2
716                21       44768580     44802019       UBE2G2
717                21       44768580     44802019       UBE2G2
718                21       44768580     44802019       UBE2G2
719                21       44768580     44802019       UBE2G2
720                21       44768580     44802019       UBE2G2
721                21       44768580     44802019       UBE2G2
722                21       44768580     44802019       UBE2G2
723                21       44768580     44802019       UBE2G2
724                21       44768580     44802019       UBE2G2
725                21       44768580     44802019       UBE2G2
726                21       44768580     44802019       UBE2G2
727                21       44768580     44802019       UBE2G2
728                21       44768580     44802019       UBE2G2
729                21       44768580     44802019       UBE2G2
730                21       44768580     44802019       UBE2G2
731                21       44768580     44802019       UBE2G2
732                21       44768580     44802019       UBE2G2
733                21       44768580     44802019       UBE2G2
734                21       44557790     44558760    KRTAP10-3
735                21       44600597     44602174    KRTAP10-7
736                21       42781074     42782229             
737                21       42781074     42782229             
738                21       41167801     41282518        BACE2
739                21       41167801     41282518        BACE2
740                21       41167801     41282518        BACE2
741                21       41167801     41282518        BACE2
742                21       41167801     41282518        BACE2
743                21       41167801     41282518        BACE2
744                21       41167801     41282518        BACE2
745                21       41167801     41282518        BACE2
746                21       41167801     41282518        BACE2
747                21       41167801     41282518        BACE2
748                21       41167801     41282518        BACE2
749                21       41167801     41282518        BACE2
750                21       41167801     41282518        BACE2
751                21       41167801     41282518        BACE2
752                21       41167801     41282518        BACE2
753                21       41167801     41282518        BACE2
754                21       41167801     41282518        BACE2
755                21       41167801     41282518        BACE2
756                21       41167801     41282518        BACE2
757                21       41167801     41282518        BACE2
758                21       41167801     41282518        BACE2
759                21       41167801     41282518        BACE2
760                21       41167801     41282518        BACE2
761                21       41167801     41282518        BACE2
762                21       41167801     41282518        BACE2
763                21       41167801     41282518        BACE2
764                21       41167801     41282518        BACE2
765                21       41167801     41282518        BACE2
766                21       41167801     41282518        BACE2
767                21       41167801     41282518        BACE2
768                21       41167801     41282518        BACE2
769                21       41167801     41282518        BACE2
770                21       41167801     41282518        BACE2
771                21       41167801     41282518        BACE2
772                21       41167801     41282518        BACE2
773                21       41167801     41282518        BACE2
774                21       41167801     41282518        BACE2
775                21       41167801     41282518        BACE2
776                21       41167801     41282518        BACE2
777                21       41167801     41282518        BACE2
778                21       41167801     41282518        BACE2
779                21       41167801     41282518        BACE2
780                21       41167801     41282518        BACE2
781                21       41167801     41282518        BACE2
782                21       41167801     41282518        BACE2
783                21       41167801     41282518        BACE2
784                21       41167801     41282518        BACE2
785                21       41167801     41282518        BACE2
786                21       41167801     41282518        BACE2
787                21       41167801     41282518        BACE2
788                21       41167801     41282518        BACE2
789                21       41167801     41282518        BACE2
790                21       41167801     41282518        BACE2
791                21       41167801     41282518        BACE2
792                21       41167801     41282518        BACE2
793                21       41167801     41282518        BACE2
794                21       41167801     41282518        BACE2
795                21       41167801     41282518        BACE2
796                21       41167801     41282518        BACE2
797                21       41167801     41282518        BACE2
798                21       41167801     41282518        BACE2
799                21       41167801     41282518        BACE2
800                21       41167801     41282518        BACE2
801                21       41167801     41282518        BACE2
802                21       41167801     41282518        BACE2
803                21       41141493     41148133    LINC00323
804                21       41141493     41148133    LINC00323
805                21       41141493     41148133    LINC00323
806                21       41141493     41148133    LINC00323
807                21       41141493     41148133    LINC00323
808                21       41141493     41148133    LINC00323
809                21       41141493     41148133    LINC00323
810                21       40863994     40864473       YRDCP3
811                21       13621577     13621683    RNU6-286P
812                21        8250060      8250149             
813                21       44929653     44930112             
814                21       41739369     41767106        RIPK4
815                21       41739369     41767106        RIPK4
816                21       41739369     41767106        RIPK4
817                21       41739369     41767106        RIPK4
818                21       41739369     41767106        RIPK4
819                21       41739369     41767106        RIPK4
820                21       41739369     41767106        RIPK4
821                21       41739369     41767106        RIPK4
822                21       41739369     41767106        RIPK4
823                21       41739369     41767106        RIPK4
824                21       41739369     41767106        RIPK4
825                21       41739369     41767106        RIPK4
826                21       41739369     41767106        RIPK4
827                21       41739369     41767106        RIPK4
828                21       41739369     41767106        RIPK4
829                21       41739369     41767106        RIPK4
830                21       41739369     41767106        RIPK4
831                21       41464551     41531116      TMPRSS2
832                21       41464551     41531116      TMPRSS2
833                21       41464551     41531116      TMPRSS2
834                21       41464551     41531116      TMPRSS2
835                21       41464551     41531116      TMPRSS2
836                21       41464551     41531116      TMPRSS2
837                21       41464551     41531116      TMPRSS2
838                21       41464551     41531116      TMPRSS2
839                21       41464551     41531116      TMPRSS2
840                21       41464551     41531116      TMPRSS2
841                21       41464551     41531116      TMPRSS2
842                21       41464551     41531116      TMPRSS2
843                21       41464551     41531116      TMPRSS2
844                21       41464551     41531116      TMPRSS2
845                21       41464551     41531116      TMPRSS2
846                21       41464551     41531116      TMPRSS2
847                21       41464551     41531116      TMPRSS2
848                21       41464551     41531116      TMPRSS2
849                21       41464551     41531116      TMPRSS2
850                21       41464551     41531116      TMPRSS2
851                21       41464551     41531116      TMPRSS2
852                21       41464551     41531116      TMPRSS2
853                21       41464551     41531116      TMPRSS2
854                21       41464551     41531116      TMPRSS2
855                21       41464551     41531116      TMPRSS2
856                21       41464551     41531116      TMPRSS2
857                21       41464551     41531116      TMPRSS2
858                21       41464551     41531116      TMPRSS2
859                21       41464551     41531116      TMPRSS2
860                21       41464551     41531116      TMPRSS2
861                21       41464551     41531116      TMPRSS2
862                21       41464551     41531116      TMPRSS2
863                21       41464551     41531116      TMPRSS2
864                21       41464551     41531116      TMPRSS2
865                21       41464551     41531116      TMPRSS2
866                21       41464551     41531116      TMPRSS2
867                21       41464551     41531116      TMPRSS2
868                21       41464551     41531116      TMPRSS2
869                21       41464551     41531116      TMPRSS2
870                21       41464551     41531116      TMPRSS2
871                21       41464551     41531116      TMPRSS2
872                21       41464551     41531116      TMPRSS2
873                21       41464551     41531116      TMPRSS2
874                21       41464551     41531116      TMPRSS2
875                21       41464551     41531116      TMPRSS2
876                21       41464551     41531116      TMPRSS2
877                21       41464551     41531116      TMPRSS2
878                21       41464551     41531116      TMPRSS2
879                21       41464551     41531116      TMPRSS2
880                21       41464551     41531116      TMPRSS2
881                21       41464551     41531116      TMPRSS2
882                21       41464551     41531116      TMPRSS2
883                21       41464551     41531116      TMPRSS2
884                21       41464551     41531116      TMPRSS2
885                21       41464551     41531116      TMPRSS2
886                21       41464551     41531116      TMPRSS2
887                21       41464551     41531116      TMPRSS2
888                21       41464551     41531116      TMPRSS2
889                21       41464551     41531116      TMPRSS2
890                21       41464551     41531116      TMPRSS2
891                21       41464551     41531116      TMPRSS2
892                21       41464551     41531116      TMPRSS2
893                21       41464551     41531116      TMPRSS2
894                21       41464551     41531116      TMPRSS2
895                21       41464551     41531116      TMPRSS2
896                21       41464551     41531116      TMPRSS2
897                21       41464551     41531116      TMPRSS2
898                21       41464551     41531116      TMPRSS2
899                21       41464551     41531116      TMPRSS2
900                21       41464551     41531116      TMPRSS2
901                21       41464551     41531116      TMPRSS2
902                21       41464551     41531116      TMPRSS2
903                21       41464551     41531116      TMPRSS2
904                21       41464551     41531116      TMPRSS2
905                21       41464551     41531116      TMPRSS2
906                21       41464551     41531116      TMPRSS2
907                21       41464551     41531116      TMPRSS2
908                21       41464551     41531116      TMPRSS2
909                21       41464551     41531116      TMPRSS2
910                21       41464551     41531116      TMPRSS2
911                21       44805617     44818779        SUMO3
912                21       44805617     44818779        SUMO3
913                21       44805617     44818779        SUMO3
914                21       44805617     44818779        SUMO3
915                21       44805617     44818779        SUMO3
916                21       44805617     44818779        SUMO3
917                21       44805617     44818779        SUMO3
918                21       44805617     44818779        SUMO3
919                21       44805617     44818779        SUMO3
920                21       44805617     44818779        SUMO3
921                21       44805617     44818779        SUMO3
922                21       44805617     44818779        SUMO3
923                21       44805617     44818779        SUMO3
924                21       44805617     44818779        SUMO3
925                21       44805617     44818779        SUMO3
926                21       44805617     44818779        SUMO3
927                21       44805617     44818779        SUMO3
928                21       44805617     44818779        SUMO3
929                21       44805617     44818779        SUMO3
930                21       44805617     44818779        SUMO3
931                21       44805617     44818779        SUMO3
932                21       44805617     44818779        SUMO3
933                21       13724189     13724274    MIR8069-2
934                21       23079284     23079392      MIR6130
935                21        8205315      8205406    MIR6724-1
936                21       37045530     37045636    RNU6-696P
937                21       15614283     15614389   RNU6-1326P
938                21       44646414     44647650   KRTAP10-11
939                21       44686358     44686629             
940                21       40383083     40385358    DSCAM-AS1
941                21       40383083     40385358    DSCAM-AS1
942                21       40383083     40385358    DSCAM-AS1
943                21       40383083     40385358    DSCAM-AS1
944                21       40383083     40385358    DSCAM-AS1
945                21       40383083     40385358    DSCAM-AS1
946                21       40383083     40385358    DSCAM-AS1
947                21       40383083     40385358    DSCAM-AS1
948                21       40383083     40385358    DSCAM-AS1
949                21       40383083     40385358    DSCAM-AS1
950                21        8432530      8432621    MIR6724-4
951                21       25943044     25943145    RNU6-123P
952                21       42221173     42221286    RNA5SP492
953                21       19345148     19345312    RNU1-139P
954                21        8208473      8208652    MIR3648-1
955                21        6228966      6267317             
956                21        6228966      6267317             
957                21        6228966      6267317             
958                21        6228966      6267317             
959                21        6228966      6267317             
960                21        6228966      6267317             
961                21        6228966      6267317             
962                21        6228966      6267317             
963                21        6228966      6267317             
964                21        6228966      6267317             
965                21        6228966      6267317             
966                21        6228966      6267317             
967                21        6228966      6267317             
968                21        6228966      6267317             
969                21        6228966      6267317             
970                21        6228966      6267317             
971                21        6228966      6267317             
972                21        6228966      6267317             
973                21        6228966      6267317             
974                21        6228966      6267317             
975                21        6228966      6267317             
976                21        5707004      5709456             
977                21        5707004      5709456             
978                21       44133605     44145723     C21orf33
979                21       44133605     44145723     C21orf33
980                21       44133605     44145723     C21orf33
981                21       44133605     44145723     C21orf33
982                21       44133605     44145723     C21orf33
983                21       44133605     44145723     C21orf33
984                21       44133605     44145723     C21orf33
985                21       44133605     44145723     C21orf33
986                21       44133605     44145723     C21orf33
987                21       44133605     44145723     C21orf33
988                21       44133605     44145723     C21orf33
989                21       44133605     44145723     C21orf33
990                21       44133605     44145723     C21orf33
991                21       44133605     44145723     C21orf33
992                21       44133605     44145723     C21orf33
993                21       44133605     44145723     C21orf33
994                21       44133605     44145723     C21orf33
995                21       44133605     44145723     C21orf33
996                21       44133605     44145723     C21orf33
997                21       44133605     44145723     C21orf33
998                21       44133605     44145723     C21orf33
999                21       44133605     44145723     C21orf33
1000               21       44133605     44145723     C21orf33
1001               21       44133605     44145723     C21orf33
1002               21       44133605     44145723     C21orf33
1003               21       44133605     44145723     C21orf33
1004               21       44133605     44145723     C21orf33
1005               21       44133605     44145723     C21orf33
1006               21       44133605     44145723     C21orf33
1007               21       44133605     44145723     C21orf33
1008               21       44133605     44145723     C21orf33
1009               21       44133605     44145723     C21orf33
1010               21       44133605     44145723     C21orf33
1011               21       44133605     44145723     C21orf33
1012               21       44133605     44145723     C21orf33
1013               21       44133605     44145723     C21orf33
1014               21       44133605     44145723     C21orf33
1015               21       44133605     44145723     C21orf33
1016               21       44133605     44145723     C21orf33
1017               21       44133605     44145723     C21orf33
1018               21       44133605     44145723     C21orf33
1019               21       44133605     44145723     C21orf33
1020               21       44133605     44145723     C21orf33
1021               21       44133605     44145723     C21orf33
1022               21       44133605     44145723     C21orf33
1023               21       44133605     44145723     C21orf33
1024               21       44133605     44145723     C21orf33
1025               21       44133605     44145723     C21orf33
1026               21       44133605     44145723     C21orf33
1027               21       44133605     44145723     C21orf33
1028               21       44133605     44145723     C21orf33
1029               21       44133605     44145723     C21orf33
1030               21       44133605     44145723     C21orf33
1031               21       44133605     44145723     C21orf33
1032               21       44133605     44145723     C21orf33
1033               21       44133605     44145723     C21orf33
1034               21       44133605     44145723     C21orf33
1035               21       44133605     44145723     C21orf33
1036               21       36069941     36073166         CBR1
1037               21       36069941     36073166         CBR1
1038               21       36069941     36073166         CBR1
1039               21       36069941     36073166         CBR1
1040               21       36069941     36073166         CBR1
1041               21       36069941     36073166         CBR1
1042               21       36069941     36073166         CBR1
1043               21       36069941     36073166         CBR1
1044               21       36069941     36073166         CBR1
1045               21       36069941     36073166         CBR1
1046               21       36069941     36073166         CBR1
1047               21       36069941     36073166         CBR1
1048               21       36069941     36073166         CBR1
1049               21       36069941     36073166         CBR1
1050               21       36388878     36389112     ATP5J2LP
1051               21       36156782     36294274       DOPEY2
1052               21       36156782     36294274       DOPEY2
1053               21       36156782     36294274       DOPEY2
1054               21       36156782     36294274       DOPEY2
1055               21       36156782     36294274       DOPEY2
1056               21       36156782     36294274       DOPEY2
1057               21       36156782     36294274       DOPEY2
1058               21       36156782     36294274       DOPEY2
1059               21       36156782     36294274       DOPEY2
1060               21       36156782     36294274       DOPEY2
1061               21       36156782     36294274       DOPEY2
1062               21       36156782     36294274       DOPEY2
1063               21       36156782     36294274       DOPEY2
1064               21       36156782     36294274       DOPEY2
1065               21       36156782     36294274       DOPEY2
1066               21       36156782     36294274       DOPEY2
1067               21       36156782     36294274       DOPEY2
1068               21       36156782     36294274       DOPEY2
1069               21       36156782     36294274       DOPEY2
1070               21       36156782     36294274       DOPEY2
1071               21       36156782     36294274       DOPEY2
1072               21       36156782     36294274       DOPEY2
1073               21       36156782     36294274       DOPEY2
1074               21       36156782     36294274       DOPEY2
1075               21       36156782     36294274       DOPEY2
1076               21       36156782     36294274       DOPEY2
1077               21       36156782     36294274       DOPEY2
1078               21       36156782     36294274       DOPEY2
1079               21       36156782     36294274       DOPEY2
1080               21       36156782     36294274       DOPEY2
1081               21       36156782     36294274       DOPEY2
1082               21       36156782     36294274       DOPEY2
1083               21       36156782     36294274       DOPEY2
1084               21       36156782     36294274       DOPEY2
1085               21       36156782     36294274       DOPEY2
1086               21       36156782     36294274       DOPEY2
1087               21       36156782     36294274       DOPEY2
1088               21       36156782     36294274       DOPEY2
1089               21       36156782     36294274       DOPEY2
1090               21       36156782     36294274       DOPEY2
1091               21       36156782     36294274       DOPEY2
1092               21       36156782     36294274       DOPEY2
1093               21       36156782     36294274       DOPEY2
1094               21       36156782     36294274       DOPEY2
1095               21       36156782     36294274       DOPEY2
1096               21       36156782     36294274       DOPEY2
1097               21       36156782     36294274       DOPEY2
1098               21       36156782     36294274       DOPEY2
1099               21       36156782     36294274       DOPEY2
1100               21       36156782     36294274       DOPEY2
1101               21       36156782     36294274       DOPEY2
1102               21       34669389     34718227        CLIC6
1103               21       34669389     34718227        CLIC6
1104               21       34669389     34718227        CLIC6
1105               21       34669389     34718227        CLIC6
1106               21       34669389     34718227        CLIC6
1107               21       34669389     34718227        CLIC6
1108               21       34669389     34718227        CLIC6
1109               21       34669389     34718227        CLIC6
1110               21       34669389     34718227        CLIC6
1111               21       34669389     34718227        CLIC6
1112               21       34669389     34718227        CLIC6
1113               21       34669389     34718227        CLIC6
1114               21       34669389     34718227        CLIC6
1115               21       14371115     14383484       HSPA13
1116               21       14371115     14383484       HSPA13
1117               21       14371115     14383484       HSPA13
1118               21       14371115     14383484       HSPA13
1119               21       14371115     14383484       HSPA13
1120               21       14371115     14383484       HSPA13
1121               21       14371115     14383484       HSPA13
1122               21       14371115     14383484       HSPA13
1123               21       16630827     16640683             
1124               21       16630827     16640683             
1125               21       16630827     16640683             
1126               21       16630827     16640683             
1127               21       16643529     16645065             
1128               21       16754519     16815688             
1129               21       16754519     16815688             
1130               21       16754519     16815688             
1131               21       34364024     34371389        KCNE2
1132               21       34364024     34371389        KCNE2
1133               21       43865186     43986536       AGPAT3
1134               21       43865186     43986536       AGPAT3
1135               21       43865186     43986536       AGPAT3
1136               21       43865186     43986536       AGPAT3
1137               21       43865186     43986536       AGPAT3
1138               21       43865186     43986536       AGPAT3
1139               21       43865186     43986536       AGPAT3
1140               21       43865186     43986536       AGPAT3
1141               21       43865186     43986536       AGPAT3
1142               21       43865186     43986536       AGPAT3
1143               21       43865186     43986536       AGPAT3
1144               21       43865186     43986536       AGPAT3
1145               21       43865186     43986536       AGPAT3
1146               21       43865186     43986536       AGPAT3
1147               21       43865186     43986536       AGPAT3
1148               21       43865186     43986536       AGPAT3
1149               21       43865186     43986536       AGPAT3
1150               21       43865186     43986536       AGPAT3
1151               21       43865186     43986536       AGPAT3
1152               21       43865186     43986536       AGPAT3
1153               21       43865186     43986536       AGPAT3
1154               21       43865186     43986536       AGPAT3
1155               21       43865186     43986536       AGPAT3
1156               21       43865186     43986536       AGPAT3
1157               21       43865186     43986536       AGPAT3
1158               21       43865186     43986536       AGPAT3
1159               21       43865186     43986536       AGPAT3
1160               21       43865186     43986536       AGPAT3
1161               21       43865186     43986536       AGPAT3
1162               21       43865186     43986536       AGPAT3
1163               21       43865186     43986536       AGPAT3
1164               21       43865186     43986536       AGPAT3
1165               21       43865186     43986536       AGPAT3
1166               21       43865186     43986536       AGPAT3
1167               21       43865186     43986536       AGPAT3
1168               21       43865186     43986536       AGPAT3
1169               21       43865186     43986536       AGPAT3
1170               21       43865186     43986536       AGPAT3
1171               21       43865186     43986536       AGPAT3
1172               21       43865186     43986536       AGPAT3
1173               21       43865186     43986536       AGPAT3
1174               21       43865186     43986536       AGPAT3
1175               21       43865186     43986536       AGPAT3
1176               21       43865186     43986536       AGPAT3
1177               21       43865186     43986536       AGPAT3
1178               21       43865186     43986536       AGPAT3
1179               21       43865186     43986536       AGPAT3
1180               21       43865186     43986536       AGPAT3
1181               21       43865186     43986536       AGPAT3
1182               21       43865186     43986536       AGPAT3
1183               21       43865186     43986536       AGPAT3
1184               21       43865186     43986536       AGPAT3
1185               21       43865186     43986536       AGPAT3
1186               21       43865186     43986536       AGPAT3
1187               21       43865186     43986536       AGPAT3
1188               21       43865186     43986536       AGPAT3
1189               21       43865186     43986536       AGPAT3
1190               21       43865186     43986536       AGPAT3
1191               21       43865186     43986536       AGPAT3
1192               21       43865186     43986536       AGPAT3
1193               21       43865186     43986536       AGPAT3
1194               21       43865186     43986536       AGPAT3
1195               21       43865186     43986536       AGPAT3
1196               21       43865186     43986536       AGPAT3
1197               21       43865186     43986536       AGPAT3
1198               21       43865186     43986536       AGPAT3
1199               21       43865186     43986536       AGPAT3
1200               21       43865186     43986536       AGPAT3
1201               21       43865186     43986536       AGPAT3
1202               21       43865186     43986536       AGPAT3
1203               21       43865186     43986536       AGPAT3
1204               21       43865186     43986536       AGPAT3
1205               21       43865186     43986536       AGPAT3
1206               21       43865186     43986536       AGPAT3
1207               21       43865186     43986536       AGPAT3
1208               21       43865186     43986536       AGPAT3
1209               21       43865186     43986536       AGPAT3
1210               21       43865186     43986536       AGPAT3
1211               21       43865186     43986536       AGPAT3
1212               21       43865186     43986536       AGPAT3
1213               21       43865186     43986536       AGPAT3
1214               21       43865186     43986536       AGPAT3
1215               21       43865186     43986536       AGPAT3
1216               21       43865186     43986536       AGPAT3
1217               21       43865186     43986536       AGPAT3
1218               21       43865186     43986536       AGPAT3
1219               21       43865186     43986536       AGPAT3
1220               21       43865186     43986536       AGPAT3
1221               21       43865186     43986536       AGPAT3
1222               21       43865186     43986536       AGPAT3
1223               21       43865186     43986536       AGPAT3
1224               21       43865186     43986536       AGPAT3
1225               21       43865186     43986536       AGPAT3
1226               21       43865186     43986536       AGPAT3
1227               21       43865186     43986536       AGPAT3
1228               21       43865186     43986536       AGPAT3
1229               21       43865186     43986536       AGPAT3
1230               21       43865186     43986536       AGPAT3
1231               21       43865186     43986536       AGPAT3
1232               21       43865186     43986536       AGPAT3
1233               21       43865186     43986536       AGPAT3
1234               21       43865186     43986536       AGPAT3
1235               21       43865186     43986536       AGPAT3
1236               21       43865186     43986536       AGPAT3
1237               21       43865186     43986536       AGPAT3
1238               21       43865186     43986536       AGPAT3
1239               21       43865186     43986536       AGPAT3
1240               21       43865186     43986536       AGPAT3
1241               21       43865186     43986536       AGPAT3
1242               21       43865186     43986536       AGPAT3
1243               21       43865186     43986536       AGPAT3
1244               21       43865186     43986536       AGPAT3
1245               21       43865186     43986536       AGPAT3
1246               21       34370802     34375348             
1247               21       34370802     34375348             
1248               21       45974489     45974953             
1249               21       34400317     34401072    C21orf140
1250               21       34375480     34407866      SMIM11A
1251               21       34375480     34407866      SMIM11A
1252               21       34375480     34407866      SMIM11A
1253               21       34375480     34407866      SMIM11A
1254               21       34375480     34407866      SMIM11A
1255               21       34375480     34407866      SMIM11A
1256               21       34375480     34407866      SMIM11A
1257               21       34375480     34407866      SMIM11A
1258               21       34375480     34407866      SMIM11A
1259               21       34375480     34407866      SMIM11A
1260               21       34375480     34407866      SMIM11A
1261               21       34375480     34407866      SMIM11A
1262               21       34375480     34407866      SMIM11A
1263               21       34375480     34407866      SMIM11A
1264               21       34375480     34407866      SMIM11A
1265               21       34375480     34407866      SMIM11A
1266               21       34375480     34407866      SMIM11A
1267               21       34375480     34407866      SMIM11A
1268               21       34375480     34407866      SMIM11A
1269               21       34375480     34407866      SMIM11A
1270               21       34375480     34407866      SMIM11A
1271               21       34375480     34407866      SMIM11A
1272               21       34375480     34407866      SMIM11A
1273               21       34375480     34407866      SMIM11A
1274               21       34375480     34407866      SMIM11A
1275               21       34375480     34407866      SMIM11A
1276               21       34375480     34407866      SMIM11A
1277               21       34375480     34407866      SMIM11A
1278               21       34375480     34407866      SMIM11A
1279               21       34375480     34407866      SMIM11A
1280               21       42403447     42447681      UBASH3A
1281               21       42403447     42447681      UBASH3A
1282               21       42403447     42447681      UBASH3A
1283               21       42403447     42447681      UBASH3A
1284               21       42403447     42447681      UBASH3A
1285               21       42403447     42447681      UBASH3A
1286               21       42403447     42447681      UBASH3A
1287               21       42403447     42447681      UBASH3A
1288               21       42403447     42447681      UBASH3A
1289               21       42403447     42447681      UBASH3A
1290               21       42403447     42447681      UBASH3A
1291               21       42403447     42447681      UBASH3A
1292               21       42403447     42447681      UBASH3A
1293               21       42403447     42447681      UBASH3A
1294               21       42403447     42447681      UBASH3A
1295               21       42403447     42447681      UBASH3A
1296               21       42403447     42447681      UBASH3A
1297               21       42403447     42447681      UBASH3A
1298               21       42403447     42447681      UBASH3A
1299               21       42403447     42447681      UBASH3A
1300               21       42403447     42447681      UBASH3A
1301               21       42403447     42447681      UBASH3A
1302               21       42403447     42447681      UBASH3A
1303               21       42403447     42447681      UBASH3A
1304               21       42403447     42447681      UBASH3A
1305               21       42403447     42447681      UBASH3A
1306               21       42403447     42447681      UBASH3A
1307               21       42403447     42447681      UBASH3A
1308               21       42403447     42447681      UBASH3A
1309               21       42403447     42447681      UBASH3A
1310               21       42403447     42447681      UBASH3A
1311               21       42403447     42447681      UBASH3A
1312               21       42403447     42447681      UBASH3A
1313               21       42403447     42447681      UBASH3A
1314               21       42403447     42447681      UBASH3A
1315               21       42403447     42447681      UBASH3A
1316               21       42403447     42447681      UBASH3A
1317               21       42403447     42447681      UBASH3A
1318               21       42403447     42447681      UBASH3A
1319               21       42403447     42447681      UBASH3A
1320               21       42403447     42447681      UBASH3A
1321               21       42403447     42447681      UBASH3A
1322               21       42403447     42447681      UBASH3A
1323               21       42403447     42447681      UBASH3A
1324               21       42403447     42447681      UBASH3A
1325               21       42403447     42447681      UBASH3A
1326               21       42403447     42447681      UBASH3A
1327               21       42403447     42447681      UBASH3A
1328               21       42403447     42447681      UBASH3A
1329               21       42403447     42447681      UBASH3A
1330               21       42403447     42447681      UBASH3A
1331               21       42403447     42447681      UBASH3A
1332               21       42403447     42447681      UBASH3A
1333               21       42403447     42447681      UBASH3A
1334               21       42403447     42447681      UBASH3A
1335               21       42403447     42447681      UBASH3A
1336               21       42403447     42447681      UBASH3A
1337               21       42403447     42447681      UBASH3A
1338               21       42403447     42447681      UBASH3A
1339               21       42403447     42447681      UBASH3A
1340               21       42403447     42447681      UBASH3A
1341               21       42403447     42447681      UBASH3A
1342               21       42403447     42447681      UBASH3A
1343               21       42403447     42447681      UBASH3A
1344               21       42403447     42447681      UBASH3A
1345               21       42403447     42447681      UBASH3A
1346               21       42403447     42447681      UBASH3A
1347               21       42403447     42447681      UBASH3A
1348               21       42403447     42447681      UBASH3A
1349               21       42403447     42447681      UBASH3A
1350               21       42403447     42447681      UBASH3A
1351               21       42403447     42447681      UBASH3A
1352               21       42403447     42447681      UBASH3A
1353               21       42403447     42447681      UBASH3A
1354               21       42403447     42447681      UBASH3A
1355               21       42403447     42447681      UBASH3A
1356               21       42403447     42447681      UBASH3A
1357               21       42403447     42447681      UBASH3A
1358               21       42403447     42447681      UBASH3A
1359               21       42403447     42447681      UBASH3A
1360               21       42403447     42447681      UBASH3A
1361               21       42403447     42447681      UBASH3A
1362               21       42403447     42447681      UBASH3A
1363               21       42403447     42447681      UBASH3A
1364               21       42403447     42447681      UBASH3A
1365               21       42403447     42447681      UBASH3A
1366               21       34412200     34412587             
1367               21       34418715     34423966             
1368               21       34418715     34423966             
1369               21       34425508     34426017             
1370               21       14216130     14228372        RBM11
1371               21       14216130     14228372        RBM11
1372               21       14216130     14228372        RBM11
1373               21       14216130     14228372        RBM11
1374               21       14216130     14228372        RBM11
1375               21       14216130     14228372        RBM11
1376               21       14216130     14228372        RBM11
1377               21       14216130     14228372        RBM11
1378               21       14216130     14228372        RBM11
1379               21       14216130     14228372        RBM11
1380               21       14216130     14228372        RBM11
1381               21       14216130     14228372        RBM11
1382               21       14216130     14228372        RBM11
1383               21       14216130     14228372        RBM11
1384               21       14216130     14228372        RBM11
1385               21       14216130     14228372        RBM11
1386               21       14216130     14228372        RBM11
1387               21       14216130     14228372        RBM11
1388               21       14216130     14228372        RBM11
1389               21       14216130     14228372        RBM11
1390               21       14216130     14228372        RBM11
1391               21       14216130     14228372        RBM11
1392               21       14216130     14228372        RBM11
1393               21       14216130     14228372        RBM11
1394               21       16862875     16873691             
1395               21       16862875     16873691             
1396               21       16862875     16873691             
1397               21       16862875     16873691             
1398               21       45981737     46005050       COL6A1
1399               21       45981737     46005050       COL6A1
1400               21       45981737     46005050       COL6A1
1401               21       45981737     46005050       COL6A1
1402               21       45981737     46005050       COL6A1
1403               21       45981737     46005050       COL6A1
1404               21       45981737     46005050       COL6A1
1405               21       45981737     46005050       COL6A1
1406               21       45981737     46005050       COL6A1
1407               21       45981737     46005050       COL6A1
1408               21       45981737     46005050       COL6A1
1409               21       45981737     46005050       COL6A1
1410               21       45981737     46005050       COL6A1
1411               21       45981737     46005050       COL6A1
1412               21       45981737     46005050       COL6A1
1413               21       45981737     46005050       COL6A1
1414               21       45981737     46005050       COL6A1
1415               21       45981737     46005050       COL6A1
1416               21       45981737     46005050       COL6A1
1417               21       45981737     46005050       COL6A1
1418               21       45981737     46005050       COL6A1
1419               21       45981737     46005050       COL6A1
1420               21       45981737     46005050       COL6A1
1421               21       45981737     46005050       COL6A1
1422               21       45981737     46005050       COL6A1
1423               21       45981737     46005050       COL6A1
1424               21       45981737     46005050       COL6A1
1425               21       45981737     46005050       COL6A1
1426               21       45981737     46005050       COL6A1
1427               21       45981737     46005050       COL6A1
1428               21       45981737     46005050       COL6A1
1429               21       45981737     46005050       COL6A1
1430               21       45981737     46005050       COL6A1
1431               21       45981737     46005050       COL6A1
1432               21       45981737     46005050       COL6A1
1433               21       45981737     46005050       COL6A1
1434               21       45981737     46005050       COL6A1
1435               21       45981737     46005050       COL6A1
1436               21       45981737     46005050       COL6A1
1437               21       45981737     46005050       COL6A1
1438               21       45981737     46005050       COL6A1
1439               21       45981737     46005050       COL6A1
1440               21       45981737     46005050       COL6A1
1441               21       45981737     46005050       COL6A1
1442               21       45981737     46005050       COL6A1
1443               21       45981737     46005050       COL6A1
1444               21       45981737     46005050       COL6A1
1445               21       45981737     46005050       COL6A1
1446               21       45981737     46005050       COL6A1
1447               21       45981737     46005050       COL6A1
1448               21       45981737     46005050       COL6A1
1449               21       45981737     46005050       COL6A1
1450               21       45981737     46005050       COL6A1
1451               21       45981737     46005050       COL6A1
1452               21       45981737     46005050       COL6A1
1453               21       45981737     46005050       COL6A1
1454               21       45981737     46005050       COL6A1
1455               21       45981737     46005050       COL6A1
1456               21       45981737     46005050       COL6A1
1457               21       45981737     46005050       COL6A1
1458               21       45981737     46005050       COL6A1
1459               21       45981737     46005050       COL6A1
1460               21       45981737     46005050       COL6A1
1461               21       45981737     46005050       COL6A1
1462               21       45981737     46005050       COL6A1
1463               21       45981737     46005050       COL6A1
1464               21       45981737     46005050       COL6A1
1465               21       45981737     46005050       COL6A1
1466               21       45981737     46005050       COL6A1
1467               21       45981737     46005050       COL6A1
1468               21       45981737     46005050       COL6A1
1469               21       45981737     46005050       COL6A1
1470               21       45981737     46005050       COL6A1
1471               21       45981737     46005050       COL6A1
1472               21       45981737     46005050       COL6A1
1473               21       45981737     46005050       COL6A1
1474               21       45981737     46005050       COL6A1
1475               21       45981737     46005050       COL6A1
1476               21       45981737     46005050       COL6A1
1477               21       45981737     46005050       COL6A1
1478               21       45981737     46005050       COL6A1
1479               21       45981737     46005050       COL6A1
1480               21       45981737     46005050       COL6A1
1481               21       45981737     46005050       COL6A1
1482               21       45981737     46005050       COL6A1
1483               21       45981737     46005050       COL6A1
1484               21       45981737     46005050       COL6A1
1485               21       45981737     46005050       COL6A1
1486               21       45981737     46005050       COL6A1
1487               21       17210469     17211347       NEK4P1
1488               21       17296219     17296596             
1489               21       17438890     17449185    LINC01549
1490               21       17438890     17449185    LINC01549
1491               21       17438890     17449185    LINC01549
1492               21       17438890     17449185    LINC01549
1493               21       17438890     17449185    LINC01549
1494               21       17438890     17449185    LINC01549
1495               21       17438890     17449185    LINC01549
1496               21       17500679     17500824     RPL39P40
1497               21       34446688     34512275        KCNE1
1498               21       34446688     34512275        KCNE1
1499               21       34446688     34512275        KCNE1
1500               21       34446688     34512275        KCNE1
1501               21       34446688     34512275        KCNE1
1502               21       34446688     34512275        KCNE1
1503               21       34446688     34512275        KCNE1
1504               21       34446688     34512275        KCNE1
1505               21       34446688     34512275        KCNE1
1506               21       34446688     34512275        KCNE1
1507               21       34446688     34512275        KCNE1
1508               21       34446688     34512275        KCNE1
1509               21       34446688     34512275        KCNE1
1510               21       34446688     34512275        KCNE1
1511               21       34446688     34512275        KCNE1
1512               21       34446688     34512275        KCNE1
1513               21       34446688     34512275        KCNE1
1514               21       34446688     34512275        KCNE1
1515               21       34446688     34512275        KCNE1
1516               21       34446688     34512275        KCNE1
1517               21       34446688     34512275        KCNE1
1518               21       34446688     34512275        KCNE1
1519               21       34446688     34512275        KCNE1
1520               21       34446688     34512275        KCNE1
1521               21       34446688     34512275        KCNE1
1522               21       17512382     17593579        CXADR
1523               21       17512382     17593579        CXADR
1524               21       17512382     17593579        CXADR
1525               21       17512382     17593579        CXADR
1526               21       17512382     17593579        CXADR
1527               21       17512382     17593579        CXADR
1528               21       17512382     17593579        CXADR
1529               21       17512382     17593579        CXADR
1530               21       17512382     17593579        CXADR
1531               21       17512382     17593579        CXADR
1532               21       17512382     17593579        CXADR
1533               21       17512382     17593579        CXADR
1534               21       17512382     17593579        CXADR
1535               21       17512382     17593579        CXADR
1536               21       17512382     17593579        CXADR
1537               21       17512382     17593579        CXADR
1538               21       17512382     17593579        CXADR
1539               21       17512382     17593579        CXADR
1540               21       17512382     17593579        CXADR
1541               21       17512382     17593579        CXADR
1542               21       17512382     17593579        CXADR
1543               21       17512382     17593579        CXADR
1544               21       17512382     17593579        CXADR
1545               21       17512382     17593579        CXADR
1546               21       17512382     17593579        CXADR
1547               21       17512382     17593579        CXADR
1548               21       17512382     17593579        CXADR
1549               21       17518526     17518993     BTF3L4P1
1550               21       46037052     46039807             
1551               21       46037052     46039807             
1552               21       46052596     46053105             
1553               21       46052596     46053105             
1554               21       46056516     46057567             
1555               21       46056516     46057567             
1556               21       14236206     14362754       ABCC13
1557               21       14236206     14362754       ABCC13
1558               21       14236206     14362754       ABCC13
1559               21       14236206     14362754       ABCC13
1560               21       14236206     14362754       ABCC13
1561               21       14236206     14362754       ABCC13
1562               21       14236206     14362754       ABCC13
1563               21       14236206     14362754       ABCC13
1564               21       14236206     14362754       ABCC13
1565               21       14236206     14362754       ABCC13
1566               21       14236206     14362754       ABCC13
1567               21       14236206     14362754       ABCC13
1568               21       14236206     14362754       ABCC13
1569               21       14236206     14362754       ABCC13
1570               21       14236206     14362754       ABCC13
1571               21       14236206     14362754       ABCC13
1572               21       14236206     14362754       ABCC13
1573               21       14236206     14362754       ABCC13
1574               21       14236206     14362754       ABCC13
1575               21       14236206     14362754       ABCC13
1576               21       14236206     14362754       ABCC13
1577               21       14236206     14362754       ABCC13
1578               21       14236206     14362754       ABCC13
1579               21       14236206     14362754       ABCC13
1580               21       14236206     14362754       ABCC13
1581               21       14236206     14362754       ABCC13
1582               21       14236206     14362754       ABCC13
1583               21       14236206     14362754       ABCC13
1584               21       14236206     14362754       ABCC13
1585               21       14236206     14362754       ABCC13
1586               21       14236206     14362754       ABCC13
1587               21       14236206     14362754       ABCC13
1588               21       14236206     14362754       ABCC13
1589               21       14236206     14362754       ABCC13
1590               21       14236206     14362754       ABCC13
1591               21       14236206     14362754       ABCC13
1592               21       14236206     14362754       ABCC13
1593               21       14236206     14362754       ABCC13
1594               21       14236206     14362754       ABCC13
1595               21       14236206     14362754       ABCC13
1596               21       14236206     14362754       ABCC13
1597               21       14236206     14362754       ABCC13
1598               21       14236206     14362754       ABCC13
1599               21       14236206     14362754       ABCC13
1600               21       14236206     14362754       ABCC13
1601               21       14236206     14362754       ABCC13
1602               21       14236206     14362754       ABCC13
1603               21       14236206     14362754       ABCC13
1604               21       14236206     14362754       ABCC13
1605               21       14236206     14362754       ABCC13
1606               21       14236206     14362754       ABCC13
1607               21       14236206     14362754       ABCC13
1608               21       14236206     14362754       ABCC13
1609               21       14236206     14362754       ABCC13
1610               21       14236206     14362754       ABCC13
1611               21       14236206     14362754       ABCC13
1612               21       14236206     14362754       ABCC13
1613               21       14236206     14362754       ABCC13
1614               21       14236206     14362754       ABCC13
1615               21       14236206     14362754       ABCC13
1616               21       14236206     14362754       ABCC13
1617               21       14236206     14362754       ABCC13
1618               21       14236206     14362754       ABCC13
1619               21       34513142     34615142        RCAN1
1620               21       34513142     34615142        RCAN1
1621               21       34513142     34615142        RCAN1
1622               21       34513142     34615142        RCAN1
1623               21       34513142     34615142        RCAN1
1624               21       34513142     34615142        RCAN1
1625               21       34513142     34615142        RCAN1
1626               21       34513142     34615142        RCAN1
1627               21       34513142     34615142        RCAN1
1628               21       34513142     34615142        RCAN1
1629               21       34513142     34615142        RCAN1
1630               21       34513142     34615142        RCAN1
1631               21       34513142     34615142        RCAN1
1632               21       34513142     34615142        RCAN1
1633               21       34513142     34615142        RCAN1
1634               21       34513142     34615142        RCAN1
1635               21       34513142     34615142        RCAN1
1636               21       34513142     34615142        RCAN1
1637               21       34513142     34615142        RCAN1
1638               21       34513142     34615142        RCAN1
1639               21       34513142     34615142        RCAN1
1640               21       34513142     34615142        RCAN1
1641               21       34513142     34615142        RCAN1
1642               21       34513142     34615142        RCAN1
1643               21       34513142     34615142        RCAN1
1644               21       34513142     34615142        RCAN1
1645               21       34513142     34615142        RCAN1
1646               21       34513142     34615142        RCAN1
1647               21       34513142     34615142        RCAN1
1648               21       34513142     34615142        RCAN1
1649               21       34513142     34615142        RCAN1
1650               21       34513142     34615142        RCAN1
1651               21       34513142     34615142        RCAN1
1652               21       34513142     34615142        RCAN1
1653               21       34513142     34615142        RCAN1
1654               21       34513142     34615142        RCAN1
1655               21       34513142     34615142        RCAN1
1656               21       34513142     34615142        RCAN1
1657               21       34513142     34615142        RCAN1
1658               21       34513142     34615142        RCAN1
1659               21       34513142     34615142        RCAN1
1660               21       34513142     34615142        RCAN1
1661               21       34513142     34615142        RCAN1
1662               21       34513142     34615142        RCAN1
1663               21       34513142     34615142        RCAN1
1664               21       34513142     34615142        RCAN1
1665               21       34513142     34615142        RCAN1
1666               21       34513142     34615142        RCAN1
1667               21       34513142     34615142        RCAN1
1668               21       46072085     46072248      PSMA6P3
1669               21       17593653     17612947         BTG3
1670               21       17593653     17612947         BTG3
1671               21       17593653     17612947         BTG3
1672               21       17593653     17612947         BTG3
1673               21       17593653     17612947         BTG3
1674               21       17593653     17612947         BTG3
1675               21       17593653     17612947         BTG3
1676               21       17593653     17612947         BTG3
1677               21       17593653     17612947         BTG3
1678               21       17593653     17612947         BTG3
1679               21       17593653     17612947         BTG3
1680               21       17593653     17612947         BTG3
1681               21       17593653     17612947         BTG3
1682               21       17593653     17612947         BTG3
1683               21       17593653     17612947         BTG3
1684               21       17593653     17612947         BTG3
1685               21       17593653     17612947         BTG3
1686               21       17593653     17612947         BTG3
1687               21       17593653     17612947         BTG3
1688               21       17593653     17612947         BTG3
1689               21       17611744     17633199             
1690               21       17611744     17633199             
1691               21       17611744     17633199             
1692               21       17611744     17633199             
1693               21       32728115     32743122   PAXBP1-AS1
1694               21       32728115     32743122   PAXBP1-AS1
1695               21       32728115     32743122   PAXBP1-AS1
1696               21       32728115     32743122   PAXBP1-AS1
1697               21       32728115     32743122   PAXBP1-AS1
1698               21       32728115     32743122   PAXBP1-AS1
1699               21       32728115     32743122   PAXBP1-AS1
1700               21       32728115     32743122   PAXBP1-AS1
1701               21       32728115     32743122   PAXBP1-AS1
1702               21       32733899     32771858       PAXBP1
1703               21       32733899     32771858       PAXBP1
1704               21       32733899     32771858       PAXBP1
1705               21       32733899     32771858       PAXBP1
1706               21       32733899     32771858       PAXBP1
1707               21       32733899     32771858       PAXBP1
1708               21       32733899     32771858       PAXBP1
1709               21       32733899     32771858       PAXBP1
1710               21       32733899     32771858       PAXBP1
1711               21       32733899     32771858       PAXBP1
1712               21       32733899     32771858       PAXBP1
1713               21       32733899     32771858       PAXBP1
1714               21       32733899     32771858       PAXBP1
1715               21       32733899     32771858       PAXBP1
1716               21       32733899     32771858       PAXBP1
1717               21       32733899     32771858       PAXBP1
1718               21       32733899     32771858       PAXBP1
1719               21       32733899     32771858       PAXBP1
1720               21       32733899     32771858       PAXBP1
1721               21       32733899     32771858       PAXBP1
1722               21       32733899     32771858       PAXBP1
1723               21       32733899     32771858       PAXBP1
1724               21       32733899     32771858       PAXBP1
1725               21       32733899     32771858       PAXBP1
1726               21       32733899     32771858       PAXBP1
1727               21       32733899     32771858       PAXBP1
1728               21       32733899     32771858       PAXBP1
1729               21       32733899     32771858       PAXBP1
1730               21       32733899     32771858       PAXBP1
1731               21       32733899     32771858       PAXBP1
1732               21       32733899     32771858       PAXBP1
1733               21       32733899     32771858       PAXBP1
1734               21       32733899     32771858       PAXBP1
1735               21       32733899     32771858       PAXBP1
1736               21       32733899     32771858       PAXBP1
1737               21       32733899     32771858       PAXBP1
1738               21       32733899     32771858       PAXBP1
1739               21       32733899     32771858       PAXBP1
1740               21       32733899     32771858       PAXBP1
1741               21       32733899     32771858       PAXBP1
1742               21       32733899     32771858       PAXBP1
1743               21       32733899     32771858       PAXBP1
1744               21       32733899     32771858       PAXBP1
1745               21       32733899     32771858       PAXBP1
1746               21       32733899     32771858       PAXBP1
1747               21       32733899     32771858       PAXBP1
1748               21       32733899     32771858       PAXBP1
1749               21       32733899     32771858       PAXBP1
1750               21       32733899     32771858       PAXBP1
1751               21       32733899     32771858       PAXBP1
1752               21       32733899     32771858       PAXBP1
1753               21       32733899     32771858       PAXBP1
1754               21       32733899     32771858       PAXBP1
1755               21       32733899     32771858       PAXBP1
1756               21       32733899     32771858       PAXBP1
1757               21       32733899     32771858       PAXBP1
1758               21       32733899     32771858       PAXBP1
1759               21       32733899     32771858       PAXBP1
1760               21       32733899     32771858       PAXBP1
1761               21       32733899     32771858       PAXBP1
1762               21       32733899     32771858       PAXBP1
1763               21       32733899     32771858       PAXBP1
1764               21       32733899     32771858       PAXBP1
1765               21       32733899     32771858       PAXBP1
1766               21       32733899     32771858       PAXBP1
1767               21       32733899     32771858       PAXBP1
1768               21       32733899     32771858       PAXBP1
1769               21       32733899     32771858       PAXBP1
1770               21       32733899     32771858       PAXBP1
1771               21       32733899     32771858       PAXBP1
1772               21       32733899     32771858       PAXBP1
1773               21       32733899     32771858       PAXBP1
1774               21       32733899     32771858       PAXBP1
1775               21       32733899     32771858       PAXBP1
1776               21       32733899     32771858       PAXBP1
1777               21       32733899     32771858       PAXBP1
1778               21       32733899     32771858       PAXBP1
1779               21       32733899     32771858       PAXBP1
1780               21       32733899     32771858       PAXBP1
1781               21       32733899     32771858       PAXBP1
1782               21       32733899     32771858       PAXBP1
1783               21       32733899     32771858       PAXBP1
1784               21       32733899     32771858       PAXBP1
1785               21       32733899     32771858       PAXBP1
1786               21       32733899     32771858       PAXBP1
1787               21       32733899     32771858       PAXBP1
1788               21       32733899     32771858       PAXBP1
1789               21       32733899     32771858       PAXBP1
1790               21       32733899     32771858       PAXBP1
1791               21       32733899     32771858       PAXBP1
1792               21       32733899     32771858       PAXBP1
1793               21       32733899     32771858       PAXBP1
1794               21       32733899     32771858       PAXBP1
1795               21       32733899     32771858       PAXBP1
1796               21       16718998     16719157     RNU1-98P
1797               21        8987370      8987430    MIR3687-2
1798               21        7826098      7826225             
1799               21       36851911     36852028    RNA5SP491
1800               21        8249505      8249596    MIR6724-2
1801               21       16035413     16035509    RNU6-426P
1802               21       41304212     41357431        FAM3B
1803               21       41304212     41357431        FAM3B
1804               21       41304212     41357431        FAM3B
1805               21       41304212     41357431        FAM3B
1806               21       41304212     41357431        FAM3B
1807               21       41304212     41357431        FAM3B
1808               21       41304212     41357431        FAM3B
1809               21       41304212     41357431        FAM3B
1810               21       41304212     41357431        FAM3B
1811               21       41304212     41357431        FAM3B
1812               21       41304212     41357431        FAM3B
1813               21       41304212     41357431        FAM3B
1814               21       41304212     41357431        FAM3B
1815               21       41304212     41357431        FAM3B
1816               21       41304212     41357431        FAM3B
1817               21       41304212     41357431        FAM3B
1818               21       41304212     41357431        FAM3B
1819               21       41304212     41357431        FAM3B
1820               21       41304212     41357431        FAM3B
1821               21       41304212     41357431        FAM3B
1822               21       41304212     41357431        FAM3B
1823               21       41304212     41357431        FAM3B
1824               21       41304212     41357431        FAM3B
1825               21       41304212     41357431        FAM3B
1826               21       41304212     41357431        FAM3B
1827               21       41304212     41357431        FAM3B
1828               21       41304212     41357431        FAM3B
1829               21       41304212     41357431        FAM3B
1830               21       41304212     41357431        FAM3B
1831               21       41304212     41357431        FAM3B
1832               21       41304212     41357431        FAM3B
1833               21       41304212     41357431        FAM3B
1834               21       41304212     41357431        FAM3B
1835               21       41304212     41357431        FAM3B
1836               21       41304212     41357431        FAM3B
1837               21       41304212     41357431        FAM3B
1838               21       41304212     41357431        FAM3B
1839               21       41304212     41357431        FAM3B
1840               21       41304212     41357431        FAM3B
1841               21       41304212     41357431        FAM3B
1842               21       41304212     41357431        FAM3B
1843               21       41304212     41357431        FAM3B
1844               21       41304212     41357431        FAM3B
1845               21       41304212     41357431        FAM3B
1846               21       41304212     41357431        FAM3B
1847               21       41304212     41357431        FAM3B
1848               21       42964639     42965363             
1849               21       42964639     42965363             
1850               21       42843094     42879568         WDR4
1851               21       42843094     42879568         WDR4
1852               21       42843094     42879568         WDR4
1853               21       42843094     42879568         WDR4
1854               21       42843094     42879568         WDR4
1855               21       42843094     42879568         WDR4
1856               21       42843094     42879568         WDR4
1857               21       42843094     42879568         WDR4
1858               21       42843094     42879568         WDR4
1859               21       42843094     42879568         WDR4
1860               21       42843094     42879568         WDR4
1861               21       42843094     42879568         WDR4
1862               21       42843094     42879568         WDR4
1863               21       42843094     42879568         WDR4
1864               21       42843094     42879568         WDR4
1865               21       42843094     42879568         WDR4
1866               21       42843094     42879568         WDR4
1867               21       42843094     42879568         WDR4
1868               21       42843094     42879568         WDR4
1869               21       42843094     42879568         WDR4
1870               21       42843094     42879568         WDR4
1871               21       42843094     42879568         WDR4
1872               21       42843094     42879568         WDR4
1873               21       42843094     42879568         WDR4
1874               21       42843094     42879568         WDR4
1875               21       42843094     42879568         WDR4
1876               21       42843094     42879568         WDR4
1877               21       42843094     42879568         WDR4
1878               21       42843094     42879568         WDR4
1879               21       42843094     42879568         WDR4
1880               21       42843094     42879568         WDR4
1881               21       42843094     42879568         WDR4
1882               21       42843094     42879568         WDR4
1883               21       42843094     42879568         WDR4
1884               21       42843094     42879568         WDR4
1885               21       42843094     42879568         WDR4
1886               21       42843094     42879568         WDR4
1887               21       42843094     42879568         WDR4
1888               21       42843094     42879568         WDR4
1889               21       42843094     42879568         WDR4
1890               21       42843094     42879568         WDR4
1891               21       42843094     42879568         WDR4
1892               21       42843094     42879568         WDR4
1893               21       42843094     42879568         WDR4
1894               21       42843094     42879568         WDR4
1895               21       42843094     42879568         WDR4
1896               21       42843094     42879568         WDR4
1897               21       42843094     42879568         WDR4
1898               21       42843094     42879568         WDR4
1899               21       42843094     42879568         WDR4
1900               21       42843094     42879568         WDR4
1901               21       42843094     42879568         WDR4
1902               21       42843094     42879568         WDR4
1903               21       42843094     42879568         WDR4
1904               21       42843094     42879568         WDR4
1905               21       42843094     42879568         WDR4
1906               21       42843094     42879568         WDR4
1907               21       42843094     42879568         WDR4
1908               21       42843094     42879568         WDR4
1909               21       42843094     42879568         WDR4
1910               21       42843094     42879568         WDR4
1911               21       42843094     42879568         WDR4
1912               21       42843094     42879568         WDR4
1913               21       42843094     42879568         WDR4
1914               21       42843094     42879568         WDR4
1915               21       37187666     37193926     TTC3-AS1
1916               21       37187666     37193926     TTC3-AS1
1917               21       44250813     44251520             
1918               21       44250813     44251520             
1919               21        7626344      7627528             
1920               21       44241847     44242081             
1921               21        6560714      6564489             
1922               21        6560714      6564489             
1923               21        6560714      6564489             
1924               21        6560714      6564489             
1925               21        6560714      6564489             
1926               21        6560714      6564489             
1927               21        6560714      6564489             
1928               21        6560714      6564489             
1929               21        6560714      6564489             
1930               21        6560714      6564489             
1931               21        6560714      6564489             
1932               21        6520344      6520670             
1933               21       29024255     29024890             
1934               21       41441056     41445708             
1935               21       41441056     41445708             
1936               21       41441056     41445708             
1937               21       41420304     41459214          MX1
1938               21       41420304     41459214          MX1
1939               21       41420304     41459214          MX1
1940               21       41420304     41459214          MX1
1941               21       41420304     41459214          MX1
1942               21       41420304     41459214          MX1
1943               21       41420304     41459214          MX1
1944               21       41420304     41459214          MX1
1945               21       41420304     41459214          MX1
1946               21       41420304     41459214          MX1
1947               21       41420304     41459214          MX1
1948               21       41420304     41459214          MX1
1949               21       41420304     41459214          MX1
1950               21       41420304     41459214          MX1
1951               21       41420304     41459214          MX1
1952               21       41420304     41459214          MX1
1953               21       41420304     41459214          MX1
1954               21       41420304     41459214          MX1
1955               21       41420304     41459214          MX1
1956               21       41420304     41459214          MX1
1957               21       41420304     41459214          MX1
1958               21       41420304     41459214          MX1
1959               21       41420304     41459214          MX1
1960               21       41420304     41459214          MX1
1961               21       41420304     41459214          MX1
1962               21       41420304     41459214          MX1
1963               21       41420304     41459214          MX1
1964               21       41420304     41459214          MX1
1965               21       41420304     41459214          MX1
1966               21       41420304     41459214          MX1
1967               21       41420304     41459214          MX1
1968               21       41420304     41459214          MX1
1969               21       41420304     41459214          MX1
1970               21       41420304     41459214          MX1
1971               21       41420304     41459214          MX1
1972               21       41420304     41459214          MX1
1973               21       41420304     41459214          MX1
1974               21       41420304     41459214          MX1
1975               21       41420304     41459214          MX1
1976               21       41420304     41459214          MX1
1977               21       41420304     41459214          MX1
1978               21       41420304     41459214          MX1
1979               21       41420304     41459214          MX1
1980               21       41420304     41459214          MX1
1981               21       41420304     41459214          MX1
1982               21       41420304     41459214          MX1
1983               21       41420304     41459214          MX1
1984               21       41420304     41459214          MX1
1985               21       41420304     41459214          MX1
1986               21       41420304     41459214          MX1
1987               21       41420304     41459214          MX1
1988               21       41420304     41459214          MX1
1989               21       41420304     41459214          MX1
1990               21       41420304     41459214          MX1
1991               21       41420304     41459214          MX1
1992               21       41420304     41459214          MX1
1993               21       41420304     41459214          MX1
1994               21       41420304     41459214          MX1
1995               21       41420304     41459214          MX1
1996               21       41420304     41459214          MX1
1997               21       41420304     41459214          MX1
1998               21       41420304     41459214          MX1
1999               21       41420304     41459214          MX1
2000               21       41420304     41459214          MX1
2001               21       41420304     41459214          MX1
2002               21       41420304     41459214          MX1
2003               21       41420304     41459214          MX1
2004               21       41420304     41459214          MX1
2005               21       41420304     41459214          MX1
2006               21       41420304     41459214          MX1
2007               21       41420304     41459214          MX1
2008               21       41420304     41459214          MX1
2009               21       41420304     41459214          MX1
2010               21       41420304     41459214          MX1
2011               21       41420304     41459214          MX1
2012               21       41420304     41459214          MX1
2013               21       41420304     41459214          MX1
2014               21       41420304     41459214          MX1
2015               21       41420304     41459214          MX1
2016               21       41420304     41459214          MX1
2017               21       41420304     41459214          MX1
2018               21       41420304     41459214          MX1
2019               21       41420304     41459214          MX1
2020               21       41420304     41459214          MX1
2021               21       41420304     41459214          MX1
2022               21       41420304     41459214          MX1
2023               21       41420304     41459214          MX1
2024               21       41420304     41459214          MX1
2025               21       41420304     41459214          MX1
2026               21       41420304     41459214          MX1
2027               21       41420304     41459214          MX1
2028               21       41420304     41459214          MX1
2029               21       41420304     41459214          MX1
2030               21       41420304     41459214          MX1
2031               21       41420304     41459214          MX1
2032               21       41420304     41459214          MX1
2033               21       41420304     41459214          MX1
2034               21       41420304     41459214          MX1
2035               21       41420304     41459214          MX1
2036               21       41420304     41459214          MX1
2037               21       41420304     41459214          MX1
2038               21       41420304     41459214          MX1
2039               21       41420304     41459214          MX1
2040               21       41420304     41459214          MX1
2041               21       41420304     41459214          MX1
2042               21       41420304     41459214          MX1
2043               21       41420304     41459214          MX1
2044               21       41420304     41459214          MX1
2045               21       41420304     41459214          MX1
2046               21       41420304     41459214          MX1
2047               21       41420304     41459214          MX1
2048               21       41420304     41459214          MX1
2049               21       41420304     41459214          MX1
2050               21       41420304     41459214          MX1
2051               21       41420304     41459214          MX1
2052               21       41420304     41459214          MX1
2053               21       41420304     41459214          MX1
2054               21       41420304     41459214          MX1
2055               21       41420304     41459214          MX1
2056               21       41420304     41459214          MX1
2057               21       41420304     41459214          MX1
2058               21       41420304     41459214          MX1
2059               21       41420304     41459214          MX1
2060               21       41420304     41459214          MX1
2061               21       41420304     41459214          MX1
2062               21       41420304     41459214          MX1
2063               21       41420304     41459214          MX1
2064               21       41420304     41459214          MX1
2065               21       41420304     41459214          MX1
2066               21       41420304     41459214          MX1
2067               21       41420304     41459214          MX1
2068               21       41420304     41459214          MX1
2069               21       44477850     44478493             
2070               21       44485577     44490288             
2071               21       44485577     44490288             
2072               21       44494874     44495519             
2073               21       17506453     17506728    RN7SL163P
2074               21        6365955      6366055             
2075               21       46220269     46225364             
2076               21       46220269     46225364             
2077               21       46220269     46225364             
2078               21       46220269     46225364             
2079               21       46220269     46225364             
2080               21       46220269     46225364             
2081               21        7788703      7793954             
2082               21        7788703      7793954             
2083               21        7048891      7087229             
2084               21        7048891      7087229             
2085               21        7048891      7087229             
2086               21        7048891      7087229             
2087               21        7048891      7087229             
2088               21        7048891      7087229             
2089               21        7048891      7087229             
2090               21        7048891      7087229             
2091               21        7048891      7087229             
2092               21        7048891      7087229             
2093               21        7048891      7087229             
2094               21        7048891      7087229             
2095               21        7048891      7087229             
2096               21        7048891      7087229             
2097               21        7048891      7087229             
2098               21        7048891      7087229             
2099               21        7048891      7087229             
2100               21        7048891      7087229             
2101               21        7048891      7087229             
2102               21       39373763     39377066       RNF6P1
2103               21       39373763     39377066       RNF6P1
2104               21       39373763     39377066       RNF6P1
2105               21       39373763     39377066       RNF6P1
2106               21       39373763     39377066       RNF6P1
2107               21       46286337     46297751         YBEY
2108               21       46286337     46297751         YBEY
2109               21       46286337     46297751         YBEY
2110               21       46286337     46297751         YBEY
2111               21       46286337     46297751         YBEY
2112               21       46286337     46297751         YBEY
2113               21       46286337     46297751         YBEY
2114               21       46286337     46297751         YBEY
2115               21       46286337     46297751         YBEY
2116               21       46286337     46297751         YBEY
2117               21       46286337     46297751         YBEY
2118               21       46286337     46297751         YBEY
2119               21       46286337     46297751         YBEY
2120               21       46286337     46297751         YBEY
2121               21       46286337     46297751         YBEY
2122               21       46286337     46297751         YBEY
2123               21       46286337     46297751         YBEY
2124               21       46286337     46297751         YBEY
2125               21       46286337     46297751         YBEY
2126               21       46286337     46297751         YBEY
2127               21       46286337     46297751         YBEY
2128               21       46286337     46297751         YBEY
2129               21       46286337     46297751         YBEY
2130               21       46286337     46297751         YBEY
2131               21       46286337     46297751         YBEY
2132               21       46286337     46297751         YBEY
2133               21       46286337     46297751         YBEY
2134               21       46286337     46297751         YBEY
2135               21       46286337     46297751         YBEY
2136               21       46286337     46297751         YBEY
2137               21       46286337     46297751         YBEY
2138               21       46286337     46297751         YBEY
2139               21       46286337     46297751         YBEY
2140               21       46286337     46297751         YBEY
2141               21       42879644     42913304       NDUFV3
2142               21       42879644     42913304       NDUFV3
2143               21       42879644     42913304       NDUFV3
2144               21       42879644     42913304       NDUFV3
2145               21       42879644     42913304       NDUFV3
2146               21       42879644     42913304       NDUFV3
2147               21       42879644     42913304       NDUFV3
2148               21       42879644     42913304       NDUFV3
2149               21       42879644     42913304       NDUFV3
2150               21       42879644     42913304       NDUFV3
2151               21       42879644     42913304       NDUFV3
2152               21       42879644     42913304       NDUFV3
2153               21       42879644     42913304       NDUFV3
2154               21       42879644     42913304       NDUFV3
2155               21       42879644     42913304       NDUFV3
2156               21       44921051     44929678    ITGB2-AS1
2157               21       44921051     44929678    ITGB2-AS1
2158               21       44921051     44929678    ITGB2-AS1
2159               21       44921051     44929678    ITGB2-AS1
2160               21       44921051     44929678    ITGB2-AS1
2161               21       44921051     44929678    ITGB2-AS1
2162               21       44921051     44929678    ITGB2-AS1
2163               21       44921051     44929678    ITGB2-AS1
2164               21       44921051     44929678    ITGB2-AS1
2165               21       44921051     44929678    ITGB2-AS1
2166               21       44921051     44929678    ITGB2-AS1
2167               21       44921051     44929678    ITGB2-AS1
2168               21       44921051     44929678    ITGB2-AS1
2169               21       44921051     44929678    ITGB2-AS1
2170               21       44921051     44929678    ITGB2-AS1
2171               21       44921051     44929678    ITGB2-AS1
2172               21       44921051     44929678    ITGB2-AS1
2173               21       44921051     44929678    ITGB2-AS1
2174               21       44921051     44929678    ITGB2-AS1
2175               21       44921051     44929678    ITGB2-AS1
2176               21       44921051     44929678    ITGB2-AS1
2177               21       44921051     44929678    ITGB2-AS1
2178               21       41739373     41741308             
2179               21       41739373     41741308             
2180               21       26917912     26966513      ADAMTS5
2181               21       26917912     26966513      ADAMTS5
2182               21       26917912     26966513      ADAMTS5
2183               21       26917912     26966513      ADAMTS5
2184               21       26917912     26966513      ADAMTS5
2185               21       26917912     26966513      ADAMTS5
2186               21       26917912     26966513      ADAMTS5
2187               21       26917912     26966513      ADAMTS5
2188               21       43115334     43115709     MRPL51P2
2189               21       43140523     43141092        FRGCA
2190               21       43140523     43141092        FRGCA
2191               21       43159066     43162277             
2192               21       43159066     43162277             
2193               21       43159066     43162277             
2194               21       43169008     43172805        CRYAA
2195               21       43169008     43172805        CRYAA
2196               21       43169008     43172805        CRYAA
2197               21       43169008     43172805        CRYAA
2198               21       43169008     43172805        CRYAA
2199               21       43169008     43172805        CRYAA
2200               21       43169008     43172805        CRYAA
2201               21       43169008     43172805        CRYAA
2202               21       43169008     43172805        CRYAA
2203               21       43169008     43172805        CRYAA
2204               21       43169008     43172805        CRYAA
2205               21       43169008     43172805        CRYAA
2206               21       43169008     43172805        CRYAA
2207               21       43169008     43172805        CRYAA
2208               21       43169008     43172805        CRYAA
2209               21       44849585     44873903      PTTG1IP
2210               21       44849585     44873903      PTTG1IP
2211               21       44849585     44873903      PTTG1IP
2212               21       44849585     44873903      PTTG1IP
2213               21       44849585     44873903      PTTG1IP
2214               21       44849585     44873903      PTTG1IP
2215               21       44849585     44873903      PTTG1IP
2216               21       44849585     44873903      PTTG1IP
2217               21       44849585     44873903      PTTG1IP
2218               21       44849585     44873903      PTTG1IP
2219               21       44849585     44873903      PTTG1IP
2220               21       44849585     44873903      PTTG1IP
2221               21       44849585     44873903      PTTG1IP
2222               21       44849585     44873903      PTTG1IP
2223               21       44849585     44873903      PTTG1IP
2224               21       44849585     44873903      PTTG1IP
2225               21       44849585     44873903      PTTG1IP
2226               21       44849585     44873903      PTTG1IP
2227               21       44849585     44873903      PTTG1IP
2228               21       44849585     44873903      PTTG1IP
2229               21       44849585     44873903      PTTG1IP
2230               21       44849585     44873903      PTTG1IP
2231               21       44849585     44873903      PTTG1IP
2232               21       44849585     44873903      PTTG1IP
2233               21       44849585     44873903      PTTG1IP
2234               21       44849585     44873903      PTTG1IP
2235               21       44849585     44873903      PTTG1IP
2236               21       44849585     44873903      PTTG1IP
2237               21       44849585     44873903      PTTG1IP
2238               21       44849585     44873903      PTTG1IP
2239               21       44849585     44873903      PTTG1IP
2240               21       44849585     44873903      PTTG1IP
2241               21       41679181     41697336    LINC00111
2242               21       41679181     41697336    LINC00111
2243               21       41679181     41697336    LINC00111
2244               21       44506807     44516575   TSPEAR-AS1
2245               21       44506807     44516575   TSPEAR-AS1
2246               21       44506807     44516575   TSPEAR-AS1
2247               21       44506807     44516575   TSPEAR-AS1
2248               21       44506807     44516575   TSPEAR-AS1
2249               21       44506807     44516575   TSPEAR-AS1
2250               21       44506807     44516575   TSPEAR-AS1
2251               21       44506807     44516575   TSPEAR-AS1
2252               21       44506807     44516575   TSPEAR-AS1
2253               21       44637356     44638455   KRTAP10-10
2254               21       46251549     46254133             
2255               21       46251549     46254133             
2256               21       46251549     46254133             
2257               21       46251549     46254133             
2258               21       46229217     46259390   MCM3AP-AS1
2259               21       46229217     46259390   MCM3AP-AS1
2260               21       46229217     46259390   MCM3AP-AS1
2261               21       46229217     46259390   MCM3AP-AS1
2262               21       46229217     46259390   MCM3AP-AS1
2263               21       46229217     46259390   MCM3AP-AS1
2264               21       46229217     46259390   MCM3AP-AS1
2265               21       46229217     46259390   MCM3AP-AS1
2266               21       46229217     46259390   MCM3AP-AS1
2267               21       46229217     46259390   MCM3AP-AS1
2268               21       46229217     46259390   MCM3AP-AS1
2269               21       46229217     46259390   MCM3AP-AS1
2270               21       46229217     46259390   MCM3AP-AS1
2271               21       46229217     46259390   MCM3AP-AS1
2272               21       46229217     46259390   MCM3AP-AS1
2273               21       46229217     46259390   MCM3AP-AS1
2274               21       46229217     46259390   MCM3AP-AS1
2275               21       46229217     46259390   MCM3AP-AS1
2276               21       46229217     46259390   MCM3AP-AS1
2277               21       46229217     46259390   MCM3AP-AS1
2278               21       46229217     46259390   MCM3AP-AS1
2279               21       46229217     46259390   MCM3AP-AS1
2280               21       46229217     46259390   MCM3AP-AS1
2281               21       46229217     46259390   MCM3AP-AS1
2282               21       46229217     46259390   MCM3AP-AS1
2283               21       46235126     46286297       MCM3AP
2284               21       46235126     46286297       MCM3AP
2285               21       46235126     46286297       MCM3AP
2286               21       46235126     46286297       MCM3AP
2287               21       46235126     46286297       MCM3AP
2288               21       46235126     46286297       MCM3AP
2289               21       46235126     46286297       MCM3AP
2290               21       46235126     46286297       MCM3AP
2291               21       46235126     46286297       MCM3AP
2292               21       46235126     46286297       MCM3AP
2293               21       46235126     46286297       MCM3AP
2294               21       46235126     46286297       MCM3AP
2295               21       46235126     46286297       MCM3AP
2296               21       46235126     46286297       MCM3AP
2297               21       46235126     46286297       MCM3AP
2298               21       46235126     46286297       MCM3AP
2299               21       46235126     46286297       MCM3AP
2300               21       46235126     46286297       MCM3AP
2301               21       46235126     46286297       MCM3AP
2302               21       46235126     46286297       MCM3AP
2303               21       46235126     46286297       MCM3AP
2304               21       46235126     46286297       MCM3AP
2305               21       46235126     46286297       MCM3AP
2306               21       46235126     46286297       MCM3AP
2307               21       46235126     46286297       MCM3AP
2308               21       46235126     46286297       MCM3AP
2309               21       46235126     46286297       MCM3AP
2310               21       46235126     46286297       MCM3AP
2311               21       46235126     46286297       MCM3AP
2312               21       46235126     46286297       MCM3AP
2313               21       46235126     46286297       MCM3AP
2314               21       46235126     46286297       MCM3AP
2315               21       46235126     46286297       MCM3AP
2316               21       46235126     46286297       MCM3AP
2317               21       46235126     46286297       MCM3AP
2318               21       46235126     46286297       MCM3AP
2319               21       46235126     46286297       MCM3AP
2320               21       46235126     46286297       MCM3AP
2321               21       46235126     46286297       MCM3AP
2322               21       46235126     46286297       MCM3AP
2323               21       46235126     46286297       MCM3AP
2324               21       46235126     46286297       MCM3AP
2325               21       46235126     46286297       MCM3AP
2326               21       46235126     46286297       MCM3AP
2327               21       46235126     46286297       MCM3AP
2328               21       46235126     46286297       MCM3AP
2329               21       46235126     46286297       MCM3AP
2330               21       46235126     46286297       MCM3AP
2331               21       46235126     46286297       MCM3AP
2332               21       46235126     46286297       MCM3AP
2333               21       46235126     46286297       MCM3AP
2334               21       46235126     46286297       MCM3AP
2335               21       46235126     46286297       MCM3AP
2336               21       46235126     46286297       MCM3AP
2337               21       46235126     46286297       MCM3AP
2338               21       46235126     46286297       MCM3AP
2339               21       46235126     46286297       MCM3AP
2340               21       46235126     46286297       MCM3AP
2341               21       46235126     46286297       MCM3AP
2342               21       46235126     46286297       MCM3AP
2343               21       46235126     46286297       MCM3AP
2344               21       46235126     46286297       MCM3AP
2345               21       46235126     46286297       MCM3AP
2346               21       46235126     46286297       MCM3AP
2347               21       46235126     46286297       MCM3AP
2348               21       46235126     46286297       MCM3AP
2349               21       46235126     46286297       MCM3AP
2350               21       46235126     46286297       MCM3AP
2351               21       46235126     46286297       MCM3AP
2352               21       46235126     46286297       MCM3AP
2353               21       46235126     46286297       MCM3AP
2354               21       46235126     46286297       MCM3AP
2355               21       46235126     46286297       MCM3AP
2356               21       46235126     46286297       MCM3AP
2357               21       46235126     46286297       MCM3AP
2358               21       46235126     46286297       MCM3AP
2359               21       46235126     46286297       MCM3AP
2360               21       46235126     46286297       MCM3AP
2361               21       46235126     46286297       MCM3AP
2362               21       46235126     46286297       MCM3AP
2363               21       46235126     46286297       MCM3AP
2364               21       46235126     46286297       MCM3AP
2365               21       46235126     46286297       MCM3AP
2366               21       46235126     46286297       MCM3AP
2367               21       46235126     46286297       MCM3AP
2368               21       46235126     46286297       MCM3AP
2369               21       46235126     46286297       MCM3AP
2370               21       46235126     46286297       MCM3AP
2371               21       46235126     46286297       MCM3AP
2372               21       46235126     46286297       MCM3AP
2373               21       46235126     46286297       MCM3AP
2374               21       46235126     46286297       MCM3AP
2375               21       46235126     46286297       MCM3AP
2376               21       46235126     46286297       MCM3AP
2377               21       46235126     46286297       MCM3AP
2378               21       46235126     46286297       MCM3AP
2379               21       46235126     46286297       MCM3AP
2380               21       46235126     46286297       MCM3AP
2381               21       46235126     46286297       MCM3AP
2382               21       46235126     46286297       MCM3AP
2383               21       46235126     46286297       MCM3AP
2384               21       46235126     46286297       MCM3AP
2385               21       46235126     46286297       MCM3AP
2386               21       46235126     46286297       MCM3AP
2387               21       46235126     46286297       MCM3AP
2388               21       46235126     46286297       MCM3AP
2389               21       46235126     46286297       MCM3AP
2390               21       46235126     46286297       MCM3AP
2391               21       46235126     46286297       MCM3AP
2392               21       46235126     46286297       MCM3AP
2393               21       46235126     46286297       MCM3AP
2394               21       46235126     46286297       MCM3AP
2395               21       46235126     46286297       MCM3AP
2396               21       46235126     46286297       MCM3AP
2397               21       46235126     46286297       MCM3AP
2398               21       46235126     46286297       MCM3AP
2399               21       46235126     46286297       MCM3AP
2400               21       46235126     46286297       MCM3AP
2401               21       42974510     43033931       PKNOX1
2402               21       42974510     43033931       PKNOX1
2403               21       42974510     43033931       PKNOX1
2404               21       42974510     43033931       PKNOX1
2405               21       42974510     43033931       PKNOX1
2406               21       42974510     43033931       PKNOX1
2407               21       42974510     43033931       PKNOX1
2408               21       42974510     43033931       PKNOX1
2409               21       42974510     43033931       PKNOX1
2410               21       42974510     43033931       PKNOX1
2411               21       42974510     43033931       PKNOX1
2412               21       42974510     43033931       PKNOX1
2413               21       42974510     43033931       PKNOX1
2414               21       42974510     43033931       PKNOX1
2415               21       42974510     43033931       PKNOX1
2416               21       42974510     43033931       PKNOX1
2417               21       42974510     43033931       PKNOX1
2418               21       42974510     43033931       PKNOX1
2419               21       42974510     43033931       PKNOX1
2420               21       42974510     43033931       PKNOX1
2421               21       42974510     43033931       PKNOX1
2422               21       42974510     43033931       PKNOX1
2423               21       42974510     43033931       PKNOX1
2424               21       42974510     43033931       PKNOX1
2425               21       42974510     43033931       PKNOX1
2426               21       42974510     43033931       PKNOX1
2427               21       42974510     43033931       PKNOX1
2428               21       42974510     43033931       PKNOX1
2429               21       42974510     43033931       PKNOX1
2430               21       42974510     43033931       PKNOX1
2431               21       42974510     43033931       PKNOX1
2432               21       42974510     43033931       PKNOX1
2433               21       42974510     43033931       PKNOX1
2434               21       42974510     43033931       PKNOX1
2435               21       42974510     43033931       PKNOX1
2436               21       42974510     43033931       PKNOX1
2437               21       42974510     43033931       PKNOX1
2438               21       42974510     43033931       PKNOX1
2439               21       42974510     43033931       PKNOX1
2440               21       42974510     43033931       PKNOX1
2441               21       42974510     43033931       PKNOX1
2442               21       42974510     43033931       PKNOX1
2443               21       42974510     43033931       PKNOX1
2444               21       42974510     43033931       PKNOX1
2445               21       42974510     43033931       PKNOX1
2446               21       42974510     43033931       PKNOX1
2447               21       42974510     43033931       PKNOX1
2448               21       42974510     43033931       PKNOX1
2449               21       42974510     43033931       PKNOX1
2450               21       42974510     43033931       PKNOX1
2451               21       42974510     43033931       PKNOX1
2452               21       42974510     43033931       PKNOX1
2453               21       42974510     43033931       PKNOX1
2454               21       42974510     43033931       PKNOX1
2455               21       42974510     43033931       PKNOX1
2456               21       42974510     43033931       PKNOX1
2457               21       42974510     43033931       PKNOX1
2458               21       42974510     43033931       PKNOX1
2459               21       42974510     43033931       PKNOX1
2460               21       41716436     41717580    LINC00112
2461               21       41716436     41717580    LINC00112
2462               21       41716436     41717580    LINC00112
2463               21       41576135     41581319             
2464               21       41576135     41581319             
2465               21       41559125     41562958             
2466               21       41559125     41562958             
2467               21       41559125     41562958             
2468               21       46462471     46469306    DIP2A-IT1
2469               21       46462471     46469306    DIP2A-IT1
2470               21       46462471     46469306    DIP2A-IT1
2471               21       46462471     46469306    DIP2A-IT1
2472               21       44497892     44711580       TSPEAR
2473               21       44497892     44711580       TSPEAR
2474               21       44497892     44711580       TSPEAR
2475               21       44497892     44711580       TSPEAR
2476               21       44497892     44711580       TSPEAR
2477               21       44497892     44711580       TSPEAR
2478               21       44497892     44711580       TSPEAR
2479               21       44497892     44711580       TSPEAR
2480               21       44497892     44711580       TSPEAR
2481               21       44497892     44711580       TSPEAR
2482               21       44497892     44711580       TSPEAR
2483               21       44497892     44711580       TSPEAR
2484               21       44497892     44711580       TSPEAR
2485               21       44497892     44711580       TSPEAR
2486               21       44497892     44711580       TSPEAR
2487               21       44497892     44711580       TSPEAR
2488               21       44497892     44711580       TSPEAR
2489               21       44497892     44711580       TSPEAR
2490               21       44497892     44711580       TSPEAR
2491               21       44497892     44711580       TSPEAR
2492               21       44497892     44711580       TSPEAR
2493               21       44497892     44711580       TSPEAR
2494               21       44497892     44711580       TSPEAR
2495               21       44497892     44711580       TSPEAR
2496               21       44497892     44711580       TSPEAR
2497               21       44497892     44711580       TSPEAR
2498               21       44497892     44711580       TSPEAR
2499               21       44497892     44711580       TSPEAR
2500               21       44497892     44711580       TSPEAR
2501               21       44497892     44711580       TSPEAR
2502               21       44497892     44711580       TSPEAR
2503               21       44497892     44711580       TSPEAR
2504               21       44497892     44711580       TSPEAR
2505               21       44497892     44711580       TSPEAR
2506               21       44497892     44711580       TSPEAR
2507               21       44497892     44711580       TSPEAR
2508               21       44497892     44711580       TSPEAR
2509               21       44497892     44711580       TSPEAR
2510               21       44497892     44711580       TSPEAR
2511               21       44497892     44711580       TSPEAR
2512               21       44497892     44711580       TSPEAR
2513               21       44497892     44711580       TSPEAR
2514               21       44497892     44711580       TSPEAR
2515               21       44497892     44711580       TSPEAR
2516               21       44497892     44711580       TSPEAR
2517               21       44497892     44711580       TSPEAR
2518               21       44538981     44540195    KRTAP10-1
2519               21        8380665      8410645             
2520               21        8380665      8410645             
2521               21        8380665      8410645             
2522               21        8380665      8410645             
2523               21        8380665      8410645             
2524               21        8380665      8410645             
2525               21        8380665      8410645             
2526               21       29182027     29187795             
2527               21       29182027     29187795             
2528               21        6223480      6223580             
2529               21       41539206     41539326             
2530               21       41746772     41746841      MIR6814
2531               21       20356653     20356896    RN7SKP147
2532               21       44573724     44638284    KRTAP10-4
2533               21       44573724     44638284    KRTAP10-4
2534               21       44573724     44638284    KRTAP10-4
2535               21       44573724     44638284    KRTAP10-4
2536               21       44573724     44638284    KRTAP10-4
2537               21       44573724     44638284    KRTAP10-4
2538               21       44573724     44638284    KRTAP10-4
2539               21       44573724     44638284    KRTAP10-4
2540               21       44573724     44638284    KRTAP10-4
2541               21       44573724     44638284    KRTAP10-4
2542               21       44675868     44678086       IMMTP1
2543               21       16590237     16590325     MIR125B2
2544               21        7663911      7664011             
2545               21       29139283     29139384             
2546               21       44437121     44437175             
2547               21       44627123     44628293    KRTAP10-9
2548               21       44627123     44628293    KRTAP10-9
2549               21       44627123     44628293    KRTAP10-9
2550               21       44627123     44628293    KRTAP10-9
2551               21       44627123     44628293    KRTAP10-9
2552               21       44627123     44628293    KRTAP10-9
2553               21       43053191     43076943          CBS
2554               21       43053191     43076943          CBS
2555               21       43053191     43076943          CBS
2556               21       43053191     43076943          CBS
2557               21       43053191     43076943          CBS
2558               21       43053191     43076943          CBS
2559               21       43053191     43076943          CBS
2560               21       43053191     43076943          CBS
2561               21       43053191     43076943          CBS
2562               21       43053191     43076943          CBS
2563               21       43053191     43076943          CBS
2564               21       43053191     43076943          CBS
2565               21       43053191     43076943          CBS
2566               21       43053191     43076943          CBS
2567               21       43053191     43076943          CBS
2568               21       43053191     43076943          CBS
2569               21       43053191     43076943          CBS
2570               21       43053191     43076943          CBS
2571               21       43053191     43076943          CBS
2572               21       43053191     43076943          CBS
2573               21       43053191     43076943          CBS
2574               21       43053191     43076943          CBS
2575               21       43053191     43076943          CBS
2576               21       43053191     43076943          CBS
2577               21       43053191     43076943          CBS
2578               21       43053191     43076943          CBS
2579               21       43053191     43076943          CBS
2580               21       43053191     43076943          CBS
2581               21       43053191     43076943          CBS
2582               21       43053191     43076943          CBS
2583               21       43053191     43076943          CBS
2584               21       43053191     43076943          CBS
2585               21       43053191     43076943          CBS
2586               21       43053191     43076943          CBS
2587               21       43053191     43076943          CBS
2588               21       43053191     43076943          CBS
2589               21       43053191     43076943          CBS
2590               21       43053191     43076943          CBS
2591               21       43053191     43076943          CBS
2592               21       43053191     43076943          CBS
2593               21       43053191     43076943          CBS
2594               21       43053191     43076943          CBS
2595               21       43053191     43076943          CBS
2596               21       43053191     43076943          CBS
2597               21       43053191     43076943          CBS
2598               21       43053191     43076943          CBS
2599               21       43053191     43076943          CBS
2600               21       43053191     43076943          CBS
2601               21       43053191     43076943          CBS
2602               21       43053191     43076943          CBS
2603               21       43053191     43076943          CBS
2604               21       43053191     43076943          CBS
2605               21       43053191     43076943          CBS
2606               21       43053191     43076943          CBS
2607               21       43053191     43076943          CBS
2608               21       43053191     43076943          CBS
2609               21       43053191     43076943          CBS
2610               21       43053191     43076943          CBS
2611               21       43053191     43076943          CBS
2612               21       43053191     43076943          CBS
2613               21       43053191     43076943          CBS
2614               21       43053191     43076943          CBS
2615               21       43053191     43076943          CBS
2616               21       43053191     43076943          CBS
2617               21       43053191     43076943          CBS
2618               21       43053191     43076943          CBS
2619               21       43053191     43076943          CBS
2620               21       43053191     43076943          CBS
2621               21       43053191     43076943          CBS
2622               21       43053191     43076943          CBS
2623               21       43053191     43076943          CBS
2624               21       43053191     43076943          CBS
2625               21       43053191     43076943          CBS
2626               21       43053191     43076943          CBS
2627               21       43053191     43076943          CBS
2628               21       43053191     43076943          CBS
2629               21       43053191     43076943          CBS
2630               21       43053191     43076943          CBS
2631               21       43053191     43076943          CBS
2632               21       43053191     43076943          CBS
2633               21       43053191     43076943          CBS
2634               21       43053191     43076943          CBS
2635               21       43053191     43076943          CBS
2636               21       43053191     43076943          CBS
2637               21       43053191     43076943          CBS
2638               21       43053191     43076943          CBS
2639               21       43053191     43076943          CBS
2640               21       43053191     43076943          CBS
2641               21       43053191     43076943          CBS
2642               21       43053191     43076943          CBS
2643               21       43053191     43076943          CBS
2644               21       43053191     43076943          CBS
2645               21       43053191     43076943          CBS
2646               21       43053191     43076943          CBS
2647               21       43053191     43076943          CBS
2648               21       43053191     43076943          CBS
2649               21       43053191     43076943          CBS
2650               21       43053191     43076943          CBS
2651               21       43053191     43076943          CBS
2652               21       43053191     43076943          CBS
2653               21       43053191     43076943          CBS
2654               21       43053191     43076943          CBS
2655               21       43053191     43076943          CBS
2656               21       43053191     43076943          CBS
2657               21       43053191     43076943          CBS
2658               21       43053191     43076943          CBS
2659               21       43053191     43076943          CBS
2660               21       43053191     43076943          CBS
2661               21       43053191     43076943          CBS
2662               21       43053191     43076943          CBS
2663               21       43053191     43076943          CBS
2664               21       43053191     43076943          CBS
2665               21       43053191     43076943          CBS
2666               21       43053191     43076943          CBS
2667               21       43053191     43076943          CBS
2668               21       43053191     43076943          CBS
2669               21       43053191     43076943          CBS
2670               21       43053191     43076943          CBS
2671               21       43053191     43076943          CBS
2672               21       43053191     43076943          CBS
2673               21       43053191     43076943          CBS
2674               21       43053191     43076943          CBS
2675               21       43053191     43076943          CBS
2676               21       43053191     43076943          CBS
2677               21       43053191     43076943          CBS
2678               21       43053191     43076943          CBS
2679               21       43053191     43076943          CBS
2680               21       43053191     43076943          CBS
2681               21       43053191     43076943          CBS
2682               21       43053191     43076943          CBS
2683               21       43053191     43076943          CBS
2684               21       43053191     43076943          CBS
2685               21       43053191     43076943          CBS
2686               21       43053191     43076943          CBS
2687               21       43053191     43076943          CBS
2688               21       43053191     43076943          CBS
2689               21       43053191     43076943          CBS
2690               21       43053191     43076943          CBS
2691               21       43053191     43076943          CBS
2692               21       46246890     46247682             
2693               21       46246890     46247682             
2694               21       37208503     37221736        DSCR9
2695               21       37208503     37221736        DSCR9
2696               21       37208503     37221736        DSCR9
2697               21       37208503     37221736        DSCR9
2698               21       37208503     37221736        DSCR9
2699               21       37208503     37221736        DSCR9
2700               21       37208503     37221736        DSCR9
2701               21       37208503     37221736        DSCR9
2702               21       37208503     37221736        DSCR9
2703               21       37208503     37221736        DSCR9
2704               21       37208503     37221736        DSCR9
2705               21       37208503     37221736        DSCR9
2706               21       37208503     37221736        DSCR9
2707               21       37208503     37221736        DSCR9
2708               21       37208503     37221736        DSCR9
2709               21       37208503     37221736        DSCR9
2710               21       37208503     37221736        DSCR9
2711               21       37208503     37221736        DSCR9
2712               21       37208503     37221736        DSCR9
2713               21       37208503     37221736        DSCR9
2714               21       37208503     37221736        DSCR9
2715               21       37223420     37267919        DSCR3
2716               21       37223420     37267919        DSCR3
2717               21       37223420     37267919        DSCR3
2718               21       37223420     37267919        DSCR3
2719               21       37223420     37267919        DSCR3
2720               21       37223420     37267919        DSCR3
2721               21       37223420     37267919        DSCR3
2722               21       37223420     37267919        DSCR3
2723               21       37223420     37267919        DSCR3
2724               21       37223420     37267919        DSCR3
2725               21       37223420     37267919        DSCR3
2726               21       37223420     37267919        DSCR3
2727               21       37223420     37267919        DSCR3
2728               21       37223420     37267919        DSCR3
2729               21       37223420     37267919        DSCR3
2730               21       37223420     37267919        DSCR3
2731               21       37223420     37267919        DSCR3
2732               21       37223420     37267919        DSCR3
2733               21       37223420     37267919        DSCR3
2734               21       37223420     37267919        DSCR3
2735               21       37223420     37267919        DSCR3
2736               21       37223420     37267919        DSCR3
2737               21       37223420     37267919        DSCR3
2738               21       37223420     37267919        DSCR3
2739               21       37223420     37267919        DSCR3
2740               21       37223420     37267919        DSCR3
2741               21       37223420     37267919        DSCR3
2742               21       37223420     37267919        DSCR3
2743               21       37223420     37267919        DSCR3
2744               21       37223420     37267919        DSCR3
2745               21       37223420     37267919        DSCR3
2746               21       37223420     37267919        DSCR3
2747               21       37223420     37267919        DSCR3
2748               21       37223420     37267919        DSCR3
2749               21       37223420     37267919        DSCR3
2750               21       37223420     37267919        DSCR3
2751               21       37223420     37267919        DSCR3
2752               21       37223420     37267919        DSCR3
2753               21       37223420     37267919        DSCR3
2754               21       37223420     37267919        DSCR3
2755               21       37223420     37267919        DSCR3
2756               21       37223420     37267919        DSCR3
2757               21       37223420     37267919        DSCR3
2758               21       37223420     37267919        DSCR3
2759               21       37223420     37267919        DSCR3
2760               21       37223420     37267919        DSCR3
2761               21       37223420     37267919        DSCR3
2762               21       37223420     37267919        DSCR3
2763               21       37223420     37267919        DSCR3
2764               21       37223420     37267919        DSCR3
2765               21       37223420     37267919        DSCR3
2766               21       37223420     37267919        DSCR3
2767               21       37223420     37267919        DSCR3
2768               21       37223420     37267919        DSCR3
2769               21       37223420     37267919        DSCR3
2770               21       37223420     37267919        DSCR3
2771               21       37223420     37267919        DSCR3
2772               21       37223420     37267919        DSCR3
2773               21       37223420     37267919        DSCR3
2774               21       37223420     37267919        DSCR3
2775               21       37223420     37267919        DSCR3
2776               21       37223420     37267919        DSCR3
2777               21       37223420     37267919        DSCR3
2778               21       37223420     37267919        DSCR3
2779               21       37223420     37267919        DSCR3
2780               21       34456110     34456237             
2781               21        8208844      8208904    MIR3687-1
2782               21       45478266     45478326      MIR6815
2783               21       41874756     41877613             
2784               21       41874756     41877613             
2785               21       41874756     41877613             
2786               21       44579455     44580604    KRTAP10-5
2787               21       37221419     37237744             
2788               21       37221419     37237744             
2789               21       44206525     44207399             
2790               21       44206525     44207399             
2791               21       32841496     32841811             
2792               21       20998315     21543329        NCAM2
2793               21       20998315     21543329        NCAM2
2794               21       20998315     21543329        NCAM2
2795               21       20998315     21543329        NCAM2
2796               21       20998315     21543329        NCAM2
2797               21       20998315     21543329        NCAM2
2798               21       20998315     21543329        NCAM2
2799               21       20998315     21543329        NCAM2
2800               21       20998315     21543329        NCAM2
2801               21       20998315     21543329        NCAM2
2802               21       20998315     21543329        NCAM2
2803               21       20998315     21543329        NCAM2
2804               21       20998315     21543329        NCAM2
2805               21       20998315     21543329        NCAM2
2806               21       20998315     21543329        NCAM2
2807               21       20998315     21543329        NCAM2
2808               21       20998315     21543329        NCAM2
2809               21       20998315     21543329        NCAM2
2810               21       20998315     21543329        NCAM2
2811               21       20998315     21543329        NCAM2
2812               21       20998315     21543329        NCAM2
2813               21       20998315     21543329        NCAM2
2814               21       20998315     21543329        NCAM2
2815               21       20998315     21543329        NCAM2
2816               21       20998315     21543329        NCAM2
2817               21       20998315     21543329        NCAM2
2818               21       20998315     21543329        NCAM2
2819               21       20998315     21543329        NCAM2
2820               21       20998315     21543329        NCAM2
2821               21       20998315     21543329        NCAM2
2822               21       20998315     21543329        NCAM2
2823               21       20998315     21543329        NCAM2
2824               21       20998315     21543329        NCAM2
2825               21       20998315     21543329        NCAM2
2826               21       20998315     21543329        NCAM2
2827               21       20998315     21543329        NCAM2
2828               21       20998315     21543329        NCAM2
2829               21       20998315     21543329        NCAM2
2830               21       20998315     21543329        NCAM2
2831               21       20998315     21543329        NCAM2
2832               21       20998315     21543329        NCAM2
2833               21       20998315     21543329        NCAM2
2834               21       20998315     21543329        NCAM2
2835               21       20998315     21543329        NCAM2
2836               21       20998315     21543329        NCAM2
2837               21       20998315     21543329        NCAM2
2838               21       20998315     21543329        NCAM2
2839               21       20998315     21543329        NCAM2
2840               21       36069642     36126640             
2841               21       36069642     36126640             
2842               21       36069642     36126640             
2843               21       36069642     36126640             
2844               21       36069642     36126640             
2845               21       36069642     36126640             
2846               21       36104881     36109690             
2847               21       36104881     36109690             
2848               21       36132450     36133032       RPS9P1
2849               21       39342315     39349647        HMGN1
2850               21       39342315     39349647        HMGN1
2851               21       39342315     39349647        HMGN1
2852               21       39342315     39349647        HMGN1
2853               21       39342315     39349647        HMGN1
2854               21       39342315     39349647        HMGN1
2855               21       39342315     39349647        HMGN1
2856               21       39342315     39349647        HMGN1
2857               21       39342315     39349647        HMGN1
2858               21       39342315     39349647        HMGN1
2859               21       39342315     39349647        HMGN1
2860               21       39342315     39349647        HMGN1
2861               21       39342315     39349647        HMGN1
2862               21       39342315     39349647        HMGN1
2863               21       39342315     39349647        HMGN1
2864               21       39342315     39349647        HMGN1
2865               21       39342315     39349647        HMGN1
2866               21       39342315     39349647        HMGN1
2867               21       39342315     39349647        HMGN1
2868               21       39342315     39349647        HMGN1
2869               21       39342315     39349647        HMGN1
2870               21       39342315     39349647        HMGN1
2871               21       39342315     39349647        HMGN1
2872               21       39342315     39349647        HMGN1
2873               21       39342315     39349647        HMGN1
2874               21       39342315     39349647        HMGN1
2875               21       39342315     39349647        HMGN1
2876               21       39342315     39349647        HMGN1
2877               21       39342315     39349647        HMGN1
2878               21       39342315     39349647        HMGN1
2879               21       39342315     39349647        HMGN1
2880               21       39342315     39349647        HMGN1
2881               21       39342315     39349647        HMGN1
2882               21       39342315     39349647        HMGN1
2883               21       39342315     39349647        HMGN1
2884               21       39342315     39349647        HMGN1
2885               21       39342315     39349647        HMGN1
2886               21       39342315     39349647        HMGN1
2887               21       39342315     39349647        HMGN1
2888               21       39342315     39349647        HMGN1
2889               21       39342315     39349647        HMGN1
2890               21       39342315     39349647        HMGN1
2891               21       39342315     39349647        HMGN1
2892               21       39342315     39349647        HMGN1
2893               21       39342315     39349647        HMGN1
2894               21       39342315     39349647        HMGN1
2895               21       39342315     39349647        HMGN1
2896               21       39342315     39349647        HMGN1
2897               21       39342315     39349647        HMGN1
2898               21       39342315     39349647        HMGN1
2899               21       39342315     39349647        HMGN1
2900               21       39342315     39349647        HMGN1
2901               21       39342315     39349647        HMGN1
2902               21       39342315     39349647        HMGN1
2903               21       39342315     39349647        HMGN1
2904               21       39342315     39349647        HMGN1
2905               21       39342315     39349647        HMGN1
2906               21       39342315     39349647        HMGN1
2907               21       39342315     39349647        HMGN1
2908               21       39342315     39349647        HMGN1
2909               21       39342315     39349647        HMGN1
2910               21       39342315     39349647        HMGN1
2911               21       39342315     39349647        HMGN1
2912               21       39342315     39349647        HMGN1
2913               21       39342315     39349647        HMGN1
2914               21       39342315     39349647        HMGN1
2915               21       39342315     39349647        HMGN1
2916               21       39342315     39349647        HMGN1
2917               21       39342315     39349647        HMGN1
2918               21       39342315     39349647        HMGN1
2919               21       39342315     39349647        HMGN1
2920               21       39342315     39349647        HMGN1
2921               21       39342315     39349647        HMGN1
2922               21       39342315     39349647        HMGN1
2923               21       39342315     39349647        HMGN1
2924               21       39342315     39349647        HMGN1
2925               21       39342315     39349647        HMGN1
2926               21       39342315     39349647        HMGN1
2927               21       39342315     39349647        HMGN1
2928               21       39342315     39349647        HMGN1
2929               21       39342315     39349647        HMGN1
2930               21       39342315     39349647        HMGN1
2931               21       39342315     39349647        HMGN1
2932               21       39342315     39349647        HMGN1
2933               21       39342315     39349647        HMGN1
2934               21       39342315     39349647        HMGN1
2935               21       39342315     39349647        HMGN1
2936               21       39342315     39349647        HMGN1
2937               21       39342315     39349647        HMGN1
2938               21       39342315     39349647        HMGN1
2939               21       39342315     39349647        HMGN1
2940               21       39342315     39349647        HMGN1
2941               21       39342315     39349647        HMGN1
2942               21       39342315     39349647        HMGN1
2943               21       39342315     39349647        HMGN1
2944               21       39342315     39349647        HMGN1
2945               21       39342315     39349647        HMGN1
2946               21       39342315     39349647        HMGN1
2947               21       39342315     39349647        HMGN1
2948               21       39342315     39349647        HMGN1
2949               21       39342315     39349647        HMGN1
2950               21       39342315     39349647        HMGN1
2951               21       39342315     39349647        HMGN1
2952               21       39342315     39349647        HMGN1
2953               21       39342315     39349647        HMGN1
2954               21       39342315     39349647        HMGN1
2955               21       39342315     39349647        HMGN1
2956               21       39342315     39349647        HMGN1
2957               21       39342315     39349647        HMGN1
2958               21       39342315     39349647        HMGN1
2959               21       39342315     39349647        HMGN1
2960               21       39342315     39349647        HMGN1
2961               21       39342315     39349647        HMGN1
2962               21       39342315     39349647        HMGN1
2963               21       39342315     39349647        HMGN1
2964               21       39342315     39349647        HMGN1
2965               21       39342315     39349647        HMGN1
2966               21       16121310     16121644      RPS26P5
2967               21       16525919     16527019             
2968               21       16574718     16582637             
2969               21       16574718     16582637             
2970               21       16417139     16419080             
2971               21       16417139     16419080             
2972               21       16417139     16419080             
2973               21       16291791     16308133             
2974               21       16291791     16308133             
2975               21       16291791     16308133             
2976               21       44455486     44462196        LRRC3
2977               21       44455486     44462196        LRRC3
2978               21       42916803     42925646     ERVH48-1
2979               21       42916803     42925646     ERVH48-1
2980               21       42916803     42925646     ERVH48-1
2981               21       33589341     33643926       CRYZL1
2982               21       33589341     33643926       CRYZL1
2983               21       33589341     33643926       CRYZL1
2984               21       33589341     33643926       CRYZL1
2985               21       33589341     33643926       CRYZL1
2986               21       33589341     33643926       CRYZL1
2987               21       33589341     33643926       CRYZL1
2988               21       33589341     33643926       CRYZL1
2989               21       33589341     33643926       CRYZL1
2990               21       33589341     33643926       CRYZL1
2991               21       33589341     33643926       CRYZL1
2992               21       33589341     33643926       CRYZL1
2993               21       33589341     33643926       CRYZL1
2994               21       33589341     33643926       CRYZL1
2995               21       33589341     33643926       CRYZL1
2996               21       33589341     33643926       CRYZL1
2997               21       33589341     33643926       CRYZL1
2998               21       33589341     33643926       CRYZL1
2999               21       33589341     33643926       CRYZL1
3000               21       33589341     33643926       CRYZL1
3001               21       33589341     33643926       CRYZL1
3002               21       33589341     33643926       CRYZL1
3003               21       33589341     33643926       CRYZL1
3004               21       33589341     33643926       CRYZL1
3005               21       33589341     33643926       CRYZL1
3006               21       33589341     33643926       CRYZL1
3007               21       33589341     33643926       CRYZL1
3008               21       33589341     33643926       CRYZL1
3009               21       33589341     33643926       CRYZL1
3010               21       33589341     33643926       CRYZL1
3011               21       33589341     33643926       CRYZL1
3012               21       33589341     33643926       CRYZL1
3013               21       33589341     33643926       CRYZL1
3014               21       33589341     33643926       CRYZL1
3015               21       33589341     33643926       CRYZL1
3016               21       33589341     33643926       CRYZL1
3017               21       33589341     33643926       CRYZL1
3018               21       33589341     33643926       CRYZL1
3019               21       33589341     33643926       CRYZL1
3020               21       33589341     33643926       CRYZL1
3021               21       33589341     33643926       CRYZL1
3022               21       33589341     33643926       CRYZL1
3023               21       33589341     33643926       CRYZL1
3024               21       33589341     33643926       CRYZL1
3025               21       33589341     33643926       CRYZL1
3026               21       33589341     33643926       CRYZL1
3027               21       33589341     33643926       CRYZL1
3028               21       33589341     33643926       CRYZL1
3029               21       33589341     33643926       CRYZL1
3030               21       33589341     33643926       CRYZL1
3031               21       33589341     33643926       CRYZL1
3032               21       33589341     33643926       CRYZL1
3033               21       33589341     33643926       CRYZL1
3034               21       33589341     33643926       CRYZL1
3035               21       33589341     33643926       CRYZL1
3036               21       33589341     33643926       CRYZL1
3037               21       33589341     33643926       CRYZL1
3038               21       33589341     33643926       CRYZL1
3039               21       33589341     33643926       CRYZL1
3040               21       33589341     33643926       CRYZL1
3041               21       33589341     33643926       CRYZL1
3042               21       33589341     33643926       CRYZL1
3043               21       33589341     33643926       CRYZL1
3044               21       33589341     33643926       CRYZL1
3045               21       33589341     33643926       CRYZL1
3046               21       33589341     33643926       CRYZL1
3047               21       33589341     33643926       CRYZL1
3048               21       33589341     33643926       CRYZL1
3049               21       33589341     33643926       CRYZL1
3050               21       33589341     33643926       CRYZL1
3051               21       33589341     33643926       CRYZL1
3052               21       33589341     33643926       CRYZL1
3053               21       33589341     33643926       CRYZL1
3054               21       33589341     33643926       CRYZL1
3055               21       33589341     33643926       CRYZL1
3056               21       33589341     33643926       CRYZL1
3057               21       33589341     33643926       CRYZL1
3058               21       33589341     33643926       CRYZL1
3059               21       33589341     33643926       CRYZL1
3060               21       33589341     33643926       CRYZL1
3061               21       33589341     33643926       CRYZL1
3062               21       33589341     33643926       CRYZL1
3063               21       33589341     33643926       CRYZL1
3064               21       33589341     33643926       CRYZL1
3065               21       33589341     33643926       CRYZL1
3066               21       33589341     33643926       CRYZL1
3067               21       33589341     33643926       CRYZL1
3068               21       33589341     33643926       CRYZL1
3069               21       33589341     33643926       CRYZL1
3070               21       33589341     33643926       CRYZL1
3071               21       33589341     33643926       CRYZL1
3072               21       33589341     33643926       CRYZL1
3073               21       33589341     33643926       CRYZL1
3074               21       33589341     33643926       CRYZL1
3075               21       33589341     33643926       CRYZL1
3076               21       33589341     33643926       CRYZL1
3077               21       33589341     33643926       CRYZL1
3078               21       33589341     33643926       CRYZL1
3079               21       33589341     33643926       CRYZL1
3080               21       33589341     33643926       CRYZL1
3081               21       33589341     33643926       CRYZL1
3082               21       33589341     33643926       CRYZL1
3083               21       33589341     33643926       CRYZL1
3084               21       33589341     33643926       CRYZL1
3085               21       33589341     33643926       CRYZL1
3086               21       33589341     33643926       CRYZL1
3087               21       33589341     33643926       CRYZL1
3088               21       33589341     33643926       CRYZL1
3089               21       33589341     33643926       CRYZL1
3090               21       33589341     33643926       CRYZL1
3091               21       33589341     33643926       CRYZL1
3092               21       33589341     33643926       CRYZL1
3093               21       33589341     33643926       CRYZL1
3094               21       33589341     33643926       CRYZL1
3095               21       33589341     33643926       CRYZL1
3096               21       33589341     33643926       CRYZL1
3097               21       33589341     33643926       CRYZL1
3098               21       33589341     33643926       CRYZL1
3099               21       33589341     33643926       CRYZL1
3100               21       33589341     33643926       CRYZL1
3101               21       33589341     33643926       CRYZL1
3102               21       33589341     33643926       CRYZL1
3103               21       33589341     33643926       CRYZL1
3104               21       33589341     33643926       CRYZL1
3105               21       33589341     33643926       CRYZL1
3106               21       33589341     33643926       CRYZL1
3107               21       33589341     33643926       CRYZL1
3108               21       33589341     33643926       CRYZL1
3109               21       33589341     33643926       CRYZL1
3110               21       33589341     33643926       CRYZL1
3111               21       33589341     33643926       CRYZL1
3112               21       33589341     33643926       CRYZL1
3113               21       33589341     33643926       CRYZL1
3114               21       33589341     33643926       CRYZL1
3115               21       33589341     33643926       CRYZL1
3116               21       33589341     33643926       CRYZL1
3117               21       33589341     33643926       CRYZL1
3118               21       33589341     33643926       CRYZL1
3119               21       33589341     33643926       CRYZL1
3120               21       33589341     33643926       CRYZL1
3121               21       33589341     33643926       CRYZL1
3122               21       33589341     33643926       CRYZL1
3123               21       33589341     33643926       CRYZL1
3124               21       33589341     33643926       CRYZL1
3125               21       33589341     33643926       CRYZL1
3126               21       33589341     33643926       CRYZL1
3127               21       33589341     33643926       CRYZL1
3128               21       33589341     33643926       CRYZL1
3129               21       33589341     33643926       CRYZL1
3130               21       33589341     33643926       CRYZL1
3131               21       33589341     33643926       CRYZL1
3132               21       33589341     33643926       CRYZL1
3133               21       33589341     33643926       CRYZL1
3134               21       33589341     33643926       CRYZL1
3135               21       33589341     33643926       CRYZL1
3136               21       33589341     33643926       CRYZL1
3137               21       33589341     33643926       CRYZL1
3138               21       33589341     33643926       CRYZL1
3139               21       33589341     33643926       CRYZL1
3140               21       33589341     33643926       CRYZL1
3141               21       33589341     33643926       CRYZL1
3142               21       33589341     33643926       CRYZL1
3143               21       33589341     33643926       CRYZL1
3144               21       33589341     33643926       CRYZL1
3145               21       33589341     33643926       CRYZL1
3146               21       33589341     33643926       CRYZL1
3147               21       33589341     33643926       CRYZL1
3148               21       33589341     33643926       CRYZL1
3149               21       39491544     39491898      RPS26P4
3150               21       29370019     29376339    BACH1-AS1
3151               21       29370019     29376339    BACH1-AS1
3152               21       29370019     29376339    BACH1-AS1
3153               21       29370019     29376339    BACH1-AS1
3154               21       33559542     33588708       DONSON
3155               21       33559542     33588708       DONSON
3156               21       33559542     33588708       DONSON
3157               21       33559542     33588708       DONSON
3158               21       33559542     33588708       DONSON
3159               21       33559542     33588708       DONSON
3160               21       33559542     33588708       DONSON
3161               21       33559542     33588708       DONSON
3162               21       33559542     33588708       DONSON
3163               21       33559542     33588708       DONSON
3164               21       33559542     33588708       DONSON
3165               21       33559542     33588708       DONSON
3166               21       33559542     33588708       DONSON
3167               21       33559542     33588708       DONSON
3168               21       33559542     33588708       DONSON
3169               21       33559542     33588708       DONSON
3170               21       33559542     33588708       DONSON
3171               21       33559542     33588708       DONSON
3172               21       33559542     33588708       DONSON
3173               21       33559542     33588708       DONSON
3174               21       33559542     33588708       DONSON
3175               21       33559542     33588708       DONSON
3176               21       33559542     33588708       DONSON
3177               21       33559542     33588708       DONSON
3178               21       33559542     33588708       DONSON
3179               21       33559542     33588708       DONSON
3180               21       33559542     33588708       DONSON
3181               21       33559542     33588708       DONSON
3182               21       33559542     33588708       DONSON
3183               21       33559542     33588708       DONSON
3184               21       33559542     33588708       DONSON
3185               21       33559542     33588708       DONSON
3186               21       33559542     33588708       DONSON
3187               21       33559542     33588708       DONSON
3188               21       33559542     33588708       DONSON
3189               21       33559542     33588708       DONSON
3190               21       33559542     33588708       DONSON
3191               21       33559542     33588708       DONSON
3192               21       33559542     33588708       DONSON
3193               21       33559542     33588708       DONSON
3194               21       33559542     33588708       DONSON
3195               21       33559542     33588708       DONSON
3196               21       33559542     33588708       DONSON
3197               21       33559542     33588708       DONSON
3198               21       33559542     33588708       DONSON
3199               21       33559542     33588708       DONSON
3200               21       33559542     33588708       DONSON
3201               21       33559542     33588708       DONSON
3202               21       33559542     33588708       DONSON
3203               21       33559542     33588708       DONSON
3204               21       33559542     33588708       DONSON
3205               21       33559542     33588708       DONSON
3206               21       33559542     33588708       DONSON
3207               21       33559542     33588708       DONSON
3208               21       33559542     33588708       DONSON
3209               21       33559542     33588708       DONSON
3210               21       33559542     33588708       DONSON
3211               21       33559542     33588708       DONSON
3212               21       33559542     33588708       DONSON
3213               21       33559542     33588708       DONSON
3214               21       33559542     33588708       DONSON
3215               21       33559542     33588708       DONSON
3216               21       33559542     33588708       DONSON
3217               21       33559542     33588708       DONSON
3218               21       33559542     33588708       DONSON
3219               21       33559542     33588708       DONSON
3220               21       33559542     33588708       DONSON
3221               21       33559542     33588708       DONSON
3222               21       33559542     33588708       DONSON
3223               21       33559542     33588708       DONSON
3224               21       33559542     33588708       DONSON
3225               21       33559542     33588708       DONSON
3226               21       33559542     33588708       DONSON
3227               21       33559542     33588708       DONSON
3228               21       33559542     33588708       DONSON
3229               21       33559542     33588708       DONSON
3230               21       33559542     33588708       DONSON
3231               21       33559542     33588708       DONSON
3232               21       33559542     33588708       DONSON
3233               21       33559542     33588708       DONSON
3234               21       33559542     33588708       DONSON
3235               21       33559542     33588708       DONSON
3236               21       33559542     33588708       DONSON
3237               21       33559542     33588708       DONSON
3238               21       33559542     33588708       DONSON
3239               21       33559542     33588708       DONSON
3240               21       33559542     33588708       DONSON
3241               21       33559542     33588708       DONSON
3242               21       33559542     33588708       DONSON
3243               21       33559542     33588708       DONSON
3244               21       33559542     33588708       DONSON
3245               21       33559542     33588708       DONSON
3246               21       33559542     33588708       DONSON
3247               21       44300051     44327376         PFKL
3248               21       44300051     44327376         PFKL
3249               21       44300051     44327376         PFKL
3250               21       44300051     44327376         PFKL
3251               21       44300051     44327376         PFKL
3252               21       44300051     44327376         PFKL
3253               21       44300051     44327376         PFKL
3254               21       44300051     44327376         PFKL
3255               21       44300051     44327376         PFKL
3256               21       44300051     44327376         PFKL
3257               21       44300051     44327376         PFKL
3258               21       44300051     44327376         PFKL
3259               21       44300051     44327376         PFKL
3260               21       44300051     44327376         PFKL
3261               21       44300051     44327376         PFKL
3262               21       44300051     44327376         PFKL
3263               21       44300051     44327376         PFKL
3264               21       44300051     44327376         PFKL
3265               21       44300051     44327376         PFKL
3266               21       44300051     44327376         PFKL
3267               21       44300051     44327376         PFKL
3268               21       44300051     44327376         PFKL
3269               21       44300051     44327376         PFKL
3270               21       44300051     44327376         PFKL
3271               21       44300051     44327376         PFKL
3272               21       44300051     44327376         PFKL
3273               21       44300051     44327376         PFKL
3274               21       44300051     44327376         PFKL
3275               21       44300051     44327376         PFKL
3276               21       44300051     44327376         PFKL
3277               21       44300051     44327376         PFKL
3278               21       44300051     44327376         PFKL
3279               21       44300051     44327376         PFKL
3280               21       44300051     44327376         PFKL
3281               21       44300051     44327376         PFKL
3282               21       44300051     44327376         PFKL
3283               21       44300051     44327376         PFKL
3284               21       44300051     44327376         PFKL
3285               21       44300051     44327376         PFKL
3286               21       44300051     44327376         PFKL
3287               21       44300051     44327376         PFKL
3288               21       44300051     44327376         PFKL
3289               21       44300051     44327376         PFKL
3290               21       44300051     44327376         PFKL
3291               21       44300051     44327376         PFKL
3292               21       44300051     44327376         PFKL
3293               21       44300051     44327376         PFKL
3294               21       44300051     44327376         PFKL
3295               21       44300051     44327376         PFKL
3296               21       44300051     44327376         PFKL
3297               21       44300051     44327376         PFKL
3298               21       44300051     44327376         PFKL
3299               21       44300051     44327376         PFKL
3300               21       44300051     44327376         PFKL
3301               21       44300051     44327376         PFKL
3302               21       44300051     44327376         PFKL
3303               21       44300051     44327376         PFKL
3304               21       44300051     44327376         PFKL
3305               21       44300051     44327376         PFKL
3306               21       44300051     44327376         PFKL
3307               21       44300051     44327376         PFKL
3308               21       44300051     44327376         PFKL
3309               21       44300051     44327376         PFKL
3310               21       44300051     44327376         PFKL
3311               21       44300051     44327376         PFKL
3312               21       44300051     44327376         PFKL
3313               21       44300051     44327376         PFKL
3314               21       44300051     44327376         PFKL
3315               21       44300051     44327376         PFKL
3316               21       44300051     44327376         PFKL
3317               21       44300051     44327376         PFKL
3318               21       44300051     44327376         PFKL
3319               21       44300051     44327376         PFKL
3320               21       44300051     44327376         PFKL
3321               21       44300051     44327376         PFKL
3322               21       44300051     44327376         PFKL
3323               21       44300051     44327376         PFKL
3324               21       44300051     44327376         PFKL
3325               21       44300051     44327376         PFKL
3326               21       44300051     44327376         PFKL
3327               21       44300051     44327376         PFKL
3328               21       44300051     44327376         PFKL
3329               21       44300051     44327376         PFKL
3330               21       44300051     44327376         PFKL
3331               21       44300051     44327376         PFKL
3332               21       44300051     44327376         PFKL
3333               21       44300051     44327376         PFKL
3334               21       44300051     44327376         PFKL
3335               21       44300051     44327376         PFKL
3336               21       44300051     44327376         PFKL
3337               21       44300051     44327376         PFKL
3338               21       44300051     44327376         PFKL
3339               21       44300051     44327376         PFKL
3340               21       44300051     44327376         PFKL
3341               21       44300051     44327376         PFKL
3342               21       44300051     44327376         PFKL
3343               21       44300051     44327376         PFKL
3344               21       44300051     44327376         PFKL
3345               21       44300051     44327376         PFKL
3346               21       44300051     44327376         PFKL
3347               21       44300051     44327376         PFKL
3348               21       44300051     44327376         PFKL
3349               21       44300051     44327376         PFKL
3350               21       44300051     44327376         PFKL
3351               21       44300051     44327376         PFKL
3352               21       44300051     44327376         PFKL
3353               21       44300051     44327376         PFKL
3354               21       44300051     44327376         PFKL
3355               21       44300051     44327376         PFKL
3356               21       44300051     44327376         PFKL
3357               21       44300051     44327376         PFKL
3358               21       44300051     44327376         PFKL
3359               21       44300051     44327376         PFKL
3360               21       44300051     44327376         PFKL
3361               21       44300051     44327376         PFKL
3362               21       44300051     44327376         PFKL
3363               21       44300051     44327376         PFKL
3364               21       44300051     44327376         PFKL
3365               21       44300051     44327376         PFKL
3366               21       44300051     44327376         PFKL
3367               21       44300051     44327376         PFKL
3368               21       44300051     44327376         PFKL
3369               21       44300051     44327376         PFKL
3370               21       44300051     44327376         PFKL
3371               21       44300051     44327376         PFKL
3372               21       44300051     44327376         PFKL
3373               21       44300051     44327376         PFKL
3374               21       44300051     44327376         PFKL
3375               21       44300051     44327376         PFKL
3376               21       44300051     44327376         PFKL
3377               21       44300051     44327376         PFKL
3378               21       44300051     44327376         PFKL
3379               21       44300051     44327376         PFKL
3380               21       44300051     44327376         PFKL
3381               21       44300051     44327376         PFKL
3382               21       44300051     44327376         PFKL
3383               21       44300051     44327376         PFKL
3384               21        8254592      8255514             
3385               21       29351634     29361894    BACH1-IT1
3386               21       29351634     29361894    BACH1-IT1
3387               21       29351634     29361894    BACH1-IT1
3388               21       29351634     29361894    BACH1-IT1
3389               21       44697172     44698044   KRTAP10-12
3390               21       44697172     44698044   KRTAP10-12
3391               21       44697172     44698044   KRTAP10-12
3392               21       44697172     44698044   KRTAP10-12
3393               21       44469929     44472516     MTCYBP21
3394               21       44469929     44472516     MTCYBP21
3395               21       44469929     44472516     MTCYBP21
3396               21       44347767     44348295             
3397               21       44328944     44330221             
3398               21       44328944     44330221             
3399               21       44328944     44330221             
3400               21       44328944     44330221             
3401               21       44328944     44330221             
3402               21       29536933     29940033        GRIK1
3403               21       29536933     29940033        GRIK1
3404               21       29536933     29940033        GRIK1
3405               21       29536933     29940033        GRIK1
3406               21       29536933     29940033        GRIK1
3407               21       29536933     29940033        GRIK1
3408               21       29536933     29940033        GRIK1
3409               21       29536933     29940033        GRIK1
3410               21       29536933     29940033        GRIK1
3411               21       29536933     29940033        GRIK1
3412               21       29536933     29940033        GRIK1
3413               21       29536933     29940033        GRIK1
3414               21       29536933     29940033        GRIK1
3415               21       29536933     29940033        GRIK1
3416               21       29536933     29940033        GRIK1
3417               21       29536933     29940033        GRIK1
3418               21       29536933     29940033        GRIK1
3419               21       29536933     29940033        GRIK1
3420               21       29536933     29940033        GRIK1
3421               21       29536933     29940033        GRIK1
3422               21       29536933     29940033        GRIK1
3423               21       29536933     29940033        GRIK1
3424               21       29536933     29940033        GRIK1
3425               21       29536933     29940033        GRIK1
3426               21       29536933     29940033        GRIK1
3427               21       29536933     29940033        GRIK1
3428               21       29536933     29940033        GRIK1
3429               21       29536933     29940033        GRIK1
3430               21       29536933     29940033        GRIK1
3431               21       29536933     29940033        GRIK1
3432               21       29536933     29940033        GRIK1
3433               21       29536933     29940033        GRIK1
3434               21       29536933     29940033        GRIK1
3435               21       29536933     29940033        GRIK1
3436               21       29536933     29940033        GRIK1
3437               21       29536933     29940033        GRIK1
3438               21       29536933     29940033        GRIK1
3439               21       29536933     29940033        GRIK1
3440               21       29536933     29940033        GRIK1
3441               21       29536933     29940033        GRIK1
3442               21       29536933     29940033        GRIK1
3443               21       29536933     29940033        GRIK1
3444               21       29536933     29940033        GRIK1
3445               21       29536933     29940033        GRIK1
3446               21       29536933     29940033        GRIK1
3447               21       29536933     29940033        GRIK1
3448               21       29536933     29940033        GRIK1
3449               21       29536933     29940033        GRIK1
3450               21       29536933     29940033        GRIK1
3451               21       29536933     29940033        GRIK1
3452               21       29536933     29940033        GRIK1
3453               21       29536933     29940033        GRIK1
3454               21       29536933     29940033        GRIK1
3455               21       29536933     29940033        GRIK1
3456               21       29536933     29940033        GRIK1
3457               21       29536933     29940033        GRIK1
3458               21       29536933     29940033        GRIK1
3459               21       29536933     29940033        GRIK1
3460               21       29536933     29940033        GRIK1
3461               21       29536933     29940033        GRIK1
3462               21       29536933     29940033        GRIK1
3463               21       29536933     29940033        GRIK1
3464               21       29536933     29940033        GRIK1
3465               21       29536933     29940033        GRIK1
3466               21       29536933     29940033        GRIK1
3467               21       29536933     29940033        GRIK1
3468               21       29536933     29940033        GRIK1
3469               21       29536933     29940033        GRIK1
3470               21       29536933     29940033        GRIK1
3471               21       29536933     29940033        GRIK1
3472               21       29536933     29940033        GRIK1
3473               21       29536933     29940033        GRIK1
3474               21       29536933     29940033        GRIK1
3475               21       29536933     29940033        GRIK1
3476               21       29536933     29940033        GRIK1
3477               21       29536933     29940033        GRIK1
3478               21       29536933     29940033        GRIK1
3479               21       29536933     29940033        GRIK1
3480               21       29536933     29940033        GRIK1
3481               21       29536933     29940033        GRIK1
3482               21       29536933     29940033        GRIK1
3483               21       29536933     29940033        GRIK1
3484               21       29536933     29940033        GRIK1
3485               21       29536933     29940033        GRIK1
3486               21       29536933     29940033        GRIK1
3487               21       29536933     29940033        GRIK1
3488               21       29536933     29940033        GRIK1
3489               21       29536933     29940033        GRIK1
3490               21       29536933     29940033        GRIK1
3491               21       29536933     29940033        GRIK1
3492               21       29536933     29940033        GRIK1
3493               21       29536933     29940033        GRIK1
3494               21       29536933     29940033        GRIK1
3495               21       29536933     29940033        GRIK1
3496               21       29536933     29940033        GRIK1
3497               21       29536933     29940033        GRIK1
3498               21       29536933     29940033        GRIK1
3499               21       29536933     29940033        GRIK1
3500               21       29536933     29940033        GRIK1
3501               21       29536933     29940033        GRIK1
3502               21       29536933     29940033        GRIK1
3503               21       29536933     29940033        GRIK1
3504               21       29536933     29940033        GRIK1
3505               21       29536933     29940033        GRIK1
3506               21       29536933     29940033        GRIK1
3507               21       29536933     29940033        GRIK1
3508               21       29536933     29940033        GRIK1
3509               21       29536933     29940033        GRIK1
3510               21       29536933     29940033        GRIK1
3511               21       29536933     29940033        GRIK1
3512               21       29536933     29940033        GRIK1
3513               21       29536933     29940033        GRIK1
3514               21       29536933     29940033        GRIK1
3515               21       29536933     29940033        GRIK1
3516               21       29536933     29940033        GRIK1
3517               21       29536933     29940033        GRIK1
3518               21       29536933     29940033        GRIK1
3519               21       29536933     29940033        GRIK1
3520               21       29536933     29940033        GRIK1
3521               21       29536933     29940033        GRIK1
3522               21       29536933     29940033        GRIK1
3523               21       29536933     29940033        GRIK1
3524               21       29536933     29940033        GRIK1
3525               21       29536933     29940033        GRIK1
3526               21       29536933     29940033        GRIK1
3527               21       29536933     29940033        GRIK1
3528               21        7744962      7777853      SMIM11B
3529               21        7744962      7777853      SMIM11B
3530               21        7744962      7777853      SMIM11B
3531               21        7744962      7777853      SMIM11B
3532               21        7744962      7777853      SMIM11B
3533               21        7744962      7777853      SMIM11B
3534               21        7744962      7777853      SMIM11B
3535               21        7744962      7777853      SMIM11B
3536               21        7744962      7777853      SMIM11B
3537               21        7744962      7777853      SMIM11B
3538               21        7744962      7777853      SMIM11B
3539               21        7744962      7777853      SMIM11B
3540               21        7744962      7777853      SMIM11B
3541               21        7744962      7777853      SMIM11B
3542               21        7744962      7777853      SMIM11B
3543               21        7744962      7777853      SMIM11B
3544               21        7744962      7777853      SMIM11B
3545               21        7744962      7777853      SMIM11B
3546               21        7744962      7777853      SMIM11B
3547               21        7744962      7777853      SMIM11B
3548               21        7744962      7777853      SMIM11B
3549               21        7744962      7777853      SMIM11B
3550               21        7744962      7777853      SMIM11B
3551               21        7744962      7777853      SMIM11B
3552               21        7744962      7777853      SMIM11B
3553               21        7744962      7777853      SMIM11B
3554               21        7744962      7777853      SMIM11B
3555               21        7421442      7425839             
3556               21        7421442      7425839             
3557               21        7421442      7425839             
3558               21        7421442      7425839             
3559               21        7421442      7425839             
3560               21        7421442      7425839             
3561               21        7421442      7425839             
3562               21        7421442      7425839             
3563               21        7421442      7425839             
3564               21        7421442      7425839             
3565               21       28997613     28998033      RPL23P2
3566               21       46188141     46228824          LSS
3567               21       46188141     46228824          LSS
3568               21       46188141     46228824          LSS
3569               21       46188141     46228824          LSS
3570               21       46188141     46228824          LSS
3571               21       46188141     46228824          LSS
3572               21       46188141     46228824          LSS
3573               21       46188141     46228824          LSS
3574               21       46188141     46228824          LSS
3575               21       46188141     46228824          LSS
3576               21       46188141     46228824          LSS
3577               21       46188141     46228824          LSS
3578               21       46188141     46228824          LSS
3579               21       46188141     46228824          LSS
3580               21       46188141     46228824          LSS
3581               21       46188141     46228824          LSS
3582               21       46188141     46228824          LSS
3583               21       46188141     46228824          LSS
3584               21       46188141     46228824          LSS
3585               21       46188141     46228824          LSS
3586               21       46188141     46228824          LSS
3587               21       46188141     46228824          LSS
3588               21       46188141     46228824          LSS
3589               21       46188141     46228824          LSS
3590               21       46188141     46228824          LSS
3591               21       46188141     46228824          LSS
3592               21       46188141     46228824          LSS
3593               21       46188141     46228824          LSS
3594               21       46188141     46228824          LSS
3595               21       46188141     46228824          LSS
3596               21       46188141     46228824          LSS
3597               21       46188141     46228824          LSS
3598               21       46188141     46228824          LSS
3599               21       46188141     46228824          LSS
3600               21       46188141     46228824          LSS
3601               21       46188141     46228824          LSS
3602               21       46188141     46228824          LSS
3603               21       46188141     46228824          LSS
3604               21       46188141     46228824          LSS
3605               21       46188141     46228824          LSS
3606               21       46188141     46228824          LSS
3607               21       46188141     46228824          LSS
3608               21       46188141     46228824          LSS
3609               21       46188141     46228824          LSS
3610               21       46188141     46228824          LSS
3611               21       46188141     46228824          LSS
3612               21       46188141     46228824          LSS
3613               21       46188141     46228824          LSS
3614               21       46188141     46228824          LSS
3615               21       46188141     46228824          LSS
3616               21       46188141     46228824          LSS
3617               21       46188141     46228824          LSS
3618               21       46188141     46228824          LSS
3619               21       46188141     46228824          LSS
3620               21       46188141     46228824          LSS
3621               21       46188141     46228824          LSS
3622               21       46188141     46228824          LSS
3623               21       46188141     46228824          LSS
3624               21       46188141     46228824          LSS
3625               21       46188141     46228824          LSS
3626               21       46188141     46228824          LSS
3627               21       46188141     46228824          LSS
3628               21       46188141     46228824          LSS
3629               21       46188141     46228824          LSS
3630               21       46188141     46228824          LSS
3631               21       46188141     46228824          LSS
3632               21       46188141     46228824          LSS
3633               21       46188141     46228824          LSS
3634               21       46188141     46228824          LSS
3635               21       46188141     46228824          LSS
3636               21       46188141     46228824          LSS
3637               21       46188141     46228824          LSS
3638               21       46188141     46228824          LSS
3639               21       46188141     46228824          LSS
3640               21       46188141     46228824          LSS
3641               21       46188141     46228824          LSS
3642               21       46188141     46228824          LSS
3643               21       46188141     46228824          LSS
3644               21       46188141     46228824          LSS
3645               21       46188141     46228824          LSS
3646               21       46188141     46228824          LSS
3647               21       46188141     46228824          LSS
3648               21       46188141     46228824          LSS
3649               21       46188141     46228824          LSS
3650               21       46188141     46228824          LSS
3651               21       46188141     46228824          LSS
3652               21       46188141     46228824          LSS
3653               21       46188141     46228824          LSS
3654               21       46188141     46228824          LSS
3655               21       46188141     46228824          LSS
3656               21       46188141     46228824          LSS
3657               21       46188141     46228824          LSS
3658               21       46188141     46228824          LSS
3659               21       46188141     46228824          LSS
3660               21       46188141     46228824          LSS
3661               21       46188141     46228824          LSS
3662               21       46188141     46228824          LSS
3663               21       46188141     46228824          LSS
3664               21       46188141     46228824          LSS
3665               21       46188141     46228824          LSS
3666               21       46188141     46228824          LSS
3667               21       46188141     46228824          LSS
3668               21       46188141     46228824          LSS
3669               21       46188141     46228824          LSS
3670               21       46188141     46228824          LSS
3671               21       46188141     46228824          LSS
3672               21       46188141     46228824          LSS
3673               21       46188141     46228824          LSS
3674               21       46188141     46228824          LSS
3675               21       46188141     46228824          LSS
3676               21       46188141     46228824          LSS
3677               21       46188141     46228824          LSS
3678               21       46188141     46228824          LSS
3679               21       46188141     46228824          LSS
3680               21       46188141     46228824          LSS
3681               21       41798225     41879482       PRDM15
3682               21       41798225     41879482       PRDM15
3683               21       41798225     41879482       PRDM15
3684               21       41798225     41879482       PRDM15
3685               21       41798225     41879482       PRDM15
3686               21       41798225     41879482       PRDM15
3687               21       41798225     41879482       PRDM15
3688               21       41798225     41879482       PRDM15
3689               21       41798225     41879482       PRDM15
3690               21       41798225     41879482       PRDM15
3691               21       41798225     41879482       PRDM15
3692               21       41798225     41879482       PRDM15
3693               21       41798225     41879482       PRDM15
3694               21       41798225     41879482       PRDM15
3695               21       41798225     41879482       PRDM15
3696               21       41798225     41879482       PRDM15
3697               21       41798225     41879482       PRDM15
3698               21       41798225     41879482       PRDM15
3699               21       41798225     41879482       PRDM15
3700               21       41798225     41879482       PRDM15
3701               21       41798225     41879482       PRDM15
3702               21       41798225     41879482       PRDM15
3703               21       41798225     41879482       PRDM15
3704               21       41798225     41879482       PRDM15
3705               21       41798225     41879482       PRDM15
3706               21       41798225     41879482       PRDM15
3707               21       41798225     41879482       PRDM15
3708               21       41798225     41879482       PRDM15
3709               21       41798225     41879482       PRDM15
3710               21       41798225     41879482       PRDM15
3711               21       41798225     41879482       PRDM15
3712               21       41798225     41879482       PRDM15
3713               21       41798225     41879482       PRDM15
3714               21       41798225     41879482       PRDM15
3715               21       41798225     41879482       PRDM15
3716               21       41798225     41879482       PRDM15
3717               21       41798225     41879482       PRDM15
3718               21       41798225     41879482       PRDM15
3719               21       41798225     41879482       PRDM15
3720               21       41798225     41879482       PRDM15
3721               21       41798225     41879482       PRDM15
3722               21       41798225     41879482       PRDM15
3723               21       41798225     41879482       PRDM15
3724               21       41798225     41879482       PRDM15
3725               21       41798225     41879482       PRDM15
3726               21       41798225     41879482       PRDM15
3727               21       41798225     41879482       PRDM15
3728               21       41798225     41879482       PRDM15
3729               21       41798225     41879482       PRDM15
3730               21       41798225     41879482       PRDM15
3731               21       41798225     41879482       PRDM15
3732               21       41798225     41879482       PRDM15
3733               21       41798225     41879482       PRDM15
3734               21       41798225     41879482       PRDM15
3735               21       41798225     41879482       PRDM15
3736               21       41798225     41879482       PRDM15
3737               21       41798225     41879482       PRDM15
3738               21       41798225     41879482       PRDM15
3739               21       41798225     41879482       PRDM15
3740               21       41798225     41879482       PRDM15
3741               21       41798225     41879482       PRDM15
3742               21       41798225     41879482       PRDM15
3743               21       41798225     41879482       PRDM15
3744               21       41798225     41879482       PRDM15
3745               21       41798225     41879482       PRDM15
3746               21       41798225     41879482       PRDM15
3747               21       41798225     41879482       PRDM15
3748               21       41798225     41879482       PRDM15
3749               21       41798225     41879482       PRDM15
3750               21       41798225     41879482       PRDM15
3751               21       41798225     41879482       PRDM15
3752               21       41798225     41879482       PRDM15
3753               21       41798225     41879482       PRDM15
3754               21       41798225     41879482       PRDM15
3755               21       41798225     41879482       PRDM15
3756               21       41798225     41879482       PRDM15
3757               21       41798225     41879482       PRDM15
3758               21       41798225     41879482       PRDM15
3759               21       41798225     41879482       PRDM15
3760               21       41798225     41879482       PRDM15
3761               21       41798225     41879482       PRDM15
3762               21       41798225     41879482       PRDM15
3763               21       41798225     41879482       PRDM15
3764               21       41798225     41879482       PRDM15
3765               21       41798225     41879482       PRDM15
3766               21       41798225     41879482       PRDM15
3767               21       41798225     41879482       PRDM15
3768               21       41798225     41879482       PRDM15
3769               21       41798225     41879482       PRDM15
3770               21       41798225     41879482       PRDM15
3771               21       41798225     41879482       PRDM15
3772               21       41798225     41879482       PRDM15
3773               21       41798225     41879482       PRDM15
3774               21       41798225     41879482       PRDM15
3775               21       41798225     41879482       PRDM15
3776               21       41798225     41879482       PRDM15
3777               21       41798225     41879482       PRDM15
3778               21       41798225     41879482       PRDM15
3779               21       41798225     41879482       PRDM15
3780               21       41798225     41879482       PRDM15
3781               21       41798225     41879482       PRDM15
3782               21       41798225     41879482       PRDM15
3783               21       41798225     41879482       PRDM15
3784               21       41798225     41879482       PRDM15
3785               21       41798225     41879482       PRDM15
3786               21       41798225     41879482       PRDM15
3787               21       41798225     41879482       PRDM15
3788               21       41798225     41879482       PRDM15
3789               21       41798225     41879482       PRDM15
3790               21       41798225     41879482       PRDM15
3791               21       41798225     41879482       PRDM15
3792               21       41798225     41879482       PRDM15
3793               21       41798225     41879482       PRDM15
3794               21       41798225     41879482       PRDM15
3795               21       41798225     41879482       PRDM15
3796               21       41798225     41879482       PRDM15
3797               21       41798225     41879482       PRDM15
3798               21       41798225     41879482       PRDM15
3799               21       41798225     41879482       PRDM15
3800               21       41798225     41879482       PRDM15
3801               21       41798225     41879482       PRDM15
3802               21       41798225     41879482       PRDM15
3803               21       41798225     41879482       PRDM15
3804               21       41798225     41879482       PRDM15
3805               21       41798225     41879482       PRDM15
3806               21       41798225     41879482       PRDM15
3807               21       41798225     41879482       PRDM15
3808               21       41798225     41879482       PRDM15
3809               21       41798225     41879482       PRDM15
3810               21       41798225     41879482       PRDM15
3811               21       41798225     41879482       PRDM15
3812               21       41798225     41879482       PRDM15
3813               21       41798225     41879482       PRDM15
3814               21       41798225     41879482       PRDM15
3815               21       41798225     41879482       PRDM15
3816               21       41798225     41879482       PRDM15
3817               21       41798225     41879482       PRDM15
3818               21       41798225     41879482       PRDM15
3819               21       41798225     41879482       PRDM15
3820               21       41798225     41879482       PRDM15
3821               21       41798225     41879482       PRDM15
3822               21       41798225     41879482       PRDM15
3823               21       41798225     41879482       PRDM15
3824               21       41798225     41879482       PRDM15
3825               21       41798225     41879482       PRDM15
3826               21       41798225     41879482       PRDM15
3827               21       41798225     41879482       PRDM15
3828               21       41798225     41879482       PRDM15
3829               21       41798225     41879482       PRDM15
3830               21       41798225     41879482       PRDM15
3831               21       41798225     41879482       PRDM15
3832               21       41798225     41879482       PRDM15
3833               21       41798225     41879482       PRDM15
3834               21       41798225     41879482       PRDM15
3835               21       41798225     41879482       PRDM15
3836               21       41798225     41879482       PRDM15
3837               21       41798225     41879482       PRDM15
3838               21       41798225     41879482       PRDM15
3839               21       41798225     41879482       PRDM15
3840               21       41798225     41879482       PRDM15
3841               21       41798225     41879482       PRDM15
3842               21       41798225     41879482       PRDM15
3843               21       41798225     41879482       PRDM15
3844               21       41798225     41879482       PRDM15
3845               21       41798225     41879482       PRDM15
3846               21       41798225     41879482       PRDM15
3847               21       41798225     41879482       PRDM15
3848               21       41798225     41879482       PRDM15
3849               21       41798225     41879482       PRDM15
3850               21       41798225     41879482       PRDM15
3851               21       41798225     41879482       PRDM15
3852               21       41798225     41879482       PRDM15
3853               21       41798225     41879482       PRDM15
3854               21       41798225     41879482       PRDM15
3855               21       41798225     41879482       PRDM15
3856               21       41798225     41879482       PRDM15
3857               21       41798225     41879482       PRDM15
3858               21       41798225     41879482       PRDM15
3859               21       41798225     41879482       PRDM15
3860               21       41798225     41879482       PRDM15
3861               21       41798225     41879482       PRDM15
3862               21       41798225     41879482       PRDM15
3863               21       41798225     41879482       PRDM15
3864               21       41798225     41879482       PRDM15
3865               21       41798225     41879482       PRDM15
3866               21       41798225     41879482       PRDM15
3867               21       41798225     41879482       PRDM15
3868               21       41798225     41879482       PRDM15
3869               21       41798225     41879482       PRDM15
3870               21       41798225     41879482       PRDM15
3871               21       41798225     41879482       PRDM15
3872               21       41798225     41879482       PRDM15
3873               21       41798225     41879482       PRDM15
3874               21       41798225     41879482       PRDM15
3875               21       41798225     41879482       PRDM15
3876               21       41798225     41879482       PRDM15
3877               21       41798225     41879482       PRDM15
3878               21       41798225     41879482       PRDM15
3879               21       41798225     41879482       PRDM15
3880               21       41798225     41879482       PRDM15
3881               21       41798225     41879482       PRDM15
3882               21       41798225     41879482       PRDM15
3883               21       41798225     41879482       PRDM15
3884               21       41798225     41879482       PRDM15
3885               21       41798225     41879482       PRDM15
3886               21       41798225     41879482       PRDM15
3887               21       41798225     41879482       PRDM15
3888               21       41798225     41879482       PRDM15
3889               21       41798225     41879482       PRDM15
3890               21       41798225     41879482       PRDM15
3891               21       41798225     41879482       PRDM15
3892               21       41798225     41879482       PRDM15
3893               21       41798225     41879482       PRDM15
3894               21       41798225     41879482       PRDM15
3895               21       41798225     41879482       PRDM15
3896               21       41798225     41879482       PRDM15
3897               21       41798225     41879482       PRDM15
3898               21       41798225     41879482       PRDM15
3899               21       41798225     41879482       PRDM15
3900               21       41798225     41879482       PRDM15
3901               21       41798225     41879482       PRDM15
3902               21       41798225     41879482       PRDM15
3903               21       41798225     41879482       PRDM15
3904               21       41798225     41879482       PRDM15
3905               21       41798225     41879482       PRDM15
3906               21       41798225     41879482       PRDM15
3907               21       41798225     41879482       PRDM15
3908               21       41798225     41879482       PRDM15
3909               21       41798225     41879482       PRDM15
3910               21       41798225     41879482       PRDM15
3911               21       41798225     41879482       PRDM15
3912               21       41798225     41879482       PRDM15
3913               21       41798225     41879482       PRDM15
3914               21       41798225     41879482       PRDM15
3915               21       41798225     41879482       PRDM15
3916               21       41798225     41879482       PRDM15
3917               21       41798225     41879482       PRDM15
3918               21       41798225     41879482       PRDM15
3919               21       41798225     41879482       PRDM15
3920               21       41798225     41879482       PRDM15
3921               21       41798225     41879482       PRDM15
3922               21       41798225     41879482       PRDM15
3923               21       41798225     41879482       PRDM15
3924               21       41798225     41879482       PRDM15
3925               21       41798225     41879482       PRDM15
3926               21       41798225     41879482       PRDM15
3927               21       41798225     41879482       PRDM15
3928               21       41798225     41879482       PRDM15
3929               21       41798225     41879482       PRDM15
3930               21       41798225     41879482       PRDM15
3931               21       41798225     41879482       PRDM15
3932               21       41798225     41879482       PRDM15
3933               21       29077471     29175889     MAP3K7CL
3934               21       29077471     29175889     MAP3K7CL
3935               21       29077471     29175889     MAP3K7CL
3936               21       29077471     29175889     MAP3K7CL
3937               21       29077471     29175889     MAP3K7CL
3938               21       29077471     29175889     MAP3K7CL
3939               21       29077471     29175889     MAP3K7CL
3940               21       29077471     29175889     MAP3K7CL
3941               21       29077471     29175889     MAP3K7CL
3942               21       29077471     29175889     MAP3K7CL
3943               21       29077471     29175889     MAP3K7CL
3944               21       29077471     29175889     MAP3K7CL
3945               21       29077471     29175889     MAP3K7CL
3946               21       29077471     29175889     MAP3K7CL
3947               21       29077471     29175889     MAP3K7CL
3948               21       29077471     29175889     MAP3K7CL
3949               21       29077471     29175889     MAP3K7CL
3950               21       29077471     29175889     MAP3K7CL
3951               21       29077471     29175889     MAP3K7CL
3952               21       29077471     29175889     MAP3K7CL
3953               21       29077471     29175889     MAP3K7CL
3954               21       29077471     29175889     MAP3K7CL
3955               21       29077471     29175889     MAP3K7CL
3956               21       29077471     29175889     MAP3K7CL
3957               21       29077471     29175889     MAP3K7CL
3958               21       29077471     29175889     MAP3K7CL
3959               21       29077471     29175889     MAP3K7CL
3960               21       29077471     29175889     MAP3K7CL
3961               21       29077471     29175889     MAP3K7CL
3962               21       29077471     29175889     MAP3K7CL
3963               21       29077471     29175889     MAP3K7CL
3964               21       29077471     29175889     MAP3K7CL
3965               21       29077471     29175889     MAP3K7CL
3966               21       29077471     29175889     MAP3K7CL
3967               21       29077471     29175889     MAP3K7CL
3968               21       29077471     29175889     MAP3K7CL
3969               21       29077471     29175889     MAP3K7CL
3970               21       29077471     29175889     MAP3K7CL
3971               21       29077471     29175889     MAP3K7CL
3972               21       29077471     29175889     MAP3K7CL
3973               21       29077471     29175889     MAP3K7CL
3974               21       29077471     29175889     MAP3K7CL
3975               21       29077471     29175889     MAP3K7CL
3976               21       29077471     29175889     MAP3K7CL
3977               21       29077471     29175889     MAP3K7CL
3978               21       29077471     29175889     MAP3K7CL
3979               21       29077471     29175889     MAP3K7CL
3980               21       29077471     29175889     MAP3K7CL
3981               21       29077471     29175889     MAP3K7CL
3982               21       29077471     29175889     MAP3K7CL
3983               21       29077471     29175889     MAP3K7CL
3984               21       29077471     29175889     MAP3K7CL
3985               21       29077471     29175889     MAP3K7CL
3986               21       29077471     29175889     MAP3K7CL
3987               21       29077471     29175889     MAP3K7CL
3988               21       29077471     29175889     MAP3K7CL
3989               21       29077471     29175889     MAP3K7CL
3990               21       29077471     29175889     MAP3K7CL
3991               21       29077471     29175889     MAP3K7CL
3992               21       29077471     29175889     MAP3K7CL
3993               21       29077471     29175889     MAP3K7CL
3994               21       29077471     29175889     MAP3K7CL
3995               21       29077471     29175889     MAP3K7CL
3996               21       29077471     29175889     MAP3K7CL
3997               21       29077471     29175889     MAP3K7CL
3998               21       29077471     29175889     MAP3K7CL
3999               21       29077471     29175889     MAP3K7CL
4000               21       29077471     29175889     MAP3K7CL
4001               21       29077471     29175889     MAP3K7CL
4002               21       29077471     29175889     MAP3K7CL
4003               21       29077471     29175889     MAP3K7CL
4004               21       29077471     29175889     MAP3K7CL
4005               21       29077471     29175889     MAP3K7CL
4006               21       29077471     29175889     MAP3K7CL
4007               21       29077471     29175889     MAP3K7CL
4008               21       29077471     29175889     MAP3K7CL
4009               21       29077471     29175889     MAP3K7CL
4010               21       29077471     29175889     MAP3K7CL
4011               21       29077471     29175889     MAP3K7CL
4012               21       29077471     29175889     MAP3K7CL
4013               21       29077471     29175889     MAP3K7CL
4014               21       29077471     29175889     MAP3K7CL
4015               21       29077471     29175889     MAP3K7CL
4016               21       29077471     29175889     MAP3K7CL
4017               21       29077471     29175889     MAP3K7CL
4018               21       29077471     29175889     MAP3K7CL
4019               21       29077471     29175889     MAP3K7CL
4020               21       29077471     29175889     MAP3K7CL
4021               21       29077471     29175889     MAP3K7CL
4022               21       29077471     29175889     MAP3K7CL
4023               21       29077471     29175889     MAP3K7CL
4024               21       29077471     29175889     MAP3K7CL
4025               21       29077471     29175889     MAP3K7CL
4026               21       29077471     29175889     MAP3K7CL
4027               21       29077471     29175889     MAP3K7CL
4028               21       29077471     29175889     MAP3K7CL
4029               21       29077471     29175889     MAP3K7CL
4030               21       29077471     29175889     MAP3K7CL
4031               21       29077471     29175889     MAP3K7CL
4032               21       29077471     29175889     MAP3K7CL
4033               21       29127701     29128188      RPL12P9
4034               21        6060340      6076305    LINC01669
4035               21        6060340      6076305    LINC01669
4036               21        6060340      6076305    LINC01669
4037               21        6060340      6076305    LINC01669
4038               21        6060340      6076305    LINC01669
4039               21        6060340      6076305    LINC01669
4040               21        6060340      6076305    LINC01669
4041               21        6060340      6076305    LINC01669
4042               21        6060340      6076305    LINC01669
4043               21        6060340      6076305    LINC01669
4044               21        6060340      6076305    LINC01669
4045               21        6060340      6076305    LINC01669
4046               21        6060340      6076305    LINC01669
4047               21        6060340      6076305    LINC01669
4048               21        6060340      6076305    LINC01669
4049               21        5703182      5705637             
4050               21        5705345      5707160             
4051               21        5705345      5707160             
4052               21       23065491     23131206             
4053               21       23065491     23131206             
4054               21       23065491     23131206             
4055               21       23065491     23131206             
4056               21       23065491     23131206             
4057               21       22008944     22098459    LINC01687
4058               21       22008944     22098459    LINC01687
4059               21       22008944     22098459    LINC01687
4060               21       22008944     22098459    LINC01687
4061               21       22008944     22098459    LINC01687
4062               21       22008944     22098459    LINC01687
4063               21       22008944     22098459    LINC01687
4064               21       22008944     22098459    LINC01687
4065               21       22008944     22098459    LINC01687
4066               21       22008944     22098459    LINC01687
4067               21       22008944     22098459    LINC01687
4068               21       22008944     22098459    LINC01687
4069               21       21933315     21975681             
4070               21       21933315     21975681             
4071               21       21933315     21975681             
4072               21       36060432     36064408             
4073               21       36060432     36064408             
4074               21       36060432     36064408             
4075               21       19893279     19899755    LINC01683
4076               21       19893279     19899755    LINC01683
4077               21       19893279     19899755    LINC01683
4078               21       32412006     32515397        EVA1C
4079               21       32412006     32515397        EVA1C
4080               21       32412006     32515397        EVA1C
4081               21       32412006     32515397        EVA1C
4082               21       32412006     32515397        EVA1C
4083               21       32412006     32515397        EVA1C
4084               21       32412006     32515397        EVA1C
4085               21       32412006     32515397        EVA1C
4086               21       32412006     32515397        EVA1C
4087               21       32412006     32515397        EVA1C
4088               21       32412006     32515397        EVA1C
4089               21       32412006     32515397        EVA1C
4090               21       32412006     32515397        EVA1C
4091               21       32412006     32515397        EVA1C
4092               21       32412006     32515397        EVA1C
4093               21       32412006     32515397        EVA1C
4094               21       32412006     32515397        EVA1C
4095               21       32412006     32515397        EVA1C
4096               21       32412006     32515397        EVA1C
4097               21       32412006     32515397        EVA1C
4098               21       32412006     32515397        EVA1C
4099               21       32412006     32515397        EVA1C
4100               21       32412006     32515397        EVA1C
4101               21       32412006     32515397        EVA1C
4102               21       32412006     32515397        EVA1C
4103               21       32412006     32515397        EVA1C
4104               21       32412006     32515397        EVA1C
4105               21       32412006     32515397        EVA1C
4106               21       32412006     32515397        EVA1C
4107               21       32412006     32515397        EVA1C
4108               21       32412006     32515397        EVA1C
4109               21       32412006     32515397        EVA1C
4110               21       32412006     32515397        EVA1C
4111               21       32412006     32515397        EVA1C
4112               21       32412006     32515397        EVA1C
4113               21       32412006     32515397        EVA1C
4114               21       32412006     32515397        EVA1C
4115               21       32412006     32515397        EVA1C
4116               21       32412006     32515397        EVA1C
4117               21       32412006     32515397        EVA1C
4118               21       32412006     32515397        EVA1C
4119               21       32412006     32515397        EVA1C
4120               21       32412006     32515397        EVA1C
4121               21       32412006     32515397        EVA1C
4122               21       32412006     32515397        EVA1C
4123               21       32412006     32515397        EVA1C
4124               21       32412006     32515397        EVA1C
4125               21       32412006     32515397        EVA1C
4126               21       32412006     32515397        EVA1C
4127               21       32412006     32515397        EVA1C
4128               21       32412006     32515397        EVA1C
4129               21       32412006     32515397        EVA1C
4130               21       32412006     32515397        EVA1C
4131               21       32412006     32515397        EVA1C
4132               21       32412006     32515397        EVA1C
4133               21       32412006     32515397        EVA1C
4134               21       32412006     32515397        EVA1C
4135               21       32412006     32515397        EVA1C
4136               21       32412006     32515397        EVA1C
4137               21       32412006     32515397        EVA1C
4138               21       32412006     32515397        EVA1C
4139               21       32412006     32515397        EVA1C
4140               21       32412006     32515397        EVA1C
4141               21       32412006     32515397        EVA1C
4142               21       32412006     32515397        EVA1C
4143               21       32412006     32515397        EVA1C
4144               21       32412006     32515397        EVA1C
4145               21       32412006     32515397        EVA1C
4146               21       32412006     32515397        EVA1C
4147               21       32412006     32515397        EVA1C
4148               21       32412006     32515397        EVA1C
4149               21       32412006     32515397        EVA1C
4150               21       32412006     32515397        EVA1C
4151               21       38988707     39006153             
4152               21       38988707     39006153             
4153               21       38988707     39006153             
4154               21       14064325     14069087  ANKRD20A18P
4155               21       14064325     14069087  ANKRD20A18P
4156               21       14064325     14069087  ANKRD20A18P
4157               21       13120244     13120807             
4158               21       31118416     31559977        TIAM1
4159               21       31118416     31559977        TIAM1
4160               21       31118416     31559977        TIAM1
4161               21       31118416     31559977        TIAM1
4162               21       31118416     31559977        TIAM1
4163               21       31118416     31559977        TIAM1
4164               21       31118416     31559977        TIAM1
4165               21       31118416     31559977        TIAM1
4166               21       31118416     31559977        TIAM1
4167               21       31118416     31559977        TIAM1
4168               21       31118416     31559977        TIAM1
4169               21       31118416     31559977        TIAM1
4170               21       31118416     31559977        TIAM1
4171               21       31118416     31559977        TIAM1
4172               21       31118416     31559977        TIAM1
4173               21       31118416     31559977        TIAM1
4174               21       31118416     31559977        TIAM1
4175               21       31118416     31559977        TIAM1
4176               21       31118416     31559977        TIAM1
4177               21       31118416     31559977        TIAM1
4178               21       31118416     31559977        TIAM1
4179               21       31118416     31559977        TIAM1
4180               21       31118416     31559977        TIAM1
4181               21       31118416     31559977        TIAM1
4182               21       31118416     31559977        TIAM1
4183               21       31118416     31559977        TIAM1
4184               21       31118416     31559977        TIAM1
4185               21       31118416     31559977        TIAM1
4186               21       31118416     31559977        TIAM1
4187               21       31118416     31559977        TIAM1
4188               21       31118416     31559977        TIAM1
4189               21       31118416     31559977        TIAM1
4190               21       31118416     31559977        TIAM1
4191               21       31118416     31559977        TIAM1
4192               21       31118416     31559977        TIAM1
4193               21       31118416     31559977        TIAM1
4194               21       31118416     31559977        TIAM1
4195               21       31118416     31559977        TIAM1
4196               21       31118416     31559977        TIAM1
4197               21       31118416     31559977        TIAM1
4198               21       31118416     31559977        TIAM1
4199               21       31118416     31559977        TIAM1
4200               21       31118416     31559977        TIAM1
4201               21       31118416     31559977        TIAM1
4202               21       31118416     31559977        TIAM1
4203               21       31118416     31559977        TIAM1
4204               21       31118416     31559977        TIAM1
4205               21       31118416     31559977        TIAM1
4206               21       31118416     31559977        TIAM1
4207               21       31118416     31559977        TIAM1
4208               21       31118416     31559977        TIAM1
4209               21       31118416     31559977        TIAM1
4210               21       31118416     31559977        TIAM1
4211               21       31118416     31559977        TIAM1
4212               21       31118416     31559977        TIAM1
4213               21       31118416     31559977        TIAM1
4214               21       31118416     31559977        TIAM1
4215               21       31118416     31559977        TIAM1
4216               21       31118416     31559977        TIAM1
4217               21       31118416     31559977        TIAM1
4218               21       31118416     31559977        TIAM1
4219               21       31118416     31559977        TIAM1
4220               21       31118416     31559977        TIAM1
4221               21       31118416     31559977        TIAM1
4222               21       31118416     31559977        TIAM1
4223               21       31118416     31559977        TIAM1
4224               21       31118416     31559977        TIAM1
4225               21       31118416     31559977        TIAM1
4226               21       31118416     31559977        TIAM1
4227               21       31118416     31559977        TIAM1
4228               21       31118416     31559977        TIAM1
4229               21       31118416     31559977        TIAM1
4230               21       31118416     31559977        TIAM1
4231               21       31118416     31559977        TIAM1
4232               21       31118416     31559977        TIAM1
4233               21       31118416     31559977        TIAM1
4234               21       31118416     31559977        TIAM1
4235               21       31118416     31559977        TIAM1
4236               21       31118416     31559977        TIAM1
4237               21       31118416     31559977        TIAM1
4238               21       31118416     31559977        TIAM1
4239               21       31118416     31559977        TIAM1
4240               21       31118416     31559977        TIAM1
4241               21       31118416     31559977        TIAM1
4242               21       31118416     31559977        TIAM1
4243               21       31118416     31559977        TIAM1
4244               21       31118416     31559977        TIAM1
4245               21       31118416     31559977        TIAM1
4246               21       31118416     31559977        TIAM1
4247               21       25639272     25717562         JAM2
4248               21       25639272     25717562         JAM2
4249               21       25639272     25717562         JAM2
4250               21       25639272     25717562         JAM2
4251               21       25639272     25717562         JAM2
4252               21       25639272     25717562         JAM2
4253               21       25639272     25717562         JAM2
4254               21       25639272     25717562         JAM2
4255               21       25639272     25717562         JAM2
4256               21       25639272     25717562         JAM2
4257               21       25639272     25717562         JAM2
4258               21       25639272     25717562         JAM2
4259               21       25639272     25717562         JAM2
4260               21       25639272     25717562         JAM2
4261               21       25639272     25717562         JAM2
4262               21       25639272     25717562         JAM2
4263               21       25639272     25717562         JAM2
4264               21       25639272     25717562         JAM2
4265               21       25639272     25717562         JAM2
4266               21       25639272     25717562         JAM2
4267               21       25639272     25717562         JAM2
4268               21       25639272     25717562         JAM2
4269               21       25639272     25717562         JAM2
4270               21       25639272     25717562         JAM2
4271               21       25639272     25717562         JAM2
4272               21       25639272     25717562         JAM2
4273               21       25639272     25717562         JAM2
4274               21       25639272     25717562         JAM2
4275               21       25639272     25717562         JAM2
4276               21       25639272     25717562         JAM2
4277               21       25639272     25717562         JAM2
4278               21       25639272     25717562         JAM2
4279               21       25639272     25717562         JAM2
4280               21       25639272     25717562         JAM2
4281               21       25639272     25717562         JAM2
4282               21       25639272     25717562         JAM2
4283               21       25639272     25717562         JAM2
4284               21       25639272     25717562         JAM2
4285               21       25639272     25717562         JAM2
4286               21       25639272     25717562         JAM2
4287               21       25639272     25717562         JAM2
4288               21       25639272     25717562         JAM2
4289               21       25639272     25717562         JAM2
4290               21       25639272     25717562         JAM2
4291               21       25639272     25717562         JAM2
4292               21       25639272     25717562         JAM2
4293               21       30501657     30502117    KRTAP19-5
4294               21       44414588     44425272     TRPM2-AS
4295               21       44414588     44425272     TRPM2-AS
4296               21       44414588     44425272     TRPM2-AS
4297               21       44414588     44425272     TRPM2-AS
4298               21       44414588     44425272     TRPM2-AS
4299               21       44350163     44443081        TRPM2
4300               21       44350163     44443081        TRPM2
4301               21       44350163     44443081        TRPM2
4302               21       44350163     44443081        TRPM2
4303               21       44350163     44443081        TRPM2
4304               21       44350163     44443081        TRPM2
4305               21       44350163     44443081        TRPM2
4306               21       44350163     44443081        TRPM2
4307               21       44350163     44443081        TRPM2
4308               21       44350163     44443081        TRPM2
4309               21       44350163     44443081        TRPM2
4310               21       44350163     44443081        TRPM2
4311               21       44350163     44443081        TRPM2
4312               21       44350163     44443081        TRPM2
4313               21       44350163     44443081        TRPM2
4314               21       44350163     44443081        TRPM2
4315               21       44350163     44443081        TRPM2
4316               21       44350163     44443081        TRPM2
4317               21       44350163     44443081        TRPM2
4318               21       44350163     44443081        TRPM2
4319               21       44350163     44443081        TRPM2
4320               21       44350163     44443081        TRPM2
4321               21       44350163     44443081        TRPM2
4322               21       44350163     44443081        TRPM2
4323               21       44350163     44443081        TRPM2
4324               21       44350163     44443081        TRPM2
4325               21       44350163     44443081        TRPM2
4326               21       44350163     44443081        TRPM2
4327               21       44350163     44443081        TRPM2
4328               21       44350163     44443081        TRPM2
4329               21       44350163     44443081        TRPM2
4330               21       44350163     44443081        TRPM2
4331               21       44350163     44443081        TRPM2
4332               21       44350163     44443081        TRPM2
4333               21       44350163     44443081        TRPM2
4334               21       44350163     44443081        TRPM2
4335               21       44350163     44443081        TRPM2
4336               21       44350163     44443081        TRPM2
4337               21       44350163     44443081        TRPM2
4338               21       44350163     44443081        TRPM2
4339               21       44350163     44443081        TRPM2
4340               21       44350163     44443081        TRPM2
4341               21       44350163     44443081        TRPM2
4342               21       44350163     44443081        TRPM2
4343               21       44350163     44443081        TRPM2
4344               21       44350163     44443081        TRPM2
4345               21       44350163     44443081        TRPM2
4346               21       44350163     44443081        TRPM2
4347               21       44350163     44443081        TRPM2
4348               21       44350163     44443081        TRPM2
4349               21       44350163     44443081        TRPM2
4350               21       44350163     44443081        TRPM2
4351               21       44350163     44443081        TRPM2
4352               21       44350163     44443081        TRPM2
4353               21       44350163     44443081        TRPM2
4354               21       44350163     44443081        TRPM2
4355               21       44350163     44443081        TRPM2
4356               21       44350163     44443081        TRPM2
4357               21       44350163     44443081        TRPM2
4358               21       44350163     44443081        TRPM2
4359               21       44350163     44443081        TRPM2
4360               21       44350163     44443081        TRPM2
4361               21       44350163     44443081        TRPM2
4362               21       44350163     44443081        TRPM2
4363               21       44350163     44443081        TRPM2
4364               21       44350163     44443081        TRPM2
4365               21       44350163     44443081        TRPM2
4366               21       44350163     44443081        TRPM2
4367               21       44350163     44443081        TRPM2
4368               21       44350163     44443081        TRPM2
4369               21       44350163     44443081        TRPM2
4370               21       44350163     44443081        TRPM2
4371               21       44350163     44443081        TRPM2
4372               21       44350163     44443081        TRPM2
4373               21       44350163     44443081        TRPM2
4374               21       44350163     44443081        TRPM2
4375               21       44350163     44443081        TRPM2
4376               21       44350163     44443081        TRPM2
4377               21       44350163     44443081        TRPM2
4378               21       44350163     44443081        TRPM2
4379               21       44350163     44443081        TRPM2
4380               21       44350163     44443081        TRPM2
4381               21       44350163     44443081        TRPM2
4382               21       44350163     44443081        TRPM2
4383               21       44350163     44443081        TRPM2
4384               21       44350163     44443081        TRPM2
4385               21       44350163     44443081        TRPM2
4386               21       44350163     44443081        TRPM2
4387               21       44350163     44443081        TRPM2
4388               21       44350163     44443081        TRPM2
4389               21       44350163     44443081        TRPM2
4390               21       44350163     44443081        TRPM2
4391               21       44350163     44443081        TRPM2
4392               21       44350163     44443081        TRPM2
4393               21       44350163     44443081        TRPM2
4394               21       44350163     44443081        TRPM2
4395               21       44350163     44443081        TRPM2
4396               21       44350163     44443081        TRPM2
4397               21       44350163     44443081        TRPM2
4398               21       44350163     44443081        TRPM2
4399               21       44350163     44443081        TRPM2
4400               21       44350163     44443081        TRPM2
4401               21       44350163     44443081        TRPM2
4402               21       44350163     44443081        TRPM2
4403               21       44350163     44443081        TRPM2
4404               21       44350163     44443081        TRPM2
4405               21       44350163     44443081        TRPM2
4406               21       44350163     44443081        TRPM2
4407               21       44350163     44443081        TRPM2
4408               21       44350163     44443081        TRPM2
4409               21       44350163     44443081        TRPM2
4410               21       44350163     44443081        TRPM2
4411               21       44350163     44443081        TRPM2
4412               21       44350163     44443081        TRPM2
4413               21       44350163     44443081        TRPM2
4414               21       44350163     44443081        TRPM2
4415               21       44350163     44443081        TRPM2
4416               21       44350163     44443081        TRPM2
4417               21       44350163     44443081        TRPM2
4418               21       44350163     44443081        TRPM2
4419               21       44350163     44443081        TRPM2
4420               21       44350163     44443081        TRPM2
4421               21       44350163     44443081        TRPM2
4422               21       44350163     44443081        TRPM2
4423               21       44350163     44443081        TRPM2
4424               21       44350163     44443081        TRPM2
4425               21       44350163     44443081        TRPM2
4426               21       44350163     44443081        TRPM2
4427               21       44350163     44443081        TRPM2
4428               21       44350163     44443081        TRPM2
4429               21       44350163     44443081        TRPM2
4430               21       44350163     44443081        TRPM2
4431               21       44350163     44443081        TRPM2
4432               21       44350163     44443081        TRPM2
4433               21       44350163     44443081        TRPM2
4434               21       44350163     44443081        TRPM2
4435               21       44350163     44443081        TRPM2
4436               21       44350163     44443081        TRPM2
4437               21       44350163     44443081        TRPM2
4438               21       44350163     44443081        TRPM2
4439               21       44350163     44443081        TRPM2
4440               21       44350163     44443081        TRPM2
4441               21       44350163     44443081        TRPM2
4442               21       44350163     44443081        TRPM2
4443               21       44350163     44443081        TRPM2
4444               21       44350163     44443081        TRPM2
4445               21       44350163     44443081        TRPM2
4446               21       44350163     44443081        TRPM2
4447               21       44350163     44443081        TRPM2
4448               21       44350163     44443081        TRPM2
4449               21       44350163     44443081        TRPM2
4450               21       44350163     44443081        TRPM2
4451               21       44350163     44443081        TRPM2
4452               21       44350163     44443081        TRPM2
4453               21       44350163     44443081        TRPM2
4454               21       44350163     44443081        TRPM2
4455               21       44350163     44443081        TRPM2
4456               21       44350163     44443081        TRPM2
4457               21       44350163     44443081        TRPM2
4458               21       44350163     44443081        TRPM2
4459               21       44350163     44443081        TRPM2
4460               21       44350163     44443081        TRPM2
4461               21       44350163     44443081        TRPM2
4462               21       44350163     44443081        TRPM2
4463               21       44350163     44443081        TRPM2
4464               21       44350163     44443081        TRPM2
4465               21       44350163     44443081        TRPM2
4466               21       44350163     44443081        TRPM2
4467               21       44350163     44443081        TRPM2
4468               21       44350163     44443081        TRPM2
4469               21       44350163     44443081        TRPM2
4470               21       44350163     44443081        TRPM2
4471               21       44350163     44443081        TRPM2
4472               21       44350163     44443081        TRPM2
4473               21       44350163     44443081        TRPM2
4474               21       44350163     44443081        TRPM2
4475               21       44350163     44443081        TRPM2
4476               21       44350163     44443081        TRPM2
4477               21       44350163     44443081        TRPM2
4478               21       44350163     44443081        TRPM2
4479               21       46185079     46188941             
4480               21       46185079     46188941             
4481               21       40615378     40630767    DSCAM-IT1
4482               21       40615378     40630767    DSCAM-IT1
4483               21       40615378     40630767    DSCAM-IT1
4484               21       40615378     40630767    DSCAM-IT1
4485               21       40615378     40630767    DSCAM-IT1
4486               21       40615378     40630767    DSCAM-IT1
4487               21       40615378     40630767    DSCAM-IT1
4488               21       40615378     40630767    DSCAM-IT1
4489               21       39445855     39515506       SH3BGR
4490               21       39445855     39515506       SH3BGR
4491               21       39445855     39515506       SH3BGR
4492               21       39445855     39515506       SH3BGR
4493               21       39445855     39515506       SH3BGR
4494               21       39445855     39515506       SH3BGR
4495               21       39445855     39515506       SH3BGR
4496               21       39445855     39515506       SH3BGR
4497               21       39445855     39515506       SH3BGR
4498               21       39445855     39515506       SH3BGR
4499               21       39445855     39515506       SH3BGR
4500               21       39445855     39515506       SH3BGR
4501               21       39445855     39515506       SH3BGR
4502               21       39445855     39515506       SH3BGR
4503               21       39445855     39515506       SH3BGR
4504               21       39445855     39515506       SH3BGR
4505               21       39445855     39515506       SH3BGR
4506               21       39445855     39515506       SH3BGR
4507               21       39445855     39515506       SH3BGR
4508               21       39445855     39515506       SH3BGR
4509               21       39445855     39515506       SH3BGR
4510               21       39445855     39515506       SH3BGR
4511               21       39445855     39515506       SH3BGR
4512               21       39445855     39515506       SH3BGR
4513               21       39445855     39515506       SH3BGR
4514               21       39445855     39515506       SH3BGR
4515               21       39445855     39515506       SH3BGR
4516               21       39445855     39515506       SH3BGR
4517               21       39445855     39515506       SH3BGR
4518               21       39445855     39515506       SH3BGR
4519               21       39445855     39515506       SH3BGR
4520               21       39445855     39515506       SH3BGR
4521               21       39445855     39515506       SH3BGR
4522               21       39445855     39515506       SH3BGR
4523               21       39445855     39515506       SH3BGR
4524               21       39445855     39515506       SH3BGR
4525               21       39445855     39515506       SH3BGR
4526               21       39445855     39515506       SH3BGR
4527               21       39445855     39515506       SH3BGR
4528               21       39445855     39515506       SH3BGR
4529               21       39445855     39515506       SH3BGR
4530               21       39445855     39515506       SH3BGR
4531               21       39445855     39515506       SH3BGR
4532               21       39445855     39515506       SH3BGR
4533               21       39445855     39515506       SH3BGR
4534               21       39445855     39515506       SH3BGR
4535               21       39445855     39515506       SH3BGR
4536               21       39445855     39515506       SH3BGR
4537               21       39445855     39515506       SH3BGR
4538               21       39445855     39515506       SH3BGR
4539               21       39445855     39515506       SH3BGR
4540               21       39445855     39515506       SH3BGR
4541               21       29748175     29764002    GRIK1-AS1
4542               21       29748175     29764002    GRIK1-AS1
4543               21       29748175     29764002    GRIK1-AS1
4544               21       29748175     29764002    GRIK1-AS1
4545               21       29748175     29764002    GRIK1-AS1
4546               21       29748175     29764002    GRIK1-AS1
4547               21       29748175     29764002    GRIK1-AS1
4548               21       29748175     29764002    GRIK1-AS1
4549               21       29748175     29764002    GRIK1-AS1
4550               21       29748175     29764002    GRIK1-AS1
4551               21       29748175     29764002    GRIK1-AS1
4552               21       29748175     29764002    GRIK1-AS1
4553               21       29748175     29764002    GRIK1-AS1
4554               21       29748175     29764002    GRIK1-AS1
4555               21       29748175     29764002    GRIK1-AS1
4556               21       29748175     29764002    GRIK1-AS1
4557               21       46098097     46132849       COL6A2
4558               21       46098097     46132849       COL6A2
4559               21       46098097     46132849       COL6A2
4560               21       46098097     46132849       COL6A2
4561               21       46098097     46132849       COL6A2
4562               21       46098097     46132849       COL6A2
4563               21       46098097     46132849       COL6A2
4564               21       46098097     46132849       COL6A2
4565               21       46098097     46132849       COL6A2
4566               21       46098097     46132849       COL6A2
4567               21       46098097     46132849       COL6A2
4568               21       46098097     46132849       COL6A2
4569               21       46098097     46132849       COL6A2
4570               21       46098097     46132849       COL6A2
4571               21       46098097     46132849       COL6A2
4572               21       46098097     46132849       COL6A2
4573               21       46098097     46132849       COL6A2
4574               21       46098097     46132849       COL6A2
4575               21       46098097     46132849       COL6A2
4576               21       46098097     46132849       COL6A2
4577               21       46098097     46132849       COL6A2
4578               21       46098097     46132849       COL6A2
4579               21       46098097     46132849       COL6A2
4580               21       46098097     46132849       COL6A2
4581               21       46098097     46132849       COL6A2
4582               21       46098097     46132849       COL6A2
4583               21       46098097     46132849       COL6A2
4584               21       46098097     46132849       COL6A2
4585               21       46098097     46132849       COL6A2
4586               21       46098097     46132849       COL6A2
4587               21       46098097     46132849       COL6A2
4588               21       46098097     46132849       COL6A2
4589               21       46098097     46132849       COL6A2
4590               21       46098097     46132849       COL6A2
4591               21       46098097     46132849       COL6A2
4592               21       46098097     46132849       COL6A2
4593               21       46098097     46132849       COL6A2
4594               21       46098097     46132849       COL6A2
4595               21       46098097     46132849       COL6A2
4596               21       46098097     46132849       COL6A2
4597               21       46098097     46132849       COL6A2
4598               21       46098097     46132849       COL6A2
4599               21       46098097     46132849       COL6A2
4600               21       46098097     46132849       COL6A2
4601               21       46098097     46132849       COL6A2
4602               21       46098097     46132849       COL6A2
4603               21       46098097     46132849       COL6A2
4604               21       46098097     46132849       COL6A2
4605               21       46098097     46132849       COL6A2
4606               21       46098097     46132849       COL6A2
4607               21       46098097     46132849       COL6A2
4608               21       46098097     46132849       COL6A2
4609               21       46098097     46132849       COL6A2
4610               21       46098097     46132849       COL6A2
4611               21       46098097     46132849       COL6A2
4612               21       46098097     46132849       COL6A2
4613               21       46098097     46132849       COL6A2
4614               21       46098097     46132849       COL6A2
4615               21       46098097     46132849       COL6A2
4616               21       46098097     46132849       COL6A2
4617               21       46098097     46132849       COL6A2
4618               21       46098097     46132849       COL6A2
4619               21       46098097     46132849       COL6A2
4620               21       46098097     46132849       COL6A2
4621               21       46098097     46132849       COL6A2
4622               21       46098097     46132849       COL6A2
4623               21       46098097     46132849       COL6A2
4624               21       46098097     46132849       COL6A2
4625               21       46098097     46132849       COL6A2
4626               21       46098097     46132849       COL6A2
4627               21       46098097     46132849       COL6A2
4628               21       46098097     46132849       COL6A2
4629               21       46098097     46132849       COL6A2
4630               21       46098097     46132849       COL6A2
4631               21       46098097     46132849       COL6A2
4632               21       46098097     46132849       COL6A2
4633               21       46098097     46132849       COL6A2
4634               21       46098097     46132849       COL6A2
4635               21       46098097     46132849       COL6A2
4636               21       46098097     46132849       COL6A2
4637               21       46098097     46132849       COL6A2
4638               21       46098097     46132849       COL6A2
4639               21       46098097     46132849       COL6A2
4640               21       46098097     46132849       COL6A2
4641               21       46098097     46132849       COL6A2
4642               21       46098097     46132849       COL6A2
4643               21       46098097     46132849       COL6A2
4644               21       46098097     46132849       COL6A2
4645               21       46098097     46132849       COL6A2
4646               21       46098097     46132849       COL6A2
4647               21       46098097     46132849       COL6A2
4648               21       46098097     46132849       COL6A2
4649               21       46098097     46132849       COL6A2
4650               21       46098097     46132849       COL6A2
4651               21       46098097     46132849       COL6A2
4652               21       46098097     46132849       COL6A2
4653               21       46098097     46132849       COL6A2
4654               21       46098097     46132849       COL6A2
4655               21       46098097     46132849       COL6A2
4656               21       46098097     46132849       COL6A2
4657               21       46098097     46132849       COL6A2
4658               21       46098097     46132849       COL6A2
4659               21       46098097     46132849       COL6A2
4660               21       46098097     46132849       COL6A2
4661               21       46098097     46132849       COL6A2
4662               21       46098097     46132849       COL6A2
4663               21       46098097     46132849       COL6A2
4664               21       46098097     46132849       COL6A2
4665               21       46098097     46132849       COL6A2
4666               21       46098097     46132849       COL6A2
4667               21       46098097     46132849       COL6A2
4668               21       46098097     46132849       COL6A2
4669               21       46098097     46132849       COL6A2
4670               21       46098097     46132849       COL6A2
4671               21       46098097     46132849       COL6A2
4672               21       46098097     46132849       COL6A2
4673               21       46098097     46132849       COL6A2
4674               21       46098097     46132849       COL6A2
4675               21       46098097     46132849       COL6A2
4676               21       46098097     46132849       COL6A2
4677               21       46098097     46132849       COL6A2
4678               21       46098097     46132849       COL6A2
4679               21       46098097     46132849       COL6A2
4680               21       46098097     46132849       COL6A2
4681               21       46098097     46132849       COL6A2
4682               21       46098097     46132849       COL6A2
4683               21       46098097     46132849       COL6A2
4684               21       46098097     46132849       COL6A2
4685               21       46098097     46132849       COL6A2
4686               21       46098097     46132849       COL6A2
4687               21       46098097     46132849       COL6A2
4688               21       46098097     46132849       COL6A2
4689               21       46098097     46132849       COL6A2
4690               21       33584687     33931607             
4691               21       33584687     33931607             
4692               21       33584687     33931607             
4693               21       33584687     33931607             
4694               21       33584687     33931607             
4695               21       33584687     33931607             
4696               21       33584687     33931607             
4697               21       33584687     33931607             
4698               21       44328944     44339402      C21orf2
4699               21       44328944     44339402      C21orf2
4700               21       44328944     44339402      C21orf2
4701               21       44328944     44339402      C21orf2
4702               21       44328944     44339402      C21orf2
4703               21       44328944     44339402      C21orf2
4704               21       44328944     44339402      C21orf2
4705               21       44328944     44339402      C21orf2
4706               21       44328944     44339402      C21orf2
4707               21       44328944     44339402      C21orf2
4708               21       44328944     44339402      C21orf2
4709               21       44328944     44339402      C21orf2
4710               21       44328944     44339402      C21orf2
4711               21       44328944     44339402      C21orf2
4712               21       44328944     44339402      C21orf2
4713               21       44328944     44339402      C21orf2
4714               21       44328944     44339402      C21orf2
4715               21       44328944     44339402      C21orf2
4716               21       44328944     44339402      C21orf2
4717               21       44328944     44339402      C21orf2
4718               21       44328944     44339402      C21orf2
4719               21       44328944     44339402      C21orf2
4720               21       44328944     44339402      C21orf2
4721               21       44328944     44339402      C21orf2
4722               21       44328944     44339402      C21orf2
4723               21       44328944     44339402      C21orf2
4724               21       44328944     44339402      C21orf2
4725               21       44328944     44339402      C21orf2
4726               21       44328944     44339402      C21orf2
4727               21       44328944     44339402      C21orf2
4728               21       44328944     44339402      C21orf2
4729               21       44328944     44339402      C21orf2
4730               21       44328944     44339402      C21orf2
4731               21       44328944     44339402      C21orf2
4732               21       44328944     44339402      C21orf2
4733               21       44328944     44339402      C21orf2
4734               21       44328944     44339402      C21orf2
4735               21       44328944     44339402      C21orf2
4736               21       44328944     44339402      C21orf2
4737               21       44328944     44339402      C21orf2
4738               21       46136262     46155567         FTCD
4739               21       46136262     46155567         FTCD
4740               21       46136262     46155567         FTCD
4741               21       46136262     46155567         FTCD
4742               21       46136262     46155567         FTCD
4743               21       46136262     46155567         FTCD
4744               21       46136262     46155567         FTCD
4745               21       46136262     46155567         FTCD
4746               21       46136262     46155567         FTCD
4747               21       46136262     46155567         FTCD
4748               21       46136262     46155567         FTCD
4749               21       46136262     46155567         FTCD
4750               21       46136262     46155567         FTCD
4751               21       46136262     46155567         FTCD
4752               21       46136262     46155567         FTCD
4753               21       46136262     46155567         FTCD
4754               21       46136262     46155567         FTCD
4755               21       46136262     46155567         FTCD
4756               21       46136262     46155567         FTCD
4757               21       46136262     46155567         FTCD
4758               21       46136262     46155567         FTCD
4759               21       46136262     46155567         FTCD
4760               21       46136262     46155567         FTCD
4761               21       46136262     46155567         FTCD
4762               21       46136262     46155567         FTCD
4763               21       46136262     46155567         FTCD
4764               21       46136262     46155567         FTCD
4765               21       46136262     46155567         FTCD
4766               21       46136262     46155567         FTCD
4767               21       46136262     46155567         FTCD
4768               21       46136262     46155567         FTCD
4769               21       46136262     46155567         FTCD
4770               21       46136262     46155567         FTCD
4771               21       46136262     46155567         FTCD
4772               21       46136262     46155567         FTCD
4773               21       46136262     46155567         FTCD
4774               21       46136262     46155567         FTCD
4775               21       46136262     46155567         FTCD
4776               21       46136262     46155567         FTCD
4777               21       46136262     46155567         FTCD
4778               21       46136262     46155567         FTCD
4779               21       46136262     46155567         FTCD
4780               21       46136262     46155567         FTCD
4781               21       46136262     46155567         FTCD
4782               21       46136262     46155567         FTCD
4783               21       46136262     46155567         FTCD
4784               21       46136262     46155567         FTCD
4785               21       46136262     46155567         FTCD
4786               21       46136262     46155567         FTCD
4787               21       46136262     46155567         FTCD
4788               21       46136262     46155567         FTCD
4789               21       46136262     46155567         FTCD
4790               21       46136262     46155567         FTCD
4791               21       46136262     46155567         FTCD
4792               21       46136262     46155567         FTCD
4793               21       46136262     46155567         FTCD
4794               21       46136262     46155567         FTCD
4795               21       46136262     46155567         FTCD
4796               21       46136262     46155567         FTCD
4797               21       46136262     46155567         FTCD
4798               21       46136262     46155567         FTCD
4799               21       46136262     46155567         FTCD
4800               21       46136262     46155567         FTCD
4801               21       46136262     46155567         FTCD
4802               21       46136262     46155567         FTCD
4803               21       46136262     46155567         FTCD
4804               21       46136262     46155567         FTCD
4805               21       46136262     46155567         FTCD
4806               21       46136262     46155567         FTCD
4807               21       46136262     46155567         FTCD
4808               21       46136262     46155567         FTCD
4809               21       46136262     46155567         FTCD
4810               21       46136262     46155567         FTCD
4811               21       46136262     46155567         FTCD
4812               21       46136262     46155567         FTCD
4813               21       46136262     46155567         FTCD
4814               21       46136262     46155567         FTCD
4815               21       46136262     46155567         FTCD
4816               21       46136262     46155567         FTCD
4817               21       46136262     46155567         FTCD
4818               21       46136262     46155567         FTCD
4819               21       46136262     46155567         FTCD
4820               21       46136262     46155567         FTCD
4821               21       46136262     46155567         FTCD
4822               21       46136262     46155567         FTCD
4823               21       46136262     46155567         FTCD
4824               21       46136262     46155567         FTCD
4825               21       46136262     46155567         FTCD
4826               21       46136262     46155567         FTCD
4827               21       46136262     46155567         FTCD
4828               21       46136262     46155567         FTCD
4829               21       46136262     46155567         FTCD
4830               21       46136262     46155567         FTCD
4831               21       46136262     46155567         FTCD
4832               21       46136262     46155567         FTCD
4833               21       44472895     44473739     MTND6P21
4834               21       44472895     44473739     MTND6P21
4835               21       44473723     44475097      MTND5P1
4836               21       41176322     41186788             
4837               21       41176322     41186788             
4838               21       41176322     41186788             
4839               21       41176322     41186788             
4840               21       41176322     41186788             
4841               21       41176322     41186788             
4842               21       41176322     41186788             
4843               21       41176322     41186788             
4844               21       41176322     41186788             
4845               21       41176322     41186788             
4846               21       44702221     44702791  KRTAP10-13P
4847               21       33165470     33170649    LINC01548
4848               21       33165470     33170649    LINC01548
4849               21       33165470     33170649    LINC01548
4850               21       33165470     33170649    LINC01548
4851               21       33165470     33170649    LINC01548
4852               21       33165470     33170649    LINC01548
4853               21       33165470     33170649    LINC01548
4854               21       33165470     33170649    LINC01548
4855               21       33165470     33170649    LINC01548
4856               21        6111134      6123739             
4857               21        6111134      6123739             
4858               21        6111134      6123739             
4859               21        6111134      6123739             
4860               21        6111134      6123739             
4861               21        6111134      6123739             
4862               21        6111134      6123739             
4863               21        6111134      6123739             
4864               21        6111134      6123739             
4865               21        6111134      6123739             
4866               21        6111134      6123739             
4867               21        6111134      6123739             
4868               21        6111134      6123739             
4869               21        6111134      6123739             
4870               21        6111134      6123739             
4871               21        6111134      6123739             
4872               21        6111134      6123739             
4873               21       22209939     22420819             
4874               21       22209939     22420819             
4875               21       22209939     22420819             
4876               21       22098617     22116528    LINC00308
4877               21       22098617     22116528    LINC00308
4878               21       22098617     22116528    LINC00308
4879               21       22098617     22116528    LINC00308
4880               21       22098617     22116528    LINC00308
4881               21       22098617     22116528    LINC00308
4882               21       36005338     36007838    LINC01436
4883               21       36005338     36007838    LINC01436
4884               21       42496539     42497443             
4885               21       42496539     42497443             
4886               21       42496539     42497443             
4887               21       17901263     18267373        CHODL
4888               21       17901263     18267373        CHODL
4889               21       17901263     18267373        CHODL
4890               21       17901263     18267373        CHODL
4891               21       17901263     18267373        CHODL
4892               21       17901263     18267373        CHODL
4893               21       17901263     18267373        CHODL
4894               21       17901263     18267373        CHODL
4895               21       17901263     18267373        CHODL
4896               21       17901263     18267373        CHODL
4897               21       17901263     18267373        CHODL
4898               21       17901263     18267373        CHODL
4899               21       17901263     18267373        CHODL
4900               21       17901263     18267373        CHODL
4901               21       17901263     18267373        CHODL
4902               21       17901263     18267373        CHODL
4903               21       17901263     18267373        CHODL
4904               21       17901263     18267373        CHODL
4905               21       17901263     18267373        CHODL
4906               21       17901263     18267373        CHODL
4907               21       17901263     18267373        CHODL
4908               21       17901263     18267373        CHODL
4909               21       17901263     18267373        CHODL
4910               21       17901263     18267373        CHODL
4911               21       17901263     18267373        CHODL
4912               21       17901263     18267373        CHODL
4913               21       17901263     18267373        CHODL
4914               21       17901263     18267373        CHODL
4915               21       17901263     18267373        CHODL
4916               21       17901263     18267373        CHODL
4917               21       17901263     18267373        CHODL
4918               21       17901263     18267373        CHODL
4919               21       17901263     18267373        CHODL
4920               21       17901263     18267373        CHODL
4921               21       17901263     18267373        CHODL
4922               21       17901263     18267373        CHODL
4923               21       17901263     18267373        CHODL
4924               21       17901263     18267373        CHODL
4925               21       17901263     18267373        CHODL
4926               21       17901263     18267373        CHODL
4927               21       17901263     18267373        CHODL
4928               21       46093264     46097530             
4929               21       46093264     46097530             
4930               21        6081193      6082585             
4931               21        6081193      6082585             
4932               21       23361104     23384861             
4933               21       23361104     23384861             
4934               21       23361104     23384861             
4935               21       23361104     23384861             
4936               21       23361104     23384861             
4937               21       42496008     42581440      SLC37A1
4938               21       42496008     42581440      SLC37A1
4939               21       42496008     42581440      SLC37A1
4940               21       42496008     42581440      SLC37A1
4941               21       42496008     42581440      SLC37A1
4942               21       42496008     42581440      SLC37A1
4943               21       42496008     42581440      SLC37A1
4944               21       42496008     42581440      SLC37A1
4945               21       42496008     42581440      SLC37A1
4946               21       42496008     42581440      SLC37A1
4947               21       42496008     42581440      SLC37A1
4948               21       42496008     42581440      SLC37A1
4949               21       42496008     42581440      SLC37A1
4950               21       42496008     42581440      SLC37A1
4951               21       42496008     42581440      SLC37A1
4952               21       42496008     42581440      SLC37A1
4953               21       42496008     42581440      SLC37A1
4954               21       42496008     42581440      SLC37A1
4955               21       42496008     42581440      SLC37A1
4956               21       42496008     42581440      SLC37A1
4957               21       42496008     42581440      SLC37A1
4958               21       42496008     42581440      SLC37A1
4959               21       42496008     42581440      SLC37A1
4960               21       42496008     42581440      SLC37A1
4961               21       42496008     42581440      SLC37A1
4962               21       42496008     42581440      SLC37A1
4963               21       42496008     42581440      SLC37A1
4964               21       42496008     42581440      SLC37A1
4965               21       42496008     42581440      SLC37A1
4966               21       42496008     42581440      SLC37A1
4967               21       42496008     42581440      SLC37A1
4968               21       42496008     42581440      SLC37A1
4969               21       42496008     42581440      SLC37A1
4970               21       42496008     42581440      SLC37A1
4971               21       42496008     42581440      SLC37A1
4972               21       42496008     42581440      SLC37A1
4973               21       42496008     42581440      SLC37A1
4974               21       42496008     42581440      SLC37A1
4975               21       42496008     42581440      SLC37A1
4976               21       42496008     42581440      SLC37A1
4977               21       42496008     42581440      SLC37A1
4978               21       42496008     42581440      SLC37A1
4979               21       42496008     42581440      SLC37A1
4980               21       42496008     42581440      SLC37A1
4981               21       42496008     42581440      SLC37A1
4982               21       42496008     42581440      SLC37A1
4983               21       42496008     42581440      SLC37A1
4984               21       42496008     42581440      SLC37A1
4985               21       42496008     42581440      SLC37A1
4986               21       42496008     42581440      SLC37A1
4987               21       42496008     42581440      SLC37A1
4988               21       42496008     42581440      SLC37A1
4989               21       42496008     42581440      SLC37A1
4990               21       42496008     42581440      SLC37A1
4991               21       42496008     42581440      SLC37A1
4992               21       42496008     42581440      SLC37A1
4993               21       42496008     42581440      SLC37A1
4994               21       42496008     42581440      SLC37A1
4995               21       42496008     42581440      SLC37A1
4996               21       42496008     42581440      SLC37A1
4997               21       42496008     42581440      SLC37A1
4998               21       42496008     42581440      SLC37A1
4999               21       42496008     42581440      SLC37A1
5000               21       45827961     45836419             
5001               21       45827961     45836419             
5002               21       45827961     45836419             
5003               21       39217093     39219805    BRWD1-IT1
5004               21       39217093     39219805    BRWD1-IT1
5005               21       14774301     14775262     GAPDHP16
5006               21       14918534     14947096             
5007               21       14918534     14947096             
5008               21       14818843     15014430             
5009               21       14818843     15014430             
5010               21       14818843     15014430             
5011               21       14818843     15014430             
5012               21       14819699     14918552             
5013               21       14819699     14918552             
5014               21       14819699     14918552             
5015               21       14819699     14918552             
5016               21       14819699     14918552             
5017               21       14819699     14918552             
5018               21       14819699     14918552             
5019               21       14819699     14918552             
5020               21       14819699     14918552             
5021               21       14819699     14918552             
5022               21       14819699     14918552             
5023               21       14819699     14918552             
5024               21       14819699     14918552             
5025               21       14819699     14918552             
5026               21       14819699     14918552             
5027               21       14819699     14918552             
5028               21       14819699     14918552             
5029               21       14819699     14918552             
5030               21       14819699     14918552             
5031               21       14819699     14918552             
5032               21       14819699     14918552             
5033               21       14819699     14918552             
5034               21       14819699     14918552             
5035               21       42199689     42297244        ABCG1
5036               21       42199689     42297244        ABCG1
5037               21       42199689     42297244        ABCG1
5038               21       42199689     42297244        ABCG1
5039               21       42199689     42297244        ABCG1
5040               21       42199689     42297244        ABCG1
5041               21       42199689     42297244        ABCG1
5042               21       42199689     42297244        ABCG1
5043               21       42199689     42297244        ABCG1
5044               21       42199689     42297244        ABCG1
5045               21       42199689     42297244        ABCG1
5046               21       42199689     42297244        ABCG1
5047               21       42199689     42297244        ABCG1
5048               21       42199689     42297244        ABCG1
5049               21       42199689     42297244        ABCG1
5050               21       42199689     42297244        ABCG1
5051               21       42199689     42297244        ABCG1
5052               21       42199689     42297244        ABCG1
5053               21       42199689     42297244        ABCG1
5054               21       42199689     42297244        ABCG1
5055               21       42199689     42297244        ABCG1
5056               21       42199689     42297244        ABCG1
5057               21       42199689     42297244        ABCG1
5058               21       42199689     42297244        ABCG1
5059               21       42199689     42297244        ABCG1
5060               21       42199689     42297244        ABCG1
5061               21       42199689     42297244        ABCG1
5062               21       42199689     42297244        ABCG1
5063               21       42199689     42297244        ABCG1
5064               21       42199689     42297244        ABCG1
5065               21       42199689     42297244        ABCG1
5066               21       42199689     42297244        ABCG1
5067               21       42199689     42297244        ABCG1
5068               21       42199689     42297244        ABCG1
5069               21       42199689     42297244        ABCG1
5070               21       42199689     42297244        ABCG1
5071               21       42199689     42297244        ABCG1
5072               21       42199689     42297244        ABCG1
5073               21       42199689     42297244        ABCG1
5074               21       42199689     42297244        ABCG1
5075               21       42199689     42297244        ABCG1
5076               21       42199689     42297244        ABCG1
5077               21       42199689     42297244        ABCG1
5078               21       42199689     42297244        ABCG1
5079               21       42199689     42297244        ABCG1
5080               21       42199689     42297244        ABCG1
5081               21       42199689     42297244        ABCG1
5082               21       42199689     42297244        ABCG1
5083               21       42199689     42297244        ABCG1
5084               21       42199689     42297244        ABCG1
5085               21       42199689     42297244        ABCG1
5086               21       42199689     42297244        ABCG1
5087               21       42199689     42297244        ABCG1
5088               21       42199689     42297244        ABCG1
5089               21       42199689     42297244        ABCG1
5090               21       42199689     42297244        ABCG1
5091               21       42199689     42297244        ABCG1
5092               21       42199689     42297244        ABCG1
5093               21       42199689     42297244        ABCG1
5094               21       42199689     42297244        ABCG1
5095               21       42199689     42297244        ABCG1
5096               21       42199689     42297244        ABCG1
5097               21       42199689     42297244        ABCG1
5098               21       42199689     42297244        ABCG1
5099               21       42199689     42297244        ABCG1
5100               21       42199689     42297244        ABCG1
5101               21       42199689     42297244        ABCG1
5102               21       42199689     42297244        ABCG1
5103               21       42199689     42297244        ABCG1
5104               21       42199689     42297244        ABCG1
5105               21       42199689     42297244        ABCG1
5106               21       42199689     42297244        ABCG1
5107               21       42199689     42297244        ABCG1
5108               21       42199689     42297244        ABCG1
5109               21       42199689     42297244        ABCG1
5110               21       42199689     42297244        ABCG1
5111               21       42199689     42297244        ABCG1
5112               21       42199689     42297244        ABCG1
5113               21       42199689     42297244        ABCG1
5114               21       42199689     42297244        ABCG1
5115               21       42199689     42297244        ABCG1
5116               21       42199689     42297244        ABCG1
5117               21       42199689     42297244        ABCG1
5118               21       42199689     42297244        ABCG1
5119               21       42199689     42297244        ABCG1
5120               21       42199689     42297244        ABCG1
5121               21       42199689     42297244        ABCG1
5122               21       42199689     42297244        ABCG1
5123               21       42199689     42297244        ABCG1
5124               21       42199689     42297244        ABCG1
5125               21       42199689     42297244        ABCG1
5126               21       42199689     42297244        ABCG1
5127               21       42199689     42297244        ABCG1
5128               21       42199689     42297244        ABCG1
5129               21       42199689     42297244        ABCG1
5130               21       42199689     42297244        ABCG1
5131               21       42199689     42297244        ABCG1
5132               21       42199689     42297244        ABCG1
5133               21       42199689     42297244        ABCG1
5134               21       42199689     42297244        ABCG1
5135               21       42199689     42297244        ABCG1
5136               21       42199689     42297244        ABCG1
5137               21       42199689     42297244        ABCG1
5138               21       42199689     42297244        ABCG1
5139               21       42199689     42297244        ABCG1
5140               21       42199689     42297244        ABCG1
5141               21       42199689     42297244        ABCG1
5142               21       42199689     42297244        ABCG1
5143               21       42199689     42297244        ABCG1
5144               21       42199689     42297244        ABCG1
5145               21       42199689     42297244        ABCG1
5146               21       42199689     42297244        ABCG1
5147               21       42199689     42297244        ABCG1
5148               21       42199689     42297244        ABCG1
5149               21       42199689     42297244        ABCG1
5150               21       42199689     42297244        ABCG1
5151               21       42199689     42297244        ABCG1
5152               21       42199689     42297244        ABCG1
5153               21       42199689     42297244        ABCG1
5154               21       42199689     42297244        ABCG1
5155               21       42199689     42297244        ABCG1
5156               21       42199689     42297244        ABCG1
5157               21       42199689     42297244        ABCG1
5158               21       42199689     42297244        ABCG1
5159               21       42199689     42297244        ABCG1
5160               21       42199689     42297244        ABCG1
5161               21       42199689     42297244        ABCG1
5162               21       42199689     42297244        ABCG1
5163               21       42199689     42297244        ABCG1
5164               21       42199689     42297244        ABCG1
5165               21       42199689     42297244        ABCG1
5166               21       42199689     42297244        ABCG1
5167               21       42199689     42297244        ABCG1
5168               21       42199689     42297244        ABCG1
5169               21       42199689     42297244        ABCG1
5170               21       42199689     42297244        ABCG1
5171               21       14961235     15065936        NRIP1
5172               21       14961235     15065936        NRIP1
5173               21       14961235     15065936        NRIP1
5174               21       14961235     15065936        NRIP1
5175               21       14961235     15065936        NRIP1
5176               21       14961235     15065936        NRIP1
5177               21       14961235     15065936        NRIP1
5178               21       14961235     15065936        NRIP1
5179               21       14961235     15065936        NRIP1
5180               21       14961235     15065936        NRIP1
5181               21       14961235     15065936        NRIP1
5182               21       14961235     15065936        NRIP1
5183               21       14961235     15065936        NRIP1
5184               21       14961235     15065936        NRIP1
5185               21       14961235     15065936        NRIP1
5186               21       14961235     15065936        NRIP1
5187               21       14961235     15065936        NRIP1
5188               21       14961235     15065936        NRIP1
5189               21       14961235     15065936        NRIP1
5190               21       14961235     15065936        NRIP1
5191               21       14961235     15065936        NRIP1
5192               21       14961235     15065936        NRIP1
5193               21       14961235     15065936        NRIP1
5194               21       14829154     14829989      RBMX2P1
5195               21       45493572     45544411      SLC19A1
5196               21       45493572     45544411      SLC19A1
5197               21       45493572     45544411      SLC19A1
5198               21       45493572     45544411      SLC19A1
5199               21       45493572     45544411      SLC19A1
5200               21       45493572     45544411      SLC19A1
5201               21       45493572     45544411      SLC19A1
5202               21       45493572     45544411      SLC19A1
5203               21       45493572     45544411      SLC19A1
5204               21       45493572     45544411      SLC19A1
5205               21       45493572     45544411      SLC19A1
5206               21       45493572     45544411      SLC19A1
5207               21       45493572     45544411      SLC19A1
5208               21       45493572     45544411      SLC19A1
5209               21       45493572     45544411      SLC19A1
5210               21       45493572     45544411      SLC19A1
5211               21       45493572     45544411      SLC19A1
5212               21       45493572     45544411      SLC19A1
5213               21       45493572     45544411      SLC19A1
5214               21       45493572     45544411      SLC19A1
5215               21       45493572     45544411      SLC19A1
5216               21       45493572     45544411      SLC19A1
5217               21       45493572     45544411      SLC19A1
5218               21       45493572     45544411      SLC19A1
5219               21       45493572     45544411      SLC19A1
5220               21       45493572     45544411      SLC19A1
5221               21       45493572     45544411      SLC19A1
5222               21       45493572     45544411      SLC19A1
5223               21       45493572     45544411      SLC19A1
5224               21       45493572     45544411      SLC19A1
5225               21       45493572     45544411      SLC19A1
5226               21       45493572     45544411      SLC19A1
5227               21       45493572     45544411      SLC19A1
5228               21       45493572     45544411      SLC19A1
5229               21       45493572     45544411      SLC19A1
5230               21       45493572     45544411      SLC19A1
5231               21       45493572     45544411      SLC19A1
5232               21       45493572     45544411      SLC19A1
5233               21       45493572     45544411      SLC19A1
5234               21       45493572     45544411      SLC19A1
5235               21       45493572     45544411      SLC19A1
5236               21       45493572     45544411      SLC19A1
5237               21       45493572     45544411      SLC19A1
5238               21       45493572     45544411      SLC19A1
5239               21       45493572     45544411      SLC19A1
5240               21       45493572     45544411      SLC19A1
5241               21       45493572     45544411      SLC19A1
5242               21       14961309     14964233             
5243               21       14961309     14964233             
5244               21       15050189     15052379             
5245               21       14971470     14992854             
5246               21       14971470     14992854             
5247               21       14971470     14992854             
5248               21       45419716     45425070  COL18A1-AS1
5249               21       45419716     45425070  COL18A1-AS1
5250               21       45419716     45425070  COL18A1-AS1
5251               21       45419716     45425070  COL18A1-AS1
5252               21       45419716     45425070  COL18A1-AS1
5253               21       45419716     45425070  COL18A1-AS1
5254               21       39488327     39488760       MYL6P2
5255               21       46300181     46323875     C21orf58
5256               21       46300181     46323875     C21orf58
5257               21       46300181     46323875     C21orf58
5258               21       46300181     46323875     C21orf58
5259               21       46300181     46323875     C21orf58
5260               21       46300181     46323875     C21orf58
5261               21       46300181     46323875     C21orf58
5262               21       46300181     46323875     C21orf58
5263               21       46300181     46323875     C21orf58
5264               21       46300181     46323875     C21orf58
5265               21       46300181     46323875     C21orf58
5266               21       46300181     46323875     C21orf58
5267               21       46300181     46323875     C21orf58
5268               21       46300181     46323875     C21orf58
5269               21       46300181     46323875     C21orf58
5270               21       46300181     46323875     C21orf58
5271               21       46300181     46323875     C21orf58
5272               21       46300181     46323875     C21orf58
5273               21       46300181     46323875     C21orf58
5274               21       46300181     46323875     C21orf58
5275               21       46300181     46323875     C21orf58
5276               21       46300181     46323875     C21orf58
5277               21       46300181     46323875     C21orf58
5278               21       46300181     46323875     C21orf58
5279               21       46300181     46323875     C21orf58
5280               21       46300181     46323875     C21orf58
5281               21       46300181     46323875     C21orf58
5282               21       46300181     46323875     C21orf58
5283               21       46300181     46323875     C21orf58
5284               21       46300181     46323875     C21orf58
5285               21       46300181     46323875     C21orf58
5286               21       46300181     46323875     C21orf58
5287               21       46300181     46323875     C21orf58
5288               21       46300181     46323875     C21orf58
5289               21       46300181     46323875     C21orf58
5290               21       46300181     46323875     C21orf58
5291               21       46300181     46323875     C21orf58
5292               21       46300181     46323875     C21orf58
5293               21       46300181     46323875     C21orf58
5294               21       46300181     46323875     C21orf58
5295               21       46300181     46323875     C21orf58
5296               21       46300181     46323875     C21orf58
5297               21       46300181     46323875     C21orf58
5298               21       46300181     46323875     C21orf58
5299               21       46300181     46323875     C21orf58
5300               21       46300181     46323875     C21orf58
5301               21       46300181     46323875     C21orf58
5302               21       46300181     46323875     C21orf58
5303               21       46300181     46323875     C21orf58
5304               21       46300181     46323875     C21orf58
5305               21       46300181     46323875     C21orf58
5306               21       46300181     46323875     C21orf58
5307               21       46300181     46323875     C21orf58
5308               21       46300181     46323875     C21orf58
5309               21       46300181     46323875     C21orf58
5310               21       46300181     46323875     C21orf58
5311               21       46300181     46323875     C21orf58
5312               21       46300181     46323875     C21orf58
5313               21       46300181     46323875     C21orf58
5314               21       46300181     46323875     C21orf58
5315               21       46300181     46323875     C21orf58
5316               21       46300181     46323875     C21orf58
5317               21       46300181     46323875     C21orf58
5318               21       46300181     46323875     C21orf58
5319               21       46300181     46323875     C21orf58
5320               21       46300181     46323875     C21orf58
5321               21       46300181     46323875     C21orf58
5322               21       46300181     46323875     C21orf58
5323               21       46300181     46323875     C21orf58
5324               21       46300181     46323875     C21orf58
5325               21       41361943     41409390          MX2
5326               21       41361943     41409390          MX2
5327               21       41361943     41409390          MX2
5328               21       41361943     41409390          MX2
5329               21       41361943     41409390          MX2
5330               21       41361943     41409390          MX2
5331               21       41361943     41409390          MX2
5332               21       41361943     41409390          MX2
5333               21       41361943     41409390          MX2
5334               21       41361943     41409390          MX2
5335               21       41361943     41409390          MX2
5336               21       41361943     41409390          MX2
5337               21       41361943     41409390          MX2
5338               21       41361943     41409390          MX2
5339               21       41361943     41409390          MX2
5340               21       41361943     41409390          MX2
5341               21       41361943     41409390          MX2
5342               21       41361943     41409390          MX2
5343               21       41361943     41409390          MX2
5344               21       41361943     41409390          MX2
5345               21       41361943     41409390          MX2
5346               21       41361943     41409390          MX2
5347               21       41361943     41409390          MX2
5348               21       41361943     41409390          MX2
5349               21       41361943     41409390          MX2
5350               21       41361943     41409390          MX2
5351               21       41361943     41409390          MX2
5352               21       41361943     41409390          MX2
5353               21       41361943     41409390          MX2
5354               21       41361943     41409390          MX2
5355               21       41361943     41409390          MX2
5356               21       41361943     41409390          MX2
5357               21       41361943     41409390          MX2
5358               21       41361943     41409390          MX2
5359               21       41361943     41409390          MX2
5360               21       41361943     41409390          MX2
5361               21       41361943     41409390          MX2
5362               21       41361943     41409390          MX2
5363               21       41361943     41409390          MX2
5364               21       41361943     41409390          MX2
5365               21       41361943     41409390          MX2
5366               21       41361943     41409390          MX2
5367               21       41361943     41409390          MX2
5368               21       41361943     41409390          MX2
5369               21       41361943     41409390          MX2
5370               21       41361943     41409390          MX2
5371               21       41361943     41409390          MX2
5372               21       41361943     41409390          MX2
5373               21       41361943     41409390          MX2
5374               21       41361943     41409390          MX2
5375               21       41361943     41409390          MX2
5376               21       41361943     41409390          MX2
5377               21       41361943     41409390          MX2
5378               21       41361943     41409390          MX2
5379               21       41361943     41409390          MX2
5380               21       41361943     41409390          MX2
5381               21       41361943     41409390          MX2
5382               21       41361943     41409390          MX2
5383               21       41361943     41409390          MX2
5384               21       41361943     41409390          MX2
5385               21       41361943     41409390          MX2
5386               21       41361943     41409390          MX2
5387               21       39867317     39929397         PCP4
5388               21       39867317     39929397         PCP4
5389               21       39867317     39929397         PCP4
5390               21       39867317     39929397         PCP4
5391               21       39867317     39929397         PCP4
5392               21       39867317     39929397         PCP4
5393               21       39867317     39929397         PCP4
5394               21       39867317     39929397         PCP4
5395               21       39867317     39929397         PCP4
5396               21       39867317     39929397         PCP4
5397               21       39867317     39929397         PCP4
5398               21       39867317     39929397         PCP4
5399               21       39867317     39929397         PCP4
5400               21       39867317     39929397         PCP4
5401               21       39525583     39529855             
5402               21       39525583     39529855             
5403               21       33915534     33977691    LINC00649
5404               21       33915534     33977691    LINC00649
5405               21       33915534     33977691    LINC00649
5406               21       33915534     33977691    LINC00649
5407               21       33915534     33977691    LINC00649
5408               21       33915534     33977691    LINC00649
5409               21       33915534     33977691    LINC00649
5410               21       33915534     33977691    LINC00649
5411               21       33915534     33977691    LINC00649
5412               21       33915534     33977691    LINC00649
5413               21       33915534     33977691    LINC00649
5414               21       33915534     33977691    LINC00649
5415               21       33915534     33977691    LINC00649
5416               21       33915534     33977691    LINC00649
5417               21       33915534     33977691    LINC00649
5418               21       33915534     33977691    LINC00649
5419               21       33915534     33977691    LINC00649
5420               21       33915534     33977691    LINC00649
5421               21       33915534     33977691    LINC00649
5422               21       33915534     33977691    LINC00649
5423               21       33915534     33977691    LINC00649
5424               21       33915534     33977691    LINC00649
5425               21       33915534     33977691    LINC00649
5426               21       33915534     33977691    LINC00649
5427               21       33915534     33977691    LINC00649
5428               21       33915534     33977691    LINC00649
5429               21       33915534     33977691    LINC00649
5430               21       33915534     33977691    LINC00649
5431               21       33915534     33977691    LINC00649
5432               21       33915534     33977691    LINC00649
5433               21       33915534     33977691    LINC00649
5434               21       33915534     33977691    LINC00649
5435               21       33915534     33977691    LINC00649
5436               21       33915534     33977691    LINC00649
5437               21       33915534     33977691    LINC00649
5438               21       33915534     33977691    LINC00649
5439               21       33915534     33977691    LINC00649
5440               21       33915534     33977691    LINC00649
5441               21       33915534     33977691    LINC00649
5442               21       33915534     33977691    LINC00649
5443               21       33915534     33977691    LINC00649
5444               21       33915534     33977691    LINC00649
5445               21       33915534     33977691    LINC00649
5446               21       33915534     33977691    LINC00649
5447               21       33915534     33977691    LINC00649
5448               21       33915534     33977691    LINC00649
5449               21       33915534     33977691    LINC00649
5450               21       33915534     33977691    LINC00649
5451               21       33915534     33977691    LINC00649
5452               21       33915534     33977691    LINC00649
5453               21       33915534     33977691    LINC00649
5454               21       33915534     33977691    LINC00649
5455               21       33915534     33977691    LINC00649
5456               21       33915534     33977691    LINC00649
5457               21       33915534     33977691    LINC00649
5458               21       33915534     33977691    LINC00649
5459               21       33518610     33519108       BTF3P6
5460               21       39556442     39673137      B3GALT5
5461               21       39556442     39673137      B3GALT5
5462               21       39556442     39673137      B3GALT5
5463               21       39556442     39673137      B3GALT5
5464               21       39556442     39673137      B3GALT5
5465               21       39556442     39673137      B3GALT5
5466               21       39556442     39673137      B3GALT5
5467               21       39556442     39673137      B3GALT5
5468               21       39556442     39673137      B3GALT5
5469               21       39556442     39673137      B3GALT5
5470               21       39556442     39673137      B3GALT5
5471               21       39556442     39673137      B3GALT5
5472               21       39556442     39673137      B3GALT5
5473               21       39556442     39673137      B3GALT5
5474               21       39556442     39673137      B3GALT5
5475               21       39556442     39673137      B3GALT5
5476               21       39556442     39673137      B3GALT5
5477               21       39556442     39673137      B3GALT5
5478               21       33542618     33577481          SON
5479               21       33542618     33577481          SON
5480               21       33542618     33577481          SON
5481               21       33542618     33577481          SON
5482               21       33542618     33577481          SON
5483               21       33542618     33577481          SON
5484               21       33542618     33577481          SON
5485               21       33542618     33577481          SON
5486               21       33542618     33577481          SON
5487               21       33542618     33577481          SON
5488               21       33542618     33577481          SON
5489               21       33542618     33577481          SON
5490               21       33542618     33577481          SON
5491               21       33542618     33577481          SON
5492               21       33542618     33577481          SON
5493               21       33542618     33577481          SON
5494               21       33542618     33577481          SON
5495               21       33542618     33577481          SON
5496               21       33542618     33577481          SON
5497               21       33542618     33577481          SON
5498               21       33542618     33577481          SON
5499               21       33542618     33577481          SON
5500               21       33542618     33577481          SON
5501               21       33542618     33577481          SON
5502               21       33542618     33577481          SON
5503               21       33542618     33577481          SON
5504               21       33542618     33577481          SON
5505               21       33542618     33577481          SON
5506               21       33542618     33577481          SON
5507               21       33542618     33577481          SON
5508               21       33542618     33577481          SON
5509               21       33542618     33577481          SON
5510               21       33542618     33577481          SON
5511               21       33542618     33577481          SON
5512               21       33542618     33577481          SON
5513               21       33542618     33577481          SON
5514               21       33542618     33577481          SON
5515               21       33542618     33577481          SON
5516               21       33542618     33577481          SON
5517               21       33542618     33577481          SON
5518               21       33542618     33577481          SON
5519               21       33542618     33577481          SON
5520               21       33542618     33577481          SON
5521               21       33542618     33577481          SON
5522               21       33542618     33577481          SON
5523               21       33542618     33577481          SON
5524               21       33542618     33577481          SON
5525               21       33542618     33577481          SON
5526               21       33542618     33577481          SON
5527               21       33542618     33577481          SON
5528               21       33542618     33577481          SON
5529               21       33542618     33577481          SON
5530               21       33542618     33577481          SON
5531               21       33542618     33577481          SON
5532               21       33542618     33577481          SON
5533               21       33542618     33577481          SON
5534               21       33542618     33577481          SON
5535               21       33542618     33577481          SON
5536               21       33542618     33577481          SON
5537               21       33542618     33577481          SON
5538               21       33542618     33577481          SON
5539               21       33542618     33577481          SON
5540               21       33542618     33577481          SON
5541               21       33542618     33577481          SON
5542               21       33542618     33577481          SON
5543               21       33542618     33577481          SON
5544               21       33542618     33577481          SON
5545               21       33542618     33577481          SON
5546               21       33542618     33577481          SON
5547               21       33542618     33577481          SON
5548               21       33542618     33577481          SON
5549               21       33542618     33577481          SON
5550               21       33542618     33577481          SON
5551               21       33542618     33577481          SON
5552               21       33542618     33577481          SON
5553               21       33542618     33577481          SON
5554               21       33542618     33577481          SON
5555               21       33542618     33577481          SON
5556               21       33542618     33577481          SON
5557               21       33542618     33577481          SON
5558               21       33542618     33577481          SON
5559               21       33542618     33577481          SON
5560               21       33542618     33577481          SON
5561               21       33542618     33577481          SON
5562               21       33542618     33577481          SON
5563               21       33542618     33577481          SON
5564               21       33542618     33577481          SON
5565               21       33542618     33577481          SON
5566               21       33542618     33577481          SON
5567               21       33542618     33577481          SON
5568               21       33542618     33577481          SON
5569               21       33542618     33577481          SON
5570               21       33542618     33577481          SON
5571               21       33542618     33577481          SON
5572               21       33542618     33577481          SON
5573               21       33542618     33577481          SON
5574               21       33542618     33577481          SON
5575               21       33542618     33577481          SON
5576               21       33542618     33577481          SON
5577               21       33542618     33577481          SON
5578               21       33542618     33577481          SON
5579               21       33542618     33577481          SON
5580               21       33542618     33577481          SON
5581               21       33542618     33577481          SON
5582               21       33542618     33577481          SON
5583               21       33542618     33577481          SON
5584               21       33542618     33577481          SON
5585               21       33542618     33577481          SON
5586               21       33542618     33577481          SON
5587               21       33542618     33577481          SON
5588               21       33542618     33577481          SON
5589               21       33542618     33577481          SON
5590               21       33542618     33577481          SON
5591               21       33542618     33577481          SON
5592               21       33542618     33577481          SON
5593               21       33542618     33577481          SON
5594               21       33542618     33577481          SON
5595               21       33542618     33577481          SON
5596               21       33542618     33577481          SON
5597               21       33542618     33577481          SON
5598               21       33542618     33577481          SON
5599               21       33542618     33577481          SON
5600               21       33542618     33577481          SON
5601               21       33542618     33577481          SON
5602               21       46151614     46152647     FTCD-AS1
5603               21       46151614     46152647     FTCD-AS1
5604               21       39630271     39726085             
5605               21       39630271     39726085             
5606               21       39630271     39726085             
5607               21       39597147     39612821  B3GALT5-AS1
5608               21       39597147     39612821  B3GALT5-AS1
5609               21       39597147     39612821  B3GALT5-AS1
5610               21       39597147     39612821  B3GALT5-AS1
5611               21       39597147     39612821  B3GALT5-AS1
5612               21       39597147     39612821  B3GALT5-AS1
5613               21       39597147     39612821  B3GALT5-AS1
5614               21       39597147     39612821  B3GALT5-AS1
5615               21       39597147     39612821  B3GALT5-AS1
5616               21       39597147     39612821  B3GALT5-AS1
5617               21       39597147     39612821  B3GALT5-AS1
5618               21       39727755     39730680             
5619               21       39727755     39730680             
5620               21       39727755     39730680             
5621               21       39727755     39730680             
5622               21       39727755     39730680             
5623               21       39745407     39802096        IGSF5
5624               21       39745407     39802096        IGSF5
5625               21       39745407     39802096        IGSF5
5626               21       39745407     39802096        IGSF5
5627               21       39745407     39802096        IGSF5
5628               21       39745407     39802096        IGSF5
5629               21       39745407     39802096        IGSF5
5630               21       39745407     39802096        IGSF5
5631               21       39745407     39802096        IGSF5
5632               21       39745407     39802096        IGSF5
5633               21       39745407     39802096        IGSF5
5634               21       39745407     39802096        IGSF5
5635               21       39745407     39802096        IGSF5
5636               21       39745407     39802096        IGSF5
5637               21       39745407     39802096        IGSF5
5638               21       39745407     39802096        IGSF5
5639               21       39745407     39802096        IGSF5
5640               21       44339376     44340470             
5641               21       44339376     44340470             
5642               21       44331234     44335851             
5643               21       44331234     44335851             
5644               21       33903453     33915980        ATP5O
5645               21       33903453     33915980        ATP5O
5646               21       33903453     33915980        ATP5O
5647               21       33903453     33915980        ATP5O
5648               21       33903453     33915980        ATP5O
5649               21       33903453     33915980        ATP5O
5650               21       33903453     33915980        ATP5O
5651               21       33903453     33915980        ATP5O
5652               21       33903453     33915980        ATP5O
5653               21       33903453     33915980        ATP5O
5654               21       33903453     33915980        ATP5O
5655               21       33903453     33915980        ATP5O
5656               21       33903453     33915980        ATP5O
5657               21       33903453     33915980        ATP5O
5658               21       33903453     33915980        ATP5O
5659               21       33903453     33915980        ATP5O
5660               21       33903453     33915980        ATP5O
5661               21       33903453     33915980        ATP5O
5662               21       33903453     33915980        ATP5O
5663               21       33903453     33915980        ATP5O
5664               21       33903453     33915980        ATP5O
5665               21       33903453     33915980        ATP5O
5666               21       33903453     33915980        ATP5O
5667               21       33903453     33915980        ATP5O
5668               21       33903453     33915980        ATP5O
5669               21       33903453     33915980        ATP5O
5670               21       33903453     33915980        ATP5O
5671               21       33903453     33915980        ATP5O
5672               21       33903453     33915980        ATP5O
5673               21       33903453     33915980        ATP5O
5674               21       33903453     33915980        ATP5O
5675               21       33903453     33915980        ATP5O
5676               21       33903453     33915980        ATP5O
5677               21       33903453     33915980        ATP5O
5678               21       33903453     33915980        ATP5O
5679               21       33903453     33915980        ATP5O
5680               21       33903453     33915980        ATP5O
5681               21       33903453     33915980        ATP5O
5682               21       33903453     33915980        ATP5O
5683               21       33903453     33915980        ATP5O
5684               21       33903453     33915980        ATP5O
5685               21       33903453     33915980        ATP5O
5686               21       33903453     33915980        ATP5O
5687               21       33903453     33915980        ATP5O
5688               21       33903453     33915980        ATP5O
5689               21       29193480     29288205    LINC00189
5690               21       29193480     29288205    LINC00189
5691               21       29193480     29288205    LINC00189
5692               21       29193480     29288205    LINC00189
5693               21       29193480     29288205    LINC00189
5694               21       29193480     29288205    LINC00189
5695               21       29193480     29288205    LINC00189
5696               21       29193480     29288205    LINC00189
5697               21       40010999     40847139        DSCAM
5698               21       40010999     40847139        DSCAM
5699               21       40010999     40847139        DSCAM
5700               21       40010999     40847139        DSCAM
5701               21       40010999     40847139        DSCAM
5702               21       40010999     40847139        DSCAM
5703               21       40010999     40847139        DSCAM
5704               21       40010999     40847139        DSCAM
5705               21       40010999     40847139        DSCAM
5706               21       40010999     40847139        DSCAM
5707               21       40010999     40847139        DSCAM
5708               21       40010999     40847139        DSCAM
5709               21       40010999     40847139        DSCAM
5710               21       40010999     40847139        DSCAM
5711               21       40010999     40847139        DSCAM
5712               21       40010999     40847139        DSCAM
5713               21       40010999     40847139        DSCAM
5714               21       40010999     40847139        DSCAM
5715               21       40010999     40847139        DSCAM
5716               21       40010999     40847139        DSCAM
5717               21       40010999     40847139        DSCAM
5718               21       40010999     40847139        DSCAM
5719               21       40010999     40847139        DSCAM
5720               21       40010999     40847139        DSCAM
5721               21       40010999     40847139        DSCAM
5722               21       40010999     40847139        DSCAM
5723               21       40010999     40847139        DSCAM
5724               21       40010999     40847139        DSCAM
5725               21       40010999     40847139        DSCAM
5726               21       40010999     40847139        DSCAM
5727               21       40010999     40847139        DSCAM
5728               21       40010999     40847139        DSCAM
5729               21       40010999     40847139        DSCAM
5730               21       40010999     40847139        DSCAM
5731               21       40010999     40847139        DSCAM
5732               21       40010999     40847139        DSCAM
5733               21       40010999     40847139        DSCAM
5734               21       40010999     40847139        DSCAM
5735               21       40010999     40847139        DSCAM
5736               21       40010999     40847139        DSCAM
5737               21       40010999     40847139        DSCAM
5738               21       40010999     40847139        DSCAM
5739               21       40010999     40847139        DSCAM
5740               21       40010999     40847139        DSCAM
5741               21       40010999     40847139        DSCAM
5742               21       40010999     40847139        DSCAM
5743               21       40010999     40847139        DSCAM
5744               21       40010999     40847139        DSCAM
5745               21       40010999     40847139        DSCAM
5746               21       40010999     40847139        DSCAM
5747               21       40010999     40847139        DSCAM
5748               21       40010999     40847139        DSCAM
5749               21       40010999     40847139        DSCAM
5750               21       40010999     40847139        DSCAM
5751               21       40010999     40847139        DSCAM
5752               21       40010999     40847139        DSCAM
5753               21       40010999     40847139        DSCAM
5754               21       40010999     40847139        DSCAM
5755               21       40010999     40847139        DSCAM
5756               21       40010999     40847139        DSCAM
5757               21       40010999     40847139        DSCAM
5758               21       40010999     40847139        DSCAM
5759               21       40010999     40847139        DSCAM
5760               21       40010999     40847139        DSCAM
5761               21       40010999     40847139        DSCAM
5762               21       40010999     40847139        DSCAM
5763               21       40010999     40847139        DSCAM
5764               21       40010999     40847139        DSCAM
5765               21       40010999     40847139        DSCAM
5766               21       40010999     40847139        DSCAM
5767               21       40010999     40847139        DSCAM
5768               21       40010999     40847139        DSCAM
5769               21       40010999     40847139        DSCAM
5770               21       40010999     40847139        DSCAM
5771               21       40010999     40847139        DSCAM
5772               21       40010999     40847139        DSCAM
5773               21       40010999     40847139        DSCAM
5774               21       40010999     40847139        DSCAM
5775               21       40010999     40847139        DSCAM
5776               21       40010999     40847139        DSCAM
5777               21       40010999     40847139        DSCAM
5778               21       40010999     40847139        DSCAM
5779               21       40010999     40847139        DSCAM
5780               21       40010999     40847139        DSCAM
5781               21       40010999     40847139        DSCAM
5782               21       40010999     40847139        DSCAM
5783               21       40010999     40847139        DSCAM
5784               21       40010999     40847139        DSCAM
5785               21       40010999     40847139        DSCAM
5786               21       40010999     40847139        DSCAM
5787               21       40010999     40847139        DSCAM
5788               21       40010999     40847139        DSCAM
5789               21       37073226     37203112         TTC3
5790               21       37073226     37203112         TTC3
5791               21       37073226     37203112         TTC3
5792               21       37073226     37203112         TTC3
5793               21       37073226     37203112         TTC3
5794               21       37073226     37203112         TTC3
5795               21       37073226     37203112         TTC3
5796               21       37073226     37203112         TTC3
5797               21       37073226     37203112         TTC3
5798               21       37073226     37203112         TTC3
5799               21       37073226     37203112         TTC3
5800               21       37073226     37203112         TTC3
5801               21       37073226     37203112         TTC3
5802               21       37073226     37203112         TTC3
5803               21       37073226     37203112         TTC3
5804               21       37073226     37203112         TTC3
5805               21       37073226     37203112         TTC3
5806               21       37073226     37203112         TTC3
5807               21       37073226     37203112         TTC3
5808               21       37073226     37203112         TTC3
5809               21       37073226     37203112         TTC3
5810               21       37073226     37203112         TTC3
5811               21       37073226     37203112         TTC3
5812               21       37073226     37203112         TTC3
5813               21       37073226     37203112         TTC3
5814               21       37073226     37203112         TTC3
5815               21       37073226     37203112         TTC3
5816               21       37073226     37203112         TTC3
5817               21       37073226     37203112         TTC3
5818               21       37073226     37203112         TTC3
5819               21       37073226     37203112         TTC3
5820               21       37073226     37203112         TTC3
5821               21       37073226     37203112         TTC3
5822               21       37073226     37203112         TTC3
5823               21       37073226     37203112         TTC3
5824               21       37073226     37203112         TTC3
5825               21       37073226     37203112         TTC3
5826               21       37073226     37203112         TTC3
5827               21       37073226     37203112         TTC3
5828               21       37073226     37203112         TTC3
5829               21       37073226     37203112         TTC3
5830               21       37073226     37203112         TTC3
5831               21       37073226     37203112         TTC3
5832               21       37073226     37203112         TTC3
5833               21       37073226     37203112         TTC3
5834               21       37073226     37203112         TTC3
5835               21       37073226     37203112         TTC3
5836               21       37073226     37203112         TTC3
5837               21       37073226     37203112         TTC3
5838               21       37073226     37203112         TTC3
5839               21       37073226     37203112         TTC3
5840               21       37073226     37203112         TTC3
5841               21       37073226     37203112         TTC3
5842               21       37073226     37203112         TTC3
5843               21       37073226     37203112         TTC3
5844               21       37073226     37203112         TTC3
5845               21       37073226     37203112         TTC3
5846               21       37073226     37203112         TTC3
5847               21       37073226     37203112         TTC3
5848               21       37073226     37203112         TTC3
5849               21       37073226     37203112         TTC3
5850               21       37073226     37203112         TTC3
5851               21       37073226     37203112         TTC3
5852               21       37073226     37203112         TTC3
5853               21       37073226     37203112         TTC3
5854               21       37073226     37203112         TTC3
5855               21       37073226     37203112         TTC3
5856               21       37073226     37203112         TTC3
5857               21       37073226     37203112         TTC3
5858               21       37073226     37203112         TTC3
5859               21       37073226     37203112         TTC3
5860               21       37073226     37203112         TTC3
5861               21       37073226     37203112         TTC3
5862               21       37073226     37203112         TTC3
5863               21       37073226     37203112         TTC3
5864               21       37073226     37203112         TTC3
5865               21       37073226     37203112         TTC3
5866               21       37073226     37203112         TTC3
5867               21       37073226     37203112         TTC3
5868               21       37073226     37203112         TTC3
5869               21       37073226     37203112         TTC3
5870               21       37073226     37203112         TTC3
5871               21       37073226     37203112         TTC3
5872               21       37073226     37203112         TTC3
5873               21       37073226     37203112         TTC3
5874               21       37073226     37203112         TTC3
5875               21       37073226     37203112         TTC3
5876               21       37073226     37203112         TTC3
5877               21       37073226     37203112         TTC3
5878               21       37073226     37203112         TTC3
5879               21       37073226     37203112         TTC3
5880               21       37073226     37203112         TTC3
5881               21       37073226     37203112         TTC3
5882               21       37073226     37203112         TTC3
5883               21       37073226     37203112         TTC3
5884               21       37073226     37203112         TTC3
5885               21       37073226     37203112         TTC3
5886               21       37073226     37203112         TTC3
5887               21       37073226     37203112         TTC3
5888               21       37073226     37203112         TTC3
5889               21       37073226     37203112         TTC3
5890               21       37073226     37203112         TTC3
5891               21       37073226     37203112         TTC3
5892               21       37073226     37203112         TTC3
5893               21       37073226     37203112         TTC3
5894               21       37073226     37203112         TTC3
5895               21       37073226     37203112         TTC3
5896               21       37073226     37203112         TTC3
5897               21       37073226     37203112         TTC3
5898               21       37073226     37203112         TTC3
5899               21       37073226     37203112         TTC3
5900               21       37073226     37203112         TTC3
5901               21       37073226     37203112         TTC3
5902               21       37073226     37203112         TTC3
5903               21       37073226     37203112         TTC3
5904               21       37073226     37203112         TTC3
5905               21       37073226     37203112         TTC3
5906               21       37073226     37203112         TTC3
5907               21       37073226     37203112         TTC3
5908               21       37073226     37203112         TTC3
5909               21       37073226     37203112         TTC3
5910               21       37073226     37203112         TTC3
5911               21       37073226     37203112         TTC3
5912               21       37073226     37203112         TTC3
5913               21       37073226     37203112         TTC3
5914               21       37073226     37203112         TTC3
5915               21       37073226     37203112         TTC3
5916               21       37073226     37203112         TTC3
5917               21       37073226     37203112         TTC3
5918               21       37073226     37203112         TTC3
5919               21       37073226     37203112         TTC3
5920               21       37073226     37203112         TTC3
5921               21       37073226     37203112         TTC3
5922               21       37073226     37203112         TTC3
5923               21       37073226     37203112         TTC3
5924               21       37073226     37203112         TTC3
5925               21       37073226     37203112         TTC3
5926               21       37073226     37203112         TTC3
5927               21       37073226     37203112         TTC3
5928               21       37073226     37203112         TTC3
5929               21       37073226     37203112         TTC3
5930               21       37073226     37203112         TTC3
5931               21       37073226     37203112         TTC3
5932               21       37073226     37203112         TTC3
5933               21       37073226     37203112         TTC3
5934               21       37073226     37203112         TTC3
5935               21       37073226     37203112         TTC3
5936               21       37073226     37203112         TTC3
5937               21       37073226     37203112         TTC3
5938               21       37073226     37203112         TTC3
5939               21       37073226     37203112         TTC3
5940               21       37073226     37203112         TTC3
5941               21       37073226     37203112         TTC3
5942               21       37073226     37203112         TTC3
5943               21       37073226     37203112         TTC3
5944               21       37073226     37203112         TTC3
5945               21       37073226     37203112         TTC3
5946               21       37073226     37203112         TTC3
5947               21       37073226     37203112         TTC3
5948               21       37073226     37203112         TTC3
5949               21       37073226     37203112         TTC3
5950               21       37073226     37203112         TTC3
5951               21       37073226     37203112         TTC3
5952               21       37073226     37203112         TTC3
5953               21       37073226     37203112         TTC3
5954               21       37073226     37203112         TTC3
5955               21       37073226     37203112         TTC3
5956               21       37073226     37203112         TTC3
5957               21       37073226     37203112         TTC3
5958               21       37073226     37203112         TTC3
5959               21       37073226     37203112         TTC3
5960               21       37073226     37203112         TTC3
5961               21       37073226     37203112         TTC3
5962               21       37073226     37203112         TTC3
5963               21       37073226     37203112         TTC3
5964               21       37073226     37203112         TTC3
5965               21       37073226     37203112         TTC3
5966               21       37073226     37203112         TTC3
5967               21       37073226     37203112         TTC3
5968               21       37073226     37203112         TTC3
5969               21       37073226     37203112         TTC3
5970               21       37073226     37203112         TTC3
5971               21       37073226     37203112         TTC3
5972               21       37073226     37203112         TTC3
5973               21       37073226     37203112         TTC3
5974               21       37073226     37203112         TTC3
5975               21       37073226     37203112         TTC3
5976               21       37073226     37203112         TTC3
5977               21       37073226     37203112         TTC3
5978               21       37073226     37203112         TTC3
5979               21       37073226     37203112         TTC3
5980               21       37073226     37203112         TTC3
5981               21       37073226     37203112         TTC3
5982               21       37073226     37203112         TTC3
5983               21       37073226     37203112         TTC3
5984               21       37073226     37203112         TTC3
5985               21       37073226     37203112         TTC3
5986               21       37073226     37203112         TTC3
5987               21       37073226     37203112         TTC3
5988               21       37073226     37203112         TTC3
5989               21       37073226     37203112         TTC3
5990               21       37073226     37203112         TTC3
5991               21       37073226     37203112         TTC3
5992               21       37073226     37203112         TTC3
5993               21       37073226     37203112         TTC3
5994               21       37073226     37203112         TTC3
5995               21       37073226     37203112         TTC3
5996               21       37073226     37203112         TTC3
5997               21       37073226     37203112         TTC3
5998               21       37073226     37203112         TTC3
5999               21       37073226     37203112         TTC3
6000               21       37073226     37203112         TTC3
6001               21       37073226     37203112         TTC3
6002               21       37073226     37203112         TTC3
6003               21       37073226     37203112         TTC3
6004               21       37073226     37203112         TTC3
6005               21       37073226     37203112         TTC3
6006               21       37073226     37203112         TTC3
6007               21       37073226     37203112         TTC3
6008               21       37073226     37203112         TTC3
6009               21       37073226     37203112         TTC3
6010               21       37073226     37203112         TTC3
6011               21       37073226     37203112         TTC3
6012               21       37073226     37203112         TTC3
6013               21       37073226     37203112         TTC3
6014               21       37073226     37203112         TTC3
6015               21       37073226     37203112         TTC3
6016               21       37073226     37203112         TTC3
6017               21       37073226     37203112         TTC3
6018               21       37073226     37203112         TTC3
6019               21       37073226     37203112         TTC3
6020               21       37073226     37203112         TTC3
6021               21       37073226     37203112         TTC3
6022               21       37073226     37203112         TTC3
6023               21       37073226     37203112         TTC3
6024               21       37073226     37203112         TTC3
6025               21       37073226     37203112         TTC3
6026               21       37073226     37203112         TTC3
6027               21       37073226     37203112         TTC3
6028               21       37073226     37203112         TTC3
6029               21       37073226     37203112         TTC3
6030               21       37073226     37203112         TTC3
6031               21       37073226     37203112         TTC3
6032               21       37073226     37203112         TTC3
6033               21       37073226     37203112         TTC3
6034               21       37073226     37203112         TTC3
6035               21       37073226     37203112         TTC3
6036               21       37073226     37203112         TTC3
6037               21       37073226     37203112         TTC3
6038               21       37073226     37203112         TTC3
6039               21       37073226     37203112         TTC3
6040               21       37073226     37203112         TTC3
6041               21       37073226     37203112         TTC3
6042               21       37073226     37203112         TTC3
6043               21       37073226     37203112         TTC3
6044               21       37073226     37203112         TTC3
6045               21       37073226     37203112         TTC3
6046               21       37073226     37203112         TTC3
6047               21       37073226     37203112         TTC3
6048               21       37073226     37203112         TTC3
6049               21       37073226     37203112         TTC3
6050               21       37073226     37203112         TTC3
6051               21       37073226     37203112         TTC3
6052               21       37073226     37203112         TTC3
6053               21       37073226     37203112         TTC3
6054               21       37073226     37203112         TTC3
6055               21       37073226     37203112         TTC3
6056               21       37073226     37203112         TTC3
6057               21       37073226     37203112         TTC3
6058               21       37073226     37203112         TTC3
6059               21       37073226     37203112         TTC3
6060               21       37073226     37203112         TTC3
6061               21       37073226     37203112         TTC3
6062               21       37073226     37203112         TTC3
6063               21       37073226     37203112         TTC3
6064               21       37073226     37203112         TTC3
6065               21       37073226     37203112         TTC3
6066               21       37073226     37203112         TTC3
6067               21       37073226     37203112         TTC3
6068               21       37073226     37203112         TTC3
6069               21       37073226     37203112         TTC3
6070               21       37073226     37203112         TTC3
6071               21       37073226     37203112         TTC3
6072               21       37073226     37203112         TTC3
6073               21       37073226     37203112         TTC3
6074               21       37073226     37203112         TTC3
6075               21       37073226     37203112         TTC3
6076               21       37073226     37203112         TTC3
6077               21       37073226     37203112         TTC3
6078               21       37073226     37203112         TTC3
6079               21       37073226     37203112         TTC3
6080               21       37073226     37203112         TTC3
6081               21       37073226     37203112         TTC3
6082               21       37073226     37203112         TTC3
6083               21       37073226     37203112         TTC3
6084               21       37073226     37203112         TTC3
6085               21       37073226     37203112         TTC3
6086               21       37073226     37203112         TTC3
6087               21       37073226     37203112         TTC3
6088               21       37073226     37203112         TTC3
6089               21       37073226     37203112         TTC3
6090               21       37073226     37203112         TTC3
6091               21       37073226     37203112         TTC3
6092               21       37073226     37203112         TTC3
6093               21       37073226     37203112         TTC3
6094               21       37073226     37203112         TTC3
6095               21       37073226     37203112         TTC3
6096               21       37073226     37203112         TTC3
6097               21       37073226     37203112         TTC3
6098               21       37073226     37203112         TTC3
6099               21       37073226     37203112         TTC3
6100               21       37073226     37203112         TTC3
6101               21       37073226     37203112         TTC3
6102               21       37073226     37203112         TTC3
6103               21       37073226     37203112         TTC3
6104               21       37073226     37203112         TTC3
6105               21       37073226     37203112         TTC3
6106               21       37073226     37203112         TTC3
6107               21       37073226     37203112         TTC3
6108               21       37073226     37203112         TTC3
6109               21       37073226     37203112         TTC3
6110               21       37073226     37203112         TTC3
6111               21       37073226     37203112         TTC3
6112               21       37073226     37203112         TTC3
6113               21       37073226     37203112         TTC3
6114               21       37073226     37203112         TTC3
6115               21       37073226     37203112         TTC3
6116               21       37073226     37203112         TTC3
6117               21       37073226     37203112         TTC3
6118               21       37073226     37203112         TTC3
6119               21       37073226     37203112         TTC3
6120               21       37073226     37203112         TTC3
6121               21       37073226     37203112         TTC3
6122               21       37073226     37203112         TTC3
6123               21       37073226     37203112         TTC3
6124               21       37073226     37203112         TTC3
6125               21       37073226     37203112         TTC3
6126               21       37073226     37203112         TTC3
6127               21       37073226     37203112         TTC3
6128               21       37073226     37203112         TTC3
6129               21       37073226     37203112         TTC3
6130               21       37073226     37203112         TTC3
6131               21       37073226     37203112         TTC3
6132               21       37073226     37203112         TTC3
6133               21       37073226     37203112         TTC3
6134               21       37073226     37203112         TTC3
6135               21       37073226     37203112         TTC3
6136               21       37073226     37203112         TTC3
6137               21       37073226     37203112         TTC3
6138               21       37073226     37203112         TTC3
6139               21       37073226     37203112         TTC3
6140               21       37073226     37203112         TTC3
6141               21       37073226     37203112         TTC3
6142               21       37073226     37203112         TTC3
6143               21       37073226     37203112         TTC3
6144               21       37073226     37203112         TTC3
6145               21       37073226     37203112         TTC3
6146               21       37073226     37203112         TTC3
6147               21       37073226     37203112         TTC3
6148               21       37073226     37203112         TTC3
6149               21       37073226     37203112         TTC3
6150               21       37073226     37203112         TTC3
6151               21       37073226     37203112         TTC3
6152               21       37073226     37203112         TTC3
6153               21       37073226     37203112         TTC3
6154               21       37073226     37203112         TTC3
6155               21       37073226     37203112         TTC3
6156               21       37073226     37203112         TTC3
6157               21       37073226     37203112         TTC3
6158               21       37073226     37203112         TTC3
6159               21       37073226     37203112         TTC3
6160               21       37073226     37203112         TTC3
6161               21       37073226     37203112         TTC3
6162               21       37073226     37203112         TTC3
6163               21       37073226     37203112         TTC3
6164               21       37073226     37203112         TTC3
6165               21       37073226     37203112         TTC3
6166               21       37073226     37203112         TTC3
6167               21       37073226     37203112         TTC3
6168               21       37073226     37203112         TTC3
6169               21       37073226     37203112         TTC3
6170               21       37073226     37203112         TTC3
6171               21       37073226     37203112         TTC3
6172               21       37073226     37203112         TTC3
6173               21       37073226     37203112         TTC3
6174               21       37073226     37203112         TTC3
6175               21       37073226     37203112         TTC3
6176               21       37073226     37203112         TTC3
6177               21       37073226     37203112         TTC3
6178               21       37073226     37203112         TTC3
6179               21       37073226     37203112         TTC3
6180               21       37073226     37203112         TTC3
6181               21       37073226     37203112         TTC3
6182               21       37073226     37203112         TTC3
6183               21       37073226     37203112         TTC3
6184               21       37073226     37203112         TTC3
6185               21       37073226     37203112         TTC3
6186               21       37073226     37203112         TTC3
6187               21       37073226     37203112         TTC3
6188               21       37073226     37203112         TTC3
6189               21       37073226     37203112         TTC3
6190               21       37073226     37203112         TTC3
6191               21       37073226     37203112         TTC3
6192               21       37073226     37203112         TTC3
6193               21       37073226     37203112         TTC3
6194               21       37073226     37203112         TTC3
6195               21       37073226     37203112         TTC3
6196               21       37073226     37203112         TTC3
6197               21       37073226     37203112         TTC3
6198               21       37073226     37203112         TTC3
6199               21       37073226     37203112         TTC3
6200               21       37073226     37203112         TTC3
6201               21       37073226     37203112         TTC3
6202               21       37073226     37203112         TTC3
6203               21       37073226     37203112         TTC3
6204               21       37073226     37203112         TTC3
6205               21       37073226     37203112         TTC3
6206               21       37073226     37203112         TTC3
6207               21       37073226     37203112         TTC3
6208               21       37073226     37203112         TTC3
6209               21       37073226     37203112         TTC3
6210               21       37073226     37203112         TTC3
6211               21       37073226     37203112         TTC3
6212               21       37073226     37203112         TTC3
6213               21       37073226     37203112         TTC3
6214               21       37073226     37203112         TTC3
6215               21       37073226     37203112         TTC3
6216               21       37073226     37203112         TTC3
6217               21       37073226     37203112         TTC3
6218               21       37073226     37203112         TTC3
6219               21       37073226     37203112         TTC3
6220               21       37073226     37203112         TTC3
6221               21       37073226     37203112         TTC3
6222               21       37073226     37203112         TTC3
6223               21       37073226     37203112         TTC3
6224               21       37073226     37203112         TTC3
6225               21       37073226     37203112         TTC3
6226               21       37073226     37203112         TTC3
6227               21       37073226     37203112         TTC3
6228               21       37073226     37203112         TTC3
6229               21       37073226     37203112         TTC3
6230               21       37073226     37203112         TTC3
6231               21       37073226     37203112         TTC3
6232               21       37073226     37203112         TTC3
6233               21       37073226     37203112         TTC3
6234               21       37073226     37203112         TTC3
6235               21       37073226     37203112         TTC3
6236               21       37073226     37203112         TTC3
6237               21       37073226     37203112         TTC3
6238               21       37073226     37203112         TTC3
6239               21       37073226     37203112         TTC3
6240               21       37073226     37203112         TTC3
6241               21       37073226     37203112         TTC3
6242               21       37073226     37203112         TTC3
6243               21       37073226     37203112         TTC3
6244               21       37073226     37203112         TTC3
6245               21       37073226     37203112         TTC3
6246               21       37073226     37203112         TTC3
6247               21       37073226     37203112         TTC3
6248               21       37073226     37203112         TTC3
6249               21       37073226     37203112         TTC3
6250               21       37073226     37203112         TTC3
6251               21       37073226     37203112         TTC3
6252               21       37073226     37203112         TTC3
6253               21       37073226     37203112         TTC3
6254               21       37073226     37203112         TTC3
6255               21       37073226     37203112         TTC3
6256               21       37073226     37203112         TTC3
6257               21       37073226     37203112         TTC3
6258               21       37073226     37203112         TTC3
6259               21       37073226     37203112         TTC3
6260               21       37073226     37203112         TTC3
6261               21       37073226     37203112         TTC3
6262               21       37073226     37203112         TTC3
6263               21       37073226     37203112         TTC3
6264               21        6789592      6812297             
6265               21        6789592      6812297             
6266               21        6789592      6812297             
6267               21       29058073     29060095             
6268               21       29058073     29060095             
6269               21       29055805     29073797         CCT8
6270               21       29055805     29073797         CCT8
6271               21       29055805     29073797         CCT8
6272               21       29055805     29073797         CCT8
6273               21       29055805     29073797         CCT8
6274               21       29055805     29073797         CCT8
6275               21       29055805     29073797         CCT8
6276               21       29055805     29073797         CCT8
6277               21       29055805     29073797         CCT8
6278               21       29055805     29073797         CCT8
6279               21       29055805     29073797         CCT8
6280               21       29055805     29073797         CCT8
6281               21       29055805     29073797         CCT8
6282               21       29055805     29073797         CCT8
6283               21       29055805     29073797         CCT8
6284               21       29055805     29073797         CCT8
6285               21       29055805     29073797         CCT8
6286               21       29055805     29073797         CCT8
6287               21       29055805     29073797         CCT8
6288               21       29055805     29073797         CCT8
6289               21       29055805     29073797         CCT8
6290               21       29055805     29073797         CCT8
6291               21       29055805     29073797         CCT8
6292               21       29055805     29073797         CCT8
6293               21       29055805     29073797         CCT8
6294               21       29055805     29073797         CCT8
6295               21       29055805     29073797         CCT8
6296               21       29055805     29073797         CCT8
6297               21       29055805     29073797         CCT8
6298               21       29055805     29073797         CCT8
6299               21       29055805     29073797         CCT8
6300               21       29055805     29073797         CCT8
6301               21       29055805     29073797         CCT8
6302               21       29055805     29073797         CCT8
6303               21       29055805     29073797         CCT8
6304               21       29055805     29073797         CCT8
6305               21       29055805     29073797         CCT8
6306               21       29055805     29073797         CCT8
6307               21       29055805     29073797         CCT8
6308               21       29055805     29073797         CCT8
6309               21       29055805     29073797         CCT8
6310               21       29055805     29073797         CCT8
6311               21       29055805     29073797         CCT8
6312               21       29055805     29073797         CCT8
6313               21       29055805     29073797         CCT8
6314               21       29055805     29073797         CCT8
6315               21       29055805     29073797         CCT8
6316               21       29055805     29073797         CCT8
6317               21       29055805     29073797         CCT8
6318               21       29055805     29073797         CCT8
6319               21       29055805     29073797         CCT8
6320               21       29055805     29073797         CCT8
6321               21       29055805     29073797         CCT8
6322               21       29055805     29073797         CCT8
6323               21       29055805     29073797         CCT8
6324               21       29055805     29073797         CCT8
6325               21       29055805     29073797         CCT8
6326               21       29055805     29073797         CCT8
6327               21       29055805     29073797         CCT8
6328               21       29055805     29073797         CCT8
6329               21       29055805     29073797         CCT8
6330               21       29055805     29073797         CCT8
6331               21       29055805     29073797         CCT8
6332               21       29055805     29073797         CCT8
6333               21       29055805     29073797         CCT8
6334               21       29055805     29073797         CCT8
6335               21       29055805     29073797         CCT8
6336               21       29055805     29073797         CCT8
6337               21       29055805     29073797         CCT8
6338               21       29055805     29073797         CCT8
6339               21       29055805     29073797         CCT8
6340               21       29055805     29073797         CCT8
6341               21       29055805     29073797         CCT8
6342               21       29055805     29073797         CCT8
6343               21       29055805     29073797         CCT8
6344               21       29055805     29073797         CCT8
6345               21       29055805     29073797         CCT8
6346               21       29055805     29073797         CCT8
6347               21       29055805     29073797         CCT8
6348               21       29055805     29073797         CCT8
6349               21       29055805     29073797         CCT8
6350               21       29055805     29073797         CCT8
6351               21       29055805     29073797         CCT8
6352               21       29055805     29073797         CCT8
6353               21       29055805     29073797         CCT8
6354               21       29055805     29073797         CCT8
6355               21       29055805     29073797         CCT8
6356               21       29055805     29073797         CCT8
6357               21       29055805     29073797         CCT8
6358               21       29055805     29073797         CCT8
6359               21       29055805     29073797         CCT8
6360               21       29055805     29073797         CCT8
6361               21       29055805     29073797         CCT8
6362               21       29055805     29073797         CCT8
6363               21       29055805     29073797         CCT8
6364               21       29055805     29073797         CCT8
6365               21       29055805     29073797         CCT8
6366               21       29055805     29073797         CCT8
6367               21       29055805     29073797         CCT8
6368               21       29055805     29073797         CCT8
6369               21       29055805     29073797         CCT8
6370               21       29055805     29073797         CCT8
6371               21        6858539      6897263             
6372               21        6858539      6897263             
6373               21        6858539      6897263             
6374               21       33334571     33335096       USF1P1
6375               21       33324477     33359862       IFNAR1
6376               21       33324477     33359862       IFNAR1
6377               21       33324477     33359862       IFNAR1
6378               21       33324477     33359862       IFNAR1
6379               21       33324477     33359862       IFNAR1
6380               21       33324477     33359862       IFNAR1
6381               21       33324477     33359862       IFNAR1
6382               21       33324477     33359862       IFNAR1
6383               21       33324477     33359862       IFNAR1
6384               21       33324477     33359862       IFNAR1
6385               21       33324477     33359862       IFNAR1
6386               21       33324477     33359862       IFNAR1
6387               21       33324477     33359862       IFNAR1
6388               21       33324477     33359862       IFNAR1
6389               21       33324477     33359862       IFNAR1
6390               21       33324477     33359862       IFNAR1
6391               21       33324477     33359862       IFNAR1
6392               21        6897291      6899280             
6393               21        6904884      6906692             
6394               21        6904884      6906692             
6395               21        6994374      6997737             
6396               21        6994374      6997737             
6397               21        6994374      6997737             
6398               21        6986450      6997765             
6399               21        6986450      6997765             
6400               21        6986450      6997765             
6401               21        6986450      6997765             
6402               21        6986450      6997765             
6403               21        6986450      6997765             
6404               21        6986450      6997765             
6405               21        6986450      6997765             
6406               21        6986450      6997765             
6407               21        6986450      6997765             
6408               21        6986450      6997765             
6409               21       39405844     39445805        LCA5L
6410               21       39405844     39445805        LCA5L
6411               21       39405844     39445805        LCA5L
6412               21       39405844     39445805        LCA5L
6413               21       39405844     39445805        LCA5L
6414               21       39405844     39445805        LCA5L
6415               21       39405844     39445805        LCA5L
6416               21       39405844     39445805        LCA5L
6417               21       39405844     39445805        LCA5L
6418               21       39405844     39445805        LCA5L
6419               21       39405844     39445805        LCA5L
6420               21       39405844     39445805        LCA5L
6421               21       39405844     39445805        LCA5L
6422               21       39405844     39445805        LCA5L
6423               21       39405844     39445805        LCA5L
6424               21       39405844     39445805        LCA5L
6425               21       39405844     39445805        LCA5L
6426               21       39405844     39445805        LCA5L
6427               21       39405844     39445805        LCA5L
6428               21       39405844     39445805        LCA5L
6429               21       39405844     39445805        LCA5L
6430               21       39405844     39445805        LCA5L
6431               21       39405844     39445805        LCA5L
6432               21       39405844     39445805        LCA5L
6433               21       39405844     39445805        LCA5L
6434               21       39405844     39445805        LCA5L
6435               21       39405844     39445805        LCA5L
6436               21       39405844     39445805        LCA5L
6437               21       39405844     39445805        LCA5L
6438               21       39405844     39445805        LCA5L
6439               21       39405844     39445805        LCA5L
6440               21       39405844     39445805        LCA5L
6441               21       39405844     39445805        LCA5L
6442               21       39405844     39445805        LCA5L
6443               21       39405844     39445805        LCA5L
6444               21       39405844     39445805        LCA5L
6445               21       39405844     39445805        LCA5L
6446               21       39405844     39445805        LCA5L
6447               21       39405844     39445805        LCA5L
6448               21       39405844     39445805        LCA5L
6449               21       39405844     39445805        LCA5L
6450               21       39405844     39445805        LCA5L
6451               21       39405844     39445805        LCA5L
6452               21       39405844     39445805        LCA5L
6453               21       39405844     39445805        LCA5L
6454               21       39405844     39445805        LCA5L
6455               21       39405844     39445805        LCA5L
6456               21       39405844     39445805        LCA5L
6457               21       39405844     39445805        LCA5L
6458               21       39405844     39445805        LCA5L
6459               21       39405844     39445805        LCA5L
6460               21       39405844     39445805        LCA5L
6461               21       39405844     39445805        LCA5L
6462               21       39405844     39445805        LCA5L
6463               21       39405844     39445805        LCA5L
6464               21       39405844     39445805        LCA5L
6465               21       39405844     39445805        LCA5L
6466               21       39405844     39445805        LCA5L
6467               21       39405844     39445805        LCA5L
6468               21       39405844     39445805        LCA5L
6469               21       39405844     39445805        LCA5L
6470               21       39405844     39445805        LCA5L
6471               21       39405844     39445805        LCA5L
6472               21       39405844     39445805        LCA5L
6473               21       39405844     39445805        LCA5L
6474               21       39405844     39445805        LCA5L
6475               21       39405844     39445805        LCA5L
6476               21       39405844     39445805        LCA5L
6477               21       39405844     39445805        LCA5L
6478               21       39405844     39445805        LCA5L
6479               21       39405844     39445805        LCA5L
6480               21       39405844     39445805        LCA5L
6481               21       39405844     39445805        LCA5L
6482               21       39405844     39445805        LCA5L
6483               21       39405844     39445805        LCA5L
6484               21       39405844     39445805        LCA5L
6485               21       39405844     39445805        LCA5L
6486               21       39405844     39445805        LCA5L
6487               21       39405844     39445805        LCA5L
6488               21       39405844     39445805        LCA5L
6489               21       39405844     39445805        LCA5L
6490               21       39405844     39445805        LCA5L
6491               21       39405844     39445805        LCA5L
6492               21       39405844     39445805        LCA5L
6493               21       39405844     39445805        LCA5L
6494               21       39405844     39445805        LCA5L
6495               21       39405844     39445805        LCA5L
6496               21       39405844     39445805        LCA5L
6497               21       39405844     39445805        LCA5L
6498               21       39405844     39445805        LCA5L
6499               21       39405844     39445805        LCA5L
6500               21       39405844     39445805        LCA5L
6501               21       39405844     39445805        LCA5L
6502               21       39405844     39445805        LCA5L
6503               21       39405844     39445805        LCA5L
6504               21       39405844     39445805        LCA5L
6505               21       39405844     39445805        LCA5L
6506               21       39405844     39445805        LCA5L
6507               21       39405844     39445805        LCA5L
6508               21       39405844     39445805        LCA5L
6509               21       39405844     39445805        LCA5L
6510               21       39405844     39445805        LCA5L
6511               21       39405844     39445805        LCA5L
6512               21       39405844     39445805        LCA5L
6513               21       39405844     39445805        LCA5L
6514               21       39405844     39445805        LCA5L
6515               21       39405844     39445805        LCA5L
6516               21       39405844     39445805        LCA5L
6517               21       39405844     39445805        LCA5L
6518               21       39405844     39445805        LCA5L
6519               21       39405844     39445805        LCA5L
6520               21       39405844     39445805        LCA5L
6521               21       39405844     39445805        LCA5L
6522               21       39405844     39445805        LCA5L
6523               21       39405844     39445805        LCA5L
6524               21       39405844     39445805        LCA5L
6525               21       39405844     39445805        LCA5L
6526               21        7003248      7007022             
6527               21        7003248      7007022             
6528               21        7003248      7007022             
6529               21        7003248      7007022             
6530               21        7003248      7007022             
6531               21        7003248      7007022             
6532               21        7003248      7007022             
6533               21        7003248      7007022             
6534               21        7003248      7007022             
6535               21       33263873     33266260   IL10RB-AS1
6536               21       33263873     33266260   IL10RB-AS1
6537               21       29024629     29054488        USP16
6538               21       29024629     29054488        USP16
6539               21       29024629     29054488        USP16
6540               21       29024629     29054488        USP16
6541               21       29024629     29054488        USP16
6542               21       29024629     29054488        USP16
6543               21       29024629     29054488        USP16
6544               21       29024629     29054488        USP16
6545               21       29024629     29054488        USP16
6546               21       29024629     29054488        USP16
6547               21       29024629     29054488        USP16
6548               21       29024629     29054488        USP16
6549               21       29024629     29054488        USP16
6550               21       29024629     29054488        USP16
6551               21       29024629     29054488        USP16
6552               21       29024629     29054488        USP16
6553               21       29024629     29054488        USP16
6554               21       29024629     29054488        USP16
6555               21       29024629     29054488        USP16
6556               21       29024629     29054488        USP16
6557               21       29024629     29054488        USP16
6558               21       29024629     29054488        USP16
6559               21       29024629     29054488        USP16
6560               21       29024629     29054488        USP16
6561               21       29024629     29054488        USP16
6562               21       29024629     29054488        USP16
6563               21       29024629     29054488        USP16
6564               21       29024629     29054488        USP16
6565               21       29024629     29054488        USP16
6566               21       29024629     29054488        USP16
6567               21       29024629     29054488        USP16
6568               21       29024629     29054488        USP16
6569               21       29024629     29054488        USP16
6570               21       29024629     29054488        USP16
6571               21       29024629     29054488        USP16
6572               21       29024629     29054488        USP16
6573               21       29024629     29054488        USP16
6574               21       29024629     29054488        USP16
6575               21       29024629     29054488        USP16
6576               21       29024629     29054488        USP16
6577               21       29024629     29054488        USP16
6578               21       29024629     29054488        USP16
6579               21       29024629     29054488        USP16
6580               21       29024629     29054488        USP16
6581               21       29024629     29054488        USP16
6582               21       29024629     29054488        USP16
6583               21       29024629     29054488        USP16
6584               21       29024629     29054488        USP16
6585               21       29024629     29054488        USP16
6586               21       29024629     29054488        USP16
6587               21       29024629     29054488        USP16
6588               21       29024629     29054488        USP16
6589               21       29024629     29054488        USP16
6590               21       29024629     29054488        USP16
6591               21       29024629     29054488        USP16
6592               21       29024629     29054488        USP16
6593               21       29024629     29054488        USP16
6594               21       29024629     29054488        USP16
6595               21       29024629     29054488        USP16
6596               21       29024629     29054488        USP16
6597               21       29024629     29054488        USP16
6598               21       29024629     29054488        USP16
6599               21       29024629     29054488        USP16
6600               21       29024629     29054488        USP16
6601               21       29024629     29054488        USP16
6602               21       29024629     29054488        USP16
6603               21       29024629     29054488        USP16
6604               21       29024629     29054488        USP16
6605               21       29024629     29054488        USP16
6606               21       29024629     29054488        USP16
6607               21       29024629     29054488        USP16
6608               21       29024629     29054488        USP16
6609               21       29024629     29054488        USP16
6610               21       29024629     29054488        USP16
6611               21       29024629     29054488        USP16
6612               21       29024629     29054488        USP16
6613               21       29024629     29054488        USP16
6614               21       29024629     29054488        USP16
6615               21       29024629     29054488        USP16
6616               21       32793564     32813743     C21orf62
6617               21       32793564     32813743     C21orf62
6618               21       32793564     32813743     C21orf62
6619               21       32793564     32813743     C21orf62
6620               21       32793564     32813743     C21orf62
6621               21       32793564     32813743     C21orf62
6622               21       32793564     32813743     C21orf62
6623               21       32793564     32813743     C21orf62
6624               21       32793564     32813743     C21orf62
6625               21       32793564     32813743     C21orf62
6626               21       32793564     32813743     C21orf62
6627               21       32793564     32813743     C21orf62
6628               21       36485983     36487411      PSMD4P1
6629               21       36485983     36487411      PSMD4P1
6630               21       23090028     23091831      ZNF299P
6631               21       22436290     22438349     MAPK6PS2
6632               21       21723293     21737319    LINC00317
6633               21       21723293     21737319    LINC00317
6634               21       21723293     21737319    LINC00317
6635               21       44107290     44131181         PWP2
6636               21       44107290     44131181         PWP2
6637               21       44107290     44131181         PWP2
6638               21       44107290     44131181         PWP2
6639               21       44107290     44131181         PWP2
6640               21       44107290     44131181         PWP2
6641               21       44107290     44131181         PWP2
6642               21       44107290     44131181         PWP2
6643               21       44107290     44131181         PWP2
6644               21       44107290     44131181         PWP2
6645               21       44107290     44131181         PWP2
6646               21       44107290     44131181         PWP2
6647               21       44107290     44131181         PWP2
6648               21       44107290     44131181         PWP2
6649               21       44107290     44131181         PWP2
6650               21       44107290     44131181         PWP2
6651               21       44107290     44131181         PWP2
6652               21       44107290     44131181         PWP2
6653               21       44107290     44131181         PWP2
6654               21       44107290     44131181         PWP2
6655               21       44107290     44131181         PWP2
6656               21       44107290     44131181         PWP2
6657               21       44107290     44131181         PWP2
6658               21       44107290     44131181         PWP2
6659               21       44107290     44131181         PWP2
6660               21       44107290     44131181         PWP2
6661               21       44107290     44131181         PWP2
6662               21       44107290     44131181         PWP2
6663               21       44107290     44131181         PWP2
6664               21       44107290     44131181         PWP2
6665               21       44107290     44131181         PWP2
6666               21       44107290     44131181         PWP2
6667               21       44107290     44131181         PWP2
6668               21       44107290     44131181         PWP2
6669               21       44107290     44131181         PWP2
6670               21       44107290     44131181         PWP2
6671               21       44107290     44131181         PWP2
6672               21       44107290     44131181         PWP2
6673               21       44107290     44131181         PWP2
6674               21       44107290     44131181         PWP2
6675               21       44107290     44131181         PWP2
6676               21       44107290     44131181         PWP2
6677               21       44107290     44131181         PWP2
6678               21       44107290     44131181         PWP2
6679               21       44107290     44131181         PWP2
6680               21       44107290     44131181         PWP2
6681               21       19130523     19134423             
6682               21       19130523     19134423             
6683               21       19244543     19246392     SLC6A6P1
6684               21       33432485     33480011      TMEM50B
6685               21       33432485     33480011      TMEM50B
6686               21       33432485     33480011      TMEM50B
6687               21       33432485     33480011      TMEM50B
6688               21       33432485     33480011      TMEM50B
6689               21       33432485     33480011      TMEM50B
6690               21       33432485     33480011      TMEM50B
6691               21       33432485     33480011      TMEM50B
6692               21       33432485     33480011      TMEM50B
6693               21       33432485     33480011      TMEM50B
6694               21       33432485     33480011      TMEM50B
6695               21       33432485     33480011      TMEM50B
6696               21       33432485     33480011      TMEM50B
6697               21       33432485     33480011      TMEM50B
6698               21       33432485     33480011      TMEM50B
6699               21       33432485     33480011      TMEM50B
6700               21       33432485     33480011      TMEM50B
6701               21       33432485     33480011      TMEM50B
6702               21       33432485     33480011      TMEM50B
6703               21       33432485     33480011      TMEM50B
6704               21       33432485     33480011      TMEM50B
6705               21       33432485     33480011      TMEM50B
6706               21       33432485     33480011      TMEM50B
6707               21       33432485     33480011      TMEM50B
6708               21       33432485     33480011      TMEM50B
6709               21       33432485     33480011      TMEM50B
6710               21       33432485     33480011      TMEM50B
6711               21       33432485     33480011      TMEM50B
6712               21       33432485     33480011      TMEM50B
6713               21       33432485     33480011      TMEM50B
6714               21       33432485     33480011      TMEM50B
6715               21       33432485     33480011      TMEM50B
6716               21       33432485     33480011      TMEM50B
6717               21       33432485     33480011      TMEM50B
6718               21       33432485     33480011      TMEM50B
6719               21       33432485     33480011      TMEM50B
6720               21       33432485     33480011      TMEM50B
6721               21       33432485     33480011      TMEM50B
6722               21       33432485     33480011      TMEM50B
6723               21       33432485     33480011      TMEM50B
6724               21       33432485     33480011      TMEM50B
6725               21       33432485     33480011      TMEM50B
6726               21       33432485     33480011      TMEM50B
6727               21       33432485     33480011      TMEM50B
6728               21       33432485     33480011      TMEM50B
6729               21       33432485     33480011      TMEM50B
6730               21       33432485     33480011      TMEM50B
6731               21       33432485     33480011      TMEM50B
6732               21       33432485     33480011      TMEM50B
6733               21       33070144     33072420        OLIG1
6734               21       33070144     33072420        OLIG1
6735               21       33070144     33072420        OLIG1
6736               21       33070144     33072420        OLIG1
6737               21       33070144     33072420        OLIG1
6738               21       32844367     32849934             
6739               21       32844367     32849934             
6740               21        6309161      6312948             
6741               21        6309161      6312948             
6742               21        6309161      6312948             
6743               21        6309161      6312948             
6744               21        6309161      6312948             
6745               21        6309161      6312948             
6746               21       36750888     36990236         HLCS
6747               21       36750888     36990236         HLCS
6748               21       36750888     36990236         HLCS
6749               21       36750888     36990236         HLCS
6750               21       36750888     36990236         HLCS
6751               21       36750888     36990236         HLCS
6752               21       36750888     36990236         HLCS
6753               21       36750888     36990236         HLCS
6754               21       36750888     36990236         HLCS
6755               21       36750888     36990236         HLCS
6756               21       36750888     36990236         HLCS
6757               21       36750888     36990236         HLCS
6758               21       36750888     36990236         HLCS
6759               21       36750888     36990236         HLCS
6760               21       36750888     36990236         HLCS
6761               21       36750888     36990236         HLCS
6762               21       36750888     36990236         HLCS
6763               21       36750888     36990236         HLCS
6764               21       36750888     36990236         HLCS
6765               21       36750888     36990236         HLCS
6766               21       36750888     36990236         HLCS
6767               21       36750888     36990236         HLCS
6768               21       36750888     36990236         HLCS
6769               21       36750888     36990236         HLCS
6770               21       36750888     36990236         HLCS
6771               21       36750888     36990236         HLCS
6772               21       36750888     36990236         HLCS
6773               21       36750888     36990236         HLCS
6774               21       36750888     36990236         HLCS
6775               21       36750888     36990236         HLCS
6776               21       36750888     36990236         HLCS
6777               21       36750888     36990236         HLCS
6778               21       36750888     36990236         HLCS
6779               21       36750888     36990236         HLCS
6780               21       36750888     36990236         HLCS
6781               21       36750888     36990236         HLCS
6782               21       36750888     36990236         HLCS
6783               21       36750888     36990236         HLCS
6784               21       36750888     36990236         HLCS
6785               21       36750888     36990236         HLCS
6786               21       36750888     36990236         HLCS
6787               21       36750888     36990236         HLCS
6788               21       36750888     36990236         HLCS
6789               21       36750888     36990236         HLCS
6790               21       36750888     36990236         HLCS
6791               21       36750888     36990236         HLCS
6792               21       36750888     36990236         HLCS
6793               21       36750888     36990236         HLCS
6794               21       36750888     36990236         HLCS
6795               21       36750888     36990236         HLCS
6796               21       36750888     36990236         HLCS
6797               21       36698773     36701564             
6798               21       36698773     36701564             
6799               21        6008604      6008810             
6800               21        7020599      7025166             
6801               21        7020599      7025166             
6802               21       29004384     29019378       RWDD2B
6803               21       29004384     29019378       RWDD2B
6804               21       29004384     29019378       RWDD2B
6805               21       29004384     29019378       RWDD2B
6806               21       29004384     29019378       RWDD2B
6807               21       29004384     29019378       RWDD2B
6808               21       29004384     29019378       RWDD2B
6809               21       29004384     29019378       RWDD2B
6810               21       29004384     29019378       RWDD2B
6811               21       29004384     29019378       RWDD2B
6812               21       29004384     29019378       RWDD2B
6813               21       29004384     29019378       RWDD2B
6814               21       29004384     29019378       RWDD2B
6815               21       29004384     29019378       RWDD2B
6816               21       29004384     29019378       RWDD2B
6817               21       29004384     29019378       RWDD2B
6818               21       29004384     29019378       RWDD2B
6819               21       29004384     29019378       RWDD2B
6820               21       29004384     29019378       RWDD2B
6821               21       29004384     29019378       RWDD2B
6822               21       29004384     29019378       RWDD2B
6823               21       29004384     29019378       RWDD2B
6824               21       29004384     29019378       RWDD2B
6825               21       29004384     29019378       RWDD2B
6826               21       29004384     29019378       RWDD2B
6827               21       29004384     29019378       RWDD2B
6828               21       29004384     29019378       RWDD2B
6829               21       29004384     29019378       RWDD2B
6830               21       29004384     29019378       RWDD2B
6831               21       37006150     37019659      RIPPLY3
6832               21       37006150     37019659      RIPPLY3
6833               21       37006150     37019659      RIPPLY3
6834               21       37006150     37019659      RIPPLY3
6835               21       37006150     37019659      RIPPLY3
6836               21       37006150     37019659      RIPPLY3
6837               21       37006150     37019659      RIPPLY3
6838               21       37006150     37019659      RIPPLY3
6839               21       37006150     37019659      RIPPLY3
6840               21       37006150     37019659      RIPPLY3
6841               21       37006150     37019659      RIPPLY3
6842               21       36699133     36749917         SIM2
6843               21       36699133     36749917         SIM2
6844               21       36699133     36749917         SIM2
6845               21       36699133     36749917         SIM2
6846               21       36699133     36749917         SIM2
6847               21       36699133     36749917         SIM2
6848               21       36699133     36749917         SIM2
6849               21       36699133     36749917         SIM2
6850               21       36699133     36749917         SIM2
6851               21       36699133     36749917         SIM2
6852               21       36699133     36749917         SIM2
6853               21       36699133     36749917         SIM2
6854               21       36699133     36749917         SIM2
6855               21       36699133     36749917         SIM2
6856               21       36699133     36749917         SIM2
6857               21       36699133     36749917         SIM2
6858               21       36699133     36749917         SIM2
6859               21       36699133     36749917         SIM2
6860               21       36699133     36749917         SIM2
6861               21       36699133     36749917         SIM2
6862               21       36699133     36749917         SIM2
6863               21       36699133     36749917         SIM2
6864               21       36699133     36749917         SIM2
6865               21       36699133     36749917         SIM2
6866               21       36699133     36749917         SIM2
6867               21       36699133     36749917         SIM2
6868               21       36699133     36749917         SIM2
6869               21       36699133     36749917         SIM2
6870               21       36699133     36749917         SIM2
6871               21       36699133     36749917         SIM2
6872               21       36699133     36749917         SIM2
6873               21       36699133     36749917         SIM2
6874               21       36699133     36749917         SIM2
6875               21       36699133     36749917         SIM2
6876               21       36699133     36749917         SIM2
6877               21       36632681     36637033             
6878               21       36632681     36637033             
6879               21        5972924      5973383             
6880               21       21223295     21226829             
6881               21       21223295     21226829             
6882               21       19739709     19740150             
6883               21       19593841     19594108      RPL37P4
6884               21       18561265     18760003    MIR548XHG
6885               21       18561265     18760003    MIR548XHG
6886               21       18561265     18760003    MIR548XHG
6887               21       18561265     18760003    MIR548XHG
6888               21       18561265     18760003    MIR548XHG
6889               21       18561265     18760003    MIR548XHG
6890               21       18561265     18760003    MIR548XHG
6891               21       18561265     18760003    MIR548XHG
6892               21       18561265     18760003    MIR548XHG
6893               21       18561265     18760003    MIR548XHG
6894               21       18561265     18760003    MIR548XHG
6895               21       18561265     18760003    MIR548XHG
6896               21       42831040     42836477             
6897               21       42831040     42836477             
6898               21       42831040     42836477             
6899               21       42777819     42779994    LINC01668
6900               21       42777819     42779994    LINC01668
6901               21       42777819     42779994    LINC01668
6902               21       46161148     46184476      SPATC1L
6903               21       46161148     46184476      SPATC1L
6904               21       46161148     46184476      SPATC1L
6905               21       46161148     46184476      SPATC1L
6906               21       46161148     46184476      SPATC1L
6907               21       46161148     46184476      SPATC1L
6908               21       46161148     46184476      SPATC1L
6909               21       46161148     46184476      SPATC1L
6910               21       46161148     46184476      SPATC1L
6911               21       41175231     41185239        PLAC4
6912               21       41175231     41185239        PLAC4
6913               21       33642400     33899861        ITSN1
6914               21       33642400     33899861        ITSN1
6915               21       33642400     33899861        ITSN1
6916               21       33642400     33899861        ITSN1
6917               21       33642400     33899861        ITSN1
6918               21       33642400     33899861        ITSN1
6919               21       33642400     33899861        ITSN1
6920               21       33642400     33899861        ITSN1
6921               21       33642400     33899861        ITSN1
6922               21       33642400     33899861        ITSN1
6923               21       33642400     33899861        ITSN1
6924               21       33642400     33899861        ITSN1
6925               21       33642400     33899861        ITSN1
6926               21       33642400     33899861        ITSN1
6927               21       33642400     33899861        ITSN1
6928               21       33642400     33899861        ITSN1
6929               21       33642400     33899861        ITSN1
6930               21       33642400     33899861        ITSN1
6931               21       33642400     33899861        ITSN1
6932               21       33642400     33899861        ITSN1
6933               21       33642400     33899861        ITSN1
6934               21       33642400     33899861        ITSN1
6935               21       33642400     33899861        ITSN1
6936               21       33642400     33899861        ITSN1
6937               21       33642400     33899861        ITSN1
6938               21       33642400     33899861        ITSN1
6939               21       33642400     33899861        ITSN1
6940               21       33642400     33899861        ITSN1
6941               21       33642400     33899861        ITSN1
6942               21       33642400     33899861        ITSN1
6943               21       33642400     33899861        ITSN1
6944               21       33642400     33899861        ITSN1
6945               21       33642400     33899861        ITSN1
6946               21       33642400     33899861        ITSN1
6947               21       33642400     33899861        ITSN1
6948               21       33642400     33899861        ITSN1
6949               21       33642400     33899861        ITSN1
6950               21       33642400     33899861        ITSN1
6951               21       33642400     33899861        ITSN1
6952               21       33642400     33899861        ITSN1
6953               21       33642400     33899861        ITSN1
6954               21       33642400     33899861        ITSN1
6955               21       33642400     33899861        ITSN1
6956               21       33642400     33899861        ITSN1
6957               21       33642400     33899861        ITSN1
6958               21       33642400     33899861        ITSN1
6959               21       33642400     33899861        ITSN1
6960               21       33642400     33899861        ITSN1
6961               21       33642400     33899861        ITSN1
6962               21       33642400     33899861        ITSN1
6963               21       33642400     33899861        ITSN1
6964               21       33642400     33899861        ITSN1
6965               21       33642400     33899861        ITSN1
6966               21       33642400     33899861        ITSN1
6967               21       33642400     33899861        ITSN1
6968               21       33642400     33899861        ITSN1
6969               21       33642400     33899861        ITSN1
6970               21       33642400     33899861        ITSN1
6971               21       33642400     33899861        ITSN1
6972               21       33642400     33899861        ITSN1
6973               21       33642400     33899861        ITSN1
6974               21       33642400     33899861        ITSN1
6975               21       33642400     33899861        ITSN1
6976               21       33642400     33899861        ITSN1
6977               21       33642400     33899861        ITSN1
6978               21       33642400     33899861        ITSN1
6979               21       33642400     33899861        ITSN1
6980               21       33642400     33899861        ITSN1
6981               21       33642400     33899861        ITSN1
6982               21       33642400     33899861        ITSN1
6983               21       33642400     33899861        ITSN1
6984               21       33642400     33899861        ITSN1
6985               21       33642400     33899861        ITSN1
6986               21       33642400     33899861        ITSN1
6987               21       33642400     33899861        ITSN1
6988               21       33642400     33899861        ITSN1
6989               21       33642400     33899861        ITSN1
6990               21       33642400     33899861        ITSN1
6991               21       33642400     33899861        ITSN1
6992               21       33642400     33899861        ITSN1
6993               21       33642400     33899861        ITSN1
6994               21       33642400     33899861        ITSN1
6995               21       33642400     33899861        ITSN1
6996               21       33642400     33899861        ITSN1
6997               21       33642400     33899861        ITSN1
6998               21       33642400     33899861        ITSN1
6999               21       33642400     33899861        ITSN1
7000               21       33642400     33899861        ITSN1
7001               21       33642400     33899861        ITSN1
7002               21       33642400     33899861        ITSN1
7003               21       33642400     33899861        ITSN1
7004               21       33642400     33899861        ITSN1
7005               21       33642400     33899861        ITSN1
7006               21       33642400     33899861        ITSN1
7007               21       33642400     33899861        ITSN1
7008               21       33642400     33899861        ITSN1
7009               21       33642400     33899861        ITSN1
7010               21       33642400     33899861        ITSN1
7011               21       33642400     33899861        ITSN1
7012               21       33642400     33899861        ITSN1
7013               21       33642400     33899861        ITSN1
7014               21       33642400     33899861        ITSN1
7015               21       33642400     33899861        ITSN1
7016               21       33642400     33899861        ITSN1
7017               21       33642400     33899861        ITSN1
7018               21       33642400     33899861        ITSN1
7019               21       33642400     33899861        ITSN1
7020               21       33642400     33899861        ITSN1
7021               21       33642400     33899861        ITSN1
7022               21       33642400     33899861        ITSN1
7023               21       33642400     33899861        ITSN1
7024               21       33642400     33899861        ITSN1
7025               21       33642400     33899861        ITSN1
7026               21       33642400     33899861        ITSN1
7027               21       33642400     33899861        ITSN1
7028               21       33642400     33899861        ITSN1
7029               21       33642400     33899861        ITSN1
7030               21       33642400     33899861        ITSN1
7031               21       33642400     33899861        ITSN1
7032               21       33642400     33899861        ITSN1
7033               21       33642400     33899861        ITSN1
7034               21       33642400     33899861        ITSN1
7035               21       33642400     33899861        ITSN1
7036               21       33642400     33899861        ITSN1
7037               21       33642400     33899861        ITSN1
7038               21       33642400     33899861        ITSN1
7039               21       33642400     33899861        ITSN1
7040               21       33642400     33899861        ITSN1
7041               21       33642400     33899861        ITSN1
7042               21       33642400     33899861        ITSN1
7043               21       33642400     33899861        ITSN1
7044               21       33642400     33899861        ITSN1
7045               21       33642400     33899861        ITSN1
7046               21       33642400     33899861        ITSN1
7047               21       33642400     33899861        ITSN1
7048               21       33642400     33899861        ITSN1
7049               21       33642400     33899861        ITSN1
7050               21       33642400     33899861        ITSN1
7051               21       33642400     33899861        ITSN1
7052               21       33642400     33899861        ITSN1
7053               21       33642400     33899861        ITSN1
7054               21       33642400     33899861        ITSN1
7055               21       33642400     33899861        ITSN1
7056               21       33642400     33899861        ITSN1
7057               21       33642400     33899861        ITSN1
7058               21       33642400     33899861        ITSN1
7059               21       33642400     33899861        ITSN1
7060               21       33642400     33899861        ITSN1
7061               21       33642400     33899861        ITSN1
7062               21       33642400     33899861        ITSN1
7063               21       33642400     33899861        ITSN1
7064               21       33642400     33899861        ITSN1
7065               21       33642400     33899861        ITSN1
7066               21       33642400     33899861        ITSN1
7067               21       33642400     33899861        ITSN1
7068               21       33642400     33899861        ITSN1
7069               21       33642400     33899861        ITSN1
7070               21       33642400     33899861        ITSN1
7071               21       33642400     33899861        ITSN1
7072               21       33642400     33899861        ITSN1
7073               21       33642400     33899861        ITSN1
7074               21       33642400     33899861        ITSN1
7075               21       33642400     33899861        ITSN1
7076               21       33642400     33899861        ITSN1
7077               21       33642400     33899861        ITSN1
7078               21       33642400     33899861        ITSN1
7079               21       33642400     33899861        ITSN1
7080               21       33642400     33899861        ITSN1
7081               21       33642400     33899861        ITSN1
7082               21       33642400     33899861        ITSN1
7083               21       33642400     33899861        ITSN1
7084               21       33642400     33899861        ITSN1
7085               21       33642400     33899861        ITSN1
7086               21       33642400     33899861        ITSN1
7087               21       33642400     33899861        ITSN1
7088               21       33642400     33899861        ITSN1
7089               21       33642400     33899861        ITSN1
7090               21       33642400     33899861        ITSN1
7091               21       33642400     33899861        ITSN1
7092               21       33642400     33899861        ITSN1
7093               21       33642400     33899861        ITSN1
7094               21       33642400     33899861        ITSN1
7095               21       33642400     33899861        ITSN1
7096               21       33642400     33899861        ITSN1
7097               21       33642400     33899861        ITSN1
7098               21       33642400     33899861        ITSN1
7099               21       33642400     33899861        ITSN1
7100               21       33642400     33899861        ITSN1
7101               21       33642400     33899861        ITSN1
7102               21       33642400     33899861        ITSN1
7103               21       33642400     33899861        ITSN1
7104               21       33642400     33899861        ITSN1
7105               21       33642400     33899861        ITSN1
7106               21       33642400     33899861        ITSN1
7107               21       33642400     33899861        ITSN1
7108               21       33642400     33899861        ITSN1
7109               21       33642400     33899861        ITSN1
7110               21       33642400     33899861        ITSN1
7111               21       33642400     33899861        ITSN1
7112               21       33642400     33899861        ITSN1
7113               21       33642400     33899861        ITSN1
7114               21       33642400     33899861        ITSN1
7115               21       33642400     33899861        ITSN1
7116               21       33642400     33899861        ITSN1
7117               21       33642400     33899861        ITSN1
7118               21       33642400     33899861        ITSN1
7119               21       33642400     33899861        ITSN1
7120               21       33642400     33899861        ITSN1
7121               21       33642400     33899861        ITSN1
7122               21       33642400     33899861        ITSN1
7123               21       33642400     33899861        ITSN1
7124               21       33642400     33899861        ITSN1
7125               21       33642400     33899861        ITSN1
7126               21       33642400     33899861        ITSN1
7127               21       33642400     33899861        ITSN1
7128               21       33642400     33899861        ITSN1
7129               21       33642400     33899861        ITSN1
7130               21       33642400     33899861        ITSN1
7131               21       33642400     33899861        ITSN1
7132               21       33642400     33899861        ITSN1
7133               21       33642400     33899861        ITSN1
7134               21       33642400     33899861        ITSN1
7135               21       33642400     33899861        ITSN1
7136               21       33642400     33899861        ITSN1
7137               21       33642400     33899861        ITSN1
7138               21       33642400     33899861        ITSN1
7139               21       33642400     33899861        ITSN1
7140               21       33642400     33899861        ITSN1
7141               21       33642400     33899861        ITSN1
7142               21       33642400     33899861        ITSN1
7143               21       33642400     33899861        ITSN1
7144               21       33642400     33899861        ITSN1
7145               21       33642400     33899861        ITSN1
7146               21       33642400     33899861        ITSN1
7147               21       33642400     33899861        ITSN1
7148               21       33642400     33899861        ITSN1
7149               21       33642400     33899861        ITSN1
7150               21       33642400     33899861        ITSN1
7151               21       33642400     33899861        ITSN1
7152               21       33642400     33899861        ITSN1
7153               21       33642400     33899861        ITSN1
7154               21       33642400     33899861        ITSN1
7155               21       33642400     33899861        ITSN1
7156               21       33642400     33899861        ITSN1
7157               21       33642400     33899861        ITSN1
7158               21       33642400     33899861        ITSN1
7159               21       33642400     33899861        ITSN1
7160               21       33642400     33899861        ITSN1
7161               21       33642400     33899861        ITSN1
7162               21       33642400     33899861        ITSN1
7163               21       33642400     33899861        ITSN1
7164               21       33642400     33899861        ITSN1
7165               21       33642400     33899861        ITSN1
7166               21       33642400     33899861        ITSN1
7167               21       33642400     33899861        ITSN1
7168               21       33642400     33899861        ITSN1
7169               21       33642400     33899861        ITSN1
7170               21       33642400     33899861        ITSN1
7171               21       33642400     33899861        ITSN1
7172               21       33642400     33899861        ITSN1
7173               21       33642400     33899861        ITSN1
7174               21       33642400     33899861        ITSN1
7175               21       33642400     33899861        ITSN1
7176               21       33642400     33899861        ITSN1
7177               21       33642400     33899861        ITSN1
7178               21       33642400     33899861        ITSN1
7179               21       33642400     33899861        ITSN1
7180               21       33642400     33899861        ITSN1
7181               21       33642400     33899861        ITSN1
7182               21       33642400     33899861        ITSN1
7183               21       33642400     33899861        ITSN1
7184               21       33642400     33899861        ITSN1
7185               21       33642400     33899861        ITSN1
7186               21       33642400     33899861        ITSN1
7187               21       33642400     33899861        ITSN1
7188               21       33642400     33899861        ITSN1
7189               21       33642400     33899861        ITSN1
7190               21       33642400     33899861        ITSN1
7191               21       33642400     33899861        ITSN1
7192               21       33642400     33899861        ITSN1
7193               21       33642400     33899861        ITSN1
7194               21       33642400     33899861        ITSN1
7195               21       33642400     33899861        ITSN1
7196               21       33642400     33899861        ITSN1
7197               21       33642400     33899861        ITSN1
7198               21       33642400     33899861        ITSN1
7199               21       33642400     33899861        ITSN1
7200               21       33642400     33899861        ITSN1
7201               21       33642400     33899861        ITSN1
7202               21       33642400     33899861        ITSN1
7203               21       33642400     33899861        ITSN1
7204               21       33642400     33899861        ITSN1
7205               21       33642400     33899861        ITSN1
7206               21       33642400     33899861        ITSN1
7207               21       33642400     33899861        ITSN1
7208               21       33642400     33899861        ITSN1
7209               21       33642400     33899861        ITSN1
7210               21       33642400     33899861        ITSN1
7211               21       33642400     33899861        ITSN1
7212               21       33642400     33899861        ITSN1
7213               21       33642400     33899861        ITSN1
7214               21       33642400     33899861        ITSN1
7215               21       33642400     33899861        ITSN1
7216               21       33642400     33899861        ITSN1
7217               21       33642400     33899861        ITSN1
7218               21       33642400     33899861        ITSN1
7219               21       33642400     33899861        ITSN1
7220               21       33642400     33899861        ITSN1
7221               21       33642400     33899861        ITSN1
7222               21       33642400     33899861        ITSN1
7223               21       33642400     33899861        ITSN1
7224               21       33642400     33899861        ITSN1
7225               21       33642400     33899861        ITSN1
7226               21       33642400     33899861        ITSN1
7227               21       33642400     33899861        ITSN1
7228               21       33642400     33899861        ITSN1
7229               21       33642400     33899861        ITSN1
7230               21       33642400     33899861        ITSN1
7231               21       33642400     33899861        ITSN1
7232               21       33642400     33899861        ITSN1
7233               21       33642400     33899861        ITSN1
7234               21       33642400     33899861        ITSN1
7235               21       33642400     33899861        ITSN1
7236               21       33642400     33899861        ITSN1
7237               21       33642400     33899861        ITSN1
7238               21       33642400     33899861        ITSN1
7239               21       33642400     33899861        ITSN1
7240               21       33642400     33899861        ITSN1
7241               21       33642400     33899861        ITSN1
7242               21       33642400     33899861        ITSN1
7243               21       33642400     33899861        ITSN1
7244               21       33642400     33899861        ITSN1
7245               21       33642400     33899861        ITSN1
7246               21       33642400     33899861        ITSN1
7247               21       33642400     33899861        ITSN1
7248               21       33642400     33899861        ITSN1
7249               21       33642400     33899861        ITSN1
7250               21       33642400     33899861        ITSN1
7251               21       33642400     33899861        ITSN1
7252               21       33642400     33899861        ITSN1
7253               21       33642400     33899861        ITSN1
7254               21       33642400     33899861        ITSN1
7255               21       33642400     33899861        ITSN1
7256               21       33642400     33899861        ITSN1
7257               21       33642400     33899861        ITSN1
7258               21       33642400     33899861        ITSN1
7259               21       33642400     33899861        ITSN1
7260               21       33642400     33899861        ITSN1
7261               21       33642400     33899861        ITSN1
7262               21       33642400     33899861        ITSN1
7263               21       33642400     33899861        ITSN1
7264               21       33642400     33899861        ITSN1
7265               21       33642400     33899861        ITSN1
7266               21       33642400     33899861        ITSN1
7267               21       33642400     33899861        ITSN1
7268               21       33642400     33899861        ITSN1
7269               21       33642400     33899861        ITSN1
7270               21       33642400     33899861        ITSN1
7271               21       33642400     33899861        ITSN1
7272               21       33642400     33899861        ITSN1
7273               21       33642400     33899861        ITSN1
7274               21       33642400     33899861        ITSN1
7275               21       33642400     33899861        ITSN1
7276               21       33642400     33899861        ITSN1
7277               21       33642400     33899861        ITSN1
7278               21       33642400     33899861        ITSN1
7279               21       33642400     33899861        ITSN1
7280               21       33642400     33899861        ITSN1
7281               21       33642400     33899861        ITSN1
7282               21       33642400     33899861        ITSN1
7283               21       33642400     33899861        ITSN1
7284               21       33642400     33899861        ITSN1
7285               21       33642400     33899861        ITSN1
7286               21       33642400     33899861        ITSN1
7287               21       33642400     33899861        ITSN1
7288               21       33642400     33899861        ITSN1
7289               21       33642400     33899861        ITSN1
7290               21       33642400     33899861        ITSN1
7291               21       33642400     33899861        ITSN1
7292               21       33642400     33899861        ITSN1
7293               21       33642400     33899861        ITSN1
7294               21       33642400     33899861        ITSN1
7295               21       33642400     33899861        ITSN1
7296               21       33642400     33899861        ITSN1
7297               21       33642400     33899861        ITSN1
7298               21       33642400     33899861        ITSN1
7299               21       33642400     33899861        ITSN1
7300               21       33642400     33899861        ITSN1
7301               21       33642400     33899861        ITSN1
7302               21       33642400     33899861        ITSN1
7303               21       33642400     33899861        ITSN1
7304               21       33642400     33899861        ITSN1
7305               21       33642400     33899861        ITSN1
7306               21       33642400     33899861        ITSN1
7307               21       33642400     33899861        ITSN1
7308               21       33642400     33899861        ITSN1
7309               21       33642400     33899861        ITSN1
7310               21       33642400     33899861        ITSN1
7311               21       33642400     33899861        ITSN1
7312               21       33642400     33899861        ITSN1
7313               21       33642400     33899861        ITSN1
7314               21       33642400     33899861        ITSN1
7315               21       33642400     33899861        ITSN1
7316               21       33642400     33899861        ITSN1
7317               21       33642400     33899861        ITSN1
7318               21       33642400     33899861        ITSN1
7319               21       33642400     33899861        ITSN1
7320               21       33642400     33899861        ITSN1
7321               21       33642400     33899861        ITSN1
7322               21        8101251      8103706             
7323               21       43855890     43856342       MYL6P1
7324               21       45759804     45763758             
7325               21       45914296     45919483             
7326               21       45914296     45919483             
7327               21       45914296     45919483             
7328               21       26466209     26573284        CYYR1
7329               21       26466209     26573284        CYYR1
7330               21       26466209     26573284        CYYR1
7331               21       26466209     26573284        CYYR1
7332               21       26466209     26573284        CYYR1
7333               21       26466209     26573284        CYYR1
7334               21       26466209     26573284        CYYR1
7335               21       26466209     26573284        CYYR1
7336               21       26378552     26471698             
7337               21       26378552     26471698             
7338               21       26378552     26471698             
7339               21       26378552     26471698             
7340               21       26378552     26471698             
7341               21       26378552     26471698             
7342               21       26378552     26471698             
7343               21       26378552     26471698             
7344               21       26378552     26471698             
7345               21       26378552     26471698             
7346               21       26378552     26471698             
7347               21       26378552     26471698             
7348               21       26378552     26471698             
7349               21       26378552     26471698             
7350               21       14757588     14758352     POLR2CP1
7351               21       32020966     32021782     HUNK-AS1
7352               21       32020966     32021782     HUNK-AS1
7353               21       31873315     32044633         HUNK
7354               21       31873315     32044633         HUNK
7355               21       31873315     32044633         HUNK
7356               21       31873315     32044633         HUNK
7357               21       31873315     32044633         HUNK
7358               21       31873315     32044633         HUNK
7359               21       31873315     32044633         HUNK
7360               21       31873315     32044633         HUNK
7361               21       31873315     32044633         HUNK
7362               21       31873315     32044633         HUNK
7363               21       31873315     32044633         HUNK
7364               21       31873315     32044633         HUNK
7365               21       31873315     32044633         HUNK
7366               21       31873315     32044633         HUNK
7367               21       31873315     32044633         HUNK
7368               21       31873315     32044633         HUNK
7369               21       31873315     32044633         HUNK
7370               21       31873315     32044633         HUNK
7371               21       31873315     32044633         HUNK
7372               21       31873315     32044633         HUNK
7373               21       31873315     32044633         HUNK
7374               21       31873315     32044633         HUNK
7375               21       31873315     32044633         HUNK
7376               21       31873315     32044633         HUNK
7377               21       38739021     38747460    LINC00114
7378               21       38739021     38747460    LINC00114
7379               21       38739021     38747460    LINC00114
7380               21       38739021     38747460    LINC00114
7381               21       38739021     38747460    LINC00114
7382               21       38739021     38747460    LINC00114
7383               21       38739021     38747460    LINC00114
7384               21       38739021     38747460    LINC00114
7385               21       38739021     38747460    LINC00114
7386               21       38739021     38747460    LINC00114
7387               21       38739021     38747460    LINC00114
7388               21       38739021     38747460    LINC00114
7389               21       38739021     38747460    LINC00114
7390               21       38739021     38747460    LINC00114
7391               21       38739021     38747460    LINC00114
7392               21        6550749      6553955             
7393               21        6550749      6553955             
7394               21        6550749      6553955             
7395               21       33229901     33265675       IFNAR2
7396               21       33229901     33265675       IFNAR2
7397               21       33229901     33265675       IFNAR2
7398               21       33229901     33265675       IFNAR2
7399               21       33229901     33265675       IFNAR2
7400               21       33229901     33265675       IFNAR2
7401               21       33229901     33265675       IFNAR2
7402               21       33229901     33265675       IFNAR2
7403               21       33229901     33265675       IFNAR2
7404               21       33229901     33265675       IFNAR2
7405               21       33229901     33265675       IFNAR2
7406               21       33229901     33265675       IFNAR2
7407               21       33229901     33265675       IFNAR2
7408               21       33229901     33265675       IFNAR2
7409               21       33229901     33265675       IFNAR2
7410               21       33229901     33265675       IFNAR2
7411               21       33229901     33265675       IFNAR2
7412               21       33229901     33265675       IFNAR2
7413               21       33229901     33265675       IFNAR2
7414               21       33229901     33265675       IFNAR2
7415               21       33229901     33265675       IFNAR2
7416               21       33229901     33265675       IFNAR2
7417               21       33229901     33265675       IFNAR2
7418               21       33229901     33265675       IFNAR2
7419               21       33229901     33265675       IFNAR2
7420               21       33229901     33265675       IFNAR2
7421               21       33229901     33265675       IFNAR2
7422               21       33229901     33265675       IFNAR2
7423               21       33229901     33265675       IFNAR2
7424               21       33229901     33265675       IFNAR2
7425               21       33229901     33265675       IFNAR2
7426               21       33229901     33265675       IFNAR2
7427               21       33229901     33265675       IFNAR2
7428               21       33229901     33265675       IFNAR2
7429               21       33229901     33265675       IFNAR2
7430               21       33229901     33265675       IFNAR2
7431               21       33229901     33265675       IFNAR2
7432               21       33229901     33265675       IFNAR2
7433               21       33229901     33265675       IFNAR2
7434               21       33229901     33265675       IFNAR2
7435               21       33229901     33265675       IFNAR2
7436               21       33229901     33265675       IFNAR2
7437               21       33229901     33265675       IFNAR2
7438               21       33229901     33265675       IFNAR2
7439               21       33229901     33265675       IFNAR2
7440               21       33229901     33265675       IFNAR2
7441               21       33229901     33265675       IFNAR2
7442               21       33229901     33265675       IFNAR2
7443               21       33229901     33265675       IFNAR2
7444               21       33229901     33265675       IFNAR2
7445               21       33229901     33265675       IFNAR2
7446               21       33229901     33265675       IFNAR2
7447               21       33229901     33265675       IFNAR2
7448               21       33229901     33265675       IFNAR2
7449               21       33229901     33265675       IFNAR2
7450               21       33229901     33265675       IFNAR2
7451               21       33229901     33265675       IFNAR2
7452               21       33229901     33265675       IFNAR2
7453               21       33229901     33265675       IFNAR2
7454               21       33229901     33265675       IFNAR2
7455               21       33229901     33265675       IFNAR2
7456               21       33229901     33265675       IFNAR2
7457               21       33229901     33265675       IFNAR2
7458               21       33229901     33265675       IFNAR2
7459               21       33229901     33265675       IFNAR2
7460               21       33229901     33265675       IFNAR2
7461               21       33229901     33265675       IFNAR2
7462               21       33229901     33265675       IFNAR2
7463               21       33229901     33265675       IFNAR2
7464               21       33229901     33265675       IFNAR2
7465               21       33229901     33265675       IFNAR2
7466               21       33229901     33265675       IFNAR2
7467               21       33229901     33265675       IFNAR2
7468               21       44158740     44160076    LINC01678
7469               21       44158740     44160076    LINC01678
7470               21       44158740     44160076    LINC01678
7471               21       44158740     44160076    LINC01678
7472               21       44158740     44160076    LINC01678
7473               21        6444869      6468040         CBSL
7474               21        6444869      6468040         CBSL
7475               21        6444869      6468040         CBSL
7476               21        6444869      6468040         CBSL
7477               21        6444869      6468040         CBSL
7478               21        6444869      6468040         CBSL
7479               21        6444869      6468040         CBSL
7480               21        6444869      6468040         CBSL
7481               21        6444869      6468040         CBSL
7482               21        6444869      6468040         CBSL
7483               21        6444869      6468040         CBSL
7484               21        6444869      6468040         CBSL
7485               21        6444869      6468040         CBSL
7486               21        6444869      6468040         CBSL
7487               21        6444869      6468040         CBSL
7488               21        6444869      6468040         CBSL
7489               21        6444869      6468040         CBSL
7490               21        6444869      6468040         CBSL
7491               21        6444869      6468040         CBSL
7492               21        6444869      6468040         CBSL
7493               21        6444869      6468040         CBSL
7494               21        6444869      6468040         CBSL
7495               21        6444869      6468040         CBSL
7496               21        6444869      6468040         CBSL
7497               21        6444869      6468040         CBSL
7498               21        6444869      6468040         CBSL
7499               21        6444869      6468040         CBSL
7500               21        6444869      6468040         CBSL
7501               21        6444869      6468040         CBSL
7502               21        6444869      6468040         CBSL
7503               21        6444869      6468040         CBSL
7504               21        6444869      6468040         CBSL
7505               21        6444869      6468040         CBSL
7506               21        6444869      6468040         CBSL
7507               21        6444869      6468040         CBSL
7508               21        6444869      6468040         CBSL
7509               21        6444869      6468040         CBSL
7510               21        6444869      6468040         CBSL
7511               21        6444869      6468040         CBSL
7512               21        6444869      6468040         CBSL
7513               21        6444869      6468040         CBSL
7514               21        6444869      6468040         CBSL
7515               21        6444869      6468040         CBSL
7516               21        6444869      6468040         CBSL
7517               21        6444869      6468040         CBSL
7518               21        6444869      6468040         CBSL
7519               21        6444869      6468040         CBSL
7520               21        6444869      6468040         CBSL
7521               21        6444869      6468040         CBSL
7522               21        6444869      6468040         CBSL
7523               21        6444869      6468040         CBSL
7524               21        6444869      6468040         CBSL
7525               21        6444869      6468040         CBSL
7526               21        6444869      6468040         CBSL
7527               21        6444869      6468040         CBSL
7528               21        6444869      6468040         CBSL
7529               21        6444869      6468040         CBSL
7530               21        6444869      6468040         CBSL
7531               21        6444869      6468040         CBSL
7532               21        6444869      6468040         CBSL
7533               21        6444869      6468040         CBSL
7534               21        6444869      6468040         CBSL
7535               21        6444869      6468040         CBSL
7536               21        6444869      6468040         CBSL
7537               21        6444869      6468040         CBSL
7538               21        6444869      6468040         CBSL
7539               21        6444869      6468040         CBSL
7540               21        6444869      6468040         CBSL
7541               21        6444869      6468040         CBSL
7542               21        6444869      6468040         CBSL
7543               21        6444869      6468040         CBSL
7544               21        6444869      6468040         CBSL
7545               21        6444869      6468040         CBSL
7546               21        6444869      6468040         CBSL
7547               21        6444869      6468040         CBSL
7548               21        6444869      6468040         CBSL
7549               21        6444869      6468040         CBSL
7550               21        6444869      6468040         CBSL
7551               21        6444869      6468040         CBSL
7552               21        6444869      6468040         CBSL
7553               21        6444869      6468040         CBSL
7554               21        6444869      6468040         CBSL
7555               21        6444869      6468040         CBSL
7556               21        6444869      6468040         CBSL
7557               21        6444869      6468040         CBSL
7558               21        6444869      6468040         CBSL
7559               21        6444869      6468040         CBSL
7560               21        6444869      6468040         CBSL
7561               21        6444869      6468040         CBSL
7562               21        6444869      6468040         CBSL
7563               21        6444869      6468040         CBSL
7564               21        6444869      6468040         CBSL
7565               21        6444869      6468040         CBSL
7566               21        6444869      6468040         CBSL
7567               21        6444869      6468040         CBSL
7568               21        6444869      6468040         CBSL
7569               21        6444869      6468040         CBSL
7570               21        6444869      6468040         CBSL
7571               21        6444869      6468040         CBSL
7572               21        6444869      6468040         CBSL
7573               21        6444869      6468040         CBSL
7574               21        6444869      6468040         CBSL
7575               21        6444869      6468040         CBSL
7576               21        6444869      6468040         CBSL
7577               21        6444869      6468040         CBSL
7578               21        6444869      6468040         CBSL
7579               21        6444869      6468040         CBSL
7580               21        6444869      6468040         CBSL
7581               21        6444869      6468040         CBSL
7582               21        6444869      6468040         CBSL
7583               21        6444869      6468040         CBSL
7584               21        6444869      6468040         CBSL
7585               21        6444869      6468040         CBSL
7586               21        6444869      6468040         CBSL
7587               21        6444869      6468040         CBSL
7588               21        6444869      6468040         CBSL
7589               21        6444869      6468040         CBSL
7590               21        6444869      6468040         CBSL
7591               21        6444869      6468040         CBSL
7592               21        6444869      6468040         CBSL
7593               21       32913649     33071104             
7594               21       32913649     33071104             
7595               21       36082859     36090414             
7596               21       36082859     36090414             
7597               21       42653636     42775509        PDE9A
7598               21       42653636     42775509        PDE9A
7599               21       42653636     42775509        PDE9A
7600               21       42653636     42775509        PDE9A
7601               21       42653636     42775509        PDE9A
7602               21       42653636     42775509        PDE9A
7603               21       42653636     42775509        PDE9A
7604               21       42653636     42775509        PDE9A
7605               21       42653636     42775509        PDE9A
7606               21       42653636     42775509        PDE9A
7607               21       42653636     42775509        PDE9A
7608               21       42653636     42775509        PDE9A
7609               21       42653636     42775509        PDE9A
7610               21       42653636     42775509        PDE9A
7611               21       42653636     42775509        PDE9A
7612               21       42653636     42775509        PDE9A
7613               21       42653636     42775509        PDE9A
7614               21       42653636     42775509        PDE9A
7615               21       42653636     42775509        PDE9A
7616               21       42653636     42775509        PDE9A
7617               21       42653636     42775509        PDE9A
7618               21       42653636     42775509        PDE9A
7619               21       42653636     42775509        PDE9A
7620               21       42653636     42775509        PDE9A
7621               21       42653636     42775509        PDE9A
7622               21       42653636     42775509        PDE9A
7623               21       42653636     42775509        PDE9A
7624               21       42653636     42775509        PDE9A
7625               21       42653636     42775509        PDE9A
7626               21       42653636     42775509        PDE9A
7627               21       42653636     42775509        PDE9A
7628               21       42653636     42775509        PDE9A
7629               21       42653636     42775509        PDE9A
7630               21       42653636     42775509        PDE9A
7631               21       42653636     42775509        PDE9A
7632               21       42653636     42775509        PDE9A
7633               21       42653636     42775509        PDE9A
7634               21       42653636     42775509        PDE9A
7635               21       42653636     42775509        PDE9A
7636               21       42653636     42775509        PDE9A
7637               21       42653636     42775509        PDE9A
7638               21       42653636     42775509        PDE9A
7639               21       42653636     42775509        PDE9A
7640               21       42653636     42775509        PDE9A
7641               21       42653636     42775509        PDE9A
7642               21       42653636     42775509        PDE9A
7643               21       42653636     42775509        PDE9A
7644               21       42653636     42775509        PDE9A
7645               21       42653636     42775509        PDE9A
7646               21       42653636     42775509        PDE9A
7647               21       42653636     42775509        PDE9A
7648               21       42653636     42775509        PDE9A
7649               21       42653636     42775509        PDE9A
7650               21       42653636     42775509        PDE9A
7651               21       42653636     42775509        PDE9A
7652               21       42653636     42775509        PDE9A
7653               21       42653636     42775509        PDE9A
7654               21       42653636     42775509        PDE9A
7655               21       42653636     42775509        PDE9A
7656               21       42653636     42775509        PDE9A
7657               21       42653636     42775509        PDE9A
7658               21       42653636     42775509        PDE9A
7659               21       42653636     42775509        PDE9A
7660               21       42653636     42775509        PDE9A
7661               21       42653636     42775509        PDE9A
7662               21       42653636     42775509        PDE9A
7663               21       42653636     42775509        PDE9A
7664               21       42653636     42775509        PDE9A
7665               21       42653636     42775509        PDE9A
7666               21       42653636     42775509        PDE9A
7667               21       42653636     42775509        PDE9A
7668               21       42653636     42775509        PDE9A
7669               21       42653636     42775509        PDE9A
7670               21       42653636     42775509        PDE9A
7671               21       42653636     42775509        PDE9A
7672               21       42653636     42775509        PDE9A
7673               21       42653636     42775509        PDE9A
7674               21       42653636     42775509        PDE9A
7675               21       42653636     42775509        PDE9A
7676               21       42653636     42775509        PDE9A
7677               21       42653636     42775509        PDE9A
7678               21       42653636     42775509        PDE9A
7679               21       42653636     42775509        PDE9A
7680               21       42653636     42775509        PDE9A
7681               21       42653636     42775509        PDE9A
7682               21       42653636     42775509        PDE9A
7683               21       42653636     42775509        PDE9A
7684               21       42653636     42775509        PDE9A
7685               21       42653636     42775509        PDE9A
7686               21       42653636     42775509        PDE9A
7687               21       42653636     42775509        PDE9A
7688               21       42653636     42775509        PDE9A
7689               21       42653636     42775509        PDE9A
7690               21       42653636     42775509        PDE9A
7691               21       42653636     42775509        PDE9A
7692               21       42653636     42775509        PDE9A
7693               21       42653636     42775509        PDE9A
7694               21       42653636     42775509        PDE9A
7695               21       42653636     42775509        PDE9A
7696               21       42653636     42775509        PDE9A
7697               21       42653636     42775509        PDE9A
7698               21       42653636     42775509        PDE9A
7699               21       42653636     42775509        PDE9A
7700               21       42653636     42775509        PDE9A
7701               21       42653636     42775509        PDE9A
7702               21       42653636     42775509        PDE9A
7703               21       42653636     42775509        PDE9A
7704               21       42653636     42775509        PDE9A
7705               21       42653636     42775509        PDE9A
7706               21       42653636     42775509        PDE9A
7707               21       42653636     42775509        PDE9A
7708               21       42653636     42775509        PDE9A
7709               21       42653636     42775509        PDE9A
7710               21       42653636     42775509        PDE9A
7711               21       42653636     42775509        PDE9A
7712               21       42653636     42775509        PDE9A
7713               21       42653636     42775509        PDE9A
7714               21       42653636     42775509        PDE9A
7715               21       42653636     42775509        PDE9A
7716               21       42653636     42775509        PDE9A
7717               21       42653636     42775509        PDE9A
7718               21       42653636     42775509        PDE9A
7719               21       42653636     42775509        PDE9A
7720               21       42653636     42775509        PDE9A
7721               21       42653636     42775509        PDE9A
7722               21       42653636     42775509        PDE9A
7723               21       42653636     42775509        PDE9A
7724               21       42653636     42775509        PDE9A
7725               21       42653636     42775509        PDE9A
7726               21       42653636     42775509        PDE9A
7727               21       42653636     42775509        PDE9A
7728               21       42653636     42775509        PDE9A
7729               21       42653636     42775509        PDE9A
7730               21       42653636     42775509        PDE9A
7731               21       42653636     42775509        PDE9A
7732               21       42653636     42775509        PDE9A
7733               21       42653636     42775509        PDE9A
7734               21       42653636     42775509        PDE9A
7735               21       42653636     42775509        PDE9A
7736               21       42653636     42775509        PDE9A
7737               21       42653636     42775509        PDE9A
7738               21       42653636     42775509        PDE9A
7739               21       42653636     42775509        PDE9A
7740               21       42653636     42775509        PDE9A
7741               21       42653636     42775509        PDE9A
7742               21       42653636     42775509        PDE9A
7743               21       42653636     42775509        PDE9A
7744               21       42653636     42775509        PDE9A
7745               21       42653636     42775509        PDE9A
7746               21       42653636     42775509        PDE9A
7747               21       42653636     42775509        PDE9A
7748               21       42653636     42775509        PDE9A
7749               21       42653636     42775509        PDE9A
7750               21       42653636     42775509        PDE9A
7751               21       42653636     42775509        PDE9A
7752               21       42653636     42775509        PDE9A
7753               21       42653636     42775509        PDE9A
7754               21       42653636     42775509        PDE9A
7755               21       42653636     42775509        PDE9A
7756               21       42653636     42775509        PDE9A
7757               21       42653636     42775509        PDE9A
7758               21       42653636     42775509        PDE9A
7759               21       42653636     42775509        PDE9A
7760               21       42653636     42775509        PDE9A
7761               21       42653636     42775509        PDE9A
7762               21       42653636     42775509        PDE9A
7763               21       42653636     42775509        PDE9A
7764               21       42653636     42775509        PDE9A
7765               21       42653636     42775509        PDE9A
7766               21       42653636     42775509        PDE9A
7767               21       42653636     42775509        PDE9A
7768               21       42653636     42775509        PDE9A
7769               21       42653636     42775509        PDE9A
7770               21       42653636     42775509        PDE9A
7771               21       42653636     42775509        PDE9A
7772               21       42653636     42775509        PDE9A
7773               21       42653636     42775509        PDE9A
7774               21       42653636     42775509        PDE9A
7775               21       42653636     42775509        PDE9A
7776               21       42653636     42775509        PDE9A
7777               21       42653636     42775509        PDE9A
7778               21       42653636     42775509        PDE9A
7779               21       42653636     42775509        PDE9A
7780               21       42653636     42775509        PDE9A
7781               21       42653636     42775509        PDE9A
7782               21       42653636     42775509        PDE9A
7783               21       42653636     42775509        PDE9A
7784               21       42653636     42775509        PDE9A
7785               21       42653636     42775509        PDE9A
7786               21       42653636     42775509        PDE9A
7787               21       42653636     42775509        PDE9A
7788               21       42653636     42775509        PDE9A
7789               21       42653636     42775509        PDE9A
7790               21       42653636     42775509        PDE9A
7791               21       42653636     42775509        PDE9A
7792               21       42653636     42775509        PDE9A
7793               21       42653636     42775509        PDE9A
7794               21       42653636     42775509        PDE9A
7795               21       42653636     42775509        PDE9A
7796               21       42653636     42775509        PDE9A
7797               21       42653636     42775509        PDE9A
7798               21       42653636     42775509        PDE9A
7799               21       42653636     42775509        PDE9A
7800               21       42653636     42775509        PDE9A
7801               21       42653636     42775509        PDE9A
7802               21       42653636     42775509        PDE9A
7803               21       42653636     42775509        PDE9A
7804               21       42653636     42775509        PDE9A
7805               21       42653636     42775509        PDE9A
7806               21       42653636     42775509        PDE9A
7807               21       42653636     42775509        PDE9A
7808               21       42653636     42775509        PDE9A
7809               21       42653636     42775509        PDE9A
7810               21       42653636     42775509        PDE9A
7811               21       42653636     42775509        PDE9A
7812               21       42653636     42775509        PDE9A
7813               21       42653636     42775509        PDE9A
7814               21       42653636     42775509        PDE9A
7815               21       42653636     42775509        PDE9A
7816               21       42653636     42775509        PDE9A
7817               21       42653636     42775509        PDE9A
7818               21       42653636     42775509        PDE9A
7819               21       42653636     42775509        PDE9A
7820               21       42653636     42775509        PDE9A
7821               21       42653636     42775509        PDE9A
7822               21       42653636     42775509        PDE9A
7823               21       42653636     42775509        PDE9A
7824               21       42653636     42775509        PDE9A
7825               21       42653636     42775509        PDE9A
7826               21       42653636     42775509        PDE9A
7827               21       42653636     42775509        PDE9A
7828               21       42653636     42775509        PDE9A
7829               21       42653636     42775509        PDE9A
7830               21       42653636     42775509        PDE9A
7831               21       42653636     42775509        PDE9A
7832               21       42653636     42775509        PDE9A
7833               21       42653636     42775509        PDE9A
7834               21       42653636     42775509        PDE9A
7835               21       42653636     42775509        PDE9A
7836               21       42653636     42775509        PDE9A
7837               21       42653636     42775509        PDE9A
7838               21       42653636     42775509        PDE9A
7839               21       42653636     42775509        PDE9A
7840               21       42653636     42775509        PDE9A
7841               21       42653636     42775509        PDE9A
7842               21       42653636     42775509        PDE9A
7843               21       42653636     42775509        PDE9A
7844               21       42653636     42775509        PDE9A
7845               21       42653636     42775509        PDE9A
7846               21       42653636     42775509        PDE9A
7847               21       42653636     42775509        PDE9A
7848               21       42653636     42775509        PDE9A
7849               21       42653636     42775509        PDE9A
7850               21       42653636     42775509        PDE9A
7851               21       42653636     42775509        PDE9A
7852               21       42653636     42775509        PDE9A
7853               21       42653636     42775509        PDE9A
7854               21       42653636     42775509        PDE9A
7855               21       42653636     42775509        PDE9A
7856               21       42653636     42775509        PDE9A
7857               21       42653636     42775509        PDE9A
7858               21       42653636     42775509        PDE9A
7859               21       42653636     42775509        PDE9A
7860               21       42653636     42775509        PDE9A
7861               21       42653636     42775509        PDE9A
7862               21       42653636     42775509        PDE9A
7863               21       42653636     42775509        PDE9A
7864               21       42653636     42775509        PDE9A
7865               21       42653636     42775509        PDE9A
7866               21       42653636     42775509        PDE9A
7867               21       42653636     42775509        PDE9A
7868               21       42653636     42775509        PDE9A
7869               21       42653636     42775509        PDE9A
7870               21       42653636     42775509        PDE9A
7871               21       42653636     42775509        PDE9A
7872               21       42653636     42775509        PDE9A
7873               21       42653636     42775509        PDE9A
7874               21       42653636     42775509        PDE9A
7875               21       42653636     42775509        PDE9A
7876               21       42653636     42775509        PDE9A
7877               21       42653636     42775509        PDE9A
7878               21       42653636     42775509        PDE9A
7879               21       42653636     42775509        PDE9A
7880               21       42653636     42775509        PDE9A
7881               21       42653636     42775509        PDE9A
7882               21       42653636     42775509        PDE9A
7883               21       42653636     42775509        PDE9A
7884               21       42653636     42775509        PDE9A
7885               21       42653636     42775509        PDE9A
7886               21       42653636     42775509        PDE9A
7887               21       42653636     42775509        PDE9A
7888               21       42653636     42775509        PDE9A
7889               21       42653636     42775509        PDE9A
7890               21       42653636     42775509        PDE9A
7891               21       42653636     42775509        PDE9A
7892               21       42653636     42775509        PDE9A
7893               21       42653636     42775509        PDE9A
7894               21       42653636     42775509        PDE9A
7895               21       42653636     42775509        PDE9A
7896               21       42653636     42775509        PDE9A
7897               21       42653636     42775509        PDE9A
7898               21       42653636     42775509        PDE9A
7899               21       42653636     42775509        PDE9A
7900               21       42653636     42775509        PDE9A
7901               21       42653636     42775509        PDE9A
7902               21       42653636     42775509        PDE9A
7903               21       42653636     42775509        PDE9A
7904               21       42653636     42775509        PDE9A
7905               21       42653636     42775509        PDE9A
7906               21       42653636     42775509        PDE9A
7907               21       42653636     42775509        PDE9A
7908               21       42653636     42775509        PDE9A
7909               21       42653636     42775509        PDE9A
7910               21       42653636     42775509        PDE9A
7911               21       42653636     42775509        PDE9A
7912               21       42653636     42775509        PDE9A
7913               21       42653636     42775509        PDE9A
7914               21       42653636     42775509        PDE9A
7915               21       42653636     42775509        PDE9A
7916               21       42653636     42775509        PDE9A
7917               21       42653636     42775509        PDE9A
7918               21       42653636     42775509        PDE9A
7919               21       42653636     42775509        PDE9A
7920               21       42653636     42775509        PDE9A
7921               21       42653636     42775509        PDE9A
7922               21       42653636     42775509        PDE9A
7923               21       42653636     42775509        PDE9A
7924               21       42653636     42775509        PDE9A
7925               21       42653636     42775509        PDE9A
7926               21       42653636     42775509        PDE9A
7927               21       42653636     42775509        PDE9A
7928               21       42653636     42775509        PDE9A
7929               21       42653636     42775509        PDE9A
7930               21       42653636     42775509        PDE9A
7931               21       42653636     42775509        PDE9A
7932               21       42653636     42775509        PDE9A
7933               21       42653636     42775509        PDE9A
7934               21       42653636     42775509        PDE9A
7935               21       42653636     42775509        PDE9A
7936               21       42653636     42775509        PDE9A
7937               21       42653636     42775509        PDE9A
7938               21       42653636     42775509        PDE9A
7939               21       42653636     42775509        PDE9A
7940               21       42653636     42775509        PDE9A
7941               21       42653636     42775509        PDE9A
7942               21       42653636     42775509        PDE9A
7943               21       42653636     42775509        PDE9A
7944               21       42653636     42775509        PDE9A
7945               21       42653636     42775509        PDE9A
7946               21       42653636     42775509        PDE9A
7947               21       42653636     42775509        PDE9A
7948               21       42653636     42775509        PDE9A
7949               21       42653636     42775509        PDE9A
7950               21       42653636     42775509        PDE9A
7951               21       42653636     42775509        PDE9A
7952               21       42653636     42775509        PDE9A
7953               21       42653636     42775509        PDE9A
7954               21       42653636     42775509        PDE9A
7955               21       42653636     42775509        PDE9A
7956               21       42653636     42775509        PDE9A
7957               21       42653636     42775509        PDE9A
7958               21       42653636     42775509        PDE9A
7959               21       42653636     42775509        PDE9A
7960               21       42653636     42775509        PDE9A
7961               21       42653636     42775509        PDE9A
7962               21       42653636     42775509        PDE9A
7963               21       42653636     42775509        PDE9A
7964               21       42653636     42775509        PDE9A
7965               21       42653636     42775509        PDE9A
7966               21       42653636     42775509        PDE9A
7967               21       42653636     42775509        PDE9A
7968               21       42653636     42775509        PDE9A
7969               21       42653636     42775509        PDE9A
7970               21       42653636     42775509        PDE9A
7971               21       42653636     42775509        PDE9A
7972               21       42653636     42775509        PDE9A
7973               21       42653636     42775509        PDE9A
7974               21       42653636     42775509        PDE9A
7975               21       42653636     42775509        PDE9A
7976               21       42653636     42775509        PDE9A
7977               21       42653636     42775509        PDE9A
7978               21       42653636     42775509        PDE9A
7979               21       42653636     42775509        PDE9A
7980               21       42653636     42775509        PDE9A
7981               21       42653636     42775509        PDE9A
7982               21       42653636     42775509        PDE9A
7983               21       42653636     42775509        PDE9A
7984               21       42653636     42775509        PDE9A
7985               21       42653636     42775509        PDE9A
7986               21       42653636     42775509        PDE9A
7987               21       42653636     42775509        PDE9A
7988               21       42653636     42775509        PDE9A
7989               21       42653636     42775509        PDE9A
7990               21       42653636     42775509        PDE9A
7991               21       42653636     42775509        PDE9A
7992               21       42653636     42775509        PDE9A
7993               21       42653636     42775509        PDE9A
7994               21       42653636     42775509        PDE9A
7995               21       42653636     42775509        PDE9A
7996               21       42653636     42775509        PDE9A
7997               21       42653636     42775509        PDE9A
7998               21       42653636     42775509        PDE9A
7999               21       42653636     42775509        PDE9A
8000               21       42653636     42775509        PDE9A
8001               21       42653636     42775509        PDE9A
8002               21       42653636     42775509        PDE9A
8003               21       42653636     42775509        PDE9A
8004               21       42653636     42775509        PDE9A
8005               21       42653636     42775509        PDE9A
8006               21       42653636     42775509        PDE9A
8007               21       42653636     42775509        PDE9A
8008               21       42653636     42775509        PDE9A
8009               21       42653636     42775509        PDE9A
8010               21       42653636     42775509        PDE9A
8011               21       42653636     42775509        PDE9A
8012               21       42653636     42775509        PDE9A
8013               21       42653636     42775509        PDE9A
8014               21       42653636     42775509        PDE9A
8015               21       42653636     42775509        PDE9A
8016               21       42653636     42775509        PDE9A
8017               21       42653636     42775509        PDE9A
8018               21       42653636     42775509        PDE9A
8019               21       42472486     42496354        RSPH1
8020               21       42472486     42496354        RSPH1
8021               21       42472486     42496354        RSPH1
8022               21       42472486     42496354        RSPH1
8023               21       42472486     42496354        RSPH1
8024               21       42472486     42496354        RSPH1
8025               21       42472486     42496354        RSPH1
8026               21       42472486     42496354        RSPH1
8027               21       42472486     42496354        RSPH1
8028               21       42472486     42496354        RSPH1
8029               21       42472486     42496354        RSPH1
8030               21       42472486     42496354        RSPH1
8031               21       42472486     42496354        RSPH1
8032               21       42472486     42496354        RSPH1
8033               21       42472486     42496354        RSPH1
8034               21       42472486     42496354        RSPH1
8035               21       42472486     42496354        RSPH1
8036               21       42472486     42496354        RSPH1
8037               21       42472486     42496354        RSPH1
8038               21       42472486     42496354        RSPH1
8039               21       42472486     42496354        RSPH1
8040               21       42472486     42496354        RSPH1
8041               21       42472486     42496354        RSPH1
8042               21       42472486     42496354        RSPH1
8043               21       42472486     42496354        RSPH1
8044               21       35472095     35472432      RPL34P3
8045               21       35724747     35725100      RPS20P1
8046               21       35713139     35732942             
8047               21       35713139     35732942             
8048               21       34787801     36004667        RUNX1
8049               21       34787801     36004667        RUNX1
8050               21       34787801     36004667        RUNX1
8051               21       34787801     36004667        RUNX1
8052               21       34787801     36004667        RUNX1
8053               21       34787801     36004667        RUNX1
8054               21       34787801     36004667        RUNX1
8055               21       34787801     36004667        RUNX1
8056               21       34787801     36004667        RUNX1
8057               21       34787801     36004667        RUNX1
8058               21       34787801     36004667        RUNX1
8059               21       34787801     36004667        RUNX1
8060               21       34787801     36004667        RUNX1
8061               21       34787801     36004667        RUNX1
8062               21       34787801     36004667        RUNX1
8063               21       34787801     36004667        RUNX1
8064               21       34787801     36004667        RUNX1
8065               21       34787801     36004667        RUNX1
8066               21       34787801     36004667        RUNX1
8067               21       34787801     36004667        RUNX1
8068               21       34787801     36004667        RUNX1
8069               21       34787801     36004667        RUNX1
8070               21       34787801     36004667        RUNX1
8071               21       34787801     36004667        RUNX1
8072               21       34787801     36004667        RUNX1
8073               21       34787801     36004667        RUNX1
8074               21       34787801     36004667        RUNX1
8075               21       34787801     36004667        RUNX1
8076               21       34787801     36004667        RUNX1
8077               21       34787801     36004667        RUNX1
8078               21       34787801     36004667        RUNX1
8079               21       34787801     36004667        RUNX1
8080               21       34787801     36004667        RUNX1
8081               21       34787801     36004667        RUNX1
8082               21       34787801     36004667        RUNX1
8083               21       34787801     36004667        RUNX1
8084               21       34787801     36004667        RUNX1
8085               21       34787801     36004667        RUNX1
8086               21       34787801     36004667        RUNX1
8087               21       34787801     36004667        RUNX1
8088               21       34787801     36004667        RUNX1
8089               21       34787801     36004667        RUNX1
8090               21       34787801     36004667        RUNX1
8091               21       34787801     36004667        RUNX1
8092               21       34787801     36004667        RUNX1
8093               21       34787801     36004667        RUNX1
8094               21       34787801     36004667        RUNX1
8095               21       34787801     36004667        RUNX1
8096               21       34787801     36004667        RUNX1
8097               21       34787801     36004667        RUNX1
8098               21       34787801     36004667        RUNX1
8099               21       34787801     36004667        RUNX1
8100               21       34787801     36004667        RUNX1
8101               21       34787801     36004667        RUNX1
8102               21       34787801     36004667        RUNX1
8103               21       34787801     36004667        RUNX1
8104               21       34787801     36004667        RUNX1
8105               21       34787801     36004667        RUNX1
8106               21       34787801     36004667        RUNX1
8107               21       34787801     36004667        RUNX1
8108               21       34787801     36004667        RUNX1
8109               21       34787801     36004667        RUNX1
8110               21       34787801     36004667        RUNX1
8111               21       34787801     36004667        RUNX1
8112               21       34787801     36004667        RUNX1
8113               21       34787801     36004667        RUNX1
8114               21       34787801     36004667        RUNX1
8115               21       34787801     36004667        RUNX1
8116               21       34787801     36004667        RUNX1
8117               21       34787801     36004667        RUNX1
8118               21       34787801     36004667        RUNX1
8119               21       34787801     36004667        RUNX1
8120               21       34787801     36004667        RUNX1
8121               21       34787801     36004667        RUNX1
8122               21       34787801     36004667        RUNX1
8123               21       34787801     36004667        RUNX1
8124               21       34787801     36004667        RUNX1
8125               21       34787801     36004667        RUNX1
8126               21       34787801     36004667        RUNX1
8127               21       34787801     36004667        RUNX1
8128               21       34787801     36004667        RUNX1
8129               21       34787801     36004667        RUNX1
8130               21       34787801     36004667        RUNX1
8131               21       36130489     36131376      MEMO1P1
8132               21       17793488     17810845             
8133               21       17793488     17810845             
8134               21       17793488     17810845             
8135               21       17793488     17810845             
8136               21       43805758     43812567        AATBC
8137               21       43805758     43812567        AATBC
8138               21       43805758     43812567        AATBC
8139               21       43805758     43812567        AATBC
8140               21       43805758     43812567        AATBC
8141               21       43805758     43812567        AATBC
8142               21       43805758     43812567        AATBC
8143               21       43805758     43812567        AATBC
8144               21       26459903     26460214             
8145               21       32393130     32393960     URB1-AS1
8146               21       43719094     43762307         PDXK
8147               21       43719094     43762307         PDXK
8148               21       43719094     43762307         PDXK
8149               21       43719094     43762307         PDXK
8150               21       43719094     43762307         PDXK
8151               21       43719094     43762307         PDXK
8152               21       43719094     43762307         PDXK
8153               21       43719094     43762307         PDXK
8154               21       43719094     43762307         PDXK
8155               21       43719094     43762307         PDXK
8156               21       43719094     43762307         PDXK
8157               21       43719094     43762307         PDXK
8158               21       43719094     43762307         PDXK
8159               21       43719094     43762307         PDXK
8160               21       43719094     43762307         PDXK
8161               21       43719094     43762307         PDXK
8162               21       43719094     43762307         PDXK
8163               21       43719094     43762307         PDXK
8164               21       43719094     43762307         PDXK
8165               21       43719094     43762307         PDXK
8166               21       43719094     43762307         PDXK
8167               21       43719094     43762307         PDXK
8168               21       43719094     43762307         PDXK
8169               21       43719094     43762307         PDXK
8170               21       43719094     43762307         PDXK
8171               21       43719094     43762307         PDXK
8172               21       43719094     43762307         PDXK
8173               21       43719094     43762307         PDXK
8174               21       43719094     43762307         PDXK
8175               21       43719094     43762307         PDXK
8176               21       43719094     43762307         PDXK
8177               21       43719094     43762307         PDXK
8178               21       43719094     43762307         PDXK
8179               21       43719094     43762307         PDXK
8180               21       43719094     43762307         PDXK
8181               21       43719094     43762307         PDXK
8182               21       43719094     43762307         PDXK
8183               21       43719094     43762307         PDXK
8184               21       43719094     43762307         PDXK
8185               21       43719094     43762307         PDXK
8186               21       43719094     43762307         PDXK
8187               21       43719094     43762307         PDXK
8188               21       43719094     43762307         PDXK
8189               21       43719094     43762307         PDXK
8190               21       43719094     43762307         PDXK
8191               21       43719094     43762307         PDXK
8192               21       43719094     43762307         PDXK
8193               21       43719094     43762307         PDXK
8194               21       43719094     43762307         PDXK
8195               21       43719094     43762307         PDXK
8196               21       43719094     43762307         PDXK
8197               21       43719094     43762307         PDXK
8198               21       43719094     43762307         PDXK
8199               21       43719094     43762307         PDXK
8200               21       43719094     43762307         PDXK
8201               21       43719094     43762307         PDXK
8202               21       43719094     43762307         PDXK
8203               21       43719094     43762307         PDXK
8204               21       43719094     43762307         PDXK
8205               21       43719094     43762307         PDXK
8206               21       43719094     43762307         PDXK
8207               21       43719094     43762307         PDXK
8208               21       43719094     43762307         PDXK
8209               21       43719094     43762307         PDXK
8210               21       43719094     43762307         PDXK
8211               21       43719094     43762307         PDXK
8212               21       43719094     43762307         PDXK
8213               21       43719094     43762307         PDXK
8214               21       43719094     43762307         PDXK
8215               21       43719094     43762307         PDXK
8216               21       43719094     43762307         PDXK
8217               21       43719094     43762307         PDXK
8218               21       43719094     43762307         PDXK
8219               21       43719094     43762307         PDXK
8220               21       43719094     43762307         PDXK
8221               21       43719094     43762307         PDXK
8222               21       43719094     43762307         PDXK
8223               21       43719094     43762307         PDXK
8224               21       43719094     43762307         PDXK
8225               21       43719094     43762307         PDXK
8226               21       43719094     43762307         PDXK
8227               21       43719094     43762307         PDXK
8228               21       43719094     43762307         PDXK
8229               21       43719094     43762307         PDXK
8230               21       43719094     43762307         PDXK
8231               21       43719094     43762307         PDXK
8232               21       43719094     43762307         PDXK
8233               21       43719094     43762307         PDXK
8234               21       43719094     43762307         PDXK
8235               21       43719094     43762307         PDXK
8236               21       43719094     43762307         PDXK
8237               21       43719094     43762307         PDXK
8238               21       43719094     43762307         PDXK
8239               21       43719094     43762307         PDXK
8240               21       43719094     43762307         PDXK
8241               21       43719094     43762307         PDXK
8242               21       43719094     43762307         PDXK
8243               21       43719094     43762307         PDXK
8244               21       43719094     43762307         PDXK
8245               21       43719094     43762307         PDXK
8246               21       43719094     43762307         PDXK
8247               21       43719094     43762307         PDXK
8248               21       43719094     43762307         PDXK
8249               21       43719094     43762307         PDXK
8250               21       43719094     43762307         PDXK
8251               21       43719094     43762307         PDXK
8252               21       43719094     43762307         PDXK
8253               21       43719094     43762307         PDXK
8254               21       43719094     43762307         PDXK
8255               21       43719094     43762307         PDXK
8256               21       43719094     43762307         PDXK
8257               21       43719094     43762307         PDXK
8258               21       43719094     43762307         PDXK
8259               21       43719094     43762307         PDXK
8260               21       43719094     43762307         PDXK
8261               21       43719094     43762307         PDXK
8262               21       43719094     43762307         PDXK
8263               21       43719094     43762307         PDXK
8264               21       43719094     43762307         PDXK
8265               21       43719094     43762307         PDXK
8266               21       43719094     43762307         PDXK
8267               21       43719094     43762307         PDXK
8268               21       29370497     29373709    BACH1-IT2
8269               21       29370497     29373709    BACH1-IT2
8270               21       29370497     29373709    BACH1-IT2
8271               21       29370497     29373709    BACH1-IT2
8272               21       29370497     29373709    BACH1-IT2
8273               21       29370497     29373709    BACH1-IT2
8274               21       29370497     29373709    BACH1-IT2
8275               21       29370497     29373709    BACH1-IT2
8276               21        6712596      6716361             
8277               21        6712596      6716361             
8278               21        6712596      6716361             
8279               21        6712596      6716361             
8280               21        6712596      6716361             
8281               21        6712596      6716361             
8282               21        6712596      6716361             
8283               21        6712596      6716361             
8284               21        6676178      6679962             
8285               21        6676178      6679962             
8286               21        6676178      6679962             
8287               21        6676178      6679962             
8288               21        6676178      6679962             
8289               21        6676178      6679962             
8290               21        6676178      6679962             
8291               21        6676178      6679962             
8292               21        6676178      6679962             
8293               21       44201290     44202696             
8294               21       44201290     44202696             
8295               21       37059170     37073170         PIGP
8296               21       37059170     37073170         PIGP
8297               21       37059170     37073170         PIGP
8298               21       37059170     37073170         PIGP
8299               21       37059170     37073170         PIGP
8300               21       37059170     37073170         PIGP
8301               21       37059170     37073170         PIGP
8302               21       37059170     37073170         PIGP
8303               21       37059170     37073170         PIGP
8304               21       37059170     37073170         PIGP
8305               21       37059170     37073170         PIGP
8306               21       37059170     37073170         PIGP
8307               21       37059170     37073170         PIGP
8308               21       37059170     37073170         PIGP
8309               21       37059170     37073170         PIGP
8310               21       37059170     37073170         PIGP
8311               21       37059170     37073170         PIGP
8312               21       37059170     37073170         PIGP
8313               21       37059170     37073170         PIGP
8314               21       37059170     37073170         PIGP
8315               21       37059170     37073170         PIGP
8316               21       37059170     37073170         PIGP
8317               21       37059170     37073170         PIGP
8318               21       37059170     37073170         PIGP
8319               21       37059170     37073170         PIGP
8320               21       37059170     37073170         PIGP
8321               21       37059170     37073170         PIGP
8322               21       37059170     37073170         PIGP
8323               21       37059170     37073170         PIGP
8324               21       37059170     37073170         PIGP
8325               21       37059170     37073170         PIGP
8326               21       37059170     37073170         PIGP
8327               21       37059170     37073170         PIGP
8328               21        6084364      6091407             
8329               21        6084364      6091407             
8330               21        6084364      6091407             
8331               21        6084364      6091407             
8332               21        6084364      6091407             
8333               21        6084364      6091407             
8334               21        6084364      6091407             
8335               21       23101223     23103074    MSANTD2P1
8336               21       23101223     23103074    MSANTD2P1
8337               21       23101223     23103074    MSANTD2P1
8338               21       22882582     22884000             
8339               21       22882582     22884000             
8340               21       22882582     22884000             
8341               21       21655038     21686329             
8342               21       21655038     21686329             
8343               21       21655038     21686329             
8344               21       21655038     21686329             
8345               21       21655038     21686329             
8346               21       21566763     21615437             
8347               21       21566763     21615437             
8348               21       36034541     36079389        SETD4
8349               21       36034541     36079389        SETD4
8350               21       36034541     36079389        SETD4
8351               21       36034541     36079389        SETD4
8352               21       36034541     36079389        SETD4
8353               21       36034541     36079389        SETD4
8354               21       36034541     36079389        SETD4
8355               21       36034541     36079389        SETD4
8356               21       36034541     36079389        SETD4
8357               21       36034541     36079389        SETD4
8358               21       36034541     36079389        SETD4
8359               21       36034541     36079389        SETD4
8360               21       36034541     36079389        SETD4
8361               21       36034541     36079389        SETD4
8362               21       36034541     36079389        SETD4
8363               21       36034541     36079389        SETD4
8364               21       36034541     36079389        SETD4
8365               21       36034541     36079389        SETD4
8366               21       36034541     36079389        SETD4
8367               21       36034541     36079389        SETD4
8368               21       36034541     36079389        SETD4
8369               21       36034541     36079389        SETD4
8370               21       36034541     36079389        SETD4
8371               21       36034541     36079389        SETD4
8372               21       36034541     36079389        SETD4
8373               21       36034541     36079389        SETD4
8374               21       36034541     36079389        SETD4
8375               21       36034541     36079389        SETD4
8376               21       36034541     36079389        SETD4
8377               21       36034541     36079389        SETD4
8378               21       36034541     36079389        SETD4
8379               21       36034541     36079389        SETD4
8380               21       36034541     36079389        SETD4
8381               21       36034541     36079389        SETD4
8382               21       36034541     36079389        SETD4
8383               21       36034541     36079389        SETD4
8384               21       36034541     36079389        SETD4
8385               21       36034541     36079389        SETD4
8386               21       36034541     36079389        SETD4
8387               21       36034541     36079389        SETD4
8388               21       36034541     36079389        SETD4
8389               21       36034541     36079389        SETD4
8390               21       36034541     36079389        SETD4
8391               21       36034541     36079389        SETD4
8392               21       36034541     36079389        SETD4
8393               21       36034541     36079389        SETD4
8394               21       36034541     36079389        SETD4
8395               21       36034541     36079389        SETD4
8396               21       36034541     36079389        SETD4
8397               21       36034541     36079389        SETD4
8398               21       36034541     36079389        SETD4
8399               21       36034541     36079389        SETD4
8400               21       36034541     36079389        SETD4
8401               21       36034541     36079389        SETD4
8402               21       36034541     36079389        SETD4
8403               21       36034541     36079389        SETD4
8404               21       36034541     36079389        SETD4
8405               21       36034541     36079389        SETD4
8406               21       36034541     36079389        SETD4
8407               21       36034541     36079389        SETD4
8408               21       36034541     36079389        SETD4
8409               21       36034541     36079389        SETD4
8410               21       36034541     36079389        SETD4
8411               21       36034541     36079389        SETD4
8412               21       36034541     36079389        SETD4
8413               21       36034541     36079389        SETD4
8414               21       36034541     36079389        SETD4
8415               21       36034541     36079389        SETD4
8416               21       36034541     36079389        SETD4
8417               21       36034541     36079389        SETD4
8418               21       36034541     36079389        SETD4
8419               21       36034541     36079389        SETD4
8420               21       36034541     36079389        SETD4
8421               21       36034541     36079389        SETD4
8422               21       36034541     36079389        SETD4
8423               21       36034541     36079389        SETD4
8424               21       36034541     36079389        SETD4
8425               21       36034541     36079389        SETD4
8426               21       36034541     36079389        SETD4
8427               21       36034541     36079389        SETD4
8428               21       36034541     36079389        SETD4
8429               21       36034541     36079389        SETD4
8430               21       36034541     36079389        SETD4
8431               21       36034541     36079389        SETD4
8432               21       36034541     36079389        SETD4
8433               21       36034541     36079389        SETD4
8434               21       36034541     36079389        SETD4
8435               21       36034541     36079389        SETD4
8436               21       36034541     36079389        SETD4
8437               21       36034541     36079389        SETD4
8438               21       36034541     36079389        SETD4
8439               21       36034541     36079389        SETD4
8440               21       36034541     36079389        SETD4
8441               21       36034541     36079389        SETD4
8442               21       36034541     36079389        SETD4
8443               21       36034541     36079389        SETD4
8444               21       36034541     36079389        SETD4
8445               21       36034541     36079389        SETD4
8446               21       36034541     36079389        SETD4
8447               21       36034541     36079389        SETD4
8448               21       36034541     36079389        SETD4
8449               21       36034541     36079389        SETD4
8450               21       36034541     36079389        SETD4
8451               21       36034541     36079389        SETD4
8452               21       36034541     36079389        SETD4
8453               21       36034541     36079389        SETD4
8454               21       36034541     36079389        SETD4
8455               21       36034541     36079389        SETD4
8456               21       36034541     36079389        SETD4
8457               21       36034541     36079389        SETD4
8458               21       36034541     36079389        SETD4
8459               21       36034541     36079389        SETD4
8460               21       36034541     36079389        SETD4
8461               21       36034541     36079389        SETD4
8462               21       36034541     36079389        SETD4
8463               21       36034541     36079389        SETD4
8464               21       36034541     36079389        SETD4
8465               21       36034541     36079389        SETD4
8466               21       36034541     36079389        SETD4
8467               21       36034541     36079389        SETD4
8468               21       20597953     20598163             
8469               21       20430443     20430762      RPS3AP1
8470               21       20424949     20426206      KRT18P2
8471               21       19759359     19760128      C1QBPP1
8472               21       36320189     36386148        MORC3
8473               21       36320189     36386148        MORC3
8474               21       36320189     36386148        MORC3
8475               21       36320189     36386148        MORC3
8476               21       36320189     36386148        MORC3
8477               21       36320189     36386148        MORC3
8478               21       36320189     36386148        MORC3
8479               21       36320189     36386148        MORC3
8480               21       36320189     36386148        MORC3
8481               21       36320189     36386148        MORC3
8482               21       36320189     36386148        MORC3
8483               21       36320189     36386148        MORC3
8484               21       36320189     36386148        MORC3
8485               21       36320189     36386148        MORC3
8486               21       36320189     36386148        MORC3
8487               21       36320189     36386148        MORC3
8488               21       36320189     36386148        MORC3
8489               21       36320189     36386148        MORC3
8490               21       36320189     36386148        MORC3
8491               21       36320189     36386148        MORC3
8492               21       36320189     36386148        MORC3
8493               21       36320189     36386148        MORC3
8494               21       36320189     36386148        MORC3
8495               21       36320189     36386148        MORC3
8496               21       36320189     36386148        MORC3
8497               21       36320189     36386148        MORC3
8498               21       36320189     36386148        MORC3
8499               21       36320189     36386148        MORC3
8500               21       36320189     36386148        MORC3
8501               21       36320189     36386148        MORC3
8502               21       36320189     36386148        MORC3
8503               21       36320189     36386148        MORC3
8504               21       36320189     36386148        MORC3
8505               21       36320189     36386148        MORC3
8506               21       36320189     36386148        MORC3
8507               21       36320189     36386148        MORC3
8508               21       36320189     36386148        MORC3
8509               21       36320189     36386148        MORC3
8510               21       36320189     36386148        MORC3
8511               21       36320189     36386148        MORC3
8512               21       36320189     36386148        MORC3
8513               21       36320189     36386148        MORC3
8514               21       36320189     36386148        MORC3
8515               21       36320189     36386148        MORC3
8516               21       36320189     36386148        MORC3
8517               21       36320189     36386148        MORC3
8518               21       36320189     36386148        MORC3
8519               21       36320189     36386148        MORC3
8520               21       36320189     36386148        MORC3
8521               21       36320189     36386148        MORC3
8522               21       36320189     36386148        MORC3
8523               21       36320189     36386148        MORC3
8524               21       36320189     36386148        MORC3
8525               21       36320189     36386148        MORC3
8526               21       36320189     36386148        MORC3
8527               21       36320189     36386148        MORC3
8528               21       36320189     36386148        MORC3
8529               21       36320189     36386148        MORC3
8530               21       36320189     36386148        MORC3
8531               21       36320189     36386148        MORC3
8532               21       36320189     36386148        MORC3
8533               21       36320189     36386148        MORC3
8534               21       36320189     36386148        MORC3
8535               21       36320189     36386148        MORC3
8536               21       36320189     36386148        MORC3
8537               21       36320189     36386148        MORC3
8538               21       36320189     36386148        MORC3
8539               21       36320189     36386148        MORC3
8540               21       36320189     36386148        MORC3
8541               21       36320189     36386148        MORC3
8542               21       36320189     36386148        MORC3
8543               21       36320189     36386148        MORC3
8544               21       36320189     36386148        MORC3
8545               21       36320189     36386148        MORC3
8546               21       36320189     36386148        MORC3
8547               21       36320189     36386148        MORC3
8548               21       36320189     36386148        MORC3
8549               21       36320189     36386148        MORC3
8550               21       36320189     36386148        MORC3
8551               21       36320189     36386148        MORC3
8552               21       36320189     36386148        MORC3
8553               21       36320189     36386148        MORC3
8554               21       36320189     36386148        MORC3
8555               21       36360630     36362040             
8556               21       36360630     36362040             
8557               21       36385378     36419015       CHAF1B
8558               21       36385378     36419015       CHAF1B
8559               21       36385378     36419015       CHAF1B
8560               21       36385378     36419015       CHAF1B
8561               21       36385378     36419015       CHAF1B
8562               21       36385378     36419015       CHAF1B
8563               21       36385378     36419015       CHAF1B
8564               21       36385378     36419015       CHAF1B
8565               21       36385378     36419015       CHAF1B
8566               21       36385378     36419015       CHAF1B
8567               21       36385378     36419015       CHAF1B
8568               21       36385378     36419015       CHAF1B
8569               21       36385378     36419015       CHAF1B
8570               21       36385378     36419015       CHAF1B
8571               21       36385378     36419015       CHAF1B
8572               21       36385378     36419015       CHAF1B
8573               21       36385378     36419015       CHAF1B
8574               21       36385378     36419015       CHAF1B
8575               21       36385378     36419015       CHAF1B
8576               21       36385378     36419015       CHAF1B
8577               21       36385378     36419015       CHAF1B
8578               21       36385378     36419015       CHAF1B
8579               21       36385378     36419015       CHAF1B
8580               21       36385378     36419015       CHAF1B
8581               21       35887195     35887807     PPP1R2P2
8582               21       36168970     36170180       RPL3P1
8583               21       43789513     43805293         RRP1
8584               21       43789513     43805293         RRP1
8585               21       43789513     43805293         RRP1
8586               21       43789513     43805293         RRP1
8587               21       43789513     43805293         RRP1
8588               21       43789513     43805293         RRP1
8589               21       43789513     43805293         RRP1
8590               21       43789513     43805293         RRP1
8591               21       43789513     43805293         RRP1
8592               21       43789513     43805293         RRP1
8593               21       43789513     43805293         RRP1
8594               21       43789513     43805293         RRP1
8595               21       43789513     43805293         RRP1
8596               21       43789513     43805293         RRP1
8597               21       43789513     43805293         RRP1
8598               21       43789513     43805293         RRP1
8599               21       43789513     43805293         RRP1
8600               21       43789513     43805293         RRP1
8601               21       43789513     43805293         RRP1
8602               21       43789513     43805293         RRP1
8603               21       43789513     43805293         RRP1
8604               21       43789513     43805293         RRP1
8605               21       43789513     43805293         RRP1
8606               21       43789513     43805293         RRP1
8607               21       43789513     43805293         RRP1
8608               21       43789513     43805293         RRP1
8609               21       43789513     43805293         RRP1
8610               21       43789513     43805293         RRP1
8611               21       43789513     43805293         RRP1
8612               21       43789513     43805293         RRP1
8613               21       43789513     43805293         RRP1
8614               21       43789513     43805293         RRP1
8615               21       43789513     43805293         RRP1
8616               21       43789513     43805293         RRP1
8617               21       43789513     43805293         RRP1
8618               21       43789513     43805293         RRP1
8619               21       43789513     43805293         RRP1
8620               21       43789513     43805293         RRP1
8621               21       43789513     43805293         RRP1
8622               21       43789513     43805293         RRP1
8623               21       43789513     43805293         RRP1
8624               21       43789513     43805293         RRP1
8625               21       43789513     43805293         RRP1
8626               21       43789513     43805293         RRP1
8627               21       43789513     43805293         RRP1
8628               21       43789513     43805293         RRP1
8629               21       43789513     43805293         RRP1
8630               21       43789513     43805293         RRP1
8631               21       43789513     43805293         RRP1
8632               21       43789513     43805293         RRP1
8633               21       43789513     43805293         RRP1
8634               21       22134698     22136083             
8635               21       18269116     18485879     TMPRSS15
8636               21       18269116     18485879     TMPRSS15
8637               21       18269116     18485879     TMPRSS15
8638               21       18269116     18485879     TMPRSS15
8639               21       18269116     18485879     TMPRSS15
8640               21       18269116     18485879     TMPRSS15
8641               21       18269116     18485879     TMPRSS15
8642               21       18269116     18485879     TMPRSS15
8643               21       18269116     18485879     TMPRSS15
8644               21       18269116     18485879     TMPRSS15
8645               21       18269116     18485879     TMPRSS15
8646               21       18269116     18485879     TMPRSS15
8647               21       18269116     18485879     TMPRSS15
8648               21       18269116     18485879     TMPRSS15
8649               21       18269116     18485879     TMPRSS15
8650               21       18269116     18485879     TMPRSS15
8651               21       18269116     18485879     TMPRSS15
8652               21       18269116     18485879     TMPRSS15
8653               21       18269116     18485879     TMPRSS15
8654               21       18269116     18485879     TMPRSS15
8655               21       18269116     18485879     TMPRSS15
8656               21       18269116     18485879     TMPRSS15
8657               21       18269116     18485879     TMPRSS15
8658               21       18269116     18485879     TMPRSS15
8659               21       18269116     18485879     TMPRSS15
8660               21       18269116     18485879     TMPRSS15
8661               21       18269116     18485879     TMPRSS15
8662               21       18269116     18485879     TMPRSS15
8663               21       18269116     18485879     TMPRSS15
8664               21       18269116     18485879     TMPRSS15
8665               21       18269116     18485879     TMPRSS15
8666               21       18269116     18485879     TMPRSS15
8667               21       18269116     18485879     TMPRSS15
8668               21       18269116     18485879     TMPRSS15
8669               21       18269116     18485879     TMPRSS15
8670               21       18269116     18485879     TMPRSS15
8671               21       18269116     18485879     TMPRSS15
8672               21       17835016     17885608    CHODL-AS1
8673               21       17835016     17885608    CHODL-AS1
8674               21       17835016     17885608    CHODL-AS1
8675               21       32628759     32728048        SYNJ1
8676               21       32628759     32728048        SYNJ1
8677               21       32628759     32728048        SYNJ1
8678               21       32628759     32728048        SYNJ1
8679               21       32628759     32728048        SYNJ1
8680               21       32628759     32728048        SYNJ1
8681               21       32628759     32728048        SYNJ1
8682               21       32628759     32728048        SYNJ1
8683               21       32628759     32728048        SYNJ1
8684               21       32628759     32728048        SYNJ1
8685               21       32628759     32728048        SYNJ1
8686               21       32628759     32728048        SYNJ1
8687               21       32628759     32728048        SYNJ1
8688               21       32628759     32728048        SYNJ1
8689               21       32628759     32728048        SYNJ1
8690               21       32628759     32728048        SYNJ1
8691               21       32628759     32728048        SYNJ1
8692               21       32628759     32728048        SYNJ1
8693               21       32628759     32728048        SYNJ1
8694               21       32628759     32728048        SYNJ1
8695               21       32628759     32728048        SYNJ1
8696               21       32628759     32728048        SYNJ1
8697               21       32628759     32728048        SYNJ1
8698               21       32628759     32728048        SYNJ1
8699               21       32628759     32728048        SYNJ1
8700               21       32628759     32728048        SYNJ1
8701               21       32628759     32728048        SYNJ1
8702               21       32628759     32728048        SYNJ1
8703               21       32628759     32728048        SYNJ1
8704               21       32628759     32728048        SYNJ1
8705               21       32628759     32728048        SYNJ1
8706               21       32628759     32728048        SYNJ1
8707               21       32628759     32728048        SYNJ1
8708               21       32628759     32728048        SYNJ1
8709               21       32628759     32728048        SYNJ1
8710               21       32628759     32728048        SYNJ1
8711               21       32628759     32728048        SYNJ1
8712               21       32628759     32728048        SYNJ1
8713               21       32628759     32728048        SYNJ1
8714               21       32628759     32728048        SYNJ1
8715               21       32628759     32728048        SYNJ1
8716               21       32628759     32728048        SYNJ1
8717               21       32628759     32728048        SYNJ1
8718               21       32628759     32728048        SYNJ1
8719               21       32628759     32728048        SYNJ1
8720               21       32628759     32728048        SYNJ1
8721               21       32628759     32728048        SYNJ1
8722               21       32628759     32728048        SYNJ1
8723               21       32628759     32728048        SYNJ1
8724               21       32628759     32728048        SYNJ1
8725               21       32628759     32728048        SYNJ1
8726               21       32628759     32728048        SYNJ1
8727               21       32628759     32728048        SYNJ1
8728               21       32628759     32728048        SYNJ1
8729               21       32628759     32728048        SYNJ1
8730               21       32628759     32728048        SYNJ1
8731               21       32628759     32728048        SYNJ1
8732               21       32628759     32728048        SYNJ1
8733               21       32628759     32728048        SYNJ1
8734               21       32628759     32728048        SYNJ1
8735               21       32628759     32728048        SYNJ1
8736               21       32628759     32728048        SYNJ1
8737               21       32628759     32728048        SYNJ1
8738               21       32628759     32728048        SYNJ1
8739               21       32628759     32728048        SYNJ1
8740               21       32628759     32728048        SYNJ1
8741               21       32628759     32728048        SYNJ1
8742               21       32628759     32728048        SYNJ1
8743               21       32628759     32728048        SYNJ1
8744               21       32628759     32728048        SYNJ1
8745               21       32628759     32728048        SYNJ1
8746               21       32628759     32728048        SYNJ1
8747               21       32628759     32728048        SYNJ1
8748               21       32628759     32728048        SYNJ1
8749               21       32628759     32728048        SYNJ1
8750               21       32628759     32728048        SYNJ1
8751               21       32628759     32728048        SYNJ1
8752               21       32628759     32728048        SYNJ1
8753               21       32628759     32728048        SYNJ1
8754               21       32628759     32728048        SYNJ1
8755               21       32628759     32728048        SYNJ1
8756               21       32628759     32728048        SYNJ1
8757               21       32628759     32728048        SYNJ1
8758               21       32628759     32728048        SYNJ1
8759               21       32628759     32728048        SYNJ1
8760               21       32628759     32728048        SYNJ1
8761               21       32628759     32728048        SYNJ1
8762               21       32628759     32728048        SYNJ1
8763               21       32628759     32728048        SYNJ1
8764               21       32628759     32728048        SYNJ1
8765               21       32628759     32728048        SYNJ1
8766               21       32628759     32728048        SYNJ1
8767               21       32628759     32728048        SYNJ1
8768               21       32628759     32728048        SYNJ1
8769               21       32628759     32728048        SYNJ1
8770               21       32628759     32728048        SYNJ1
8771               21       32628759     32728048        SYNJ1
8772               21       32628759     32728048        SYNJ1
8773               21       32628759     32728048        SYNJ1
8774               21       32628759     32728048        SYNJ1
8775               21       32628759     32728048        SYNJ1
8776               21       32628759     32728048        SYNJ1
8777               21       32628759     32728048        SYNJ1
8778               21       32628759     32728048        SYNJ1
8779               21       32628759     32728048        SYNJ1
8780               21       32628759     32728048        SYNJ1
8781               21       32628759     32728048        SYNJ1
8782               21       32628759     32728048        SYNJ1
8783               21       32628759     32728048        SYNJ1
8784               21       32628759     32728048        SYNJ1
8785               21       32628759     32728048        SYNJ1
8786               21       32628759     32728048        SYNJ1
8787               21       32628759     32728048        SYNJ1
8788               21       32628759     32728048        SYNJ1
8789               21       32628759     32728048        SYNJ1
8790               21       32628759     32728048        SYNJ1
8791               21       32628759     32728048        SYNJ1
8792               21       32628759     32728048        SYNJ1
8793               21       32628759     32728048        SYNJ1
8794               21       32628759     32728048        SYNJ1
8795               21       32628759     32728048        SYNJ1
8796               21       32628759     32728048        SYNJ1
8797               21       32628759     32728048        SYNJ1
8798               21       32628759     32728048        SYNJ1
8799               21       32628759     32728048        SYNJ1
8800               21       32628759     32728048        SYNJ1
8801               21       32628759     32728048        SYNJ1
8802               21       32628759     32728048        SYNJ1
8803               21       32628759     32728048        SYNJ1
8804               21       32628759     32728048        SYNJ1
8805               21       32628759     32728048        SYNJ1
8806               21       32628759     32728048        SYNJ1
8807               21       32628759     32728048        SYNJ1
8808               21       32628759     32728048        SYNJ1
8809               21       32628759     32728048        SYNJ1
8810               21       32628759     32728048        SYNJ1
8811               21       32628759     32728048        SYNJ1
8812               21       32628759     32728048        SYNJ1
8813               21       32628759     32728048        SYNJ1
8814               21       32628759     32728048        SYNJ1
8815               21       32628759     32728048        SYNJ1
8816               21       32628759     32728048        SYNJ1
8817               21       32628759     32728048        SYNJ1
8818               21       32628759     32728048        SYNJ1
8819               21       32628759     32728048        SYNJ1
8820               21       32628759     32728048        SYNJ1
8821               21       32628759     32728048        SYNJ1
8822               21       32628759     32728048        SYNJ1
8823               21       32628759     32728048        SYNJ1
8824               21       32628759     32728048        SYNJ1
8825               21       32628759     32728048        SYNJ1
8826               21       32628759     32728048        SYNJ1
8827               21       32628759     32728048        SYNJ1
8828               21       32628759     32728048        SYNJ1
8829               21       32628759     32728048        SYNJ1
8830               21       32628759     32728048        SYNJ1
8831               21       32628759     32728048        SYNJ1
8832               21       32628759     32728048        SYNJ1
8833               21       32628759     32728048        SYNJ1
8834               21       32628759     32728048        SYNJ1
8835               21       32628759     32728048        SYNJ1
8836               21       32628759     32728048        SYNJ1
8837               21       32628759     32728048        SYNJ1
8838               21       32628759     32728048        SYNJ1
8839               21       32628759     32728048        SYNJ1
8840               21       32628759     32728048        SYNJ1
8841               21       32628759     32728048        SYNJ1
8842               21       32628759     32728048        SYNJ1
8843               21       32628759     32728048        SYNJ1
8844               21       32628759     32728048        SYNJ1
8845               21       32628759     32728048        SYNJ1
8846               21       32628759     32728048        SYNJ1
8847               21       32628759     32728048        SYNJ1
8848               21       32628759     32728048        SYNJ1
8849               21       32628759     32728048        SYNJ1
8850               21       32628759     32728048        SYNJ1
8851               21       32628759     32728048        SYNJ1
8852               21       32628759     32728048        SYNJ1
8853               21       32628759     32728048        SYNJ1
8854               21       32628759     32728048        SYNJ1
8855               21       32628759     32728048        SYNJ1
8856               21       32628759     32728048        SYNJ1
8857               21       32628759     32728048        SYNJ1
8858               21       32628759     32728048        SYNJ1
8859               21       32628759     32728048        SYNJ1
8860               21       32628759     32728048        SYNJ1
8861               21       32628759     32728048        SYNJ1
8862               21       32628759     32728048        SYNJ1
8863               21       32628759     32728048        SYNJ1
8864               21       32628759     32728048        SYNJ1
8865               21       32628759     32728048        SYNJ1
8866               21       32628759     32728048        SYNJ1
8867               21       32628759     32728048        SYNJ1
8868               21       39184176     39321559        BRWD1
8869               21       39184176     39321559        BRWD1
8870               21       39184176     39321559        BRWD1
8871               21       39184176     39321559        BRWD1
8872               21       39184176     39321559        BRWD1
8873               21       39184176     39321559        BRWD1
8874               21       39184176     39321559        BRWD1
8875               21       39184176     39321559        BRWD1
8876               21       39184176     39321559        BRWD1
8877               21       39184176     39321559        BRWD1
8878               21       39184176     39321559        BRWD1
8879               21       39184176     39321559        BRWD1
8880               21       39184176     39321559        BRWD1
8881               21       39184176     39321559        BRWD1
8882               21       39184176     39321559        BRWD1
8883               21       39184176     39321559        BRWD1
8884               21       39184176     39321559        BRWD1
8885               21       39184176     39321559        BRWD1
8886               21       39184176     39321559        BRWD1
8887               21       39184176     39321559        BRWD1
8888               21       39184176     39321559        BRWD1
8889               21       39184176     39321559        BRWD1
8890               21       39184176     39321559        BRWD1
8891               21       39184176     39321559        BRWD1
8892               21       39184176     39321559        BRWD1
8893               21       39184176     39321559        BRWD1
8894               21       39184176     39321559        BRWD1
8895               21       39184176     39321559        BRWD1
8896               21       39184176     39321559        BRWD1
8897               21       39184176     39321559        BRWD1
8898               21       39184176     39321559        BRWD1
8899               21       39184176     39321559        BRWD1
8900               21       39184176     39321559        BRWD1
8901               21       39184176     39321559        BRWD1
8902               21       39184176     39321559        BRWD1
8903               21       39184176     39321559        BRWD1
8904               21       39184176     39321559        BRWD1
8905               21       39184176     39321559        BRWD1
8906               21       39184176     39321559        BRWD1
8907               21       39184176     39321559        BRWD1
8908               21       39184176     39321559        BRWD1
8909               21       39184176     39321559        BRWD1
8910               21       39184176     39321559        BRWD1
8911               21       39184176     39321559        BRWD1
8912               21       39184176     39321559        BRWD1
8913               21       39184176     39321559        BRWD1
8914               21       39184176     39321559        BRWD1
8915               21       39184176     39321559        BRWD1
8916               21       39184176     39321559        BRWD1
8917               21       39184176     39321559        BRWD1
8918               21       39184176     39321559        BRWD1
8919               21       39184176     39321559        BRWD1
8920               21       39184176     39321559        BRWD1
8921               21       39184176     39321559        BRWD1
8922               21       39184176     39321559        BRWD1
8923               21       39184176     39321559        BRWD1
8924               21       39184176     39321559        BRWD1
8925               21       39184176     39321559        BRWD1
8926               21       39184176     39321559        BRWD1
8927               21       39184176     39321559        BRWD1
8928               21       39184176     39321559        BRWD1
8929               21       39184176     39321559        BRWD1
8930               21       39184176     39321559        BRWD1
8931               21       39184176     39321559        BRWD1
8932               21       39184176     39321559        BRWD1
8933               21       39184176     39321559        BRWD1
8934               21       39184176     39321559        BRWD1
8935               21       39184176     39321559        BRWD1
8936               21       39184176     39321559        BRWD1
8937               21       39184176     39321559        BRWD1
8938               21       39184176     39321559        BRWD1
8939               21       39184176     39321559        BRWD1
8940               21       39184176     39321559        BRWD1
8941               21       39184176     39321559        BRWD1
8942               21       39184176     39321559        BRWD1
8943               21       39184176     39321559        BRWD1
8944               21       39184176     39321559        BRWD1
8945               21       39184176     39321559        BRWD1
8946               21       39184176     39321559        BRWD1
8947               21       39184176     39321559        BRWD1
8948               21       39184176     39321559        BRWD1
8949               21       39184176     39321559        BRWD1
8950               21       39184176     39321559        BRWD1
8951               21       39184176     39321559        BRWD1
8952               21       39184176     39321559        BRWD1
8953               21       39184176     39321559        BRWD1
8954               21       39184176     39321559        BRWD1
8955               21       39184176     39321559        BRWD1
8956               21       39184176     39321559        BRWD1
8957               21       39184176     39321559        BRWD1
8958               21       39184176     39321559        BRWD1
8959               21       39184176     39321559        BRWD1
8960               21       39184176     39321559        BRWD1
8961               21       39184176     39321559        BRWD1
8962               21       39184176     39321559        BRWD1
8963               21       39184176     39321559        BRWD1
8964               21       39184176     39321559        BRWD1
8965               21       39184176     39321559        BRWD1
8966               21       39184176     39321559        BRWD1
8967               21       39184176     39321559        BRWD1
8968               21       39184176     39321559        BRWD1
8969               21       39184176     39321559        BRWD1
8970               21       39184176     39321559        BRWD1
8971               21       39184176     39321559        BRWD1
8972               21       39184176     39321559        BRWD1
8973               21       39184176     39321559        BRWD1
8974               21       39184176     39321559        BRWD1
8975               21       39184176     39321559        BRWD1
8976               21       39184176     39321559        BRWD1
8977               21       39184176     39321559        BRWD1
8978               21       39184176     39321559        BRWD1
8979               21       39184176     39321559        BRWD1
8980               21       39184176     39321559        BRWD1
8981               21       39184176     39321559        BRWD1
8982               21       39184176     39321559        BRWD1
8983               21       39184176     39321559        BRWD1
8984               21       39184176     39321559        BRWD1
8985               21       39184176     39321559        BRWD1
8986               21       39184176     39321559        BRWD1
8987               21       39184176     39321559        BRWD1
8988               21       39184176     39321559        BRWD1
8989               21       39184176     39321559        BRWD1
8990               21       39184176     39321559        BRWD1
8991               21       39184176     39321559        BRWD1
8992               21       39184176     39321559        BRWD1
8993               21       39184176     39321559        BRWD1
8994               21       39184176     39321559        BRWD1
8995               21       39184176     39321559        BRWD1
8996               21       39184176     39321559        BRWD1
8997               21       39184176     39321559        BRWD1
8998               21       39184176     39321559        BRWD1
8999               21       39184176     39321559        BRWD1
9000               21       39184176     39321559        BRWD1
9001               21       39184176     39321559        BRWD1
9002               21       39184176     39321559        BRWD1
9003               21       39184176     39321559        BRWD1
9004               21       39184176     39321559        BRWD1
9005               21       39184176     39321559        BRWD1
9006               21       39184176     39321559        BRWD1
9007               21       39184176     39321559        BRWD1
9008               21       39184176     39321559        BRWD1
9009               21       39184176     39321559        BRWD1
9010               21       39184176     39321559        BRWD1
9011               21       39184176     39321559        BRWD1
9012               21       39184176     39321559        BRWD1
9013               21       39184176     39321559        BRWD1
9014               21       39184176     39321559        BRWD1
9015               21       39184176     39321559        BRWD1
9016               21       39184176     39321559        BRWD1
9017               21       39184176     39321559        BRWD1
9018               21       39184176     39321559        BRWD1
9019               21       39184176     39321559        BRWD1
9020               21       39184176     39321559        BRWD1
9021               21       39184176     39321559        BRWD1
9022               21       39184176     39321559        BRWD1
9023               21       39184176     39321559        BRWD1
9024               21       39184176     39321559        BRWD1
9025               21       39184176     39321559        BRWD1
9026               21       39184176     39321559        BRWD1
9027               21       39184176     39321559        BRWD1
9028               21       39184176     39321559        BRWD1
9029               21       39184176     39321559        BRWD1
9030               21       39184176     39321559        BRWD1
9031               21       39184176     39321559        BRWD1
9032               21       39184176     39321559        BRWD1
9033               21       39184176     39321559        BRWD1
9034               21       39184176     39321559        BRWD1
9035               21       39184176     39321559        BRWD1
9036               21       39184176     39321559        BRWD1
9037               21       39184176     39321559        BRWD1
9038               21       39184176     39321559        BRWD1
9039               21       39184176     39321559        BRWD1
9040               21       39184176     39321559        BRWD1
9041               21       39184176     39321559        BRWD1
9042               21       39184176     39321559        BRWD1
9043               21       39184176     39321559        BRWD1
9044               21       39184176     39321559        BRWD1
9045               21       39184176     39321559        BRWD1
9046               21       39184176     39321559        BRWD1
9047               21       39184176     39321559        BRWD1
9048               21       39184176     39321559        BRWD1
9049               21       39184176     39321559        BRWD1
9050               21       39184176     39321559        BRWD1
9051               21       39184176     39321559        BRWD1
9052               21       39184176     39321559        BRWD1
9053               21       39184176     39321559        BRWD1
9054               21       39184176     39321559        BRWD1
9055               21       39184176     39321559        BRWD1
9056               21       39184176     39321559        BRWD1
9057               21       39184176     39321559        BRWD1
9058               21       39184176     39321559        BRWD1
9059               21       39184176     39321559        BRWD1
9060               21       39184176     39321559        BRWD1
9061               21       39184176     39321559        BRWD1
9062               21       39184176     39321559        BRWD1
9063               21       39184176     39321559        BRWD1
9064               21       39184176     39321559        BRWD1
9065               21       39184176     39321559        BRWD1
9066               21       39184176     39321559        BRWD1
9067               21       39184176     39321559        BRWD1
9068               21       39184176     39321559        BRWD1
9069               21       39184176     39321559        BRWD1
9070               21       39184176     39321559        BRWD1
9071               21       39184176     39321559        BRWD1
9072               21       39184176     39321559        BRWD1
9073               21       39184176     39321559        BRWD1
9074               21       39184176     39321559        BRWD1
9075               21       39184176     39321559        BRWD1
9076               21       39184176     39321559        BRWD1
9077               21       39184176     39321559        BRWD1
9078               21       39184176     39321559        BRWD1
9079               21       39184176     39321559        BRWD1
9080               21       39184176     39321559        BRWD1
9081               21       39184176     39321559        BRWD1
9082               21       39184176     39321559        BRWD1
9083               21       39184176     39321559        BRWD1
9084               21       39184176     39321559        BRWD1
9085               21       39184176     39321559        BRWD1
9086               21       39184176     39321559        BRWD1
9087               21       39184176     39321559        BRWD1
9088               21       39184176     39321559        BRWD1
9089               21       39184176     39321559        BRWD1
9090               21       39184176     39321559        BRWD1
9091               21       39184176     39321559        BRWD1
9092               21       39184176     39321559        BRWD1
9093               21       39184176     39321559        BRWD1
9094               21       39184176     39321559        BRWD1
9095               21       39184176     39321559        BRWD1
9096               21       39184176     39321559        BRWD1
9097               21       39184176     39321559        BRWD1
9098               21       39184176     39321559        BRWD1
9099               21       39184176     39321559        BRWD1
9100               21       39184176     39321559        BRWD1
9101               21       39184176     39321559        BRWD1
9102               21       39184176     39321559        BRWD1
9103               21       39184176     39321559        BRWD1
9104               21       39184176     39321559        BRWD1
9105               21       39184176     39321559        BRWD1
9106               21       39184176     39321559        BRWD1
9107               21       39184176     39321559        BRWD1
9108               21       39184176     39321559        BRWD1
9109               21       39184176     39321559        BRWD1
9110               21       39184176     39321559        BRWD1
9111               21       39184176     39321559        BRWD1
9112               21       39184176     39321559        BRWD1
9113               21       39184176     39321559        BRWD1
9114               21       39184176     39321559        BRWD1
9115               21       39184176     39321559        BRWD1
9116               21       39184176     39321559        BRWD1
9117               21       39184176     39321559        BRWD1
9118               21       39184176     39321559        BRWD1
9119               21       39184176     39321559        BRWD1
9120               21       39184176     39321559        BRWD1
9121               21       39184176     39321559        BRWD1
9122               21       39184176     39321559        BRWD1
9123               21       39184176     39321559        BRWD1
9124               21       39184176     39321559        BRWD1
9125               21       39184176     39321559        BRWD1
9126               21       39184176     39321559        BRWD1
9127               21       39184176     39321559        BRWD1
9128               21       39313935     39314962    BRWD1-AS2
9129               21       38863676     38956467             
9130               21       38863676     38956467             
9131               21       38863676     38956467             
9132               21       38863676     38956467             
9133               21       38863676     38956467             
9134               21       38863676     38956467             
9135               21       38863676     38956467             
9136               21       38863676     38956467             
9137               21       38863676     38956467             
9138               21       38863676     38956467             
9139               21       38863676     38956467             
9140               21       38863676     38956467             
9141               21       38863676     38956467             
9142               21       38863676     38956467             
9143               21       38863676     38956467             
9144               21       38863676     38956467             
9145               21       38863676     38956467             
9146               21       38863676     38956467             
9147               21       38863676     38956467             
9148               21       38863676     38956467             
9149               21       38863676     38956467             
9150               21       38863676     38956467             
9151               21       38863676     38956467             
9152               21       38863676     38956467             
9153               21       38863676     38956467             
9154               21       38863676     38956467             
9155               21       38863676     38956467             
9156               21       38846247     38848644             
9157               21       38846247     38848644             
9158               21       14591930     14658821             
9159               21       14591930     14658821             
9160               21       14591930     14658821             
9161               21       14591930     14658821             
9162               21       14591930     14658821             
9163               21       14591930     14658821             
9164               21       14591930     14658821             
9165               21       14591930     14658821             
9166               21       14591930     14658821             
9167               21       14591930     14658821             
9168               21       14591930     14658821             
9169               21       14591930     14658821             
9170               21       14591930     14658821             
9171               21       14591930     14658821             
9172               21       14591930     14658821             
9173               21       14591930     14658821             
9174               21       14591930     14658821             
9175               21       14591930     14658821             
9176               21       14591930     14658821             
9177               21       33481580     33482195       RPS5P3
9178               21       44246339     44262216       DNMT3L
9179               21       44246339     44262216       DNMT3L
9180               21       44246339     44262216       DNMT3L
9181               21       44246339     44262216       DNMT3L
9182               21       44246339     44262216       DNMT3L
9183               21       44246339     44262216       DNMT3L
9184               21       44246339     44262216       DNMT3L
9185               21       44246339     44262216       DNMT3L
9186               21       44246339     44262216       DNMT3L
9187               21       44246339     44262216       DNMT3L
9188               21       44246339     44262216       DNMT3L
9189               21       44246339     44262216       DNMT3L
9190               21       44246339     44262216       DNMT3L
9191               21       44246339     44262216       DNMT3L
9192               21       44246339     44262216       DNMT3L
9193               21       44246339     44262216       DNMT3L
9194               21       44246339     44262216       DNMT3L
9195               21       44246339     44262216       DNMT3L
9196               21       44246339     44262216       DNMT3L
9197               21       44246339     44262216       DNMT3L
9198               21       44246339     44262216       DNMT3L
9199               21       44246339     44262216       DNMT3L
9200               21       44246339     44262216       DNMT3L
9201               21       44246339     44262216       DNMT3L
9202               21       44246339     44262216       DNMT3L
9203               21       44246339     44262216       DNMT3L
9204               21       44246339     44262216       DNMT3L
9205               21       44246339     44262216       DNMT3L
9206               21       44246339     44262216       DNMT3L
9207               21       44246339     44262216       DNMT3L
9208               21       44246339     44262216       DNMT3L
9209               21       44246339     44262216       DNMT3L
9210               21       44246339     44262216       DNMT3L
9211               21       44246339     44262216       DNMT3L
9212               21       44246339     44262216       DNMT3L
9213               21       44246339     44262216       DNMT3L
9214               21       44246339     44262216       DNMT3L
9215               21       32790673     32791504             
9216               21        5155499      5165472             
9217               21        5155499      5165472             
9218               21        5155499      5165472             
9219               21        5155499      5165472             
9220               21        5155499      5165472             
9221               21        5155499      5165472             
9222               21       15493932     15496124             
9223               21       15493932     15496124             
9224               21       15490530     15490767      CYCSP42
9225               21       45405137     45513720      COL18A1
9226               21       45405137     45513720      COL18A1
9227               21       45405137     45513720      COL18A1
9228               21       45405137     45513720      COL18A1
9229               21       45405137     45513720      COL18A1
9230               21       45405137     45513720      COL18A1
9231               21       45405137     45513720      COL18A1
9232               21       45405137     45513720      COL18A1
9233               21       45405137     45513720      COL18A1
9234               21       45405137     45513720      COL18A1
9235               21       45405137     45513720      COL18A1
9236               21       45405137     45513720      COL18A1
9237               21       45405137     45513720      COL18A1
9238               21       45405137     45513720      COL18A1
9239               21       45405137     45513720      COL18A1
9240               21       45405137     45513720      COL18A1
9241               21       45405137     45513720      COL18A1
9242               21       45405137     45513720      COL18A1
9243               21       45405137     45513720      COL18A1
9244               21       45405137     45513720      COL18A1
9245               21       45405137     45513720      COL18A1
9246               21       45405137     45513720      COL18A1
9247               21       45405137     45513720      COL18A1
9248               21       45405137     45513720      COL18A1
9249               21       45405137     45513720      COL18A1
9250               21       45405137     45513720      COL18A1
9251               21       45405137     45513720      COL18A1
9252               21       45405137     45513720      COL18A1
9253               21       45405137     45513720      COL18A1
9254               21       45405137     45513720      COL18A1
9255               21       45405137     45513720      COL18A1
9256               21       45405137     45513720      COL18A1
9257               21       45405137     45513720      COL18A1
9258               21       45405137     45513720      COL18A1
9259               21       45405137     45513720      COL18A1
9260               21       45405137     45513720      COL18A1
9261               21       45405137     45513720      COL18A1
9262               21       45405137     45513720      COL18A1
9263               21       45405137     45513720      COL18A1
9264               21       45405137     45513720      COL18A1
9265               21       45405137     45513720      COL18A1
9266               21       45405137     45513720      COL18A1
9267               21       45405137     45513720      COL18A1
9268               21       45405137     45513720      COL18A1
9269               21       45405137     45513720      COL18A1
9270               21       45405137     45513720      COL18A1
9271               21       45405137     45513720      COL18A1
9272               21       45405137     45513720      COL18A1
9273               21       45405137     45513720      COL18A1
9274               21       45405137     45513720      COL18A1
9275               21       45405137     45513720      COL18A1
9276               21       45405137     45513720      COL18A1
9277               21       45405137     45513720      COL18A1
9278               21       45405137     45513720      COL18A1
9279               21       45405137     45513720      COL18A1
9280               21       45405137     45513720      COL18A1
9281               21       45405137     45513720      COL18A1
9282               21       45405137     45513720      COL18A1
9283               21       45405137     45513720      COL18A1
9284               21       45405137     45513720      COL18A1
9285               21       45405137     45513720      COL18A1
9286               21       45405137     45513720      COL18A1
9287               21       45405137     45513720      COL18A1
9288               21       45405137     45513720      COL18A1
9289               21       45405137     45513720      COL18A1
9290               21       45405137     45513720      COL18A1
9291               21       45405137     45513720      COL18A1
9292               21       45405137     45513720      COL18A1
9293               21       45405137     45513720      COL18A1
9294               21       45405137     45513720      COL18A1
9295               21       45405137     45513720      COL18A1
9296               21       45405137     45513720      COL18A1
9297               21       45405137     45513720      COL18A1
9298               21       45405137     45513720      COL18A1
9299               21       45405137     45513720      COL18A1
9300               21       45405137     45513720      COL18A1
9301               21       45405137     45513720      COL18A1
9302               21       45405137     45513720      COL18A1
9303               21       45405137     45513720      COL18A1
9304               21       45405137     45513720      COL18A1
9305               21       45405137     45513720      COL18A1
9306               21       45405137     45513720      COL18A1
9307               21       45405137     45513720      COL18A1
9308               21       45405137     45513720      COL18A1
9309               21       45405137     45513720      COL18A1
9310               21       45405137     45513720      COL18A1
9311               21       45405137     45513720      COL18A1
9312               21       45405137     45513720      COL18A1
9313               21       45405137     45513720      COL18A1
9314               21       45405137     45513720      COL18A1
9315               21       45405137     45513720      COL18A1
9316               21       45405137     45513720      COL18A1
9317               21       45405137     45513720      COL18A1
9318               21       45405137     45513720      COL18A1
9319               21       45405137     45513720      COL18A1
9320               21       45405137     45513720      COL18A1
9321               21       45405137     45513720      COL18A1
9322               21       45405137     45513720      COL18A1
9323               21       45405137     45513720      COL18A1
9324               21       45405137     45513720      COL18A1
9325               21       45405137     45513720      COL18A1
9326               21       45405137     45513720      COL18A1
9327               21       45405137     45513720      COL18A1
9328               21       45405137     45513720      COL18A1
9329               21       45405137     45513720      COL18A1
9330               21       45405137     45513720      COL18A1
9331               21       45405137     45513720      COL18A1
9332               21       45405137     45513720      COL18A1
9333               21       45405137     45513720      COL18A1
9334               21       45405137     45513720      COL18A1
9335               21       45405137     45513720      COL18A1
9336               21       45405137     45513720      COL18A1
9337               21       45405137     45513720      COL18A1
9338               21       45405137     45513720      COL18A1
9339               21       45405137     45513720      COL18A1
9340               21       45405137     45513720      COL18A1
9341               21       45405137     45513720      COL18A1
9342               21       45405137     45513720      COL18A1
9343               21       45405137     45513720      COL18A1
9344               21       45405137     45513720      COL18A1
9345               21       45405137     45513720      COL18A1
9346               21       45405137     45513720      COL18A1
9347               21       45405137     45513720      COL18A1
9348               21       45405137     45513720      COL18A1
9349               21       45405137     45513720      COL18A1
9350               21       45405137     45513720      COL18A1
9351               21       45405137     45513720      COL18A1
9352               21       45405137     45513720      COL18A1
9353               21       45405137     45513720      COL18A1
9354               21       45405137     45513720      COL18A1
9355               21       45405137     45513720      COL18A1
9356               21       45405137     45513720      COL18A1
9357               21       45405137     45513720      COL18A1
9358               21       45405137     45513720      COL18A1
9359               21       45405137     45513720      COL18A1
9360               21       45405137     45513720      COL18A1
9361               21       45405137     45513720      COL18A1
9362               21       45405137     45513720      COL18A1
9363               21       45405137     45513720      COL18A1
9364               21       45405137     45513720      COL18A1
9365               21       45405137     45513720      COL18A1
9366               21       45405137     45513720      COL18A1
9367               21       45405137     45513720      COL18A1
9368               21       45405137     45513720      COL18A1
9369               21       45405137     45513720      COL18A1
9370               21       45405137     45513720      COL18A1
9371               21       45405137     45513720      COL18A1
9372               21       45405137     45513720      COL18A1
9373               21       45405137     45513720      COL18A1
9374               21       45405137     45513720      COL18A1
9375               21       45405137     45513720      COL18A1
9376               21       45405137     45513720      COL18A1
9377               21       45405137     45513720      COL18A1
9378               21       45405137     45513720      COL18A1
9379               21       45405137     45513720      COL18A1
9380               21       45405137     45513720      COL18A1
9381               21       45405137     45513720      COL18A1
9382               21       45405137     45513720      COL18A1
9383               21       45405137     45513720      COL18A1
9384               21       45405137     45513720      COL18A1
9385               21       45405137     45513720      COL18A1
9386               21       45405137     45513720      COL18A1
9387               21       45405137     45513720      COL18A1
9388               21       45405137     45513720      COL18A1
9389               21       45405137     45513720      COL18A1
9390               21       45405137     45513720      COL18A1
9391               21       38974429     38977774    LINC01700
9392               21       38974429     38977774    LINC01700
9393               21       38974429     38977774    LINC01700
9394               21       32277863     32280988   MIS18A-AS1
9395               21       32277863     32280988   MIS18A-AS1
9396               21       32277863     32280988   MIS18A-AS1
9397               21       43551229     43551600      RPL31P1
9398               21       13546033     13558461    LINC01674
9399               21       13546033     13558461    LINC01674
9400               21       13546033     13558461    LINC01674
9401               21       13546033     13558461    LINC01674
9402               21       13476371     13477263       VN1R8P
9403               21       13349265     13350648       FGF7P2
9404               21       13349265     13350648       FGF7P2
9405               21       45263928     45287898       POFUT2
9406               21       45263928     45287898       POFUT2
9407               21       45263928     45287898       POFUT2
9408               21       45263928     45287898       POFUT2
9409               21       45263928     45287898       POFUT2
9410               21       45263928     45287898       POFUT2
9411               21       45263928     45287898       POFUT2
9412               21       45263928     45287898       POFUT2
9413               21       45263928     45287898       POFUT2
9414               21       45263928     45287898       POFUT2
9415               21       45263928     45287898       POFUT2
9416               21       45263928     45287898       POFUT2
9417               21       45263928     45287898       POFUT2
9418               21       45263928     45287898       POFUT2
9419               21       45263928     45287898       POFUT2
9420               21       45263928     45287898       POFUT2
9421               21       45263928     45287898       POFUT2
9422               21       45263928     45287898       POFUT2
9423               21       45263928     45287898       POFUT2
9424               21       45263928     45287898       POFUT2
9425               21       45263928     45287898       POFUT2
9426               21       45263928     45287898       POFUT2
9427               21       45263928     45287898       POFUT2
9428               21       45263928     45287898       POFUT2
9429               21       45263928     45287898       POFUT2
9430               21       45263928     45287898       POFUT2
9431               21       45263928     45287898       POFUT2
9432               21       45263928     45287898       POFUT2
9433               21       45263928     45287898       POFUT2
9434               21       45263928     45287898       POFUT2
9435               21       45263928     45287898       POFUT2
9436               21       45263928     45287898       POFUT2
9437               21       45263928     45287898       POFUT2
9438               21       45263928     45287898       POFUT2
9439               21       45263928     45287898       POFUT2
9440               21       45263928     45287898       POFUT2
9441               21       45263928     45287898       POFUT2
9442               21       45263928     45287898       POFUT2
9443               21       45263928     45287898       POFUT2
9444               21       45263928     45287898       POFUT2
9445               21       45263928     45287898       POFUT2
9446               21       45263928     45287898       POFUT2
9447               21       45263928     45287898       POFUT2
9448               21       45263928     45287898       POFUT2
9449               21       45263928     45287898       POFUT2
9450               21       45263928     45287898       POFUT2
9451               21       45263928     45287898       POFUT2
9452               21       45263928     45287898       POFUT2
9453               21       45263928     45287898       POFUT2
9454               21       45263928     45287898       POFUT2
9455               21       45263928     45287898       POFUT2
9456               21       45263928     45287898       POFUT2
9457               21       45263928     45287898       POFUT2
9458               21       45263928     45287898       POFUT2
9459               21       45263928     45287898       POFUT2
9460               21       45263928     45287898       POFUT2
9461               21       45263928     45287898       POFUT2
9462               21       45263928     45287898       POFUT2
9463               21       45263928     45287898       POFUT2
9464               21       45263928     45287898       POFUT2
9465               21       45263928     45287898       POFUT2
9466               21       45263928     45287898       POFUT2
9467               21       45263928     45287898       POFUT2
9468               21       45263928     45287898       POFUT2
9469               21       45263928     45287898       POFUT2
9470               21       45263928     45287898       POFUT2
9471               21       45263928     45287898       POFUT2
9472               21       45263928     45287898       POFUT2
9473               21       45263928     45287898       POFUT2
9474               21       45263928     45287898       POFUT2
9475               21       45263928     45287898       POFUT2
9476               21       45263928     45287898       POFUT2
9477               21       45263928     45287898       POFUT2
9478               21       45263928     45287898       POFUT2
9479               21       45263928     45287898       POFUT2
9480               21       45263928     45287898       POFUT2
9481               21       45263928     45287898       POFUT2
9482               21       45263928     45287898       POFUT2
9483               21       45263928     45287898       POFUT2
9484               21       45263928     45287898       POFUT2
9485               21       45263928     45287898       POFUT2
9486               21       45263928     45287898       POFUT2
9487               21       45263928     45287898       POFUT2
9488               21       45263928     45287898       POFUT2
9489               21       10649400     10649835  IGHV1OR21-1
9490               21       10649400     10649835  IGHV1OR21-1
9491               21       45073853     45226560       ADARB1
9492               21       45073853     45226560       ADARB1
9493               21       45073853     45226560       ADARB1
9494               21       45073853     45226560       ADARB1
9495               21       45073853     45226560       ADARB1
9496               21       45073853     45226560       ADARB1
9497               21       45073853     45226560       ADARB1
9498               21       45073853     45226560       ADARB1
9499               21       45073853     45226560       ADARB1
9500               21       45073853     45226560       ADARB1
9501               21       45073853     45226560       ADARB1
9502               21       45073853     45226560       ADARB1
9503               21       45073853     45226560       ADARB1
9504               21       45073853     45226560       ADARB1
9505               21       45073853     45226560       ADARB1
9506               21       45073853     45226560       ADARB1
9507               21       45073853     45226560       ADARB1
9508               21       45073853     45226560       ADARB1
9509               21       45073853     45226560       ADARB1
9510               21       45073853     45226560       ADARB1
9511               21       45073853     45226560       ADARB1
9512               21       45073853     45226560       ADARB1
9513               21       45073853     45226560       ADARB1
9514               21       45073853     45226560       ADARB1
9515               21       45073853     45226560       ADARB1
9516               21       45073853     45226560       ADARB1
9517               21       45073853     45226560       ADARB1
9518               21       45073853     45226560       ADARB1
9519               21       45073853     45226560       ADARB1
9520               21       45073853     45226560       ADARB1
9521               21       45073853     45226560       ADARB1
9522               21       45073853     45226560       ADARB1
9523               21       45073853     45226560       ADARB1
9524               21       45073853     45226560       ADARB1
9525               21       45073853     45226560       ADARB1
9526               21       45073853     45226560       ADARB1
9527               21       45073853     45226560       ADARB1
9528               21       45073853     45226560       ADARB1
9529               21       45073853     45226560       ADARB1
9530               21       45073853     45226560       ADARB1
9531               21       45073853     45226560       ADARB1
9532               21       45073853     45226560       ADARB1
9533               21       45073853     45226560       ADARB1
9534               21       45073853     45226560       ADARB1
9535               21       45073853     45226560       ADARB1
9536               21       45073853     45226560       ADARB1
9537               21       45073853     45226560       ADARB1
9538               21       45073853     45226560       ADARB1
9539               21       45073853     45226560       ADARB1
9540               21       45073853     45226560       ADARB1
9541               21       45073853     45226560       ADARB1
9542               21       45073853     45226560       ADARB1
9543               21       45073853     45226560       ADARB1
9544               21       45073853     45226560       ADARB1
9545               21       45073853     45226560       ADARB1
9546               21       45073853     45226560       ADARB1
9547               21       45073853     45226560       ADARB1
9548               21       45073853     45226560       ADARB1
9549               21       45073853     45226560       ADARB1
9550               21       45073853     45226560       ADARB1
9551               21       45073853     45226560       ADARB1
9552               21       45073853     45226560       ADARB1
9553               21       45073853     45226560       ADARB1
9554               21       45073853     45226560       ADARB1
9555               21       45073853     45226560       ADARB1
9556               21       45073853     45226560       ADARB1
9557               21       45073853     45226560       ADARB1
9558               21       45073853     45226560       ADARB1
9559               21       45073853     45226560       ADARB1
9560               21       45073853     45226560       ADARB1
9561               21       45073853     45226560       ADARB1
9562               21       45073853     45226560       ADARB1
9563               21       45073853     45226560       ADARB1
9564               21       45073853     45226560       ADARB1
9565               21       45073853     45226560       ADARB1
9566               21       45073853     45226560       ADARB1
9567               21       45073853     45226560       ADARB1
9568               21       45073853     45226560       ADARB1
9569               21       45073853     45226560       ADARB1
9570               21       45073853     45226560       ADARB1
9571               21       45073853     45226560       ADARB1
9572               21       45073853     45226560       ADARB1
9573               21       45073853     45226560       ADARB1
9574               21       45073853     45226560       ADARB1
9575               21       45073853     45226560       ADARB1
9576               21       45073853     45226560       ADARB1
9577               21       45073853     45226560       ADARB1
9578               21       45073853     45226560       ADARB1
9579               21       45073853     45226560       ADARB1
9580               21       45073853     45226560       ADARB1
9581               21       45073853     45226560       ADARB1
9582               21       45073853     45226560       ADARB1
9583               21       45073853     45226560       ADARB1
9584               21       45073853     45226560       ADARB1
9585               21       45073853     45226560       ADARB1
9586               21       45073853     45226560       ADARB1
9587               21       45073853     45226560       ADARB1
9588               21       45073853     45226560       ADARB1
9589               21       45073853     45226560       ADARB1
9590               21       45073853     45226560       ADARB1
9591               21       45073853     45226560       ADARB1
9592               21       45073853     45226560       ADARB1
9593               21       45073853     45226560       ADARB1
9594               21       45073853     45226560       ADARB1
9595               21       45073853     45226560       ADARB1
9596               21       45073853     45226560       ADARB1
9597               21       45073853     45226560       ADARB1
9598               21       45073853     45226560       ADARB1
9599               21       45073853     45226560       ADARB1
9600               21       45073853     45226560       ADARB1
9601               21       45073853     45226560       ADARB1
9602               21       45073853     45226560       ADARB1
9603               21       45073853     45226560       ADARB1
9604               21       45073853     45226560       ADARB1
9605               21       45073853     45226560       ADARB1
9606               21       45073853     45226560       ADARB1
9607               21       45073853     45226560       ADARB1
9608               21       45073853     45226560       ADARB1
9609               21       45073853     45226560       ADARB1
9610               21       45073853     45226560       ADARB1
9611               21       45073853     45226560       ADARB1
9612               21       45073853     45226560       ADARB1
9613               21       45073853     45226560       ADARB1
9614               21       45073853     45226560       ADARB1
9615               21       45073853     45226560       ADARB1
9616               21       44940010     44976989      FAM207A
9617               21       44940010     44976989      FAM207A
9618               21       44940010     44976989      FAM207A
9619               21       44940010     44976989      FAM207A
9620               21       44940010     44976989      FAM207A
9621               21       44940010     44976989      FAM207A
9622               21       44940010     44976989      FAM207A
9623               21       44940010     44976989      FAM207A
9624               21       44940010     44976989      FAM207A
9625               21       44940010     44976989      FAM207A
9626               21       44940010     44976989      FAM207A
9627               21       44940010     44976989      FAM207A
9628               21       44940010     44976989      FAM207A
9629               21       44940010     44976989      FAM207A
9630               21       44940010     44976989      FAM207A
9631               21       44940010     44976989      FAM207A
9632               21       44940010     44976989      FAM207A
9633               21       44940010     44976989      FAM207A
9634               21       44940010     44976989      FAM207A
9635               21       44940010     44976989      FAM207A
9636               21       44940010     44976989      FAM207A
9637               21       44940010     44976989      FAM207A
9638               21       44940010     44976989      FAM207A
9639               21       44940010     44976989      FAM207A
9640               21       30496824     30497133    KRTAP19-4
9641               21       30487057     30487436    KRTAP19-2
9642               21       33503931     33543491         GART
9643               21       33503931     33543491         GART
9644               21       33503931     33543491         GART
9645               21       33503931     33543491         GART
9646               21       33503931     33543491         GART
9647               21       33503931     33543491         GART
9648               21       33503931     33543491         GART
9649               21       33503931     33543491         GART
9650               21       33503931     33543491         GART
9651               21       33503931     33543491         GART
9652               21       33503931     33543491         GART
9653               21       33503931     33543491         GART
9654               21       33503931     33543491         GART
9655               21       33503931     33543491         GART
9656               21       33503931     33543491         GART
9657               21       33503931     33543491         GART
9658               21       33503931     33543491         GART
9659               21       33503931     33543491         GART
9660               21       33503931     33543491         GART
9661               21       33503931     33543491         GART
9662               21       33503931     33543491         GART
9663               21       33503931     33543491         GART
9664               21       33503931     33543491         GART
9665               21       33503931     33543491         GART
9666               21       33503931     33543491         GART
9667               21       33503931     33543491         GART
9668               21       33503931     33543491         GART
9669               21       33503931     33543491         GART
9670               21       33503931     33543491         GART
9671               21       33503931     33543491         GART
9672               21       33503931     33543491         GART
9673               21       33503931     33543491         GART
9674               21       33503931     33543491         GART
9675               21       33503931     33543491         GART
9676               21       33503931     33543491         GART
9677               21       33503931     33543491         GART
9678               21       33503931     33543491         GART
9679               21       33503931     33543491         GART
9680               21       33503931     33543491         GART
9681               21       33503931     33543491         GART
9682               21       33503931     33543491         GART
9683               21       33503931     33543491         GART
9684               21       33503931     33543491         GART
9685               21       33503931     33543491         GART
9686               21       33503931     33543491         GART
9687               21       33503931     33543491         GART
9688               21       33503931     33543491         GART
9689               21       33503931     33543491         GART
9690               21       33503931     33543491         GART
9691               21       33503931     33543491         GART
9692               21       33503931     33543491         GART
9693               21       33503931     33543491         GART
9694               21       33503931     33543491         GART
9695               21       33503931     33543491         GART
9696               21       33503931     33543491         GART
9697               21       33503931     33543491         GART
9698               21       33503931     33543491         GART
9699               21       33503931     33543491         GART
9700               21       33503931     33543491         GART
9701               21       33503931     33543491         GART
9702               21       33503931     33543491         GART
9703               21       33503931     33543491         GART
9704               21       33503931     33543491         GART
9705               21       33503931     33543491         GART
9706               21       33503931     33543491         GART
9707               21       33503931     33543491         GART
9708               21       33503931     33543491         GART
9709               21       33503931     33543491         GART
9710               21       33503931     33543491         GART
9711               21       33503931     33543491         GART
9712               21       33503931     33543491         GART
9713               21       33503931     33543491         GART
9714               21       33503931     33543491         GART
9715               21       33503931     33543491         GART
9716               21       33503931     33543491         GART
9717               21       33503931     33543491         GART
9718               21       33503931     33543491         GART
9719               21       33503931     33543491         GART
9720               21       33503931     33543491         GART
9721               21       33503931     33543491         GART
9722               21       33503931     33543491         GART
9723               21       33503931     33543491         GART
9724               21       33503931     33543491         GART
9725               21       33503931     33543491         GART
9726               21       33503931     33543491         GART
9727               21       33503931     33543491         GART
9728               21       33503931     33543491         GART
9729               21       33503931     33543491         GART
9730               21       33503931     33543491         GART
9731               21       33503931     33543491         GART
9732               21       33503931     33543491         GART
9733               21       33503931     33543491         GART
9734               21       33503931     33543491         GART
9735               21       33503931     33543491         GART
9736               21       33503931     33543491         GART
9737               21       33503931     33543491         GART
9738               21       33503931     33543491         GART
9739               21       33503931     33543491         GART
9740               21       33503931     33543491         GART
9741               21       33503931     33543491         GART
9742               21       33503931     33543491         GART
9743               21       33503931     33543491         GART
9744               21       33503931     33543491         GART
9745               21       33503931     33543491         GART
9746               21       33503931     33543491         GART
9747               21       33503931     33543491         GART
9748               21       33503931     33543491         GART
9749               21       33503931     33543491         GART
9750               21       33503931     33543491         GART
9751               21       33503931     33543491         GART
9752               21       33503931     33543491         GART
9753               21       33503931     33543491         GART
9754               21       33503931     33543491         GART
9755               21       33503931     33543491         GART
9756               21       33503931     33543491         GART
9757               21       33503931     33543491         GART
9758               21       33503931     33543491         GART
9759               21       33503931     33543491         GART
9760               21       33503931     33543491         GART
9761               21       33503931     33543491         GART
9762               21       33503931     33543491         GART
9763               21       33503931     33543491         GART
9764               21       33503931     33543491         GART
9765               21       33503931     33543491         GART
9766               21       33503931     33543491         GART
9767               21       33503931     33543491         GART
9768               21       33503931     33543491         GART
9769               21       33503931     33543491         GART
9770               21       33503931     33543491         GART
9771               21       33503931     33543491         GART
9772               21       33503931     33543491         GART
9773               21       33503931     33543491         GART
9774               21       33503931     33543491         GART
9775               21       33503931     33543491         GART
9776               21       33503931     33543491         GART
9777               21       33503931     33543491         GART
9778               21       33503931     33543491         GART
9779               21       33503931     33543491         GART
9780               21       33503931     33543491         GART
9781               21       33503931     33543491         GART
9782               21       33503931     33543491         GART
9783               21       33503931     33543491         GART
9784               21       33503931     33543491         GART
9785               21       33503931     33543491         GART
9786               21       33503931     33543491         GART
9787               21       33503931     33543491         GART
9788               21       33503931     33543491         GART
9789               21       33503931     33543491         GART
9790               21       33503931     33543491         GART
9791               21       33503931     33543491         GART
9792               21       33503931     33543491         GART
9793               21       33503931     33543491         GART
9794               21       33503931     33543491         GART
9795               21       33503931     33543491         GART
9796               21       33503931     33543491         GART
9797               21       29222321     29223257     GAPDHP14
9798               21        7816675      7829926       KCNE1B
9799               21        7816675      7829926       KCNE1B
9800               21        7816675      7829926       KCNE1B
9801               21        7816675      7829926       KCNE1B
9802               21        7816675      7829926       KCNE1B
9803               21        7816675      7829926       KCNE1B
9804               21        7816675      7829926       KCNE1B
9805               21        7816675      7829926       KCNE1B
9806               21        7816675      7829926       KCNE1B
9807               21        7816675      7829926       KCNE1B
9808               21        7816675      7829926       KCNE1B
9809               21       44285838     44298648         AIRE
9810               21       44285838     44298648         AIRE
9811               21       44285838     44298648         AIRE
9812               21       44285838     44298648         AIRE
9813               21       44285838     44298648         AIRE
9814               21       44285838     44298648         AIRE
9815               21       44285838     44298648         AIRE
9816               21       44285838     44298648         AIRE
9817               21       44285838     44298648         AIRE
9818               21       44285838     44298648         AIRE
9819               21       44285838     44298648         AIRE
9820               21       44285838     44298648         AIRE
9821               21       44285838     44298648         AIRE
9822               21       44285838     44298648         AIRE
9823               21       44285838     44298648         AIRE
9824               21       44285838     44298648         AIRE
9825               21       44285838     44298648         AIRE
9826               21       44285838     44298648         AIRE
9827               21       44285838     44298648         AIRE
9828               21       44285838     44298648         AIRE
9829               21       44285838     44298648         AIRE
9830               21       44285838     44298648         AIRE
9831               21       44285838     44298648         AIRE
9832               21       44285838     44298648         AIRE
9833               21       44285838     44298648         AIRE
9834               21       44285838     44298648         AIRE
9835               21       44285838     44298648         AIRE
9836               21       44285838     44298648         AIRE
9837               21       44285838     44298648         AIRE
9838               21       44285838     44298648         AIRE
9839               21       44285838     44298648         AIRE
9840               21       44285838     44298648         AIRE
9841               21       44285838     44298648         AIRE
9842               21       44285838     44298648         AIRE
9843               21       44285838     44298648         AIRE
9844               21       44285838     44298648         AIRE
9845               21       44285838     44298648         AIRE
9846               21       44285838     44298648         AIRE
9847               21       44285838     44298648         AIRE
9848               21       44285838     44298648         AIRE
9849               21       44285838     44298648         AIRE
9850               21       44285838     44298648         AIRE
9851               21       44285838     44298648         AIRE
9852               21       44285838     44298648         AIRE
9853               21       44285838     44298648         AIRE
9854               21       44285838     44298648         AIRE
9855               21       44285838     44298648         AIRE
9856               21       44285838     44298648         AIRE
9857               21       44285838     44298648         AIRE
9858               21       44285838     44298648         AIRE
9859               21       44285838     44298648         AIRE
9860               21       44285838     44298648         AIRE
9861               21       44285838     44298648         AIRE
9862               21       44285838     44298648         AIRE
9863               21       44285838     44298648         AIRE
9864               21       39380244     39428528          WRB
9865               21       39380244     39428528          WRB
9866               21       39380244     39428528          WRB
9867               21       39380244     39428528          WRB
9868               21       39380244     39428528          WRB
9869               21       39380244     39428528          WRB
9870               21       39380244     39428528          WRB
9871               21       39380244     39428528          WRB
9872               21       39380244     39428528          WRB
9873               21       39380244     39428528          WRB
9874               21       39380244     39428528          WRB
9875               21       39380244     39428528          WRB
9876               21       39380244     39428528          WRB
9877               21       39380244     39428528          WRB
9878               21       39380244     39428528          WRB
9879               21       39380244     39428528          WRB
9880               21       39380244     39428528          WRB
9881               21       39380244     39428528          WRB
9882               21       39380244     39428528          WRB
9883               21       39380244     39428528          WRB
9884               21       39380244     39428528          WRB
9885               21       39380244     39428528          WRB
9886               21       39380244     39428528          WRB
9887               21       39380244     39428528          WRB
9888               21       39380244     39428528          WRB
9889               21       39380244     39428528          WRB
9890               21       39380244     39428528          WRB
9891               21       39380244     39428528          WRB
9892               21       39380244     39428528          WRB
9893               21       39380244     39428528          WRB
9894               21       39380244     39428528          WRB
9895               21       39380244     39428528          WRB
9896               21       39380244     39428528          WRB
9897               21       39380244     39428528          WRB
9898               21       39380244     39428528          WRB
9899               21       39380244     39428528          WRB
9900               21       39380244     39428528          WRB
9901               21       39380244     39428528          WRB
9902               21       39380244     39428528          WRB
9903               21       39380244     39428528          WRB
9904               21       39380244     39428528          WRB
9905               21       39380244     39428528          WRB
9906               21       39380244     39428528          WRB
9907               21       39380244     39428528          WRB
9908               21       39380244     39428528          WRB
9909               21       39380244     39428528          WRB
9910               21       39380244     39428528          WRB
9911               21       39380244     39428528          WRB
9912               21       39380244     39428528          WRB
9913               21       39380244     39428528          WRB
9914               21       39380244     39428528          WRB
9915               21        6507017      6507389             
9916               21       33266358     33310187       IL10RB
9917               21       33266358     33310187       IL10RB
9918               21       33266358     33310187       IL10RB
9919               21       33266358     33310187       IL10RB
9920               21       33266358     33310187       IL10RB
9921               21       33266358     33310187       IL10RB
9922               21       33266358     33310187       IL10RB
9923               21       33266358     33310187       IL10RB
9924               21       33266358     33310187       IL10RB
9925               21       33266358     33310187       IL10RB
9926               21       33266358     33310187       IL10RB
9927               21       33266358     33310187       IL10RB
9928               21       33266358     33310187       IL10RB
9929               21       33266358     33310187       IL10RB
9930               21       33266358     33310187       IL10RB
9931               21       33266358     33310187       IL10RB
9932               21       33266358     33310187       IL10RB
9933               21       33266358     33310187       IL10RB
9934               21       33266358     33310187       IL10RB
9935               21       33266358     33310187       IL10RB
9936               21       33266358     33310187       IL10RB
9937               21       33266358     33310187       IL10RB
9938               21       33266358     33310187       IL10RB
9939               21       33266358     33310187       IL10RB
9940               21       33266358     33310187       IL10RB
9941               21       33266358     33310187       IL10RB
9942               21       33266358     33310187       IL10RB
9943               21       33266358     33310187       IL10RB
9944               21       33266358     33310187       IL10RB
9945               21       33266358     33310187       IL10RB
9946               21       33266358     33310187       IL10RB
9947               21       33266358     33310187       IL10RB
9948               21       33266358     33310187       IL10RB
9949               21        8393419      8394341             
9950               21        8210384      8211306             
9951               21        7768884      7770591             
9952               21       44244545     44244993             
9953               21        7135334      7137789             
9954               21        6272135      6276532             
9955               21        6272135      6276532             
9956               21        6272135      6276532             
9957               21        6272135      6276532             
9958               21        6272135      6276532             
9959               21        6272135      6276532             
9960               21        6272135      6276532             
9961               21        6272135      6276532             
9962               21        6272135      6276532             
9963               21        6272135      6276532             
9964               21       36430360     36481070             
9965               21       36430360     36481070             
9966               21       36485867     36487760             
9967               21       20256752     20258820             
9968               21       20256752     20258820             
9969               21       19620695     19621545             
9970               21       19046310     19047684             
9971               21       19046310     19047684             
9972               21       35136638     35139222             
9973               21       35136638     35139222             
9974               21       17788967     17819386     C21orf91
9975               21       17788967     17819386     C21orf91
9976               21       17788967     17819386     C21orf91
9977               21       17788967     17819386     C21orf91
9978               21       17788967     17819386     C21orf91
9979               21       17788967     17819386     C21orf91
9980               21       17788967     17819386     C21orf91
9981               21       17788967     17819386     C21orf91
9982               21       17788967     17819386     C21orf91
9983               21       17788967     17819386     C21orf91
9984               21       17788967     17819386     C21orf91
9985               21       17788967     17819386     C21orf91
9986               21       17788967     17819386     C21orf91
9987               21       17788967     17819386     C21orf91
9988               21       17788967     17819386     C21orf91
9989               21       17788967     17819386     C21orf91
9990               21       17788967     17819386     C21orf91
9991               21       17788967     17819386     C21orf91
9992               21       17788967     17819386     C21orf91
9993               21       17788967     17819386     C21orf91
9994               21       17788967     17819386     C21orf91
9995               21       17788967     17819386     C21orf91
9996               21       17788967     17819386     C21orf91
9997               21       17788967     17819386     C21orf91
9998               21       17788967     17819386     C21orf91
9999               21       28439346     28674848             
10000              21       28439346     28674848             
10001              21       28439346     28674848             
10002              21       28439346     28674848             
10003              21       28439346     28674848             
10004              21       28439346     28674848             
10005              21       28439346     28674848             
10006              21       28439346     28674848             
10007              21       28439346     28674848             
10008              21       28439346     28674848             
10009              21       28439346     28674848             
10010              21       28439346     28674848             
10011              21       28539318     28540355    LINC00161
10012              21       28539318     28540355    LINC00161
10013              21       28539318     28540355    LINC00161
10014              21       28539318     28540355    LINC00161
10015              21       34205055     34325034             
10016              21       34205055     34325034             
10017              21       34205055     34325034             
10018              21       34205055     34325034             
10019              21       34205055     34325034             
10020              21       34073592     34360033             
10021              21       34073592     34360033             
10022              21       34073592     34360033             
10023              21       34073592     34360033             
10024              21       34073592     34360033             
10025              21       34073592     34360033             
10026              21       34157724     34190244    LINC00310
10027              21       34157724     34190244    LINC00310
10028              21       34157724     34190244    LINC00310
10029              21       34157724     34190244    LINC00310
10030              21       34157724     34190244    LINC00310
10031              21       34157724     34190244    LINC00310
10032              21       34157724     34190244    LINC00310
10033              21       34157724     34190244    LINC00310
10034              21       34157724     34190244    LINC00310
10035              21       34157724     34190244    LINC00310
10036              21       34157724     34190244    LINC00310
10037              21       34157724     34190244    LINC00310
10038              21       34157724     34190244    LINC00310
10039              21       34157724     34190244    LINC00310
10040              21       34157724     34190244    LINC00310
10041              21       34157724     34190244    LINC00310
10042              21       34157724     34190244    LINC00310
10043              21       34157724     34190244    LINC00310
10044              21       34157724     34190244    LINC00310
10045              21       34157724     34190244    LINC00310
10046              21       34157724     34190244    LINC00310
10047              21       34073224     34143034        MRPS6
10048              21       34073224     34143034        MRPS6
10049              21       34073224     34143034        MRPS6
10050              21       34073224     34143034        MRPS6
10051              21       34073224     34143034        MRPS6
10052              21       34073224     34143034        MRPS6
10053              21       34073224     34143034        MRPS6
10054              21       34073224     34143034        MRPS6
10055              21       34073224     34143034        MRPS6
10056              21       34073224     34143034        MRPS6
10057              21       34073224     34143034        MRPS6
10058              21       34073224     34143034        MRPS6
10059              21       34073224     34143034        MRPS6
10060              21       34073224     34143034        MRPS6
10061              21       34073224     34143034        MRPS6
10062              21       34073224     34143034        MRPS6
10063              21       34073224     34143034        MRPS6
10064              21       34073224     34143034        MRPS6
10065              21        7129103      7130287             
10066              21        6721812      6725209             
10067              21        6721812      6725209             
10068              21        6721812      6725209             
10069              21        6630182      6670695             
10070              21        6630182      6670695             
10071              21        6630182      6670695             
10072              21        6630182      6670695             
10073              21        6630182      6670695             
10074              21        6630182      6670695             
10075              21        6630182      6670695             
10076              21        6630182      6670695             
10077              21        6630182      6670695             
10078              21        6630182      6670695             
10079              21        6630182      6670695             
10080              21        6630182      6670695             
10081              21        6630182      6670695             
10082              21        6630182      6670695             
10083              21        6630182      6670695             
10084              21        6630182      6670695             
10085              21        6630182      6670695             
10086              21        6630182      6670695             
10087              21        6630182      6670695             
10088              21        6630182      6670695             
10089              21        6630182      6670695             
10090              21        6630182      6670695             
10091              21        6630182      6670695             
10092              21        6630182      6670695             
10093              21        6630182      6670695             
10094              21       20388334     20388845       FDPSP6
10095              21       17659276     17660384             
10096              21       17659276     17660384             
10097              21       34135432     34136071       RPS5P2
10098              21       34073570     34106262       SLC5A3
10099              21       34073570     34106262       SLC5A3
10100              21       42362282     42366594         TFF1
10101              21       42362282     42366594         TFF1
10102              21       42362282     42366594         TFF1
10103              21       27420380     27421023      RPL10P1
10104              21       27143344     27143949       GPX1P2
10105              21       42311667     42315651         TFF3
10106              21       42311667     42315651         TFF3
10107              21       42311667     42315651         TFF3
10108              21       42311667     42315651         TFF3
10109              21       42311667     42315651         TFF3
10110              21       42311667     42315651         TFF3
10111              21       42311667     42315651         TFF3
10112              21       42311667     42315651         TFF3
10113              21       42311667     42315651         TFF3
10114              21       42311667     42315651         TFF3
10115              21       42311667     42315651         TFF3
10116              21       42311667     42315651         TFF3
10117              21       14143581     14144158     ERLEC1P1
10118              21       14108813     14210891         LIPI
10119              21       14108813     14210891         LIPI
10120              21       14108813     14210891         LIPI
10121              21       14108813     14210891         LIPI
10122              21       14108813     14210891         LIPI
10123              21       14108813     14210891         LIPI
10124              21       14108813     14210891         LIPI
10125              21       14108813     14210891         LIPI
10126              21       14108813     14210891         LIPI
10127              21       14108813     14210891         LIPI
10128              21       14108813     14210891         LIPI
10129              21       14108813     14210891         LIPI
10130              21       14108813     14210891         LIPI
10131              21       14108813     14210891         LIPI
10132              21       14108813     14210891         LIPI
10133              21       14108813     14210891         LIPI
10134              21       14108813     14210891         LIPI
10135              21       14108813     14210891         LIPI
10136              21       14108813     14210891         LIPI
10137              21       14108813     14210891         LIPI
10138              21       14108813     14210891         LIPI
10139              21       14108813     14210891         LIPI
10140              21       14108813     14210891         LIPI
10141              21       14108813     14210891         LIPI
10142              21       14108813     14210891         LIPI
10143              21       14108813     14210891         LIPI
10144              21       14108813     14210891         LIPI
10145              21       14108813     14210891         LIPI
10146              21       14108813     14210891         LIPI
10147              21       14108813     14210891         LIPI
10148              21       14108813     14210891         LIPI
10149              21       14108813     14210891         LIPI
10150              21       14108813     14210891         LIPI
10151              21       31653593     31659500             
10152              21       31653593     31659500             
10153              21       31653593     31659500             
10154              21       13581044     13582004      OR4K12P
10155              21       13095305     13113790      ZNF355P
10156              21       13095305     13113790      ZNF355P
10157              21       13095305     13113790      ZNF355P
10158              21       12999676     13016692             
10159              21       12999676     13016692             
10160              21       38121451     38188016        DSCR8
10161              21       38121451     38188016        DSCR8
10162              21       38121451     38188016        DSCR8
10163              21       38121451     38188016        DSCR8
10164              21       38121451     38188016        DSCR8
10165              21       38121451     38188016        DSCR8
10166              21       38121451     38188016        DSCR8
10167              21       38121451     38188016        DSCR8
10168              21       38121451     38188016        DSCR8
10169              21       38121451     38188016        DSCR8
10170              21       38121451     38188016        DSCR8
10171              21       38121451     38188016        DSCR8
10172              21       38121451     38188016        DSCR8
10173              21       38121451     38188016        DSCR8
10174              21       38121451     38188016        DSCR8
10175              21       38121451     38188016        DSCR8
10176              21       38121451     38188016        DSCR8
10177              21       38121451     38188016        DSCR8
10178              21       38121451     38188016        DSCR8
10179              21       38121451     38188016        DSCR8
10180              21       38121451     38188016        DSCR8
10181              21       38121451     38188016        DSCR8
10182              21       38121451     38188016        DSCR8
10183              21       38121451     38188016        DSCR8
10184              21       38121451     38188016        DSCR8
10185              21       38121451     38188016        DSCR8
10186              21       38121451     38188016        DSCR8
10187              21       38121451     38188016        DSCR8
10188              21       38121451     38188016        DSCR8
10189              21       38121451     38188016        DSCR8
10190              21       31038159     31038476    KRTAP19-8
10191              21       31060600     31063168      UBE3AP2
10192              21       31060600     31063168      UBE3AP2
10193              21       25643489     25644216      RNGTTP1
10194              21       25716503     25735673        ATP5J
10195              21       25716503     25735673        ATP5J
10196              21       25716503     25735673        ATP5J
10197              21       25716503     25735673        ATP5J
10198              21       25716503     25735673        ATP5J
10199              21       25716503     25735673        ATP5J
10200              21       25716503     25735673        ATP5J
10201              21       25716503     25735673        ATP5J
10202              21       25716503     25735673        ATP5J
10203              21       25716503     25735673        ATP5J
10204              21       25716503     25735673        ATP5J
10205              21       25716503     25735673        ATP5J
10206              21       25716503     25735673        ATP5J
10207              21       25716503     25735673        ATP5J
10208              21       25716503     25735673        ATP5J
10209              21       25716503     25735673        ATP5J
10210              21       25716503     25735673        ATP5J
10211              21       25716503     25735673        ATP5J
10212              21       25716503     25735673        ATP5J
10213              21       25716503     25735673        ATP5J
10214              21       25716503     25735673        ATP5J
10215              21       25716503     25735673        ATP5J
10216              21       25716503     25735673        ATP5J
10217              21       25716503     25735673        ATP5J
10218              21       25716503     25735673        ATP5J
10219              21       25716503     25735673        ATP5J
10220              21       25716503     25735673        ATP5J
10221              21       25716503     25735673        ATP5J
10222              21       25716503     25735673        ATP5J
10223              21       25716503     25735673        ATP5J
10224              21       25716503     25735673        ATP5J
10225              21       25716503     25735673        ATP5J
10226              21       25716503     25735673        ATP5J
10227              21       25692180     25692554       FDX1P2
10228              21       25734570     25772460        GABPA
10229              21       25734570     25772460        GABPA
10230              21       25734570     25772460        GABPA
10231              21       25734570     25772460        GABPA
10232              21       25734570     25772460        GABPA
10233              21       25734570     25772460        GABPA
10234              21       25734570     25772460        GABPA
10235              21       25734570     25772460        GABPA
10236              21       25734570     25772460        GABPA
10237              21       25734570     25772460        GABPA
10238              21       25734570     25772460        GABPA
10239              21       25734570     25772460        GABPA
10240              21       25734570     25772460        GABPA
10241              21       25734570     25772460        GABPA
10242              21       25734570     25772460        GABPA
10243              21       25734570     25772460        GABPA
10244              21       25734570     25772460        GABPA
10245              21       25734570     25772460        GABPA
10246              21       25734570     25772460        GABPA
10247              21       25734570     25772460        GABPA
10248              21       25734570     25772460        GABPA
10249              21       25734570     25772460        GABPA
10250              21       25734570     25772460        GABPA
10251              21       25734570     25772460        GABPA
10252              21       43358147     43362349    LINC01679
10253              21       43358147     43362349    LINC01679
10254              21       25762938     25763333       LLPHP2
10255              21       45100487     45101094             
10256              21       30806932     30807119    KRTAP8-3P
10257              21       30754830     30755428    KRTAP21-1
10258              21       30746794     30747233    KRTAP21-2
10259              21       37951425     38121360        DSCR4
10260              21       37951425     38121360        DSCR4
10261              21       37951425     38121360        DSCR4
10262              21       37951425     38121360        DSCR4
10263              21       37951425     38121360        DSCR4
10264              21       37951425     38121360        DSCR4
10265              21       37951425     38121360        DSCR4
10266              21       37951425     38121360        DSCR4
10267              21       37951425     38121360        DSCR4
10268              21       37951425     38121360        DSCR4
10269              21       37951425     38121360        DSCR4
10270              21       37951425     38121360        DSCR4
10271              21       37951425     38121360        DSCR4
10272              21       38006544     38010618    DSCR4-IT1
10273              21       38006544     38010618    DSCR4-IT1
10274              21       43092956     43107587        U2AF1
10275              21       43092956     43107587        U2AF1
10276              21       43092956     43107587        U2AF1
10277              21       43092956     43107587        U2AF1
10278              21       43092956     43107587        U2AF1
10279              21       43092956     43107587        U2AF1
10280              21       43092956     43107587        U2AF1
10281              21       43092956     43107587        U2AF1
10282              21       43092956     43107587        U2AF1
10283              21       43092956     43107587        U2AF1
10284              21       43092956     43107587        U2AF1
10285              21       43092956     43107587        U2AF1
10286              21       43092956     43107587        U2AF1
10287              21       43092956     43107587        U2AF1
10288              21       43092956     43107587        U2AF1
10289              21       43092956     43107587        U2AF1
10290              21       43092956     43107587        U2AF1
10291              21       43092956     43107587        U2AF1
10292              21       43092956     43107587        U2AF1
10293              21       43092956     43107587        U2AF1
10294              21       43092956     43107587        U2AF1
10295              21       43092956     43107587        U2AF1
10296              21       43092956     43107587        U2AF1
10297              21       43092956     43107587        U2AF1
10298              21       43092956     43107587        U2AF1
10299              21       43092956     43107587        U2AF1
10300              21       43092956     43107587        U2AF1
10301              21       43092956     43107587        U2AF1
10302              21       43092956     43107587        U2AF1
10303              21       43092956     43107587        U2AF1
10304              21       43092956     43107587        U2AF1
10305              21       43092956     43107587        U2AF1
10306              21       43092956     43107587        U2AF1
10307              21       43092956     43107587        U2AF1
10308              21       43092956     43107587        U2AF1
10309              21       43092956     43107587        U2AF1
10310              21       43092956     43107587        U2AF1
10311              21       43092956     43107587        U2AF1
10312              21       43092956     43107587        U2AF1
10313              21       43092956     43107587        U2AF1
10314              21       43092956     43107587        U2AF1
10315              21       43092956     43107587        U2AF1
10316              21       43092956     43107587        U2AF1
10317              21       43092956     43107587        U2AF1
10318              21       43092956     43107587        U2AF1
10319              21       43092956     43107587        U2AF1
10320              21       43092956     43107587        U2AF1
10321              21       43092956     43107587        U2AF1
10322              21       43092956     43107587        U2AF1
10323              21       43092956     43107587        U2AF1
10324              21       43092956     43107587        U2AF1
10325              21       43092956     43107587        U2AF1
10326              21       43092956     43107587        U2AF1
10327              21       43092956     43107587        U2AF1
10328              21       43092956     43107587        U2AF1
10329              21       43092956     43107587        U2AF1
10330              21       43092956     43107587        U2AF1
10331              21       43092956     43107587        U2AF1
10332              21       43092956     43107587        U2AF1
10333              21       43092956     43107587        U2AF1
10334              21       43092956     43107587        U2AF1
10335              21       43092956     43107587        U2AF1
10336              21       43092956     43107587        U2AF1
10337              21       43092956     43107587        U2AF1
10338              21       43092956     43107587        U2AF1
10339              21       43092956     43107587        U2AF1
10340              21       43092956     43107587        U2AF1
10341              21       43092956     43107587        U2AF1
10342              21       43092956     43107587        U2AF1
10343              21       43092956     43107587        U2AF1
10344              21       36994643     36995075     MRPL20P1
10345              21        6318434      6360415             
10346              21        6318434      6360415             
10347              21        6318434      6360415             
10348              21        6318434      6360415             
10349              21        6318434      6360415             
10350              21        6318434      6360415             
10351              21        6318434      6360415             
10352              21        6318434      6360415             
10353              21        6318434      6360415             
10354              21        6318434      6360415             
10355              21        6318434      6360415             
10356              21        6318434      6360415             
10357              21        6318434      6360415             
10358              21        6318434      6360415             
10359              21        6318434      6360415             
10360              21        6318434      6360415             
10361              21        6318434      6360415             
10362              21        6318434      6360415             
10363              21       36943267     36944125       DPRXP5
10364              21       36943267     36944125       DPRXP5
10365              21       36803984     36806284     HLCS-IT1
10366              21       36803984     36806284     HLCS-IT1
10367              21       28901779     28903697    THUMPD1P1
10368              21       28901779     28903697    THUMPD1P1
10369              21       28901779     28903697    THUMPD1P1
10370              21       21746973     21797415    LINC01425
10371              21       21746973     21797415    LINC01425
10372              21       21746973     21797415    LINC01425
10373              21       21746973     21797415    LINC01425
10374              21       21746973     21797415    LINC01425
10375              21       21746973     21797415    LINC01425
10376              21       21746973     21797415    LINC01425
10377              21       21746973     21797415    LINC01425
10378              21       21746973     21797415    LINC01425
10379              21       20828127     20828622       PPIAP1
10380              21       42560374     42561934             
10381              21       42560374     42561934             
10382              21       32496812     32497311     EXOSC3P1
10383              21       45378201     45379635             
10384              21       45378201     45379635             
10385              21       45378201     45379635             
10386              21       45378201     45379635             
10387              21       45403809     45404369             
10388              21       43529192     43659493       HSF2BP
10389              21       43529192     43659493       HSF2BP
10390              21       43529192     43659493       HSF2BP
10391              21       43529192     43659493       HSF2BP
10392              21       43529192     43659493       HSF2BP
10393              21       43529192     43659493       HSF2BP
10394              21       43529192     43659493       HSF2BP
10395              21       43529192     43659493       HSF2BP
10396              21       43529192     43659493       HSF2BP
10397              21       43529192     43659493       HSF2BP
10398              21       43529192     43659493       HSF2BP
10399              21       43529192     43659493       HSF2BP
10400              21       43529192     43659493       HSF2BP
10401              21       43529192     43659493       HSF2BP
10402              21       43529192     43659493       HSF2BP
10403              21       43529192     43659493       HSF2BP
10404              21       13544282     13545185      OR4K11P
10405              21       38206156     38208644       DSCR10
10406              21       38206156     38208644       DSCR10
10407              21       38206156     38208644       DSCR10
10408              21       29657406     29657831             
10409              21       33485530     33491720      DNAJC28
10410              21       33485530     33491720      DNAJC28
10411              21       33485530     33491720      DNAJC28
10412              21       33485530     33491720      DNAJC28
10413              21       33485530     33491720      DNAJC28
10414              21       33485530     33491720      DNAJC28
10415              21       33485530     33491720      DNAJC28
10416              21       33485530     33491720      DNAJC28
10417              21       33485530     33491720      DNAJC28
10418              21       33482499     33484258             
10419              21       33482499     33484258             
10420              21       33482499     33484258             
10421              21        7385058      7388799             
10422              21        7385058      7388799             
10423              21        7385058      7388799             
10424              21        7385058      7388799             
10425              21        7385058      7388799             
10426              21        7385058      7388799             
10427              21        7385058      7388799             
10428              21        7385058      7388799             
10429              21        7385058      7388799             
10430              21       33402896     33479348       IFNGR2
10431              21       33402896     33479348       IFNGR2
10432              21       33402896     33479348       IFNGR2
10433              21       33402896     33479348       IFNGR2
10434              21       33402896     33479348       IFNGR2
10435              21       33402896     33479348       IFNGR2
10436              21       33402896     33479348       IFNGR2
10437              21       33402896     33479348       IFNGR2
10438              21       33402896     33479348       IFNGR2
10439              21       33402896     33479348       IFNGR2
10440              21       33402896     33479348       IFNGR2
10441              21       33402896     33479348       IFNGR2
10442              21       33402896     33479348       IFNGR2
10443              21       33402896     33479348       IFNGR2
10444              21       33402896     33479348       IFNGR2
10445              21       33402896     33479348       IFNGR2
10446              21       33402896     33479348       IFNGR2
10447              21       33402896     33479348       IFNGR2
10448              21       33402896     33479348       IFNGR2
10449              21       33402896     33479348       IFNGR2
10450              21       33402896     33479348       IFNGR2
10451              21       33402896     33479348       IFNGR2
10452              21       33402896     33479348       IFNGR2
10453              21       33402896     33479348       IFNGR2
10454              21       33402896     33479348       IFNGR2
10455              21       33402896     33479348       IFNGR2
10456              21       33402896     33479348       IFNGR2
10457              21       33402896     33479348       IFNGR2
10458              21       33402896     33479348       IFNGR2
10459              21       33402896     33479348       IFNGR2
10460              21       33402896     33479348       IFNGR2
10461              21       33402896     33479348       IFNGR2
10462              21       33402896     33479348       IFNGR2
10463              21       33402896     33479348       IFNGR2
10464              21       33402896     33479348       IFNGR2
10465              21       33402896     33479348       IFNGR2
10466              21       33402896     33479348       IFNGR2
10467              21       33402896     33479348       IFNGR2
10468              21       33402896     33479348       IFNGR2
10469              21        6484623      6499261      U2AF1L5
10470              21        6484623      6499261      U2AF1L5
10471              21        6484623      6499261      U2AF1L5
10472              21        6484623      6499261      U2AF1L5
10473              21        6484623      6499261      U2AF1L5
10474              21        6484623      6499261      U2AF1L5
10475              21        6484623      6499261      U2AF1L5
10476              21        6484623      6499261      U2AF1L5
10477              21        6484623      6499261      U2AF1L5
10478              21        6484623      6499261      U2AF1L5
10479              21        6484623      6499261      U2AF1L5
10480              21        6484623      6499261      U2AF1L5
10481              21        6484623      6499261      U2AF1L5
10482              21        6484623      6499261      U2AF1L5
10483              21        6484623      6499261      U2AF1L5
10484              21        6484623      6499261      U2AF1L5
10485              21        6484623      6499261      U2AF1L5
10486              21        6484623      6499261      U2AF1L5
10487              21        6484623      6499261      U2AF1L5
10488              21        6484623      6499261      U2AF1L5
10489              21        6484623      6499261      U2AF1L5
10490              21        6484623      6499261      U2AF1L5
10491              21        6484623      6499261      U2AF1L5
10492              21        6484623      6499261      U2AF1L5
10493              21        6484623      6499261      U2AF1L5
10494              21        6484623      6499261      U2AF1L5
10495              21        6484623      6499261      U2AF1L5
10496              21        6484623      6499261      U2AF1L5
10497              21        6484623      6499261      U2AF1L5
10498              21        6484623      6499261      U2AF1L5
10499              21        6484623      6499261      U2AF1L5
10500              21        6484623      6499261      U2AF1L5
10501              21        6484623      6499261      U2AF1L5
10502              21        6484623      6499261      U2AF1L5
10503              21        6484623      6499261      U2AF1L5
10504              21        6484623      6499261      U2AF1L5
10505              21        6484623      6499261      U2AF1L5
10506              21        6484623      6499261      U2AF1L5
10507              21        6484623      6499261      U2AF1L5
10508              21        6484623      6499261      U2AF1L5
10509              21        6484623      6499261      U2AF1L5
10510              21        6484623      6499261      U2AF1L5
10511              21        6484623      6499261      U2AF1L5
10512              21        6484623      6499261      U2AF1L5
10513              21        6484623      6499261      U2AF1L5
10514              21        6484623      6499261      U2AF1L5
10515              21        6484623      6499261      U2AF1L5
10516              21        6484623      6499261      U2AF1L5
10517              21        6484623      6499261      U2AF1L5
10518              21        6484623      6499261      U2AF1L5
10519              21        6484623      6499261      U2AF1L5
10520              21        6484623      6499261      U2AF1L5
10521              21        6484623      6499261      U2AF1L5
10522              21        6484623      6499261      U2AF1L5
10523              21        6484623      6499261      U2AF1L5
10524              21        6484623      6499261      U2AF1L5
10525              21        6484623      6499261      U2AF1L5
10526              21        6484623      6499261      U2AF1L5
10527              21        6484623      6499261      U2AF1L5
10528              21        6484623      6499261      U2AF1L5
10529              21        6484623      6499261      U2AF1L5
10530              21        6484623      6499261      U2AF1L5
10531              21        6484623      6499261      U2AF1L5
10532              21        6484623      6499261      U2AF1L5
10533              21        6484623      6499261      U2AF1L5
10534              21        6484623      6499261      U2AF1L5
10535              21        6484623      6499261      U2AF1L5
10536              21        6484623      6499261      U2AF1L5
10537              21        6484623      6499261      U2AF1L5
10538              21        6484623      6499261      U2AF1L5
10539              21       44175489     44176453             
10540              21       44175489     44176453             
10541              21       33246774     33283212             
10542              21       33246774     33283212             
10543              21       33246774     33283212             
10544              21       33246774     33283212             
10545              21       33246774     33283212             
10546              21       33246774     33283212             
10547              21       33246774     33283212             
10548              21       33246774     33283212             
10549              21       33246774     33283212             
10550              21       33246774     33283212             
10551              21       33246774     33283212             
10552              21       33246774     33283212             
10553              21       36460621     36576569       CLDN14
10554              21       36460621     36576569       CLDN14
10555              21       36460621     36576569       CLDN14
10556              21       36460621     36576569       CLDN14
10557              21       36460621     36576569       CLDN14
10558              21       36460621     36576569       CLDN14
10559              21       36460621     36576569       CLDN14
10560              21       36460621     36576569       CLDN14
10561              21       36460621     36576569       CLDN14
10562              21       36460621     36576569       CLDN14
10563              21       36460621     36576569       CLDN14
10564              21       36460621     36576569       CLDN14
10565              21       36460621     36576569       CLDN14
10566              21       36460621     36576569       CLDN14
10567              21       36460621     36576569       CLDN14
10568              21       17763315     17792523 C21orf91-OT1
10569              21       17763315     17792523 C21orf91-OT1
10570              21       17763315     17792523 C21orf91-OT1
10571              21       17763315     17792523 C21orf91-OT1
10572              21       17763315     17792523 C21orf91-OT1
10573              21       17763315     17792523 C21orf91-OT1
10574              21       17763315     17792523 C21orf91-OT1
10575              21       17763315     17792523 C21orf91-OT1
10576              21       17763315     17792523 C21orf91-OT1
10577              21       17763315     17792523 C21orf91-OT1
10578              21       17763315     17792523 C21orf91-OT1
10579              21       17763315     17792523 C21orf91-OT1
10580              21       42371890     42396846      TMPRSS3
10581              21       42371890     42396846      TMPRSS3
10582              21       42371890     42396846      TMPRSS3
10583              21       42371890     42396846      TMPRSS3
10584              21       42371890     42396846      TMPRSS3
10585              21       42371890     42396846      TMPRSS3
10586              21       42371890     42396846      TMPRSS3
10587              21       42371890     42396846      TMPRSS3
10588              21       42371890     42396846      TMPRSS3
10589              21       42371890     42396846      TMPRSS3
10590              21       42371890     42396846      TMPRSS3
10591              21       42371890     42396846      TMPRSS3
10592              21       42371890     42396846      TMPRSS3
10593              21       42371890     42396846      TMPRSS3
10594              21       42371890     42396846      TMPRSS3
10595              21       42371890     42396846      TMPRSS3
10596              21       42371890     42396846      TMPRSS3
10597              21       42371890     42396846      TMPRSS3
10598              21       42371890     42396846      TMPRSS3
10599              21       42371890     42396846      TMPRSS3
10600              21       42371890     42396846      TMPRSS3
10601              21       42371890     42396846      TMPRSS3
10602              21       42371890     42396846      TMPRSS3
10603              21       42371890     42396846      TMPRSS3
10604              21       42371890     42396846      TMPRSS3
10605              21       42371890     42396846      TMPRSS3
10606              21       42371890     42396846      TMPRSS3
10607              21       42371890     42396846      TMPRSS3
10608              21       42371890     42396846      TMPRSS3
10609              21       42371890     42396846      TMPRSS3
10610              21       42371890     42396846      TMPRSS3
10611              21       42371890     42396846      TMPRSS3
10612              21       42371890     42396846      TMPRSS3
10613              21       42371890     42396846      TMPRSS3
10614              21       42371890     42396846      TMPRSS3
10615              21       42371890     42396846      TMPRSS3
10616              21       42371890     42396846      TMPRSS3
10617              21       42371890     42396846      TMPRSS3
10618              21       42371890     42396846      TMPRSS3
10619              21       42371890     42396846      TMPRSS3
10620              21       42371890     42396846      TMPRSS3
10621              21       42371890     42396846      TMPRSS3
10622              21       42371890     42396846      TMPRSS3
10623              21       42371890     42396846      TMPRSS3
10624              21       42371890     42396846      TMPRSS3
10625              21       42371890     42396846      TMPRSS3
10626              21       42371890     42396846      TMPRSS3
10627              21       42371890     42396846      TMPRSS3
10628              21       42371890     42396846      TMPRSS3
10629              21       42371890     42396846      TMPRSS3
10630              21       42371890     42396846      TMPRSS3
10631              21       42371890     42396846      TMPRSS3
10632              21       42371890     42396846      TMPRSS3
10633              21       42371890     42396846      TMPRSS3
10634              21       42371890     42396846      TMPRSS3
10635              21       42371890     42396846      TMPRSS3
10636              21       42371890     42396846      TMPRSS3
10637              21       42371890     42396846      TMPRSS3
10638              21       42371890     42396846      TMPRSS3
10639              21       42371890     42396846      TMPRSS3
10640              21       42371890     42396846      TMPRSS3
10641              21       42371890     42396846      TMPRSS3
10642              21       42371890     42396846      TMPRSS3
10643              21       42371890     42396846      TMPRSS3
10644              21       42371890     42396846      TMPRSS3
10645              21       42371890     42396846      TMPRSS3
10646              21       42371890     42396846      TMPRSS3
10647              21       42371890     42396846      TMPRSS3
10648              21       42371890     42396846      TMPRSS3
10649              21       42371890     42396846      TMPRSS3
10650              21       42371890     42396846      TMPRSS3
10651              21       42371890     42396846      TMPRSS3
10652              21       42371890     42396846      TMPRSS3
10653              21       42371890     42396846      TMPRSS3
10654              21       42371890     42396846      TMPRSS3
10655              21       27638693     27653491    LINC01673
10656              21       27638693     27653491    LINC01673
10657              21       27638693     27653491    LINC01673
10658              21        7430659      7469007             
10659              21        7430659      7469007             
10660              21        7430659      7469007             
10661              21        7430659      7469007             
10662              21        7430659      7469007             
10663              21        7430659      7469007             
10664              21        7430659      7469007             
10665              21        7430659      7469007             
10666              21        7430659      7469007             
10667              21        7430659      7469007             
10668              21        7430659      7469007             
10669              21        7430659      7469007             
10670              21        7430659      7469007             
10671              21        7430659      7469007             
10672              21        7430659      7469007             
10673              21        7430659      7469007             
10674              21        7430659      7469007             
10675              21        7430659      7469007             
10676              21        7430659      7469007             
10677              21        7430659      7469007             
10678              21        7430659      7469007             
10679              21        7430659      7469007             
10680              21        7430659      7469007             
10681              21       44222991     44240966       ICOSLG
10682              21       44222991     44240966       ICOSLG
10683              21       44222991     44240966       ICOSLG
10684              21       44222991     44240966       ICOSLG
10685              21       44222991     44240966       ICOSLG
10686              21       44222991     44240966       ICOSLG
10687              21       44222991     44240966       ICOSLG
10688              21       44222991     44240966       ICOSLG
10689              21       44222991     44240966       ICOSLG
10690              21       44222991     44240966       ICOSLG
10691              21       44222991     44240966       ICOSLG
10692              21       44222991     44240966       ICOSLG
10693              21       44222991     44240966       ICOSLG
10694              21       44222991     44240966       ICOSLG
10695              21       44222991     44240966       ICOSLG
10696              21       44222991     44240966       ICOSLG
10697              21       44222991     44240966       ICOSLG
10698              21       44222991     44240966       ICOSLG
10699              21       44222991     44240966       ICOSLG
10700              21       44222991     44240966       ICOSLG
10701              21       44222991     44240966       ICOSLG
10702              21       44222991     44240966       ICOSLG
10703              21       44222991     44240966       ICOSLG
10704              21       44222991     44240966       ICOSLG
10705              21       44222991     44240966       ICOSLG
10706              21       44222991     44240966       ICOSLG
10707              21       33156632     33159110             
10708              21       33156632     33159110             
10709              21       33111699     33123703             
10710              21       33111699     33123703             
10711              21       33111699     33123703             
10712              21       33025845     33029196        OLIG2
10713              21       33025845     33029196        OLIG2
10714              21       33025845     33029196        OLIG2
10715              21       33025845     33029196        OLIG2
10716              21       33025845     33029196        OLIG2
10717              21       33057829     33064983    LINC00945
10718              21       33057829     33064983    LINC00945
10719              21       33057829     33064983    LINC00945
10720              21       33057829     33064983    LINC00945
10721              21       33057829     33064983    LINC00945
10722              21       32958888     32960566             
10723              21       32958888     32960566             
10724              21        6034690      6036093             
10725              21        5232668      5243833             
10726              21        5232668      5243833             
10727              21        5499151      5502542    LINC01670
10728              21        5499151      5502542    LINC01670
10729              21        5499151      5502542    LINC01670
10730              21        5499151      5502542    LINC01670
10731              21        5499151      5502542    LINC01670
10732              21        5499151      5502542    LINC01670
10733              21        5499151      5502542    LINC01670
10734              21        5499151      5502542    LINC01670
10735              21       36966492     36975164             
10736              21       36966492     36975164             
10737              21       36966492     36975164             
10738              21       36966492     36975164             
10739              21       36966492     36975164             
10740              21       36966492     36975164             
10741              21       36966492     36975164             
10742              21       36966492     36975164             
10743              21        5553637      5614880             
10744              21        5553637      5614880             
10745              21        5553637      5614880             
10746              21        5553637      5614880             
10747              21        5553637      5614880             
10748              21        5553637      5614880             
10749              21        5553637      5614880             
10750              21        5553637      5614880             
10751              21        5553637      5614880             
10752              21        5553637      5614880             
10753              21        5553637      5614880             
10754              21        5553637      5614880             
10755              21        5553637      5614880             
10756              21        5553637      5614880             
10757              21        5553637      5614880             
10758              21        5553637      5614880             
10759              21        5553637      5614880             
10760              21        5553637      5614880             
10761              21        5553637      5614880             
10762              21        5553637      5614880             
10763              21        5553637      5614880             
10764              21        5553637      5614880             
10765              21        5553637      5614880             
10766              21        5553637      5614880             
10767              21        5553637      5614880             
10768              21        5553637      5614880             
10769              21        5553637      5614880             
10770              21        5553637      5614880             
10771              21        5553637      5614880             
10772              21        5553637      5614880             
10773              21        5553637      5614880             
10774              21        5553637      5614880             
10775              21        5553637      5614880             
10776              21        5553637      5614880             
10777              21        5553637      5614880             
10778              21        5553637      5614880             
10779              21        5553637      5614880             
10780              21        5553637      5614880             
10781              21        5553637      5614880             
10782              21        5553637      5614880             
10783              21       20742590     20803216    LINC00320
10784              21       20742590     20803216    LINC00320
10785              21       20742590     20803216    LINC00320
10786              21       20742590     20803216    LINC00320
10787              21       20742590     20803216    LINC00320
10788              21       20742590     20803216    LINC00320
10789              21       20742590     20803216    LINC00320
10790              21       20742590     20803216    LINC00320
10791              21       20742590     20803216    LINC00320
10792              21       20742590     20803216    LINC00320
10793              21       20742590     20803216    LINC00320
10794              21       20742590     20803216    LINC00320
10795              21       20742590     20803216    LINC00320
10796              21       20742590     20803216    LINC00320
10797              21       20742590     20803216    LINC00320
10798              21       20742590     20803216    LINC00320
10799              21       20742590     20803216    LINC00320
10800              21       20742590     20803216    LINC00320
10801              21       20742590     20803216    LINC00320
10802              21       20742590     20803216    LINC00320
10803              21       20742590     20803216    LINC00320
10804              21       20742590     20803216    LINC00320
10805              21       20742590     20803216    LINC00320
10806              21       20742590     20803216    LINC00320
10807              21       20742590     20803216    LINC00320
10808              21       20742590     20803216    LINC00320
10809              21       20742590     20803216    LINC00320
10810              21       20742590     20803216    LINC00320
10811              21       20742590     20803216    LINC00320
10812              21       20742590     20803216    LINC00320
10813              21       20742590     20803216    LINC00320
10814              21       20742590     20803216    LINC00320
10815              21       20742590     20803216    LINC00320
10816              21       20742590     20803216    LINC00320
10817              21       20742590     20803216    LINC00320
10818              21       20742590     20803216    LINC00320
10819              21       20742590     20803216    LINC00320
10820              21       19301613     19303739             
10821              21       19301613     19303739             
10822              21       18614431     18650360             
10823              21       18614431     18650360             
10824              21       18614431     18650360             
10825              21        6667304      6670667             
10826              21        6667304      6670667             
10827              21        6667304      6670667             
10828              21        6667304      6670667             
10829              21        6667304      6670667             
10830              21       32772100     32893735 C21orf62-AS1
10831              21       32772100     32893735 C21orf62-AS1
10832              21       32772100     32893735 C21orf62-AS1
10833              21       32772100     32893735 C21orf62-AS1
10834              21       32772100     32893735 C21orf62-AS1
10835              21       32772100     32893735 C21orf62-AS1
10836              21       32772100     32893735 C21orf62-AS1
10837              21       32772100     32893735 C21orf62-AS1
10838              21       32772100     32893735 C21orf62-AS1
10839              21       32772100     32893735 C21orf62-AS1
10840              21       32772100     32893735 C21orf62-AS1
10841              21       32772100     32893735 C21orf62-AS1
10842              21       32772100     32893735 C21orf62-AS1
10843              21       32772100     32893735 C21orf62-AS1
10844              21       32772100     32893735 C21orf62-AS1
10845              21       32772100     32893735 C21orf62-AS1
10846              21       32772100     32893735 C21orf62-AS1
10847              21       32772100     32893735 C21orf62-AS1
10848              21       32772100     32893735 C21orf62-AS1
10849              21       32772100     32893735 C21orf62-AS1
10850              21       32772100     32893735 C21orf62-AS1
10851              21       32772100     32893735 C21orf62-AS1
10852              21       32772100     32893735 C21orf62-AS1
10853              21       28928144     28992956         LTN1
10854              21       28928144     28992956         LTN1
10855              21       28928144     28992956         LTN1
10856              21       28928144     28992956         LTN1
10857              21       28928144     28992956         LTN1
10858              21       28928144     28992956         LTN1
10859              21       28928144     28992956         LTN1
10860              21       28928144     28992956         LTN1
10861              21       28928144     28992956         LTN1
10862              21       28928144     28992956         LTN1
10863              21       28928144     28992956         LTN1
10864              21       28928144     28992956         LTN1
10865              21       28928144     28992956         LTN1
10866              21       28928144     28992956         LTN1
10867              21       28928144     28992956         LTN1
10868              21       28928144     28992956         LTN1
10869              21       28928144     28992956         LTN1
10870              21       28928144     28992956         LTN1
10871              21       28928144     28992956         LTN1
10872              21       28928144     28992956         LTN1
10873              21       28928144     28992956         LTN1
10874              21       28928144     28992956         LTN1
10875              21       28928144     28992956         LTN1
10876              21       28928144     28992956         LTN1
10877              21       28928144     28992956         LTN1
10878              21       28928144     28992956         LTN1
10879              21       28928144     28992956         LTN1
10880              21       28928144     28992956         LTN1
10881              21       28928144     28992956         LTN1
10882              21       28928144     28992956         LTN1
10883              21       28928144     28992956         LTN1
10884              21       28928144     28992956         LTN1
10885              21       28928144     28992956         LTN1
10886              21       28928144     28992956         LTN1
10887              21       28928144     28992956         LTN1
10888              21       28928144     28992956         LTN1
10889              21       28928144     28992956         LTN1
10890              21       28928144     28992956         LTN1
10891              21       28928144     28992956         LTN1
10892              21       28928144     28992956         LTN1
10893              21       28928144     28992956         LTN1
10894              21       28928144     28992956         LTN1
10895              21       28928144     28992956         LTN1
10896              21       28928144     28992956         LTN1
10897              21       28928144     28992956         LTN1
10898              21       28928144     28992956         LTN1
10899              21       28928144     28992956         LTN1
10900              21       28928144     28992956         LTN1
10901              21       28928144     28992956         LTN1
10902              21       28928144     28992956         LTN1
10903              21       28928144     28992956         LTN1
10904              21       28928144     28992956         LTN1
10905              21       28928144     28992956         LTN1
10906              21       28928144     28992956         LTN1
10907              21       28928144     28992956         LTN1
10908              21       28928144     28992956         LTN1
10909              21       28928144     28992956         LTN1
10910              21       28928144     28992956         LTN1
10911              21       28928144     28992956         LTN1
10912              21       28928144     28992956         LTN1
10913              21       28928144     28992956         LTN1
10914              21       28928144     28992956         LTN1
10915              21       28928144     28992956         LTN1
10916              21       28928144     28992956         LTN1
10917              21       28928144     28992956         LTN1
10918              21       28928144     28992956         LTN1
10919              21       28928144     28992956         LTN1
10920              21       28928144     28992956         LTN1
10921              21       28928144     28992956         LTN1
10922              21       28928144     28992956         LTN1
10923              21       28928144     28992956         LTN1
10924              21       28928144     28992956         LTN1
10925              21       28928144     28992956         LTN1
10926              21       28928144     28992956         LTN1
10927              21       28928144     28992956         LTN1
10928              21       28928144     28992956         LTN1
10929              21       28928144     28992956         LTN1
10930              21       28928144     28992956         LTN1
10931              21       28928144     28992956         LTN1
10932              21       28928144     28992956         LTN1
10933              21       28928144     28992956         LTN1
10934              21       28928144     28992956         LTN1
10935              21       28928144     28992956         LTN1
10936              21       28928144     28992956         LTN1
10937              21       28928144     28992956         LTN1
10938              21       28928144     28992956         LTN1
10939              21       28928144     28992956         LTN1
10940              21       28928144     28992956         LTN1
10941              21       28928144     28992956         LTN1
10942              21       28928144     28992956         LTN1
10943              21       28928144     28992956         LTN1
10944              21       28928144     28992956         LTN1
10945              21       28928144     28992956         LTN1
10946              21       28928144     28992956         LTN1
10947              21       28928144     28992956         LTN1
10948              21       28928144     28992956         LTN1
10949              21       28928144     28992956         LTN1
10950              21       28928144     28992956         LTN1
10951              21       28928144     28992956         LTN1
10952              21       28928144     28992956         LTN1
10953              21       28928144     28992956         LTN1
10954              21       28928144     28992956         LTN1
10955              21       28928144     28992956         LTN1
10956              21       28928144     28992956         LTN1
10957              21       28928144     28992956         LTN1
10958              21       28928144     28992956         LTN1
10959              21       28928144     28992956         LTN1
10960              21       28928144     28992956         LTN1
10961              21       28928144     28992956         LTN1
10962              21       28928144     28992956         LTN1
10963              21       28928144     28992956         LTN1
10964              21       28928144     28992956         LTN1
10965              21       28928144     28992956         LTN1
10966              21       28928144     28992956         LTN1
10967              21       28928144     28992956         LTN1
10968              21       28928144     28992956         LTN1
10969              21       28928144     28992956         LTN1
10970              21       28928144     28992956         LTN1
10971              21       28887280     28889272      HSPD1P7
10972              21       28887280     28889272      HSPD1P7
10973              21       28872191     28885371       N6AMT1
10974              21       28872191     28885371       N6AMT1
10975              21       28872191     28885371       N6AMT1
10976              21       28872191     28885371       N6AMT1
10977              21       28872191     28885371       N6AMT1
10978              21       28872191     28885371       N6AMT1
10979              21       28872191     28885371       N6AMT1
10980              21       28872191     28885371       N6AMT1
10981              21       28872191     28885371       N6AMT1
10982              21       28872191     28885371       N6AMT1
10983              21       28872191     28885371       N6AMT1
10984              21       28872191     28885371       N6AMT1
10985              21       28872191     28885371       N6AMT1
10986              21       28872191     28885371       N6AMT1
10987              21       28872191     28885371       N6AMT1
10988              21       28872191     28885371       N6AMT1
10989              21       28872191     28885371       N6AMT1
10990              21       28872191     28885371       N6AMT1
10991              21       35599732     35600022       EZH2P1
10992              21       16094415     16095372      VDAC2P1
10993              21       28048404     28137611    LINC01697
10994              21       28048404     28137611    LINC01697
10995              21       28048404     28137611    LINC01697
10996              21       28048404     28137611    LINC01697
10997              21       28048404     28137611    LINC01697
10998              21       28048404     28137611    LINC01697
10999              21       28048404     28137611    LINC01697
11000              21       28048404     28137611    LINC01697
11001              21       28048404     28137611    LINC01697
11002              21       28048404     28137611    LINC01697
11003              21       28048404     28137611    LINC01697
11004              21       28048404     28137611    LINC01697
11005              21       28048404     28137611    LINC01697
11006              21       28048404     28137611    LINC01697
11007              21       28048404     28137611    LINC01697
11008              21       28048404     28137611    LINC01697
11009              21       28048404     28137611    LINC01697
11010              21       28048404     28137611    LINC01697
11011              21       28048404     28137611    LINC01697
11012              21       28048404     28137611    LINC01697
11013              21       27954922     27985295             
11014              21       27954922     27985295             
11015              21       27954922     27985295             
11016              21       27358885     27448579             
11017              21       27358885     27448579             
11018              21       27358885     27448579             
11019              21       27358885     27448579             
11020              21       32578822     32612281             
11021              21       32578822     32612281             
11022              21       32578822     32612281             
11023              21       32578822     32612281             
11024              21       32578822     32612281             
11025              21       32578822     32612281             
11026              21       32578822     32612281             
11027              21       32578822     32612281             
11028              21       32578822     32612281             
11029              21       32578822     32612281             
11030              21       32578822     32612281             
11031              21       32578822     32612281             
11032              21       32578822     32612281             
11033              21       32578822     32612281             
11034              21       32578822     32612281             
11035              21       31840341     31840858       TPT1P1
11036              21       42102134     42108534   UMODL1-AS1
11037              21       42102134     42108534   UMODL1-AS1
11038              21       14027421     14144468             
11039              21       14027421     14144468             
11040              21       14027421     14144468             
11041              21       14027421     14144468             
11042              21       14027421     14144468             
11043              21       14027421     14144468             
11044              21       14027421     14144468             
11045              21       14027421     14144468             
11046              21       14027421     14144468             
11047              21       31706555     31706864      HMGN1P2
11048              21       13909574     13980437  ANKRD20A11P
11049              21       13909574     13980437  ANKRD20A11P
11050              21       13909574     13980437  ANKRD20A11P
11051              21       13909574     13980437  ANKRD20A11P
11052              21       13909574     13980437  ANKRD20A11P
11053              21       13909574     13980437  ANKRD20A11P
11054              21       13909574     13980437  ANKRD20A11P
11055              21       13909574     13980437  ANKRD20A11P
11056              21       13909574     13980437  ANKRD20A11P
11057              21       13909574     13980437  ANKRD20A11P
11058              21       13909574     13980437  ANKRD20A11P
11059              21       13909574     13980437  ANKRD20A11P
11060              21       13909574     13980437  ANKRD20A11P
11061              21       13909574     13980437  ANKRD20A11P
11062              21       13909574     13980437  ANKRD20A11P
11063              21       13909574     13980437  ANKRD20A11P
11064              21       13909574     13980437  ANKRD20A11P
11065              21       13909574     13980437  ANKRD20A11P
11066              21       13909574     13980437  ANKRD20A11P
11067              21       13909574     13980437  ANKRD20A11P
11068              21       13909574     13980437  ANKRD20A11P
11069              21       13909574     13980437  ANKRD20A11P
11070              21       13909574     13980437  ANKRD20A11P
11071              21       13909574     13980437  ANKRD20A11P
11072              21       13909574     13980437  ANKRD20A11P
11073              21       13909574     13980437  ANKRD20A11P
11074              21       13909574     13980437  ANKRD20A11P
11075              21       13909574     13980437  ANKRD20A11P
11076              21       13909574     13980437  ANKRD20A11P
11077              21       13909574     13980437  ANKRD20A11P
11078              21       13909574     13980437  ANKRD20A11P
11079              21       13909574     13980437  ANKRD20A11P
11080              21       13909574     13980437  ANKRD20A11P
11081              21       13909574     13980437  ANKRD20A11P
11082              21       13909574     13980437  ANKRD20A11P
11083              21       13909574     13980437  ANKRD20A11P
11084              21       13909574     13980437  ANKRD20A11P
11085              21       13909574     13980437  ANKRD20A11P
11086              21       13909574     13980437  ANKRD20A11P
11087              21       13909574     13980437  ANKRD20A11P
11088              21       13909574     13980437  ANKRD20A11P
11089              21       13909574     13980437  ANKRD20A11P
11090              21       13909574     13980437  ANKRD20A11P
11091              21       13909574     13980437  ANKRD20A11P
11092              21       13909574     13980437  ANKRD20A11P
11093              21       13909574     13980437  ANKRD20A11P
11094              21       13909574     13980437  ANKRD20A11P
11095              21       13909574     13980437  ANKRD20A11P
11096              21       13909574     13980437  ANKRD20A11P
11097              21       13909574     13980437  ANKRD20A11P
11098              21       13909574     13980437  ANKRD20A11P
11099              21       13909574     13980437  ANKRD20A11P
11100              21       13909574     13980437  ANKRD20A11P
11101              21       13909574     13980437  ANKRD20A11P
11102              21       13909574     13980437  ANKRD20A11P
11103              21       13909574     13980437  ANKRD20A11P
11104              21       13909574     13980437  ANKRD20A11P
11105              21       13909574     13980437  ANKRD20A11P
11106              21       13909574     13980437  ANKRD20A11P
11107              21       31559245     31560487             
11108              21       31559245     31560487             
11109              21       30829039     30829759     KRTAP7-1
11110              21       30642864     30643136    KRTAP20-3
11111              21       37365477     37365932             
11112              21       37365790     37517450       DYRK1A
11113              21       37365790     37517450       DYRK1A
11114              21       37365790     37517450       DYRK1A
11115              21       37365790     37517450       DYRK1A
11116              21       37365790     37517450       DYRK1A
11117              21       37365790     37517450       DYRK1A
11118              21       37365790     37517450       DYRK1A
11119              21       37365790     37517450       DYRK1A
11120              21       37365790     37517450       DYRK1A
11121              21       37365790     37517450       DYRK1A
11122              21       37365790     37517450       DYRK1A
11123              21       37365790     37517450       DYRK1A
11124              21       37365790     37517450       DYRK1A
11125              21       37365790     37517450       DYRK1A
11126              21       37365790     37517450       DYRK1A
11127              21       37365790     37517450       DYRK1A
11128              21       37365790     37517450       DYRK1A
11129              21       37365790     37517450       DYRK1A
11130              21       37365790     37517450       DYRK1A
11131              21       37365790     37517450       DYRK1A
11132              21       37365790     37517450       DYRK1A
11133              21       37365790     37517450       DYRK1A
11134              21       37365790     37517450       DYRK1A
11135              21       37365790     37517450       DYRK1A
11136              21       37365790     37517450       DYRK1A
11137              21       37365790     37517450       DYRK1A
11138              21       37365790     37517450       DYRK1A
11139              21       37365790     37517450       DYRK1A
11140              21       37365790     37517450       DYRK1A
11141              21       37365790     37517450       DYRK1A
11142              21       37365790     37517450       DYRK1A
11143              21       37365790     37517450       DYRK1A
11144              21       37365790     37517450       DYRK1A
11145              21       37365790     37517450       DYRK1A
11146              21       37365790     37517450       DYRK1A
11147              21       37365790     37517450       DYRK1A
11148              21       37365790     37517450       DYRK1A
11149              21       37365790     37517450       DYRK1A
11150              21       37365790     37517450       DYRK1A
11151              21       37365790     37517450       DYRK1A
11152              21       37365790     37517450       DYRK1A
11153              21       37365790     37517450       DYRK1A
11154              21       37365790     37517450       DYRK1A
11155              21       37365790     37517450       DYRK1A
11156              21       37365790     37517450       DYRK1A
11157              21       37365790     37517450       DYRK1A
11158              21       37365790     37517450       DYRK1A
11159              21       37365790     37517450       DYRK1A
11160              21       37365790     37517450       DYRK1A
11161              21       37365790     37517450       DYRK1A
11162              21       37365790     37517450       DYRK1A
11163              21       37365790     37517450       DYRK1A
11164              21       37365790     37517450       DYRK1A
11165              21       37365790     37517450       DYRK1A
11166              21       37365790     37517450       DYRK1A
11167              21       37365790     37517450       DYRK1A
11168              21       37365790     37517450       DYRK1A
11169              21       37365790     37517450       DYRK1A
11170              21       37365790     37517450       DYRK1A
11171              21       37365790     37517450       DYRK1A
11172              21       37365790     37517450       DYRK1A
11173              21       37365790     37517450       DYRK1A
11174              21       37365790     37517450       DYRK1A
11175              21       37365790     37517450       DYRK1A
11176              21       30263380     30263881       RPL8P2
11177              21       46653558     46654022       DSTNP1
11178              21       46635167     46665124        PRMT2
11179              21       46635167     46665124        PRMT2
11180              21       46635167     46665124        PRMT2
11181              21       46635167     46665124        PRMT2
11182              21       46635167     46665124        PRMT2
11183              21       46635167     46665124        PRMT2
11184              21       46635167     46665124        PRMT2
11185              21       46635167     46665124        PRMT2
11186              21       46635167     46665124        PRMT2
11187              21       46635167     46665124        PRMT2
11188              21       46635167     46665124        PRMT2
11189              21       46635167     46665124        PRMT2
11190              21       46635167     46665124        PRMT2
11191              21       46635167     46665124        PRMT2
11192              21       46635167     46665124        PRMT2
11193              21       46635167     46665124        PRMT2
11194              21       46635167     46665124        PRMT2
11195              21       46635167     46665124        PRMT2
11196              21       46635167     46665124        PRMT2
11197              21       46635167     46665124        PRMT2
11198              21       46635167     46665124        PRMT2
11199              21       46635167     46665124        PRMT2
11200              21       46635167     46665124        PRMT2
11201              21       46635167     46665124        PRMT2
11202              21       46635167     46665124        PRMT2
11203              21       46635167     46665124        PRMT2
11204              21       46635167     46665124        PRMT2
11205              21       46635167     46665124        PRMT2
11206              21       46635167     46665124        PRMT2
11207              21       46635167     46665124        PRMT2
11208              21       46635167     46665124        PRMT2
11209              21       46635167     46665124        PRMT2
11210              21       46635167     46665124        PRMT2
11211              21       46635167     46665124        PRMT2
11212              21       46635167     46665124        PRMT2
11213              21       46635167     46665124        PRMT2
11214              21       46635167     46665124        PRMT2
11215              21       46635167     46665124        PRMT2
11216              21       46635167     46665124        PRMT2
11217              21       46635167     46665124        PRMT2
11218              21       46635167     46665124        PRMT2
11219              21       46635167     46665124        PRMT2
11220              21       46635167     46665124        PRMT2
11221              21       46635167     46665124        PRMT2
11222              21       46635167     46665124        PRMT2
11223              21       46635167     46665124        PRMT2
11224              21       46635167     46665124        PRMT2
11225              21       46635167     46665124        PRMT2
11226              21       46635167     46665124        PRMT2
11227              21       46635167     46665124        PRMT2
11228              21       46635167     46665124        PRMT2
11229              21       46635167     46665124        PRMT2
11230              21       46635167     46665124        PRMT2
11231              21       46635167     46665124        PRMT2
11232              21       46635167     46665124        PRMT2
11233              21       46635167     46665124        PRMT2
11234              21       46635167     46665124        PRMT2
11235              21       46635167     46665124        PRMT2
11236              21       46635167     46665124        PRMT2
11237              21       46635167     46665124        PRMT2
11238              21       46635167     46665124        PRMT2
11239              21       46635167     46665124        PRMT2
11240              21       46635167     46665124        PRMT2
11241              21       46635167     46665124        PRMT2
11242              21       46635167     46665124        PRMT2
11243              21       46635167     46665124        PRMT2
11244              21       46635167     46665124        PRMT2
11245              21       46635167     46665124        PRMT2
11246              21       46635167     46665124        PRMT2
11247              21       46635167     46665124        PRMT2
11248              21       46635167     46665124        PRMT2
11249              21       46635167     46665124        PRMT2
11250              21       46635167     46665124        PRMT2
11251              21       46635167     46665124        PRMT2
11252              21       46635167     46665124        PRMT2
11253              21       46635167     46665124        PRMT2
11254              21       46635167     46665124        PRMT2
11255              21       46635167     46665124        PRMT2
11256              21       46635167     46665124        PRMT2
11257              21       46635167     46665124        PRMT2
11258              21       46635167     46665124        PRMT2
11259              21       46635167     46665124        PRMT2
11260              21       46635167     46665124        PRMT2
11261              21       46635167     46665124        PRMT2
11262              21       46635167     46665124        PRMT2
11263              21       46635167     46665124        PRMT2
11264              21       46635167     46665124        PRMT2
11265              21       46635167     46665124        PRMT2
11266              21       46635167     46665124        PRMT2
11267              21       46635167     46665124        PRMT2
11268              21       46635167     46665124        PRMT2
11269              21       46635167     46665124        PRMT2
11270              21       46635167     46665124        PRMT2
11271              21       46635167     46665124        PRMT2
11272              21       46635167     46665124        PRMT2
11273              21       46635167     46665124        PRMT2
11274              21       46635167     46665124        PRMT2
11275              21       46635167     46665124        PRMT2
11276              21       46635167     46665124        PRMT2
11277              21       46635167     46665124        PRMT2
11278              21       46635167     46665124        PRMT2
11279              21       46635167     46665124        PRMT2
11280              21       46635167     46665124        PRMT2
11281              21       46635167     46665124        PRMT2
11282              21       46635167     46665124        PRMT2
11283              21       46635167     46665124        PRMT2
11284              21       46635167     46665124        PRMT2
11285              21       46635167     46665124        PRMT2
11286              21       46635167     46665124        PRMT2
11287              21       30281309     30282958    KRTAP24-1
11288              21       30289145     30289514    KRTAP25-1
11289              21       30319124     30320316    KRTAP26-1
11290              21       30337013     30337694    KRTAP27-1
11291              21       30348399     30348609    KRTAP23-1
11292              21       30356515     30356885   KRTAP13-6P
11293              21       30371391     30372257    KRTAP13-2
11294              21       30396074     30396822    KRTAP13-1
11295              21       30425265     30425968    KRTAP13-3
11296              21       30430230     30431026    KRTAP13-4
11297              21       28013363     28023233    LINC00314
11298              21       28013363     28023233    LINC00314
11299              21       15744004     15745080      RBPMSLP
11300              21       15744004     15745080      RBPMSLP
11301              21       14485228     14583402       SAMSN1
11302              21       14485228     14583402       SAMSN1
11303              21       14485228     14583402       SAMSN1
11304              21       14485228     14583402       SAMSN1
11305              21       14485228     14583402       SAMSN1
11306              21       14485228     14583402       SAMSN1
11307              21       14485228     14583402       SAMSN1
11308              21       14485228     14583402       SAMSN1
11309              21       14485228     14583402       SAMSN1
11310              21       14485228     14583402       SAMSN1
11311              21       14485228     14583402       SAMSN1
11312              21       14485228     14583402       SAMSN1
11313              21       14485228     14583402       SAMSN1
11314              21       14485228     14583402       SAMSN1
11315              21       14485228     14583402       SAMSN1
11316              21       14485228     14583402       SAMSN1
11317              21       14485228     14583402       SAMSN1
11318              21       14485228     14583402       SAMSN1
11319              21       14485228     14583402       SAMSN1
11320              21       14485228     14583402       SAMSN1
11321              21       14485228     14583402       SAMSN1
11322              21       14485228     14583402       SAMSN1
11323              21       14485228     14583402       SAMSN1
11324              21       14485228     14583402       SAMSN1
11325              21       14485228     14583402       SAMSN1
11326              21       14485228     14583402       SAMSN1
11327              21       14485228     14583402       SAMSN1
11328              21       14485228     14583402       SAMSN1
11329              21       14485228     14583402       SAMSN1
11330              21       14485228     14583402       SAMSN1
11331              21       14485228     14583402       SAMSN1
11332              21       14485228     14583402       SAMSN1
11333              21       14485228     14583402       SAMSN1
11334              21       14485228     14583402       SAMSN1
11335              21       14485228     14583402       SAMSN1
11336              21       14485228     14583402       SAMSN1
11337              21       32080316     32197813    LINC00159
11338              21       32080316     32197813    LINC00159
11339              21       32080316     32197813    LINC00159
11340              21       32080316     32197813    LINC00159
11341              21       32080316     32197813    LINC00159
11342              21       32080316     32197813    LINC00159
11343              21       32080316     32197813    LINC00159
11344              21        5073458      5087867             
11345              21        5073458      5087867             
11346              21       38323635     38333421    LINC01423
11347              21       38323635     38333421    LINC01423
11348              21       38323635     38333421    LINC01423
11349              21       38323635     38333421    LINC01423
11350              21       38323635     38333421    LINC01423
11351              21       38323635     38333421    LINC01423
11352              21       38323635     38333421    LINC01423
11353              21       38323635     38333421    LINC01423
11354              21       38323635     38333421    LINC01423
11355              21       31627127     31628600     FBXW11P1
11356              21       43322417     43332039    LINC00322
11357              21       43322417     43332039    LINC00322
11358              21       43322417     43332039    LINC00322
11359              21       38238227     38238664    SPATA20P1
11360              21       30762682     30762882             
11361              21       30491464     30491985    KRTAP19-3
11362              21       30440275     30440945    KRTAP15-1
11363              21       10413477     10516431        BAGE2
11364              21       10413477     10516431        BAGE2
11365              21       10413477     10516431        BAGE2
11366              21       10413477     10516431        BAGE2
11367              21       10413477     10516431        BAGE2
11368              21       10413477     10516431        BAGE2
11369              21       10413477     10516431        BAGE2
11370              21       10413477     10516431        BAGE2
11371              21       10413477     10516431        BAGE2
11372              21       10413477     10516431        BAGE2
11373              21       10413477     10516431        BAGE2
11374              21       10413477     10516431        BAGE2
11375              21       10413477     10516431        BAGE2
11376              21       10413477     10516431        BAGE2
11377              21       10413477     10516431        BAGE2
11378              21       10413477     10516431        BAGE2
11379              21       10413477     10516431        BAGE2
11380              21       10413477     10516431        BAGE2
11381              21       10413477     10516431        BAGE2
11382              21       10413477     10516431        BAGE2
11383              21       10413477     10516431        BAGE2
11384              21       10413477     10516431        BAGE2
11385              21       10413477     10516431        BAGE2
11386              21       10413477     10516431        BAGE2
11387              21       10413477     10516431        BAGE2
11388              21       10413477     10516431        BAGE2
11389              21       10413477     10516431        BAGE2
11390              21       10413477     10516431        BAGE2
11391              21       10482738     10605716             
11392              21       10482738     10605716             
11393              21       10482738     10605716             
11394              21       10482738     10605716             
11395              21       10482738     10605716             
11396              21       10482738     10605716             
11397              21       10482738     10605716             
11398              21       10482738     10605716             
11399              21       10482738     10605716             
11400              21       10482738     10605716             
11401              21       10482738     10605716             
11402              21       10482738     10605716             
11403              21       10482738     10605716             
11404              21       10482738     10605716             
11405              21       10482738     10605716             
11406              21       10482738     10605716             
11407              21       10482738     10605716             
11408              21       10482738     10605716             
11409              21       10482738     10605716             
11410              21       10482738     10605716             
11411              21       10482738     10605716             
11412              21       10482738     10605716             
11413              21       10482738     10605716             
11414              21       10482738     10605716             
11415              21       10482738     10605716             
11416              21       10482738     10605716             
11417              21       10482738     10605716             
11418              21       10482738     10605716             
11419              21       10482738     10605716             
11420              21       10482738     10605716             
11421              21       10482738     10605716             
11422              21       10482738     10605716             
11423              21       18477358     18486599             
11424              21       18477358     18486599             
11425              21       15928296     16627397     MIR99AHG
11426              21       15928296     16627397     MIR99AHG
11427              21       15928296     16627397     MIR99AHG
11428              21       15928296     16627397     MIR99AHG
11429              21       15928296     16627397     MIR99AHG
11430              21       15928296     16627397     MIR99AHG
11431              21       15928296     16627397     MIR99AHG
11432              21       15928296     16627397     MIR99AHG
11433              21       15928296     16627397     MIR99AHG
11434              21       15928296     16627397     MIR99AHG
11435              21       15928296     16627397     MIR99AHG
11436              21       15928296     16627397     MIR99AHG
11437              21       15928296     16627397     MIR99AHG
11438              21       15928296     16627397     MIR99AHG
11439              21       15928296     16627397     MIR99AHG
11440              21       15928296     16627397     MIR99AHG
11441              21       15928296     16627397     MIR99AHG
11442              21       15928296     16627397     MIR99AHG
11443              21       15928296     16627397     MIR99AHG
11444              21       15928296     16627397     MIR99AHG
11445              21       15928296     16627397     MIR99AHG
11446              21       15928296     16627397     MIR99AHG
11447              21       15928296     16627397     MIR99AHG
11448              21       15928296     16627397     MIR99AHG
11449              21       15928296     16627397     MIR99AHG
11450              21       15928296     16627397     MIR99AHG
11451              21       15928296     16627397     MIR99AHG
11452              21       15928296     16627397     MIR99AHG
11453              21       15928296     16627397     MIR99AHG
11454              21       15928296     16627397     MIR99AHG
11455              21       15928296     16627397     MIR99AHG
11456              21       15928296     16627397     MIR99AHG
11457              21       15928296     16627397     MIR99AHG
11458              21       15928296     16627397     MIR99AHG
11459              21       15928296     16627397     MIR99AHG
11460              21       15928296     16627397     MIR99AHG
11461              21       15928296     16627397     MIR99AHG
11462              21       15928296     16627397     MIR99AHG
11463              21       15928296     16627397     MIR99AHG
11464              21       15928296     16627397     MIR99AHG
11465              21       15928296     16627397     MIR99AHG
11466              21       15928296     16627397     MIR99AHG
11467              21       15928296     16627397     MIR99AHG
11468              21       15928296     16627397     MIR99AHG
11469              21       15928296     16627397     MIR99AHG
11470              21       15928296     16627397     MIR99AHG
11471              21       15928296     16627397     MIR99AHG
11472              21       15928296     16627397     MIR99AHG
11473              21       15928296     16627397     MIR99AHG
11474              21       15928296     16627397     MIR99AHG
11475              21       15928296     16627397     MIR99AHG
11476              21       15928296     16627397     MIR99AHG
11477              21       15928296     16627397     MIR99AHG
11478              21       15928296     16627397     MIR99AHG
11479              21       15928296     16627397     MIR99AHG
11480              21       15928296     16627397     MIR99AHG
11481              21       15928296     16627397     MIR99AHG
11482              21       15928296     16627397     MIR99AHG
11483              21       15928296     16627397     MIR99AHG
11484              21       15928296     16627397     MIR99AHG
11485              21       15928296     16627397     MIR99AHG
11486              21       15928296     16627397     MIR99AHG
11487              21       15928296     16627397     MIR99AHG
11488              21       15928296     16627397     MIR99AHG
11489              21       15928296     16627397     MIR99AHG
11490              21       15928296     16627397     MIR99AHG
11491              21       15928296     16627397     MIR99AHG
11492              21       15928296     16627397     MIR99AHG
11493              21       15928296     16627397     MIR99AHG
11494              21       15928296     16627397     MIR99AHG
11495              21       15928296     16627397     MIR99AHG
11496              21       15928296     16627397     MIR99AHG
11497              21       15928296     16627397     MIR99AHG
11498              21       15928296     16627397     MIR99AHG
11499              21       15928296     16627397     MIR99AHG
11500              21       15928296     16627397     MIR99AHG
11501              21       15928296     16627397     MIR99AHG
11502              21       15928296     16627397     MIR99AHG
11503              21       15928296     16627397     MIR99AHG
11504              21       15928296     16627397     MIR99AHG
11505              21       15928296     16627397     MIR99AHG
11506              21       15928296     16627397     MIR99AHG
11507              21       15928296     16627397     MIR99AHG
11508              21       15928296     16627397     MIR99AHG
11509              21       15928296     16627397     MIR99AHG
11510              21       15928296     16627397     MIR99AHG
11511              21       15928296     16627397     MIR99AHG
11512              21       15928296     16627397     MIR99AHG
11513              21       15928296     16627397     MIR99AHG
11514              21       15928296     16627397     MIR99AHG
11515              21       15928296     16627397     MIR99AHG
11516              21       15928296     16627397     MIR99AHG
11517              21       15928296     16627397     MIR99AHG
11518              21       15928296     16627397     MIR99AHG
11519              21       15928296     16627397     MIR99AHG
11520              21       15928296     16627397     MIR99AHG
11521              21       15928296     16627397     MIR99AHG
11522              21       15928296     16627397     MIR99AHG
11523              21       15928296     16627397     MIR99AHG
11524              21       15928296     16627397     MIR99AHG
11525              21       15928296     16627397     MIR99AHG
11526              21       32624416     32625096             
11527              21       32624416     32625096             
11528              21       27367014     27367947     EIF4A1P1
11529              21       39184469     39184899             
11530              21       39315707     39323218    BRWD1-AS1
11531              21       39315707     39323218    BRWD1-AS1
11532              21       39315707     39323218    BRWD1-AS1
11533              21       39171130     39172106      PCBP2P1
11534              21       26170871     26217381             
11535              21       26170871     26217381             
11536              21       26170871     26217381             
11537              21       26170871     26217381             
11538              21       26170871     26217381             
11539              21       26170871     26217381             
11540              21       26170871     26217381             
11541              21       25880550     26171128          APP
11542              21       25880550     26171128          APP
11543              21       25880550     26171128          APP
11544              21       25880550     26171128          APP
11545              21       25880550     26171128          APP
11546              21       25880550     26171128          APP
11547              21       25880550     26171128          APP
11548              21       25880550     26171128          APP
11549              21       25880550     26171128          APP
11550              21       25880550     26171128          APP
11551              21       25880550     26171128          APP
11552              21       25880550     26171128          APP
11553              21       25880550     26171128          APP
11554              21       25880550     26171128          APP
11555              21       25880550     26171128          APP
11556              21       25880550     26171128          APP
11557              21       25880550     26171128          APP
11558              21       25880550     26171128          APP
11559              21       25880550     26171128          APP
11560              21       25880550     26171128          APP
11561              21       25880550     26171128          APP
11562              21       25880550     26171128          APP
11563              21       25880550     26171128          APP
11564              21       25880550     26171128          APP
11565              21       25880550     26171128          APP
11566              21       25880550     26171128          APP
11567              21       25880550     26171128          APP
11568              21       25880550     26171128          APP
11569              21       25880550     26171128          APP
11570              21       25880550     26171128          APP
11571              21       25880550     26171128          APP
11572              21       25880550     26171128          APP
11573              21       25880550     26171128          APP
11574              21       25880550     26171128          APP
11575              21       25880550     26171128          APP
11576              21       25880550     26171128          APP
11577              21       25880550     26171128          APP
11578              21       25880550     26171128          APP
11579              21       25880550     26171128          APP
11580              21       25880550     26171128          APP
11581              21       25880550     26171128          APP
11582              21       25880550     26171128          APP
11583              21       25880550     26171128          APP
11584              21       25880550     26171128          APP
11585              21       25880550     26171128          APP
11586              21       25880550     26171128          APP
11587              21       25880550     26171128          APP
11588              21       25880550     26171128          APP
11589              21       25880550     26171128          APP
11590              21       25880550     26171128          APP
11591              21       25880550     26171128          APP
11592              21       25880550     26171128          APP
11593              21       25880550     26171128          APP
11594              21       25880550     26171128          APP
11595              21       25880550     26171128          APP
11596              21       25880550     26171128          APP
11597              21       25880550     26171128          APP
11598              21       25880550     26171128          APP
11599              21       25880550     26171128          APP
11600              21       25880550     26171128          APP
11601              21       25880550     26171128          APP
11602              21       25880550     26171128          APP
11603              21       25880550     26171128          APP
11604              21       25880550     26171128          APP
11605              21       25880550     26171128          APP
11606              21       25880550     26171128          APP
11607              21       25880550     26171128          APP
11608              21       25880550     26171128          APP
11609              21       25880550     26171128          APP
11610              21       25880550     26171128          APP
11611              21       25880550     26171128          APP
11612              21       25880550     26171128          APP
11613              21       25880550     26171128          APP
11614              21       25880550     26171128          APP
11615              21       25880550     26171128          APP
11616              21       25880550     26171128          APP
11617              21       25880550     26171128          APP
11618              21       25880550     26171128          APP
11619              21       25880550     26171128          APP
11620              21       25880550     26171128          APP
11621              21       25880550     26171128          APP
11622              21       25880550     26171128          APP
11623              21       25880550     26171128          APP
11624              21       25880550     26171128          APP
11625              21       25880550     26171128          APP
11626              21       25880550     26171128          APP
11627              21       25880550     26171128          APP
11628              21       25880550     26171128          APP
11629              21       25880550     26171128          APP
11630              21       25880550     26171128          APP
11631              21       25880550     26171128          APP
11632              21       25880550     26171128          APP
11633              21       25880550     26171128          APP
11634              21       25880550     26171128          APP
11635              21       25880550     26171128          APP
11636              21       25880550     26171128          APP
11637              21       25880550     26171128          APP
11638              21       25880550     26171128          APP
11639              21       25880550     26171128          APP
11640              21       25880550     26171128          APP
11641              21       25880550     26171128          APP
11642              21       25880550     26171128          APP
11643              21       25880550     26171128          APP
11644              21       25880550     26171128          APP
11645              21       25880550     26171128          APP
11646              21       25880550     26171128          APP
11647              21       25880550     26171128          APP
11648              21       25880550     26171128          APP
11649              21       25880550     26171128          APP
11650              21       25880550     26171128          APP
11651              21       25880550     26171128          APP
11652              21       25880550     26171128          APP
11653              21       25880550     26171128          APP
11654              21       25880550     26171128          APP
11655              21       25880550     26171128          APP
11656              21       25880550     26171128          APP
11657              21       25880550     26171128          APP
11658              21       25880550     26171128          APP
11659              21       25880550     26171128          APP
11660              21       25880550     26171128          APP
11661              21       25880550     26171128          APP
11662              21       25880550     26171128          APP
11663              21       25880550     26171128          APP
11664              21       25880550     26171128          APP
11665              21       25880550     26171128          APP
11666              21       25880550     26171128          APP
11667              21       25880550     26171128          APP
11668              21       25880550     26171128          APP
11669              21       25880550     26171128          APP
11670              21       25880550     26171128          APP
11671              21       25880550     26171128          APP
11672              21       25880550     26171128          APP
11673              21       25880550     26171128          APP
11674              21       25880550     26171128          APP
11675              21       25880550     26171128          APP
11676              21       25880550     26171128          APP
11677              21       25880550     26171128          APP
11678              21       25880550     26171128          APP
11679              21       25880550     26171128          APP
11680              21       25880550     26171128          APP
11681              21       25880550     26171128          APP
11682              21       25880550     26171128          APP
11683              21       25880550     26171128          APP
11684              21       25880550     26171128          APP
11685              21       25880550     26171128          APP
11686              21       25880550     26171128          APP
11687              21       25880550     26171128          APP
11688              21       25880550     26171128          APP
11689              21       25880550     26171128          APP
11690              21       25880550     26171128          APP
11691              21       25880550     26171128          APP
11692              21       25880550     26171128          APP
11693              21       25880550     26171128          APP
11694              21       25880550     26171128          APP
11695              21       25880550     26171128          APP
11696              21       25880550     26171128          APP
11697              21       25880550     26171128          APP
11698              21       25880550     26171128          APP
11699              21       25880550     26171128          APP
11700              21       25880550     26171128          APP
11701              21       25880550     26171128          APP
11702              21       25880550     26171128          APP
11703              21       25880550     26171128          APP
11704              21       25880550     26171128          APP
11705              21       25880550     26171128          APP
11706              21       25880550     26171128          APP
11707              21       25880550     26171128          APP
11708              21       25880550     26171128          APP
11709              21       25880550     26171128          APP
11710              21       25880550     26171128          APP
11711              21       25880550     26171128          APP
11712              21       25880550     26171128          APP
11713              21       25880550     26171128          APP
11714              21       25880550     26171128          APP
11715              21       28116094     28228667    LINC01695
11716              21       28116094     28228667    LINC01695
11717              21       28116094     28228667    LINC01695
11718              21       28116094     28228667    LINC01695
11719              21       28116094     28228667    LINC01695
11720              21       28116094     28228667    LINC01695
11721              21       28116094     28228667    LINC01695
11722              21       28116094     28228667    LINC01695
11723              21       28116094     28228667    LINC01695
11724              21       28116094     28228667    LINC01695
11725              21       28116094     28228667    LINC01695
11726              21       28116094     28228667    LINC01695
11727              21       28116094     28228667    LINC01695
11728              21       45593654     45603056    LINC01694
11729              21       45593654     45603056    LINC01694
11730              21       45593654     45603056    LINC01694
11731              21       45593654     45603056    LINC01694
11732              21       45593654     45603056    LINC01694
11733              21       45338590     45341990    LINC00316
11734              21       45338590     45341990    LINC00316
11735              21       45336707     45338665             
11736              21       45336707     45338665             
11737              21       45300245     45305257    LINC00315
11738              21       45300245     45305257    LINC00315
11739              21       45300245     45305257    LINC00315
11740              21       45293285     45297354    LINC00205
11741              21       45293285     45297354    LINC00205
11742              21       32311018     32393026         URB1
11743              21       32311018     32393026         URB1
11744              21       32311018     32393026         URB1
11745              21       32311018     32393026         URB1
11746              21       32311018     32393026         URB1
11747              21       32311018     32393026         URB1
11748              21       32311018     32393026         URB1
11749              21       32311018     32393026         URB1
11750              21       32311018     32393026         URB1
11751              21       32311018     32393026         URB1
11752              21       32311018     32393026         URB1
11753              21       32311018     32393026         URB1
11754              21       32311018     32393026         URB1
11755              21       32311018     32393026         URB1
11756              21       32311018     32393026         URB1
11757              21       32311018     32393026         URB1
11758              21       32311018     32393026         URB1
11759              21       32311018     32393026         URB1
11760              21       32311018     32393026         URB1
11761              21       32311018     32393026         URB1
11762              21       32311018     32393026         URB1
11763              21       32311018     32393026         URB1
11764              21       32311018     32393026         URB1
11765              21       32311018     32393026         URB1
11766              21       32311018     32393026         URB1
11767              21       32311018     32393026         URB1
11768              21       32311018     32393026         URB1
11769              21       32311018     32393026         URB1
11770              21       32311018     32393026         URB1
11771              21       32311018     32393026         URB1
11772              21       32311018     32393026         URB1
11773              21       32311018     32393026         URB1
11774              21       32311018     32393026         URB1
11775              21       32311018     32393026         URB1
11776              21       32311018     32393026         URB1
11777              21       32311018     32393026         URB1
11778              21       32311018     32393026         URB1
11779              21       32311018     32393026         URB1
11780              21       32311018     32393026         URB1
11781              21       32311018     32393026         URB1
11782              21       32311018     32393026         URB1
11783              21       32311018     32393026         URB1
11784              21       32311018     32393026         URB1
11785              21       27492118     27492261      NCSTNP1
11786              21       26889376     26939742             
11787              21       26889376     26939742             
11788              21       26889376     26939742             
11789              21       26349780     26350634             
11790              21       26349780     26350634             
11791              21       39235386     39236020   METTL21AP1
11792              21       13609858     13641585        POTED
11793              21       13609858     13641585        POTED
11794              21       13609858     13641585        POTED
11795              21       13609858     13641585        POTED
11796              21       13609858     13641585        POTED
11797              21       13609858     13641585        POTED
11798              21       13609858     13641585        POTED
11799              21       13609858     13641585        POTED
11800              21       13609858     13641585        POTED
11801              21       13609858     13641585        POTED
11802              21       13609858     13641585        POTED
11803              21       13609858     13641585        POTED
11804              21       13609858     13641585        POTED
11805              21       13609858     13641585        POTED
11806              21       13609858     13641585        POTED
11807              21       13609858     13641585        POTED
11808              21       13609858     13641585        POTED
11809              21       13609858     13641585        POTED
11810              21       13609858     13641585        POTED
11811              21       31666728     31667247             
11812              21       31659622     31668931         SOD1
11813              21       31659622     31668931         SOD1
11814              21       31659622     31668931         SOD1
11815              21       31659622     31668931         SOD1
11816              21       31659622     31668931         SOD1
11817              21       31659622     31668931         SOD1
11818              21       31659622     31668931         SOD1
11819              21       31659622     31668931         SOD1
11820              21       31659622     31668931         SOD1
11821              21       31659622     31668931         SOD1
11822              21       31659622     31668931         SOD1
11823              21       31659622     31668931         SOD1
11824              21       31659622     31668931         SOD1
11825              21       31659622     31668931         SOD1
11826              21       31659622     31668931         SOD1
11827              21       31659622     31668931         SOD1
11828              21       31659622     31668931         SOD1
11829              21       31659622     31668931         SOD1
11830              21       31659622     31668931         SOD1
11831              21       31659622     31668931         SOD1
11832              21       43446601     43453893    LINC00319
11833              21       43446601     43453893    LINC00319
11834              21       43446601     43453893    LINC00319
11835              21       43446601     43453893    LINC00319
11836              21       43446601     43453893    LINC00319
11837              21       43446601     43453893    LINC00319
11838              21       43446601     43453893    LINC00319
11839              21       43465309     43467298             
11840              21       43465309     43467298             
11841              21       43462094     43479534    LINC00313
11842              21       43462094     43479534    LINC00313
11843              21       43462094     43479534    LINC00313
11844              21       43462094     43479534    LINC00313
11845              21       43462094     43479534    LINC00313
11846              21       43462094     43479534    LINC00313
11847              21       43462094     43479534    LINC00313
11848              21       43462094     43479534    LINC00313
11849              21       43462094     43479534    LINC00313
11850              21       43462094     43479534    LINC00313
11851              21       43462094     43479534    LINC00313
11852              21       43462094     43479534    LINC00313
11853              21       43462094     43479534    LINC00313
11854              21       43462094     43479534    LINC00313
11855              21       43462094     43479534    LINC00313
11856              21       43462094     43479534    LINC00313
11857              21       43462094     43479534    LINC00313
11858              21       43462094     43479534    LINC00313
11859              21       43462094     43479534    LINC00313
11860              21       43462094     43479534    LINC00313
11861              21       43462094     43479534    LINC00313
11862              21       43462094     43479534    LINC00313
11863              21       13654073     13654356             
11864              21       13665868     13667546     GRAMD4P1
11865              21       13665868     13667546     GRAMD4P1
11866              21       13676022     13677116      CXADRP1
11867              21       13679300     13681138             
11868              21       13704853     13705518             
11869              21       13762338     13764332      FEM1AP1
11870              21       13769932     13771740             
11871              21       13769932     13771740             
11872              21       13776086     13777266      TERF1P1
11873              21       41986831     42010387       ZBTB21
11874              21       41986831     42010387       ZBTB21
11875              21       41986831     42010387       ZBTB21
11876              21       41986831     42010387       ZBTB21
11877              21       41986831     42010387       ZBTB21
11878              21       41986831     42010387       ZBTB21
11879              21       41986831     42010387       ZBTB21
11880              21       41986831     42010387       ZBTB21
11881              21       41986831     42010387       ZBTB21
11882              21       41986831     42010387       ZBTB21
11883              21       41986831     42010387       ZBTB21
11884              21       41986831     42010387       ZBTB21
11885              21       41986831     42010387       ZBTB21
11886              21       41986831     42010387       ZBTB21
11887              21       41986831     42010387       ZBTB21
11888              21       41986831     42010387       ZBTB21
11889              21       41986831     42010387       ZBTB21
11890              21       41986831     42010387       ZBTB21
11891              21       41986831     42010387       ZBTB21
11892              21       41986831     42010387       ZBTB21
11893              21       41986831     42010387       ZBTB21
11894              21       41986831     42010387       ZBTB21
11895              21       41986831     42010387       ZBTB21
11896              21       41986831     42010387       ZBTB21
11897              21       41986831     42010387       ZBTB21
11898              21       41986831     42010387       ZBTB21
11899              21       42009194     42024924   ZNF295-AS1
11900              21       42009194     42024924   ZNF295-AS1
11901              21       42009194     42024924   ZNF295-AS1
11902              21       42009194     42024924   ZNF295-AS1
11903              21       42009194     42024924   ZNF295-AS1
11904              21       42009194     42024924   ZNF295-AS1
11905              21       13792635     13793141     FAM207CP
11906              21       13824406     13825635     GXYLT1P2
11907              21       13826696     13827627       CNN2P7
11908              21       13839118     13839409     ZNF114P1
11909              21       13843133     13848364     CYP4F29P
11910              21       13843133     13848364     CYP4F29P
11911              21       13843133     13848364     CYP4F29P
11912              21       13843133     13848364     CYP4F29P
11913              21       13843133     13848364     CYP4F29P
11914              21       13843133     13848364     CYP4F29P
11915              21       13843133     13848364     CYP4F29P
11916              21       13843133     13848364     CYP4F29P
11917              21       13843133     13848364     CYP4F29P
11918              21       13843133     13848364     CYP4F29P
11919              21       13843133     13848364     CYP4F29P
11920              21       13843133     13848364     CYP4F29P
11921              21       13905960     13906488     SNX18P13
11922              21       38380027     38661780          ERG
11923              21       38380027     38661780          ERG
11924              21       38380027     38661780          ERG
11925              21       38380027     38661780          ERG
11926              21       38380027     38661780          ERG
11927              21       38380027     38661780          ERG
11928              21       38380027     38661780          ERG
11929              21       38380027     38661780          ERG
11930              21       38380027     38661780          ERG
11931              21       38380027     38661780          ERG
11932              21       38380027     38661780          ERG
11933              21       38380027     38661780          ERG
11934              21       38380027     38661780          ERG
11935              21       38380027     38661780          ERG
11936              21       38380027     38661780          ERG
11937              21       38380027     38661780          ERG
11938              21       38380027     38661780          ERG
11939              21       38380027     38661780          ERG
11940              21       38380027     38661780          ERG
11941              21       38380027     38661780          ERG
11942              21       38380027     38661780          ERG
11943              21       38380027     38661780          ERG
11944              21       38380027     38661780          ERG
11945              21       38380027     38661780          ERG
11946              21       38380027     38661780          ERG
11947              21       38380027     38661780          ERG
11948              21       38380027     38661780          ERG
11949              21       38380027     38661780          ERG
11950              21       38380027     38661780          ERG
11951              21       38380027     38661780          ERG
11952              21       38380027     38661780          ERG
11953              21       38380027     38661780          ERG
11954              21       38380027     38661780          ERG
11955              21       38380027     38661780          ERG
11956              21       38380027     38661780          ERG
11957              21       38380027     38661780          ERG
11958              21       38380027     38661780          ERG
11959              21       38380027     38661780          ERG
11960              21       38380027     38661780          ERG
11961              21       38380027     38661780          ERG
11962              21       38380027     38661780          ERG
11963              21       38380027     38661780          ERG
11964              21       38380027     38661780          ERG
11965              21       38380027     38661780          ERG
11966              21       38380027     38661780          ERG
11967              21       38380027     38661780          ERG
11968              21       38380027     38661780          ERG
11969              21       38380027     38661780          ERG
11970              21       38380027     38661780          ERG
11971              21       38380027     38661780          ERG
11972              21       38380027     38661780          ERG
11973              21       38380027     38661780          ERG
11974              21       38380027     38661780          ERG
11975              21       38380027     38661780          ERG
11976              21       38380027     38661780          ERG
11977              21       38380027     38661780          ERG
11978              21       38380027     38661780          ERG
11979              21       38380027     38661780          ERG
11980              21       38380027     38661780          ERG
11981              21       38380027     38661780          ERG
11982              21       38380027     38661780          ERG
11983              21       38380027     38661780          ERG
11984              21       38380027     38661780          ERG
11985              21       38380027     38661780          ERG
11986              21       38380027     38661780          ERG
11987              21       38380027     38661780          ERG
11988              21       38380027     38661780          ERG
11989              21       38380027     38661780          ERG
11990              21       38380027     38661780          ERG
11991              21       38380027     38661780          ERG
11992              21       38380027     38661780          ERG
11993              21       38380027     38661780          ERG
11994              21       38380027     38661780          ERG
11995              21       38380027     38661780          ERG
11996              21       38380027     38661780          ERG
11997              21       38380027     38661780          ERG
11998              21       38380027     38661780          ERG
11999              21       38380027     38661780          ERG
12000              21       38380027     38661780          ERG
12001              21       38380027     38661780          ERG
12002              21       38380027     38661780          ERG
12003              21       38380027     38661780          ERG
12004              21       38380027     38661780          ERG
12005              21       38380027     38661780          ERG
12006              21       38380027     38661780          ERG
12007              21       38380027     38661780          ERG
12008              21       38380027     38661780          ERG
12009              21       38380027     38661780          ERG
12010              21       38380027     38661780          ERG
12011              21       38380027     38661780          ERG
12012              21       38380027     38661780          ERG
12013              21       38380027     38661780          ERG
12014              21       38380027     38661780          ERG
12015              21       38380027     38661780          ERG
12016              21       38380027     38661780          ERG
12017              21       38380027     38661780          ERG
12018              21       38380027     38661780          ERG
12019              21       38380027     38661780          ERG
12020              21       38380027     38661780          ERG
12021              21       38380027     38661780          ERG
12022              21       38380027     38661780          ERG
12023              21       38380027     38661780          ERG
12024              21       38380027     38661780          ERG
12025              21       38380027     38661780          ERG
12026              21       38380027     38661780          ERG
12027              21       38380027     38661780          ERG
12028              21       38380027     38661780          ERG
12029              21       38380027     38661780          ERG
12030              21       38380027     38661780          ERG
12031              21       38380027     38661780          ERG
12032              21       38380027     38661780          ERG
12033              21       38380027     38661780          ERG
12034              21       38380027     38661780          ERG
12035              21       38380027     38661780          ERG
12036              21       38380027     38661780          ERG
12037              21       38380027     38661780          ERG
12038              21       38380027     38661780          ERG
12039              21       38380027     38661780          ERG
12040              21       38380027     38661780          ERG
12041              21       38380027     38661780          ERG
12042              21       38380027     38661780          ERG
12043              21       38380027     38661780          ERG
12044              21       38380027     38661780          ERG
12045              21       38380027     38661780          ERG
12046              21       38380027     38661780          ERG
12047              21       38380027     38661780          ERG
12048              21       38380027     38661780          ERG
12049              21       38380027     38661780          ERG
12050              21       38380027     38661780          ERG
12051              21       38380027     38661780          ERG
12052              21       38380027     38661780          ERG
12053              21       38380027     38661780          ERG
12054              21       38380027     38661780          ERG
12055              21       38380027     38661780          ERG
12056              21       38380027     38661780          ERG
12057              21       38380027     38661780          ERG
12058              21       38380027     38661780          ERG
12059              21       38380027     38661780          ERG
12060              21       38380027     38661780          ERG
12061              21       38380027     38661780          ERG
12062              21       38380027     38661780          ERG
12063              21       38380027     38661780          ERG
12064              21       13443373     13489176      GTF2IP2
12065              21       13443373     13489176      GTF2IP2
12066              21       13443373     13489176      GTF2IP2
12067              21       13443373     13489176      GTF2IP2
12068              21       13443373     13489176      GTF2IP2
12069              21       13443373     13489176      GTF2IP2
12070              21       30635236     30635619    KRTAP20-2
12071              21       39028536     39029128             
12072              21       39028536     39029128             
12073              21       31735732     31736407             
12074              21       13384249     13427773   ANKRD30BP1
12075              21       13384249     13427773   ANKRD30BP1
12076              21       13384249     13427773   ANKRD30BP1
12077              21       13384249     13427773   ANKRD30BP1
12078              21       13384249     13427773   ANKRD30BP1
12079              21       13384249     13427773   ANKRD30BP1
12080              21       13384249     13427773   ANKRD30BP1
12081              21       13384249     13427773   ANKRD30BP1
12082              21       13384249     13427773   ANKRD30BP1
12083              21       13384249     13427773   ANKRD30BP1
12084              21       13384249     13427773   ANKRD30BP1
12085              21       13384249     13427773   ANKRD30BP1
12086              21       13384249     13427773   ANKRD30BP1
12087              21       13384249     13427773   ANKRD30BP1
12088              21       13384249     13427773   ANKRD30BP1
12089              21       13384249     13427773   ANKRD30BP1
12090              21       13384249     13427773   ANKRD30BP1
12091              21       13384249     13427773   ANKRD30BP1
12092              21       30541535     30541864    KRTAP19-6
12093              21       36016079     36016546     RPL23AP3
12094              21       36319792     36320670             
12095              21       44046347     44047041      H2AFZP1
12096              21       44046347     44047041      H2AFZP1
12097              21       17894193     17894485      RPL37P3
12098              21       42346357     42351128         TFF2
12099              21       42346357     42351128         TFF2
12100              21       42346357     42351128         TFF2
12101              21       42346357     42351128         TFF2
12102              21       42346357     42351128         TFF2
12103              21       42346357     42351128         TFF2
12104              21       42346357     42351128         TFF2
12105              21       42346357     42351128         TFF2
12106              21       42346357     42351128         TFF2
12107              21       42346357     42351128         TFF2
12108              21       42346357     42351128         TFF2
12109              21       42346357     42351128         TFF2
12110              21       42346357     42351128         TFF2
12111              21       13936993     13937325      RHOT1P2
12112              21       43363332     43366566             
12113              21       43363332     43366566             
12114              21       30802242     30802427    KRTAP8-2P
12115              21       30718525     30718777    KRTAP21-3
12116              21       44936303     44936954             
12117              21       30560875     30561314    KRTAP19-7
12118              21       30214006     30216073        CLDN8
12119              21       10397644     10397778             
12120              21       10328411     10342737             
12121              21       10328411     10342737             
12122              21       10328411     10342737             
12123              21       10328411     10342737             
12124              21       10328411     10342737             
12125              21       10328411     10342737             
12126              21       10136419     10137004             
12127              21       25515473     25518338             
12128              21       25515473     25518338             
12129              21       25385820     25431701    LINC00158
12130              21       25385820     25431701    LINC00158
12131              21       25385820     25431701    LINC00158
12132              21       25385820     25431701    LINC00158
12133              21       25385820     25431701    LINC00158
12134              21       25385820     25431701    LINC00158
12135              21       25385820     25431701    LINC00158
12136              21       25385820     25431701    LINC00158
12137              21       25385820     25431701    LINC00158
12138              21       25385820     25431701    LINC00158
12139              21       25385820     25431701    LINC00158
12140              21       25385820     25431701    LINC00158
12141              21       25385820     25431701    LINC00158
12142              21       25385820     25431701    LINC00158
12143              21       25385820     25431701    LINC00158
12144              21       25385820     25431701    LINC00158
12145              21       25371827     25372043             
12146              21       25361821     25362431     RPL13AP7
12147              21        9781918      9814009    LINC01667
12148              21        9781918      9814009    LINC01667
12149              21        9781918      9814009    LINC01667
12150              21        9781918      9814009    LINC01667
12151              21        9781918      9814009    LINC01667
12152              21        9781918      9814009    LINC01667
12153              21        9781918      9814009    LINC01667
12154              21        9781918      9814009    LINC01667
12155              21        9781918      9814009    LINC01667
12156              21        9781918      9814009    LINC01667
12157              21        9781918      9814009    LINC01667
12158              21        9781918      9814009    LINC01667
12159              21        9781918      9814009    LINC01667
12160              21        9781918      9814009    LINC01667
12161              21        9810381      9810503             
12162              21        9580024      9580415             
12163              21        9558970      9559155             
12164              21        9364467      9365225     SNX18P12
12165              21       25169431     25333825             
12166              21       25169431     25333825             
12167              21       25169431     25333825             
12168              21       25169431     25333825             
12169              21       25127469     25135247             
12170              21       25127469     25135247             
12171              21       25127469     25135247             
12172              21       25127469     25135247             
12173              21       25095022     25103670             
12174              21       25095022     25103670             
12175              21       25095022     25103670             
12176              21       25095022     25103670             
12177              21       25095022     25103670             
12178              21       25095022     25103670             
12179              21       24886676     24902756             
12180              21       24886676     24902756             
12181              21       24840550     25057746    LINC01692
12182              21       24840550     25057746    LINC01692
12183              21       24840550     25057746    LINC01692
12184              21       24840550     25057746    LINC01692
12185              21       24938431     24992817             
12186              21       24938431     24992817             
12187              21       24938431     24992817             
12188              21       24938431     24992817             
12189              21       24938431     24992817             
12190              21       24938431     24992817             
12191              21       24428740     24547942    LINC01684
12192              21       24428740     24547942    LINC01684
12193              21       24428740     24547942    LINC01684
12194              21       24428740     24547942    LINC01684
12195              21       24428740     24547942    LINC01684
12196              21       24428740     24547942    LINC01684
12197              21       24428740     24547942    LINC01684
12198              21       24428740     24547942    LINC01684
12199              21       24428740     24547942    LINC01684
12200              21       24428740     24547942    LINC01684
12201              21       24428740     24547942    LINC01684
12202              21       24428740     24547942    LINC01684
12203              21       24043257     24050286             
12204              21       24043257     24050286             
12205              21       24043257     24050286             
12206              21       24043257     24050286             
12207              21       23960905     23967273             
12208              21       23960905     23967273             
12209              21        9082601      9083101             
12210              21       23477641     23490724             
12211              21       23477641     23490724             
12212              21        8996496      9018670             
12213              21        8996496      9018670             
12214              21       23407658     23409128        TUBAP
12215              21       23407658     23409128        TUBAP
12216              21       36050214     36051377     RIMKLBP1
12217              21       36134912     36146566         CBR3
12218              21       36134912     36146566         CBR3
12219              21       36134912     36146566         CBR3
12220              21       44012319     44106552     TRAPPC10
12221              21       44012319     44106552     TRAPPC10
12222              21       44012319     44106552     TRAPPC10
12223              21       44012319     44106552     TRAPPC10
12224              21       44012319     44106552     TRAPPC10
12225              21       44012319     44106552     TRAPPC10
12226              21       44012319     44106552     TRAPPC10
12227              21       44012319     44106552     TRAPPC10
12228              21       44012319     44106552     TRAPPC10
12229              21       44012319     44106552     TRAPPC10
12230              21       44012319     44106552     TRAPPC10
12231              21       44012319     44106552     TRAPPC10
12232              21       44012319     44106552     TRAPPC10
12233              21       44012319     44106552     TRAPPC10
12234              21       44012319     44106552     TRAPPC10
12235              21       44012319     44106552     TRAPPC10
12236              21       44012319     44106552     TRAPPC10
12237              21       44012319     44106552     TRAPPC10
12238              21       44012319     44106552     TRAPPC10
12239              21       44012319     44106552     TRAPPC10
12240              21       44012319     44106552     TRAPPC10
12241              21       44012319     44106552     TRAPPC10
12242              21       44012319     44106552     TRAPPC10
12243              21       44012319     44106552     TRAPPC10
12244              21       44012319     44106552     TRAPPC10
12245              21       44012319     44106552     TRAPPC10
12246              21       44012319     44106552     TRAPPC10
12247              21       44012319     44106552     TRAPPC10
12248              21       44012319     44106552     TRAPPC10
12249              21       44012319     44106552     TRAPPC10
12250              21       44012319     44106552     TRAPPC10
12251              21       44012319     44106552     TRAPPC10
12252              21       44012319     44106552     TRAPPC10
12253              21       44012319     44106552     TRAPPC10
12254              21       44012319     44106552     TRAPPC10
12255              21       44012319     44106552     TRAPPC10
12256              21       44012319     44106552     TRAPPC10
12257              21       44012319     44106552     TRAPPC10
12258              21       44012319     44106552     TRAPPC10
12259              21       44012319     44106552     TRAPPC10
12260              21       44012319     44106552     TRAPPC10
12261              21       44012319     44106552     TRAPPC10
12262              21       44012319     44106552     TRAPPC10
12263              21       44012319     44106552     TRAPPC10
12264              21       44012319     44106552     TRAPPC10
12265              21       44012319     44106552     TRAPPC10
12266              21       44012319     44106552     TRAPPC10
12267              21       44012319     44106552     TRAPPC10
12268              21       44012319     44106552     TRAPPC10
12269              21       44012319     44106552     TRAPPC10
12270              21       44012319     44106552     TRAPPC10
12271              21       44012319     44106552     TRAPPC10
12272              21       44012319     44106552     TRAPPC10
12273              21       44012319     44106552     TRAPPC10
12274              21       44012319     44106552     TRAPPC10
12275              21       44012319     44106552     TRAPPC10
12276              21       44012319     44106552     TRAPPC10
12277              21       44012319     44106552     TRAPPC10
12278              21       44012319     44106552     TRAPPC10
12279              21       44012319     44106552     TRAPPC10
12280              21       44012319     44106552     TRAPPC10
12281              21       44012319     44106552     TRAPPC10
12282              21       44012319     44106552     TRAPPC10
12283              21       44012319     44106552     TRAPPC10
12284              21       44012319     44106552     TRAPPC10
12285              21       44012319     44106552     TRAPPC10
12286              21       44012319     44106552     TRAPPC10
12287              21       44012319     44106552     TRAPPC10
12288              21       44012319     44106552     TRAPPC10
12289              21       44012319     44106552     TRAPPC10
12290              21       44012319     44106552     TRAPPC10
12291              21       44012319     44106552     TRAPPC10
12292              21       44012319     44106552     TRAPPC10
12293              21       44012319     44106552     TRAPPC10
12294              21       44012319     44106552     TRAPPC10
12295              21       44012319     44106552     TRAPPC10
12296              21       44012319     44106552     TRAPPC10
12297              21       44012319     44106552     TRAPPC10
12298              21       44012319     44106552     TRAPPC10
12299              21       44012319     44106552     TRAPPC10
12300              21       44012319     44106552     TRAPPC10
12301              21       44012319     44106552     TRAPPC10
12302              21       44012319     44106552     TRAPPC10
12303              21       44012319     44106552     TRAPPC10
12304              21       44012319     44106552     TRAPPC10
12305              21       44012319     44106552     TRAPPC10
12306              21       44012319     44106552     TRAPPC10
12307              21       44012319     44106552     TRAPPC10
12308              21       44012319     44106552     TRAPPC10
12309              21       44012319     44106552     TRAPPC10
12310              21       44012319     44106552     TRAPPC10
12311              21       45643694     45942454        PCBP3
12312              21       45643694     45942454        PCBP3
12313              21       45643694     45942454        PCBP3
12314              21       45643694     45942454        PCBP3
12315              21       45643694     45942454        PCBP3
12316              21       45643694     45942454        PCBP3
12317              21       45643694     45942454        PCBP3
12318              21       45643694     45942454        PCBP3
12319              21       45643694     45942454        PCBP3
12320              21       45643694     45942454        PCBP3
12321              21       45643694     45942454        PCBP3
12322              21       45643694     45942454        PCBP3
12323              21       45643694     45942454        PCBP3
12324              21       45643694     45942454        PCBP3
12325              21       45643694     45942454        PCBP3
12326              21       45643694     45942454        PCBP3
12327              21       45643694     45942454        PCBP3
12328              21       45643694     45942454        PCBP3
12329              21       45643694     45942454        PCBP3
12330              21       45643694     45942454        PCBP3
12331              21       45643694     45942454        PCBP3
12332              21       45643694     45942454        PCBP3
12333              21       45643694     45942454        PCBP3
12334              21       45643694     45942454        PCBP3
12335              21       45643694     45942454        PCBP3
12336              21       45643694     45942454        PCBP3
12337              21       45643694     45942454        PCBP3
12338              21       45643694     45942454        PCBP3
12339              21       45643694     45942454        PCBP3
12340              21       45643694     45942454        PCBP3
12341              21       45643694     45942454        PCBP3
12342              21       45643694     45942454        PCBP3
12343              21       45643694     45942454        PCBP3
12344              21       45643694     45942454        PCBP3
12345              21       45643694     45942454        PCBP3
12346              21       45643694     45942454        PCBP3
12347              21       45643694     45942454        PCBP3
12348              21       45643694     45942454        PCBP3
12349              21       45643694     45942454        PCBP3
12350              21       45643694     45942454        PCBP3
12351              21       45643694     45942454        PCBP3
12352              21       45643694     45942454        PCBP3
12353              21       45643694     45942454        PCBP3
12354              21       45643694     45942454        PCBP3
12355              21       45643694     45942454        PCBP3
12356              21       45643694     45942454        PCBP3
12357              21       45643694     45942454        PCBP3
12358              21       45643694     45942454        PCBP3
12359              21       45643694     45942454        PCBP3
12360              21       45643694     45942454        PCBP3
12361              21       45643694     45942454        PCBP3
12362              21       45643694     45942454        PCBP3
12363              21       45643694     45942454        PCBP3
12364              21       45643694     45942454        PCBP3
12365              21       45643694     45942454        PCBP3
12366              21       45643694     45942454        PCBP3
12367              21       45643694     45942454        PCBP3
12368              21       45643694     45942454        PCBP3
12369              21       45643694     45942454        PCBP3
12370              21       45643694     45942454        PCBP3
12371              21       45643694     45942454        PCBP3
12372              21       45643694     45942454        PCBP3
12373              21       45643694     45942454        PCBP3
12374              21       45643694     45942454        PCBP3
12375              21       45643694     45942454        PCBP3
12376              21       45643694     45942454        PCBP3
12377              21       45643694     45942454        PCBP3
12378              21       45643694     45942454        PCBP3
12379              21       45643694     45942454        PCBP3
12380              21       45643694     45942454        PCBP3
12381              21       45643694     45942454        PCBP3
12382              21       45643694     45942454        PCBP3
12383              21       45643694     45942454        PCBP3
12384              21       45643694     45942454        PCBP3
12385              21       45643694     45942454        PCBP3
12386              21       45643694     45942454        PCBP3
12387              21       45643694     45942454        PCBP3
12388              21       45643694     45942454        PCBP3
12389              21       45643694     45942454        PCBP3
12390              21       45643694     45942454        PCBP3
12391              21       45643694     45942454        PCBP3
12392              21       45643694     45942454        PCBP3
12393              21       45643694     45942454        PCBP3
12394              21       45643694     45942454        PCBP3
12395              21       45643694     45942454        PCBP3
12396              21       45643694     45942454        PCBP3
12397              21       45643694     45942454        PCBP3
12398              21       45643694     45942454        PCBP3
12399              21       45643694     45942454        PCBP3
12400              21       45643694     45942454        PCBP3
12401              21       45643694     45942454        PCBP3
12402              21       45643694     45942454        PCBP3
12403              21       45643694     45942454        PCBP3
12404              21       45643694     45942454        PCBP3
12405              21       45643694     45942454        PCBP3
12406              21       45643694     45942454        PCBP3
12407              21       45643694     45942454        PCBP3
12408              21       45643694     45942454        PCBP3
12409              21       45643694     45942454        PCBP3
12410              21       45643694     45942454        PCBP3
12411              21       45643694     45942454        PCBP3
12412              21       45643694     45942454        PCBP3
12413              21       45643694     45942454        PCBP3
12414              21       45643694     45942454        PCBP3
12415              21       45643694     45942454        PCBP3
12416              21       45643694     45942454        PCBP3
12417              21       45643694     45942454        PCBP3
12418              21       45643694     45942454        PCBP3
12419              21       45643694     45942454        PCBP3
12420              21       45643694     45942454        PCBP3
12421              21       45643694     45942454        PCBP3
12422              21       45643694     45942454        PCBP3
12423              21       45643694     45942454        PCBP3
12424              21       45643694     45942454        PCBP3
12425              21       45643694     45942454        PCBP3
12426              21       45643694     45942454        PCBP3
12427              21       45643694     45942454        PCBP3
12428              21       45643694     45942454        PCBP3
12429              21       45643694     45942454        PCBP3
12430              21       45643694     45942454        PCBP3
12431              21       45643694     45942454        PCBP3
12432              21       45643694     45942454        PCBP3
12433              21       45643694     45942454        PCBP3
12434              21       45643694     45942454        PCBP3
12435              21       45643694     45942454        PCBP3
12436              21       45643694     45942454        PCBP3
12437              21       45643694     45942454        PCBP3
12438              21       45643694     45942454        PCBP3
12439              21       45643694     45942454        PCBP3
12440              21       45643694     45942454        PCBP3
12441              21       45643694     45942454        PCBP3
12442              21       45643694     45942454        PCBP3
12443              21       45643694     45942454        PCBP3
12444              21       45643694     45942454        PCBP3
12445              21       45643694     45942454        PCBP3
12446              21       45643694     45942454        PCBP3
12447              21       45643694     45942454        PCBP3
12448              21       45643694     45942454        PCBP3
12449              21       45643694     45942454        PCBP3
12450              21       45643694     45942454        PCBP3
12451              21       45643694     45942454        PCBP3
12452              21       45643694     45942454        PCBP3
12453              21       45643694     45942454        PCBP3
12454              21       45643694     45942454        PCBP3
12455              21       45643694     45942454        PCBP3
12456              21       45643694     45942454        PCBP3
12457              21       45643694     45942454        PCBP3
12458              21       45643694     45942454        PCBP3
12459              21       45643694     45942454        PCBP3
12460              21       45643694     45942454        PCBP3
12461              21       45643694     45942454        PCBP3
12462              21       43772511     43776445         CSTB
12463              21       43772511     43776445         CSTB
12464              21       43772511     43776445         CSTB
12465              21       43772511     43776445         CSTB
12466              21       43772511     43776445         CSTB
12467              21       43772511     43776445         CSTB
12468              21       43772511     43776445         CSTB
12469              21       43772511     43776445         CSTB
12470              21       15730025     15880069        USP25
12471              21       15730025     15880069        USP25
12472              21       15730025     15880069        USP25
12473              21       15730025     15880069        USP25
12474              21       15730025     15880069        USP25
12475              21       15730025     15880069        USP25
12476              21       15730025     15880069        USP25
12477              21       15730025     15880069        USP25
12478              21       15730025     15880069        USP25
12479              21       15730025     15880069        USP25
12480              21       15730025     15880069        USP25
12481              21       15730025     15880069        USP25
12482              21       15730025     15880069        USP25
12483              21       15730025     15880069        USP25
12484              21       15730025     15880069        USP25
12485              21       15730025     15880069        USP25
12486              21       15730025     15880069        USP25
12487              21       15730025     15880069        USP25
12488              21       15730025     15880069        USP25
12489              21       15730025     15880069        USP25
12490              21       15730025     15880069        USP25
12491              21       15730025     15880069        USP25
12492              21       15730025     15880069        USP25
12493              21       15730025     15880069        USP25
12494              21       15730025     15880069        USP25
12495              21       15730025     15880069        USP25
12496              21       15730025     15880069        USP25
12497              21       15730025     15880069        USP25
12498              21       15730025     15880069        USP25
12499              21       15730025     15880069        USP25
12500              21       15730025     15880069        USP25
12501              21       15730025     15880069        USP25
12502              21       15730025     15880069        USP25
12503              21       15730025     15880069        USP25
12504              21       15730025     15880069        USP25
12505              21       15730025     15880069        USP25
12506              21       15730025     15880069        USP25
12507              21       15730025     15880069        USP25
12508              21       15730025     15880069        USP25
12509              21       15730025     15880069        USP25
12510              21       15730025     15880069        USP25
12511              21       15730025     15880069        USP25
12512              21       15730025     15880069        USP25
12513              21       15730025     15880069        USP25
12514              21       15730025     15880069        USP25
12515              21       15730025     15880069        USP25
12516              21       15730025     15880069        USP25
12517              21       15730025     15880069        USP25
12518              21       15730025     15880069        USP25
12519              21       15730025     15880069        USP25
12520              21       15730025     15880069        USP25
12521              21       15730025     15880069        USP25
12522              21       15730025     15880069        USP25
12523              21       15730025     15880069        USP25
12524              21       15730025     15880069        USP25
12525              21       15730025     15880069        USP25
12526              21       15730025     15880069        USP25
12527              21       15730025     15880069        USP25
12528              21       15730025     15880069        USP25
12529              21       15730025     15880069        USP25
12530              21       15730025     15880069        USP25
12531              21       15730025     15880069        USP25
12532              21       15730025     15880069        USP25
12533              21       15730025     15880069        USP25
12534              21       15730025     15880069        USP25
12535              21       15730025     15880069        USP25
12536              21       15730025     15880069        USP25
12537              21       15730025     15880069        USP25
12538              21       15730025     15880069        USP25
12539              21       15730025     15880069        USP25
12540              21       15730025     15880069        USP25
12541              21       15730025     15880069        USP25
12542              21       15730025     15880069        USP25
12543              21       15730025     15880069        USP25
12544              21       15730025     15880069        USP25
12545              21       15730025     15880069        USP25
12546              21       15730025     15880069        USP25
12547              21       15730025     15880069        USP25
12548              21       15730025     15880069        USP25
12549              21       15730025     15880069        USP25
12550              21       15730025     15880069        USP25
12551              21       15730025     15880069        USP25
12552              21       15730025     15880069        USP25
12553              21       15730025     15880069        USP25
12554              21       15730025     15880069        USP25
12555              21       15730025     15880069        USP25
12556              21       15730025     15880069        USP25
12557              21       15730025     15880069        USP25
12558              21       15730025     15880069        USP25
12559              21       15730025     15880069        USP25
12560              21       15730025     15880069        USP25
12561              21       15730025     15880069        USP25
12562              21       15730025     15880069        USP25
12563              21       15730025     15880069        USP25
12564              21       15730025     15880069        USP25
12565              21       15730025     15880069        USP25
12566              21       15730025     15880069        USP25
12567              21       15730025     15880069        USP25
12568              21       15730025     15880069        USP25
12569              21       15730025     15880069        USP25
12570              21       15730025     15880069        USP25
12571              21       15730025     15880069        USP25
12572              21       15730025     15880069        USP25
12573              21       15730025     15880069        USP25
12574              21       15730025     15880069        USP25
12575              21       15730025     15880069        USP25
12576              21       15730025     15880069        USP25
12577              21       15730025     15880069        USP25
12578              21       15730025     15880069        USP25
12579              21       15730025     15880069        USP25
12580              21       15730025     15880069        USP25
12581              21       15730025     15880069        USP25
12582              21       15730025     15880069        USP25
12583              21       15730025     15880069        USP25
12584              21       15730025     15880069        USP25
12585              21       15730025     15880069        USP25
12586              21       39174769     39183851        PSMG1
12587              21       39174769     39183851        PSMG1
12588              21       39174769     39183851        PSMG1
12589              21       39174769     39183851        PSMG1
12590              21       39174769     39183851        PSMG1
12591              21       39174769     39183851        PSMG1
12592              21       39174769     39183851        PSMG1
12593              21       39174769     39183851        PSMG1
12594              21       39174769     39183851        PSMG1
12595              21       39174769     39183851        PSMG1
12596              21       39174769     39183851        PSMG1
12597              21       39174769     39183851        PSMG1
12598              21       39174769     39183851        PSMG1
12599              21       39174769     39183851        PSMG1
12600              21       39174769     39183851        PSMG1
12601              21       39174769     39183851        PSMG1
12602              21       39174769     39183851        PSMG1
12603              21       39174769     39183851        PSMG1
12604              21       39174769     39183851        PSMG1
12605              21       39174769     39183851        PSMG1
12606              21       39174769     39183851        PSMG1
12607              21       39174769     39183851        PSMG1
12608              21       39174769     39183851        PSMG1
12609              21       39174769     39183851        PSMG1
12610              21       39174769     39183851        PSMG1
12611              21       39174769     39183851        PSMG1
12612              21       39174769     39183851        PSMG1
12613              21       39174769     39183851        PSMG1
12614              21       39174769     39183851        PSMG1
12615              21       45288052     45291738             
12616              21       45288052     45291738             
12617              21       45288052     45291738             
12618              21       45288052     45291738             
12619              21       45288052     45291738             
12620              21       45288052     45291738             
12621              21       39127568     39128040    RPL23AP12
12622              21       14000927     14005279        NF1P3
12623              21       14000927     14005279        NF1P3
12624              21       14000927     14005279        NF1P3
12625              21       14000927     14005279        NF1P3
12626              21        5011799      5017145             
12627              21        5011799      5017145             
12628              21        5011799      5017145             
12629              21        5011799      5017145             
12630              21       13525599     13528579      SNX19P1
12631              21       43414515     43427128         SIK1
12632              21       43414515     43427128         SIK1
12633              21       43414515     43427128         SIK1
12634              21       43414515     43427128         SIK1
12635              21       43414515     43427128         SIK1
12636              21       43414515     43427128         SIK1
12637              21       43414515     43427128         SIK1
12638              21       43414515     43427128         SIK1
12639              21       43414515     43427128         SIK1
12640              21       43414515     43427128         SIK1
12641              21       43414515     43427128         SIK1
12642              21       43414515     43427128         SIK1
12643              21       43414515     43427128         SIK1
12644              21       43414515     43427128         SIK1
12645              21       43414515     43427128         SIK1
12646              21       43414515     43427128         SIK1
12647              21       43414515     43427128         SIK1
12648              21       13305152     13314944             
12649              21       13305152     13314944             
12650              21       45234340     45264548    LINC00334
12651              21       45234340     45264548    LINC00334
12652              21       45234340     45264548    LINC00334
12653              21       45234340     45264548    LINC00334
12654              21       45234340     45264548    LINC00334
12655              21       45234340     45264548    LINC00334
12656              21       45234340     45264548    LINC00334
12657              21       45234340     45264548    LINC00334
12658              21       45234340     45264548    LINC00334
12659              21       45234340     45264548    LINC00334
12660              21       38157034     38307357       KCNJ15
12661              21       38157034     38307357       KCNJ15
12662              21       38157034     38307357       KCNJ15
12663              21       38157034     38307357       KCNJ15
12664              21       38157034     38307357       KCNJ15
12665              21       38157034     38307357       KCNJ15
12666              21       38157034     38307357       KCNJ15
12667              21       38157034     38307357       KCNJ15
12668              21       38157034     38307357       KCNJ15
12669              21       38157034     38307357       KCNJ15
12670              21       38157034     38307357       KCNJ15
12671              21       38157034     38307357       KCNJ15
12672              21       38157034     38307357       KCNJ15
12673              21       38157034     38307357       KCNJ15
12674              21       38157034     38307357       KCNJ15
12675              21       38157034     38307357       KCNJ15
12676              21       38157034     38307357       KCNJ15
12677              21       38157034     38307357       KCNJ15
12678              21       38157034     38307357       KCNJ15
12679              21       38157034     38307357       KCNJ15
12680              21       38157034     38307357       KCNJ15
12681              21       38157034     38307357       KCNJ15
12682              21       38157034     38307357       KCNJ15
12683              21       38157034     38307357       KCNJ15
12684              21       38157034     38307357       KCNJ15
12685              21       38157034     38307357       KCNJ15
12686              21       38157034     38307357       KCNJ15
12687              21       38157034     38307357       KCNJ15
12688              21       38157034     38307357       KCNJ15
12689              21       38157034     38307357       KCNJ15
12690              21       38157034     38307357       KCNJ15
12691              21       38157034     38307357       KCNJ15
12692              21       38157034     38307357       KCNJ15
12693              21       38157034     38307357       KCNJ15
12694              21       38157034     38307357       KCNJ15
12695              21       38157034     38307357       KCNJ15
12696              21       38157034     38307357       KCNJ15
12697              21       38157034     38307357       KCNJ15
12698              21       38157034     38307357       KCNJ15
12699              21       38157034     38307357       KCNJ15
12700              21       38157034     38307357       KCNJ15
12701              21       38157034     38307357       KCNJ15
12702              21       38157034     38307357       KCNJ15
12703              21       38157034     38307357       KCNJ15
12704              21       38157034     38307357       KCNJ15
12705              21       38157034     38307357       KCNJ15
12706              21       38157034     38307357       KCNJ15
12707              21       38157034     38307357       KCNJ15
12708              21       38157034     38307357       KCNJ15
12709              21       38157034     38307357       KCNJ15
12710              21       38157034     38307357       KCNJ15
12711              21       38157034     38307357       KCNJ15
12712              21       38157034     38307357       KCNJ15
12713              21       38157034     38307357       KCNJ15
12714              21       38157034     38307357       KCNJ15
12715              21       38157034     38307357       KCNJ15
12716              21       38157034     38307357       KCNJ15
12717              21       38157034     38307357       KCNJ15
12718              21       38157034     38307357       KCNJ15
12719              21       38157034     38307357       KCNJ15
12720              21       38157034     38307357       KCNJ15
12721              21       38157034     38307357       KCNJ15
12722              21       38157034     38307357       KCNJ15
12723              21       38157034     38307357       KCNJ15
12724              21       38157034     38307357       KCNJ15
12725              21       38157034     38307357       KCNJ15
12726              21       38157034     38307357       KCNJ15
12727              21       38157034     38307357       KCNJ15
12728              21       38157034     38307357       KCNJ15
12729              21       38157034     38307357       KCNJ15
12730              21       38157034     38307357       KCNJ15
12731              21       38157034     38307357       KCNJ15
12732              21       38157034     38307357       KCNJ15
12733              21       38157034     38307357       KCNJ15
12734              21       38157034     38307357       KCNJ15
12735              21       38157034     38307357       KCNJ15
12736              21       38157034     38307357       KCNJ15
12737              21       38157034     38307357       KCNJ15
12738              21       38157034     38307357       KCNJ15
12739              21       38157034     38307357       KCNJ15
12740              21       38157034     38307357       KCNJ15
12741              21       38157034     38307357       KCNJ15
12742              21       38157034     38307357       KCNJ15
12743              21       38157034     38307357       KCNJ15
12744              21       38157034     38307357       KCNJ15
12745              21       38157034     38307357       KCNJ15
12746              21       38157034     38307357       KCNJ15
12747              21       38157034     38307357       KCNJ15
12748              21       38157034     38307357       KCNJ15
12749              21       38157034     38307357       KCNJ15
12750              21       38237217     38238201             
12751              21       38237217     38238201             
12752              21       44932814     44939913    LINC01547
12753              21       44932814     44939913    LINC01547
12754              21       44932814     44939913    LINC01547
12755              21       44932814     44939913    LINC01547
12756              21       44932814     44939913    LINC01547
12757              21       44932814     44939913    LINC01547
12758              21       44932814     44939913    LINC01547
12759              21       44932814     44939913    LINC01547
12760              21       44932814     44939913    LINC01547
12761              21       44932814     44939913    LINC01547
12762              21       30526546     30526701             
12763              21       30514613     30514799  KRTAP19-10P
12764              21       30510307     30510497   KRTAP19-9P
12765              21       30089717     30097836             
12766              21       30089717     30097836             
12767              21       18917213     18917429             
12768              21       18857779     18858276      PPIAP22
12769              21       42648271     42651244             
12770              21       42648271     42651244             
12771              21       26835747     26845409      ADAMTS1
12772              21       26835747     26845409      ADAMTS1
12773              21       26835747     26845409      ADAMTS1
12774              21       26835747     26845409      ADAMTS1
12775              21       26835747     26845409      ADAMTS1
12776              21       26835747     26845409      ADAMTS1
12777              21       26835747     26845409      ADAMTS1
12778              21       26835747     26845409      ADAMTS1
12779              21       26835747     26845409      ADAMTS1
12780              21       26835747     26845409      ADAMTS1
12781              21       26835747     26845409      ADAMTS1
12782              21       26835747     26845409      ADAMTS1
12783              21       26835747     26845409      ADAMTS1
12784              21       26835747     26845409      ADAMTS1
12785              21       26835747     26845409      ADAMTS1
12786              21       26835747     26845409      ADAMTS1
12787              21       26835747     26845409      ADAMTS1
12788              21       26835747     26845409      ADAMTS1
12789              21       26835747     26845409      ADAMTS1
12790              21       26835747     26845409      ADAMTS1
12791              21       26835747     26845409      ADAMTS1
12792              21       26835747     26845409      ADAMTS1
12793              21       26835747     26845409      ADAMTS1
12794              21       26835747     26845409      ADAMTS1
12795              21       26835747     26845409      ADAMTS1
12796              21       26835747     26845409      ADAMTS1
12797              21       26835747     26845409      ADAMTS1
12798              21       26835747     26845409      ADAMTS1
12799              21       39216624     39217506      TIMM9P2
12800              21       39216624     39217506      TIMM9P2
12801              21       32574841     32587373       TCP10L
12802              21       32574841     32587373       TCP10L
12803              21       32574841     32587373       TCP10L
12804              21       32574841     32587373       TCP10L
12805              21       32574841     32587373       TCP10L
12806              21       32574841     32587373       TCP10L
12807              21       32574841     32587373       TCP10L
12808              21       32574841     32587373       TCP10L
12809              21       32574841     32587373       TCP10L
12810              21       32574841     32587373       TCP10L
12811              21       32574841     32587373       TCP10L
12812              21       32574841     32587373       TCP10L
12813              21       32574841     32587373       TCP10L
12814              21       32574841     32587373       TCP10L
12815              21       32574841     32587373       TCP10L
12816              21       32574841     32587373       TCP10L
12817              21       32574841     32587373       TCP10L
12818              21       32574841     32587373       TCP10L
12819              21       32572238     32575881    LINC00846
12820              21       32572238     32575881    LINC00846
12821              21       32572238     32575881    LINC00846
12822              21       32572238     32575881    LINC00846
12823              21       25928754     25942686             
12824              21       25928754     25942686             
12825              21       25928754     25942686             
12826              21       25928754     25942686             
12827              21       25928754     25942686             
12828              21       25928754     25942686             
12829              21       25928754     25942686             
12830              21       25928754     25942686             
12831              21       25928754     25942686             
12832              21       25928754     25942686             
12833              21       25928754     25942686             
12834              21       25928754     25942686             
12835              21       25928754     25942686             
12836              21       25928754     25942686             
12837              21       25928754     25942686             
12838              21       25928754     25942686             
12839              21       32268219     32279069       MIS18A
12840              21       32268219     32279069       MIS18A
12841              21       32268219     32279069       MIS18A
12842              21       32268219     32279069       MIS18A
12843              21       32268219     32279069       MIS18A
12844              21       32268219     32279069       MIS18A
12845              21       32268219     32279069       MIS18A
12846              21       38894917     38895252      RPSAP64
12847              21       27722379     27751233    LINC00113
12848              21       27722379     27751233    LINC00113
12849              21       27722379     27751233    LINC00113
12850              21       27722379     27751233    LINC00113
12851              21       27722379     27751233    LINC00113
12852              21       27722379     27751233    LINC00113
12853              21       27722379     27751233    LINC00113
12854              21       27722379     27751233    LINC00113
12855              21       27722379     27751233    LINC00113
12856              21       27722379     27751233    LINC00113
12857              21       27722379     27751233    LINC00113
12858              21       27722379     27751233    LINC00113
12859              21       27361164     27395787             
12860              21       27361164     27395787             
12861              21       27361164     27395787             
12862              21       27361164     27395787             
12863              21       27361164     27395787             
12864              21       14746762     14753863             
12865              21       14746762     14753863             
12866              21       14746762     14753863             
12867              21       14746762     14753863             
12868              21       14746762     14753863             
12869              21       14746762     14753863             
12870              21       38888772     38903905             
12871              21       38888772     38903905             
12872              21       43565189     43565648        H2BFS
12873              21       10612455     10613379   SLC25A15P4
12874              21       10612455     10613379   SLC25A15P4
12875              21       34723807     34737181    LINC00160
12876              21       34723807     34737181    LINC00160
12877              21       34723807     34737181    LINC00160
12878              21       34723807     34737181    LINC00160
12879              21       34723807     34737181    LINC00160
12880              21       34723807     34737181    LINC00160
12881              21       32592079     32612866     C21orf59
12882              21       32592079     32612866     C21orf59
12883              21       32592079     32612866     C21orf59
12884              21       32592079     32612866     C21orf59
12885              21       32592079     32612866     C21orf59
12886              21       32592079     32612866     C21orf59
12887              21       32592079     32612866     C21orf59
12888              21       32592079     32612866     C21orf59
12889              21       32592079     32612866     C21orf59
12890              21       32592079     32612866     C21orf59
12891              21       32592079     32612866     C21orf59
12892              21       32592079     32612866     C21orf59
12893              21       32592079     32612866     C21orf59
12894              21       32592079     32612866     C21orf59
12895              21       32592079     32612866     C21orf59
12896              21       32592079     32612866     C21orf59
12897              21       32592079     32612866     C21orf59
12898              21       32592079     32612866     C21orf59
12899              21       32592079     32612866     C21orf59
12900              21       32592079     32612866     C21orf59
12901              21       32592079     32612866     C21orf59
12902              21       32592079     32612866     C21orf59
12903              21       32592079     32612866     C21orf59
12904              21       32592079     32612866     C21orf59
12905              21       32592079     32612866     C21orf59
12906              21       32592079     32612866     C21orf59
12907              21       32592079     32612866     C21orf59
12908              21       32592079     32612866     C21orf59
12909              21       32592079     32612866     C21orf59
12910              21       32592079     32612866     C21orf59
12911              21       32592079     32612866     C21orf59
12912              21       32592079     32612866     C21orf59
12913              21       32592079     32612866     C21orf59
12914              21       32592079     32612866     C21orf59
12915              21       32592079     32612866     C21orf59
12916              21       32592079     32612866     C21orf59
12917              21       26158091     26175824             
12918              21       26158091     26175824             
12919              21       36445731     36532408             
12920              21       36445731     36532408             
12921              21       36445731     36532408             
12922              21       36445731     36532408             
12923              21       22500604     22520058             
12924              21       22500604     22520058             
12925              21       22500604     22520058             
12926              21       22153950     22154299             
12927              21       18917934     18935859             
12928              21       18917934     18935859             
12929              21       42733594     42741758             
12930              21       42733594     42741758             
12931              21       36295173     36295702      SRSF9P1
12932              21       18022370     18114904             
12933              21       18022370     18114904             
12934              21       18022370     18114904             
12935              21       18022370     18114904             
12936              21       18022370     18114904             
12937              21       36131767     36175815     CBR3-AS1
12938              21       36131767     36175815     CBR3-AS1
12939              21       36131767     36175815     CBR3-AS1
12940              21       36131767     36175815     CBR3-AS1
12941              21       36131767     36175815     CBR3-AS1
12942              21       36131767     36175815     CBR3-AS1
12943              21       36131767     36175815     CBR3-AS1
12944              21       36131767     36175815     CBR3-AS1
12945              21       36131767     36175815     CBR3-AS1
12946              21       36131767     36175815     CBR3-AS1
12947              21       36131767     36175815     CBR3-AS1
12948              21       36131767     36175815     CBR3-AS1
12949              21       36131767     36175815     CBR3-AS1
12950              21       36131767     36175815     CBR3-AS1
12951              21       36131767     36175815     CBR3-AS1
12952              21       36131767     36175815     CBR3-AS1
12953              21       36131767     36175815     CBR3-AS1
12954              21       36131767     36175815     CBR3-AS1
12955              21       36131767     36175815     CBR3-AS1
12956              21       36131767     36175815     CBR3-AS1
12957              21       36131767     36175815     CBR3-AS1
12958              21       36131767     36175815     CBR3-AS1
12959              21       36131767     36175815     CBR3-AS1
12960              21       36131767     36175815     CBR3-AS1
12961              21       36131767     36175815     CBR3-AS1
12962              21       36131767     36175815     CBR3-AS1
12963              21       36131767     36175815     CBR3-AS1
12964              21       36131767     36175815     CBR3-AS1
12965              21       36131767     36175815     CBR3-AS1
12966              21       36131767     36175815     CBR3-AS1
12967              21       36131767     36175815     CBR3-AS1
12968              21       36131767     36175815     CBR3-AS1
12969              21       36131767     36175815     CBR3-AS1
12970              21       36131767     36175815     CBR3-AS1
12971              21       36131767     36175815     CBR3-AS1
12972              21       36131767     36175815     CBR3-AS1
12973              21       36131767     36175815     CBR3-AS1
12974              21       36131767     36175815     CBR3-AS1
12975              21       36131767     36175815     CBR3-AS1
12976              21       36131767     36175815     CBR3-AS1
12977              21       36131767     36175815     CBR3-AS1
12978              21       36131767     36175815     CBR3-AS1
12979              21       36131767     36175815     CBR3-AS1
12980              21       36131767     36175815     CBR3-AS1
12981              21       36131767     36175815     CBR3-AS1
12982              21       36131767     36175815     CBR3-AS1
12983              21       36131767     36175815     CBR3-AS1
12984              21       36131767     36175815     CBR3-AS1
12985              21       36131767     36175815     CBR3-AS1
12986              21       36131767     36175815     CBR3-AS1
12987              21       36131767     36175815     CBR3-AS1
12988              21       36131767     36175815     CBR3-AS1
12989              21       36131767     36175815     CBR3-AS1
12990              21       36131767     36175815     CBR3-AS1
12991              21       36131767     36175815     CBR3-AS1
12992              21       36131767     36175815     CBR3-AS1
12993              21       36131767     36175815     CBR3-AS1
12994              21       17705408     17707455             
12995              21       32621049     32622096      OR7E23P
12996              21       15346652     15346738             
12997              21       43659548     43696079        RRP1B
12998              21       43659548     43696079        RRP1B
12999              21       43659548     43696079        RRP1B
13000              21       43659548     43696079        RRP1B
13001              21       43659548     43696079        RRP1B
13002              21       43659548     43696079        RRP1B
13003              21       43659548     43696079        RRP1B
13004              21       43659548     43696079        RRP1B
13005              21       43659548     43696079        RRP1B
13006              21       43659548     43696079        RRP1B
13007              21       43659548     43696079        RRP1B
13008              21       43659548     43696079        RRP1B
13009              21       43659548     43696079        RRP1B
13010              21       43659548     43696079        RRP1B
13011              21       43659548     43696079        RRP1B
13012              21       43659548     43696079        RRP1B
13013              21       43659548     43696079        RRP1B
13014              21       43659548     43696079        RRP1B
13015              21       43659548     43696079        RRP1B
13016              21       43659548     43696079        RRP1B
13017              21       43659548     43696079        RRP1B
13018              21        5116343      5133805             
13019              21        5116343      5133805             
13020              21        5116343      5133805             
13021              21        5116343      5133805             
13022              21        5116343      5133805             
13023              21        5116343      5133805             
13024              21        5116343      5133805             
13025              21       31671033     31732075        SCAF4
13026              21       31671033     31732075        SCAF4
13027              21       31671033     31732075        SCAF4
13028              21       31671033     31732075        SCAF4
13029              21       31671033     31732075        SCAF4
13030              21       31671033     31732075        SCAF4
13031              21       31671033     31732075        SCAF4
13032              21       31671033     31732075        SCAF4
13033              21       31671033     31732075        SCAF4
13034              21       31671033     31732075        SCAF4
13035              21       31671033     31732075        SCAF4
13036              21       31671033     31732075        SCAF4
13037              21       31671033     31732075        SCAF4
13038              21       31671033     31732075        SCAF4
13039              21       31671033     31732075        SCAF4
13040              21       31671033     31732075        SCAF4
13041              21       31671033     31732075        SCAF4
13042              21       31671033     31732075        SCAF4
13043              21       31671033     31732075        SCAF4
13044              21       31671033     31732075        SCAF4
13045              21       31671033     31732075        SCAF4
13046              21       31671033     31732075        SCAF4
13047              21       31671033     31732075        SCAF4
13048              21       31671033     31732075        SCAF4
13049              21       31671033     31732075        SCAF4
13050              21       31671033     31732075        SCAF4
13051              21       31671033     31732075        SCAF4
13052              21       31671033     31732075        SCAF4
13053              21       31671033     31732075        SCAF4
13054              21       31671033     31732075        SCAF4
13055              21       31671033     31732075        SCAF4
13056              21       31671033     31732075        SCAF4
13057              21       31671033     31732075        SCAF4
13058              21       31671033     31732075        SCAF4
13059              21       31671033     31732075        SCAF4
13060              21       31671033     31732075        SCAF4
13061              21       31671033     31732075        SCAF4
13062              21       31671033     31732075        SCAF4
13063              21       31671033     31732075        SCAF4
13064              21       31671033     31732075        SCAF4
13065              21       31671033     31732075        SCAF4
13066              21       31671033     31732075        SCAF4
13067              21       31671033     31732075        SCAF4
13068              21       31671033     31732075        SCAF4
13069              21       31671033     31732075        SCAF4
13070              21       31671033     31732075        SCAF4
13071              21       31671033     31732075        SCAF4
13072              21       31671033     31732075        SCAF4
13073              21       31671033     31732075        SCAF4
13074              21       31671033     31732075        SCAF4
13075              21       31671033     31732075        SCAF4
13076              21       31671033     31732075        SCAF4
13077              21       31671033     31732075        SCAF4
13078              21       31671033     31732075        SCAF4
13079              21       31671033     31732075        SCAF4
13080              21       31671033     31732075        SCAF4
13081              21       31671033     31732075        SCAF4
13082              21       31671033     31732075        SCAF4
13083              21       31671033     31732075        SCAF4
13084              21       31671033     31732075        SCAF4
13085              21       31671033     31732075        SCAF4
13086              21       31671033     31732075        SCAF4
13087              21       31671033     31732075        SCAF4
13088              21       31671033     31732075        SCAF4
13089              21       31671033     31732075        SCAF4
13090              21       31671033     31732075        SCAF4
13091              21       31671033     31732075        SCAF4
13092              21       31671033     31732075        SCAF4
13093              21       31671033     31732075        SCAF4
13094              21       31671033     31732075        SCAF4
13095              21       31671033     31732075        SCAF4
13096              21       31671033     31732075        SCAF4
13097              21       31671033     31732075        SCAF4
13098              21       31671033     31732075        SCAF4
13099              21       31671033     31732075        SCAF4
13100              21       31671033     31732075        SCAF4
13101              21       31671033     31732075        SCAF4
13102              21       31671033     31732075        SCAF4
13103              21       31671033     31732075        SCAF4
13104              21       31671033     31732075        SCAF4
13105              21       31671033     31732075        SCAF4
13106              21       31671033     31732075        SCAF4
13107              21       31671033     31732075        SCAF4
13108              21       41885112     41953890        C2CD2
13109              21       41885112     41953890        C2CD2
13110              21       41885112     41953890        C2CD2
13111              21       41885112     41953890        C2CD2
13112              21       41885112     41953890        C2CD2
13113              21       41885112     41953890        C2CD2
13114              21       41885112     41953890        C2CD2
13115              21       41885112     41953890        C2CD2
13116              21       41885112     41953890        C2CD2
13117              21       41885112     41953890        C2CD2
13118              21       41885112     41953890        C2CD2
13119              21       41885112     41953890        C2CD2
13120              21       41885112     41953890        C2CD2
13121              21       41885112     41953890        C2CD2
13122              21       41885112     41953890        C2CD2
13123              21       41885112     41953890        C2CD2
13124              21       41885112     41953890        C2CD2
13125              21       41885112     41953890        C2CD2
13126              21       41885112     41953890        C2CD2
13127              21       41885112     41953890        C2CD2
13128              21       41885112     41953890        C2CD2
13129              21       41885112     41953890        C2CD2
13130              21       41885112     41953890        C2CD2
13131              21       41885112     41953890        C2CD2
13132              21       41885112     41953890        C2CD2
13133              21       41885112     41953890        C2CD2
13134              21       41885112     41953890        C2CD2
13135              21       41885112     41953890        C2CD2
13136              21       41885112     41953890        C2CD2
13137              21       41885112     41953890        C2CD2
13138              21       41885112     41953890        C2CD2
13139              21       41885112     41953890        C2CD2
13140              21       41885112     41953890        C2CD2
13141              21       41885112     41953890        C2CD2
13142              21       41885112     41953890        C2CD2
13143              21       41885112     41953890        C2CD2
13144              21       41885112     41953890        C2CD2
13145              21       41885112     41953890        C2CD2
13146              21       41885112     41953890        C2CD2
13147              21       41885112     41953890        C2CD2
13148              21       41885112     41953890        C2CD2
13149              21       41885112     41953890        C2CD2
13150              21       41885112     41953890        C2CD2
13151              21       41885112     41953890        C2CD2
13152              21       41885112     41953890        C2CD2
13153              21       41885112     41953890        C2CD2
13154              21       41885112     41953890        C2CD2
13155              21       41885112     41953890        C2CD2
13156              21       41885112     41953890        C2CD2
13157              21       41885112     41953890        C2CD2
13158              21       41885112     41953890        C2CD2
13159              21       41885112     41953890        C2CD2
13160              21       41885112     41953890        C2CD2
13161              21       41885112     41953890        C2CD2
13162              21       41885112     41953890        C2CD2
13163              21       41885112     41953890        C2CD2
13164              21       41885112     41953890        C2CD2
13165              21       41885112     41953890        C2CD2
13166              21       41885112     41953890        C2CD2
13167              21       41885112     41953890        C2CD2
13168              21       41885112     41953890        C2CD2
13169              21       41885112     41953890        C2CD2
13170              21       41885112     41953890        C2CD2
13171              21       41885112     41953890        C2CD2
13172              21       41885112     41953890        C2CD2
13173              21       41885112     41953890        C2CD2
13174              21       34745757     34784886    LINC01426
13175              21       34745757     34784886    LINC01426
13176              21       34745757     34784886    LINC01426
13177              21       34745757     34784886    LINC01426
13178              21       34745757     34784886    LINC01426
13179              21       32291813     32314784         MRAP
13180              21       32291813     32314784         MRAP
13181              21       32291813     32314784         MRAP
13182              21       32291813     32314784         MRAP
13183              21       32291813     32314784         MRAP
13184              21       32291813     32314784         MRAP
13185              21       32291813     32314784         MRAP
13186              21       32291813     32314784         MRAP
13187              21       32291813     32314784         MRAP
13188              21       32291813     32314784         MRAP
13189              21       32291813     32314784         MRAP
13190              21       32291813     32314784         MRAP
13191              21       32291813     32314784         MRAP
13192              21       32291813     32314784         MRAP
13193              21       32291813     32314784         MRAP
13194              21       14019060     14020725       FRG2MP
13195              21       14019060     14020725       FRG2MP
13196              21       14019060     14020725       FRG2MP
13197              21       14019060     14020725       FRG2MP
13198              21        5022493      5040666             
13199              21        5022493      5040666             
13200              21        5022493      5040666             
13201              21        5022493      5040666             
13202              21        5022493      5040666             
13203              21        5022493      5040666             
13204              21        5022493      5040666             
13205              21        5022493      5040666             
13206              21        5022493      5040666             
13207              21        5022493      5040666             
13208              21        5022493      5040666             
13209              21        5022493      5040666             
13210              21        5022493      5040666             
13211              21        5022493      5040666             
13212              21        5022493      5040666             
13213              21        5022493      5040666             
13214              21        5022493      5040666             
13215              21        5022493      5040666             
13216              21        5022493      5040666             
13217              21        5022493      5040666             
13218              21        5022493      5040666             
13219              21        5022493      5040666             
13220              21        5022493      5040666             
13221              21        5022493      5040666             
13222              21        5022493      5040666             
13223              21        5022493      5040666             
13224              21        5022493      5040666             
13225              21        5022493      5040666             
13226              21        5022493      5040666             
13227              21        5022493      5040666             
13228              21        5022493      5040666             
13229              21        5022493      5040666             
13230              21        5022493      5040666             
13231              21       38502445     38502621     SNRPGP13
13232              21       18953264     18967058             
13233              21       18953264     18967058             
13234              21       42508624     42509661             
13235              21       42508624     42509661             
13236              21       42508624     42509661             
13237              21       42508624     42509661             
13238              21       45870854     45873345             
13239              21       43783123     43783573     TMEM97P1
13240              21       15370500     15627342             
13241              21       15370500     15627342             
13242              21       15370500     15627342             
13243              21       15370500     15627342             
13244              21       15370500     15627342             
13245              21       15370500     15627342             
13246              21       15370500     15627342             
13247              21       15370500     15627342             
13248              21       15370500     15627342             
13249              21       15370500     15627342             
13250              21       15370500     15627342             
13251              21       15370500     15627342             
13252              21       15370500     15627342             
13253              21       15370500     15627342             
13254              21       15370500     15627342             
13255              21       15370500     15627342             
13256              21       15370500     15627342             
13257              21       15370500     15627342             
13258              21       15370500     15627342             
13259              21       15370500     15627342             
13260              21       15370500     15627342             
13261              21       15370500     15627342             
13262              21       15370500     15627342             
13263              21       15370500     15627342             
13264              21       15370500     15627342             
13265              21       15370500     15627342             
13266              21       15370500     15627342             
13267              21       15370500     15627342             
13268              21       15370500     15627342             
13269              21       15370500     15627342             
13270              21       15370500     15627342             
13271              21       15370500     15627342             
13272              21       15370500     15627342             
13273              21       15370500     15627342             
13274              21       15370500     15627342             
13275              21       15370500     15627342             
13276              21       15370500     15627342             
13277              21       15370500     15627342             
13278              21       15370500     15627342             
13279              21       15370500     15627342             
13280              21       15370500     15627342             
13281              21       15370500     15627342             
13282              21       15370500     15627342             
13283              21       15370500     15627342             
13284              21       15370500     15627342             
13285              21       15370500     15627342             
13286              21       15370500     15627342             
13287              21       15370500     15627342             
13288              21       15370500     15627342             
13289              21       15370500     15627342             
13290              21       15370500     15627342             
13291              21       15370500     15627342             
13292              21       15370500     15627342             
13293              21       15370500     15627342             
13294              21       15370500     15627342             
13295              21       15370500     15627342             
13296              21       15370500     15627342             
13297              21       15370500     15627342             
13298              21       15370500     15627342             
13299              21       15370500     15627342             
13300              21       15370500     15627342             
13301              21       15370500     15627342             
13302              21       15370500     15627342             
13303              21       15370500     15627342             
13304              21       15370500     15627342             
13305              21       15370500     15627342             
13306              21       15370500     15627342             
13307              21       15370500     15627342             
13308              21       15370500     15627342             
13309              21       15370500     15627342             
13310              21       15370500     15627342             
13311              21       45407386     45410065  COL18A1-AS2
13312              21       45407386     45410065  COL18A1-AS2
13313              21       45407386     45410065  COL18A1-AS2
13314              21       45407386     45410065  COL18A1-AS2
13315              21       14761710     14763090             
13316              21       14761710     14763090             
13317              21       14582202     14598303   SAMSN1-AS1
13318              21       14582202     14598303   SAMSN1-AS1
13319              21       14582202     14598303   SAMSN1-AS1
13320              21       14582202     14598303   SAMSN1-AS1
13321              21       14582202     14598303   SAMSN1-AS1
13322              21       30479699     30480344    KRTAP19-1
13323              21       30436466     30436964   KRTAP13-5P
13324              21       10576292     10576587      CYCSP41
13325              21       10521553     10606140         TPTE
13326              21       10521553     10606140         TPTE
13327              21       10521553     10606140         TPTE
13328              21       10521553     10606140         TPTE
13329              21       10521553     10606140         TPTE
13330              21       10521553     10606140         TPTE
13331              21       10521553     10606140         TPTE
13332              21       10521553     10606140         TPTE
13333              21       10521553     10606140         TPTE
13334              21       10521553     10606140         TPTE
13335              21       10521553     10606140         TPTE
13336              21       10521553     10606140         TPTE
13337              21       10521553     10606140         TPTE
13338              21       10521553     10606140         TPTE
13339              21       10521553     10606140         TPTE
13340              21       10521553     10606140         TPTE
13341              21       10521553     10606140         TPTE
13342              21       10521553     10606140         TPTE
13343              21       10521553     10606140         TPTE
13344              21       10521553     10606140         TPTE
13345              21       10521553     10606140         TPTE
13346              21       10521553     10606140         TPTE
13347              21       10521553     10606140         TPTE
13348              21       10521553     10606140         TPTE
13349              21       10521553     10606140         TPTE
13350              21       10521553     10606140         TPTE
13351              21       10521553     10606140         TPTE
13352              21       10521553     10606140         TPTE
13353              21       10521553     10606140         TPTE
13354              21       10521553     10606140         TPTE
13355              21       10521553     10606140         TPTE
13356              21       10521553     10606140         TPTE
13357              21       10521553     10606140         TPTE
13358              21       10521553     10606140         TPTE
13359              21       10521553     10606140         TPTE
13360              21       10521553     10606140         TPTE
13361              21       10521553     10606140         TPTE
13362              21       10521553     10606140         TPTE
13363              21       10521553     10606140         TPTE
13364              21       10521553     10606140         TPTE
13365              21       10521553     10606140         TPTE
13366              21       10521553     10606140         TPTE
13367              21       10521553     10606140         TPTE
13368              21       10521553     10606140         TPTE
13369              21       10521553     10606140         TPTE
13370              21       10521553     10606140         TPTE
13371              21       10521553     10606140         TPTE
13372              21       10521553     10606140         TPTE
13373              21       10521553     10606140         TPTE
13374              21       10521553     10606140         TPTE
13375              21       10521553     10606140         TPTE
13376              21       10521553     10606140         TPTE
13377              21       10521553     10606140         TPTE
13378              21       10521553     10606140         TPTE
13379              21       10521553     10606140         TPTE
13380              21       10521553     10606140         TPTE
13381              21       10521553     10606140         TPTE
13382              21       10521553     10606140         TPTE
13383              21       10521553     10606140         TPTE
13384              21       10521553     10606140         TPTE
13385              21       10521553     10606140         TPTE
13386              21       10521553     10606140         TPTE
13387              21       10521553     10606140         TPTE
13388              21       10521553     10606140         TPTE
13389              21       10521553     10606140         TPTE
13390              21       10521553     10606140         TPTE
13391              21       10521553     10606140         TPTE
13392              21       10521553     10606140         TPTE
13393              21       10521553     10606140         TPTE
13394              21       10521553     10606140         TPTE
13395              21       10521553     10606140         TPTE
13396              21       10521553     10606140         TPTE
13397              21       10521553     10606140         TPTE
13398              21       10521553     10606140         TPTE
13399              21       10521553     10606140         TPTE
13400              21       10521553     10606140         TPTE
13401              21       10521553     10606140         TPTE
13402              21       10521553     10606140         TPTE
13403              21       10521553     10606140         TPTE
13404              21       10521553     10606140         TPTE
13405              21       10521553     10606140         TPTE
13406              21       10521553     10606140         TPTE
13407              21       10521553     10606140         TPTE
13408              21       10521553     10606140         TPTE
13409              21       10521553     10606140         TPTE
13410              21       10521553     10606140         TPTE
13411              21       10521553     10606140         TPTE
13412              21       10521553     10606140         TPTE
13413              21       10521553     10606140         TPTE
13414              21       10521553     10606140         TPTE
13415              21       10521553     10606140         TPTE
13416              21       10521553     10606140         TPTE
13417              21       10521553     10606140         TPTE
13418              21       10521553     10606140         TPTE
13419              21       10521553     10606140         TPTE
13420              21       10521553     10606140         TPTE
13421              21       10521553     10606140         TPTE
13422              21       10521553     10606140         TPTE
13423              21       24304550     24321377    LINC01689
13424              21       24304550     24321377    LINC01689
13425              21       24304550     24321377    LINC01689
13426              21       24304550     24321377    LINC01689
13427              21       23888798     23890541             
13428              21       23888798     23890541             
13429              21       23888798     23890541             
13430              21        9068361      9129752      TEKT4P2
13431              21        9068361      9129752      TEKT4P2
13432              21        9068361      9129752      TEKT4P2
13433              21        9068361      9129752      TEKT4P2
13434              21        9068361      9129752      TEKT4P2
13435              21        9068361      9129752      TEKT4P2
13436              21        9068361      9129752      TEKT4P2
13437              21        9068361      9129752      TEKT4P2
13438              21        9068361      9129752      TEKT4P2
13439              21        9068361      9129752      TEKT4P2
13440              21        9053122      9059060             
13441              21        9053122      9059060             
13442              21       23390258     23390996     EEF1A1P1
13443              21        8857260      8880976             
13444              21        8857260      8880976             
13445              21        8857260      8880976             
13446              21        8857260      8880976             
13447              21        8857260      8880976             
13448              21        8857260      8880976             
13449              21        8857260      8880976             
13450              21        8857260      8880976             
13451              21        8857260      8880976             
13452              21       31452466     31453223             
13453              21       30209151     30211783    LINC00307
13454              21       30209151     30211783    LINC00307
13455              21       30209151     30211783    LINC00307
13456              21       30165564     30166756       CLDN17
13457              21       10357400     10358620       VN1R7P
13458              21       10357400     10358620       VN1R7P
13459              21       25582770     25583326             
13460              21       10330732     10331537      EIF3FP1
13461              21        9810501      9810848             
13462              21        9369285      9376645             
13463              21        9369285      9376645             
13464              21        9369285      9376645             
13465              21        9369285      9376645             
13466              21        9325013      9368775             
13467              21        9325013      9368775             
13468              21        9325013      9368775             
13469              21        9325013      9368775             
13470              21        9325013      9368775             
13471              21        9325013      9368775             
13472              21        9325013      9368775             
13473              21        9325013      9368775             
13474              21        9325013      9368775             
13475              21        9325013      9368775             
13476              21        9325013      9368775             
13477              21        9325013      9368775             
13478              21        9325013      9368775             
13479              21        9325013      9368775             
13480              21        9325013      9368775             
13481              21        9325013      9368775             
13482              21        9325013      9368775             
13483              21        9325013      9368775             
13484              21        9325013      9368775             
13485              21        9325013      9368775             
13486              21       25055535     25069906             
13487              21       25055535     25069906             
13488              21       25055535     25069906             
13489              21       25055535     25069906             
13490              21       25031005     25031529             
13491              21       24155170     24188342             
13492              21       24155170     24188342             
13493              21       24155170     24188342             
13494              21        9088188      9088391             
13495              21        9026821      9027329             
13496              21        8845566      8846646      MTCO1P1
13497              21        8801362      8801880     SNX18P10
13498              21        8759077      8761335    LINC01666
13499              21        8759077      8761335    LINC01666
13500              21        8759077      8761335    LINC01666
13501              21        8759077      8761335    LINC01666
13502              21        8701461      8701562             
13503              21        8680538      8680934             
13504              21        8603547      8603984      RPSAP68
13505              21        8437629      8438551             
13506              21       14007134     14014880     PPP6R2P1
13507              21       14007134     14014880     PPP6R2P1
13508              21       14007134     14014880     PPP6R2P1
13509              21       14007134     14014880     PPP6R2P1
13510              21       14007134     14014880     PPP6R2P1
13511              21       14007134     14014880     PPP6R2P1
13512              21       14007134     14014880     PPP6R2P1
13513              21       14007134     14014880     PPP6R2P1
13514              21       14007134     14014880     PPP6R2P1
13515              21       14007134     14014880     PPP6R2P1
13516              21       14007134     14014880     PPP6R2P1
13517              21       30537278     30537381  KRTAP19-11P
13518              21       25585656     25607517       MRPL39
13519              21       25585656     25607517       MRPL39
13520              21       25585656     25607517       MRPL39
13521              21       25585656     25607517       MRPL39
13522              21       25585656     25607517       MRPL39
13523              21       25585656     25607517       MRPL39
13524              21       25585656     25607517       MRPL39
13525              21       25585656     25607517       MRPL39
13526              21       25585656     25607517       MRPL39
13527              21       25585656     25607517       MRPL39
13528              21       25585656     25607517       MRPL39
13529              21       25585656     25607517       MRPL39
13530              21       25585656     25607517       MRPL39
13531              21       25585656     25607517       MRPL39
13532              21       25585656     25607517       MRPL39
13533              21       25585656     25607517       MRPL39
13534              21       25585656     25607517       MRPL39
13535              21       25585656     25607517       MRPL39
13536              21       25585656     25607517       MRPL39
13537              21       25585656     25607517       MRPL39
13538              21       25585656     25607517       MRPL39
13539              21       25585656     25607517       MRPL39
13540              21       25585656     25607517       MRPL39
13541              21       25585656     25607517       MRPL39
13542              21       25585656     25607517       MRPL39
13543              21       25585656     25607517       MRPL39
13544              21       25585656     25607517       MRPL39
13545              21       25585656     25607517       MRPL39
13546              21       25585656     25607517       MRPL39
13547              21       25561909     25575168     MIR155HG
13548              21       25561909     25575168     MIR155HG
13549              21       25561909     25575168     MIR155HG
13550              21       25561909     25575168     MIR155HG
13551              21        9913117      9914846             
13552              21        9913117      9914846             
13553              21        9913117      9914846             
13554              21        9913117      9914846             
13555              21        9913117      9914846             
13556              21        9975017     10119309             
13557              21        9975017     10119309             
13558              21        9975017     10119309             
13559              21        9975017     10119309             
13560              21        9975017     10119309             
13561              21        9975017     10119309             
13562              21        9975017     10119309             
13563              21        9975017     10119309             
13564              21        9975017     10119309             
13565              21        9975017     10119309             
13566              21        9975017     10119309             
13567              21        9975017     10119309             
13568              21       10028361     10029855             
13569              21       10122273     10129029             
13570              21       10122273     10129029             
13571              21       42599280     42615058    LINC01671
13572              21       42599280     42615058    LINC01671
13573              21       26393635     26569252    CYYR1-AS1
13574              21       26393635     26569252    CYYR1-AS1
13575              21       26393635     26569252    CYYR1-AS1
13576              21       26393635     26569252    CYYR1-AS1
13577              21       26393635     26569252    CYYR1-AS1
13578              21       26393635     26569252    CYYR1-AS1
13579              21       26393635     26569252    CYYR1-AS1
13580              21       26393635     26569252    CYYR1-AS1
13581              21       15694300     15696581     RAD23BLP
13582              21       15694300     15696581     RAD23BLP
13583              21       15067070     15067837             
13584              21       15067070     15067837             
13585              21       45376191     45376382      MTCO1P3
13586              21       32306464     32308737             
13587              21       32306464     32308737             
13588              21       39006648     39011329             
13589              21       39006648     39011329             
13590              21       39006648     39011329             
13591              21       32259804     32261585             
13592              21       38805307     38824955         ETS2
13593              21       38805307     38824955         ETS2
13594              21       38805307     38824955         ETS2
13595              21       38805307     38824955         ETS2
13596              21       38805307     38824955         ETS2
13597              21       38805307     38824955         ETS2
13598              21       38805307     38824955         ETS2
13599              21       38805307     38824955         ETS2
13600              21       38805307     38824955         ETS2
13601              21       38805307     38824955         ETS2
13602              21       38805307     38824955         ETS2
13603              21       38805307     38824955         ETS2
13604              21       38805307     38824955         ETS2
13605              21       38805307     38824955         ETS2
13606              21       38805307     38824955         ETS2
13607              21       38805307     38824955         ETS2
13608              21       38805307     38824955         ETS2
13609              21       38805307     38824955         ETS2
13610              21       38805307     38824955         ETS2
13611              21       38805307     38824955         ETS2
13612              21       38805307     38824955         ETS2
13613              21       38805307     38824955         ETS2
13614              21       38805307     38824955         ETS2
13615              21       38805307     38824955         ETS2
13616              21       38805307     38824955         ETS2
13617              21       38805307     38824955         ETS2
13618              21       38805307     38824955         ETS2
13619              21       38805307     38824955         ETS2
13620              21       38805307     38824955         ETS2
13621              21       38805307     38824955         ETS2
13622              21       38805307     38824955         ETS2
13623              21       38805307     38824955         ETS2
13624              21       38805307     38824955         ETS2
13625              21       38805307     38824955         ETS2
13626              21       42062959     42143453       UMODL1
13627              21       42062959     42143453       UMODL1
13628              21       42062959     42143453       UMODL1
13629              21       42062959     42143453       UMODL1
13630              21       42062959     42143453       UMODL1
13631              21       42062959     42143453       UMODL1
13632              21       42062959     42143453       UMODL1
13633              21       42062959     42143453       UMODL1
13634              21       42062959     42143453       UMODL1
13635              21       42062959     42143453       UMODL1
13636              21       42062959     42143453       UMODL1
13637              21       42062959     42143453       UMODL1
13638              21       42062959     42143453       UMODL1
13639              21       42062959     42143453       UMODL1
13640              21       42062959     42143453       UMODL1
13641              21       42062959     42143453       UMODL1
13642              21       42062959     42143453       UMODL1
13643              21       42062959     42143453       UMODL1
13644              21       42062959     42143453       UMODL1
13645              21       42062959     42143453       UMODL1
13646              21       42062959     42143453       UMODL1
13647              21       42062959     42143453       UMODL1
13648              21       42062959     42143453       UMODL1
13649              21       42062959     42143453       UMODL1
13650              21       42062959     42143453       UMODL1
13651              21       42062959     42143453       UMODL1
13652              21       42062959     42143453       UMODL1
13653              21       42062959     42143453       UMODL1
13654              21       42062959     42143453       UMODL1
13655              21       42062959     42143453       UMODL1
13656              21       42062959     42143453       UMODL1
13657              21       42062959     42143453       UMODL1
13658              21       42062959     42143453       UMODL1
13659              21       42062959     42143453       UMODL1
13660              21       42062959     42143453       UMODL1
13661              21       42062959     42143453       UMODL1
13662              21       42062959     42143453       UMODL1
13663              21       42062959     42143453       UMODL1
13664              21       42062959     42143453       UMODL1
13665              21       42062959     42143453       UMODL1
13666              21       42062959     42143453       UMODL1
13667              21       42062959     42143453       UMODL1
13668              21       42062959     42143453       UMODL1
13669              21       42062959     42143453       UMODL1
13670              21       42062959     42143453       UMODL1
13671              21       42062959     42143453       UMODL1
13672              21       42062959     42143453       UMODL1
13673              21       42062959     42143453       UMODL1
13674              21       42062959     42143453       UMODL1
13675              21       42062959     42143453       UMODL1
13676              21       42062959     42143453       UMODL1
13677              21       42062959     42143453       UMODL1
13678              21       42062959     42143453       UMODL1
13679              21       42062959     42143453       UMODL1
13680              21       42062959     42143453       UMODL1
13681              21       42062959     42143453       UMODL1
13682              21       42062959     42143453       UMODL1
13683              21       42062959     42143453       UMODL1
13684              21       42062959     42143453       UMODL1
13685              21       42062959     42143453       UMODL1
13686              21       42062959     42143453       UMODL1
13687              21       42062959     42143453       UMODL1
13688              21       42062959     42143453       UMODL1
13689              21       42062959     42143453       UMODL1
13690              21       42062959     42143453       UMODL1
13691              21       42062959     42143453       UMODL1
13692              21       42062959     42143453       UMODL1
13693              21       42062959     42143453       UMODL1
13694              21       42062959     42143453       UMODL1
13695              21       42062959     42143453       UMODL1
13696              21       42062959     42143453       UMODL1
13697              21       42062959     42143453       UMODL1
13698              21       42062959     42143453       UMODL1
13699              21       42062959     42143453       UMODL1
13700              21       42062959     42143453       UMODL1
13701              21       42062959     42143453       UMODL1
13702              21       42062959     42143453       UMODL1
13703              21       42062959     42143453       UMODL1
13704              21       42062959     42143453       UMODL1
13705              21       42062959     42143453       UMODL1
13706              21       42062959     42143453       UMODL1
13707              21       42062959     42143453       UMODL1
13708              21       42062959     42143453       UMODL1
13709              21       42062959     42143453       UMODL1
13710              21       42062959     42143453       UMODL1
13711              21       42062959     42143453       UMODL1
13712              21       42062959     42143453       UMODL1
13713              21       42062959     42143453       UMODL1
13714              21       42062959     42143453       UMODL1
13715              21       42062959     42143453       UMODL1
13716              21       42062959     42143453       UMODL1
13717              21       42062959     42143453       UMODL1
13718              21       42062959     42143453       UMODL1
13719              21       42062959     42143453       UMODL1
13720              21       42062959     42143453       UMODL1
13721              21       42062959     42143453       UMODL1
13722              21       42062959     42143453       UMODL1
13723              21       42062959     42143453       UMODL1
13724              21       42062959     42143453       UMODL1
13725              21       42062959     42143453       UMODL1
13726              21       42062959     42143453       UMODL1
13727              21       42062959     42143453       UMODL1
13728              21       42062959     42143453       UMODL1
13729              21       42062959     42143453       UMODL1
13730              21       42062959     42143453       UMODL1
13731              21       42062959     42143453       UMODL1
13732              21       42062959     42143453       UMODL1
13733              21       42062959     42143453       UMODL1
13734              21       42062959     42143453       UMODL1
13735              21       42062959     42143453       UMODL1
13736              21       42062959     42143453       UMODL1
13737              21       42062959     42143453       UMODL1
13738              21       42062959     42143453       UMODL1
13739              21       42062959     42143453       UMODL1
13740              21       42062959     42143453       UMODL1
13741              21       42062959     42143453       UMODL1
13742              21       42062959     42143453       UMODL1
13743              21       42062959     42143453       UMODL1
13744              21       42062959     42143453       UMODL1
13745              21       42062959     42143453       UMODL1
13746              21       42062959     42143453       UMODL1
13747              21       42062959     42143453       UMODL1
13748              21       42062959     42143453       UMODL1
13749              21       42062959     42143453       UMODL1
13750              21       42062959     42143453       UMODL1
13751              21       42062959     42143453       UMODL1
13752              21       42062959     42143453       UMODL1
13753              21       42062959     42143453       UMODL1
13754              21       42062959     42143453       UMODL1
13755              21       42062959     42143453       UMODL1
13756              21       42062959     42143453       UMODL1
13757              21       42062959     42143453       UMODL1
13758              21       42062959     42143453       UMODL1
13759              21       42062959     42143453       UMODL1
13760              21       42062959     42143453       UMODL1
13761              21       42062959     42143453       UMODL1
13762              21       42062959     42143453       UMODL1
13763              21       42062959     42143453       UMODL1
13764              21       42062959     42143453       UMODL1
13765              21       42062959     42143453       UMODL1
13766              21       42062959     42143453       UMODL1
13767              21       42062959     42143453       UMODL1
13768              21       42062959     42143453       UMODL1
13769              21       42062959     42143453       UMODL1
13770              21       42062959     42143453       UMODL1
13771              21       42062959     42143453       UMODL1
13772              21       42062959     42143453       UMODL1
13773              21       42062959     42143453       UMODL1
13774              21       42062959     42143453       UMODL1
13775              21       42062959     42143453       UMODL1
13776              21       42062959     42143453       UMODL1
13777              21        5130871      5154734             
13778              21        5130871      5154734             
13779              21        5130871      5154734             
13780              21        5130871      5154734             
13781              21        5130871      5154734             
13782              21        5130871      5154734             
13783              21        5130871      5154734             
13784              21        5130871      5154734             
13785              21        5130871      5154734             
13786              21        5130871      5154734             
13787              21        5130871      5154734             
13788              21        5130871      5154734             
13789              21        5130871      5154734             
13790              21        5130871      5154734             
13791              21        5130871      5154734             
13792              21        5130871      5154734             
13793              21        5130871      5154734             
13794              21        5130871      5154734             
13795              21        5130871      5154734             
13796              21        5130871      5154734             
13797              21        5130871      5154734             
13798              21        5130871      5154734             
13799              21        5130871      5154734             
13800              21        5130871      5154734             
13801              21        5130871      5154734             
13802              21        5130871      5154734             
13803              21        5130871      5154734             
13804              21        5130871      5154734             
13805              21        5130871      5154734             
13806              21        5130871      5154734             
13807              21        5130871      5154734             
13808              21        5130871      5154734             
13809              21        5130871      5154734             
13810              21        5130871      5154734             
13811              21        5130871      5154734             
13812              21        5130871      5154734             
13813              21        5130871      5154734             
13814              21        5130871      5154734             
13815              21        5130871      5154734             
13816              21        5130871      5154734             
13817              21        5130871      5154734             
13818              21        5130871      5154734             
13819              21        5130871      5154734             
13820              21        5130871      5154734             
13821              21        5130871      5154734             
13822              21        5130871      5154734             
13823              21        5130871      5154734             
13824              21        5130871      5154734             
13825              21        5130871      5154734             
13826              21        5130871      5154734             
13827              21        5130871      5154734             
13828              21        5079294      5128425             
13829              21        5079294      5128425             
13830              21        5079294      5128425             
13831              21        5079294      5128425             
13832              21        5079294      5128425             
13833              21        5079294      5128425             
13834              21        5079294      5128425             
13835              21        5079294      5128425             
13836              21        5079294      5128425             
13837              21        5079294      5128425             
13838              21        5079294      5128425             
13839              21        5079294      5128425             
13840              21        5079294      5128425             
13841              21        5079294      5128425             
13842              21        5079294      5128425             
13843              21        5079294      5128425             
13844              21        5079294      5128425             
13845              21        5079294      5128425             
13846              21        5079294      5128425             
13847              21        5079294      5128425             
13848              21        5079294      5128425             
13849              21        5079294      5128425             
13850              21        5079294      5128425             
13851              21        5079294      5128425             
13852              21        5079294      5128425             
13853              21        5079294      5128425             
13854              21        5079294      5128425             
13855              21        5079294      5128425             
13856              21        5079294      5128425             
13857              21        5079294      5128425             
13858              21        5079294      5128425             
13859              21        5079294      5128425             
13860              21        5079294      5128425             
13861              21        5079294      5128425             
13862              21        5079294      5128425             
13863              21        5079294      5128425             
13864              21        5079294      5128425             
13865              21        5079294      5128425             
13866              21        5079294      5128425             
13867              21        5079294      5128425             
13868              21        5079294      5128425             
13869              21        5079294      5128425             
13870              21        5079294      5128425             
13871              21        5079294      5128425             
13872              21        5079294      5128425             
13873              21        5079294      5128425             
13874              21        5079294      5128425             
13875              21        5079294      5128425             
13876              21        5079294      5128425             
13877              21        5079294      5128425             
13878              21        5079294      5128425             
13879              21        5079294      5128425             
13880              21        5079294      5128425             
13881              21        5079294      5128425             
13882              21        5079294      5128425             
13883              21       13038160     13067033   ANKRD30BP2
13884              21       13038160     13067033   ANKRD30BP2
13885              21       13038160     13067033   ANKRD30BP2
13886              21       13038160     13067033   ANKRD30BP2
13887              21       13038160     13067033   ANKRD30BP2
13888              21       13038160     13067033   ANKRD30BP2
13889              21       13038160     13067033   ANKRD30BP2
13890              21       13038160     13067033   ANKRD30BP2
13891              21       13038160     13067033   ANKRD30BP2
13892              21       13038160     13067033   ANKRD30BP2
13893              21       13038160     13067033   ANKRD30BP2
13894              21       13038160     13067033   ANKRD30BP2
13895              21       13038160     13067033   ANKRD30BP2
13896              21       13038160     13067033   ANKRD30BP2
13897              21       13038160     13067033   ANKRD30BP2
13898              21       13038160     13067033   ANKRD30BP2
13899              21       13038160     13067033   ANKRD30BP2
13900              21       13038160     13067033   ANKRD30BP2
13901              21       13038160     13067033   ANKRD30BP2
13902              21       13038160     13067033   ANKRD30BP2
13903              21       13038160     13067033   ANKRD30BP2
13904              21       13038160     13067033   ANKRD30BP2
13905              21       10640028     10640338             
13906              21       38204141     38206080             
13907              21       38204141     38206080             
13908              21       30880644     30881555    KRTAP11-1
13909              21       30812697     30813252     KRTAP8-1
13910              21       30741780     30742595   KRTAP21-4P
13911              21       37607376     37916446        KCNJ6
13912              21       37607376     37916446        KCNJ6
13913              21       37607376     37916446        KCNJ6
13914              21       37607376     37916446        KCNJ6
13915              21       37717102     37719569    KCNJ6-AS1
13916              21       37717102     37719569    KCNJ6-AS1
13917              21       30590105     30590397    KRTAP22-2
13918              21       30592440     30593075     KRTAP6-3
13919              21       46690764     46691226     RPL23AP4
13920              21       30598590     30598902     KRTAP6-2
13921              21       30601087     30601382    KRTAP22-1
13922              21       30613431     30613930     KRTAP6-1
13923              21       30616425     30616699    KRTAP20-1
13924              21       30620627     30620850    KRTAP20-4
13925              21       44978832     44979274             
13926              21       44989864     44994086    LINC00163
13927              21       44989864     44994086    LINC00163
13928              21       44989864     44994086    LINC00163
13929              21       44989864     44994086    LINC00163
13930              21       44994362     44995185    LINC00165
13931              21       44999208     45004727       PICSAR
13932              21       44999208     45004727       PICSAR
13933              21       45070952     45074165       SSR4P1
13934              21       45070952     45074165       SSR4P1
13935              21       45070952     45074165       SSR4P1
13936              21       45070952     45074165       SSR4P1
13937              21       43996322     43996420   RNU6-1150P
13938              21       23432181     23432282             
13939              21        5597390      5597490             
13940              21        7474394      7474494             
13941              21       13047583     13047689    RNU6-614P
13942              21       16539828     16539911     MIRLET7C
13943              21       25101132     25101415    RN7SKP236
13944              21       33918995     33919338    RN7SL740P
13945              21       36066545     36066652    RNU6-992P
13946              21       31664306     31664482             
13947              21       43919795     43919901    RNU6-859P
13948              21       32563075     32563210    RNA5SP490
13949              21       30375294     30375378      MIR4327
13950              21       39344537     39344628             
13951              21       26190707     26190813    RNU6-926P
13952              21       17431547     17431647    RNU6-113P
13953              21        9646825      9647000             
13954              21       41167557     41167629      MIR3197
13955              21       40513144     40513279             
13956              21       16539089     16539169       MIR99A
13957              21       43609887     43609989      MIR6070
13958              21        8388362      8388453    MIR6724-3
13959              21       14075950     14076038             
13960              21       41882205     41882300             
13961              21       38894785     38894867             
13962              21        8212572      8212724     RNA5-8S5
13963              21        9902344      9902627     RN7SL52P
13964              21       39447010     39447069      MIR6508
13965              21        9907916      9908010             
13966              21       13406384     13406460    MIR3156-3
13967              21       32377187     32377322     SNORA80A
13968              21       29180425     29180639             
13969              21       14070871     14070986    RNA5SP488
13970              21       32538299     32538434             
13971              21       18686090     18686164      MIR548X
13972              21       22205192     22205332     RNU4-45P
13973              21       13968489     13968595    RNU6-954P
13974              21       37215605     37215903    RN7SL678P
13975              21        8439823      8439975     RNA5-8S5
13976              21        8395607      8395759     RNA5-8S5
13977              21       17576798     17576906             
13978              21       46525618     46525722    RNU6-396P
                            gene_biotype
1                                 snoRNA
2                               misc_RNA
3                               misc_RNA
4                               misc_RNA
5                              antisense
6                              antisense
7                         protein_coding
8                         protein_coding
9                         protein_coding
10                        protein_coding
11                        protein_coding
12                        protein_coding
13                        protein_coding
14                        protein_coding
15                        protein_coding
16                        protein_coding
17                        protein_coding
18                        protein_coding
19                        protein_coding
20                        protein_coding
21                        protein_coding
22                        protein_coding
23                        protein_coding
24                        protein_coding
25                        protein_coding
26                        protein_coding
27                        protein_coding
28                        protein_coding
29                        protein_coding
30                        protein_coding
31                        protein_coding
32                        protein_coding
33                        protein_coding
34                        protein_coding
35                        protein_coding
36                        protein_coding
37                        protein_coding
38                        protein_coding
39                        protein_coding
40                        protein_coding
41                        protein_coding
42                        protein_coding
43                        protein_coding
44                        protein_coding
45                        protein_coding
46                        protein_coding
47                        protein_coding
48                        protein_coding
49                        protein_coding
50                        protein_coding
51                        protein_coding
52                        protein_coding
53                        protein_coding
54                        protein_coding
55                        protein_coding
56                        protein_coding
57                        protein_coding
58                        protein_coding
59                        protein_coding
60                        protein_coding
61                        protein_coding
62                        protein_coding
63                        protein_coding
64                        protein_coding
65                        protein_coding
66                        protein_coding
67                        protein_coding
68                        protein_coding
69                        protein_coding
70                        protein_coding
71                        protein_coding
72                        protein_coding
73                        protein_coding
74                        protein_coding
75                        protein_coding
76                        protein_coding
77                        protein_coding
78                        protein_coding
79                        protein_coding
80                        protein_coding
81                        protein_coding
82                        protein_coding
83                        protein_coding
84                        protein_coding
85                        protein_coding
86                        protein_coding
87                        protein_coding
88                        protein_coding
89                        protein_coding
90                        protein_coding
91                        protein_coding
92                        protein_coding
93                        protein_coding
94                        protein_coding
95                        protein_coding
96                        protein_coding
97                        protein_coding
98                        protein_coding
99                        protein_coding
100                       protein_coding
101                       protein_coding
102                       protein_coding
103                       protein_coding
104                       protein_coding
105                       protein_coding
106                       protein_coding
107                       protein_coding
108                       protein_coding
109                       protein_coding
110                       protein_coding
111                       protein_coding
112                       protein_coding
113                       protein_coding
114                       protein_coding
115                       protein_coding
116                       protein_coding
117                       protein_coding
118                       protein_coding
119                       protein_coding
120                       protein_coding
121                       protein_coding
122                       protein_coding
123                       protein_coding
124                       protein_coding
125                       protein_coding
126                       protein_coding
127                       protein_coding
128                       protein_coding
129                       protein_coding
130                       protein_coding
131                       protein_coding
132                       protein_coding
133                       protein_coding
134                       protein_coding
135                       protein_coding
136                       protein_coding
137                       protein_coding
138                       protein_coding
139                       protein_coding
140                       protein_coding
141                       protein_coding
142                       protein_coding
143                       protein_coding
144                       protein_coding
145                       protein_coding
146                       protein_coding
147                       protein_coding
148                       protein_coding
149                       protein_coding
150                       protein_coding
151                       protein_coding
152                       protein_coding
153                       protein_coding
154                       protein_coding
155                       protein_coding
156                       protein_coding
157                       protein_coding
158                       protein_coding
159                       protein_coding
160                       protein_coding
161                       protein_coding
162                       protein_coding
163                       protein_coding
164                       protein_coding
165                       protein_coding
166                       protein_coding
167                       protein_coding
168                       protein_coding
169                       protein_coding
170                       protein_coding
171                       protein_coding
172                       protein_coding
173                       protein_coding
174                       protein_coding
175                       protein_coding
176                       protein_coding
177                       protein_coding
178                       protein_coding
179                       protein_coding
180                       protein_coding
181                       protein_coding
182                       protein_coding
183                       protein_coding
184                       protein_coding
185                       protein_coding
186                       protein_coding
187                       protein_coding
188                       protein_coding
189                       protein_coding
190                       protein_coding
191                       protein_coding
192                       protein_coding
193                       protein_coding
194                       protein_coding
195                       protein_coding
196                       protein_coding
197                       protein_coding
198                       protein_coding
199                       protein_coding
200                       protein_coding
201                       protein_coding
202                       protein_coding
203                                 rRNA
204                                snRNA
205                           pseudogene
206                           pseudogene
207                                miRNA
208                                snRNA
209                             misc_RNA
210                                snRNA
211                                miRNA
212                       protein_coding
213                       protein_coding
214                       protein_coding
215                       protein_coding
216                       protein_coding
217                       protein_coding
218                       protein_coding
219                       protein_coding
220                       protein_coding
221                       protein_coding
222                       protein_coding
223                       protein_coding
224                       protein_coding
225                       protein_coding
226                       protein_coding
227                       protein_coding
228                       protein_coding
229                       protein_coding
230                       protein_coding
231                       protein_coding
232                       protein_coding
233                       protein_coding
234                       protein_coding
235                       protein_coding
236                       protein_coding
237                       protein_coding
238                       protein_coding
239                       protein_coding
240                       protein_coding
241                       protein_coding
242                       protein_coding
243                       protein_coding
244                       protein_coding
245                       protein_coding
246                       protein_coding
247                       protein_coding
248                       protein_coding
249                       protein_coding
250                       protein_coding
251                       protein_coding
252                       protein_coding
253                       protein_coding
254                       protein_coding
255                       protein_coding
256                       protein_coding
257                       protein_coding
258                       protein_coding
259                       protein_coding
260                       protein_coding
261                       protein_coding
262                       protein_coding
263                       protein_coding
264                       protein_coding
265                       protein_coding
266                       protein_coding
267                       protein_coding
268                       protein_coding
269                       protein_coding
270                       protein_coding
271                       protein_coding
272                       protein_coding
273                       protein_coding
274                       protein_coding
275                       protein_coding
276                       protein_coding
277                       protein_coding
278                       protein_coding
279                       protein_coding
280                       protein_coding
281                       protein_coding
282                       protein_coding
283                       protein_coding
284                       protein_coding
285                       protein_coding
286                       protein_coding
287                       protein_coding
288                       protein_coding
289                       protein_coding
290                       protein_coding
291                       protein_coding
292                       protein_coding
293                       protein_coding
294                       protein_coding
295                       protein_coding
296                       protein_coding
297                       protein_coding
298                       protein_coding
299                       protein_coding
300                       protein_coding
301                       protein_coding
302                       protein_coding
303                       protein_coding
304                       protein_coding
305                       protein_coding
306                       protein_coding
307                       protein_coding
308                       protein_coding
309                       protein_coding
310                       protein_coding
311                       protein_coding
312                       protein_coding
313                       protein_coding
314                       protein_coding
315                       protein_coding
316                       protein_coding
317                       protein_coding
318                       protein_coding
319                       protein_coding
320                       protein_coding
321                       protein_coding
322                       protein_coding
323                       protein_coding
324                       protein_coding
325                       protein_coding
326                       protein_coding
327                       protein_coding
328                       protein_coding
329                       protein_coding
330                       protein_coding
331                       protein_coding
332                       protein_coding
333                       protein_coding
334                       protein_coding
335                       protein_coding
336                       protein_coding
337                       protein_coding
338                       protein_coding
339                       protein_coding
340                       protein_coding
341                       protein_coding
342                       protein_coding
343                       protein_coding
344                       protein_coding
345                       protein_coding
346                       protein_coding
347                       protein_coding
348                       protein_coding
349                       protein_coding
350                       protein_coding
351                       protein_coding
352                       protein_coding
353                       protein_coding
354                       protein_coding
355                       protein_coding
356                       protein_coding
357                       protein_coding
358                       protein_coding
359                       protein_coding
360                       protein_coding
361                       protein_coding
362                       protein_coding
363                       protein_coding
364                       protein_coding
365                       protein_coding
366                       protein_coding
367                       protein_coding
368                       protein_coding
369                       protein_coding
370                       protein_coding
371                       protein_coding
372                       protein_coding
373                       protein_coding
374                       protein_coding
375                       protein_coding
376                       protein_coding
377                       protein_coding
378                       protein_coding
379                       protein_coding
380                       protein_coding
381                       protein_coding
382                       protein_coding
383                       protein_coding
384                       protein_coding
385                       protein_coding
386                       protein_coding
387                       protein_coding
388                       protein_coding
389                       protein_coding
390                       protein_coding
391                       protein_coding
392                       protein_coding
393                       protein_coding
394                       protein_coding
395                       protein_coding
396                       protein_coding
397                       protein_coding
398                       protein_coding
399                       protein_coding
400                       protein_coding
401                       protein_coding
402                       protein_coding
403                       protein_coding
404                       protein_coding
405                       protein_coding
406                       protein_coding
407                       protein_coding
408                       protein_coding
409                       protein_coding
410                       protein_coding
411                       protein_coding
412                                snRNA
413                                miRNA
414                                miRNA
415                               snoRNA
416                                miRNA
417                                miRNA
418                                miRNA
419                            antisense
420                            antisense
421                       protein_coding
422                       protein_coding
423                            antisense
424                       protein_coding
425                       protein_coding
426                       protein_coding
427                       protein_coding
428                       protein_coding
429                       protein_coding
430                       protein_coding
431                       protein_coding
432                       protein_coding
433                       protein_coding
434                       protein_coding
435                       protein_coding
436                       protein_coding
437                       protein_coding
438                       protein_coding
439                       protein_coding
440                       protein_coding
441                       protein_coding
442                       protein_coding
443                       protein_coding
444                       protein_coding
445                       protein_coding
446                       protein_coding
447                       protein_coding
448                       protein_coding
449                       protein_coding
450                       protein_coding
451                       protein_coding
452                       protein_coding
453                       protein_coding
454                       protein_coding
455                       protein_coding
456                       protein_coding
457                       protein_coding
458                       protein_coding
459                       protein_coding
460                       protein_coding
461                       protein_coding
462                       protein_coding
463                       protein_coding
464                       protein_coding
465                       protein_coding
466                       protein_coding
467                       protein_coding
468                       protein_coding
469                       protein_coding
470                       protein_coding
471                       protein_coding
472                       protein_coding
473                       protein_coding
474                       protein_coding
475                       protein_coding
476                       protein_coding
477                       protein_coding
478                       protein_coding
479                       protein_coding
480                       protein_coding
481                       protein_coding
482                       protein_coding
483                       protein_coding
484                       protein_coding
485                       protein_coding
486                       protein_coding
487                       protein_coding
488                       protein_coding
489                       protein_coding
490                       protein_coding
491                       protein_coding
492                       protein_coding
493                       protein_coding
494                       protein_coding
495                       protein_coding
496                       protein_coding
497                       protein_coding
498                       protein_coding
499                       protein_coding
500                       protein_coding
501                       protein_coding
502                       protein_coding
503                       protein_coding
504                       protein_coding
505                       protein_coding
506                       protein_coding
507                       protein_coding
508                       protein_coding
509                       protein_coding
510                       protein_coding
511                       protein_coding
512                       protein_coding
513                       protein_coding
514                       protein_coding
515                       protein_coding
516                       protein_coding
517                       protein_coding
518                       protein_coding
519                       protein_coding
520                       protein_coding
521                       protein_coding
522                       protein_coding
523                       protein_coding
524                       protein_coding
525                       protein_coding
526                       protein_coding
527                       protein_coding
528                       protein_coding
529                       protein_coding
530                       protein_coding
531                       protein_coding
532                       protein_coding
533                       protein_coding
534                       protein_coding
535                       protein_coding
536                       protein_coding
537                       protein_coding
538                       protein_coding
539                       protein_coding
540                       protein_coding
541                       protein_coding
542                       protein_coding
543                       protein_coding
544                       protein_coding
545                       protein_coding
546                       protein_coding
547                       protein_coding
548                       protein_coding
549                       protein_coding
550                       protein_coding
551                       protein_coding
552                       protein_coding
553                            antisense
554                            antisense
555                            antisense
556                            antisense
557                             misc_RNA
558                             misc_RNA
559                            antisense
560                            antisense
561                              lincRNA
562                              lincRNA
563                              lincRNA
564                              lincRNA
565                              lincRNA
566                              lincRNA
567                              lincRNA
568                              lincRNA
569                              lincRNA
570                       sense_intronic
571                       sense_intronic
572                       sense_intronic
573                       protein_coding
574                       protein_coding
575                       protein_coding
576                       protein_coding
577                       protein_coding
578                       protein_coding
579                       protein_coding
580                       protein_coding
581                       protein_coding
582                       protein_coding
583                       protein_coding
584                       protein_coding
585                       protein_coding
586                       protein_coding
587                       protein_coding
588                       protein_coding
589                       protein_coding
590                       protein_coding
591                       protein_coding
592                       protein_coding
593                       protein_coding
594                       protein_coding
595                       protein_coding
596                       protein_coding
597                       protein_coding
598                       protein_coding
599                       protein_coding
600                       protein_coding
601                       protein_coding
602                       protein_coding
603                       protein_coding
604                       protein_coding
605                       protein_coding
606                       protein_coding
607                       protein_coding
608                       protein_coding
609                       protein_coding
610                       protein_coding
611                       protein_coding
612                       protein_coding
613                       protein_coding
614                       protein_coding
615                       protein_coding
616                       protein_coding
617                       protein_coding
618                       sense_intronic
619                              lincRNA
620                              lincRNA
621                              lincRNA
622                              lincRNA
623                              lincRNA
624                              lincRNA
625                              lincRNA
626                              lincRNA
627                              lincRNA
628                              lincRNA
629                              lincRNA
630                              lincRNA
631                              lincRNA
632                              lincRNA
633                              lincRNA
634                              lincRNA
635                              lincRNA
636                              lincRNA
637                              lincRNA
638                              lincRNA
639                              lincRNA
640                                 rRNA
641                             misc_RNA
642                                miRNA
643                 processed_pseudogene
644                              lincRNA
645                              lincRNA
646                              lincRNA
647                              lincRNA
648                              lincRNA
649                              lincRNA
650                              lincRNA
651                              lincRNA
652                              lincRNA
653                              lincRNA
654                              lincRNA
655                              lincRNA
656                              lincRNA
657                              lincRNA
658                              lincRNA
659                              lincRNA
660                              lincRNA
661                              lincRNA
662                              lincRNA
663                              lincRNA
664                            antisense
665                            antisense
666                            antisense
667                            antisense
668                            antisense
669                            antisense
670                            antisense
671                       protein_coding
672                               snoRNA
673                                miRNA
674                       protein_coding
675                       protein_coding
676                       protein_coding
677                       protein_coding
678                       protein_coding
679                       protein_coding
680                       protein_coding
681                       protein_coding
682                       protein_coding
683                       protein_coding
684                       protein_coding
685                       protein_coding
686                       protein_coding
687                       protein_coding
688                       protein_coding
689                       protein_coding
690                       protein_coding
691                       protein_coding
692                       protein_coding
693                       protein_coding
694                       protein_coding
695                       protein_coding
696                       protein_coding
697                       protein_coding
698                       protein_coding
699                       protein_coding
700                       protein_coding
701                       protein_coding
702                       protein_coding
703                       protein_coding
704                       protein_coding
705                       protein_coding
706                       protein_coding
707                       protein_coding
708                       protein_coding
709                       protein_coding
710                       protein_coding
711                       protein_coding
712                       protein_coding
713                       protein_coding
714                       protein_coding
715                       protein_coding
716                       protein_coding
717                       protein_coding
718                       protein_coding
719                       protein_coding
720                       protein_coding
721                       protein_coding
722                       protein_coding
723                       protein_coding
724                       protein_coding
725                       protein_coding
726                       protein_coding
727                       protein_coding
728                       protein_coding
729                       protein_coding
730                       protein_coding
731                       protein_coding
732                       protein_coding
733                       protein_coding
734                       protein_coding
735                       protein_coding
736                              lincRNA
737                              lincRNA
738                       protein_coding
739                       protein_coding
740                       protein_coding
741                       protein_coding
742                       protein_coding
743                       protein_coding
744                       protein_coding
745                       protein_coding
746                       protein_coding
747                       protein_coding
748                       protein_coding
749                       protein_coding
750                       protein_coding
751                       protein_coding
752                       protein_coding
753                       protein_coding
754                       protein_coding
755                       protein_coding
756                       protein_coding
757                       protein_coding
758                       protein_coding
759                       protein_coding
760                       protein_coding
761                       protein_coding
762                       protein_coding
763                       protein_coding
764                       protein_coding
765                       protein_coding
766                       protein_coding
767                       protein_coding
768                       protein_coding
769                       protein_coding
770                       protein_coding
771                       protein_coding
772                       protein_coding
773                       protein_coding
774                       protein_coding
775                       protein_coding
776                       protein_coding
777                       protein_coding
778                       protein_coding
779                       protein_coding
780                       protein_coding
781                       protein_coding
782                       protein_coding
783                       protein_coding
784                       protein_coding
785                       protein_coding
786                       protein_coding
787                       protein_coding
788                       protein_coding
789                       protein_coding
790                       protein_coding
791                       protein_coding
792                       protein_coding
793                       protein_coding
794                       protein_coding
795                       protein_coding
796                       protein_coding
797                       protein_coding
798                       protein_coding
799                       protein_coding
800                       protein_coding
801                       protein_coding
802                       protein_coding
803                            antisense
804                            antisense
805                            antisense
806                            antisense
807                            antisense
808                            antisense
809                            antisense
810                 processed_pseudogene
811                                snRNA
812                             misc_RNA
813                       sense_intronic
814                       protein_coding
815                       protein_coding
816                       protein_coding
817                       protein_coding
818                       protein_coding
819                       protein_coding
820                       protein_coding
821                       protein_coding
822                       protein_coding
823                       protein_coding
824                       protein_coding
825                       protein_coding
826                       protein_coding
827                       protein_coding
828                       protein_coding
829                       protein_coding
830                       protein_coding
831                       protein_coding
832                       protein_coding
833                       protein_coding
834                       protein_coding
835                       protein_coding
836                       protein_coding
837                       protein_coding
838                       protein_coding
839                       protein_coding
840                       protein_coding
841                       protein_coding
842                       protein_coding
843                       protein_coding
844                       protein_coding
845                       protein_coding
846                       protein_coding
847                       protein_coding
848                       protein_coding
849                       protein_coding
850                       protein_coding
851                       protein_coding
852                       protein_coding
853                       protein_coding
854                       protein_coding
855                       protein_coding
856                       protein_coding
857                       protein_coding
858                       protein_coding
859                       protein_coding
860                       protein_coding
861                       protein_coding
862                       protein_coding
863                       protein_coding
864                       protein_coding
865                       protein_coding
866                       protein_coding
867                       protein_coding
868                       protein_coding
869                       protein_coding
870                       protein_coding
871                       protein_coding
872                       protein_coding
873                       protein_coding
874                       protein_coding
875                       protein_coding
876                       protein_coding
877                       protein_coding
878                       protein_coding
879                       protein_coding
880                       protein_coding
881                       protein_coding
882                       protein_coding
883                       protein_coding
884                       protein_coding
885                       protein_coding
886                       protein_coding
887                       protein_coding
888                       protein_coding
889                       protein_coding
890                       protein_coding
891                       protein_coding
892                       protein_coding
893                       protein_coding
894                       protein_coding
895                       protein_coding
896                       protein_coding
897                       protein_coding
898                       protein_coding
899                       protein_coding
900                       protein_coding
901                       protein_coding
902                       protein_coding
903                       protein_coding
904                       protein_coding
905                       protein_coding
906                       protein_coding
907                       protein_coding
908                       protein_coding
909                       protein_coding
910                       protein_coding
911                       protein_coding
912                       protein_coding
913                       protein_coding
914                       protein_coding
915                       protein_coding
916                       protein_coding
917                       protein_coding
918                       protein_coding
919                       protein_coding
920                       protein_coding
921                       protein_coding
922                       protein_coding
923                       protein_coding
924                       protein_coding
925                       protein_coding
926                       protein_coding
927                       protein_coding
928                       protein_coding
929                       protein_coding
930                       protein_coding
931                       protein_coding
932                       protein_coding
933                                miRNA
934                                miRNA
935                                miRNA
936                                snRNA
937                                snRNA
938                       protein_coding
939                 processed_pseudogene
940                            antisense
941                            antisense
942                            antisense
943                            antisense
944                            antisense
945                            antisense
946                            antisense
947                            antisense
948                            antisense
949                            antisense
950                                miRNA
951                                snRNA
952                                 rRNA
953                                snRNA
954                                miRNA
955                              lincRNA
956                              lincRNA
957                              lincRNA
958                              lincRNA
959                              lincRNA
960                              lincRNA
961                              lincRNA
962                              lincRNA
963                              lincRNA
964                              lincRNA
965                              lincRNA
966                              lincRNA
967                              lincRNA
968                              lincRNA
969                              lincRNA
970                              lincRNA
971                              lincRNA
972                              lincRNA
973                              lincRNA
974                              lincRNA
975                              lincRNA
976                              lincRNA
977                              lincRNA
978                       protein_coding
979                       protein_coding
980                       protein_coding
981                       protein_coding
982                       protein_coding
983                       protein_coding
984                       protein_coding
985                       protein_coding
986                       protein_coding
987                       protein_coding
988                       protein_coding
989                       protein_coding
990                       protein_coding
991                       protein_coding
992                       protein_coding
993                       protein_coding
994                       protein_coding
995                       protein_coding
996                       protein_coding
997                       protein_coding
998                       protein_coding
999                       protein_coding
1000                      protein_coding
1001                      protein_coding
1002                      protein_coding
1003                      protein_coding
1004                      protein_coding
1005                      protein_coding
1006                      protein_coding
1007                      protein_coding
1008                      protein_coding
1009                      protein_coding
1010                      protein_coding
1011                      protein_coding
1012                      protein_coding
1013                      protein_coding
1014                      protein_coding
1015                      protein_coding
1016                      protein_coding
1017                      protein_coding
1018                      protein_coding
1019                      protein_coding
1020                      protein_coding
1021                      protein_coding
1022                      protein_coding
1023                      protein_coding
1024                      protein_coding
1025                      protein_coding
1026                      protein_coding
1027                      protein_coding
1028                      protein_coding
1029                      protein_coding
1030                      protein_coding
1031                      protein_coding
1032                      protein_coding
1033                      protein_coding
1034                      protein_coding
1035                      protein_coding
1036                      protein_coding
1037                      protein_coding
1038                      protein_coding
1039                      protein_coding
1040                      protein_coding
1041                      protein_coding
1042                      protein_coding
1043                      protein_coding
1044                      protein_coding
1045                      protein_coding
1046                      protein_coding
1047                      protein_coding
1048                      protein_coding
1049                      protein_coding
1050                processed_pseudogene
1051                      protein_coding
1052                      protein_coding
1053                      protein_coding
1054                      protein_coding
1055                      protein_coding
1056                      protein_coding
1057                      protein_coding
1058                      protein_coding
1059                      protein_coding
1060                      protein_coding
1061                      protein_coding
1062                      protein_coding
1063                      protein_coding
1064                      protein_coding
1065                      protein_coding
1066                      protein_coding
1067                      protein_coding
1068                      protein_coding
1069                      protein_coding
1070                      protein_coding
1071                      protein_coding
1072                      protein_coding
1073                      protein_coding
1074                      protein_coding
1075                      protein_coding
1076                      protein_coding
1077                      protein_coding
1078                      protein_coding
1079                      protein_coding
1080                      protein_coding
1081                      protein_coding
1082                      protein_coding
1083                      protein_coding
1084                      protein_coding
1085                      protein_coding
1086                      protein_coding
1087                      protein_coding
1088                      protein_coding
1089                      protein_coding
1090                      protein_coding
1091                      protein_coding
1092                      protein_coding
1093                      protein_coding
1094                      protein_coding
1095                      protein_coding
1096                      protein_coding
1097                      protein_coding
1098                      protein_coding
1099                      protein_coding
1100                      protein_coding
1101                      protein_coding
1102                      protein_coding
1103                      protein_coding
1104                      protein_coding
1105                      protein_coding
1106                      protein_coding
1107                      protein_coding
1108                      protein_coding
1109                      protein_coding
1110                      protein_coding
1111                      protein_coding
1112                      protein_coding
1113                      protein_coding
1114                      protein_coding
1115                      protein_coding
1116                      protein_coding
1117                      protein_coding
1118                      protein_coding
1119                      protein_coding
1120                      protein_coding
1121                      protein_coding
1122                      protein_coding
1123                             lincRNA
1124                             lincRNA
1125                             lincRNA
1126                             lincRNA
1127                             lincRNA
1128                             lincRNA
1129                             lincRNA
1130                             lincRNA
1131                      protein_coding
1132                      protein_coding
1133                      protein_coding
1134                      protein_coding
1135                      protein_coding
1136                      protein_coding
1137                      protein_coding
1138                      protein_coding
1139                      protein_coding
1140                      protein_coding
1141                      protein_coding
1142                      protein_coding
1143                      protein_coding
1144                      protein_coding
1145                      protein_coding
1146                      protein_coding
1147                      protein_coding
1148                      protein_coding
1149                      protein_coding
1150                      protein_coding
1151                      protein_coding
1152                      protein_coding
1153                      protein_coding
1154                      protein_coding
1155                      protein_coding
1156                      protein_coding
1157                      protein_coding
1158                      protein_coding
1159                      protein_coding
1160                      protein_coding
1161                      protein_coding
1162                      protein_coding
1163                      protein_coding
1164                      protein_coding
1165                      protein_coding
1166                      protein_coding
1167                      protein_coding
1168                      protein_coding
1169                      protein_coding
1170                      protein_coding
1171                      protein_coding
1172                      protein_coding
1173                      protein_coding
1174                      protein_coding
1175                      protein_coding
1176                      protein_coding
1177                      protein_coding
1178                      protein_coding
1179                      protein_coding
1180                      protein_coding
1181                      protein_coding
1182                      protein_coding
1183                      protein_coding
1184                      protein_coding
1185                      protein_coding
1186                      protein_coding
1187                      protein_coding
1188                      protein_coding
1189                      protein_coding
1190                      protein_coding
1191                      protein_coding
1192                      protein_coding
1193                      protein_coding
1194                      protein_coding
1195                      protein_coding
1196                      protein_coding
1197                      protein_coding
1198                      protein_coding
1199                      protein_coding
1200                      protein_coding
1201                      protein_coding
1202                      protein_coding
1203                      protein_coding
1204                      protein_coding
1205                      protein_coding
1206                      protein_coding
1207                      protein_coding
1208                      protein_coding
1209                      protein_coding
1210                      protein_coding
1211                      protein_coding
1212                      protein_coding
1213                      protein_coding
1214                      protein_coding
1215                      protein_coding
1216                      protein_coding
1217                      protein_coding
1218                      protein_coding
1219                      protein_coding
1220                      protein_coding
1221                      protein_coding
1222                      protein_coding
1223                      protein_coding
1224                      protein_coding
1225                      protein_coding
1226                      protein_coding
1227                      protein_coding
1228                      protein_coding
1229                      protein_coding
1230                      protein_coding
1231                      protein_coding
1232                      protein_coding
1233                      protein_coding
1234                      protein_coding
1235                      protein_coding
1236                      protein_coding
1237                      protein_coding
1238                      protein_coding
1239                      protein_coding
1240                      protein_coding
1241                      protein_coding
1242                      protein_coding
1243                      protein_coding
1244                      protein_coding
1245                      protein_coding
1246                           antisense
1247                           antisense
1248                             lincRNA
1249                      protein_coding
1250                      protein_coding
1251                      protein_coding
1252                      protein_coding
1253                      protein_coding
1254                      protein_coding
1255                      protein_coding
1256                      protein_coding
1257                      protein_coding
1258                      protein_coding
1259                      protein_coding
1260                      protein_coding
1261                      protein_coding
1262                      protein_coding
1263                      protein_coding
1264                      protein_coding
1265                      protein_coding
1266                      protein_coding
1267                      protein_coding
1268                      protein_coding
1269                      protein_coding
1270                      protein_coding
1271                      protein_coding
1272                      protein_coding
1273                      protein_coding
1274                      protein_coding
1275                      protein_coding
1276                      protein_coding
1277                      protein_coding
1278                      protein_coding
1279                      protein_coding
1280                      protein_coding
1281                      protein_coding
1282                      protein_coding
1283                      protein_coding
1284                      protein_coding
1285                      protein_coding
1286                      protein_coding
1287                      protein_coding
1288                      protein_coding
1289                      protein_coding
1290                      protein_coding
1291                      protein_coding
1292                      protein_coding
1293                      protein_coding
1294                      protein_coding
1295                      protein_coding
1296                      protein_coding
1297                      protein_coding
1298                      protein_coding
1299                      protein_coding
1300                      protein_coding
1301                      protein_coding
1302                      protein_coding
1303                      protein_coding
1304                      protein_coding
1305                      protein_coding
1306                      protein_coding
1307                      protein_coding
1308                      protein_coding
1309                      protein_coding
1310                      protein_coding
1311                      protein_coding
1312                      protein_coding
1313                      protein_coding
1314                      protein_coding
1315                      protein_coding
1316                      protein_coding
1317                      protein_coding
1318                      protein_coding
1319                      protein_coding
1320                      protein_coding
1321                      protein_coding
1322                      protein_coding
1323                      protein_coding
1324                      protein_coding
1325                      protein_coding
1326                      protein_coding
1327                      protein_coding
1328                      protein_coding
1329                      protein_coding
1330                      protein_coding
1331                      protein_coding
1332                      protein_coding
1333                      protein_coding
1334                      protein_coding
1335                      protein_coding
1336                      protein_coding
1337                      protein_coding
1338                      protein_coding
1339                      protein_coding
1340                      protein_coding
1341                      protein_coding
1342                      protein_coding
1343                      protein_coding
1344                      protein_coding
1345                      protein_coding
1346                      protein_coding
1347                      protein_coding
1348                      protein_coding
1349                      protein_coding
1350                      protein_coding
1351                      protein_coding
1352                      protein_coding
1353                      protein_coding
1354                      protein_coding
1355                      protein_coding
1356                      protein_coding
1357                      protein_coding
1358                      protein_coding
1359                      protein_coding
1360                      protein_coding
1361                      protein_coding
1362                      protein_coding
1363                      protein_coding
1364                      protein_coding
1365                      protein_coding
1366                             lincRNA
1367                      protein_coding
1368                      protein_coding
1369                             lincRNA
1370                      protein_coding
1371                      protein_coding
1372                      protein_coding
1373                      protein_coding
1374                      protein_coding
1375                      protein_coding
1376                      protein_coding
1377                      protein_coding
1378                      protein_coding
1379                      protein_coding
1380                      protein_coding
1381                      protein_coding
1382                      protein_coding
1383                      protein_coding
1384                      protein_coding
1385                      protein_coding
1386                      protein_coding
1387                      protein_coding
1388                      protein_coding
1389                      protein_coding
1390                      protein_coding
1391                      protein_coding
1392                      protein_coding
1393                      protein_coding
1394                             lincRNA
1395                             lincRNA
1396                             lincRNA
1397                             lincRNA
1398                      protein_coding
1399                      protein_coding
1400                      protein_coding
1401                      protein_coding
1402                      protein_coding
1403                      protein_coding
1404                      protein_coding
1405                      protein_coding
1406                      protein_coding
1407                      protein_coding
1408                      protein_coding
1409                      protein_coding
1410                      protein_coding
1411                      protein_coding
1412                      protein_coding
1413                      protein_coding
1414                      protein_coding
1415                      protein_coding
1416                      protein_coding
1417                      protein_coding
1418                      protein_coding
1419                      protein_coding
1420                      protein_coding
1421                      protein_coding
1422                      protein_coding
1423                      protein_coding
1424                      protein_coding
1425                      protein_coding
1426                      protein_coding
1427                      protein_coding
1428                      protein_coding
1429                      protein_coding
1430                      protein_coding
1431                      protein_coding
1432                      protein_coding
1433                      protein_coding
1434                      protein_coding
1435                      protein_coding
1436                      protein_coding
1437                      protein_coding
1438                      protein_coding
1439                      protein_coding
1440                      protein_coding
1441                      protein_coding
1442                      protein_coding
1443                      protein_coding
1444                      protein_coding
1445                      protein_coding
1446                      protein_coding
1447                      protein_coding
1448                      protein_coding
1449                      protein_coding
1450                      protein_coding
1451                      protein_coding
1452                      protein_coding
1453                      protein_coding
1454                      protein_coding
1455                      protein_coding
1456                      protein_coding
1457                      protein_coding
1458                      protein_coding
1459                      protein_coding
1460                      protein_coding
1461                      protein_coding
1462                      protein_coding
1463                      protein_coding
1464                      protein_coding
1465                      protein_coding
1466                      protein_coding
1467                      protein_coding
1468                      protein_coding
1469                      protein_coding
1470                      protein_coding
1471                      protein_coding
1472                      protein_coding
1473                      protein_coding
1474                      protein_coding
1475                      protein_coding
1476                      protein_coding
1477                      protein_coding
1478                      protein_coding
1479                      protein_coding
1480                      protein_coding
1481                      protein_coding
1482                      protein_coding
1483                      protein_coding
1484                      protein_coding
1485                      protein_coding
1486                      protein_coding
1487                processed_pseudogene
1488                processed_pseudogene
1489                             lincRNA
1490                             lincRNA
1491                             lincRNA
1492                             lincRNA
1493                             lincRNA
1494                             lincRNA
1495                             lincRNA
1496                processed_pseudogene
1497                      protein_coding
1498                      protein_coding
1499                      protein_coding
1500                      protein_coding
1501                      protein_coding
1502                      protein_coding
1503                      protein_coding
1504                      protein_coding
1505                      protein_coding
1506                      protein_coding
1507                      protein_coding
1508                      protein_coding
1509                      protein_coding
1510                      protein_coding
1511                      protein_coding
1512                      protein_coding
1513                      protein_coding
1514                      protein_coding
1515                      protein_coding
1516                      protein_coding
1517                      protein_coding
1518                      protein_coding
1519                      protein_coding
1520                      protein_coding
1521                      protein_coding
1522                      protein_coding
1523                      protein_coding
1524                      protein_coding
1525                      protein_coding
1526                      protein_coding
1527                      protein_coding
1528                      protein_coding
1529                      protein_coding
1530                      protein_coding
1531                      protein_coding
1532                      protein_coding
1533                      protein_coding
1534                      protein_coding
1535                      protein_coding
1536                      protein_coding
1537                      protein_coding
1538                      protein_coding
1539                      protein_coding
1540                      protein_coding
1541                      protein_coding
1542                      protein_coding
1543                      protein_coding
1544                      protein_coding
1545                      protein_coding
1546                      protein_coding
1547                      protein_coding
1548                      protein_coding
1549                processed_pseudogene
1550                             lincRNA
1551                             lincRNA
1552                             lincRNA
1553                             lincRNA
1554                             lincRNA
1555                             lincRNA
1556  transcribed_unprocessed_pseudogene
1557  transcribed_unprocessed_pseudogene
1558  transcribed_unprocessed_pseudogene
1559  transcribed_unprocessed_pseudogene
1560  transcribed_unprocessed_pseudogene
1561  transcribed_unprocessed_pseudogene
1562  transcribed_unprocessed_pseudogene
1563  transcribed_unprocessed_pseudogene
1564  transcribed_unprocessed_pseudogene
1565  transcribed_unprocessed_pseudogene
1566  transcribed_unprocessed_pseudogene
1567  transcribed_unprocessed_pseudogene
1568  transcribed_unprocessed_pseudogene
1569  transcribed_unprocessed_pseudogene
1570  transcribed_unprocessed_pseudogene
1571  transcribed_unprocessed_pseudogene
1572  transcribed_unprocessed_pseudogene
1573  transcribed_unprocessed_pseudogene
1574  transcribed_unprocessed_pseudogene
1575  transcribed_unprocessed_pseudogene
1576  transcribed_unprocessed_pseudogene
1577  transcribed_unprocessed_pseudogene
1578  transcribed_unprocessed_pseudogene
1579  transcribed_unprocessed_pseudogene
1580  transcribed_unprocessed_pseudogene
1581  transcribed_unprocessed_pseudogene
1582  transcribed_unprocessed_pseudogene
1583  transcribed_unprocessed_pseudogene
1584  transcribed_unprocessed_pseudogene
1585  transcribed_unprocessed_pseudogene
1586  transcribed_unprocessed_pseudogene
1587  transcribed_unprocessed_pseudogene
1588  transcribed_unprocessed_pseudogene
1589  transcribed_unprocessed_pseudogene
1590  transcribed_unprocessed_pseudogene
1591  transcribed_unprocessed_pseudogene
1592  transcribed_unprocessed_pseudogene
1593  transcribed_unprocessed_pseudogene
1594  transcribed_unprocessed_pseudogene
1595  transcribed_unprocessed_pseudogene
1596  transcribed_unprocessed_pseudogene
1597  transcribed_unprocessed_pseudogene
1598  transcribed_unprocessed_pseudogene
1599  transcribed_unprocessed_pseudogene
1600  transcribed_unprocessed_pseudogene
1601  transcribed_unprocessed_pseudogene
1602  transcribed_unprocessed_pseudogene
1603  transcribed_unprocessed_pseudogene
1604  transcribed_unprocessed_pseudogene
1605  transcribed_unprocessed_pseudogene
1606  transcribed_unprocessed_pseudogene
1607  transcribed_unprocessed_pseudogene
1608  transcribed_unprocessed_pseudogene
1609  transcribed_unprocessed_pseudogene
1610  transcribed_unprocessed_pseudogene
1611  transcribed_unprocessed_pseudogene
1612  transcribed_unprocessed_pseudogene
1613  transcribed_unprocessed_pseudogene
1614  transcribed_unprocessed_pseudogene
1615  transcribed_unprocessed_pseudogene
1616  transcribed_unprocessed_pseudogene
1617  transcribed_unprocessed_pseudogene
1618  transcribed_unprocessed_pseudogene
1619                      protein_coding
1620                      protein_coding
1621                      protein_coding
1622                      protein_coding
1623                      protein_coding
1624                      protein_coding
1625                      protein_coding
1626                      protein_coding
1627                      protein_coding
1628                      protein_coding
1629                      protein_coding
1630                      protein_coding
1631                      protein_coding
1632                      protein_coding
1633                      protein_coding
1634                      protein_coding
1635                      protein_coding
1636                      protein_coding
1637                      protein_coding
1638                      protein_coding
1639                      protein_coding
1640                      protein_coding
1641                      protein_coding
1642                      protein_coding
1643                      protein_coding
1644                      protein_coding
1645                      protein_coding
1646                      protein_coding
1647                      protein_coding
1648                      protein_coding
1649                      protein_coding
1650                      protein_coding
1651                      protein_coding
1652                      protein_coding
1653                      protein_coding
1654                      protein_coding
1655                      protein_coding
1656                      protein_coding
1657                      protein_coding
1658                      protein_coding
1659                      protein_coding
1660                      protein_coding
1661                      protein_coding
1662                      protein_coding
1663                      protein_coding
1664                      protein_coding
1665                      protein_coding
1666                      protein_coding
1667                      protein_coding
1668                processed_pseudogene
1669                      protein_coding
1670                      protein_coding
1671                      protein_coding
1672                      protein_coding
1673                      protein_coding
1674                      protein_coding
1675                      protein_coding
1676                      protein_coding
1677                      protein_coding
1678                      protein_coding
1679                      protein_coding
1680                      protein_coding
1681                      protein_coding
1682                      protein_coding
1683                      protein_coding
1684                      protein_coding
1685                      protein_coding
1686                      protein_coding
1687                      protein_coding
1688                      protein_coding
1689                processed_transcript
1690                processed_transcript
1691                processed_transcript
1692                processed_transcript
1693                           antisense
1694                           antisense
1695                           antisense
1696                           antisense
1697                           antisense
1698                           antisense
1699                           antisense
1700                           antisense
1701                           antisense
1702                      protein_coding
1703                      protein_coding
1704                      protein_coding
1705                      protein_coding
1706                      protein_coding
1707                      protein_coding
1708                      protein_coding
1709                      protein_coding
1710                      protein_coding
1711                      protein_coding
1712                      protein_coding
1713                      protein_coding
1714                      protein_coding
1715                      protein_coding
1716                      protein_coding
1717                      protein_coding
1718                      protein_coding
1719                      protein_coding
1720                      protein_coding
1721                      protein_coding
1722                      protein_coding
1723                      protein_coding
1724                      protein_coding
1725                      protein_coding
1726                      protein_coding
1727                      protein_coding
1728                      protein_coding
1729                      protein_coding
1730                      protein_coding
1731                      protein_coding
1732                      protein_coding
1733                      protein_coding
1734                      protein_coding
1735                      protein_coding
1736                      protein_coding
1737                      protein_coding
1738                      protein_coding
1739                      protein_coding
1740                      protein_coding
1741                      protein_coding
1742                      protein_coding
1743                      protein_coding
1744                      protein_coding
1745                      protein_coding
1746                      protein_coding
1747                      protein_coding
1748                      protein_coding
1749                      protein_coding
1750                      protein_coding
1751                      protein_coding
1752                      protein_coding
1753                      protein_coding
1754                      protein_coding
1755                      protein_coding
1756                      protein_coding
1757                      protein_coding
1758                      protein_coding
1759                      protein_coding
1760                      protein_coding
1761                      protein_coding
1762                      protein_coding
1763                      protein_coding
1764                      protein_coding
1765                      protein_coding
1766                      protein_coding
1767                      protein_coding
1768                      protein_coding
1769                      protein_coding
1770                      protein_coding
1771                      protein_coding
1772                      protein_coding
1773                      protein_coding
1774                      protein_coding
1775                      protein_coding
1776                      protein_coding
1777                      protein_coding
1778                      protein_coding
1779                      protein_coding
1780                      protein_coding
1781                      protein_coding
1782                      protein_coding
1783                      protein_coding
1784                      protein_coding
1785                      protein_coding
1786                      protein_coding
1787                      protein_coding
1788                      protein_coding
1789                      protein_coding
1790                      protein_coding
1791                      protein_coding
1792                      protein_coding
1793                      protein_coding
1794                      protein_coding
1795                      protein_coding
1796                               snRNA
1797                               miRNA
1798                              snoRNA
1799                                rRNA
1800                               miRNA
1801                               snRNA
1802                      protein_coding
1803                      protein_coding
1804                      protein_coding
1805                      protein_coding
1806                      protein_coding
1807                      protein_coding
1808                      protein_coding
1809                      protein_coding
1810                      protein_coding
1811                      protein_coding
1812                      protein_coding
1813                      protein_coding
1814                      protein_coding
1815                      protein_coding
1816                      protein_coding
1817                      protein_coding
1818                      protein_coding
1819                      protein_coding
1820                      protein_coding
1821                      protein_coding
1822                      protein_coding
1823                      protein_coding
1824                      protein_coding
1825                      protein_coding
1826                      protein_coding
1827                      protein_coding
1828                      protein_coding
1829                      protein_coding
1830                      protein_coding
1831                      protein_coding
1832                      protein_coding
1833                      protein_coding
1834                      protein_coding
1835                      protein_coding
1836                      protein_coding
1837                      protein_coding
1838                      protein_coding
1839                      protein_coding
1840                      protein_coding
1841                      protein_coding
1842                      protein_coding
1843                      protein_coding
1844                      protein_coding
1845                      protein_coding
1846                      protein_coding
1847                      protein_coding
1848                           antisense
1849                           antisense
1850                      protein_coding
1851                      protein_coding
1852                      protein_coding
1853                      protein_coding
1854                      protein_coding
1855                      protein_coding
1856                      protein_coding
1857                      protein_coding
1858                      protein_coding
1859                      protein_coding
1860                      protein_coding
1861                      protein_coding
1862                      protein_coding
1863                      protein_coding
1864                      protein_coding
1865                      protein_coding
1866                      protein_coding
1867                      protein_coding
1868                      protein_coding
1869                      protein_coding
1870                      protein_coding
1871                      protein_coding
1872                      protein_coding
1873                      protein_coding
1874                      protein_coding
1875                      protein_coding
1876                      protein_coding
1877                      protein_coding
1878                      protein_coding
1879                      protein_coding
1880                      protein_coding
1881                      protein_coding
1882                      protein_coding
1883                      protein_coding
1884                      protein_coding
1885                      protein_coding
1886                      protein_coding
1887                      protein_coding
1888                      protein_coding
1889                      protein_coding
1890                      protein_coding
1891                      protein_coding
1892                      protein_coding
1893                      protein_coding
1894                      protein_coding
1895                      protein_coding
1896                      protein_coding
1897                      protein_coding
1898                      protein_coding
1899                      protein_coding
1900                      protein_coding
1901                      protein_coding
1902                      protein_coding
1903                      protein_coding
1904                      protein_coding
1905                      protein_coding
1906                      protein_coding
1907                      protein_coding
1908                      protein_coding
1909                      protein_coding
1910                      protein_coding
1911                      protein_coding
1912                      protein_coding
1913                      protein_coding
1914                      protein_coding
1915                           antisense
1916                           antisense
1917                           antisense
1918                           antisense
1919                processed_pseudogene
1920                             lincRNA
1921                      protein_coding
1922                      protein_coding
1923                      protein_coding
1924                      protein_coding
1925                      protein_coding
1926                      protein_coding
1927                      protein_coding
1928                      protein_coding
1929                      protein_coding
1930                      protein_coding
1931                      protein_coding
1932                                 TEC
1933                           antisense
1934                           antisense
1935                           antisense
1936                           antisense
1937                      protein_coding
1938                      protein_coding
1939                      protein_coding
1940                      protein_coding
1941                      protein_coding
1942                      protein_coding
1943                      protein_coding
1944                      protein_coding
1945                      protein_coding
1946                      protein_coding
1947                      protein_coding
1948                      protein_coding
1949                      protein_coding
1950                      protein_coding
1951                      protein_coding
1952                      protein_coding
1953                      protein_coding
1954                      protein_coding
1955                      protein_coding
1956                      protein_coding
1957                      protein_coding
1958                      protein_coding
1959                      protein_coding
1960                      protein_coding
1961                      protein_coding
1962                      protein_coding
1963                      protein_coding
1964                      protein_coding
1965                      protein_coding
1966                      protein_coding
1967                      protein_coding
1968                      protein_coding
1969                      protein_coding
1970                      protein_coding
1971                      protein_coding
1972                      protein_coding
1973                      protein_coding
1974                      protein_coding
1975                      protein_coding
1976                      protein_coding
1977                      protein_coding
1978                      protein_coding
1979                      protein_coding
1980                      protein_coding
1981                      protein_coding
1982                      protein_coding
1983                      protein_coding
1984                      protein_coding
1985                      protein_coding
1986                      protein_coding
1987                      protein_coding
1988                      protein_coding
1989                      protein_coding
1990                      protein_coding
1991                      protein_coding
1992                      protein_coding
1993                      protein_coding
1994                      protein_coding
1995                      protein_coding
1996                      protein_coding
1997                      protein_coding
1998                      protein_coding
1999                      protein_coding
2000                      protein_coding
2001                      protein_coding
2002                      protein_coding
2003                      protein_coding
2004                      protein_coding
2005                      protein_coding
2006                      protein_coding
2007                      protein_coding
2008                      protein_coding
2009                      protein_coding
2010                      protein_coding
2011                      protein_coding
2012                      protein_coding
2013                      protein_coding
2014                      protein_coding
2015                      protein_coding
2016                      protein_coding
2017                      protein_coding
2018                      protein_coding
2019                      protein_coding
2020                      protein_coding
2021                      protein_coding
2022                      protein_coding
2023                      protein_coding
2024                      protein_coding
2025                      protein_coding
2026                      protein_coding
2027                      protein_coding
2028                      protein_coding
2029                      protein_coding
2030                      protein_coding
2031                      protein_coding
2032                      protein_coding
2033                      protein_coding
2034                      protein_coding
2035                      protein_coding
2036                      protein_coding
2037                      protein_coding
2038                      protein_coding
2039                      protein_coding
2040                      protein_coding
2041                      protein_coding
2042                      protein_coding
2043                      protein_coding
2044                      protein_coding
2045                      protein_coding
2046                      protein_coding
2047                      protein_coding
2048                      protein_coding
2049                      protein_coding
2050                      protein_coding
2051                      protein_coding
2052                      protein_coding
2053                      protein_coding
2054                      protein_coding
2055                      protein_coding
2056                      protein_coding
2057                      protein_coding
2058                      protein_coding
2059                      protein_coding
2060                      protein_coding
2061                      protein_coding
2062                      protein_coding
2063                      protein_coding
2064                      protein_coding
2065                      protein_coding
2066                      protein_coding
2067                      protein_coding
2068                      protein_coding
2069                             lincRNA
2070                             lincRNA
2071                             lincRNA
2072                             lincRNA
2073                            misc_RNA
2074                            misc_RNA
2075                           antisense
2076                           antisense
2077                           antisense
2078                           antisense
2079                           antisense
2080                           antisense
2081                      protein_coding
2082                      protein_coding
2083                             lincRNA
2084                             lincRNA
2085                             lincRNA
2086                             lincRNA
2087                             lincRNA
2088                             lincRNA
2089                             lincRNA
2090                             lincRNA
2091                             lincRNA
2092                             lincRNA
2093                             lincRNA
2094                             lincRNA
2095                             lincRNA
2096                             lincRNA
2097                             lincRNA
2098                             lincRNA
2099                             lincRNA
2100                             lincRNA
2101                             lincRNA
2102                processed_pseudogene
2103                processed_pseudogene
2104                processed_pseudogene
2105                processed_pseudogene
2106                processed_pseudogene
2107                      protein_coding
2108                      protein_coding
2109                      protein_coding
2110                      protein_coding
2111                      protein_coding
2112                      protein_coding
2113                      protein_coding
2114                      protein_coding
2115                      protein_coding
2116                      protein_coding
2117                      protein_coding
2118                      protein_coding
2119                      protein_coding
2120                      protein_coding
2121                      protein_coding
2122                      protein_coding
2123                      protein_coding
2124                      protein_coding
2125                      protein_coding
2126                      protein_coding
2127                      protein_coding
2128                      protein_coding
2129                      protein_coding
2130                      protein_coding
2131                      protein_coding
2132                      protein_coding
2133                      protein_coding
2134                      protein_coding
2135                      protein_coding
2136                      protein_coding
2137                      protein_coding
2138                      protein_coding
2139                      protein_coding
2140                      protein_coding
2141                      protein_coding
2142                      protein_coding
2143                      protein_coding
2144                      protein_coding
2145                      protein_coding
2146                      protein_coding
2147                      protein_coding
2148                      protein_coding
2149                      protein_coding
2150                      protein_coding
2151                      protein_coding
2152                      protein_coding
2153                      protein_coding
2154                      protein_coding
2155                      protein_coding
2156                           antisense
2157                           antisense
2158                           antisense
2159                           antisense
2160                           antisense
2161                           antisense
2162                           antisense
2163                           antisense
2164                           antisense
2165                           antisense
2166                           antisense
2167                           antisense
2168                           antisense
2169                           antisense
2170                           antisense
2171                           antisense
2172                           antisense
2173                           antisense
2174                           antisense
2175                           antisense
2176                           antisense
2177                           antisense
2178                           antisense
2179                           antisense
2180                      protein_coding
2181                      protein_coding
2182                      protein_coding
2183                      protein_coding
2184                      protein_coding
2185                      protein_coding
2186                      protein_coding
2187                      protein_coding
2188                processed_pseudogene
2189                           antisense
2190                           antisense
2191                             lincRNA
2192                             lincRNA
2193                             lincRNA
2194                      protein_coding
2195                      protein_coding
2196                      protein_coding
2197                      protein_coding
2198                      protein_coding
2199                      protein_coding
2200                      protein_coding
2201                      protein_coding
2202                      protein_coding
2203                      protein_coding
2204                      protein_coding
2205                      protein_coding
2206                      protein_coding
2207                      protein_coding
2208                      protein_coding
2209                      protein_coding
2210                      protein_coding
2211                      protein_coding
2212                      protein_coding
2213                      protein_coding
2214                      protein_coding
2215                      protein_coding
2216                      protein_coding
2217                      protein_coding
2218                      protein_coding
2219                      protein_coding
2220                      protein_coding
2221                      protein_coding
2222                      protein_coding
2223                      protein_coding
2224                      protein_coding
2225                      protein_coding
2226                      protein_coding
2227                      protein_coding
2228                      protein_coding
2229                      protein_coding
2230                      protein_coding
2231                      protein_coding
2232                      protein_coding
2233                      protein_coding
2234                      protein_coding
2235                      protein_coding
2236                      protein_coding
2237                      protein_coding
2238                      protein_coding
2239                      protein_coding
2240                      protein_coding
2241                             lincRNA
2242                             lincRNA
2243                             lincRNA
2244                           antisense
2245                           antisense
2246                           antisense
2247                           antisense
2248                           antisense
2249                           antisense
2250                           antisense
2251                           antisense
2252                           antisense
2253                      protein_coding
2254                           antisense
2255                           antisense
2256                           antisense
2257                           antisense
2258                           antisense
2259                           antisense
2260                           antisense
2261                           antisense
2262                           antisense
2263                           antisense
2264                           antisense
2265                           antisense
2266                           antisense
2267                           antisense
2268                           antisense
2269                           antisense
2270                           antisense
2271                           antisense
2272                           antisense
2273                           antisense
2274                           antisense
2275                           antisense
2276                           antisense
2277                           antisense
2278                           antisense
2279                           antisense
2280                           antisense
2281                           antisense
2282                           antisense
2283                      protein_coding
2284                      protein_coding
2285                      protein_coding
2286                      protein_coding
2287                      protein_coding
2288                      protein_coding
2289                      protein_coding
2290                      protein_coding
2291                      protein_coding
2292                      protein_coding
2293                      protein_coding
2294                      protein_coding
2295                      protein_coding
2296                      protein_coding
2297                      protein_coding
2298                      protein_coding
2299                      protein_coding
2300                      protein_coding
2301                      protein_coding
2302                      protein_coding
2303                      protein_coding
2304                      protein_coding
2305                      protein_coding
2306                      protein_coding
2307                      protein_coding
2308                      protein_coding
2309                      protein_coding
2310                      protein_coding
2311                      protein_coding
2312                      protein_coding
2313                      protein_coding
2314                      protein_coding
2315                      protein_coding
2316                      protein_coding
2317                      protein_coding
2318                      protein_coding
2319                      protein_coding
2320                      protein_coding
2321                      protein_coding
2322                      protein_coding
2323                      protein_coding
2324                      protein_coding
2325                      protein_coding
2326                      protein_coding
2327                      protein_coding
2328                      protein_coding
2329                      protein_coding
2330                      protein_coding
2331                      protein_coding
2332                      protein_coding
2333                      protein_coding
2334                      protein_coding
2335                      protein_coding
2336                      protein_coding
2337                      protein_coding
2338                      protein_coding
2339                      protein_coding
2340                      protein_coding
2341                      protein_coding
2342                      protein_coding
2343                      protein_coding
2344                      protein_coding
2345                      protein_coding
2346                      protein_coding
2347                      protein_coding
2348                      protein_coding
2349                      protein_coding
2350                      protein_coding
2351                      protein_coding
2352                      protein_coding
2353                      protein_coding
2354                      protein_coding
2355                      protein_coding
2356                      protein_coding
2357                      protein_coding
2358                      protein_coding
2359                      protein_coding
2360                      protein_coding
2361                      protein_coding
2362                      protein_coding
2363                      protein_coding
2364                      protein_coding
2365                      protein_coding
2366                      protein_coding
2367                      protein_coding
2368                      protein_coding
2369                      protein_coding
2370                      protein_coding
2371                      protein_coding
2372                      protein_coding
2373                      protein_coding
2374                      protein_coding
2375                      protein_coding
2376                      protein_coding
2377                      protein_coding
2378                      protein_coding
2379                      protein_coding
2380                      protein_coding
2381                      protein_coding
2382                      protein_coding
2383                      protein_coding
2384                      protein_coding
2385                      protein_coding
2386                      protein_coding
2387                      protein_coding
2388                      protein_coding
2389                      protein_coding
2390                      protein_coding
2391                      protein_coding
2392                      protein_coding
2393                      protein_coding
2394                      protein_coding
2395                      protein_coding
2396                      protein_coding
2397                      protein_coding
2398                      protein_coding
2399                      protein_coding
2400                      protein_coding
2401                      protein_coding
2402                      protein_coding
2403                      protein_coding
2404                      protein_coding
2405                      protein_coding
2406                      protein_coding
2407                      protein_coding
2408                      protein_coding
2409                      protein_coding
2410                      protein_coding
2411                      protein_coding
2412                      protein_coding
2413                      protein_coding
2414                      protein_coding
2415                      protein_coding
2416                      protein_coding
2417                      protein_coding
2418                      protein_coding
2419                      protein_coding
2420                      protein_coding
2421                      protein_coding
2422                      protein_coding
2423                      protein_coding
2424                      protein_coding
2425                      protein_coding
2426                      protein_coding
2427                      protein_coding
2428                      protein_coding
2429                      protein_coding
2430                      protein_coding
2431                      protein_coding
2432                      protein_coding
2433                      protein_coding
2434                      protein_coding
2435                      protein_coding
2436                      protein_coding
2437                      protein_coding
2438                      protein_coding
2439                      protein_coding
2440                      protein_coding
2441                      protein_coding
2442                      protein_coding
2443                      protein_coding
2444                      protein_coding
2445                      protein_coding
2446                      protein_coding
2447                      protein_coding
2448                      protein_coding
2449                      protein_coding
2450                      protein_coding
2451                      protein_coding
2452                      protein_coding
2453                      protein_coding
2454                      protein_coding
2455                      protein_coding
2456                      protein_coding
2457                      protein_coding
2458                      protein_coding
2459                      protein_coding
2460                           antisense
2461                           antisense
2462                           antisense
2463                             lincRNA
2464                             lincRNA
2465                             lincRNA
2466                             lincRNA
2467                             lincRNA
2468                      sense_intronic
2469                      sense_intronic
2470                      sense_intronic
2471                      sense_intronic
2472                      protein_coding
2473                      protein_coding
2474                      protein_coding
2475                      protein_coding
2476                      protein_coding
2477                      protein_coding
2478                      protein_coding
2479                      protein_coding
2480                      protein_coding
2481                      protein_coding
2482                      protein_coding
2483                      protein_coding
2484                      protein_coding
2485                      protein_coding
2486                      protein_coding
2487                      protein_coding
2488                      protein_coding
2489                      protein_coding
2490                      protein_coding
2491                      protein_coding
2492                      protein_coding
2493                      protein_coding
2494                      protein_coding
2495                      protein_coding
2496                      protein_coding
2497                      protein_coding
2498                      protein_coding
2499                      protein_coding
2500                      protein_coding
2501                      protein_coding
2502                      protein_coding
2503                      protein_coding
2504                      protein_coding
2505                      protein_coding
2506                      protein_coding
2507                      protein_coding
2508                      protein_coding
2509                      protein_coding
2510                      protein_coding
2511                      protein_coding
2512                      protein_coding
2513                      protein_coding
2514                      protein_coding
2515                      protein_coding
2516                      protein_coding
2517                      protein_coding
2518                      protein_coding
2519                             lincRNA
2520                             lincRNA
2521                             lincRNA
2522                             lincRNA
2523                             lincRNA
2524                             lincRNA
2525                             lincRNA
2526                           antisense
2527                           antisense
2528                            misc_RNA
2529                              snoRNA
2530                               miRNA
2531                            misc_RNA
2532                      protein_coding
2533                      protein_coding
2534                      protein_coding
2535                      protein_coding
2536                      protein_coding
2537                      protein_coding
2538                      protein_coding
2539                      protein_coding
2540                      protein_coding
2541                      protein_coding
2542                processed_pseudogene
2543                               miRNA
2544                            misc_RNA
2545                            misc_RNA
2546                              snoRNA
2547                      protein_coding
2548                      protein_coding
2549                      protein_coding
2550                      protein_coding
2551                      protein_coding
2552                      protein_coding
2553                      protein_coding
2554                      protein_coding
2555                      protein_coding
2556                      protein_coding
2557                      protein_coding
2558                      protein_coding
2559                      protein_coding
2560                      protein_coding
2561                      protein_coding
2562                      protein_coding
2563                      protein_coding
2564                      protein_coding
2565                      protein_coding
2566                      protein_coding
2567                      protein_coding
2568                      protein_coding
2569                      protein_coding
2570                      protein_coding
2571                      protein_coding
2572                      protein_coding
2573                      protein_coding
2574                      protein_coding
2575                      protein_coding
2576                      protein_coding
2577                      protein_coding
2578                      protein_coding
2579                      protein_coding
2580                      protein_coding
2581                      protein_coding
2582                      protein_coding
2583                      protein_coding
2584                      protein_coding
2585                      protein_coding
2586                      protein_coding
2587                      protein_coding
2588                      protein_coding
2589                      protein_coding
2590                      protein_coding
2591                      protein_coding
2592                      protein_coding
2593                      protein_coding
2594                      protein_coding
2595                      protein_coding
2596                      protein_coding
2597                      protein_coding
2598                      protein_coding
2599                      protein_coding
2600                      protein_coding
2601                      protein_coding
2602                      protein_coding
2603                      protein_coding
2604                      protein_coding
2605                      protein_coding
2606                      protein_coding
2607                      protein_coding
2608                      protein_coding
2609                      protein_coding
2610                      protein_coding
2611                      protein_coding
2612                      protein_coding
2613                      protein_coding
2614                      protein_coding
2615                      protein_coding
2616                      protein_coding
2617                      protein_coding
2618                      protein_coding
2619                      protein_coding
2620                      protein_coding
2621                      protein_coding
2622                      protein_coding
2623                      protein_coding
2624                      protein_coding
2625                      protein_coding
2626                      protein_coding
2627                      protein_coding
2628                      protein_coding
2629                      protein_coding
2630                      protein_coding
2631                      protein_coding
2632                      protein_coding
2633                      protein_coding
2634                      protein_coding
2635                      protein_coding
2636                      protein_coding
2637                      protein_coding
2638                      protein_coding
2639                      protein_coding
2640                      protein_coding
2641                      protein_coding
2642                      protein_coding
2643                      protein_coding
2644                      protein_coding
2645                      protein_coding
2646                      protein_coding
2647                      protein_coding
2648                      protein_coding
2649                      protein_coding
2650                      protein_coding
2651                      protein_coding
2652                      protein_coding
2653                      protein_coding
2654                      protein_coding
2655                      protein_coding
2656                      protein_coding
2657                      protein_coding
2658                      protein_coding
2659                      protein_coding
2660                      protein_coding
2661                      protein_coding
2662                      protein_coding
2663                      protein_coding
2664                      protein_coding
2665                      protein_coding
2666                      protein_coding
2667                      protein_coding
2668                      protein_coding
2669                      protein_coding
2670                      protein_coding
2671                      protein_coding
2672                      protein_coding
2673                      protein_coding
2674                      protein_coding
2675                      protein_coding
2676                      protein_coding
2677                      protein_coding
2678                      protein_coding
2679                      protein_coding
2680                      protein_coding
2681                      protein_coding
2682                      protein_coding
2683                      protein_coding
2684                      protein_coding
2685                      protein_coding
2686                      protein_coding
2687                      protein_coding
2688                      protein_coding
2689                      protein_coding
2690                      protein_coding
2691                      protein_coding
2692                           antisense
2693                           antisense
2694                             lincRNA
2695                             lincRNA
2696                             lincRNA
2697                             lincRNA
2698                             lincRNA
2699                             lincRNA
2700                             lincRNA
2701                             lincRNA
2702                             lincRNA
2703                             lincRNA
2704                             lincRNA
2705                             lincRNA
2706                             lincRNA
2707                             lincRNA
2708                             lincRNA
2709                             lincRNA
2710                             lincRNA
2711                             lincRNA
2712                             lincRNA
2713                             lincRNA
2714                             lincRNA
2715                      protein_coding
2716                      protein_coding
2717                      protein_coding
2718                      protein_coding
2719                      protein_coding
2720                      protein_coding
2721                      protein_coding
2722                      protein_coding
2723                      protein_coding
2724                      protein_coding
2725                      protein_coding
2726                      protein_coding
2727                      protein_coding
2728                      protein_coding
2729                      protein_coding
2730                      protein_coding
2731                      protein_coding
2732                      protein_coding
2733                      protein_coding
2734                      protein_coding
2735                      protein_coding
2736                      protein_coding
2737                      protein_coding
2738                      protein_coding
2739                      protein_coding
2740                      protein_coding
2741                      protein_coding
2742                      protein_coding
2743                      protein_coding
2744                      protein_coding
2745                      protein_coding
2746                      protein_coding
2747                      protein_coding
2748                      protein_coding
2749                      protein_coding
2750                      protein_coding
2751                      protein_coding
2752                      protein_coding
2753                      protein_coding
2754                      protein_coding
2755                      protein_coding
2756                      protein_coding
2757                      protein_coding
2758                      protein_coding
2759                      protein_coding
2760                      protein_coding
2761                      protein_coding
2762                      protein_coding
2763                      protein_coding
2764                      protein_coding
2765                      protein_coding
2766                      protein_coding
2767                      protein_coding
2768                      protein_coding
2769                      protein_coding
2770                      protein_coding
2771                      protein_coding
2772                      protein_coding
2773                      protein_coding
2774                      protein_coding
2775                      protein_coding
2776                      protein_coding
2777                      protein_coding
2778                      protein_coding
2779                      protein_coding
2780                              snoRNA
2781                               miRNA
2782                               miRNA
2783                      sense_intronic
2784                      sense_intronic
2785                      sense_intronic
2786                      protein_coding
2787                             lincRNA
2788                             lincRNA
2789                             lincRNA
2790                             lincRNA
2791                processed_pseudogene
2792                      protein_coding
2793                      protein_coding
2794                      protein_coding
2795                      protein_coding
2796                      protein_coding
2797                      protein_coding
2798                      protein_coding
2799                      protein_coding
2800                      protein_coding
2801                      protein_coding
2802                      protein_coding
2803                      protein_coding
2804                      protein_coding
2805                      protein_coding
2806                      protein_coding
2807                      protein_coding
2808                      protein_coding
2809                      protein_coding
2810                      protein_coding
2811                      protein_coding
2812                      protein_coding
2813                      protein_coding
2814                      protein_coding
2815                      protein_coding
2816                      protein_coding
2817                      protein_coding
2818                      protein_coding
2819                      protein_coding
2820                      protein_coding
2821                      protein_coding
2822                      protein_coding
2823                      protein_coding
2824                      protein_coding
2825                      protein_coding
2826                      protein_coding
2827                      protein_coding
2828                      protein_coding
2829                      protein_coding
2830                      protein_coding
2831                      protein_coding
2832                      protein_coding
2833                      protein_coding
2834                      protein_coding
2835                      protein_coding
2836                      protein_coding
2837                      protein_coding
2838                      protein_coding
2839                      protein_coding
2840                      sense_intronic
2841                      sense_intronic
2842                      sense_intronic
2843                      sense_intronic
2844                      sense_intronic
2845                      sense_intronic
2846                             lincRNA
2847                             lincRNA
2848                processed_pseudogene
2849                      protein_coding
2850                      protein_coding
2851                      protein_coding
2852                      protein_coding
2853                      protein_coding
2854                      protein_coding
2855                      protein_coding
2856                      protein_coding
2857                      protein_coding
2858                      protein_coding
2859                      protein_coding
2860                      protein_coding
2861                      protein_coding
2862                      protein_coding
2863                      protein_coding
2864                      protein_coding
2865                      protein_coding
2866                      protein_coding
2867                      protein_coding
2868                      protein_coding
2869                      protein_coding
2870                      protein_coding
2871                      protein_coding
2872                      protein_coding
2873                      protein_coding
2874                      protein_coding
2875                      protein_coding
2876                      protein_coding
2877                      protein_coding
2878                      protein_coding
2879                      protein_coding
2880                      protein_coding
2881                      protein_coding
2882                      protein_coding
2883                      protein_coding
2884                      protein_coding
2885                      protein_coding
2886                      protein_coding
2887                      protein_coding
2888                      protein_coding
2889                      protein_coding
2890                      protein_coding
2891                      protein_coding
2892                      protein_coding
2893                      protein_coding
2894                      protein_coding
2895                      protein_coding
2896                      protein_coding
2897                      protein_coding
2898                      protein_coding
2899                      protein_coding
2900                      protein_coding
2901                      protein_coding
2902                      protein_coding
2903                      protein_coding
2904                      protein_coding
2905                      protein_coding
2906                      protein_coding
2907                      protein_coding
2908                      protein_coding
2909                      protein_coding
2910                      protein_coding
2911                      protein_coding
2912                      protein_coding
2913                      protein_coding
2914                      protein_coding
2915                      protein_coding
2916                      protein_coding
2917                      protein_coding
2918                      protein_coding
2919                      protein_coding
2920                      protein_coding
2921                      protein_coding
2922                      protein_coding
2923                      protein_coding
2924                      protein_coding
2925                      protein_coding
2926                      protein_coding
2927                      protein_coding
2928                      protein_coding
2929                      protein_coding
2930                      protein_coding
2931                      protein_coding
2932                      protein_coding
2933                      protein_coding
2934                      protein_coding
2935                      protein_coding
2936                      protein_coding
2937                      protein_coding
2938                      protein_coding
2939                      protein_coding
2940                      protein_coding
2941                      protein_coding
2942                      protein_coding
2943                      protein_coding
2944                      protein_coding
2945                      protein_coding
2946                      protein_coding
2947                      protein_coding
2948                      protein_coding
2949                      protein_coding
2950                      protein_coding
2951                      protein_coding
2952                      protein_coding
2953                      protein_coding
2954                      protein_coding
2955                      protein_coding
2956                      protein_coding
2957                      protein_coding
2958                      protein_coding
2959                      protein_coding
2960                      protein_coding
2961                      protein_coding
2962                      protein_coding
2963                      protein_coding
2964                      protein_coding
2965                      protein_coding
2966                processed_pseudogene
2967                                 TEC
2968                             lincRNA
2969                             lincRNA
2970                             lincRNA
2971                             lincRNA
2972                             lincRNA
2973                             lincRNA
2974                             lincRNA
2975                             lincRNA
2976                      protein_coding
2977                      protein_coding
2978                             lincRNA
2979                             lincRNA
2980                             lincRNA
2981                      protein_coding
2982                      protein_coding
2983                      protein_coding
2984                      protein_coding
2985                      protein_coding
2986                      protein_coding
2987                      protein_coding
2988                      protein_coding
2989                      protein_coding
2990                      protein_coding
2991                      protein_coding
2992                      protein_coding
2993                      protein_coding
2994                      protein_coding
2995                      protein_coding
2996                      protein_coding
2997                      protein_coding
2998                      protein_coding
2999                      protein_coding
3000                      protein_coding
3001                      protein_coding
3002                      protein_coding
3003                      protein_coding
3004                      protein_coding
3005                      protein_coding
3006                      protein_coding
3007                      protein_coding
3008                      protein_coding
3009                      protein_coding
3010                      protein_coding
3011                      protein_coding
3012                      protein_coding
3013                      protein_coding
3014                      protein_coding
3015                      protein_coding
3016                      protein_coding
3017                      protein_coding
3018                      protein_coding
3019                      protein_coding
3020                      protein_coding
3021                      protein_coding
3022                      protein_coding
3023                      protein_coding
3024                      protein_coding
3025                      protein_coding
3026                      protein_coding
3027                      protein_coding
3028                      protein_coding
3029                      protein_coding
3030                      protein_coding
3031                      protein_coding
3032                      protein_coding
3033                      protein_coding
3034                      protein_coding
3035                      protein_coding
3036                      protein_coding
3037                      protein_coding
3038                      protein_coding
3039                      protein_coding
3040                      protein_coding
3041                      protein_coding
3042                      protein_coding
3043                      protein_coding
3044                      protein_coding
3045                      protein_coding
3046                      protein_coding
3047                      protein_coding
3048                      protein_coding
3049                      protein_coding
3050                      protein_coding
3051                      protein_coding
3052                      protein_coding
3053                      protein_coding
3054                      protein_coding
3055                      protein_coding
3056                      protein_coding
3057                      protein_coding
3058                      protein_coding
3059                      protein_coding
3060                      protein_coding
3061                      protein_coding
3062                      protein_coding
3063                      protein_coding
3064                      protein_coding
3065                      protein_coding
3066                      protein_coding
3067                      protein_coding
3068                      protein_coding
3069                      protein_coding
3070                      protein_coding
3071                      protein_coding
3072                      protein_coding
3073                      protein_coding
3074                      protein_coding
3075                      protein_coding
3076                      protein_coding
3077                      protein_coding
3078                      protein_coding
3079                      protein_coding
3080                      protein_coding
3081                      protein_coding
3082                      protein_coding
3083                      protein_coding
3084                      protein_coding
3085                      protein_coding
3086                      protein_coding
3087                      protein_coding
3088                      protein_coding
3089                      protein_coding
3090                      protein_coding
3091                      protein_coding
3092                      protein_coding
3093                      protein_coding
3094                      protein_coding
3095                      protein_coding
3096                      protein_coding
3097                      protein_coding
3098                      protein_coding
3099                      protein_coding
3100                      protein_coding
3101                      protein_coding
3102                      protein_coding
3103                      protein_coding
3104                      protein_coding
3105                      protein_coding
3106                      protein_coding
3107                      protein_coding
3108                      protein_coding
3109                      protein_coding
3110                      protein_coding
3111                      protein_coding
3112                      protein_coding
3113                      protein_coding
3114                      protein_coding
3115                      protein_coding
3116                      protein_coding
3117                      protein_coding
3118                      protein_coding
3119                      protein_coding
3120                      protein_coding
3121                      protein_coding
3122                      protein_coding
3123                      protein_coding
3124                      protein_coding
3125                      protein_coding
3126                      protein_coding
3127                      protein_coding
3128                      protein_coding
3129                      protein_coding
3130                      protein_coding
3131                      protein_coding
3132                      protein_coding
3133                      protein_coding
3134                      protein_coding
3135                      protein_coding
3136                      protein_coding
3137                      protein_coding
3138                      protein_coding
3139                      protein_coding
3140                      protein_coding
3141                      protein_coding
3142                      protein_coding
3143                      protein_coding
3144                      protein_coding
3145                      protein_coding
3146                      protein_coding
3147                      protein_coding
3148                      protein_coding
3149                processed_pseudogene
3150                             lincRNA
3151                             lincRNA
3152                             lincRNA
3153                             lincRNA
3154                      protein_coding
3155                      protein_coding
3156                      protein_coding
3157                      protein_coding
3158                      protein_coding
3159                      protein_coding
3160                      protein_coding
3161                      protein_coding
3162                      protein_coding
3163                      protein_coding
3164                      protein_coding
3165                      protein_coding
3166                      protein_coding
3167                      protein_coding
3168                      protein_coding
3169                      protein_coding
3170                      protein_coding
3171                      protein_coding
3172                      protein_coding
3173                      protein_coding
3174                      protein_coding
3175                      protein_coding
3176                      protein_coding
3177                      protein_coding
3178                      protein_coding
3179                      protein_coding
3180                      protein_coding
3181                      protein_coding
3182                      protein_coding
3183                      protein_coding
3184                      protein_coding
3185                      protein_coding
3186                      protein_coding
3187                      protein_coding
3188                      protein_coding
3189                      protein_coding
3190                      protein_coding
3191                      protein_coding
3192                      protein_coding
3193                      protein_coding
3194                      protein_coding
3195                      protein_coding
3196                      protein_coding
3197                      protein_coding
3198                      protein_coding
3199                      protein_coding
3200                      protein_coding
3201                      protein_coding
3202                      protein_coding
3203                      protein_coding
3204                      protein_coding
3205                      protein_coding
3206                      protein_coding
3207                      protein_coding
3208                      protein_coding
3209                      protein_coding
3210                      protein_coding
3211                      protein_coding
3212                      protein_coding
3213                      protein_coding
3214                      protein_coding
3215                      protein_coding
3216                      protein_coding
3217                      protein_coding
3218                      protein_coding
3219                      protein_coding
3220                      protein_coding
3221                      protein_coding
3222                      protein_coding
3223                      protein_coding
3224                      protein_coding
3225                      protein_coding
3226                      protein_coding
3227                      protein_coding
3228                      protein_coding
3229                      protein_coding
3230                      protein_coding
3231                      protein_coding
3232                      protein_coding
3233                      protein_coding
3234                      protein_coding
3235                      protein_coding
3236                      protein_coding
3237                      protein_coding
3238                      protein_coding
3239                      protein_coding
3240                      protein_coding
3241                      protein_coding
3242                      protein_coding
3243                      protein_coding
3244                      protein_coding
3245                      protein_coding
3246                      protein_coding
3247                      protein_coding
3248                      protein_coding
3249                      protein_coding
3250                      protein_coding
3251                      protein_coding
3252                      protein_coding
3253                      protein_coding
3254                      protein_coding
3255                      protein_coding
3256                      protein_coding
3257                      protein_coding
3258                      protein_coding
3259                      protein_coding
3260                      protein_coding
3261                      protein_coding
3262                      protein_coding
3263                      protein_coding
3264                      protein_coding
3265                      protein_coding
3266                      protein_coding
3267                      protein_coding
3268                      protein_coding
3269                      protein_coding
3270                      protein_coding
3271                      protein_coding
3272                      protein_coding
3273                      protein_coding
3274                      protein_coding
3275                      protein_coding
3276                      protein_coding
3277                      protein_coding
3278                      protein_coding
3279                      protein_coding
3280                      protein_coding
3281                      protein_coding
3282                      protein_coding
3283                      protein_coding
3284                      protein_coding
3285                      protein_coding
3286                      protein_coding
3287                      protein_coding
3288                      protein_coding
3289                      protein_coding
3290                      protein_coding
3291                      protein_coding
3292                      protein_coding
3293                      protein_coding
3294                      protein_coding
3295                      protein_coding
3296                      protein_coding
3297                      protein_coding
3298                      protein_coding
3299                      protein_coding
3300                      protein_coding
3301                      protein_coding
3302                      protein_coding
3303                      protein_coding
3304                      protein_coding
3305                      protein_coding
3306                      protein_coding
3307                      protein_coding
3308                      protein_coding
3309                      protein_coding
3310                      protein_coding
3311                      protein_coding
3312                      protein_coding
3313                      protein_coding
3314                      protein_coding
3315                      protein_coding
3316                      protein_coding
3317                      protein_coding
3318                      protein_coding
3319                      protein_coding
3320                      protein_coding
3321                      protein_coding
3322                      protein_coding
3323                      protein_coding
3324                      protein_coding
3325                      protein_coding
3326                      protein_coding
3327                      protein_coding
3328                      protein_coding
3329                      protein_coding
3330                      protein_coding
3331                      protein_coding
3332                      protein_coding
3333                      protein_coding
3334                      protein_coding
3335                      protein_coding
3336                      protein_coding
3337                      protein_coding
3338                      protein_coding
3339                      protein_coding
3340                      protein_coding
3341                      protein_coding
3342                      protein_coding
3343                      protein_coding
3344                      protein_coding
3345                      protein_coding
3346                      protein_coding
3347                      protein_coding
3348                      protein_coding
3349                      protein_coding
3350                      protein_coding
3351                      protein_coding
3352                      protein_coding
3353                      protein_coding
3354                      protein_coding
3355                      protein_coding
3356                      protein_coding
3357                      protein_coding
3358                      protein_coding
3359                      protein_coding
3360                      protein_coding
3361                      protein_coding
3362                      protein_coding
3363                      protein_coding
3364                      protein_coding
3365                      protein_coding
3366                      protein_coding
3367                      protein_coding
3368                      protein_coding
3369                      protein_coding
3370                      protein_coding
3371                      protein_coding
3372                      protein_coding
3373                      protein_coding
3374                      protein_coding
3375                      protein_coding
3376                      protein_coding
3377                      protein_coding
3378                      protein_coding
3379                      protein_coding
3380                      protein_coding
3381                      protein_coding
3382                      protein_coding
3383                      protein_coding
3384                             lincRNA
3385                      sense_intronic
3386                      sense_intronic
3387                      sense_intronic
3388                      sense_intronic
3389                      protein_coding
3390                      protein_coding
3391                      protein_coding
3392                      protein_coding
3393                processed_pseudogene
3394                processed_pseudogene
3395                processed_pseudogene
3396                             lincRNA
3397                   sense_overlapping
3398                   sense_overlapping
3399                   sense_overlapping
3400                   sense_overlapping
3401                   sense_overlapping
3402                      protein_coding
3403                      protein_coding
3404                      protein_coding
3405                      protein_coding
3406                      protein_coding
3407                      protein_coding
3408                      protein_coding
3409                      protein_coding
3410                      protein_coding
3411                      protein_coding
3412                      protein_coding
3413                      protein_coding
3414                      protein_coding
3415                      protein_coding
3416                      protein_coding
3417                      protein_coding
3418                      protein_coding
3419                      protein_coding
3420                      protein_coding
3421                      protein_coding
3422                      protein_coding
3423                      protein_coding
3424                      protein_coding
3425                      protein_coding
3426                      protein_coding
3427                      protein_coding
3428                      protein_coding
3429                      protein_coding
3430                      protein_coding
3431                      protein_coding
3432                      protein_coding
3433                      protein_coding
3434                      protein_coding
3435                      protein_coding
3436                      protein_coding
3437                      protein_coding
3438                      protein_coding
3439                      protein_coding
3440                      protein_coding
3441                      protein_coding
3442                      protein_coding
3443                      protein_coding
3444                      protein_coding
3445                      protein_coding
3446                      protein_coding
3447                      protein_coding
3448                      protein_coding
3449                      protein_coding
3450                      protein_coding
3451                      protein_coding
3452                      protein_coding
3453                      protein_coding
3454                      protein_coding
3455                      protein_coding
3456                      protein_coding
3457                      protein_coding
3458                      protein_coding
3459                      protein_coding
3460                      protein_coding
3461                      protein_coding
3462                      protein_coding
3463                      protein_coding
3464                      protein_coding
3465                      protein_coding
3466                      protein_coding
3467                      protein_coding
3468                      protein_coding
3469                      protein_coding
3470                      protein_coding
3471                      protein_coding
3472                      protein_coding
3473                      protein_coding
3474                      protein_coding
3475                      protein_coding
3476                      protein_coding
3477                      protein_coding
3478                      protein_coding
3479                      protein_coding
3480                      protein_coding
3481                      protein_coding
3482                      protein_coding
3483                      protein_coding
3484                      protein_coding
3485                      protein_coding
3486                      protein_coding
3487                      protein_coding
3488                      protein_coding
3489                      protein_coding
3490                      protein_coding
3491                      protein_coding
3492                      protein_coding
3493                      protein_coding
3494                      protein_coding
3495                      protein_coding
3496                      protein_coding
3497                      protein_coding
3498                      protein_coding
3499                      protein_coding
3500                      protein_coding
3501                      protein_coding
3502                      protein_coding
3503                      protein_coding
3504                      protein_coding
3505                      protein_coding
3506                      protein_coding
3507                      protein_coding
3508                      protein_coding
3509                      protein_coding
3510                      protein_coding
3511                      protein_coding
3512                      protein_coding
3513                      protein_coding
3514                      protein_coding
3515                      protein_coding
3516                      protein_coding
3517                      protein_coding
3518                      protein_coding
3519                      protein_coding
3520                      protein_coding
3521                      protein_coding
3522                      protein_coding
3523                      protein_coding
3524                      protein_coding
3525                      protein_coding
3526                      protein_coding
3527                      protein_coding
3528                      protein_coding
3529                      protein_coding
3530                      protein_coding
3531                      protein_coding
3532                      protein_coding
3533                      protein_coding
3534                      protein_coding
3535                      protein_coding
3536                      protein_coding
3537                      protein_coding
3538                      protein_coding
3539                      protein_coding
3540                      protein_coding
3541                      protein_coding
3542                      protein_coding
3543                      protein_coding
3544                      protein_coding
3545                      protein_coding
3546                      protein_coding
3547                      protein_coding
3548                      protein_coding
3549                      protein_coding
3550                      protein_coding
3551                      protein_coding
3552                      protein_coding
3553                      protein_coding
3554                      protein_coding
3555              unprocessed_pseudogene
3556              unprocessed_pseudogene
3557              unprocessed_pseudogene
3558              unprocessed_pseudogene
3559              unprocessed_pseudogene
3560              unprocessed_pseudogene
3561              unprocessed_pseudogene
3562              unprocessed_pseudogene
3563              unprocessed_pseudogene
3564              unprocessed_pseudogene
3565                processed_pseudogene
3566                      protein_coding
3567                      protein_coding
3568                      protein_coding
3569                      protein_coding
3570                      protein_coding
3571                      protein_coding
3572                      protein_coding
3573                      protein_coding
3574                      protein_coding
3575                      protein_coding
3576                      protein_coding
3577                      protein_coding
3578                      protein_coding
3579                      protein_coding
3580                      protein_coding
3581                      protein_coding
3582                      protein_coding
3583                      protein_coding
3584                      protein_coding
3585                      protein_coding
3586                      protein_coding
3587                      protein_coding
3588                      protein_coding
3589                      protein_coding
3590                      protein_coding
3591                      protein_coding
3592                      protein_coding
3593                      protein_coding
3594                      protein_coding
3595                      protein_coding
3596                      protein_coding
3597                      protein_coding
3598                      protein_coding
3599                      protein_coding
3600                      protein_coding
3601                      protein_coding
3602                      protein_coding
3603                      protein_coding
3604                      protein_coding
3605                      protein_coding
3606                      protein_coding
3607                      protein_coding
3608                      protein_coding
3609                      protein_coding
3610                      protein_coding
3611                      protein_coding
3612                      protein_coding
3613                      protein_coding
3614                      protein_coding
3615                      protein_coding
3616                      protein_coding
3617                      protein_coding
3618                      protein_coding
3619                      protein_coding
3620                      protein_coding
3621                      protein_coding
3622                      protein_coding
3623                      protein_coding
3624                      protein_coding
3625                      protein_coding
3626                      protein_coding
3627                      protein_coding
3628                      protein_coding
3629                      protein_coding
3630                      protein_coding
3631                      protein_coding
3632                      protein_coding
3633                      protein_coding
3634                      protein_coding
3635                      protein_coding
3636                      protein_coding
3637                      protein_coding
3638                      protein_coding
3639                      protein_coding
3640                      protein_coding
3641                      protein_coding
3642                      protein_coding
3643                      protein_coding
3644                      protein_coding
3645                      protein_coding
3646                      protein_coding
3647                      protein_coding
3648                      protein_coding
3649                      protein_coding
3650                      protein_coding
3651                      protein_coding
3652                      protein_coding
3653                      protein_coding
3654                      protein_coding
3655                      protein_coding
3656                      protein_coding
3657                      protein_coding
3658                      protein_coding
3659                      protein_coding
3660                      protein_coding
3661                      protein_coding
3662                      protein_coding
3663                      protein_coding
3664                      protein_coding
3665                      protein_coding
3666                      protein_coding
3667                      protein_coding
3668                      protein_coding
3669                      protein_coding
3670                      protein_coding
3671                      protein_coding
3672                      protein_coding
3673                      protein_coding
3674                      protein_coding
3675                      protein_coding
3676                      protein_coding
3677                      protein_coding
3678                      protein_coding
3679                      protein_coding
3680                      protein_coding
3681                      protein_coding
3682                      protein_coding
3683                      protein_coding
3684                      protein_coding
3685                      protein_coding
3686                      protein_coding
3687                      protein_coding
3688                      protein_coding
3689                      protein_coding
3690                      protein_coding
3691                      protein_coding
3692                      protein_coding
3693                      protein_coding
3694                      protein_coding
3695                      protein_coding
3696                      protein_coding
3697                      protein_coding
3698                      protein_coding
3699                      protein_coding
3700                      protein_coding
3701                      protein_coding
3702                      protein_coding
3703                      protein_coding
3704                      protein_coding
3705                      protein_coding
3706                      protein_coding
3707                      protein_coding
3708                      protein_coding
3709                      protein_coding
3710                      protein_coding
3711                      protein_coding
3712                      protein_coding
3713                      protein_coding
3714                      protein_coding
3715                      protein_coding
3716                      protein_coding
3717                      protein_coding
3718                      protein_coding
3719                      protein_coding
3720                      protein_coding
3721                      protein_coding
3722                      protein_coding
3723                      protein_coding
3724                      protein_coding
3725                      protein_coding
3726                      protein_coding
3727                      protein_coding
3728                      protein_coding
3729                      protein_coding
3730                      protein_coding
3731                      protein_coding
3732                      protein_coding
3733                      protein_coding
3734                      protein_coding
3735                      protein_coding
3736                      protein_coding
3737                      protein_coding
3738                      protein_coding
3739                      protein_coding
3740                      protein_coding
3741                      protein_coding
3742                      protein_coding
3743                      protein_coding
3744                      protein_coding
3745                      protein_coding
3746                      protein_coding
3747                      protein_coding
3748                      protein_coding
3749                      protein_coding
3750                      protein_coding
3751                      protein_coding
3752                      protein_coding
3753                      protein_coding
3754                      protein_coding
3755                      protein_coding
3756                      protein_coding
3757                      protein_coding
3758                      protein_coding
3759                      protein_coding
3760                      protein_coding
3761                      protein_coding
3762                      protein_coding
3763                      protein_coding
3764                      protein_coding
3765                      protein_coding
3766                      protein_coding
3767                      protein_coding
3768                      protein_coding
3769                      protein_coding
3770                      protein_coding
3771                      protein_coding
3772                      protein_coding
3773                      protein_coding
3774                      protein_coding
3775                      protein_coding
3776                      protein_coding
3777                      protein_coding
3778                      protein_coding
3779                      protein_coding
3780                      protein_coding
3781                      protein_coding
3782                      protein_coding
3783                      protein_coding
3784                      protein_coding
3785                      protein_coding
3786                      protein_coding
3787                      protein_coding
3788                      protein_coding
3789                      protein_coding
3790                      protein_coding
3791                      protein_coding
3792                      protein_coding
3793                      protein_coding
3794                      protein_coding
3795                      protein_coding
3796                      protein_coding
3797                      protein_coding
3798                      protein_coding
3799                      protein_coding
3800                      protein_coding
3801                      protein_coding
3802                      protein_coding
3803                      protein_coding
3804                      protein_coding
3805                      protein_coding
3806                      protein_coding
3807                      protein_coding
3808                      protein_coding
3809                      protein_coding
3810                      protein_coding
3811                      protein_coding
3812                      protein_coding
3813                      protein_coding
3814                      protein_coding
3815                      protein_coding
3816                      protein_coding
3817                      protein_coding
3818                      protein_coding
3819                      protein_coding
3820                      protein_coding
3821                      protein_coding
3822                      protein_coding
3823                      protein_coding
3824                      protein_coding
3825                      protein_coding
3826                      protein_coding
3827                      protein_coding
3828                      protein_coding
3829                      protein_coding
3830                      protein_coding
3831                      protein_coding
3832                      protein_coding
3833                      protein_coding
3834                      protein_coding
3835                      protein_coding
3836                      protein_coding
3837                      protein_coding
3838                      protein_coding
3839                      protein_coding
3840                      protein_coding
3841                      protein_coding
3842                      protein_coding
3843                      protein_coding
3844                      protein_coding
3845                      protein_coding
3846                      protein_coding
3847                      protein_coding
3848                      protein_coding
3849                      protein_coding
3850                      protein_coding
3851                      protein_coding
3852                      protein_coding
3853                      protein_coding
3854                      protein_coding
3855                      protein_coding
3856                      protein_coding
3857                      protein_coding
3858                      protein_coding
3859                      protein_coding
3860                      protein_coding
3861                      protein_coding
3862                      protein_coding
3863                      protein_coding
3864                      protein_coding
3865                      protein_coding
3866                      protein_coding
3867                      protein_coding
3868                      protein_coding
3869                      protein_coding
3870                      protein_coding
3871                      protein_coding
3872                      protein_coding
3873                      protein_coding
3874                      protein_coding
3875                      protein_coding
3876                      protein_coding
3877                      protein_coding
3878                      protein_coding
3879                      protein_coding
3880                      protein_coding
3881                      protein_coding
3882                      protein_coding
3883                      protein_coding
3884                      protein_coding
3885                      protein_coding
3886                      protein_coding
3887                      protein_coding
3888                      protein_coding
3889                      protein_coding
3890                      protein_coding
3891                      protein_coding
3892                      protein_coding
3893                      protein_coding
3894                      protein_coding
3895                      protein_coding
3896                      protein_coding
3897                      protein_coding
3898                      protein_coding
3899                      protein_coding
3900                      protein_coding
3901                      protein_coding
3902                      protein_coding
3903                      protein_coding
3904                      protein_coding
3905                      protein_coding
3906                      protein_coding
3907                      protein_coding
3908                      protein_coding
3909                      protein_coding
3910                      protein_coding
3911                      protein_coding
3912                      protein_coding
3913                      protein_coding
3914                      protein_coding
3915                      protein_coding
3916                      protein_coding
3917                      protein_coding
3918                      protein_coding
3919                      protein_coding
3920                      protein_coding
3921                      protein_coding
3922                      protein_coding
3923                      protein_coding
3924                      protein_coding
3925                      protein_coding
3926                      protein_coding
3927                      protein_coding
3928                      protein_coding
3929                      protein_coding
3930                      protein_coding
3931                      protein_coding
3932                      protein_coding
3933                      protein_coding
3934                      protein_coding
3935                      protein_coding
3936                      protein_coding
3937                      protein_coding
3938                      protein_coding
3939                      protein_coding
3940                      protein_coding
3941                      protein_coding
3942                      protein_coding
3943                      protein_coding
3944                      protein_coding
3945                      protein_coding
3946                      protein_coding
3947                      protein_coding
3948                      protein_coding
3949                      protein_coding
3950                      protein_coding
3951                      protein_coding
3952                      protein_coding
3953                      protein_coding
3954                      protein_coding
3955                      protein_coding
3956                      protein_coding
3957                      protein_coding
3958                      protein_coding
3959                      protein_coding
3960                      protein_coding
3961                      protein_coding
3962                      protein_coding
3963                      protein_coding
3964                      protein_coding
3965                      protein_coding
3966                      protein_coding
3967                      protein_coding
3968                      protein_coding
3969                      protein_coding
3970                      protein_coding
3971                      protein_coding
3972                      protein_coding
3973                      protein_coding
3974                      protein_coding
3975                      protein_coding
3976                      protein_coding
3977                      protein_coding
3978                      protein_coding
3979                      protein_coding
3980                      protein_coding
3981                      protein_coding
3982                      protein_coding
3983                      protein_coding
3984                      protein_coding
3985                      protein_coding
3986                      protein_coding
3987                      protein_coding
3988                      protein_coding
3989                      protein_coding
3990                      protein_coding
3991                      protein_coding
3992                      protein_coding
3993                      protein_coding
3994                      protein_coding
3995                      protein_coding
3996                      protein_coding
3997                      protein_coding
3998                      protein_coding
3999                      protein_coding
4000                      protein_coding
4001                      protein_coding
4002                      protein_coding
4003                      protein_coding
4004                      protein_coding
4005                      protein_coding
4006                      protein_coding
4007                      protein_coding
4008                      protein_coding
4009                      protein_coding
4010                      protein_coding
4011                      protein_coding
4012                      protein_coding
4013                      protein_coding
4014                      protein_coding
4015                      protein_coding
4016                      protein_coding
4017                      protein_coding
4018                      protein_coding
4019                      protein_coding
4020                      protein_coding
4021                      protein_coding
4022                      protein_coding
4023                      protein_coding
4024                      protein_coding
4025                      protein_coding
4026                      protein_coding
4027                      protein_coding
4028                      protein_coding
4029                      protein_coding
4030                      protein_coding
4031                      protein_coding
4032                      protein_coding
4033                processed_pseudogene
4034                             lincRNA
4035                             lincRNA
4036                             lincRNA
4037                             lincRNA
4038                             lincRNA
4039                             lincRNA
4040                             lincRNA
4041                             lincRNA
4042                             lincRNA
4043                             lincRNA
4044                             lincRNA
4045                             lincRNA
4046                             lincRNA
4047                             lincRNA
4048                             lincRNA
4049                                 TEC
4050                             lincRNA
4051                             lincRNA
4052                             lincRNA
4053                             lincRNA
4054                             lincRNA
4055                             lincRNA
4056                             lincRNA
4057                             lincRNA
4058                             lincRNA
4059                             lincRNA
4060                             lincRNA
4061                             lincRNA
4062                             lincRNA
4063                             lincRNA
4064                             lincRNA
4065                             lincRNA
4066                             lincRNA
4067                             lincRNA
4068                             lincRNA
4069                             lincRNA
4070                             lincRNA
4071                             lincRNA
4072                           antisense
4073                           antisense
4074                           antisense
4075                             lincRNA
4076                             lincRNA
4077                             lincRNA
4078                      protein_coding
4079                      protein_coding
4080                      protein_coding
4081                      protein_coding
4082                      protein_coding
4083                      protein_coding
4084                      protein_coding
4085                      protein_coding
4086                      protein_coding
4087                      protein_coding
4088                      protein_coding
4089                      protein_coding
4090                      protein_coding
4091                      protein_coding
4092                      protein_coding
4093                      protein_coding
4094                      protein_coding
4095                      protein_coding
4096                      protein_coding
4097                      protein_coding
4098                      protein_coding
4099                      protein_coding
4100                      protein_coding
4101                      protein_coding
4102                      protein_coding
4103                      protein_coding
4104                      protein_coding
4105                      protein_coding
4106                      protein_coding
4107                      protein_coding
4108                      protein_coding
4109                      protein_coding
4110                      protein_coding
4111                      protein_coding
4112                      protein_coding
4113                      protein_coding
4114                      protein_coding
4115                      protein_coding
4116                      protein_coding
4117                      protein_coding
4118                      protein_coding
4119                      protein_coding
4120                      protein_coding
4121                      protein_coding
4122                      protein_coding
4123                      protein_coding
4124                      protein_coding
4125                      protein_coding
4126                      protein_coding
4127                      protein_coding
4128                      protein_coding
4129                      protein_coding
4130                      protein_coding
4131                      protein_coding
4132                      protein_coding
4133                      protein_coding
4134                      protein_coding
4135                      protein_coding
4136                      protein_coding
4137                      protein_coding
4138                      protein_coding
4139                      protein_coding
4140                      protein_coding
4141                      protein_coding
4142                      protein_coding
4143                      protein_coding
4144                      protein_coding
4145                      protein_coding
4146                      protein_coding
4147                      protein_coding
4148                      protein_coding
4149                      protein_coding
4150                      protein_coding
4151                             lincRNA
4152                             lincRNA
4153                             lincRNA
4154              unprocessed_pseudogene
4155              unprocessed_pseudogene
4156              unprocessed_pseudogene
4157                processed_pseudogene
4158                      protein_coding
4159                      protein_coding
4160                      protein_coding
4161                      protein_coding
4162                      protein_coding
4163                      protein_coding
4164                      protein_coding
4165                      protein_coding
4166                      protein_coding
4167                      protein_coding
4168                      protein_coding
4169                      protein_coding
4170                      protein_coding
4171                      protein_coding
4172                      protein_coding
4173                      protein_coding
4174                      protein_coding
4175                      protein_coding
4176                      protein_coding
4177                      protein_coding
4178                      protein_coding
4179                      protein_coding
4180                      protein_coding
4181                      protein_coding
4182                      protein_coding
4183                      protein_coding
4184                      protein_coding
4185                      protein_coding
4186                      protein_coding
4187                      protein_coding
4188                      protein_coding
4189                      protein_coding
4190                      protein_coding
4191                      protein_coding
4192                      protein_coding
4193                      protein_coding
4194                      protein_coding
4195                      protein_coding
4196                      protein_coding
4197                      protein_coding
4198                      protein_coding
4199                      protein_coding
4200                      protein_coding
4201                      protein_coding
4202                      protein_coding
4203                      protein_coding
4204                      protein_coding
4205                      protein_coding
4206                      protein_coding
4207                      protein_coding
4208                      protein_coding
4209                      protein_coding
4210                      protein_coding
4211                      protein_coding
4212                      protein_coding
4213                      protein_coding
4214                      protein_coding
4215                      protein_coding
4216                      protein_coding
4217                      protein_coding
4218                      protein_coding
4219                      protein_coding
4220                      protein_coding
4221                      protein_coding
4222                      protein_coding
4223                      protein_coding
4224                      protein_coding
4225                      protein_coding
4226                      protein_coding
4227                      protein_coding
4228                      protein_coding
4229                      protein_coding
4230                      protein_coding
4231                      protein_coding
4232                      protein_coding
4233                      protein_coding
4234                      protein_coding
4235                      protein_coding
4236                      protein_coding
4237                      protein_coding
4238                      protein_coding
4239                      protein_coding
4240                      protein_coding
4241                      protein_coding
4242                      protein_coding
4243                      protein_coding
4244                      protein_coding
4245                      protein_coding
4246                      protein_coding
4247                      protein_coding
4248                      protein_coding
4249                      protein_coding
4250                      protein_coding
4251                      protein_coding
4252                      protein_coding
4253                      protein_coding
4254                      protein_coding
4255                      protein_coding
4256                      protein_coding
4257                      protein_coding
4258                      protein_coding
4259                      protein_coding
4260                      protein_coding
4261                      protein_coding
4262                      protein_coding
4263                      protein_coding
4264                      protein_coding
4265                      protein_coding
4266                      protein_coding
4267                      protein_coding
4268                      protein_coding
4269                      protein_coding
4270                      protein_coding
4271                      protein_coding
4272                      protein_coding
4273                      protein_coding
4274                      protein_coding
4275                      protein_coding
4276                      protein_coding
4277                      protein_coding
4278                      protein_coding
4279                      protein_coding
4280                      protein_coding
4281                      protein_coding
4282                      protein_coding
4283                      protein_coding
4284                      protein_coding
4285                      protein_coding
4286                      protein_coding
4287                      protein_coding
4288                      protein_coding
4289                      protein_coding
4290                      protein_coding
4291                      protein_coding
4292                      protein_coding
4293                      protein_coding
4294                           antisense
4295                           antisense
4296                           antisense
4297                           antisense
4298                           antisense
4299                      protein_coding
4300                      protein_coding
4301                      protein_coding
4302                      protein_coding
4303                      protein_coding
4304                      protein_coding
4305                      protein_coding
4306                      protein_coding
4307                      protein_coding
4308                      protein_coding
4309                      protein_coding
4310                      protein_coding
4311                      protein_coding
4312                      protein_coding
4313                      protein_coding
4314                      protein_coding
4315                      protein_coding
4316                      protein_coding
4317                      protein_coding
4318                      protein_coding
4319                      protein_coding
4320                      protein_coding
4321                      protein_coding
4322                      protein_coding
4323                      protein_coding
4324                      protein_coding
4325                      protein_coding
4326                      protein_coding
4327                      protein_coding
4328                      protein_coding
4329                      protein_coding
4330                      protein_coding
4331                      protein_coding
4332                      protein_coding
4333                      protein_coding
4334                      protein_coding
4335                      protein_coding
4336                      protein_coding
4337                      protein_coding
4338                      protein_coding
4339                      protein_coding
4340                      protein_coding
4341                      protein_coding
4342                      protein_coding
4343                      protein_coding
4344                      protein_coding
4345                      protein_coding
4346                      protein_coding
4347                      protein_coding
4348                      protein_coding
4349                      protein_coding
4350                      protein_coding
4351                      protein_coding
4352                      protein_coding
4353                      protein_coding
4354                      protein_coding
4355                      protein_coding
4356                      protein_coding
4357                      protein_coding
4358                      protein_coding
4359                      protein_coding
4360                      protein_coding
4361                      protein_coding
4362                      protein_coding
4363                      protein_coding
4364                      protein_coding
4365                      protein_coding
4366                      protein_coding
4367                      protein_coding
4368                      protein_coding
4369                      protein_coding
4370                      protein_coding
4371                      protein_coding
4372                      protein_coding
4373                      protein_coding
4374                      protein_coding
4375                      protein_coding
4376                      protein_coding
4377                      protein_coding
4378                      protein_coding
4379                      protein_coding
4380                      protein_coding
4381                      protein_coding
4382                      protein_coding
4383                      protein_coding
4384                      protein_coding
4385                      protein_coding
4386                      protein_coding
4387                      protein_coding
4388                      protein_coding
4389                      protein_coding
4390                      protein_coding
4391                      protein_coding
4392                      protein_coding
4393                      protein_coding
4394                      protein_coding
4395                      protein_coding
4396                      protein_coding
4397                      protein_coding
4398                      protein_coding
4399                      protein_coding
4400                      protein_coding
4401                      protein_coding
4402                      protein_coding
4403                      protein_coding
4404                      protein_coding
4405                      protein_coding
4406                      protein_coding
4407                      protein_coding
4408                      protein_coding
4409                      protein_coding
4410                      protein_coding
4411                      protein_coding
4412                      protein_coding
4413                      protein_coding
4414                      protein_coding
4415                      protein_coding
4416                      protein_coding
4417                      protein_coding
4418                      protein_coding
4419                      protein_coding
4420                      protein_coding
4421                      protein_coding
4422                      protein_coding
4423                      protein_coding
4424                      protein_coding
4425                      protein_coding
4426                      protein_coding
4427                      protein_coding
4428                      protein_coding
4429                      protein_coding
4430                      protein_coding
4431                      protein_coding
4432                      protein_coding
4433                      protein_coding
4434                      protein_coding
4435                      protein_coding
4436                      protein_coding
4437                      protein_coding
4438                      protein_coding
4439                      protein_coding
4440                      protein_coding
4441                      protein_coding
4442                      protein_coding
4443                      protein_coding
4444                      protein_coding
4445                      protein_coding
4446                      protein_coding
4447                      protein_coding
4448                      protein_coding
4449                      protein_coding
4450                      protein_coding
4451                      protein_coding
4452                      protein_coding
4453                      protein_coding
4454                      protein_coding
4455                      protein_coding
4456                      protein_coding
4457                      protein_coding
4458                      protein_coding
4459                      protein_coding
4460                      protein_coding
4461                      protein_coding
4462                      protein_coding
4463                      protein_coding
4464                      protein_coding
4465                      protein_coding
4466                      protein_coding
4467                      protein_coding
4468                      protein_coding
4469                      protein_coding
4470                      protein_coding
4471                      protein_coding
4472                      protein_coding
4473                      protein_coding
4474                      protein_coding
4475                      protein_coding
4476                      protein_coding
4477                      protein_coding
4478                      protein_coding
4479                           antisense
4480                           antisense
4481                      sense_intronic
4482                      sense_intronic
4483                      sense_intronic
4484                      sense_intronic
4485                      sense_intronic
4486                      sense_intronic
4487                      sense_intronic
4488                      sense_intronic
4489                      protein_coding
4490                      protein_coding
4491                      protein_coding
4492                      protein_coding
4493                      protein_coding
4494                      protein_coding
4495                      protein_coding
4496                      protein_coding
4497                      protein_coding
4498                      protein_coding
4499                      protein_coding
4500                      protein_coding
4501                      protein_coding
4502                      protein_coding
4503                      protein_coding
4504                      protein_coding
4505                      protein_coding
4506                      protein_coding
4507                      protein_coding
4508                      protein_coding
4509                      protein_coding
4510                      protein_coding
4511                      protein_coding
4512                      protein_coding
4513                      protein_coding
4514                      protein_coding
4515                      protein_coding
4516                      protein_coding
4517                      protein_coding
4518                      protein_coding
4519                      protein_coding
4520                      protein_coding
4521                      protein_coding
4522                      protein_coding
4523                      protein_coding
4524                      protein_coding
4525                      protein_coding
4526                      protein_coding
4527                      protein_coding
4528                      protein_coding
4529                      protein_coding
4530                      protein_coding
4531                      protein_coding
4532                      protein_coding
4533                      protein_coding
4534                      protein_coding
4535                      protein_coding
4536                      protein_coding
4537                      protein_coding
4538                      protein_coding
4539                      protein_coding
4540                      protein_coding
4541                           antisense
4542                           antisense
4543                           antisense
4544                           antisense
4545                           antisense
4546                           antisense
4547                           antisense
4548                           antisense
4549                           antisense
4550                           antisense
4551                           antisense
4552                           antisense
4553                           antisense
4554                           antisense
4555                           antisense
4556                           antisense
4557                      protein_coding
4558                      protein_coding
4559                      protein_coding
4560                      protein_coding
4561                      protein_coding
4562                      protein_coding
4563                      protein_coding
4564                      protein_coding
4565                      protein_coding
4566                      protein_coding
4567                      protein_coding
4568                      protein_coding
4569                      protein_coding
4570                      protein_coding
4571                      protein_coding
4572                      protein_coding
4573                      protein_coding
4574                      protein_coding
4575                      protein_coding
4576                      protein_coding
4577                      protein_coding
4578                      protein_coding
4579                      protein_coding
4580                      protein_coding
4581                      protein_coding
4582                      protein_coding
4583                      protein_coding
4584                      protein_coding
4585                      protein_coding
4586                      protein_coding
4587                      protein_coding
4588                      protein_coding
4589                      protein_coding
4590                      protein_coding
4591                      protein_coding
4592                      protein_coding
4593                      protein_coding
4594                      protein_coding
4595                      protein_coding
4596                      protein_coding
4597                      protein_coding
4598                      protein_coding
4599                      protein_coding
4600                      protein_coding
4601                      protein_coding
4602                      protein_coding
4603                      protein_coding
4604                      protein_coding
4605                      protein_coding
4606                      protein_coding
4607                      protein_coding
4608                      protein_coding
4609                      protein_coding
4610                      protein_coding
4611                      protein_coding
4612                      protein_coding
4613                      protein_coding
4614                      protein_coding
4615                      protein_coding
4616                      protein_coding
4617                      protein_coding
4618                      protein_coding
4619                      protein_coding
4620                      protein_coding
4621                      protein_coding
4622                      protein_coding
4623                      protein_coding
4624                      protein_coding
4625                      protein_coding
4626                      protein_coding
4627                      protein_coding
4628                      protein_coding
4629                      protein_coding
4630                      protein_coding
4631                      protein_coding
4632                      protein_coding
4633                      protein_coding
4634                      protein_coding
4635                      protein_coding
4636                      protein_coding
4637                      protein_coding
4638                      protein_coding
4639                      protein_coding
4640                      protein_coding
4641                      protein_coding
4642                      protein_coding
4643                      protein_coding
4644                      protein_coding
4645                      protein_coding
4646                      protein_coding
4647                      protein_coding
4648                      protein_coding
4649                      protein_coding
4650                      protein_coding
4651                      protein_coding
4652                      protein_coding
4653                      protein_coding
4654                      protein_coding
4655                      protein_coding
4656                      protein_coding
4657                      protein_coding
4658                      protein_coding
4659                      protein_coding
4660                      protein_coding
4661                      protein_coding
4662                      protein_coding
4663                      protein_coding
4664                      protein_coding
4665                      protein_coding
4666                      protein_coding
4667                      protein_coding
4668                      protein_coding
4669                      protein_coding
4670                      protein_coding
4671                      protein_coding
4672                      protein_coding
4673                      protein_coding
4674                      protein_coding
4675                      protein_coding
4676                      protein_coding
4677                      protein_coding
4678                      protein_coding
4679                      protein_coding
4680                      protein_coding
4681                      protein_coding
4682                      protein_coding
4683                      protein_coding
4684                      protein_coding
4685                      protein_coding
4686                      protein_coding
4687                      protein_coding
4688                      protein_coding
4689                      protein_coding
4690                      protein_coding
4691                      protein_coding
4692                      protein_coding
4693                      protein_coding
4694                      protein_coding
4695                      protein_coding
4696                      protein_coding
4697                      protein_coding
4698                      protein_coding
4699                      protein_coding
4700                      protein_coding
4701                      protein_coding
4702                      protein_coding
4703                      protein_coding
4704                      protein_coding
4705                      protein_coding
4706                      protein_coding
4707                      protein_coding
4708                      protein_coding
4709                      protein_coding
4710                      protein_coding
4711                      protein_coding
4712                      protein_coding
4713                      protein_coding
4714                      protein_coding
4715                      protein_coding
4716                      protein_coding
4717                      protein_coding
4718                      protein_coding
4719                      protein_coding
4720                      protein_coding
4721                      protein_coding
4722                      protein_coding
4723                      protein_coding
4724                      protein_coding
4725                      protein_coding
4726                      protein_coding
4727                      protein_coding
4728                      protein_coding
4729                      protein_coding
4730                      protein_coding
4731                      protein_coding
4732                      protein_coding
4733                      protein_coding
4734                      protein_coding
4735                      protein_coding
4736                      protein_coding
4737                      protein_coding
4738                      protein_coding
4739                      protein_coding
4740                      protein_coding
4741                      protein_coding
4742                      protein_coding
4743                      protein_coding
4744                      protein_coding
4745                      protein_coding
4746                      protein_coding
4747                      protein_coding
4748                      protein_coding
4749                      protein_coding
4750                      protein_coding
4751                      protein_coding
4752                      protein_coding
4753                      protein_coding
4754                      protein_coding
4755                      protein_coding
4756                      protein_coding
4757                      protein_coding
4758                      protein_coding
4759                      protein_coding
4760                      protein_coding
4761                      protein_coding
4762                      protein_coding
4763                      protein_coding
4764                      protein_coding
4765                      protein_coding
4766                      protein_coding
4767                      protein_coding
4768                      protein_coding
4769                      protein_coding
4770                      protein_coding
4771                      protein_coding
4772                      protein_coding
4773                      protein_coding
4774                      protein_coding
4775                      protein_coding
4776                      protein_coding
4777                      protein_coding
4778                      protein_coding
4779                      protein_coding
4780                      protein_coding
4781                      protein_coding
4782                      protein_coding
4783                      protein_coding
4784                      protein_coding
4785                      protein_coding
4786                      protein_coding
4787                      protein_coding
4788                      protein_coding
4789                      protein_coding
4790                      protein_coding
4791                      protein_coding
4792                      protein_coding
4793                      protein_coding
4794                      protein_coding
4795                      protein_coding
4796                      protein_coding
4797                      protein_coding
4798                      protein_coding
4799                      protein_coding
4800                      protein_coding
4801                      protein_coding
4802                      protein_coding
4803                      protein_coding
4804                      protein_coding
4805                      protein_coding
4806                      protein_coding
4807                      protein_coding
4808                      protein_coding
4809                      protein_coding
4810                      protein_coding
4811                      protein_coding
4812                      protein_coding
4813                      protein_coding
4814                      protein_coding
4815                      protein_coding
4816                      protein_coding
4817                      protein_coding
4818                      protein_coding
4819                      protein_coding
4820                      protein_coding
4821                      protein_coding
4822                      protein_coding
4823                      protein_coding
4824                      protein_coding
4825                      protein_coding
4826                      protein_coding
4827                      protein_coding
4828                      protein_coding
4829                      protein_coding
4830                      protein_coding
4831                      protein_coding
4832                      protein_coding
4833                processed_pseudogene
4834                processed_pseudogene
4835                processed_pseudogene
4836                           antisense
4837                           antisense
4838                           antisense
4839                           antisense
4840                           antisense
4841                           antisense
4842                           antisense
4843                           antisense
4844                           antisense
4845                           antisense
4846              unprocessed_pseudogene
4847                             lincRNA
4848                             lincRNA
4849                             lincRNA
4850                             lincRNA
4851                             lincRNA
4852                             lincRNA
4853                             lincRNA
4854                             lincRNA
4855                             lincRNA
4856                      protein_coding
4857                      protein_coding
4858                      protein_coding
4859                      protein_coding
4860                      protein_coding
4861                      protein_coding
4862                      protein_coding
4863                      protein_coding
4864                      protein_coding
4865                      protein_coding
4866                      protein_coding
4867                      protein_coding
4868                      protein_coding
4869                      protein_coding
4870                      protein_coding
4871                      protein_coding
4872                      protein_coding
4873                             lincRNA
4874                             lincRNA
4875                             lincRNA
4876                             lincRNA
4877                             lincRNA
4878                             lincRNA
4879                             lincRNA
4880                             lincRNA
4881                             lincRNA
4882                             lincRNA
4883                             lincRNA
4884                      sense_intronic
4885                      sense_intronic
4886                      sense_intronic
4887                      protein_coding
4888                      protein_coding
4889                      protein_coding
4890                      protein_coding
4891                      protein_coding
4892                      protein_coding
4893                      protein_coding
4894                      protein_coding
4895                      protein_coding
4896                      protein_coding
4897                      protein_coding
4898                      protein_coding
4899                      protein_coding
4900                      protein_coding
4901                      protein_coding
4902                      protein_coding
4903                      protein_coding
4904                      protein_coding
4905                      protein_coding
4906                      protein_coding
4907                      protein_coding
4908                      protein_coding
4909                      protein_coding
4910                      protein_coding
4911                      protein_coding
4912                      protein_coding
4913                      protein_coding
4914                      protein_coding
4915                      protein_coding
4916                      protein_coding
4917                      protein_coding
4918                      protein_coding
4919                      protein_coding
4920                      protein_coding
4921                      protein_coding
4922                      protein_coding
4923                      protein_coding
4924                      protein_coding
4925                      protein_coding
4926                      protein_coding
4927                      protein_coding
4928                           antisense
4929                           antisense
4930                             lincRNA
4931                             lincRNA
4932                             lincRNA
4933                             lincRNA
4934                             lincRNA
4935                             lincRNA
4936                             lincRNA
4937                      protein_coding
4938                      protein_coding
4939                      protein_coding
4940                      protein_coding
4941                      protein_coding
4942                      protein_coding
4943                      protein_coding
4944                      protein_coding
4945                      protein_coding
4946                      protein_coding
4947                      protein_coding
4948                      protein_coding
4949                      protein_coding
4950                      protein_coding
4951                      protein_coding
4952                      protein_coding
4953                      protein_coding
4954                      protein_coding
4955                      protein_coding
4956                      protein_coding
4957                      protein_coding
4958                      protein_coding
4959                      protein_coding
4960                      protein_coding
4961                      protein_coding
4962                      protein_coding
4963                      protein_coding
4964                      protein_coding
4965                      protein_coding
4966                      protein_coding
4967                      protein_coding
4968                      protein_coding
4969                      protein_coding
4970                      protein_coding
4971                      protein_coding
4972                      protein_coding
4973                      protein_coding
4974                      protein_coding
4975                      protein_coding
4976                      protein_coding
4977                      protein_coding
4978                      protein_coding
4979                      protein_coding
4980                      protein_coding
4981                      protein_coding
4982                      protein_coding
4983                      protein_coding
4984                      protein_coding
4985                      protein_coding
4986                      protein_coding
4987                      protein_coding
4988                      protein_coding
4989                      protein_coding
4990                      protein_coding
4991                      protein_coding
4992                      protein_coding
4993                      protein_coding
4994                      protein_coding
4995                      protein_coding
4996                      protein_coding
4997                      protein_coding
4998                      protein_coding
4999                      protein_coding
5000                           antisense
5001                           antisense
5002                           antisense
5003                   sense_overlapping
5004                   sense_overlapping
5005                processed_pseudogene
5006                           antisense
5007                           antisense
5008                             lincRNA
5009                             lincRNA
5010                             lincRNA
5011                             lincRNA
5012                             lincRNA
5013                             lincRNA
5014                             lincRNA
5015                             lincRNA
5016                             lincRNA
5017                             lincRNA
5018                             lincRNA
5019                             lincRNA
5020                             lincRNA
5021                             lincRNA
5022                             lincRNA
5023                             lincRNA
5024                             lincRNA
5025                             lincRNA
5026                             lincRNA
5027                             lincRNA
5028                             lincRNA
5029                             lincRNA
5030                             lincRNA
5031                             lincRNA
5032                             lincRNA
5033                             lincRNA
5034                             lincRNA
5035                      protein_coding
5036                      protein_coding
5037                      protein_coding
5038                      protein_coding
5039                      protein_coding
5040                      protein_coding
5041                      protein_coding
5042                      protein_coding
5043                      protein_coding
5044                      protein_coding
5045                      protein_coding
5046                      protein_coding
5047                      protein_coding
5048                      protein_coding
5049                      protein_coding
5050                      protein_coding
5051                      protein_coding
5052                      protein_coding
5053                      protein_coding
5054                      protein_coding
5055                      protein_coding
5056                      protein_coding
5057                      protein_coding
5058                      protein_coding
5059                      protein_coding
5060                      protein_coding
5061                      protein_coding
5062                      protein_coding
5063                      protein_coding
5064                      protein_coding
5065                      protein_coding
5066                      protein_coding
5067                      protein_coding
5068                      protein_coding
5069                      protein_coding
5070                      protein_coding
5071                      protein_coding
5072                      protein_coding
5073                      protein_coding
5074                      protein_coding
5075                      protein_coding
5076                      protein_coding
5077                      protein_coding
5078                      protein_coding
5079                      protein_coding
5080                      protein_coding
5081                      protein_coding
5082                      protein_coding
5083                      protein_coding
5084                      protein_coding
5085                      protein_coding
5086                      protein_coding
5087                      protein_coding
5088                      protein_coding
5089                      protein_coding
5090                      protein_coding
5091                      protein_coding
5092                      protein_coding
5093                      protein_coding
5094                      protein_coding
5095                      protein_coding
5096                      protein_coding
5097                      protein_coding
5098                      protein_coding
5099                      protein_coding
5100                      protein_coding
5101                      protein_coding
5102                      protein_coding
5103                      protein_coding
5104                      protein_coding
5105                      protein_coding
5106                      protein_coding
5107                      protein_coding
5108                      protein_coding
5109                      protein_coding
5110                      protein_coding
5111                      protein_coding
5112                      protein_coding
5113                      protein_coding
5114                      protein_coding
5115                      protein_coding
5116                      protein_coding
5117                      protein_coding
5118                      protein_coding
5119                      protein_coding
5120                      protein_coding
5121                      protein_coding
5122                      protein_coding
5123                      protein_coding
5124                      protein_coding
5125                      protein_coding
5126                      protein_coding
5127                      protein_coding
5128                      protein_coding
5129                      protein_coding
5130                      protein_coding
5131                      protein_coding
5132                      protein_coding
5133                      protein_coding
5134                      protein_coding
5135                      protein_coding
5136                      protein_coding
5137                      protein_coding
5138                      protein_coding
5139                      protein_coding
5140                      protein_coding
5141                      protein_coding
5142                      protein_coding
5143                      protein_coding
5144                      protein_coding
5145                      protein_coding
5146                      protein_coding
5147                      protein_coding
5148                      protein_coding
5149                      protein_coding
5150                      protein_coding
5151                      protein_coding
5152                      protein_coding
5153                      protein_coding
5154                      protein_coding
5155                      protein_coding
5156                      protein_coding
5157                      protein_coding
5158                      protein_coding
5159                      protein_coding
5160                      protein_coding
5161                      protein_coding
5162                      protein_coding
5163                      protein_coding
5164                      protein_coding
5165                      protein_coding
5166                      protein_coding
5167                      protein_coding
5168                      protein_coding
5169                      protein_coding
5170                      protein_coding
5171                      protein_coding
5172                      protein_coding
5173                      protein_coding
5174                      protein_coding
5175                      protein_coding
5176                      protein_coding
5177                      protein_coding
5178                      protein_coding
5179                      protein_coding
5180                      protein_coding
5181                      protein_coding
5182                      protein_coding
5183                      protein_coding
5184                      protein_coding
5185                      protein_coding
5186                      protein_coding
5187                      protein_coding
5188                      protein_coding
5189                      protein_coding
5190                      protein_coding
5191                      protein_coding
5192                      protein_coding
5193                      protein_coding
5194                processed_pseudogene
5195                      protein_coding
5196                      protein_coding
5197                      protein_coding
5198                      protein_coding
5199                      protein_coding
5200                      protein_coding
5201                      protein_coding
5202                      protein_coding
5203                      protein_coding
5204                      protein_coding
5205                      protein_coding
5206                      protein_coding
5207                      protein_coding
5208                      protein_coding
5209                      protein_coding
5210                      protein_coding
5211                      protein_coding
5212                      protein_coding
5213                      protein_coding
5214                      protein_coding
5215                      protein_coding
5216                      protein_coding
5217                      protein_coding
5218                      protein_coding
5219                      protein_coding
5220                      protein_coding
5221                      protein_coding
5222                      protein_coding
5223                      protein_coding
5224                      protein_coding
5225                      protein_coding
5226                      protein_coding
5227                      protein_coding
5228                      protein_coding
5229                      protein_coding
5230                      protein_coding
5231                      protein_coding
5232                      protein_coding
5233                      protein_coding
5234                      protein_coding
5235                      protein_coding
5236                      protein_coding
5237                      protein_coding
5238                      protein_coding
5239                      protein_coding
5240                      protein_coding
5241                      protein_coding
5242                           antisense
5243                           antisense
5244                                 TEC
5245                           antisense
5246                           antisense
5247                           antisense
5248                           antisense
5249                           antisense
5250                           antisense
5251                           antisense
5252                           antisense
5253                           antisense
5254                processed_pseudogene
5255                      protein_coding
5256                      protein_coding
5257                      protein_coding
5258                      protein_coding
5259                      protein_coding
5260                      protein_coding
5261                      protein_coding
5262                      protein_coding
5263                      protein_coding
5264                      protein_coding
5265                      protein_coding
5266                      protein_coding
5267                      protein_coding
5268                      protein_coding
5269                      protein_coding
5270                      protein_coding
5271                      protein_coding
5272                      protein_coding
5273                      protein_coding
5274                      protein_coding
5275                      protein_coding
5276                      protein_coding
5277                      protein_coding
5278                      protein_coding
5279                      protein_coding
5280                      protein_coding
5281                      protein_coding
5282                      protein_coding
5283                      protein_coding
5284                      protein_coding
5285                      protein_coding
5286                      protein_coding
5287                      protein_coding
5288                      protein_coding
5289                      protein_coding
5290                      protein_coding
5291                      protein_coding
5292                      protein_coding
5293                      protein_coding
5294                      protein_coding
5295                      protein_coding
5296                      protein_coding
5297                      protein_coding
5298                      protein_coding
5299                      protein_coding
5300                      protein_coding
5301                      protein_coding
5302                      protein_coding
5303                      protein_coding
5304                      protein_coding
5305                      protein_coding
5306                      protein_coding
5307                      protein_coding
5308                      protein_coding
5309                      protein_coding
5310                      protein_coding
5311                      protein_coding
5312                      protein_coding
5313                      protein_coding
5314                      protein_coding
5315                      protein_coding
5316                      protein_coding
5317                      protein_coding
5318                      protein_coding
5319                      protein_coding
5320                      protein_coding
5321                      protein_coding
5322                      protein_coding
5323                      protein_coding
5324                      protein_coding
5325                      protein_coding
5326                      protein_coding
5327                      protein_coding
5328                      protein_coding
5329                      protein_coding
5330                      protein_coding
5331                      protein_coding
5332                      protein_coding
5333                      protein_coding
5334                      protein_coding
5335                      protein_coding
5336                      protein_coding
5337                      protein_coding
5338                      protein_coding
5339                      protein_coding
5340                      protein_coding
5341                      protein_coding
5342                      protein_coding
5343                      protein_coding
5344                      protein_coding
5345                      protein_coding
5346                      protein_coding
5347                      protein_coding
5348                      protein_coding
5349                      protein_coding
5350                      protein_coding
5351                      protein_coding
5352                      protein_coding
5353                      protein_coding
5354                      protein_coding
5355                      protein_coding
5356                      protein_coding
5357                      protein_coding
5358                      protein_coding
5359                      protein_coding
5360                      protein_coding
5361                      protein_coding
5362                      protein_coding
5363                      protein_coding
5364                      protein_coding
5365                      protein_coding
5366                      protein_coding
5367                      protein_coding
5368                      protein_coding
5369                      protein_coding
5370                      protein_coding
5371                      protein_coding
5372                      protein_coding
5373                      protein_coding
5374                      protein_coding
5375                      protein_coding
5376                      protein_coding
5377                      protein_coding
5378                      protein_coding
5379                      protein_coding
5380                      protein_coding
5381                      protein_coding
5382                      protein_coding
5383                      protein_coding
5384                      protein_coding
5385                      protein_coding
5386                      protein_coding
5387                      protein_coding
5388                      protein_coding
5389                      protein_coding
5390                      protein_coding
5391                      protein_coding
5392                      protein_coding
5393                      protein_coding
5394                      protein_coding
5395                      protein_coding
5396                      protein_coding
5397                      protein_coding
5398                      protein_coding
5399                      protein_coding
5400                      protein_coding
5401                processed_pseudogene
5402                processed_pseudogene
5403                           antisense
5404                           antisense
5405                           antisense
5406                           antisense
5407                           antisense
5408                           antisense
5409                           antisense
5410                           antisense
5411                           antisense
5412                           antisense
5413                           antisense
5414                           antisense
5415                           antisense
5416                           antisense
5417                           antisense
5418                           antisense
5419                           antisense
5420                           antisense
5421                           antisense
5422                           antisense
5423                           antisense
5424                           antisense
5425                           antisense
5426                           antisense
5427                           antisense
5428                           antisense
5429                           antisense
5430                           antisense
5431                           antisense
5432                           antisense
5433                           antisense
5434                           antisense
5435                           antisense
5436                           antisense
5437                           antisense
5438                           antisense
5439                           antisense
5440                           antisense
5441                           antisense
5442                           antisense
5443                           antisense
5444                           antisense
5445                           antisense
5446                           antisense
5447                           antisense
5448                           antisense
5449                           antisense
5450                           antisense
5451                           antisense
5452                           antisense
5453                           antisense
5454                           antisense
5455                           antisense
5456                           antisense
5457                           antisense
5458                           antisense
5459                processed_pseudogene
5460                      protein_coding
5461                      protein_coding
5462                      protein_coding
5463                      protein_coding
5464                      protein_coding
5465                      protein_coding
5466                      protein_coding
5467                      protein_coding
5468                      protein_coding
5469                      protein_coding
5470                      protein_coding
5471                      protein_coding
5472                      protein_coding
5473                      protein_coding
5474                      protein_coding
5475                      protein_coding
5476                      protein_coding
5477                      protein_coding
5478                      protein_coding
5479                      protein_coding
5480                      protein_coding
5481                      protein_coding
5482                      protein_coding
5483                      protein_coding
5484                      protein_coding
5485                      protein_coding
5486                      protein_coding
5487                      protein_coding
5488                      protein_coding
5489                      protein_coding
5490                      protein_coding
5491                      protein_coding
5492                      protein_coding
5493                      protein_coding
5494                      protein_coding
5495                      protein_coding
5496                      protein_coding
5497                      protein_coding
5498                      protein_coding
5499                      protein_coding
5500                      protein_coding
5501                      protein_coding
5502                      protein_coding
5503                      protein_coding
5504                      protein_coding
5505                      protein_coding
5506                      protein_coding
5507                      protein_coding
5508                      protein_coding
5509                      protein_coding
5510                      protein_coding
5511                      protein_coding
5512                      protein_coding
5513                      protein_coding
5514                      protein_coding
5515                      protein_coding
5516                      protein_coding
5517                      protein_coding
5518                      protein_coding
5519                      protein_coding
5520                      protein_coding
5521                      protein_coding
5522                      protein_coding
5523                      protein_coding
5524                      protein_coding
5525                      protein_coding
5526                      protein_coding
5527                      protein_coding
5528                      protein_coding
5529                      protein_coding
5530                      protein_coding
5531                      protein_coding
5532                      protein_coding
5533                      protein_coding
5534                      protein_coding
5535                      protein_coding
5536                      protein_coding
5537                      protein_coding
5538                      protein_coding
5539                      protein_coding
5540                      protein_coding
5541                      protein_coding
5542                      protein_coding
5543                      protein_coding
5544                      protein_coding
5545                      protein_coding
5546                      protein_coding
5547                      protein_coding
5548                      protein_coding
5549                      protein_coding
5550                      protein_coding
5551                      protein_coding
5552                      protein_coding
5553                      protein_coding
5554                      protein_coding
5555                      protein_coding
5556                      protein_coding
5557                      protein_coding
5558                      protein_coding
5559                      protein_coding
5560                      protein_coding
5561                      protein_coding
5562                      protein_coding
5563                      protein_coding
5564                      protein_coding
5565                      protein_coding
5566                      protein_coding
5567                      protein_coding
5568                      protein_coding
5569                      protein_coding
5570                      protein_coding
5571                      protein_coding
5572                      protein_coding
5573                      protein_coding
5574                      protein_coding
5575                      protein_coding
5576                      protein_coding
5577                      protein_coding
5578                      protein_coding
5579                      protein_coding
5580                      protein_coding
5581                      protein_coding
5582                      protein_coding
5583                      protein_coding
5584                      protein_coding
5585                      protein_coding
5586                      protein_coding
5587                      protein_coding
5588                      protein_coding
5589                      protein_coding
5590                      protein_coding
5591                      protein_coding
5592                      protein_coding
5593                      protein_coding
5594                      protein_coding
5595                      protein_coding
5596                      protein_coding
5597                      protein_coding
5598                      protein_coding
5599                      protein_coding
5600                      protein_coding
5601                      protein_coding
5602                           antisense
5603                           antisense
5604                   sense_overlapping
5605                   sense_overlapping
5606                   sense_overlapping
5607                           antisense
5608                           antisense
5609                           antisense
5610                           antisense
5611                           antisense
5612                           antisense
5613                           antisense
5614                           antisense
5615                           antisense
5616                           antisense
5617                           antisense
5618                             lincRNA
5619                             lincRNA
5620                             lincRNA
5621                             lincRNA
5622                             lincRNA
5623                      protein_coding
5624                      protein_coding
5625                      protein_coding
5626                      protein_coding
5627                      protein_coding
5628                      protein_coding
5629                      protein_coding
5630                      protein_coding
5631                      protein_coding
5632                      protein_coding
5633                      protein_coding
5634                      protein_coding
5635                      protein_coding
5636                      protein_coding
5637                      protein_coding
5638                      protein_coding
5639                      protein_coding
5640                           antisense
5641                           antisense
5642                           antisense
5643                           antisense
5644                      protein_coding
5645                      protein_coding
5646                      protein_coding
5647                      protein_coding
5648                      protein_coding
5649                      protein_coding
5650                      protein_coding
5651                      protein_coding
5652                      protein_coding
5653                      protein_coding
5654                      protein_coding
5655                      protein_coding
5656                      protein_coding
5657                      protein_coding
5658                      protein_coding
5659                      protein_coding
5660                      protein_coding
5661                      protein_coding
5662                      protein_coding
5663                      protein_coding
5664                      protein_coding
5665                      protein_coding
5666                      protein_coding
5667                      protein_coding
5668                      protein_coding
5669                      protein_coding
5670                      protein_coding
5671                      protein_coding
5672                      protein_coding
5673                      protein_coding
5674                      protein_coding
5675                      protein_coding
5676                      protein_coding
5677                      protein_coding
5678                      protein_coding
5679                      protein_coding
5680                      protein_coding
5681                      protein_coding
5682                      protein_coding
5683                      protein_coding
5684                      protein_coding
5685                      protein_coding
5686                      protein_coding
5687                      protein_coding
5688                      protein_coding
5689                   sense_overlapping
5690                   sense_overlapping
5691                   sense_overlapping
5692                   sense_overlapping
5693                   sense_overlapping
5694                   sense_overlapping
5695                   sense_overlapping
5696                   sense_overlapping
5697                      protein_coding
5698                      protein_coding
5699                      protein_coding
5700                      protein_coding
5701                      protein_coding
5702                      protein_coding
5703                      protein_coding
5704                      protein_coding
5705                      protein_coding
5706                      protein_coding
5707                      protein_coding
5708                      protein_coding
5709                      protein_coding
5710                      protein_coding
5711                      protein_coding
5712                      protein_coding
5713                      protein_coding
5714                      protein_coding
5715                      protein_coding
5716                      protein_coding
5717                      protein_coding
5718                      protein_coding
5719                      protein_coding
5720                      protein_coding
5721                      protein_coding
5722                      protein_coding
5723                      protein_coding
5724                      protein_coding
5725                      protein_coding
5726                      protein_coding
5727                      protein_coding
5728                      protein_coding
5729                      protein_coding
5730                      protein_coding
5731                      protein_coding
5732                      protein_coding
5733                      protein_coding
5734                      protein_coding
5735                      protein_coding
5736                      protein_coding
5737                      protein_coding
5738                      protein_coding
5739                      protein_coding
5740                      protein_coding
5741                      protein_coding
5742                      protein_coding
5743                      protein_coding
5744                      protein_coding
5745                      protein_coding
5746                      protein_coding
5747                      protein_coding
5748                      protein_coding
5749                      protein_coding
5750                      protein_coding
5751                      protein_coding
5752                      protein_coding
5753                      protein_coding
5754                      protein_coding
5755                      protein_coding
5756                      protein_coding
5757                      protein_coding
5758                      protein_coding
5759                      protein_coding
5760                      protein_coding
5761                      protein_coding
5762                      protein_coding
5763                      protein_coding
5764                      protein_coding
5765                      protein_coding
5766                      protein_coding
5767                      protein_coding
5768                      protein_coding
5769                      protein_coding
5770                      protein_coding
5771                      protein_coding
5772                      protein_coding
5773                      protein_coding
5774                      protein_coding
5775                      protein_coding
5776                      protein_coding
5777                      protein_coding
5778                      protein_coding
5779                      protein_coding
5780                      protein_coding
5781                      protein_coding
5782                      protein_coding
5783                      protein_coding
5784                      protein_coding
5785                      protein_coding
5786                      protein_coding
5787                      protein_coding
5788                      protein_coding
5789                      protein_coding
5790                      protein_coding
5791                      protein_coding
5792                      protein_coding
5793                      protein_coding
5794                      protein_coding
5795                      protein_coding
5796                      protein_coding
5797                      protein_coding
5798                      protein_coding
5799                      protein_coding
5800                      protein_coding
5801                      protein_coding
5802                      protein_coding
5803                      protein_coding
5804                      protein_coding
5805                      protein_coding
5806                      protein_coding
5807                      protein_coding
5808                      protein_coding
5809                      protein_coding
5810                      protein_coding
5811                      protein_coding
5812                      protein_coding
5813                      protein_coding
5814                      protein_coding
5815                      protein_coding
5816                      protein_coding
5817                      protein_coding
5818                      protein_coding
5819                      protein_coding
5820                      protein_coding
5821                      protein_coding
5822                      protein_coding
5823                      protein_coding
5824                      protein_coding
5825                      protein_coding
5826                      protein_coding
5827                      protein_coding
5828                      protein_coding
5829                      protein_coding
5830                      protein_coding
5831                      protein_coding
5832                      protein_coding
5833                      protein_coding
5834                      protein_coding
5835                      protein_coding
5836                      protein_coding
5837                      protein_coding
5838                      protein_coding
5839                      protein_coding
5840                      protein_coding
5841                      protein_coding
5842                      protein_coding
5843                      protein_coding
5844                      protein_coding
5845                      protein_coding
5846                      protein_coding
5847                      protein_coding
5848                      protein_coding
5849                      protein_coding
5850                      protein_coding
5851                      protein_coding
5852                      protein_coding
5853                      protein_coding
5854                      protein_coding
5855                      protein_coding
5856                      protein_coding
5857                      protein_coding
5858                      protein_coding
5859                      protein_coding
5860                      protein_coding
5861                      protein_coding
5862                      protein_coding
5863                      protein_coding
5864                      protein_coding
5865                      protein_coding
5866                      protein_coding
5867                      protein_coding
5868                      protein_coding
5869                      protein_coding
5870                      protein_coding
5871                      protein_coding
5872                      protein_coding
5873                      protein_coding
5874                      protein_coding
5875                      protein_coding
5876                      protein_coding
5877                      protein_coding
5878                      protein_coding
5879                      protein_coding
5880                      protein_coding
5881                      protein_coding
5882                      protein_coding
5883                      protein_coding
5884                      protein_coding
5885                      protein_coding
5886                      protein_coding
5887                      protein_coding
5888                      protein_coding
5889                      protein_coding
5890                      protein_coding
5891                      protein_coding
5892                      protein_coding
5893                      protein_coding
5894                      protein_coding
5895                      protein_coding
5896                      protein_coding
5897                      protein_coding
5898                      protein_coding
5899                      protein_coding
5900                      protein_coding
5901                      protein_coding
5902                      protein_coding
5903                      protein_coding
5904                      protein_coding
5905                      protein_coding
5906                      protein_coding
5907                      protein_coding
5908                      protein_coding
5909                      protein_coding
5910                      protein_coding
5911                      protein_coding
5912                      protein_coding
5913                      protein_coding
5914                      protein_coding
5915                      protein_coding
5916                      protein_coding
5917                      protein_coding
5918                      protein_coding
5919                      protein_coding
5920                      protein_coding
5921                      protein_coding
5922                      protein_coding
5923                      protein_coding
5924                      protein_coding
5925                      protein_coding
5926                      protein_coding
5927                      protein_coding
5928                      protein_coding
5929                      protein_coding
5930                      protein_coding
5931                      protein_coding
5932                      protein_coding
5933                      protein_coding
5934                      protein_coding
5935                      protein_coding
5936                      protein_coding
5937                      protein_coding
5938                      protein_coding
5939                      protein_coding
5940                      protein_coding
5941                      protein_coding
5942                      protein_coding
5943                      protein_coding
5944                      protein_coding
5945                      protein_coding
5946                      protein_coding
5947                      protein_coding
5948                      protein_coding
5949                      protein_coding
5950                      protein_coding
5951                      protein_coding
5952                      protein_coding
5953                      protein_coding
5954                      protein_coding
5955                      protein_coding
5956                      protein_coding
5957                      protein_coding
5958                      protein_coding
5959                      protein_coding
5960                      protein_coding
5961                      protein_coding
5962                      protein_coding
5963                      protein_coding
5964                      protein_coding
5965                      protein_coding
5966                      protein_coding
5967                      protein_coding
5968                      protein_coding
5969                      protein_coding
5970                      protein_coding
5971                      protein_coding
5972                      protein_coding
5973                      protein_coding
5974                      protein_coding
5975                      protein_coding
5976                      protein_coding
5977                      protein_coding
5978                      protein_coding
5979                      protein_coding
5980                      protein_coding
5981                      protein_coding
5982                      protein_coding
5983                      protein_coding
5984                      protein_coding
5985                      protein_coding
5986                      protein_coding
5987                      protein_coding
5988                      protein_coding
5989                      protein_coding
5990                      protein_coding
5991                      protein_coding
5992                      protein_coding
5993                      protein_coding
5994                      protein_coding
5995                      protein_coding
5996                      protein_coding
5997                      protein_coding
5998                      protein_coding
5999                      protein_coding
6000                      protein_coding
6001                      protein_coding
6002                      protein_coding
6003                      protein_coding
6004                      protein_coding
6005                      protein_coding
6006                      protein_coding
6007                      protein_coding
6008                      protein_coding
6009                      protein_coding
6010                      protein_coding
6011                      protein_coding
6012                      protein_coding
6013                      protein_coding
6014                      protein_coding
6015                      protein_coding
6016                      protein_coding
6017                      protein_coding
6018                      protein_coding
6019                      protein_coding
6020                      protein_coding
6021                      protein_coding
6022                      protein_coding
6023                      protein_coding
6024                      protein_coding
6025                      protein_coding
6026                      protein_coding
6027                      protein_coding
6028                      protein_coding
6029                      protein_coding
6030                      protein_coding
6031                      protein_coding
6032                      protein_coding
6033                      protein_coding
6034                      protein_coding
6035                      protein_coding
6036                      protein_coding
6037                      protein_coding
6038                      protein_coding
6039                      protein_coding
6040                      protein_coding
6041                      protein_coding
6042                      protein_coding
6043                      protein_coding
6044                      protein_coding
6045                      protein_coding
6046                      protein_coding
6047                      protein_coding
6048                      protein_coding
6049                      protein_coding
6050                      protein_coding
6051                      protein_coding
6052                      protein_coding
6053                      protein_coding
6054                      protein_coding
6055                      protein_coding
6056                      protein_coding
6057                      protein_coding
6058                      protein_coding
6059                      protein_coding
6060                      protein_coding
6061                      protein_coding
6062                      protein_coding
6063                      protein_coding
6064                      protein_coding
6065                      protein_coding
6066                      protein_coding
6067                      protein_coding
6068                      protein_coding
6069                      protein_coding
6070                      protein_coding
6071                      protein_coding
6072                      protein_coding
6073                      protein_coding
6074                      protein_coding
6075                      protein_coding
6076                      protein_coding
6077                      protein_coding
6078                      protein_coding
6079                      protein_coding
6080                      protein_coding
6081                      protein_coding
6082                      protein_coding
6083                      protein_coding
6084                      protein_coding
6085                      protein_coding
6086                      protein_coding
6087                      protein_coding
6088                      protein_coding
6089                      protein_coding
6090                      protein_coding
6091                      protein_coding
6092                      protein_coding
6093                      protein_coding
6094                      protein_coding
6095                      protein_coding
6096                      protein_coding
6097                      protein_coding
6098                      protein_coding
6099                      protein_coding
6100                      protein_coding
6101                      protein_coding
6102                      protein_coding
6103                      protein_coding
6104                      protein_coding
6105                      protein_coding
6106                      protein_coding
6107                      protein_coding
6108                      protein_coding
6109                      protein_coding
6110                      protein_coding
6111                      protein_coding
6112                      protein_coding
6113                      protein_coding
6114                      protein_coding
6115                      protein_coding
6116                      protein_coding
6117                      protein_coding
6118                      protein_coding
6119                      protein_coding
6120                      protein_coding
6121                      protein_coding
6122                      protein_coding
6123                      protein_coding
6124                      protein_coding
6125                      protein_coding
6126                      protein_coding
6127                      protein_coding
6128                      protein_coding
6129                      protein_coding
6130                      protein_coding
6131                      protein_coding
6132                      protein_coding
6133                      protein_coding
6134                      protein_coding
6135                      protein_coding
6136                      protein_coding
6137                      protein_coding
6138                      protein_coding
6139                      protein_coding
6140                      protein_coding
6141                      protein_coding
6142                      protein_coding
6143                      protein_coding
6144                      protein_coding
6145                      protein_coding
6146                      protein_coding
6147                      protein_coding
6148                      protein_coding
6149                      protein_coding
6150                      protein_coding
6151                      protein_coding
6152                      protein_coding
6153                      protein_coding
6154                      protein_coding
6155                      protein_coding
6156                      protein_coding
6157                      protein_coding
6158                      protein_coding
6159                      protein_coding
6160                      protein_coding
6161                      protein_coding
6162                      protein_coding
6163                      protein_coding
6164                      protein_coding
6165                      protein_coding
6166                      protein_coding
6167                      protein_coding
6168                      protein_coding
6169                      protein_coding
6170                      protein_coding
6171                      protein_coding
6172                      protein_coding
6173                      protein_coding
6174                      protein_coding
6175                      protein_coding
6176                      protein_coding
6177                      protein_coding
6178                      protein_coding
6179                      protein_coding
6180                      protein_coding
6181                      protein_coding
6182                      protein_coding
6183                      protein_coding
6184                      protein_coding
6185                      protein_coding
6186                      protein_coding
6187                      protein_coding
6188                      protein_coding
6189                      protein_coding
6190                      protein_coding
6191                      protein_coding
6192                      protein_coding
6193                      protein_coding
6194                      protein_coding
6195                      protein_coding
6196                      protein_coding
6197                      protein_coding
6198                      protein_coding
6199                      protein_coding
6200                      protein_coding
6201                      protein_coding
6202                      protein_coding
6203                      protein_coding
6204                      protein_coding
6205                      protein_coding
6206                      protein_coding
6207                      protein_coding
6208                      protein_coding
6209                      protein_coding
6210                      protein_coding
6211                      protein_coding
6212                      protein_coding
6213                      protein_coding
6214                      protein_coding
6215                      protein_coding
6216                      protein_coding
6217                      protein_coding
6218                      protein_coding
6219                      protein_coding
6220                      protein_coding
6221                      protein_coding
6222                      protein_coding
6223                      protein_coding
6224                      protein_coding
6225                      protein_coding
6226                      protein_coding
6227                      protein_coding
6228                      protein_coding
6229                      protein_coding
6230                      protein_coding
6231                      protein_coding
6232                      protein_coding
6233                      protein_coding
6234                      protein_coding
6235                      protein_coding
6236                      protein_coding
6237                      protein_coding
6238                      protein_coding
6239                      protein_coding
6240                      protein_coding
6241                      protein_coding
6242                      protein_coding
6243                      protein_coding
6244                      protein_coding
6245                      protein_coding
6246                      protein_coding
6247                      protein_coding
6248                      protein_coding
6249                      protein_coding
6250                      protein_coding
6251                      protein_coding
6252                      protein_coding
6253                      protein_coding
6254                      protein_coding
6255                      protein_coding
6256                      protein_coding
6257                      protein_coding
6258                      protein_coding
6259                      protein_coding
6260                      protein_coding
6261                      protein_coding
6262                      protein_coding
6263                      protein_coding
6264                             lincRNA
6265                             lincRNA
6266                             lincRNA
6267                      sense_intronic
6268                      sense_intronic
6269                      protein_coding
6270                      protein_coding
6271                      protein_coding
6272                      protein_coding
6273                      protein_coding
6274                      protein_coding
6275                      protein_coding
6276                      protein_coding
6277                      protein_coding
6278                      protein_coding
6279                      protein_coding
6280                      protein_coding
6281                      protein_coding
6282                      protein_coding
6283                      protein_coding
6284                      protein_coding
6285                      protein_coding
6286                      protein_coding
6287                      protein_coding
6288                      protein_coding
6289                      protein_coding
6290                      protein_coding
6291                      protein_coding
6292                      protein_coding
6293                      protein_coding
6294                      protein_coding
6295                      protein_coding
6296                      protein_coding
6297                      protein_coding
6298                      protein_coding
6299                      protein_coding
6300                      protein_coding
6301                      protein_coding
6302                      protein_coding
6303                      protein_coding
6304                      protein_coding
6305                      protein_coding
6306                      protein_coding
6307                      protein_coding
6308                      protein_coding
6309                      protein_coding
6310                      protein_coding
6311                      protein_coding
6312                      protein_coding
6313                      protein_coding
6314                      protein_coding
6315                      protein_coding
6316                      protein_coding
6317                      protein_coding
6318                      protein_coding
6319                      protein_coding
6320                      protein_coding
6321                      protein_coding
6322                      protein_coding
6323                      protein_coding
6324                      protein_coding
6325                      protein_coding
6326                      protein_coding
6327                      protein_coding
6328                      protein_coding
6329                      protein_coding
6330                      protein_coding
6331                      protein_coding
6332                      protein_coding
6333                      protein_coding
6334                      protein_coding
6335                      protein_coding
6336                      protein_coding
6337                      protein_coding
6338                      protein_coding
6339                      protein_coding
6340                      protein_coding
6341                      protein_coding
6342                      protein_coding
6343                      protein_coding
6344                      protein_coding
6345                      protein_coding
6346                      protein_coding
6347                      protein_coding
6348                      protein_coding
6349                      protein_coding
6350                      protein_coding
6351                      protein_coding
6352                      protein_coding
6353                      protein_coding
6354                      protein_coding
6355                      protein_coding
6356                      protein_coding
6357                      protein_coding
6358                      protein_coding
6359                      protein_coding
6360                      protein_coding
6361                      protein_coding
6362                      protein_coding
6363                      protein_coding
6364                      protein_coding
6365                      protein_coding
6366                      protein_coding
6367                      protein_coding
6368                      protein_coding
6369                      protein_coding
6370                      protein_coding
6371                             lincRNA
6372                             lincRNA
6373                             lincRNA
6374                processed_pseudogene
6375                      protein_coding
6376                      protein_coding
6377                      protein_coding
6378                      protein_coding
6379                      protein_coding
6380                      protein_coding
6381                      protein_coding
6382                      protein_coding
6383                      protein_coding
6384                      protein_coding
6385                      protein_coding
6386                      protein_coding
6387                      protein_coding
6388                      protein_coding
6389                      protein_coding
6390                      protein_coding
6391                      protein_coding
6392                processed_pseudogene
6393                             lincRNA
6394                             lincRNA
6395                             lincRNA
6396                             lincRNA
6397                             lincRNA
6398                             lincRNA
6399                             lincRNA
6400                             lincRNA
6401                             lincRNA
6402                             lincRNA
6403                             lincRNA
6404                             lincRNA
6405                             lincRNA
6406                             lincRNA
6407                             lincRNA
6408                             lincRNA
6409                      protein_coding
6410                      protein_coding
6411                      protein_coding
6412                      protein_coding
6413                      protein_coding
6414                      protein_coding
6415                      protein_coding
6416                      protein_coding
6417                      protein_coding
6418                      protein_coding
6419                      protein_coding
6420                      protein_coding
6421                      protein_coding
6422                      protein_coding
6423                      protein_coding
6424                      protein_coding
6425                      protein_coding
6426                      protein_coding
6427                      protein_coding
6428                      protein_coding
6429                      protein_coding
6430                      protein_coding
6431                      protein_coding
6432                      protein_coding
6433                      protein_coding
6434                      protein_coding
6435                      protein_coding
6436                      protein_coding
6437                      protein_coding
6438                      protein_coding
6439                      protein_coding
6440                      protein_coding
6441                      protein_coding
6442                      protein_coding
6443                      protein_coding
6444                      protein_coding
6445                      protein_coding
6446                      protein_coding
6447                      protein_coding
6448                      protein_coding
6449                      protein_coding
6450                      protein_coding
6451                      protein_coding
6452                      protein_coding
6453                      protein_coding
6454                      protein_coding
6455                      protein_coding
6456                      protein_coding
6457                      protein_coding
6458                      protein_coding
6459                      protein_coding
6460                      protein_coding
6461                      protein_coding
6462                      protein_coding
6463                      protein_coding
6464                      protein_coding
6465                      protein_coding
6466                      protein_coding
6467                      protein_coding
6468                      protein_coding
6469                      protein_coding
6470                      protein_coding
6471                      protein_coding
6472                      protein_coding
6473                      protein_coding
6474                      protein_coding
6475                      protein_coding
6476                      protein_coding
6477                      protein_coding
6478                      protein_coding
6479                      protein_coding
6480                      protein_coding
6481                      protein_coding
6482                      protein_coding
6483                      protein_coding
6484                      protein_coding
6485                      protein_coding
6486                      protein_coding
6487                      protein_coding
6488                      protein_coding
6489                      protein_coding
6490                      protein_coding
6491                      protein_coding
6492                      protein_coding
6493                      protein_coding
6494                      protein_coding
6495                      protein_coding
6496                      protein_coding
6497                      protein_coding
6498                      protein_coding
6499                      protein_coding
6500                      protein_coding
6501                      protein_coding
6502                      protein_coding
6503                      protein_coding
6504                      protein_coding
6505                      protein_coding
6506                      protein_coding
6507                      protein_coding
6508                      protein_coding
6509                      protein_coding
6510                      protein_coding
6511                      protein_coding
6512                      protein_coding
6513                      protein_coding
6514                      protein_coding
6515                      protein_coding
6516                      protein_coding
6517                      protein_coding
6518                      protein_coding
6519                      protein_coding
6520                      protein_coding
6521                      protein_coding
6522                      protein_coding
6523                      protein_coding
6524                      protein_coding
6525                      protein_coding
6526              unprocessed_pseudogene
6527              unprocessed_pseudogene
6528              unprocessed_pseudogene
6529              unprocessed_pseudogene
6530              unprocessed_pseudogene
6531              unprocessed_pseudogene
6532              unprocessed_pseudogene
6533              unprocessed_pseudogene
6534              unprocessed_pseudogene
6535                           antisense
6536                           antisense
6537                      protein_coding
6538                      protein_coding
6539                      protein_coding
6540                      protein_coding
6541                      protein_coding
6542                      protein_coding
6543                      protein_coding
6544                      protein_coding
6545                      protein_coding
6546                      protein_coding
6547                      protein_coding
6548                      protein_coding
6549                      protein_coding
6550                      protein_coding
6551                      protein_coding
6552                      protein_coding
6553                      protein_coding
6554                      protein_coding
6555                      protein_coding
6556                      protein_coding
6557                      protein_coding
6558                      protein_coding
6559                      protein_coding
6560                      protein_coding
6561                      protein_coding
6562                      protein_coding
6563                      protein_coding
6564                      protein_coding
6565                      protein_coding
6566                      protein_coding
6567                      protein_coding
6568                      protein_coding
6569                      protein_coding
6570                      protein_coding
6571                      protein_coding
6572                      protein_coding
6573                      protein_coding
6574                      protein_coding
6575                      protein_coding
6576                      protein_coding
6577                      protein_coding
6578                      protein_coding
6579                      protein_coding
6580                      protein_coding
6581                      protein_coding
6582                      protein_coding
6583                      protein_coding
6584                      protein_coding
6585                      protein_coding
6586                      protein_coding
6587                      protein_coding
6588                      protein_coding
6589                      protein_coding
6590                      protein_coding
6591                      protein_coding
6592                      protein_coding
6593                      protein_coding
6594                      protein_coding
6595                      protein_coding
6596                      protein_coding
6597                      protein_coding
6598                      protein_coding
6599                      protein_coding
6600                      protein_coding
6601                      protein_coding
6602                      protein_coding
6603                      protein_coding
6604                      protein_coding
6605                      protein_coding
6606                      protein_coding
6607                      protein_coding
6608                      protein_coding
6609                      protein_coding
6610                      protein_coding
6611                      protein_coding
6612                      protein_coding
6613                      protein_coding
6614                      protein_coding
6615                      protein_coding
6616                      protein_coding
6617                      protein_coding
6618                      protein_coding
6619                      protein_coding
6620                      protein_coding
6621                      protein_coding
6622                      protein_coding
6623                      protein_coding
6624                      protein_coding
6625                      protein_coding
6626                      protein_coding
6627                      protein_coding
6628                processed_pseudogene
6629                processed_pseudogene
6630                processed_pseudogene
6631                processed_pseudogene
6632                             lincRNA
6633                             lincRNA
6634                             lincRNA
6635                      protein_coding
6636                      protein_coding
6637                      protein_coding
6638                      protein_coding
6639                      protein_coding
6640                      protein_coding
6641                      protein_coding
6642                      protein_coding
6643                      protein_coding
6644                      protein_coding
6645                      protein_coding
6646                      protein_coding
6647                      protein_coding
6648                      protein_coding
6649                      protein_coding
6650                      protein_coding
6651                      protein_coding
6652                      protein_coding
6653                      protein_coding
6654                      protein_coding
6655                      protein_coding
6656                      protein_coding
6657                      protein_coding
6658                      protein_coding
6659                      protein_coding
6660                      protein_coding
6661                      protein_coding
6662                      protein_coding
6663                      protein_coding
6664                      protein_coding
6665                      protein_coding
6666                      protein_coding
6667                      protein_coding
6668                      protein_coding
6669                      protein_coding
6670                      protein_coding
6671                      protein_coding
6672                      protein_coding
6673                      protein_coding
6674                      protein_coding
6675                      protein_coding
6676                      protein_coding
6677                      protein_coding
6678                      protein_coding
6679                      protein_coding
6680                      protein_coding
6681                             lincRNA
6682                             lincRNA
6683                processed_pseudogene
6684                      protein_coding
6685                      protein_coding
6686                      protein_coding
6687                      protein_coding
6688                      protein_coding
6689                      protein_coding
6690                      protein_coding
6691                      protein_coding
6692                      protein_coding
6693                      protein_coding
6694                      protein_coding
6695                      protein_coding
6696                      protein_coding
6697                      protein_coding
6698                      protein_coding
6699                      protein_coding
6700                      protein_coding
6701                      protein_coding
6702                      protein_coding
6703                      protein_coding
6704                      protein_coding
6705                      protein_coding
6706                      protein_coding
6707                      protein_coding
6708                      protein_coding
6709                      protein_coding
6710                      protein_coding
6711                      protein_coding
6712                      protein_coding
6713                      protein_coding
6714                      protein_coding
6715                      protein_coding
6716                      protein_coding
6717                      protein_coding
6718                      protein_coding
6719                      protein_coding
6720                      protein_coding
6721                      protein_coding
6722                      protein_coding
6723                      protein_coding
6724                      protein_coding
6725                      protein_coding
6726                      protein_coding
6727                      protein_coding
6728                      protein_coding
6729                      protein_coding
6730                      protein_coding
6731                      protein_coding
6732                      protein_coding
6733                      protein_coding
6734                      protein_coding
6735                      protein_coding
6736                      protein_coding
6737                      protein_coding
6738                           antisense
6739                           antisense
6740              unprocessed_pseudogene
6741              unprocessed_pseudogene
6742              unprocessed_pseudogene
6743              unprocessed_pseudogene
6744              unprocessed_pseudogene
6745              unprocessed_pseudogene
6746                      protein_coding
6747                      protein_coding
6748                      protein_coding
6749                      protein_coding
6750                      protein_coding
6751                      protein_coding
6752                      protein_coding
6753                      protein_coding
6754                      protein_coding
6755                      protein_coding
6756                      protein_coding
6757                      protein_coding
6758                      protein_coding
6759                      protein_coding
6760                      protein_coding
6761                      protein_coding
6762                      protein_coding
6763                      protein_coding
6764                      protein_coding
6765                      protein_coding
6766                      protein_coding
6767                      protein_coding
6768                      protein_coding
6769                      protein_coding
6770                      protein_coding
6771                      protein_coding
6772                      protein_coding
6773                      protein_coding
6774                      protein_coding
6775                      protein_coding
6776                      protein_coding
6777                      protein_coding
6778                      protein_coding
6779                      protein_coding
6780                      protein_coding
6781                      protein_coding
6782                      protein_coding
6783                      protein_coding
6784                      protein_coding
6785                      protein_coding
6786                      protein_coding
6787                      protein_coding
6788                      protein_coding
6789                      protein_coding
6790                      protein_coding
6791                      protein_coding
6792                      protein_coding
6793                      protein_coding
6794                      protein_coding
6795                      protein_coding
6796                      protein_coding
6797                           antisense
6798                           antisense
6799                processed_pseudogene
6800                             lincRNA
6801                             lincRNA
6802                      protein_coding
6803                      protein_coding
6804                      protein_coding
6805                      protein_coding
6806                      protein_coding
6807                      protein_coding
6808                      protein_coding
6809                      protein_coding
6810                      protein_coding
6811                      protein_coding
6812                      protein_coding
6813                      protein_coding
6814                      protein_coding
6815                      protein_coding
6816                      protein_coding
6817                      protein_coding
6818                      protein_coding
6819                      protein_coding
6820                      protein_coding
6821                      protein_coding
6822                      protein_coding
6823                      protein_coding
6824                      protein_coding
6825                      protein_coding
6826                      protein_coding
6827                      protein_coding
6828                      protein_coding
6829                      protein_coding
6830                      protein_coding
6831                      protein_coding
6832                      protein_coding
6833                      protein_coding
6834                      protein_coding
6835                      protein_coding
6836                      protein_coding
6837                      protein_coding
6838                      protein_coding
6839                      protein_coding
6840                      protein_coding
6841                      protein_coding
6842                      protein_coding
6843                      protein_coding
6844                      protein_coding
6845                      protein_coding
6846                      protein_coding
6847                      protein_coding
6848                      protein_coding
6849                      protein_coding
6850                      protein_coding
6851                      protein_coding
6852                      protein_coding
6853                      protein_coding
6854                      protein_coding
6855                      protein_coding
6856                      protein_coding
6857                      protein_coding
6858                      protein_coding
6859                      protein_coding
6860                      protein_coding
6861                      protein_coding
6862                      protein_coding
6863                      protein_coding
6864                      protein_coding
6865                      protein_coding
6866                      protein_coding
6867                      protein_coding
6868                      protein_coding
6869                      protein_coding
6870                      protein_coding
6871                      protein_coding
6872                      protein_coding
6873                      protein_coding
6874                      protein_coding
6875                      protein_coding
6876                      protein_coding
6877                             lincRNA
6878                             lincRNA
6879                      protein_coding
6880                           antisense
6881                           antisense
6882                processed_pseudogene
6883                processed_pseudogene
6884                             lincRNA
6885                             lincRNA
6886                             lincRNA
6887                             lincRNA
6888                             lincRNA
6889                             lincRNA
6890                             lincRNA
6891                             lincRNA
6892                             lincRNA
6893                             lincRNA
6894                             lincRNA
6895                             lincRNA
6896                             lincRNA
6897                             lincRNA
6898                             lincRNA
6899                             lincRNA
6900                             lincRNA
6901                             lincRNA
6902                      protein_coding
6903                      protein_coding
6904                      protein_coding
6905                      protein_coding
6906                      protein_coding
6907                      protein_coding
6908                      protein_coding
6909                      protein_coding
6910                      protein_coding
6911                                 TEC
6912                                 TEC
6913                      protein_coding
6914                      protein_coding
6915                      protein_coding
6916                      protein_coding
6917                      protein_coding
6918                      protein_coding
6919                      protein_coding
6920                      protein_coding
6921                      protein_coding
6922                      protein_coding
6923                      protein_coding
6924                      protein_coding
6925                      protein_coding
6926                      protein_coding
6927                      protein_coding
6928                      protein_coding
6929                      protein_coding
6930                      protein_coding
6931                      protein_coding
6932                      protein_coding
6933                      protein_coding
6934                      protein_coding
6935                      protein_coding
6936                      protein_coding
6937                      protein_coding
6938                      protein_coding
6939                      protein_coding
6940                      protein_coding
6941                      protein_coding
6942                      protein_coding
6943                      protein_coding
6944                      protein_coding
6945                      protein_coding
6946                      protein_coding
6947                      protein_coding
6948                      protein_coding
6949                      protein_coding
6950                      protein_coding
6951                      protein_coding
6952                      protein_coding
6953                      protein_coding
6954                      protein_coding
6955                      protein_coding
6956                      protein_coding
6957                      protein_coding
6958                      protein_coding
6959                      protein_coding
6960                      protein_coding
6961                      protein_coding
6962                      protein_coding
6963                      protein_coding
6964                      protein_coding
6965                      protein_coding
6966                      protein_coding
6967                      protein_coding
6968                      protein_coding
6969                      protein_coding
6970                      protein_coding
6971                      protein_coding
6972                      protein_coding
6973                      protein_coding
6974                      protein_coding
6975                      protein_coding
6976                      protein_coding
6977                      protein_coding
6978                      protein_coding
6979                      protein_coding
6980                      protein_coding
6981                      protein_coding
6982                      protein_coding
6983                      protein_coding
6984                      protein_coding
6985                      protein_coding
6986                      protein_coding
6987                      protein_coding
6988                      protein_coding
6989                      protein_coding
6990                      protein_coding
6991                      protein_coding
6992                      protein_coding
6993                      protein_coding
6994                      protein_coding
6995                      protein_coding
6996                      protein_coding
6997                      protein_coding
6998                      protein_coding
6999                      protein_coding
7000                      protein_coding
7001                      protein_coding
7002                      protein_coding
7003                      protein_coding
7004                      protein_coding
7005                      protein_coding
7006                      protein_coding
7007                      protein_coding
7008                      protein_coding
7009                      protein_coding
7010                      protein_coding
7011                      protein_coding
7012                      protein_coding
7013                      protein_coding
7014                      protein_coding
7015                      protein_coding
7016                      protein_coding
7017                      protein_coding
7018                      protein_coding
7019                      protein_coding
7020                      protein_coding
7021                      protein_coding
7022                      protein_coding
7023                      protein_coding
7024                      protein_coding
7025                      protein_coding
7026                      protein_coding
7027                      protein_coding
7028                      protein_coding
7029                      protein_coding
7030                      protein_coding
7031                      protein_coding
7032                      protein_coding
7033                      protein_coding
7034                      protein_coding
7035                      protein_coding
7036                      protein_coding
7037                      protein_coding
7038                      protein_coding
7039                      protein_coding
7040                      protein_coding
7041                      protein_coding
7042                      protein_coding
7043                      protein_coding
7044                      protein_coding
7045                      protein_coding
7046                      protein_coding
7047                      protein_coding
7048                      protein_coding
7049                      protein_coding
7050                      protein_coding
7051                      protein_coding
7052                      protein_coding
7053                      protein_coding
7054                      protein_coding
7055                      protein_coding
7056                      protein_coding
7057                      protein_coding
7058                      protein_coding
7059                      protein_coding
7060                      protein_coding
7061                      protein_coding
7062                      protein_coding
7063                      protein_coding
7064                      protein_coding
7065                      protein_coding
7066                      protein_coding
7067                      protein_coding
7068                      protein_coding
7069                      protein_coding
7070                      protein_coding
7071                      protein_coding
7072                      protein_coding
7073                      protein_coding
7074                      protein_coding
7075                      protein_coding
7076                      protein_coding
7077                      protein_coding
7078                      protein_coding
7079                      protein_coding
7080                      protein_coding
7081                      protein_coding
7082                      protein_coding
7083                      protein_coding
7084                      protein_coding
7085                      protein_coding
7086                      protein_coding
7087                      protein_coding
7088                      protein_coding
7089                      protein_coding
7090                      protein_coding
7091                      protein_coding
7092                      protein_coding
7093                      protein_coding
7094                      protein_coding
7095                      protein_coding
7096                      protein_coding
7097                      protein_coding
7098                      protein_coding
7099                      protein_coding
7100                      protein_coding
7101                      protein_coding
7102                      protein_coding
7103                      protein_coding
7104                      protein_coding
7105                      protein_coding
7106                      protein_coding
7107                      protein_coding
7108                      protein_coding
7109                      protein_coding
7110                      protein_coding
7111                      protein_coding
7112                      protein_coding
7113                      protein_coding
7114                      protein_coding
7115                      protein_coding
7116                      protein_coding
7117                      protein_coding
7118                      protein_coding
7119                      protein_coding
7120                      protein_coding
7121                      protein_coding
7122                      protein_coding
7123                      protein_coding
7124                      protein_coding
7125                      protein_coding
7126                      protein_coding
7127                      protein_coding
7128                      protein_coding
7129                      protein_coding
7130                      protein_coding
7131                      protein_coding
7132                      protein_coding
7133                      protein_coding
7134                      protein_coding
7135                      protein_coding
7136                      protein_coding
7137                      protein_coding
7138                      protein_coding
7139                      protein_coding
7140                      protein_coding
7141                      protein_coding
7142                      protein_coding
7143                      protein_coding
7144                      protein_coding
7145                      protein_coding
7146                      protein_coding
7147                      protein_coding
7148                      protein_coding
7149                      protein_coding
7150                      protein_coding
7151                      protein_coding
7152                      protein_coding
7153                      protein_coding
7154                      protein_coding
7155                      protein_coding
7156                      protein_coding
7157                      protein_coding
7158                      protein_coding
7159                      protein_coding
7160                      protein_coding
7161                      protein_coding
7162                      protein_coding
7163                      protein_coding
7164                      protein_coding
7165                      protein_coding
7166                      protein_coding
7167                      protein_coding
7168                      protein_coding
7169                      protein_coding
7170                      protein_coding
7171                      protein_coding
7172                      protein_coding
7173                      protein_coding
7174                      protein_coding
7175                      protein_coding
7176                      protein_coding
7177                      protein_coding
7178                      protein_coding
7179                      protein_coding
7180                      protein_coding
7181                      protein_coding
7182                      protein_coding
7183                      protein_coding
7184                      protein_coding
7185                      protein_coding
7186                      protein_coding
7187                      protein_coding
7188                      protein_coding
7189                      protein_coding
7190                      protein_coding
7191                      protein_coding
7192                      protein_coding
7193                      protein_coding
7194                      protein_coding
7195                      protein_coding
7196                      protein_coding
7197                      protein_coding
7198                      protein_coding
7199                      protein_coding
7200                      protein_coding
7201                      protein_coding
7202                      protein_coding
7203                      protein_coding
7204                      protein_coding
7205                      protein_coding
7206                      protein_coding
7207                      protein_coding
7208                      protein_coding
7209                      protein_coding
7210                      protein_coding
7211                      protein_coding
7212                      protein_coding
7213                      protein_coding
7214                      protein_coding
7215                      protein_coding
7216                      protein_coding
7217                      protein_coding
7218                      protein_coding
7219                      protein_coding
7220                      protein_coding
7221                      protein_coding
7222                      protein_coding
7223                      protein_coding
7224                      protein_coding
7225                      protein_coding
7226                      protein_coding
7227                      protein_coding
7228                      protein_coding
7229                      protein_coding
7230                      protein_coding
7231                      protein_coding
7232                      protein_coding
7233                      protein_coding
7234                      protein_coding
7235                      protein_coding
7236                      protein_coding
7237                      protein_coding
7238                      protein_coding
7239                      protein_coding
7240                      protein_coding
7241                      protein_coding
7242                      protein_coding
7243                      protein_coding
7244                      protein_coding
7245                      protein_coding
7246                      protein_coding
7247                      protein_coding
7248                      protein_coding
7249                      protein_coding
7250                      protein_coding
7251                      protein_coding
7252                      protein_coding
7253                      protein_coding
7254                      protein_coding
7255                      protein_coding
7256                      protein_coding
7257                      protein_coding
7258                      protein_coding
7259                      protein_coding
7260                      protein_coding
7261                      protein_coding
7262                      protein_coding
7263                      protein_coding
7264                      protein_coding
7265                      protein_coding
7266                      protein_coding
7267                      protein_coding
7268                      protein_coding
7269                      protein_coding
7270                      protein_coding
7271                      protein_coding
7272                      protein_coding
7273                      protein_coding
7274                      protein_coding
7275                      protein_coding
7276                      protein_coding
7277                      protein_coding
7278                      protein_coding
7279                      protein_coding
7280                      protein_coding
7281                      protein_coding
7282                      protein_coding
7283                      protein_coding
7284                      protein_coding
7285                      protein_coding
7286                      protein_coding
7287                      protein_coding
7288                      protein_coding
7289                      protein_coding
7290                      protein_coding
7291                      protein_coding
7292                      protein_coding
7293                      protein_coding
7294                      protein_coding
7295                      protein_coding
7296                      protein_coding
7297                      protein_coding
7298                      protein_coding
7299                      protein_coding
7300                      protein_coding
7301                      protein_coding
7302                      protein_coding
7303                      protein_coding
7304                      protein_coding
7305                      protein_coding
7306                      protein_coding
7307                      protein_coding
7308                      protein_coding
7309                      protein_coding
7310                      protein_coding
7311                      protein_coding
7312                      protein_coding
7313                      protein_coding
7314                      protein_coding
7315                      protein_coding
7316                      protein_coding
7317                      protein_coding
7318                      protein_coding
7319                      protein_coding
7320                      protein_coding
7321                      protein_coding
7322                                 TEC
7323                processed_pseudogene
7324                           antisense
7325                   sense_overlapping
7326                   sense_overlapping
7327                   sense_overlapping
7328                      protein_coding
7329                      protein_coding
7330                      protein_coding
7331                      protein_coding
7332                      protein_coding
7333                      protein_coding
7334                      protein_coding
7335                      protein_coding
7336                           antisense
7337                           antisense
7338                           antisense
7339                           antisense
7340                           antisense
7341                           antisense
7342                           antisense
7343                           antisense
7344                           antisense
7345                           antisense
7346                           antisense
7347                           antisense
7348                           antisense
7349                           antisense
7350                processed_pseudogene
7351                           antisense
7352                           antisense
7353                      protein_coding
7354                      protein_coding
7355                      protein_coding
7356                      protein_coding
7357                      protein_coding
7358                      protein_coding
7359                      protein_coding
7360                      protein_coding
7361                      protein_coding
7362                      protein_coding
7363                      protein_coding
7364                      protein_coding
7365                      protein_coding
7366                      protein_coding
7367                      protein_coding
7368                      protein_coding
7369                      protein_coding
7370                      protein_coding
7371                      protein_coding
7372                      protein_coding
7373                      protein_coding
7374                      protein_coding
7375                      protein_coding
7376                      protein_coding
7377                             lincRNA
7378                             lincRNA
7379                             lincRNA
7380                             lincRNA
7381                             lincRNA
7382                             lincRNA
7383                             lincRNA
7384                             lincRNA
7385                             lincRNA
7386                             lincRNA
7387                             lincRNA
7388                             lincRNA
7389                             lincRNA
7390                             lincRNA
7391                             lincRNA
7392                             lincRNA
7393                             lincRNA
7394                             lincRNA
7395                      protein_coding
7396                      protein_coding
7397                      protein_coding
7398                      protein_coding
7399                      protein_coding
7400                      protein_coding
7401                      protein_coding
7402                      protein_coding
7403                      protein_coding
7404                      protein_coding
7405                      protein_coding
7406                      protein_coding
7407                      protein_coding
7408                      protein_coding
7409                      protein_coding
7410                      protein_coding
7411                      protein_coding
7412                      protein_coding
7413                      protein_coding
7414                      protein_coding
7415                      protein_coding
7416                      protein_coding
7417                      protein_coding
7418                      protein_coding
7419                      protein_coding
7420                      protein_coding
7421                      protein_coding
7422                      protein_coding
7423                      protein_coding
7424                      protein_coding
7425                      protein_coding
7426                      protein_coding
7427                      protein_coding
7428                      protein_coding
7429                      protein_coding
7430                      protein_coding
7431                      protein_coding
7432                      protein_coding
7433                      protein_coding
7434                      protein_coding
7435                      protein_coding
7436                      protein_coding
7437                      protein_coding
7438                      protein_coding
7439                      protein_coding
7440                      protein_coding
7441                      protein_coding
7442                      protein_coding
7443                      protein_coding
7444                      protein_coding
7445                      protein_coding
7446                      protein_coding
7447                      protein_coding
7448                      protein_coding
7449                      protein_coding
7450                      protein_coding
7451                      protein_coding
7452                      protein_coding
7453                      protein_coding
7454                      protein_coding
7455                      protein_coding
7456                      protein_coding
7457                      protein_coding
7458                      protein_coding
7459                      protein_coding
7460                      protein_coding
7461                      protein_coding
7462                      protein_coding
7463                      protein_coding
7464                      protein_coding
7465                      protein_coding
7466                      protein_coding
7467                      protein_coding
7468                             lincRNA
7469                             lincRNA
7470                             lincRNA
7471                             lincRNA
7472                             lincRNA
7473                      protein_coding
7474                      protein_coding
7475                      protein_coding
7476                      protein_coding
7477                      protein_coding
7478                      protein_coding
7479                      protein_coding
7480                      protein_coding
7481                      protein_coding
7482                      protein_coding
7483                      protein_coding
7484                      protein_coding
7485                      protein_coding
7486                      protein_coding
7487                      protein_coding
7488                      protein_coding
7489                      protein_coding
7490                      protein_coding
7491                      protein_coding
7492                      protein_coding
7493                      protein_coding
7494                      protein_coding
7495                      protein_coding
7496                      protein_coding
7497                      protein_coding
7498                      protein_coding
7499                      protein_coding
7500                      protein_coding
7501                      protein_coding
7502                      protein_coding
7503                      protein_coding
7504                      protein_coding
7505                      protein_coding
7506                      protein_coding
7507                      protein_coding
7508                      protein_coding
7509                      protein_coding
7510                      protein_coding
7511                      protein_coding
7512                      protein_coding
7513                      protein_coding
7514                      protein_coding
7515                      protein_coding
7516                      protein_coding
7517                      protein_coding
7518                      protein_coding
7519                      protein_coding
7520                      protein_coding
7521                      protein_coding
7522                      protein_coding
7523                      protein_coding
7524                      protein_coding
7525                      protein_coding
7526                      protein_coding
7527                      protein_coding
7528                      protein_coding
7529                      protein_coding
7530                      protein_coding
7531                      protein_coding
7532                      protein_coding
7533                      protein_coding
7534                      protein_coding
7535                      protein_coding
7536                      protein_coding
7537                      protein_coding
7538                      protein_coding
7539                      protein_coding
7540                      protein_coding
7541                      protein_coding
7542                      protein_coding
7543                      protein_coding
7544                      protein_coding
7545                      protein_coding
7546                      protein_coding
7547                      protein_coding
7548                      protein_coding
7549                      protein_coding
7550                      protein_coding
7551                      protein_coding
7552                      protein_coding
7553                      protein_coding
7554                      protein_coding
7555                      protein_coding
7556                      protein_coding
7557                      protein_coding
7558                      protein_coding
7559                      protein_coding
7560                      protein_coding
7561                      protein_coding
7562                      protein_coding
7563                      protein_coding
7564                      protein_coding
7565                      protein_coding
7566                      protein_coding
7567                      protein_coding
7568                      protein_coding
7569                      protein_coding
7570                      protein_coding
7571                      protein_coding
7572                      protein_coding
7573                      protein_coding
7574                      protein_coding
7575                      protein_coding
7576                      protein_coding
7577                      protein_coding
7578                      protein_coding
7579                      protein_coding
7580                      protein_coding
7581                      protein_coding
7582                      protein_coding
7583                      protein_coding
7584                      protein_coding
7585                      protein_coding
7586                      protein_coding
7587                      protein_coding
7588                      protein_coding
7589                      protein_coding
7590                      protein_coding
7591                      protein_coding
7592                      protein_coding
7593                           antisense
7594                           antisense
7595                             lincRNA
7596                             lincRNA
7597                      protein_coding
7598                      protein_coding
7599                      protein_coding
7600                      protein_coding
7601                      protein_coding
7602                      protein_coding
7603                      protein_coding
7604                      protein_coding
7605                      protein_coding
7606                      protein_coding
7607                      protein_coding
7608                      protein_coding
7609                      protein_coding
7610                      protein_coding
7611                      protein_coding
7612                      protein_coding
7613                      protein_coding
7614                      protein_coding
7615                      protein_coding
7616                      protein_coding
7617                      protein_coding
7618                      protein_coding
7619                      protein_coding
7620                      protein_coding
7621                      protein_coding
7622                      protein_coding
7623                      protein_coding
7624                      protein_coding
7625                      protein_coding
7626                      protein_coding
7627                      protein_coding
7628                      protein_coding
7629                      protein_coding
7630                      protein_coding
7631                      protein_coding
7632                      protein_coding
7633                      protein_coding
7634                      protein_coding
7635                      protein_coding
7636                      protein_coding
7637                      protein_coding
7638                      protein_coding
7639                      protein_coding
7640                      protein_coding
7641                      protein_coding
7642                      protein_coding
7643                      protein_coding
7644                      protein_coding
7645                      protein_coding
7646                      protein_coding
7647                      protein_coding
7648                      protein_coding
7649                      protein_coding
7650                      protein_coding
7651                      protein_coding
7652                      protein_coding
7653                      protein_coding
7654                      protein_coding
7655                      protein_coding
7656                      protein_coding
7657                      protein_coding
7658                      protein_coding
7659                      protein_coding
7660                      protein_coding
7661                      protein_coding
7662                      protein_coding
7663                      protein_coding
7664                      protein_coding
7665                      protein_coding
7666                      protein_coding
7667                      protein_coding
7668                      protein_coding
7669                      protein_coding
7670                      protein_coding
7671                      protein_coding
7672                      protein_coding
7673                      protein_coding
7674                      protein_coding
7675                      protein_coding
7676                      protein_coding
7677                      protein_coding
7678                      protein_coding
7679                      protein_coding
7680                      protein_coding
7681                      protein_coding
7682                      protein_coding
7683                      protein_coding
7684                      protein_coding
7685                      protein_coding
7686                      protein_coding
7687                      protein_coding
7688                      protein_coding
7689                      protein_coding
7690                      protein_coding
7691                      protein_coding
7692                      protein_coding
7693                      protein_coding
7694                      protein_coding
7695                      protein_coding
7696                      protein_coding
7697                      protein_coding
7698                      protein_coding
7699                      protein_coding
7700                      protein_coding
7701                      protein_coding
7702                      protein_coding
7703                      protein_coding
7704                      protein_coding
7705                      protein_coding
7706                      protein_coding
7707                      protein_coding
7708                      protein_coding
7709                      protein_coding
7710                      protein_coding
7711                      protein_coding
7712                      protein_coding
7713                      protein_coding
7714                      protein_coding
7715                      protein_coding
7716                      protein_coding
7717                      protein_coding
7718                      protein_coding
7719                      protein_coding
7720                      protein_coding
7721                      protein_coding
7722                      protein_coding
7723                      protein_coding
7724                      protein_coding
7725                      protein_coding
7726                      protein_coding
7727                      protein_coding
7728                      protein_coding
7729                      protein_coding
7730                      protein_coding
7731                      protein_coding
7732                      protein_coding
7733                      protein_coding
7734                      protein_coding
7735                      protein_coding
7736                      protein_coding
7737                      protein_coding
7738                      protein_coding
7739                      protein_coding
7740                      protein_coding
7741                      protein_coding
7742                      protein_coding
7743                      protein_coding
7744                      protein_coding
7745                      protein_coding
7746                      protein_coding
7747                      protein_coding
7748                      protein_coding
7749                      protein_coding
7750                      protein_coding
7751                      protein_coding
7752                      protein_coding
7753                      protein_coding
7754                      protein_coding
7755                      protein_coding
7756                      protein_coding
7757                      protein_coding
7758                      protein_coding
7759                      protein_coding
7760                      protein_coding
7761                      protein_coding
7762                      protein_coding
7763                      protein_coding
7764                      protein_coding
7765                      protein_coding
7766                      protein_coding
7767                      protein_coding
7768                      protein_coding
7769                      protein_coding
7770                      protein_coding
7771                      protein_coding
7772                      protein_coding
7773                      protein_coding
7774                      protein_coding
7775                      protein_coding
7776                      protein_coding
7777                      protein_coding
7778                      protein_coding
7779                      protein_coding
7780                      protein_coding
7781                      protein_coding
7782                      protein_coding
7783                      protein_coding
7784                      protein_coding
7785                      protein_coding
7786                      protein_coding
7787                      protein_coding
7788                      protein_coding
7789                      protein_coding
7790                      protein_coding
7791                      protein_coding
7792                      protein_coding
7793                      protein_coding
7794                      protein_coding
7795                      protein_coding
7796                      protein_coding
7797                      protein_coding
7798                      protein_coding
7799                      protein_coding
7800                      protein_coding
7801                      protein_coding
7802                      protein_coding
7803                      protein_coding
7804                      protein_coding
7805                      protein_coding
7806                      protein_coding
7807                      protein_coding
7808                      protein_coding
7809                      protein_coding
7810                      protein_coding
7811                      protein_coding
7812                      protein_coding
7813                      protein_coding
7814                      protein_coding
7815                      protein_coding
7816                      protein_coding
7817                      protein_coding
7818                      protein_coding
7819                      protein_coding
7820                      protein_coding
7821                      protein_coding
7822                      protein_coding
7823                      protein_coding
7824                      protein_coding
7825                      protein_coding
7826                      protein_coding
7827                      protein_coding
7828                      protein_coding
7829                      protein_coding
7830                      protein_coding
7831                      protein_coding
7832                      protein_coding
7833                      protein_coding
7834                      protein_coding
7835                      protein_coding
7836                      protein_coding
7837                      protein_coding
7838                      protein_coding
7839                      protein_coding
7840                      protein_coding
7841                      protein_coding
7842                      protein_coding
7843                      protein_coding
7844                      protein_coding
7845                      protein_coding
7846                      protein_coding
7847                      protein_coding
7848                      protein_coding
7849                      protein_coding
7850                      protein_coding
7851                      protein_coding
7852                      protein_coding
7853                      protein_coding
7854                      protein_coding
7855                      protein_coding
7856                      protein_coding
7857                      protein_coding
7858                      protein_coding
7859                      protein_coding
7860                      protein_coding
7861                      protein_coding
7862                      protein_coding
7863                      protein_coding
7864                      protein_coding
7865                      protein_coding
7866                      protein_coding
7867                      protein_coding
7868                      protein_coding
7869                      protein_coding
7870                      protein_coding
7871                      protein_coding
7872                      protein_coding
7873                      protein_coding
7874                      protein_coding
7875                      protein_coding
7876                      protein_coding
7877                      protein_coding
7878                      protein_coding
7879                      protein_coding
7880                      protein_coding
7881                      protein_coding
7882                      protein_coding
7883                      protein_coding
7884                      protein_coding
7885                      protein_coding
7886                      protein_coding
7887                      protein_coding
7888                      protein_coding
7889                      protein_coding
7890                      protein_coding
7891                      protein_coding
7892                      protein_coding
7893                      protein_coding
7894                      protein_coding
7895                      protein_coding
7896                      protein_coding
7897                      protein_coding
7898                      protein_coding
7899                      protein_coding
7900                      protein_coding
7901                      protein_coding
7902                      protein_coding
7903                      protein_coding
7904                      protein_coding
7905                      protein_coding
7906                      protein_coding
7907                      protein_coding
7908                      protein_coding
7909                      protein_coding
7910                      protein_coding
7911                      protein_coding
7912                      protein_coding
7913                      protein_coding
7914                      protein_coding
7915                      protein_coding
7916                      protein_coding
7917                      protein_coding
7918                      protein_coding
7919                      protein_coding
7920                      protein_coding
7921                      protein_coding
7922                      protein_coding
7923                      protein_coding
7924                      protein_coding
7925                      protein_coding
7926                      protein_coding
7927                      protein_coding
7928                      protein_coding
7929                      protein_coding
7930                      protein_coding
7931                      protein_coding
7932                      protein_coding
7933                      protein_coding
7934                      protein_coding
7935                      protein_coding
7936                      protein_coding
7937                      protein_coding
7938                      protein_coding
7939                      protein_coding
7940                      protein_coding
7941                      protein_coding
7942                      protein_coding
7943                      protein_coding
7944                      protein_coding
7945                      protein_coding
7946                      protein_coding
7947                      protein_coding
7948                      protein_coding
7949                      protein_coding
7950                      protein_coding
7951                      protein_coding
7952                      protein_coding
7953                      protein_coding
7954                      protein_coding
7955                      protein_coding
7956                      protein_coding
7957                      protein_coding
7958                      protein_coding
7959                      protein_coding
7960                      protein_coding
7961                      protein_coding
7962                      protein_coding
7963                      protein_coding
7964                      protein_coding
7965                      protein_coding
7966                      protein_coding
7967                      protein_coding
7968                      protein_coding
7969                      protein_coding
7970                      protein_coding
7971                      protein_coding
7972                      protein_coding
7973                      protein_coding
7974                      protein_coding
7975                      protein_coding
7976                      protein_coding
7977                      protein_coding
7978                      protein_coding
7979                      protein_coding
7980                      protein_coding
7981                      protein_coding
7982                      protein_coding
7983                      protein_coding
7984                      protein_coding
7985                      protein_coding
7986                      protein_coding
7987                      protein_coding
7988                      protein_coding
7989                      protein_coding
7990                      protein_coding
7991                      protein_coding
7992                      protein_coding
7993                      protein_coding
7994                      protein_coding
7995                      protein_coding
7996                      protein_coding
7997                      protein_coding
7998                      protein_coding
7999                      protein_coding
8000                      protein_coding
8001                      protein_coding
8002                      protein_coding
8003                      protein_coding
8004                      protein_coding
8005                      protein_coding
8006                      protein_coding
8007                      protein_coding
8008                      protein_coding
8009                      protein_coding
8010                      protein_coding
8011                      protein_coding
8012                      protein_coding
8013                      protein_coding
8014                      protein_coding
8015                      protein_coding
8016                      protein_coding
8017                      protein_coding
8018                      protein_coding
8019                      protein_coding
8020                      protein_coding
8021                      protein_coding
8022                      protein_coding
8023                      protein_coding
8024                      protein_coding
8025                      protein_coding
8026                      protein_coding
8027                      protein_coding
8028                      protein_coding
8029                      protein_coding
8030                      protein_coding
8031                      protein_coding
8032                      protein_coding
8033                      protein_coding
8034                      protein_coding
8035                      protein_coding
8036                      protein_coding
8037                      protein_coding
8038                      protein_coding
8039                      protein_coding
8040                      protein_coding
8041                      protein_coding
8042                      protein_coding
8043                      protein_coding
8044                processed_pseudogene
8045                processed_pseudogene
8046                             lincRNA
8047                             lincRNA
8048                      protein_coding
8049                      protein_coding
8050                      protein_coding
8051                      protein_coding
8052                      protein_coding
8053                      protein_coding
8054                      protein_coding
8055                      protein_coding
8056                      protein_coding
8057                      protein_coding
8058                      protein_coding
8059                      protein_coding
8060                      protein_coding
8061                      protein_coding
8062                      protein_coding
8063                      protein_coding
8064                      protein_coding
8065                      protein_coding
8066                      protein_coding
8067                      protein_coding
8068                      protein_coding
8069                      protein_coding
8070                      protein_coding
8071                      protein_coding
8072                      protein_coding
8073                      protein_coding
8074                      protein_coding
8075                      protein_coding
8076                      protein_coding
8077                      protein_coding
8078                      protein_coding
8079                      protein_coding
8080                      protein_coding
8081                      protein_coding
8082                      protein_coding
8083                      protein_coding
8084                      protein_coding
8085                      protein_coding
8086                      protein_coding
8087                      protein_coding
8088                      protein_coding
8089                      protein_coding
8090                      protein_coding
8091                      protein_coding
8092                      protein_coding
8093                      protein_coding
8094                      protein_coding
8095                      protein_coding
8096                      protein_coding
8097                      protein_coding
8098                      protein_coding
8099                      protein_coding
8100                      protein_coding
8101                      protein_coding
8102                      protein_coding
8103                      protein_coding
8104                      protein_coding
8105                      protein_coding
8106                      protein_coding
8107                      protein_coding
8108                      protein_coding
8109                      protein_coding
8110                      protein_coding
8111                      protein_coding
8112                      protein_coding
8113                      protein_coding
8114                      protein_coding
8115                      protein_coding
8116                      protein_coding
8117                      protein_coding
8118                      protein_coding
8119                      protein_coding
8120                      protein_coding
8121                      protein_coding
8122                      protein_coding
8123                      protein_coding
8124                      protein_coding
8125                      protein_coding
8126                      protein_coding
8127                      protein_coding
8128                      protein_coding
8129                      protein_coding
8130                      protein_coding
8131                processed_pseudogene
8132                           antisense
8133                           antisense
8134                           antisense
8135                           antisense
8136                           antisense
8137                           antisense
8138                           antisense
8139                           antisense
8140                           antisense
8141                           antisense
8142                           antisense
8143                           antisense
8144                             lincRNA
8145                             lincRNA
8146                      protein_coding
8147                      protein_coding
8148                      protein_coding
8149                      protein_coding
8150                      protein_coding
8151                      protein_coding
8152                      protein_coding
8153                      protein_coding
8154                      protein_coding
8155                      protein_coding
8156                      protein_coding
8157                      protein_coding
8158                      protein_coding
8159                      protein_coding
8160                      protein_coding
8161                      protein_coding
8162                      protein_coding
8163                      protein_coding
8164                      protein_coding
8165                      protein_coding
8166                      protein_coding
8167                      protein_coding
8168                      protein_coding
8169                      protein_coding
8170                      protein_coding
8171                      protein_coding
8172                      protein_coding
8173                      protein_coding
8174                      protein_coding
8175                      protein_coding
8176                      protein_coding
8177                      protein_coding
8178                      protein_coding
8179                      protein_coding
8180                      protein_coding
8181                      protein_coding
8182                      protein_coding
8183                      protein_coding
8184                      protein_coding
8185                      protein_coding
8186                      protein_coding
8187                      protein_coding
8188                      protein_coding
8189                      protein_coding
8190                      protein_coding
8191                      protein_coding
8192                      protein_coding
8193                      protein_coding
8194                      protein_coding
8195                      protein_coding
8196                      protein_coding
8197                      protein_coding
8198                      protein_coding
8199                      protein_coding
8200                      protein_coding
8201                      protein_coding
8202                      protein_coding
8203                      protein_coding
8204                      protein_coding
8205                      protein_coding
8206                      protein_coding
8207                      protein_coding
8208                      protein_coding
8209                      protein_coding
8210                      protein_coding
8211                      protein_coding
8212                      protein_coding
8213                      protein_coding
8214                      protein_coding
8215                      protein_coding
8216                      protein_coding
8217                      protein_coding
8218                      protein_coding
8219                      protein_coding
8220                      protein_coding
8221                      protein_coding
8222                      protein_coding
8223                      protein_coding
8224                      protein_coding
8225                      protein_coding
8226                      protein_coding
8227                      protein_coding
8228                      protein_coding
8229                      protein_coding
8230                      protein_coding
8231                      protein_coding
8232                      protein_coding
8233                      protein_coding
8234                      protein_coding
8235                      protein_coding
8236                      protein_coding
8237                      protein_coding
8238                      protein_coding
8239                      protein_coding
8240                      protein_coding
8241                      protein_coding
8242                      protein_coding
8243                      protein_coding
8244                      protein_coding
8245                      protein_coding
8246                      protein_coding
8247                      protein_coding
8248                      protein_coding
8249                      protein_coding
8250                      protein_coding
8251                      protein_coding
8252                      protein_coding
8253                      protein_coding
8254                      protein_coding
8255                      protein_coding
8256                      protein_coding
8257                      protein_coding
8258                      protein_coding
8259                      protein_coding
8260                      protein_coding
8261                      protein_coding
8262                      protein_coding
8263                      protein_coding
8264                      protein_coding
8265                      protein_coding
8266                      protein_coding
8267                      protein_coding
8268                             lincRNA
8269                             lincRNA
8270                             lincRNA
8271                             lincRNA
8272                             lincRNA
8273                             lincRNA
8274                             lincRNA
8275                             lincRNA
8276              unprocessed_pseudogene
8277              unprocessed_pseudogene
8278              unprocessed_pseudogene
8279              unprocessed_pseudogene
8280              unprocessed_pseudogene
8281              unprocessed_pseudogene
8282              unprocessed_pseudogene
8283              unprocessed_pseudogene
8284              unprocessed_pseudogene
8285              unprocessed_pseudogene
8286              unprocessed_pseudogene
8287              unprocessed_pseudogene
8288              unprocessed_pseudogene
8289              unprocessed_pseudogene
8290              unprocessed_pseudogene
8291              unprocessed_pseudogene
8292              unprocessed_pseudogene
8293                           antisense
8294                           antisense
8295                      protein_coding
8296                      protein_coding
8297                      protein_coding
8298                      protein_coding
8299                      protein_coding
8300                      protein_coding
8301                      protein_coding
8302                      protein_coding
8303                      protein_coding
8304                      protein_coding
8305                      protein_coding
8306                      protein_coding
8307                      protein_coding
8308                      protein_coding
8309                      protein_coding
8310                      protein_coding
8311                      protein_coding
8312                      protein_coding
8313                      protein_coding
8314                      protein_coding
8315                      protein_coding
8316                      protein_coding
8317                      protein_coding
8318                      protein_coding
8319                      protein_coding
8320                      protein_coding
8321                      protein_coding
8322                      protein_coding
8323                      protein_coding
8324                      protein_coding
8325                      protein_coding
8326                      protein_coding
8327                      protein_coding
8328                             lincRNA
8329                             lincRNA
8330                             lincRNA
8331                             lincRNA
8332                             lincRNA
8333                             lincRNA
8334                             lincRNA
8335                processed_pseudogene
8336                processed_pseudogene
8337                processed_pseudogene
8338                processed_pseudogene
8339                processed_pseudogene
8340                processed_pseudogene
8341                             lincRNA
8342                             lincRNA
8343                             lincRNA
8344                             lincRNA
8345                             lincRNA
8346                             lincRNA
8347                             lincRNA
8348                      protein_coding
8349                      protein_coding
8350                      protein_coding
8351                      protein_coding
8352                      protein_coding
8353                      protein_coding
8354                      protein_coding
8355                      protein_coding
8356                      protein_coding
8357                      protein_coding
8358                      protein_coding
8359                      protein_coding
8360                      protein_coding
8361                      protein_coding
8362                      protein_coding
8363                      protein_coding
8364                      protein_coding
8365                      protein_coding
8366                      protein_coding
8367                      protein_coding
8368                      protein_coding
8369                      protein_coding
8370                      protein_coding
8371                      protein_coding
8372                      protein_coding
8373                      protein_coding
8374                      protein_coding
8375                      protein_coding
8376                      protein_coding
8377                      protein_coding
8378                      protein_coding
8379                      protein_coding
8380                      protein_coding
8381                      protein_coding
8382                      protein_coding
8383                      protein_coding
8384                      protein_coding
8385                      protein_coding
8386                      protein_coding
8387                      protein_coding
8388                      protein_coding
8389                      protein_coding
8390                      protein_coding
8391                      protein_coding
8392                      protein_coding
8393                      protein_coding
8394                      protein_coding
8395                      protein_coding
8396                      protein_coding
8397                      protein_coding
8398                      protein_coding
8399                      protein_coding
8400                      protein_coding
8401                      protein_coding
8402                      protein_coding
8403                      protein_coding
8404                      protein_coding
8405                      protein_coding
8406                      protein_coding
8407                      protein_coding
8408                      protein_coding
8409                      protein_coding
8410                      protein_coding
8411                      protein_coding
8412                      protein_coding
8413                      protein_coding
8414                      protein_coding
8415                      protein_coding
8416                      protein_coding
8417                      protein_coding
8418                      protein_coding
8419                      protein_coding
8420                      protein_coding
8421                      protein_coding
8422                      protein_coding
8423                      protein_coding
8424                      protein_coding
8425                      protein_coding
8426                      protein_coding
8427                      protein_coding
8428                      protein_coding
8429                      protein_coding
8430                      protein_coding
8431                      protein_coding
8432                      protein_coding
8433                      protein_coding
8434                      protein_coding
8435                      protein_coding
8436                      protein_coding
8437                      protein_coding
8438                      protein_coding
8439                      protein_coding
8440                      protein_coding
8441                      protein_coding
8442                      protein_coding
8443                      protein_coding
8444                      protein_coding
8445                      protein_coding
8446                      protein_coding
8447                      protein_coding
8448                      protein_coding
8449                      protein_coding
8450                      protein_coding
8451                      protein_coding
8452                      protein_coding
8453                      protein_coding
8454                      protein_coding
8455                      protein_coding
8456                      protein_coding
8457                      protein_coding
8458                      protein_coding
8459                      protein_coding
8460                      protein_coding
8461                      protein_coding
8462                      protein_coding
8463                      protein_coding
8464                      protein_coding
8465                      protein_coding
8466                      protein_coding
8467                      protein_coding
8468                processed_pseudogene
8469                processed_pseudogene
8470                processed_pseudogene
8471                processed_pseudogene
8472                      protein_coding
8473                      protein_coding
8474                      protein_coding
8475                      protein_coding
8476                      protein_coding
8477                      protein_coding
8478                      protein_coding
8479                      protein_coding
8480                      protein_coding
8481                      protein_coding
8482                      protein_coding
8483                      protein_coding
8484                      protein_coding
8485                      protein_coding
8486                      protein_coding
8487                      protein_coding
8488                      protein_coding
8489                      protein_coding
8490                      protein_coding
8491                      protein_coding
8492                      protein_coding
8493                      protein_coding
8494                      protein_coding
8495                      protein_coding
8496                      protein_coding
8497                      protein_coding
8498                      protein_coding
8499                      protein_coding
8500                      protein_coding
8501                      protein_coding
8502                      protein_coding
8503                      protein_coding
8504                      protein_coding
8505                      protein_coding
8506                      protein_coding
8507                      protein_coding
8508                      protein_coding
8509                      protein_coding
8510                      protein_coding
8511                      protein_coding
8512                      protein_coding
8513                      protein_coding
8514                      protein_coding
8515                      protein_coding
8516                      protein_coding
8517                      protein_coding
8518                      protein_coding
8519                      protein_coding
8520                      protein_coding
8521                      protein_coding
8522                      protein_coding
8523                      protein_coding
8524                      protein_coding
8525                      protein_coding
8526                      protein_coding
8527                      protein_coding
8528                      protein_coding
8529                      protein_coding
8530                      protein_coding
8531                      protein_coding
8532                      protein_coding
8533                      protein_coding
8534                      protein_coding
8535                      protein_coding
8536                      protein_coding
8537                      protein_coding
8538                      protein_coding
8539                      protein_coding
8540                      protein_coding
8541                      protein_coding
8542                      protein_coding
8543                      protein_coding
8544                      protein_coding
8545                      protein_coding
8546                      protein_coding
8547                      protein_coding
8548                      protein_coding
8549                      protein_coding
8550                      protein_coding
8551                      protein_coding
8552                      protein_coding
8553                      protein_coding
8554                      protein_coding
8555                   sense_overlapping
8556                   sense_overlapping
8557                      protein_coding
8558                      protein_coding
8559                      protein_coding
8560                      protein_coding
8561                      protein_coding
8562                      protein_coding
8563                      protein_coding
8564                      protein_coding
8565                      protein_coding
8566                      protein_coding
8567                      protein_coding
8568                      protein_coding
8569                      protein_coding
8570                      protein_coding
8571                      protein_coding
8572                      protein_coding
8573                      protein_coding
8574                      protein_coding
8575                      protein_coding
8576                      protein_coding
8577                      protein_coding
8578                      protein_coding
8579                      protein_coding
8580                      protein_coding
8581                processed_pseudogene
8582                processed_pseudogene
8583                      protein_coding
8584                      protein_coding
8585                      protein_coding
8586                      protein_coding
8587                      protein_coding
8588                      protein_coding
8589                      protein_coding
8590                      protein_coding
8591                      protein_coding
8592                      protein_coding
8593                      protein_coding
8594                      protein_coding
8595                      protein_coding
8596                      protein_coding
8597                      protein_coding
8598                      protein_coding
8599                      protein_coding
8600                      protein_coding
8601                      protein_coding
8602                      protein_coding
8603                      protein_coding
8604                      protein_coding
8605                      protein_coding
8606                      protein_coding
8607                      protein_coding
8608                      protein_coding
8609                      protein_coding
8610                      protein_coding
8611                      protein_coding
8612                      protein_coding
8613                      protein_coding
8614                      protein_coding
8615                      protein_coding
8616                      protein_coding
8617                      protein_coding
8618                      protein_coding
8619                      protein_coding
8620                      protein_coding
8621                      protein_coding
8622                      protein_coding
8623                      protein_coding
8624                      protein_coding
8625                      protein_coding
8626                      protein_coding
8627                      protein_coding
8628                      protein_coding
8629                      protein_coding
8630                      protein_coding
8631                      protein_coding
8632                      protein_coding
8633                      protein_coding
8634                processed_pseudogene
8635                      protein_coding
8636                      protein_coding
8637                      protein_coding
8638                      protein_coding
8639                      protein_coding
8640                      protein_coding
8641                      protein_coding
8642                      protein_coding
8643                      protein_coding
8644                      protein_coding
8645                      protein_coding
8646                      protein_coding
8647                      protein_coding
8648                      protein_coding
8649                      protein_coding
8650                      protein_coding
8651                      protein_coding
8652                      protein_coding
8653                      protein_coding
8654                      protein_coding
8655                      protein_coding
8656                      protein_coding
8657                      protein_coding
8658                      protein_coding
8659                      protein_coding
8660                      protein_coding
8661                      protein_coding
8662                      protein_coding
8663                      protein_coding
8664                      protein_coding
8665                      protein_coding
8666                      protein_coding
8667                      protein_coding
8668                      protein_coding
8669                      protein_coding
8670                      protein_coding
8671                      protein_coding
8672                             lincRNA
8673                             lincRNA
8674                             lincRNA
8675                      protein_coding
8676                      protein_coding
8677                      protein_coding
8678                      protein_coding
8679                      protein_coding
8680                      protein_coding
8681                      protein_coding
8682                      protein_coding
8683                      protein_coding
8684                      protein_coding
8685                      protein_coding
8686                      protein_coding
8687                      protein_coding
8688                      protein_coding
8689                      protein_coding
8690                      protein_coding
8691                      protein_coding
8692                      protein_coding
8693                      protein_coding
8694                      protein_coding
8695                      protein_coding
8696                      protein_coding
8697                      protein_coding
8698                      protein_coding
8699                      protein_coding
8700                      protein_coding
8701                      protein_coding
8702                      protein_coding
8703                      protein_coding
8704                      protein_coding
8705                      protein_coding
8706                      protein_coding
8707                      protein_coding
8708                      protein_coding
8709                      protein_coding
8710                      protein_coding
8711                      protein_coding
8712                      protein_coding
8713                      protein_coding
8714                      protein_coding
8715                      protein_coding
8716                      protein_coding
8717                      protein_coding
8718                      protein_coding
8719                      protein_coding
8720                      protein_coding
8721                      protein_coding
8722                      protein_coding
8723                      protein_coding
8724                      protein_coding
8725                      protein_coding
8726                      protein_coding
8727                      protein_coding
8728                      protein_coding
8729                      protein_coding
8730                      protein_coding
8731                      protein_coding
8732                      protein_coding
8733                      protein_coding
8734                      protein_coding
8735                      protein_coding
8736                      protein_coding
8737                      protein_coding
8738                      protein_coding
8739                      protein_coding
8740                      protein_coding
8741                      protein_coding
8742                      protein_coding
8743                      protein_coding
8744                      protein_coding
8745                      protein_coding
8746                      protein_coding
8747                      protein_coding
8748                      protein_coding
8749                      protein_coding
8750                      protein_coding
8751                      protein_coding
8752                      protein_coding
8753                      protein_coding
8754                      protein_coding
8755                      protein_coding
8756                      protein_coding
8757                      protein_coding
8758                      protein_coding
8759                      protein_coding
8760                      protein_coding
8761                      protein_coding
8762                      protein_coding
8763                      protein_coding
8764                      protein_coding
8765                      protein_coding
8766                      protein_coding
8767                      protein_coding
8768                      protein_coding
8769                      protein_coding
8770                      protein_coding
8771                      protein_coding
8772                      protein_coding
8773                      protein_coding
8774                      protein_coding
8775                      protein_coding
8776                      protein_coding
8777                      protein_coding
8778                      protein_coding
8779                      protein_coding
8780                      protein_coding
8781                      protein_coding
8782                      protein_coding
8783                      protein_coding
8784                      protein_coding
8785                      protein_coding
8786                      protein_coding
8787                      protein_coding
8788                      protein_coding
8789                      protein_coding
8790                      protein_coding
8791                      protein_coding
8792                      protein_coding
8793                      protein_coding
8794                      protein_coding
8795                      protein_coding
8796                      protein_coding
8797                      protein_coding
8798                      protein_coding
8799                      protein_coding
8800                      protein_coding
8801                      protein_coding
8802                      protein_coding
8803                      protein_coding
8804                      protein_coding
8805                      protein_coding
8806                      protein_coding
8807                      protein_coding
8808                      protein_coding
8809                      protein_coding
8810                      protein_coding
8811                      protein_coding
8812                      protein_coding
8813                      protein_coding
8814                      protein_coding
8815                      protein_coding
8816                      protein_coding
8817                      protein_coding
8818                      protein_coding
8819                      protein_coding
8820                      protein_coding
8821                      protein_coding
8822                      protein_coding
8823                      protein_coding
8824                      protein_coding
8825                      protein_coding
8826                      protein_coding
8827                      protein_coding
8828                      protein_coding
8829                      protein_coding
8830                      protein_coding
8831                      protein_coding
8832                      protein_coding
8833                      protein_coding
8834                      protein_coding
8835                      protein_coding
8836                      protein_coding
8837                      protein_coding
8838                      protein_coding
8839                      protein_coding
8840                      protein_coding
8841                      protein_coding
8842                      protein_coding
8843                      protein_coding
8844                      protein_coding
8845                      protein_coding
8846                      protein_coding
8847                      protein_coding
8848                      protein_coding
8849                      protein_coding
8850                      protein_coding
8851                      protein_coding
8852                      protein_coding
8853                      protein_coding
8854                      protein_coding
8855                      protein_coding
8856                      protein_coding
8857                      protein_coding
8858                      protein_coding
8859                      protein_coding
8860                      protein_coding
8861                      protein_coding
8862                      protein_coding
8863                      protein_coding
8864                      protein_coding
8865                      protein_coding
8866                      protein_coding
8867                      protein_coding
8868                      protein_coding
8869                      protein_coding
8870                      protein_coding
8871                      protein_coding
8872                      protein_coding
8873                      protein_coding
8874                      protein_coding
8875                      protein_coding
8876                      protein_coding
8877                      protein_coding
8878                      protein_coding
8879                      protein_coding
8880                      protein_coding
8881                      protein_coding
8882                      protein_coding
8883                      protein_coding
8884                      protein_coding
8885                      protein_coding
8886                      protein_coding
8887                      protein_coding
8888                      protein_coding
8889                      protein_coding
8890                      protein_coding
8891                      protein_coding
8892                      protein_coding
8893                      protein_coding
8894                      protein_coding
8895                      protein_coding
8896                      protein_coding
8897                      protein_coding
8898                      protein_coding
8899                      protein_coding
8900                      protein_coding
8901                      protein_coding
8902                      protein_coding
8903                      protein_coding
8904                      protein_coding
8905                      protein_coding
8906                      protein_coding
8907                      protein_coding
8908                      protein_coding
8909                      protein_coding
8910                      protein_coding
8911                      protein_coding
8912                      protein_coding
8913                      protein_coding
8914                      protein_coding
8915                      protein_coding
8916                      protein_coding
8917                      protein_coding
8918                      protein_coding
8919                      protein_coding
8920                      protein_coding
8921                      protein_coding
8922                      protein_coding
8923                      protein_coding
8924                      protein_coding
8925                      protein_coding
8926                      protein_coding
8927                      protein_coding
8928                      protein_coding
8929                      protein_coding
8930                      protein_coding
8931                      protein_coding
8932                      protein_coding
8933                      protein_coding
8934                      protein_coding
8935                      protein_coding
8936                      protein_coding
8937                      protein_coding
8938                      protein_coding
8939                      protein_coding
8940                      protein_coding
8941                      protein_coding
8942                      protein_coding
8943                      protein_coding
8944                      protein_coding
8945                      protein_coding
8946                      protein_coding
8947                      protein_coding
8948                      protein_coding
8949                      protein_coding
8950                      protein_coding
8951                      protein_coding
8952                      protein_coding
8953                      protein_coding
8954                      protein_coding
8955                      protein_coding
8956                      protein_coding
8957                      protein_coding
8958                      protein_coding
8959                      protein_coding
8960                      protein_coding
8961                      protein_coding
8962                      protein_coding
8963                      protein_coding
8964                      protein_coding
8965                      protein_coding
8966                      protein_coding
8967                      protein_coding
8968                      protein_coding
8969                      protein_coding
8970                      protein_coding
8971                      protein_coding
8972                      protein_coding
8973                      protein_coding
8974                      protein_coding
8975                      protein_coding
8976                      protein_coding
8977                      protein_coding
8978                      protein_coding
8979                      protein_coding
8980                      protein_coding
8981                      protein_coding
8982                      protein_coding
8983                      protein_coding
8984                      protein_coding
8985                      protein_coding
8986                      protein_coding
8987                      protein_coding
8988                      protein_coding
8989                      protein_coding
8990                      protein_coding
8991                      protein_coding
8992                      protein_coding
8993                      protein_coding
8994                      protein_coding
8995                      protein_coding
8996                      protein_coding
8997                      protein_coding
8998                      protein_coding
8999                      protein_coding
9000                      protein_coding
9001                      protein_coding
9002                      protein_coding
9003                      protein_coding
9004                      protein_coding
9005                      protein_coding
9006                      protein_coding
9007                      protein_coding
9008                      protein_coding
9009                      protein_coding
9010                      protein_coding
9011                      protein_coding
9012                      protein_coding
9013                      protein_coding
9014                      protein_coding
9015                      protein_coding
9016                      protein_coding
9017                      protein_coding
9018                      protein_coding
9019                      protein_coding
9020                      protein_coding
9021                      protein_coding
9022                      protein_coding
9023                      protein_coding
9024                      protein_coding
9025                      protein_coding
9026                      protein_coding
9027                      protein_coding
9028                      protein_coding
9029                      protein_coding
9030                      protein_coding
9031                      protein_coding
9032                      protein_coding
9033                      protein_coding
9034                      protein_coding
9035                      protein_coding
9036                      protein_coding
9037                      protein_coding
9038                      protein_coding
9039                      protein_coding
9040                      protein_coding
9041                      protein_coding
9042                      protein_coding
9043                      protein_coding
9044                      protein_coding
9045                      protein_coding
9046                      protein_coding
9047                      protein_coding
9048                      protein_coding
9049                      protein_coding
9050                      protein_coding
9051                      protein_coding
9052                      protein_coding
9053                      protein_coding
9054                      protein_coding
9055                      protein_coding
9056                      protein_coding
9057                      protein_coding
9058                      protein_coding
9059                      protein_coding
9060                      protein_coding
9061                      protein_coding
9062                      protein_coding
9063                      protein_coding
9064                      protein_coding
9065                      protein_coding
9066                      protein_coding
9067                      protein_coding
9068                      protein_coding
9069                      protein_coding
9070                      protein_coding
9071                      protein_coding
9072                      protein_coding
9073                      protein_coding
9074                      protein_coding
9075                      protein_coding
9076                      protein_coding
9077                      protein_coding
9078                      protein_coding
9079                      protein_coding
9080                      protein_coding
9081                      protein_coding
9082                      protein_coding
9083                      protein_coding
9084                      protein_coding
9085                      protein_coding
9086                      protein_coding
9087                      protein_coding
9088                      protein_coding
9089                      protein_coding
9090                      protein_coding
9091                      protein_coding
9092                      protein_coding
9093                      protein_coding
9094                      protein_coding
9095                      protein_coding
9096                      protein_coding
9097                      protein_coding
9098                      protein_coding
9099                      protein_coding
9100                      protein_coding
9101                      protein_coding
9102                      protein_coding
9103                      protein_coding
9104                      protein_coding
9105                      protein_coding
9106                      protein_coding
9107                      protein_coding
9108                      protein_coding
9109                      protein_coding
9110                      protein_coding
9111                      protein_coding
9112                      protein_coding
9113                      protein_coding
9114                      protein_coding
9115                      protein_coding
9116                      protein_coding
9117                      protein_coding
9118                      protein_coding
9119                      protein_coding
9120                      protein_coding
9121                      protein_coding
9122                      protein_coding
9123                      protein_coding
9124                      protein_coding
9125                      protein_coding
9126                      protein_coding
9127                      protein_coding
9128                           antisense
9129                             lincRNA
9130                             lincRNA
9131                             lincRNA
9132                             lincRNA
9133                             lincRNA
9134                             lincRNA
9135                             lincRNA
9136                             lincRNA
9137                             lincRNA
9138                             lincRNA
9139                             lincRNA
9140                             lincRNA
9141                             lincRNA
9142                             lincRNA
9143                             lincRNA
9144                             lincRNA
9145                             lincRNA
9146                             lincRNA
9147                             lincRNA
9148                             lincRNA
9149                             lincRNA
9150                             lincRNA
9151                             lincRNA
9152                             lincRNA
9153                             lincRNA
9154                             lincRNA
9155                             lincRNA
9156                             lincRNA
9157                             lincRNA
9158                      protein_coding
9159                      protein_coding
9160                      protein_coding
9161                      protein_coding
9162                      protein_coding
9163                      protein_coding
9164                      protein_coding
9165                      protein_coding
9166                      protein_coding
9167                      protein_coding
9168                      protein_coding
9169                      protein_coding
9170                      protein_coding
9171                      protein_coding
9172                      protein_coding
9173                      protein_coding
9174                      protein_coding
9175                      protein_coding
9176                      protein_coding
9177                processed_pseudogene
9178                      protein_coding
9179                      protein_coding
9180                      protein_coding
9181                      protein_coding
9182                      protein_coding
9183                      protein_coding
9184                      protein_coding
9185                      protein_coding
9186                      protein_coding
9187                      protein_coding
9188                      protein_coding
9189                      protein_coding
9190                      protein_coding
9191                      protein_coding
9192                      protein_coding
9193                      protein_coding
9194                      protein_coding
9195                      protein_coding
9196                      protein_coding
9197                      protein_coding
9198                      protein_coding
9199                      protein_coding
9200                      protein_coding
9201                      protein_coding
9202                      protein_coding
9203                      protein_coding
9204                      protein_coding
9205                      protein_coding
9206                      protein_coding
9207                      protein_coding
9208                      protein_coding
9209                      protein_coding
9210                      protein_coding
9211                      protein_coding
9212                      protein_coding
9213                      protein_coding
9214                      protein_coding
9215                                 TEC
9216                      protein_coding
9217                      protein_coding
9218                      protein_coding
9219                      protein_coding
9220                      protein_coding
9221                      protein_coding
9222                             lincRNA
9223                             lincRNA
9224                processed_pseudogene
9225                      protein_coding
9226                      protein_coding
9227                      protein_coding
9228                      protein_coding
9229                      protein_coding
9230                      protein_coding
9231                      protein_coding
9232                      protein_coding
9233                      protein_coding
9234                      protein_coding
9235                      protein_coding
9236                      protein_coding
9237                      protein_coding
9238                      protein_coding
9239                      protein_coding
9240                      protein_coding
9241                      protein_coding
9242                      protein_coding
9243                      protein_coding
9244                      protein_coding
9245                      protein_coding
9246                      protein_coding
9247                      protein_coding
9248                      protein_coding
9249                      protein_coding
9250                      protein_coding
9251                      protein_coding
9252                      protein_coding
9253                      protein_coding
9254                      protein_coding
9255                      protein_coding
9256                      protein_coding
9257                      protein_coding
9258                      protein_coding
9259                      protein_coding
9260                      protein_coding
9261                      protein_coding
9262                      protein_coding
9263                      protein_coding
9264                      protein_coding
9265                      protein_coding
9266                      protein_coding
9267                      protein_coding
9268                      protein_coding
9269                      protein_coding
9270                      protein_coding
9271                      protein_coding
9272                      protein_coding
9273                      protein_coding
9274                      protein_coding
9275                      protein_coding
9276                      protein_coding
9277                      protein_coding
9278                      protein_coding
9279                      protein_coding
9280                      protein_coding
9281                      protein_coding
9282                      protein_coding
9283                      protein_coding
9284                      protein_coding
9285                      protein_coding
9286                      protein_coding
9287                      protein_coding
9288                      protein_coding
9289                      protein_coding
9290                      protein_coding
9291                      protein_coding
9292                      protein_coding
9293                      protein_coding
9294                      protein_coding
9295                      protein_coding
9296                      protein_coding
9297                      protein_coding
9298                      protein_coding
9299                      protein_coding
9300                      protein_coding
9301                      protein_coding
9302                      protein_coding
9303                      protein_coding
9304                      protein_coding
9305                      protein_coding
9306                      protein_coding
9307                      protein_coding
9308                      protein_coding
9309                      protein_coding
9310                      protein_coding
9311                      protein_coding
9312                      protein_coding
9313                      protein_coding
9314                      protein_coding
9315                      protein_coding
9316                      protein_coding
9317                      protein_coding
9318                      protein_coding
9319                      protein_coding
9320                      protein_coding
9321                      protein_coding
9322                      protein_coding
9323                      protein_coding
9324                      protein_coding
9325                      protein_coding
9326                      protein_coding
9327                      protein_coding
9328                      protein_coding
9329                      protein_coding
9330                      protein_coding
9331                      protein_coding
9332                      protein_coding
9333                      protein_coding
9334                      protein_coding
9335                      protein_coding
9336                      protein_coding
9337                      protein_coding
9338                      protein_coding
9339                      protein_coding
9340                      protein_coding
9341                      protein_coding
9342                      protein_coding
9343                      protein_coding
9344                      protein_coding
9345                      protein_coding
9346                      protein_coding
9347                      protein_coding
9348                      protein_coding
9349                      protein_coding
9350                      protein_coding
9351                      protein_coding
9352                      protein_coding
9353                      protein_coding
9354                      protein_coding
9355                      protein_coding
9356                      protein_coding
9357                      protein_coding
9358                      protein_coding
9359                      protein_coding
9360                      protein_coding
9361                      protein_coding
9362                      protein_coding
9363                      protein_coding
9364                      protein_coding
9365                      protein_coding
9366                      protein_coding
9367                      protein_coding
9368                      protein_coding
9369                      protein_coding
9370                      protein_coding
9371                      protein_coding
9372                      protein_coding
9373                      protein_coding
9374                      protein_coding
9375                      protein_coding
9376                      protein_coding
9377                      protein_coding
9378                      protein_coding
9379                      protein_coding
9380                      protein_coding
9381                      protein_coding
9382                      protein_coding
9383                      protein_coding
9384                      protein_coding
9385                      protein_coding
9386                      protein_coding
9387                      protein_coding
9388                      protein_coding
9389                      protein_coding
9390                      protein_coding
9391                             lincRNA
9392                             lincRNA
9393                             lincRNA
9394                           antisense
9395                           antisense
9396                           antisense
9397                processed_pseudogene
9398                             lincRNA
9399                             lincRNA
9400                             lincRNA
9401                             lincRNA
9402                processed_pseudogene
9403              unprocessed_pseudogene
9404              unprocessed_pseudogene
9405                      protein_coding
9406                      protein_coding
9407                      protein_coding
9408                      protein_coding
9409                      protein_coding
9410                      protein_coding
9411                      protein_coding
9412                      protein_coding
9413                      protein_coding
9414                      protein_coding
9415                      protein_coding
9416                      protein_coding
9417                      protein_coding
9418                      protein_coding
9419                      protein_coding
9420                      protein_coding
9421                      protein_coding
9422                      protein_coding
9423                      protein_coding
9424                      protein_coding
9425                      protein_coding
9426                      protein_coding
9427                      protein_coding
9428                      protein_coding
9429                      protein_coding
9430                      protein_coding
9431                      protein_coding
9432                      protein_coding
9433                      protein_coding
9434                      protein_coding
9435                      protein_coding
9436                      protein_coding
9437                      protein_coding
9438                      protein_coding
9439                      protein_coding
9440                      protein_coding
9441                      protein_coding
9442                      protein_coding
9443                      protein_coding
9444                      protein_coding
9445                      protein_coding
9446                      protein_coding
9447                      protein_coding
9448                      protein_coding
9449                      protein_coding
9450                      protein_coding
9451                      protein_coding
9452                      protein_coding
9453                      protein_coding
9454                      protein_coding
9455                      protein_coding
9456                      protein_coding
9457                      protein_coding
9458                      protein_coding
9459                      protein_coding
9460                      protein_coding
9461                      protein_coding
9462                      protein_coding
9463                      protein_coding
9464                      protein_coding
9465                      protein_coding
9466                      protein_coding
9467                      protein_coding
9468                      protein_coding
9469                      protein_coding
9470                      protein_coding
9471                      protein_coding
9472                      protein_coding
9473                      protein_coding
9474                      protein_coding
9475                      protein_coding
9476                      protein_coding
9477                      protein_coding
9478                      protein_coding
9479                      protein_coding
9480                      protein_coding
9481                      protein_coding
9482                      protein_coding
9483                      protein_coding
9484                      protein_coding
9485                      protein_coding
9486                      protein_coding
9487                      protein_coding
9488                      protein_coding
9489                           IG_V_gene
9490                           IG_V_gene
9491                      protein_coding
9492                      protein_coding
9493                      protein_coding
9494                      protein_coding
9495                      protein_coding
9496                      protein_coding
9497                      protein_coding
9498                      protein_coding
9499                      protein_coding
9500                      protein_coding
9501                      protein_coding
9502                      protein_coding
9503                      protein_coding
9504                      protein_coding
9505                      protein_coding
9506                      protein_coding
9507                      protein_coding
9508                      protein_coding
9509                      protein_coding
9510                      protein_coding
9511                      protein_coding
9512                      protein_coding
9513                      protein_coding
9514                      protein_coding
9515                      protein_coding
9516                      protein_coding
9517                      protein_coding
9518                      protein_coding
9519                      protein_coding
9520                      protein_coding
9521                      protein_coding
9522                      protein_coding
9523                      protein_coding
9524                      protein_coding
9525                      protein_coding
9526                      protein_coding
9527                      protein_coding
9528                      protein_coding
9529                      protein_coding
9530                      protein_coding
9531                      protein_coding
9532                      protein_coding
9533                      protein_coding
9534                      protein_coding
9535                      protein_coding
9536                      protein_coding
9537                      protein_coding
9538                      protein_coding
9539                      protein_coding
9540                      protein_coding
9541                      protein_coding
9542                      protein_coding
9543                      protein_coding
9544                      protein_coding
9545                      protein_coding
9546                      protein_coding
9547                      protein_coding
9548                      protein_coding
9549                      protein_coding
9550                      protein_coding
9551                      protein_coding
9552                      protein_coding
9553                      protein_coding
9554                      protein_coding
9555                      protein_coding
9556                      protein_coding
9557                      protein_coding
9558                      protein_coding
9559                      protein_coding
9560                      protein_coding
9561                      protein_coding
9562                      protein_coding
9563                      protein_coding
9564                      protein_coding
9565                      protein_coding
9566                      protein_coding
9567                      protein_coding
9568                      protein_coding
9569                      protein_coding
9570                      protein_coding
9571                      protein_coding
9572                      protein_coding
9573                      protein_coding
9574                      protein_coding
9575                      protein_coding
9576                      protein_coding
9577                      protein_coding
9578                      protein_coding
9579                      protein_coding
9580                      protein_coding
9581                      protein_coding
9582                      protein_coding
9583                      protein_coding
9584                      protein_coding
9585                      protein_coding
9586                      protein_coding
9587                      protein_coding
9588                      protein_coding
9589                      protein_coding
9590                      protein_coding
9591                      protein_coding
9592                      protein_coding
9593                      protein_coding
9594                      protein_coding
9595                      protein_coding
9596                      protein_coding
9597                      protein_coding
9598                      protein_coding
9599                      protein_coding
9600                      protein_coding
9601                      protein_coding
9602                      protein_coding
9603                      protein_coding
9604                      protein_coding
9605                      protein_coding
9606                      protein_coding
9607                      protein_coding
9608                      protein_coding
9609                      protein_coding
9610                      protein_coding
9611                      protein_coding
9612                      protein_coding
9613                      protein_coding
9614                      protein_coding
9615                      protein_coding
9616                      protein_coding
9617                      protein_coding
9618                      protein_coding
9619                      protein_coding
9620                      protein_coding
9621                      protein_coding
9622                      protein_coding
9623                      protein_coding
9624                      protein_coding
9625                      protein_coding
9626                      protein_coding
9627                      protein_coding
9628                      protein_coding
9629                      protein_coding
9630                      protein_coding
9631                      protein_coding
9632                      protein_coding
9633                      protein_coding
9634                      protein_coding
9635                      protein_coding
9636                      protein_coding
9637                      protein_coding
9638                      protein_coding
9639                      protein_coding
9640                      protein_coding
9641                      protein_coding
9642                      protein_coding
9643                      protein_coding
9644                      protein_coding
9645                      protein_coding
9646                      protein_coding
9647                      protein_coding
9648                      protein_coding
9649                      protein_coding
9650                      protein_coding
9651                      protein_coding
9652                      protein_coding
9653                      protein_coding
9654                      protein_coding
9655                      protein_coding
9656                      protein_coding
9657                      protein_coding
9658                      protein_coding
9659                      protein_coding
9660                      protein_coding
9661                      protein_coding
9662                      protein_coding
9663                      protein_coding
9664                      protein_coding
9665                      protein_coding
9666                      protein_coding
9667                      protein_coding
9668                      protein_coding
9669                      protein_coding
9670                      protein_coding
9671                      protein_coding
9672                      protein_coding
9673                      protein_coding
9674                      protein_coding
9675                      protein_coding
9676                      protein_coding
9677                      protein_coding
9678                      protein_coding
9679                      protein_coding
9680                      protein_coding
9681                      protein_coding
9682                      protein_coding
9683                      protein_coding
9684                      protein_coding
9685                      protein_coding
9686                      protein_coding
9687                      protein_coding
9688                      protein_coding
9689                      protein_coding
9690                      protein_coding
9691                      protein_coding
9692                      protein_coding
9693                      protein_coding
9694                      protein_coding
9695                      protein_coding
9696                      protein_coding
9697                      protein_coding
9698                      protein_coding
9699                      protein_coding
9700                      protein_coding
9701                      protein_coding
9702                      protein_coding
9703                      protein_coding
9704                      protein_coding
9705                      protein_coding
9706                      protein_coding
9707                      protein_coding
9708                      protein_coding
9709                      protein_coding
9710                      protein_coding
9711                      protein_coding
9712                      protein_coding
9713                      protein_coding
9714                      protein_coding
9715                      protein_coding
9716                      protein_coding
9717                      protein_coding
9718                      protein_coding
9719                      protein_coding
9720                      protein_coding
9721                      protein_coding
9722                      protein_coding
9723                      protein_coding
9724                      protein_coding
9725                      protein_coding
9726                      protein_coding
9727                      protein_coding
9728                      protein_coding
9729                      protein_coding
9730                      protein_coding
9731                      protein_coding
9732                      protein_coding
9733                      protein_coding
9734                      protein_coding
9735                      protein_coding
9736                      protein_coding
9737                      protein_coding
9738                      protein_coding
9739                      protein_coding
9740                      protein_coding
9741                      protein_coding
9742                      protein_coding
9743                      protein_coding
9744                      protein_coding
9745                      protein_coding
9746                      protein_coding
9747                      protein_coding
9748                      protein_coding
9749                      protein_coding
9750                      protein_coding
9751                      protein_coding
9752                      protein_coding
9753                      protein_coding
9754                      protein_coding
9755                      protein_coding
9756                      protein_coding
9757                      protein_coding
9758                      protein_coding
9759                      protein_coding
9760                      protein_coding
9761                      protein_coding
9762                      protein_coding
9763                      protein_coding
9764                      protein_coding
9765                      protein_coding
9766                      protein_coding
9767                      protein_coding
9768                      protein_coding
9769                      protein_coding
9770                      protein_coding
9771                      protein_coding
9772                      protein_coding
9773                      protein_coding
9774                      protein_coding
9775                      protein_coding
9776                      protein_coding
9777                      protein_coding
9778                      protein_coding
9779                      protein_coding
9780                      protein_coding
9781                      protein_coding
9782                      protein_coding
9783                      protein_coding
9784                      protein_coding
9785                      protein_coding
9786                      protein_coding
9787                      protein_coding
9788                      protein_coding
9789                      protein_coding
9790                      protein_coding
9791                      protein_coding
9792                      protein_coding
9793                      protein_coding
9794                      protein_coding
9795                      protein_coding
9796                      protein_coding
9797                processed_pseudogene
9798                      protein_coding
9799                      protein_coding
9800                      protein_coding
9801                      protein_coding
9802                      protein_coding
9803                      protein_coding
9804                      protein_coding
9805                      protein_coding
9806                      protein_coding
9807                      protein_coding
9808                      protein_coding
9809                      protein_coding
9810                      protein_coding
9811                      protein_coding
9812                      protein_coding
9813                      protein_coding
9814                      protein_coding
9815                      protein_coding
9816                      protein_coding
9817                      protein_coding
9818                      protein_coding
9819                      protein_coding
9820                      protein_coding
9821                      protein_coding
9822                      protein_coding
9823                      protein_coding
9824                      protein_coding
9825                      protein_coding
9826                      protein_coding
9827                      protein_coding
9828                      protein_coding
9829                      protein_coding
9830                      protein_coding
9831                      protein_coding
9832                      protein_coding
9833                      protein_coding
9834                      protein_coding
9835                      protein_coding
9836                      protein_coding
9837                      protein_coding
9838                      protein_coding
9839                      protein_coding
9840                      protein_coding
9841                      protein_coding
9842                      protein_coding
9843                      protein_coding
9844                      protein_coding
9845                      protein_coding
9846                      protein_coding
9847                      protein_coding
9848                      protein_coding
9849                      protein_coding
9850                      protein_coding
9851                      protein_coding
9852                      protein_coding
9853                      protein_coding
9854                      protein_coding
9855                      protein_coding
9856                      protein_coding
9857                      protein_coding
9858                      protein_coding
9859                      protein_coding
9860                      protein_coding
9861                      protein_coding
9862                      protein_coding
9863                      protein_coding
9864                      protein_coding
9865                      protein_coding
9866                      protein_coding
9867                      protein_coding
9868                      protein_coding
9869                      protein_coding
9870                      protein_coding
9871                      protein_coding
9872                      protein_coding
9873                      protein_coding
9874                      protein_coding
9875                      protein_coding
9876                      protein_coding
9877                      protein_coding
9878                      protein_coding
9879                      protein_coding
9880                      protein_coding
9881                      protein_coding
9882                      protein_coding
9883                      protein_coding
9884                      protein_coding
9885                      protein_coding
9886                      protein_coding
9887                      protein_coding
9888                      protein_coding
9889                      protein_coding
9890                      protein_coding
9891                      protein_coding
9892                      protein_coding
9893                      protein_coding
9894                      protein_coding
9895                      protein_coding
9896                      protein_coding
9897                      protein_coding
9898                      protein_coding
9899                      protein_coding
9900                      protein_coding
9901                      protein_coding
9902                      protein_coding
9903                      protein_coding
9904                      protein_coding
9905                      protein_coding
9906                      protein_coding
9907                      protein_coding
9908                      protein_coding
9909                      protein_coding
9910                      protein_coding
9911                      protein_coding
9912                      protein_coding
9913                      protein_coding
9914                      protein_coding
9915                processed_pseudogene
9916                      protein_coding
9917                      protein_coding
9918                      protein_coding
9919                      protein_coding
9920                      protein_coding
9921                      protein_coding
9922                      protein_coding
9923                      protein_coding
9924                      protein_coding
9925                      protein_coding
9926                      protein_coding
9927                      protein_coding
9928                      protein_coding
9929                      protein_coding
9930                      protein_coding
9931                      protein_coding
9932                      protein_coding
9933                      protein_coding
9934                      protein_coding
9935                      protein_coding
9936                      protein_coding
9937                      protein_coding
9938                      protein_coding
9939                      protein_coding
9940                      protein_coding
9941                      protein_coding
9942                      protein_coding
9943                      protein_coding
9944                      protein_coding
9945                      protein_coding
9946                      protein_coding
9947                      protein_coding
9948                      protein_coding
9949                             lincRNA
9950                             lincRNA
9951                      protein_coding
9952                             lincRNA
9953                                 TEC
9954              unprocessed_pseudogene
9955              unprocessed_pseudogene
9956              unprocessed_pseudogene
9957              unprocessed_pseudogene
9958              unprocessed_pseudogene
9959              unprocessed_pseudogene
9960              unprocessed_pseudogene
9961              unprocessed_pseudogene
9962              unprocessed_pseudogene
9963              unprocessed_pseudogene
9964                           antisense
9965                           antisense
9966                                 TEC
9967                             lincRNA
9968                             lincRNA
9969                processed_pseudogene
9970                             lincRNA
9971                             lincRNA
9972                             lincRNA
9973                             lincRNA
9974                      protein_coding
9975                      protein_coding
9976                      protein_coding
9977                      protein_coding
9978                      protein_coding
9979                      protein_coding
9980                      protein_coding
9981                      protein_coding
9982                      protein_coding
9983                      protein_coding
9984                      protein_coding
9985                      protein_coding
9986                      protein_coding
9987                      protein_coding
9988                      protein_coding
9989                      protein_coding
9990                      protein_coding
9991                      protein_coding
9992                      protein_coding
9993                      protein_coding
9994                      protein_coding
9995                      protein_coding
9996                      protein_coding
9997                      protein_coding
9998                      protein_coding
9999                             lincRNA
10000                            lincRNA
10001                            lincRNA
10002                            lincRNA
10003                            lincRNA
10004                            lincRNA
10005                            lincRNA
10006                            lincRNA
10007                            lincRNA
10008                            lincRNA
10009                            lincRNA
10010                            lincRNA
10011                            lincRNA
10012                            lincRNA
10013                            lincRNA
10014                            lincRNA
10015                            lincRNA
10016                            lincRNA
10017                            lincRNA
10018                            lincRNA
10019                            lincRNA
10020               processed_transcript
10021               processed_transcript
10022               processed_transcript
10023               processed_transcript
10024               processed_transcript
10025               processed_transcript
10026                            lincRNA
10027                            lincRNA
10028                            lincRNA
10029                            lincRNA
10030                            lincRNA
10031                            lincRNA
10032                            lincRNA
10033                            lincRNA
10034                            lincRNA
10035                            lincRNA
10036                            lincRNA
10037                            lincRNA
10038                            lincRNA
10039                            lincRNA
10040                            lincRNA
10041                            lincRNA
10042                            lincRNA
10043                            lincRNA
10044                            lincRNA
10045                            lincRNA
10046                            lincRNA
10047                     protein_coding
10048                     protein_coding
10049                     protein_coding
10050                     protein_coding
10051                     protein_coding
10052                     protein_coding
10053                     protein_coding
10054                     protein_coding
10055                     protein_coding
10056                     protein_coding
10057                     protein_coding
10058                     protein_coding
10059                     protein_coding
10060                     protein_coding
10061                     protein_coding
10062                     protein_coding
10063                     protein_coding
10064                     protein_coding
10065               processed_pseudogene
10066                            lincRNA
10067                            lincRNA
10068                            lincRNA
10069                            lincRNA
10070                            lincRNA
10071                            lincRNA
10072                            lincRNA
10073                            lincRNA
10074                            lincRNA
10075                            lincRNA
10076                            lincRNA
10077                            lincRNA
10078                            lincRNA
10079                            lincRNA
10080                            lincRNA
10081                            lincRNA
10082                            lincRNA
10083                            lincRNA
10084                            lincRNA
10085                            lincRNA
10086                            lincRNA
10087                            lincRNA
10088                            lincRNA
10089                            lincRNA
10090                            lincRNA
10091                            lincRNA
10092                            lincRNA
10093                            lincRNA
10094               processed_pseudogene
10095                            lincRNA
10096                            lincRNA
10097               processed_pseudogene
10098                     protein_coding
10099                     protein_coding
10100                     protein_coding
10101                     protein_coding
10102                     protein_coding
10103               processed_pseudogene
10104               processed_pseudogene
10105                     protein_coding
10106                     protein_coding
10107                     protein_coding
10108                     protein_coding
10109                     protein_coding
10110                     protein_coding
10111                     protein_coding
10112                     protein_coding
10113                     protein_coding
10114                     protein_coding
10115                     protein_coding
10116                     protein_coding
10117               processed_pseudogene
10118                     protein_coding
10119                     protein_coding
10120                     protein_coding
10121                     protein_coding
10122                     protein_coding
10123                     protein_coding
10124                     protein_coding
10125                     protein_coding
10126                     protein_coding
10127                     protein_coding
10128                     protein_coding
10129                     protein_coding
10130                     protein_coding
10131                     protein_coding
10132                     protein_coding
10133                     protein_coding
10134                     protein_coding
10135                     protein_coding
10136                     protein_coding
10137                     protein_coding
10138                     protein_coding
10139                     protein_coding
10140                     protein_coding
10141                     protein_coding
10142                     protein_coding
10143                     protein_coding
10144                     protein_coding
10145                     protein_coding
10146                     protein_coding
10147                     protein_coding
10148                     protein_coding
10149                     protein_coding
10150                     protein_coding
10151                            lincRNA
10152                            lincRNA
10153                            lincRNA
10154               processed_pseudogene
10155             unprocessed_pseudogene
10156             unprocessed_pseudogene
10157             unprocessed_pseudogene
10158                            lincRNA
10159                            lincRNA
10160                     protein_coding
10161                     protein_coding
10162                     protein_coding
10163                     protein_coding
10164                     protein_coding
10165                     protein_coding
10166                     protein_coding
10167                     protein_coding
10168                     protein_coding
10169                     protein_coding
10170                     protein_coding
10171                     protein_coding
10172                     protein_coding
10173                     protein_coding
10174                     protein_coding
10175                     protein_coding
10176                     protein_coding
10177                     protein_coding
10178                     protein_coding
10179                     protein_coding
10180                     protein_coding
10181                     protein_coding
10182                     protein_coding
10183                     protein_coding
10184                     protein_coding
10185                     protein_coding
10186                     protein_coding
10187                     protein_coding
10188                     protein_coding
10189                     protein_coding
10190                     protein_coding
10191               processed_pseudogene
10192               processed_pseudogene
10193               processed_pseudogene
10194                     protein_coding
10195                     protein_coding
10196                     protein_coding
10197                     protein_coding
10198                     protein_coding
10199                     protein_coding
10200                     protein_coding
10201                     protein_coding
10202                     protein_coding
10203                     protein_coding
10204                     protein_coding
10205                     protein_coding
10206                     protein_coding
10207                     protein_coding
10208                     protein_coding
10209                     protein_coding
10210                     protein_coding
10211                     protein_coding
10212                     protein_coding
10213                     protein_coding
10214                     protein_coding
10215                     protein_coding
10216                     protein_coding
10217                     protein_coding
10218                     protein_coding
10219                     protein_coding
10220                     protein_coding
10221                     protein_coding
10222                     protein_coding
10223                     protein_coding
10224                     protein_coding
10225                     protein_coding
10226                     protein_coding
10227               processed_pseudogene
10228                     protein_coding
10229                     protein_coding
10230                     protein_coding
10231                     protein_coding
10232                     protein_coding
10233                     protein_coding
10234                     protein_coding
10235                     protein_coding
10236                     protein_coding
10237                     protein_coding
10238                     protein_coding
10239                     protein_coding
10240                     protein_coding
10241                     protein_coding
10242                     protein_coding
10243                     protein_coding
10244                     protein_coding
10245                     protein_coding
10246                     protein_coding
10247                     protein_coding
10248                     protein_coding
10249                     protein_coding
10250                     protein_coding
10251                     protein_coding
10252                            lincRNA
10253                            lincRNA
10254               processed_pseudogene
10255                            lincRNA
10256             unprocessed_pseudogene
10257                     protein_coding
10258                     protein_coding
10259                     protein_coding
10260                     protein_coding
10261                     protein_coding
10262                     protein_coding
10263                     protein_coding
10264                     protein_coding
10265                     protein_coding
10266                     protein_coding
10267                     protein_coding
10268                     protein_coding
10269                     protein_coding
10270                     protein_coding
10271                     protein_coding
10272                     sense_intronic
10273                     sense_intronic
10274                     protein_coding
10275                     protein_coding
10276                     protein_coding
10277                     protein_coding
10278                     protein_coding
10279                     protein_coding
10280                     protein_coding
10281                     protein_coding
10282                     protein_coding
10283                     protein_coding
10284                     protein_coding
10285                     protein_coding
10286                     protein_coding
10287                     protein_coding
10288                     protein_coding
10289                     protein_coding
10290                     protein_coding
10291                     protein_coding
10292                     protein_coding
10293                     protein_coding
10294                     protein_coding
10295                     protein_coding
10296                     protein_coding
10297                     protein_coding
10298                     protein_coding
10299                     protein_coding
10300                     protein_coding
10301                     protein_coding
10302                     protein_coding
10303                     protein_coding
10304                     protein_coding
10305                     protein_coding
10306                     protein_coding
10307                     protein_coding
10308                     protein_coding
10309                     protein_coding
10310                     protein_coding
10311                     protein_coding
10312                     protein_coding
10313                     protein_coding
10314                     protein_coding
10315                     protein_coding
10316                     protein_coding
10317                     protein_coding
10318                     protein_coding
10319                     protein_coding
10320                     protein_coding
10321                     protein_coding
10322                     protein_coding
10323                     protein_coding
10324                     protein_coding
10325                     protein_coding
10326                     protein_coding
10327                     protein_coding
10328                     protein_coding
10329                     protein_coding
10330                     protein_coding
10331                     protein_coding
10332                     protein_coding
10333                     protein_coding
10334                     protein_coding
10335                     protein_coding
10336                     protein_coding
10337                     protein_coding
10338                     protein_coding
10339                     protein_coding
10340                     protein_coding
10341                     protein_coding
10342                     protein_coding
10343                     protein_coding
10344               processed_pseudogene
10345                            lincRNA
10346                            lincRNA
10347                            lincRNA
10348                            lincRNA
10349                            lincRNA
10350                            lincRNA
10351                            lincRNA
10352                            lincRNA
10353                            lincRNA
10354                            lincRNA
10355                            lincRNA
10356                            lincRNA
10357                            lincRNA
10358                            lincRNA
10359                            lincRNA
10360                            lincRNA
10361                            lincRNA
10362                            lincRNA
10363               processed_pseudogene
10364               processed_pseudogene
10365                     sense_intronic
10366                     sense_intronic
10367               processed_pseudogene
10368               processed_pseudogene
10369               processed_pseudogene
10370                            lincRNA
10371                            lincRNA
10372                            lincRNA
10373                            lincRNA
10374                            lincRNA
10375                            lincRNA
10376                            lincRNA
10377                            lincRNA
10378                            lincRNA
10379               processed_pseudogene
10380                          antisense
10381                          antisense
10382               processed_pseudogene
10383                          antisense
10384                          antisense
10385                          antisense
10386                          antisense
10387                            lincRNA
10388                     protein_coding
10389                     protein_coding
10390                     protein_coding
10391                     protein_coding
10392                     protein_coding
10393                     protein_coding
10394                     protein_coding
10395                     protein_coding
10396                     protein_coding
10397                     protein_coding
10398                     protein_coding
10399                     protein_coding
10400                     protein_coding
10401                     protein_coding
10402                     protein_coding
10403                     protein_coding
10404               processed_pseudogene
10405                     sense_intronic
10406                     sense_intronic
10407                     sense_intronic
10408                          antisense
10409                     protein_coding
10410                     protein_coding
10411                     protein_coding
10412                     protein_coding
10413                     protein_coding
10414                     protein_coding
10415                     protein_coding
10416                     protein_coding
10417                     protein_coding
10418                          antisense
10419                          antisense
10420                          antisense
10421             unprocessed_pseudogene
10422             unprocessed_pseudogene
10423             unprocessed_pseudogene
10424             unprocessed_pseudogene
10425             unprocessed_pseudogene
10426             unprocessed_pseudogene
10427             unprocessed_pseudogene
10428             unprocessed_pseudogene
10429             unprocessed_pseudogene
10430                     protein_coding
10431                     protein_coding
10432                     protein_coding
10433                     protein_coding
10434                     protein_coding
10435                     protein_coding
10436                     protein_coding
10437                     protein_coding
10438                     protein_coding
10439                     protein_coding
10440                     protein_coding
10441                     protein_coding
10442                     protein_coding
10443                     protein_coding
10444                     protein_coding
10445                     protein_coding
10446                     protein_coding
10447                     protein_coding
10448                     protein_coding
10449                     protein_coding
10450                     protein_coding
10451                     protein_coding
10452                     protein_coding
10453                     protein_coding
10454                     protein_coding
10455                     protein_coding
10456                     protein_coding
10457                     protein_coding
10458                     protein_coding
10459                     protein_coding
10460                     protein_coding
10461                     protein_coding
10462                     protein_coding
10463                     protein_coding
10464                     protein_coding
10465                     protein_coding
10466                     protein_coding
10467                     protein_coding
10468                     protein_coding
10469                     protein_coding
10470                     protein_coding
10471                     protein_coding
10472                     protein_coding
10473                     protein_coding
10474                     protein_coding
10475                     protein_coding
10476                     protein_coding
10477                     protein_coding
10478                     protein_coding
10479                     protein_coding
10480                     protein_coding
10481                     protein_coding
10482                     protein_coding
10483                     protein_coding
10484                     protein_coding
10485                     protein_coding
10486                     protein_coding
10487                     protein_coding
10488                     protein_coding
10489                     protein_coding
10490                     protein_coding
10491                     protein_coding
10492                     protein_coding
10493                     protein_coding
10494                     protein_coding
10495                     protein_coding
10496                     protein_coding
10497                     protein_coding
10498                     protein_coding
10499                     protein_coding
10500                     protein_coding
10501                     protein_coding
10502                     protein_coding
10503                     protein_coding
10504                     protein_coding
10505                     protein_coding
10506                     protein_coding
10507                     protein_coding
10508                     protein_coding
10509                     protein_coding
10510                     protein_coding
10511                     protein_coding
10512                     protein_coding
10513                     protein_coding
10514                     protein_coding
10515                     protein_coding
10516                     protein_coding
10517                     protein_coding
10518                     protein_coding
10519                     protein_coding
10520                     protein_coding
10521                     protein_coding
10522                     protein_coding
10523                     protein_coding
10524                     protein_coding
10525                     protein_coding
10526                     protein_coding
10527                     protein_coding
10528                     protein_coding
10529                     protein_coding
10530                     protein_coding
10531                     protein_coding
10532                     protein_coding
10533                     protein_coding
10534                     protein_coding
10535                     protein_coding
10536                     protein_coding
10537                     protein_coding
10538                     protein_coding
10539                            lincRNA
10540                            lincRNA
10541                     protein_coding
10542                     protein_coding
10543                     protein_coding
10544                     protein_coding
10545                     protein_coding
10546                     protein_coding
10547                     protein_coding
10548                     protein_coding
10549                     protein_coding
10550                     protein_coding
10551                     protein_coding
10552                     protein_coding
10553                     protein_coding
10554                     protein_coding
10555                     protein_coding
10556                     protein_coding
10557                     protein_coding
10558                     protein_coding
10559                     protein_coding
10560                     protein_coding
10561                     protein_coding
10562                     protein_coding
10563                     protein_coding
10564                     protein_coding
10565                     protein_coding
10566                     protein_coding
10567                     protein_coding
10568                            lincRNA
10569                            lincRNA
10570                            lincRNA
10571                            lincRNA
10572                            lincRNA
10573                            lincRNA
10574                            lincRNA
10575                            lincRNA
10576                            lincRNA
10577                            lincRNA
10578                            lincRNA
10579                            lincRNA
10580                     protein_coding
10581                     protein_coding
10582                     protein_coding
10583                     protein_coding
10584                     protein_coding
10585                     protein_coding
10586                     protein_coding
10587                     protein_coding
10588                     protein_coding
10589                     protein_coding
10590                     protein_coding
10591                     protein_coding
10592                     protein_coding
10593                     protein_coding
10594                     protein_coding
10595                     protein_coding
10596                     protein_coding
10597                     protein_coding
10598                     protein_coding
10599                     protein_coding
10600                     protein_coding
10601                     protein_coding
10602                     protein_coding
10603                     protein_coding
10604                     protein_coding
10605                     protein_coding
10606                     protein_coding
10607                     protein_coding
10608                     protein_coding
10609                     protein_coding
10610                     protein_coding
10611                     protein_coding
10612                     protein_coding
10613                     protein_coding
10614                     protein_coding
10615                     protein_coding
10616                     protein_coding
10617                     protein_coding
10618                     protein_coding
10619                     protein_coding
10620                     protein_coding
10621                     protein_coding
10622                     protein_coding
10623                     protein_coding
10624                     protein_coding
10625                     protein_coding
10626                     protein_coding
10627                     protein_coding
10628                     protein_coding
10629                     protein_coding
10630                     protein_coding
10631                     protein_coding
10632                     protein_coding
10633                     protein_coding
10634                     protein_coding
10635                     protein_coding
10636                     protein_coding
10637                     protein_coding
10638                     protein_coding
10639                     protein_coding
10640                     protein_coding
10641                     protein_coding
10642                     protein_coding
10643                     protein_coding
10644                     protein_coding
10645                     protein_coding
10646                     protein_coding
10647                     protein_coding
10648                     protein_coding
10649                     protein_coding
10650                     protein_coding
10651                     protein_coding
10652                     protein_coding
10653                     protein_coding
10654                     protein_coding
10655                            lincRNA
10656                            lincRNA
10657                            lincRNA
10658                            lincRNA
10659                            lincRNA
10660                            lincRNA
10661                            lincRNA
10662                            lincRNA
10663                            lincRNA
10664                            lincRNA
10665                            lincRNA
10666                            lincRNA
10667                            lincRNA
10668                            lincRNA
10669                            lincRNA
10670                            lincRNA
10671                            lincRNA
10672                            lincRNA
10673                            lincRNA
10674                            lincRNA
10675                            lincRNA
10676                            lincRNA
10677                            lincRNA
10678                            lincRNA
10679                            lincRNA
10680                            lincRNA
10681                     protein_coding
10682                     protein_coding
10683                     protein_coding
10684                     protein_coding
10685                     protein_coding
10686                     protein_coding
10687                     protein_coding
10688                     protein_coding
10689                     protein_coding
10690                     protein_coding
10691                     protein_coding
10692                     protein_coding
10693                     protein_coding
10694                     protein_coding
10695                     protein_coding
10696                     protein_coding
10697                     protein_coding
10698                     protein_coding
10699                     protein_coding
10700                     protein_coding
10701                     protein_coding
10702                     protein_coding
10703                     protein_coding
10704                     protein_coding
10705                     protein_coding
10706                     protein_coding
10707                          antisense
10708                          antisense
10709                            lincRNA
10710                            lincRNA
10711                            lincRNA
10712                     protein_coding
10713                     protein_coding
10714                     protein_coding
10715                     protein_coding
10716                     protein_coding
10717                            lincRNA
10718                            lincRNA
10719                            lincRNA
10720                            lincRNA
10721                            lincRNA
10722                            lincRNA
10723                            lincRNA
10724                                TEC
10725                            lincRNA
10726                            lincRNA
10727                            lincRNA
10728                            lincRNA
10729                            lincRNA
10730                            lincRNA
10731                            lincRNA
10732                            lincRNA
10733                            lincRNA
10734                            lincRNA
10735                            lincRNA
10736                            lincRNA
10737                            lincRNA
10738                            lincRNA
10739                            lincRNA
10740                            lincRNA
10741                            lincRNA
10742                            lincRNA
10743                            lincRNA
10744                            lincRNA
10745                            lincRNA
10746                            lincRNA
10747                            lincRNA
10748                            lincRNA
10749                            lincRNA
10750                            lincRNA
10751                            lincRNA
10752                            lincRNA
10753                            lincRNA
10754                            lincRNA
10755                            lincRNA
10756                            lincRNA
10757                            lincRNA
10758                            lincRNA
10759                            lincRNA
10760                            lincRNA
10761                            lincRNA
10762                            lincRNA
10763                            lincRNA
10764                            lincRNA
10765                            lincRNA
10766                            lincRNA
10767                            lincRNA
10768                            lincRNA
10769                            lincRNA
10770                            lincRNA
10771                            lincRNA
10772                            lincRNA
10773                            lincRNA
10774                            lincRNA
10775                            lincRNA
10776                            lincRNA
10777                            lincRNA
10778                            lincRNA
10779                            lincRNA
10780                            lincRNA
10781                            lincRNA
10782                            lincRNA
10783                            lincRNA
10784                            lincRNA
10785                            lincRNA
10786                            lincRNA
10787                            lincRNA
10788                            lincRNA
10789                            lincRNA
10790                            lincRNA
10791                            lincRNA
10792                            lincRNA
10793                            lincRNA
10794                            lincRNA
10795                            lincRNA
10796                            lincRNA
10797                            lincRNA
10798                            lincRNA
10799                            lincRNA
10800                            lincRNA
10801                            lincRNA
10802                            lincRNA
10803                            lincRNA
10804                            lincRNA
10805                            lincRNA
10806                            lincRNA
10807                            lincRNA
10808                            lincRNA
10809                            lincRNA
10810                            lincRNA
10811                            lincRNA
10812                            lincRNA
10813                            lincRNA
10814                            lincRNA
10815                            lincRNA
10816                            lincRNA
10817                            lincRNA
10818                            lincRNA
10819                            lincRNA
10820                            lincRNA
10821                            lincRNA
10822                            lincRNA
10823                            lincRNA
10824                            lincRNA
10825                            lincRNA
10826                            lincRNA
10827                            lincRNA
10828                            lincRNA
10829                            lincRNA
10830                          antisense
10831                          antisense
10832                          antisense
10833                          antisense
10834                          antisense
10835                          antisense
10836                          antisense
10837                          antisense
10838                          antisense
10839                          antisense
10840                          antisense
10841                          antisense
10842                          antisense
10843                          antisense
10844                          antisense
10845                          antisense
10846                          antisense
10847                          antisense
10848                          antisense
10849                          antisense
10850                          antisense
10851                          antisense
10852                          antisense
10853                     protein_coding
10854                     protein_coding
10855                     protein_coding
10856                     protein_coding
10857                     protein_coding
10858                     protein_coding
10859                     protein_coding
10860                     protein_coding
10861                     protein_coding
10862                     protein_coding
10863                     protein_coding
10864                     protein_coding
10865                     protein_coding
10866                     protein_coding
10867                     protein_coding
10868                     protein_coding
10869                     protein_coding
10870                     protein_coding
10871                     protein_coding
10872                     protein_coding
10873                     protein_coding
10874                     protein_coding
10875                     protein_coding
10876                     protein_coding
10877                     protein_coding
10878                     protein_coding
10879                     protein_coding
10880                     protein_coding
10881                     protein_coding
10882                     protein_coding
10883                     protein_coding
10884                     protein_coding
10885                     protein_coding
10886                     protein_coding
10887                     protein_coding
10888                     protein_coding
10889                     protein_coding
10890                     protein_coding
10891                     protein_coding
10892                     protein_coding
10893                     protein_coding
10894                     protein_coding
10895                     protein_coding
10896                     protein_coding
10897                     protein_coding
10898                     protein_coding
10899                     protein_coding
10900                     protein_coding
10901                     protein_coding
10902                     protein_coding
10903                     protein_coding
10904                     protein_coding
10905                     protein_coding
10906                     protein_coding
10907                     protein_coding
10908                     protein_coding
10909                     protein_coding
10910                     protein_coding
10911                     protein_coding
10912                     protein_coding
10913                     protein_coding
10914                     protein_coding
10915                     protein_coding
10916                     protein_coding
10917                     protein_coding
10918                     protein_coding
10919                     protein_coding
10920                     protein_coding
10921                     protein_coding
10922                     protein_coding
10923                     protein_coding
10924                     protein_coding
10925                     protein_coding
10926                     protein_coding
10927                     protein_coding
10928                     protein_coding
10929                     protein_coding
10930                     protein_coding
10931                     protein_coding
10932                     protein_coding
10933                     protein_coding
10934                     protein_coding
10935                     protein_coding
10936                     protein_coding
10937                     protein_coding
10938                     protein_coding
10939                     protein_coding
10940                     protein_coding
10941                     protein_coding
10942                     protein_coding
10943                     protein_coding
10944                     protein_coding
10945                     protein_coding
10946                     protein_coding
10947                     protein_coding
10948                     protein_coding
10949                     protein_coding
10950                     protein_coding
10951                     protein_coding
10952                     protein_coding
10953                     protein_coding
10954                     protein_coding
10955                     protein_coding
10956                     protein_coding
10957                     protein_coding
10958                     protein_coding
10959                     protein_coding
10960                     protein_coding
10961                     protein_coding
10962                     protein_coding
10963                     protein_coding
10964                     protein_coding
10965                     protein_coding
10966                     protein_coding
10967                     protein_coding
10968                     protein_coding
10969                     protein_coding
10970                     protein_coding
10971               processed_pseudogene
10972               processed_pseudogene
10973                     protein_coding
10974                     protein_coding
10975                     protein_coding
10976                     protein_coding
10977                     protein_coding
10978                     protein_coding
10979                     protein_coding
10980                     protein_coding
10981                     protein_coding
10982                     protein_coding
10983                     protein_coding
10984                     protein_coding
10985                     protein_coding
10986                     protein_coding
10987                     protein_coding
10988                     protein_coding
10989                     protein_coding
10990                     protein_coding
10991               processed_pseudogene
10992               processed_pseudogene
10993               processed_transcript
10994               processed_transcript
10995               processed_transcript
10996               processed_transcript
10997               processed_transcript
10998               processed_transcript
10999               processed_transcript
11000               processed_transcript
11001               processed_transcript
11002               processed_transcript
11003               processed_transcript
11004               processed_transcript
11005               processed_transcript
11006               processed_transcript
11007               processed_transcript
11008               processed_transcript
11009               processed_transcript
11010               processed_transcript
11011               processed_transcript
11012               processed_transcript
11013                            lincRNA
11014                            lincRNA
11015                            lincRNA
11016                            lincRNA
11017                            lincRNA
11018                            lincRNA
11019                            lincRNA
11020                     protein_coding
11021                     protein_coding
11022                     protein_coding
11023                     protein_coding
11024                     protein_coding
11025                     protein_coding
11026                     protein_coding
11027                     protein_coding
11028                     protein_coding
11029                     protein_coding
11030                     protein_coding
11031                     protein_coding
11032                     protein_coding
11033                     protein_coding
11034                     protein_coding
11035               processed_pseudogene
11036                  sense_overlapping
11037                  sense_overlapping
11038                          antisense
11039                          antisense
11040                          antisense
11041                          antisense
11042                          antisense
11043                          antisense
11044                          antisense
11045                          antisense
11046                          antisense
11047               processed_pseudogene
11048 transcribed_unprocessed_pseudogene
11049 transcribed_unprocessed_pseudogene
11050 transcribed_unprocessed_pseudogene
11051 transcribed_unprocessed_pseudogene
11052 transcribed_unprocessed_pseudogene
11053 transcribed_unprocessed_pseudogene
11054 transcribed_unprocessed_pseudogene
11055 transcribed_unprocessed_pseudogene
11056 transcribed_unprocessed_pseudogene
11057 transcribed_unprocessed_pseudogene
11058 transcribed_unprocessed_pseudogene
11059 transcribed_unprocessed_pseudogene
11060 transcribed_unprocessed_pseudogene
11061 transcribed_unprocessed_pseudogene
11062 transcribed_unprocessed_pseudogene
11063 transcribed_unprocessed_pseudogene
11064 transcribed_unprocessed_pseudogene
11065 transcribed_unprocessed_pseudogene
11066 transcribed_unprocessed_pseudogene
11067 transcribed_unprocessed_pseudogene
11068 transcribed_unprocessed_pseudogene
11069 transcribed_unprocessed_pseudogene
11070 transcribed_unprocessed_pseudogene
11071 transcribed_unprocessed_pseudogene
11072 transcribed_unprocessed_pseudogene
11073 transcribed_unprocessed_pseudogene
11074 transcribed_unprocessed_pseudogene
11075 transcribed_unprocessed_pseudogene
11076 transcribed_unprocessed_pseudogene
11077 transcribed_unprocessed_pseudogene
11078 transcribed_unprocessed_pseudogene
11079 transcribed_unprocessed_pseudogene
11080 transcribed_unprocessed_pseudogene
11081 transcribed_unprocessed_pseudogene
11082 transcribed_unprocessed_pseudogene
11083 transcribed_unprocessed_pseudogene
11084 transcribed_unprocessed_pseudogene
11085 transcribed_unprocessed_pseudogene
11086 transcribed_unprocessed_pseudogene
11087 transcribed_unprocessed_pseudogene
11088 transcribed_unprocessed_pseudogene
11089 transcribed_unprocessed_pseudogene
11090 transcribed_unprocessed_pseudogene
11091 transcribed_unprocessed_pseudogene
11092 transcribed_unprocessed_pseudogene
11093 transcribed_unprocessed_pseudogene
11094 transcribed_unprocessed_pseudogene
11095 transcribed_unprocessed_pseudogene
11096 transcribed_unprocessed_pseudogene
11097 transcribed_unprocessed_pseudogene
11098 transcribed_unprocessed_pseudogene
11099 transcribed_unprocessed_pseudogene
11100 transcribed_unprocessed_pseudogene
11101 transcribed_unprocessed_pseudogene
11102 transcribed_unprocessed_pseudogene
11103 transcribed_unprocessed_pseudogene
11104 transcribed_unprocessed_pseudogene
11105 transcribed_unprocessed_pseudogene
11106 transcribed_unprocessed_pseudogene
11107                          antisense
11108                          antisense
11109                     protein_coding
11110                     protein_coding
11111                          antisense
11112                     protein_coding
11113                     protein_coding
11114                     protein_coding
11115                     protein_coding
11116                     protein_coding
11117                     protein_coding
11118                     protein_coding
11119                     protein_coding
11120                     protein_coding
11121                     protein_coding
11122                     protein_coding
11123                     protein_coding
11124                     protein_coding
11125                     protein_coding
11126                     protein_coding
11127                     protein_coding
11128                     protein_coding
11129                     protein_coding
11130                     protein_coding
11131                     protein_coding
11132                     protein_coding
11133                     protein_coding
11134                     protein_coding
11135                     protein_coding
11136                     protein_coding
11137                     protein_coding
11138                     protein_coding
11139                     protein_coding
11140                     protein_coding
11141                     protein_coding
11142                     protein_coding
11143                     protein_coding
11144                     protein_coding
11145                     protein_coding
11146                     protein_coding
11147                     protein_coding
11148                     protein_coding
11149                     protein_coding
11150                     protein_coding
11151                     protein_coding
11152                     protein_coding
11153                     protein_coding
11154                     protein_coding
11155                     protein_coding
11156                     protein_coding
11157                     protein_coding
11158                     protein_coding
11159                     protein_coding
11160                     protein_coding
11161                     protein_coding
11162                     protein_coding
11163                     protein_coding
11164                     protein_coding
11165                     protein_coding
11166                     protein_coding
11167                     protein_coding
11168                     protein_coding
11169                     protein_coding
11170                     protein_coding
11171                     protein_coding
11172                     protein_coding
11173                     protein_coding
11174                     protein_coding
11175                     protein_coding
11176               processed_pseudogene
11177               processed_pseudogene
11178                     protein_coding
11179                     protein_coding
11180                     protein_coding
11181                     protein_coding
11182                     protein_coding
11183                     protein_coding
11184                     protein_coding
11185                     protein_coding
11186                     protein_coding
11187                     protein_coding
11188                     protein_coding
11189                     protein_coding
11190                     protein_coding
11191                     protein_coding
11192                     protein_coding
11193                     protein_coding
11194                     protein_coding
11195                     protein_coding
11196                     protein_coding
11197                     protein_coding
11198                     protein_coding
11199                     protein_coding
11200                     protein_coding
11201                     protein_coding
11202                     protein_coding
11203                     protein_coding
11204                     protein_coding
11205                     protein_coding
11206                     protein_coding
11207                     protein_coding
11208                     protein_coding
11209                     protein_coding
11210                     protein_coding
11211                     protein_coding
11212                     protein_coding
11213                     protein_coding
11214                     protein_coding
11215                     protein_coding
11216                     protein_coding
11217                     protein_coding
11218                     protein_coding
11219                     protein_coding
11220                     protein_coding
11221                     protein_coding
11222                     protein_coding
11223                     protein_coding
11224                     protein_coding
11225                     protein_coding
11226                     protein_coding
11227                     protein_coding
11228                     protein_coding
11229                     protein_coding
11230                     protein_coding
11231                     protein_coding
11232                     protein_coding
11233                     protein_coding
11234                     protein_coding
11235                     protein_coding
11236                     protein_coding
11237                     protein_coding
11238                     protein_coding
11239                     protein_coding
11240                     protein_coding
11241                     protein_coding
11242                     protein_coding
11243                     protein_coding
11244                     protein_coding
11245                     protein_coding
11246                     protein_coding
11247                     protein_coding
11248                     protein_coding
11249                     protein_coding
11250                     protein_coding
11251                     protein_coding
11252                     protein_coding
11253                     protein_coding
11254                     protein_coding
11255                     protein_coding
11256                     protein_coding
11257                     protein_coding
11258                     protein_coding
11259                     protein_coding
11260                     protein_coding
11261                     protein_coding
11262                     protein_coding
11263                     protein_coding
11264                     protein_coding
11265                     protein_coding
11266                     protein_coding
11267                     protein_coding
11268                     protein_coding
11269                     protein_coding
11270                     protein_coding
11271                     protein_coding
11272                     protein_coding
11273                     protein_coding
11274                     protein_coding
11275                     protein_coding
11276                     protein_coding
11277                     protein_coding
11278                     protein_coding
11279                     protein_coding
11280                     protein_coding
11281                     protein_coding
11282                     protein_coding
11283                     protein_coding
11284                     protein_coding
11285                     protein_coding
11286                     protein_coding
11287                     protein_coding
11288                     protein_coding
11289                     protein_coding
11290                     protein_coding
11291                     protein_coding
11292             unprocessed_pseudogene
11293                     protein_coding
11294                     protein_coding
11295                     protein_coding
11296                     protein_coding
11297                            lincRNA
11298                            lincRNA
11299               processed_pseudogene
11300               processed_pseudogene
11301                     protein_coding
11302                     protein_coding
11303                     protein_coding
11304                     protein_coding
11305                     protein_coding
11306                     protein_coding
11307                     protein_coding
11308                     protein_coding
11309                     protein_coding
11310                     protein_coding
11311                     protein_coding
11312                     protein_coding
11313                     protein_coding
11314                     protein_coding
11315                     protein_coding
11316                     protein_coding
11317                     protein_coding
11318                     protein_coding
11319                     protein_coding
11320                     protein_coding
11321                     protein_coding
11322                     protein_coding
11323                     protein_coding
11324                     protein_coding
11325                     protein_coding
11326                     protein_coding
11327                     protein_coding
11328                     protein_coding
11329                     protein_coding
11330                     protein_coding
11331                     protein_coding
11332                     protein_coding
11333                     protein_coding
11334                     protein_coding
11335                     protein_coding
11336                     protein_coding
11337                            lincRNA
11338                            lincRNA
11339                            lincRNA
11340                            lincRNA
11341                            lincRNA
11342                            lincRNA
11343                            lincRNA
11344                          antisense
11345                          antisense
11346                            lincRNA
11347                            lincRNA
11348                            lincRNA
11349                            lincRNA
11350                            lincRNA
11351                            lincRNA
11352                            lincRNA
11353                            lincRNA
11354                            lincRNA
11355               processed_pseudogene
11356                            lincRNA
11357                            lincRNA
11358                            lincRNA
11359               processed_pseudogene
11360             unprocessed_pseudogene
11361                     protein_coding
11362                     protein_coding
11363 transcribed_unprocessed_pseudogene
11364 transcribed_unprocessed_pseudogene
11365 transcribed_unprocessed_pseudogene
11366 transcribed_unprocessed_pseudogene
11367 transcribed_unprocessed_pseudogene
11368 transcribed_unprocessed_pseudogene
11369 transcribed_unprocessed_pseudogene
11370 transcribed_unprocessed_pseudogene
11371 transcribed_unprocessed_pseudogene
11372 transcribed_unprocessed_pseudogene
11373 transcribed_unprocessed_pseudogene
11374 transcribed_unprocessed_pseudogene
11375 transcribed_unprocessed_pseudogene
11376 transcribed_unprocessed_pseudogene
11377 transcribed_unprocessed_pseudogene
11378 transcribed_unprocessed_pseudogene
11379 transcribed_unprocessed_pseudogene
11380 transcribed_unprocessed_pseudogene
11381 transcribed_unprocessed_pseudogene
11382 transcribed_unprocessed_pseudogene
11383 transcribed_unprocessed_pseudogene
11384 transcribed_unprocessed_pseudogene
11385 transcribed_unprocessed_pseudogene
11386 transcribed_unprocessed_pseudogene
11387 transcribed_unprocessed_pseudogene
11388 transcribed_unprocessed_pseudogene
11389 transcribed_unprocessed_pseudogene
11390 transcribed_unprocessed_pseudogene
11391               processed_transcript
11392               processed_transcript
11393               processed_transcript
11394               processed_transcript
11395               processed_transcript
11396               processed_transcript
11397               processed_transcript
11398               processed_transcript
11399               processed_transcript
11400               processed_transcript
11401               processed_transcript
11402               processed_transcript
11403               processed_transcript
11404               processed_transcript
11405               processed_transcript
11406               processed_transcript
11407               processed_transcript
11408               processed_transcript
11409               processed_transcript
11410               processed_transcript
11411               processed_transcript
11412               processed_transcript
11413               processed_transcript
11414               processed_transcript
11415               processed_transcript
11416               processed_transcript
11417               processed_transcript
11418               processed_transcript
11419               processed_transcript
11420               processed_transcript
11421               processed_transcript
11422               processed_transcript
11423                  sense_overlapping
11424                  sense_overlapping
11425                            lincRNA
11426                            lincRNA
11427                            lincRNA
11428                            lincRNA
11429                            lincRNA
11430                            lincRNA
11431                            lincRNA
11432                            lincRNA
11433                            lincRNA
11434                            lincRNA
11435                            lincRNA
11436                            lincRNA
11437                            lincRNA
11438                            lincRNA
11439                            lincRNA
11440                            lincRNA
11441                            lincRNA
11442                            lincRNA
11443                            lincRNA
11444                            lincRNA
11445                            lincRNA
11446                            lincRNA
11447                            lincRNA
11448                            lincRNA
11449                            lincRNA
11450                            lincRNA
11451                            lincRNA
11452                            lincRNA
11453                            lincRNA
11454                            lincRNA
11455                            lincRNA
11456                            lincRNA
11457                            lincRNA
11458                            lincRNA
11459                            lincRNA
11460                            lincRNA
11461                            lincRNA
11462                            lincRNA
11463                            lincRNA
11464                            lincRNA
11465                            lincRNA
11466                            lincRNA
11467                            lincRNA
11468                            lincRNA
11469                            lincRNA
11470                            lincRNA
11471                            lincRNA
11472                            lincRNA
11473                            lincRNA
11474                            lincRNA
11475                            lincRNA
11476                            lincRNA
11477                            lincRNA
11478                            lincRNA
11479                            lincRNA
11480                            lincRNA
11481                            lincRNA
11482                            lincRNA
11483                            lincRNA
11484                            lincRNA
11485                            lincRNA
11486                            lincRNA
11487                            lincRNA
11488                            lincRNA
11489                            lincRNA
11490                            lincRNA
11491                            lincRNA
11492                            lincRNA
11493                            lincRNA
11494                            lincRNA
11495                            lincRNA
11496                            lincRNA
11497                            lincRNA
11498                            lincRNA
11499                            lincRNA
11500                            lincRNA
11501                            lincRNA
11502                            lincRNA
11503                            lincRNA
11504                            lincRNA
11505                            lincRNA
11506                            lincRNA
11507                            lincRNA
11508                            lincRNA
11509                            lincRNA
11510                            lincRNA
11511                            lincRNA
11512                            lincRNA
11513                            lincRNA
11514                            lincRNA
11515                            lincRNA
11516                            lincRNA
11517                            lincRNA
11518                            lincRNA
11519                            lincRNA
11520                            lincRNA
11521                            lincRNA
11522                            lincRNA
11523                            lincRNA
11524                            lincRNA
11525                            lincRNA
11526               processed_pseudogene
11527               processed_pseudogene
11528               processed_pseudogene
11529                          antisense
11530                          antisense
11531                          antisense
11532                          antisense
11533               processed_pseudogene
11534                            lincRNA
11535                            lincRNA
11536                            lincRNA
11537                            lincRNA
11538                            lincRNA
11539                            lincRNA
11540                            lincRNA
11541                     protein_coding
11542                     protein_coding
11543                     protein_coding
11544                     protein_coding
11545                     protein_coding
11546                     protein_coding
11547                     protein_coding
11548                     protein_coding
11549                     protein_coding
11550                     protein_coding
11551                     protein_coding
11552                     protein_coding
11553                     protein_coding
11554                     protein_coding
11555                     protein_coding
11556                     protein_coding
11557                     protein_coding
11558                     protein_coding
11559                     protein_coding
11560                     protein_coding
11561                     protein_coding
11562                     protein_coding
11563                     protein_coding
11564                     protein_coding
11565                     protein_coding
11566                     protein_coding
11567                     protein_coding
11568                     protein_coding
11569                     protein_coding
11570                     protein_coding
11571                     protein_coding
11572                     protein_coding
11573                     protein_coding
11574                     protein_coding
11575                     protein_coding
11576                     protein_coding
11577                     protein_coding
11578                     protein_coding
11579                     protein_coding
11580                     protein_coding
11581                     protein_coding
11582                     protein_coding
11583                     protein_coding
11584                     protein_coding
11585                     protein_coding
11586                     protein_coding
11587                     protein_coding
11588                     protein_coding
11589                     protein_coding
11590                     protein_coding
11591                     protein_coding
11592                     protein_coding
11593                     protein_coding
11594                     protein_coding
11595                     protein_coding
11596                     protein_coding
11597                     protein_coding
11598                     protein_coding
11599                     protein_coding
11600                     protein_coding
11601                     protein_coding
11602                     protein_coding
11603                     protein_coding
11604                     protein_coding
11605                     protein_coding
11606                     protein_coding
11607                     protein_coding
11608                     protein_coding
11609                     protein_coding
11610                     protein_coding
11611                     protein_coding
11612                     protein_coding
11613                     protein_coding
11614                     protein_coding
11615                     protein_coding
11616                     protein_coding
11617                     protein_coding
11618                     protein_coding
11619                     protein_coding
11620                     protein_coding
11621                     protein_coding
11622                     protein_coding
11623                     protein_coding
11624                     protein_coding
11625                     protein_coding
11626                     protein_coding
11627                     protein_coding
11628                     protein_coding
11629                     protein_coding
11630                     protein_coding
11631                     protein_coding
11632                     protein_coding
11633                     protein_coding
11634                     protein_coding
11635                     protein_coding
11636                     protein_coding
11637                     protein_coding
11638                     protein_coding
11639                     protein_coding
11640                     protein_coding
11641                     protein_coding
11642                     protein_coding
11643                     protein_coding
11644                     protein_coding
11645                     protein_coding
11646                     protein_coding
11647                     protein_coding
11648                     protein_coding
11649                     protein_coding
11650                     protein_coding
11651                     protein_coding
11652                     protein_coding
11653                     protein_coding
11654                     protein_coding
11655                     protein_coding
11656                     protein_coding
11657                     protein_coding
11658                     protein_coding
11659                     protein_coding
11660                     protein_coding
11661                     protein_coding
11662                     protein_coding
11663                     protein_coding
11664                     protein_coding
11665                     protein_coding
11666                     protein_coding
11667                     protein_coding
11668                     protein_coding
11669                     protein_coding
11670                     protein_coding
11671                     protein_coding
11672                     protein_coding
11673                     protein_coding
11674                     protein_coding
11675                     protein_coding
11676                     protein_coding
11677                     protein_coding
11678                     protein_coding
11679                     protein_coding
11680                     protein_coding
11681                     protein_coding
11682                     protein_coding
11683                     protein_coding
11684                     protein_coding
11685                     protein_coding
11686                     protein_coding
11687                     protein_coding
11688                     protein_coding
11689                     protein_coding
11690                     protein_coding
11691                     protein_coding
11692                     protein_coding
11693                     protein_coding
11694                     protein_coding
11695                     protein_coding
11696                     protein_coding
11697                     protein_coding
11698                     protein_coding
11699                     protein_coding
11700                     protein_coding
11701                     protein_coding
11702                     protein_coding
11703                     protein_coding
11704                     protein_coding
11705                     protein_coding
11706                     protein_coding
11707                     protein_coding
11708                     protein_coding
11709                     protein_coding
11710                     protein_coding
11711                     protein_coding
11712                     protein_coding
11713                     protein_coding
11714                     protein_coding
11715                            lincRNA
11716                            lincRNA
11717                            lincRNA
11718                            lincRNA
11719                            lincRNA
11720                            lincRNA
11721                            lincRNA
11722                            lincRNA
11723                            lincRNA
11724                            lincRNA
11725                            lincRNA
11726                            lincRNA
11727                            lincRNA
11728                            lincRNA
11729                            lincRNA
11730                            lincRNA
11731                            lincRNA
11732                            lincRNA
11733                            lincRNA
11734                            lincRNA
11735                            lincRNA
11736                            lincRNA
11737                            lincRNA
11738                            lincRNA
11739                            lincRNA
11740                            lincRNA
11741                            lincRNA
11742                     protein_coding
11743                     protein_coding
11744                     protein_coding
11745                     protein_coding
11746                     protein_coding
11747                     protein_coding
11748                     protein_coding
11749                     protein_coding
11750                     protein_coding
11751                     protein_coding
11752                     protein_coding
11753                     protein_coding
11754                     protein_coding
11755                     protein_coding
11756                     protein_coding
11757                     protein_coding
11758                     protein_coding
11759                     protein_coding
11760                     protein_coding
11761                     protein_coding
11762                     protein_coding
11763                     protein_coding
11764                     protein_coding
11765                     protein_coding
11766                     protein_coding
11767                     protein_coding
11768                     protein_coding
11769                     protein_coding
11770                     protein_coding
11771                     protein_coding
11772                     protein_coding
11773                     protein_coding
11774                     protein_coding
11775                     protein_coding
11776                     protein_coding
11777                     protein_coding
11778                     protein_coding
11779                     protein_coding
11780                     protein_coding
11781                     protein_coding
11782                     protein_coding
11783                     protein_coding
11784                     protein_coding
11785               processed_pseudogene
11786                          antisense
11787                          antisense
11788                          antisense
11789                            lincRNA
11790                            lincRNA
11791               processed_pseudogene
11792                     protein_coding
11793                     protein_coding
11794                     protein_coding
11795                     protein_coding
11796                     protein_coding
11797                     protein_coding
11798                     protein_coding
11799                     protein_coding
11800                     protein_coding
11801                     protein_coding
11802                     protein_coding
11803                     protein_coding
11804                     protein_coding
11805                     protein_coding
11806                     protein_coding
11807                     protein_coding
11808                     protein_coding
11809                     protein_coding
11810                     protein_coding
11811                          antisense
11812                     protein_coding
11813                     protein_coding
11814                     protein_coding
11815                     protein_coding
11816                     protein_coding
11817                     protein_coding
11818                     protein_coding
11819                     protein_coding
11820                     protein_coding
11821                     protein_coding
11822                     protein_coding
11823                     protein_coding
11824                     protein_coding
11825                     protein_coding
11826                     protein_coding
11827                     protein_coding
11828                     protein_coding
11829                     protein_coding
11830                     protein_coding
11831                     protein_coding
11832                            lincRNA
11833                            lincRNA
11834                            lincRNA
11835                            lincRNA
11836                            lincRNA
11837                            lincRNA
11838                            lincRNA
11839                            lincRNA
11840                            lincRNA
11841                            lincRNA
11842                            lincRNA
11843                            lincRNA
11844                            lincRNA
11845                            lincRNA
11846                            lincRNA
11847                            lincRNA
11848                            lincRNA
11849                            lincRNA
11850                            lincRNA
11851                            lincRNA
11852                            lincRNA
11853                            lincRNA
11854                            lincRNA
11855                            lincRNA
11856                            lincRNA
11857                            lincRNA
11858                            lincRNA
11859                            lincRNA
11860                            lincRNA
11861                            lincRNA
11862                            lincRNA
11863               processed_pseudogene
11864               processed_pseudogene
11865               processed_pseudogene
11866               processed_pseudogene
11867                                TEC
11868               processed_pseudogene
11869               processed_pseudogene
11870                            lincRNA
11871                            lincRNA
11872               processed_pseudogene
11873                     protein_coding
11874                     protein_coding
11875                     protein_coding
11876                     protein_coding
11877                     protein_coding
11878                     protein_coding
11879                     protein_coding
11880                     protein_coding
11881                     protein_coding
11882                     protein_coding
11883                     protein_coding
11884                     protein_coding
11885                     protein_coding
11886                     protein_coding
11887                     protein_coding
11888                     protein_coding
11889                     protein_coding
11890                     protein_coding
11891                     protein_coding
11892                     protein_coding
11893                     protein_coding
11894                     protein_coding
11895                     protein_coding
11896                     protein_coding
11897                     protein_coding
11898                     protein_coding
11899                            lincRNA
11900                            lincRNA
11901                            lincRNA
11902                            lincRNA
11903                            lincRNA
11904                            lincRNA
11905               processed_pseudogene
11906               processed_pseudogene
11907               processed_pseudogene
11908               processed_pseudogene
11909 transcribed_unprocessed_pseudogene
11910 transcribed_unprocessed_pseudogene
11911 transcribed_unprocessed_pseudogene
11912 transcribed_unprocessed_pseudogene
11913 transcribed_unprocessed_pseudogene
11914 transcribed_unprocessed_pseudogene
11915 transcribed_unprocessed_pseudogene
11916 transcribed_unprocessed_pseudogene
11917 transcribed_unprocessed_pseudogene
11918 transcribed_unprocessed_pseudogene
11919 transcribed_unprocessed_pseudogene
11920 transcribed_unprocessed_pseudogene
11921               processed_pseudogene
11922                     protein_coding
11923                     protein_coding
11924                     protein_coding
11925                     protein_coding
11926                     protein_coding
11927                     protein_coding
11928                     protein_coding
11929                     protein_coding
11930                     protein_coding
11931                     protein_coding
11932                     protein_coding
11933                     protein_coding
11934                     protein_coding
11935                     protein_coding
11936                     protein_coding
11937                     protein_coding
11938                     protein_coding
11939                     protein_coding
11940                     protein_coding
11941                     protein_coding
11942                     protein_coding
11943                     protein_coding
11944                     protein_coding
11945                     protein_coding
11946                     protein_coding
11947                     protein_coding
11948                     protein_coding
11949                     protein_coding
11950                     protein_coding
11951                     protein_coding
11952                     protein_coding
11953                     protein_coding
11954                     protein_coding
11955                     protein_coding
11956                     protein_coding
11957                     protein_coding
11958                     protein_coding
11959                     protein_coding
11960                     protein_coding
11961                     protein_coding
11962                     protein_coding
11963                     protein_coding
11964                     protein_coding
11965                     protein_coding
11966                     protein_coding
11967                     protein_coding
11968                     protein_coding
11969                     protein_coding
11970                     protein_coding
11971                     protein_coding
11972                     protein_coding
11973                     protein_coding
11974                     protein_coding
11975                     protein_coding
11976                     protein_coding
11977                     protein_coding
11978                     protein_coding
11979                     protein_coding
11980                     protein_coding
11981                     protein_coding
11982                     protein_coding
11983                     protein_coding
11984                     protein_coding
11985                     protein_coding
11986                     protein_coding
11987                     protein_coding
11988                     protein_coding
11989                     protein_coding
11990                     protein_coding
11991                     protein_coding
11992                     protein_coding
11993                     protein_coding
11994                     protein_coding
11995                     protein_coding
11996                     protein_coding
11997                     protein_coding
11998                     protein_coding
11999                     protein_coding
12000                     protein_coding
12001                     protein_coding
12002                     protein_coding
12003                     protein_coding
12004                     protein_coding
12005                     protein_coding
12006                     protein_coding
12007                     protein_coding
12008                     protein_coding
12009                     protein_coding
12010                     protein_coding
12011                     protein_coding
12012                     protein_coding
12013                     protein_coding
12014                     protein_coding
12015                     protein_coding
12016                     protein_coding
12017                     protein_coding
12018                     protein_coding
12019                     protein_coding
12020                     protein_coding
12021                     protein_coding
12022                     protein_coding
12023                     protein_coding
12024                     protein_coding
12025                     protein_coding
12026                     protein_coding
12027                     protein_coding
12028                     protein_coding
12029                     protein_coding
12030                     protein_coding
12031                     protein_coding
12032                     protein_coding
12033                     protein_coding
12034                     protein_coding
12035                     protein_coding
12036                     protein_coding
12037                     protein_coding
12038                     protein_coding
12039                     protein_coding
12040                     protein_coding
12041                     protein_coding
12042                     protein_coding
12043                     protein_coding
12044                     protein_coding
12045                     protein_coding
12046                     protein_coding
12047                     protein_coding
12048                     protein_coding
12049                     protein_coding
12050                     protein_coding
12051                     protein_coding
12052                     protein_coding
12053                     protein_coding
12054                     protein_coding
12055                     protein_coding
12056                     protein_coding
12057                     protein_coding
12058                     protein_coding
12059                     protein_coding
12060                     protein_coding
12061                     protein_coding
12062                     protein_coding
12063                     protein_coding
12064             unprocessed_pseudogene
12065             unprocessed_pseudogene
12066             unprocessed_pseudogene
12067             unprocessed_pseudogene
12068             unprocessed_pseudogene
12069             unprocessed_pseudogene
12070                     protein_coding
12071                            lincRNA
12072                            lincRNA
12073                            lincRNA
12074             unprocessed_pseudogene
12075             unprocessed_pseudogene
12076             unprocessed_pseudogene
12077             unprocessed_pseudogene
12078             unprocessed_pseudogene
12079             unprocessed_pseudogene
12080             unprocessed_pseudogene
12081             unprocessed_pseudogene
12082             unprocessed_pseudogene
12083             unprocessed_pseudogene
12084             unprocessed_pseudogene
12085             unprocessed_pseudogene
12086             unprocessed_pseudogene
12087             unprocessed_pseudogene
12088             unprocessed_pseudogene
12089             unprocessed_pseudogene
12090             unprocessed_pseudogene
12091             unprocessed_pseudogene
12092                     protein_coding
12093               processed_pseudogene
12094                          antisense
12095               processed_pseudogene
12096               processed_pseudogene
12097               processed_pseudogene
12098                     protein_coding
12099                     protein_coding
12100                     protein_coding
12101                     protein_coding
12102                     protein_coding
12103                     protein_coding
12104                     protein_coding
12105                     protein_coding
12106                     protein_coding
12107                     protein_coding
12108                     protein_coding
12109                     protein_coding
12110                     protein_coding
12111               processed_pseudogene
12112                            lincRNA
12113                            lincRNA
12114             unprocessed_pseudogene
12115                     protein_coding
12116                          antisense
12117                     protein_coding
12118                     protein_coding
12119             unprocessed_pseudogene
12120                            lincRNA
12121                            lincRNA
12122                            lincRNA
12123                            lincRNA
12124                            lincRNA
12125                            lincRNA
12126             unprocessed_pseudogene
12127                            lincRNA
12128                            lincRNA
12129                            lincRNA
12130                            lincRNA
12131                            lincRNA
12132                            lincRNA
12133                            lincRNA
12134                            lincRNA
12135                            lincRNA
12136                            lincRNA
12137                            lincRNA
12138                            lincRNA
12139                            lincRNA
12140                            lincRNA
12141                            lincRNA
12142                            lincRNA
12143                            lincRNA
12144                            lincRNA
12145                                TEC
12146               processed_pseudogene
12147                            lincRNA
12148                            lincRNA
12149                            lincRNA
12150                            lincRNA
12151                            lincRNA
12152                            lincRNA
12153                            lincRNA
12154                            lincRNA
12155                            lincRNA
12156                            lincRNA
12157                            lincRNA
12158                            lincRNA
12159                            lincRNA
12160                            lincRNA
12161               processed_pseudogene
12162               processed_pseudogene
12163               processed_pseudogene
12164               processed_pseudogene
12165                            lincRNA
12166                            lincRNA
12167                            lincRNA
12168                            lincRNA
12169                            lincRNA
12170                            lincRNA
12171                            lincRNA
12172                            lincRNA
12173                            lincRNA
12174                            lincRNA
12175                            lincRNA
12176                            lincRNA
12177                            lincRNA
12178                            lincRNA
12179                            lincRNA
12180                            lincRNA
12181                            lincRNA
12182                            lincRNA
12183                            lincRNA
12184                            lincRNA
12185                            lincRNA
12186                            lincRNA
12187                            lincRNA
12188                            lincRNA
12189                            lincRNA
12190                            lincRNA
12191                            lincRNA
12192                            lincRNA
12193                            lincRNA
12194                            lincRNA
12195                            lincRNA
12196                            lincRNA
12197                            lincRNA
12198                            lincRNA
12199                            lincRNA
12200                            lincRNA
12201                            lincRNA
12202                            lincRNA
12203                            lincRNA
12204                            lincRNA
12205                            lincRNA
12206                            lincRNA
12207                            lincRNA
12208                            lincRNA
12209               processed_pseudogene
12210                            lincRNA
12211                            lincRNA
12212                            lincRNA
12213                            lincRNA
12214               processed_pseudogene
12215               processed_pseudogene
12216               processed_pseudogene
12217                     protein_coding
12218                     protein_coding
12219                     protein_coding
12220                     protein_coding
12221                     protein_coding
12222                     protein_coding
12223                     protein_coding
12224                     protein_coding
12225                     protein_coding
12226                     protein_coding
12227                     protein_coding
12228                     protein_coding
12229                     protein_coding
12230                     protein_coding
12231                     protein_coding
12232                     protein_coding
12233                     protein_coding
12234                     protein_coding
12235                     protein_coding
12236                     protein_coding
12237                     protein_coding
12238                     protein_coding
12239                     protein_coding
12240                     protein_coding
12241                     protein_coding
12242                     protein_coding
12243                     protein_coding
12244                     protein_coding
12245                     protein_coding
12246                     protein_coding
12247                     protein_coding
12248                     protein_coding
12249                     protein_coding
12250                     protein_coding
12251                     protein_coding
12252                     protein_coding
12253                     protein_coding
12254                     protein_coding
12255                     protein_coding
12256                     protein_coding
12257                     protein_coding
12258                     protein_coding
12259                     protein_coding
12260                     protein_coding
12261                     protein_coding
12262                     protein_coding
12263                     protein_coding
12264                     protein_coding
12265                     protein_coding
12266                     protein_coding
12267                     protein_coding
12268                     protein_coding
12269                     protein_coding
12270                     protein_coding
12271                     protein_coding
12272                     protein_coding
12273                     protein_coding
12274                     protein_coding
12275                     protein_coding
12276                     protein_coding
12277                     protein_coding
12278                     protein_coding
12279                     protein_coding
12280                     protein_coding
12281                     protein_coding
12282                     protein_coding
12283                     protein_coding
12284                     protein_coding
12285                     protein_coding
12286                     protein_coding
12287                     protein_coding
12288                     protein_coding
12289                     protein_coding
12290                     protein_coding
12291                     protein_coding
12292                     protein_coding
12293                     protein_coding
12294                     protein_coding
12295                     protein_coding
12296                     protein_coding
12297                     protein_coding
12298                     protein_coding
12299                     protein_coding
12300                     protein_coding
12301                     protein_coding
12302                     protein_coding
12303                     protein_coding
12304                     protein_coding
12305                     protein_coding
12306                     protein_coding
12307                     protein_coding
12308                     protein_coding
12309                     protein_coding
12310                     protein_coding
12311                     protein_coding
12312                     protein_coding
12313                     protein_coding
12314                     protein_coding
12315                     protein_coding
12316                     protein_coding
12317                     protein_coding
12318                     protein_coding
12319                     protein_coding
12320                     protein_coding
12321                     protein_coding
12322                     protein_coding
12323                     protein_coding
12324                     protein_coding
12325                     protein_coding
12326                     protein_coding
12327                     protein_coding
12328                     protein_coding
12329                     protein_coding
12330                     protein_coding
12331                     protein_coding
12332                     protein_coding
12333                     protein_coding
12334                     protein_coding
12335                     protein_coding
12336                     protein_coding
12337                     protein_coding
12338                     protein_coding
12339                     protein_coding
12340                     protein_coding
12341                     protein_coding
12342                     protein_coding
12343                     protein_coding
12344                     protein_coding
12345                     protein_coding
12346                     protein_coding
12347                     protein_coding
12348                     protein_coding
12349                     protein_coding
12350                     protein_coding
12351                     protein_coding
12352                     protein_coding
12353                     protein_coding
12354                     protein_coding
12355                     protein_coding
12356                     protein_coding
12357                     protein_coding
12358                     protein_coding
12359                     protein_coding
12360                     protein_coding
12361                     protein_coding
12362                     protein_coding
12363                     protein_coding
12364                     protein_coding
12365                     protein_coding
12366                     protein_coding
12367                     protein_coding
12368                     protein_coding
12369                     protein_coding
12370                     protein_coding
12371                     protein_coding
12372                     protein_coding
12373                     protein_coding
12374                     protein_coding
12375                     protein_coding
12376                     protein_coding
12377                     protein_coding
12378                     protein_coding
12379                     protein_coding
12380                     protein_coding
12381                     protein_coding
12382                     protein_coding
12383                     protein_coding
12384                     protein_coding
12385                     protein_coding
12386                     protein_coding
12387                     protein_coding
12388                     protein_coding
12389                     protein_coding
12390                     protein_coding
12391                     protein_coding
12392                     protein_coding
12393                     protein_coding
12394                     protein_coding
12395                     protein_coding
12396                     protein_coding
12397                     protein_coding
12398                     protein_coding
12399                     protein_coding
12400                     protein_coding
12401                     protein_coding
12402                     protein_coding
12403                     protein_coding
12404                     protein_coding
12405                     protein_coding
12406                     protein_coding
12407                     protein_coding
12408                     protein_coding
12409                     protein_coding
12410                     protein_coding
12411                     protein_coding
12412                     protein_coding
12413                     protein_coding
12414                     protein_coding
12415                     protein_coding
12416                     protein_coding
12417                     protein_coding
12418                     protein_coding
12419                     protein_coding
12420                     protein_coding
12421                     protein_coding
12422                     protein_coding
12423                     protein_coding
12424                     protein_coding
12425                     protein_coding
12426                     protein_coding
12427                     protein_coding
12428                     protein_coding
12429                     protein_coding
12430                     protein_coding
12431                     protein_coding
12432                     protein_coding
12433                     protein_coding
12434                     protein_coding
12435                     protein_coding
12436                     protein_coding
12437                     protein_coding
12438                     protein_coding
12439                     protein_coding
12440                     protein_coding
12441                     protein_coding
12442                     protein_coding
12443                     protein_coding
12444                     protein_coding
12445                     protein_coding
12446                     protein_coding
12447                     protein_coding
12448                     protein_coding
12449                     protein_coding
12450                     protein_coding
12451                     protein_coding
12452                     protein_coding
12453                     protein_coding
12454                     protein_coding
12455                     protein_coding
12456                     protein_coding
12457                     protein_coding
12458                     protein_coding
12459                     protein_coding
12460                     protein_coding
12461                     protein_coding
12462                     protein_coding
12463                     protein_coding
12464                     protein_coding
12465                     protein_coding
12466                     protein_coding
12467                     protein_coding
12468                     protein_coding
12469                     protein_coding
12470                     protein_coding
12471                     protein_coding
12472                     protein_coding
12473                     protein_coding
12474                     protein_coding
12475                     protein_coding
12476                     protein_coding
12477                     protein_coding
12478                     protein_coding
12479                     protein_coding
12480                     protein_coding
12481                     protein_coding
12482                     protein_coding
12483                     protein_coding
12484                     protein_coding
12485                     protein_coding
12486                     protein_coding
12487                     protein_coding
12488                     protein_coding
12489                     protein_coding
12490                     protein_coding
12491                     protein_coding
12492                     protein_coding
12493                     protein_coding
12494                     protein_coding
12495                     protein_coding
12496                     protein_coding
12497                     protein_coding
12498                     protein_coding
12499                     protein_coding
12500                     protein_coding
12501                     protein_coding
12502                     protein_coding
12503                     protein_coding
12504                     protein_coding
12505                     protein_coding
12506                     protein_coding
12507                     protein_coding
12508                     protein_coding
12509                     protein_coding
12510                     protein_coding
12511                     protein_coding
12512                     protein_coding
12513                     protein_coding
12514                     protein_coding
12515                     protein_coding
12516                     protein_coding
12517                     protein_coding
12518                     protein_coding
12519                     protein_coding
12520                     protein_coding
12521                     protein_coding
12522                     protein_coding
12523                     protein_coding
12524                     protein_coding
12525                     protein_coding
12526                     protein_coding
12527                     protein_coding
12528                     protein_coding
12529                     protein_coding
12530                     protein_coding
12531                     protein_coding
12532                     protein_coding
12533                     protein_coding
12534                     protein_coding
12535                     protein_coding
12536                     protein_coding
12537                     protein_coding
12538                     protein_coding
12539                     protein_coding
12540                     protein_coding
12541                     protein_coding
12542                     protein_coding
12543                     protein_coding
12544                     protein_coding
12545                     protein_coding
12546                     protein_coding
12547                     protein_coding
12548                     protein_coding
12549                     protein_coding
12550                     protein_coding
12551                     protein_coding
12552                     protein_coding
12553                     protein_coding
12554                     protein_coding
12555                     protein_coding
12556                     protein_coding
12557                     protein_coding
12558                     protein_coding
12559                     protein_coding
12560                     protein_coding
12561                     protein_coding
12562                     protein_coding
12563                     protein_coding
12564                     protein_coding
12565                     protein_coding
12566                     protein_coding
12567                     protein_coding
12568                     protein_coding
12569                     protein_coding
12570                     protein_coding
12571                     protein_coding
12572                     protein_coding
12573                     protein_coding
12574                     protein_coding
12575                     protein_coding
12576                     protein_coding
12577                     protein_coding
12578                     protein_coding
12579                     protein_coding
12580                     protein_coding
12581                     protein_coding
12582                     protein_coding
12583                     protein_coding
12584                     protein_coding
12585                     protein_coding
12586                     protein_coding
12587                     protein_coding
12588                     protein_coding
12589                     protein_coding
12590                     protein_coding
12591                     protein_coding
12592                     protein_coding
12593                     protein_coding
12594                     protein_coding
12595                     protein_coding
12596                     protein_coding
12597                     protein_coding
12598                     protein_coding
12599                     protein_coding
12600                     protein_coding
12601                     protein_coding
12602                     protein_coding
12603                     protein_coding
12604                     protein_coding
12605                     protein_coding
12606                     protein_coding
12607                     protein_coding
12608                     protein_coding
12609                     protein_coding
12610                     protein_coding
12611                     protein_coding
12612                     protein_coding
12613                     protein_coding
12614                     protein_coding
12615               processed_transcript
12616               processed_transcript
12617               processed_transcript
12618               processed_transcript
12619               processed_transcript
12620               processed_transcript
12621               processed_pseudogene
12622             unprocessed_pseudogene
12623             unprocessed_pseudogene
12624             unprocessed_pseudogene
12625             unprocessed_pseudogene
12626                     protein_coding
12627                     protein_coding
12628                     protein_coding
12629                     protein_coding
12630               processed_pseudogene
12631                     protein_coding
12632                     protein_coding
12633                     protein_coding
12634                     protein_coding
12635                     protein_coding
12636                     protein_coding
12637                     protein_coding
12638                     protein_coding
12639                     protein_coding
12640                     protein_coding
12641                     protein_coding
12642                     protein_coding
12643                     protein_coding
12644                     protein_coding
12645                     protein_coding
12646                     protein_coding
12647                     protein_coding
12648                            lincRNA
12649                            lincRNA
12650                            lincRNA
12651                            lincRNA
12652                            lincRNA
12653                            lincRNA
12654                            lincRNA
12655                            lincRNA
12656                            lincRNA
12657                            lincRNA
12658                            lincRNA
12659                            lincRNA
12660                     protein_coding
12661                     protein_coding
12662                     protein_coding
12663                     protein_coding
12664                     protein_coding
12665                     protein_coding
12666                     protein_coding
12667                     protein_coding
12668                     protein_coding
12669                     protein_coding
12670                     protein_coding
12671                     protein_coding
12672                     protein_coding
12673                     protein_coding
12674                     protein_coding
12675                     protein_coding
12676                     protein_coding
12677                     protein_coding
12678                     protein_coding
12679                     protein_coding
12680                     protein_coding
12681                     protein_coding
12682                     protein_coding
12683                     protein_coding
12684                     protein_coding
12685                     protein_coding
12686                     protein_coding
12687                     protein_coding
12688                     protein_coding
12689                     protein_coding
12690                     protein_coding
12691                     protein_coding
12692                     protein_coding
12693                     protein_coding
12694                     protein_coding
12695                     protein_coding
12696                     protein_coding
12697                     protein_coding
12698                     protein_coding
12699                     protein_coding
12700                     protein_coding
12701                     protein_coding
12702                     protein_coding
12703                     protein_coding
12704                     protein_coding
12705                     protein_coding
12706                     protein_coding
12707                     protein_coding
12708                     protein_coding
12709                     protein_coding
12710                     protein_coding
12711                     protein_coding
12712                     protein_coding
12713                     protein_coding
12714                     protein_coding
12715                     protein_coding
12716                     protein_coding
12717                     protein_coding
12718                     protein_coding
12719                     protein_coding
12720                     protein_coding
12721                     protein_coding
12722                     protein_coding
12723                     protein_coding
12724                     protein_coding
12725                     protein_coding
12726                     protein_coding
12727                     protein_coding
12728                     protein_coding
12729                     protein_coding
12730                     protein_coding
12731                     protein_coding
12732                     protein_coding
12733                     protein_coding
12734                     protein_coding
12735                     protein_coding
12736                     protein_coding
12737                     protein_coding
12738                     protein_coding
12739                     protein_coding
12740                     protein_coding
12741                     protein_coding
12742                     protein_coding
12743                     protein_coding
12744                     protein_coding
12745                     protein_coding
12746                     protein_coding
12747                     protein_coding
12748                     protein_coding
12749                     protein_coding
12750                            lincRNA
12751                            lincRNA
12752                            lincRNA
12753                            lincRNA
12754                            lincRNA
12755                            lincRNA
12756                            lincRNA
12757                            lincRNA
12758                            lincRNA
12759                            lincRNA
12760                            lincRNA
12761                            lincRNA
12762             unprocessed_pseudogene
12763             unprocessed_pseudogene
12764             unprocessed_pseudogene
12765                            lincRNA
12766                            lincRNA
12767                                TEC
12768               processed_pseudogene
12769                          antisense
12770                          antisense
12771                     protein_coding
12772                     protein_coding
12773                     protein_coding
12774                     protein_coding
12775                     protein_coding
12776                     protein_coding
12777                     protein_coding
12778                     protein_coding
12779                     protein_coding
12780                     protein_coding
12781                     protein_coding
12782                     protein_coding
12783                     protein_coding
12784                     protein_coding
12785                     protein_coding
12786                     protein_coding
12787                     protein_coding
12788                     protein_coding
12789                     protein_coding
12790                     protein_coding
12791                     protein_coding
12792                     protein_coding
12793                     protein_coding
12794                     protein_coding
12795                     protein_coding
12796                     protein_coding
12797                     protein_coding
12798                     protein_coding
12799               processed_pseudogene
12800               processed_pseudogene
12801                     protein_coding
12802                     protein_coding
12803                     protein_coding
12804                     protein_coding
12805                     protein_coding
12806                     protein_coding
12807                     protein_coding
12808                     protein_coding
12809                     protein_coding
12810                     protein_coding
12811                     protein_coding
12812                     protein_coding
12813                     protein_coding
12814                     protein_coding
12815                     protein_coding
12816                     protein_coding
12817                     protein_coding
12818                     protein_coding
12819           3prime_overlapping_ncRNA
12820           3prime_overlapping_ncRNA
12821           3prime_overlapping_ncRNA
12822           3prime_overlapping_ncRNA
12823               processed_transcript
12824               processed_transcript
12825               processed_transcript
12826               processed_transcript
12827               processed_transcript
12828               processed_transcript
12829               processed_transcript
12830               processed_transcript
12831               processed_transcript
12832               processed_transcript
12833               processed_transcript
12834               processed_transcript
12835               processed_transcript
12836               processed_transcript
12837               processed_transcript
12838               processed_transcript
12839                     protein_coding
12840                     protein_coding
12841                     protein_coding
12842                     protein_coding
12843                     protein_coding
12844                     protein_coding
12845                     protein_coding
12846               processed_pseudogene
12847                            lincRNA
12848                            lincRNA
12849                            lincRNA
12850                            lincRNA
12851                            lincRNA
12852                            lincRNA
12853                            lincRNA
12854                            lincRNA
12855                            lincRNA
12856                            lincRNA
12857                            lincRNA
12858                            lincRNA
12859                            lincRNA
12860                            lincRNA
12861                            lincRNA
12862                            lincRNA
12863                            lincRNA
12864                            lincRNA
12865                            lincRNA
12866                            lincRNA
12867                            lincRNA
12868                            lincRNA
12869                            lincRNA
12870                            lincRNA
12871                            lincRNA
12872                     protein_coding
12873             unprocessed_pseudogene
12874             unprocessed_pseudogene
12875                            lincRNA
12876                            lincRNA
12877                            lincRNA
12878                            lincRNA
12879                            lincRNA
12880                            lincRNA
12881                     protein_coding
12882                     protein_coding
12883                     protein_coding
12884                     protein_coding
12885                     protein_coding
12886                     protein_coding
12887                     protein_coding
12888                     protein_coding
12889                     protein_coding
12890                     protein_coding
12891                     protein_coding
12892                     protein_coding
12893                     protein_coding
12894                     protein_coding
12895                     protein_coding
12896                     protein_coding
12897                     protein_coding
12898                     protein_coding
12899                     protein_coding
12900                     protein_coding
12901                     protein_coding
12902                     protein_coding
12903                     protein_coding
12904                     protein_coding
12905                     protein_coding
12906                     protein_coding
12907                     protein_coding
12908                     protein_coding
12909                     protein_coding
12910                     protein_coding
12911                     protein_coding
12912                     protein_coding
12913                     protein_coding
12914                     protein_coding
12915                     protein_coding
12916                     protein_coding
12917                          antisense
12918                          antisense
12919                          antisense
12920                          antisense
12921                          antisense
12922                          antisense
12923                            lincRNA
12924                            lincRNA
12925                            lincRNA
12926               processed_pseudogene
12927                            lincRNA
12928                            lincRNA
12929                          antisense
12930                          antisense
12931               processed_pseudogene
12932                            lincRNA
12933                            lincRNA
12934                            lincRNA
12935                            lincRNA
12936                            lincRNA
12937               processed_transcript
12938               processed_transcript
12939               processed_transcript
12940               processed_transcript
12941               processed_transcript
12942               processed_transcript
12943               processed_transcript
12944               processed_transcript
12945               processed_transcript
12946               processed_transcript
12947               processed_transcript
12948               processed_transcript
12949               processed_transcript
12950               processed_transcript
12951               processed_transcript
12952               processed_transcript
12953               processed_transcript
12954               processed_transcript
12955               processed_transcript
12956               processed_transcript
12957               processed_transcript
12958               processed_transcript
12959               processed_transcript
12960               processed_transcript
12961               processed_transcript
12962               processed_transcript
12963               processed_transcript
12964               processed_transcript
12965               processed_transcript
12966               processed_transcript
12967               processed_transcript
12968               processed_transcript
12969               processed_transcript
12970               processed_transcript
12971               processed_transcript
12972               processed_transcript
12973               processed_transcript
12974               processed_transcript
12975               processed_transcript
12976               processed_transcript
12977               processed_transcript
12978               processed_transcript
12979               processed_transcript
12980               processed_transcript
12981               processed_transcript
12982               processed_transcript
12983               processed_transcript
12984               processed_transcript
12985               processed_transcript
12986               processed_transcript
12987               processed_transcript
12988               processed_transcript
12989               processed_transcript
12990               processed_transcript
12991               processed_transcript
12992               processed_transcript
12993               processed_transcript
12994                                TEC
12995               processed_pseudogene
12996                                TEC
12997                     protein_coding
12998                     protein_coding
12999                     protein_coding
13000                     protein_coding
13001                     protein_coding
13002                     protein_coding
13003                     protein_coding
13004                     protein_coding
13005                     protein_coding
13006                     protein_coding
13007                     protein_coding
13008                     protein_coding
13009                     protein_coding
13010                     protein_coding
13011                     protein_coding
13012                     protein_coding
13013                     protein_coding
13014                     protein_coding
13015                     protein_coding
13016                     protein_coding
13017                     protein_coding
13018                     protein_coding
13019                     protein_coding
13020                     protein_coding
13021                     protein_coding
13022                     protein_coding
13023                     protein_coding
13024                     protein_coding
13025                     protein_coding
13026                     protein_coding
13027                     protein_coding
13028                     protein_coding
13029                     protein_coding
13030                     protein_coding
13031                     protein_coding
13032                     protein_coding
13033                     protein_coding
13034                     protein_coding
13035                     protein_coding
13036                     protein_coding
13037                     protein_coding
13038                     protein_coding
13039                     protein_coding
13040                     protein_coding
13041                     protein_coding
13042                     protein_coding
13043                     protein_coding
13044                     protein_coding
13045                     protein_coding
13046                     protein_coding
13047                     protein_coding
13048                     protein_coding
13049                     protein_coding
13050                     protein_coding
13051                     protein_coding
13052                     protein_coding
13053                     protein_coding
13054                     protein_coding
13055                     protein_coding
13056                     protein_coding
13057                     protein_coding
13058                     protein_coding
13059                     protein_coding
13060                     protein_coding
13061                     protein_coding
13062                     protein_coding
13063                     protein_coding
13064                     protein_coding
13065                     protein_coding
13066                     protein_coding
13067                     protein_coding
13068                     protein_coding
13069                     protein_coding
13070                     protein_coding
13071                     protein_coding
13072                     protein_coding
13073                     protein_coding
13074                     protein_coding
13075                     protein_coding
13076                     protein_coding
13077                     protein_coding
13078                     protein_coding
13079                     protein_coding
13080                     protein_coding
13081                     protein_coding
13082                     protein_coding
13083                     protein_coding
13084                     protein_coding
13085                     protein_coding
13086                     protein_coding
13087                     protein_coding
13088                     protein_coding
13089                     protein_coding
13090                     protein_coding
13091                     protein_coding
13092                     protein_coding
13093                     protein_coding
13094                     protein_coding
13095                     protein_coding
13096                     protein_coding
13097                     protein_coding
13098                     protein_coding
13099                     protein_coding
13100                     protein_coding
13101                     protein_coding
13102                     protein_coding
13103                     protein_coding
13104                     protein_coding
13105                     protein_coding
13106                     protein_coding
13107                     protein_coding
13108                     protein_coding
13109                     protein_coding
13110                     protein_coding
13111                     protein_coding
13112                     protein_coding
13113                     protein_coding
13114                     protein_coding
13115                     protein_coding
13116                     protein_coding
13117                     protein_coding
13118                     protein_coding
13119                     protein_coding
13120                     protein_coding
13121                     protein_coding
13122                     protein_coding
13123                     protein_coding
13124                     protein_coding
13125                     protein_coding
13126                     protein_coding
13127                     protein_coding
13128                     protein_coding
13129                     protein_coding
13130                     protein_coding
13131                     protein_coding
13132                     protein_coding
13133                     protein_coding
13134                     protein_coding
13135                     protein_coding
13136                     protein_coding
13137                     protein_coding
13138                     protein_coding
13139                     protein_coding
13140                     protein_coding
13141                     protein_coding
13142                     protein_coding
13143                     protein_coding
13144                     protein_coding
13145                     protein_coding
13146                     protein_coding
13147                     protein_coding
13148                     protein_coding
13149                     protein_coding
13150                     protein_coding
13151                     protein_coding
13152                     protein_coding
13153                     protein_coding
13154                     protein_coding
13155                     protein_coding
13156                     protein_coding
13157                     protein_coding
13158                     protein_coding
13159                     protein_coding
13160                     protein_coding
13161                     protein_coding
13162                     protein_coding
13163                     protein_coding
13164                     protein_coding
13165                     protein_coding
13166                     protein_coding
13167                     protein_coding
13168                     protein_coding
13169                     protein_coding
13170                     protein_coding
13171                     protein_coding
13172                     protein_coding
13173                     protein_coding
13174                          antisense
13175                          antisense
13176                          antisense
13177                          antisense
13178                          antisense
13179                     protein_coding
13180                     protein_coding
13181                     protein_coding
13182                     protein_coding
13183                     protein_coding
13184                     protein_coding
13185                     protein_coding
13186                     protein_coding
13187                     protein_coding
13188                     protein_coding
13189                     protein_coding
13190                     protein_coding
13191                     protein_coding
13192                     protein_coding
13193                     protein_coding
13194               processed_pseudogene
13195               processed_pseudogene
13196               processed_pseudogene
13197               processed_pseudogene
13198                     protein_coding
13199                     protein_coding
13200                     protein_coding
13201                     protein_coding
13202                     protein_coding
13203                     protein_coding
13204                     protein_coding
13205                     protein_coding
13206                     protein_coding
13207                     protein_coding
13208                     protein_coding
13209                     protein_coding
13210                     protein_coding
13211                     protein_coding
13212                     protein_coding
13213                     protein_coding
13214                     protein_coding
13215                     protein_coding
13216                     protein_coding
13217                     protein_coding
13218                     protein_coding
13219                     protein_coding
13220                     protein_coding
13221                     protein_coding
13222                     protein_coding
13223                     protein_coding
13224                     protein_coding
13225                     protein_coding
13226                     protein_coding
13227                     protein_coding
13228                     protein_coding
13229                     protein_coding
13230                     protein_coding
13231               processed_pseudogene
13232                            lincRNA
13233                            lincRNA
13234                     sense_intronic
13235                     sense_intronic
13236                     sense_intronic
13237                     sense_intronic
13238                     sense_intronic
13239               processed_pseudogene
13240                            lincRNA
13241                            lincRNA
13242                            lincRNA
13243                            lincRNA
13244                            lincRNA
13245                            lincRNA
13246                            lincRNA
13247                            lincRNA
13248                            lincRNA
13249                            lincRNA
13250                            lincRNA
13251                            lincRNA
13252                            lincRNA
13253                            lincRNA
13254                            lincRNA
13255                            lincRNA
13256                            lincRNA
13257                            lincRNA
13258                            lincRNA
13259                            lincRNA
13260                            lincRNA
13261                            lincRNA
13262                            lincRNA
13263                            lincRNA
13264                            lincRNA
13265                            lincRNA
13266                            lincRNA
13267                            lincRNA
13268                            lincRNA
13269                            lincRNA
13270                            lincRNA
13271                            lincRNA
13272                            lincRNA
13273                            lincRNA
13274                            lincRNA
13275                            lincRNA
13276                            lincRNA
13277                            lincRNA
13278                            lincRNA
13279                            lincRNA
13280                            lincRNA
13281                            lincRNA
13282                            lincRNA
13283                            lincRNA
13284                            lincRNA
13285                            lincRNA
13286                            lincRNA
13287                            lincRNA
13288                            lincRNA
13289                            lincRNA
13290                            lincRNA
13291                            lincRNA
13292                            lincRNA
13293                            lincRNA
13294                            lincRNA
13295                            lincRNA
13296                            lincRNA
13297                            lincRNA
13298                            lincRNA
13299                            lincRNA
13300                            lincRNA
13301                            lincRNA
13302                            lincRNA
13303                            lincRNA
13304                            lincRNA
13305                            lincRNA
13306                            lincRNA
13307                            lincRNA
13308                            lincRNA
13309                            lincRNA
13310                            lincRNA
13311                          antisense
13312                          antisense
13313                          antisense
13314                          antisense
13315                            lincRNA
13316                            lincRNA
13317                          antisense
13318                          antisense
13319                          antisense
13320                          antisense
13321                          antisense
13322                     protein_coding
13323             unprocessed_pseudogene
13324               processed_pseudogene
13325                     protein_coding
13326                     protein_coding
13327                     protein_coding
13328                     protein_coding
13329                     protein_coding
13330                     protein_coding
13331                     protein_coding
13332                     protein_coding
13333                     protein_coding
13334                     protein_coding
13335                     protein_coding
13336                     protein_coding
13337                     protein_coding
13338                     protein_coding
13339                     protein_coding
13340                     protein_coding
13341                     protein_coding
13342                     protein_coding
13343                     protein_coding
13344                     protein_coding
13345                     protein_coding
13346                     protein_coding
13347                     protein_coding
13348                     protein_coding
13349                     protein_coding
13350                     protein_coding
13351                     protein_coding
13352                     protein_coding
13353                     protein_coding
13354                     protein_coding
13355                     protein_coding
13356                     protein_coding
13357                     protein_coding
13358                     protein_coding
13359                     protein_coding
13360                     protein_coding
13361                     protein_coding
13362                     protein_coding
13363                     protein_coding
13364                     protein_coding
13365                     protein_coding
13366                     protein_coding
13367                     protein_coding
13368                     protein_coding
13369                     protein_coding
13370                     protein_coding
13371                     protein_coding
13372                     protein_coding
13373                     protein_coding
13374                     protein_coding
13375                     protein_coding
13376                     protein_coding
13377                     protein_coding
13378                     protein_coding
13379                     protein_coding
13380                     protein_coding
13381                     protein_coding
13382                     protein_coding
13383                     protein_coding
13384                     protein_coding
13385                     protein_coding
13386                     protein_coding
13387                     protein_coding
13388                     protein_coding
13389                     protein_coding
13390                     protein_coding
13391                     protein_coding
13392                     protein_coding
13393                     protein_coding
13394                     protein_coding
13395                     protein_coding
13396                     protein_coding
13397                     protein_coding
13398                     protein_coding
13399                     protein_coding
13400                     protein_coding
13401                     protein_coding
13402                     protein_coding
13403                     protein_coding
13404                     protein_coding
13405                     protein_coding
13406                     protein_coding
13407                     protein_coding
13408                     protein_coding
13409                     protein_coding
13410                     protein_coding
13411                     protein_coding
13412                     protein_coding
13413                     protein_coding
13414                     protein_coding
13415                     protein_coding
13416                     protein_coding
13417                     protein_coding
13418                     protein_coding
13419                     protein_coding
13420                     protein_coding
13421                     protein_coding
13422                     protein_coding
13423                            lincRNA
13424                            lincRNA
13425                            lincRNA
13426                            lincRNA
13427                            lincRNA
13428                            lincRNA
13429                            lincRNA
13430 transcribed_unprocessed_pseudogene
13431 transcribed_unprocessed_pseudogene
13432 transcribed_unprocessed_pseudogene
13433 transcribed_unprocessed_pseudogene
13434 transcribed_unprocessed_pseudogene
13435 transcribed_unprocessed_pseudogene
13436 transcribed_unprocessed_pseudogene
13437 transcribed_unprocessed_pseudogene
13438 transcribed_unprocessed_pseudogene
13439 transcribed_unprocessed_pseudogene
13440             unprocessed_pseudogene
13441             unprocessed_pseudogene
13442               processed_pseudogene
13443             unprocessed_pseudogene
13444             unprocessed_pseudogene
13445             unprocessed_pseudogene
13446             unprocessed_pseudogene
13447             unprocessed_pseudogene
13448             unprocessed_pseudogene
13449             unprocessed_pseudogene
13450             unprocessed_pseudogene
13451             unprocessed_pseudogene
13452               processed_pseudogene
13453                            lincRNA
13454                            lincRNA
13455                            lincRNA
13456                     protein_coding
13457               processed_pseudogene
13458               processed_pseudogene
13459                          antisense
13460               processed_pseudogene
13461               processed_pseudogene
13462             unprocessed_pseudogene
13463             unprocessed_pseudogene
13464             unprocessed_pseudogene
13465             unprocessed_pseudogene
13466                            lincRNA
13467                            lincRNA
13468                            lincRNA
13469                            lincRNA
13470                            lincRNA
13471                            lincRNA
13472                            lincRNA
13473                            lincRNA
13474                            lincRNA
13475                            lincRNA
13476                            lincRNA
13477                            lincRNA
13478                            lincRNA
13479                            lincRNA
13480                            lincRNA
13481                            lincRNA
13482                            lincRNA
13483                            lincRNA
13484                            lincRNA
13485                            lincRNA
13486                            lincRNA
13487                            lincRNA
13488                            lincRNA
13489                            lincRNA
13490               processed_pseudogene
13491                            lincRNA
13492                            lincRNA
13493                            lincRNA
13494               processed_pseudogene
13495               processed_pseudogene
13496               processed_pseudogene
13497               processed_pseudogene
13498                            lincRNA
13499                            lincRNA
13500                            lincRNA
13501                            lincRNA
13502               processed_pseudogene
13503               processed_pseudogene
13504               processed_pseudogene
13505                            lincRNA
13506             unprocessed_pseudogene
13507             unprocessed_pseudogene
13508             unprocessed_pseudogene
13509             unprocessed_pseudogene
13510             unprocessed_pseudogene
13511             unprocessed_pseudogene
13512             unprocessed_pseudogene
13513             unprocessed_pseudogene
13514             unprocessed_pseudogene
13515             unprocessed_pseudogene
13516             unprocessed_pseudogene
13517             unprocessed_pseudogene
13518                     protein_coding
13519                     protein_coding
13520                     protein_coding
13521                     protein_coding
13522                     protein_coding
13523                     protein_coding
13524                     protein_coding
13525                     protein_coding
13526                     protein_coding
13527                     protein_coding
13528                     protein_coding
13529                     protein_coding
13530                     protein_coding
13531                     protein_coding
13532                     protein_coding
13533                     protein_coding
13534                     protein_coding
13535                     protein_coding
13536                     protein_coding
13537                     protein_coding
13538                     protein_coding
13539                     protein_coding
13540                     protein_coding
13541                     protein_coding
13542                     protein_coding
13543                     protein_coding
13544                     protein_coding
13545                     protein_coding
13546                     protein_coding
13547                            lincRNA
13548                            lincRNA
13549                            lincRNA
13550                            lincRNA
13551                            lincRNA
13552                            lincRNA
13553                            lincRNA
13554                            lincRNA
13555                            lincRNA
13556   transcribed_processed_pseudogene
13557   transcribed_processed_pseudogene
13558   transcribed_processed_pseudogene
13559   transcribed_processed_pseudogene
13560   transcribed_processed_pseudogene
13561   transcribed_processed_pseudogene
13562   transcribed_processed_pseudogene
13563   transcribed_processed_pseudogene
13564   transcribed_processed_pseudogene
13565   transcribed_processed_pseudogene
13566   transcribed_processed_pseudogene
13567   transcribed_processed_pseudogene
13568                                TEC
13569                            lincRNA
13570                            lincRNA
13571                            lincRNA
13572                            lincRNA
13573                          antisense
13574                          antisense
13575                          antisense
13576                          antisense
13577                          antisense
13578                          antisense
13579                          antisense
13580                          antisense
13581               processed_pseudogene
13582               processed_pseudogene
13583                            lincRNA
13584                            lincRNA
13585               processed_pseudogene
13586                          antisense
13587                          antisense
13588                            lincRNA
13589                            lincRNA
13590                            lincRNA
13591                            lincRNA
13592                     protein_coding
13593                     protein_coding
13594                     protein_coding
13595                     protein_coding
13596                     protein_coding
13597                     protein_coding
13598                     protein_coding
13599                     protein_coding
13600                     protein_coding
13601                     protein_coding
13602                     protein_coding
13603                     protein_coding
13604                     protein_coding
13605                     protein_coding
13606                     protein_coding
13607                     protein_coding
13608                     protein_coding
13609                     protein_coding
13610                     protein_coding
13611                     protein_coding
13612                     protein_coding
13613                     protein_coding
13614                     protein_coding
13615                     protein_coding
13616                     protein_coding
13617                     protein_coding
13618                     protein_coding
13619                     protein_coding
13620                     protein_coding
13621                     protein_coding
13622                     protein_coding
13623                     protein_coding
13624                     protein_coding
13625                     protein_coding
13626                     protein_coding
13627                     protein_coding
13628                     protein_coding
13629                     protein_coding
13630                     protein_coding
13631                     protein_coding
13632                     protein_coding
13633                     protein_coding
13634                     protein_coding
13635                     protein_coding
13636                     protein_coding
13637                     protein_coding
13638                     protein_coding
13639                     protein_coding
13640                     protein_coding
13641                     protein_coding
13642                     protein_coding
13643                     protein_coding
13644                     protein_coding
13645                     protein_coding
13646                     protein_coding
13647                     protein_coding
13648                     protein_coding
13649                     protein_coding
13650                     protein_coding
13651                     protein_coding
13652                     protein_coding
13653                     protein_coding
13654                     protein_coding
13655                     protein_coding
13656                     protein_coding
13657                     protein_coding
13658                     protein_coding
13659                     protein_coding
13660                     protein_coding
13661                     protein_coding
13662                     protein_coding
13663                     protein_coding
13664                     protein_coding
13665                     protein_coding
13666                     protein_coding
13667                     protein_coding
13668                     protein_coding
13669                     protein_coding
13670                     protein_coding
13671                     protein_coding
13672                     protein_coding
13673                     protein_coding
13674                     protein_coding
13675                     protein_coding
13676                     protein_coding
13677                     protein_coding
13678                     protein_coding
13679                     protein_coding
13680                     protein_coding
13681                     protein_coding
13682                     protein_coding
13683                     protein_coding
13684                     protein_coding
13685                     protein_coding
13686                     protein_coding
13687                     protein_coding
13688                     protein_coding
13689                     protein_coding
13690                     protein_coding
13691                     protein_coding
13692                     protein_coding
13693                     protein_coding
13694                     protein_coding
13695                     protein_coding
13696                     protein_coding
13697                     protein_coding
13698                     protein_coding
13699                     protein_coding
13700                     protein_coding
13701                     protein_coding
13702                     protein_coding
13703                     protein_coding
13704                     protein_coding
13705                     protein_coding
13706                     protein_coding
13707                     protein_coding
13708                     protein_coding
13709                     protein_coding
13710                     protein_coding
13711                     protein_coding
13712                     protein_coding
13713                     protein_coding
13714                     protein_coding
13715                     protein_coding
13716                     protein_coding
13717                     protein_coding
13718                     protein_coding
13719                     protein_coding
13720                     protein_coding
13721                     protein_coding
13722                     protein_coding
13723                     protein_coding
13724                     protein_coding
13725                     protein_coding
13726                     protein_coding
13727                     protein_coding
13728                     protein_coding
13729                     protein_coding
13730                     protein_coding
13731                     protein_coding
13732                     protein_coding
13733                     protein_coding
13734                     protein_coding
13735                     protein_coding
13736                     protein_coding
13737                     protein_coding
13738                     protein_coding
13739                     protein_coding
13740                     protein_coding
13741                     protein_coding
13742                     protein_coding
13743                     protein_coding
13744                     protein_coding
13745                     protein_coding
13746                     protein_coding
13747                     protein_coding
13748                     protein_coding
13749                     protein_coding
13750                     protein_coding
13751                     protein_coding
13752                     protein_coding
13753                     protein_coding
13754                     protein_coding
13755                     protein_coding
13756                     protein_coding
13757                     protein_coding
13758                     protein_coding
13759                     protein_coding
13760                     protein_coding
13761                     protein_coding
13762                     protein_coding
13763                     protein_coding
13764                     protein_coding
13765                     protein_coding
13766                     protein_coding
13767                     protein_coding
13768                     protein_coding
13769                     protein_coding
13770                     protein_coding
13771                     protein_coding
13772                     protein_coding
13773                     protein_coding
13774                     protein_coding
13775                     protein_coding
13776                     protein_coding
13777                     protein_coding
13778                     protein_coding
13779                     protein_coding
13780                     protein_coding
13781                     protein_coding
13782                     protein_coding
13783                     protein_coding
13784                     protein_coding
13785                     protein_coding
13786                     protein_coding
13787                     protein_coding
13788                     protein_coding
13789                     protein_coding
13790                     protein_coding
13791                     protein_coding
13792                     protein_coding
13793                     protein_coding
13794                     protein_coding
13795                     protein_coding
13796                     protein_coding
13797                     protein_coding
13798                     protein_coding
13799                     protein_coding
13800                     protein_coding
13801                     protein_coding
13802                     protein_coding
13803                     protein_coding
13804                     protein_coding
13805                     protein_coding
13806                     protein_coding
13807                     protein_coding
13808                     protein_coding
13809                     protein_coding
13810                     protein_coding
13811                     protein_coding
13812                     protein_coding
13813                     protein_coding
13814                     protein_coding
13815                     protein_coding
13816                     protein_coding
13817                     protein_coding
13818                     protein_coding
13819                     protein_coding
13820                     protein_coding
13821                     protein_coding
13822                     protein_coding
13823                     protein_coding
13824                     protein_coding
13825                     protein_coding
13826                     protein_coding
13827                     protein_coding
13828                     protein_coding
13829                     protein_coding
13830                     protein_coding
13831                     protein_coding
13832                     protein_coding
13833                     protein_coding
13834                     protein_coding
13835                     protein_coding
13836                     protein_coding
13837                     protein_coding
13838                     protein_coding
13839                     protein_coding
13840                     protein_coding
13841                     protein_coding
13842                     protein_coding
13843                     protein_coding
13844                     protein_coding
13845                     protein_coding
13846                     protein_coding
13847                     protein_coding
13848                     protein_coding
13849                     protein_coding
13850                     protein_coding
13851                     protein_coding
13852                     protein_coding
13853                     protein_coding
13854                     protein_coding
13855                     protein_coding
13856                     protein_coding
13857                     protein_coding
13858                     protein_coding
13859                     protein_coding
13860                     protein_coding
13861                     protein_coding
13862                     protein_coding
13863                     protein_coding
13864                     protein_coding
13865                     protein_coding
13866                     protein_coding
13867                     protein_coding
13868                     protein_coding
13869                     protein_coding
13870                     protein_coding
13871                     protein_coding
13872                     protein_coding
13873                     protein_coding
13874                     protein_coding
13875                     protein_coding
13876                     protein_coding
13877                     protein_coding
13878                     protein_coding
13879                     protein_coding
13880                     protein_coding
13881                     protein_coding
13882                     protein_coding
13883 transcribed_unprocessed_pseudogene
13884 transcribed_unprocessed_pseudogene
13885 transcribed_unprocessed_pseudogene
13886 transcribed_unprocessed_pseudogene
13887 transcribed_unprocessed_pseudogene
13888 transcribed_unprocessed_pseudogene
13889 transcribed_unprocessed_pseudogene
13890 transcribed_unprocessed_pseudogene
13891 transcribed_unprocessed_pseudogene
13892 transcribed_unprocessed_pseudogene
13893 transcribed_unprocessed_pseudogene
13894 transcribed_unprocessed_pseudogene
13895 transcribed_unprocessed_pseudogene
13896 transcribed_unprocessed_pseudogene
13897 transcribed_unprocessed_pseudogene
13898 transcribed_unprocessed_pseudogene
13899 transcribed_unprocessed_pseudogene
13900 transcribed_unprocessed_pseudogene
13901 transcribed_unprocessed_pseudogene
13902 transcribed_unprocessed_pseudogene
13903 transcribed_unprocessed_pseudogene
13904 transcribed_unprocessed_pseudogene
13905             unprocessed_pseudogene
13906   transcribed_processed_pseudogene
13907   transcribed_processed_pseudogene
13908                     protein_coding
13909                     protein_coding
13910             unprocessed_pseudogene
13911                     protein_coding
13912                     protein_coding
13913                     protein_coding
13914                     protein_coding
13915                     sense_intronic
13916                     sense_intronic
13917                     protein_coding
13918                     protein_coding
13919               processed_pseudogene
13920                     protein_coding
13921                     protein_coding
13922                     protein_coding
13923                     protein_coding
13924                     protein_coding
13925                            lincRNA
13926                            lincRNA
13927                            lincRNA
13928                            lincRNA
13929                            lincRNA
13930                            lincRNA
13931                            lincRNA
13932                            lincRNA
13933   transcribed_processed_pseudogene
13934   transcribed_processed_pseudogene
13935   transcribed_processed_pseudogene
13936   transcribed_processed_pseudogene
13937                              snRNA
13938                           misc_RNA
13939                           misc_RNA
13940                           misc_RNA
13941                              snRNA
13942                              miRNA
13943                           misc_RNA
13944                           misc_RNA
13945                              snRNA
13946                             snoRNA
13947                              snRNA
13948                               rRNA
13949                              miRNA
13950                           misc_RNA
13951                              snRNA
13952                              snRNA
13953                              snRNA
13954                              miRNA
13955                             snoRNA
13956                              miRNA
13957                              miRNA
13958                              miRNA
13959                           misc_RNA
13960                             snoRNA
13961                             snoRNA
13962                               rRNA
13963                           misc_RNA
13964                              miRNA
13965                             snoRNA
13966                              miRNA
13967                             snoRNA
13968                             snoRNA
13969                               rRNA
13970                             snoRNA
13971                              miRNA
13972                              snRNA
13973                              snRNA
13974                           misc_RNA
13975                               rRNA
13976                               rRNA
13977                           misc_RNA
13978                              snRNA

select() helper functions

select() has many helper functions

  • contains(), starts_with(), ends_with() for literal strings
  • matches() for regex
  • one_of() variables in a character vector
  • everything() all remaining variable
  • Can be combined
gene_by_exon %>%
  dplyr::select(hgnc_symbol, 
                starts_with("ensembl"),
                contains("position"),
                -contains("exon"))
       hgnc_symbol ensembl_gene_id ensembl_transcript_id start_position
1                  ENSG00000264452       ENST00000583496       44439035
2                  ENSG00000274046       ENST00000617336        7092616
3                  ENSG00000278775       ENST00000619112        8433085
4                  ENSG00000276873       ENST00000616808       39171462
5                  ENSG00000236545       ENST00000458654       41870633
6                  ENSG00000236545       ENST00000458654       41870633
7            ITGB2 ENSG00000160255       ENST00000302347       44885953
8            ITGB2 ENSG00000160255       ENST00000302347       44885953
9            ITGB2 ENSG00000160255       ENST00000302347       44885953
10           ITGB2 ENSG00000160255       ENST00000302347       44885953
11           ITGB2 ENSG00000160255       ENST00000302347       44885953
12           ITGB2 ENSG00000160255       ENST00000302347       44885953
13           ITGB2 ENSG00000160255       ENST00000302347       44885953
14           ITGB2 ENSG00000160255       ENST00000302347       44885953
15           ITGB2 ENSG00000160255       ENST00000302347       44885953
16           ITGB2 ENSG00000160255       ENST00000302347       44885953
17           ITGB2 ENSG00000160255       ENST00000302347       44885953
18           ITGB2 ENSG00000160255       ENST00000302347       44885953
19           ITGB2 ENSG00000160255       ENST00000302347       44885953
20           ITGB2 ENSG00000160255       ENST00000302347       44885953
21           ITGB2 ENSG00000160255       ENST00000302347       44885953
22           ITGB2 ENSG00000160255       ENST00000302347       44885953
23           ITGB2 ENSG00000160255       ENST00000518033       44885953
24           ITGB2 ENSG00000160255       ENST00000518033       44885953
25           ITGB2 ENSG00000160255       ENST00000523126       44885953
26           ITGB2 ENSG00000160255       ENST00000523126       44885953
27           ITGB2 ENSG00000160255       ENST00000521995       44885953
28           ITGB2 ENSG00000160255       ENST00000521995       44885953
29           ITGB2 ENSG00000160255       ENST00000521995       44885953
30           ITGB2 ENSG00000160255       ENST00000521995       44885953
31           ITGB2 ENSG00000160255       ENST00000397846       44885953
32           ITGB2 ENSG00000160255       ENST00000397846       44885953
33           ITGB2 ENSG00000160255       ENST00000397846       44885953
34           ITGB2 ENSG00000160255       ENST00000397846       44885953
35           ITGB2 ENSG00000160255       ENST00000479849       44885953
36           ITGB2 ENSG00000160255       ENST00000479849       44885953
37           ITGB2 ENSG00000160255       ENST00000479849       44885953
38           ITGB2 ENSG00000160255       ENST00000517819       44885953
39           ITGB2 ENSG00000160255       ENST00000517819       44885953
40           ITGB2 ENSG00000160255       ENST00000517819       44885953
41           ITGB2 ENSG00000160255       ENST00000517819       44885953
42           ITGB2 ENSG00000160255       ENST00000524251       44885953
43           ITGB2 ENSG00000160255       ENST00000524251       44885953
44           ITGB2 ENSG00000160255       ENST00000524251       44885953
45           ITGB2 ENSG00000160255       ENST00000524251       44885953
46           ITGB2 ENSG00000160255       ENST00000520389       44885953
47           ITGB2 ENSG00000160255       ENST00000520389       44885953
48           ITGB2 ENSG00000160255       ENST00000520389       44885953
49           ITGB2 ENSG00000160255       ENST00000520389       44885953
50           ITGB2 ENSG00000160255       ENST00000520389       44885953
51           ITGB2 ENSG00000160255       ENST00000520389       44885953
52           ITGB2 ENSG00000160255       ENST00000522688       44885953
53           ITGB2 ENSG00000160255       ENST00000522688       44885953
54           ITGB2 ENSG00000160255       ENST00000522688       44885953
55           ITGB2 ENSG00000160255       ENST00000522688       44885953
56           ITGB2 ENSG00000160255       ENST00000522688       44885953
57           ITGB2 ENSG00000160255       ENST00000517563       44885953
58           ITGB2 ENSG00000160255       ENST00000517563       44885953
59           ITGB2 ENSG00000160255       ENST00000517563       44885953
60           ITGB2 ENSG00000160255       ENST00000517563       44885953
61           ITGB2 ENSG00000160255       ENST00000517563       44885953
62           ITGB2 ENSG00000160255       ENST00000517563       44885953
63           ITGB2 ENSG00000160255       ENST00000320216       44885953
64           ITGB2 ENSG00000160255       ENST00000320216       44885953
65           ITGB2 ENSG00000160255       ENST00000320216       44885953
66           ITGB2 ENSG00000160255       ENST00000320216       44885953
67           ITGB2 ENSG00000160255       ENST00000320216       44885953
68           ITGB2 ENSG00000160255       ENST00000320216       44885953
69           ITGB2 ENSG00000160255       ENST00000320216       44885953
70           ITGB2 ENSG00000160255       ENST00000521987       44885953
71           ITGB2 ENSG00000160255       ENST00000521987       44885953
72           ITGB2 ENSG00000160255       ENST00000521987       44885953
73           ITGB2 ENSG00000160255       ENST00000523663       44885953
74           ITGB2 ENSG00000160255       ENST00000523663       44885953
75           ITGB2 ENSG00000160255       ENST00000523663       44885953
76           ITGB2 ENSG00000160255       ENST00000523663       44885953
77           ITGB2 ENSG00000160255       ENST00000523663       44885953
78           ITGB2 ENSG00000160255       ENST00000522931       44885953
79           ITGB2 ENSG00000160255       ENST00000522931       44885953
80           ITGB2 ENSG00000160255       ENST00000522931       44885953
81           ITGB2 ENSG00000160255       ENST00000522931       44885953
82           ITGB2 ENSG00000160255       ENST00000522931       44885953
83           ITGB2 ENSG00000160255       ENST00000479202       44885953
84           ITGB2 ENSG00000160255       ENST00000479202       44885953
85           ITGB2 ENSG00000160255       ENST00000479202       44885953
86           ITGB2 ENSG00000160255       ENST00000523323       44885953
87           ITGB2 ENSG00000160255       ENST00000523323       44885953
88           ITGB2 ENSG00000160255       ENST00000523323       44885953
89           ITGB2 ENSG00000160255       ENST00000523323       44885953
90           ITGB2 ENSG00000160255       ENST00000523323       44885953
91           ITGB2 ENSG00000160255       ENST00000523323       44885953
92           ITGB2 ENSG00000160255       ENST00000523323       44885953
93           ITGB2 ENSG00000160255       ENST00000523323       44885953
94           ITGB2 ENSG00000160255       ENST00000523323       44885953
95           ITGB2 ENSG00000160255       ENST00000523323       44885953
96           ITGB2 ENSG00000160255       ENST00000523323       44885953
97           ITGB2 ENSG00000160255       ENST00000523323       44885953
98           ITGB2 ENSG00000160255       ENST00000523323       44885953
99           ITGB2 ENSG00000160255       ENST00000523323       44885953
100          ITGB2 ENSG00000160255       ENST00000523323       44885953
101          ITGB2 ENSG00000160255       ENST00000523323       44885953
102          ITGB2 ENSG00000160255       ENST00000397850       44885953
103          ITGB2 ENSG00000160255       ENST00000397850       44885953
104          ITGB2 ENSG00000160255       ENST00000397850       44885953
105          ITGB2 ENSG00000160255       ENST00000397850       44885953
106          ITGB2 ENSG00000160255       ENST00000397850       44885953
107          ITGB2 ENSG00000160255       ENST00000397850       44885953
108          ITGB2 ENSG00000160255       ENST00000397850       44885953
109          ITGB2 ENSG00000160255       ENST00000397850       44885953
110          ITGB2 ENSG00000160255       ENST00000397850       44885953
111          ITGB2 ENSG00000160255       ENST00000397850       44885953
112          ITGB2 ENSG00000160255       ENST00000397850       44885953
113          ITGB2 ENSG00000160255       ENST00000397850       44885953
114          ITGB2 ENSG00000160255       ENST00000397850       44885953
115          ITGB2 ENSG00000160255       ENST00000397850       44885953
116          ITGB2 ENSG00000160255       ENST00000397850       44885953
117          ITGB2 ENSG00000160255       ENST00000397850       44885953
118          ITGB2 ENSG00000160255       ENST00000397850       44885953
119          ITGB2 ENSG00000160255       ENST00000355153       44885953
120          ITGB2 ENSG00000160255       ENST00000355153       44885953
121          ITGB2 ENSG00000160255       ENST00000355153       44885953
122          ITGB2 ENSG00000160255       ENST00000355153       44885953
123          ITGB2 ENSG00000160255       ENST00000355153       44885953
124          ITGB2 ENSG00000160255       ENST00000355153       44885953
125          ITGB2 ENSG00000160255       ENST00000355153       44885953
126          ITGB2 ENSG00000160255       ENST00000355153       44885953
127          ITGB2 ENSG00000160255       ENST00000355153       44885953
128          ITGB2 ENSG00000160255       ENST00000355153       44885953
129          ITGB2 ENSG00000160255       ENST00000355153       44885953
130          ITGB2 ENSG00000160255       ENST00000355153       44885953
131          ITGB2 ENSG00000160255       ENST00000355153       44885953
132          ITGB2 ENSG00000160255       ENST00000355153       44885953
133          ITGB2 ENSG00000160255       ENST00000355153       44885953
134          ITGB2 ENSG00000160255       ENST00000355153       44885953
135          ITGB2 ENSG00000160255       ENST00000498666       44885953
136          ITGB2 ENSG00000160255       ENST00000498666       44885953
137          ITGB2 ENSG00000160255       ENST00000498666       44885953
138          ITGB2 ENSG00000160255       ENST00000498666       44885953
139          ITGB2 ENSG00000160255       ENST00000498666       44885953
140          ITGB2 ENSG00000160255       ENST00000498666       44885953
141          ITGB2 ENSG00000160255       ENST00000498666       44885953
142          ITGB2 ENSG00000160255       ENST00000498666       44885953
143          ITGB2 ENSG00000160255       ENST00000498666       44885953
144          ITGB2 ENSG00000160255       ENST00000498666       44885953
145          ITGB2 ENSG00000160255       ENST00000498666       44885953
146          ITGB2 ENSG00000160255       ENST00000498666       44885953
147          ITGB2 ENSG00000160255       ENST00000498666       44885953
148          ITGB2 ENSG00000160255       ENST00000498666       44885953
149          ITGB2 ENSG00000160255       ENST00000498666       44885953
150          ITGB2 ENSG00000160255       ENST00000397857       44885953
151          ITGB2 ENSG00000160255       ENST00000397857       44885953
152          ITGB2 ENSG00000160255       ENST00000397857       44885953
153          ITGB2 ENSG00000160255       ENST00000397857       44885953
154          ITGB2 ENSG00000160255       ENST00000397857       44885953
155          ITGB2 ENSG00000160255       ENST00000397857       44885953
156          ITGB2 ENSG00000160255       ENST00000397857       44885953
157          ITGB2 ENSG00000160255       ENST00000397857       44885953
158          ITGB2 ENSG00000160255       ENST00000397857       44885953
159          ITGB2 ENSG00000160255       ENST00000397857       44885953
160          ITGB2 ENSG00000160255       ENST00000397857       44885953
161          ITGB2 ENSG00000160255       ENST00000397857       44885953
162          ITGB2 ENSG00000160255       ENST00000397857       44885953
163          ITGB2 ENSG00000160255       ENST00000397857       44885953
164          ITGB2 ENSG00000160255       ENST00000397857       44885953
165          ITGB2 ENSG00000160255       ENST00000397857       44885953
166          ITGB2 ENSG00000160255       ENST00000397854       44885953
167          ITGB2 ENSG00000160255       ENST00000397854       44885953
168          ITGB2 ENSG00000160255       ENST00000397854       44885953
169          ITGB2 ENSG00000160255       ENST00000397854       44885953
170          ITGB2 ENSG00000160255       ENST00000397854       44885953
171          ITGB2 ENSG00000160255       ENST00000397854       44885953
172          ITGB2 ENSG00000160255       ENST00000397854       44885953
173          ITGB2 ENSG00000160255       ENST00000397854       44885953
174          ITGB2 ENSG00000160255       ENST00000397854       44885953
175          ITGB2 ENSG00000160255       ENST00000397854       44885953
176          ITGB2 ENSG00000160255       ENST00000397854       44885953
177          ITGB2 ENSG00000160255       ENST00000397854       44885953
178          ITGB2 ENSG00000160255       ENST00000397854       44885953
179          ITGB2 ENSG00000160255       ENST00000397854       44885953
180          ITGB2 ENSG00000160255       ENST00000397854       44885953
181          ITGB2 ENSG00000160255       ENST00000475170       44885953
182          ITGB2 ENSG00000160255       ENST00000475170       44885953
183          ITGB2 ENSG00000160255       ENST00000475170       44885953
184          ITGB2 ENSG00000160255       ENST00000475170       44885953
185          ITGB2 ENSG00000160255       ENST00000475170       44885953
186          ITGB2 ENSG00000160255       ENST00000475170       44885953
187          ITGB2 ENSG00000160255       ENST00000475170       44885953
188          ITGB2 ENSG00000160255       ENST00000397852       44885953
189          ITGB2 ENSG00000160255       ENST00000397852       44885953
190          ITGB2 ENSG00000160255       ENST00000397852       44885953
191          ITGB2 ENSG00000160255       ENST00000397852       44885953
192          ITGB2 ENSG00000160255       ENST00000397852       44885953
193          ITGB2 ENSG00000160255       ENST00000397852       44885953
194          ITGB2 ENSG00000160255       ENST00000397852       44885953
195          ITGB2 ENSG00000160255       ENST00000397852       44885953
196          ITGB2 ENSG00000160255       ENST00000397852       44885953
197          ITGB2 ENSG00000160255       ENST00000397852       44885953
198          ITGB2 ENSG00000160255       ENST00000397852       44885953
199          ITGB2 ENSG00000160255       ENST00000397852       44885953
200          ITGB2 ENSG00000160255       ENST00000397852       44885953
201          ITGB2 ENSG00000160255       ENST00000397852       44885953
202          ITGB2 ENSG00000160255       ENST00000397852       44885953
203      RNA5SP489 ENSG00000238627       ENST00000410986       25202207
204     RNU6-1149P ENSG00000252619       ENST00000516810       42417497
205                ENSG00000281420       ENST00000626421       43748365
206                ENSG00000281420       ENST00000626421       43748365
207         MIR802 ENSG00000211590       ENST00000390235       35720715
208       RNU2-55P ENSG00000223078       ENST00000411146       23281736
209                ENSG00000200754       ENST00000363884       17527140
210                ENSG00000283300       ENST00000637157       28743208
211        MIR4760 ENSG00000263973       ENST00000585040       40212352
212          S100B ENSG00000160307       ENST00000291700       46598962
213          S100B ENSG00000160307       ENST00000291700       46598962
214          S100B ENSG00000160307       ENST00000291700       46598962
215          S100B ENSG00000160307       ENST00000367071       46598962
216          S100B ENSG00000160307       ENST00000367071       46598962
217          S100B ENSG00000160307       ENST00000367071       46598962
218          S100B ENSG00000160307       ENST00000367071       46598962
219          S100B ENSG00000160307       ENST00000397648       46598962
220          S100B ENSG00000160307       ENST00000397648       46598962
221          DIP2A ENSG00000160305       ENST00000400274       46458899
222          DIP2A ENSG00000160305       ENST00000400274       46458899
223          DIP2A ENSG00000160305       ENST00000400274       46458899
224          DIP2A ENSG00000160305       ENST00000400274       46458899
225          DIP2A ENSG00000160305       ENST00000400274       46458899
226          DIP2A ENSG00000160305       ENST00000400274       46458899
227          DIP2A ENSG00000160305       ENST00000400274       46458899
228          DIP2A ENSG00000160305       ENST00000400274       46458899
229          DIP2A ENSG00000160305       ENST00000400274       46458899
230          DIP2A ENSG00000160305       ENST00000400274       46458899
231          DIP2A ENSG00000160305       ENST00000400274       46458899
232          DIP2A ENSG00000160305       ENST00000400274       46458899
233          DIP2A ENSG00000160305       ENST00000400274       46458899
234          DIP2A ENSG00000160305       ENST00000400274       46458899
235          DIP2A ENSG00000160305       ENST00000400274       46458899
236          DIP2A ENSG00000160305       ENST00000400274       46458899
237          DIP2A ENSG00000160305       ENST00000400274       46458899
238          DIP2A ENSG00000160305       ENST00000400274       46458899
239          DIP2A ENSG00000160305       ENST00000400274       46458899
240          DIP2A ENSG00000160305       ENST00000400274       46458899
241          DIP2A ENSG00000160305       ENST00000400274       46458899
242          DIP2A ENSG00000160305       ENST00000400274       46458899
243          DIP2A ENSG00000160305       ENST00000400274       46458899
244          DIP2A ENSG00000160305       ENST00000400274       46458899
245          DIP2A ENSG00000160305       ENST00000400274       46458899
246          DIP2A ENSG00000160305       ENST00000400274       46458899
247          DIP2A ENSG00000160305       ENST00000400274       46458899
248          DIP2A ENSG00000160305       ENST00000400274       46458899
249          DIP2A ENSG00000160305       ENST00000400274       46458899
250          DIP2A ENSG00000160305       ENST00000400274       46458899
251          DIP2A ENSG00000160305       ENST00000400274       46458899
252          DIP2A ENSG00000160305       ENST00000400274       46458899
253          DIP2A ENSG00000160305       ENST00000400274       46458899
254          DIP2A ENSG00000160305       ENST00000400274       46458899
255          DIP2A ENSG00000160305       ENST00000400274       46458899
256          DIP2A ENSG00000160305       ENST00000400274       46458899
257          DIP2A ENSG00000160305       ENST00000400274       46458899
258          DIP2A ENSG00000160305       ENST00000400274       46458899
259          DIP2A ENSG00000160305       ENST00000457905       46458899
260          DIP2A ENSG00000160305       ENST00000457905       46458899
261          DIP2A ENSG00000160305       ENST00000457905       46458899
262          DIP2A ENSG00000160305       ENST00000457905       46458899
263          DIP2A ENSG00000160305       ENST00000457905       46458899
264          DIP2A ENSG00000160305       ENST00000457905       46458899
265          DIP2A ENSG00000160305       ENST00000457905       46458899
266          DIP2A ENSG00000160305       ENST00000457905       46458899
267          DIP2A ENSG00000160305       ENST00000457905       46458899
268          DIP2A ENSG00000160305       ENST00000457905       46458899
269          DIP2A ENSG00000160305       ENST00000457905       46458899
270          DIP2A ENSG00000160305       ENST00000457905       46458899
271          DIP2A ENSG00000160305       ENST00000457905       46458899
272          DIP2A ENSG00000160305       ENST00000457905       46458899
273          DIP2A ENSG00000160305       ENST00000457905       46458899
274          DIP2A ENSG00000160305       ENST00000457905       46458899
275          DIP2A ENSG00000160305       ENST00000457905       46458899
276          DIP2A ENSG00000160305       ENST00000457905       46458899
277          DIP2A ENSG00000160305       ENST00000457905       46458899
278          DIP2A ENSG00000160305       ENST00000457905       46458899
279          DIP2A ENSG00000160305       ENST00000457905       46458899
280          DIP2A ENSG00000160305       ENST00000457905       46458899
281          DIP2A ENSG00000160305       ENST00000466639       46458899
282          DIP2A ENSG00000160305       ENST00000466639       46458899
283          DIP2A ENSG00000160305       ENST00000466639       46458899
284          DIP2A ENSG00000160305       ENST00000466639       46458899
285          DIP2A ENSG00000160305       ENST00000466639       46458899
286          DIP2A ENSG00000160305       ENST00000466639       46458899
287          DIP2A ENSG00000160305       ENST00000466639       46458899
288          DIP2A ENSG00000160305       ENST00000466639       46458899
289          DIP2A ENSG00000160305       ENST00000466639       46458899
290          DIP2A ENSG00000160305       ENST00000466639       46458899
291          DIP2A ENSG00000160305       ENST00000466639       46458899
292          DIP2A ENSG00000160305       ENST00000466639       46458899
293          DIP2A ENSG00000160305       ENST00000466639       46458899
294          DIP2A ENSG00000160305       ENST00000466639       46458899
295          DIP2A ENSG00000160305       ENST00000466639       46458899
296          DIP2A ENSG00000160305       ENST00000466639       46458899
297          DIP2A ENSG00000160305       ENST00000466639       46458899
298          DIP2A ENSG00000160305       ENST00000466639       46458899
299          DIP2A ENSG00000160305       ENST00000466639       46458899
300          DIP2A ENSG00000160305       ENST00000466639       46458899
301          DIP2A ENSG00000160305       ENST00000435722       46458899
302          DIP2A ENSG00000160305       ENST00000435722       46458899
303          DIP2A ENSG00000160305       ENST00000435722       46458899
304          DIP2A ENSG00000160305       ENST00000435722       46458899
305          DIP2A ENSG00000160305       ENST00000435722       46458899
306          DIP2A ENSG00000160305       ENST00000435722       46458899
307          DIP2A ENSG00000160305       ENST00000435722       46458899
308          DIP2A ENSG00000160305       ENST00000435722       46458899
309          DIP2A ENSG00000160305       ENST00000435722       46458899
310          DIP2A ENSG00000160305       ENST00000435722       46458899
311          DIP2A ENSG00000160305       ENST00000435722       46458899
312          DIP2A ENSG00000160305       ENST00000435722       46458899
313          DIP2A ENSG00000160305       ENST00000435722       46458899
314          DIP2A ENSG00000160305       ENST00000435722       46458899
315          DIP2A ENSG00000160305       ENST00000435722       46458899
316          DIP2A ENSG00000160305       ENST00000435722       46458899
317          DIP2A ENSG00000160305       ENST00000435722       46458899
318          DIP2A ENSG00000160305       ENST00000435722       46458899
319          DIP2A ENSG00000160305       ENST00000435722       46458899
320          DIP2A ENSG00000160305       ENST00000435722       46458899
321          DIP2A ENSG00000160305       ENST00000435722       46458899
322          DIP2A ENSG00000160305       ENST00000417564       46458899
323          DIP2A ENSG00000160305       ENST00000417564       46458899
324          DIP2A ENSG00000160305       ENST00000417564       46458899
325          DIP2A ENSG00000160305       ENST00000417564       46458899
326          DIP2A ENSG00000160305       ENST00000417564       46458899
327          DIP2A ENSG00000160305       ENST00000417564       46458899
328          DIP2A ENSG00000160305       ENST00000417564       46458899
329          DIP2A ENSG00000160305       ENST00000417564       46458899
330          DIP2A ENSG00000160305       ENST00000417564       46458899
331          DIP2A ENSG00000160305       ENST00000417564       46458899
332          DIP2A ENSG00000160305       ENST00000417564       46458899
333          DIP2A ENSG00000160305       ENST00000417564       46458899
334          DIP2A ENSG00000160305       ENST00000417564       46458899
335          DIP2A ENSG00000160305       ENST00000417564       46458899
336          DIP2A ENSG00000160305       ENST00000417564       46458899
337          DIP2A ENSG00000160305       ENST00000417564       46458899
338          DIP2A ENSG00000160305       ENST00000417564       46458899
339          DIP2A ENSG00000160305       ENST00000417564       46458899
340          DIP2A ENSG00000160305       ENST00000417564       46458899
341          DIP2A ENSG00000160305       ENST00000417564       46458899
342          DIP2A ENSG00000160305       ENST00000417564       46458899
343          DIP2A ENSG00000160305       ENST00000417564       46458899
344          DIP2A ENSG00000160305       ENST00000417564       46458899
345          DIP2A ENSG00000160305       ENST00000417564       46458899
346          DIP2A ENSG00000160305       ENST00000417564       46458899
347          DIP2A ENSG00000160305       ENST00000417564       46458899
348          DIP2A ENSG00000160305       ENST00000417564       46458899
349          DIP2A ENSG00000160305       ENST00000417564       46458899
350          DIP2A ENSG00000160305       ENST00000417564       46458899
351          DIP2A ENSG00000160305       ENST00000417564       46458899
352          DIP2A ENSG00000160305       ENST00000417564       46458899
353          DIP2A ENSG00000160305       ENST00000417564       46458899
354          DIP2A ENSG00000160305       ENST00000417564       46458899
355          DIP2A ENSG00000160305       ENST00000417564       46458899
356          DIP2A ENSG00000160305       ENST00000417564       46458899
357          DIP2A ENSG00000160305       ENST00000417564       46458899
358          DIP2A ENSG00000160305       ENST00000417564       46458899
359          DIP2A ENSG00000160305       ENST00000417564       46458899
360          DIP2A ENSG00000160305       ENST00000473752       46458899
361          DIP2A ENSG00000160305       ENST00000473752       46458899
362          DIP2A ENSG00000160305       ENST00000473752       46458899
363          DIP2A ENSG00000160305       ENST00000473752       46458899
364          DIP2A ENSG00000160305       ENST00000473752       46458899
365          DIP2A ENSG00000160305       ENST00000473752       46458899
366          DIP2A ENSG00000160305       ENST00000473752       46458899
367          DIP2A ENSG00000160305       ENST00000473752       46458899
368          DIP2A ENSG00000160305       ENST00000473752       46458899
369          DIP2A ENSG00000160305       ENST00000473752       46458899
370          DIP2A ENSG00000160305       ENST00000473752       46458899
371          DIP2A ENSG00000160305       ENST00000473752       46458899
372          DIP2A ENSG00000160305       ENST00000473752       46458899
373          DIP2A ENSG00000160305       ENST00000473752       46458899
374          DIP2A ENSG00000160305       ENST00000494435       46458899
375          DIP2A ENSG00000160305       ENST00000494435       46458899
376          DIP2A ENSG00000160305       ENST00000494435       46458899
377          DIP2A ENSG00000160305       ENST00000494435       46458899
378          DIP2A ENSG00000160305       ENST00000494435       46458899
379          DIP2A ENSG00000160305       ENST00000494435       46458899
380          DIP2A ENSG00000160305       ENST00000494435       46458899
381          DIP2A ENSG00000160305       ENST00000494435       46458899
382          DIP2A ENSG00000160305       ENST00000494435       46458899
383          DIP2A ENSG00000160305       ENST00000494435       46458899
384          DIP2A ENSG00000160305       ENST00000494435       46458899
385          DIP2A ENSG00000160305       ENST00000494435       46458899
386          DIP2A ENSG00000160305       ENST00000494435       46458899
387          DIP2A ENSG00000160305       ENST00000494435       46458899
388          DIP2A ENSG00000160305       ENST00000494435       46458899
389          DIP2A ENSG00000160305       ENST00000480553       46458899
390          DIP2A ENSG00000160305       ENST00000480553       46458899
391          DIP2A ENSG00000160305       ENST00000480553       46458899
392          DIP2A ENSG00000160305       ENST00000480553       46458899
393          DIP2A ENSG00000160305       ENST00000480553       46458899
394          DIP2A ENSG00000160305       ENST00000472364       46458899
395          DIP2A ENSG00000160305       ENST00000472364       46458899
396          DIP2A ENSG00000160305       ENST00000472364       46458899
397          DIP2A ENSG00000160305       ENST00000472364       46458899
398          DIP2A ENSG00000160305       ENST00000472364       46458899
399          DIP2A ENSG00000160305       ENST00000472364       46458899
400          DIP2A ENSG00000160305       ENST00000472364       46458899
401          DIP2A ENSG00000160305       ENST00000481883       46458899
402          DIP2A ENSG00000160305       ENST00000481883       46458899
403          DIP2A ENSG00000160305       ENST00000478105       46458899
404          DIP2A ENSG00000160305       ENST00000478105       46458899
405          DIP2A ENSG00000160305       ENST00000478105       46458899
406          DIP2A ENSG00000160305       ENST00000478105       46458899
407          DIP2A ENSG00000160305       ENST00000478105       46458899
408          DIP2A ENSG00000160305       ENST00000479654       46458899
409          DIP2A ENSG00000160305       ENST00000479654       46458899
410          DIP2A ENSG00000160305       ENST00000479654       46458899
411          DIP2A ENSG00000160305       ENST00000479654       46458899
412      RNU6-772P ENSG00000251851       ENST00000516042       20355748
413      MIR3648-2 ENSG00000264462       ENST00000581792        8986999
414        MIR6501 ENSG00000284448       ENST00000290239       33550662
415                ENSG00000201025       ENST00000364155       16284696
416         MIR155 ENSG00000283904       ENST00000385060       25573980
417      MIR3118-1 ENSG00000266299       ENST00000581787       13644775
418       MIR5692B ENSG00000264580       ENST00000579137       42950928
419      LINC01424 ENSG00000236519       ENST00000417820       44802577
420      LINC01424 ENSG00000236519       ENST00000417820       44802577
421      KRTAP12-2 ENSG00000221864       ENST00000360770       44666189
422      KRTAP12-4 ENSG00000212933       ENST00000391618       44654213
423                ENSG00000272948       ENST00000608405       37267784
424           PCNT ENSG00000160299       ENST00000359568       46324122
425           PCNT ENSG00000160299       ENST00000359568       46324122
426           PCNT ENSG00000160299       ENST00000359568       46324122
427           PCNT ENSG00000160299       ENST00000359568       46324122
428           PCNT ENSG00000160299       ENST00000359568       46324122
429           PCNT ENSG00000160299       ENST00000359568       46324122
430           PCNT ENSG00000160299       ENST00000359568       46324122
431           PCNT ENSG00000160299       ENST00000359568       46324122
432           PCNT ENSG00000160299       ENST00000359568       46324122
433           PCNT ENSG00000160299       ENST00000359568       46324122
434           PCNT ENSG00000160299       ENST00000359568       46324122
435           PCNT ENSG00000160299       ENST00000359568       46324122
436           PCNT ENSG00000160299       ENST00000359568       46324122
437           PCNT ENSG00000160299       ENST00000359568       46324122
438           PCNT ENSG00000160299       ENST00000359568       46324122
439           PCNT ENSG00000160299       ENST00000359568       46324122
440           PCNT ENSG00000160299       ENST00000359568       46324122
441           PCNT ENSG00000160299       ENST00000359568       46324122
442           PCNT ENSG00000160299       ENST00000359568       46324122
443           PCNT ENSG00000160299       ENST00000359568       46324122
444           PCNT ENSG00000160299       ENST00000359568       46324122
445           PCNT ENSG00000160299       ENST00000359568       46324122
446           PCNT ENSG00000160299       ENST00000359568       46324122
447           PCNT ENSG00000160299       ENST00000359568       46324122
448           PCNT ENSG00000160299       ENST00000359568       46324122
449           PCNT ENSG00000160299       ENST00000359568       46324122
450           PCNT ENSG00000160299       ENST00000359568       46324122
451           PCNT ENSG00000160299       ENST00000359568       46324122
452           PCNT ENSG00000160299       ENST00000359568       46324122
453           PCNT ENSG00000160299       ENST00000359568       46324122
454           PCNT ENSG00000160299       ENST00000359568       46324122
455           PCNT ENSG00000160299       ENST00000359568       46324122
456           PCNT ENSG00000160299       ENST00000359568       46324122
457           PCNT ENSG00000160299       ENST00000359568       46324122
458           PCNT ENSG00000160299       ENST00000359568       46324122
459           PCNT ENSG00000160299       ENST00000359568       46324122
460           PCNT ENSG00000160299       ENST00000359568       46324122
461           PCNT ENSG00000160299       ENST00000359568       46324122
462           PCNT ENSG00000160299       ENST00000359568       46324122
463           PCNT ENSG00000160299       ENST00000359568       46324122
464           PCNT ENSG00000160299       ENST00000359568       46324122
465           PCNT ENSG00000160299       ENST00000359568       46324122
466           PCNT ENSG00000160299       ENST00000359568       46324122
467           PCNT ENSG00000160299       ENST00000359568       46324122
468           PCNT ENSG00000160299       ENST00000359568       46324122
469           PCNT ENSG00000160299       ENST00000359568       46324122
470           PCNT ENSG00000160299       ENST00000359568       46324122
471           PCNT ENSG00000160299       ENST00000490468       46324122
472           PCNT ENSG00000160299       ENST00000490468       46324122
473           PCNT ENSG00000160299       ENST00000490468       46324122
474           PCNT ENSG00000160299       ENST00000490468       46324122
475           PCNT ENSG00000160299       ENST00000490468       46324122
476           PCNT ENSG00000160299       ENST00000490468       46324122
477           PCNT ENSG00000160299       ENST00000490468       46324122
478           PCNT ENSG00000160299       ENST00000490468       46324122
479           PCNT ENSG00000160299       ENST00000480896       46324122
480           PCNT ENSG00000160299       ENST00000480896       46324122
481           PCNT ENSG00000160299       ENST00000480896       46324122
482           PCNT ENSG00000160299       ENST00000480896       46324122
483           PCNT ENSG00000160299       ENST00000480896       46324122
484           PCNT ENSG00000160299       ENST00000480896       46324122
485           PCNT ENSG00000160299       ENST00000480896       46324122
486           PCNT ENSG00000160299       ENST00000480896       46324122
487           PCNT ENSG00000160299       ENST00000480896       46324122
488           PCNT ENSG00000160299       ENST00000480896       46324122
489           PCNT ENSG00000160299       ENST00000480896       46324122
490           PCNT ENSG00000160299       ENST00000480896       46324122
491           PCNT ENSG00000160299       ENST00000480896       46324122
492           PCNT ENSG00000160299       ENST00000480896       46324122
493           PCNT ENSG00000160299       ENST00000480896       46324122
494           PCNT ENSG00000160299       ENST00000480896       46324122
495           PCNT ENSG00000160299       ENST00000480896       46324122
496           PCNT ENSG00000160299       ENST00000480896       46324122
497           PCNT ENSG00000160299       ENST00000480896       46324122
498           PCNT ENSG00000160299       ENST00000480896       46324122
499           PCNT ENSG00000160299       ENST00000480896       46324122
500           PCNT ENSG00000160299       ENST00000480896       46324122
501           PCNT ENSG00000160299       ENST00000480896       46324122
502           PCNT ENSG00000160299       ENST00000480896       46324122
503           PCNT ENSG00000160299       ENST00000480896       46324122
504           PCNT ENSG00000160299       ENST00000480896       46324122
505           PCNT ENSG00000160299       ENST00000480896       46324122
506           PCNT ENSG00000160299       ENST00000480896       46324122
507           PCNT ENSG00000160299       ENST00000480896       46324122
508           PCNT ENSG00000160299       ENST00000480896       46324122
509           PCNT ENSG00000160299       ENST00000480896       46324122
510           PCNT ENSG00000160299       ENST00000480896       46324122
511           PCNT ENSG00000160299       ENST00000480896       46324122
512           PCNT ENSG00000160299       ENST00000480896       46324122
513           PCNT ENSG00000160299       ENST00000480896       46324122
514           PCNT ENSG00000160299       ENST00000480896       46324122
515           PCNT ENSG00000160299       ENST00000480896       46324122
516           PCNT ENSG00000160299       ENST00000480896       46324122
517           PCNT ENSG00000160299       ENST00000480896       46324122
518           PCNT ENSG00000160299       ENST00000480896       46324122
519           PCNT ENSG00000160299       ENST00000480896       46324122
520           PCNT ENSG00000160299       ENST00000480896       46324122
521           PCNT ENSG00000160299       ENST00000480896       46324122
522           PCNT ENSG00000160299       ENST00000480896       46324122
523           PCNT ENSG00000160299       ENST00000480896       46324122
524           PCNT ENSG00000160299       ENST00000480896       46324122
525           PCNT ENSG00000160299       ENST00000480896       46324122
526           PCNT ENSG00000160299       ENST00000466474       46324122
527           PCNT ENSG00000160299       ENST00000466474       46324122
528           PCNT ENSG00000160299       ENST00000466474       46324122
529           PCNT ENSG00000160299       ENST00000466474       46324122
530           PCNT ENSG00000160299       ENST00000466474       46324122
531           PCNT ENSG00000160299       ENST00000466474       46324122
532           PCNT ENSG00000160299       ENST00000483844       46324122
533           PCNT ENSG00000160299       ENST00000483844       46324122
534           PCNT ENSG00000160299       ENST00000483844       46324122
535           PCNT ENSG00000160299       ENST00000483844       46324122
536           PCNT ENSG00000160299       ENST00000483844       46324122
537           PCNT ENSG00000160299       ENST00000482575       46324122
538           PCNT ENSG00000160299       ENST00000482575       46324122
539           PCNT ENSG00000160299       ENST00000418394       46324122
540           PCNT ENSG00000160299       ENST00000418394       46324122
541           PCNT ENSG00000160299       ENST00000418394       46324122
542           PCNT ENSG00000160299       ENST00000418394       46324122
543           PCNT ENSG00000160299       ENST00000418394       46324122
544           PCNT ENSG00000160299       ENST00000418394       46324122
545           PCNT ENSG00000160299       ENST00000465356       46324122
546           PCNT ENSG00000160299       ENST00000465356       46324122
547      KRTAP12-3 ENSG00000205439       ENST00000397907       44657932
548      KRTAP10-6 ENSG00000188155       ENST00000400368       44591268
549      KRTAP12-1 ENSG00000187175       ENST00000391617       44681576
550      KRTAP10-2 ENSG00000205445       ENST00000391621       44550357
551      KRTAP10-2 ENSG00000205445       ENST00000498210       44550357
552      KRTAP10-2 ENSG00000205445       ENST00000498210       44550357
553      LRRC3-AS1 ENSG00000229356       ENST00000426578       44450986
554      LRRC3-AS1 ENSG00000229356       ENST00000426578       44450986
555      LRRC3-AS1 ENSG00000229356       ENST00000426578       44450986
556      LRRC3-AS1 ENSG00000229356       ENST00000426578       44450986
557                ENSG00000274868       ENST00000612139        8388898
558                ENSG00000207416       ENST00000384685       36986739
559      BACE2-IT1 ENSG00000224388       ENST00000433378       41180097
560      BACE2-IT1 ENSG00000224388       ENST00000433378       41180097
561                ENSG00000273102       ENST00000607953       33967101
562                ENSG00000273102       ENST00000607953       33967101
563                ENSG00000278996       ENST00000623664        8197620
564                ENSG00000278996       ENST00000623664        8197620
565                ENSG00000278996       ENST00000623664        8197620
566                ENSG00000278996       ENST00000623664        8197620
567                ENSG00000278996       ENST00000623664        8197620
568                ENSG00000278996       ENST00000623664        8197620
569                ENSG00000278996       ENST00000623664        8197620
570                ENSG00000273017       ENST00000609910       29359002
571      BACH1-IT3 ENSG00000234293       ENST00000429843       29496047
572      BACH1-IT3 ENSG00000234293       ENST00000429843       29496047
573          BACH1 ENSG00000156273       ENST00000548219       29194071
574          BACH1 ENSG00000156273       ENST00000548219       29194071
575          BACH1 ENSG00000156273       ENST00000550131       29194071
576          BACH1 ENSG00000156273       ENST00000550131       29194071
577          BACH1 ENSG00000156273       ENST00000550131       29194071
578          BACH1 ENSG00000156273       ENST00000547141       29194071
579          BACH1 ENSG00000156273       ENST00000547141       29194071
580          BACH1 ENSG00000156273       ENST00000547141       29194071
581          BACH1 ENSG00000156273       ENST00000546469       29194071
582          BACH1 ENSG00000156273       ENST00000546469       29194071
583          BACH1 ENSG00000156273       ENST00000546469       29194071
584          BACH1 ENSG00000156273       ENST00000546469       29194071
585          BACH1 ENSG00000156273       ENST00000286800       29194071
586          BACH1 ENSG00000156273       ENST00000286800       29194071
587          BACH1 ENSG00000156273       ENST00000286800       29194071
588          BACH1 ENSG00000156273       ENST00000286800       29194071
589          BACH1 ENSG00000156273       ENST00000286800       29194071
590          BACH1 ENSG00000156273       ENST00000399921       29194071
591          BACH1 ENSG00000156273       ENST00000399921       29194071
592          BACH1 ENSG00000156273       ENST00000399921       29194071
593          BACH1 ENSG00000156273       ENST00000399921       29194071
594          BACH1 ENSG00000156273       ENST00000399921       29194071
595          BACH1 ENSG00000156273       ENST00000548467       29194071
596          BACH1 ENSG00000156273       ENST00000548467       29194071
597          BACH1 ENSG00000156273       ENST00000451655       29194071
598          BACH1 ENSG00000156273       ENST00000451655       29194071
599          BACH1 ENSG00000156273       ENST00000451655       29194071
600          BACH1 ENSG00000156273       ENST00000447177       29194071
601          BACH1 ENSG00000156273       ENST00000447177       29194071
602          BACH1 ENSG00000156273       ENST00000447177       29194071
603          BACH1 ENSG00000156273       ENST00000435072       29194071
604          BACH1 ENSG00000156273       ENST00000435072       29194071
605          BACH1 ENSG00000156273       ENST00000435072       29194071
606          BACH1 ENSG00000156273       ENST00000422809       29194071
607          BACH1 ENSG00000156273       ENST00000422809       29194071
608          BACH1 ENSG00000156273       ENST00000422809       29194071
609          BACH1 ENSG00000156273       ENST00000422809       29194071
610          BACH1 ENSG00000156273       ENST00000422809       29194071
611          BACH1 ENSG00000156273       ENST00000468059       29194071
612          BACH1 ENSG00000156273       ENST00000468059       29194071
613          BACH1 ENSG00000156273       ENST00000468059       29194071
614          BACH1 ENSG00000156273       ENST00000468059       29194071
615          BACH1 ENSG00000156273       ENST00000462262       29194071
616          BACH1 ENSG00000156273       ENST00000462262       29194071
617          BACH1 ENSG00000156273       ENST00000462262       29194071
618                ENSG00000270116       ENST00000602568       37100814
619                ENSG00000277991       ENST00000623374        7669397
620                ENSG00000277991       ENST00000623374        7669397
621                ENSG00000277991       ENST00000624633        7669397
622                ENSG00000277991       ENST00000624633        7669397
623                ENSG00000277991       ENST00000624633        7669397
624                ENSG00000277991       ENST00000623190        7669397
625                ENSG00000277991       ENST00000623190        7669397
626                ENSG00000277991       ENST00000623637        7669397
627                ENSG00000277991       ENST00000623637        7669397
628                ENSG00000277991       ENST00000623783        7669397
629                ENSG00000277991       ENST00000623783        7669397
630                ENSG00000277991       ENST00000625005        7669397
631                ENSG00000277991       ENST00000625005        7669397
632                ENSG00000277991       ENST00000625005        7669397
633                ENSG00000277991       ENST00000625005        7669397
634                ENSG00000277991       ENST00000623797        7669397
635                ENSG00000277991       ENST00000623797        7669397
636                ENSG00000277991       ENST00000623797        7669397
637                ENSG00000277991       ENST00000623643        7669397
638                ENSG00000277991       ENST00000623643        7669397
639                ENSG00000277991       ENST00000623643        7669397
640       RNA5-8S5 ENSG00000277739       ENST00000610460        8256781
641                ENSG00000275664       ENST00000610482        8205851
642        MIR4759 ENSG00000266133       ENST00000584048       26953961
643       RPL18AP2 ENSG00000225043       ENST00000450007       46420553
644      LINC00479 ENSG00000236384       ENST00000412102       41711520
645      LINC00479 ENSG00000236384       ENST00000412102       41711520
646      LINC00479 ENSG00000236384       ENST00000412102       41711520
647      LINC00479 ENSG00000236384       ENST00000412102       41711520
648      LINC00479 ENSG00000236384       ENST00000412102       41711520
649      LINC00479 ENSG00000236384       ENST00000412102       41711520
650      LINC00479 ENSG00000236384       ENST00000457881       41711520
651      LINC00479 ENSG00000236384       ENST00000457881       41711520
652      LINC00479 ENSG00000236384       ENST00000457881       41711520
653      LINC00479 ENSG00000236384       ENST00000457881       41711520
654      LINC00479 ENSG00000236384       ENST00000586552       41711520
655      LINC00479 ENSG00000236384       ENST00000586552       41711520
656      LINC00479 ENSG00000236384       ENST00000586552       41711520
657      LINC00479 ENSG00000236384       ENST00000589300       41711520
658      LINC00479 ENSG00000236384       ENST00000589300       41711520
659      LINC00479 ENSG00000236384       ENST00000589300       41711520
660      LINC00479 ENSG00000236384       ENST00000589300       41711520
661      LINC00479 ENSG00000236384       ENST00000589300       41711520
662      LINC00479 ENSG00000236384       ENST00000589300       41711520
663      LINC00479 ENSG00000236384       ENST00000589300       41711520
664     TSPEAR-AS2 ENSG00000182912       ENST00000330490       44517216
665     TSPEAR-AS2 ENSG00000182912       ENST00000330490       44517216
666     TSPEAR-AS2 ENSG00000182912       ENST00000330490       44517216
667     TSPEAR-AS2 ENSG00000182912       ENST00000354333       44517216
668     TSPEAR-AS2 ENSG00000182912       ENST00000354333       44517216
669     TSPEAR-AS2 ENSG00000182912       ENST00000465978       44517216
670     TSPEAR-AS2 ENSG00000182912       ENST00000465978       44517216
671      KRTAP10-8 ENSG00000187766       ENST00000334662       44612079
672                ENSG00000207098       ENST00000384370       32841861
673      MIR8069-1 ENSG00000284550       ENST00000616627        6859171
674         UBE2G2 ENSG00000184787       ENST00000345496       44768580
675         UBE2G2 ENSG00000184787       ENST00000345496       44768580
676         UBE2G2 ENSG00000184787       ENST00000345496       44768580
677         UBE2G2 ENSG00000184787       ENST00000345496       44768580
678         UBE2G2 ENSG00000184787       ENST00000345496       44768580
679         UBE2G2 ENSG00000184787       ENST00000345496       44768580
680         UBE2G2 ENSG00000184787       ENST00000481546       44768580
681         UBE2G2 ENSG00000184787       ENST00000481546       44768580
682         UBE2G2 ENSG00000184787       ENST00000497630       44768580
683         UBE2G2 ENSG00000184787       ENST00000497630       44768580
684         UBE2G2 ENSG00000184787       ENST00000497630       44768580
685         UBE2G2 ENSG00000184787       ENST00000497630       44768580
686         UBE2G2 ENSG00000184787       ENST00000477954       44768580
687         UBE2G2 ENSG00000184787       ENST00000477954       44768580
688         UBE2G2 ENSG00000184787       ENST00000477954       44768580
689         UBE2G2 ENSG00000184787       ENST00000477954       44768580
690         UBE2G2 ENSG00000184787       ENST00000477954       44768580
691         UBE2G2 ENSG00000184787       ENST00000477954       44768580
692         UBE2G2 ENSG00000184787       ENST00000477954       44768580
693         UBE2G2 ENSG00000184787       ENST00000491513       44768580
694         UBE2G2 ENSG00000184787       ENST00000491513       44768580
695         UBE2G2 ENSG00000184787       ENST00000491513       44768580
696         UBE2G2 ENSG00000184787       ENST00000491513       44768580
697         UBE2G2 ENSG00000184787       ENST00000491513       44768580
698         UBE2G2 ENSG00000184787       ENST00000491513       44768580
699         UBE2G2 ENSG00000184787       ENST00000491513       44768580
700         UBE2G2 ENSG00000184787       ENST00000330942       44768580
701         UBE2G2 ENSG00000184787       ENST00000330942       44768580
702         UBE2G2 ENSG00000184787       ENST00000330942       44768580
703         UBE2G2 ENSG00000184787       ENST00000330942       44768580
704         UBE2G2 ENSG00000184787       ENST00000330942       44768580
705         UBE2G2 ENSG00000184787       ENST00000330942       44768580
706         UBE2G2 ENSG00000184787       ENST00000330942       44768580
707         UBE2G2 ENSG00000184787       ENST00000478200       44768580
708         UBE2G2 ENSG00000184787       ENST00000478200       44768580
709         UBE2G2 ENSG00000184787       ENST00000478200       44768580
710         UBE2G2 ENSG00000184787       ENST00000478200       44768580
711         UBE2G2 ENSG00000184787       ENST00000478200       44768580
712         UBE2G2 ENSG00000184787       ENST00000478200       44768580
713         UBE2G2 ENSG00000184787       ENST00000497664       44768580
714         UBE2G2 ENSG00000184787       ENST00000497664       44768580
715         UBE2G2 ENSG00000184787       ENST00000497664       44768580
716         UBE2G2 ENSG00000184787       ENST00000497664       44768580
717         UBE2G2 ENSG00000184787       ENST00000497664       44768580
718         UBE2G2 ENSG00000184787       ENST00000462569       44768580
719         UBE2G2 ENSG00000184787       ENST00000462569       44768580
720         UBE2G2 ENSG00000184787       ENST00000462569       44768580
721         UBE2G2 ENSG00000184787       ENST00000462569       44768580
722         UBE2G2 ENSG00000184787       ENST00000490450       44768580
723         UBE2G2 ENSG00000184787       ENST00000490450       44768580
724         UBE2G2 ENSG00000184787       ENST00000490450       44768580
725         UBE2G2 ENSG00000184787       ENST00000490450       44768580
726         UBE2G2 ENSG00000184787       ENST00000490450       44768580
727         UBE2G2 ENSG00000184787       ENST00000496395       44768580
728         UBE2G2 ENSG00000184787       ENST00000496395       44768580
729         UBE2G2 ENSG00000184787       ENST00000496395       44768580
730         UBE2G2 ENSG00000184787       ENST00000496395       44768580
731         UBE2G2 ENSG00000184787       ENST00000496395       44768580
732         UBE2G2 ENSG00000184787       ENST00000490091       44768580
733         UBE2G2 ENSG00000184787       ENST00000490091       44768580
734      KRTAP10-3 ENSG00000212935       ENST00000391620       44557790
735      KRTAP10-7 ENSG00000272804       ENST00000609664       44600597
736                ENSG00000233754       ENST00000420273       42781074
737                ENSG00000233754       ENST00000420273       42781074
738          BACE2 ENSG00000182240       ENST00000330333       41167801
739          BACE2 ENSG00000182240       ENST00000330333       41167801
740          BACE2 ENSG00000182240       ENST00000330333       41167801
741          BACE2 ENSG00000182240       ENST00000330333       41167801
742          BACE2 ENSG00000182240       ENST00000330333       41167801
743          BACE2 ENSG00000182240       ENST00000330333       41167801
744          BACE2 ENSG00000182240       ENST00000330333       41167801
745          BACE2 ENSG00000182240       ENST00000330333       41167801
746          BACE2 ENSG00000182240       ENST00000330333       41167801
747          BACE2 ENSG00000182240       ENST00000328735       41167801
748          BACE2 ENSG00000182240       ENST00000328735       41167801
749          BACE2 ENSG00000182240       ENST00000328735       41167801
750          BACE2 ENSG00000182240       ENST00000328735       41167801
751          BACE2 ENSG00000182240       ENST00000328735       41167801
752          BACE2 ENSG00000182240       ENST00000328735       41167801
753          BACE2 ENSG00000182240       ENST00000328735       41167801
754          BACE2 ENSG00000182240       ENST00000328735       41167801
755          BACE2 ENSG00000182240       ENST00000347667       41167801
756          BACE2 ENSG00000182240       ENST00000347667       41167801
757          BACE2 ENSG00000182240       ENST00000347667       41167801
758          BACE2 ENSG00000182240       ENST00000347667       41167801
759          BACE2 ENSG00000182240       ENST00000347667       41167801
760          BACE2 ENSG00000182240       ENST00000347667       41167801
761          BACE2 ENSG00000182240       ENST00000347667       41167801
762          BACE2 ENSG00000182240       ENST00000347667       41167801
763          BACE2 ENSG00000182240       ENST00000470864       41167801
764          BACE2 ENSG00000182240       ENST00000470864       41167801
765          BACE2 ENSG00000182240       ENST00000470864       41167801
766          BACE2 ENSG00000182240       ENST00000470864       41167801
767          BACE2 ENSG00000182240       ENST00000487994       41167801
768          BACE2 ENSG00000182240       ENST00000487994       41167801
769          BACE2 ENSG00000182240       ENST00000487994       41167801
770          BACE2 ENSG00000182240       ENST00000487994       41167801
771          BACE2 ENSG00000182240       ENST00000487994       41167801
772          BACE2 ENSG00000182240       ENST00000487994       41167801
773          BACE2 ENSG00000182240       ENST00000487994       41167801
774          BACE2 ENSG00000182240       ENST00000487994       41167801
775          BACE2 ENSG00000182240       ENST00000491838       41167801
776          BACE2 ENSG00000182240       ENST00000491838       41167801
777          BACE2 ENSG00000182240       ENST00000491838       41167801
778          BACE2 ENSG00000182240       ENST00000491838       41167801
779          BACE2 ENSG00000182240       ENST00000491838       41167801
780          BACE2 ENSG00000182240       ENST00000466122       41167801
781          BACE2 ENSG00000182240       ENST00000466122       41167801
782          BACE2 ENSG00000182240       ENST00000466122       41167801
783          BACE2 ENSG00000182240       ENST00000466122       41167801
784          BACE2 ENSG00000182240       ENST00000466122       41167801
785          BACE2 ENSG00000182240       ENST00000466122       41167801
786          BACE2 ENSG00000182240       ENST00000466122       41167801
787          BACE2 ENSG00000182240       ENST00000466122       41167801
788          BACE2 ENSG00000182240       ENST00000465326       41167801
789          BACE2 ENSG00000182240       ENST00000465326       41167801
790          BACE2 ENSG00000182240       ENST00000465326       41167801
791          BACE2 ENSG00000182240       ENST00000465326       41167801
792          BACE2 ENSG00000182240       ENST00000465326       41167801
793          BACE2 ENSG00000182240       ENST00000465326       41167801
794          BACE2 ENSG00000182240       ENST00000465326       41167801
795          BACE2 ENSG00000182240       ENST00000463674       41167801
796          BACE2 ENSG00000182240       ENST00000463674       41167801
797          BACE2 ENSG00000182240       ENST00000463674       41167801
798          BACE2 ENSG00000182240       ENST00000463674       41167801
799          BACE2 ENSG00000182240       ENST00000463674       41167801
800          BACE2 ENSG00000182240       ENST00000463674       41167801
801          BACE2 ENSG00000182240       ENST00000475618       41167801
802          BACE2 ENSG00000182240       ENST00000475618       41167801
803      LINC00323 ENSG00000226496       ENST00000441268       41141493
804      LINC00323 ENSG00000226496       ENST00000441268       41141493
805      LINC00323 ENSG00000226496       ENST00000435493       41141493
806      LINC00323 ENSG00000226496       ENST00000435493       41141493
807      LINC00323 ENSG00000226496       ENST00000446910       41141493
808      LINC00323 ENSG00000226496       ENST00000446910       41141493
809      LINC00323 ENSG00000226496       ENST00000446910       41141493
810         YRDCP3 ENSG00000230859       ENST00000456507       40863994
811      RNU6-286P ENSG00000207476       ENST00000384745       13621577
812                ENSG00000277671       ENST00000618423        8250060
813                ENSG00000273027       ENST00000609461       44929653
814          RIPK4 ENSG00000183421       ENST00000332512       41739369
815          RIPK4 ENSG00000183421       ENST00000332512       41739369
816          RIPK4 ENSG00000183421       ENST00000332512       41739369
817          RIPK4 ENSG00000183421       ENST00000332512       41739369
818          RIPK4 ENSG00000183421       ENST00000332512       41739369
819          RIPK4 ENSG00000183421       ENST00000332512       41739369
820          RIPK4 ENSG00000183421       ENST00000332512       41739369
821          RIPK4 ENSG00000183421       ENST00000332512       41739369
822          RIPK4 ENSG00000183421       ENST00000352483       41739369
823          RIPK4 ENSG00000183421       ENST00000352483       41739369
824          RIPK4 ENSG00000183421       ENST00000352483       41739369
825          RIPK4 ENSG00000183421       ENST00000352483       41739369
826          RIPK4 ENSG00000183421       ENST00000352483       41739369
827          RIPK4 ENSG00000183421       ENST00000352483       41739369
828          RIPK4 ENSG00000183421       ENST00000352483       41739369
829          RIPK4 ENSG00000183421       ENST00000352483       41739369
830          RIPK4 ENSG00000183421       ENST00000352483       41739369
831        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
832        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
833        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
834        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
835        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
836        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
837        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
838        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
839        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
840        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
841        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
842        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
843        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
844        TMPRSS2 ENSG00000184012       ENST00000332149       41464551
845        TMPRSS2 ENSG00000184012       ENST00000488556       41464551
846        TMPRSS2 ENSG00000184012       ENST00000488556       41464551
847        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
848        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
849        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
850        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
851        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
852        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
853        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
854        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
855        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
856        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
857        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
858        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
859        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
860        TMPRSS2 ENSG00000184012       ENST00000458356       41464551
861        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
862        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
863        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
864        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
865        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
866        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
867        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
868        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
869        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
870        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
871        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
872        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
873        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
874        TMPRSS2 ENSG00000184012       ENST00000454499       41464551
875        TMPRSS2 ENSG00000184012       ENST00000469395       41464551
876        TMPRSS2 ENSG00000184012       ENST00000469395       41464551
877        TMPRSS2 ENSG00000184012       ENST00000424093       41464551
878        TMPRSS2 ENSG00000184012       ENST00000424093       41464551
879        TMPRSS2 ENSG00000184012       ENST00000424093       41464551
880        TMPRSS2 ENSG00000184012       ENST00000424093       41464551
881        TMPRSS2 ENSG00000184012       ENST00000424093       41464551
882        TMPRSS2 ENSG00000184012       ENST00000424093       41464551
883        TMPRSS2 ENSG00000184012       ENST00000424093       41464551
884        TMPRSS2 ENSG00000184012       ENST00000424093       41464551
885        TMPRSS2 ENSG00000184012       ENST00000497881       41464551
886        TMPRSS2 ENSG00000184012       ENST00000497881       41464551
887        TMPRSS2 ENSG00000184012       ENST00000497881       41464551
888        TMPRSS2 ENSG00000184012       ENST00000463138       41464551
889        TMPRSS2 ENSG00000184012       ENST00000463138       41464551
890        TMPRSS2 ENSG00000184012       ENST00000463138       41464551
891        TMPRSS2 ENSG00000184012       ENST00000463138       41464551
892        TMPRSS2 ENSG00000184012       ENST00000455813       41464551
893        TMPRSS2 ENSG00000184012       ENST00000455813       41464551
894        TMPRSS2 ENSG00000184012       ENST00000455813       41464551
895        TMPRSS2 ENSG00000184012       ENST00000489201       41464551
896        TMPRSS2 ENSG00000184012       ENST00000489201       41464551
897        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
898        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
899        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
900        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
901        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
902        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
903        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
904        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
905        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
906        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
907        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
908        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
909        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
910        TMPRSS2 ENSG00000184012       ENST00000398585       41464551
911          SUMO3 ENSG00000184900       ENST00000397898       44805617
912          SUMO3 ENSG00000184900       ENST00000397898       44805617
913          SUMO3 ENSG00000184900       ENST00000397898       44805617
914          SUMO3 ENSG00000184900       ENST00000397898       44805617
915          SUMO3 ENSG00000184900       ENST00000332859       44805617
916          SUMO3 ENSG00000184900       ENST00000332859       44805617
917          SUMO3 ENSG00000184900       ENST00000332859       44805617
918          SUMO3 ENSG00000184900       ENST00000332859       44805617
919          SUMO3 ENSG00000184900       ENST00000479153       44805617
920          SUMO3 ENSG00000184900       ENST00000479153       44805617
921          SUMO3 ENSG00000184900       ENST00000479153       44805617
922          SUMO3 ENSG00000184900       ENST00000479153       44805617
923          SUMO3 ENSG00000184900       ENST00000397893       44805617
924          SUMO3 ENSG00000184900       ENST00000397893       44805617
925          SUMO3 ENSG00000184900       ENST00000397893       44805617
926          SUMO3 ENSG00000184900       ENST00000397893       44805617
927          SUMO3 ENSG00000184900       ENST00000466861       44805617
928          SUMO3 ENSG00000184900       ENST00000466861       44805617
929          SUMO3 ENSG00000184900       ENST00000411651       44805617
930          SUMO3 ENSG00000184900       ENST00000411651       44805617
931          SUMO3 ENSG00000184900       ENST00000411651       44805617
932          SUMO3 ENSG00000184900       ENST00000411651       44805617
933      MIR8069-2 ENSG00000278618       ENST00000621412       13724189
934        MIR6130 ENSG00000275469       ENST00000619419       23079284
935      MIR6724-1 ENSG00000275950       ENST00000616420        8205315
936      RNU6-696P ENSG00000212136       ENST00000390834       37045530
937     RNU6-1326P ENSG00000212564       ENST00000391262       15614283
938     KRTAP10-11 ENSG00000243489       ENST00000334670       44646414
939                ENSG00000276647       ENST00000617417       44686358
940      DSCAM-AS1 ENSG00000235123       ENST00000444046       40383083
941      DSCAM-AS1 ENSG00000235123       ENST00000444046       40383083
942      DSCAM-AS1 ENSG00000235123       ENST00000455354       40383083
943      DSCAM-AS1 ENSG00000235123       ENST00000455354       40383083
944      DSCAM-AS1 ENSG00000235123       ENST00000422749       40383083
945      DSCAM-AS1 ENSG00000235123       ENST00000422749       40383083
946      DSCAM-AS1 ENSG00000235123       ENST00000422749       40383083
947      DSCAM-AS1 ENSG00000235123       ENST00000427451       40383083
948      DSCAM-AS1 ENSG00000235123       ENST00000427451       40383083
949      DSCAM-AS1 ENSG00000235123       ENST00000427451       40383083
950      MIR6724-4 ENSG00000275692       ENST00000617390        8432530
951      RNU6-123P ENSG00000251972       ENST00000516163       25943044
952      RNA5SP492 ENSG00000223262       ENST00000411330       42221173
953      RNU1-139P ENSG00000212609       ENST00000391307       19345148
954      MIR3648-1 ENSG00000275708       ENST00000615959        8208473
955                ENSG00000275496       ENST00000621924        6228966
956                ENSG00000275496       ENST00000621924        6228966
957                ENSG00000275496       ENST00000621924        6228966
958                ENSG00000275496       ENST00000621924        6228966
959                ENSG00000275496       ENST00000617746        6228966
960                ENSG00000275496       ENST00000617746        6228966
961                ENSG00000275496       ENST00000617746        6228966
962                ENSG00000275496       ENST00000624446        6228966
963                ENSG00000275496       ENST00000624446        6228966
964                ENSG00000275496       ENST00000623405        6228966
965                ENSG00000275496       ENST00000623405        6228966
966                ENSG00000275496       ENST00000623405        6228966
967                ENSG00000275496       ENST00000623575        6228966
968                ENSG00000275496       ENST00000623575        6228966
969                ENSG00000275496       ENST00000623575        6228966
970                ENSG00000275496       ENST00000623506        6228966
971                ENSG00000275496       ENST00000623506        6228966
972                ENSG00000275496       ENST00000623506        6228966
973                ENSG00000275496       ENST00000623506        6228966
974                ENSG00000275496       ENST00000619488        6228966
975                ENSG00000275496       ENST00000619488        6228966
976                ENSG00000279064       ENST00000623723        5707004
977                ENSG00000279064       ENST00000623723        5707004
978       C21orf33 ENSG00000160221       ENST00000291577       44133605
979       C21orf33 ENSG00000160221       ENST00000291577       44133605
980       C21orf33 ENSG00000160221       ENST00000291577       44133605
981       C21orf33 ENSG00000160221       ENST00000291577       44133605
982       C21orf33 ENSG00000160221       ENST00000291577       44133605
983       C21orf33 ENSG00000160221       ENST00000291577       44133605
984       C21orf33 ENSG00000160221       ENST00000291577       44133605
985       C21orf33 ENSG00000160221       ENST00000495007       44133605
986       C21orf33 ENSG00000160221       ENST00000495007       44133605
987       C21orf33 ENSG00000160221       ENST00000495007       44133605
988       C21orf33 ENSG00000160221       ENST00000495007       44133605
989       C21orf33 ENSG00000160221       ENST00000495007       44133605
990       C21orf33 ENSG00000160221       ENST00000495007       44133605
991       C21orf33 ENSG00000160221       ENST00000427803       44133605
992       C21orf33 ENSG00000160221       ENST00000427803       44133605
993       C21orf33 ENSG00000160221       ENST00000427803       44133605
994       C21orf33 ENSG00000160221       ENST00000427803       44133605
995       C21orf33 ENSG00000160221       ENST00000427803       44133605
996       C21orf33 ENSG00000160221       ENST00000427803       44133605
997       C21orf33 ENSG00000160221       ENST00000493883       44133605
998       C21orf33 ENSG00000160221       ENST00000493883       44133605
999       C21orf33 ENSG00000160221       ENST00000493883       44133605
1000      C21orf33 ENSG00000160221       ENST00000493883       44133605
1001      C21orf33 ENSG00000160221       ENST00000493883       44133605
1002      C21orf33 ENSG00000160221       ENST00000480786       44133605
1003      C21orf33 ENSG00000160221       ENST00000480786       44133605
1004      C21orf33 ENSG00000160221       ENST00000480786       44133605
1005      C21orf33 ENSG00000160221       ENST00000480786       44133605
1006      C21orf33 ENSG00000160221       ENST00000480786       44133605
1007      C21orf33 ENSG00000160221       ENST00000348499       44133605
1008      C21orf33 ENSG00000160221       ENST00000348499       44133605
1009      C21orf33 ENSG00000160221       ENST00000348499       44133605
1010      C21orf33 ENSG00000160221       ENST00000348499       44133605
1011      C21orf33 ENSG00000160221       ENST00000348499       44133605
1012      C21orf33 ENSG00000160221       ENST00000348499       44133605
1013      C21orf33 ENSG00000160221       ENST00000389690       44133605
1014      C21orf33 ENSG00000160221       ENST00000389690       44133605
1015      C21orf33 ENSG00000160221       ENST00000389690       44133605
1016      C21orf33 ENSG00000160221       ENST00000389690       44133605
1017      C21orf33 ENSG00000160221       ENST00000389690       44133605
1018      C21orf33 ENSG00000160221       ENST00000389690       44133605
1019      C21orf33 ENSG00000160221       ENST00000449622       44133605
1020      C21orf33 ENSG00000160221       ENST00000449622       44133605
1021      C21orf33 ENSG00000160221       ENST00000449622       44133605
1022      C21orf33 ENSG00000160221       ENST00000449622       44133605
1023      C21orf33 ENSG00000160221       ENST00000449622       44133605
1024      C21orf33 ENSG00000160221       ENST00000449622       44133605
1025      C21orf33 ENSG00000160221       ENST00000449622       44133605
1026      C21orf33 ENSG00000160221       ENST00000488392       44133605
1027      C21orf33 ENSG00000160221       ENST00000488392       44133605
1028      C21orf33 ENSG00000160221       ENST00000419699       44133605
1029      C21orf33 ENSG00000160221       ENST00000419699       44133605
1030      C21orf33 ENSG00000160221       ENST00000419699       44133605
1031      C21orf33 ENSG00000160221       ENST00000419699       44133605
1032      C21orf33 ENSG00000160221       ENST00000419699       44133605
1033      C21orf33 ENSG00000160221       ENST00000419699       44133605
1034      C21orf33 ENSG00000160221       ENST00000470545       44133605
1035      C21orf33 ENSG00000160221       ENST00000470545       44133605
1036          CBR1 ENSG00000159228       ENST00000466328       36069941
1037          CBR1 ENSG00000159228       ENST00000466328       36069941
1038          CBR1 ENSG00000159228       ENST00000466328       36069941
1039          CBR1 ENSG00000159228       ENST00000530908       36069941
1040          CBR1 ENSG00000159228       ENST00000530908       36069941
1041          CBR1 ENSG00000159228       ENST00000530908       36069941
1042          CBR1 ENSG00000159228       ENST00000290349       36069941
1043          CBR1 ENSG00000159228       ENST00000290349       36069941
1044          CBR1 ENSG00000159228       ENST00000290349       36069941
1045          CBR1 ENSG00000159228       ENST00000439427       36069941
1046          CBR1 ENSG00000159228       ENST00000439427       36069941
1047          CBR1 ENSG00000159228       ENST00000399191       36069941
1048          CBR1 ENSG00000159228       ENST00000399191       36069941
1049          CBR1 ENSG00000159228       ENST00000399191       36069941
1050      ATP5J2LP ENSG00000224421       ENST00000444161       36388878
1051        DOPEY2 ENSG00000142197       ENST00000270190       36156782
1052        DOPEY2 ENSG00000142197       ENST00000270190       36156782
1053        DOPEY2 ENSG00000142197       ENST00000270190       36156782
1054        DOPEY2 ENSG00000142197       ENST00000270190       36156782
1055        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1056        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1057        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1058        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1059        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1060        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1061        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1062        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1063        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1064        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1065        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1066        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1067        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1068        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1069        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1070        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1071        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1072        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1073        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1074        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1075        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1076        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1077        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1078        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1079        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1080        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1081        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1082        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1083        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1084        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1085        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1086        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1087        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1088        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1089        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1090        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1091        DOPEY2 ENSG00000142197       ENST00000399151       36156782
1092        DOPEY2 ENSG00000142197       ENST00000492760       36156782
1093        DOPEY2 ENSG00000142197       ENST00000492760       36156782
1094        DOPEY2 ENSG00000142197       ENST00000492760       36156782
1095        DOPEY2 ENSG00000142197       ENST00000492760       36156782
1096        DOPEY2 ENSG00000142197       ENST00000463668       36156782
1097        DOPEY2 ENSG00000142197       ENST00000463668       36156782
1098        DOPEY2 ENSG00000142197       ENST00000463668       36156782
1099        DOPEY2 ENSG00000142197       ENST00000463668       36156782
1100        DOPEY2 ENSG00000142197       ENST00000463668       36156782
1101        DOPEY2 ENSG00000142197       ENST00000463668       36156782
1102         CLIC6 ENSG00000159212       ENST00000360731       34669389
1103         CLIC6 ENSG00000159212       ENST00000360731       34669389
1104         CLIC6 ENSG00000159212       ENST00000360731       34669389
1105         CLIC6 ENSG00000159212       ENST00000360731       34669389
1106         CLIC6 ENSG00000159212       ENST00000360731       34669389
1107         CLIC6 ENSG00000159212       ENST00000360731       34669389
1108         CLIC6 ENSG00000159212       ENST00000360731       34669389
1109         CLIC6 ENSG00000159212       ENST00000349499       34669389
1110         CLIC6 ENSG00000159212       ENST00000349499       34669389
1111         CLIC6 ENSG00000159212       ENST00000349499       34669389
1112         CLIC6 ENSG00000159212       ENST00000349499       34669389
1113         CLIC6 ENSG00000159212       ENST00000349499       34669389
1114         CLIC6 ENSG00000159212       ENST00000349499       34669389
1115        HSPA13 ENSG00000155304       ENST00000285667       14371115
1116        HSPA13 ENSG00000155304       ENST00000285667       14371115
1117        HSPA13 ENSG00000155304       ENST00000285667       14371115
1118        HSPA13 ENSG00000155304       ENST00000285667       14371115
1119        HSPA13 ENSG00000155304       ENST00000285667       14371115
1120        HSPA13 ENSG00000155304       ENST00000478035       14371115
1121        HSPA13 ENSG00000155304       ENST00000478035       14371115
1122        HSPA13 ENSG00000155304       ENST00000478035       14371115
1123               ENSG00000228798       ENST00000413645       16630827
1124               ENSG00000228798       ENST00000413645       16630827
1125               ENSG00000228798       ENST00000438762       16630827
1126               ENSG00000228798       ENST00000438762       16630827
1127               ENSG00000270093       ENST00000602659       16643529
1128               ENSG00000237735       ENST00000444868       16754519
1129               ENSG00000237735       ENST00000444868       16754519
1130               ENSG00000237735       ENST00000444868       16754519
1131         KCNE2 ENSG00000159197       ENST00000290310       34364024
1132         KCNE2 ENSG00000159197       ENST00000290310       34364024
1133        AGPAT3 ENSG00000160216       ENST00000291572       43865186
1134        AGPAT3 ENSG00000160216       ENST00000291572       43865186
1135        AGPAT3 ENSG00000160216       ENST00000291572       43865186
1136        AGPAT3 ENSG00000160216       ENST00000291572       43865186
1137        AGPAT3 ENSG00000160216       ENST00000291572       43865186
1138        AGPAT3 ENSG00000160216       ENST00000291572       43865186
1139        AGPAT3 ENSG00000160216       ENST00000291572       43865186
1140        AGPAT3 ENSG00000160216       ENST00000291572       43865186
1141        AGPAT3 ENSG00000160216       ENST00000291572       43865186
1142        AGPAT3 ENSG00000160216       ENST00000291572       43865186
1143        AGPAT3 ENSG00000160216       ENST00000474735       43865186
1144        AGPAT3 ENSG00000160216       ENST00000474735       43865186
1145        AGPAT3 ENSG00000160216       ENST00000474735       43865186
1146        AGPAT3 ENSG00000160216       ENST00000474735       43865186
1147        AGPAT3 ENSG00000160216       ENST00000448287       43865186
1148        AGPAT3 ENSG00000160216       ENST00000448287       43865186
1149        AGPAT3 ENSG00000160216       ENST00000448287       43865186
1150        AGPAT3 ENSG00000160216       ENST00000448287       43865186
1151        AGPAT3 ENSG00000160216       ENST00000398061       43865186
1152        AGPAT3 ENSG00000160216       ENST00000398061       43865186
1153        AGPAT3 ENSG00000160216       ENST00000398061       43865186
1154        AGPAT3 ENSG00000160216       ENST00000398061       43865186
1155        AGPAT3 ENSG00000160216       ENST00000398061       43865186
1156        AGPAT3 ENSG00000160216       ENST00000398061       43865186
1157        AGPAT3 ENSG00000160216       ENST00000398061       43865186
1158        AGPAT3 ENSG00000160216       ENST00000398061       43865186
1159        AGPAT3 ENSG00000160216       ENST00000398061       43865186
1160        AGPAT3 ENSG00000160216       ENST00000398061       43865186
1161        AGPAT3 ENSG00000160216       ENST00000327505       43865186
1162        AGPAT3 ENSG00000160216       ENST00000327505       43865186
1163        AGPAT3 ENSG00000160216       ENST00000327505       43865186
1164        AGPAT3 ENSG00000160216       ENST00000327505       43865186
1165        AGPAT3 ENSG00000160216       ENST00000327505       43865186
1166        AGPAT3 ENSG00000160216       ENST00000327505       43865186
1167        AGPAT3 ENSG00000160216       ENST00000327505       43865186
1168        AGPAT3 ENSG00000160216       ENST00000327505       43865186
1169        AGPAT3 ENSG00000160216       ENST00000327505       43865186
1170        AGPAT3 ENSG00000160216       ENST00000445582       43865186
1171        AGPAT3 ENSG00000160216       ENST00000445582       43865186
1172        AGPAT3 ENSG00000160216       ENST00000445582       43865186
1173        AGPAT3 ENSG00000160216       ENST00000445582       43865186
1174        AGPAT3 ENSG00000160216       ENST00000398063       43865186
1175        AGPAT3 ENSG00000160216       ENST00000398063       43865186
1176        AGPAT3 ENSG00000160216       ENST00000398063       43865186
1177        AGPAT3 ENSG00000160216       ENST00000398063       43865186
1178        AGPAT3 ENSG00000160216       ENST00000398063       43865186
1179        AGPAT3 ENSG00000160216       ENST00000398063       43865186
1180        AGPAT3 ENSG00000160216       ENST00000398063       43865186
1181        AGPAT3 ENSG00000160216       ENST00000398063       43865186
1182        AGPAT3 ENSG00000160216       ENST00000398063       43865186
1183        AGPAT3 ENSG00000160216       ENST00000398058       43865186
1184        AGPAT3 ENSG00000160216       ENST00000398058       43865186
1185        AGPAT3 ENSG00000160216       ENST00000398058       43865186
1186        AGPAT3 ENSG00000160216       ENST00000398058       43865186
1187        AGPAT3 ENSG00000160216       ENST00000398058       43865186
1188        AGPAT3 ENSG00000160216       ENST00000398058       43865186
1189        AGPAT3 ENSG00000160216       ENST00000398058       43865186
1190        AGPAT3 ENSG00000160216       ENST00000398058       43865186
1191        AGPAT3 ENSG00000160216       ENST00000398058       43865186
1192        AGPAT3 ENSG00000160216       ENST00000398058       43865186
1193        AGPAT3 ENSG00000160216       ENST00000398058       43865186
1194        AGPAT3 ENSG00000160216       ENST00000457068       43865186
1195        AGPAT3 ENSG00000160216       ENST00000457068       43865186
1196        AGPAT3 ENSG00000160216       ENST00000457068       43865186
1197        AGPAT3 ENSG00000160216       ENST00000457068       43865186
1198        AGPAT3 ENSG00000160216       ENST00000457068       43865186
1199        AGPAT3 ENSG00000160216       ENST00000457068       43865186
1200        AGPAT3 ENSG00000160216       ENST00000448845       43865186
1201        AGPAT3 ENSG00000160216       ENST00000448845       43865186
1202        AGPAT3 ENSG00000160216       ENST00000448845       43865186
1203        AGPAT3 ENSG00000160216       ENST00000498670       43865186
1204        AGPAT3 ENSG00000160216       ENST00000498670       43865186
1205        AGPAT3 ENSG00000160216       ENST00000498670       43865186
1206        AGPAT3 ENSG00000160216       ENST00000422850       43865186
1207        AGPAT3 ENSG00000160216       ENST00000422850       43865186
1208        AGPAT3 ENSG00000160216       ENST00000422850       43865186
1209        AGPAT3 ENSG00000160216       ENST00000422850       43865186
1210        AGPAT3 ENSG00000160216       ENST00000422850       43865186
1211        AGPAT3 ENSG00000160216       ENST00000422850       43865186
1212        AGPAT3 ENSG00000160216       ENST00000497909       43865186
1213        AGPAT3 ENSG00000160216       ENST00000497909       43865186
1214        AGPAT3 ENSG00000160216       ENST00000479117       43865186
1215        AGPAT3 ENSG00000160216       ENST00000479117       43865186
1216        AGPAT3 ENSG00000160216       ENST00000479117       43865186
1217        AGPAT3 ENSG00000160216       ENST00000479117       43865186
1218        AGPAT3 ENSG00000160216       ENST00000479117       43865186
1219        AGPAT3 ENSG00000160216       ENST00000479117       43865186
1220        AGPAT3 ENSG00000160216       ENST00000479117       43865186
1221        AGPAT3 ENSG00000160216       ENST00000479117       43865186
1222        AGPAT3 ENSG00000160216       ENST00000479117       43865186
1223        AGPAT3 ENSG00000160216       ENST00000481319       43865186
1224        AGPAT3 ENSG00000160216       ENST00000481319       43865186
1225        AGPAT3 ENSG00000160216       ENST00000481319       43865186
1226        AGPAT3 ENSG00000160216       ENST00000481319       43865186
1227        AGPAT3 ENSG00000160216       ENST00000467358       43865186
1228        AGPAT3 ENSG00000160216       ENST00000467358       43865186
1229        AGPAT3 ENSG00000160216       ENST00000467358       43865186
1230        AGPAT3 ENSG00000160216       ENST00000467358       43865186
1231        AGPAT3 ENSG00000160216       ENST00000467358       43865186
1232        AGPAT3 ENSG00000160216       ENST00000467358       43865186
1233        AGPAT3 ENSG00000160216       ENST00000467358       43865186
1234        AGPAT3 ENSG00000160216       ENST00000484865       43865186
1235        AGPAT3 ENSG00000160216       ENST00000484865       43865186
1236        AGPAT3 ENSG00000160216       ENST00000484865       43865186
1237        AGPAT3 ENSG00000160216       ENST00000546158       43865186
1238        AGPAT3 ENSG00000160216       ENST00000546158       43865186
1239        AGPAT3 ENSG00000160216       ENST00000546158       43865186
1240        AGPAT3 ENSG00000160216       ENST00000546158       43865186
1241        AGPAT3 ENSG00000160216       ENST00000546158       43865186
1242        AGPAT3 ENSG00000160216       ENST00000546158       43865186
1243        AGPAT3 ENSG00000160216       ENST00000546158       43865186
1244        AGPAT3 ENSG00000160216       ENST00000546158       43865186
1245        AGPAT3 ENSG00000160216       ENST00000546158       43865186
1246               ENSG00000225555       ENST00000440403       34370802
1247               ENSG00000225555       ENST00000440403       34370802
1248               ENSG00000274248       ENST00000621707       45974489
1249     C21orf140 ENSG00000222018       ENST00000410005       34400317
1250       SMIM11A ENSG00000205670       ENST00000481710       34375480
1251       SMIM11A ENSG00000205670       ENST00000481710       34375480
1252       SMIM11A ENSG00000205670       ENST00000481710       34375480
1253       SMIM11A ENSG00000205670       ENST00000481710       34375480
1254       SMIM11A ENSG00000205670       ENST00000481710       34375480
1255       SMIM11A ENSG00000205670       ENST00000399292       34375480
1256       SMIM11A ENSG00000205670       ENST00000399292       34375480
1257       SMIM11A ENSG00000205670       ENST00000399292       34375480
1258       SMIM11A ENSG00000205670       ENST00000399292       34375480
1259       SMIM11A ENSG00000205670       ENST00000399299       34375480
1260       SMIM11A ENSG00000205670       ENST00000399299       34375480
1261       SMIM11A ENSG00000205670       ENST00000399299       34375480
1262       SMIM11A ENSG00000205670       ENST00000399299       34375480
1263       SMIM11A ENSG00000205670       ENST00000489469       34375480
1264       SMIM11A ENSG00000205670       ENST00000489469       34375480
1265       SMIM11A ENSG00000205670       ENST00000489469       34375480
1266       SMIM11A ENSG00000205670       ENST00000489469       34375480
1267       SMIM11A ENSG00000205670       ENST00000495363       34375480
1268       SMIM11A ENSG00000205670       ENST00000495363       34375480
1269       SMIM11A ENSG00000205670       ENST00000495363       34375480
1270       SMIM11A ENSG00000205670       ENST00000495363       34375480
1271       SMIM11A ENSG00000205670       ENST00000495363       34375480
1272       SMIM11A ENSG00000205670       ENST00000495363       34375480
1273       SMIM11A ENSG00000205670       ENST00000474455       34375480
1274       SMIM11A ENSG00000205670       ENST00000474455       34375480
1275       SMIM11A ENSG00000205670       ENST00000474455       34375480
1276       SMIM11A ENSG00000205670       ENST00000399295       34375480
1277       SMIM11A ENSG00000205670       ENST00000399295       34375480
1278       SMIM11A ENSG00000205670       ENST00000399295       34375480
1279       SMIM11A ENSG00000205670       ENST00000399295       34375480
1280       UBASH3A ENSG00000160185       ENST00000635189       42403447
1281       UBASH3A ENSG00000160185       ENST00000635189       42403447
1282       UBASH3A ENSG00000160185       ENST00000635189       42403447
1283       UBASH3A ENSG00000160185       ENST00000635189       42403447
1284       UBASH3A ENSG00000160185       ENST00000635189       42403447
1285       UBASH3A ENSG00000160185       ENST00000291535       42403447
1286       UBASH3A ENSG00000160185       ENST00000291535       42403447
1287       UBASH3A ENSG00000160185       ENST00000291535       42403447
1288       UBASH3A ENSG00000160185       ENST00000291535       42403447
1289       UBASH3A ENSG00000160185       ENST00000291535       42403447
1290       UBASH3A ENSG00000160185       ENST00000291535       42403447
1291       UBASH3A ENSG00000160185       ENST00000291535       42403447
1292       UBASH3A ENSG00000160185       ENST00000291535       42403447
1293       UBASH3A ENSG00000160185       ENST00000291535       42403447
1294       UBASH3A ENSG00000160185       ENST00000291535       42403447
1295       UBASH3A ENSG00000160185       ENST00000291535       42403447
1296       UBASH3A ENSG00000160185       ENST00000291535       42403447
1297       UBASH3A ENSG00000160185       ENST00000291535       42403447
1298       UBASH3A ENSG00000160185       ENST00000291535       42403447
1299       UBASH3A ENSG00000160185       ENST00000635108       42403447
1300       UBASH3A ENSG00000160185       ENST00000635108       42403447
1301       UBASH3A ENSG00000160185       ENST00000635108       42403447
1302       UBASH3A ENSG00000160185       ENST00000635108       42403447
1303       UBASH3A ENSG00000160185       ENST00000635325       42403447
1304       UBASH3A ENSG00000160185       ENST00000635325       42403447
1305       UBASH3A ENSG00000160185       ENST00000635325       42403447
1306       UBASH3A ENSG00000160185       ENST00000635325       42403447
1307       UBASH3A ENSG00000160185       ENST00000635325       42403447
1308       UBASH3A ENSG00000160185       ENST00000635325       42403447
1309       UBASH3A ENSG00000160185       ENST00000635325       42403447
1310       UBASH3A ENSG00000160185       ENST00000635325       42403447
1311       UBASH3A ENSG00000160185       ENST00000635325       42403447
1312       UBASH3A ENSG00000160185       ENST00000635325       42403447
1313       UBASH3A ENSG00000160185       ENST00000635325       42403447
1314       UBASH3A ENSG00000160185       ENST00000635325       42403447
1315       UBASH3A ENSG00000160185       ENST00000635325       42403447
1316       UBASH3A ENSG00000160185       ENST00000635325       42403447
1317       UBASH3A ENSG00000160185       ENST00000634453       42403447
1318       UBASH3A ENSG00000160185       ENST00000634453       42403447
1319       UBASH3A ENSG00000160185       ENST00000634453       42403447
1320       UBASH3A ENSG00000160185       ENST00000634453       42403447
1321       UBASH3A ENSG00000160185       ENST00000634718       42403447
1322       UBASH3A ENSG00000160185       ENST00000634718       42403447
1323       UBASH3A ENSG00000160185       ENST00000634718       42403447
1324       UBASH3A ENSG00000160185       ENST00000634718       42403447
1325       UBASH3A ENSG00000160185       ENST00000319294       42403447
1326       UBASH3A ENSG00000160185       ENST00000319294       42403447
1327       UBASH3A ENSG00000160185       ENST00000319294       42403447
1328       UBASH3A ENSG00000160185       ENST00000319294       42403447
1329       UBASH3A ENSG00000160185       ENST00000319294       42403447
1330       UBASH3A ENSG00000160185       ENST00000319294       42403447
1331       UBASH3A ENSG00000160185       ENST00000319294       42403447
1332       UBASH3A ENSG00000160185       ENST00000319294       42403447
1333       UBASH3A ENSG00000160185       ENST00000319294       42403447
1334       UBASH3A ENSG00000160185       ENST00000319294       42403447
1335       UBASH3A ENSG00000160185       ENST00000319294       42403447
1336       UBASH3A ENSG00000160185       ENST00000319294       42403447
1337       UBASH3A ENSG00000160185       ENST00000319294       42403447
1338       UBASH3A ENSG00000160185       ENST00000319294       42403447
1339       UBASH3A ENSG00000160185       ENST00000319294       42403447
1340       UBASH3A ENSG00000160185       ENST00000398367       42403447
1341       UBASH3A ENSG00000160185       ENST00000398367       42403447
1342       UBASH3A ENSG00000160185       ENST00000398367       42403447
1343       UBASH3A ENSG00000160185       ENST00000398367       42403447
1344       UBASH3A ENSG00000160185       ENST00000398367       42403447
1345       UBASH3A ENSG00000160185       ENST00000398367       42403447
1346       UBASH3A ENSG00000160185       ENST00000398367       42403447
1347       UBASH3A ENSG00000160185       ENST00000398367       42403447
1348       UBASH3A ENSG00000160185       ENST00000398367       42403447
1349       UBASH3A ENSG00000160185       ENST00000398367       42403447
1350       UBASH3A ENSG00000160185       ENST00000398367       42403447
1351       UBASH3A ENSG00000160185       ENST00000398367       42403447
1352       UBASH3A ENSG00000160185       ENST00000473381       42403447
1353       UBASH3A ENSG00000160185       ENST00000473381       42403447
1354       UBASH3A ENSG00000160185       ENST00000473381       42403447
1355       UBASH3A ENSG00000160185       ENST00000473381       42403447
1356       UBASH3A ENSG00000160185       ENST00000473381       42403447
1357       UBASH3A ENSG00000160185       ENST00000473381       42403447
1358       UBASH3A ENSG00000160185       ENST00000473381       42403447
1359       UBASH3A ENSG00000160185       ENST00000473381       42403447
1360       UBASH3A ENSG00000160185       ENST00000473381       42403447
1361       UBASH3A ENSG00000160185       ENST00000473381       42403447
1362       UBASH3A ENSG00000160185       ENST00000473381       42403447
1363       UBASH3A ENSG00000160185       ENST00000473381       42403447
1364       UBASH3A ENSG00000160185       ENST00000473381       42403447
1365       UBASH3A ENSG00000160185       ENST00000473381       42403447
1366               ENSG00000273104       ENST00000608665       34412200
1367               ENSG00000243627       ENST00000450895       34418715
1368               ENSG00000243627       ENST00000450895       34418715
1369               ENSG00000272958       ENST00000608289       34425508
1370         RBM11 ENSG00000185272       ENST00000468643       14216130
1371         RBM11 ENSG00000185272       ENST00000468643       14216130
1372         RBM11 ENSG00000185272       ENST00000468643       14216130
1373         RBM11 ENSG00000185272       ENST00000468643       14216130
1374         RBM11 ENSG00000185272       ENST00000468643       14216130
1375         RBM11 ENSG00000185272       ENST00000468788       14216130
1376         RBM11 ENSG00000185272       ENST00000468788       14216130
1377         RBM11 ENSG00000185272       ENST00000468788       14216130
1378         RBM11 ENSG00000185272       ENST00000468788       14216130
1379         RBM11 ENSG00000185272       ENST00000468788       14216130
1380         RBM11 ENSG00000185272       ENST00000495055       14216130
1381         RBM11 ENSG00000185272       ENST00000495055       14216130
1382         RBM11 ENSG00000185272       ENST00000495055       14216130
1383         RBM11 ENSG00000185272       ENST00000495055       14216130
1384         RBM11 ENSG00000185272       ENST00000461088       14216130
1385         RBM11 ENSG00000185272       ENST00000461088       14216130
1386         RBM11 ENSG00000185272       ENST00000461088       14216130
1387         RBM11 ENSG00000185272       ENST00000400577       14216130
1388         RBM11 ENSG00000185272       ENST00000400577       14216130
1389         RBM11 ENSG00000185272       ENST00000400577       14216130
1390         RBM11 ENSG00000185272       ENST00000400577       14216130
1391         RBM11 ENSG00000185272       ENST00000400577       14216130
1392         RBM11 ENSG00000185272       ENST00000475864       14216130
1393         RBM11 ENSG00000185272       ENST00000475864       14216130
1394               ENSG00000232886       ENST00000430064       16862875
1395               ENSG00000232886       ENST00000430064       16862875
1396               ENSG00000232886       ENST00000430064       16862875
1397               ENSG00000232886       ENST00000430064       16862875
1398        COL6A1 ENSG00000142156       ENST00000361866       45981737
1399        COL6A1 ENSG00000142156       ENST00000361866       45981737
1400        COL6A1 ENSG00000142156       ENST00000361866       45981737
1401        COL6A1 ENSG00000142156       ENST00000361866       45981737
1402        COL6A1 ENSG00000142156       ENST00000361866       45981737
1403        COL6A1 ENSG00000142156       ENST00000361866       45981737
1404        COL6A1 ENSG00000142156       ENST00000361866       45981737
1405        COL6A1 ENSG00000142156       ENST00000361866       45981737
1406        COL6A1 ENSG00000142156       ENST00000361866       45981737
1407        COL6A1 ENSG00000142156       ENST00000361866       45981737
1408        COL6A1 ENSG00000142156       ENST00000361866       45981737
1409        COL6A1 ENSG00000142156       ENST00000361866       45981737
1410        COL6A1 ENSG00000142156       ENST00000361866       45981737
1411        COL6A1 ENSG00000142156       ENST00000361866       45981737
1412        COL6A1 ENSG00000142156       ENST00000361866       45981737
1413        COL6A1 ENSG00000142156       ENST00000361866       45981737
1414        COL6A1 ENSG00000142156       ENST00000361866       45981737
1415        COL6A1 ENSG00000142156       ENST00000361866       45981737
1416        COL6A1 ENSG00000142156       ENST00000361866       45981737
1417        COL6A1 ENSG00000142156       ENST00000361866       45981737
1418        COL6A1 ENSG00000142156       ENST00000361866       45981737
1419        COL6A1 ENSG00000142156       ENST00000361866       45981737
1420        COL6A1 ENSG00000142156       ENST00000361866       45981737
1421        COL6A1 ENSG00000142156       ENST00000361866       45981737
1422        COL6A1 ENSG00000142156       ENST00000361866       45981737
1423        COL6A1 ENSG00000142156       ENST00000361866       45981737
1424        COL6A1 ENSG00000142156       ENST00000361866       45981737
1425        COL6A1 ENSG00000142156       ENST00000361866       45981737
1426        COL6A1 ENSG00000142156       ENST00000361866       45981737
1427        COL6A1 ENSG00000142156       ENST00000361866       45981737
1428        COL6A1 ENSG00000142156       ENST00000361866       45981737
1429        COL6A1 ENSG00000142156       ENST00000361866       45981737
1430        COL6A1 ENSG00000142156       ENST00000361866       45981737
1431        COL6A1 ENSG00000142156       ENST00000361866       45981737
1432        COL6A1 ENSG00000142156       ENST00000361866       45981737
1433        COL6A1 ENSG00000142156       ENST00000492851       45981737
1434        COL6A1 ENSG00000142156       ENST00000492851       45981737
1435        COL6A1 ENSG00000142156       ENST00000466285       45981737
1436        COL6A1 ENSG00000142156       ENST00000466285       45981737
1437        COL6A1 ENSG00000142156       ENST00000466285       45981737
1438        COL6A1 ENSG00000142156       ENST00000463060       45981737
1439        COL6A1 ENSG00000142156       ENST00000463060       45981737
1440        COL6A1 ENSG00000142156       ENST00000463060       45981737
1441        COL6A1 ENSG00000142156       ENST00000463060       45981737
1442        COL6A1 ENSG00000142156       ENST00000463060       45981737
1443        COL6A1 ENSG00000142156       ENST00000463060       45981737
1444        COL6A1 ENSG00000142156       ENST00000498614       45981737
1445        COL6A1 ENSG00000142156       ENST00000498614       45981737
1446        COL6A1 ENSG00000142156       ENST00000498614       45981737
1447        COL6A1 ENSG00000142156       ENST00000498614       45981737
1448        COL6A1 ENSG00000142156       ENST00000498614       45981737
1449        COL6A1 ENSG00000142156       ENST00000498614       45981737
1450        COL6A1 ENSG00000142156       ENST00000486023       45981737
1451        COL6A1 ENSG00000142156       ENST00000486023       45981737
1452        COL6A1 ENSG00000142156       ENST00000486023       45981737
1453        COL6A1 ENSG00000142156       ENST00000612273       45981737
1454        COL6A1 ENSG00000142156       ENST00000612273       45981737
1455        COL6A1 ENSG00000142156       ENST00000612273       45981737
1456        COL6A1 ENSG00000142156       ENST00000612273       45981737
1457        COL6A1 ENSG00000142156       ENST00000612273       45981737
1458        COL6A1 ENSG00000142156       ENST00000612273       45981737
1459        COL6A1 ENSG00000142156       ENST00000612273       45981737
1460        COL6A1 ENSG00000142156       ENST00000612273       45981737
1461        COL6A1 ENSG00000142156       ENST00000612273       45981737
1462        COL6A1 ENSG00000142156       ENST00000612273       45981737
1463        COL6A1 ENSG00000142156       ENST00000612273       45981737
1464        COL6A1 ENSG00000142156       ENST00000612273       45981737
1465        COL6A1 ENSG00000142156       ENST00000612273       45981737
1466        COL6A1 ENSG00000142156       ENST00000612273       45981737
1467        COL6A1 ENSG00000142156       ENST00000612273       45981737
1468        COL6A1 ENSG00000142156       ENST00000612273       45981737
1469        COL6A1 ENSG00000142156       ENST00000612273       45981737
1470        COL6A1 ENSG00000142156       ENST00000612273       45981737
1471        COL6A1 ENSG00000142156       ENST00000612273       45981737
1472        COL6A1 ENSG00000142156       ENST00000612273       45981737
1473        COL6A1 ENSG00000142156       ENST00000612273       45981737
1474        COL6A1 ENSG00000142156       ENST00000612273       45981737
1475        COL6A1 ENSG00000142156       ENST00000612273       45981737
1476        COL6A1 ENSG00000142156       ENST00000612273       45981737
1477        COL6A1 ENSG00000142156       ENST00000612273       45981737
1478        COL6A1 ENSG00000142156       ENST00000612273       45981737
1479        COL6A1 ENSG00000142156       ENST00000612273       45981737
1480        COL6A1 ENSG00000142156       ENST00000612273       45981737
1481        COL6A1 ENSG00000142156       ENST00000612273       45981737
1482        COL6A1 ENSG00000142156       ENST00000612273       45981737
1483        COL6A1 ENSG00000142156       ENST00000612273       45981737
1484        COL6A1 ENSG00000142156       ENST00000612273       45981737
1485        COL6A1 ENSG00000142156       ENST00000612273       45981737
1486        COL6A1 ENSG00000142156       ENST00000612273       45981737
1487        NEK4P1 ENSG00000225735       ENST00000433383       17210469
1488               ENSG00000278181       ENST00000620221       17296219
1489     LINC01549 ENSG00000232560       ENST00000440664       17438890
1490     LINC01549 ENSG00000232560       ENST00000440664       17438890
1491     LINC01549 ENSG00000232560       ENST00000440664       17438890
1492     LINC01549 ENSG00000232560       ENST00000440664       17438890
1493     LINC01549 ENSG00000232560       ENST00000613691       17438890
1494     LINC01549 ENSG00000232560       ENST00000613691       17438890
1495     LINC01549 ENSG00000232560       ENST00000613691       17438890
1496      RPL39P40 ENSG00000226580       ENST00000445481       17500679
1497         KCNE1 ENSG00000180509       ENST00000399289       34446688
1498         KCNE1 ENSG00000180509       ENST00000399289       34446688
1499         KCNE1 ENSG00000180509       ENST00000399289       34446688
1500         KCNE1 ENSG00000180509       ENST00000399286       34446688
1501         KCNE1 ENSG00000180509       ENST00000399286       34446688
1502         KCNE1 ENSG00000180509       ENST00000399286       34446688
1503         KCNE1 ENSG00000180509       ENST00000399286       34446688
1504         KCNE1 ENSG00000180509       ENST00000416357       34446688
1505         KCNE1 ENSG00000180509       ENST00000416357       34446688
1506         KCNE1 ENSG00000180509       ENST00000399284       34446688
1507         KCNE1 ENSG00000180509       ENST00000399284       34446688
1508         KCNE1 ENSG00000180509       ENST00000399284       34446688
1509         KCNE1 ENSG00000180509       ENST00000489175       34446688
1510         KCNE1 ENSG00000180509       ENST00000489175       34446688
1511         KCNE1 ENSG00000180509       ENST00000432085       34446688
1512         KCNE1 ENSG00000180509       ENST00000432085       34446688
1513         KCNE1 ENSG00000180509       ENST00000432085       34446688
1514         KCNE1 ENSG00000180509       ENST00000621601       34446688
1515         KCNE1 ENSG00000180509       ENST00000621601       34446688
1516         KCNE1 ENSG00000180509       ENST00000621601       34446688
1517         KCNE1 ENSG00000180509       ENST00000337385       34446688
1518         KCNE1 ENSG00000180509       ENST00000337385       34446688
1519         KCNE1 ENSG00000180509       ENST00000337385       34446688
1520         KCNE1 ENSG00000180509       ENST00000611936       34446688
1521         KCNE1 ENSG00000180509       ENST00000611936       34446688
1522         CXADR ENSG00000154639       ENST00000284878       17512382
1523         CXADR ENSG00000154639       ENST00000284878       17512382
1524         CXADR ENSG00000154639       ENST00000284878       17512382
1525         CXADR ENSG00000154639       ENST00000284878       17512382
1526         CXADR ENSG00000154639       ENST00000284878       17512382
1527         CXADR ENSG00000154639       ENST00000284878       17512382
1528         CXADR ENSG00000154639       ENST00000284878       17512382
1529         CXADR ENSG00000154639       ENST00000400166       17512382
1530         CXADR ENSG00000154639       ENST00000400166       17512382
1531         CXADR ENSG00000154639       ENST00000400166       17512382
1532         CXADR ENSG00000154639       ENST00000400166       17512382
1533         CXADR ENSG00000154639       ENST00000400166       17512382
1534         CXADR ENSG00000154639       ENST00000356275       17512382
1535         CXADR ENSG00000154639       ENST00000356275       17512382
1536         CXADR ENSG00000154639       ENST00000356275       17512382
1537         CXADR ENSG00000154639       ENST00000400165       17512382
1538         CXADR ENSG00000154639       ENST00000400165       17512382
1539         CXADR ENSG00000154639       ENST00000400165       17512382
1540         CXADR ENSG00000154639       ENST00000400165       17512382
1541         CXADR ENSG00000154639       ENST00000400169       17512382
1542         CXADR ENSG00000154639       ENST00000400169       17512382
1543         CXADR ENSG00000154639       ENST00000400169       17512382
1544         CXADR ENSG00000154639       ENST00000400169       17512382
1545         CXADR ENSG00000154639       ENST00000400169       17512382
1546         CXADR ENSG00000154639       ENST00000400169       17512382
1547         CXADR ENSG00000154639       ENST00000400169       17512382
1548         CXADR ENSG00000154639       ENST00000400169       17512382
1549      BTF3L4P1 ENSG00000232260       ENST00000413813       17518526
1550               ENSG00000224413       ENST00000451618       46037052
1551               ENSG00000224413       ENST00000451618       46037052
1552               ENSG00000228235       ENST00000429512       46052596
1553               ENSG00000228235       ENST00000429512       46052596
1554               ENSG00000226115       ENST00000435738       46056516
1555               ENSG00000226115       ENST00000435738       46056516
1556        ABCC13 ENSG00000243064       ENST00000429114       14236206
1557        ABCC13 ENSG00000243064       ENST00000429114       14236206
1558        ABCC13 ENSG00000243064       ENST00000429114       14236206
1559        ABCC13 ENSG00000243064       ENST00000429114       14236206
1560        ABCC13 ENSG00000243064       ENST00000429114       14236206
1561        ABCC13 ENSG00000243064       ENST00000482980       14236206
1562        ABCC13 ENSG00000243064       ENST00000482980       14236206
1563        ABCC13 ENSG00000243064       ENST00000482980       14236206
1564        ABCC13 ENSG00000243064       ENST00000482980       14236206
1565        ABCC13 ENSG00000243064       ENST00000482980       14236206
1566        ABCC13 ENSG00000243064       ENST00000482980       14236206
1567        ABCC13 ENSG00000243064       ENST00000482980       14236206
1568        ABCC13 ENSG00000243064       ENST00000482980       14236206
1569        ABCC13 ENSG00000243064       ENST00000482980       14236206
1570        ABCC13 ENSG00000243064       ENST00000482980       14236206
1571        ABCC13 ENSG00000243064       ENST00000482980       14236206
1572        ABCC13 ENSG00000243064       ENST00000482980       14236206
1573        ABCC13 ENSG00000243064       ENST00000482980       14236206
1574        ABCC13 ENSG00000243064       ENST00000482980       14236206
1575        ABCC13 ENSG00000243064       ENST00000481582       14236206
1576        ABCC13 ENSG00000243064       ENST00000481582       14236206
1577        ABCC13 ENSG00000243064       ENST00000481582       14236206
1578        ABCC13 ENSG00000243064       ENST00000481582       14236206
1579        ABCC13 ENSG00000243064       ENST00000481582       14236206
1580        ABCC13 ENSG00000243064       ENST00000467409       14236206
1581        ABCC13 ENSG00000243064       ENST00000467409       14236206
1582        ABCC13 ENSG00000243064       ENST00000467409       14236206
1583        ABCC13 ENSG00000243064       ENST00000467409       14236206
1584        ABCC13 ENSG00000243064       ENST00000467409       14236206
1585        ABCC13 ENSG00000243064       ENST00000467409       14236206
1586        ABCC13 ENSG00000243064       ENST00000471902       14236206
1587        ABCC13 ENSG00000243064       ENST00000471902       14236206
1588        ABCC13 ENSG00000243064       ENST00000471902       14236206
1589        ABCC13 ENSG00000243064       ENST00000471902       14236206
1590        ABCC13 ENSG00000243064       ENST00000471902       14236206
1591        ABCC13 ENSG00000243064       ENST00000463099       14236206
1592        ABCC13 ENSG00000243064       ENST00000463099       14236206
1593        ABCC13 ENSG00000243064       ENST00000463099       14236206
1594        ABCC13 ENSG00000243064       ENST00000463099       14236206
1595        ABCC13 ENSG00000243064       ENST00000463099       14236206
1596        ABCC13 ENSG00000243064       ENST00000463099       14236206
1597        ABCC13 ENSG00000243064       ENST00000463099       14236206
1598        ABCC13 ENSG00000243064       ENST00000463099       14236206
1599        ABCC13 ENSG00000243064       ENST00000463099       14236206
1600        ABCC13 ENSG00000243064       ENST00000463099       14236206
1601        ABCC13 ENSG00000243064       ENST00000463099       14236206
1602        ABCC13 ENSG00000243064       ENST00000463099       14236206
1603        ABCC13 ENSG00000243064       ENST00000463099       14236206
1604        ABCC13 ENSG00000243064       ENST00000463099       14236206
1605        ABCC13 ENSG00000243064       ENST00000463099       14236206
1606        ABCC13 ENSG00000243064       ENST00000463099       14236206
1607        ABCC13 ENSG00000243064       ENST00000463099       14236206
1608        ABCC13 ENSG00000243064       ENST00000463099       14236206
1609        ABCC13 ENSG00000243064       ENST00000463099       14236206
1610        ABCC13 ENSG00000243064       ENST00000463099       14236206
1611        ABCC13 ENSG00000243064       ENST00000463099       14236206
1612        ABCC13 ENSG00000243064       ENST00000463099       14236206
1613        ABCC13 ENSG00000243064       ENST00000463099       14236206
1614        ABCC13 ENSG00000243064       ENST00000463099       14236206
1615        ABCC13 ENSG00000243064       ENST00000463099       14236206
1616        ABCC13 ENSG00000243064       ENST00000463099       14236206
1617        ABCC13 ENSG00000243064       ENST00000463099       14236206
1618        ABCC13 ENSG00000243064       ENST00000463099       14236206
1619         RCAN1 ENSG00000159200       ENST00000487434       34513142
1620         RCAN1 ENSG00000159200       ENST00000487434       34513142
1621         RCAN1 ENSG00000159200       ENST00000482533       34513142
1622         RCAN1 ENSG00000159200       ENST00000482533       34513142
1623         RCAN1 ENSG00000159200       ENST00000482533       34513142
1624         RCAN1 ENSG00000159200       ENST00000481448       34513142
1625         RCAN1 ENSG00000159200       ENST00000481448       34513142
1626         RCAN1 ENSG00000159200       ENST00000481448       34513142
1627         RCAN1 ENSG00000159200       ENST00000481448       34513142
1628         RCAN1 ENSG00000159200       ENST00000481448       34513142
1629         RCAN1 ENSG00000159200       ENST00000381132       34513142
1630         RCAN1 ENSG00000159200       ENST00000381132       34513142
1631         RCAN1 ENSG00000159200       ENST00000381132       34513142
1632         RCAN1 ENSG00000159200       ENST00000381132       34513142
1633         RCAN1 ENSG00000159200       ENST00000487990       34513142
1634         RCAN1 ENSG00000159200       ENST00000487990       34513142
1635         RCAN1 ENSG00000159200       ENST00000487990       34513142
1636         RCAN1 ENSG00000159200       ENST00000487990       34513142
1637         RCAN1 ENSG00000159200       ENST00000399272       34513142
1638         RCAN1 ENSG00000159200       ENST00000399272       34513142
1639         RCAN1 ENSG00000159200       ENST00000399272       34513142
1640         RCAN1 ENSG00000159200       ENST00000399272       34513142
1641         RCAN1 ENSG00000159200       ENST00000489903       34513142
1642         RCAN1 ENSG00000159200       ENST00000489903       34513142
1643         RCAN1 ENSG00000159200       ENST00000489903       34513142
1644         RCAN1 ENSG00000159200       ENST00000489903       34513142
1645         RCAN1 ENSG00000159200       ENST00000313806       34513142
1646         RCAN1 ENSG00000159200       ENST00000313806       34513142
1647         RCAN1 ENSG00000159200       ENST00000313806       34513142
1648         RCAN1 ENSG00000159200       ENST00000313806       34513142
1649         RCAN1 ENSG00000159200       ENST00000492600       34513142
1650         RCAN1 ENSG00000159200       ENST00000492600       34513142
1651         RCAN1 ENSG00000159200       ENST00000492600       34513142
1652         RCAN1 ENSG00000159200       ENST00000609325       34513142
1653         RCAN1 ENSG00000159200       ENST00000463276       34513142
1654         RCAN1 ENSG00000159200       ENST00000463276       34513142
1655         RCAN1 ENSG00000159200       ENST00000463276       34513142
1656         RCAN1 ENSG00000159200       ENST00000443408       34513142
1657         RCAN1 ENSG00000159200       ENST00000443408       34513142
1658         RCAN1 ENSG00000159200       ENST00000443408       34513142
1659         RCAN1 ENSG00000159200       ENST00000443408       34513142
1660         RCAN1 ENSG00000159200       ENST00000381135       34513142
1661         RCAN1 ENSG00000159200       ENST00000381135       34513142
1662         RCAN1 ENSG00000159200       ENST00000381135       34513142
1663         RCAN1 ENSG00000159200       ENST00000381135       34513142
1664         RCAN1 ENSG00000159200       ENST00000620920       34513142
1665         RCAN1 ENSG00000159200       ENST00000620920       34513142
1666         RCAN1 ENSG00000159200       ENST00000620920       34513142
1667         RCAN1 ENSG00000159200       ENST00000620920       34513142
1668       PSMA6P3 ENSG00000233767       ENST00000428242       46072085
1669          BTG3 ENSG00000154640       ENST00000339775       17593653
1670          BTG3 ENSG00000154640       ENST00000339775       17593653
1671          BTG3 ENSG00000154640       ENST00000339775       17593653
1672          BTG3 ENSG00000154640       ENST00000339775       17593653
1673          BTG3 ENSG00000154640       ENST00000339775       17593653
1674          BTG3 ENSG00000154640       ENST00000339775       17593653
1675          BTG3 ENSG00000154640       ENST00000348354       17593653
1676          BTG3 ENSG00000154640       ENST00000348354       17593653
1677          BTG3 ENSG00000154640       ENST00000348354       17593653
1678          BTG3 ENSG00000154640       ENST00000348354       17593653
1679          BTG3 ENSG00000154640       ENST00000348354       17593653
1680          BTG3 ENSG00000154640       ENST00000471860       17593653
1681          BTG3 ENSG00000154640       ENST00000471860       17593653
1682          BTG3 ENSG00000154640       ENST00000496601       17593653
1683          BTG3 ENSG00000154640       ENST00000496601       17593653
1684          BTG3 ENSG00000154640       ENST00000464058       17593653
1685          BTG3 ENSG00000154640       ENST00000464058       17593653
1686          BTG3 ENSG00000154640       ENST00000457956       17593653
1687          BTG3 ENSG00000154640       ENST00000457956       17593653
1688          BTG3 ENSG00000154640       ENST00000457956       17593653
1689               ENSG00000280594       ENST00000626994       17611744
1690               ENSG00000280594       ENST00000626994       17611744
1691               ENSG00000280594       ENST00000626994       17611744
1692               ENSG00000280594       ENST00000630155       17611744
1693    PAXBP1-AS1 ENSG00000238197       ENST00000458479       32728115
1694    PAXBP1-AS1 ENSG00000238197       ENST00000458479       32728115
1695    PAXBP1-AS1 ENSG00000238197       ENST00000440052       32728115
1696    PAXBP1-AS1 ENSG00000238197       ENST00000440052       32728115
1697    PAXBP1-AS1 ENSG00000238197       ENST00000440052       32728115
1698    PAXBP1-AS1 ENSG00000238197       ENST00000440052       32728115
1699    PAXBP1-AS1 ENSG00000238197       ENST00000455170       32728115
1700    PAXBP1-AS1 ENSG00000238197       ENST00000455170       32728115
1701    PAXBP1-AS1 ENSG00000238197       ENST00000455170       32728115
1702        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1703        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1704        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1705        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1706        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1707        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1708        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1709        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1710        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1711        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1712        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1713        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1714        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1715        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1716        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1717        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1718        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1719        PAXBP1 ENSG00000159086       ENST00000331923       32733899
1720        PAXBP1 ENSG00000159086       ENST00000466846       32733899
1721        PAXBP1 ENSG00000159086       ENST00000466846       32733899
1722        PAXBP1 ENSG00000159086       ENST00000466846       32733899
1723        PAXBP1 ENSG00000159086       ENST00000466846       32733899
1724        PAXBP1 ENSG00000159086       ENST00000466846       32733899
1725        PAXBP1 ENSG00000159086       ENST00000466846       32733899
1726        PAXBP1 ENSG00000159086       ENST00000466846       32733899
1727        PAXBP1 ENSG00000159086       ENST00000466846       32733899
1728        PAXBP1 ENSG00000159086       ENST00000466846       32733899
1729        PAXBP1 ENSG00000159086       ENST00000466846       32733899
1730        PAXBP1 ENSG00000159086       ENST00000466846       32733899
1731        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1732        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1733        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1734        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1735        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1736        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1737        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1738        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1739        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1740        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1741        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1742        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1743        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1744        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1745        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1746        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1747        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1748        PAXBP1 ENSG00000159086       ENST00000443785       32733899
1749        PAXBP1 ENSG00000159086       ENST00000497873       32733899
1750        PAXBP1 ENSG00000159086       ENST00000497873       32733899
1751        PAXBP1 ENSG00000159086       ENST00000497873       32733899
1752        PAXBP1 ENSG00000159086       ENST00000497873       32733899
1753        PAXBP1 ENSG00000159086       ENST00000497873       32733899
1754        PAXBP1 ENSG00000159086       ENST00000497873       32733899
1755        PAXBP1 ENSG00000159086       ENST00000497873       32733899
1756        PAXBP1 ENSG00000159086       ENST00000497873       32733899
1757        PAXBP1 ENSG00000159086       ENST00000497873       32733899
1758        PAXBP1 ENSG00000159086       ENST00000497873       32733899
1759        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1760        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1761        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1762        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1763        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1764        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1765        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1766        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1767        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1768        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1769        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1770        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1771        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1772        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1773        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1774        PAXBP1 ENSG00000159086       ENST00000290178       32733899
1775        PAXBP1 ENSG00000159086       ENST00000445049       32733899
1776        PAXBP1 ENSG00000159086       ENST00000445049       32733899
1777        PAXBP1 ENSG00000159086       ENST00000445049       32733899
1778        PAXBP1 ENSG00000159086       ENST00000445049       32733899
1779        PAXBP1 ENSG00000159086       ENST00000421049       32733899
1780        PAXBP1 ENSG00000159086       ENST00000421049       32733899
1781        PAXBP1 ENSG00000159086       ENST00000421049       32733899
1782        PAXBP1 ENSG00000159086       ENST00000472588       32733899
1783        PAXBP1 ENSG00000159086       ENST00000472588       32733899
1784        PAXBP1 ENSG00000159086       ENST00000472588       32733899
1785        PAXBP1 ENSG00000159086       ENST00000472588       32733899
1786        PAXBP1 ENSG00000159086       ENST00000472588       32733899
1787        PAXBP1 ENSG00000159086       ENST00000472588       32733899
1788        PAXBP1 ENSG00000159086       ENST00000472588       32733899
1789        PAXBP1 ENSG00000159086       ENST00000472588       32733899
1790        PAXBP1 ENSG00000159086       ENST00000464256       32733899
1791        PAXBP1 ENSG00000159086       ENST00000464256       32733899
1792        PAXBP1 ENSG00000159086       ENST00000464256       32733899
1793        PAXBP1 ENSG00000159086       ENST00000464256       32733899
1794        PAXBP1 ENSG00000159086       ENST00000464256       32733899
1795        PAXBP1 ENSG00000159086       ENST00000464256       32733899
1796      RNU1-98P ENSG00000239023       ENST00000458992       16718998
1797     MIR3687-2 ENSG00000264063       ENST00000577708        8987370
1798               ENSG00000273614       ENST00000619030        7826098
1799     RNA5SP491 ENSG00000199806       ENST00000362936       36851911
1800     MIR6724-2 ENSG00000274060       ENST00000616483        8249505
1801     RNU6-426P ENSG00000252273       ENST00000516464       16035413
1802         FAM3B ENSG00000183844       ENST00000479810       41304212
1803         FAM3B ENSG00000183844       ENST00000479810       41304212
1804         FAM3B ENSG00000183844       ENST00000479810       41304212
1805         FAM3B ENSG00000183844       ENST00000479810       41304212
1806         FAM3B ENSG00000183844       ENST00000479810       41304212
1807         FAM3B ENSG00000183844       ENST00000479810       41304212
1808         FAM3B ENSG00000183844       ENST00000479810       41304212
1809         FAM3B ENSG00000183844       ENST00000479810       41304212
1810         FAM3B ENSG00000183844       ENST00000479810       41304212
1811         FAM3B ENSG00000183844       ENST00000479810       41304212
1812         FAM3B ENSG00000183844       ENST00000518236       41304212
1813         FAM3B ENSG00000183844       ENST00000518236       41304212
1814         FAM3B ENSG00000183844       ENST00000518236       41304212
1815         FAM3B ENSG00000183844       ENST00000518236       41304212
1816         FAM3B ENSG00000183844       ENST00000518236       41304212
1817         FAM3B ENSG00000183844       ENST00000357985       41304212
1818         FAM3B ENSG00000183844       ENST00000357985       41304212
1819         FAM3B ENSG00000183844       ENST00000357985       41304212
1820         FAM3B ENSG00000183844       ENST00000357985       41304212
1821         FAM3B ENSG00000183844       ENST00000357985       41304212
1822         FAM3B ENSG00000183844       ENST00000357985       41304212
1823         FAM3B ENSG00000183844       ENST00000357985       41304212
1824         FAM3B ENSG00000183844       ENST00000357985       41304212
1825         FAM3B ENSG00000183844       ENST00000398652       41304212
1826         FAM3B ENSG00000183844       ENST00000398652       41304212
1827         FAM3B ENSG00000183844       ENST00000398652       41304212
1828         FAM3B ENSG00000183844       ENST00000398652       41304212
1829         FAM3B ENSG00000183844       ENST00000398652       41304212
1830         FAM3B ENSG00000183844       ENST00000398652       41304212
1831         FAM3B ENSG00000183844       ENST00000398652       41304212
1832         FAM3B ENSG00000183844       ENST00000398652       41304212
1833         FAM3B ENSG00000183844       ENST00000398652       41304212
1834         FAM3B ENSG00000183844       ENST00000398647       41304212
1835         FAM3B ENSG00000183844       ENST00000398647       41304212
1836         FAM3B ENSG00000183844       ENST00000398647       41304212
1837         FAM3B ENSG00000183844       ENST00000398647       41304212
1838         FAM3B ENSG00000183844       ENST00000398647       41304212
1839         FAM3B ENSG00000183844       ENST00000398647       41304212
1840         FAM3B ENSG00000183844       ENST00000398647       41304212
1841         FAM3B ENSG00000183844       ENST00000398646       41304212
1842         FAM3B ENSG00000183844       ENST00000398646       41304212
1843         FAM3B ENSG00000183844       ENST00000398646       41304212
1844         FAM3B ENSG00000183844       ENST00000398646       41304212
1845         FAM3B ENSG00000183844       ENST00000398646       41304212
1846         FAM3B ENSG00000183844       ENST00000398646       41304212
1847         FAM3B ENSG00000183844       ENST00000398646       41304212
1848               ENSG00000224100       ENST00000428410       42964639
1849               ENSG00000224100       ENST00000428410       42964639
1850          WDR4 ENSG00000160193       ENST00000330317       42843094
1851          WDR4 ENSG00000160193       ENST00000330317       42843094
1852          WDR4 ENSG00000160193       ENST00000330317       42843094
1853          WDR4 ENSG00000160193       ENST00000330317       42843094
1854          WDR4 ENSG00000160193       ENST00000330317       42843094
1855          WDR4 ENSG00000160193       ENST00000330317       42843094
1856          WDR4 ENSG00000160193       ENST00000330317       42843094
1857          WDR4 ENSG00000160193       ENST00000330317       42843094
1858          WDR4 ENSG00000160193       ENST00000330317       42843094
1859          WDR4 ENSG00000160193       ENST00000330317       42843094
1860          WDR4 ENSG00000160193       ENST00000330317       42843094
1861          WDR4 ENSG00000160193       ENST00000330317       42843094
1862          WDR4 ENSG00000160193       ENST00000492742       42843094
1863          WDR4 ENSG00000160193       ENST00000492742       42843094
1864          WDR4 ENSG00000160193       ENST00000492742       42843094
1865          WDR4 ENSG00000160193       ENST00000492742       42843094
1866          WDR4 ENSG00000160193       ENST00000492742       42843094
1867          WDR4 ENSG00000160193       ENST00000492742       42843094
1868          WDR4 ENSG00000160193       ENST00000492742       42843094
1869          WDR4 ENSG00000160193       ENST00000492742       42843094
1870          WDR4 ENSG00000160193       ENST00000492742       42843094
1871          WDR4 ENSG00000160193       ENST00000492742       42843094
1872          WDR4 ENSG00000160193       ENST00000492742       42843094
1873          WDR4 ENSG00000160193       ENST00000398208       42843094
1874          WDR4 ENSG00000160193       ENST00000398208       42843094
1875          WDR4 ENSG00000160193       ENST00000398208       42843094
1876          WDR4 ENSG00000160193       ENST00000398208       42843094
1877          WDR4 ENSG00000160193       ENST00000398208       42843094
1878          WDR4 ENSG00000160193       ENST00000398208       42843094
1879          WDR4 ENSG00000160193       ENST00000398208       42843094
1880          WDR4 ENSG00000160193       ENST00000398208       42843094
1881          WDR4 ENSG00000160193       ENST00000398208       42843094
1882          WDR4 ENSG00000160193       ENST00000398208       42843094
1883          WDR4 ENSG00000160193       ENST00000398208       42843094
1884          WDR4 ENSG00000160193       ENST00000476326       42843094
1885          WDR4 ENSG00000160193       ENST00000476326       42843094
1886          WDR4 ENSG00000160193       ENST00000476326       42843094
1887          WDR4 ENSG00000160193       ENST00000476326       42843094
1888          WDR4 ENSG00000160193       ENST00000476326       42843094
1889          WDR4 ENSG00000160193       ENST00000476326       42843094
1890          WDR4 ENSG00000160193       ENST00000476326       42843094
1891          WDR4 ENSG00000160193       ENST00000476326       42843094
1892          WDR4 ENSG00000160193       ENST00000476326       42843094
1893          WDR4 ENSG00000160193       ENST00000476326       42843094
1894          WDR4 ENSG00000160193       ENST00000476326       42843094
1895          WDR4 ENSG00000160193       ENST00000479429       42843094
1896          WDR4 ENSG00000160193       ENST00000479429       42843094
1897          WDR4 ENSG00000160193       ENST00000479429       42843094
1898          WDR4 ENSG00000160193       ENST00000479429       42843094
1899          WDR4 ENSG00000160193       ENST00000479429       42843094
1900          WDR4 ENSG00000160193       ENST00000479429       42843094
1901          WDR4 ENSG00000160193       ENST00000479429       42843094
1902          WDR4 ENSG00000160193       ENST00000479429       42843094
1903          WDR4 ENSG00000160193       ENST00000463902       42843094
1904          WDR4 ENSG00000160193       ENST00000463902       42843094
1905          WDR4 ENSG00000160193       ENST00000463902       42843094
1906          WDR4 ENSG00000160193       ENST00000463902       42843094
1907          WDR4 ENSG00000160193       ENST00000463902       42843094
1908          WDR4 ENSG00000160193       ENST00000463902       42843094
1909          WDR4 ENSG00000160193       ENST00000463902       42843094
1910          WDR4 ENSG00000160193       ENST00000470658       42843094
1911          WDR4 ENSG00000160193       ENST00000470658       42843094
1912          WDR4 ENSG00000160193       ENST00000470658       42843094
1913          WDR4 ENSG00000160193       ENST00000470658       42843094
1914          WDR4 ENSG00000160193       ENST00000470658       42843094
1915      TTC3-AS1 ENSG00000228677       ENST00000424733       37187666
1916      TTC3-AS1 ENSG00000228677       ENST00000424733       37187666
1917               ENSG00000232010       ENST00000442785       44250813
1918               ENSG00000232010       ENST00000442785       44250813
1919               ENSG00000279177       ENST00000624906        7626344
1920               ENSG00000278158       ENST00000619053       44241847
1921               ENSG00000276076       ENST00000619537        6560714
1922               ENSG00000276076       ENST00000619537        6560714
1923               ENSG00000276076       ENST00000619537        6560714
1924               ENSG00000276076       ENST00000624019        6560714
1925               ENSG00000276076       ENST00000624019        6560714
1926               ENSG00000276076       ENST00000624019        6560714
1927               ENSG00000276076       ENST00000624901        6560714
1928               ENSG00000276076       ENST00000624901        6560714
1929               ENSG00000276076       ENST00000624932        6560714
1930               ENSG00000276076       ENST00000624932        6560714
1931               ENSG00000276076       ENST00000624932        6560714
1932               ENSG00000279226       ENST00000623061        6520344
1933               ENSG00000273254       ENST00000608809       29024255
1934               ENSG00000228318       ENST00000411427       41441056
1935               ENSG00000228318       ENST00000411427       41441056
1936               ENSG00000228318       ENST00000411427       41441056
1937           MX1 ENSG00000157601       ENST00000490220       41420304
1938           MX1 ENSG00000157601       ENST00000490220       41420304
1939           MX1 ENSG00000157601       ENST00000490220       41420304
1940           MX1 ENSG00000157601       ENST00000490220       41420304
1941           MX1 ENSG00000157601       ENST00000490220       41420304
1942           MX1 ENSG00000157601       ENST00000468506       41420304
1943           MX1 ENSG00000157601       ENST00000468506       41420304
1944           MX1 ENSG00000157601       ENST00000468506       41420304
1945           MX1 ENSG00000157601       ENST00000468506       41420304
1946           MX1 ENSG00000157601       ENST00000398600       41420304
1947           MX1 ENSG00000157601       ENST00000398600       41420304
1948           MX1 ENSG00000157601       ENST00000398600       41420304
1949           MX1 ENSG00000157601       ENST00000398600       41420304
1950           MX1 ENSG00000157601       ENST00000398600       41420304
1951           MX1 ENSG00000157601       ENST00000398600       41420304
1952           MX1 ENSG00000157601       ENST00000398600       41420304
1953           MX1 ENSG00000157601       ENST00000398600       41420304
1954           MX1 ENSG00000157601       ENST00000398600       41420304
1955           MX1 ENSG00000157601       ENST00000398600       41420304
1956           MX1 ENSG00000157601       ENST00000398600       41420304
1957           MX1 ENSG00000157601       ENST00000398600       41420304
1958           MX1 ENSG00000157601       ENST00000398600       41420304
1959           MX1 ENSG00000157601       ENST00000398600       41420304
1960           MX1 ENSG00000157601       ENST00000398600       41420304
1961           MX1 ENSG00000157601       ENST00000398600       41420304
1962           MX1 ENSG00000157601       ENST00000398600       41420304
1963           MX1 ENSG00000157601       ENST00000398600       41420304
1964           MX1 ENSG00000157601       ENST00000398600       41420304
1965           MX1 ENSG00000157601       ENST00000413778       41420304
1966           MX1 ENSG00000157601       ENST00000413778       41420304
1967           MX1 ENSG00000157601       ENST00000413778       41420304
1968           MX1 ENSG00000157601       ENST00000413778       41420304
1969           MX1 ENSG00000157601       ENST00000413778       41420304
1970           MX1 ENSG00000157601       ENST00000413778       41420304
1971           MX1 ENSG00000157601       ENST00000413778       41420304
1972           MX1 ENSG00000157601       ENST00000413778       41420304
1973           MX1 ENSG00000157601       ENST00000413778       41420304
1974           MX1 ENSG00000157601       ENST00000419044       41420304
1975           MX1 ENSG00000157601       ENST00000419044       41420304
1976           MX1 ENSG00000157601       ENST00000419044       41420304
1977           MX1 ENSG00000157601       ENST00000419044       41420304
1978           MX1 ENSG00000157601       ENST00000419044       41420304
1979           MX1 ENSG00000157601       ENST00000398598       41420304
1980           MX1 ENSG00000157601       ENST00000398598       41420304
1981           MX1 ENSG00000157601       ENST00000398598       41420304
1982           MX1 ENSG00000157601       ENST00000398598       41420304
1983           MX1 ENSG00000157601       ENST00000398598       41420304
1984           MX1 ENSG00000157601       ENST00000398598       41420304
1985           MX1 ENSG00000157601       ENST00000398598       41420304
1986           MX1 ENSG00000157601       ENST00000398598       41420304
1987           MX1 ENSG00000157601       ENST00000398598       41420304
1988           MX1 ENSG00000157601       ENST00000398598       41420304
1989           MX1 ENSG00000157601       ENST00000398598       41420304
1990           MX1 ENSG00000157601       ENST00000398598       41420304
1991           MX1 ENSG00000157601       ENST00000398598       41420304
1992           MX1 ENSG00000157601       ENST00000398598       41420304
1993           MX1 ENSG00000157601       ENST00000398598       41420304
1994           MX1 ENSG00000157601       ENST00000398598       41420304
1995           MX1 ENSG00000157601       ENST00000398598       41420304
1996           MX1 ENSG00000157601       ENST00000424365       41420304
1997           MX1 ENSG00000157601       ENST00000424365       41420304
1998           MX1 ENSG00000157601       ENST00000424365       41420304
1999           MX1 ENSG00000157601       ENST00000424365       41420304
2000           MX1 ENSG00000157601       ENST00000424365       41420304
2001           MX1 ENSG00000157601       ENST00000424365       41420304
2002           MX1 ENSG00000157601       ENST00000424365       41420304
2003           MX1 ENSG00000157601       ENST00000484465       41420304
2004           MX1 ENSG00000157601       ENST00000484465       41420304
2005           MX1 ENSG00000157601       ENST00000417963       41420304
2006           MX1 ENSG00000157601       ENST00000417963       41420304
2007           MX1 ENSG00000157601       ENST00000417963       41420304
2008           MX1 ENSG00000157601       ENST00000417963       41420304
2009           MX1 ENSG00000157601       ENST00000417963       41420304
2010           MX1 ENSG00000157601       ENST00000417963       41420304
2011           MX1 ENSG00000157601       ENST00000417963       41420304
2012           MX1 ENSG00000157601       ENST00000417963       41420304
2013           MX1 ENSG00000157601       ENST00000441677       41420304
2014           MX1 ENSG00000157601       ENST00000441677       41420304
2015           MX1 ENSG00000157601       ENST00000441677       41420304
2016           MX1 ENSG00000157601       ENST00000441677       41420304
2017           MX1 ENSG00000157601       ENST00000441677       41420304
2018           MX1 ENSG00000157601       ENST00000441677       41420304
2019           MX1 ENSG00000157601       ENST00000478268       41420304
2020           MX1 ENSG00000157601       ENST00000478268       41420304
2021           MX1 ENSG00000157601       ENST00000427464       41420304
2022           MX1 ENSG00000157601       ENST00000427464       41420304
2023           MX1 ENSG00000157601       ENST00000427464       41420304
2024           MX1 ENSG00000157601       ENST00000288383       41420304
2025           MX1 ENSG00000157601       ENST00000288383       41420304
2026           MX1 ENSG00000157601       ENST00000288383       41420304
2027           MX1 ENSG00000157601       ENST00000288383       41420304
2028           MX1 ENSG00000157601       ENST00000288383       41420304
2029           MX1 ENSG00000157601       ENST00000288383       41420304
2030           MX1 ENSG00000157601       ENST00000288383       41420304
2031           MX1 ENSG00000157601       ENST00000288383       41420304
2032           MX1 ENSG00000157601       ENST00000288383       41420304
2033           MX1 ENSG00000157601       ENST00000288383       41420304
2034           MX1 ENSG00000157601       ENST00000288383       41420304
2035           MX1 ENSG00000157601       ENST00000288383       41420304
2036           MX1 ENSG00000157601       ENST00000288383       41420304
2037           MX1 ENSG00000157601       ENST00000467510       41420304
2038           MX1 ENSG00000157601       ENST00000467510       41420304
2039           MX1 ENSG00000157601       ENST00000486275       41420304
2040           MX1 ENSG00000157601       ENST00000486275       41420304
2041           MX1 ENSG00000157601       ENST00000486275       41420304
2042           MX1 ENSG00000157601       ENST00000491110       41420304
2043           MX1 ENSG00000157601       ENST00000491110       41420304
2044           MX1 ENSG00000157601       ENST00000455164       41420304
2045           MX1 ENSG00000157601       ENST00000455164       41420304
2046           MX1 ENSG00000157601       ENST00000455164       41420304
2047           MX1 ENSG00000157601       ENST00000455164       41420304
2048           MX1 ENSG00000157601       ENST00000455164       41420304
2049           MX1 ENSG00000157601       ENST00000455164       41420304
2050           MX1 ENSG00000157601       ENST00000455164       41420304
2051           MX1 ENSG00000157601       ENST00000455164       41420304
2052           MX1 ENSG00000157601       ENST00000455164       41420304
2053           MX1 ENSG00000157601       ENST00000455164       41420304
2054           MX1 ENSG00000157601       ENST00000455164       41420304
2055           MX1 ENSG00000157601       ENST00000455164       41420304
2056           MX1 ENSG00000157601       ENST00000455164       41420304
2057           MX1 ENSG00000157601       ENST00000455164       41420304
2058           MX1 ENSG00000157601       ENST00000455164       41420304
2059           MX1 ENSG00000157601       ENST00000619682       41420304
2060           MX1 ENSG00000157601       ENST00000619682       41420304
2061           MX1 ENSG00000157601       ENST00000619682       41420304
2062           MX1 ENSG00000157601       ENST00000619682       41420304
2063           MX1 ENSG00000157601       ENST00000619682       41420304
2064           MX1 ENSG00000157601       ENST00000619682       41420304
2065           MX1 ENSG00000157601       ENST00000619682       41420304
2066           MX1 ENSG00000157601       ENST00000619682       41420304
2067           MX1 ENSG00000157601       ENST00000619682       41420304
2068           MX1 ENSG00000157601       ENST00000619682       41420304
2069               ENSG00000274225       ENST00000617205       44477850
2070               ENSG00000228709       ENST00000449713       44485577
2071               ENSG00000228709       ENST00000449713       44485577
2072               ENSG00000277352       ENST00000622854       44494874
2073     RN7SL163P ENSG00000266195       ENST00000583100       17506453
2074               ENSG00000276902       ENST00000615262        6365955
2075               ENSG00000223901       ENST00000418029       46220269
2076               ENSG00000223901       ENST00000418029       46220269
2077               ENSG00000223901       ENST00000626933       46220269
2078               ENSG00000223901       ENST00000626933       46220269
2079               ENSG00000223901       ENST00000626933       46220269
2080               ENSG00000223901       ENST00000626933       46220269
2081               ENSG00000278961       ENST00000624951        7788703
2082               ENSG00000278961       ENST00000624951        7788703
2083               ENSG00000277067       ENST00000623095        7048891
2084               ENSG00000277067       ENST00000623095        7048891
2085               ENSG00000277067       ENST00000623095        7048891
2086               ENSG00000277067       ENST00000623095        7048891
2087               ENSG00000277067       ENST00000622911        7048891
2088               ENSG00000277067       ENST00000622911        7048891
2089               ENSG00000277067       ENST00000622911        7048891
2090               ENSG00000277067       ENST00000621909        7048891
2091               ENSG00000277067       ENST00000621909        7048891
2092               ENSG00000277067       ENST00000621909        7048891
2093               ENSG00000277067       ENST00000623394        7048891
2094               ENSG00000277067       ENST00000623394        7048891
2095               ENSG00000277067       ENST00000623394        7048891
2096               ENSG00000277067       ENST00000623394        7048891
2097               ENSG00000277067       ENST00000624310        7048891
2098               ENSG00000277067       ENST00000624310        7048891
2099               ENSG00000277067       ENST00000624310        7048891
2100               ENSG00000277067       ENST00000615804        7048891
2101               ENSG00000277067       ENST00000615804        7048891
2102        RNF6P1 ENSG00000227406       ENST00000444889       39373763
2103        RNF6P1 ENSG00000227406       ENST00000444889       39373763
2104        RNF6P1 ENSG00000227406       ENST00000444889       39373763
2105        RNF6P1 ENSG00000227406       ENST00000444889       39373763
2106        RNF6P1 ENSG00000227406       ENST00000444889       39373763
2107          YBEY ENSG00000182362       ENST00000397691       46286337
2108          YBEY ENSG00000182362       ENST00000397691       46286337
2109          YBEY ENSG00000182362       ENST00000397691       46286337
2110          YBEY ENSG00000182362       ENST00000397691       46286337
2111          YBEY ENSG00000182362       ENST00000397691       46286337
2112          YBEY ENSG00000182362       ENST00000492864       46286337
2113          YBEY ENSG00000182362       ENST00000492864       46286337
2114          YBEY ENSG00000182362       ENST00000492864       46286337
2115          YBEY ENSG00000182362       ENST00000397692       46286337
2116          YBEY ENSG00000182362       ENST00000397692       46286337
2117          YBEY ENSG00000182362       ENST00000397692       46286337
2118          YBEY ENSG00000182362       ENST00000397692       46286337
2119          YBEY ENSG00000182362       ENST00000339195       46286337
2120          YBEY ENSG00000182362       ENST00000339195       46286337
2121          YBEY ENSG00000182362       ENST00000339195       46286337
2122          YBEY ENSG00000182362       ENST00000339195       46286337
2123          YBEY ENSG00000182362       ENST00000329319       46286337
2124          YBEY ENSG00000182362       ENST00000329319       46286337
2125          YBEY ENSG00000182362       ENST00000329319       46286337
2126          YBEY ENSG00000182362       ENST00000329319       46286337
2127          YBEY ENSG00000182362       ENST00000329319       46286337
2128          YBEY ENSG00000182362       ENST00000397694       46286337
2129          YBEY ENSG00000182362       ENST00000397694       46286337
2130          YBEY ENSG00000182362       ENST00000397694       46286337
2131          YBEY ENSG00000182362       ENST00000397694       46286337
2132          YBEY ENSG00000182362       ENST00000397694       46286337
2133          YBEY ENSG00000182362       ENST00000468924       46286337
2134          YBEY ENSG00000182362       ENST00000468924       46286337
2135          YBEY ENSG00000182362       ENST00000468924       46286337
2136          YBEY ENSG00000182362       ENST00000397701       46286337
2137          YBEY ENSG00000182362       ENST00000397701       46286337
2138          YBEY ENSG00000182362       ENST00000397701       46286337
2139          YBEY ENSG00000182362       ENST00000397701       46286337
2140          YBEY ENSG00000182362       ENST00000397701       46286337
2141        NDUFV3 ENSG00000160194       ENST00000460259       42879644
2142        NDUFV3 ENSG00000160194       ENST00000460259       42879644
2143        NDUFV3 ENSG00000160194       ENST00000460259       42879644
2144        NDUFV3 ENSG00000160194       ENST00000460259       42879644
2145        NDUFV3 ENSG00000160194       ENST00000460259       42879644
2146        NDUFV3 ENSG00000160194       ENST00000460259       42879644
2147        NDUFV3 ENSG00000160194       ENST00000354250       42879644
2148        NDUFV3 ENSG00000160194       ENST00000354250       42879644
2149        NDUFV3 ENSG00000160194       ENST00000354250       42879644
2150        NDUFV3 ENSG00000160194       ENST00000354250       42879644
2151        NDUFV3 ENSG00000160194       ENST00000340344       42879644
2152        NDUFV3 ENSG00000160194       ENST00000340344       42879644
2153        NDUFV3 ENSG00000160194       ENST00000340344       42879644
2154        NDUFV3 ENSG00000160194       ENST00000460740       42879644
2155        NDUFV3 ENSG00000160194       ENST00000460740       42879644
2156     ITGB2-AS1 ENSG00000227039       ENST00000609592       44921051
2157     ITGB2-AS1 ENSG00000227039       ENST00000609592       44921051
2158     ITGB2-AS1 ENSG00000227039       ENST00000609592       44921051
2159     ITGB2-AS1 ENSG00000227039       ENST00000610063       44921051
2160     ITGB2-AS1 ENSG00000227039       ENST00000610063       44921051
2161     ITGB2-AS1 ENSG00000227039       ENST00000610063       44921051
2162     ITGB2-AS1 ENSG00000227039       ENST00000608043       44921051
2163     ITGB2-AS1 ENSG00000227039       ENST00000608043       44921051
2164     ITGB2-AS1 ENSG00000227039       ENST00000608043       44921051
2165     ITGB2-AS1 ENSG00000227039       ENST00000608043       44921051
2166     ITGB2-AS1 ENSG00000227039       ENST00000429132       44921051
2167     ITGB2-AS1 ENSG00000227039       ENST00000429132       44921051
2168     ITGB2-AS1 ENSG00000227039       ENST00000429132       44921051
2169     ITGB2-AS1 ENSG00000227039       ENST00000609694       44921051
2170     ITGB2-AS1 ENSG00000227039       ENST00000609694       44921051
2171     ITGB2-AS1 ENSG00000227039       ENST00000609694       44921051
2172     ITGB2-AS1 ENSG00000227039       ENST00000609694       44921051
2173     ITGB2-AS1 ENSG00000227039       ENST00000609694       44921051
2174     ITGB2-AS1 ENSG00000227039       ENST00000441379       44921051
2175     ITGB2-AS1 ENSG00000227039       ENST00000441379       44921051
2176     ITGB2-AS1 ENSG00000227039       ENST00000441379       44921051
2177     ITGB2-AS1 ENSG00000227039       ENST00000441379       44921051
2178               ENSG00000236883       ENST00000423276       41739373
2179               ENSG00000236883       ENST00000423276       41739373
2180       ADAMTS5 ENSG00000154736       ENST00000284987       26917912
2181       ADAMTS5 ENSG00000154736       ENST00000284987       26917912
2182       ADAMTS5 ENSG00000154736       ENST00000284987       26917912
2183       ADAMTS5 ENSG00000154736       ENST00000284987       26917912
2184       ADAMTS5 ENSG00000154736       ENST00000284987       26917912
2185       ADAMTS5 ENSG00000154736       ENST00000284987       26917912
2186       ADAMTS5 ENSG00000154736       ENST00000284987       26917912
2187       ADAMTS5 ENSG00000154736       ENST00000284987       26917912
2188      MRPL51P2 ENSG00000232777       ENST00000450190       43115334
2189         FRGCA ENSG00000236663       ENST00000424933       43140523
2190         FRGCA ENSG00000236663       ENST00000424933       43140523
2191               ENSG00000228120       ENST00000433840       43159066
2192               ENSG00000228120       ENST00000433840       43159066
2193               ENSG00000228120       ENST00000433840       43159066
2194         CRYAA ENSG00000160202       ENST00000291554       43169008
2195         CRYAA ENSG00000160202       ENST00000291554       43169008
2196         CRYAA ENSG00000160202       ENST00000291554       43169008
2197         CRYAA ENSG00000160202       ENST00000482775       43169008
2198         CRYAA ENSG00000160202       ENST00000482775       43169008
2199         CRYAA ENSG00000160202       ENST00000482775       43169008
2200         CRYAA ENSG00000160202       ENST00000482775       43169008
2201         CRYAA ENSG00000160202       ENST00000398133       43169008
2202         CRYAA ENSG00000160202       ENST00000398133       43169008
2203         CRYAA ENSG00000160202       ENST00000398133       43169008
2204         CRYAA ENSG00000160202       ENST00000398132       43169008
2205         CRYAA ENSG00000160202       ENST00000398132       43169008
2206         CRYAA ENSG00000160202       ENST00000398132       43169008
2207         CRYAA ENSG00000160202       ENST00000468016       43169008
2208         CRYAA ENSG00000160202       ENST00000468016       43169008
2209       PTTG1IP ENSG00000183255       ENST00000330938       44849585
2210       PTTG1IP ENSG00000183255       ENST00000330938       44849585
2211       PTTG1IP ENSG00000183255       ENST00000330938       44849585
2212       PTTG1IP ENSG00000183255       ENST00000330938       44849585
2213       PTTG1IP ENSG00000183255       ENST00000330938       44849585
2214       PTTG1IP ENSG00000183255       ENST00000330938       44849585
2215       PTTG1IP ENSG00000183255       ENST00000397886       44849585
2216       PTTG1IP ENSG00000183255       ENST00000397886       44849585
2217       PTTG1IP ENSG00000183255       ENST00000397886       44849585
2218       PTTG1IP ENSG00000183255       ENST00000397886       44849585
2219       PTTG1IP ENSG00000183255       ENST00000397886       44849585
2220       PTTG1IP ENSG00000183255       ENST00000474737       44849585
2221       PTTG1IP ENSG00000183255       ENST00000474737       44849585
2222       PTTG1IP ENSG00000183255       ENST00000474737       44849585
2223       PTTG1IP ENSG00000183255       ENST00000474737       44849585
2224       PTTG1IP ENSG00000183255       ENST00000494690       44849585
2225       PTTG1IP ENSG00000183255       ENST00000494690       44849585
2226       PTTG1IP ENSG00000183255       ENST00000494690       44849585
2227       PTTG1IP ENSG00000183255       ENST00000494690       44849585
2228       PTTG1IP ENSG00000183255       ENST00000494690       44849585
2229       PTTG1IP ENSG00000183255       ENST00000494690       44849585
2230       PTTG1IP ENSG00000183255       ENST00000480234       44849585
2231       PTTG1IP ENSG00000183255       ENST00000480234       44849585
2232       PTTG1IP ENSG00000183255       ENST00000480234       44849585
2233       PTTG1IP ENSG00000183255       ENST00000480234       44849585
2234       PTTG1IP ENSG00000183255       ENST00000445724       44849585
2235       PTTG1IP ENSG00000183255       ENST00000445724       44849585
2236       PTTG1IP ENSG00000183255       ENST00000445724       44849585
2237       PTTG1IP ENSG00000183255       ENST00000397887       44849585
2238       PTTG1IP ENSG00000183255       ENST00000397887       44849585
2239       PTTG1IP ENSG00000183255       ENST00000397887       44849585
2240       PTTG1IP ENSG00000183255       ENST00000397887       44849585
2241     LINC00111 ENSG00000227702       ENST00000413718       41679181
2242     LINC00111 ENSG00000227702       ENST00000413718       41679181
2243     LINC00111 ENSG00000227702       ENST00000413718       41679181
2244    TSPEAR-AS1 ENSG00000235890       ENST00000451035       44506807
2245    TSPEAR-AS1 ENSG00000235890       ENST00000451035       44506807
2246    TSPEAR-AS1 ENSG00000235890       ENST00000451035       44506807
2247    TSPEAR-AS1 ENSG00000235890       ENST00000451035       44506807
2248    TSPEAR-AS1 ENSG00000235890       ENST00000451035       44506807
2249    TSPEAR-AS1 ENSG00000235890       ENST00000451035       44506807
2250    TSPEAR-AS1 ENSG00000235890       ENST00000430181       44506807
2251    TSPEAR-AS1 ENSG00000235890       ENST00000430181       44506807
2252    TSPEAR-AS1 ENSG00000235890       ENST00000430181       44506807
2253    KRTAP10-10 ENSG00000221859       ENST00000380095       44637356
2254               ENSG00000239415       ENST00000447037       46251549
2255               ENSG00000239415       ENST00000447037       46251549
2256               ENSG00000239415       ENST00000430259       46251549
2257               ENSG00000239415       ENST00000430259       46251549
2258    MCM3AP-AS1 ENSG00000215424       ENST00000590829       46229217
2259    MCM3AP-AS1 ENSG00000215424       ENST00000590829       46229217
2260    MCM3AP-AS1 ENSG00000215424       ENST00000590829       46229217
2261    MCM3AP-AS1 ENSG00000215424       ENST00000591223       46229217
2262    MCM3AP-AS1 ENSG00000215424       ENST00000591223       46229217
2263    MCM3AP-AS1 ENSG00000215424       ENST00000591223       46229217
2264    MCM3AP-AS1 ENSG00000215424       ENST00000414659       46229217
2265    MCM3AP-AS1 ENSG00000215424       ENST00000414659       46229217
2266    MCM3AP-AS1 ENSG00000215424       ENST00000414659       46229217
2267    MCM3AP-AS1 ENSG00000215424       ENST00000414659       46229217
2268    MCM3AP-AS1 ENSG00000215424       ENST00000432735       46229217
2269    MCM3AP-AS1 ENSG00000215424       ENST00000432735       46229217
2270    MCM3AP-AS1 ENSG00000215424       ENST00000432735       46229217
2271    MCM3AP-AS1 ENSG00000215424       ENST00000444998       46229217
2272    MCM3AP-AS1 ENSG00000215424       ENST00000444998       46229217
2273    MCM3AP-AS1 ENSG00000215424       ENST00000455567       46229217
2274    MCM3AP-AS1 ENSG00000215424       ENST00000455567       46229217
2275    MCM3AP-AS1 ENSG00000215424       ENST00000455567       46229217
2276    MCM3AP-AS1 ENSG00000215424       ENST00000421927       46229217
2277    MCM3AP-AS1 ENSG00000215424       ENST00000421927       46229217
2278    MCM3AP-AS1 ENSG00000215424       ENST00000588753       46229217
2279    MCM3AP-AS1 ENSG00000215424       ENST00000588753       46229217
2280    MCM3AP-AS1 ENSG00000215424       ENST00000588753       46229217
2281    MCM3AP-AS1 ENSG00000215424       ENST00000420074       46229217
2282    MCM3AP-AS1 ENSG00000215424       ENST00000420074       46229217
2283        MCM3AP ENSG00000160294       ENST00000467026       46235126
2284        MCM3AP ENSG00000160294       ENST00000467026       46235126
2285        MCM3AP ENSG00000160294       ENST00000467026       46235126
2286        MCM3AP ENSG00000160294       ENST00000467026       46235126
2287        MCM3AP ENSG00000160294       ENST00000467026       46235126
2288        MCM3AP ENSG00000160294       ENST00000467026       46235126
2289        MCM3AP ENSG00000160294       ENST00000467026       46235126
2290        MCM3AP ENSG00000160294       ENST00000467026       46235126
2291        MCM3AP ENSG00000160294       ENST00000467026       46235126
2292        MCM3AP ENSG00000160294       ENST00000467026       46235126
2293        MCM3AP ENSG00000160294       ENST00000467026       46235126
2294        MCM3AP ENSG00000160294       ENST00000467026       46235126
2295        MCM3AP ENSG00000160294       ENST00000467026       46235126
2296        MCM3AP ENSG00000160294       ENST00000496607       46235126
2297        MCM3AP ENSG00000160294       ENST00000496607       46235126
2298        MCM3AP ENSG00000160294       ENST00000496607       46235126
2299        MCM3AP ENSG00000160294       ENST00000496607       46235126
2300        MCM3AP ENSG00000160294       ENST00000496607       46235126
2301        MCM3AP ENSG00000160294       ENST00000496607       46235126
2302        MCM3AP ENSG00000160294       ENST00000496607       46235126
2303        MCM3AP ENSG00000160294       ENST00000496607       46235126
2304        MCM3AP ENSG00000160294       ENST00000496607       46235126
2305        MCM3AP ENSG00000160294       ENST00000496607       46235126
2306        MCM3AP ENSG00000160294       ENST00000496607       46235126
2307        MCM3AP ENSG00000160294       ENST00000496607       46235126
2308        MCM3AP ENSG00000160294       ENST00000496607       46235126
2309        MCM3AP ENSG00000160294       ENST00000496607       46235126
2310        MCM3AP ENSG00000160294       ENST00000496607       46235126
2311        MCM3AP ENSG00000160294       ENST00000496607       46235126
2312        MCM3AP ENSG00000160294       ENST00000496607       46235126
2313        MCM3AP ENSG00000160294       ENST00000496607       46235126
2314        MCM3AP ENSG00000160294       ENST00000486937       46235126
2315        MCM3AP ENSG00000160294       ENST00000486937       46235126
2316        MCM3AP ENSG00000160294       ENST00000486937       46235126
2317        MCM3AP ENSG00000160294       ENST00000486937       46235126
2318        MCM3AP ENSG00000160294       ENST00000486937       46235126
2319        MCM3AP ENSG00000160294       ENST00000486937       46235126
2320        MCM3AP ENSG00000160294       ENST00000486937       46235126
2321        MCM3AP ENSG00000160294       ENST00000486937       46235126
2322        MCM3AP ENSG00000160294       ENST00000486937       46235126
2323        MCM3AP ENSG00000160294       ENST00000486937       46235126
2324        MCM3AP ENSG00000160294       ENST00000486937       46235126
2325        MCM3AP ENSG00000160294       ENST00000486937       46235126
2326        MCM3AP ENSG00000160294       ENST00000486937       46235126
2327        MCM3AP ENSG00000160294       ENST00000486937       46235126
2328        MCM3AP ENSG00000160294       ENST00000486937       46235126
2329        MCM3AP ENSG00000160294       ENST00000486937       46235126
2330        MCM3AP ENSG00000160294       ENST00000486937       46235126
2331        MCM3AP ENSG00000160294       ENST00000486937       46235126
2332        MCM3AP ENSG00000160294       ENST00000397708       46235126
2333        MCM3AP ENSG00000160294       ENST00000397708       46235126
2334        MCM3AP ENSG00000160294       ENST00000397708       46235126
2335        MCM3AP ENSG00000160294       ENST00000397708       46235126
2336        MCM3AP ENSG00000160294       ENST00000397708       46235126
2337        MCM3AP ENSG00000160294       ENST00000397708       46235126
2338        MCM3AP ENSG00000160294       ENST00000397708       46235126
2339        MCM3AP ENSG00000160294       ENST00000397708       46235126
2340        MCM3AP ENSG00000160294       ENST00000397708       46235126
2341        MCM3AP ENSG00000160294       ENST00000397708       46235126
2342        MCM3AP ENSG00000160294       ENST00000397708       46235126
2343        MCM3AP ENSG00000160294       ENST00000397708       46235126
2344        MCM3AP ENSG00000160294       ENST00000397708       46235126
2345        MCM3AP ENSG00000160294       ENST00000397708       46235126
2346        MCM3AP ENSG00000160294       ENST00000397708       46235126
2347        MCM3AP ENSG00000160294       ENST00000397708       46235126
2348        MCM3AP ENSG00000160294       ENST00000397708       46235126
2349        MCM3AP ENSG00000160294       ENST00000397708       46235126
2350        MCM3AP ENSG00000160294       ENST00000397708       46235126
2351        MCM3AP ENSG00000160294       ENST00000397708       46235126
2352        MCM3AP ENSG00000160294       ENST00000397708       46235126
2353        MCM3AP ENSG00000160294       ENST00000397708       46235126
2354        MCM3AP ENSG00000160294       ENST00000397708       46235126
2355        MCM3AP ENSG00000160294       ENST00000397708       46235126
2356        MCM3AP ENSG00000160294       ENST00000397708       46235126
2357        MCM3AP ENSG00000160294       ENST00000397708       46235126
2358        MCM3AP ENSG00000160294       ENST00000397708       46235126
2359        MCM3AP ENSG00000160294       ENST00000397708       46235126
2360        MCM3AP ENSG00000160294       ENST00000397708       46235126
2361        MCM3AP ENSG00000160294       ENST00000481113       46235126
2362        MCM3AP ENSG00000160294       ENST00000481113       46235126
2363        MCM3AP ENSG00000160294       ENST00000481113       46235126
2364        MCM3AP ENSG00000160294       ENST00000481113       46235126
2365        MCM3AP ENSG00000160294       ENST00000494755       46235126
2366        MCM3AP ENSG00000160294       ENST00000494755       46235126
2367        MCM3AP ENSG00000160294       ENST00000479557       46235126
2368        MCM3AP ENSG00000160294       ENST00000479557       46235126
2369        MCM3AP ENSG00000160294       ENST00000426537       46235126
2370        MCM3AP ENSG00000160294       ENST00000426537       46235126
2371        MCM3AP ENSG00000160294       ENST00000495475       46235126
2372        MCM3AP ENSG00000160294       ENST00000495475       46235126
2373        MCM3AP ENSG00000160294       ENST00000291688       46235126
2374        MCM3AP ENSG00000160294       ENST00000291688       46235126
2375        MCM3AP ENSG00000160294       ENST00000291688       46235126
2376        MCM3AP ENSG00000160294       ENST00000291688       46235126
2377        MCM3AP ENSG00000160294       ENST00000291688       46235126
2378        MCM3AP ENSG00000160294       ENST00000291688       46235126
2379        MCM3AP ENSG00000160294       ENST00000291688       46235126
2380        MCM3AP ENSG00000160294       ENST00000291688       46235126
2381        MCM3AP ENSG00000160294       ENST00000291688       46235126
2382        MCM3AP ENSG00000160294       ENST00000291688       46235126
2383        MCM3AP ENSG00000160294       ENST00000291688       46235126
2384        MCM3AP ENSG00000160294       ENST00000291688       46235126
2385        MCM3AP ENSG00000160294       ENST00000291688       46235126
2386        MCM3AP ENSG00000160294       ENST00000291688       46235126
2387        MCM3AP ENSG00000160294       ENST00000291688       46235126
2388        MCM3AP ENSG00000160294       ENST00000291688       46235126
2389        MCM3AP ENSG00000160294       ENST00000291688       46235126
2390        MCM3AP ENSG00000160294       ENST00000291688       46235126
2391        MCM3AP ENSG00000160294       ENST00000291688       46235126
2392        MCM3AP ENSG00000160294       ENST00000291688       46235126
2393        MCM3AP ENSG00000160294       ENST00000291688       46235126
2394        MCM3AP ENSG00000160294       ENST00000291688       46235126
2395        MCM3AP ENSG00000160294       ENST00000291688       46235126
2396        MCM3AP ENSG00000160294       ENST00000291688       46235126
2397        MCM3AP ENSG00000160294       ENST00000291688       46235126
2398        MCM3AP ENSG00000160294       ENST00000291688       46235126
2399        MCM3AP ENSG00000160294       ENST00000291688       46235126
2400        MCM3AP ENSG00000160294       ENST00000291688       46235126
2401        PKNOX1 ENSG00000160199       ENST00000291547       42974510
2402        PKNOX1 ENSG00000160199       ENST00000291547       42974510
2403        PKNOX1 ENSG00000160199       ENST00000291547       42974510
2404        PKNOX1 ENSG00000160199       ENST00000291547       42974510
2405        PKNOX1 ENSG00000160199       ENST00000291547       42974510
2406        PKNOX1 ENSG00000160199       ENST00000291547       42974510
2407        PKNOX1 ENSG00000160199       ENST00000291547       42974510
2408        PKNOX1 ENSG00000160199       ENST00000291547       42974510
2409        PKNOX1 ENSG00000160199       ENST00000291547       42974510
2410        PKNOX1 ENSG00000160199       ENST00000291547       42974510
2411        PKNOX1 ENSG00000160199       ENST00000291547       42974510
2412        PKNOX1 ENSG00000160199       ENST00000418336       42974510
2413        PKNOX1 ENSG00000160199       ENST00000418336       42974510
2414        PKNOX1 ENSG00000160199       ENST00000418336       42974510
2415        PKNOX1 ENSG00000160199       ENST00000480179       42974510
2416        PKNOX1 ENSG00000160199       ENST00000480179       42974510
2417        PKNOX1 ENSG00000160199       ENST00000480179       42974510
2418        PKNOX1 ENSG00000160199       ENST00000480179       42974510
2419        PKNOX1 ENSG00000160199       ENST00000480179       42974510
2420        PKNOX1 ENSG00000160199       ENST00000480179       42974510
2421        PKNOX1 ENSG00000160199       ENST00000456957       42974510
2422        PKNOX1 ENSG00000160199       ENST00000456957       42974510
2423        PKNOX1 ENSG00000160199       ENST00000560448       42974510
2424        PKNOX1 ENSG00000160199       ENST00000560448       42974510
2425        PKNOX1 ENSG00000160199       ENST00000560448       42974510
2426        PKNOX1 ENSG00000160199       ENST00000560448       42974510
2427        PKNOX1 ENSG00000160199       ENST00000560448       42974510
2428        PKNOX1 ENSG00000160199       ENST00000560448       42974510
2429        PKNOX1 ENSG00000160199       ENST00000560448       42974510
2430        PKNOX1 ENSG00000160199       ENST00000560448       42974510
2431        PKNOX1 ENSG00000160199       ENST00000560448       42974510
2432        PKNOX1 ENSG00000160199       ENST00000607049       42974510
2433        PKNOX1 ENSG00000160199       ENST00000607049       42974510
2434        PKNOX1 ENSG00000160199       ENST00000607049       42974510
2435        PKNOX1 ENSG00000160199       ENST00000607049       42974510
2436        PKNOX1 ENSG00000160199       ENST00000557820       42974510
2437        PKNOX1 ENSG00000160199       ENST00000557820       42974510
2438        PKNOX1 ENSG00000160199       ENST00000557820       42974510
2439        PKNOX1 ENSG00000160199       ENST00000557820       42974510
2440        PKNOX1 ENSG00000160199       ENST00000557820       42974510
2441        PKNOX1 ENSG00000160199       ENST00000474336       42974510
2442        PKNOX1 ENSG00000160199       ENST00000474336       42974510
2443        PKNOX1 ENSG00000160199       ENST00000474336       42974510
2444        PKNOX1 ENSG00000160199       ENST00000607150       42974510
2445        PKNOX1 ENSG00000160199       ENST00000607150       42974510
2446        PKNOX1 ENSG00000160199       ENST00000607150       42974510
2447        PKNOX1 ENSG00000160199       ENST00000558955       42974510
2448        PKNOX1 ENSG00000160199       ENST00000558955       42974510
2449        PKNOX1 ENSG00000160199       ENST00000558955       42974510
2450        PKNOX1 ENSG00000160199       ENST00000432907       42974510
2451        PKNOX1 ENSG00000160199       ENST00000432907       42974510
2452        PKNOX1 ENSG00000160199       ENST00000432907       42974510
2453        PKNOX1 ENSG00000160199       ENST00000432907       42974510
2454        PKNOX1 ENSG00000160199       ENST00000432907       42974510
2455        PKNOX1 ENSG00000160199       ENST00000432907       42974510
2456        PKNOX1 ENSG00000160199       ENST00000432907       42974510
2457        PKNOX1 ENSG00000160199       ENST00000432907       42974510
2458        PKNOX1 ENSG00000160199       ENST00000432907       42974510
2459        PKNOX1 ENSG00000160199       ENST00000432907       42974510
2460     LINC00112 ENSG00000232401       ENST00000432830       41716436
2461     LINC00112 ENSG00000232401       ENST00000432830       41716436
2462     LINC00112 ENSG00000232401       ENST00000432830       41716436
2463               ENSG00000223400       ENST00000418874       41576135
2464               ENSG00000223400       ENST00000418874       41576135
2465               ENSG00000232806       ENST00000415820       41559125
2466               ENSG00000232806       ENST00000415820       41559125
2467               ENSG00000232806       ENST00000415820       41559125
2468     DIP2A-IT1 ENSG00000223692       ENST00000442434       46462471
2469     DIP2A-IT1 ENSG00000223692       ENST00000442434       46462471
2470     DIP2A-IT1 ENSG00000223692       ENST00000442434       46462471
2471     DIP2A-IT1 ENSG00000223692       ENST00000442434       46462471
2472        TSPEAR ENSG00000175894       ENST00000323084       44497892
2473        TSPEAR ENSG00000175894       ENST00000323084       44497892
2474        TSPEAR ENSG00000175894       ENST00000323084       44497892
2475        TSPEAR ENSG00000175894       ENST00000323084       44497892
2476        TSPEAR ENSG00000175894       ENST00000323084       44497892
2477        TSPEAR ENSG00000175894       ENST00000323084       44497892
2478        TSPEAR ENSG00000175894       ENST00000323084       44497892
2479        TSPEAR ENSG00000175894       ENST00000323084       44497892
2480        TSPEAR ENSG00000175894       ENST00000323084       44497892
2481        TSPEAR ENSG00000175894       ENST00000323084       44497892
2482        TSPEAR ENSG00000175894       ENST00000323084       44497892
2483        TSPEAR ENSG00000175894       ENST00000323084       44497892
2484        TSPEAR ENSG00000175894       ENST00000397916       44497892
2485        TSPEAR ENSG00000175894       ENST00000397916       44497892
2486        TSPEAR ENSG00000175894       ENST00000397916       44497892
2487        TSPEAR ENSG00000175894       ENST00000397916       44497892
2488        TSPEAR ENSG00000175894       ENST00000397916       44497892
2489        TSPEAR ENSG00000175894       ENST00000397916       44497892
2490        TSPEAR ENSG00000175894       ENST00000397916       44497892
2491        TSPEAR ENSG00000175894       ENST00000397916       44497892
2492        TSPEAR ENSG00000175894       ENST00000397916       44497892
2493        TSPEAR ENSG00000175894       ENST00000397916       44497892
2494        TSPEAR ENSG00000175894       ENST00000397916       44497892
2495        TSPEAR ENSG00000175894       ENST00000614657       44497892
2496        TSPEAR ENSG00000175894       ENST00000614657       44497892
2497        TSPEAR ENSG00000175894       ENST00000614657       44497892
2498        TSPEAR ENSG00000175894       ENST00000614657       44497892
2499        TSPEAR ENSG00000175894       ENST00000614657       44497892
2500        TSPEAR ENSG00000175894       ENST00000614657       44497892
2501        TSPEAR ENSG00000175894       ENST00000614657       44497892
2502        TSPEAR ENSG00000175894       ENST00000614657       44497892
2503        TSPEAR ENSG00000175894       ENST00000614657       44497892
2504        TSPEAR ENSG00000175894       ENST00000614657       44497892
2505        TSPEAR ENSG00000175894       ENST00000614657       44497892
2506        TSPEAR ENSG00000175894       ENST00000614657       44497892
2507        TSPEAR ENSG00000175894       ENST00000614657       44497892
2508        TSPEAR ENSG00000175894       ENST00000613245       44497892
2509        TSPEAR ENSG00000175894       ENST00000613245       44497892
2510        TSPEAR ENSG00000175894       ENST00000613245       44497892
2511        TSPEAR ENSG00000175894       ENST00000613245       44497892
2512        TSPEAR ENSG00000175894       ENST00000613245       44497892
2513        TSPEAR ENSG00000175894       ENST00000613245       44497892
2514        TSPEAR ENSG00000175894       ENST00000613245       44497892
2515        TSPEAR ENSG00000175894       ENST00000613245       44497892
2516        TSPEAR ENSG00000175894       ENST00000613245       44497892
2517        TSPEAR ENSG00000175894       ENST00000613245       44497892
2518     KRTAP10-1 ENSG00000215455       ENST00000400375       44538981
2519               ENSG00000280441       ENST00000623860        8380665
2520               ENSG00000280441       ENST00000623860        8380665
2521               ENSG00000280441       ENST00000623860        8380665
2522               ENSG00000280441       ENST00000623860        8380665
2523               ENSG00000280441       ENST00000623860        8380665
2524               ENSG00000280441       ENST00000623860        8380665
2525               ENSG00000280441       ENST00000623860        8380665
2526               ENSG00000224649       ENST00000430001       29182027
2527               ENSG00000224649       ENST00000430001       29182027
2528               ENSG00000274790       ENST00000616522        6223480
2529               ENSG00000207503       ENST00000384772       41539206
2530       MIR6814 ENSG00000275166       ENST00000622292       41746772
2531     RN7SKP147 ENSG00000252963       ENST00000517154       20356653
2532     KRTAP10-4 ENSG00000215454       ENST00000400374       44573724
2533     KRTAP10-4 ENSG00000215454       ENST00000622352       44573724
2534     KRTAP10-4 ENSG00000215454       ENST00000622352       44573724
2535     KRTAP10-4 ENSG00000215454       ENST00000622352       44573724
2536     KRTAP10-4 ENSG00000215454       ENST00000622352       44573724
2537     KRTAP10-4 ENSG00000215454       ENST00000622352       44573724
2538     KRTAP10-4 ENSG00000215454       ENST00000616689       44573724
2539     KRTAP10-4 ENSG00000215454       ENST00000616689       44573724
2540     KRTAP10-4 ENSG00000215454       ENST00000616689       44573724
2541     KRTAP10-4 ENSG00000215454       ENST00000616689       44573724
2542        IMMTP1 ENSG00000229880       ENST00000435590       44675868
2543      MIR125B2 ENSG00000207863       ENST00000385128       16590237
2544               ENSG00000276546       ENST00000619005        7663911
2545               ENSG00000201984       ENST00000365114       29139283
2546               ENSG00000266692       ENST00000581669       44437121
2547     KRTAP10-9 ENSG00000221837       ENST00000397911       44627123
2548     KRTAP10-9 ENSG00000221837       ENST00000484861       44627123
2549     KRTAP10-9 ENSG00000221837       ENST00000484861       44627123
2550     KRTAP10-9 ENSG00000221837       ENST00000616529       44627123
2551     KRTAP10-9 ENSG00000221837       ENST00000616529       44627123
2552     KRTAP10-9 ENSG00000221837       ENST00000616529       44627123
2553           CBS ENSG00000160200       ENST00000461686       43053191
2554           CBS ENSG00000160200       ENST00000461686       43053191
2555           CBS ENSG00000160200       ENST00000461686       43053191
2556           CBS ENSG00000160200       ENST00000461686       43053191
2557           CBS ENSG00000160200       ENST00000461686       43053191
2558           CBS ENSG00000160200       ENST00000461686       43053191
2559           CBS ENSG00000160200       ENST00000461686       43053191
2560           CBS ENSG00000160200       ENST00000461686       43053191
2561           CBS ENSG00000160200       ENST00000461686       43053191
2562           CBS ENSG00000160200       ENST00000461686       43053191
2563           CBS ENSG00000160200       ENST00000461686       43053191
2564           CBS ENSG00000160200       ENST00000461686       43053191
2565           CBS ENSG00000160200       ENST00000461686       43053191
2566           CBS ENSG00000160200       ENST00000461686       43053191
2567           CBS ENSG00000160200       ENST00000398158       43053191
2568           CBS ENSG00000160200       ENST00000398158       43053191
2569           CBS ENSG00000160200       ENST00000398158       43053191
2570           CBS ENSG00000160200       ENST00000398158       43053191
2571           CBS ENSG00000160200       ENST00000398158       43053191
2572           CBS ENSG00000160200       ENST00000398158       43053191
2573           CBS ENSG00000160200       ENST00000398158       43053191
2574           CBS ENSG00000160200       ENST00000398158       43053191
2575           CBS ENSG00000160200       ENST00000398158       43053191
2576           CBS ENSG00000160200       ENST00000398158       43053191
2577           CBS ENSG00000160200       ENST00000398158       43053191
2578           CBS ENSG00000160200       ENST00000398158       43053191
2579           CBS ENSG00000160200       ENST00000398158       43053191
2580           CBS ENSG00000160200       ENST00000398158       43053191
2581           CBS ENSG00000160200       ENST00000398158       43053191
2582           CBS ENSG00000160200       ENST00000398158       43053191
2583           CBS ENSG00000160200       ENST00000398158       43053191
2584           CBS ENSG00000160200       ENST00000398165       43053191
2585           CBS ENSG00000160200       ENST00000398165       43053191
2586           CBS ENSG00000160200       ENST00000398165       43053191
2587           CBS ENSG00000160200       ENST00000398165       43053191
2588           CBS ENSG00000160200       ENST00000398165       43053191
2589           CBS ENSG00000160200       ENST00000398165       43053191
2590           CBS ENSG00000160200       ENST00000398165       43053191
2591           CBS ENSG00000160200       ENST00000398165       43053191
2592           CBS ENSG00000160200       ENST00000398165       43053191
2593           CBS ENSG00000160200       ENST00000398165       43053191
2594           CBS ENSG00000160200       ENST00000398165       43053191
2595           CBS ENSG00000160200       ENST00000398165       43053191
2596           CBS ENSG00000160200       ENST00000398165       43053191
2597           CBS ENSG00000160200       ENST00000398165       43053191
2598           CBS ENSG00000160200       ENST00000398165       43053191
2599           CBS ENSG00000160200       ENST00000398165       43053191
2600           CBS ENSG00000160200       ENST00000398165       43053191
2601           CBS ENSG00000160200       ENST00000359624       43053191
2602           CBS ENSG00000160200       ENST00000359624       43053191
2603           CBS ENSG00000160200       ENST00000359624       43053191
2604           CBS ENSG00000160200       ENST00000359624       43053191
2605           CBS ENSG00000160200       ENST00000359624       43053191
2606           CBS ENSG00000160200       ENST00000359624       43053191
2607           CBS ENSG00000160200       ENST00000359624       43053191
2608           CBS ENSG00000160200       ENST00000359624       43053191
2609           CBS ENSG00000160200       ENST00000359624       43053191
2610           CBS ENSG00000160200       ENST00000359624       43053191
2611           CBS ENSG00000160200       ENST00000359624       43053191
2612           CBS ENSG00000160200       ENST00000359624       43053191
2613           CBS ENSG00000160200       ENST00000359624       43053191
2614           CBS ENSG00000160200       ENST00000359624       43053191
2615           CBS ENSG00000160200       ENST00000359624       43053191
2616           CBS ENSG00000160200       ENST00000359624       43053191
2617           CBS ENSG00000160200       ENST00000359624       43053191
2618           CBS ENSG00000160200       ENST00000359624       43053191
2619           CBS ENSG00000160200       ENST00000352178       43053191
2620           CBS ENSG00000160200       ENST00000352178       43053191
2621           CBS ENSG00000160200       ENST00000352178       43053191
2622           CBS ENSG00000160200       ENST00000352178       43053191
2623           CBS ENSG00000160200       ENST00000352178       43053191
2624           CBS ENSG00000160200       ENST00000352178       43053191
2625           CBS ENSG00000160200       ENST00000352178       43053191
2626           CBS ENSG00000160200       ENST00000352178       43053191
2627           CBS ENSG00000160200       ENST00000352178       43053191
2628           CBS ENSG00000160200       ENST00000352178       43053191
2629           CBS ENSG00000160200       ENST00000352178       43053191
2630           CBS ENSG00000160200       ENST00000352178       43053191
2631           CBS ENSG00000160200       ENST00000352178       43053191
2632           CBS ENSG00000160200       ENST00000352178       43053191
2633           CBS ENSG00000160200       ENST00000352178       43053191
2634           CBS ENSG00000160200       ENST00000352178       43053191
2635           CBS ENSG00000160200       ENST00000352178       43053191
2636           CBS ENSG00000160200       ENST00000451248       43053191
2637           CBS ENSG00000160200       ENST00000451248       43053191
2638           CBS ENSG00000160200       ENST00000451248       43053191
2639           CBS ENSG00000160200       ENST00000451248       43053191
2640           CBS ENSG00000160200       ENST00000451248       43053191
2641           CBS ENSG00000160200       ENST00000462349       43053191
2642           CBS ENSG00000160200       ENST00000462349       43053191
2643           CBS ENSG00000160200       ENST00000462349       43053191
2644           CBS ENSG00000160200       ENST00000462349       43053191
2645           CBS ENSG00000160200       ENST00000462349       43053191
2646           CBS ENSG00000160200       ENST00000491776       43053191
2647           CBS ENSG00000160200       ENST00000491776       43053191
2648           CBS ENSG00000160200       ENST00000491776       43053191
2649           CBS ENSG00000160200       ENST00000491776       43053191
2650           CBS ENSG00000160200       ENST00000491776       43053191
2651           CBS ENSG00000160200       ENST00000491776       43053191
2652           CBS ENSG00000160200       ENST00000458223       43053191
2653           CBS ENSG00000160200       ENST00000458223       43053191
2654           CBS ENSG00000160200       ENST00000458223       43053191
2655           CBS ENSG00000160200       ENST00000458223       43053191
2656           CBS ENSG00000160200       ENST00000458223       43053191
2657           CBS ENSG00000160200       ENST00000430013       43053191
2658           CBS ENSG00000160200       ENST00000430013       43053191
2659           CBS ENSG00000160200       ENST00000430013       43053191
2660           CBS ENSG00000160200       ENST00000430013       43053191
2661           CBS ENSG00000160200       ENST00000430013       43053191
2662           CBS ENSG00000160200       ENST00000430013       43053191
2663           CBS ENSG00000160200       ENST00000430013       43053191
2664           CBS ENSG00000160200       ENST00000496485       43053191
2665           CBS ENSG00000160200       ENST00000496485       43053191
2666           CBS ENSG00000160200       ENST00000496485       43053191
2667           CBS ENSG00000160200       ENST00000496485       43053191
2668           CBS ENSG00000160200       ENST00000496485       43053191
2669           CBS ENSG00000160200       ENST00000486098       43053191
2670           CBS ENSG00000160200       ENST00000486098       43053191
2671           CBS ENSG00000160200       ENST00000441030       43053191
2672           CBS ENSG00000160200       ENST00000441030       43053191
2673           CBS ENSG00000160200       ENST00000441030       43053191
2674           CBS ENSG00000160200       ENST00000441030       43053191
2675           CBS ENSG00000160200       ENST00000441030       43053191
2676           CBS ENSG00000160200       ENST00000441030       43053191
2677           CBS ENSG00000160200       ENST00000470912       43053191
2678           CBS ENSG00000160200       ENST00000470912       43053191
2679           CBS ENSG00000160200       ENST00000470912       43053191
2680           CBS ENSG00000160200       ENST00000470912       43053191
2681           CBS ENSG00000160200       ENST00000470912       43053191
2682           CBS ENSG00000160200       ENST00000470912       43053191
2683           CBS ENSG00000160200       ENST00000465732       43053191
2684           CBS ENSG00000160200       ENST00000465732       43053191
2685           CBS ENSG00000160200       ENST00000465732       43053191
2686           CBS ENSG00000160200       ENST00000465732       43053191
2687           CBS ENSG00000160200       ENST00000488526       43053191
2688           CBS ENSG00000160200       ENST00000488526       43053191
2689           CBS ENSG00000160200       ENST00000488526       43053191
2690           CBS ENSG00000160200       ENST00000478709       43053191
2691           CBS ENSG00000160200       ENST00000478709       43053191
2692               ENSG00000228137       ENST00000444966       46246890
2693               ENSG00000228137       ENST00000444966       46246890
2694         DSCR9 ENSG00000230366       ENST00000581640       37208503
2695         DSCR9 ENSG00000230366       ENST00000581640       37208503
2696         DSCR9 ENSG00000230366       ENST00000581640       37208503
2697         DSCR9 ENSG00000230366       ENST00000581640       37208503
2698         DSCR9 ENSG00000230366       ENST00000581640       37208503
2699         DSCR9 ENSG00000230366       ENST00000578829       37208503
2700         DSCR9 ENSG00000230366       ENST00000578829       37208503
2701         DSCR9 ENSG00000230366       ENST00000578829       37208503
2702         DSCR9 ENSG00000230366       ENST00000578829       37208503
2703         DSCR9 ENSG00000230366       ENST00000585273       37208503
2704         DSCR9 ENSG00000230366       ENST00000585273       37208503
2705         DSCR9 ENSG00000230366       ENST00000585273       37208503
2706         DSCR9 ENSG00000230366       ENST00000585273       37208503
2707         DSCR9 ENSG00000230366       ENST00000585273       37208503
2708         DSCR9 ENSG00000230366       ENST00000584840       37208503
2709         DSCR9 ENSG00000230366       ENST00000584840       37208503
2710         DSCR9 ENSG00000230366       ENST00000584840       37208503
2711         DSCR9 ENSG00000230366       ENST00000584840       37208503
2712         DSCR9 ENSG00000230366       ENST00000454482       37208503
2713         DSCR9 ENSG00000230366       ENST00000454482       37208503
2714         DSCR9 ENSG00000230366       ENST00000454482       37208503
2715         DSCR3 ENSG00000157538       ENST00000497493       37223420
2716         DSCR3 ENSG00000157538       ENST00000497493       37223420
2717         DSCR3 ENSG00000157538       ENST00000309117       37223420
2718         DSCR3 ENSG00000157538       ENST00000309117       37223420
2719         DSCR3 ENSG00000157538       ENST00000309117       37223420
2720         DSCR3 ENSG00000157538       ENST00000309117       37223420
2721         DSCR3 ENSG00000157538       ENST00000309117       37223420
2722         DSCR3 ENSG00000157538       ENST00000309117       37223420
2723         DSCR3 ENSG00000157538       ENST00000309117       37223420
2724         DSCR3 ENSG00000157538       ENST00000309117       37223420
2725         DSCR3 ENSG00000157538       ENST00000399000       37223420
2726         DSCR3 ENSG00000157538       ENST00000399000       37223420
2727         DSCR3 ENSG00000157538       ENST00000399000       37223420
2728         DSCR3 ENSG00000157538       ENST00000399000       37223420
2729         DSCR3 ENSG00000157538       ENST00000399000       37223420
2730         DSCR3 ENSG00000157538       ENST00000399000       37223420
2731         DSCR3 ENSG00000157538       ENST00000399000       37223420
2732         DSCR3 ENSG00000157538       ENST00000399000       37223420
2733         DSCR3 ENSG00000157538       ENST00000399000       37223420
2734         DSCR3 ENSG00000157538       ENST00000399000       37223420
2735         DSCR3 ENSG00000157538       ENST00000399001       37223420
2736         DSCR3 ENSG00000157538       ENST00000399001       37223420
2737         DSCR3 ENSG00000157538       ENST00000399001       37223420
2738         DSCR3 ENSG00000157538       ENST00000399001       37223420
2739         DSCR3 ENSG00000157538       ENST00000399001       37223420
2740         DSCR3 ENSG00000157538       ENST00000476950       37223420
2741         DSCR3 ENSG00000157538       ENST00000476950       37223420
2742         DSCR3 ENSG00000157538       ENST00000476950       37223420
2743         DSCR3 ENSG00000157538       ENST00000476950       37223420
2744         DSCR3 ENSG00000157538       ENST00000476950       37223420
2745         DSCR3 ENSG00000157538       ENST00000476950       37223420
2746         DSCR3 ENSG00000157538       ENST00000476950       37223420
2747         DSCR3 ENSG00000157538       ENST00000488368       37223420
2748         DSCR3 ENSG00000157538       ENST00000488368       37223420
2749         DSCR3 ENSG00000157538       ENST00000488368       37223420
2750         DSCR3 ENSG00000157538       ENST00000488368       37223420
2751         DSCR3 ENSG00000157538       ENST00000488368       37223420
2752         DSCR3 ENSG00000157538       ENST00000488368       37223420
2753         DSCR3 ENSG00000157538       ENST00000488368       37223420
2754         DSCR3 ENSG00000157538       ENST00000488368       37223420
2755         DSCR3 ENSG00000157538       ENST00000488368       37223420
2756         DSCR3 ENSG00000157538       ENST00000398998       37223420
2757         DSCR3 ENSG00000157538       ENST00000398998       37223420
2758         DSCR3 ENSG00000157538       ENST00000398998       37223420
2759         DSCR3 ENSG00000157538       ENST00000398998       37223420
2760         DSCR3 ENSG00000157538       ENST00000398998       37223420
2761         DSCR3 ENSG00000157538       ENST00000398998       37223420
2762         DSCR3 ENSG00000157538       ENST00000398998       37223420
2763         DSCR3 ENSG00000157538       ENST00000495858       37223420
2764         DSCR3 ENSG00000157538       ENST00000495858       37223420
2765         DSCR3 ENSG00000157538       ENST00000495858       37223420
2766         DSCR3 ENSG00000157538       ENST00000495858       37223420
2767         DSCR3 ENSG00000157538       ENST00000480452       37223420
2768         DSCR3 ENSG00000157538       ENST00000480452       37223420
2769         DSCR3 ENSG00000157538       ENST00000480452       37223420
2770         DSCR3 ENSG00000157538       ENST00000480452       37223420
2771         DSCR3 ENSG00000157538       ENST00000475009       37223420
2772         DSCR3 ENSG00000157538       ENST00000475009       37223420
2773         DSCR3 ENSG00000157538       ENST00000475009       37223420
2774         DSCR3 ENSG00000157538       ENST00000492514       37223420
2775         DSCR3 ENSG00000157538       ENST00000492514       37223420
2776         DSCR3 ENSG00000157538       ENST00000462467       37223420
2777         DSCR3 ENSG00000157538       ENST00000462467       37223420
2778         DSCR3 ENSG00000157538       ENST00000498789       37223420
2779         DSCR3 ENSG00000157538       ENST00000498789       37223420
2780               ENSG00000221398       ENST00000408471       34456110
2781     MIR3687-1 ENSG00000277437       ENST00000614492        8208844
2782       MIR6815 ENSG00000275167       ENST00000611994       45478266
2783               ENSG00000227698       ENST00000432411       41874756
2784               ENSG00000227698       ENST00000432411       41874756
2785               ENSG00000227698       ENST00000432411       41874756
2786     KRTAP10-5 ENSG00000241123       ENST00000400372       44579455
2787               ENSG00000242553       ENST00000440629       37221419
2788               ENSG00000242553       ENST00000440629       37221419
2789               ENSG00000232698       ENST00000423967       44206525
2790               ENSG00000232698       ENST00000423967       44206525
2791               ENSG00000224427       ENST00000444036       32841496
2792         NCAM2 ENSG00000154654       ENST00000400546       20998315
2793         NCAM2 ENSG00000154654       ENST00000400546       20998315
2794         NCAM2 ENSG00000154654       ENST00000400546       20998315
2795         NCAM2 ENSG00000154654       ENST00000400546       20998315
2796         NCAM2 ENSG00000154654       ENST00000400546       20998315
2797         NCAM2 ENSG00000154654       ENST00000400546       20998315
2798         NCAM2 ENSG00000154654       ENST00000400546       20998315
2799         NCAM2 ENSG00000154654       ENST00000400546       20998315
2800         NCAM2 ENSG00000154654       ENST00000400546       20998315
2801         NCAM2 ENSG00000154654       ENST00000400546       20998315
2802         NCAM2 ENSG00000154654       ENST00000400546       20998315
2803         NCAM2 ENSG00000154654       ENST00000400546       20998315
2804         NCAM2 ENSG00000154654       ENST00000400546       20998315
2805         NCAM2 ENSG00000154654       ENST00000400546       20998315
2806         NCAM2 ENSG00000154654       ENST00000400546       20998315
2807         NCAM2 ENSG00000154654       ENST00000400546       20998315
2808         NCAM2 ENSG00000154654       ENST00000400546       20998315
2809         NCAM2 ENSG00000154654       ENST00000400546       20998315
2810         NCAM2 ENSG00000154654       ENST00000486367       20998315
2811         NCAM2 ENSG00000154654       ENST00000486367       20998315
2812         NCAM2 ENSG00000154654       ENST00000486367       20998315
2813         NCAM2 ENSG00000154654       ENST00000486367       20998315
2814         NCAM2 ENSG00000154654       ENST00000486367       20998315
2815         NCAM2 ENSG00000154654       ENST00000461281       20998315
2816         NCAM2 ENSG00000154654       ENST00000461281       20998315
2817         NCAM2 ENSG00000154654       ENST00000461281       20998315
2818         NCAM2 ENSG00000154654       ENST00000461281       20998315
2819         NCAM2 ENSG00000154654       ENST00000461281       20998315
2820         NCAM2 ENSG00000154654       ENST00000484983       20998315
2821         NCAM2 ENSG00000154654       ENST00000484983       20998315
2822         NCAM2 ENSG00000154654       ENST00000484983       20998315
2823         NCAM2 ENSG00000154654       ENST00000284894       20998315
2824         NCAM2 ENSG00000154654       ENST00000284894       20998315
2825         NCAM2 ENSG00000154654       ENST00000284894       20998315
2826         NCAM2 ENSG00000154654       ENST00000284894       20998315
2827         NCAM2 ENSG00000154654       ENST00000284894       20998315
2828         NCAM2 ENSG00000154654       ENST00000284894       20998315
2829         NCAM2 ENSG00000154654       ENST00000284894       20998315
2830         NCAM2 ENSG00000154654       ENST00000284894       20998315
2831         NCAM2 ENSG00000154654       ENST00000284894       20998315
2832         NCAM2 ENSG00000154654       ENST00000284894       20998315
2833         NCAM2 ENSG00000154654       ENST00000284894       20998315
2834         NCAM2 ENSG00000154654       ENST00000284894       20998315
2835         NCAM2 ENSG00000154654       ENST00000284894       20998315
2836         NCAM2 ENSG00000154654       ENST00000284894       20998315
2837         NCAM2 ENSG00000154654       ENST00000284894       20998315
2838         NCAM2 ENSG00000154654       ENST00000284894       20998315
2839         NCAM2 ENSG00000154654       ENST00000284894       20998315
2840               ENSG00000230212       ENST00000535199       36069642
2841               ENSG00000230212       ENST00000535199       36069642
2842               ENSG00000230212       ENST00000535199       36069642
2843               ENSG00000230212       ENST00000535199       36069642
2844               ENSG00000230212       ENST00000415147       36069642
2845               ENSG00000230212       ENST00000415147       36069642
2846               ENSG00000233393       ENST00000422473       36104881
2847               ENSG00000233393       ENST00000422473       36104881
2848        RPS9P1 ENSG00000214889       ENST00000419943       36132450
2849         HMGN1 ENSG00000205581       ENST00000288344       39342315
2850         HMGN1 ENSG00000205581       ENST00000288344       39342315
2851         HMGN1 ENSG00000205581       ENST00000288344       39342315
2852         HMGN1 ENSG00000205581       ENST00000288344       39342315
2853         HMGN1 ENSG00000205581       ENST00000288344       39342315
2854         HMGN1 ENSG00000205581       ENST00000288344       39342315
2855         HMGN1 ENSG00000205581       ENST00000288344       39342315
2856         HMGN1 ENSG00000205581       ENST00000486741       39342315
2857         HMGN1 ENSG00000205581       ENST00000486741       39342315
2858         HMGN1 ENSG00000205581       ENST00000486741       39342315
2859         HMGN1 ENSG00000205581       ENST00000486741       39342315
2860         HMGN1 ENSG00000205581       ENST00000486741       39342315
2861         HMGN1 ENSG00000205581       ENST00000431390       39342315
2862         HMGN1 ENSG00000205581       ENST00000431390       39342315
2863         HMGN1 ENSG00000205581       ENST00000431390       39342315
2864         HMGN1 ENSG00000205581       ENST00000431390       39342315
2865         HMGN1 ENSG00000205581       ENST00000431390       39342315
2866         HMGN1 ENSG00000205581       ENST00000431390       39342315
2867         HMGN1 ENSG00000205581       ENST00000431390       39342315
2868         HMGN1 ENSG00000205581       ENST00000431390       39342315
2869         HMGN1 ENSG00000205581       ENST00000380749       39342315
2870         HMGN1 ENSG00000205581       ENST00000380749       39342315
2871         HMGN1 ENSG00000205581       ENST00000380749       39342315
2872         HMGN1 ENSG00000205581       ENST00000380749       39342315
2873         HMGN1 ENSG00000205581       ENST00000380749       39342315
2874         HMGN1 ENSG00000205581       ENST00000380749       39342315
2875         HMGN1 ENSG00000205581       ENST00000492280       39342315
2876         HMGN1 ENSG00000205581       ENST00000492280       39342315
2877         HMGN1 ENSG00000205581       ENST00000492280       39342315
2878         HMGN1 ENSG00000205581       ENST00000492280       39342315
2879         HMGN1 ENSG00000205581       ENST00000492280       39342315
2880         HMGN1 ENSG00000205581       ENST00000492280       39342315
2881         HMGN1 ENSG00000205581       ENST00000492280       39342315
2882         HMGN1 ENSG00000205581       ENST00000492280       39342315
2883         HMGN1 ENSG00000205581       ENST00000436324       39342315
2884         HMGN1 ENSG00000205581       ENST00000436324       39342315
2885         HMGN1 ENSG00000205581       ENST00000436324       39342315
2886         HMGN1 ENSG00000205581       ENST00000436324       39342315
2887         HMGN1 ENSG00000205581       ENST00000436324       39342315
2888         HMGN1 ENSG00000205581       ENST00000436324       39342315
2889         HMGN1 ENSG00000205581       ENST00000436324       39342315
2890         HMGN1 ENSG00000205581       ENST00000380748       39342315
2891         HMGN1 ENSG00000205581       ENST00000380748       39342315
2892         HMGN1 ENSG00000205581       ENST00000380748       39342315
2893         HMGN1 ENSG00000205581       ENST00000380748       39342315
2894         HMGN1 ENSG00000205581       ENST00000380748       39342315
2895         HMGN1 ENSG00000205581       ENST00000419378       39342315
2896         HMGN1 ENSG00000205581       ENST00000419378       39342315
2897         HMGN1 ENSG00000205581       ENST00000419378       39342315
2898         HMGN1 ENSG00000205581       ENST00000419378       39342315
2899         HMGN1 ENSG00000205581       ENST00000419378       39342315
2900         HMGN1 ENSG00000205581       ENST00000419378       39342315
2901         HMGN1 ENSG00000205581       ENST00000419378       39342315
2902         HMGN1 ENSG00000205581       ENST00000489072       39342315
2903         HMGN1 ENSG00000205581       ENST00000489072       39342315
2904         HMGN1 ENSG00000205581       ENST00000489072       39342315
2905         HMGN1 ENSG00000205581       ENST00000489072       39342315
2906         HMGN1 ENSG00000205581       ENST00000489072       39342315
2907         HMGN1 ENSG00000205581       ENST00000489072       39342315
2908         HMGN1 ENSG00000205581       ENST00000482192       39342315
2909         HMGN1 ENSG00000205581       ENST00000482192       39342315
2910         HMGN1 ENSG00000205581       ENST00000482192       39342315
2911         HMGN1 ENSG00000205581       ENST00000482192       39342315
2912         HMGN1 ENSG00000205581       ENST00000482192       39342315
2913         HMGN1 ENSG00000205581       ENST00000482192       39342315
2914         HMGN1 ENSG00000205581       ENST00000482192       39342315
2915         HMGN1 ENSG00000205581       ENST00000380747       39342315
2916         HMGN1 ENSG00000205581       ENST00000380747       39342315
2917         HMGN1 ENSG00000205581       ENST00000380747       39342315
2918         HMGN1 ENSG00000205581       ENST00000380747       39342315
2919         HMGN1 ENSG00000205581       ENST00000380747       39342315
2920         HMGN1 ENSG00000205581       ENST00000380747       39342315
2921         HMGN1 ENSG00000205581       ENST00000485550       39342315
2922         HMGN1 ENSG00000205581       ENST00000485550       39342315
2923         HMGN1 ENSG00000205581       ENST00000485550       39342315
2924         HMGN1 ENSG00000205581       ENST00000485550       39342315
2925         HMGN1 ENSG00000205581       ENST00000485550       39342315
2926         HMGN1 ENSG00000205581       ENST00000485550       39342315
2927         HMGN1 ENSG00000205581       ENST00000485550       39342315
2928         HMGN1 ENSG00000205581       ENST00000490032       39342315
2929         HMGN1 ENSG00000205581       ENST00000490032       39342315
2930         HMGN1 ENSG00000205581       ENST00000490032       39342315
2931         HMGN1 ENSG00000205581       ENST00000490032       39342315
2932         HMGN1 ENSG00000205581       ENST00000443046       39342315
2933         HMGN1 ENSG00000205581       ENST00000443046       39342315
2934         HMGN1 ENSG00000205581       ENST00000443046       39342315
2935         HMGN1 ENSG00000205581       ENST00000443046       39342315
2936         HMGN1 ENSG00000205581       ENST00000443046       39342315
2937         HMGN1 ENSG00000205581       ENST00000443046       39342315
2938         HMGN1 ENSG00000205581       ENST00000443046       39342315
2939         HMGN1 ENSG00000205581       ENST00000443046       39342315
2940         HMGN1 ENSG00000205581       ENST00000443046       39342315
2941         HMGN1 ENSG00000205581       ENST00000464078       39342315
2942         HMGN1 ENSG00000205581       ENST00000464078       39342315
2943         HMGN1 ENSG00000205581       ENST00000464078       39342315
2944         HMGN1 ENSG00000205581       ENST00000464078       39342315
2945         HMGN1 ENSG00000205581       ENST00000464078       39342315
2946         HMGN1 ENSG00000205581       ENST00000491183       39342315
2947         HMGN1 ENSG00000205581       ENST00000491183       39342315
2948         HMGN1 ENSG00000205581       ENST00000491183       39342315
2949         HMGN1 ENSG00000205581       ENST00000491183       39342315
2950         HMGN1 ENSG00000205581       ENST00000491183       39342315
2951         HMGN1 ENSG00000205581       ENST00000491183       39342315
2952         HMGN1 ENSG00000205581       ENST00000479586       39342315
2953         HMGN1 ENSG00000205581       ENST00000479586       39342315
2954         HMGN1 ENSG00000205581       ENST00000479586       39342315
2955         HMGN1 ENSG00000205581       ENST00000479586       39342315
2956         HMGN1 ENSG00000205581       ENST00000479586       39342315
2957         HMGN1 ENSG00000205581       ENST00000471260       39342315
2958         HMGN1 ENSG00000205581       ENST00000471260       39342315
2959         HMGN1 ENSG00000205581       ENST00000471260       39342315
2960         HMGN1 ENSG00000205581       ENST00000471260       39342315
2961         HMGN1 ENSG00000205581       ENST00000482733       39342315
2962         HMGN1 ENSG00000205581       ENST00000482733       39342315
2963         HMGN1 ENSG00000205581       ENST00000463631       39342315
2964         HMGN1 ENSG00000205581       ENST00000463631       39342315
2965         HMGN1 ENSG00000205581       ENST00000463631       39342315
2966       RPS26P5 ENSG00000224602       ENST00000418544       16121310
2967               ENSG00000280432       ENST00000624971       16525919
2968               ENSG00000269950       ENST00000602654       16574718
2969               ENSG00000269950       ENST00000602654       16574718
2970               ENSG00000270139       ENST00000602454       16417139
2971               ENSG00000270139       ENST00000602454       16417139
2972               ENSG00000270139       ENST00000602454       16417139
2973               ENSG00000270071       ENST00000602921       16291791
2974               ENSG00000270071       ENST00000602921       16291791
2975               ENSG00000270071       ENST00000602921       16291791
2976         LRRC3 ENSG00000160233       ENST00000291592       44455486
2977         LRRC3 ENSG00000160233       ENST00000291592       44455486
2978      ERVH48-1 ENSG00000233056       ENST00000447535       42916803
2979      ERVH48-1 ENSG00000233056       ENST00000447535       42916803
2980      ERVH48-1 ENSG00000233056       ENST00000617971       42916803
2981        CRYZL1 ENSG00000205758       ENST00000488167       33589341
2982        CRYZL1 ENSG00000205758       ENST00000488167       33589341
2983        CRYZL1 ENSG00000205758       ENST00000488167       33589341
2984        CRYZL1 ENSG00000205758       ENST00000488167       33589341
2985        CRYZL1 ENSG00000205758       ENST00000417979       33589341
2986        CRYZL1 ENSG00000205758       ENST00000417979       33589341
2987        CRYZL1 ENSG00000205758       ENST00000417979       33589341
2988        CRYZL1 ENSG00000205758       ENST00000417979       33589341
2989        CRYZL1 ENSG00000205758       ENST00000417979       33589341
2990        CRYZL1 ENSG00000205758       ENST00000417979       33589341
2991        CRYZL1 ENSG00000205758       ENST00000417979       33589341
2992        CRYZL1 ENSG00000205758       ENST00000417979       33589341
2993        CRYZL1 ENSG00000205758       ENST00000490714       33589341
2994        CRYZL1 ENSG00000205758       ENST00000490714       33589341
2995        CRYZL1 ENSG00000205758       ENST00000490714       33589341
2996        CRYZL1 ENSG00000205758       ENST00000490714       33589341
2997        CRYZL1 ENSG00000205758       ENST00000490714       33589341
2998        CRYZL1 ENSG00000205758       ENST00000490714       33589341
2999        CRYZL1 ENSG00000205758       ENST00000490714       33589341
3000        CRYZL1 ENSG00000205758       ENST00000413017       33589341
3001        CRYZL1 ENSG00000205758       ENST00000413017       33589341
3002        CRYZL1 ENSG00000205758       ENST00000413017       33589341
3003        CRYZL1 ENSG00000205758       ENST00000413017       33589341
3004        CRYZL1 ENSG00000205758       ENST00000413017       33589341
3005        CRYZL1 ENSG00000205758       ENST00000413017       33589341
3006        CRYZL1 ENSG00000205758       ENST00000438788       33589341
3007        CRYZL1 ENSG00000205758       ENST00000438788       33589341
3008        CRYZL1 ENSG00000205758       ENST00000431177       33589341
3009        CRYZL1 ENSG00000205758       ENST00000431177       33589341
3010        CRYZL1 ENSG00000205758       ENST00000431177       33589341
3011        CRYZL1 ENSG00000205758       ENST00000431177       33589341
3012        CRYZL1 ENSG00000205758       ENST00000431177       33589341
3013        CRYZL1 ENSG00000205758       ENST00000431177       33589341
3014        CRYZL1 ENSG00000205758       ENST00000431177       33589341
3015        CRYZL1 ENSG00000205758       ENST00000431177       33589341
3016        CRYZL1 ENSG00000205758       ENST00000479964       33589341
3017        CRYZL1 ENSG00000205758       ENST00000479964       33589341
3018        CRYZL1 ENSG00000205758       ENST00000479964       33589341
3019        CRYZL1 ENSG00000205758       ENST00000479964       33589341
3020        CRYZL1 ENSG00000205758       ENST00000440526       33589341
3021        CRYZL1 ENSG00000205758       ENST00000440526       33589341
3022        CRYZL1 ENSG00000205758       ENST00000440526       33589341
3023        CRYZL1 ENSG00000205758       ENST00000440526       33589341
3024        CRYZL1 ENSG00000205758       ENST00000440526       33589341
3025        CRYZL1 ENSG00000205758       ENST00000440526       33589341
3026        CRYZL1 ENSG00000205758       ENST00000440526       33589341
3027        CRYZL1 ENSG00000205758       ENST00000440526       33589341
3028        CRYZL1 ENSG00000205758       ENST00000437996       33589341
3029        CRYZL1 ENSG00000205758       ENST00000437996       33589341
3030        CRYZL1 ENSG00000205758       ENST00000437996       33589341
3031        CRYZL1 ENSG00000205758       ENST00000437996       33589341
3032        CRYZL1 ENSG00000205758       ENST00000437996       33589341
3033        CRYZL1 ENSG00000205758       ENST00000437996       33589341
3034        CRYZL1 ENSG00000205758       ENST00000445393       33589341
3035        CRYZL1 ENSG00000205758       ENST00000445393       33589341
3036        CRYZL1 ENSG00000205758       ENST00000445393       33589341
3037        CRYZL1 ENSG00000205758       ENST00000445393       33589341
3038        CRYZL1 ENSG00000205758       ENST00000445393       33589341
3039        CRYZL1 ENSG00000205758       ENST00000445393       33589341
3040        CRYZL1 ENSG00000205758       ENST00000445393       33589341
3041        CRYZL1 ENSG00000205758       ENST00000480893       33589341
3042        CRYZL1 ENSG00000205758       ENST00000480893       33589341
3043        CRYZL1 ENSG00000205758       ENST00000480893       33589341
3044        CRYZL1 ENSG00000205758       ENST00000480893       33589341
3045        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3046        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3047        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3048        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3049        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3050        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3051        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3052        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3053        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3054        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3055        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3056        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3057        CRYZL1 ENSG00000205758       ENST00000381554       33589341
3058        CRYZL1 ENSG00000205758       ENST00000399442       33589341
3059        CRYZL1 ENSG00000205758       ENST00000399442       33589341
3060        CRYZL1 ENSG00000205758       ENST00000399442       33589341
3061        CRYZL1 ENSG00000205758       ENST00000426935       33589341
3062        CRYZL1 ENSG00000205758       ENST00000426935       33589341
3063        CRYZL1 ENSG00000205758       ENST00000426935       33589341
3064        CRYZL1 ENSG00000205758       ENST00000426935       33589341
3065        CRYZL1 ENSG00000205758       ENST00000426935       33589341
3066        CRYZL1 ENSG00000205758       ENST00000426935       33589341
3067        CRYZL1 ENSG00000205758       ENST00000426935       33589341
3068        CRYZL1 ENSG00000205758       ENST00000426935       33589341
3069        CRYZL1 ENSG00000205758       ENST00000414079       33589341
3070        CRYZL1 ENSG00000205758       ENST00000414079       33589341
3071        CRYZL1 ENSG00000205758       ENST00000414079       33589341
3072        CRYZL1 ENSG00000205758       ENST00000414079       33589341
3073        CRYZL1 ENSG00000205758       ENST00000420072       33589341
3074        CRYZL1 ENSG00000205758       ENST00000420072       33589341
3075        CRYZL1 ENSG00000205758       ENST00000420072       33589341
3076        CRYZL1 ENSG00000205758       ENST00000420072       33589341
3077        CRYZL1 ENSG00000205758       ENST00000420072       33589341
3078        CRYZL1 ENSG00000205758       ENST00000420072       33589341
3079        CRYZL1 ENSG00000205758       ENST00000420072       33589341
3080        CRYZL1 ENSG00000205758       ENST00000420072       33589341
3081        CRYZL1 ENSG00000205758       ENST00000420072       33589341
3082        CRYZL1 ENSG00000205758       ENST00000420072       33589341
3083        CRYZL1 ENSG00000205758       ENST00000420072       33589341
3084        CRYZL1 ENSG00000205758       ENST00000420072       33589341
3085        CRYZL1 ENSG00000205758       ENST00000429827       33589341
3086        CRYZL1 ENSG00000205758       ENST00000429827       33589341
3087        CRYZL1 ENSG00000205758       ENST00000429827       33589341
3088        CRYZL1 ENSG00000205758       ENST00000429827       33589341
3089        CRYZL1 ENSG00000205758       ENST00000429827       33589341
3090        CRYZL1 ENSG00000205758       ENST00000429827       33589341
3091        CRYZL1 ENSG00000205758       ENST00000429827       33589341
3092        CRYZL1 ENSG00000205758       ENST00000429827       33589341
3093        CRYZL1 ENSG00000205758       ENST00000429827       33589341
3094        CRYZL1 ENSG00000205758       ENST00000429827       33589341
3095        CRYZL1 ENSG00000205758       ENST00000429827       33589341
3096        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3097        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3098        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3099        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3100        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3101        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3102        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3103        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3104        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3105        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3106        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3107        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3108        CRYZL1 ENSG00000205758       ENST00000361534       33589341
3109        CRYZL1 ENSG00000205758       ENST00000452420       33589341
3110        CRYZL1 ENSG00000205758       ENST00000452420       33589341
3111        CRYZL1 ENSG00000205758       ENST00000452420       33589341
3112        CRYZL1 ENSG00000205758       ENST00000452420       33589341
3113        CRYZL1 ENSG00000205758       ENST00000452420       33589341
3114        CRYZL1 ENSG00000205758       ENST00000452420       33589341
3115        CRYZL1 ENSG00000205758       ENST00000452420       33589341
3116        CRYZL1 ENSG00000205758       ENST00000452420       33589341
3117        CRYZL1 ENSG00000205758       ENST00000452420       33589341
3118        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3119        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3120        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3121        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3122        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3123        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3124        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3125        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3126        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3127        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3128        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3129        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3130        CRYZL1 ENSG00000205758       ENST00000381540       33589341
3131        CRYZL1 ENSG00000205758       ENST00000468349       33589341
3132        CRYZL1 ENSG00000205758       ENST00000468349       33589341
3133        CRYZL1 ENSG00000205758       ENST00000290244       33589341
3134        CRYZL1 ENSG00000205758       ENST00000290244       33589341
3135        CRYZL1 ENSG00000205758       ENST00000290244       33589341
3136        CRYZL1 ENSG00000205758       ENST00000290244       33589341
3137        CRYZL1 ENSG00000205758       ENST00000290244       33589341
3138        CRYZL1 ENSG00000205758       ENST00000290244       33589341
3139        CRYZL1 ENSG00000205758       ENST00000290244       33589341
3140        CRYZL1 ENSG00000205758       ENST00000290244       33589341
3141        CRYZL1 ENSG00000205758       ENST00000290244       33589341
3142        CRYZL1 ENSG00000205758       ENST00000290244       33589341
3143        CRYZL1 ENSG00000205758       ENST00000290244       33589341
3144        CRYZL1 ENSG00000205758       ENST00000290244       33589341
3145        CRYZL1 ENSG00000205758       ENST00000441940       33589341
3146        CRYZL1 ENSG00000205758       ENST00000441940       33589341
3147        CRYZL1 ENSG00000205758       ENST00000441940       33589341
3148        CRYZL1 ENSG00000205758       ENST00000441940       33589341
3149       RPS26P4 ENSG00000228349       ENST00000431743       39491544
3150     BACH1-AS1 ENSG00000232118       ENST00000449923       29370019
3151     BACH1-AS1 ENSG00000232118       ENST00000449923       29370019
3152     BACH1-AS1 ENSG00000232118       ENST00000615718       29370019
3153     BACH1-AS1 ENSG00000232118       ENST00000615718       29370019
3154        DONSON ENSG00000159147       ENST00000439593       33559542
3155        DONSON ENSG00000159147       ENST00000439593       33559542
3156        DONSON ENSG00000159147       ENST00000439593       33559542
3157        DONSON ENSG00000159147       ENST00000439593       33559542
3158        DONSON ENSG00000159147       ENST00000303113       33559542
3159        DONSON ENSG00000159147       ENST00000303113       33559542
3160        DONSON ENSG00000159147       ENST00000303113       33559542
3161        DONSON ENSG00000159147       ENST00000303113       33559542
3162        DONSON ENSG00000159147       ENST00000303113       33559542
3163        DONSON ENSG00000159147       ENST00000303113       33559542
3164        DONSON ENSG00000159147       ENST00000303113       33559542
3165        DONSON ENSG00000159147       ENST00000303113       33559542
3166        DONSON ENSG00000159147       ENST00000303113       33559542
3167        DONSON ENSG00000159147       ENST00000303113       33559542
3168        DONSON ENSG00000159147       ENST00000303113       33559542
3169        DONSON ENSG00000159147       ENST00000453626       33559542
3170        DONSON ENSG00000159147       ENST00000453626       33559542
3171        DONSON ENSG00000159147       ENST00000453626       33559542
3172        DONSON ENSG00000159147       ENST00000453626       33559542
3173        DONSON ENSG00000159147       ENST00000453626       33559542
3174        DONSON ENSG00000159147       ENST00000453626       33559542
3175        DONSON ENSG00000159147       ENST00000453626       33559542
3176        DONSON ENSG00000159147       ENST00000453626       33559542
3177        DONSON ENSG00000159147       ENST00000453626       33559542
3178        DONSON ENSG00000159147       ENST00000453626       33559542
3179        DONSON ENSG00000159147       ENST00000457359       33559542
3180        DONSON ENSG00000159147       ENST00000457359       33559542
3181        DONSON ENSG00000159147       ENST00000457359       33559542
3182        DONSON ENSG00000159147       ENST00000457359       33559542
3183        DONSON ENSG00000159147       ENST00000457359       33559542
3184        DONSON ENSG00000159147       ENST00000457359       33559542
3185        DONSON ENSG00000159147       ENST00000457359       33559542
3186        DONSON ENSG00000159147       ENST00000457359       33559542
3187        DONSON ENSG00000159147       ENST00000457359       33559542
3188        DONSON ENSG00000159147       ENST00000303071       33559542
3189        DONSON ENSG00000159147       ENST00000303071       33559542
3190        DONSON ENSG00000159147       ENST00000303071       33559542
3191        DONSON ENSG00000159147       ENST00000303071       33559542
3192        DONSON ENSG00000159147       ENST00000303071       33559542
3193        DONSON ENSG00000159147       ENST00000303071       33559542
3194        DONSON ENSG00000159147       ENST00000303071       33559542
3195        DONSON ENSG00000159147       ENST00000303071       33559542
3196        DONSON ENSG00000159147       ENST00000303071       33559542
3197        DONSON ENSG00000159147       ENST00000303071       33559542
3198        DONSON ENSG00000159147       ENST00000417871       33559542
3199        DONSON ENSG00000159147       ENST00000417871       33559542
3200        DONSON ENSG00000159147       ENST00000417871       33559542
3201        DONSON ENSG00000159147       ENST00000417871       33559542
3202        DONSON ENSG00000159147       ENST00000417871       33559542
3203        DONSON ENSG00000159147       ENST00000417871       33559542
3204        DONSON ENSG00000159147       ENST00000417871       33559542
3205        DONSON ENSG00000159147       ENST00000417871       33559542
3206        DONSON ENSG00000159147       ENST00000417871       33559542
3207        DONSON ENSG00000159147       ENST00000460557       33559542
3208        DONSON ENSG00000159147       ENST00000460557       33559542
3209        DONSON ENSG00000159147       ENST00000444517       33559542
3210        DONSON ENSG00000159147       ENST00000444517       33559542
3211        DONSON ENSG00000159147       ENST00000444517       33559542
3212        DONSON ENSG00000159147       ENST00000444517       33559542
3213        DONSON ENSG00000159147       ENST00000444517       33559542
3214        DONSON ENSG00000159147       ENST00000442660       33559542
3215        DONSON ENSG00000159147       ENST00000442660       33559542
3216        DONSON ENSG00000159147       ENST00000442660       33559542
3217        DONSON ENSG00000159147       ENST00000442660       33559542
3218        DONSON ENSG00000159147       ENST00000442660       33559542
3219        DONSON ENSG00000159147       ENST00000442660       33559542
3220        DONSON ENSG00000159147       ENST00000442660       33559542
3221        DONSON ENSG00000159147       ENST00000442660       33559542
3222        DONSON ENSG00000159147       ENST00000437395       33559542
3223        DONSON ENSG00000159147       ENST00000437395       33559542
3224        DONSON ENSG00000159147       ENST00000437395       33559542
3225        DONSON ENSG00000159147       ENST00000437395       33559542
3226        DONSON ENSG00000159147       ENST00000437395       33559542
3227        DONSON ENSG00000159147       ENST00000437395       33559542
3228        DONSON ENSG00000159147       ENST00000437395       33559542
3229        DONSON ENSG00000159147       ENST00000437395       33559542
3230        DONSON ENSG00000159147       ENST00000437395       33559542
3231        DONSON ENSG00000159147       ENST00000432378       33559542
3232        DONSON ENSG00000159147       ENST00000432378       33559542
3233        DONSON ENSG00000159147       ENST00000432378       33559542
3234        DONSON ENSG00000159147       ENST00000432378       33559542
3235        DONSON ENSG00000159147       ENST00000432378       33559542
3236        DONSON ENSG00000159147       ENST00000432378       33559542
3237        DONSON ENSG00000159147       ENST00000432378       33559542
3238        DONSON ENSG00000159147       ENST00000432378       33559542
3239        DONSON ENSG00000159147       ENST00000432378       33559542
3240        DONSON ENSG00000159147       ENST00000440810       33559542
3241        DONSON ENSG00000159147       ENST00000440810       33559542
3242        DONSON ENSG00000159147       ENST00000440810       33559542
3243        DONSON ENSG00000159147       ENST00000440810       33559542
3244        DONSON ENSG00000159147       ENST00000440810       33559542
3245        DONSON ENSG00000159147       ENST00000462566       33559542
3246        DONSON ENSG00000159147       ENST00000462566       33559542
3247          PFKL ENSG00000141959       ENST00000349048       44300051
3248          PFKL ENSG00000141959       ENST00000349048       44300051
3249          PFKL ENSG00000141959       ENST00000349048       44300051
3250          PFKL ENSG00000141959       ENST00000349048       44300051
3251          PFKL ENSG00000141959       ENST00000349048       44300051
3252          PFKL ENSG00000141959       ENST00000349048       44300051
3253          PFKL ENSG00000141959       ENST00000349048       44300051
3254          PFKL ENSG00000141959       ENST00000349048       44300051
3255          PFKL ENSG00000141959       ENST00000349048       44300051
3256          PFKL ENSG00000141959       ENST00000349048       44300051
3257          PFKL ENSG00000141959       ENST00000349048       44300051
3258          PFKL ENSG00000141959       ENST00000349048       44300051
3259          PFKL ENSG00000141959       ENST00000349048       44300051
3260          PFKL ENSG00000141959       ENST00000349048       44300051
3261          PFKL ENSG00000141959       ENST00000349048       44300051
3262          PFKL ENSG00000141959       ENST00000349048       44300051
3263          PFKL ENSG00000141959       ENST00000349048       44300051
3264          PFKL ENSG00000141959       ENST00000349048       44300051
3265          PFKL ENSG00000141959       ENST00000349048       44300051
3266          PFKL ENSG00000141959       ENST00000349048       44300051
3267          PFKL ENSG00000141959       ENST00000349048       44300051
3268          PFKL ENSG00000141959       ENST00000349048       44300051
3269          PFKL ENSG00000141959       ENST00000397961       44300051
3270          PFKL ENSG00000141959       ENST00000397961       44300051
3271          PFKL ENSG00000141959       ENST00000397961       44300051
3272          PFKL ENSG00000141959       ENST00000397961       44300051
3273          PFKL ENSG00000141959       ENST00000397961       44300051
3274          PFKL ENSG00000141959       ENST00000397961       44300051
3275          PFKL ENSG00000141959       ENST00000397961       44300051
3276          PFKL ENSG00000141959       ENST00000397961       44300051
3277          PFKL ENSG00000141959       ENST00000397961       44300051
3278          PFKL ENSG00000141959       ENST00000397961       44300051
3279          PFKL ENSG00000141959       ENST00000397961       44300051
3280          PFKL ENSG00000141959       ENST00000397961       44300051
3281          PFKL ENSG00000141959       ENST00000397961       44300051
3282          PFKL ENSG00000141959       ENST00000397961       44300051
3283          PFKL ENSG00000141959       ENST00000397961       44300051
3284          PFKL ENSG00000141959       ENST00000397961       44300051
3285          PFKL ENSG00000141959       ENST00000397961       44300051
3286          PFKL ENSG00000141959       ENST00000397961       44300051
3287          PFKL ENSG00000141959       ENST00000397961       44300051
3288          PFKL ENSG00000141959       ENST00000397961       44300051
3289          PFKL ENSG00000141959       ENST00000397961       44300051
3290          PFKL ENSG00000141959       ENST00000397961       44300051
3291          PFKL ENSG00000141959       ENST00000397961       44300051
3292          PFKL ENSG00000141959       ENST00000397961       44300051
3293          PFKL ENSG00000141959       ENST00000397961       44300051
3294          PFKL ENSG00000141959       ENST00000496824       44300051
3295          PFKL ENSG00000141959       ENST00000496824       44300051
3296          PFKL ENSG00000141959       ENST00000496824       44300051
3297          PFKL ENSG00000141959       ENST00000496824       44300051
3298          PFKL ENSG00000141959       ENST00000496824       44300051
3299          PFKL ENSG00000141959       ENST00000496824       44300051
3300          PFKL ENSG00000141959       ENST00000496824       44300051
3301          PFKL ENSG00000141959       ENST00000496824       44300051
3302          PFKL ENSG00000141959       ENST00000496824       44300051
3303          PFKL ENSG00000141959       ENST00000466134       44300051
3304          PFKL ENSG00000141959       ENST00000466134       44300051
3305          PFKL ENSG00000141959       ENST00000466134       44300051
3306          PFKL ENSG00000141959       ENST00000466134       44300051
3307          PFKL ENSG00000141959       ENST00000466134       44300051
3308          PFKL ENSG00000141959       ENST00000466134       44300051
3309          PFKL ENSG00000141959       ENST00000466134       44300051
3310          PFKL ENSG00000141959       ENST00000466134       44300051
3311          PFKL ENSG00000141959       ENST00000466134       44300051
3312          PFKL ENSG00000141959       ENST00000466134       44300051
3313          PFKL ENSG00000141959       ENST00000466134       44300051
3314          PFKL ENSG00000141959       ENST00000466134       44300051
3315          PFKL ENSG00000141959       ENST00000466134       44300051
3316          PFKL ENSG00000141959       ENST00000466134       44300051
3317          PFKL ENSG00000141959       ENST00000466134       44300051
3318          PFKL ENSG00000141959       ENST00000466134       44300051
3319          PFKL ENSG00000141959       ENST00000466134       44300051
3320          PFKL ENSG00000141959       ENST00000466134       44300051
3321          PFKL ENSG00000141959       ENST00000466134       44300051
3322          PFKL ENSG00000141959       ENST00000466134       44300051
3323          PFKL ENSG00000141959       ENST00000491298       44300051
3324          PFKL ENSG00000141959       ENST00000491298       44300051
3325          PFKL ENSG00000141959       ENST00000491298       44300051
3326          PFKL ENSG00000141959       ENST00000491298       44300051
3327          PFKL ENSG00000141959       ENST00000491298       44300051
3328          PFKL ENSG00000141959       ENST00000491298       44300051
3329          PFKL ENSG00000141959       ENST00000491298       44300051
3330          PFKL ENSG00000141959       ENST00000474114       44300051
3331          PFKL ENSG00000141959       ENST00000474114       44300051
3332          PFKL ENSG00000141959       ENST00000474114       44300051
3333          PFKL ENSG00000141959       ENST00000474114       44300051
3334          PFKL ENSG00000141959       ENST00000474114       44300051
3335          PFKL ENSG00000141959       ENST00000474114       44300051
3336          PFKL ENSG00000141959       ENST00000474114       44300051
3337          PFKL ENSG00000141959       ENST00000474114       44300051
3338          PFKL ENSG00000141959       ENST00000474114       44300051
3339          PFKL ENSG00000141959       ENST00000474114       44300051
3340          PFKL ENSG00000141959       ENST00000474114       44300051
3341          PFKL ENSG00000141959       ENST00000498841       44300051
3342          PFKL ENSG00000141959       ENST00000498841       44300051
3343          PFKL ENSG00000141959       ENST00000498841       44300051
3344          PFKL ENSG00000141959       ENST00000498841       44300051
3345          PFKL ENSG00000141959       ENST00000498841       44300051
3346          PFKL ENSG00000141959       ENST00000498841       44300051
3347          PFKL ENSG00000141959       ENST00000498841       44300051
3348          PFKL ENSG00000141959       ENST00000498841       44300051
3349          PFKL ENSG00000141959       ENST00000498841       44300051
3350          PFKL ENSG00000141959       ENST00000460020       44300051
3351          PFKL ENSG00000141959       ENST00000460020       44300051
3352          PFKL ENSG00000141959       ENST00000460020       44300051
3353          PFKL ENSG00000141959       ENST00000460020       44300051
3354          PFKL ENSG00000141959       ENST00000460020       44300051
3355          PFKL ENSG00000141959       ENST00000460020       44300051
3356          PFKL ENSG00000141959       ENST00000467315       44300051
3357          PFKL ENSG00000141959       ENST00000467315       44300051
3358          PFKL ENSG00000141959       ENST00000467315       44300051
3359          PFKL ENSG00000141959       ENST00000467315       44300051
3360          PFKL ENSG00000141959       ENST00000467315       44300051
3361          PFKL ENSG00000141959       ENST00000467315       44300051
3362          PFKL ENSG00000141959       ENST00000467315       44300051
3363          PFKL ENSG00000141959       ENST00000467315       44300051
3364          PFKL ENSG00000141959       ENST00000467315       44300051
3365          PFKL ENSG00000141959       ENST00000467315       44300051
3366          PFKL ENSG00000141959       ENST00000467315       44300051
3367          PFKL ENSG00000141959       ENST00000460521       44300051
3368          PFKL ENSG00000141959       ENST00000460521       44300051
3369          PFKL ENSG00000141959       ENST00000460521       44300051
3370          PFKL ENSG00000141959       ENST00000460521       44300051
3371          PFKL ENSG00000141959       ENST00000460521       44300051
3372          PFKL ENSG00000141959       ENST00000460521       44300051
3373          PFKL ENSG00000141959       ENST00000460521       44300051
3374          PFKL ENSG00000141959       ENST00000460521       44300051
3375          PFKL ENSG00000141959       ENST00000460521       44300051
3376          PFKL ENSG00000141959       ENST00000460521       44300051
3377          PFKL ENSG00000141959       ENST00000495274       44300051
3378          PFKL ENSG00000141959       ENST00000495274       44300051
3379          PFKL ENSG00000141959       ENST00000495274       44300051
3380          PFKL ENSG00000141959       ENST00000495274       44300051
3381          PFKL ENSG00000141959       ENST00000495274       44300051
3382          PFKL ENSG00000141959       ENST00000628044       44300051
3383          PFKL ENSG00000141959       ENST00000628044       44300051
3384               ENSG00000281383       ENST00000629969        8254592
3385     BACH1-IT1 ENSG00000248476       ENST00000504298       29351634
3386     BACH1-IT1 ENSG00000248476       ENST00000504298       29351634
3387     BACH1-IT1 ENSG00000248476       ENST00000504298       29351634
3388     BACH1-IT1 ENSG00000248476       ENST00000504298       29351634
3389    KRTAP10-12 ENSG00000189169       ENST00000400365       44697172
3390    KRTAP10-12 ENSG00000189169       ENST00000618832       44697172
3391    KRTAP10-12 ENSG00000189169       ENST00000618832       44697172
3392    KRTAP10-12 ENSG00000189169       ENST00000618832       44697172
3393      MTCYBP21 ENSG00000224747       ENST00000443300       44469929
3394      MTCYBP21 ENSG00000224747       ENST00000443300       44469929
3395      MTCYBP21 ENSG00000224747       ENST00000443300       44469929
3396               ENSG00000260256       ENST00000568332       44347767
3397               ENSG00000241728       ENST00000444409       44328944
3398               ENSG00000241728       ENST00000444409       44328944
3399               ENSG00000241728       ENST00000444409       44328944
3400               ENSG00000241728       ENST00000422357       44328944
3401               ENSG00000241728       ENST00000422357       44328944
3402         GRIK1 ENSG00000171189       ENST00000327783       29536933
3403         GRIK1 ENSG00000171189       ENST00000327783       29536933
3404         GRIK1 ENSG00000171189       ENST00000327783       29536933
3405         GRIK1 ENSG00000171189       ENST00000327783       29536933
3406         GRIK1 ENSG00000171189       ENST00000327783       29536933
3407         GRIK1 ENSG00000171189       ENST00000327783       29536933
3408         GRIK1 ENSG00000171189       ENST00000327783       29536933
3409         GRIK1 ENSG00000171189       ENST00000327783       29536933
3410         GRIK1 ENSG00000171189       ENST00000327783       29536933
3411         GRIK1 ENSG00000171189       ENST00000327783       29536933
3412         GRIK1 ENSG00000171189       ENST00000327783       29536933
3413         GRIK1 ENSG00000171189       ENST00000327783       29536933
3414         GRIK1 ENSG00000171189       ENST00000327783       29536933
3415         GRIK1 ENSG00000171189       ENST00000327783       29536933
3416         GRIK1 ENSG00000171189       ENST00000327783       29536933
3417         GRIK1 ENSG00000171189       ENST00000327783       29536933
3418         GRIK1 ENSG00000171189       ENST00000327783       29536933
3419         GRIK1 ENSG00000171189       ENST00000327783       29536933
3420         GRIK1 ENSG00000171189       ENST00000389125       29536933
3421         GRIK1 ENSG00000171189       ENST00000389125       29536933
3422         GRIK1 ENSG00000171189       ENST00000389125       29536933
3423         GRIK1 ENSG00000171189       ENST00000389125       29536933
3424         GRIK1 ENSG00000171189       ENST00000389125       29536933
3425         GRIK1 ENSG00000171189       ENST00000389125       29536933
3426         GRIK1 ENSG00000171189       ENST00000389125       29536933
3427         GRIK1 ENSG00000171189       ENST00000389125       29536933
3428         GRIK1 ENSG00000171189       ENST00000389125       29536933
3429         GRIK1 ENSG00000171189       ENST00000389125       29536933
3430         GRIK1 ENSG00000171189       ENST00000389125       29536933
3431         GRIK1 ENSG00000171189       ENST00000389125       29536933
3432         GRIK1 ENSG00000171189       ENST00000389125       29536933
3433         GRIK1 ENSG00000171189       ENST00000389125       29536933
3434         GRIK1 ENSG00000171189       ENST00000389125       29536933
3435         GRIK1 ENSG00000171189       ENST00000389125       29536933
3436         GRIK1 ENSG00000171189       ENST00000399913       29536933
3437         GRIK1 ENSG00000171189       ENST00000399913       29536933
3438         GRIK1 ENSG00000171189       ENST00000399913       29536933
3439         GRIK1 ENSG00000171189       ENST00000399913       29536933
3440         GRIK1 ENSG00000171189       ENST00000399913       29536933
3441         GRIK1 ENSG00000171189       ENST00000399913       29536933
3442         GRIK1 ENSG00000171189       ENST00000399913       29536933
3443         GRIK1 ENSG00000171189       ENST00000399913       29536933
3444         GRIK1 ENSG00000171189       ENST00000399913       29536933
3445         GRIK1 ENSG00000171189       ENST00000399913       29536933
3446         GRIK1 ENSG00000171189       ENST00000399913       29536933
3447         GRIK1 ENSG00000171189       ENST00000399913       29536933
3448         GRIK1 ENSG00000171189       ENST00000399913       29536933
3449         GRIK1 ENSG00000171189       ENST00000399913       29536933
3450         GRIK1 ENSG00000171189       ENST00000399913       29536933
3451         GRIK1 ENSG00000171189       ENST00000399913       29536933
3452         GRIK1 ENSG00000171189       ENST00000399913       29536933
3453         GRIK1 ENSG00000171189       ENST00000399914       29536933
3454         GRIK1 ENSG00000171189       ENST00000399914       29536933
3455         GRIK1 ENSG00000171189       ENST00000399914       29536933
3456         GRIK1 ENSG00000171189       ENST00000399914       29536933
3457         GRIK1 ENSG00000171189       ENST00000399914       29536933
3458         GRIK1 ENSG00000171189       ENST00000399914       29536933
3459         GRIK1 ENSG00000171189       ENST00000399914       29536933
3460         GRIK1 ENSG00000171189       ENST00000399914       29536933
3461         GRIK1 ENSG00000171189       ENST00000399914       29536933
3462         GRIK1 ENSG00000171189       ENST00000399914       29536933
3463         GRIK1 ENSG00000171189       ENST00000399914       29536933
3464         GRIK1 ENSG00000171189       ENST00000399914       29536933
3465         GRIK1 ENSG00000171189       ENST00000399914       29536933
3466         GRIK1 ENSG00000171189       ENST00000399914       29536933
3467         GRIK1 ENSG00000171189       ENST00000399914       29536933
3468         GRIK1 ENSG00000171189       ENST00000399914       29536933
3469         GRIK1 ENSG00000171189       ENST00000399914       29536933
3470         GRIK1 ENSG00000171189       ENST00000389124       29536933
3471         GRIK1 ENSG00000171189       ENST00000389124       29536933
3472         GRIK1 ENSG00000171189       ENST00000389124       29536933
3473         GRIK1 ENSG00000171189       ENST00000389124       29536933
3474         GRIK1 ENSG00000171189       ENST00000389124       29536933
3475         GRIK1 ENSG00000171189       ENST00000389124       29536933
3476         GRIK1 ENSG00000171189       ENST00000389124       29536933
3477         GRIK1 ENSG00000171189       ENST00000389124       29536933
3478         GRIK1 ENSG00000171189       ENST00000389124       29536933
3479         GRIK1 ENSG00000171189       ENST00000389124       29536933
3480         GRIK1 ENSG00000171189       ENST00000389124       29536933
3481         GRIK1 ENSG00000171189       ENST00000389124       29536933
3482         GRIK1 ENSG00000171189       ENST00000389124       29536933
3483         GRIK1 ENSG00000171189       ENST00000389124       29536933
3484         GRIK1 ENSG00000171189       ENST00000389124       29536933
3485         GRIK1 ENSG00000171189       ENST00000389124       29536933
3486         GRIK1 ENSG00000171189       ENST00000389124       29536933
3487         GRIK1 ENSG00000171189       ENST00000399907       29536933
3488         GRIK1 ENSG00000171189       ENST00000399907       29536933
3489         GRIK1 ENSG00000171189       ENST00000399907       29536933
3490         GRIK1 ENSG00000171189       ENST00000399907       29536933
3491         GRIK1 ENSG00000171189       ENST00000399907       29536933
3492         GRIK1 ENSG00000171189       ENST00000399907       29536933
3493         GRIK1 ENSG00000171189       ENST00000399907       29536933
3494         GRIK1 ENSG00000171189       ENST00000399907       29536933
3495         GRIK1 ENSG00000171189       ENST00000399907       29536933
3496         GRIK1 ENSG00000171189       ENST00000399907       29536933
3497         GRIK1 ENSG00000171189       ENST00000399907       29536933
3498         GRIK1 ENSG00000171189       ENST00000399907       29536933
3499         GRIK1 ENSG00000171189       ENST00000399907       29536933
3500         GRIK1 ENSG00000171189       ENST00000399907       29536933
3501         GRIK1 ENSG00000171189       ENST00000399907       29536933
3502         GRIK1 ENSG00000171189       ENST00000399907       29536933
3503         GRIK1 ENSG00000171189       ENST00000399907       29536933
3504         GRIK1 ENSG00000171189       ENST00000399909       29536933
3505         GRIK1 ENSG00000171189       ENST00000399909       29536933
3506         GRIK1 ENSG00000171189       ENST00000399909       29536933
3507         GRIK1 ENSG00000171189       ENST00000399909       29536933
3508         GRIK1 ENSG00000171189       ENST00000399909       29536933
3509         GRIK1 ENSG00000171189       ENST00000399909       29536933
3510         GRIK1 ENSG00000171189       ENST00000399909       29536933
3511         GRIK1 ENSG00000171189       ENST00000399909       29536933
3512         GRIK1 ENSG00000171189       ENST00000399909       29536933
3513         GRIK1 ENSG00000171189       ENST00000399909       29536933
3514         GRIK1 ENSG00000171189       ENST00000399909       29536933
3515         GRIK1 ENSG00000171189       ENST00000399909       29536933
3516         GRIK1 ENSG00000171189       ENST00000399909       29536933
3517         GRIK1 ENSG00000171189       ENST00000399909       29536933
3518         GRIK1 ENSG00000171189       ENST00000399909       29536933
3519         GRIK1 ENSG00000171189       ENST00000399909       29536933
3520         GRIK1 ENSG00000171189       ENST00000472429       29536933
3521         GRIK1 ENSG00000171189       ENST00000472429       29536933
3522         GRIK1 ENSG00000171189       ENST00000472429       29536933
3523         GRIK1 ENSG00000171189       ENST00000472429       29536933
3524         GRIK1 ENSG00000171189       ENST00000472429       29536933
3525         GRIK1 ENSG00000171189       ENST00000472429       29536933
3526         GRIK1 ENSG00000171189       ENST00000472429       29536933
3527         GRIK1 ENSG00000171189       ENST00000472429       29536933
3528       SMIM11B ENSG00000273590       ENST00000624534        7744962
3529       SMIM11B ENSG00000273590       ENST00000624534        7744962
3530       SMIM11B ENSG00000273590       ENST00000622934        7744962
3531       SMIM11B ENSG00000273590       ENST00000622934        7744962
3532       SMIM11B ENSG00000273590       ENST00000622934        7744962
3533       SMIM11B ENSG00000273590       ENST00000622934        7744962
3534       SMIM11B ENSG00000273590       ENST00000622934        7744962
3535       SMIM11B ENSG00000273590       ENST00000619874        7744962
3536       SMIM11B ENSG00000273590       ENST00000619874        7744962
3537       SMIM11B ENSG00000273590       ENST00000619874        7744962
3538       SMIM11B ENSG00000273590       ENST00000619874        7744962
3539       SMIM11B ENSG00000273590       ENST00000612624        7744962
3540       SMIM11B ENSG00000273590       ENST00000612624        7744962
3541       SMIM11B ENSG00000273590       ENST00000612624        7744962
3542       SMIM11B ENSG00000273590       ENST00000612624        7744962
3543       SMIM11B ENSG00000273590       ENST00000624304        7744962
3544       SMIM11B ENSG00000273590       ENST00000624304        7744962
3545       SMIM11B ENSG00000273590       ENST00000624304        7744962
3546       SMIM11B ENSG00000273590       ENST00000624758        7744962
3547       SMIM11B ENSG00000273590       ENST00000624758        7744962
3548       SMIM11B ENSG00000273590       ENST00000624758        7744962
3549       SMIM11B ENSG00000273590       ENST00000624758        7744962
3550       SMIM11B ENSG00000273590       ENST00000623661        7744962
3551       SMIM11B ENSG00000273590       ENST00000623661        7744962
3552       SMIM11B ENSG00000273590       ENST00000623661        7744962
3553       SMIM11B ENSG00000273590       ENST00000623661        7744962
3554       SMIM11B ENSG00000273590       ENST00000623661        7744962
3555               ENSG00000279895       ENST00000624042        7421442
3556               ENSG00000279895       ENST00000624042        7421442
3557               ENSG00000279895       ENST00000624042        7421442
3558               ENSG00000279895       ENST00000624042        7421442
3559               ENSG00000279895       ENST00000624042        7421442
3560               ENSG00000279895       ENST00000624042        7421442
3561               ENSG00000279895       ENST00000624042        7421442
3562               ENSG00000279895       ENST00000624042        7421442
3563               ENSG00000279895       ENST00000624042        7421442
3564               ENSG00000279895       ENST00000624042        7421442
3565       RPL23P2 ENSG00000176054       ENST00000320371       28997613
3566           LSS ENSG00000160285       ENST00000356396       46188141
3567           LSS ENSG00000160285       ENST00000356396       46188141
3568           LSS ENSG00000160285       ENST00000356396       46188141
3569           LSS ENSG00000160285       ENST00000356396       46188141
3570           LSS ENSG00000160285       ENST00000356396       46188141
3571           LSS ENSG00000160285       ENST00000356396       46188141
3572           LSS ENSG00000160285       ENST00000356396       46188141
3573           LSS ENSG00000160285       ENST00000356396       46188141
3574           LSS ENSG00000160285       ENST00000356396       46188141
3575           LSS ENSG00000160285       ENST00000356396       46188141
3576           LSS ENSG00000160285       ENST00000356396       46188141
3577           LSS ENSG00000160285       ENST00000356396       46188141
3578           LSS ENSG00000160285       ENST00000356396       46188141
3579           LSS ENSG00000160285       ENST00000356396       46188141
3580           LSS ENSG00000160285       ENST00000356396       46188141
3581           LSS ENSG00000160285       ENST00000356396       46188141
3582           LSS ENSG00000160285       ENST00000356396       46188141
3583           LSS ENSG00000160285       ENST00000356396       46188141
3584           LSS ENSG00000160285       ENST00000356396       46188141
3585           LSS ENSG00000160285       ENST00000356396       46188141
3586           LSS ENSG00000160285       ENST00000356396       46188141
3587           LSS ENSG00000160285       ENST00000356396       46188141
3588           LSS ENSG00000160285       ENST00000356396       46188141
3589           LSS ENSG00000160285       ENST00000491729       46188141
3590           LSS ENSG00000160285       ENST00000491729       46188141
3591           LSS ENSG00000160285       ENST00000491729       46188141
3592           LSS ENSG00000160285       ENST00000397728       46188141
3593           LSS ENSG00000160285       ENST00000397728       46188141
3594           LSS ENSG00000160285       ENST00000397728       46188141
3595           LSS ENSG00000160285       ENST00000397728       46188141
3596           LSS ENSG00000160285       ENST00000397728       46188141
3597           LSS ENSG00000160285       ENST00000397728       46188141
3598           LSS ENSG00000160285       ENST00000397728       46188141
3599           LSS ENSG00000160285       ENST00000397728       46188141
3600           LSS ENSG00000160285       ENST00000397728       46188141
3601           LSS ENSG00000160285       ENST00000397728       46188141
3602           LSS ENSG00000160285       ENST00000397728       46188141
3603           LSS ENSG00000160285       ENST00000397728       46188141
3604           LSS ENSG00000160285       ENST00000397728       46188141
3605           LSS ENSG00000160285       ENST00000397728       46188141
3606           LSS ENSG00000160285       ENST00000397728       46188141
3607           LSS ENSG00000160285       ENST00000397728       46188141
3608           LSS ENSG00000160285       ENST00000397728       46188141
3609           LSS ENSG00000160285       ENST00000397728       46188141
3610           LSS ENSG00000160285       ENST00000397728       46188141
3611           LSS ENSG00000160285       ENST00000397728       46188141
3612           LSS ENSG00000160285       ENST00000397728       46188141
3613           LSS ENSG00000160285       ENST00000397728       46188141
3614           LSS ENSG00000160285       ENST00000419093       46188141
3615           LSS ENSG00000160285       ENST00000419093       46188141
3616           LSS ENSG00000160285       ENST00000419093       46188141
3617           LSS ENSG00000160285       ENST00000474319       46188141
3618           LSS ENSG00000160285       ENST00000474319       46188141
3619           LSS ENSG00000160285       ENST00000522411       46188141
3620           LSS ENSG00000160285       ENST00000522411       46188141
3621           LSS ENSG00000160285       ENST00000522411       46188141
3622           LSS ENSG00000160285       ENST00000522411       46188141
3623           LSS ENSG00000160285       ENST00000522411       46188141
3624           LSS ENSG00000160285       ENST00000522411       46188141
3625           LSS ENSG00000160285       ENST00000522411       46188141
3626           LSS ENSG00000160285       ENST00000522411       46188141
3627           LSS ENSG00000160285       ENST00000522411       46188141
3628           LSS ENSG00000160285       ENST00000522411       46188141
3629           LSS ENSG00000160285       ENST00000522411       46188141
3630           LSS ENSG00000160285       ENST00000522411       46188141
3631           LSS ENSG00000160285       ENST00000522411       46188141
3632           LSS ENSG00000160285       ENST00000522411       46188141
3633           LSS ENSG00000160285       ENST00000522411       46188141
3634           LSS ENSG00000160285       ENST00000522411       46188141
3635           LSS ENSG00000160285       ENST00000522411       46188141
3636           LSS ENSG00000160285       ENST00000522411       46188141
3637           LSS ENSG00000160285       ENST00000522411       46188141
3638           LSS ENSG00000160285       ENST00000522411       46188141
3639           LSS ENSG00000160285       ENST00000522411       46188141
3640           LSS ENSG00000160285       ENST00000522411       46188141
3641           LSS ENSG00000160285       ENST00000484808       46188141
3642           LSS ENSG00000160285       ENST00000484808       46188141
3643           LSS ENSG00000160285       ENST00000464357       46188141
3644           LSS ENSG00000160285       ENST00000464357       46188141
3645           LSS ENSG00000160285       ENST00000464357       46188141
3646           LSS ENSG00000160285       ENST00000464357       46188141
3647           LSS ENSG00000160285       ENST00000464357       46188141
3648           LSS ENSG00000160285       ENST00000464357       46188141
3649           LSS ENSG00000160285       ENST00000464357       46188141
3650           LSS ENSG00000160285       ENST00000450351       46188141
3651           LSS ENSG00000160285       ENST00000450351       46188141
3652           LSS ENSG00000160285       ENST00000450351       46188141
3653           LSS ENSG00000160285       ENST00000450351       46188141
3654           LSS ENSG00000160285       ENST00000450351       46188141
3655           LSS ENSG00000160285       ENST00000450351       46188141
3656           LSS ENSG00000160285       ENST00000450351       46188141
3657           LSS ENSG00000160285       ENST00000472272       46188141
3658           LSS ENSG00000160285       ENST00000472272       46188141
3659           LSS ENSG00000160285       ENST00000472272       46188141
3660           LSS ENSG00000160285       ENST00000457828       46188141
3661           LSS ENSG00000160285       ENST00000457828       46188141
3662           LSS ENSG00000160285       ENST00000457828       46188141
3663           LSS ENSG00000160285       ENST00000457828       46188141
3664           LSS ENSG00000160285       ENST00000457828       46188141
3665           LSS ENSG00000160285       ENST00000457828       46188141
3666           LSS ENSG00000160285       ENST00000457828       46188141
3667           LSS ENSG00000160285       ENST00000457828       46188141
3668           LSS ENSG00000160285       ENST00000457828       46188141
3669           LSS ENSG00000160285       ENST00000457828       46188141
3670           LSS ENSG00000160285       ENST00000457828       46188141
3671           LSS ENSG00000160285       ENST00000457828       46188141
3672           LSS ENSG00000160285       ENST00000457828       46188141
3673           LSS ENSG00000160285       ENST00000457828       46188141
3674           LSS ENSG00000160285       ENST00000457828       46188141
3675           LSS ENSG00000160285       ENST00000457828       46188141
3676           LSS ENSG00000160285       ENST00000457828       46188141
3677           LSS ENSG00000160285       ENST00000457828       46188141
3678           LSS ENSG00000160285       ENST00000457828       46188141
3679           LSS ENSG00000160285       ENST00000457828       46188141
3680           LSS ENSG00000160285       ENST00000457828       46188141
3681        PRDM15 ENSG00000141956       ENST00000486812       41798225
3682        PRDM15 ENSG00000141956       ENST00000486812       41798225
3683        PRDM15 ENSG00000141956       ENST00000486812       41798225
3684        PRDM15 ENSG00000141956       ENST00000486812       41798225
3685        PRDM15 ENSG00000141956       ENST00000486812       41798225
3686        PRDM15 ENSG00000141956       ENST00000486812       41798225
3687        PRDM15 ENSG00000141956       ENST00000470586       41798225
3688        PRDM15 ENSG00000141956       ENST00000470586       41798225
3689        PRDM15 ENSG00000141956       ENST00000470586       41798225
3690        PRDM15 ENSG00000141956       ENST00000470586       41798225
3691        PRDM15 ENSG00000141956       ENST00000470586       41798225
3692        PRDM15 ENSG00000141956       ENST00000470586       41798225
3693        PRDM15 ENSG00000141956       ENST00000470586       41798225
3694        PRDM15 ENSG00000141956       ENST00000447016       41798225
3695        PRDM15 ENSG00000141956       ENST00000447016       41798225
3696        PRDM15 ENSG00000141956       ENST00000447016       41798225
3697        PRDM15 ENSG00000141956       ENST00000447016       41798225
3698        PRDM15 ENSG00000141956       ENST00000447016       41798225
3699        PRDM15 ENSG00000141956       ENST00000447016       41798225
3700        PRDM15 ENSG00000141956       ENST00000447016       41798225
3701        PRDM15 ENSG00000141956       ENST00000447016       41798225
3702        PRDM15 ENSG00000141956       ENST00000447016       41798225
3703        PRDM15 ENSG00000141956       ENST00000447016       41798225
3704        PRDM15 ENSG00000141956       ENST00000447016       41798225
3705        PRDM15 ENSG00000141956       ENST00000447016       41798225
3706        PRDM15 ENSG00000141956       ENST00000447016       41798225
3707        PRDM15 ENSG00000141956       ENST00000447016       41798225
3708        PRDM15 ENSG00000141956       ENST00000447016       41798225
3709        PRDM15 ENSG00000141956       ENST00000447016       41798225
3710        PRDM15 ENSG00000141956       ENST00000447016       41798225
3711        PRDM15 ENSG00000141956       ENST00000447016       41798225
3712        PRDM15 ENSG00000141956       ENST00000447016       41798225
3713        PRDM15 ENSG00000141956       ENST00000447016       41798225
3714        PRDM15 ENSG00000141956       ENST00000447016       41798225
3715        PRDM15 ENSG00000141956       ENST00000447016       41798225
3716        PRDM15 ENSG00000141956       ENST00000447016       41798225
3717        PRDM15 ENSG00000141956       ENST00000447016       41798225
3718        PRDM15 ENSG00000141956       ENST00000447016       41798225
3719        PRDM15 ENSG00000141956       ENST00000447016       41798225
3720        PRDM15 ENSG00000141956       ENST00000422911       41798225
3721        PRDM15 ENSG00000141956       ENST00000422911       41798225
3722        PRDM15 ENSG00000141956       ENST00000422911       41798225
3723        PRDM15 ENSG00000141956       ENST00000422911       41798225
3724        PRDM15 ENSG00000141956       ENST00000422911       41798225
3725        PRDM15 ENSG00000141956       ENST00000422911       41798225
3726        PRDM15 ENSG00000141956       ENST00000422911       41798225
3727        PRDM15 ENSG00000141956       ENST00000422911       41798225
3728        PRDM15 ENSG00000141956       ENST00000422911       41798225
3729        PRDM15 ENSG00000141956       ENST00000422911       41798225
3730        PRDM15 ENSG00000141956       ENST00000422911       41798225
3731        PRDM15 ENSG00000141956       ENST00000422911       41798225
3732        PRDM15 ENSG00000141956       ENST00000422911       41798225
3733        PRDM15 ENSG00000141956       ENST00000422911       41798225
3734        PRDM15 ENSG00000141956       ENST00000422911       41798225
3735        PRDM15 ENSG00000141956       ENST00000422911       41798225
3736        PRDM15 ENSG00000141956       ENST00000422911       41798225
3737        PRDM15 ENSG00000141956       ENST00000422911       41798225
3738        PRDM15 ENSG00000141956       ENST00000422911       41798225
3739        PRDM15 ENSG00000141956       ENST00000422911       41798225
3740        PRDM15 ENSG00000141956       ENST00000422911       41798225
3741        PRDM15 ENSG00000141956       ENST00000422911       41798225
3742        PRDM15 ENSG00000141956       ENST00000422911       41798225
3743        PRDM15 ENSG00000141956       ENST00000422911       41798225
3744        PRDM15 ENSG00000141956       ENST00000422911       41798225
3745        PRDM15 ENSG00000141956       ENST00000441787       41798225
3746        PRDM15 ENSG00000141956       ENST00000441787       41798225
3747        PRDM15 ENSG00000141956       ENST00000441787       41798225
3748        PRDM15 ENSG00000141956       ENST00000441787       41798225
3749        PRDM15 ENSG00000141956       ENST00000441787       41798225
3750        PRDM15 ENSG00000141956       ENST00000441787       41798225
3751        PRDM15 ENSG00000141956       ENST00000441787       41798225
3752        PRDM15 ENSG00000141956       ENST00000441787       41798225
3753        PRDM15 ENSG00000141956       ENST00000441787       41798225
3754        PRDM15 ENSG00000141956       ENST00000441787       41798225
3755        PRDM15 ENSG00000141956       ENST00000441787       41798225
3756        PRDM15 ENSG00000141956       ENST00000441787       41798225
3757        PRDM15 ENSG00000141956       ENST00000441787       41798225
3758        PRDM15 ENSG00000141956       ENST00000441787       41798225
3759        PRDM15 ENSG00000141956       ENST00000441787       41798225
3760        PRDM15 ENSG00000141956       ENST00000441787       41798225
3761        PRDM15 ENSG00000141956       ENST00000441787       41798225
3762        PRDM15 ENSG00000141956       ENST00000441787       41798225
3763        PRDM15 ENSG00000141956       ENST00000441787       41798225
3764        PRDM15 ENSG00000141956       ENST00000441787       41798225
3765        PRDM15 ENSG00000141956       ENST00000441787       41798225
3766        PRDM15 ENSG00000141956       ENST00000441787       41798225
3767        PRDM15 ENSG00000141956       ENST00000441787       41798225
3768        PRDM15 ENSG00000141956       ENST00000441787       41798225
3769        PRDM15 ENSG00000141956       ENST00000449395       41798225
3770        PRDM15 ENSG00000141956       ENST00000449395       41798225
3771        PRDM15 ENSG00000141956       ENST00000449395       41798225
3772        PRDM15 ENSG00000141956       ENST00000449395       41798225
3773        PRDM15 ENSG00000141956       ENST00000449395       41798225
3774        PRDM15 ENSG00000141956       ENST00000449395       41798225
3775        PRDM15 ENSG00000141956       ENST00000449395       41798225
3776        PRDM15 ENSG00000141956       ENST00000449395       41798225
3777        PRDM15 ENSG00000141956       ENST00000449395       41798225
3778        PRDM15 ENSG00000141956       ENST00000449395       41798225
3779        PRDM15 ENSG00000141956       ENST00000449395       41798225
3780        PRDM15 ENSG00000141956       ENST00000449395       41798225
3781        PRDM15 ENSG00000141956       ENST00000449395       41798225
3782        PRDM15 ENSG00000141956       ENST00000449395       41798225
3783        PRDM15 ENSG00000141956       ENST00000449395       41798225
3784        PRDM15 ENSG00000141956       ENST00000449395       41798225
3785        PRDM15 ENSG00000141956       ENST00000449395       41798225
3786        PRDM15 ENSG00000141956       ENST00000449395       41798225
3787        PRDM15 ENSG00000141956       ENST00000449395       41798225
3788        PRDM15 ENSG00000141956       ENST00000449395       41798225
3789        PRDM15 ENSG00000141956       ENST00000449395       41798225
3790        PRDM15 ENSG00000141956       ENST00000449395       41798225
3791        PRDM15 ENSG00000141956       ENST00000449395       41798225
3792        PRDM15 ENSG00000141956       ENST00000449395       41798225
3793        PRDM15 ENSG00000141956       ENST00000449395       41798225
3794        PRDM15 ENSG00000141956       ENST00000398548       41798225
3795        PRDM15 ENSG00000141956       ENST00000398548       41798225
3796        PRDM15 ENSG00000141956       ENST00000398548       41798225
3797        PRDM15 ENSG00000141956       ENST00000398548       41798225
3798        PRDM15 ENSG00000141956       ENST00000398548       41798225
3799        PRDM15 ENSG00000141956       ENST00000398548       41798225
3800        PRDM15 ENSG00000141956       ENST00000398548       41798225
3801        PRDM15 ENSG00000141956       ENST00000398548       41798225
3802        PRDM15 ENSG00000141956       ENST00000398548       41798225
3803        PRDM15 ENSG00000141956       ENST00000398548       41798225
3804        PRDM15 ENSG00000141956       ENST00000398548       41798225
3805        PRDM15 ENSG00000141956       ENST00000398548       41798225
3806        PRDM15 ENSG00000141956       ENST00000398548       41798225
3807        PRDM15 ENSG00000141956       ENST00000398548       41798225
3808        PRDM15 ENSG00000141956       ENST00000398548       41798225
3809        PRDM15 ENSG00000141956       ENST00000398548       41798225
3810        PRDM15 ENSG00000141956       ENST00000398548       41798225
3811        PRDM15 ENSG00000141956       ENST00000398548       41798225
3812        PRDM15 ENSG00000141956       ENST00000398548       41798225
3813        PRDM15 ENSG00000141956       ENST00000398548       41798225
3814        PRDM15 ENSG00000141956       ENST00000398548       41798225
3815        PRDM15 ENSG00000141956       ENST00000398548       41798225
3816        PRDM15 ENSG00000141956       ENST00000398548       41798225
3817        PRDM15 ENSG00000141956       ENST00000398548       41798225
3818        PRDM15 ENSG00000141956       ENST00000433067       41798225
3819        PRDM15 ENSG00000141956       ENST00000433067       41798225
3820        PRDM15 ENSG00000141956       ENST00000433067       41798225
3821        PRDM15 ENSG00000141956       ENST00000433067       41798225
3822        PRDM15 ENSG00000141956       ENST00000433067       41798225
3823        PRDM15 ENSG00000141956       ENST00000433067       41798225
3824        PRDM15 ENSG00000141956       ENST00000433067       41798225
3825        PRDM15 ENSG00000141956       ENST00000433067       41798225
3826        PRDM15 ENSG00000141956       ENST00000433067       41798225
3827        PRDM15 ENSG00000141956       ENST00000433067       41798225
3828        PRDM15 ENSG00000141956       ENST00000433067       41798225
3829        PRDM15 ENSG00000141956       ENST00000433067       41798225
3830        PRDM15 ENSG00000141956       ENST00000433067       41798225
3831        PRDM15 ENSG00000141956       ENST00000433067       41798225
3832        PRDM15 ENSG00000141956       ENST00000433067       41798225
3833        PRDM15 ENSG00000141956       ENST00000433067       41798225
3834        PRDM15 ENSG00000141956       ENST00000433067       41798225
3835        PRDM15 ENSG00000141956       ENST00000433067       41798225
3836        PRDM15 ENSG00000141956       ENST00000433067       41798225
3837        PRDM15 ENSG00000141956       ENST00000433067       41798225
3838        PRDM15 ENSG00000141956       ENST00000433067       41798225
3839        PRDM15 ENSG00000141956       ENST00000433067       41798225
3840        PRDM15 ENSG00000141956       ENST00000433067       41798225
3841        PRDM15 ENSG00000141956       ENST00000433067       41798225
3842        PRDM15 ENSG00000141956       ENST00000433067       41798225
3843        PRDM15 ENSG00000141956       ENST00000433067       41798225
3844        PRDM15 ENSG00000141956       ENST00000433067       41798225
3845        PRDM15 ENSG00000141956       ENST00000433067       41798225
3846        PRDM15 ENSG00000141956       ENST00000433067       41798225
3847        PRDM15 ENSG00000141956       ENST00000433067       41798225
3848        PRDM15 ENSG00000141956       ENST00000433067       41798225
3849        PRDM15 ENSG00000141956       ENST00000433067       41798225
3850        PRDM15 ENSG00000141956       ENST00000433067       41798225
3851        PRDM15 ENSG00000141956       ENST00000465955       41798225
3852        PRDM15 ENSG00000141956       ENST00000465955       41798225
3853        PRDM15 ENSG00000141956       ENST00000477633       41798225
3854        PRDM15 ENSG00000141956       ENST00000477633       41798225
3855        PRDM15 ENSG00000141956       ENST00000477633       41798225
3856        PRDM15 ENSG00000141956       ENST00000495217       41798225
3857        PRDM15 ENSG00000141956       ENST00000495217       41798225
3858        PRDM15 ENSG00000141956       ENST00000495217       41798225
3859        PRDM15 ENSG00000141956       ENST00000495217       41798225
3860        PRDM15 ENSG00000141956       ENST00000495217       41798225
3861        PRDM15 ENSG00000141956       ENST00000495217       41798225
3862        PRDM15 ENSG00000141956       ENST00000491486       41798225
3863        PRDM15 ENSG00000141956       ENST00000491486       41798225
3864        PRDM15 ENSG00000141956       ENST00000491486       41798225
3865        PRDM15 ENSG00000141956       ENST00000491486       41798225
3866        PRDM15 ENSG00000141956       ENST00000491486       41798225
3867        PRDM15 ENSG00000141956       ENST00000489661       41798225
3868        PRDM15 ENSG00000141956       ENST00000489661       41798225
3869        PRDM15 ENSG00000141956       ENST00000489661       41798225
3870        PRDM15 ENSG00000141956       ENST00000489661       41798225
3871        PRDM15 ENSG00000141956       ENST00000489661       41798225
3872        PRDM15 ENSG00000141956       ENST00000496124       41798225
3873        PRDM15 ENSG00000141956       ENST00000496124       41798225
3874        PRDM15 ENSG00000141956       ENST00000496124       41798225
3875        PRDM15 ENSG00000141956       ENST00000496124       41798225
3876        PRDM15 ENSG00000141956       ENST00000496124       41798225
3877        PRDM15 ENSG00000141956       ENST00000269844       41798225
3878        PRDM15 ENSG00000141956       ENST00000269844       41798225
3879        PRDM15 ENSG00000141956       ENST00000269844       41798225
3880        PRDM15 ENSG00000141956       ENST00000269844       41798225
3881        PRDM15 ENSG00000141956       ENST00000269844       41798225
3882        PRDM15 ENSG00000141956       ENST00000269844       41798225
3883        PRDM15 ENSG00000141956       ENST00000269844       41798225
3884        PRDM15 ENSG00000141956       ENST00000269844       41798225
3885        PRDM15 ENSG00000141956       ENST00000269844       41798225
3886        PRDM15 ENSG00000141956       ENST00000269844       41798225
3887        PRDM15 ENSG00000141956       ENST00000269844       41798225
3888        PRDM15 ENSG00000141956       ENST00000269844       41798225
3889        PRDM15 ENSG00000141956       ENST00000269844       41798225
3890        PRDM15 ENSG00000141956       ENST00000269844       41798225
3891        PRDM15 ENSG00000141956       ENST00000269844       41798225
3892        PRDM15 ENSG00000141956       ENST00000269844       41798225
3893        PRDM15 ENSG00000141956       ENST00000269844       41798225
3894        PRDM15 ENSG00000141956       ENST00000269844       41798225
3895        PRDM15 ENSG00000141956       ENST00000269844       41798225
3896        PRDM15 ENSG00000141956       ENST00000269844       41798225
3897        PRDM15 ENSG00000141956       ENST00000269844       41798225
3898        PRDM15 ENSG00000141956       ENST00000269844       41798225
3899        PRDM15 ENSG00000141956       ENST00000269844       41798225
3900        PRDM15 ENSG00000141956       ENST00000269844       41798225
3901        PRDM15 ENSG00000141956       ENST00000269844       41798225
3902        PRDM15 ENSG00000141956       ENST00000269844       41798225
3903        PRDM15 ENSG00000141956       ENST00000269844       41798225
3904        PRDM15 ENSG00000141956       ENST00000269844       41798225
3905        PRDM15 ENSG00000141956       ENST00000269844       41798225
3906        PRDM15 ENSG00000141956       ENST00000269844       41798225
3907        PRDM15 ENSG00000141956       ENST00000269844       41798225
3908        PRDM15 ENSG00000141956       ENST00000447207       41798225
3909        PRDM15 ENSG00000141956       ENST00000447207       41798225
3910        PRDM15 ENSG00000141956       ENST00000447207       41798225
3911        PRDM15 ENSG00000141956       ENST00000447207       41798225
3912        PRDM15 ENSG00000141956       ENST00000447207       41798225
3913        PRDM15 ENSG00000141956       ENST00000447207       41798225
3914        PRDM15 ENSG00000141956       ENST00000447207       41798225
3915        PRDM15 ENSG00000141956       ENST00000447207       41798225
3916        PRDM15 ENSG00000141956       ENST00000447207       41798225
3917        PRDM15 ENSG00000141956       ENST00000447207       41798225
3918        PRDM15 ENSG00000141956       ENST00000447207       41798225
3919        PRDM15 ENSG00000141956       ENST00000447207       41798225
3920        PRDM15 ENSG00000141956       ENST00000447207       41798225
3921        PRDM15 ENSG00000141956       ENST00000447207       41798225
3922        PRDM15 ENSG00000141956       ENST00000447207       41798225
3923        PRDM15 ENSG00000141956       ENST00000447207       41798225
3924        PRDM15 ENSG00000141956       ENST00000447207       41798225
3925        PRDM15 ENSG00000141956       ENST00000447207       41798225
3926        PRDM15 ENSG00000141956       ENST00000447207       41798225
3927        PRDM15 ENSG00000141956       ENST00000447207       41798225
3928        PRDM15 ENSG00000141956       ENST00000447207       41798225
3929        PRDM15 ENSG00000141956       ENST00000447207       41798225
3930        PRDM15 ENSG00000141956       ENST00000447207       41798225
3931        PRDM15 ENSG00000141956       ENST00000447207       41798225
3932        PRDM15 ENSG00000141956       ENST00000447207       41798225
3933      MAP3K7CL ENSG00000156265       ENST00000496779       29077471
3934      MAP3K7CL ENSG00000156265       ENST00000496779       29077471
3935      MAP3K7CL ENSG00000156265       ENST00000496779       29077471
3936      MAP3K7CL ENSG00000156265       ENST00000496779       29077471
3937      MAP3K7CL ENSG00000156265       ENST00000496779       29077471
3938      MAP3K7CL ENSG00000156265       ENST00000496779       29077471
3939      MAP3K7CL ENSG00000156265       ENST00000496779       29077471
3940      MAP3K7CL ENSG00000156265       ENST00000419845       29077471
3941      MAP3K7CL ENSG00000156265       ENST00000419845       29077471
3942      MAP3K7CL ENSG00000156265       ENST00000419845       29077471
3943      MAP3K7CL ENSG00000156265       ENST00000419845       29077471
3944      MAP3K7CL ENSG00000156265       ENST00000492930       29077471
3945      MAP3K7CL ENSG00000156265       ENST00000492930       29077471
3946      MAP3K7CL ENSG00000156265       ENST00000492930       29077471
3947      MAP3K7CL ENSG00000156265       ENST00000492930       29077471
3948      MAP3K7CL ENSG00000156265       ENST00000492930       29077471
3949      MAP3K7CL ENSG00000156265       ENST00000492930       29077471
3950      MAP3K7CL ENSG00000156265       ENST00000341618       29077471
3951      MAP3K7CL ENSG00000156265       ENST00000341618       29077471
3952      MAP3K7CL ENSG00000156265       ENST00000341618       29077471
3953      MAP3K7CL ENSG00000156265       ENST00000341618       29077471
3954      MAP3K7CL ENSG00000156265       ENST00000341618       29077471
3955      MAP3K7CL ENSG00000156265       ENST00000341618       29077471
3956      MAP3K7CL ENSG00000156265       ENST00000341618       29077471
3957      MAP3K7CL ENSG00000156265       ENST00000341618       29077471
3958      MAP3K7CL ENSG00000156265       ENST00000399935       29077471
3959      MAP3K7CL ENSG00000156265       ENST00000399935       29077471
3960      MAP3K7CL ENSG00000156265       ENST00000399935       29077471
3961      MAP3K7CL ENSG00000156265       ENST00000399935       29077471
3962      MAP3K7CL ENSG00000156265       ENST00000399935       29077471
3963      MAP3K7CL ENSG00000156265       ENST00000399935       29077471
3964      MAP3K7CL ENSG00000156265       ENST00000399935       29077471
3965      MAP3K7CL ENSG00000156265       ENST00000399935       29077471
3966      MAP3K7CL ENSG00000156265       ENST00000399935       29077471
3967      MAP3K7CL ENSG00000156265       ENST00000399935       29077471
3968      MAP3K7CL ENSG00000156265       ENST00000399934       29077471
3969      MAP3K7CL ENSG00000156265       ENST00000399934       29077471
3970      MAP3K7CL ENSG00000156265       ENST00000399934       29077471
3971      MAP3K7CL ENSG00000156265       ENST00000399934       29077471
3972      MAP3K7CL ENSG00000156265       ENST00000399934       29077471
3973      MAP3K7CL ENSG00000156265       ENST00000399934       29077471
3974      MAP3K7CL ENSG00000156265       ENST00000399934       29077471
3975      MAP3K7CL ENSG00000156265       ENST00000399934       29077471
3976      MAP3K7CL ENSG00000156265       ENST00000399934       29077471
3977      MAP3K7CL ENSG00000156265       ENST00000399947       29077471
3978      MAP3K7CL ENSG00000156265       ENST00000399947       29077471
3979      MAP3K7CL ENSG00000156265       ENST00000399947       29077471
3980      MAP3K7CL ENSG00000156265       ENST00000399947       29077471
3981      MAP3K7CL ENSG00000156265       ENST00000399947       29077471
3982      MAP3K7CL ENSG00000156265       ENST00000399947       29077471
3983      MAP3K7CL ENSG00000156265       ENST00000399947       29077471
3984      MAP3K7CL ENSG00000156265       ENST00000399947       29077471
3985      MAP3K7CL ENSG00000156265       ENST00000399947       29077471
3986      MAP3K7CL ENSG00000156265       ENST00000339024       29077471
3987      MAP3K7CL ENSG00000156265       ENST00000339024       29077471
3988      MAP3K7CL ENSG00000156265       ENST00000339024       29077471
3989      MAP3K7CL ENSG00000156265       ENST00000339024       29077471
3990      MAP3K7CL ENSG00000156265       ENST00000339024       29077471
3991      MAP3K7CL ENSG00000156265       ENST00000339024       29077471
3992      MAP3K7CL ENSG00000156265       ENST00000339024       29077471
3993      MAP3K7CL ENSG00000156265       ENST00000460883       29077471
3994      MAP3K7CL ENSG00000156265       ENST00000460883       29077471
3995      MAP3K7CL ENSG00000156265       ENST00000460883       29077471
3996      MAP3K7CL ENSG00000156265       ENST00000460883       29077471
3997      MAP3K7CL ENSG00000156265       ENST00000399928       29077471
3998      MAP3K7CL ENSG00000156265       ENST00000399928       29077471
3999      MAP3K7CL ENSG00000156265       ENST00000399928       29077471
4000      MAP3K7CL ENSG00000156265       ENST00000399928       29077471
4001      MAP3K7CL ENSG00000156265       ENST00000399928       29077471
4002      MAP3K7CL ENSG00000156265       ENST00000399926       29077471
4003      MAP3K7CL ENSG00000156265       ENST00000399926       29077471
4004      MAP3K7CL ENSG00000156265       ENST00000399926       29077471
4005      MAP3K7CL ENSG00000156265       ENST00000399926       29077471
4006      MAP3K7CL ENSG00000156265       ENST00000399926       29077471
4007      MAP3K7CL ENSG00000156265       ENST00000399926       29077471
4008      MAP3K7CL ENSG00000156265       ENST00000399925       29077471
4009      MAP3K7CL ENSG00000156265       ENST00000399925       29077471
4010      MAP3K7CL ENSG00000156265       ENST00000399925       29077471
4011      MAP3K7CL ENSG00000156265       ENST00000399925       29077471
4012      MAP3K7CL ENSG00000156265       ENST00000399925       29077471
4013      MAP3K7CL ENSG00000156265       ENST00000451489       29077471
4014      MAP3K7CL ENSG00000156265       ENST00000451489       29077471
4015      MAP3K7CL ENSG00000156265       ENST00000451489       29077471
4016      MAP3K7CL ENSG00000156265       ENST00000451489       29077471
4017      MAP3K7CL ENSG00000156265       ENST00000451489       29077471
4018      MAP3K7CL ENSG00000156265       ENST00000470800       29077471
4019      MAP3K7CL ENSG00000156265       ENST00000470800       29077471
4020      MAP3K7CL ENSG00000156265       ENST00000470800       29077471
4021      MAP3K7CL ENSG00000156265       ENST00000470800       29077471
4022      MAP3K7CL ENSG00000156265       ENST00000286791       29077471
4023      MAP3K7CL ENSG00000156265       ENST00000286791       29077471
4024      MAP3K7CL ENSG00000156265       ENST00000286791       29077471
4025      MAP3K7CL ENSG00000156265       ENST00000286791       29077471
4026      MAP3K7CL ENSG00000156265       ENST00000286791       29077471
4027      MAP3K7CL ENSG00000156265       ENST00000286791       29077471
4028      MAP3K7CL ENSG00000156265       ENST00000286791       29077471
4029      MAP3K7CL ENSG00000156265       ENST00000545939       29077471
4030      MAP3K7CL ENSG00000156265       ENST00000545939       29077471
4031      MAP3K7CL ENSG00000156265       ENST00000545939       29077471
4032      MAP3K7CL ENSG00000156265       ENST00000545939       29077471
4033       RPL12P9 ENSG00000232687       ENST00000412942       29127701
4034     LINC01669 ENSG00000280191       ENST00000624561        6060340
4035     LINC01669 ENSG00000280191       ENST00000624561        6060340
4036     LINC01669 ENSG00000280191       ENST00000624561        6060340
4037     LINC01669 ENSG00000280191       ENST00000624561        6060340
4038     LINC01669 ENSG00000280191       ENST00000624105        6060340
4039     LINC01669 ENSG00000280191       ENST00000624105        6060340
4040     LINC01669 ENSG00000280191       ENST00000624113        6060340
4041     LINC01669 ENSG00000280191       ENST00000624113        6060340
4042     LINC01669 ENSG00000280191       ENST00000623161        6060340
4043     LINC01669 ENSG00000280191       ENST00000623161        6060340
4044     LINC01669 ENSG00000280191       ENST00000623161        6060340
4045     LINC01669 ENSG00000280191       ENST00000623161        6060340
4046     LINC01669 ENSG00000280191       ENST00000623549        6060340
4047     LINC01669 ENSG00000280191       ENST00000623549        6060340
4048     LINC01669 ENSG00000280191       ENST00000623549        6060340
4049               ENSG00000279186       ENST00000624506        5703182
4050               ENSG00000279784       ENST00000623587        5705345
4051               ENSG00000279784       ENST00000623587        5705345
4052               ENSG00000230972       ENST00000421604       23065491
4053               ENSG00000230972       ENST00000421604       23065491
4054               ENSG00000230972       ENST00000421604       23065491
4055               ENSG00000230972       ENST00000421604       23065491
4056               ENSG00000230972       ENST00000421604       23065491
4057     LINC01687 ENSG00000233215       ENST00000416327       22008944
4058     LINC01687 ENSG00000233215       ENST00000416327       22008944
4059     LINC01687 ENSG00000233215       ENST00000416327       22008944
4060     LINC01687 ENSG00000233215       ENST00000420255       22008944
4061     LINC01687 ENSG00000233215       ENST00000420255       22008944
4062     LINC01687 ENSG00000233215       ENST00000420255       22008944
4063     LINC01687 ENSG00000233215       ENST00000420255       22008944
4064     LINC01687 ENSG00000233215       ENST00000420255       22008944
4065     LINC01687 ENSG00000233215       ENST00000420255       22008944
4066     LINC01687 ENSG00000233215       ENST00000419467       22008944
4067     LINC01687 ENSG00000233215       ENST00000419467       22008944
4068     LINC01687 ENSG00000233215       ENST00000419467       22008944
4069               ENSG00000227075       ENST00000452500       21933315
4070               ENSG00000227075       ENST00000452500       21933315
4071               ENSG00000227075       ENST00000452500       21933315
4072               ENSG00000236677       ENST00000436303       36060432
4073               ENSG00000236677       ENST00000436303       36060432
4074               ENSG00000236677       ENST00000436303       36060432
4075     LINC01683 ENSG00000233480       ENST00000443479       19893279
4076     LINC01683 ENSG00000233480       ENST00000443479       19893279
4077     LINC01683 ENSG00000233480       ENST00000443479       19893279
4078         EVA1C ENSG00000166979       ENST00000469079       32412006
4079         EVA1C ENSG00000166979       ENST00000469079       32412006
4080         EVA1C ENSG00000166979       ENST00000469079       32412006
4081         EVA1C ENSG00000166979       ENST00000469079       32412006
4082         EVA1C ENSG00000166979       ENST00000459833       32412006
4083         EVA1C ENSG00000166979       ENST00000459833       32412006
4084         EVA1C ENSG00000166979       ENST00000459833       32412006
4085         EVA1C ENSG00000166979       ENST00000459833       32412006
4086         EVA1C ENSG00000166979       ENST00000459833       32412006
4087         EVA1C ENSG00000166979       ENST00000300255       32412006
4088         EVA1C ENSG00000166979       ENST00000300255       32412006
4089         EVA1C ENSG00000166979       ENST00000300255       32412006
4090         EVA1C ENSG00000166979       ENST00000300255       32412006
4091         EVA1C ENSG00000166979       ENST00000300255       32412006
4092         EVA1C ENSG00000166979       ENST00000300255       32412006
4093         EVA1C ENSG00000166979       ENST00000300255       32412006
4094         EVA1C ENSG00000166979       ENST00000300255       32412006
4095         EVA1C ENSG00000166979       ENST00000435323       32412006
4096         EVA1C ENSG00000166979       ENST00000435323       32412006
4097         EVA1C ENSG00000166979       ENST00000435323       32412006
4098         EVA1C ENSG00000166979       ENST00000435323       32412006
4099         EVA1C ENSG00000166979       ENST00000435323       32412006
4100         EVA1C ENSG00000166979       ENST00000435323       32412006
4101         EVA1C ENSG00000166979       ENST00000437338       32412006
4102         EVA1C ENSG00000166979       ENST00000437338       32412006
4103         EVA1C ENSG00000166979       ENST00000437338       32412006
4104         EVA1C ENSG00000166979       ENST00000437338       32412006
4105         EVA1C ENSG00000166979       ENST00000437338       32412006
4106         EVA1C ENSG00000166979       ENST00000437338       32412006
4107         EVA1C ENSG00000166979       ENST00000437338       32412006
4108         EVA1C ENSG00000166979       ENST00000457807       32412006
4109         EVA1C ENSG00000166979       ENST00000457807       32412006
4110         EVA1C ENSG00000166979       ENST00000457807       32412006
4111         EVA1C ENSG00000166979       ENST00000457807       32412006
4112         EVA1C ENSG00000166979       ENST00000457807       32412006
4113         EVA1C ENSG00000166979       ENST00000457807       32412006
4114         EVA1C ENSG00000166979       ENST00000401402       32412006
4115         EVA1C ENSG00000166979       ENST00000401402       32412006
4116         EVA1C ENSG00000166979       ENST00000401402       32412006
4117         EVA1C ENSG00000166979       ENST00000401402       32412006
4118         EVA1C ENSG00000166979       ENST00000401402       32412006
4119         EVA1C ENSG00000166979       ENST00000401402       32412006
4120         EVA1C ENSG00000166979       ENST00000401402       32412006
4121         EVA1C ENSG00000166979       ENST00000382699       32412006
4122         EVA1C ENSG00000166979       ENST00000382699       32412006
4123         EVA1C ENSG00000166979       ENST00000382699       32412006
4124         EVA1C ENSG00000166979       ENST00000382699       32412006
4125         EVA1C ENSG00000166979       ENST00000382699       32412006
4126         EVA1C ENSG00000166979       ENST00000382699       32412006
4127         EVA1C ENSG00000166979       ENST00000382699       32412006
4128         EVA1C ENSG00000166979       ENST00000382699       32412006
4129         EVA1C ENSG00000166979       ENST00000481638       32412006
4130         EVA1C ENSG00000166979       ENST00000481638       32412006
4131         EVA1C ENSG00000166979       ENST00000412833       32412006
4132         EVA1C ENSG00000166979       ENST00000412833       32412006
4133         EVA1C ENSG00000166979       ENST00000412833       32412006
4134         EVA1C ENSG00000166979       ENST00000412833       32412006
4135         EVA1C ENSG00000166979       ENST00000412833       32412006
4136         EVA1C ENSG00000166979       ENST00000464037       32412006
4137         EVA1C ENSG00000166979       ENST00000464037       32412006
4138         EVA1C ENSG00000166979       ENST00000464037       32412006
4139         EVA1C ENSG00000166979       ENST00000464037       32412006
4140         EVA1C ENSG00000166979       ENST00000464037       32412006
4141         EVA1C ENSG00000166979       ENST00000464037       32412006
4142         EVA1C ENSG00000166979       ENST00000464037       32412006
4143         EVA1C ENSG00000166979       ENST00000496615       32412006
4144         EVA1C ENSG00000166979       ENST00000496615       32412006
4145         EVA1C ENSG00000166979       ENST00000496615       32412006
4146         EVA1C ENSG00000166979       ENST00000496615       32412006
4147         EVA1C ENSG00000166979       ENST00000496615       32412006
4148         EVA1C ENSG00000166979       ENST00000485488       32412006
4149         EVA1C ENSG00000166979       ENST00000485488       32412006
4150         EVA1C ENSG00000166979       ENST00000485488       32412006
4151               ENSG00000235888       ENST00000417335       38988707
4152               ENSG00000235888       ENST00000417335       38988707
4153               ENSG00000235888       ENST00000417335       38988707
4154   ANKRD20A18P ENSG00000249493       ENST00000359341       14064325
4155   ANKRD20A18P ENSG00000249493       ENST00000359341       14064325
4156   ANKRD20A18P ENSG00000249493       ENST00000359341       14064325
4157               ENSG00000237202       ENST00000424255       13120244
4158         TIAM1 ENSG00000156299       ENST00000286827       31118416
4159         TIAM1 ENSG00000156299       ENST00000286827       31118416
4160         TIAM1 ENSG00000156299       ENST00000286827       31118416
4161         TIAM1 ENSG00000156299       ENST00000286827       31118416
4162         TIAM1 ENSG00000156299       ENST00000286827       31118416
4163         TIAM1 ENSG00000156299       ENST00000286827       31118416
4164         TIAM1 ENSG00000156299       ENST00000286827       31118416
4165         TIAM1 ENSG00000156299       ENST00000286827       31118416
4166         TIAM1 ENSG00000156299       ENST00000286827       31118416
4167         TIAM1 ENSG00000156299       ENST00000286827       31118416
4168         TIAM1 ENSG00000156299       ENST00000286827       31118416
4169         TIAM1 ENSG00000156299       ENST00000286827       31118416
4170         TIAM1 ENSG00000156299       ENST00000286827       31118416
4171         TIAM1 ENSG00000156299       ENST00000286827       31118416
4172         TIAM1 ENSG00000156299       ENST00000286827       31118416
4173         TIAM1 ENSG00000156299       ENST00000286827       31118416
4174         TIAM1 ENSG00000156299       ENST00000286827       31118416
4175         TIAM1 ENSG00000156299       ENST00000286827       31118416
4176         TIAM1 ENSG00000156299       ENST00000286827       31118416
4177         TIAM1 ENSG00000156299       ENST00000286827       31118416
4178         TIAM1 ENSG00000156299       ENST00000286827       31118416
4179         TIAM1 ENSG00000156299       ENST00000286827       31118416
4180         TIAM1 ENSG00000156299       ENST00000286827       31118416
4181         TIAM1 ENSG00000156299       ENST00000286827       31118416
4182         TIAM1 ENSG00000156299       ENST00000286827       31118416
4183         TIAM1 ENSG00000156299       ENST00000286827       31118416
4184         TIAM1 ENSG00000156299       ENST00000286827       31118416
4185         TIAM1 ENSG00000156299       ENST00000286827       31118416
4186         TIAM1 ENSG00000156299       ENST00000286827       31118416
4187         TIAM1 ENSG00000156299       ENST00000423206       31118416
4188         TIAM1 ENSG00000156299       ENST00000423206       31118416
4189         TIAM1 ENSG00000156299       ENST00000423206       31118416
4190         TIAM1 ENSG00000156299       ENST00000423206       31118416
4191         TIAM1 ENSG00000156299       ENST00000636887       31118416
4192         TIAM1 ENSG00000156299       ENST00000636887       31118416
4193         TIAM1 ENSG00000156299       ENST00000636887       31118416
4194         TIAM1 ENSG00000156299       ENST00000636887       31118416
4195         TIAM1 ENSG00000156299       ENST00000636887       31118416
4196         TIAM1 ENSG00000156299       ENST00000636887       31118416
4197         TIAM1 ENSG00000156299       ENST00000636887       31118416
4198         TIAM1 ENSG00000156299       ENST00000636887       31118416
4199         TIAM1 ENSG00000156299       ENST00000636887       31118416
4200         TIAM1 ENSG00000156299       ENST00000636887       31118416
4201         TIAM1 ENSG00000156299       ENST00000636887       31118416
4202         TIAM1 ENSG00000156299       ENST00000636887       31118416
4203         TIAM1 ENSG00000156299       ENST00000636887       31118416
4204         TIAM1 ENSG00000156299       ENST00000491927       31118416
4205         TIAM1 ENSG00000156299       ENST00000491927       31118416
4206         TIAM1 ENSG00000156299       ENST00000491927       31118416
4207         TIAM1 ENSG00000156299       ENST00000469412       31118416
4208         TIAM1 ENSG00000156299       ENST00000469412       31118416
4209         TIAM1 ENSG00000156299       ENST00000469412       31118416
4210         TIAM1 ENSG00000156299       ENST00000469412       31118416
4211         TIAM1 ENSG00000156299       ENST00000469412       31118416
4212         TIAM1 ENSG00000156299       ENST00000469412       31118416
4213         TIAM1 ENSG00000156299       ENST00000469412       31118416
4214         TIAM1 ENSG00000156299       ENST00000469412       31118416
4215         TIAM1 ENSG00000156299       ENST00000469412       31118416
4216         TIAM1 ENSG00000156299       ENST00000455508       31118416
4217         TIAM1 ENSG00000156299       ENST00000455508       31118416
4218         TIAM1 ENSG00000156299       ENST00000455508       31118416
4219         TIAM1 ENSG00000156299       ENST00000455508       31118416
4220         TIAM1 ENSG00000156299       ENST00000541036       31118416
4221         TIAM1 ENSG00000156299       ENST00000541036       31118416
4222         TIAM1 ENSG00000156299       ENST00000541036       31118416
4223         TIAM1 ENSG00000156299       ENST00000541036       31118416
4224         TIAM1 ENSG00000156299       ENST00000541036       31118416
4225         TIAM1 ENSG00000156299       ENST00000541036       31118416
4226         TIAM1 ENSG00000156299       ENST00000541036       31118416
4227         TIAM1 ENSG00000156299       ENST00000541036       31118416
4228         TIAM1 ENSG00000156299       ENST00000541036       31118416
4229         TIAM1 ENSG00000156299       ENST00000541036       31118416
4230         TIAM1 ENSG00000156299       ENST00000541036       31118416
4231         TIAM1 ENSG00000156299       ENST00000541036       31118416
4232         TIAM1 ENSG00000156299       ENST00000541036       31118416
4233         TIAM1 ENSG00000156299       ENST00000541036       31118416
4234         TIAM1 ENSG00000156299       ENST00000541036       31118416
4235         TIAM1 ENSG00000156299       ENST00000541036       31118416
4236         TIAM1 ENSG00000156299       ENST00000541036       31118416
4237         TIAM1 ENSG00000156299       ENST00000541036       31118416
4238         TIAM1 ENSG00000156299       ENST00000541036       31118416
4239         TIAM1 ENSG00000156299       ENST00000541036       31118416
4240         TIAM1 ENSG00000156299       ENST00000541036       31118416
4241         TIAM1 ENSG00000156299       ENST00000541036       31118416
4242         TIAM1 ENSG00000156299       ENST00000541036       31118416
4243         TIAM1 ENSG00000156299       ENST00000541036       31118416
4244         TIAM1 ENSG00000156299       ENST00000541036       31118416
4245         TIAM1 ENSG00000156299       ENST00000541036       31118416
4246         TIAM1 ENSG00000156299       ENST00000541036       31118416
4247          JAM2 ENSG00000154721       ENST00000400532       25639272
4248          JAM2 ENSG00000154721       ENST00000400532       25639272
4249          JAM2 ENSG00000154721       ENST00000400532       25639272
4250          JAM2 ENSG00000154721       ENST00000400532       25639272
4251          JAM2 ENSG00000154721       ENST00000400532       25639272
4252          JAM2 ENSG00000154721       ENST00000400532       25639272
4253          JAM2 ENSG00000154721       ENST00000400532       25639272
4254          JAM2 ENSG00000154721       ENST00000400532       25639272
4255          JAM2 ENSG00000154721       ENST00000400532       25639272
4256          JAM2 ENSG00000154721       ENST00000400532       25639272
4257          JAM2 ENSG00000154721       ENST00000480456       25639272
4258          JAM2 ENSG00000154721       ENST00000480456       25639272
4259          JAM2 ENSG00000154721       ENST00000480456       25639272
4260          JAM2 ENSG00000154721       ENST00000480456       25639272
4261          JAM2 ENSG00000154721       ENST00000480456       25639272
4262          JAM2 ENSG00000154721       ENST00000480456       25639272
4263          JAM2 ENSG00000154721       ENST00000480456       25639272
4264          JAM2 ENSG00000154721       ENST00000480456       25639272
4265          JAM2 ENSG00000154721       ENST00000480456       25639272
4266          JAM2 ENSG00000154721       ENST00000480456       25639272
4267          JAM2 ENSG00000154721       ENST00000460679       25639272
4268          JAM2 ENSG00000154721       ENST00000460679       25639272
4269          JAM2 ENSG00000154721       ENST00000460679       25639272
4270          JAM2 ENSG00000154721       ENST00000460679       25639272
4271          JAM2 ENSG00000154721       ENST00000460679       25639272
4272          JAM2 ENSG00000154721       ENST00000460679       25639272
4273          JAM2 ENSG00000154721       ENST00000460679       25639272
4274          JAM2 ENSG00000154721       ENST00000460679       25639272
4275          JAM2 ENSG00000154721       ENST00000460679       25639272
4276          JAM2 ENSG00000154721       ENST00000492962       25639272
4277          JAM2 ENSG00000154721       ENST00000492962       25639272
4278          JAM2 ENSG00000154721       ENST00000492962       25639272
4279          JAM2 ENSG00000154721       ENST00000477351       25639272
4280          JAM2 ENSG00000154721       ENST00000477351       25639272
4281          JAM2 ENSG00000154721       ENST00000477351       25639272
4282          JAM2 ENSG00000154721       ENST00000471689       25639272
4283          JAM2 ENSG00000154721       ENST00000471689       25639272
4284          JAM2 ENSG00000154721       ENST00000312957       25639272
4285          JAM2 ENSG00000154721       ENST00000312957       25639272
4286          JAM2 ENSG00000154721       ENST00000312957       25639272
4287          JAM2 ENSG00000154721       ENST00000312957       25639272
4288          JAM2 ENSG00000154721       ENST00000312957       25639272
4289          JAM2 ENSG00000154721       ENST00000312957       25639272
4290          JAM2 ENSG00000154721       ENST00000312957       25639272
4291          JAM2 ENSG00000154721       ENST00000312957       25639272
4292          JAM2 ENSG00000154721       ENST00000312957       25639272
4293     KRTAP19-5 ENSG00000186977       ENST00000334151       30501657
4294      TRPM2-AS ENSG00000230061       ENST00000423310       44414588
4295      TRPM2-AS ENSG00000230061       ENST00000423310       44414588
4296      TRPM2-AS ENSG00000230061       ENST00000423310       44414588
4297      TRPM2-AS ENSG00000230061       ENST00000456880       44414588
4298      TRPM2-AS ENSG00000230061       ENST00000456880       44414588
4299         TRPM2 ENSG00000142185       ENST00000300482       44350163
4300         TRPM2 ENSG00000142185       ENST00000300482       44350163
4301         TRPM2 ENSG00000142185       ENST00000300482       44350163
4302         TRPM2 ENSG00000142185       ENST00000300482       44350163
4303         TRPM2 ENSG00000142185       ENST00000300482       44350163
4304         TRPM2 ENSG00000142185       ENST00000300482       44350163
4305         TRPM2 ENSG00000142185       ENST00000300482       44350163
4306         TRPM2 ENSG00000142185       ENST00000300482       44350163
4307         TRPM2 ENSG00000142185       ENST00000300482       44350163
4308         TRPM2 ENSG00000142185       ENST00000300482       44350163
4309         TRPM2 ENSG00000142185       ENST00000300482       44350163
4310         TRPM2 ENSG00000142185       ENST00000300482       44350163
4311         TRPM2 ENSG00000142185       ENST00000300482       44350163
4312         TRPM2 ENSG00000142185       ENST00000300482       44350163
4313         TRPM2 ENSG00000142185       ENST00000300482       44350163
4314         TRPM2 ENSG00000142185       ENST00000300482       44350163
4315         TRPM2 ENSG00000142185       ENST00000300482       44350163
4316         TRPM2 ENSG00000142185       ENST00000300482       44350163
4317         TRPM2 ENSG00000142185       ENST00000300482       44350163
4318         TRPM2 ENSG00000142185       ENST00000300482       44350163
4319         TRPM2 ENSG00000142185       ENST00000300482       44350163
4320         TRPM2 ENSG00000142185       ENST00000300482       44350163
4321         TRPM2 ENSG00000142185       ENST00000300482       44350163
4322         TRPM2 ENSG00000142185       ENST00000300482       44350163
4323         TRPM2 ENSG00000142185       ENST00000300482       44350163
4324         TRPM2 ENSG00000142185       ENST00000300482       44350163
4325         TRPM2 ENSG00000142185       ENST00000300482       44350163
4326         TRPM2 ENSG00000142185       ENST00000300482       44350163
4327         TRPM2 ENSG00000142185       ENST00000300482       44350163
4328         TRPM2 ENSG00000142185       ENST00000300482       44350163
4329         TRPM2 ENSG00000142185       ENST00000300482       44350163
4330         TRPM2 ENSG00000142185       ENST00000300482       44350163
4331         TRPM2 ENSG00000142185       ENST00000300482       44350163
4332         TRPM2 ENSG00000142185       ENST00000431901       44350163
4333         TRPM2 ENSG00000142185       ENST00000431901       44350163
4334         TRPM2 ENSG00000142185       ENST00000431901       44350163
4335         TRPM2 ENSG00000142185       ENST00000431901       44350163
4336         TRPM2 ENSG00000142185       ENST00000431901       44350163
4337         TRPM2 ENSG00000142185       ENST00000397928       44350163
4338         TRPM2 ENSG00000142185       ENST00000397928       44350163
4339         TRPM2 ENSG00000142185       ENST00000397928       44350163
4340         TRPM2 ENSG00000142185       ENST00000397928       44350163
4341         TRPM2 ENSG00000142185       ENST00000397928       44350163
4342         TRPM2 ENSG00000142185       ENST00000397928       44350163
4343         TRPM2 ENSG00000142185       ENST00000397928       44350163
4344         TRPM2 ENSG00000142185       ENST00000397928       44350163
4345         TRPM2 ENSG00000142185       ENST00000397928       44350163
4346         TRPM2 ENSG00000142185       ENST00000397928       44350163
4347         TRPM2 ENSG00000142185       ENST00000397928       44350163
4348         TRPM2 ENSG00000142185       ENST00000397928       44350163
4349         TRPM2 ENSG00000142185       ENST00000397928       44350163
4350         TRPM2 ENSG00000142185       ENST00000397928       44350163
4351         TRPM2 ENSG00000142185       ENST00000397928       44350163
4352         TRPM2 ENSG00000142185       ENST00000397928       44350163
4353         TRPM2 ENSG00000142185       ENST00000397928       44350163
4354         TRPM2 ENSG00000142185       ENST00000397928       44350163
4355         TRPM2 ENSG00000142185       ENST00000397928       44350163
4356         TRPM2 ENSG00000142185       ENST00000397928       44350163
4357         TRPM2 ENSG00000142185       ENST00000397928       44350163
4358         TRPM2 ENSG00000142185       ENST00000397928       44350163
4359         TRPM2 ENSG00000142185       ENST00000397928       44350163
4360         TRPM2 ENSG00000142185       ENST00000397928       44350163
4361         TRPM2 ENSG00000142185       ENST00000397928       44350163
4362         TRPM2 ENSG00000142185       ENST00000397928       44350163
4363         TRPM2 ENSG00000142185       ENST00000397928       44350163
4364         TRPM2 ENSG00000142185       ENST00000397928       44350163
4365         TRPM2 ENSG00000142185       ENST00000397928       44350163
4366         TRPM2 ENSG00000142185       ENST00000397928       44350163
4367         TRPM2 ENSG00000142185       ENST00000397928       44350163
4368         TRPM2 ENSG00000142185       ENST00000397928       44350163
4369         TRPM2 ENSG00000142185       ENST00000397932       44350163
4370         TRPM2 ENSG00000142185       ENST00000397932       44350163
4371         TRPM2 ENSG00000142185       ENST00000397932       44350163
4372         TRPM2 ENSG00000142185       ENST00000397932       44350163
4373         TRPM2 ENSG00000142185       ENST00000397932       44350163
4374         TRPM2 ENSG00000142185       ENST00000397932       44350163
4375         TRPM2 ENSG00000142185       ENST00000397932       44350163
4376         TRPM2 ENSG00000142185       ENST00000397932       44350163
4377         TRPM2 ENSG00000142185       ENST00000397932       44350163
4378         TRPM2 ENSG00000142185       ENST00000397932       44350163
4379         TRPM2 ENSG00000142185       ENST00000397932       44350163
4380         TRPM2 ENSG00000142185       ENST00000397932       44350163
4381         TRPM2 ENSG00000142185       ENST00000397932       44350163
4382         TRPM2 ENSG00000142185       ENST00000397932       44350163
4383         TRPM2 ENSG00000142185       ENST00000397932       44350163
4384         TRPM2 ENSG00000142185       ENST00000397932       44350163
4385         TRPM2 ENSG00000142185       ENST00000397932       44350163
4386         TRPM2 ENSG00000142185       ENST00000397932       44350163
4387         TRPM2 ENSG00000142185       ENST00000397932       44350163
4388         TRPM2 ENSG00000142185       ENST00000397932       44350163
4389         TRPM2 ENSG00000142185       ENST00000397932       44350163
4390         TRPM2 ENSG00000142185       ENST00000397932       44350163
4391         TRPM2 ENSG00000142185       ENST00000397932       44350163
4392         TRPM2 ENSG00000142185       ENST00000397932       44350163
4393         TRPM2 ENSG00000142185       ENST00000397932       44350163
4394         TRPM2 ENSG00000142185       ENST00000397932       44350163
4395         TRPM2 ENSG00000142185       ENST00000397932       44350163
4396         TRPM2 ENSG00000142185       ENST00000397932       44350163
4397         TRPM2 ENSG00000142185       ENST00000397932       44350163
4398         TRPM2 ENSG00000142185       ENST00000397932       44350163
4399         TRPM2 ENSG00000142185       ENST00000397932       44350163
4400         TRPM2 ENSG00000142185       ENST00000397932       44350163
4401         TRPM2 ENSG00000142185       ENST00000397932       44350163
4402         TRPM2 ENSG00000142185       ENST00000300481       44350163
4403         TRPM2 ENSG00000142185       ENST00000300481       44350163
4404         TRPM2 ENSG00000142185       ENST00000300481       44350163
4405         TRPM2 ENSG00000142185       ENST00000300481       44350163
4406         TRPM2 ENSG00000142185       ENST00000300481       44350163
4407         TRPM2 ENSG00000142185       ENST00000300481       44350163
4408         TRPM2 ENSG00000142185       ENST00000300481       44350163
4409         TRPM2 ENSG00000142185       ENST00000300481       44350163
4410         TRPM2 ENSG00000142185       ENST00000300481       44350163
4411         TRPM2 ENSG00000142185       ENST00000300481       44350163
4412         TRPM2 ENSG00000142185       ENST00000300481       44350163
4413         TRPM2 ENSG00000142185       ENST00000300481       44350163
4414         TRPM2 ENSG00000142185       ENST00000300481       44350163
4415         TRPM2 ENSG00000142185       ENST00000300481       44350163
4416         TRPM2 ENSG00000142185       ENST00000300481       44350163
4417         TRPM2 ENSG00000142185       ENST00000300481       44350163
4418         TRPM2 ENSG00000142185       ENST00000300481       44350163
4419         TRPM2 ENSG00000142185       ENST00000300481       44350163
4420         TRPM2 ENSG00000142185       ENST00000300481       44350163
4421         TRPM2 ENSG00000142185       ENST00000300481       44350163
4422         TRPM2 ENSG00000142185       ENST00000300481       44350163
4423         TRPM2 ENSG00000142185       ENST00000300481       44350163
4424         TRPM2 ENSG00000142185       ENST00000300481       44350163
4425         TRPM2 ENSG00000142185       ENST00000300481       44350163
4426         TRPM2 ENSG00000142185       ENST00000300481       44350163
4427         TRPM2 ENSG00000142185       ENST00000300481       44350163
4428         TRPM2 ENSG00000142185       ENST00000300481       44350163
4429         TRPM2 ENSG00000142185       ENST00000300481       44350163
4430         TRPM2 ENSG00000142185       ENST00000300481       44350163
4431         TRPM2 ENSG00000142185       ENST00000300481       44350163
4432         TRPM2 ENSG00000142185       ENST00000300481       44350163
4433         TRPM2 ENSG00000142185       ENST00000300481       44350163
4434         TRPM2 ENSG00000142185       ENST00000498430       44350163
4435         TRPM2 ENSG00000142185       ENST00000498430       44350163
4436         TRPM2 ENSG00000142185       ENST00000498430       44350163
4437         TRPM2 ENSG00000142185       ENST00000498430       44350163
4438         TRPM2 ENSG00000142185       ENST00000498430       44350163
4439         TRPM2 ENSG00000142185       ENST00000498430       44350163
4440         TRPM2 ENSG00000142185       ENST00000498430       44350163
4441         TRPM2 ENSG00000142185       ENST00000498430       44350163
4442         TRPM2 ENSG00000142185       ENST00000498430       44350163
4443         TRPM2 ENSG00000142185       ENST00000498430       44350163
4444         TRPM2 ENSG00000142185       ENST00000498430       44350163
4445         TRPM2 ENSG00000142185       ENST00000498430       44350163
4446         TRPM2 ENSG00000142185       ENST00000498430       44350163
4447         TRPM2 ENSG00000142185       ENST00000498430       44350163
4448         TRPM2 ENSG00000142185       ENST00000498430       44350163
4449         TRPM2 ENSG00000142185       ENST00000498430       44350163
4450         TRPM2 ENSG00000142185       ENST00000498430       44350163
4451         TRPM2 ENSG00000142185       ENST00000498430       44350163
4452         TRPM2 ENSG00000142185       ENST00000498430       44350163
4453         TRPM2 ENSG00000142185       ENST00000498430       44350163
4454         TRPM2 ENSG00000142185       ENST00000498430       44350163
4455         TRPM2 ENSG00000142185       ENST00000498430       44350163
4456         TRPM2 ENSG00000142185       ENST00000498430       44350163
4457         TRPM2 ENSG00000142185       ENST00000498430       44350163
4458         TRPM2 ENSG00000142185       ENST00000498430       44350163
4459         TRPM2 ENSG00000142185       ENST00000498430       44350163
4460         TRPM2 ENSG00000142185       ENST00000498430       44350163
4461         TRPM2 ENSG00000142185       ENST00000498430       44350163
4462         TRPM2 ENSG00000142185       ENST00000490982       44350163
4463         TRPM2 ENSG00000142185       ENST00000490982       44350163
4464         TRPM2 ENSG00000142185       ENST00000490982       44350163
4465         TRPM2 ENSG00000142185       ENST00000490982       44350163
4466         TRPM2 ENSG00000142185       ENST00000490982       44350163
4467         TRPM2 ENSG00000142185       ENST00000490982       44350163
4468         TRPM2 ENSG00000142185       ENST00000490982       44350163
4469         TRPM2 ENSG00000142185       ENST00000621064       44350163
4470         TRPM2 ENSG00000142185       ENST00000621064       44350163
4471         TRPM2 ENSG00000142185       ENST00000621064       44350163
4472         TRPM2 ENSG00000142185       ENST00000621064       44350163
4473         TRPM2 ENSG00000142185       ENST00000621064       44350163
4474         TRPM2 ENSG00000142185       ENST00000621064       44350163
4475         TRPM2 ENSG00000142185       ENST00000621064       44350163
4476         TRPM2 ENSG00000142185       ENST00000621064       44350163
4477         TRPM2 ENSG00000142185       ENST00000621064       44350163
4478         TRPM2 ENSG00000142185       ENST00000621064       44350163
4479               ENSG00000228404       ENST00000415026       46185079
4480               ENSG00000228404       ENST00000415026       46185079
4481     DSCAM-IT1 ENSG00000233756       ENST00000440363       40615378
4482     DSCAM-IT1 ENSG00000233756       ENST00000440363       40615378
4483     DSCAM-IT1 ENSG00000233756       ENST00000440363       40615378
4484     DSCAM-IT1 ENSG00000233756       ENST00000440363       40615378
4485     DSCAM-IT1 ENSG00000233756       ENST00000441910       40615378
4486     DSCAM-IT1 ENSG00000233756       ENST00000441910       40615378
4487     DSCAM-IT1 ENSG00000233756       ENST00000441910       40615378
4488     DSCAM-IT1 ENSG00000233756       ENST00000441910       40615378
4489        SH3BGR ENSG00000185437       ENST00000380637       39445855
4490        SH3BGR ENSG00000185437       ENST00000380637       39445855
4491        SH3BGR ENSG00000185437       ENST00000380637       39445855
4492        SH3BGR ENSG00000185437       ENST00000380637       39445855
4493        SH3BGR ENSG00000185437       ENST00000380637       39445855
4494        SH3BGR ENSG00000185437       ENST00000380637       39445855
4495        SH3BGR ENSG00000185437       ENST00000380637       39445855
4496        SH3BGR ENSG00000185437       ENST00000380634       39445855
4497        SH3BGR ENSG00000185437       ENST00000380634       39445855
4498        SH3BGR ENSG00000185437       ENST00000380634       39445855
4499        SH3BGR ENSG00000185437       ENST00000380634       39445855
4500        SH3BGR ENSG00000185437       ENST00000380634       39445855
4501        SH3BGR ENSG00000185437       ENST00000380634       39445855
4502        SH3BGR ENSG00000185437       ENST00000380634       39445855
4503        SH3BGR ENSG00000185437       ENST00000458295       39445855
4504        SH3BGR ENSG00000185437       ENST00000458295       39445855
4505        SH3BGR ENSG00000185437       ENST00000458295       39445855
4506        SH3BGR ENSG00000185437       ENST00000458295       39445855
4507        SH3BGR ENSG00000185437       ENST00000458295       39445855
4508        SH3BGR ENSG00000185437       ENST00000458295       39445855
4509        SH3BGR ENSG00000185437       ENST00000440288       39445855
4510        SH3BGR ENSG00000185437       ENST00000440288       39445855
4511        SH3BGR ENSG00000185437       ENST00000440288       39445855
4512        SH3BGR ENSG00000185437       ENST00000440288       39445855
4513        SH3BGR ENSG00000185437       ENST00000440288       39445855
4514        SH3BGR ENSG00000185437       ENST00000440288       39445855
4515        SH3BGR ENSG00000185437       ENST00000380631       39445855
4516        SH3BGR ENSG00000185437       ENST00000380631       39445855
4517        SH3BGR ENSG00000185437       ENST00000380631       39445855
4518        SH3BGR ENSG00000185437       ENST00000380631       39445855
4519        SH3BGR ENSG00000185437       ENST00000380631       39445855
4520        SH3BGR ENSG00000185437       ENST00000380631       39445855
4521        SH3BGR ENSG00000185437       ENST00000380631       39445855
4522        SH3BGR ENSG00000185437       ENST00000333634       39445855
4523        SH3BGR ENSG00000185437       ENST00000333634       39445855
4524        SH3BGR ENSG00000185437       ENST00000333634       39445855
4525        SH3BGR ENSG00000185437       ENST00000333634       39445855
4526        SH3BGR ENSG00000185437       ENST00000333634       39445855
4527        SH3BGR ENSG00000185437       ENST00000333634       39445855
4528        SH3BGR ENSG00000185437       ENST00000333634       39445855
4529        SH3BGR ENSG00000185437       ENST00000452550       39445855
4530        SH3BGR ENSG00000185437       ENST00000452550       39445855
4531        SH3BGR ENSG00000185437       ENST00000452550       39445855
4532        SH3BGR ENSG00000185437       ENST00000452550       39445855
4533        SH3BGR ENSG00000185437       ENST00000452550       39445855
4534        SH3BGR ENSG00000185437       ENST00000452550       39445855
4535        SH3BGR ENSG00000185437       ENST00000423596       39445855
4536        SH3BGR ENSG00000185437       ENST00000423596       39445855
4537        SH3BGR ENSG00000185437       ENST00000423596       39445855
4538        SH3BGR ENSG00000185437       ENST00000423596       39445855
4539        SH3BGR ENSG00000185437       ENST00000447939       39445855
4540        SH3BGR ENSG00000185437       ENST00000447939       39445855
4541     GRIK1-AS1 ENSG00000174680       ENST00000455392       29748175
4542     GRIK1-AS1 ENSG00000174680       ENST00000455392       29748175
4543     GRIK1-AS1 ENSG00000174680       ENST00000455392       29748175
4544     GRIK1-AS1 ENSG00000174680       ENST00000455392       29748175
4545     GRIK1-AS1 ENSG00000174680       ENST00000455392       29748175
4546     GRIK1-AS1 ENSG00000174680       ENST00000309331       29748175
4547     GRIK1-AS1 ENSG00000174680       ENST00000309331       29748175
4548     GRIK1-AS1 ENSG00000174680       ENST00000309331       29748175
4549     GRIK1-AS1 ENSG00000174680       ENST00000423221       29748175
4550     GRIK1-AS1 ENSG00000174680       ENST00000423221       29748175
4551     GRIK1-AS1 ENSG00000174680       ENST00000412579       29748175
4552     GRIK1-AS1 ENSG00000174680       ENST00000412579       29748175
4553     GRIK1-AS1 ENSG00000174680       ENST00000412579       29748175
4554     GRIK1-AS1 ENSG00000174680       ENST00000412579       29748175
4555     GRIK1-AS1 ENSG00000174680       ENST00000413131       29748175
4556     GRIK1-AS1 ENSG00000174680       ENST00000413131       29748175
4557        COL6A2 ENSG00000142173       ENST00000300527       46098097
4558        COL6A2 ENSG00000142173       ENST00000300527       46098097
4559        COL6A2 ENSG00000142173       ENST00000300527       46098097
4560        COL6A2 ENSG00000142173       ENST00000300527       46098097
4561        COL6A2 ENSG00000142173       ENST00000300527       46098097
4562        COL6A2 ENSG00000142173       ENST00000300527       46098097
4563        COL6A2 ENSG00000142173       ENST00000300527       46098097
4564        COL6A2 ENSG00000142173       ENST00000300527       46098097
4565        COL6A2 ENSG00000142173       ENST00000300527       46098097
4566        COL6A2 ENSG00000142173       ENST00000300527       46098097
4567        COL6A2 ENSG00000142173       ENST00000300527       46098097
4568        COL6A2 ENSG00000142173       ENST00000300527       46098097
4569        COL6A2 ENSG00000142173       ENST00000300527       46098097
4570        COL6A2 ENSG00000142173       ENST00000300527       46098097
4571        COL6A2 ENSG00000142173       ENST00000300527       46098097
4572        COL6A2 ENSG00000142173       ENST00000300527       46098097
4573        COL6A2 ENSG00000142173       ENST00000300527       46098097
4574        COL6A2 ENSG00000142173       ENST00000300527       46098097
4575        COL6A2 ENSG00000142173       ENST00000300527       46098097
4576        COL6A2 ENSG00000142173       ENST00000300527       46098097
4577        COL6A2 ENSG00000142173       ENST00000300527       46098097
4578        COL6A2 ENSG00000142173       ENST00000300527       46098097
4579        COL6A2 ENSG00000142173       ENST00000300527       46098097
4580        COL6A2 ENSG00000142173       ENST00000300527       46098097
4581        COL6A2 ENSG00000142173       ENST00000300527       46098097
4582        COL6A2 ENSG00000142173       ENST00000300527       46098097
4583        COL6A2 ENSG00000142173       ENST00000300527       46098097
4584        COL6A2 ENSG00000142173       ENST00000300527       46098097
4585        COL6A2 ENSG00000142173       ENST00000436769       46098097
4586        COL6A2 ENSG00000142173       ENST00000436769       46098097
4587        COL6A2 ENSG00000142173       ENST00000436769       46098097
4588        COL6A2 ENSG00000142173       ENST00000409416       46098097
4589        COL6A2 ENSG00000142173       ENST00000409416       46098097
4590        COL6A2 ENSG00000142173       ENST00000409416       46098097
4591        COL6A2 ENSG00000142173       ENST00000409416       46098097
4592        COL6A2 ENSG00000142173       ENST00000409416       46098097
4593        COL6A2 ENSG00000142173       ENST00000409416       46098097
4594        COL6A2 ENSG00000142173       ENST00000409416       46098097
4595        COL6A2 ENSG00000142173       ENST00000409416       46098097
4596        COL6A2 ENSG00000142173       ENST00000409416       46098097
4597        COL6A2 ENSG00000142173       ENST00000409416       46098097
4598        COL6A2 ENSG00000142173       ENST00000409416       46098097
4599        COL6A2 ENSG00000142173       ENST00000409416       46098097
4600        COL6A2 ENSG00000142173       ENST00000409416       46098097
4601        COL6A2 ENSG00000142173       ENST00000409416       46098097
4602        COL6A2 ENSG00000142173       ENST00000409416       46098097
4603        COL6A2 ENSG00000142173       ENST00000409416       46098097
4604        COL6A2 ENSG00000142173       ENST00000409416       46098097
4605        COL6A2 ENSG00000142173       ENST00000409416       46098097
4606        COL6A2 ENSG00000142173       ENST00000409416       46098097
4607        COL6A2 ENSG00000142173       ENST00000409416       46098097
4608        COL6A2 ENSG00000142173       ENST00000409416       46098097
4609        COL6A2 ENSG00000142173       ENST00000409416       46098097
4610        COL6A2 ENSG00000142173       ENST00000409416       46098097
4611        COL6A2 ENSG00000142173       ENST00000409416       46098097
4612        COL6A2 ENSG00000142173       ENST00000409416       46098097
4613        COL6A2 ENSG00000142173       ENST00000409416       46098097
4614        COL6A2 ENSG00000142173       ENST00000409416       46098097
4615        COL6A2 ENSG00000142173       ENST00000397763       46098097
4616        COL6A2 ENSG00000142173       ENST00000397763       46098097
4617        COL6A2 ENSG00000142173       ENST00000397763       46098097
4618        COL6A2 ENSG00000142173       ENST00000397763       46098097
4619        COL6A2 ENSG00000142173       ENST00000397763       46098097
4620        COL6A2 ENSG00000142173       ENST00000397763       46098097
4621        COL6A2 ENSG00000142173       ENST00000397763       46098097
4622        COL6A2 ENSG00000142173       ENST00000397763       46098097
4623        COL6A2 ENSG00000142173       ENST00000397763       46098097
4624        COL6A2 ENSG00000142173       ENST00000397763       46098097
4625        COL6A2 ENSG00000142173       ENST00000397763       46098097
4626        COL6A2 ENSG00000142173       ENST00000397763       46098097
4627        COL6A2 ENSG00000142173       ENST00000397763       46098097
4628        COL6A2 ENSG00000142173       ENST00000397763       46098097
4629        COL6A2 ENSG00000142173       ENST00000397763       46098097
4630        COL6A2 ENSG00000142173       ENST00000397763       46098097
4631        COL6A2 ENSG00000142173       ENST00000397763       46098097
4632        COL6A2 ENSG00000142173       ENST00000397763       46098097
4633        COL6A2 ENSG00000142173       ENST00000397763       46098097
4634        COL6A2 ENSG00000142173       ENST00000397763       46098097
4635        COL6A2 ENSG00000142173       ENST00000397763       46098097
4636        COL6A2 ENSG00000142173       ENST00000397763       46098097
4637        COL6A2 ENSG00000142173       ENST00000397763       46098097
4638        COL6A2 ENSG00000142173       ENST00000397763       46098097
4639        COL6A2 ENSG00000142173       ENST00000397763       46098097
4640        COL6A2 ENSG00000142173       ENST00000397763       46098097
4641        COL6A2 ENSG00000142173       ENST00000397763       46098097
4642        COL6A2 ENSG00000142173       ENST00000460886       46098097
4643        COL6A2 ENSG00000142173       ENST00000460886       46098097
4644        COL6A2 ENSG00000142173       ENST00000485591       46098097
4645        COL6A2 ENSG00000142173       ENST00000485591       46098097
4646        COL6A2 ENSG00000142173       ENST00000485591       46098097
4647        COL6A2 ENSG00000142173       ENST00000485591       46098097
4648        COL6A2 ENSG00000142173       ENST00000485591       46098097
4649        COL6A2 ENSG00000142173       ENST00000485591       46098097
4650        COL6A2 ENSG00000142173       ENST00000485591       46098097
4651        COL6A2 ENSG00000142173       ENST00000413758       46098097
4652        COL6A2 ENSG00000142173       ENST00000413758       46098097
4653        COL6A2 ENSG00000142173       ENST00000413758       46098097
4654        COL6A2 ENSG00000142173       ENST00000413758       46098097
4655        COL6A2 ENSG00000142173       ENST00000413758       46098097
4656        COL6A2 ENSG00000142173       ENST00000413758       46098097
4657        COL6A2 ENSG00000142173       ENST00000413758       46098097
4658        COL6A2 ENSG00000142173       ENST00000413758       46098097
4659        COL6A2 ENSG00000142173       ENST00000413758       46098097
4660        COL6A2 ENSG00000142173       ENST00000413758       46098097
4661        COL6A2 ENSG00000142173       ENST00000413758       46098097
4662        COL6A2 ENSG00000142173       ENST00000310645       46098097
4663        COL6A2 ENSG00000142173       ENST00000310645       46098097
4664        COL6A2 ENSG00000142173       ENST00000310645       46098097
4665        COL6A2 ENSG00000142173       ENST00000310645       46098097
4666        COL6A2 ENSG00000142173       ENST00000310645       46098097
4667        COL6A2 ENSG00000142173       ENST00000310645       46098097
4668        COL6A2 ENSG00000142173       ENST00000310645       46098097
4669        COL6A2 ENSG00000142173       ENST00000310645       46098097
4670        COL6A2 ENSG00000142173       ENST00000310645       46098097
4671        COL6A2 ENSG00000142173       ENST00000310645       46098097
4672        COL6A2 ENSG00000142173       ENST00000310645       46098097
4673        COL6A2 ENSG00000142173       ENST00000310645       46098097
4674        COL6A2 ENSG00000142173       ENST00000310645       46098097
4675        COL6A2 ENSG00000142173       ENST00000310645       46098097
4676        COL6A2 ENSG00000142173       ENST00000310645       46098097
4677        COL6A2 ENSG00000142173       ENST00000310645       46098097
4678        COL6A2 ENSG00000142173       ENST00000310645       46098097
4679        COL6A2 ENSG00000142173       ENST00000310645       46098097
4680        COL6A2 ENSG00000142173       ENST00000310645       46098097
4681        COL6A2 ENSG00000142173       ENST00000310645       46098097
4682        COL6A2 ENSG00000142173       ENST00000310645       46098097
4683        COL6A2 ENSG00000142173       ENST00000310645       46098097
4684        COL6A2 ENSG00000142173       ENST00000310645       46098097
4685        COL6A2 ENSG00000142173       ENST00000310645       46098097
4686        COL6A2 ENSG00000142173       ENST00000310645       46098097
4687        COL6A2 ENSG00000142173       ENST00000310645       46098097
4688        COL6A2 ENSG00000142173       ENST00000310645       46098097
4689        COL6A2 ENSG00000142173       ENST00000310645       46098097
4690               ENSG00000249209       ENST00000429238       33584687
4691               ENSG00000249209       ENST00000429238       33584687
4692               ENSG00000249209       ENST00000429238       33584687
4693               ENSG00000249209       ENST00000429238       33584687
4694               ENSG00000249209       ENST00000429238       33584687
4695               ENSG00000249209       ENST00000429238       33584687
4696               ENSG00000249209       ENST00000429238       33584687
4697               ENSG00000249209       ENST00000429238       33584687
4698       C21orf2 ENSG00000160226       ENST00000397956       44328944
4699       C21orf2 ENSG00000160226       ENST00000397956       44328944
4700       C21orf2 ENSG00000160226       ENST00000397956       44328944
4701       C21orf2 ENSG00000160226       ENST00000397956       44328944
4702       C21orf2 ENSG00000160226       ENST00000397956       44328944
4703       C21orf2 ENSG00000160226       ENST00000397956       44328944
4704       C21orf2 ENSG00000160226       ENST00000397956       44328944
4705       C21orf2 ENSG00000160226       ENST00000496321       44328944
4706       C21orf2 ENSG00000160226       ENST00000496321       44328944
4707       C21orf2 ENSG00000160226       ENST00000496321       44328944
4708       C21orf2 ENSG00000160226       ENST00000496321       44328944
4709       C21orf2 ENSG00000160226       ENST00000496321       44328944
4710       C21orf2 ENSG00000160226       ENST00000496321       44328944
4711       C21orf2 ENSG00000160226       ENST00000496321       44328944
4712       C21orf2 ENSG00000160226       ENST00000496321       44328944
4713       C21orf2 ENSG00000160226       ENST00000470196       44328944
4714       C21orf2 ENSG00000160226       ENST00000470196       44328944
4715       C21orf2 ENSG00000160226       ENST00000470196       44328944
4716       C21orf2 ENSG00000160226       ENST00000478674       44328944
4717       C21orf2 ENSG00000160226       ENST00000478674       44328944
4718       C21orf2 ENSG00000160226       ENST00000325223       44328944
4719       C21orf2 ENSG00000160226       ENST00000325223       44328944
4720       C21orf2 ENSG00000160226       ENST00000325223       44328944
4721       C21orf2 ENSG00000160226       ENST00000325223       44328944
4722       C21orf2 ENSG00000160226       ENST00000325223       44328944
4723       C21orf2 ENSG00000160226       ENST00000325223       44328944
4724       C21orf2 ENSG00000160226       ENST00000325223       44328944
4725       C21orf2 ENSG00000160226       ENST00000462742       44328944
4726       C21orf2 ENSG00000160226       ENST00000462742       44328944
4727       C21orf2 ENSG00000160226       ENST00000462742       44328944
4728       C21orf2 ENSG00000160226       ENST00000462742       44328944
4729       C21orf2 ENSG00000160226       ENST00000462742       44328944
4730       C21orf2 ENSG00000160226       ENST00000462742       44328944
4731       C21orf2 ENSG00000160226       ENST00000339818       44328944
4732       C21orf2 ENSG00000160226       ENST00000339818       44328944
4733       C21orf2 ENSG00000160226       ENST00000339818       44328944
4734       C21orf2 ENSG00000160226       ENST00000339818       44328944
4735       C21orf2 ENSG00000160226       ENST00000339818       44328944
4736       C21orf2 ENSG00000160226       ENST00000339818       44328944
4737       C21orf2 ENSG00000160226       ENST00000339818       44328944
4738          FTCD ENSG00000160282       ENST00000483568       46136262
4739          FTCD ENSG00000160282       ENST00000483568       46136262
4740          FTCD ENSG00000160282       ENST00000483568       46136262
4741          FTCD ENSG00000160282       ENST00000460011       46136262
4742          FTCD ENSG00000160282       ENST00000460011       46136262
4743          FTCD ENSG00000160282       ENST00000460011       46136262
4744          FTCD ENSG00000160282       ENST00000460011       46136262
4745          FTCD ENSG00000160282       ENST00000460011       46136262
4746          FTCD ENSG00000160282       ENST00000498355       46136262
4747          FTCD ENSG00000160282       ENST00000498355       46136262
4748          FTCD ENSG00000160282       ENST00000498355       46136262
4749          FTCD ENSG00000160282       ENST00000498355       46136262
4750          FTCD ENSG00000160282       ENST00000498355       46136262
4751          FTCD ENSG00000160282       ENST00000498355       46136262
4752          FTCD ENSG00000160282       ENST00000498355       46136262
4753          FTCD ENSG00000160282       ENST00000498355       46136262
4754          FTCD ENSG00000160282       ENST00000498355       46136262
4755          FTCD ENSG00000160282       ENST00000498355       46136262
4756          FTCD ENSG00000160282       ENST00000498355       46136262
4757          FTCD ENSG00000160282       ENST00000498355       46136262
4758          FTCD ENSG00000160282       ENST00000498355       46136262
4759          FTCD ENSG00000160282       ENST00000498355       46136262
4760          FTCD ENSG00000160282       ENST00000498355       46136262
4761          FTCD ENSG00000160282       ENST00000291670       46136262
4762          FTCD ENSG00000160282       ENST00000291670       46136262
4763          FTCD ENSG00000160282       ENST00000291670       46136262
4764          FTCD ENSG00000160282       ENST00000291670       46136262
4765          FTCD ENSG00000160282       ENST00000291670       46136262
4766          FTCD ENSG00000160282       ENST00000291670       46136262
4767          FTCD ENSG00000160282       ENST00000291670       46136262
4768          FTCD ENSG00000160282       ENST00000291670       46136262
4769          FTCD ENSG00000160282       ENST00000291670       46136262
4770          FTCD ENSG00000160282       ENST00000291670       46136262
4771          FTCD ENSG00000160282       ENST00000291670       46136262
4772          FTCD ENSG00000160282       ENST00000291670       46136262
4773          FTCD ENSG00000160282       ENST00000291670       46136262
4774          FTCD ENSG00000160282       ENST00000291670       46136262
4775          FTCD ENSG00000160282       ENST00000291670       46136262
4776          FTCD ENSG00000160282       ENST00000397748       46136262
4777          FTCD ENSG00000160282       ENST00000397748       46136262
4778          FTCD ENSG00000160282       ENST00000397748       46136262
4779          FTCD ENSG00000160282       ENST00000397748       46136262
4780          FTCD ENSG00000160282       ENST00000397748       46136262
4781          FTCD ENSG00000160282       ENST00000397748       46136262
4782          FTCD ENSG00000160282       ENST00000397748       46136262
4783          FTCD ENSG00000160282       ENST00000397748       46136262
4784          FTCD ENSG00000160282       ENST00000397748       46136262
4785          FTCD ENSG00000160282       ENST00000397748       46136262
4786          FTCD ENSG00000160282       ENST00000397748       46136262
4787          FTCD ENSG00000160282       ENST00000397748       46136262
4788          FTCD ENSG00000160282       ENST00000397748       46136262
4789          FTCD ENSG00000160282       ENST00000397748       46136262
4790          FTCD ENSG00000160282       ENST00000397748       46136262
4791          FTCD ENSG00000160282       ENST00000446405       46136262
4792          FTCD ENSG00000160282       ENST00000446405       46136262
4793          FTCD ENSG00000160282       ENST00000446405       46136262
4794          FTCD ENSG00000160282       ENST00000397746       46136262
4795          FTCD ENSG00000160282       ENST00000397746       46136262
4796          FTCD ENSG00000160282       ENST00000397746       46136262
4797          FTCD ENSG00000160282       ENST00000397746       46136262
4798          FTCD ENSG00000160282       ENST00000397746       46136262
4799          FTCD ENSG00000160282       ENST00000397746       46136262
4800          FTCD ENSG00000160282       ENST00000397746       46136262
4801          FTCD ENSG00000160282       ENST00000397746       46136262
4802          FTCD ENSG00000160282       ENST00000397746       46136262
4803          FTCD ENSG00000160282       ENST00000397746       46136262
4804          FTCD ENSG00000160282       ENST00000397746       46136262
4805          FTCD ENSG00000160282       ENST00000397746       46136262
4806          FTCD ENSG00000160282       ENST00000397746       46136262
4807          FTCD ENSG00000160282       ENST00000397746       46136262
4808          FTCD ENSG00000160282       ENST00000397743       46136262
4809          FTCD ENSG00000160282       ENST00000397743       46136262
4810          FTCD ENSG00000160282       ENST00000397743       46136262
4811          FTCD ENSG00000160282       ENST00000397743       46136262
4812          FTCD ENSG00000160282       ENST00000397743       46136262
4813          FTCD ENSG00000160282       ENST00000397743       46136262
4814          FTCD ENSG00000160282       ENST00000397743       46136262
4815          FTCD ENSG00000160282       ENST00000397743       46136262
4816          FTCD ENSG00000160282       ENST00000397743       46136262
4817          FTCD ENSG00000160282       ENST00000397743       46136262
4818          FTCD ENSG00000160282       ENST00000397743       46136262
4819          FTCD ENSG00000160282       ENST00000397743       46136262
4820          FTCD ENSG00000160282       ENST00000397743       46136262
4821          FTCD ENSG00000160282       ENST00000494498       46136262
4822          FTCD ENSG00000160282       ENST00000494498       46136262
4823          FTCD ENSG00000160282       ENST00000494498       46136262
4824          FTCD ENSG00000160282       ENST00000494498       46136262
4825          FTCD ENSG00000160282       ENST00000488577       46136262
4826          FTCD ENSG00000160282       ENST00000488577       46136262
4827          FTCD ENSG00000160282       ENST00000488577       46136262
4828          FTCD ENSG00000160282       ENST00000480950       46136262
4829          FTCD ENSG00000160282       ENST00000480950       46136262
4830          FTCD ENSG00000160282       ENST00000480950       46136262
4831          FTCD ENSG00000160282       ENST00000469240       46136262
4832          FTCD ENSG00000160282       ENST00000469240       46136262
4833      MTND6P21 ENSG00000223431       ENST00000443620       44472895
4834      MTND6P21 ENSG00000223431       ENST00000443620       44472895
4835       MTND5P1 ENSG00000227999       ENST00000445440       44473723
4836               ENSG00000225745       ENST00000430327       41176322
4837               ENSG00000225745       ENST00000430327       41176322
4838               ENSG00000225745       ENST00000430327       41176322
4839               ENSG00000225745       ENST00000440221       41176322
4840               ENSG00000225745       ENST00000440221       41176322
4841               ENSG00000225745       ENST00000440221       41176322
4842               ENSG00000225745       ENST00000440221       41176322
4843               ENSG00000225745       ENST00000414699       41176322
4844               ENSG00000225745       ENST00000414699       41176322
4845               ENSG00000225745       ENST00000414699       41176322
4846   KRTAP10-13P ENSG00000236382       ENST00000412914       44702221
4847     LINC01548 ENSG00000229086       ENST00000451980       33165470
4848     LINC01548 ENSG00000229086       ENST00000451980       33165470
4849     LINC01548 ENSG00000229086       ENST00000451980       33165470
4850     LINC01548 ENSG00000229086       ENST00000451980       33165470
4851     LINC01548 ENSG00000229086       ENST00000451980       33165470
4852     LINC01548 ENSG00000229086       ENST00000637328       33165470
4853     LINC01548 ENSG00000229086       ENST00000637328       33165470
4854     LINC01548 ENSG00000229086       ENST00000637328       33165470
4855     LINC01548 ENSG00000229086       ENST00000637328       33165470
4856               ENSG00000275993       ENST00000613488        6111134
4857               ENSG00000275993       ENST00000613488        6111134
4858               ENSG00000275993       ENST00000613488        6111134
4859               ENSG00000275993       ENST00000613488        6111134
4860               ENSG00000275993       ENST00000613488        6111134
4861               ENSG00000275993       ENST00000613488        6111134
4862               ENSG00000275993       ENST00000613488        6111134
4863               ENSG00000275993       ENST00000613488        6111134
4864               ENSG00000275993       ENST00000613488        6111134
4865               ENSG00000275993       ENST00000613488        6111134
4866               ENSG00000275993       ENST00000613488        6111134
4867               ENSG00000275993       ENST00000613488        6111134
4868               ENSG00000275993       ENST00000613488        6111134
4869               ENSG00000275993       ENST00000613488        6111134
4870               ENSG00000275993       ENST00000624077        6111134
4871               ENSG00000275993       ENST00000624077        6111134
4872               ENSG00000275993       ENST00000624077        6111134
4873               ENSG00000226043       ENST00000444130       22209939
4874               ENSG00000226043       ENST00000444130       22209939
4875               ENSG00000226043       ENST00000444130       22209939
4876     LINC00308 ENSG00000184856       ENST00000419431       22098617
4877     LINC00308 ENSG00000184856       ENST00000419431       22098617
4878     LINC00308 ENSG00000184856       ENST00000419431       22098617
4879     LINC00308 ENSG00000184856       ENST00000419431       22098617
4880     LINC00308 ENSG00000184856       ENST00000419431       22098617
4881     LINC00308 ENSG00000184856       ENST00000419431       22098617
4882     LINC01436 ENSG00000231106       ENST00000457157       36005338
4883     LINC01436 ENSG00000231106       ENST00000457157       36005338
4884               ENSG00000239930       ENST00000416179       42496539
4885               ENSG00000239930       ENST00000416179       42496539
4886               ENSG00000239930       ENST00000416179       42496539
4887         CHODL ENSG00000154645       ENST00000400128       17901263
4888         CHODL ENSG00000154645       ENST00000400128       17901263
4889         CHODL ENSG00000154645       ENST00000400128       17901263
4890         CHODL ENSG00000154645       ENST00000400128       17901263
4891         CHODL ENSG00000154645       ENST00000400128       17901263
4892         CHODL ENSG00000154645       ENST00000400128       17901263
4893         CHODL ENSG00000154645       ENST00000400128       17901263
4894         CHODL ENSG00000154645       ENST00000400131       17901263
4895         CHODL ENSG00000154645       ENST00000400131       17901263
4896         CHODL ENSG00000154645       ENST00000400131       17901263
4897         CHODL ENSG00000154645       ENST00000400131       17901263
4898         CHODL ENSG00000154645       ENST00000400131       17901263
4899         CHODL ENSG00000154645       ENST00000400135       17901263
4900         CHODL ENSG00000154645       ENST00000400135       17901263
4901         CHODL ENSG00000154645       ENST00000400135       17901263
4902         CHODL ENSG00000154645       ENST00000400135       17901263
4903         CHODL ENSG00000154645       ENST00000400135       17901263
4904         CHODL ENSG00000154645       ENST00000400135       17901263
4905         CHODL ENSG00000154645       ENST00000400127       17901263
4906         CHODL ENSG00000154645       ENST00000400127       17901263
4907         CHODL ENSG00000154645       ENST00000400127       17901263
4908         CHODL ENSG00000154645       ENST00000400127       17901263
4909         CHODL ENSG00000154645       ENST00000400127       17901263
4910         CHODL ENSG00000154645       ENST00000400127       17901263
4911         CHODL ENSG00000154645       ENST00000400127       17901263
4912         CHODL ENSG00000154645       ENST00000299295       17901263
4913         CHODL ENSG00000154645       ENST00000299295       17901263
4914         CHODL ENSG00000154645       ENST00000299295       17901263
4915         CHODL ENSG00000154645       ENST00000299295       17901263
4916         CHODL ENSG00000154645       ENST00000299295       17901263
4917         CHODL ENSG00000154645       ENST00000299295       17901263
4918         CHODL ENSG00000154645       ENST00000543733       17901263
4919         CHODL ENSG00000154645       ENST00000543733       17901263
4920         CHODL ENSG00000154645       ENST00000543733       17901263
4921         CHODL ENSG00000154645       ENST00000543733       17901263
4922         CHODL ENSG00000154645       ENST00000543733       17901263
4923         CHODL ENSG00000154645       ENST00000543733       17901263
4924         CHODL ENSG00000154645       ENST00000338326       17901263
4925         CHODL ENSG00000154645       ENST00000338326       17901263
4926         CHODL ENSG00000154645       ENST00000338326       17901263
4927         CHODL ENSG00000154645       ENST00000338326       17901263
4928               ENSG00000227438       ENST00000454245       46093264
4929               ENSG00000227438       ENST00000454245       46093264
4930               ENSG00000280095       ENST00000623983        6081193
4931               ENSG00000280095       ENST00000623983        6081193
4932               ENSG00000228592       ENST00000262354       23361104
4933               ENSG00000228592       ENST00000262354       23361104
4934               ENSG00000228592       ENST00000262354       23361104
4935               ENSG00000228592       ENST00000262354       23361104
4936               ENSG00000228592       ENST00000262354       23361104
4937       SLC37A1 ENSG00000160190       ENST00000454800       42496008
4938       SLC37A1 ENSG00000160190       ENST00000454800       42496008
4939       SLC37A1 ENSG00000160190       ENST00000419522       42496008
4940       SLC37A1 ENSG00000160190       ENST00000419522       42496008
4941       SLC37A1 ENSG00000160190       ENST00000419522       42496008
4942       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4943       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4944       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4945       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4946       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4947       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4948       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4949       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4950       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4951       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4952       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4953       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4954       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4955       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4956       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4957       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4958       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4959       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4960       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4961       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4962       SLC37A1 ENSG00000160190       ENST00000398341       42496008
4963       SLC37A1 ENSG00000160190       ENST00000484887       42496008
4964       SLC37A1 ENSG00000160190       ENST00000484887       42496008
4965       SLC37A1 ENSG00000160190       ENST00000484887       42496008
4966       SLC37A1 ENSG00000160190       ENST00000471277       42496008
4967       SLC37A1 ENSG00000160190       ENST00000471277       42496008
4968       SLC37A1 ENSG00000160190       ENST00000471277       42496008
4969       SLC37A1 ENSG00000160190       ENST00000471277       42496008
4970       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4971       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4972       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4973       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4974       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4975       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4976       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4977       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4978       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4979       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4980       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4981       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4982       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4983       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4984       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4985       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4986       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4987       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4988       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4989       SLC37A1 ENSG00000160190       ENST00000352133       42496008
4990       SLC37A1 ENSG00000160190       ENST00000398343       42496008
4991       SLC37A1 ENSG00000160190       ENST00000398343       42496008
4992       SLC37A1 ENSG00000160190       ENST00000398343       42496008
4993       SLC37A1 ENSG00000160190       ENST00000487951       42496008
4994       SLC37A1 ENSG00000160190       ENST00000487951       42496008
4995       SLC37A1 ENSG00000160190       ENST00000496416       42496008
4996       SLC37A1 ENSG00000160190       ENST00000496416       42496008
4997       SLC37A1 ENSG00000160190       ENST00000496416       42496008
4998       SLC37A1 ENSG00000160190       ENST00000496416       42496008
4999       SLC37A1 ENSG00000160190       ENST00000496416       42496008
5000               ENSG00000205424       ENST00000380008       45827961
5001               ENSG00000205424       ENST00000380008       45827961
5002               ENSG00000205424       ENST00000380008       45827961
5003     BRWD1-IT1 ENSG00000237373       ENST00000435608       39217093
5004     BRWD1-IT1 ENSG00000237373       ENST00000435608       39217093
5005      GAPDHP16 ENSG00000225502       ENST00000448152       14774301
5006               ENSG00000235277       ENST00000430391       14918534
5007               ENSG00000235277       ENST00000430391       14918534
5008               ENSG00000235609       ENST00000432230       14818843
5009               ENSG00000235609       ENST00000432230       14818843
5010               ENSG00000235609       ENST00000432230       14818843
5011               ENSG00000235609       ENST00000432230       14818843
5012               ENSG00000281903       ENST00000630354       14819699
5013               ENSG00000281903       ENST00000630354       14819699
5014               ENSG00000281903       ENST00000593619       14819699
5015               ENSG00000281903       ENST00000627623       14819699
5016               ENSG00000281903       ENST00000627623       14819699
5017               ENSG00000281903       ENST00000627623       14819699
5018               ENSG00000281903       ENST00000630211       14819699
5019               ENSG00000281903       ENST00000630211       14819699
5020               ENSG00000281903       ENST00000630211       14819699
5021               ENSG00000281903       ENST00000630211       14819699
5022               ENSG00000281903       ENST00000630211       14819699
5023               ENSG00000281903       ENST00000630211       14819699
5024               ENSG00000281903       ENST00000625278       14819699
5025               ENSG00000281903       ENST00000625278       14819699
5026               ENSG00000281903       ENST00000625278       14819699
5027               ENSG00000281903       ENST00000625278       14819699
5028               ENSG00000281903       ENST00000412426       14819699
5029               ENSG00000281903       ENST00000412426       14819699
5030               ENSG00000281903       ENST00000412426       14819699
5031               ENSG00000281903       ENST00000412426       14819699
5032               ENSG00000281903       ENST00000418954       14819699
5033               ENSG00000281903       ENST00000418954       14819699
5034               ENSG00000281903       ENST00000418954       14819699
5035         ABCG1 ENSG00000160179       ENST00000398457       42199689
5036         ABCG1 ENSG00000160179       ENST00000398457       42199689
5037         ABCG1 ENSG00000160179       ENST00000398457       42199689
5038         ABCG1 ENSG00000160179       ENST00000398457       42199689
5039         ABCG1 ENSG00000160179       ENST00000398457       42199689
5040         ABCG1 ENSG00000160179       ENST00000398457       42199689
5041         ABCG1 ENSG00000160179       ENST00000398457       42199689
5042         ABCG1 ENSG00000160179       ENST00000398457       42199689
5043         ABCG1 ENSG00000160179       ENST00000398457       42199689
5044         ABCG1 ENSG00000160179       ENST00000398457       42199689
5045         ABCG1 ENSG00000160179       ENST00000398457       42199689
5046         ABCG1 ENSG00000160179       ENST00000398457       42199689
5047         ABCG1 ENSG00000160179       ENST00000398457       42199689
5048         ABCG1 ENSG00000160179       ENST00000398457       42199689
5049         ABCG1 ENSG00000160179       ENST00000398457       42199689
5050         ABCG1 ENSG00000160179       ENST00000398457       42199689
5051         ABCG1 ENSG00000160179       ENST00000462050       42199689
5052         ABCG1 ENSG00000160179       ENST00000462050       42199689
5053         ABCG1 ENSG00000160179       ENST00000462050       42199689
5054         ABCG1 ENSG00000160179       ENST00000462050       42199689
5055         ABCG1 ENSG00000160179       ENST00000462050       42199689
5056         ABCG1 ENSG00000160179       ENST00000462050       42199689
5057         ABCG1 ENSG00000160179       ENST00000462050       42199689
5058         ABCG1 ENSG00000160179       ENST00000462050       42199689
5059         ABCG1 ENSG00000160179       ENST00000462050       42199689
5060         ABCG1 ENSG00000160179       ENST00000462050       42199689
5061         ABCG1 ENSG00000160179       ENST00000462050       42199689
5062         ABCG1 ENSG00000160179       ENST00000462050       42199689
5063         ABCG1 ENSG00000160179       ENST00000462050       42199689
5064         ABCG1 ENSG00000160179       ENST00000462050       42199689
5065         ABCG1 ENSG00000160179       ENST00000462050       42199689
5066         ABCG1 ENSG00000160179       ENST00000462050       42199689
5067         ABCG1 ENSG00000160179       ENST00000462050       42199689
5068         ABCG1 ENSG00000160179       ENST00000347800       42199689
5069         ABCG1 ENSG00000160179       ENST00000347800       42199689
5070         ABCG1 ENSG00000160179       ENST00000347800       42199689
5071         ABCG1 ENSG00000160179       ENST00000347800       42199689
5072         ABCG1 ENSG00000160179       ENST00000347800       42199689
5073         ABCG1 ENSG00000160179       ENST00000347800       42199689
5074         ABCG1 ENSG00000160179       ENST00000347800       42199689
5075         ABCG1 ENSG00000160179       ENST00000347800       42199689
5076         ABCG1 ENSG00000160179       ENST00000347800       42199689
5077         ABCG1 ENSG00000160179       ENST00000347800       42199689
5078         ABCG1 ENSG00000160179       ENST00000347800       42199689
5079         ABCG1 ENSG00000160179       ENST00000347800       42199689
5080         ABCG1 ENSG00000160179       ENST00000347800       42199689
5081         ABCG1 ENSG00000160179       ENST00000347800       42199689
5082         ABCG1 ENSG00000160179       ENST00000347800       42199689
5083         ABCG1 ENSG00000160179       ENST00000450121       42199689
5084         ABCG1 ENSG00000160179       ENST00000450121       42199689
5085         ABCG1 ENSG00000160179       ENST00000450121       42199689
5086         ABCG1 ENSG00000160179       ENST00000450121       42199689
5087         ABCG1 ENSG00000160179       ENST00000450121       42199689
5088         ABCG1 ENSG00000160179       ENST00000450121       42199689
5089         ABCG1 ENSG00000160179       ENST00000398449       42199689
5090         ABCG1 ENSG00000160179       ENST00000398449       42199689
5091         ABCG1 ENSG00000160179       ENST00000398449       42199689
5092         ABCG1 ENSG00000160179       ENST00000398449       42199689
5093         ABCG1 ENSG00000160179       ENST00000398449       42199689
5094         ABCG1 ENSG00000160179       ENST00000398449       42199689
5095         ABCG1 ENSG00000160179       ENST00000398449       42199689
5096         ABCG1 ENSG00000160179       ENST00000398449       42199689
5097         ABCG1 ENSG00000160179       ENST00000398449       42199689
5098         ABCG1 ENSG00000160179       ENST00000398449       42199689
5099         ABCG1 ENSG00000160179       ENST00000398449       42199689
5100         ABCG1 ENSG00000160179       ENST00000398449       42199689
5101         ABCG1 ENSG00000160179       ENST00000398449       42199689
5102         ABCG1 ENSG00000160179       ENST00000398449       42199689
5103         ABCG1 ENSG00000160179       ENST00000398449       42199689
5104         ABCG1 ENSG00000160179       ENST00000361802       42199689
5105         ABCG1 ENSG00000160179       ENST00000361802       42199689
5106         ABCG1 ENSG00000160179       ENST00000361802       42199689
5107         ABCG1 ENSG00000160179       ENST00000361802       42199689
5108         ABCG1 ENSG00000160179       ENST00000361802       42199689
5109         ABCG1 ENSG00000160179       ENST00000361802       42199689
5110         ABCG1 ENSG00000160179       ENST00000361802       42199689
5111         ABCG1 ENSG00000160179       ENST00000361802       42199689
5112         ABCG1 ENSG00000160179       ENST00000361802       42199689
5113         ABCG1 ENSG00000160179       ENST00000361802       42199689
5114         ABCG1 ENSG00000160179       ENST00000361802       42199689
5115         ABCG1 ENSG00000160179       ENST00000361802       42199689
5116         ABCG1 ENSG00000160179       ENST00000361802       42199689
5117         ABCG1 ENSG00000160179       ENST00000361802       42199689
5118         ABCG1 ENSG00000160179       ENST00000361802       42199689
5119         ABCG1 ENSG00000160179       ENST00000343687       42199689
5120         ABCG1 ENSG00000160179       ENST00000343687       42199689
5121         ABCG1 ENSG00000160179       ENST00000343687       42199689
5122         ABCG1 ENSG00000160179       ENST00000343687       42199689
5123         ABCG1 ENSG00000160179       ENST00000343687       42199689
5124         ABCG1 ENSG00000160179       ENST00000343687       42199689
5125         ABCG1 ENSG00000160179       ENST00000343687       42199689
5126         ABCG1 ENSG00000160179       ENST00000343687       42199689
5127         ABCG1 ENSG00000160179       ENST00000343687       42199689
5128         ABCG1 ENSG00000160179       ENST00000343687       42199689
5129         ABCG1 ENSG00000160179       ENST00000343687       42199689
5130         ABCG1 ENSG00000160179       ENST00000343687       42199689
5131         ABCG1 ENSG00000160179       ENST00000343687       42199689
5132         ABCG1 ENSG00000160179       ENST00000343687       42199689
5133         ABCG1 ENSG00000160179       ENST00000343687       42199689
5134         ABCG1 ENSG00000160179       ENST00000398437       42199689
5135         ABCG1 ENSG00000160179       ENST00000398437       42199689
5136         ABCG1 ENSG00000160179       ENST00000398437       42199689
5137         ABCG1 ENSG00000160179       ENST00000398437       42199689
5138         ABCG1 ENSG00000160179       ENST00000398437       42199689
5139         ABCG1 ENSG00000160179       ENST00000398437       42199689
5140         ABCG1 ENSG00000160179       ENST00000398437       42199689
5141         ABCG1 ENSG00000160179       ENST00000398437       42199689
5142         ABCG1 ENSG00000160179       ENST00000398437       42199689
5143         ABCG1 ENSG00000160179       ENST00000398437       42199689
5144         ABCG1 ENSG00000160179       ENST00000398437       42199689
5145         ABCG1 ENSG00000160179       ENST00000398437       42199689
5146         ABCG1 ENSG00000160179       ENST00000398437       42199689
5147         ABCG1 ENSG00000160179       ENST00000398437       42199689
5148         ABCG1 ENSG00000160179       ENST00000398437       42199689
5149         ABCG1 ENSG00000160179       ENST00000398437       42199689
5150         ABCG1 ENSG00000160179       ENST00000472587       42199689
5151         ABCG1 ENSG00000160179       ENST00000472587       42199689
5152         ABCG1 ENSG00000160179       ENST00000472587       42199689
5153         ABCG1 ENSG00000160179       ENST00000472587       42199689
5154         ABCG1 ENSG00000160179       ENST00000472587       42199689
5155         ABCG1 ENSG00000160179       ENST00000472587       42199689
5156         ABCG1 ENSG00000160179       ENST00000472587       42199689
5157         ABCG1 ENSG00000160179       ENST00000472587       42199689
5158         ABCG1 ENSG00000160179       ENST00000472587       42199689
5159         ABCG1 ENSG00000160179       ENST00000472587       42199689
5160         ABCG1 ENSG00000160179       ENST00000472587       42199689
5161         ABCG1 ENSG00000160179       ENST00000467818       42199689
5162         ABCG1 ENSG00000160179       ENST00000467818       42199689
5163         ABCG1 ENSG00000160179       ENST00000467818       42199689
5164         ABCG1 ENSG00000160179       ENST00000467818       42199689
5165         ABCG1 ENSG00000160179       ENST00000496783       42199689
5166         ABCG1 ENSG00000160179       ENST00000496783       42199689
5167         ABCG1 ENSG00000160179       ENST00000496783       42199689
5168         ABCG1 ENSG00000160179       ENST00000496783       42199689
5169         ABCG1 ENSG00000160179       ENST00000496783       42199689
5170         ABCG1 ENSG00000160179       ENST00000496783       42199689
5171         NRIP1 ENSG00000180530       ENST00000400199       14961235
5172         NRIP1 ENSG00000180530       ENST00000400199       14961235
5173         NRIP1 ENSG00000180530       ENST00000400199       14961235
5174         NRIP1 ENSG00000180530       ENST00000400202       14961235
5175         NRIP1 ENSG00000180530       ENST00000400202       14961235
5176         NRIP1 ENSG00000180530       ENST00000400202       14961235
5177         NRIP1 ENSG00000180530       ENST00000411932       14961235
5178         NRIP1 ENSG00000180530       ENST00000411932       14961235
5179         NRIP1 ENSG00000180530       ENST00000638122       14961235
5180         NRIP1 ENSG00000180530       ENST00000638122       14961235
5181         NRIP1 ENSG00000180530       ENST00000638122       14961235
5182         NRIP1 ENSG00000180530       ENST00000637963       14961235
5183         NRIP1 ENSG00000180530       ENST00000637963       14961235
5184         NRIP1 ENSG00000180530       ENST00000637963       14961235
5185         NRIP1 ENSG00000180530       ENST00000637630       14961235
5186         NRIP1 ENSG00000180530       ENST00000637630       14961235
5187         NRIP1 ENSG00000180530       ENST00000637630       14961235
5188         NRIP1 ENSG00000180530       ENST00000637630       14961235
5189         NRIP1 ENSG00000180530       ENST00000637630       14961235
5190         NRIP1 ENSG00000180530       ENST00000318948       14961235
5191         NRIP1 ENSG00000180530       ENST00000318948       14961235
5192         NRIP1 ENSG00000180530       ENST00000318948       14961235
5193         NRIP1 ENSG00000180530       ENST00000318948       14961235
5194       RBMX2P1 ENSG00000226406       ENST00000454795       14829154
5195       SLC19A1 ENSG00000173638       ENST00000417954       45493572
5196       SLC19A1 ENSG00000173638       ENST00000417954       45493572
5197       SLC19A1 ENSG00000173638       ENST00000417954       45493572
5198       SLC19A1 ENSG00000173638       ENST00000417954       45493572
5199       SLC19A1 ENSG00000173638       ENST00000417954       45493572
5200       SLC19A1 ENSG00000173638       ENST00000567670       45493572
5201       SLC19A1 ENSG00000173638       ENST00000567670       45493572
5202       SLC19A1 ENSG00000173638       ENST00000567670       45493572
5203       SLC19A1 ENSG00000173638       ENST00000567670       45493572
5204       SLC19A1 ENSG00000173638       ENST00000567670       45493572
5205       SLC19A1 ENSG00000173638       ENST00000567670       45493572
5206       SLC19A1 ENSG00000173638       ENST00000461785       45493572
5207       SLC19A1 ENSG00000173638       ENST00000461785       45493572
5208       SLC19A1 ENSG00000173638       ENST00000468508       45493572
5209       SLC19A1 ENSG00000173638       ENST00000468508       45493572
5210       SLC19A1 ENSG00000173638       ENST00000460174       45493572
5211       SLC19A1 ENSG00000173638       ENST00000460174       45493572
5212       SLC19A1 ENSG00000173638       ENST00000460174       45493572
5213       SLC19A1 ENSG00000173638       ENST00000460174       45493572
5214       SLC19A1 ENSG00000173638       ENST00000311124       45493572
5215       SLC19A1 ENSG00000173638       ENST00000311124       45493572
5216       SLC19A1 ENSG00000173638       ENST00000311124       45493572
5217       SLC19A1 ENSG00000173638       ENST00000311124       45493572
5218       SLC19A1 ENSG00000173638       ENST00000311124       45493572
5219       SLC19A1 ENSG00000173638       ENST00000311124       45493572
5220       SLC19A1 ENSG00000173638       ENST00000380010       45493572
5221       SLC19A1 ENSG00000173638       ENST00000380010       45493572
5222       SLC19A1 ENSG00000173638       ENST00000380010       45493572
5223       SLC19A1 ENSG00000173638       ENST00000380010       45493572
5224       SLC19A1 ENSG00000173638       ENST00000380010       45493572
5225       SLC19A1 ENSG00000173638       ENST00000380010       45493572
5226       SLC19A1 ENSG00000173638       ENST00000485649       45493572
5227       SLC19A1 ENSG00000173638       ENST00000485649       45493572
5228       SLC19A1 ENSG00000173638       ENST00000485649       45493572
5229       SLC19A1 ENSG00000173638       ENST00000485649       45493572
5230       SLC19A1 ENSG00000173638       ENST00000485649       45493572
5231       SLC19A1 ENSG00000173638       ENST00000427839       45493572
5232       SLC19A1 ENSG00000173638       ENST00000427839       45493572
5233       SLC19A1 ENSG00000173638       ENST00000427839       45493572
5234       SLC19A1 ENSG00000173638       ENST00000443742       45493572
5235       SLC19A1 ENSG00000173638       ENST00000443742       45493572
5236       SLC19A1 ENSG00000173638       ENST00000443742       45493572
5237       SLC19A1 ENSG00000173638       ENST00000486303       45493572
5238       SLC19A1 ENSG00000173638       ENST00000486303       45493572
5239       SLC19A1 ENSG00000173638       ENST00000528477       45493572
5240       SLC19A1 ENSG00000173638       ENST00000528477       45493572
5241       SLC19A1 ENSG00000173638       ENST00000528477       45493572
5242               ENSG00000229047       ENST00000446301       14961309
5243               ENSG00000229047       ENST00000446301       14961309
5244               ENSG00000279390       ENST00000623352       15050189
5245               ENSG00000231201       ENST00000436429       14971470
5246               ENSG00000231201       ENST00000436429       14971470
5247               ENSG00000231201       ENST00000436429       14971470
5248   COL18A1-AS1 ENSG00000183535       ENST00000397787       45419716
5249   COL18A1-AS1 ENSG00000183535       ENST00000397787       45419716
5250   COL18A1-AS1 ENSG00000183535       ENST00000397787       45419716
5251   COL18A1-AS1 ENSG00000183535       ENST00000485206       45419716
5252   COL18A1-AS1 ENSG00000183535       ENST00000485206       45419716
5253   COL18A1-AS1 ENSG00000183535       ENST00000485206       45419716
5254        MYL6P2 ENSG00000235808       ENST00000450079       39488327
5255      C21orf58 ENSG00000160298       ENST00000491666       46300181
5256      C21orf58 ENSG00000160298       ENST00000491666       46300181
5257      C21orf58 ENSG00000160298       ENST00000491666       46300181
5258      C21orf58 ENSG00000160298       ENST00000491666       46300181
5259      C21orf58 ENSG00000160298       ENST00000491666       46300181
5260      C21orf58 ENSG00000160298       ENST00000491666       46300181
5261      C21orf58 ENSG00000160298       ENST00000491666       46300181
5262      C21orf58 ENSG00000160298       ENST00000491666       46300181
5263      C21orf58 ENSG00000160298       ENST00000397683       46300181
5264      C21orf58 ENSG00000160298       ENST00000397683       46300181
5265      C21orf58 ENSG00000160298       ENST00000397683       46300181
5266      C21orf58 ENSG00000160298       ENST00000397683       46300181
5267      C21orf58 ENSG00000160298       ENST00000397683       46300181
5268      C21orf58 ENSG00000160298       ENST00000397683       46300181
5269      C21orf58 ENSG00000160298       ENST00000397683       46300181
5270      C21orf58 ENSG00000160298       ENST00000397683       46300181
5271      C21orf58 ENSG00000160298       ENST00000397683       46300181
5272      C21orf58 ENSG00000160298       ENST00000417060       46300181
5273      C21orf58 ENSG00000160298       ENST00000417060       46300181
5274      C21orf58 ENSG00000160298       ENST00000417060       46300181
5275      C21orf58 ENSG00000160298       ENST00000417060       46300181
5276      C21orf58 ENSG00000160298       ENST00000417060       46300181
5277      C21orf58 ENSG00000160298       ENST00000417060       46300181
5278      C21orf58 ENSG00000160298       ENST00000417060       46300181
5279      C21orf58 ENSG00000160298       ENST00000417060       46300181
5280      C21orf58 ENSG00000160298       ENST00000397682       46300181
5281      C21orf58 ENSG00000160298       ENST00000397682       46300181
5282      C21orf58 ENSG00000160298       ENST00000397682       46300181
5283      C21orf58 ENSG00000160298       ENST00000397682       46300181
5284      C21orf58 ENSG00000160298       ENST00000397682       46300181
5285      C21orf58 ENSG00000160298       ENST00000397682       46300181
5286      C21orf58 ENSG00000160298       ENST00000397682       46300181
5287      C21orf58 ENSG00000160298       ENST00000397682       46300181
5288      C21orf58 ENSG00000160298       ENST00000397682       46300181
5289      C21orf58 ENSG00000160298       ENST00000291691       46300181
5290      C21orf58 ENSG00000160298       ENST00000291691       46300181
5291      C21orf58 ENSG00000160298       ENST00000291691       46300181
5292      C21orf58 ENSG00000160298       ENST00000291691       46300181
5293      C21orf58 ENSG00000160298       ENST00000291691       46300181
5294      C21orf58 ENSG00000160298       ENST00000291691       46300181
5295      C21orf58 ENSG00000160298       ENST00000291691       46300181
5296      C21orf58 ENSG00000160298       ENST00000291691       46300181
5297      C21orf58 ENSG00000160298       ENST00000397679       46300181
5298      C21orf58 ENSG00000160298       ENST00000397679       46300181
5299      C21orf58 ENSG00000160298       ENST00000397679       46300181
5300      C21orf58 ENSG00000160298       ENST00000397679       46300181
5301      C21orf58 ENSG00000160298       ENST00000397679       46300181
5302      C21orf58 ENSG00000160298       ENST00000397679       46300181
5303      C21orf58 ENSG00000160298       ENST00000397679       46300181
5304      C21orf58 ENSG00000160298       ENST00000397680       46300181
5305      C21orf58 ENSG00000160298       ENST00000397680       46300181
5306      C21orf58 ENSG00000160298       ENST00000397680       46300181
5307      C21orf58 ENSG00000160298       ENST00000397680       46300181
5308      C21orf58 ENSG00000160298       ENST00000397680       46300181
5309      C21orf58 ENSG00000160298       ENST00000397680       46300181
5310      C21orf58 ENSG00000160298       ENST00000397680       46300181
5311      C21orf58 ENSG00000160298       ENST00000397680       46300181
5312      C21orf58 ENSG00000160298       ENST00000472607       46300181
5313      C21orf58 ENSG00000160298       ENST00000472607       46300181
5314      C21orf58 ENSG00000160298       ENST00000472607       46300181
5315      C21orf58 ENSG00000160298       ENST00000445935       46300181
5316      C21orf58 ENSG00000160298       ENST00000445935       46300181
5317      C21orf58 ENSG00000160298       ENST00000445935       46300181
5318      C21orf58 ENSG00000160298       ENST00000445935       46300181
5319      C21orf58 ENSG00000160298       ENST00000445935       46300181
5320      C21orf58 ENSG00000160298       ENST00000445935       46300181
5321      C21orf58 ENSG00000160298       ENST00000475776       46300181
5322      C21orf58 ENSG00000160298       ENST00000475776       46300181
5323      C21orf58 ENSG00000160298       ENST00000475776       46300181
5324      C21orf58 ENSG00000160298       ENST00000475776       46300181
5325           MX2 ENSG00000183486       ENST00000330714       41361943
5326           MX2 ENSG00000183486       ENST00000330714       41361943
5327           MX2 ENSG00000183486       ENST00000330714       41361943
5328           MX2 ENSG00000183486       ENST00000330714       41361943
5329           MX2 ENSG00000183486       ENST00000330714       41361943
5330           MX2 ENSG00000183486       ENST00000330714       41361943
5331           MX2 ENSG00000183486       ENST00000330714       41361943
5332           MX2 ENSG00000183486       ENST00000330714       41361943
5333           MX2 ENSG00000183486       ENST00000330714       41361943
5334           MX2 ENSG00000183486       ENST00000330714       41361943
5335           MX2 ENSG00000183486       ENST00000330714       41361943
5336           MX2 ENSG00000183486       ENST00000330714       41361943
5337           MX2 ENSG00000183486       ENST00000330714       41361943
5338           MX2 ENSG00000183486       ENST00000330714       41361943
5339           MX2 ENSG00000183486       ENST00000436410       41361943
5340           MX2 ENSG00000183486       ENST00000436410       41361943
5341           MX2 ENSG00000183486       ENST00000436410       41361943
5342           MX2 ENSG00000183486       ENST00000436410       41361943
5343           MX2 ENSG00000183486       ENST00000435611       41361943
5344           MX2 ENSG00000183486       ENST00000435611       41361943
5345           MX2 ENSG00000183486       ENST00000435611       41361943
5346           MX2 ENSG00000183486       ENST00000435611       41361943
5347           MX2 ENSG00000183486       ENST00000494252       41361943
5348           MX2 ENSG00000183486       ENST00000494252       41361943
5349           MX2 ENSG00000183486       ENST00000494252       41361943
5350           MX2 ENSG00000183486       ENST00000495892       41361943
5351           MX2 ENSG00000183486       ENST00000495892       41361943
5352           MX2 ENSG00000183486       ENST00000416447       41361943
5353           MX2 ENSG00000183486       ENST00000416447       41361943
5354           MX2 ENSG00000183486       ENST00000416447       41361943
5355           MX2 ENSG00000183486       ENST00000416447       41361943
5356           MX2 ENSG00000183486       ENST00000418103       41361943
5357           MX2 ENSG00000183486       ENST00000418103       41361943
5358           MX2 ENSG00000183486       ENST00000418103       41361943
5359           MX2 ENSG00000183486       ENST00000482953       41361943
5360           MX2 ENSG00000183486       ENST00000482953       41361943
5361           MX2 ENSG00000183486       ENST00000482953       41361943
5362           MX2 ENSG00000183486       ENST00000482953       41361943
5363           MX2 ENSG00000183486       ENST00000482953       41361943
5364           MX2 ENSG00000183486       ENST00000482953       41361943
5365           MX2 ENSG00000183486       ENST00000482953       41361943
5366           MX2 ENSG00000183486       ENST00000482953       41361943
5367           MX2 ENSG00000183486       ENST00000482953       41361943
5368           MX2 ENSG00000183486       ENST00000496774       41361943
5369           MX2 ENSG00000183486       ENST00000496774       41361943
5370           MX2 ENSG00000183486       ENST00000496774       41361943
5371           MX2 ENSG00000183486       ENST00000496774       41361943
5372           MX2 ENSG00000183486       ENST00000496774       41361943
5373           MX2 ENSG00000183486       ENST00000496774       41361943
5374           MX2 ENSG00000183486       ENST00000493753       41361943
5375           MX2 ENSG00000183486       ENST00000493753       41361943
5376           MX2 ENSG00000183486       ENST00000493753       41361943
5377           MX2 ENSG00000183486       ENST00000481838       41361943
5378           MX2 ENSG00000183486       ENST00000481838       41361943
5379           MX2 ENSG00000183486       ENST00000481838       41361943
5380           MX2 ENSG00000183486       ENST00000481838       41361943
5381           MX2 ENSG00000183486       ENST00000481838       41361943
5382           MX2 ENSG00000183486       ENST00000474368       41361943
5383           MX2 ENSG00000183486       ENST00000474368       41361943
5384           MX2 ENSG00000183486       ENST00000398632       41361943
5385           MX2 ENSG00000183486       ENST00000398632       41361943
5386           MX2 ENSG00000183486       ENST00000398632       41361943
5387          PCP4 ENSG00000183036       ENST00000328619       39867317
5388          PCP4 ENSG00000183036       ENST00000328619       39867317
5389          PCP4 ENSG00000183036       ENST00000328619       39867317
5390          PCP4 ENSG00000183036       ENST00000462224       39867317
5391          PCP4 ENSG00000183036       ENST00000462224       39867317
5392          PCP4 ENSG00000183036       ENST00000462224       39867317
5393          PCP4 ENSG00000183036       ENST00000462224       39867317
5394          PCP4 ENSG00000183036       ENST00000468717       39867317
5395          PCP4 ENSG00000183036       ENST00000468717       39867317
5396          PCP4 ENSG00000183036       ENST00000468717       39867317
5397          PCP4 ENSG00000183036       ENST00000468717       39867317
5398          PCP4 ENSG00000183036       ENST00000467565       39867317
5399          PCP4 ENSG00000183036       ENST00000467565       39867317
5400          PCP4 ENSG00000183036       ENST00000467565       39867317
5401               ENSG00000235012       ENST00000411867       39525583
5402               ENSG00000235012       ENST00000411867       39525583
5403     LINC00649 ENSG00000237945       ENST00000596365       33915534
5404     LINC00649 ENSG00000237945       ENST00000596365       33915534
5405     LINC00649 ENSG00000237945       ENST00000596365       33915534
5406     LINC00649 ENSG00000237945       ENST00000597626       33915534
5407     LINC00649 ENSG00000237945       ENST00000597626       33915534
5408     LINC00649 ENSG00000237945       ENST00000597626       33915534
5409     LINC00649 ENSG00000237945       ENST00000597626       33915534
5410     LINC00649 ENSG00000237945       ENST00000597626       33915534
5411     LINC00649 ENSG00000237945       ENST00000597626       33915534
5412     LINC00649 ENSG00000237945       ENST00000616030       33915534
5413     LINC00649 ENSG00000237945       ENST00000616030       33915534
5414     LINC00649 ENSG00000237945       ENST00000616030       33915534
5415     LINC00649 ENSG00000237945       ENST00000610236       33915534
5416     LINC00649 ENSG00000237945       ENST00000610236       33915534
5417     LINC00649 ENSG00000237945       ENST00000601471       33915534
5418     LINC00649 ENSG00000237945       ENST00000601471       33915534
5419     LINC00649 ENSG00000237945       ENST00000601471       33915534
5420     LINC00649 ENSG00000237945       ENST00000427447       33915534
5421     LINC00649 ENSG00000237945       ENST00000427447       33915534
5422     LINC00649 ENSG00000237945       ENST00000427447       33915534
5423     LINC00649 ENSG00000237945       ENST00000599421       33915534
5424     LINC00649 ENSG00000237945       ENST00000599421       33915534
5425     LINC00649 ENSG00000237945       ENST00000400353       33915534
5426     LINC00649 ENSG00000237945       ENST00000400353       33915534
5427     LINC00649 ENSG00000237945       ENST00000400353       33915534
5428     LINC00649 ENSG00000237945       ENST00000622171       33915534
5429     LINC00649 ENSG00000237945       ENST00000622171       33915534
5430     LINC00649 ENSG00000237945       ENST00000628906       33915534
5431     LINC00649 ENSG00000237945       ENST00000628906       33915534
5432     LINC00649 ENSG00000237945       ENST00000628906       33915534
5433     LINC00649 ENSG00000237945       ENST00000594752       33915534
5434     LINC00649 ENSG00000237945       ENST00000594752       33915534
5435     LINC00649 ENSG00000237945       ENST00000594752       33915534
5436     LINC00649 ENSG00000237945       ENST00000594370       33915534
5437     LINC00649 ENSG00000237945       ENST00000594370       33915534
5438     LINC00649 ENSG00000237945       ENST00000594370       33915534
5439     LINC00649 ENSG00000237945       ENST00000595747       33915534
5440     LINC00649 ENSG00000237945       ENST00000595747       33915534
5441     LINC00649 ENSG00000237945       ENST00000595747       33915534
5442     LINC00649 ENSG00000237945       ENST00000608431       33915534
5443     LINC00649 ENSG00000237945       ENST00000608431       33915534
5444     LINC00649 ENSG00000237945       ENST00000593977       33915534
5445     LINC00649 ENSG00000237945       ENST00000593977       33915534
5446     LINC00649 ENSG00000237945       ENST00000593977       33915534
5447     LINC00649 ENSG00000237945       ENST00000600155       33915534
5448     LINC00649 ENSG00000237945       ENST00000600155       33915534
5449     LINC00649 ENSG00000237945       ENST00000600155       33915534
5450     LINC00649 ENSG00000237945       ENST00000381181       33915534
5451     LINC00649 ENSG00000237945       ENST00000381181       33915534
5452     LINC00649 ENSG00000237945       ENST00000620580       33915534
5453     LINC00649 ENSG00000237945       ENST00000620580       33915534
5454     LINC00649 ENSG00000237945       ENST00000613667       33915534
5455     LINC00649 ENSG00000237945       ENST00000613667       33915534
5456     LINC00649 ENSG00000237945       ENST00000609132       33915534
5457     LINC00649 ENSG00000237945       ENST00000609132       33915534
5458     LINC00649 ENSG00000237945       ENST00000609132       33915534
5459        BTF3P6 ENSG00000233956       ENST00000448054       33518610
5460       B3GALT5 ENSG00000183778       ENST00000380620       39556442
5461       B3GALT5 ENSG00000183778       ENST00000380620       39556442
5462       B3GALT5 ENSG00000183778       ENST00000380620       39556442
5463       B3GALT5 ENSG00000183778       ENST00000380620       39556442
5464       B3GALT5 ENSG00000183778       ENST00000380620       39556442
5465       B3GALT5 ENSG00000183778       ENST00000475838       39556442
5466       B3GALT5 ENSG00000183778       ENST00000475838       39556442
5467       B3GALT5 ENSG00000183778       ENST00000380618       39556442
5468       B3GALT5 ENSG00000183778       ENST00000380618       39556442
5469       B3GALT5 ENSG00000183778       ENST00000380618       39556442
5470       B3GALT5 ENSG00000183778       ENST00000398714       39556442
5471       B3GALT5 ENSG00000183778       ENST00000398714       39556442
5472       B3GALT5 ENSG00000183778       ENST00000615480       39556442
5473       B3GALT5 ENSG00000183778       ENST00000615480       39556442
5474       B3GALT5 ENSG00000183778       ENST00000615480       39556442
5475       B3GALT5 ENSG00000183778       ENST00000343118       39556442
5476       B3GALT5 ENSG00000183778       ENST00000343118       39556442
5477       B3GALT5 ENSG00000183778       ENST00000343118       39556442
5478           SON ENSG00000159140       ENST00000356577       33542618
5479           SON ENSG00000159140       ENST00000356577       33542618
5480           SON ENSG00000159140       ENST00000356577       33542618
5481           SON ENSG00000159140       ENST00000356577       33542618
5482           SON ENSG00000159140       ENST00000356577       33542618
5483           SON ENSG00000159140       ENST00000356577       33542618
5484           SON ENSG00000159140       ENST00000356577       33542618
5485           SON ENSG00000159140       ENST00000356577       33542618
5486           SON ENSG00000159140       ENST00000356577       33542618
5487           SON ENSG00000159140       ENST00000356577       33542618
5488           SON ENSG00000159140       ENST00000356577       33542618
5489           SON ENSG00000159140       ENST00000356577       33542618
5490           SON ENSG00000159140       ENST00000475072       33542618
5491           SON ENSG00000159140       ENST00000475072       33542618
5492           SON ENSG00000159140       ENST00000381692       33542618
5493           SON ENSG00000159140       ENST00000381692       33542618
5494           SON ENSG00000159140       ENST00000381692       33542618
5495           SON ENSG00000159140       ENST00000381692       33542618
5496           SON ENSG00000159140       ENST00000381692       33542618
5497           SON ENSG00000159140       ENST00000381692       33542618
5498           SON ENSG00000159140       ENST00000381692       33542618
5499           SON ENSG00000159140       ENST00000381692       33542618
5500           SON ENSG00000159140       ENST00000381692       33542618
5501           SON ENSG00000159140       ENST00000381692       33542618
5502           SON ENSG00000159140       ENST00000381692       33542618
5503           SON ENSG00000159140       ENST00000300278       33542618
5504           SON ENSG00000159140       ENST00000300278       33542618
5505           SON ENSG00000159140       ENST00000300278       33542618
5506           SON ENSG00000159140       ENST00000300278       33542618
5507           SON ENSG00000159140       ENST00000300278       33542618
5508           SON ENSG00000159140       ENST00000300278       33542618
5509           SON ENSG00000159140       ENST00000300278       33542618
5510           SON ENSG00000159140       ENST00000455528       33542618
5511           SON ENSG00000159140       ENST00000455528       33542618
5512           SON ENSG00000159140       ENST00000455528       33542618
5513           SON ENSG00000159140       ENST00000455528       33542618
5514           SON ENSG00000159140       ENST00000455528       33542618
5515           SON ENSG00000159140       ENST00000455528       33542618
5516           SON ENSG00000159140       ENST00000455528       33542618
5517           SON ENSG00000159140       ENST00000455528       33542618
5518           SON ENSG00000159140       ENST00000455528       33542618
5519           SON ENSG00000159140       ENST00000455528       33542618
5520           SON ENSG00000159140       ENST00000455528       33542618
5521           SON ENSG00000159140       ENST00000455528       33542618
5522           SON ENSG00000159140       ENST00000455528       33542618
5523           SON ENSG00000159140       ENST00000381679       33542618
5524           SON ENSG00000159140       ENST00000381679       33542618
5525           SON ENSG00000159140       ENST00000381679       33542618
5526           SON ENSG00000159140       ENST00000381679       33542618
5527           SON ENSG00000159140       ENST00000381679       33542618
5528           SON ENSG00000159140       ENST00000492229       33542618
5529           SON ENSG00000159140       ENST00000492229       33542618
5530           SON ENSG00000159140       ENST00000492229       33542618
5531           SON ENSG00000159140       ENST00000436227       33542618
5532           SON ENSG00000159140       ENST00000436227       33542618
5533           SON ENSG00000159140       ENST00000436227       33542618
5534           SON ENSG00000159140       ENST00000436227       33542618
5535           SON ENSG00000159140       ENST00000436227       33542618
5536           SON ENSG00000159140       ENST00000436227       33542618
5537           SON ENSG00000159140       ENST00000436227       33542618
5538           SON ENSG00000159140       ENST00000436227       33542618
5539           SON ENSG00000159140       ENST00000436227       33542618
5540           SON ENSG00000159140       ENST00000436227       33542618
5541           SON ENSG00000159140       ENST00000421541       33542618
5542           SON ENSG00000159140       ENST00000421541       33542618
5543           SON ENSG00000159140       ENST00000421541       33542618
5544           SON ENSG00000159140       ENST00000421541       33542618
5545           SON ENSG00000159140       ENST00000421541       33542618
5546           SON ENSG00000159140       ENST00000429093       33542618
5547           SON ENSG00000159140       ENST00000429093       33542618
5548           SON ENSG00000159140       ENST00000429093       33542618
5549           SON ENSG00000159140       ENST00000429093       33542618
5550           SON ENSG00000159140       ENST00000474355       33542618
5551           SON ENSG00000159140       ENST00000474355       33542618
5552           SON ENSG00000159140       ENST00000457208       33542618
5553           SON ENSG00000159140       ENST00000457208       33542618
5554           SON ENSG00000159140       ENST00000457208       33542618
5555           SON ENSG00000159140       ENST00000457208       33542618
5556           SON ENSG00000159140       ENST00000457208       33542618
5557           SON ENSG00000159140       ENST00000457208       33542618
5558           SON ENSG00000159140       ENST00000457208       33542618
5559           SON ENSG00000159140       ENST00000467616       33542618
5560           SON ENSG00000159140       ENST00000467616       33542618
5561           SON ENSG00000159140       ENST00000467616       33542618
5562           SON ENSG00000159140       ENST00000467616       33542618
5563           SON ENSG00000159140       ENST00000467616       33542618
5564           SON ENSG00000159140       ENST00000467616       33542618
5565           SON ENSG00000159140       ENST00000467616       33542618
5566           SON ENSG00000159140       ENST00000484294       33542618
5567           SON ENSG00000159140       ENST00000484294       33542618
5568           SON ENSG00000159140       ENST00000484294       33542618
5569           SON ENSG00000159140       ENST00000484294       33542618
5570           SON ENSG00000159140       ENST00000484294       33542618
5571           SON ENSG00000159140       ENST00000484294       33542618
5572           SON ENSG00000159140       ENST00000473102       33542618
5573           SON ENSG00000159140       ENST00000473102       33542618
5574           SON ENSG00000159140       ENST00000473102       33542618
5575           SON ENSG00000159140       ENST00000473102       33542618
5576           SON ENSG00000159140       ENST00000473102       33542618
5577           SON ENSG00000159140       ENST00000473102       33542618
5578           SON ENSG00000159140       ENST00000470533       33542618
5579           SON ENSG00000159140       ENST00000470533       33542618
5580           SON ENSG00000159140       ENST00000470533       33542618
5581           SON ENSG00000159140       ENST00000470533       33542618
5582           SON ENSG00000159140       ENST00000470533       33542618
5583           SON ENSG00000159140       ENST00000470533       33542618
5584           SON ENSG00000159140       ENST00000478183       33542618
5585           SON ENSG00000159140       ENST00000478183       33542618
5586           SON ENSG00000159140       ENST00000478183       33542618
5587           SON ENSG00000159140       ENST00000478183       33542618
5588           SON ENSG00000159140       ENST00000478183       33542618
5589           SON ENSG00000159140       ENST00000465834       33542618
5590           SON ENSG00000159140       ENST00000465834       33542618
5591           SON ENSG00000159140       ENST00000465834       33542618
5592           SON ENSG00000159140       ENST00000465834       33542618
5593           SON ENSG00000159140       ENST00000465834       33542618
5594           SON ENSG00000159140       ENST00000477419       33542618
5595           SON ENSG00000159140       ENST00000477419       33542618
5596           SON ENSG00000159140       ENST00000477419       33542618
5597           SON ENSG00000159140       ENST00000477419       33542618
5598           SON ENSG00000159140       ENST00000491794       33542618
5599           SON ENSG00000159140       ENST00000491794       33542618
5600           SON ENSG00000159140       ENST00000491794       33542618
5601           SON ENSG00000159140       ENST00000491794       33542618
5602      FTCD-AS1 ENSG00000237338       ENST00000446649       46151614
5603      FTCD-AS1 ENSG00000237338       ENST00000446649       46151614
5604               ENSG00000225330       ENST00000416555       39630271
5605               ENSG00000225330       ENST00000416555       39630271
5606               ENSG00000225330       ENST00000416555       39630271
5607   B3GALT5-AS1 ENSG00000184809       ENST00000489821       39597147
5608   B3GALT5-AS1 ENSG00000184809       ENST00000489821       39597147
5609   B3GALT5-AS1 ENSG00000184809       ENST00000380612       39597147
5610   B3GALT5-AS1 ENSG00000184809       ENST00000380612       39597147
5611   B3GALT5-AS1 ENSG00000184809       ENST00000380612       39597147
5612   B3GALT5-AS1 ENSG00000184809       ENST00000380604       39597147
5613   B3GALT5-AS1 ENSG00000184809       ENST00000380604       39597147
5614   B3GALT5-AS1 ENSG00000184809       ENST00000380604       39597147
5615   B3GALT5-AS1 ENSG00000184809       ENST00000329618       39597147
5616   B3GALT5-AS1 ENSG00000184809       ENST00000329618       39597147
5617   B3GALT5-AS1 ENSG00000184809       ENST00000329618       39597147
5618               ENSG00000231713       ENST00000457325       39727755
5619               ENSG00000231713       ENST00000457325       39727755
5620               ENSG00000231713       ENST00000457325       39727755
5621               ENSG00000231713       ENST00000419826       39727755
5622               ENSG00000231713       ENST00000419826       39727755
5623         IGSF5 ENSG00000183067       ENST00000380588       39745407
5624         IGSF5 ENSG00000183067       ENST00000380588       39745407
5625         IGSF5 ENSG00000183067       ENST00000380588       39745407
5626         IGSF5 ENSG00000183067       ENST00000380588       39745407
5627         IGSF5 ENSG00000183067       ENST00000380588       39745407
5628         IGSF5 ENSG00000183067       ENST00000380588       39745407
5629         IGSF5 ENSG00000183067       ENST00000380588       39745407
5630         IGSF5 ENSG00000183067       ENST00000380588       39745407
5631         IGSF5 ENSG00000183067       ENST00000380588       39745407
5632         IGSF5 ENSG00000183067       ENST00000479378       39745407
5633         IGSF5 ENSG00000183067       ENST00000479378       39745407
5634         IGSF5 ENSG00000183067       ENST00000479378       39745407
5635         IGSF5 ENSG00000183067       ENST00000479378       39745407
5636         IGSF5 ENSG00000183067       ENST00000479378       39745407
5637         IGSF5 ENSG00000183067       ENST00000459922       39745407
5638         IGSF5 ENSG00000183067       ENST00000459922       39745407
5639         IGSF5 ENSG00000183067       ENST00000459922       39745407
5640               ENSG00000232969       ENST00000426029       44339376
5641               ENSG00000232969       ENST00000426029       44339376
5642               ENSG00000184441       ENST00000448927       44331234
5643               ENSG00000184441       ENST00000448927       44331234
5644         ATP5O ENSG00000241837       ENST00000431254       33903453
5645         ATP5O ENSG00000241837       ENST00000431254       33903453
5646         ATP5O ENSG00000241837       ENST00000431254       33903453
5647         ATP5O ENSG00000241837       ENST00000431254       33903453
5648         ATP5O ENSG00000241837       ENST00000431254       33903453
5649         ATP5O ENSG00000241837       ENST00000431254       33903453
5650         ATP5O ENSG00000241837       ENST00000491703       33903453
5651         ATP5O ENSG00000241837       ENST00000491703       33903453
5652         ATP5O ENSG00000241837       ENST00000491703       33903453
5653         ATP5O ENSG00000241837       ENST00000491703       33903453
5654         ATP5O ENSG00000241837       ENST00000491703       33903453
5655         ATP5O ENSG00000241837       ENST00000491703       33903453
5656         ATP5O ENSG00000241837       ENST00000290299       33903453
5657         ATP5O ENSG00000241837       ENST00000290299       33903453
5658         ATP5O ENSG00000241837       ENST00000290299       33903453
5659         ATP5O ENSG00000241837       ENST00000290299       33903453
5660         ATP5O ENSG00000241837       ENST00000290299       33903453
5661         ATP5O ENSG00000241837       ENST00000290299       33903453
5662         ATP5O ENSG00000241837       ENST00000290299       33903453
5663         ATP5O ENSG00000241837       ENST00000417181       33903453
5664         ATP5O ENSG00000241837       ENST00000417181       33903453
5665         ATP5O ENSG00000241837       ENST00000417181       33903453
5666         ATP5O ENSG00000241837       ENST00000417181       33903453
5667         ATP5O ENSG00000241837       ENST00000417181       33903453
5668         ATP5O ENSG00000241837       ENST00000418933       33903453
5669         ATP5O ENSG00000241837       ENST00000418933       33903453
5670         ATP5O ENSG00000241837       ENST00000418933       33903453
5671         ATP5O ENSG00000241837       ENST00000418933       33903453
5672         ATP5O ENSG00000241837       ENST00000429064       33903453
5673         ATP5O ENSG00000241837       ENST00000429064       33903453
5674         ATP5O ENSG00000241837       ENST00000429064       33903453
5675         ATP5O ENSG00000241837       ENST00000429064       33903453
5676         ATP5O ENSG00000241837       ENST00000495005       33903453
5677         ATP5O ENSG00000241837       ENST00000495005       33903453
5678         ATP5O ENSG00000241837       ENST00000495005       33903453
5679         ATP5O ENSG00000241837       ENST00000495005       33903453
5680         ATP5O ENSG00000241837       ENST00000496044       33903453
5681         ATP5O ENSG00000241837       ENST00000496044       33903453
5682         ATP5O ENSG00000241837       ENST00000496044       33903453
5683         ATP5O ENSG00000241837       ENST00000484627       33903453
5684         ATP5O ENSG00000241837       ENST00000484627       33903453
5685         ATP5O ENSG00000241837       ENST00000484627       33903453
5686         ATP5O ENSG00000241837       ENST00000487374       33903453
5687         ATP5O ENSG00000241837       ENST00000487374       33903453
5688         ATP5O ENSG00000241837       ENST00000487374       33903453
5689     LINC00189 ENSG00000215533       ENST00000447125       29193480
5690     LINC00189 ENSG00000215533       ENST00000447125       29193480
5691     LINC00189 ENSG00000215533       ENST00000447125       29193480
5692     LINC00189 ENSG00000215533       ENST00000420364       29193480
5693     LINC00189 ENSG00000215533       ENST00000420364       29193480
5694     LINC00189 ENSG00000215533       ENST00000431661       29193480
5695     LINC00189 ENSG00000215533       ENST00000431661       29193480
5696     LINC00189 ENSG00000215533       ENST00000431661       29193480
5697         DSCAM ENSG00000171587       ENST00000617870       40010999
5698         DSCAM ENSG00000171587       ENST00000617870       40010999
5699         DSCAM ENSG00000171587       ENST00000617870       40010999
5700         DSCAM ENSG00000171587       ENST00000617870       40010999
5701         DSCAM ENSG00000171587       ENST00000617870       40010999
5702         DSCAM ENSG00000171587       ENST00000617870       40010999
5703         DSCAM ENSG00000171587       ENST00000617870       40010999
5704         DSCAM ENSG00000171587       ENST00000617870       40010999
5705         DSCAM ENSG00000171587       ENST00000617870       40010999
5706         DSCAM ENSG00000171587       ENST00000617870       40010999
5707         DSCAM ENSG00000171587       ENST00000617870       40010999
5708         DSCAM ENSG00000171587       ENST00000617870       40010999
5709         DSCAM ENSG00000171587       ENST00000617870       40010999
5710         DSCAM ENSG00000171587       ENST00000617870       40010999
5711         DSCAM ENSG00000171587       ENST00000617870       40010999
5712         DSCAM ENSG00000171587       ENST00000617870       40010999
5713         DSCAM ENSG00000171587       ENST00000617870       40010999
5714         DSCAM ENSG00000171587       ENST00000617870       40010999
5715         DSCAM ENSG00000171587       ENST00000617870       40010999
5716         DSCAM ENSG00000171587       ENST00000617870       40010999
5717         DSCAM ENSG00000171587       ENST00000617870       40010999
5718         DSCAM ENSG00000171587       ENST00000617870       40010999
5719         DSCAM ENSG00000171587       ENST00000617870       40010999
5720         DSCAM ENSG00000171587       ENST00000617870       40010999
5721         DSCAM ENSG00000171587       ENST00000617870       40010999
5722         DSCAM ENSG00000171587       ENST00000617870       40010999
5723         DSCAM ENSG00000171587       ENST00000617870       40010999
5724         DSCAM ENSG00000171587       ENST00000617870       40010999
5725         DSCAM ENSG00000171587       ENST00000617870       40010999
5726         DSCAM ENSG00000171587       ENST00000617870       40010999
5727         DSCAM ENSG00000171587       ENST00000400454       40010999
5728         DSCAM ENSG00000171587       ENST00000400454       40010999
5729         DSCAM ENSG00000171587       ENST00000400454       40010999
5730         DSCAM ENSG00000171587       ENST00000400454       40010999
5731         DSCAM ENSG00000171587       ENST00000400454       40010999
5732         DSCAM ENSG00000171587       ENST00000400454       40010999
5733         DSCAM ENSG00000171587       ENST00000400454       40010999
5734         DSCAM ENSG00000171587       ENST00000400454       40010999
5735         DSCAM ENSG00000171587       ENST00000400454       40010999
5736         DSCAM ENSG00000171587       ENST00000400454       40010999
5737         DSCAM ENSG00000171587       ENST00000400454       40010999
5738         DSCAM ENSG00000171587       ENST00000400454       40010999
5739         DSCAM ENSG00000171587       ENST00000400454       40010999
5740         DSCAM ENSG00000171587       ENST00000400454       40010999
5741         DSCAM ENSG00000171587       ENST00000400454       40010999
5742         DSCAM ENSG00000171587       ENST00000400454       40010999
5743         DSCAM ENSG00000171587       ENST00000400454       40010999
5744         DSCAM ENSG00000171587       ENST00000400454       40010999
5745         DSCAM ENSG00000171587       ENST00000400454       40010999
5746         DSCAM ENSG00000171587       ENST00000400454       40010999
5747         DSCAM ENSG00000171587       ENST00000400454       40010999
5748         DSCAM ENSG00000171587       ENST00000400454       40010999
5749         DSCAM ENSG00000171587       ENST00000400454       40010999
5750         DSCAM ENSG00000171587       ENST00000400454       40010999
5751         DSCAM ENSG00000171587       ENST00000400454       40010999
5752         DSCAM ENSG00000171587       ENST00000400454       40010999
5753         DSCAM ENSG00000171587       ENST00000400454       40010999
5754         DSCAM ENSG00000171587       ENST00000400454       40010999
5755         DSCAM ENSG00000171587       ENST00000400454       40010999
5756         DSCAM ENSG00000171587       ENST00000400454       40010999
5757         DSCAM ENSG00000171587       ENST00000400454       40010999
5758         DSCAM ENSG00000171587       ENST00000400454       40010999
5759         DSCAM ENSG00000171587       ENST00000400454       40010999
5760         DSCAM ENSG00000171587       ENST00000404019       40010999
5761         DSCAM ENSG00000171587       ENST00000404019       40010999
5762         DSCAM ENSG00000171587       ENST00000404019       40010999
5763         DSCAM ENSG00000171587       ENST00000404019       40010999
5764         DSCAM ENSG00000171587       ENST00000404019       40010999
5765         DSCAM ENSG00000171587       ENST00000404019       40010999
5766         DSCAM ENSG00000171587       ENST00000404019       40010999
5767         DSCAM ENSG00000171587       ENST00000404019       40010999
5768         DSCAM ENSG00000171587       ENST00000404019       40010999
5769         DSCAM ENSG00000171587       ENST00000404019       40010999
5770         DSCAM ENSG00000171587       ENST00000404019       40010999
5771         DSCAM ENSG00000171587       ENST00000404019       40010999
5772         DSCAM ENSG00000171587       ENST00000404019       40010999
5773         DSCAM ENSG00000171587       ENST00000404019       40010999
5774         DSCAM ENSG00000171587       ENST00000404019       40010999
5775         DSCAM ENSG00000171587       ENST00000404019       40010999
5776         DSCAM ENSG00000171587       ENST00000404019       40010999
5777         DSCAM ENSG00000171587       ENST00000404019       40010999
5778         DSCAM ENSG00000171587       ENST00000404019       40010999
5779         DSCAM ENSG00000171587       ENST00000404019       40010999
5780         DSCAM ENSG00000171587       ENST00000404019       40010999
5781         DSCAM ENSG00000171587       ENST00000404019       40010999
5782         DSCAM ENSG00000171587       ENST00000404019       40010999
5783         DSCAM ENSG00000171587       ENST00000404019       40010999
5784         DSCAM ENSG00000171587       ENST00000404019       40010999
5785         DSCAM ENSG00000171587       ENST00000404019       40010999
5786         DSCAM ENSG00000171587       ENST00000404019       40010999
5787         DSCAM ENSG00000171587       ENST00000404019       40010999
5788         DSCAM ENSG00000171587       ENST00000404019       40010999
5789          TTC3 ENSG00000182670       ENST00000492275       37073226
5790          TTC3 ENSG00000182670       ENST00000492275       37073226
5791          TTC3 ENSG00000182670       ENST00000492275       37073226
5792          TTC3 ENSG00000182670       ENST00000492275       37073226
5793          TTC3 ENSG00000182670       ENST00000492275       37073226
5794          TTC3 ENSG00000182670       ENST00000492275       37073226
5795          TTC3 ENSG00000182670       ENST00000492275       37073226
5796          TTC3 ENSG00000182670       ENST00000492275       37073226
5797          TTC3 ENSG00000182670       ENST00000492275       37073226
5798          TTC3 ENSG00000182670       ENST00000418766       37073226
5799          TTC3 ENSG00000182670       ENST00000418766       37073226
5800          TTC3 ENSG00000182670       ENST00000418766       37073226
5801          TTC3 ENSG00000182670       ENST00000418766       37073226
5802          TTC3 ENSG00000182670       ENST00000418766       37073226
5803          TTC3 ENSG00000182670       ENST00000418766       37073226
5804          TTC3 ENSG00000182670       ENST00000418766       37073226
5805          TTC3 ENSG00000182670       ENST00000418766       37073226
5806          TTC3 ENSG00000182670       ENST00000418766       37073226
5807          TTC3 ENSG00000182670       ENST00000418766       37073226
5808          TTC3 ENSG00000182670       ENST00000418766       37073226
5809          TTC3 ENSG00000182670       ENST00000418766       37073226
5810          TTC3 ENSG00000182670       ENST00000418766       37073226
5811          TTC3 ENSG00000182670       ENST00000418766       37073226
5812          TTC3 ENSG00000182670       ENST00000418766       37073226
5813          TTC3 ENSG00000182670       ENST00000418766       37073226
5814          TTC3 ENSG00000182670       ENST00000418766       37073226
5815          TTC3 ENSG00000182670       ENST00000418766       37073226
5816          TTC3 ENSG00000182670       ENST00000418766       37073226
5817          TTC3 ENSG00000182670       ENST00000418766       37073226
5818          TTC3 ENSG00000182670       ENST00000418766       37073226
5819          TTC3 ENSG00000182670       ENST00000418766       37073226
5820          TTC3 ENSG00000182670       ENST00000418766       37073226
5821          TTC3 ENSG00000182670       ENST00000418766       37073226
5822          TTC3 ENSG00000182670       ENST00000418766       37073226
5823          TTC3 ENSG00000182670       ENST00000418766       37073226
5824          TTC3 ENSG00000182670       ENST00000418766       37073226
5825          TTC3 ENSG00000182670       ENST00000418766       37073226
5826          TTC3 ENSG00000182670       ENST00000418766       37073226
5827          TTC3 ENSG00000182670       ENST00000418766       37073226
5828          TTC3 ENSG00000182670       ENST00000418766       37073226
5829          TTC3 ENSG00000182670       ENST00000418766       37073226
5830          TTC3 ENSG00000182670       ENST00000418766       37073226
5831          TTC3 ENSG00000182670       ENST00000485402       37073226
5832          TTC3 ENSG00000182670       ENST00000485402       37073226
5833          TTC3 ENSG00000182670       ENST00000485402       37073226
5834          TTC3 ENSG00000182670       ENST00000485402       37073226
5835          TTC3 ENSG00000182670       ENST00000485402       37073226
5836          TTC3 ENSG00000182670       ENST00000485402       37073226
5837          TTC3 ENSG00000182670       ENST00000485402       37073226
5838          TTC3 ENSG00000182670       ENST00000485402       37073226
5839          TTC3 ENSG00000182670       ENST00000485402       37073226
5840          TTC3 ENSG00000182670       ENST00000485402       37073226
5841          TTC3 ENSG00000182670       ENST00000485402       37073226
5842          TTC3 ENSG00000182670       ENST00000485402       37073226
5843          TTC3 ENSG00000182670       ENST00000485402       37073226
5844          TTC3 ENSG00000182670       ENST00000485402       37073226
5845          TTC3 ENSG00000182670       ENST00000485402       37073226
5846          TTC3 ENSG00000182670       ENST00000485402       37073226
5847          TTC3 ENSG00000182670       ENST00000485402       37073226
5848          TTC3 ENSG00000182670       ENST00000485402       37073226
5849          TTC3 ENSG00000182670       ENST00000485402       37073226
5850          TTC3 ENSG00000182670       ENST00000485402       37073226
5851          TTC3 ENSG00000182670       ENST00000485402       37073226
5852          TTC3 ENSG00000182670       ENST00000485402       37073226
5853          TTC3 ENSG00000182670       ENST00000485402       37073226
5854          TTC3 ENSG00000182670       ENST00000485402       37073226
5855          TTC3 ENSG00000182670       ENST00000485402       37073226
5856          TTC3 ENSG00000182670       ENST00000485402       37073226
5857          TTC3 ENSG00000182670       ENST00000485402       37073226
5858          TTC3 ENSG00000182670       ENST00000485402       37073226
5859          TTC3 ENSG00000182670       ENST00000485402       37073226
5860          TTC3 ENSG00000182670       ENST00000485402       37073226
5861          TTC3 ENSG00000182670       ENST00000485402       37073226
5862          TTC3 ENSG00000182670       ENST00000485402       37073226
5863          TTC3 ENSG00000182670       ENST00000450533       37073226
5864          TTC3 ENSG00000182670       ENST00000450533       37073226
5865          TTC3 ENSG00000182670       ENST00000450533       37073226
5866          TTC3 ENSG00000182670       ENST00000450533       37073226
5867          TTC3 ENSG00000182670       ENST00000450533       37073226
5868          TTC3 ENSG00000182670       ENST00000450533       37073226
5869          TTC3 ENSG00000182670       ENST00000450533       37073226
5870          TTC3 ENSG00000182670       ENST00000450533       37073226
5871          TTC3 ENSG00000182670       ENST00000450533       37073226
5872          TTC3 ENSG00000182670       ENST00000450533       37073226
5873          TTC3 ENSG00000182670       ENST00000450533       37073226
5874          TTC3 ENSG00000182670       ENST00000450533       37073226
5875          TTC3 ENSG00000182670       ENST00000450533       37073226
5876          TTC3 ENSG00000182670       ENST00000450533       37073226
5877          TTC3 ENSG00000182670       ENST00000450533       37073226
5878          TTC3 ENSG00000182670       ENST00000450533       37073226
5879          TTC3 ENSG00000182670       ENST00000450533       37073226
5880          TTC3 ENSG00000182670       ENST00000450533       37073226
5881          TTC3 ENSG00000182670       ENST00000450533       37073226
5882          TTC3 ENSG00000182670       ENST00000450533       37073226
5883          TTC3 ENSG00000182670       ENST00000450533       37073226
5884          TTC3 ENSG00000182670       ENST00000450533       37073226
5885          TTC3 ENSG00000182670       ENST00000450533       37073226
5886          TTC3 ENSG00000182670       ENST00000450533       37073226
5887          TTC3 ENSG00000182670       ENST00000450533       37073226
5888          TTC3 ENSG00000182670       ENST00000450533       37073226
5889          TTC3 ENSG00000182670       ENST00000438055       37073226
5890          TTC3 ENSG00000182670       ENST00000438055       37073226
5891          TTC3 ENSG00000182670       ENST00000438055       37073226
5892          TTC3 ENSG00000182670       ENST00000438055       37073226
5893          TTC3 ENSG00000182670       ENST00000438055       37073226
5894          TTC3 ENSG00000182670       ENST00000438055       37073226
5895          TTC3 ENSG00000182670       ENST00000438055       37073226
5896          TTC3 ENSG00000182670       ENST00000438055       37073226
5897          TTC3 ENSG00000182670       ENST00000438055       37073226
5898          TTC3 ENSG00000182670       ENST00000438055       37073226
5899          TTC3 ENSG00000182670       ENST00000438055       37073226
5900          TTC3 ENSG00000182670       ENST00000438055       37073226
5901          TTC3 ENSG00000182670       ENST00000438055       37073226
5902          TTC3 ENSG00000182670       ENST00000438055       37073226
5903          TTC3 ENSG00000182670       ENST00000438055       37073226
5904          TTC3 ENSG00000182670       ENST00000438055       37073226
5905          TTC3 ENSG00000182670       ENST00000438055       37073226
5906          TTC3 ENSG00000182670       ENST00000438055       37073226
5907          TTC3 ENSG00000182670       ENST00000438055       37073226
5908          TTC3 ENSG00000182670       ENST00000438055       37073226
5909          TTC3 ENSG00000182670       ENST00000438055       37073226
5910          TTC3 ENSG00000182670       ENST00000438055       37073226
5911          TTC3 ENSG00000182670       ENST00000438055       37073226
5912          TTC3 ENSG00000182670       ENST00000438055       37073226
5913          TTC3 ENSG00000182670       ENST00000438055       37073226
5914          TTC3 ENSG00000182670       ENST00000438055       37073226
5915          TTC3 ENSG00000182670       ENST00000438055       37073226
5916          TTC3 ENSG00000182670       ENST00000438055       37073226
5917          TTC3 ENSG00000182670       ENST00000438055       37073226
5918          TTC3 ENSG00000182670       ENST00000438055       37073226
5919          TTC3 ENSG00000182670       ENST00000438055       37073226
5920          TTC3 ENSG00000182670       ENST00000438055       37073226
5921          TTC3 ENSG00000182670       ENST00000463216       37073226
5922          TTC3 ENSG00000182670       ENST00000463216       37073226
5923          TTC3 ENSG00000182670       ENST00000463216       37073226
5924          TTC3 ENSG00000182670       ENST00000463216       37073226
5925          TTC3 ENSG00000182670       ENST00000463216       37073226
5926          TTC3 ENSG00000182670       ENST00000463216       37073226
5927          TTC3 ENSG00000182670       ENST00000463216       37073226
5928          TTC3 ENSG00000182670       ENST00000463216       37073226
5929          TTC3 ENSG00000182670       ENST00000463216       37073226
5930          TTC3 ENSG00000182670       ENST00000481605       37073226
5931          TTC3 ENSG00000182670       ENST00000481605       37073226
5932          TTC3 ENSG00000182670       ENST00000481605       37073226
5933          TTC3 ENSG00000182670       ENST00000481605       37073226
5934          TTC3 ENSG00000182670       ENST00000481605       37073226
5935          TTC3 ENSG00000182670       ENST00000481605       37073226
5936          TTC3 ENSG00000182670       ENST00000481605       37073226
5937          TTC3 ENSG00000182670       ENST00000481605       37073226
5938          TTC3 ENSG00000182670       ENST00000481605       37073226
5939          TTC3 ENSG00000182670       ENST00000481605       37073226
5940          TTC3 ENSG00000182670       ENST00000481605       37073226
5941          TTC3 ENSG00000182670       ENST00000481605       37073226
5942          TTC3 ENSG00000182670       ENST00000481605       37073226
5943          TTC3 ENSG00000182670       ENST00000481605       37073226
5944          TTC3 ENSG00000182670       ENST00000481605       37073226
5945          TTC3 ENSG00000182670       ENST00000481605       37073226
5946          TTC3 ENSG00000182670       ENST00000494243       37073226
5947          TTC3 ENSG00000182670       ENST00000494243       37073226
5948          TTC3 ENSG00000182670       ENST00000494243       37073226
5949          TTC3 ENSG00000182670       ENST00000494243       37073226
5950          TTC3 ENSG00000182670       ENST00000494243       37073226
5951          TTC3 ENSG00000182670       ENST00000494243       37073226
5952          TTC3 ENSG00000182670       ENST00000494243       37073226
5953          TTC3 ENSG00000182670       ENST00000494243       37073226
5954          TTC3 ENSG00000182670       ENST00000494243       37073226
5955          TTC3 ENSG00000182670       ENST00000494243       37073226
5956          TTC3 ENSG00000182670       ENST00000540756       37073226
5957          TTC3 ENSG00000182670       ENST00000540756       37073226
5958          TTC3 ENSG00000182670       ENST00000540756       37073226
5959          TTC3 ENSG00000182670       ENST00000540756       37073226
5960          TTC3 ENSG00000182670       ENST00000540756       37073226
5961          TTC3 ENSG00000182670       ENST00000540756       37073226
5962          TTC3 ENSG00000182670       ENST00000540756       37073226
5963          TTC3 ENSG00000182670       ENST00000540756       37073226
5964          TTC3 ENSG00000182670       ENST00000540756       37073226
5965          TTC3 ENSG00000182670       ENST00000540756       37073226
5966          TTC3 ENSG00000182670       ENST00000540756       37073226
5967          TTC3 ENSG00000182670       ENST00000540756       37073226
5968          TTC3 ENSG00000182670       ENST00000540756       37073226
5969          TTC3 ENSG00000182670       ENST00000540756       37073226
5970          TTC3 ENSG00000182670       ENST00000540756       37073226
5971          TTC3 ENSG00000182670       ENST00000540756       37073226
5972          TTC3 ENSG00000182670       ENST00000540756       37073226
5973          TTC3 ENSG00000182670       ENST00000540756       37073226
5974          TTC3 ENSG00000182670       ENST00000399010       37073226
5975          TTC3 ENSG00000182670       ENST00000399010       37073226
5976          TTC3 ENSG00000182670       ENST00000399010       37073226
5977          TTC3 ENSG00000182670       ENST00000399010       37073226
5978          TTC3 ENSG00000182670       ENST00000399010       37073226
5979          TTC3 ENSG00000182670       ENST00000399010       37073226
5980          TTC3 ENSG00000182670       ENST00000399010       37073226
5981          TTC3 ENSG00000182670       ENST00000399010       37073226
5982          TTC3 ENSG00000182670       ENST00000399010       37073226
5983          TTC3 ENSG00000182670       ENST00000399010       37073226
5984          TTC3 ENSG00000182670       ENST00000399010       37073226
5985          TTC3 ENSG00000182670       ENST00000399017       37073226
5986          TTC3 ENSG00000182670       ENST00000399017       37073226
5987          TTC3 ENSG00000182670       ENST00000399017       37073226
5988          TTC3 ENSG00000182670       ENST00000399017       37073226
5989          TTC3 ENSG00000182670       ENST00000399017       37073226
5990          TTC3 ENSG00000182670       ENST00000399017       37073226
5991          TTC3 ENSG00000182670       ENST00000399017       37073226
5992          TTC3 ENSG00000182670       ENST00000399017       37073226
5993          TTC3 ENSG00000182670       ENST00000399017       37073226
5994          TTC3 ENSG00000182670       ENST00000399017       37073226
5995          TTC3 ENSG00000182670       ENST00000399017       37073226
5996          TTC3 ENSG00000182670       ENST00000399017       37073226
5997          TTC3 ENSG00000182670       ENST00000399017       37073226
5998          TTC3 ENSG00000182670       ENST00000399017       37073226
5999          TTC3 ENSG00000182670       ENST00000399017       37073226
6000          TTC3 ENSG00000182670       ENST00000399017       37073226
6001          TTC3 ENSG00000182670       ENST00000399017       37073226
6002          TTC3 ENSG00000182670       ENST00000399017       37073226
6003          TTC3 ENSG00000182670       ENST00000399017       37073226
6004          TTC3 ENSG00000182670       ENST00000399017       37073226
6005          TTC3 ENSG00000182670       ENST00000399017       37073226
6006          TTC3 ENSG00000182670       ENST00000399017       37073226
6007          TTC3 ENSG00000182670       ENST00000399017       37073226
6008          TTC3 ENSG00000182670       ENST00000399017       37073226
6009          TTC3 ENSG00000182670       ENST00000399017       37073226
6010          TTC3 ENSG00000182670       ENST00000399017       37073226
6011          TTC3 ENSG00000182670       ENST00000399017       37073226
6012          TTC3 ENSG00000182670       ENST00000399017       37073226
6013          TTC3 ENSG00000182670       ENST00000399017       37073226
6014          TTC3 ENSG00000182670       ENST00000399017       37073226
6015          TTC3 ENSG00000182670       ENST00000399017       37073226
6016          TTC3 ENSG00000182670       ENST00000399017       37073226
6017          TTC3 ENSG00000182670       ENST00000399017       37073226
6018          TTC3 ENSG00000182670       ENST00000399017       37073226
6019          TTC3 ENSG00000182670       ENST00000399017       37073226
6020          TTC3 ENSG00000182670       ENST00000399017       37073226
6021          TTC3 ENSG00000182670       ENST00000399017       37073226
6022          TTC3 ENSG00000182670       ENST00000399017       37073226
6023          TTC3 ENSG00000182670       ENST00000399017       37073226
6024          TTC3 ENSG00000182670       ENST00000399017       37073226
6025          TTC3 ENSG00000182670       ENST00000399017       37073226
6026          TTC3 ENSG00000182670       ENST00000399017       37073226
6027          TTC3 ENSG00000182670       ENST00000399017       37073226
6028          TTC3 ENSG00000182670       ENST00000399017       37073226
6029          TTC3 ENSG00000182670       ENST00000399017       37073226
6030          TTC3 ENSG00000182670       ENST00000399017       37073226
6031          TTC3 ENSG00000182670       ENST00000484047       37073226
6032          TTC3 ENSG00000182670       ENST00000484047       37073226
6033          TTC3 ENSG00000182670       ENST00000484047       37073226
6034          TTC3 ENSG00000182670       ENST00000484047       37073226
6035          TTC3 ENSG00000182670       ENST00000484047       37073226
6036          TTC3 ENSG00000182670       ENST00000484047       37073226
6037          TTC3 ENSG00000182670       ENST00000484047       37073226
6038          TTC3 ENSG00000182670       ENST00000354749       37073226
6039          TTC3 ENSG00000182670       ENST00000354749       37073226
6040          TTC3 ENSG00000182670       ENST00000354749       37073226
6041          TTC3 ENSG00000182670       ENST00000354749       37073226
6042          TTC3 ENSG00000182670       ENST00000354749       37073226
6043          TTC3 ENSG00000182670       ENST00000354749       37073226
6044          TTC3 ENSG00000182670       ENST00000354749       37073226
6045          TTC3 ENSG00000182670       ENST00000354749       37073226
6046          TTC3 ENSG00000182670       ENST00000354749       37073226
6047          TTC3 ENSG00000182670       ENST00000354749       37073226
6048          TTC3 ENSG00000182670       ENST00000354749       37073226
6049          TTC3 ENSG00000182670       ENST00000354749       37073226
6050          TTC3 ENSG00000182670       ENST00000354749       37073226
6051          TTC3 ENSG00000182670       ENST00000354749       37073226
6052          TTC3 ENSG00000182670       ENST00000354749       37073226
6053          TTC3 ENSG00000182670       ENST00000354749       37073226
6054          TTC3 ENSG00000182670       ENST00000354749       37073226
6055          TTC3 ENSG00000182670       ENST00000354749       37073226
6056          TTC3 ENSG00000182670       ENST00000354749       37073226
6057          TTC3 ENSG00000182670       ENST00000354749       37073226
6058          TTC3 ENSG00000182670       ENST00000354749       37073226
6059          TTC3 ENSG00000182670       ENST00000354749       37073226
6060          TTC3 ENSG00000182670       ENST00000354749       37073226
6061          TTC3 ENSG00000182670       ENST00000354749       37073226
6062          TTC3 ENSG00000182670       ENST00000354749       37073226
6063          TTC3 ENSG00000182670       ENST00000354749       37073226
6064          TTC3 ENSG00000182670       ENST00000354749       37073226
6065          TTC3 ENSG00000182670       ENST00000354749       37073226
6066          TTC3 ENSG00000182670       ENST00000354749       37073226
6067          TTC3 ENSG00000182670       ENST00000354749       37073226
6068          TTC3 ENSG00000182670       ENST00000354749       37073226
6069          TTC3 ENSG00000182670       ENST00000354749       37073226
6070          TTC3 ENSG00000182670       ENST00000354749       37073226
6071          TTC3 ENSG00000182670       ENST00000354749       37073226
6072          TTC3 ENSG00000182670       ENST00000354749       37073226
6073          TTC3 ENSG00000182670       ENST00000354749       37073226
6074          TTC3 ENSG00000182670       ENST00000354749       37073226
6075          TTC3 ENSG00000182670       ENST00000354749       37073226
6076          TTC3 ENSG00000182670       ENST00000354749       37073226
6077          TTC3 ENSG00000182670       ENST00000354749       37073226
6078          TTC3 ENSG00000182670       ENST00000354749       37073226
6079          TTC3 ENSG00000182670       ENST00000354749       37073226
6080          TTC3 ENSG00000182670       ENST00000354749       37073226
6081          TTC3 ENSG00000182670       ENST00000354749       37073226
6082          TTC3 ENSG00000182670       ENST00000354749       37073226
6083          TTC3 ENSG00000182670       ENST00000479930       37073226
6084          TTC3 ENSG00000182670       ENST00000479930       37073226
6085          TTC3 ENSG00000182670       ENST00000479930       37073226
6086          TTC3 ENSG00000182670       ENST00000479930       37073226
6087          TTC3 ENSG00000182670       ENST00000479930       37073226
6088          TTC3 ENSG00000182670       ENST00000479930       37073226
6089          TTC3 ENSG00000182670       ENST00000479930       37073226
6090          TTC3 ENSG00000182670       ENST00000479930       37073226
6091          TTC3 ENSG00000182670       ENST00000479930       37073226
6092          TTC3 ENSG00000182670       ENST00000479930       37073226
6093          TTC3 ENSG00000182670       ENST00000479930       37073226
6094          TTC3 ENSG00000182670       ENST00000479930       37073226
6095          TTC3 ENSG00000182670       ENST00000479930       37073226
6096          TTC3 ENSG00000182670       ENST00000479930       37073226
6097          TTC3 ENSG00000182670       ENST00000479930       37073226
6098          TTC3 ENSG00000182670       ENST00000479930       37073226
6099          TTC3 ENSG00000182670       ENST00000479930       37073226
6100          TTC3 ENSG00000182670       ENST00000479930       37073226
6101          TTC3 ENSG00000182670       ENST00000479930       37073226
6102          TTC3 ENSG00000182670       ENST00000479930       37073226
6103          TTC3 ENSG00000182670       ENST00000479930       37073226
6104          TTC3 ENSG00000182670       ENST00000479930       37073226
6105          TTC3 ENSG00000182670       ENST00000479930       37073226
6106          TTC3 ENSG00000182670       ENST00000479930       37073226
6107          TTC3 ENSG00000182670       ENST00000479930       37073226
6108          TTC3 ENSG00000182670       ENST00000479930       37073226
6109          TTC3 ENSG00000182670       ENST00000479930       37073226
6110          TTC3 ENSG00000182670       ENST00000479930       37073226
6111          TTC3 ENSG00000182670       ENST00000479930       37073226
6112          TTC3 ENSG00000182670       ENST00000479930       37073226
6113          TTC3 ENSG00000182670       ENST00000479930       37073226
6114          TTC3 ENSG00000182670       ENST00000479930       37073226
6115          TTC3 ENSG00000182670       ENST00000479930       37073226
6116          TTC3 ENSG00000182670       ENST00000479930       37073226
6117          TTC3 ENSG00000182670       ENST00000479930       37073226
6118          TTC3 ENSG00000182670       ENST00000479930       37073226
6119          TTC3 ENSG00000182670       ENST00000479930       37073226
6120          TTC3 ENSG00000182670       ENST00000479930       37073226
6121          TTC3 ENSG00000182670       ENST00000479930       37073226
6122          TTC3 ENSG00000182670       ENST00000479930       37073226
6123          TTC3 ENSG00000182670       ENST00000479930       37073226
6124          TTC3 ENSG00000182670       ENST00000479930       37073226
6125          TTC3 ENSG00000182670       ENST00000479930       37073226
6126          TTC3 ENSG00000182670       ENST00000479930       37073226
6127          TTC3 ENSG00000182670       ENST00000460328       37073226
6128          TTC3 ENSG00000182670       ENST00000460328       37073226
6129          TTC3 ENSG00000182670       ENST00000460328       37073226
6130          TTC3 ENSG00000182670       ENST00000460328       37073226
6131          TTC3 ENSG00000182670       ENST00000491952       37073226
6132          TTC3 ENSG00000182670       ENST00000491952       37073226
6133          TTC3 ENSG00000182670       ENST00000491952       37073226
6134          TTC3 ENSG00000182670       ENST00000476784       37073226
6135          TTC3 ENSG00000182670       ENST00000476784       37073226
6136          TTC3 ENSG00000182670       ENST00000476784       37073226
6137          TTC3 ENSG00000182670       ENST00000476784       37073226
6138          TTC3 ENSG00000182670       ENST00000476784       37073226
6139          TTC3 ENSG00000182670       ENST00000476784       37073226
6140          TTC3 ENSG00000182670       ENST00000476784       37073226
6141          TTC3 ENSG00000182670       ENST00000476784       37073226
6142          TTC3 ENSG00000182670       ENST00000476784       37073226
6143          TTC3 ENSG00000182670       ENST00000476784       37073226
6144          TTC3 ENSG00000182670       ENST00000476784       37073226
6145          TTC3 ENSG00000182670       ENST00000476784       37073226
6146          TTC3 ENSG00000182670       ENST00000476784       37073226
6147          TTC3 ENSG00000182670       ENST00000476784       37073226
6148          TTC3 ENSG00000182670       ENST00000476784       37073226
6149          TTC3 ENSG00000182670       ENST00000476784       37073226
6150          TTC3 ENSG00000182670       ENST00000476784       37073226
6151          TTC3 ENSG00000182670       ENST00000476784       37073226
6152          TTC3 ENSG00000182670       ENST00000476784       37073226
6153          TTC3 ENSG00000182670       ENST00000476784       37073226
6154          TTC3 ENSG00000182670       ENST00000476784       37073226
6155          TTC3 ENSG00000182670       ENST00000476784       37073226
6156          TTC3 ENSG00000182670       ENST00000476784       37073226
6157          TTC3 ENSG00000182670       ENST00000476784       37073226
6158          TTC3 ENSG00000182670       ENST00000476784       37073226
6159          TTC3 ENSG00000182670       ENST00000476784       37073226
6160          TTC3 ENSG00000182670       ENST00000476784       37073226
6161          TTC3 ENSG00000182670       ENST00000476784       37073226
6162          TTC3 ENSG00000182670       ENST00000476784       37073226
6163          TTC3 ENSG00000182670       ENST00000476784       37073226
6164          TTC3 ENSG00000182670       ENST00000476784       37073226
6165          TTC3 ENSG00000182670       ENST00000476784       37073226
6166          TTC3 ENSG00000182670       ENST00000476784       37073226
6167          TTC3 ENSG00000182670       ENST00000476784       37073226
6168          TTC3 ENSG00000182670       ENST00000476784       37073226
6169          TTC3 ENSG00000182670       ENST00000476784       37073226
6170          TTC3 ENSG00000182670       ENST00000414818       37073226
6171          TTC3 ENSG00000182670       ENST00000414818       37073226
6172          TTC3 ENSG00000182670       ENST00000414818       37073226
6173          TTC3 ENSG00000182670       ENST00000414818       37073226
6174          TTC3 ENSG00000182670       ENST00000414818       37073226
6175          TTC3 ENSG00000182670       ENST00000414818       37073226
6176          TTC3 ENSG00000182670       ENST00000411496       37073226
6177          TTC3 ENSG00000182670       ENST00000411496       37073226
6178          TTC3 ENSG00000182670       ENST00000411496       37073226
6179          TTC3 ENSG00000182670       ENST00000411496       37073226
6180          TTC3 ENSG00000182670       ENST00000411496       37073226
6181          TTC3 ENSG00000182670       ENST00000411496       37073226
6182          TTC3 ENSG00000182670       ENST00000411496       37073226
6183          TTC3 ENSG00000182670       ENST00000411496       37073226
6184          TTC3 ENSG00000182670       ENST00000487711       37073226
6185          TTC3 ENSG00000182670       ENST00000487711       37073226
6186          TTC3 ENSG00000182670       ENST00000487711       37073226
6187          TTC3 ENSG00000182670       ENST00000487711       37073226
6188          TTC3 ENSG00000182670       ENST00000487711       37073226
6189          TTC3 ENSG00000182670       ENST00000487711       37073226
6190          TTC3 ENSG00000182670       ENST00000487711       37073226
6191          TTC3 ENSG00000182670       ENST00000487711       37073226
6192          TTC3 ENSG00000182670       ENST00000472398       37073226
6193          TTC3 ENSG00000182670       ENST00000472398       37073226
6194          TTC3 ENSG00000182670       ENST00000472398       37073226
6195          TTC3 ENSG00000182670       ENST00000472398       37073226
6196          TTC3 ENSG00000182670       ENST00000472398       37073226
6197          TTC3 ENSG00000182670       ENST00000472398       37073226
6198          TTC3 ENSG00000182670       ENST00000472398       37073226
6199          TTC3 ENSG00000182670       ENST00000472398       37073226
6200          TTC3 ENSG00000182670       ENST00000472398       37073226
6201          TTC3 ENSG00000182670       ENST00000472398       37073226
6202          TTC3 ENSG00000182670       ENST00000469939       37073226
6203          TTC3 ENSG00000182670       ENST00000469939       37073226
6204          TTC3 ENSG00000182670       ENST00000469939       37073226
6205          TTC3 ENSG00000182670       ENST00000469939       37073226
6206          TTC3 ENSG00000182670       ENST00000469939       37073226
6207          TTC3 ENSG00000182670       ENST00000428693       37073226
6208          TTC3 ENSG00000182670       ENST00000428693       37073226
6209          TTC3 ENSG00000182670       ENST00000428693       37073226
6210          TTC3 ENSG00000182670       ENST00000428693       37073226
6211          TTC3 ENSG00000182670       ENST00000428693       37073226
6212          TTC3 ENSG00000182670       ENST00000428693       37073226
6213          TTC3 ENSG00000182670       ENST00000488522       37073226
6214          TTC3 ENSG00000182670       ENST00000488522       37073226
6215          TTC3 ENSG00000182670       ENST00000488522       37073226
6216          TTC3 ENSG00000182670       ENST00000488522       37073226
6217          TTC3 ENSG00000182670       ENST00000488522       37073226
6218          TTC3 ENSG00000182670       ENST00000355666       37073226
6219          TTC3 ENSG00000182670       ENST00000355666       37073226
6220          TTC3 ENSG00000182670       ENST00000355666       37073226
6221          TTC3 ENSG00000182670       ENST00000355666       37073226
6222          TTC3 ENSG00000182670       ENST00000355666       37073226
6223          TTC3 ENSG00000182670       ENST00000355666       37073226
6224          TTC3 ENSG00000182670       ENST00000355666       37073226
6225          TTC3 ENSG00000182670       ENST00000355666       37073226
6226          TTC3 ENSG00000182670       ENST00000355666       37073226
6227          TTC3 ENSG00000182670       ENST00000355666       37073226
6228          TTC3 ENSG00000182670       ENST00000355666       37073226
6229          TTC3 ENSG00000182670       ENST00000355666       37073226
6230          TTC3 ENSG00000182670       ENST00000355666       37073226
6231          TTC3 ENSG00000182670       ENST00000355666       37073226
6232          TTC3 ENSG00000182670       ENST00000355666       37073226
6233          TTC3 ENSG00000182670       ENST00000355666       37073226
6234          TTC3 ENSG00000182670       ENST00000355666       37073226
6235          TTC3 ENSG00000182670       ENST00000355666       37073226
6236          TTC3 ENSG00000182670       ENST00000355666       37073226
6237          TTC3 ENSG00000182670       ENST00000355666       37073226
6238          TTC3 ENSG00000182670       ENST00000355666       37073226
6239          TTC3 ENSG00000182670       ENST00000355666       37073226
6240          TTC3 ENSG00000182670       ENST00000355666       37073226
6241          TTC3 ENSG00000182670       ENST00000355666       37073226
6242          TTC3 ENSG00000182670       ENST00000355666       37073226
6243          TTC3 ENSG00000182670       ENST00000355666       37073226
6244          TTC3 ENSG00000182670       ENST00000355666       37073226
6245          TTC3 ENSG00000182670       ENST00000355666       37073226
6246          TTC3 ENSG00000182670       ENST00000355666       37073226
6247          TTC3 ENSG00000182670       ENST00000355666       37073226
6248          TTC3 ENSG00000182670       ENST00000355666       37073226
6249          TTC3 ENSG00000182670       ENST00000355666       37073226
6250          TTC3 ENSG00000182670       ENST00000355666       37073226
6251          TTC3 ENSG00000182670       ENST00000355666       37073226
6252          TTC3 ENSG00000182670       ENST00000355666       37073226
6253          TTC3 ENSG00000182670       ENST00000355666       37073226
6254          TTC3 ENSG00000182670       ENST00000355666       37073226
6255          TTC3 ENSG00000182670       ENST00000355666       37073226
6256          TTC3 ENSG00000182670       ENST00000355666       37073226
6257          TTC3 ENSG00000182670       ENST00000355666       37073226
6258          TTC3 ENSG00000182670       ENST00000355666       37073226
6259          TTC3 ENSG00000182670       ENST00000355666       37073226
6260          TTC3 ENSG00000182670       ENST00000355666       37073226
6261          TTC3 ENSG00000182670       ENST00000355666       37073226
6262          TTC3 ENSG00000182670       ENST00000355666       37073226
6263          TTC3 ENSG00000182670       ENST00000355666       37073226
6264               ENSG00000279998       ENST00000623678        6789592
6265               ENSG00000279998       ENST00000623678        6789592
6266               ENSG00000279998       ENST00000623678        6789592
6267               ENSG00000231125       ENST00000457162       29058073
6268               ENSG00000231125       ENST00000457162       29058073
6269          CCT8 ENSG00000156261       ENST00000432178       29055805
6270          CCT8 ENSG00000156261       ENST00000432178       29055805
6271          CCT8 ENSG00000156261       ENST00000432178       29055805
6272          CCT8 ENSG00000156261       ENST00000432178       29055805
6273          CCT8 ENSG00000156261       ENST00000496121       29055805
6274          CCT8 ENSG00000156261       ENST00000496121       29055805
6275          CCT8 ENSG00000156261       ENST00000496121       29055805
6276          CCT8 ENSG00000156261       ENST00000496121       29055805
6277          CCT8 ENSG00000156261       ENST00000496121       29055805
6278          CCT8 ENSG00000156261       ENST00000470450       29055805
6279          CCT8 ENSG00000156261       ENST00000470450       29055805
6280          CCT8 ENSG00000156261       ENST00000470450       29055805
6281          CCT8 ENSG00000156261       ENST00000470450       29055805
6282          CCT8 ENSG00000156261       ENST00000470450       29055805
6283          CCT8 ENSG00000156261       ENST00000470450       29055805
6284          CCT8 ENSG00000156261       ENST00000470450       29055805
6285          CCT8 ENSG00000156261       ENST00000470450       29055805
6286          CCT8 ENSG00000156261       ENST00000470450       29055805
6287          CCT8 ENSG00000156261       ENST00000470450       29055805
6288          CCT8 ENSG00000156261       ENST00000470450       29055805
6289          CCT8 ENSG00000156261       ENST00000470450       29055805
6290          CCT8 ENSG00000156261       ENST00000470450       29055805
6291          CCT8 ENSG00000156261       ENST00000470450       29055805
6292          CCT8 ENSG00000156261       ENST00000470450       29055805
6293          CCT8 ENSG00000156261       ENST00000286788       29055805
6294          CCT8 ENSG00000156261       ENST00000286788       29055805
6295          CCT8 ENSG00000156261       ENST00000286788       29055805
6296          CCT8 ENSG00000156261       ENST00000286788       29055805
6297          CCT8 ENSG00000156261       ENST00000286788       29055805
6298          CCT8 ENSG00000156261       ENST00000286788       29055805
6299          CCT8 ENSG00000156261       ENST00000286788       29055805
6300          CCT8 ENSG00000156261       ENST00000286788       29055805
6301          CCT8 ENSG00000156261       ENST00000286788       29055805
6302          CCT8 ENSG00000156261       ENST00000286788       29055805
6303          CCT8 ENSG00000156261       ENST00000286788       29055805
6304          CCT8 ENSG00000156261       ENST00000286788       29055805
6305          CCT8 ENSG00000156261       ENST00000286788       29055805
6306          CCT8 ENSG00000156261       ENST00000286788       29055805
6307          CCT8 ENSG00000156261       ENST00000286788       29055805
6308          CCT8 ENSG00000156261       ENST00000626972       29055805
6309          CCT8 ENSG00000156261       ENST00000626972       29055805
6310          CCT8 ENSG00000156261       ENST00000626972       29055805
6311          CCT8 ENSG00000156261       ENST00000626972       29055805
6312          CCT8 ENSG00000156261       ENST00000626972       29055805
6313          CCT8 ENSG00000156261       ENST00000626972       29055805
6314          CCT8 ENSG00000156261       ENST00000626972       29055805
6315          CCT8 ENSG00000156261       ENST00000626972       29055805
6316          CCT8 ENSG00000156261       ENST00000626972       29055805
6317          CCT8 ENSG00000156261       ENST00000626972       29055805
6318          CCT8 ENSG00000156261       ENST00000626972       29055805
6319          CCT8 ENSG00000156261       ENST00000626972       29055805
6320          CCT8 ENSG00000156261       ENST00000626972       29055805
6321          CCT8 ENSG00000156261       ENST00000626972       29055805
6322          CCT8 ENSG00000156261       ENST00000626972       29055805
6323          CCT8 ENSG00000156261       ENST00000626972       29055805
6324          CCT8 ENSG00000156261       ENST00000480359       29055805
6325          CCT8 ENSG00000156261       ENST00000480359       29055805
6326          CCT8 ENSG00000156261       ENST00000480359       29055805
6327          CCT8 ENSG00000156261       ENST00000475205       29055805
6328          CCT8 ENSG00000156261       ENST00000475205       29055805
6329          CCT8 ENSG00000156261       ENST00000475205       29055805
6330          CCT8 ENSG00000156261       ENST00000431234       29055805
6331          CCT8 ENSG00000156261       ENST00000431234       29055805
6332          CCT8 ENSG00000156261       ENST00000431234       29055805
6333          CCT8 ENSG00000156261       ENST00000431234       29055805
6334          CCT8 ENSG00000156261       ENST00000431234       29055805
6335          CCT8 ENSG00000156261       ENST00000431234       29055805
6336          CCT8 ENSG00000156261       ENST00000431234       29055805
6337          CCT8 ENSG00000156261       ENST00000431234       29055805
6338          CCT8 ENSG00000156261       ENST00000431234       29055805
6339          CCT8 ENSG00000156261       ENST00000431234       29055805
6340          CCT8 ENSG00000156261       ENST00000484403       29055805
6341          CCT8 ENSG00000156261       ENST00000484403       29055805
6342          CCT8 ENSG00000156261       ENST00000484403       29055805
6343          CCT8 ENSG00000156261       ENST00000484403       29055805
6344          CCT8 ENSG00000156261       ENST00000484403       29055805
6345          CCT8 ENSG00000156261       ENST00000484403       29055805
6346          CCT8 ENSG00000156261       ENST00000481059       29055805
6347          CCT8 ENSG00000156261       ENST00000481059       29055805
6348          CCT8 ENSG00000156261       ENST00000481059       29055805
6349          CCT8 ENSG00000156261       ENST00000481059       29055805
6350          CCT8 ENSG00000156261       ENST00000481059       29055805
6351          CCT8 ENSG00000156261       ENST00000481059       29055805
6352          CCT8 ENSG00000156261       ENST00000481059       29055805
6353          CCT8 ENSG00000156261       ENST00000494296       29055805
6354          CCT8 ENSG00000156261       ENST00000494296       29055805
6355          CCT8 ENSG00000156261       ENST00000494296       29055805
6356          CCT8 ENSG00000156261       ENST00000494296       29055805
6357          CCT8 ENSG00000156261       ENST00000540844       29055805
6358          CCT8 ENSG00000156261       ENST00000540844       29055805
6359          CCT8 ENSG00000156261       ENST00000540844       29055805
6360          CCT8 ENSG00000156261       ENST00000540844       29055805
6361          CCT8 ENSG00000156261       ENST00000540844       29055805
6362          CCT8 ENSG00000156261       ENST00000540844       29055805
6363          CCT8 ENSG00000156261       ENST00000540844       29055805
6364          CCT8 ENSG00000156261       ENST00000540844       29055805
6365          CCT8 ENSG00000156261       ENST00000540844       29055805
6366          CCT8 ENSG00000156261       ENST00000540844       29055805
6367          CCT8 ENSG00000156261       ENST00000540844       29055805
6368          CCT8 ENSG00000156261       ENST00000540844       29055805
6369          CCT8 ENSG00000156261       ENST00000540844       29055805
6370          CCT8 ENSG00000156261       ENST00000540844       29055805
6371               ENSG00000278955       ENST00000624937        6858539
6372               ENSG00000278955       ENST00000624937        6858539
6373               ENSG00000278955       ENST00000624937        6858539
6374        USF1P1 ENSG00000226501       ENST00000451645       33334571
6375        IFNAR1 ENSG00000142166       ENST00000493503       33324477
6376        IFNAR1 ENSG00000142166       ENST00000493503       33324477
6377        IFNAR1 ENSG00000142166       ENST00000270139       33324477
6378        IFNAR1 ENSG00000142166       ENST00000270139       33324477
6379        IFNAR1 ENSG00000142166       ENST00000270139       33324477
6380        IFNAR1 ENSG00000142166       ENST00000270139       33324477
6381        IFNAR1 ENSG00000142166       ENST00000270139       33324477
6382        IFNAR1 ENSG00000142166       ENST00000270139       33324477
6383        IFNAR1 ENSG00000142166       ENST00000270139       33324477
6384        IFNAR1 ENSG00000142166       ENST00000270139       33324477
6385        IFNAR1 ENSG00000142166       ENST00000270139       33324477
6386        IFNAR1 ENSG00000142166       ENST00000270139       33324477
6387        IFNAR1 ENSG00000142166       ENST00000270139       33324477
6388        IFNAR1 ENSG00000142166       ENST00000442071       33324477
6389        IFNAR1 ENSG00000142166       ENST00000442071       33324477
6390        IFNAR1 ENSG00000142166       ENST00000442071       33324477
6391        IFNAR1 ENSG00000142166       ENST00000442071       33324477
6392               ENSG00000280172       ENST00000623131        6897291
6393               ENSG00000279751       ENST00000623720        6904884
6394               ENSG00000279751       ENST00000623720        6904884
6395               ENSG00000279313       ENST00000623347        6994374
6396               ENSG00000279313       ENST00000623347        6994374
6397               ENSG00000279313       ENST00000623347        6994374
6398               ENSG00000280018       ENST00000623165        6986450
6399               ENSG00000280018       ENST00000623165        6986450
6400               ENSG00000280018       ENST00000623165        6986450
6401               ENSG00000280018       ENST00000623165        6986450
6402               ENSG00000280018       ENST00000623165        6986450
6403               ENSG00000280018       ENST00000624519        6986450
6404               ENSG00000280018       ENST00000624519        6986450
6405               ENSG00000280018       ENST00000624519        6986450
6406               ENSG00000280018       ENST00000624728        6986450
6407               ENSG00000280018       ENST00000624728        6986450
6408               ENSG00000280018       ENST00000624728        6986450
6409         LCA5L ENSG00000157578       ENST00000288350       39405844
6410         LCA5L ENSG00000157578       ENST00000288350       39405844
6411         LCA5L ENSG00000157578       ENST00000288350       39405844
6412         LCA5L ENSG00000157578       ENST00000288350       39405844
6413         LCA5L ENSG00000157578       ENST00000288350       39405844
6414         LCA5L ENSG00000157578       ENST00000288350       39405844
6415         LCA5L ENSG00000157578       ENST00000288350       39405844
6416         LCA5L ENSG00000157578       ENST00000288350       39405844
6417         LCA5L ENSG00000157578       ENST00000288350       39405844
6418         LCA5L ENSG00000157578       ENST00000288350       39405844
6419         LCA5L ENSG00000157578       ENST00000288350       39405844
6420         LCA5L ENSG00000157578       ENST00000358268       39405844
6421         LCA5L ENSG00000157578       ENST00000358268       39405844
6422         LCA5L ENSG00000157578       ENST00000358268       39405844
6423         LCA5L ENSG00000157578       ENST00000358268       39405844
6424         LCA5L ENSG00000157578       ENST00000358268       39405844
6425         LCA5L ENSG00000157578       ENST00000358268       39405844
6426         LCA5L ENSG00000157578       ENST00000358268       39405844
6427         LCA5L ENSG00000157578       ENST00000358268       39405844
6428         LCA5L ENSG00000157578       ENST00000358268       39405844
6429         LCA5L ENSG00000157578       ENST00000358268       39405844
6430         LCA5L ENSG00000157578       ENST00000495240       39405844
6431         LCA5L ENSG00000157578       ENST00000495240       39405844
6432         LCA5L ENSG00000157578       ENST00000495240       39405844
6433         LCA5L ENSG00000157578       ENST00000495240       39405844
6434         LCA5L ENSG00000157578       ENST00000484878       39405844
6435         LCA5L ENSG00000157578       ENST00000484878       39405844
6436         LCA5L ENSG00000157578       ENST00000484878       39405844
6437         LCA5L ENSG00000157578       ENST00000484878       39405844
6438         LCA5L ENSG00000157578       ENST00000484878       39405844
6439         LCA5L ENSG00000157578       ENST00000484878       39405844
6440         LCA5L ENSG00000157578       ENST00000484878       39405844
6441         LCA5L ENSG00000157578       ENST00000484878       39405844
6442         LCA5L ENSG00000157578       ENST00000485895       39405844
6443         LCA5L ENSG00000157578       ENST00000485895       39405844
6444         LCA5L ENSG00000157578       ENST00000485895       39405844
6445         LCA5L ENSG00000157578       ENST00000485895       39405844
6446         LCA5L ENSG00000157578       ENST00000485895       39405844
6447         LCA5L ENSG00000157578       ENST00000491625       39405844
6448         LCA5L ENSG00000157578       ENST00000491625       39405844
6449         LCA5L ENSG00000157578       ENST00000491625       39405844
6450         LCA5L ENSG00000157578       ENST00000491625       39405844
6451         LCA5L ENSG00000157578       ENST00000459939       39405844
6452         LCA5L ENSG00000157578       ENST00000459939       39405844
6453         LCA5L ENSG00000157578       ENST00000459939       39405844
6454         LCA5L ENSG00000157578       ENST00000459939       39405844
6455         LCA5L ENSG00000157578       ENST00000490184       39405844
6456         LCA5L ENSG00000157578       ENST00000490184       39405844
6457         LCA5L ENSG00000157578       ENST00000490184       39405844
6458         LCA5L ENSG00000157578       ENST00000490184       39405844
6459         LCA5L ENSG00000157578       ENST00000490184       39405844
6460         LCA5L ENSG00000157578       ENST00000490184       39405844
6461         LCA5L ENSG00000157578       ENST00000490184       39405844
6462         LCA5L ENSG00000157578       ENST00000418018       39405844
6463         LCA5L ENSG00000157578       ENST00000418018       39405844
6464         LCA5L ENSG00000157578       ENST00000418018       39405844
6465         LCA5L ENSG00000157578       ENST00000418018       39405844
6466         LCA5L ENSG00000157578       ENST00000418018       39405844
6467         LCA5L ENSG00000157578       ENST00000418018       39405844
6468         LCA5L ENSG00000157578       ENST00000466954       39405844
6469         LCA5L ENSG00000157578       ENST00000466954       39405844
6470         LCA5L ENSG00000157578       ENST00000466954       39405844
6471         LCA5L ENSG00000157578       ENST00000466954       39405844
6472         LCA5L ENSG00000157578       ENST00000466954       39405844
6473         LCA5L ENSG00000157578       ENST00000448288       39405844
6474         LCA5L ENSG00000157578       ENST00000448288       39405844
6475         LCA5L ENSG00000157578       ENST00000448288       39405844
6476         LCA5L ENSG00000157578       ENST00000448288       39405844
6477         LCA5L ENSG00000157578       ENST00000434281       39405844
6478         LCA5L ENSG00000157578       ENST00000434281       39405844
6479         LCA5L ENSG00000157578       ENST00000434281       39405844
6480         LCA5L ENSG00000157578       ENST00000434281       39405844
6481         LCA5L ENSG00000157578       ENST00000438404       39405844
6482         LCA5L ENSG00000157578       ENST00000438404       39405844
6483         LCA5L ENSG00000157578       ENST00000438404       39405844
6484         LCA5L ENSG00000157578       ENST00000438404       39405844
6485         LCA5L ENSG00000157578       ENST00000438404       39405844
6486         LCA5L ENSG00000157578       ENST00000438404       39405844
6487         LCA5L ENSG00000157578       ENST00000411566       39405844
6488         LCA5L ENSG00000157578       ENST00000411566       39405844
6489         LCA5L ENSG00000157578       ENST00000411566       39405844
6490         LCA5L ENSG00000157578       ENST00000411566       39405844
6491         LCA5L ENSG00000157578       ENST00000468009       39405844
6492         LCA5L ENSG00000157578       ENST00000468009       39405844
6493         LCA5L ENSG00000157578       ENST00000468009       39405844
6494         LCA5L ENSG00000157578       ENST00000415863       39405844
6495         LCA5L ENSG00000157578       ENST00000415863       39405844
6496         LCA5L ENSG00000157578       ENST00000415863       39405844
6497         LCA5L ENSG00000157578       ENST00000415863       39405844
6498         LCA5L ENSG00000157578       ENST00000415863       39405844
6499         LCA5L ENSG00000157578       ENST00000415863       39405844
6500         LCA5L ENSG00000157578       ENST00000426783       39405844
6501         LCA5L ENSG00000157578       ENST00000426783       39405844
6502         LCA5L ENSG00000157578       ENST00000426783       39405844
6503         LCA5L ENSG00000157578       ENST00000426783       39405844
6504         LCA5L ENSG00000157578       ENST00000426783       39405844
6505         LCA5L ENSG00000157578       ENST00000426783       39405844
6506         LCA5L ENSG00000157578       ENST00000456017       39405844
6507         LCA5L ENSG00000157578       ENST00000456017       39405844
6508         LCA5L ENSG00000157578       ENST00000456017       39405844
6509         LCA5L ENSG00000157578       ENST00000456017       39405844
6510         LCA5L ENSG00000157578       ENST00000456017       39405844
6511         LCA5L ENSG00000157578       ENST00000451131       39405844
6512         LCA5L ENSG00000157578       ENST00000451131       39405844
6513         LCA5L ENSG00000157578       ENST00000451131       39405844
6514         LCA5L ENSG00000157578       ENST00000451131       39405844
6515         LCA5L ENSG00000157578       ENST00000451131       39405844
6516         LCA5L ENSG00000157578       ENST00000451131       39405844
6517         LCA5L ENSG00000157578       ENST00000480612       39405844
6518         LCA5L ENSG00000157578       ENST00000480612       39405844
6519         LCA5L ENSG00000157578       ENST00000380671       39405844
6520         LCA5L ENSG00000157578       ENST00000380671       39405844
6521         LCA5L ENSG00000157578       ENST00000380671       39405844
6522         LCA5L ENSG00000157578       ENST00000380671       39405844
6523         LCA5L ENSG00000157578       ENST00000380671       39405844
6524         LCA5L ENSG00000157578       ENST00000380671       39405844
6525         LCA5L ENSG00000157578       ENST00000380671       39405844
6526               ENSG00000279477       ENST00000623518        7003248
6527               ENSG00000279477       ENST00000623518        7003248
6528               ENSG00000279477       ENST00000623518        7003248
6529               ENSG00000279477       ENST00000623518        7003248
6530               ENSG00000279477       ENST00000623518        7003248
6531               ENSG00000279477       ENST00000623518        7003248
6532               ENSG00000279477       ENST00000623518        7003248
6533               ENSG00000279477       ENST00000623518        7003248
6534               ENSG00000279477       ENST00000623518        7003248
6535    IL10RB-AS1 ENSG00000223799       ENST00000411998       33263873
6536    IL10RB-AS1 ENSG00000223799       ENST00000411998       33263873
6537         USP16 ENSG00000156256       ENST00000485067       29024629
6538         USP16 ENSG00000156256       ENST00000485067       29024629
6539         USP16 ENSG00000156256       ENST00000399973       29024629
6540         USP16 ENSG00000156256       ENST00000399973       29024629
6541         USP16 ENSG00000156256       ENST00000399973       29024629
6542         USP16 ENSG00000156256       ENST00000399973       29024629
6543         USP16 ENSG00000156256       ENST00000399973       29024629
6544         USP16 ENSG00000156256       ENST00000399976       29024629
6545         USP16 ENSG00000156256       ENST00000399976       29024629
6546         USP16 ENSG00000156256       ENST00000399976       29024629
6547         USP16 ENSG00000156256       ENST00000399976       29024629
6548         USP16 ENSG00000156256       ENST00000399976       29024629
6549         USP16 ENSG00000156256       ENST00000399976       29024629
6550         USP16 ENSG00000156256       ENST00000399976       29024629
6551         USP16 ENSG00000156256       ENST00000399976       29024629
6552         USP16 ENSG00000156256       ENST00000399976       29024629
6553         USP16 ENSG00000156256       ENST00000399976       29024629
6554         USP16 ENSG00000156256       ENST00000399976       29024629
6555         USP16 ENSG00000156256       ENST00000399976       29024629
6556         USP16 ENSG00000156256       ENST00000399976       29024629
6557         USP16 ENSG00000156256       ENST00000399976       29024629
6558         USP16 ENSG00000156256       ENST00000399976       29024629
6559         USP16 ENSG00000156256       ENST00000399976       29024629
6560         USP16 ENSG00000156256       ENST00000399976       29024629
6561         USP16 ENSG00000156256       ENST00000399976       29024629
6562         USP16 ENSG00000156256       ENST00000474835       29024629
6563         USP16 ENSG00000156256       ENST00000474835       29024629
6564         USP16 ENSG00000156256       ENST00000474835       29024629
6565         USP16 ENSG00000156256       ENST00000474835       29024629
6566         USP16 ENSG00000156256       ENST00000474835       29024629
6567         USP16 ENSG00000156256       ENST00000474835       29024629
6568         USP16 ENSG00000156256       ENST00000474835       29024629
6569         USP16 ENSG00000156256       ENST00000474835       29024629
6570         USP16 ENSG00000156256       ENST00000474835       29024629
6571         USP16 ENSG00000156256       ENST00000474835       29024629
6572         USP16 ENSG00000156256       ENST00000474835       29024629
6573         USP16 ENSG00000156256       ENST00000474835       29024629
6574         USP16 ENSG00000156256       ENST00000474835       29024629
6575         USP16 ENSG00000156256       ENST00000474835       29024629
6576         USP16 ENSG00000156256       ENST00000474835       29024629
6577         USP16 ENSG00000156256       ENST00000474835       29024629
6578         USP16 ENSG00000156256       ENST00000474835       29024629
6579         USP16 ENSG00000156256       ENST00000334352       29024629
6580         USP16 ENSG00000156256       ENST00000334352       29024629
6581         USP16 ENSG00000156256       ENST00000334352       29024629
6582         USP16 ENSG00000156256       ENST00000334352       29024629
6583         USP16 ENSG00000156256       ENST00000334352       29024629
6584         USP16 ENSG00000156256       ENST00000334352       29024629
6585         USP16 ENSG00000156256       ENST00000334352       29024629
6586         USP16 ENSG00000156256       ENST00000334352       29024629
6587         USP16 ENSG00000156256       ENST00000334352       29024629
6588         USP16 ENSG00000156256       ENST00000334352       29024629
6589         USP16 ENSG00000156256       ENST00000334352       29024629
6590         USP16 ENSG00000156256       ENST00000334352       29024629
6591         USP16 ENSG00000156256       ENST00000334352       29024629
6592         USP16 ENSG00000156256       ENST00000334352       29024629
6593         USP16 ENSG00000156256       ENST00000334352       29024629
6594         USP16 ENSG00000156256       ENST00000334352       29024629
6595         USP16 ENSG00000156256       ENST00000334352       29024629
6596         USP16 ENSG00000156256       ENST00000334352       29024629
6597         USP16 ENSG00000156256       ENST00000334352       29024629
6598         USP16 ENSG00000156256       ENST00000399975       29024629
6599         USP16 ENSG00000156256       ENST00000399975       29024629
6600         USP16 ENSG00000156256       ENST00000399975       29024629
6601         USP16 ENSG00000156256       ENST00000399975       29024629
6602         USP16 ENSG00000156256       ENST00000399975       29024629
6603         USP16 ENSG00000156256       ENST00000399975       29024629
6604         USP16 ENSG00000156256       ENST00000399975       29024629
6605         USP16 ENSG00000156256       ENST00000399975       29024629
6606         USP16 ENSG00000156256       ENST00000399975       29024629
6607         USP16 ENSG00000156256       ENST00000399975       29024629
6608         USP16 ENSG00000156256       ENST00000399975       29024629
6609         USP16 ENSG00000156256       ENST00000399975       29024629
6610         USP16 ENSG00000156256       ENST00000399975       29024629
6611         USP16 ENSG00000156256       ENST00000399975       29024629
6612         USP16 ENSG00000156256       ENST00000399975       29024629
6613         USP16 ENSG00000156256       ENST00000399975       29024629
6614         USP16 ENSG00000156256       ENST00000399975       29024629
6615         USP16 ENSG00000156256       ENST00000399975       29024629
6616      C21orf62 ENSG00000205929       ENST00000490358       32793564
6617      C21orf62 ENSG00000205929       ENST00000490358       32793564
6618      C21orf62 ENSG00000205929       ENST00000490358       32793564
6619      C21orf62 ENSG00000205929       ENST00000487113       32793564
6620      C21orf62 ENSG00000205929       ENST00000487113       32793564
6621      C21orf62 ENSG00000205929       ENST00000382373       32793564
6622      C21orf62 ENSG00000205929       ENST00000382373       32793564
6623      C21orf62 ENSG00000205929       ENST00000382373       32793564
6624      C21orf62 ENSG00000205929       ENST00000479548       32793564
6625      C21orf62 ENSG00000205929       ENST00000479548       32793564
6626      C21orf62 ENSG00000205929       ENST00000479548       32793564
6627      C21orf62 ENSG00000205929       ENST00000479548       32793564
6628       PSMD4P1 ENSG00000223741       ENST00000433951       36485983
6629       PSMD4P1 ENSG00000223741       ENST00000433951       36485983
6630       ZNF299P ENSG00000219368       ENST00000406845       23090028
6631      MAPK6PS2 ENSG00000223488       ENST00000379571       22436290
6632     LINC00317 ENSG00000238265       ENST00000419069       21723293
6633     LINC00317 ENSG00000238265       ENST00000419069       21723293
6634     LINC00317 ENSG00000238265       ENST00000419069       21723293
6635          PWP2 ENSG00000241945       ENST00000291576       44107290
6636          PWP2 ENSG00000241945       ENST00000291576       44107290
6637          PWP2 ENSG00000241945       ENST00000291576       44107290
6638          PWP2 ENSG00000241945       ENST00000291576       44107290
6639          PWP2 ENSG00000241945       ENST00000291576       44107290
6640          PWP2 ENSG00000241945       ENST00000291576       44107290
6641          PWP2 ENSG00000241945       ENST00000291576       44107290
6642          PWP2 ENSG00000241945       ENST00000291576       44107290
6643          PWP2 ENSG00000241945       ENST00000291576       44107290
6644          PWP2 ENSG00000241945       ENST00000291576       44107290
6645          PWP2 ENSG00000241945       ENST00000291576       44107290
6646          PWP2 ENSG00000241945       ENST00000291576       44107290
6647          PWP2 ENSG00000241945       ENST00000291576       44107290
6648          PWP2 ENSG00000241945       ENST00000291576       44107290
6649          PWP2 ENSG00000241945       ENST00000291576       44107290
6650          PWP2 ENSG00000241945       ENST00000291576       44107290
6651          PWP2 ENSG00000241945       ENST00000291576       44107290
6652          PWP2 ENSG00000241945       ENST00000291576       44107290
6653          PWP2 ENSG00000241945       ENST00000291576       44107290
6654          PWP2 ENSG00000241945       ENST00000291576       44107290
6655          PWP2 ENSG00000241945       ENST00000291576       44107290
6656          PWP2 ENSG00000241945       ENST00000456705       44107290
6657          PWP2 ENSG00000241945       ENST00000456705       44107290
6658          PWP2 ENSG00000241945       ENST00000456705       44107290
6659          PWP2 ENSG00000241945       ENST00000456705       44107290
6660          PWP2 ENSG00000241945       ENST00000456705       44107290
6661          PWP2 ENSG00000241945       ENST00000456705       44107290
6662          PWP2 ENSG00000241945       ENST00000486126       44107290
6663          PWP2 ENSG00000241945       ENST00000486126       44107290
6664          PWP2 ENSG00000241945       ENST00000486126       44107290
6665          PWP2 ENSG00000241945       ENST00000486126       44107290
6666          PWP2 ENSG00000241945       ENST00000471490       44107290
6667          PWP2 ENSG00000241945       ENST00000471490       44107290
6668          PWP2 ENSG00000241945       ENST00000471490       44107290
6669          PWP2 ENSG00000241945       ENST00000471490       44107290
6670          PWP2 ENSG00000241945       ENST00000471490       44107290
6671          PWP2 ENSG00000241945       ENST00000471490       44107290
6672          PWP2 ENSG00000241945       ENST00000494310       44107290
6673          PWP2 ENSG00000241945       ENST00000494310       44107290
6674          PWP2 ENSG00000241945       ENST00000494310       44107290
6675          PWP2 ENSG00000241945       ENST00000494310       44107290
6676          PWP2 ENSG00000241945       ENST00000494310       44107290
6677          PWP2 ENSG00000241945       ENST00000494310       44107290
6678          PWP2 ENSG00000241945       ENST00000476948       44107290
6679          PWP2 ENSG00000241945       ENST00000476948       44107290
6680          PWP2 ENSG00000241945       ENST00000476948       44107290
6681               ENSG00000229289       ENST00000424219       19130523
6682               ENSG00000229289       ENST00000424219       19130523
6683      SLC6A6P1 ENSG00000226818       ENST00000413933       19244543
6684       TMEM50B ENSG00000142188       ENST00000484377       33432485
6685       TMEM50B ENSG00000142188       ENST00000484377       33432485
6686       TMEM50B ENSG00000142188       ENST00000484377       33432485
6687       TMEM50B ENSG00000142188       ENST00000484377       33432485
6688       TMEM50B ENSG00000142188       ENST00000420455       33432485
6689       TMEM50B ENSG00000142188       ENST00000420455       33432485
6690       TMEM50B ENSG00000142188       ENST00000420455       33432485
6691       TMEM50B ENSG00000142188       ENST00000420455       33432485
6692       TMEM50B ENSG00000142188       ENST00000420455       33432485
6693       TMEM50B ENSG00000142188       ENST00000420455       33432485
6694       TMEM50B ENSG00000142188       ENST00000420455       33432485
6695       TMEM50B ENSG00000142188       ENST00000420455       33432485
6696       TMEM50B ENSG00000142188       ENST00000420455       33432485
6697       TMEM50B ENSG00000142188       ENST00000470682       33432485
6698       TMEM50B ENSG00000142188       ENST00000470682       33432485
6699       TMEM50B ENSG00000142188       ENST00000470682       33432485
6700       TMEM50B ENSG00000142188       ENST00000470682       33432485
6701       TMEM50B ENSG00000142188       ENST00000468874       33432485
6702       TMEM50B ENSG00000142188       ENST00000468874       33432485
6703       TMEM50B ENSG00000142188       ENST00000468874       33432485
6704       TMEM50B ENSG00000142188       ENST00000468874       33432485
6705       TMEM50B ENSG00000142188       ENST00000542230       33432485
6706       TMEM50B ENSG00000142188       ENST00000542230       33432485
6707       TMEM50B ENSG00000142188       ENST00000542230       33432485
6708       TMEM50B ENSG00000142188       ENST00000542230       33432485
6709       TMEM50B ENSG00000142188       ENST00000542230       33432485
6710       TMEM50B ENSG00000142188       ENST00000542230       33432485
6711       TMEM50B ENSG00000142188       ENST00000542230       33432485
6712       TMEM50B ENSG00000142188       ENST00000441128       33432485
6713       TMEM50B ENSG00000142188       ENST00000441128       33432485
6714       TMEM50B ENSG00000142188       ENST00000441128       33432485
6715       TMEM50B ENSG00000142188       ENST00000441128       33432485
6716       TMEM50B ENSG00000142188       ENST00000442441       33432485
6717       TMEM50B ENSG00000142188       ENST00000442441       33432485
6718       TMEM50B ENSG00000142188       ENST00000442441       33432485
6719       TMEM50B ENSG00000142188       ENST00000442441       33432485
6720       TMEM50B ENSG00000142188       ENST00000442441       33432485
6721       TMEM50B ENSG00000142188       ENST00000442441       33432485
6722       TMEM50B ENSG00000142188       ENST00000442441       33432485
6723       TMEM50B ENSG00000142188       ENST00000442441       33432485
6724       TMEM50B ENSG00000142188       ENST00000474272       33432485
6725       TMEM50B ENSG00000142188       ENST00000474272       33432485
6726       TMEM50B ENSG00000142188       ENST00000432504       33432485
6727       TMEM50B ENSG00000142188       ENST00000432504       33432485
6728       TMEM50B ENSG00000142188       ENST00000432504       33432485
6729       TMEM50B ENSG00000142188       ENST00000432504       33432485
6730       TMEM50B ENSG00000142188       ENST00000432504       33432485
6731       TMEM50B ENSG00000142188       ENST00000459909       33432485
6732       TMEM50B ENSG00000142188       ENST00000459909       33432485
6733         OLIG1 ENSG00000184221       ENST00000382348       33070144
6734         OLIG1 ENSG00000184221       ENST00000426947       33070144
6735         OLIG1 ENSG00000184221       ENST00000426947       33070144
6736         OLIG1 ENSG00000184221       ENST00000498799       33070144
6737         OLIG1 ENSG00000184221       ENST00000498799       33070144
6738               ENSG00000232360       ENST00000427911       32844367
6739               ENSG00000232360       ENST00000427911       32844367
6740               ENSG00000279709       ENST00000623377        6309161
6741               ENSG00000279709       ENST00000623377        6309161
6742               ENSG00000279709       ENST00000623377        6309161
6743               ENSG00000279709       ENST00000623377        6309161
6744               ENSG00000279709       ENST00000623377        6309161
6745               ENSG00000279709       ENST00000623377        6309161
6746          HLCS ENSG00000159267       ENST00000336648       36750888
6747          HLCS ENSG00000159267       ENST00000336648       36750888
6748          HLCS ENSG00000159267       ENST00000336648       36750888
6749          HLCS ENSG00000159267       ENST00000336648       36750888
6750          HLCS ENSG00000159267       ENST00000336648       36750888
6751          HLCS ENSG00000159267       ENST00000336648       36750888
6752          HLCS ENSG00000159267       ENST00000336648       36750888
6753          HLCS ENSG00000159267       ENST00000336648       36750888
6754          HLCS ENSG00000159267       ENST00000336648       36750888
6755          HLCS ENSG00000159267       ENST00000336648       36750888
6756          HLCS ENSG00000159267       ENST00000336648       36750888
6757          HLCS ENSG00000159267       ENST00000336648       36750888
6758          HLCS ENSG00000159267       ENST00000399120       36750888
6759          HLCS ENSG00000159267       ENST00000399120       36750888
6760          HLCS ENSG00000159267       ENST00000399120       36750888
6761          HLCS ENSG00000159267       ENST00000399120       36750888
6762          HLCS ENSG00000159267       ENST00000399120       36750888
6763          HLCS ENSG00000159267       ENST00000399120       36750888
6764          HLCS ENSG00000159267       ENST00000399120       36750888
6765          HLCS ENSG00000159267       ENST00000399120       36750888
6766          HLCS ENSG00000159267       ENST00000399120       36750888
6767          HLCS ENSG00000159267       ENST00000399120       36750888
6768          HLCS ENSG00000159267       ENST00000399120       36750888
6769          HLCS ENSG00000159267       ENST00000399120       36750888
6770          HLCS ENSG00000159267       ENST00000482273       36750888
6771          HLCS ENSG00000159267       ENST00000482273       36750888
6772          HLCS ENSG00000159267       ENST00000448340       36750888
6773          HLCS ENSG00000159267       ENST00000448340       36750888
6774          HLCS ENSG00000159267       ENST00000448340       36750888
6775          HLCS ENSG00000159267       ENST00000448340       36750888
6776          HLCS ENSG00000159267       ENST00000419461       36750888
6777          HLCS ENSG00000159267       ENST00000419461       36750888
6778          HLCS ENSG00000159267       ENST00000419461       36750888
6779          HLCS ENSG00000159267       ENST00000419461       36750888
6780          HLCS ENSG00000159267       ENST00000427746       36750888
6781          HLCS ENSG00000159267       ENST00000427746       36750888
6782          HLCS ENSG00000159267       ENST00000427746       36750888
6783          HLCS ENSG00000159267       ENST00000427746       36750888
6784          HLCS ENSG00000159267       ENST00000427746       36750888
6785          HLCS ENSG00000159267       ENST00000612277       36750888
6786          HLCS ENSG00000159267       ENST00000612277       36750888
6787          HLCS ENSG00000159267       ENST00000612277       36750888
6788          HLCS ENSG00000159267       ENST00000612277       36750888
6789          HLCS ENSG00000159267       ENST00000612277       36750888
6790          HLCS ENSG00000159267       ENST00000612277       36750888
6791          HLCS ENSG00000159267       ENST00000612277       36750888
6792          HLCS ENSG00000159267       ENST00000612277       36750888
6793          HLCS ENSG00000159267       ENST00000612277       36750888
6794          HLCS ENSG00000159267       ENST00000612277       36750888
6795          HLCS ENSG00000159267       ENST00000612277       36750888
6796          HLCS ENSG00000159267       ENST00000612277       36750888
6797               ENSG00000224269       ENST00000430607       36698773
6798               ENSG00000224269       ENST00000430607       36698773
6799               ENSG00000280013       ENST00000623928        6008604
6800               ENSG00000278884       ENST00000625184        7020599
6801               ENSG00000278884       ENST00000625184        7020599
6802        RWDD2B ENSG00000156253       ENST00000493196       29004384
6803        RWDD2B ENSG00000156253       ENST00000493196       29004384
6804        RWDD2B ENSG00000156253       ENST00000493196       29004384
6805        RWDD2B ENSG00000156253       ENST00000493196       29004384
6806        RWDD2B ENSG00000156253       ENST00000493196       29004384
6807        RWDD2B ENSG00000156253       ENST00000486719       29004384
6808        RWDD2B ENSG00000156253       ENST00000486719       29004384
6809        RWDD2B ENSG00000156253       ENST00000486719       29004384
6810        RWDD2B ENSG00000156253       ENST00000486719       29004384
6811        RWDD2B ENSG00000156253       ENST00000486719       29004384
6812        RWDD2B ENSG00000156253       ENST00000486719       29004384
6813        RWDD2B ENSG00000156253       ENST00000286777       29004384
6814        RWDD2B ENSG00000156253       ENST00000286777       29004384
6815        RWDD2B ENSG00000156253       ENST00000286777       29004384
6816        RWDD2B ENSG00000156253       ENST00000286777       29004384
6817        RWDD2B ENSG00000156253       ENST00000472184       29004384
6818        RWDD2B ENSG00000156253       ENST00000472184       29004384
6819        RWDD2B ENSG00000156253       ENST00000472184       29004384
6820        RWDD2B ENSG00000156253       ENST00000472184       29004384
6821        RWDD2B ENSG00000156253       ENST00000466746       29004384
6822        RWDD2B ENSG00000156253       ENST00000466746       29004384
6823        RWDD2B ENSG00000156253       ENST00000481411       29004384
6824        RWDD2B ENSG00000156253       ENST00000481411       29004384
6825        RWDD2B ENSG00000156253       ENST00000481411       29004384
6826        RWDD2B ENSG00000156253       ENST00000471269       29004384
6827        RWDD2B ENSG00000156253       ENST00000471269       29004384
6828        RWDD2B ENSG00000156253       ENST00000471269       29004384
6829        RWDD2B ENSG00000156253       ENST00000471269       29004384
6830        RWDD2B ENSG00000156253       ENST00000471269       29004384
6831       RIPPLY3 ENSG00000183145       ENST00000485272       37006150
6832       RIPPLY3 ENSG00000183145       ENST00000485272       37006150
6833       RIPPLY3 ENSG00000183145       ENST00000485272       37006150
6834       RIPPLY3 ENSG00000183145       ENST00000485272       37006150
6835       RIPPLY3 ENSG00000183145       ENST00000490393       37006150
6836       RIPPLY3 ENSG00000183145       ENST00000490393       37006150
6837       RIPPLY3 ENSG00000183145       ENST00000490393       37006150
6838       RIPPLY3 ENSG00000183145       ENST00000329553       37006150
6839       RIPPLY3 ENSG00000183145       ENST00000329553       37006150
6840       RIPPLY3 ENSG00000183145       ENST00000329553       37006150
6841       RIPPLY3 ENSG00000183145       ENST00000329553       37006150
6842          SIM2 ENSG00000159263       ENST00000460783       36699133
6843          SIM2 ENSG00000159263       ENST00000460783       36699133
6844          SIM2 ENSG00000159263       ENST00000481185       36699133
6845          SIM2 ENSG00000159263       ENST00000481185       36699133
6846          SIM2 ENSG00000159263       ENST00000481185       36699133
6847          SIM2 ENSG00000159263       ENST00000481185       36699133
6848          SIM2 ENSG00000159263       ENST00000481185       36699133
6849          SIM2 ENSG00000159263       ENST00000481185       36699133
6850          SIM2 ENSG00000159263       ENST00000481185       36699133
6851          SIM2 ENSG00000159263       ENST00000481185       36699133
6852          SIM2 ENSG00000159263       ENST00000481185       36699133
6853          SIM2 ENSG00000159263       ENST00000481185       36699133
6854          SIM2 ENSG00000159263       ENST00000290399       36699133
6855          SIM2 ENSG00000159263       ENST00000290399       36699133
6856          SIM2 ENSG00000159263       ENST00000290399       36699133
6857          SIM2 ENSG00000159263       ENST00000290399       36699133
6858          SIM2 ENSG00000159263       ENST00000290399       36699133
6859          SIM2 ENSG00000159263       ENST00000290399       36699133
6860          SIM2 ENSG00000159263       ENST00000290399       36699133
6861          SIM2 ENSG00000159263       ENST00000290399       36699133
6862          SIM2 ENSG00000159263       ENST00000290399       36699133
6863          SIM2 ENSG00000159263       ENST00000290399       36699133
6864          SIM2 ENSG00000159263       ENST00000290399       36699133
6865          SIM2 ENSG00000159263       ENST00000431229       36699133
6866          SIM2 ENSG00000159263       ENST00000431229       36699133
6867          SIM2 ENSG00000159263       ENST00000431229       36699133
6868          SIM2 ENSG00000159263       ENST00000431229       36699133
6869          SIM2 ENSG00000159263       ENST00000431229       36699133
6870          SIM2 ENSG00000159263       ENST00000431229       36699133
6871          SIM2 ENSG00000159263       ENST00000431229       36699133
6872          SIM2 ENSG00000159263       ENST00000431229       36699133
6873          SIM2 ENSG00000159263       ENST00000431229       36699133
6874          SIM2 ENSG00000159263       ENST00000431229       36699133
6875          SIM2 ENSG00000159263       ENST00000483178       36699133
6876          SIM2 ENSG00000159263       ENST00000483178       36699133
6877               ENSG00000231324       ENST00000457669       36632681
6878               ENSG00000231324       ENST00000457669       36632681
6879               ENSG00000274559       ENST00000464664        5972924
6880               ENSG00000226771       ENST00000425058       21223295
6881               ENSG00000226771       ENST00000425058       21223295
6882               ENSG00000229336       ENST00000282964       19739709
6883       RPL37P4 ENSG00000230198       ENST00000448908       19593841
6884     MIR548XHG ENSG00000224141       ENST00000437492       18561265
6885     MIR548XHG ENSG00000224141       ENST00000437492       18561265
6886     MIR548XHG ENSG00000224141       ENST00000437492       18561265
6887     MIR548XHG ENSG00000224141       ENST00000437492       18561265
6888     MIR548XHG ENSG00000224141       ENST00000355189       18561265
6889     MIR548XHG ENSG00000224141       ENST00000355189       18561265
6890     MIR548XHG ENSG00000224141       ENST00000355189       18561265
6891     MIR548XHG ENSG00000224141       ENST00000355189       18561265
6892     MIR548XHG ENSG00000224141       ENST00000355189       18561265
6893     MIR548XHG ENSG00000224141       ENST00000414582       18561265
6894     MIR548XHG ENSG00000224141       ENST00000414582       18561265
6895     MIR548XHG ENSG00000224141       ENST00000414582       18561265
6896               ENSG00000225218       ENST00000431150       42831040
6897               ENSG00000225218       ENST00000431150       42831040
6898               ENSG00000225218       ENST00000431150       42831040
6899     LINC01668 ENSG00000283051       ENST00000635001       42777819
6900     LINC01668 ENSG00000283051       ENST00000635001       42777819
6901     LINC01668 ENSG00000283051       ENST00000635001       42777819
6902       SPATC1L ENSG00000160284       ENST00000291672       46161148
6903       SPATC1L ENSG00000160284       ENST00000291672       46161148
6904       SPATC1L ENSG00000160284       ENST00000291672       46161148
6905       SPATC1L ENSG00000160284       ENST00000291672       46161148
6906       SPATC1L ENSG00000160284       ENST00000291672       46161148
6907       SPATC1L ENSG00000160284       ENST00000330205       46161148
6908       SPATC1L ENSG00000160284       ENST00000330205       46161148
6909       SPATC1L ENSG00000160284       ENST00000330205       46161148
6910       SPATC1L ENSG00000160284       ENST00000330205       46161148
6911         PLAC4 ENSG00000280109       ENST00000623119       41175231
6912         PLAC4 ENSG00000280109       ENST00000624999       41175231
6913         ITSN1 ENSG00000205726       ENST00000399353       33642400
6914         ITSN1 ENSG00000205726       ENST00000399353       33642400
6915         ITSN1 ENSG00000205726       ENST00000399353       33642400
6916         ITSN1 ENSG00000205726       ENST00000399353       33642400
6917         ITSN1 ENSG00000205726       ENST00000399353       33642400
6918         ITSN1 ENSG00000205726       ENST00000399353       33642400
6919         ITSN1 ENSG00000205726       ENST00000399353       33642400
6920         ITSN1 ENSG00000205726       ENST00000399353       33642400
6921         ITSN1 ENSG00000205726       ENST00000399353       33642400
6922         ITSN1 ENSG00000205726       ENST00000399353       33642400
6923         ITSN1 ENSG00000205726       ENST00000399353       33642400
6924         ITSN1 ENSG00000205726       ENST00000399353       33642400
6925         ITSN1 ENSG00000205726       ENST00000399353       33642400
6926         ITSN1 ENSG00000205726       ENST00000399353       33642400
6927         ITSN1 ENSG00000205726       ENST00000399353       33642400
6928         ITSN1 ENSG00000205726       ENST00000399353       33642400
6929         ITSN1 ENSG00000205726       ENST00000399353       33642400
6930         ITSN1 ENSG00000205726       ENST00000399353       33642400
6931         ITSN1 ENSG00000205726       ENST00000399353       33642400
6932         ITSN1 ENSG00000205726       ENST00000399353       33642400
6933         ITSN1 ENSG00000205726       ENST00000399353       33642400
6934         ITSN1 ENSG00000205726       ENST00000399353       33642400
6935         ITSN1 ENSG00000205726       ENST00000399353       33642400
6936         ITSN1 ENSG00000205726       ENST00000399353       33642400
6937         ITSN1 ENSG00000205726       ENST00000399353       33642400
6938         ITSN1 ENSG00000205726       ENST00000399353       33642400
6939         ITSN1 ENSG00000205726       ENST00000399353       33642400
6940         ITSN1 ENSG00000205726       ENST00000399353       33642400
6941         ITSN1 ENSG00000205726       ENST00000399353       33642400
6942         ITSN1 ENSG00000205726       ENST00000444491       33642400
6943         ITSN1 ENSG00000205726       ENST00000444491       33642400
6944         ITSN1 ENSG00000205726       ENST00000444491       33642400
6945         ITSN1 ENSG00000205726       ENST00000444491       33642400
6946         ITSN1 ENSG00000205726       ENST00000444491       33642400
6947         ITSN1 ENSG00000205726       ENST00000444491       33642400
6948         ITSN1 ENSG00000205726       ENST00000444491       33642400
6949         ITSN1 ENSG00000205726       ENST00000470742       33642400
6950         ITSN1 ENSG00000205726       ENST00000470742       33642400
6951         ITSN1 ENSG00000205726       ENST00000470742       33642400
6952         ITSN1 ENSG00000205726       ENST00000470742       33642400
6953         ITSN1 ENSG00000205726       ENST00000381318       33642400
6954         ITSN1 ENSG00000205726       ENST00000381318       33642400
6955         ITSN1 ENSG00000205726       ENST00000381318       33642400
6956         ITSN1 ENSG00000205726       ENST00000381318       33642400
6957         ITSN1 ENSG00000205726       ENST00000381318       33642400
6958         ITSN1 ENSG00000205726       ENST00000381318       33642400
6959         ITSN1 ENSG00000205726       ENST00000381318       33642400
6960         ITSN1 ENSG00000205726       ENST00000381318       33642400
6961         ITSN1 ENSG00000205726       ENST00000381318       33642400
6962         ITSN1 ENSG00000205726       ENST00000381318       33642400
6963         ITSN1 ENSG00000205726       ENST00000381318       33642400
6964         ITSN1 ENSG00000205726       ENST00000381318       33642400
6965         ITSN1 ENSG00000205726       ENST00000381318       33642400
6966         ITSN1 ENSG00000205726       ENST00000381318       33642400
6967         ITSN1 ENSG00000205726       ENST00000381318       33642400
6968         ITSN1 ENSG00000205726       ENST00000381318       33642400
6969         ITSN1 ENSG00000205726       ENST00000381318       33642400
6970         ITSN1 ENSG00000205726       ENST00000381318       33642400
6971         ITSN1 ENSG00000205726       ENST00000381318       33642400
6972         ITSN1 ENSG00000205726       ENST00000381318       33642400
6973         ITSN1 ENSG00000205726       ENST00000381318       33642400
6974         ITSN1 ENSG00000205726       ENST00000381318       33642400
6975         ITSN1 ENSG00000205726       ENST00000381318       33642400
6976         ITSN1 ENSG00000205726       ENST00000381318       33642400
6977         ITSN1 ENSG00000205726       ENST00000381318       33642400
6978         ITSN1 ENSG00000205726       ENST00000381318       33642400
6979         ITSN1 ENSG00000205726       ENST00000381318       33642400
6980         ITSN1 ENSG00000205726       ENST00000381318       33642400
6981         ITSN1 ENSG00000205726       ENST00000381318       33642400
6982         ITSN1 ENSG00000205726       ENST00000381318       33642400
6983         ITSN1 ENSG00000205726       ENST00000381318       33642400
6984         ITSN1 ENSG00000205726       ENST00000381318       33642400
6985         ITSN1 ENSG00000205726       ENST00000381318       33642400
6986         ITSN1 ENSG00000205726       ENST00000381318       33642400
6987         ITSN1 ENSG00000205726       ENST00000381318       33642400
6988         ITSN1 ENSG00000205726       ENST00000381318       33642400
6989         ITSN1 ENSG00000205726       ENST00000381318       33642400
6990         ITSN1 ENSG00000205726       ENST00000381318       33642400
6991         ITSN1 ENSG00000205726       ENST00000381318       33642400
6992         ITSN1 ENSG00000205726       ENST00000381318       33642400
6993         ITSN1 ENSG00000205726       ENST00000381291       33642400
6994         ITSN1 ENSG00000205726       ENST00000381291       33642400
6995         ITSN1 ENSG00000205726       ENST00000381291       33642400
6996         ITSN1 ENSG00000205726       ENST00000381291       33642400
6997         ITSN1 ENSG00000205726       ENST00000381291       33642400
6998         ITSN1 ENSG00000205726       ENST00000381291       33642400
6999         ITSN1 ENSG00000205726       ENST00000381291       33642400
7000         ITSN1 ENSG00000205726       ENST00000381291       33642400
7001         ITSN1 ENSG00000205726       ENST00000381291       33642400
7002         ITSN1 ENSG00000205726       ENST00000381291       33642400
7003         ITSN1 ENSG00000205726       ENST00000381291       33642400
7004         ITSN1 ENSG00000205726       ENST00000381291       33642400
7005         ITSN1 ENSG00000205726       ENST00000381291       33642400
7006         ITSN1 ENSG00000205726       ENST00000381291       33642400
7007         ITSN1 ENSG00000205726       ENST00000381291       33642400
7008         ITSN1 ENSG00000205726       ENST00000381291       33642400
7009         ITSN1 ENSG00000205726       ENST00000381291       33642400
7010         ITSN1 ENSG00000205726       ENST00000381291       33642400
7011         ITSN1 ENSG00000205726       ENST00000381291       33642400
7012         ITSN1 ENSG00000205726       ENST00000381291       33642400
7013         ITSN1 ENSG00000205726       ENST00000381291       33642400
7014         ITSN1 ENSG00000205726       ENST00000381291       33642400
7015         ITSN1 ENSG00000205726       ENST00000381291       33642400
7016         ITSN1 ENSG00000205726       ENST00000381291       33642400
7017         ITSN1 ENSG00000205726       ENST00000381291       33642400
7018         ITSN1 ENSG00000205726       ENST00000381291       33642400
7019         ITSN1 ENSG00000205726       ENST00000381291       33642400
7020         ITSN1 ENSG00000205726       ENST00000381291       33642400
7021         ITSN1 ENSG00000205726       ENST00000381291       33642400
7022         ITSN1 ENSG00000205726       ENST00000381291       33642400
7023         ITSN1 ENSG00000205726       ENST00000399367       33642400
7024         ITSN1 ENSG00000205726       ENST00000399367       33642400
7025         ITSN1 ENSG00000205726       ENST00000399367       33642400
7026         ITSN1 ENSG00000205726       ENST00000399367       33642400
7027         ITSN1 ENSG00000205726       ENST00000399367       33642400
7028         ITSN1 ENSG00000205726       ENST00000399367       33642400
7029         ITSN1 ENSG00000205726       ENST00000399367       33642400
7030         ITSN1 ENSG00000205726       ENST00000399367       33642400
7031         ITSN1 ENSG00000205726       ENST00000399367       33642400
7032         ITSN1 ENSG00000205726       ENST00000399367       33642400
7033         ITSN1 ENSG00000205726       ENST00000399367       33642400
7034         ITSN1 ENSG00000205726       ENST00000399367       33642400
7035         ITSN1 ENSG00000205726       ENST00000399367       33642400
7036         ITSN1 ENSG00000205726       ENST00000399367       33642400
7037         ITSN1 ENSG00000205726       ENST00000399367       33642400
7038         ITSN1 ENSG00000205726       ENST00000399367       33642400
7039         ITSN1 ENSG00000205726       ENST00000399367       33642400
7040         ITSN1 ENSG00000205726       ENST00000399367       33642400
7041         ITSN1 ENSG00000205726       ENST00000399367       33642400
7042         ITSN1 ENSG00000205726       ENST00000399367       33642400
7043         ITSN1 ENSG00000205726       ENST00000399367       33642400
7044         ITSN1 ENSG00000205726       ENST00000399367       33642400
7045         ITSN1 ENSG00000205726       ENST00000399367       33642400
7046         ITSN1 ENSG00000205726       ENST00000399367       33642400
7047         ITSN1 ENSG00000205726       ENST00000399367       33642400
7048         ITSN1 ENSG00000205726       ENST00000399367       33642400
7049         ITSN1 ENSG00000205726       ENST00000399367       33642400
7050         ITSN1 ENSG00000205726       ENST00000399367       33642400
7051         ITSN1 ENSG00000205726       ENST00000399367       33642400
7052         ITSN1 ENSG00000205726       ENST00000399367       33642400
7053         ITSN1 ENSG00000205726       ENST00000399367       33642400
7054         ITSN1 ENSG00000205726       ENST00000399367       33642400
7055         ITSN1 ENSG00000205726       ENST00000399367       33642400
7056         ITSN1 ENSG00000205726       ENST00000399367       33642400
7057         ITSN1 ENSG00000205726       ENST00000399367       33642400
7058         ITSN1 ENSG00000205726       ENST00000399367       33642400
7059         ITSN1 ENSG00000205726       ENST00000399367       33642400
7060         ITSN1 ENSG00000205726       ENST00000399367       33642400
7061         ITSN1 ENSG00000205726       ENST00000399367       33642400
7062         ITSN1 ENSG00000205726       ENST00000399352       33642400
7063         ITSN1 ENSG00000205726       ENST00000399352       33642400
7064         ITSN1 ENSG00000205726       ENST00000399352       33642400
7065         ITSN1 ENSG00000205726       ENST00000399352       33642400
7066         ITSN1 ENSG00000205726       ENST00000399352       33642400
7067         ITSN1 ENSG00000205726       ENST00000399352       33642400
7068         ITSN1 ENSG00000205726       ENST00000399352       33642400
7069         ITSN1 ENSG00000205726       ENST00000399352       33642400
7070         ITSN1 ENSG00000205726       ENST00000399352       33642400
7071         ITSN1 ENSG00000205726       ENST00000399352       33642400
7072         ITSN1 ENSG00000205726       ENST00000399352       33642400
7073         ITSN1 ENSG00000205726       ENST00000399352       33642400
7074         ITSN1 ENSG00000205726       ENST00000399352       33642400
7075         ITSN1 ENSG00000205726       ENST00000399352       33642400
7076         ITSN1 ENSG00000205726       ENST00000399352       33642400
7077         ITSN1 ENSG00000205726       ENST00000399352       33642400
7078         ITSN1 ENSG00000205726       ENST00000399352       33642400
7079         ITSN1 ENSG00000205726       ENST00000399352       33642400
7080         ITSN1 ENSG00000205726       ENST00000399352       33642400
7081         ITSN1 ENSG00000205726       ENST00000399352       33642400
7082         ITSN1 ENSG00000205726       ENST00000399352       33642400
7083         ITSN1 ENSG00000205726       ENST00000399352       33642400
7084         ITSN1 ENSG00000205726       ENST00000399352       33642400
7085         ITSN1 ENSG00000205726       ENST00000399352       33642400
7086         ITSN1 ENSG00000205726       ENST00000399352       33642400
7087         ITSN1 ENSG00000205726       ENST00000399352       33642400
7088         ITSN1 ENSG00000205726       ENST00000399352       33642400
7089         ITSN1 ENSG00000205726       ENST00000399352       33642400
7090         ITSN1 ENSG00000205726       ENST00000399352       33642400
7091         ITSN1 ENSG00000205726       ENST00000399355       33642400
7092         ITSN1 ENSG00000205726       ENST00000399355       33642400
7093         ITSN1 ENSG00000205726       ENST00000399355       33642400
7094         ITSN1 ENSG00000205726       ENST00000399355       33642400
7095         ITSN1 ENSG00000205726       ENST00000399355       33642400
7096         ITSN1 ENSG00000205726       ENST00000399355       33642400
7097         ITSN1 ENSG00000205726       ENST00000399355       33642400
7098         ITSN1 ENSG00000205726       ENST00000399355       33642400
7099         ITSN1 ENSG00000205726       ENST00000399355       33642400
7100         ITSN1 ENSG00000205726       ENST00000399355       33642400
7101         ITSN1 ENSG00000205726       ENST00000399355       33642400
7102         ITSN1 ENSG00000205726       ENST00000399355       33642400
7103         ITSN1 ENSG00000205726       ENST00000399355       33642400
7104         ITSN1 ENSG00000205726       ENST00000399355       33642400
7105         ITSN1 ENSG00000205726       ENST00000399355       33642400
7106         ITSN1 ENSG00000205726       ENST00000399355       33642400
7107         ITSN1 ENSG00000205726       ENST00000399355       33642400
7108         ITSN1 ENSG00000205726       ENST00000399355       33642400
7109         ITSN1 ENSG00000205726       ENST00000399355       33642400
7110         ITSN1 ENSG00000205726       ENST00000399355       33642400
7111         ITSN1 ENSG00000205726       ENST00000399355       33642400
7112         ITSN1 ENSG00000205726       ENST00000399355       33642400
7113         ITSN1 ENSG00000205726       ENST00000399355       33642400
7114         ITSN1 ENSG00000205726       ENST00000399355       33642400
7115         ITSN1 ENSG00000205726       ENST00000399355       33642400
7116         ITSN1 ENSG00000205726       ENST00000399355       33642400
7117         ITSN1 ENSG00000205726       ENST00000399355       33642400
7118         ITSN1 ENSG00000205726       ENST00000399355       33642400
7119         ITSN1 ENSG00000205726       ENST00000399349       33642400
7120         ITSN1 ENSG00000205726       ENST00000399349       33642400
7121         ITSN1 ENSG00000205726       ENST00000399349       33642400
7122         ITSN1 ENSG00000205726       ENST00000399349       33642400
7123         ITSN1 ENSG00000205726       ENST00000399349       33642400
7124         ITSN1 ENSG00000205726       ENST00000399349       33642400
7125         ITSN1 ENSG00000205726       ENST00000399349       33642400
7126         ITSN1 ENSG00000205726       ENST00000399349       33642400
7127         ITSN1 ENSG00000205726       ENST00000399349       33642400
7128         ITSN1 ENSG00000205726       ENST00000399349       33642400
7129         ITSN1 ENSG00000205726       ENST00000399349       33642400
7130         ITSN1 ENSG00000205726       ENST00000399349       33642400
7131         ITSN1 ENSG00000205726       ENST00000399349       33642400
7132         ITSN1 ENSG00000205726       ENST00000399349       33642400
7133         ITSN1 ENSG00000205726       ENST00000399349       33642400
7134         ITSN1 ENSG00000205726       ENST00000399349       33642400
7135         ITSN1 ENSG00000205726       ENST00000399349       33642400
7136         ITSN1 ENSG00000205726       ENST00000399349       33642400
7137         ITSN1 ENSG00000205726       ENST00000399349       33642400
7138         ITSN1 ENSG00000205726       ENST00000399349       33642400
7139         ITSN1 ENSG00000205726       ENST00000399349       33642400
7140         ITSN1 ENSG00000205726       ENST00000399349       33642400
7141         ITSN1 ENSG00000205726       ENST00000399349       33642400
7142         ITSN1 ENSG00000205726       ENST00000399349       33642400
7143         ITSN1 ENSG00000205726       ENST00000399349       33642400
7144         ITSN1 ENSG00000205726       ENST00000399349       33642400
7145         ITSN1 ENSG00000205726       ENST00000399349       33642400
7146         ITSN1 ENSG00000205726       ENST00000451686       33642400
7147         ITSN1 ENSG00000205726       ENST00000451686       33642400
7148         ITSN1 ENSG00000205726       ENST00000451686       33642400
7149         ITSN1 ENSG00000205726       ENST00000451686       33642400
7150         ITSN1 ENSG00000205726       ENST00000451686       33642400
7151         ITSN1 ENSG00000205726       ENST00000451686       33642400
7152         ITSN1 ENSG00000205726       ENST00000381283       33642400
7153         ITSN1 ENSG00000205726       ENST00000381283       33642400
7154         ITSN1 ENSG00000205726       ENST00000381283       33642400
7155         ITSN1 ENSG00000205726       ENST00000381283       33642400
7156         ITSN1 ENSG00000205726       ENST00000381283       33642400
7157         ITSN1 ENSG00000205726       ENST00000381283       33642400
7158         ITSN1 ENSG00000205726       ENST00000381283       33642400
7159         ITSN1 ENSG00000205726       ENST00000381283       33642400
7160         ITSN1 ENSG00000205726       ENST00000381283       33642400
7161         ITSN1 ENSG00000205726       ENST00000381283       33642400
7162         ITSN1 ENSG00000205726       ENST00000456489       33642400
7163         ITSN1 ENSG00000205726       ENST00000456489       33642400
7164         ITSN1 ENSG00000205726       ENST00000488166       33642400
7165         ITSN1 ENSG00000205726       ENST00000488166       33642400
7166         ITSN1 ENSG00000205726       ENST00000488166       33642400
7167         ITSN1 ENSG00000205726       ENST00000488166       33642400
7168         ITSN1 ENSG00000205726       ENST00000488166       33642400
7169         ITSN1 ENSG00000205726       ENST00000488166       33642400
7170         ITSN1 ENSG00000205726       ENST00000488166       33642400
7171         ITSN1 ENSG00000205726       ENST00000474132       33642400
7172         ITSN1 ENSG00000205726       ENST00000474132       33642400
7173         ITSN1 ENSG00000205726       ENST00000419241       33642400
7174         ITSN1 ENSG00000205726       ENST00000419241       33642400
7175         ITSN1 ENSG00000205726       ENST00000419241       33642400
7176         ITSN1 ENSG00000205726       ENST00000419241       33642400
7177         ITSN1 ENSG00000205726       ENST00000419241       33642400
7178         ITSN1 ENSG00000205726       ENST00000419241       33642400
7179         ITSN1 ENSG00000205726       ENST00000440794       33642400
7180         ITSN1 ENSG00000205726       ENST00000440794       33642400
7181         ITSN1 ENSG00000205726       ENST00000440794       33642400
7182         ITSN1 ENSG00000205726       ENST00000440794       33642400
7183         ITSN1 ENSG00000205726       ENST00000440794       33642400
7184         ITSN1 ENSG00000205726       ENST00000465143       33642400
7185         ITSN1 ENSG00000205726       ENST00000465143       33642400
7186         ITSN1 ENSG00000205726       ENST00000487427       33642400
7187         ITSN1 ENSG00000205726       ENST00000487427       33642400
7188         ITSN1 ENSG00000205726       ENST00000487427       33642400
7189         ITSN1 ENSG00000205726       ENST00000487427       33642400
7190         ITSN1 ENSG00000205726       ENST00000487427       33642400
7191         ITSN1 ENSG00000205726       ENST00000437126       33642400
7192         ITSN1 ENSG00000205726       ENST00000437126       33642400
7193         ITSN1 ENSG00000205726       ENST00000437126       33642400
7194         ITSN1 ENSG00000205726       ENST00000437126       33642400
7195         ITSN1 ENSG00000205726       ENST00000437126       33642400
7196         ITSN1 ENSG00000205726       ENST00000437126       33642400
7197         ITSN1 ENSG00000205726       ENST00000428240       33642400
7198         ITSN1 ENSG00000205726       ENST00000428240       33642400
7199         ITSN1 ENSG00000205726       ENST00000428240       33642400
7200         ITSN1 ENSG00000205726       ENST00000428240       33642400
7201         ITSN1 ENSG00000205726       ENST00000472548       33642400
7202         ITSN1 ENSG00000205726       ENST00000472548       33642400
7203         ITSN1 ENSG00000205726       ENST00000472548       33642400
7204         ITSN1 ENSG00000205726       ENST00000472548       33642400
7205         ITSN1 ENSG00000205726       ENST00000472548       33642400
7206         ITSN1 ENSG00000205726       ENST00000479424       33642400
7207         ITSN1 ENSG00000205726       ENST00000479424       33642400
7208         ITSN1 ENSG00000205726       ENST00000479424       33642400
7209         ITSN1 ENSG00000205726       ENST00000479424       33642400
7210         ITSN1 ENSG00000205726       ENST00000479424       33642400
7211         ITSN1 ENSG00000205726       ENST00000462212       33642400
7212         ITSN1 ENSG00000205726       ENST00000462212       33642400
7213         ITSN1 ENSG00000205726       ENST00000462212       33642400
7214         ITSN1 ENSG00000205726       ENST00000462212       33642400
7215         ITSN1 ENSG00000205726       ENST00000495656       33642400
7216         ITSN1 ENSG00000205726       ENST00000495656       33642400
7217         ITSN1 ENSG00000205726       ENST00000495656       33642400
7218         ITSN1 ENSG00000205726       ENST00000495656       33642400
7219         ITSN1 ENSG00000205726       ENST00000495656       33642400
7220         ITSN1 ENSG00000205726       ENST00000475422       33642400
7221         ITSN1 ENSG00000205726       ENST00000475422       33642400
7222         ITSN1 ENSG00000205726       ENST00000489261       33642400
7223         ITSN1 ENSG00000205726       ENST00000489261       33642400
7224         ITSN1 ENSG00000205726       ENST00000489261       33642400
7225         ITSN1 ENSG00000205726       ENST00000489261       33642400
7226         ITSN1 ENSG00000205726       ENST00000381284       33642400
7227         ITSN1 ENSG00000205726       ENST00000381284       33642400
7228         ITSN1 ENSG00000205726       ENST00000381284       33642400
7229         ITSN1 ENSG00000205726       ENST00000381284       33642400
7230         ITSN1 ENSG00000205726       ENST00000381284       33642400
7231         ITSN1 ENSG00000205726       ENST00000381284       33642400
7232         ITSN1 ENSG00000205726       ENST00000381284       33642400
7233         ITSN1 ENSG00000205726       ENST00000381284       33642400
7234         ITSN1 ENSG00000205726       ENST00000420666       33642400
7235         ITSN1 ENSG00000205726       ENST00000420666       33642400
7236         ITSN1 ENSG00000205726       ENST00000420666       33642400
7237         ITSN1 ENSG00000205726       ENST00000420666       33642400
7238         ITSN1 ENSG00000205726       ENST00000415023       33642400
7239         ITSN1 ENSG00000205726       ENST00000415023       33642400
7240         ITSN1 ENSG00000205726       ENST00000415023       33642400
7241         ITSN1 ENSG00000205726       ENST00000415023       33642400
7242         ITSN1 ENSG00000205726       ENST00000415023       33642400
7243         ITSN1 ENSG00000205726       ENST00000379960       33642400
7244         ITSN1 ENSG00000205726       ENST00000379960       33642400
7245         ITSN1 ENSG00000205726       ENST00000379960       33642400
7246         ITSN1 ENSG00000205726       ENST00000379960       33642400
7247         ITSN1 ENSG00000205726       ENST00000379960       33642400
7248         ITSN1 ENSG00000205726       ENST00000379960       33642400
7249         ITSN1 ENSG00000205726       ENST00000379960       33642400
7250         ITSN1 ENSG00000205726       ENST00000379960       33642400
7251         ITSN1 ENSG00000205726       ENST00000379960       33642400
7252         ITSN1 ENSG00000205726       ENST00000379960       33642400
7253         ITSN1 ENSG00000205726       ENST00000379960       33642400
7254         ITSN1 ENSG00000205726       ENST00000379960       33642400
7255         ITSN1 ENSG00000205726       ENST00000379960       33642400
7256         ITSN1 ENSG00000205726       ENST00000379960       33642400
7257         ITSN1 ENSG00000205726       ENST00000379960       33642400
7258         ITSN1 ENSG00000205726       ENST00000379960       33642400
7259         ITSN1 ENSG00000205726       ENST00000379960       33642400
7260         ITSN1 ENSG00000205726       ENST00000379960       33642400
7261         ITSN1 ENSG00000205726       ENST00000379960       33642400
7262         ITSN1 ENSG00000205726       ENST00000379960       33642400
7263         ITSN1 ENSG00000205726       ENST00000381285       33642400
7264         ITSN1 ENSG00000205726       ENST00000381285       33642400
7265         ITSN1 ENSG00000205726       ENST00000381285       33642400
7266         ITSN1 ENSG00000205726       ENST00000381285       33642400
7267         ITSN1 ENSG00000205726       ENST00000381285       33642400
7268         ITSN1 ENSG00000205726       ENST00000381285       33642400
7269         ITSN1 ENSG00000205726       ENST00000381285       33642400
7270         ITSN1 ENSG00000205726       ENST00000381285       33642400
7271         ITSN1 ENSG00000205726       ENST00000381285       33642400
7272         ITSN1 ENSG00000205726       ENST00000381285       33642400
7273         ITSN1 ENSG00000205726       ENST00000381285       33642400
7274         ITSN1 ENSG00000205726       ENST00000381285       33642400
7275         ITSN1 ENSG00000205726       ENST00000381285       33642400
7276         ITSN1 ENSG00000205726       ENST00000381285       33642400
7277         ITSN1 ENSG00000205726       ENST00000381285       33642400
7278         ITSN1 ENSG00000205726       ENST00000381285       33642400
7279         ITSN1 ENSG00000205726       ENST00000381285       33642400
7280         ITSN1 ENSG00000205726       ENST00000381285       33642400
7281         ITSN1 ENSG00000205726       ENST00000381285       33642400
7282         ITSN1 ENSG00000205726       ENST00000381285       33642400
7283         ITSN1 ENSG00000205726       ENST00000381285       33642400
7284         ITSN1 ENSG00000205726       ENST00000381285       33642400
7285         ITSN1 ENSG00000205726       ENST00000381285       33642400
7286         ITSN1 ENSG00000205726       ENST00000381285       33642400
7287         ITSN1 ENSG00000205726       ENST00000381285       33642400
7288         ITSN1 ENSG00000205726       ENST00000381285       33642400
7289         ITSN1 ENSG00000205726       ENST00000381285       33642400
7290         ITSN1 ENSG00000205726       ENST00000381285       33642400
7291         ITSN1 ENSG00000205726       ENST00000381285       33642400
7292         ITSN1 ENSG00000205726       ENST00000381285       33642400
7293         ITSN1 ENSG00000205726       ENST00000381285       33642400
7294         ITSN1 ENSG00000205726       ENST00000381285       33642400
7295         ITSN1 ENSG00000205726       ENST00000381285       33642400
7296         ITSN1 ENSG00000205726       ENST00000381285       33642400
7297         ITSN1 ENSG00000205726       ENST00000381285       33642400
7298         ITSN1 ENSG00000205726       ENST00000381285       33642400
7299         ITSN1 ENSG00000205726       ENST00000381285       33642400
7300         ITSN1 ENSG00000205726       ENST00000381285       33642400
7301         ITSN1 ENSG00000205726       ENST00000399338       33642400
7302         ITSN1 ENSG00000205726       ENST00000399338       33642400
7303         ITSN1 ENSG00000205726       ENST00000399338       33642400
7304         ITSN1 ENSG00000205726       ENST00000399338       33642400
7305         ITSN1 ENSG00000205726       ENST00000399338       33642400
7306         ITSN1 ENSG00000205726       ENST00000399338       33642400
7307         ITSN1 ENSG00000205726       ENST00000399338       33642400
7308         ITSN1 ENSG00000205726       ENST00000399338       33642400
7309         ITSN1 ENSG00000205726       ENST00000399338       33642400
7310         ITSN1 ENSG00000205726       ENST00000399338       33642400
7311         ITSN1 ENSG00000205726       ENST00000399338       33642400
7312         ITSN1 ENSG00000205726       ENST00000399338       33642400
7313         ITSN1 ENSG00000205726       ENST00000399338       33642400
7314         ITSN1 ENSG00000205726       ENST00000399338       33642400
7315         ITSN1 ENSG00000205726       ENST00000399338       33642400
7316         ITSN1 ENSG00000205726       ENST00000399338       33642400
7317         ITSN1 ENSG00000205726       ENST00000399338       33642400
7318         ITSN1 ENSG00000205726       ENST00000399338       33642400
7319         ITSN1 ENSG00000205726       ENST00000399338       33642400
7320         ITSN1 ENSG00000205726       ENST00000399338       33642400
7321         ITSN1 ENSG00000205726       ENST00000399338       33642400
7322               ENSG00000279967       ENST00000624806        8101251
7323        MYL6P1 ENSG00000226543       ENST00000449877       43855890
7324               ENSG00000275139       ENST00000617854       45759804
7325               ENSG00000280604       ENST00000626237       45914296
7326               ENSG00000280604       ENST00000626237       45914296
7327               ENSG00000280604       ENST00000626237       45914296
7328         CYYR1 ENSG00000166265       ENST00000299340       26466209
7329         CYYR1 ENSG00000166265       ENST00000299340       26466209
7330         CYYR1 ENSG00000166265       ENST00000299340       26466209
7331         CYYR1 ENSG00000166265       ENST00000299340       26466209
7332         CYYR1 ENSG00000166265       ENST00000400043       26466209
7333         CYYR1 ENSG00000166265       ENST00000400043       26466209
7334         CYYR1 ENSG00000166265       ENST00000400043       26466209
7335         CYYR1 ENSG00000166265       ENST00000400043       26466209
7336               ENSG00000232692       ENST00000429340       26378552
7337               ENSG00000232692       ENST00000429340       26378552
7338               ENSG00000232692       ENST00000429340       26378552
7339               ENSG00000232692       ENST00000429340       26378552
7340               ENSG00000232692       ENST00000429340       26378552
7341               ENSG00000232692       ENST00000429340       26378552
7342               ENSG00000232692       ENST00000452460       26378552
7343               ENSG00000232692       ENST00000452460       26378552
7344               ENSG00000232692       ENST00000452460       26378552
7345               ENSG00000232692       ENST00000452460       26378552
7346               ENSG00000232692       ENST00000421771       26378552
7347               ENSG00000232692       ENST00000421771       26378552
7348               ENSG00000232692       ENST00000444306       26378552
7349               ENSG00000232692       ENST00000444306       26378552
7350      POLR2CP1 ENSG00000228600       ENST00000453699       14757588
7351      HUNK-AS1 ENSG00000237138       ENST00000437109       32020966
7352      HUNK-AS1 ENSG00000237138       ENST00000437109       32020966
7353          HUNK ENSG00000142149       ENST00000270112       31873315
7354          HUNK ENSG00000142149       ENST00000270112       31873315
7355          HUNK ENSG00000142149       ENST00000270112       31873315
7356          HUNK ENSG00000142149       ENST00000270112       31873315
7357          HUNK ENSG00000142149       ENST00000270112       31873315
7358          HUNK ENSG00000142149       ENST00000270112       31873315
7359          HUNK ENSG00000142149       ENST00000270112       31873315
7360          HUNK ENSG00000142149       ENST00000270112       31873315
7361          HUNK ENSG00000142149       ENST00000270112       31873315
7362          HUNK ENSG00000142149       ENST00000270112       31873315
7363          HUNK ENSG00000142149       ENST00000270112       31873315
7364          HUNK ENSG00000142149       ENST00000430354       31873315
7365          HUNK ENSG00000142149       ENST00000430354       31873315
7366          HUNK ENSG00000142149       ENST00000430354       31873315
7367          HUNK ENSG00000142149       ENST00000430354       31873315
7368          HUNK ENSG00000142149       ENST00000465574       31873315
7369          HUNK ENSG00000142149       ENST00000465574       31873315
7370          HUNK ENSG00000142149       ENST00000465574       31873315
7371          HUNK ENSG00000142149       ENST00000465574       31873315
7372          HUNK ENSG00000142149       ENST00000439107       31873315
7373          HUNK ENSG00000142149       ENST00000439107       31873315
7374          HUNK ENSG00000142149       ENST00000439107       31873315
7375          HUNK ENSG00000142149       ENST00000439107       31873315
7376          HUNK ENSG00000142149       ENST00000439107       31873315
7377     LINC00114 ENSG00000223806       ENST00000448579       38739021
7378     LINC00114 ENSG00000223806       ENST00000448579       38739021
7379     LINC00114 ENSG00000223806       ENST00000448579       38739021
7380     LINC00114 ENSG00000223806       ENST00000448579       38739021
7381     LINC00114 ENSG00000223806       ENST00000448579       38739021
7382     LINC00114 ENSG00000223806       ENST00000411989       38739021
7383     LINC00114 ENSG00000223806       ENST00000411989       38739021
7384     LINC00114 ENSG00000223806       ENST00000411989       38739021
7385     LINC00114 ENSG00000223806       ENST00000411989       38739021
7386     LINC00114 ENSG00000223806       ENST00000429621       38739021
7387     LINC00114 ENSG00000223806       ENST00000429621       38739021
7388     LINC00114 ENSG00000223806       ENST00000429621       38739021
7389     LINC00114 ENSG00000223806       ENST00000429621       38739021
7390     LINC00114 ENSG00000223806       ENST00000429621       38739021
7391     LINC00114 ENSG00000223806       ENST00000429621       38739021
7392               ENSG00000278927       ENST00000623896        6550749
7393               ENSG00000278927       ENST00000623896        6550749
7394               ENSG00000278927       ENST00000623896        6550749
7395        IFNAR2 ENSG00000159110       ENST00000382264       33229901
7396        IFNAR2 ENSG00000159110       ENST00000382264       33229901
7397        IFNAR2 ENSG00000159110       ENST00000382264       33229901
7398        IFNAR2 ENSG00000159110       ENST00000382264       33229901
7399        IFNAR2 ENSG00000159110       ENST00000382264       33229901
7400        IFNAR2 ENSG00000159110       ENST00000382264       33229901
7401        IFNAR2 ENSG00000159110       ENST00000382264       33229901
7402        IFNAR2 ENSG00000159110       ENST00000382264       33229901
7403        IFNAR2 ENSG00000159110       ENST00000382264       33229901
7404        IFNAR2 ENSG00000159110       ENST00000404220       33229901
7405        IFNAR2 ENSG00000159110       ENST00000404220       33229901
7406        IFNAR2 ENSG00000159110       ENST00000404220       33229901
7407        IFNAR2 ENSG00000159110       ENST00000404220       33229901
7408        IFNAR2 ENSG00000159110       ENST00000404220       33229901
7409        IFNAR2 ENSG00000159110       ENST00000404220       33229901
7410        IFNAR2 ENSG00000159110       ENST00000404220       33229901
7411        IFNAR2 ENSG00000159110       ENST00000404220       33229901
7412        IFNAR2 ENSG00000159110       ENST00000404220       33229901
7413        IFNAR2 ENSG00000159110       ENST00000342136       33229901
7414        IFNAR2 ENSG00000159110       ENST00000342136       33229901
7415        IFNAR2 ENSG00000159110       ENST00000342136       33229901
7416        IFNAR2 ENSG00000159110       ENST00000342136       33229901
7417        IFNAR2 ENSG00000159110       ENST00000342136       33229901
7418        IFNAR2 ENSG00000159110       ENST00000342136       33229901
7419        IFNAR2 ENSG00000159110       ENST00000342136       33229901
7420        IFNAR2 ENSG00000159110       ENST00000342136       33229901
7421        IFNAR2 ENSG00000159110       ENST00000342136       33229901
7422        IFNAR2 ENSG00000159110       ENST00000420068       33229901
7423        IFNAR2 ENSG00000159110       ENST00000420068       33229901
7424        IFNAR2 ENSG00000159110       ENST00000420068       33229901
7425        IFNAR2 ENSG00000159110       ENST00000420068       33229901
7426        IFNAR2 ENSG00000159110       ENST00000342101       33229901
7427        IFNAR2 ENSG00000159110       ENST00000342101       33229901
7428        IFNAR2 ENSG00000159110       ENST00000342101       33229901
7429        IFNAR2 ENSG00000159110       ENST00000342101       33229901
7430        IFNAR2 ENSG00000159110       ENST00000342101       33229901
7431        IFNAR2 ENSG00000159110       ENST00000342101       33229901
7432        IFNAR2 ENSG00000159110       ENST00000342101       33229901
7433        IFNAR2 ENSG00000159110       ENST00000342101       33229901
7434        IFNAR2 ENSG00000159110       ENST00000382238       33229901
7435        IFNAR2 ENSG00000159110       ENST00000382238       33229901
7436        IFNAR2 ENSG00000159110       ENST00000382238       33229901
7437        IFNAR2 ENSG00000159110       ENST00000382238       33229901
7438        IFNAR2 ENSG00000159110       ENST00000382238       33229901
7439        IFNAR2 ENSG00000159110       ENST00000382238       33229901
7440        IFNAR2 ENSG00000159110       ENST00000382238       33229901
7441        IFNAR2 ENSG00000159110       ENST00000382238       33229901
7442        IFNAR2 ENSG00000159110       ENST00000382238       33229901
7443        IFNAR2 ENSG00000159110       ENST00000382238       33229901
7444        IFNAR2 ENSG00000159110       ENST00000413881       33229901
7445        IFNAR2 ENSG00000159110       ENST00000413881       33229901
7446        IFNAR2 ENSG00000159110       ENST00000413881       33229901
7447        IFNAR2 ENSG00000159110       ENST00000413881       33229901
7448        IFNAR2 ENSG00000159110       ENST00000413881       33229901
7449        IFNAR2 ENSG00000159110       ENST00000413881       33229901
7450        IFNAR2 ENSG00000159110       ENST00000443073       33229901
7451        IFNAR2 ENSG00000159110       ENST00000443073       33229901
7452        IFNAR2 ENSG00000159110       ENST00000443073       33229901
7453        IFNAR2 ENSG00000159110       ENST00000443073       33229901
7454        IFNAR2 ENSG00000159110       ENST00000443073       33229901
7455        IFNAR2 ENSG00000159110       ENST00000443073       33229901
7456        IFNAR2 ENSG00000159110       ENST00000443073       33229901
7457        IFNAR2 ENSG00000159110       ENST00000447980       33229901
7458        IFNAR2 ENSG00000159110       ENST00000447980       33229901
7459        IFNAR2 ENSG00000159110       ENST00000447980       33229901
7460        IFNAR2 ENSG00000159110       ENST00000447980       33229901
7461        IFNAR2 ENSG00000159110       ENST00000447980       33229901
7462        IFNAR2 ENSG00000159110       ENST00000447980       33229901
7463        IFNAR2 ENSG00000159110       ENST00000417007       33229901
7464        IFNAR2 ENSG00000159110       ENST00000417007       33229901
7465        IFNAR2 ENSG00000159110       ENST00000417007       33229901
7466        IFNAR2 ENSG00000159110       ENST00000417007       33229901
7467        IFNAR2 ENSG00000159110       ENST00000417007       33229901
7468     LINC01678 ENSG00000225331       ENST00000411694       44158740
7469     LINC01678 ENSG00000225331       ENST00000411694       44158740
7470     LINC01678 ENSG00000225331       ENST00000424921       44158740
7471     LINC01678 ENSG00000225331       ENST00000424921       44158740
7472     LINC01678 ENSG00000225331       ENST00000424921       44158740
7473          CBSL ENSG00000274276       ENST00000624691        6444869
7474          CBSL ENSG00000274276       ENST00000624691        6444869
7475          CBSL ENSG00000274276       ENST00000624691        6444869
7476          CBSL ENSG00000274276       ENST00000624691        6444869
7477          CBSL ENSG00000274276       ENST00000624691        6444869
7478          CBSL ENSG00000274276       ENST00000624691        6444869
7479          CBSL ENSG00000274276       ENST00000624691        6444869
7480          CBSL ENSG00000274276       ENST00000624691        6444869
7481          CBSL ENSG00000274276       ENST00000624691        6444869
7482          CBSL ENSG00000274276       ENST00000624691        6444869
7483          CBSL ENSG00000274276       ENST00000624691        6444869
7484          CBSL ENSG00000274276       ENST00000624691        6444869
7485          CBSL ENSG00000274276       ENST00000624691        6444869
7486          CBSL ENSG00000274276       ENST00000624691        6444869
7487          CBSL ENSG00000274276       ENST00000624406        6444869
7488          CBSL ENSG00000274276       ENST00000624406        6444869
7489          CBSL ENSG00000274276       ENST00000624406        6444869
7490          CBSL ENSG00000274276       ENST00000624406        6444869
7491          CBSL ENSG00000274276       ENST00000624406        6444869
7492          CBSL ENSG00000274276       ENST00000624406        6444869
7493          CBSL ENSG00000274276       ENST00000624406        6444869
7494          CBSL ENSG00000274276       ENST00000624406        6444869
7495          CBSL ENSG00000274276       ENST00000624406        6444869
7496          CBSL ENSG00000274276       ENST00000624406        6444869
7497          CBSL ENSG00000274276       ENST00000624406        6444869
7498          CBSL ENSG00000274276       ENST00000624406        6444869
7499          CBSL ENSG00000274276       ENST00000624406        6444869
7500          CBSL ENSG00000274276       ENST00000624406        6444869
7501          CBSL ENSG00000274276       ENST00000624406        6444869
7502          CBSL ENSG00000274276       ENST00000624406        6444869
7503          CBSL ENSG00000274276       ENST00000624406        6444869
7504          CBSL ENSG00000274276       ENST00000398168        6444869
7505          CBSL ENSG00000274276       ENST00000398168        6444869
7506          CBSL ENSG00000274276       ENST00000398168        6444869
7507          CBSL ENSG00000274276       ENST00000398168        6444869
7508          CBSL ENSG00000274276       ENST00000398168        6444869
7509          CBSL ENSG00000274276       ENST00000398168        6444869
7510          CBSL ENSG00000274276       ENST00000398168        6444869
7511          CBSL ENSG00000274276       ENST00000398168        6444869
7512          CBSL ENSG00000274276       ENST00000398168        6444869
7513          CBSL ENSG00000274276       ENST00000398168        6444869
7514          CBSL ENSG00000274276       ENST00000398168        6444869
7515          CBSL ENSG00000274276       ENST00000398168        6444869
7516          CBSL ENSG00000274276       ENST00000398168        6444869
7517          CBSL ENSG00000274276       ENST00000398168        6444869
7518          CBSL ENSG00000274276       ENST00000398168        6444869
7519          CBSL ENSG00000274276       ENST00000398168        6444869
7520          CBSL ENSG00000274276       ENST00000398168        6444869
7521          CBSL ENSG00000274276       ENST00000618024        6444869
7522          CBSL ENSG00000274276       ENST00000618024        6444869
7523          CBSL ENSG00000274276       ENST00000618024        6444869
7524          CBSL ENSG00000274276       ENST00000618024        6444869
7525          CBSL ENSG00000274276       ENST00000618024        6444869
7526          CBSL ENSG00000274276       ENST00000618024        6444869
7527          CBSL ENSG00000274276       ENST00000618024        6444869
7528          CBSL ENSG00000274276       ENST00000618024        6444869
7529          CBSL ENSG00000274276       ENST00000618024        6444869
7530          CBSL ENSG00000274276       ENST00000618024        6444869
7531          CBSL ENSG00000274276       ENST00000618024        6444869
7532          CBSL ENSG00000274276       ENST00000618024        6444869
7533          CBSL ENSG00000274276       ENST00000618024        6444869
7534          CBSL ENSG00000274276       ENST00000618024        6444869
7535          CBSL ENSG00000274276       ENST00000618024        6444869
7536          CBSL ENSG00000274276       ENST00000618024        6444869
7537          CBSL ENSG00000274276       ENST00000618024        6444869
7538          CBSL ENSG00000274276       ENST00000618024        6444869
7539          CBSL ENSG00000274276       ENST00000624934        6444869
7540          CBSL ENSG00000274276       ENST00000624934        6444869
7541          CBSL ENSG00000274276       ENST00000624934        6444869
7542          CBSL ENSG00000274276       ENST00000624934        6444869
7543          CBSL ENSG00000274276       ENST00000624934        6444869
7544          CBSL ENSG00000274276       ENST00000624934        6444869
7545          CBSL ENSG00000274276       ENST00000624934        6444869
7546          CBSL ENSG00000274276       ENST00000624934        6444869
7547          CBSL ENSG00000274276       ENST00000624934        6444869
7548          CBSL ENSG00000274276       ENST00000624934        6444869
7549          CBSL ENSG00000274276       ENST00000624934        6444869
7550          CBSL ENSG00000274276       ENST00000624934        6444869
7551          CBSL ENSG00000274276       ENST00000624934        6444869
7552          CBSL ENSG00000274276       ENST00000624934        6444869
7553          CBSL ENSG00000274276       ENST00000624934        6444869
7554          CBSL ENSG00000274276       ENST00000624934        6444869
7555          CBSL ENSG00000274276       ENST00000624934        6444869
7556          CBSL ENSG00000274276       ENST00000624934        6444869
7557          CBSL ENSG00000274276       ENST00000622914        6444869
7558          CBSL ENSG00000274276       ENST00000622914        6444869
7559          CBSL ENSG00000274276       ENST00000624808        6444869
7560          CBSL ENSG00000274276       ENST00000624808        6444869
7561          CBSL ENSG00000274276       ENST00000624808        6444869
7562          CBSL ENSG00000274276       ENST00000624808        6444869
7563          CBSL ENSG00000274276       ENST00000624808        6444869
7564          CBSL ENSG00000274276       ENST00000623939        6444869
7565          CBSL ENSG00000274276       ENST00000623939        6444869
7566          CBSL ENSG00000274276       ENST00000623939        6444869
7567          CBSL ENSG00000274276       ENST00000623939        6444869
7568          CBSL ENSG00000274276       ENST00000623939        6444869
7569          CBSL ENSG00000274276       ENST00000623939        6444869
7570          CBSL ENSG00000274276       ENST00000624921        6444869
7571          CBSL ENSG00000274276       ENST00000624921        6444869
7572          CBSL ENSG00000274276       ENST00000624921        6444869
7573          CBSL ENSG00000274276       ENST00000624921        6444869
7574          CBSL ENSG00000274276       ENST00000624921        6444869
7575          CBSL ENSG00000274276       ENST00000624921        6444869
7576          CBSL ENSG00000274276       ENST00000617706        6444869
7577          CBSL ENSG00000274276       ENST00000617706        6444869
7578          CBSL ENSG00000274276       ENST00000617706        6444869
7579          CBSL ENSG00000274276       ENST00000617706        6444869
7580          CBSL ENSG00000274276       ENST00000617706        6444869
7581          CBSL ENSG00000274276       ENST00000617706        6444869
7582          CBSL ENSG00000274276       ENST00000617706        6444869
7583          CBSL ENSG00000274276       ENST00000617706        6444869
7584          CBSL ENSG00000274276       ENST00000617706        6444869
7585          CBSL ENSG00000274276       ENST00000617706        6444869
7586          CBSL ENSG00000274276       ENST00000617706        6444869
7587          CBSL ENSG00000274276       ENST00000617706        6444869
7588          CBSL ENSG00000274276       ENST00000617706        6444869
7589          CBSL ENSG00000274276       ENST00000617706        6444869
7590          CBSL ENSG00000274276       ENST00000617706        6444869
7591          CBSL ENSG00000274276       ENST00000617706        6444869
7592          CBSL ENSG00000274276       ENST00000617706        6444869
7593               ENSG00000227757       ENST00000454622       32913649
7594               ENSG00000227757       ENST00000454622       32913649
7595               ENSG00000236119       ENST00000445464       36082859
7596               ENSG00000236119       ENST00000445464       36082859
7597         PDE9A ENSG00000160191       ENST00000460905       42653636
7598         PDE9A ENSG00000160191       ENST00000460905       42653636
7599         PDE9A ENSG00000160191       ENST00000460905       42653636
7600         PDE9A ENSG00000160191       ENST00000460905       42653636
7601         PDE9A ENSG00000160191       ENST00000460905       42653636
7602         PDE9A ENSG00000160191       ENST00000460905       42653636
7603         PDE9A ENSG00000160191       ENST00000460905       42653636
7604         PDE9A ENSG00000160191       ENST00000472401       42653636
7605         PDE9A ENSG00000160191       ENST00000472401       42653636
7606         PDE9A ENSG00000160191       ENST00000472401       42653636
7607         PDE9A ENSG00000160191       ENST00000472401       42653636
7608         PDE9A ENSG00000160191       ENST00000472401       42653636
7609         PDE9A ENSG00000160191       ENST00000335512       42653636
7610         PDE9A ENSG00000160191       ENST00000335512       42653636
7611         PDE9A ENSG00000160191       ENST00000335512       42653636
7612         PDE9A ENSG00000160191       ENST00000335512       42653636
7613         PDE9A ENSG00000160191       ENST00000335512       42653636
7614         PDE9A ENSG00000160191       ENST00000335512       42653636
7615         PDE9A ENSG00000160191       ENST00000335512       42653636
7616         PDE9A ENSG00000160191       ENST00000335512       42653636
7617         PDE9A ENSG00000160191       ENST00000335512       42653636
7618         PDE9A ENSG00000160191       ENST00000335512       42653636
7619         PDE9A ENSG00000160191       ENST00000335512       42653636
7620         PDE9A ENSG00000160191       ENST00000335512       42653636
7621         PDE9A ENSG00000160191       ENST00000335512       42653636
7622         PDE9A ENSG00000160191       ENST00000335512       42653636
7623         PDE9A ENSG00000160191       ENST00000335512       42653636
7624         PDE9A ENSG00000160191       ENST00000335512       42653636
7625         PDE9A ENSG00000160191       ENST00000335512       42653636
7626         PDE9A ENSG00000160191       ENST00000335512       42653636
7627         PDE9A ENSG00000160191       ENST00000335512       42653636
7628         PDE9A ENSG00000160191       ENST00000470987       42653636
7629         PDE9A ENSG00000160191       ENST00000470987       42653636
7630         PDE9A ENSG00000160191       ENST00000470987       42653636
7631         PDE9A ENSG00000160191       ENST00000470987       42653636
7632         PDE9A ENSG00000160191       ENST00000470987       42653636
7633         PDE9A ENSG00000160191       ENST00000470987       42653636
7634         PDE9A ENSG00000160191       ENST00000470987       42653636
7635         PDE9A ENSG00000160191       ENST00000470987       42653636
7636         PDE9A ENSG00000160191       ENST00000470987       42653636
7637         PDE9A ENSG00000160191       ENST00000470987       42653636
7638         PDE9A ENSG00000160191       ENST00000470987       42653636
7639         PDE9A ENSG00000160191       ENST00000470987       42653636
7640         PDE9A ENSG00000160191       ENST00000470987       42653636
7641         PDE9A ENSG00000160191       ENST00000470987       42653636
7642         PDE9A ENSG00000160191       ENST00000470987       42653636
7643         PDE9A ENSG00000160191       ENST00000470987       42653636
7644         PDE9A ENSG00000160191       ENST00000470987       42653636
7645         PDE9A ENSG00000160191       ENST00000470987       42653636
7646         PDE9A ENSG00000160191       ENST00000470987       42653636
7647         PDE9A ENSG00000160191       ENST00000470987       42653636
7648         PDE9A ENSG00000160191       ENST00000291539       42653636
7649         PDE9A ENSG00000160191       ENST00000291539       42653636
7650         PDE9A ENSG00000160191       ENST00000291539       42653636
7651         PDE9A ENSG00000160191       ENST00000291539       42653636
7652         PDE9A ENSG00000160191       ENST00000291539       42653636
7653         PDE9A ENSG00000160191       ENST00000291539       42653636
7654         PDE9A ENSG00000160191       ENST00000291539       42653636
7655         PDE9A ENSG00000160191       ENST00000291539       42653636
7656         PDE9A ENSG00000160191       ENST00000291539       42653636
7657         PDE9A ENSG00000160191       ENST00000291539       42653636
7658         PDE9A ENSG00000160191       ENST00000291539       42653636
7659         PDE9A ENSG00000160191       ENST00000291539       42653636
7660         PDE9A ENSG00000160191       ENST00000291539       42653636
7661         PDE9A ENSG00000160191       ENST00000291539       42653636
7662         PDE9A ENSG00000160191       ENST00000291539       42653636
7663         PDE9A ENSG00000160191       ENST00000291539       42653636
7664         PDE9A ENSG00000160191       ENST00000291539       42653636
7665         PDE9A ENSG00000160191       ENST00000291539       42653636
7666         PDE9A ENSG00000160191       ENST00000291539       42653636
7667         PDE9A ENSG00000160191       ENST00000291539       42653636
7668         PDE9A ENSG00000160191       ENST00000490803       42653636
7669         PDE9A ENSG00000160191       ENST00000490803       42653636
7670         PDE9A ENSG00000160191       ENST00000490803       42653636
7671         PDE9A ENSG00000160191       ENST00000490803       42653636
7672         PDE9A ENSG00000160191       ENST00000490803       42653636
7673         PDE9A ENSG00000160191       ENST00000490803       42653636
7674         PDE9A ENSG00000160191       ENST00000490803       42653636
7675         PDE9A ENSG00000160191       ENST00000490803       42653636
7676         PDE9A ENSG00000160191       ENST00000490803       42653636
7677         PDE9A ENSG00000160191       ENST00000490803       42653636
7678         PDE9A ENSG00000160191       ENST00000490803       42653636
7679         PDE9A ENSG00000160191       ENST00000490803       42653636
7680         PDE9A ENSG00000160191       ENST00000490803       42653636
7681         PDE9A ENSG00000160191       ENST00000490803       42653636
7682         PDE9A ENSG00000160191       ENST00000490803       42653636
7683         PDE9A ENSG00000160191       ENST00000490803       42653636
7684         PDE9A ENSG00000160191       ENST00000490803       42653636
7685         PDE9A ENSG00000160191       ENST00000486902       42653636
7686         PDE9A ENSG00000160191       ENST00000486902       42653636
7687         PDE9A ENSG00000160191       ENST00000486902       42653636
7688         PDE9A ENSG00000160191       ENST00000486902       42653636
7689         PDE9A ENSG00000160191       ENST00000486902       42653636
7690         PDE9A ENSG00000160191       ENST00000380328       42653636
7691         PDE9A ENSG00000160191       ENST00000380328       42653636
7692         PDE9A ENSG00000160191       ENST00000380328       42653636
7693         PDE9A ENSG00000160191       ENST00000380328       42653636
7694         PDE9A ENSG00000160191       ENST00000380328       42653636
7695         PDE9A ENSG00000160191       ENST00000380328       42653636
7696         PDE9A ENSG00000160191       ENST00000380328       42653636
7697         PDE9A ENSG00000160191       ENST00000380328       42653636
7698         PDE9A ENSG00000160191       ENST00000380328       42653636
7699         PDE9A ENSG00000160191       ENST00000380328       42653636
7700         PDE9A ENSG00000160191       ENST00000380328       42653636
7701         PDE9A ENSG00000160191       ENST00000380328       42653636
7702         PDE9A ENSG00000160191       ENST00000380328       42653636
7703         PDE9A ENSG00000160191       ENST00000380328       42653636
7704         PDE9A ENSG00000160191       ENST00000380328       42653636
7705         PDE9A ENSG00000160191       ENST00000380328       42653636
7706         PDE9A ENSG00000160191       ENST00000380328       42653636
7707         PDE9A ENSG00000160191       ENST00000380328       42653636
7708         PDE9A ENSG00000160191       ENST00000380328       42653636
7709         PDE9A ENSG00000160191       ENST00000495521       42653636
7710         PDE9A ENSG00000160191       ENST00000495521       42653636
7711         PDE9A ENSG00000160191       ENST00000495521       42653636
7712         PDE9A ENSG00000160191       ENST00000495521       42653636
7713         PDE9A ENSG00000160191       ENST00000495521       42653636
7714         PDE9A ENSG00000160191       ENST00000495521       42653636
7715         PDE9A ENSG00000160191       ENST00000495521       42653636
7716         PDE9A ENSG00000160191       ENST00000495521       42653636
7717         PDE9A ENSG00000160191       ENST00000495521       42653636
7718         PDE9A ENSG00000160191       ENST00000495521       42653636
7719         PDE9A ENSG00000160191       ENST00000495521       42653636
7720         PDE9A ENSG00000160191       ENST00000495521       42653636
7721         PDE9A ENSG00000160191       ENST00000495521       42653636
7722         PDE9A ENSG00000160191       ENST00000495521       42653636
7723         PDE9A ENSG00000160191       ENST00000495521       42653636
7724         PDE9A ENSG00000160191       ENST00000398232       42653636
7725         PDE9A ENSG00000160191       ENST00000398232       42653636
7726         PDE9A ENSG00000160191       ENST00000398232       42653636
7727         PDE9A ENSG00000160191       ENST00000398232       42653636
7728         PDE9A ENSG00000160191       ENST00000398232       42653636
7729         PDE9A ENSG00000160191       ENST00000398232       42653636
7730         PDE9A ENSG00000160191       ENST00000398232       42653636
7731         PDE9A ENSG00000160191       ENST00000398232       42653636
7732         PDE9A ENSG00000160191       ENST00000398232       42653636
7733         PDE9A ENSG00000160191       ENST00000398232       42653636
7734         PDE9A ENSG00000160191       ENST00000398232       42653636
7735         PDE9A ENSG00000160191       ENST00000398232       42653636
7736         PDE9A ENSG00000160191       ENST00000398232       42653636
7737         PDE9A ENSG00000160191       ENST00000398232       42653636
7738         PDE9A ENSG00000160191       ENST00000398232       42653636
7739         PDE9A ENSG00000160191       ENST00000398232       42653636
7740         PDE9A ENSG00000160191       ENST00000398232       42653636
7741         PDE9A ENSG00000160191       ENST00000398232       42653636
7742         PDE9A ENSG00000160191       ENST00000462571       42653636
7743         PDE9A ENSG00000160191       ENST00000462571       42653636
7744         PDE9A ENSG00000160191       ENST00000462571       42653636
7745         PDE9A ENSG00000160191       ENST00000462571       42653636
7746         PDE9A ENSG00000160191       ENST00000462571       42653636
7747         PDE9A ENSG00000160191       ENST00000462571       42653636
7748         PDE9A ENSG00000160191       ENST00000462571       42653636
7749         PDE9A ENSG00000160191       ENST00000462571       42653636
7750         PDE9A ENSG00000160191       ENST00000462571       42653636
7751         PDE9A ENSG00000160191       ENST00000462571       42653636
7752         PDE9A ENSG00000160191       ENST00000462571       42653636
7753         PDE9A ENSG00000160191       ENST00000462571       42653636
7754         PDE9A ENSG00000160191       ENST00000462571       42653636
7755         PDE9A ENSG00000160191       ENST00000462571       42653636
7756         PDE9A ENSG00000160191       ENST00000462571       42653636
7757         PDE9A ENSG00000160191       ENST00000462571       42653636
7758         PDE9A ENSG00000160191       ENST00000462571       42653636
7759         PDE9A ENSG00000160191       ENST00000462571       42653636
7760         PDE9A ENSG00000160191       ENST00000398234       42653636
7761         PDE9A ENSG00000160191       ENST00000398234       42653636
7762         PDE9A ENSG00000160191       ENST00000398234       42653636
7763         PDE9A ENSG00000160191       ENST00000398234       42653636
7764         PDE9A ENSG00000160191       ENST00000398234       42653636
7765         PDE9A ENSG00000160191       ENST00000398234       42653636
7766         PDE9A ENSG00000160191       ENST00000398234       42653636
7767         PDE9A ENSG00000160191       ENST00000398234       42653636
7768         PDE9A ENSG00000160191       ENST00000398234       42653636
7769         PDE9A ENSG00000160191       ENST00000398234       42653636
7770         PDE9A ENSG00000160191       ENST00000398234       42653636
7771         PDE9A ENSG00000160191       ENST00000398234       42653636
7772         PDE9A ENSG00000160191       ENST00000398234       42653636
7773         PDE9A ENSG00000160191       ENST00000398234       42653636
7774         PDE9A ENSG00000160191       ENST00000398234       42653636
7775         PDE9A ENSG00000160191       ENST00000398234       42653636
7776         PDE9A ENSG00000160191       ENST00000398234       42653636
7777         PDE9A ENSG00000160191       ENST00000398234       42653636
7778         PDE9A ENSG00000160191       ENST00000398236       42653636
7779         PDE9A ENSG00000160191       ENST00000398236       42653636
7780         PDE9A ENSG00000160191       ENST00000398236       42653636
7781         PDE9A ENSG00000160191       ENST00000398236       42653636
7782         PDE9A ENSG00000160191       ENST00000398236       42653636
7783         PDE9A ENSG00000160191       ENST00000398236       42653636
7784         PDE9A ENSG00000160191       ENST00000398236       42653636
7785         PDE9A ENSG00000160191       ENST00000398236       42653636
7786         PDE9A ENSG00000160191       ENST00000398236       42653636
7787         PDE9A ENSG00000160191       ENST00000398236       42653636
7788         PDE9A ENSG00000160191       ENST00000398236       42653636
7789         PDE9A ENSG00000160191       ENST00000398236       42653636
7790         PDE9A ENSG00000160191       ENST00000398236       42653636
7791         PDE9A ENSG00000160191       ENST00000398236       42653636
7792         PDE9A ENSG00000160191       ENST00000398236       42653636
7793         PDE9A ENSG00000160191       ENST00000398236       42653636
7794         PDE9A ENSG00000160191       ENST00000398236       42653636
7795         PDE9A ENSG00000160191       ENST00000398236       42653636
7796         PDE9A ENSG00000160191       ENST00000468805       42653636
7797         PDE9A ENSG00000160191       ENST00000468805       42653636
7798         PDE9A ENSG00000160191       ENST00000468805       42653636
7799         PDE9A ENSG00000160191       ENST00000468805       42653636
7800         PDE9A ENSG00000160191       ENST00000468805       42653636
7801         PDE9A ENSG00000160191       ENST00000468805       42653636
7802         PDE9A ENSG00000160191       ENST00000468805       42653636
7803         PDE9A ENSG00000160191       ENST00000468805       42653636
7804         PDE9A ENSG00000160191       ENST00000468805       42653636
7805         PDE9A ENSG00000160191       ENST00000468805       42653636
7806         PDE9A ENSG00000160191       ENST00000468805       42653636
7807         PDE9A ENSG00000160191       ENST00000468805       42653636
7808         PDE9A ENSG00000160191       ENST00000468805       42653636
7809         PDE9A ENSG00000160191       ENST00000468805       42653636
7810         PDE9A ENSG00000160191       ENST00000468805       42653636
7811         PDE9A ENSG00000160191       ENST00000468805       42653636
7812         PDE9A ENSG00000160191       ENST00000468805       42653636
7813         PDE9A ENSG00000160191       ENST00000328862       42653636
7814         PDE9A ENSG00000160191       ENST00000328862       42653636
7815         PDE9A ENSG00000160191       ENST00000328862       42653636
7816         PDE9A ENSG00000160191       ENST00000328862       42653636
7817         PDE9A ENSG00000160191       ENST00000328862       42653636
7818         PDE9A ENSG00000160191       ENST00000328862       42653636
7819         PDE9A ENSG00000160191       ENST00000328862       42653636
7820         PDE9A ENSG00000160191       ENST00000328862       42653636
7821         PDE9A ENSG00000160191       ENST00000328862       42653636
7822         PDE9A ENSG00000160191       ENST00000328862       42653636
7823         PDE9A ENSG00000160191       ENST00000328862       42653636
7824         PDE9A ENSG00000160191       ENST00000328862       42653636
7825         PDE9A ENSG00000160191       ENST00000328862       42653636
7826         PDE9A ENSG00000160191       ENST00000328862       42653636
7827         PDE9A ENSG00000160191       ENST00000328862       42653636
7828         PDE9A ENSG00000160191       ENST00000328862       42653636
7829         PDE9A ENSG00000160191       ENST00000328862       42653636
7830         PDE9A ENSG00000160191       ENST00000328862       42653636
7831         PDE9A ENSG00000160191       ENST00000328862       42653636
7832         PDE9A ENSG00000160191       ENST00000335440       42653636
7833         PDE9A ENSG00000160191       ENST00000335440       42653636
7834         PDE9A ENSG00000160191       ENST00000335440       42653636
7835         PDE9A ENSG00000160191       ENST00000335440       42653636
7836         PDE9A ENSG00000160191       ENST00000335440       42653636
7837         PDE9A ENSG00000160191       ENST00000335440       42653636
7838         PDE9A ENSG00000160191       ENST00000335440       42653636
7839         PDE9A ENSG00000160191       ENST00000335440       42653636
7840         PDE9A ENSG00000160191       ENST00000335440       42653636
7841         PDE9A ENSG00000160191       ENST00000335440       42653636
7842         PDE9A ENSG00000160191       ENST00000335440       42653636
7843         PDE9A ENSG00000160191       ENST00000335440       42653636
7844         PDE9A ENSG00000160191       ENST00000335440       42653636
7845         PDE9A ENSG00000160191       ENST00000335440       42653636
7846         PDE9A ENSG00000160191       ENST00000335440       42653636
7847         PDE9A ENSG00000160191       ENST00000335440       42653636
7848         PDE9A ENSG00000160191       ENST00000335440       42653636
7849         PDE9A ENSG00000160191       ENST00000398225       42653636
7850         PDE9A ENSG00000160191       ENST00000398225       42653636
7851         PDE9A ENSG00000160191       ENST00000398225       42653636
7852         PDE9A ENSG00000160191       ENST00000398225       42653636
7853         PDE9A ENSG00000160191       ENST00000398225       42653636
7854         PDE9A ENSG00000160191       ENST00000398225       42653636
7855         PDE9A ENSG00000160191       ENST00000398225       42653636
7856         PDE9A ENSG00000160191       ENST00000398225       42653636
7857         PDE9A ENSG00000160191       ENST00000398225       42653636
7858         PDE9A ENSG00000160191       ENST00000398225       42653636
7859         PDE9A ENSG00000160191       ENST00000398225       42653636
7860         PDE9A ENSG00000160191       ENST00000398225       42653636
7861         PDE9A ENSG00000160191       ENST00000398225       42653636
7862         PDE9A ENSG00000160191       ENST00000398225       42653636
7863         PDE9A ENSG00000160191       ENST00000398225       42653636
7864         PDE9A ENSG00000160191       ENST00000398225       42653636
7865         PDE9A ENSG00000160191       ENST00000398225       42653636
7866         PDE9A ENSG00000160191       ENST00000398225       42653636
7867         PDE9A ENSG00000160191       ENST00000398225       42653636
7868         PDE9A ENSG00000160191       ENST00000497805       42653636
7869         PDE9A ENSG00000160191       ENST00000497805       42653636
7870         PDE9A ENSG00000160191       ENST00000497805       42653636
7871         PDE9A ENSG00000160191       ENST00000497805       42653636
7872         PDE9A ENSG00000160191       ENST00000497805       42653636
7873         PDE9A ENSG00000160191       ENST00000497805       42653636
7874         PDE9A ENSG00000160191       ENST00000497805       42653636
7875         PDE9A ENSG00000160191       ENST00000497805       42653636
7876         PDE9A ENSG00000160191       ENST00000497805       42653636
7877         PDE9A ENSG00000160191       ENST00000497805       42653636
7878         PDE9A ENSG00000160191       ENST00000497805       42653636
7879         PDE9A ENSG00000160191       ENST00000497805       42653636
7880         PDE9A ENSG00000160191       ENST00000497805       42653636
7881         PDE9A ENSG00000160191       ENST00000497805       42653636
7882         PDE9A ENSG00000160191       ENST00000497805       42653636
7883         PDE9A ENSG00000160191       ENST00000497805       42653636
7884         PDE9A ENSG00000160191       ENST00000497805       42653636
7885         PDE9A ENSG00000160191       ENST00000497805       42653636
7886         PDE9A ENSG00000160191       ENST00000398229       42653636
7887         PDE9A ENSG00000160191       ENST00000398229       42653636
7888         PDE9A ENSG00000160191       ENST00000398229       42653636
7889         PDE9A ENSG00000160191       ENST00000398229       42653636
7890         PDE9A ENSG00000160191       ENST00000398229       42653636
7891         PDE9A ENSG00000160191       ENST00000398229       42653636
7892         PDE9A ENSG00000160191       ENST00000398229       42653636
7893         PDE9A ENSG00000160191       ENST00000398229       42653636
7894         PDE9A ENSG00000160191       ENST00000398229       42653636
7895         PDE9A ENSG00000160191       ENST00000398229       42653636
7896         PDE9A ENSG00000160191       ENST00000398229       42653636
7897         PDE9A ENSG00000160191       ENST00000398229       42653636
7898         PDE9A ENSG00000160191       ENST00000398229       42653636
7899         PDE9A ENSG00000160191       ENST00000398229       42653636
7900         PDE9A ENSG00000160191       ENST00000398229       42653636
7901         PDE9A ENSG00000160191       ENST00000398229       42653636
7902         PDE9A ENSG00000160191       ENST00000398227       42653636
7903         PDE9A ENSG00000160191       ENST00000398227       42653636
7904         PDE9A ENSG00000160191       ENST00000398227       42653636
7905         PDE9A ENSG00000160191       ENST00000398227       42653636
7906         PDE9A ENSG00000160191       ENST00000398227       42653636
7907         PDE9A ENSG00000160191       ENST00000398227       42653636
7908         PDE9A ENSG00000160191       ENST00000398227       42653636
7909         PDE9A ENSG00000160191       ENST00000398227       42653636
7910         PDE9A ENSG00000160191       ENST00000398227       42653636
7911         PDE9A ENSG00000160191       ENST00000398227       42653636
7912         PDE9A ENSG00000160191       ENST00000398227       42653636
7913         PDE9A ENSG00000160191       ENST00000398227       42653636
7914         PDE9A ENSG00000160191       ENST00000398227       42653636
7915         PDE9A ENSG00000160191       ENST00000398227       42653636
7916         PDE9A ENSG00000160191       ENST00000398227       42653636
7917         PDE9A ENSG00000160191       ENST00000460989       42653636
7918         PDE9A ENSG00000160191       ENST00000460989       42653636
7919         PDE9A ENSG00000160191       ENST00000460989       42653636
7920         PDE9A ENSG00000160191       ENST00000460989       42653636
7921         PDE9A ENSG00000160191       ENST00000460989       42653636
7922         PDE9A ENSG00000160191       ENST00000460989       42653636
7923         PDE9A ENSG00000160191       ENST00000460989       42653636
7924         PDE9A ENSG00000160191       ENST00000460989       42653636
7925         PDE9A ENSG00000160191       ENST00000460989       42653636
7926         PDE9A ENSG00000160191       ENST00000460989       42653636
7927         PDE9A ENSG00000160191       ENST00000460989       42653636
7928         PDE9A ENSG00000160191       ENST00000460989       42653636
7929         PDE9A ENSG00000160191       ENST00000460989       42653636
7930         PDE9A ENSG00000160191       ENST00000460989       42653636
7931         PDE9A ENSG00000160191       ENST00000467403       42653636
7932         PDE9A ENSG00000160191       ENST00000467403       42653636
7933         PDE9A ENSG00000160191       ENST00000467403       42653636
7934         PDE9A ENSG00000160191       ENST00000467403       42653636
7935         PDE9A ENSG00000160191       ENST00000467403       42653636
7936         PDE9A ENSG00000160191       ENST00000467403       42653636
7937         PDE9A ENSG00000160191       ENST00000467403       42653636
7938         PDE9A ENSG00000160191       ENST00000467403       42653636
7939         PDE9A ENSG00000160191       ENST00000467403       42653636
7940         PDE9A ENSG00000160191       ENST00000467403       42653636
7941         PDE9A ENSG00000160191       ENST00000467403       42653636
7942         PDE9A ENSG00000160191       ENST00000467403       42653636
7943         PDE9A ENSG00000160191       ENST00000467403       42653636
7944         PDE9A ENSG00000160191       ENST00000467403       42653636
7945         PDE9A ENSG00000160191       ENST00000467403       42653636
7946         PDE9A ENSG00000160191       ENST00000467403       42653636
7947         PDE9A ENSG00000160191       ENST00000349112       42653636
7948         PDE9A ENSG00000160191       ENST00000349112       42653636
7949         PDE9A ENSG00000160191       ENST00000349112       42653636
7950         PDE9A ENSG00000160191       ENST00000349112       42653636
7951         PDE9A ENSG00000160191       ENST00000349112       42653636
7952         PDE9A ENSG00000160191       ENST00000349112       42653636
7953         PDE9A ENSG00000160191       ENST00000349112       42653636
7954         PDE9A ENSG00000160191       ENST00000349112       42653636
7955         PDE9A ENSG00000160191       ENST00000349112       42653636
7956         PDE9A ENSG00000160191       ENST00000349112       42653636
7957         PDE9A ENSG00000160191       ENST00000349112       42653636
7958         PDE9A ENSG00000160191       ENST00000349112       42653636
7959         PDE9A ENSG00000160191       ENST00000349112       42653636
7960         PDE9A ENSG00000160191       ENST00000349112       42653636
7961         PDE9A ENSG00000160191       ENST00000349112       42653636
7962         PDE9A ENSG00000160191       ENST00000349112       42653636
7963         PDE9A ENSG00000160191       ENST00000398224       42653636
7964         PDE9A ENSG00000160191       ENST00000398224       42653636
7965         PDE9A ENSG00000160191       ENST00000398224       42653636
7966         PDE9A ENSG00000160191       ENST00000398224       42653636
7967         PDE9A ENSG00000160191       ENST00000398224       42653636
7968         PDE9A ENSG00000160191       ENST00000398224       42653636
7969         PDE9A ENSG00000160191       ENST00000398224       42653636
7970         PDE9A ENSG00000160191       ENST00000398224       42653636
7971         PDE9A ENSG00000160191       ENST00000398224       42653636
7972         PDE9A ENSG00000160191       ENST00000398224       42653636
7973         PDE9A ENSG00000160191       ENST00000398224       42653636
7974         PDE9A ENSG00000160191       ENST00000398224       42653636
7975         PDE9A ENSG00000160191       ENST00000398224       42653636
7976         PDE9A ENSG00000160191       ENST00000398224       42653636
7977         PDE9A ENSG00000160191       ENST00000398224       42653636
7978         PDE9A ENSG00000160191       ENST00000398224       42653636
7979         PDE9A ENSG00000160191       ENST00000398224       42653636
7980         PDE9A ENSG00000160191       ENST00000467162       42653636
7981         PDE9A ENSG00000160191       ENST00000467162       42653636
7982         PDE9A ENSG00000160191       ENST00000467162       42653636
7983         PDE9A ENSG00000160191       ENST00000467162       42653636
7984         PDE9A ENSG00000160191       ENST00000467162       42653636
7985         PDE9A ENSG00000160191       ENST00000467162       42653636
7986         PDE9A ENSG00000160191       ENST00000467162       42653636
7987         PDE9A ENSG00000160191       ENST00000467162       42653636
7988         PDE9A ENSG00000160191       ENST00000467162       42653636
7989         PDE9A ENSG00000160191       ENST00000467162       42653636
7990         PDE9A ENSG00000160191       ENST00000467162       42653636
7991         PDE9A ENSG00000160191       ENST00000495343       42653636
7992         PDE9A ENSG00000160191       ENST00000495343       42653636
7993         PDE9A ENSG00000160191       ENST00000495343       42653636
7994         PDE9A ENSG00000160191       ENST00000495343       42653636
7995         PDE9A ENSG00000160191       ENST00000495343       42653636
7996         PDE9A ENSG00000160191       ENST00000495343       42653636
7997         PDE9A ENSG00000160191       ENST00000495343       42653636
7998         PDE9A ENSG00000160191       ENST00000495343       42653636
7999         PDE9A ENSG00000160191       ENST00000495343       42653636
8000         PDE9A ENSG00000160191       ENST00000495343       42653636
8001         PDE9A ENSG00000160191       ENST00000495343       42653636
8002         PDE9A ENSG00000160191       ENST00000495343       42653636
8003         PDE9A ENSG00000160191       ENST00000495343       42653636
8004         PDE9A ENSG00000160191       ENST00000495343       42653636
8005         PDE9A ENSG00000160191       ENST00000495343       42653636
8006         PDE9A ENSG00000160191       ENST00000489319       42653636
8007         PDE9A ENSG00000160191       ENST00000489319       42653636
8008         PDE9A ENSG00000160191       ENST00000489319       42653636
8009         PDE9A ENSG00000160191       ENST00000489319       42653636
8010         PDE9A ENSG00000160191       ENST00000489319       42653636
8011         PDE9A ENSG00000160191       ENST00000489319       42653636
8012         PDE9A ENSG00000160191       ENST00000489319       42653636
8013         PDE9A ENSG00000160191       ENST00000489319       42653636
8014         PDE9A ENSG00000160191       ENST00000489319       42653636
8015         PDE9A ENSG00000160191       ENST00000489319       42653636
8016         PDE9A ENSG00000160191       ENST00000466472       42653636
8017         PDE9A ENSG00000160191       ENST00000466472       42653636
8018         PDE9A ENSG00000160191       ENST00000466472       42653636
8019         RSPH1 ENSG00000160188       ENST00000493019       42472486
8020         RSPH1 ENSG00000160188       ENST00000493019       42472486
8021         RSPH1 ENSG00000160188       ENST00000493019       42472486
8022         RSPH1 ENSG00000160188       ENST00000493019       42472486
8023         RSPH1 ENSG00000160188       ENST00000493019       42472486
8024         RSPH1 ENSG00000160188       ENST00000493019       42472486
8025         RSPH1 ENSG00000160188       ENST00000493019       42472486
8026         RSPH1 ENSG00000160188       ENST00000493019       42472486
8027         RSPH1 ENSG00000160188       ENST00000291536       42472486
8028         RSPH1 ENSG00000160188       ENST00000291536       42472486
8029         RSPH1 ENSG00000160188       ENST00000291536       42472486
8030         RSPH1 ENSG00000160188       ENST00000291536       42472486
8031         RSPH1 ENSG00000160188       ENST00000291536       42472486
8032         RSPH1 ENSG00000160188       ENST00000291536       42472486
8033         RSPH1 ENSG00000160188       ENST00000291536       42472486
8034         RSPH1 ENSG00000160188       ENST00000291536       42472486
8035         RSPH1 ENSG00000160188       ENST00000291536       42472486
8036         RSPH1 ENSG00000160188       ENST00000398352       42472486
8037         RSPH1 ENSG00000160188       ENST00000398352       42472486
8038         RSPH1 ENSG00000160188       ENST00000398352       42472486
8039         RSPH1 ENSG00000160188       ENST00000398352       42472486
8040         RSPH1 ENSG00000160188       ENST00000398352       42472486
8041         RSPH1 ENSG00000160188       ENST00000398352       42472486
8042         RSPH1 ENSG00000160188       ENST00000398352       42472486
8043         RSPH1 ENSG00000160188       ENST00000398352       42472486
8044       RPL34P3 ENSG00000223671       ENST00000421454       35472095
8045       RPS20P1 ENSG00000229761       ENST00000434853       35724747
8046               ENSG00000230794       ENST00000412240       35713139
8047               ENSG00000230794       ENST00000412240       35713139
8048         RUNX1 ENSG00000159216       ENST00000344691       34787801
8049         RUNX1 ENSG00000159216       ENST00000344691       34787801
8050         RUNX1 ENSG00000159216       ENST00000344691       34787801
8051         RUNX1 ENSG00000159216       ENST00000344691       34787801
8052         RUNX1 ENSG00000159216       ENST00000344691       34787801
8053         RUNX1 ENSG00000159216       ENST00000344691       34787801
8054         RUNX1 ENSG00000159216       ENST00000300305       34787801
8055         RUNX1 ENSG00000159216       ENST00000300305       34787801
8056         RUNX1 ENSG00000159216       ENST00000300305       34787801
8057         RUNX1 ENSG00000159216       ENST00000300305       34787801
8058         RUNX1 ENSG00000159216       ENST00000300305       34787801
8059         RUNX1 ENSG00000159216       ENST00000300305       34787801
8060         RUNX1 ENSG00000159216       ENST00000300305       34787801
8061         RUNX1 ENSG00000159216       ENST00000300305       34787801
8062         RUNX1 ENSG00000159216       ENST00000482318       34787801
8063         RUNX1 ENSG00000159216       ENST00000482318       34787801
8064         RUNX1 ENSG00000159216       ENST00000482318       34787801
8065         RUNX1 ENSG00000159216       ENST00000482318       34787801
8066         RUNX1 ENSG00000159216       ENST00000482318       34787801
8067         RUNX1 ENSG00000159216       ENST00000482318       34787801
8068         RUNX1 ENSG00000159216       ENST00000482318       34787801
8069         RUNX1 ENSG00000159216       ENST00000399240       34787801
8070         RUNX1 ENSG00000159216       ENST00000399240       34787801
8071         RUNX1 ENSG00000159216       ENST00000399240       34787801
8072         RUNX1 ENSG00000159216       ENST00000399240       34787801
8073         RUNX1 ENSG00000159216       ENST00000399240       34787801
8074         RUNX1 ENSG00000159216       ENST00000479325       34787801
8075         RUNX1 ENSG00000159216       ENST00000479325       34787801
8076         RUNX1 ENSG00000159216       ENST00000358356       34787801
8077         RUNX1 ENSG00000159216       ENST00000358356       34787801
8078         RUNX1 ENSG00000159216       ENST00000358356       34787801
8079         RUNX1 ENSG00000159216       ENST00000358356       34787801
8080         RUNX1 ENSG00000159216       ENST00000358356       34787801
8081         RUNX1 ENSG00000159216       ENST00000469087       34787801
8082         RUNX1 ENSG00000159216       ENST00000469087       34787801
8083         RUNX1 ENSG00000159216       ENST00000399237       34787801
8084         RUNX1 ENSG00000159216       ENST00000399237       34787801
8085         RUNX1 ENSG00000159216       ENST00000399237       34787801
8086         RUNX1 ENSG00000159216       ENST00000399237       34787801
8087         RUNX1 ENSG00000159216       ENST00000399237       34787801
8088         RUNX1 ENSG00000159216       ENST00000467577       34787801
8089         RUNX1 ENSG00000159216       ENST00000467577       34787801
8090         RUNX1 ENSG00000159216       ENST00000455571       34787801
8091         RUNX1 ENSG00000159216       ENST00000455571       34787801
8092         RUNX1 ENSG00000159216       ENST00000455571       34787801
8093         RUNX1 ENSG00000159216       ENST00000455571       34787801
8094         RUNX1 ENSG00000159216       ENST00000475045       34787801
8095         RUNX1 ENSG00000159216       ENST00000475045       34787801
8096         RUNX1 ENSG00000159216       ENST00000475045       34787801
8097         RUNX1 ENSG00000159216       ENST00000475045       34787801
8098         RUNX1 ENSG00000159216       ENST00000475045       34787801
8099         RUNX1 ENSG00000159216       ENST00000475045       34787801
8100         RUNX1 ENSG00000159216       ENST00000475045       34787801
8101         RUNX1 ENSG00000159216       ENST00000475045       34787801
8102         RUNX1 ENSG00000159216       ENST00000475045       34787801
8103         RUNX1 ENSG00000159216       ENST00000475045       34787801
8104         RUNX1 ENSG00000159216       ENST00000475045       34787801
8105         RUNX1 ENSG00000159216       ENST00000475045       34787801
8106         RUNX1 ENSG00000159216       ENST00000475045       34787801
8107         RUNX1 ENSG00000159216       ENST00000416754       34787801
8108         RUNX1 ENSG00000159216       ENST00000416754       34787801
8109         RUNX1 ENSG00000159216       ENST00000416754       34787801
8110         RUNX1 ENSG00000159216       ENST00000468726       34787801
8111         RUNX1 ENSG00000159216       ENST00000468726       34787801
8112         RUNX1 ENSG00000159216       ENST00000467692       34787801
8113         RUNX1 ENSG00000159216       ENST00000467692       34787801
8114         RUNX1 ENSG00000159216       ENST00000467692       34787801
8115         RUNX1 ENSG00000159216       ENST00000494829       34787801
8116         RUNX1 ENSG00000159216       ENST00000494829       34787801
8117         RUNX1 ENSG00000159216       ENST00000494829       34787801
8118         RUNX1 ENSG00000159216       ENST00000460207       34787801
8119         RUNX1 ENSG00000159216       ENST00000460207       34787801
8120         RUNX1 ENSG00000159216       ENST00000460207       34787801
8121         RUNX1 ENSG00000159216       ENST00000460207       34787801
8122         RUNX1 ENSG00000159216       ENST00000437180       34787801
8123         RUNX1 ENSG00000159216       ENST00000437180       34787801
8124         RUNX1 ENSG00000159216       ENST00000437180       34787801
8125         RUNX1 ENSG00000159216       ENST00000437180       34787801
8126         RUNX1 ENSG00000159216       ENST00000437180       34787801
8127         RUNX1 ENSG00000159216       ENST00000437180       34787801
8128         RUNX1 ENSG00000159216       ENST00000437180       34787801
8129         RUNX1 ENSG00000159216       ENST00000437180       34787801
8130         RUNX1 ENSG00000159216       ENST00000437180       34787801
8131       MEMO1P1 ENSG00000226054       ENST00000452572       36130489
8132               ENSG00000244676       ENST00000428689       17793488
8133               ENSG00000244676       ENST00000428689       17793488
8134               ENSG00000244676       ENST00000454737       17793488
8135               ENSG00000244676       ENST00000454737       17793488
8136         AATBC ENSG00000215458       ENST00000437258       43805758
8137         AATBC ENSG00000215458       ENST00000437258       43805758
8138         AATBC ENSG00000215458       ENST00000448247       43805758
8139         AATBC ENSG00000215458       ENST00000448247       43805758
8140         AATBC ENSG00000215458       ENST00000448247       43805758
8141         AATBC ENSG00000215458       ENST00000448247       43805758
8142         AATBC ENSG00000215458       ENST00000400385       43805758
8143         AATBC ENSG00000215458       ENST00000400385       43805758
8144               ENSG00000273115       ENST00000608410       26459903
8145      URB1-AS1 ENSG00000256073       ENST00000534991       32393130
8146          PDXK ENSG00000160209       ENST00000398081       43719094
8147          PDXK ENSG00000160209       ENST00000398081       43719094
8148          PDXK ENSG00000160209       ENST00000398081       43719094
8149          PDXK ENSG00000160209       ENST00000468090       43719094
8150          PDXK ENSG00000160209       ENST00000468090       43719094
8151          PDXK ENSG00000160209       ENST00000468090       43719094
8152          PDXK ENSG00000160209       ENST00000468090       43719094
8153          PDXK ENSG00000160209       ENST00000468090       43719094
8154          PDXK ENSG00000160209       ENST00000468090       43719094
8155          PDXK ENSG00000160209       ENST00000468090       43719094
8156          PDXK ENSG00000160209       ENST00000468090       43719094
8157          PDXK ENSG00000160209       ENST00000468090       43719094
8158          PDXK ENSG00000160209       ENST00000468090       43719094
8159          PDXK ENSG00000160209       ENST00000291565       43719094
8160          PDXK ENSG00000160209       ENST00000291565       43719094
8161          PDXK ENSG00000160209       ENST00000291565       43719094
8162          PDXK ENSG00000160209       ENST00000291565       43719094
8163          PDXK ENSG00000160209       ENST00000291565       43719094
8164          PDXK ENSG00000160209       ENST00000291565       43719094
8165          PDXK ENSG00000160209       ENST00000291565       43719094
8166          PDXK ENSG00000160209       ENST00000291565       43719094
8167          PDXK ENSG00000160209       ENST00000291565       43719094
8168          PDXK ENSG00000160209       ENST00000291565       43719094
8169          PDXK ENSG00000160209       ENST00000291565       43719094
8170          PDXK ENSG00000160209       ENST00000398085       43719094
8171          PDXK ENSG00000160209       ENST00000398085       43719094
8172          PDXK ENSG00000160209       ENST00000398085       43719094
8173          PDXK ENSG00000160209       ENST00000398085       43719094
8174          PDXK ENSG00000160209       ENST00000398085       43719094
8175          PDXK ENSG00000160209       ENST00000398085       43719094
8176          PDXK ENSG00000160209       ENST00000398085       43719094
8177          PDXK ENSG00000160209       ENST00000398085       43719094
8178          PDXK ENSG00000160209       ENST00000476084       43719094
8179          PDXK ENSG00000160209       ENST00000476084       43719094
8180          PDXK ENSG00000160209       ENST00000470029       43719094
8181          PDXK ENSG00000160209       ENST00000470029       43719094
8182          PDXK ENSG00000160209       ENST00000470029       43719094
8183          PDXK ENSG00000160209       ENST00000470029       43719094
8184          PDXK ENSG00000160209       ENST00000470029       43719094
8185          PDXK ENSG00000160209       ENST00000438837       43719094
8186          PDXK ENSG00000160209       ENST00000438837       43719094
8187          PDXK ENSG00000160209       ENST00000498040       43719094
8188          PDXK ENSG00000160209       ENST00000498040       43719094
8189          PDXK ENSG00000160209       ENST00000498040       43719094
8190          PDXK ENSG00000160209       ENST00000498040       43719094
8191          PDXK ENSG00000160209       ENST00000498040       43719094
8192          PDXK ENSG00000160209       ENST00000498040       43719094
8193          PDXK ENSG00000160209       ENST00000498040       43719094
8194          PDXK ENSG00000160209       ENST00000498040       43719094
8195          PDXK ENSG00000160209       ENST00000498040       43719094
8196          PDXK ENSG00000160209       ENST00000327574       43719094
8197          PDXK ENSG00000160209       ENST00000327574       43719094
8198          PDXK ENSG00000160209       ENST00000327574       43719094
8199          PDXK ENSG00000160209       ENST00000327574       43719094
8200          PDXK ENSG00000160209       ENST00000472777       43719094
8201          PDXK ENSG00000160209       ENST00000472777       43719094
8202          PDXK ENSG00000160209       ENST00000472777       43719094
8203          PDXK ENSG00000160209       ENST00000472777       43719094
8204          PDXK ENSG00000160209       ENST00000472777       43719094
8205          PDXK ENSG00000160209       ENST00000472777       43719094
8206          PDXK ENSG00000160209       ENST00000476313       43719094
8207          PDXK ENSG00000160209       ENST00000476313       43719094
8208          PDXK ENSG00000160209       ENST00000476313       43719094
8209          PDXK ENSG00000160209       ENST00000476313       43719094
8210          PDXK ENSG00000160209       ENST00000481512       43719094
8211          PDXK ENSG00000160209       ENST00000481512       43719094
8212          PDXK ENSG00000160209       ENST00000481512       43719094
8213          PDXK ENSG00000160209       ENST00000481512       43719094
8214          PDXK ENSG00000160209       ENST00000481512       43719094
8215          PDXK ENSG00000160209       ENST00000481512       43719094
8216          PDXK ENSG00000160209       ENST00000481512       43719094
8217          PDXK ENSG00000160209       ENST00000481512       43719094
8218          PDXK ENSG00000160209       ENST00000481512       43719094
8219          PDXK ENSG00000160209       ENST00000490666       43719094
8220          PDXK ENSG00000160209       ENST00000490666       43719094
8221          PDXK ENSG00000160209       ENST00000490666       43719094
8222          PDXK ENSG00000160209       ENST00000490666       43719094
8223          PDXK ENSG00000160209       ENST00000490666       43719094
8224          PDXK ENSG00000160209       ENST00000490666       43719094
8225          PDXK ENSG00000160209       ENST00000490666       43719094
8226          PDXK ENSG00000160209       ENST00000490666       43719094
8227          PDXK ENSG00000160209       ENST00000467908       43719094
8228          PDXK ENSG00000160209       ENST00000467908       43719094
8229          PDXK ENSG00000160209       ENST00000467908       43719094
8230          PDXK ENSG00000160209       ENST00000467908       43719094
8231          PDXK ENSG00000160209       ENST00000467908       43719094
8232          PDXK ENSG00000160209       ENST00000467908       43719094
8233          PDXK ENSG00000160209       ENST00000467908       43719094
8234          PDXK ENSG00000160209       ENST00000467908       43719094
8235          PDXK ENSG00000160209       ENST00000467908       43719094
8236          PDXK ENSG00000160209       ENST00000467908       43719094
8237          PDXK ENSG00000160209       ENST00000343528       43719094
8238          PDXK ENSG00000160209       ENST00000343528       43719094
8239          PDXK ENSG00000160209       ENST00000343528       43719094
8240          PDXK ENSG00000160209       ENST00000343528       43719094
8241          PDXK ENSG00000160209       ENST00000343528       43719094
8242          PDXK ENSG00000160209       ENST00000343528       43719094
8243          PDXK ENSG00000160209       ENST00000343528       43719094
8244          PDXK ENSG00000160209       ENST00000343528       43719094
8245          PDXK ENSG00000160209       ENST00000343528       43719094
8246          PDXK ENSG00000160209       ENST00000343528       43719094
8247          PDXK ENSG00000160209       ENST00000398078       43719094
8248          PDXK ENSG00000160209       ENST00000398078       43719094
8249          PDXK ENSG00000160209       ENST00000398078       43719094
8250          PDXK ENSG00000160209       ENST00000398078       43719094
8251          PDXK ENSG00000160209       ENST00000398078       43719094
8252          PDXK ENSG00000160209       ENST00000398078       43719094
8253          PDXK ENSG00000160209       ENST00000398078       43719094
8254          PDXK ENSG00000160209       ENST00000398078       43719094
8255          PDXK ENSG00000160209       ENST00000398078       43719094
8256          PDXK ENSG00000160209       ENST00000468392       43719094
8257          PDXK ENSG00000160209       ENST00000468392       43719094
8258          PDXK ENSG00000160209       ENST00000468392       43719094
8259          PDXK ENSG00000160209       ENST00000468392       43719094
8260          PDXK ENSG00000160209       ENST00000468392       43719094
8261          PDXK ENSG00000160209       ENST00000468392       43719094
8262          PDXK ENSG00000160209       ENST00000468392       43719094
8263          PDXK ENSG00000160209       ENST00000461123       43719094
8264          PDXK ENSG00000160209       ENST00000461123       43719094
8265          PDXK ENSG00000160209       ENST00000461123       43719094
8266          PDXK ENSG00000160209       ENST00000621478       43719094
8267          PDXK ENSG00000160209       ENST00000621478       43719094
8268     BACH1-IT2 ENSG00000228817       ENST00000626681       29370497
8269     BACH1-IT2 ENSG00000228817       ENST00000608072       29370497
8270     BACH1-IT2 ENSG00000228817       ENST00000608072       29370497
8271     BACH1-IT2 ENSG00000228817       ENST00000608072       29370497
8272     BACH1-IT2 ENSG00000228817       ENST00000608072       29370497
8273     BACH1-IT2 ENSG00000228817       ENST00000436529       29370497
8274     BACH1-IT2 ENSG00000228817       ENST00000436529       29370497
8275     BACH1-IT2 ENSG00000228817       ENST00000436529       29370497
8276               ENSG00000279728       ENST00000623809        6712596
8277               ENSG00000279728       ENST00000623809        6712596
8278               ENSG00000279728       ENST00000623809        6712596
8279               ENSG00000279728       ENST00000623809        6712596
8280               ENSG00000279728       ENST00000623809        6712596
8281               ENSG00000279728       ENST00000623809        6712596
8282               ENSG00000279728       ENST00000623809        6712596
8283               ENSG00000279728       ENST00000623809        6712596
8284               ENSG00000279788       ENST00000624266        6676178
8285               ENSG00000279788       ENST00000624266        6676178
8286               ENSG00000279788       ENST00000624266        6676178
8287               ENSG00000279788       ENST00000624266        6676178
8288               ENSG00000279788       ENST00000624266        6676178
8289               ENSG00000279788       ENST00000624266        6676178
8290               ENSG00000279788       ENST00000624266        6676178
8291               ENSG00000279788       ENST00000624266        6676178
8292               ENSG00000279788       ENST00000624266        6676178
8293               ENSG00000232124       ENST00000437557       44201290
8294               ENSG00000232124       ENST00000437557       44201290
8295          PIGP ENSG00000185808       ENST00000360525       37059170
8296          PIGP ENSG00000185808       ENST00000360525       37059170
8297          PIGP ENSG00000185808       ENST00000360525       37059170
8298          PIGP ENSG00000185808       ENST00000360525       37059170
8299          PIGP ENSG00000185808       ENST00000360525       37059170
8300          PIGP ENSG00000185808       ENST00000464265       37059170
8301          PIGP ENSG00000185808       ENST00000464265       37059170
8302          PIGP ENSG00000185808       ENST00000464265       37059170
8303          PIGP ENSG00000185808       ENST00000464265       37059170
8304          PIGP ENSG00000185808       ENST00000329667       37059170
8305          PIGP ENSG00000185808       ENST00000329667       37059170
8306          PIGP ENSG00000185808       ENST00000329667       37059170
8307          PIGP ENSG00000185808       ENST00000399102       37059170
8308          PIGP ENSG00000185808       ENST00000399102       37059170
8309          PIGP ENSG00000185808       ENST00000399102       37059170
8310          PIGP ENSG00000185808       ENST00000399102       37059170
8311          PIGP ENSG00000185808       ENST00000399102       37059170
8312          PIGP ENSG00000185808       ENST00000399103       37059170
8313          PIGP ENSG00000185808       ENST00000399103       37059170
8314          PIGP ENSG00000185808       ENST00000399103       37059170
8315          PIGP ENSG00000185808       ENST00000399103       37059170
8316          PIGP ENSG00000185808       ENST00000399103       37059170
8317          PIGP ENSG00000185808       ENST00000399098       37059170
8318          PIGP ENSG00000185808       ENST00000399098       37059170
8319          PIGP ENSG00000185808       ENST00000399098       37059170
8320          PIGP ENSG00000185808       ENST00000399098       37059170
8321          PIGP ENSG00000185808       ENST00000399098       37059170
8322          PIGP ENSG00000185808       ENST00000399098       37059170
8323          PIGP ENSG00000185808       ENST00000479152       37059170
8324          PIGP ENSG00000185808       ENST00000479152       37059170
8325          PIGP ENSG00000185808       ENST00000430792       37059170
8326          PIGP ENSG00000185808       ENST00000430792       37059170
8327          PIGP ENSG00000185808       ENST00000430792       37059170
8328               ENSG00000280179       ENST00000623297        6084364
8329               ENSG00000280179       ENST00000623297        6084364
8330               ENSG00000280179       ENST00000623297        6084364
8331               ENSG00000280179       ENST00000624872        6084364
8332               ENSG00000280179       ENST00000624872        6084364
8333               ENSG00000280179       ENST00000624872        6084364
8334               ENSG00000280179       ENST00000624872        6084364
8335     MSANTD2P1 ENSG00000231058       ENST00000445341       23101223
8336     MSANTD2P1 ENSG00000231058       ENST00000445341       23101223
8337     MSANTD2P1 ENSG00000231058       ENST00000445341       23101223
8338               ENSG00000225906       ENST00000438328       22882582
8339               ENSG00000225906       ENST00000438328       22882582
8340               ENSG00000225906       ENST00000438328       22882582
8341               ENSG00000237527       ENST00000416182       21655038
8342               ENSG00000237527       ENST00000416182       21655038
8343               ENSG00000237527       ENST00000416182       21655038
8344               ENSG00000237527       ENST00000416182       21655038
8345               ENSG00000237527       ENST00000416182       21655038
8346               ENSG00000234730       ENST00000428205       21566763
8347               ENSG00000234730       ENST00000428205       21566763
8348         SETD4 ENSG00000185917       ENST00000399215       36034541
8349         SETD4 ENSG00000185917       ENST00000399215       36034541
8350         SETD4 ENSG00000185917       ENST00000399215       36034541
8351         SETD4 ENSG00000185917       ENST00000399215       36034541
8352         SETD4 ENSG00000185917       ENST00000399215       36034541
8353         SETD4 ENSG00000185917       ENST00000399215       36034541
8354         SETD4 ENSG00000185917       ENST00000399215       36034541
8355         SETD4 ENSG00000185917       ENST00000399215       36034541
8356         SETD4 ENSG00000185917       ENST00000399215       36034541
8357         SETD4 ENSG00000185917       ENST00000399215       36034541
8358         SETD4 ENSG00000185917       ENST00000481477       36034541
8359         SETD4 ENSG00000185917       ENST00000481477       36034541
8360         SETD4 ENSG00000185917       ENST00000481477       36034541
8361         SETD4 ENSG00000185917       ENST00000481477       36034541
8362         SETD4 ENSG00000185917       ENST00000481477       36034541
8363         SETD4 ENSG00000185917       ENST00000481477       36034541
8364         SETD4 ENSG00000185917       ENST00000481477       36034541
8365         SETD4 ENSG00000185917       ENST00000481477       36034541
8366         SETD4 ENSG00000185917       ENST00000481477       36034541
8367         SETD4 ENSG00000185917       ENST00000481477       36034541
8368         SETD4 ENSG00000185917       ENST00000481477       36034541
8369         SETD4 ENSG00000185917       ENST00000399212       36034541
8370         SETD4 ENSG00000185917       ENST00000399212       36034541
8371         SETD4 ENSG00000185917       ENST00000399212       36034541
8372         SETD4 ENSG00000185917       ENST00000399212       36034541
8373         SETD4 ENSG00000185917       ENST00000399212       36034541
8374         SETD4 ENSG00000185917       ENST00000399212       36034541
8375         SETD4 ENSG00000185917       ENST00000399212       36034541
8376         SETD4 ENSG00000185917       ENST00000399212       36034541
8377         SETD4 ENSG00000185917       ENST00000399212       36034541
8378         SETD4 ENSG00000185917       ENST00000399212       36034541
8379         SETD4 ENSG00000185917       ENST00000399212       36034541
8380         SETD4 ENSG00000185917       ENST00000399212       36034541
8381         SETD4 ENSG00000185917       ENST00000332131       36034541
8382         SETD4 ENSG00000185917       ENST00000332131       36034541
8383         SETD4 ENSG00000185917       ENST00000332131       36034541
8384         SETD4 ENSG00000185917       ENST00000332131       36034541
8385         SETD4 ENSG00000185917       ENST00000332131       36034541
8386         SETD4 ENSG00000185917       ENST00000332131       36034541
8387         SETD4 ENSG00000185917       ENST00000332131       36034541
8388         SETD4 ENSG00000185917       ENST00000332131       36034541
8389         SETD4 ENSG00000185917       ENST00000332131       36034541
8390         SETD4 ENSG00000185917       ENST00000332131       36034541
8391         SETD4 ENSG00000185917       ENST00000332131       36034541
8392         SETD4 ENSG00000185917       ENST00000332131       36034541
8393         SETD4 ENSG00000185917       ENST00000487297       36034541
8394         SETD4 ENSG00000185917       ENST00000487297       36034541
8395         SETD4 ENSG00000185917       ENST00000487297       36034541
8396         SETD4 ENSG00000185917       ENST00000487297       36034541
8397         SETD4 ENSG00000185917       ENST00000487297       36034541
8398         SETD4 ENSG00000185917       ENST00000469482       36034541
8399         SETD4 ENSG00000185917       ENST00000469482       36034541
8400         SETD4 ENSG00000185917       ENST00000469482       36034541
8401         SETD4 ENSG00000185917       ENST00000469482       36034541
8402         SETD4 ENSG00000185917       ENST00000469482       36034541
8403         SETD4 ENSG00000185917       ENST00000399205       36034541
8404         SETD4 ENSG00000185917       ENST00000399205       36034541
8405         SETD4 ENSG00000185917       ENST00000399205       36034541
8406         SETD4 ENSG00000185917       ENST00000399205       36034541
8407         SETD4 ENSG00000185917       ENST00000399205       36034541
8408         SETD4 ENSG00000185917       ENST00000399205       36034541
8409         SETD4 ENSG00000185917       ENST00000399205       36034541
8410         SETD4 ENSG00000185917       ENST00000399205       36034541
8411         SETD4 ENSG00000185917       ENST00000399208       36034541
8412         SETD4 ENSG00000185917       ENST00000399208       36034541
8413         SETD4 ENSG00000185917       ENST00000399208       36034541
8414         SETD4 ENSG00000185917       ENST00000399208       36034541
8415         SETD4 ENSG00000185917       ENST00000399208       36034541
8416         SETD4 ENSG00000185917       ENST00000399208       36034541
8417         SETD4 ENSG00000185917       ENST00000399208       36034541
8418         SETD4 ENSG00000185917       ENST00000399201       36034541
8419         SETD4 ENSG00000185917       ENST00000399201       36034541
8420         SETD4 ENSG00000185917       ENST00000399201       36034541
8421         SETD4 ENSG00000185917       ENST00000399201       36034541
8422         SETD4 ENSG00000185917       ENST00000399201       36034541
8423         SETD4 ENSG00000185917       ENST00000399201       36034541
8424         SETD4 ENSG00000185917       ENST00000399201       36034541
8425         SETD4 ENSG00000185917       ENST00000399201       36034541
8426         SETD4 ENSG00000185917       ENST00000399207       36034541
8427         SETD4 ENSG00000185917       ENST00000399207       36034541
8428         SETD4 ENSG00000185917       ENST00000399207       36034541
8429         SETD4 ENSG00000185917       ENST00000399207       36034541
8430         SETD4 ENSG00000185917       ENST00000399207       36034541
8431         SETD4 ENSG00000185917       ENST00000399207       36034541
8432         SETD4 ENSG00000185917       ENST00000399207       36034541
8433         SETD4 ENSG00000185917       ENST00000424303       36034541
8434         SETD4 ENSG00000185917       ENST00000424303       36034541
8435         SETD4 ENSG00000185917       ENST00000424303       36034541
8436         SETD4 ENSG00000185917       ENST00000424303       36034541
8437         SETD4 ENSG00000185917       ENST00000424303       36034541
8438         SETD4 ENSG00000185917       ENST00000424303       36034541
8439         SETD4 ENSG00000185917       ENST00000429161       36034541
8440         SETD4 ENSG00000185917       ENST00000429161       36034541
8441         SETD4 ENSG00000185917       ENST00000429161       36034541
8442         SETD4 ENSG00000185917       ENST00000429161       36034541
8443         SETD4 ENSG00000185917       ENST00000429161       36034541
8444         SETD4 ENSG00000185917       ENST00000429161       36034541
8445         SETD4 ENSG00000185917       ENST00000485865       36034541
8446         SETD4 ENSG00000185917       ENST00000485865       36034541
8447         SETD4 ENSG00000185917       ENST00000485865       36034541
8448         SETD4 ENSG00000185917       ENST00000485865       36034541
8449         SETD4 ENSG00000185917       ENST00000446166       36034541
8450         SETD4 ENSG00000185917       ENST00000446166       36034541
8451         SETD4 ENSG00000185917       ENST00000446166       36034541
8452         SETD4 ENSG00000185917       ENST00000446166       36034541
8453         SETD4 ENSG00000185917       ENST00000446166       36034541
8454         SETD4 ENSG00000185917       ENST00000446166       36034541
8455         SETD4 ENSG00000185917       ENST00000446166       36034541
8456         SETD4 ENSG00000185917       ENST00000442559       36034541
8457         SETD4 ENSG00000185917       ENST00000442559       36034541
8458         SETD4 ENSG00000185917       ENST00000442559       36034541
8459         SETD4 ENSG00000185917       ENST00000442559       36034541
8460         SETD4 ENSG00000185917       ENST00000442559       36034541
8461         SETD4 ENSG00000185917       ENST00000442559       36034541
8462         SETD4 ENSG00000185917       ENST00000460704       36034541
8463         SETD4 ENSG00000185917       ENST00000460704       36034541
8464         SETD4 ENSG00000185917       ENST00000443703       36034541
8465         SETD4 ENSG00000185917       ENST00000443703       36034541
8466         SETD4 ENSG00000185917       ENST00000443703       36034541
8467         SETD4 ENSG00000185917       ENST00000443703       36034541
8468               ENSG00000276738       ENST00000615444       20597953
8469       RPS3AP1 ENSG00000233206       ENST00000413190       20430443
8470       KRT18P2 ENSG00000234439       ENST00000447938       20424949
8471       C1QBPP1 ENSG00000215353       ENST00000400117       19759359
8472         MORC3 ENSG00000159256       ENST00000492336       36320189
8473         MORC3 ENSG00000159256       ENST00000492336       36320189
8474         MORC3 ENSG00000159256       ENST00000492336       36320189
8475         MORC3 ENSG00000159256       ENST00000492336       36320189
8476         MORC3 ENSG00000159256       ENST00000492336       36320189
8477         MORC3 ENSG00000159256       ENST00000400485       36320189
8478         MORC3 ENSG00000159256       ENST00000400485       36320189
8479         MORC3 ENSG00000159256       ENST00000400485       36320189
8480         MORC3 ENSG00000159256       ENST00000400485       36320189
8481         MORC3 ENSG00000159256       ENST00000400485       36320189
8482         MORC3 ENSG00000159256       ENST00000400485       36320189
8483         MORC3 ENSG00000159256       ENST00000400485       36320189
8484         MORC3 ENSG00000159256       ENST00000400485       36320189
8485         MORC3 ENSG00000159256       ENST00000400485       36320189
8486         MORC3 ENSG00000159256       ENST00000400485       36320189
8487         MORC3 ENSG00000159256       ENST00000400485       36320189
8488         MORC3 ENSG00000159256       ENST00000400485       36320189
8489         MORC3 ENSG00000159256       ENST00000400485       36320189
8490         MORC3 ENSG00000159256       ENST00000400485       36320189
8491         MORC3 ENSG00000159256       ENST00000400485       36320189
8492         MORC3 ENSG00000159256       ENST00000400485       36320189
8493         MORC3 ENSG00000159256       ENST00000400485       36320189
8494         MORC3 ENSG00000159256       ENST00000487909       36320189
8495         MORC3 ENSG00000159256       ENST00000487909       36320189
8496         MORC3 ENSG00000159256       ENST00000487909       36320189
8497         MORC3 ENSG00000159256       ENST00000487909       36320189
8498         MORC3 ENSG00000159256       ENST00000487909       36320189
8499         MORC3 ENSG00000159256       ENST00000487909       36320189
8500         MORC3 ENSG00000159256       ENST00000487909       36320189
8501         MORC3 ENSG00000159256       ENST00000487909       36320189
8502         MORC3 ENSG00000159256       ENST00000487909       36320189
8503         MORC3 ENSG00000159256       ENST00000487909       36320189
8504         MORC3 ENSG00000159256       ENST00000487909       36320189
8505         MORC3 ENSG00000159256       ENST00000487909       36320189
8506         MORC3 ENSG00000159256       ENST00000487909       36320189
8507         MORC3 ENSG00000159256       ENST00000487909       36320189
8508         MORC3 ENSG00000159256       ENST00000487909       36320189
8509         MORC3 ENSG00000159256       ENST00000487909       36320189
8510         MORC3 ENSG00000159256       ENST00000485933       36320189
8511         MORC3 ENSG00000159256       ENST00000485933       36320189
8512         MORC3 ENSG00000159256       ENST00000485299       36320189
8513         MORC3 ENSG00000159256       ENST00000485299       36320189
8514         MORC3 ENSG00000159256       ENST00000485299       36320189
8515         MORC3 ENSG00000159256       ENST00000485299       36320189
8516         MORC3 ENSG00000159256       ENST00000484028       36320189
8517         MORC3 ENSG00000159256       ENST00000484028       36320189
8518         MORC3 ENSG00000159256       ENST00000484028       36320189
8519         MORC3 ENSG00000159256       ENST00000546482       36320189
8520         MORC3 ENSG00000159256       ENST00000546482       36320189
8521         MORC3 ENSG00000159256       ENST00000546482       36320189
8522         MORC3 ENSG00000159256       ENST00000546482       36320189
8523         MORC3 ENSG00000159256       ENST00000546482       36320189
8524         MORC3 ENSG00000159256       ENST00000546482       36320189
8525         MORC3 ENSG00000159256       ENST00000546482       36320189
8526         MORC3 ENSG00000159256       ENST00000546482       36320189
8527         MORC3 ENSG00000159256       ENST00000549948       36320189
8528         MORC3 ENSG00000159256       ENST00000549948       36320189
8529         MORC3 ENSG00000159256       ENST00000549948       36320189
8530         MORC3 ENSG00000159256       ENST00000549948       36320189
8531         MORC3 ENSG00000159256       ENST00000549948       36320189
8532         MORC3 ENSG00000159256       ENST00000549948       36320189
8533         MORC3 ENSG00000159256       ENST00000549948       36320189
8534         MORC3 ENSG00000159256       ENST00000551788       36320189
8535         MORC3 ENSG00000159256       ENST00000551788       36320189
8536         MORC3 ENSG00000159256       ENST00000551788       36320189
8537         MORC3 ENSG00000159256       ENST00000551788       36320189
8538         MORC3 ENSG00000159256       ENST00000551788       36320189
8539         MORC3 ENSG00000159256       ENST00000551788       36320189
8540         MORC3 ENSG00000159256       ENST00000551367       36320189
8541         MORC3 ENSG00000159256       ENST00000551367       36320189
8542         MORC3 ENSG00000159256       ENST00000551367       36320189
8543         MORC3 ENSG00000159256       ENST00000552581       36320189
8544         MORC3 ENSG00000159256       ENST00000552581       36320189
8545         MORC3 ENSG00000159256       ENST00000552581       36320189
8546         MORC3 ENSG00000159256       ENST00000552581       36320189
8547         MORC3 ENSG00000159256       ENST00000552581       36320189
8548         MORC3 ENSG00000159256       ENST00000552581       36320189
8549         MORC3 ENSG00000159256       ENST00000552581       36320189
8550         MORC3 ENSG00000159256       ENST00000547657       36320189
8551         MORC3 ENSG00000159256       ENST00000547657       36320189
8552         MORC3 ENSG00000159256       ENST00000547657       36320189
8553         MORC3 ENSG00000159256       ENST00000547657       36320189
8554         MORC3 ENSG00000159256       ENST00000547657       36320189
8555               ENSG00000228107       ENST00000397184       36360630
8556               ENSG00000228107       ENST00000397184       36360630
8557        CHAF1B ENSG00000159259       ENST00000314103       36385378
8558        CHAF1B ENSG00000159259       ENST00000314103       36385378
8559        CHAF1B ENSG00000159259       ENST00000314103       36385378
8560        CHAF1B ENSG00000159259       ENST00000314103       36385378
8561        CHAF1B ENSG00000159259       ENST00000314103       36385378
8562        CHAF1B ENSG00000159259       ENST00000314103       36385378
8563        CHAF1B ENSG00000159259       ENST00000314103       36385378
8564        CHAF1B ENSG00000159259       ENST00000314103       36385378
8565        CHAF1B ENSG00000159259       ENST00000314103       36385378
8566        CHAF1B ENSG00000159259       ENST00000314103       36385378
8567        CHAF1B ENSG00000159259       ENST00000314103       36385378
8568        CHAF1B ENSG00000159259       ENST00000314103       36385378
8569        CHAF1B ENSG00000159259       ENST00000314103       36385378
8570        CHAF1B ENSG00000159259       ENST00000314103       36385378
8571        CHAF1B ENSG00000159259       ENST00000480486       36385378
8572        CHAF1B ENSG00000159259       ENST00000480486       36385378
8573        CHAF1B ENSG00000159259       ENST00000480486       36385378
8574        CHAF1B ENSG00000159259       ENST00000480486       36385378
8575        CHAF1B ENSG00000159259       ENST00000480486       36385378
8576        CHAF1B ENSG00000159259       ENST00000480486       36385378
8577        CHAF1B ENSG00000159259       ENST00000481458       36385378
8578        CHAF1B ENSG00000159259       ENST00000481458       36385378
8579        CHAF1B ENSG00000159259       ENST00000481458       36385378
8580        CHAF1B ENSG00000159259       ENST00000481458       36385378
8581      PPP1R2P2 ENSG00000234008       ENST00000440405       35887195
8582        RPL3P1 ENSG00000228149       ENST00000437106       36168970
8583          RRP1 ENSG00000160214       ENST00000475534       43789513
8584          RRP1 ENSG00000160214       ENST00000475534       43789513
8585          RRP1 ENSG00000160214       ENST00000475534       43789513
8586          RRP1 ENSG00000160214       ENST00000475534       43789513
8587          RRP1 ENSG00000160214       ENST00000475534       43789513
8588          RRP1 ENSG00000160214       ENST00000475534       43789513
8589          RRP1 ENSG00000160214       ENST00000497547       43789513
8590          RRP1 ENSG00000160214       ENST00000497547       43789513
8591          RRP1 ENSG00000160214       ENST00000497547       43789513
8592          RRP1 ENSG00000160214       ENST00000497547       43789513
8593          RRP1 ENSG00000160214       ENST00000497547       43789513
8594          RRP1 ENSG00000160214       ENST00000497547       43789513
8595          RRP1 ENSG00000160214       ENST00000497547       43789513
8596          RRP1 ENSG00000160214       ENST00000497547       43789513
8597          RRP1 ENSG00000160214       ENST00000497547       43789513
8598          RRP1 ENSG00000160214       ENST00000497547       43789513
8599          RRP1 ENSG00000160214       ENST00000497547       43789513
8600          RRP1 ENSG00000160214       ENST00000497547       43789513
8601          RRP1 ENSG00000160214       ENST00000497547       43789513
8602          RRP1 ENSG00000160214       ENST00000483896       43789513
8603          RRP1 ENSG00000160214       ENST00000483896       43789513
8604          RRP1 ENSG00000160214       ENST00000483896       43789513
8605          RRP1 ENSG00000160214       ENST00000483896       43789513
8606          RRP1 ENSG00000160214       ENST00000483896       43789513
8607          RRP1 ENSG00000160214       ENST00000483896       43789513
8608          RRP1 ENSG00000160214       ENST00000483896       43789513
8609          RRP1 ENSG00000160214       ENST00000483896       43789513
8610          RRP1 ENSG00000160214       ENST00000483896       43789513
8611          RRP1 ENSG00000160214       ENST00000492638       43789513
8612          RRP1 ENSG00000160214       ENST00000492638       43789513
8613          RRP1 ENSG00000160214       ENST00000492638       43789513
8614          RRP1 ENSG00000160214       ENST00000473988       43789513
8615          RRP1 ENSG00000160214       ENST00000473988       43789513
8616          RRP1 ENSG00000160214       ENST00000467112       43789513
8617          RRP1 ENSG00000160214       ENST00000467112       43789513
8618          RRP1 ENSG00000160214       ENST00000467112       43789513
8619          RRP1 ENSG00000160214       ENST00000467112       43789513
8620          RRP1 ENSG00000160214       ENST00000467112       43789513
8621          RRP1 ENSG00000160214       ENST00000467112       43789513
8622          RRP1 ENSG00000160214       ENST00000467112       43789513
8623          RRP1 ENSG00000160214       ENST00000467112       43789513
8624          RRP1 ENSG00000160214       ENST00000467112       43789513
8625          RRP1 ENSG00000160214       ENST00000467112       43789513
8626          RRP1 ENSG00000160214       ENST00000471909       43789513
8627          RRP1 ENSG00000160214       ENST00000471909       43789513
8628          RRP1 ENSG00000160214       ENST00000471909       43789513
8629          RRP1 ENSG00000160214       ENST00000471909       43789513
8630          RRP1 ENSG00000160214       ENST00000471909       43789513
8631          RRP1 ENSG00000160214       ENST00000471909       43789513
8632          RRP1 ENSG00000160214       ENST00000471909       43789513
8633          RRP1 ENSG00000160214       ENST00000471909       43789513
8634               ENSG00000234340       ENST00000433524       22134698
8635      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8636      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8637      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8638      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8639      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8640      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8641      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8642      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8643      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8644      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8645      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8646      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8647      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8648      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8649      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8650      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8651      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8652      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8653      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8654      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8655      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8656      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8657      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8658      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8659      TMPRSS15 ENSG00000154646       ENST00000284885       18269116
8660      TMPRSS15 ENSG00000154646       ENST00000422787       18269116
8661      TMPRSS15 ENSG00000154646       ENST00000422787       18269116
8662      TMPRSS15 ENSG00000154646       ENST00000422787       18269116
8663      TMPRSS15 ENSG00000154646       ENST00000422787       18269116
8664      TMPRSS15 ENSG00000154646       ENST00000422787       18269116
8665      TMPRSS15 ENSG00000154646       ENST00000422787       18269116
8666      TMPRSS15 ENSG00000154646       ENST00000422787       18269116
8667      TMPRSS15 ENSG00000154646       ENST00000422787       18269116
8668      TMPRSS15 ENSG00000154646       ENST00000474775       18269116
8669      TMPRSS15 ENSG00000154646       ENST00000474775       18269116
8670      TMPRSS15 ENSG00000154646       ENST00000474775       18269116
8671      TMPRSS15 ENSG00000154646       ENST00000474775       18269116
8672     CHODL-AS1 ENSG00000231755       ENST00000447175       17835016
8673     CHODL-AS1 ENSG00000231755       ENST00000447175       17835016
8674     CHODL-AS1 ENSG00000231755       ENST00000447175       17835016
8675         SYNJ1 ENSG00000159082       ENST00000438952       32628759
8676         SYNJ1 ENSG00000159082       ENST00000438952       32628759
8677         SYNJ1 ENSG00000159082       ENST00000438952       32628759
8678         SYNJ1 ENSG00000159082       ENST00000438952       32628759
8679         SYNJ1 ENSG00000159082       ENST00000438952       32628759
8680         SYNJ1 ENSG00000159082       ENST00000438952       32628759
8681         SYNJ1 ENSG00000159082       ENST00000438952       32628759
8682         SYNJ1 ENSG00000159082       ENST00000438952       32628759
8683         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8684         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8685         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8686         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8687         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8688         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8689         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8690         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8691         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8692         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8693         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8694         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8695         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8696         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8697         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8698         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8699         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8700         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8701         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8702         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8703         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8704         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8705         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8706         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8707         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8708         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8709         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8710         SYNJ1 ENSG00000159082       ENST00000630077       32628759
8711         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8712         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8713         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8714         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8715         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8716         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8717         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8718         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8719         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8720         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8721         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8722         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8723         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8724         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8725         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8726         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8727         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8728         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8729         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8730         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8731         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8732         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8733         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8734         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8735         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8736         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8737         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8738         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8739         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8740         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8741         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8742         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8743         SYNJ1 ENSG00000159082       ENST00000382499       32628759
8744         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8745         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8746         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8747         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8748         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8749         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8750         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8751         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8752         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8753         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8754         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8755         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8756         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8757         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8758         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8759         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8760         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8761         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8762         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8763         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8764         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8765         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8766         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8767         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8768         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8769         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8770         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8771         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8772         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8773         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8774         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8775         SYNJ1 ENSG00000159082       ENST00000433931       32628759
8776         SYNJ1 ENSG00000159082       ENST00000418301       32628759
8777         SYNJ1 ENSG00000159082       ENST00000418301       32628759
8778         SYNJ1 ENSG00000159082       ENST00000418301       32628759
8779         SYNJ1 ENSG00000159082       ENST00000418301       32628759
8780         SYNJ1 ENSG00000159082       ENST00000418301       32628759
8781         SYNJ1 ENSG00000159082       ENST00000467445       32628759
8782         SYNJ1 ENSG00000159082       ENST00000467445       32628759
8783         SYNJ1 ENSG00000159082       ENST00000464778       32628759
8784         SYNJ1 ENSG00000159082       ENST00000464778       32628759
8785         SYNJ1 ENSG00000159082       ENST00000464778       32628759
8786         SYNJ1 ENSG00000159082       ENST00000464778       32628759
8787         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8788         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8789         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8790         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8791         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8792         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8793         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8794         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8795         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8796         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8797         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8798         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8799         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8800         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8801         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8802         SYNJ1 ENSG00000159082       ENST00000429236       32628759
8803         SYNJ1 ENSG00000159082       ENST00000456084       32628759
8804         SYNJ1 ENSG00000159082       ENST00000456084       32628759
8805         SYNJ1 ENSG00000159082       ENST00000456084       32628759
8806         SYNJ1 ENSG00000159082       ENST00000456084       32628759
8807         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8808         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8809         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8810         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8811         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8812         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8813         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8814         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8815         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8816         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8817         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8818         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8819         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8820         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8821         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8822         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8823         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8824         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8825         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8826         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8827         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8828         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8829         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8830         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8831         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8832         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8833         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8834         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8835         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8836         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8837         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8838         SYNJ1 ENSG00000159082       ENST00000357345       32628759
8839         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8840         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8841         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8842         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8843         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8844         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8845         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8846         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8847         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8848         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8849         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8850         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8851         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8852         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8853         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8854         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8855         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8856         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8857         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8858         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8859         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8860         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8861         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8862         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8863         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8864         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8865         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8866         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8867         SYNJ1 ENSG00000159082       ENST00000382491       32628759
8868         BRWD1 ENSG00000185658       ENST00000333229       39184176
8869         BRWD1 ENSG00000185658       ENST00000333229       39184176
8870         BRWD1 ENSG00000185658       ENST00000333229       39184176
8871         BRWD1 ENSG00000185658       ENST00000333229       39184176
8872         BRWD1 ENSG00000185658       ENST00000333229       39184176
8873         BRWD1 ENSG00000185658       ENST00000333229       39184176
8874         BRWD1 ENSG00000185658       ENST00000333229       39184176
8875         BRWD1 ENSG00000185658       ENST00000333229       39184176
8876         BRWD1 ENSG00000185658       ENST00000333229       39184176
8877         BRWD1 ENSG00000185658       ENST00000333229       39184176
8878         BRWD1 ENSG00000185658       ENST00000333229       39184176
8879         BRWD1 ENSG00000185658       ENST00000333229       39184176
8880         BRWD1 ENSG00000185658       ENST00000333229       39184176
8881         BRWD1 ENSG00000185658       ENST00000333229       39184176
8882         BRWD1 ENSG00000185658       ENST00000333229       39184176
8883         BRWD1 ENSG00000185658       ENST00000333229       39184176
8884         BRWD1 ENSG00000185658       ENST00000333229       39184176
8885         BRWD1 ENSG00000185658       ENST00000333229       39184176
8886         BRWD1 ENSG00000185658       ENST00000333229       39184176
8887         BRWD1 ENSG00000185658       ENST00000333229       39184176
8888         BRWD1 ENSG00000185658       ENST00000333229       39184176
8889         BRWD1 ENSG00000185658       ENST00000333229       39184176
8890         BRWD1 ENSG00000185658       ENST00000333229       39184176
8891         BRWD1 ENSG00000185658       ENST00000333229       39184176
8892         BRWD1 ENSG00000185658       ENST00000333229       39184176
8893         BRWD1 ENSG00000185658       ENST00000333229       39184176
8894         BRWD1 ENSG00000185658       ENST00000333229       39184176
8895         BRWD1 ENSG00000185658       ENST00000333229       39184176
8896         BRWD1 ENSG00000185658       ENST00000333229       39184176
8897         BRWD1 ENSG00000185658       ENST00000333229       39184176
8898         BRWD1 ENSG00000185658       ENST00000333229       39184176
8899         BRWD1 ENSG00000185658       ENST00000333229       39184176
8900         BRWD1 ENSG00000185658       ENST00000333229       39184176
8901         BRWD1 ENSG00000185658       ENST00000333229       39184176
8902         BRWD1 ENSG00000185658       ENST00000333229       39184176
8903         BRWD1 ENSG00000185658       ENST00000333229       39184176
8904         BRWD1 ENSG00000185658       ENST00000333229       39184176
8905         BRWD1 ENSG00000185658       ENST00000333229       39184176
8906         BRWD1 ENSG00000185658       ENST00000333229       39184176
8907         BRWD1 ENSG00000185658       ENST00000333229       39184176
8908         BRWD1 ENSG00000185658       ENST00000333229       39184176
8909         BRWD1 ENSG00000185658       ENST00000333229       39184176
8910         BRWD1 ENSG00000185658       ENST00000446924       39184176
8911         BRWD1 ENSG00000185658       ENST00000446924       39184176
8912         BRWD1 ENSG00000185658       ENST00000446924       39184176
8913         BRWD1 ENSG00000185658       ENST00000446924       39184176
8914         BRWD1 ENSG00000185658       ENST00000446924       39184176
8915         BRWD1 ENSG00000185658       ENST00000446924       39184176
8916         BRWD1 ENSG00000185658       ENST00000446924       39184176
8917         BRWD1 ENSG00000185658       ENST00000446924       39184176
8918         BRWD1 ENSG00000185658       ENST00000446924       39184176
8919         BRWD1 ENSG00000185658       ENST00000446924       39184176
8920         BRWD1 ENSG00000185658       ENST00000446924       39184176
8921         BRWD1 ENSG00000185658       ENST00000446924       39184176
8922         BRWD1 ENSG00000185658       ENST00000446924       39184176
8923         BRWD1 ENSG00000185658       ENST00000446924       39184176
8924         BRWD1 ENSG00000185658       ENST00000446924       39184176
8925         BRWD1 ENSG00000185658       ENST00000446924       39184176
8926         BRWD1 ENSG00000185658       ENST00000446924       39184176
8927         BRWD1 ENSG00000185658       ENST00000446924       39184176
8928         BRWD1 ENSG00000185658       ENST00000446924       39184176
8929         BRWD1 ENSG00000185658       ENST00000446924       39184176
8930         BRWD1 ENSG00000185658       ENST00000446924       39184176
8931         BRWD1 ENSG00000185658       ENST00000446924       39184176
8932         BRWD1 ENSG00000185658       ENST00000446924       39184176
8933         BRWD1 ENSG00000185658       ENST00000446924       39184176
8934         BRWD1 ENSG00000185658       ENST00000446924       39184176
8935         BRWD1 ENSG00000185658       ENST00000446924       39184176
8936         BRWD1 ENSG00000185658       ENST00000342449       39184176
8937         BRWD1 ENSG00000185658       ENST00000342449       39184176
8938         BRWD1 ENSG00000185658       ENST00000342449       39184176
8939         BRWD1 ENSG00000185658       ENST00000342449       39184176
8940         BRWD1 ENSG00000185658       ENST00000342449       39184176
8941         BRWD1 ENSG00000185658       ENST00000342449       39184176
8942         BRWD1 ENSG00000185658       ENST00000342449       39184176
8943         BRWD1 ENSG00000185658       ENST00000342449       39184176
8944         BRWD1 ENSG00000185658       ENST00000342449       39184176
8945         BRWD1 ENSG00000185658       ENST00000342449       39184176
8946         BRWD1 ENSG00000185658       ENST00000342449       39184176
8947         BRWD1 ENSG00000185658       ENST00000342449       39184176
8948         BRWD1 ENSG00000185658       ENST00000342449       39184176
8949         BRWD1 ENSG00000185658       ENST00000342449       39184176
8950         BRWD1 ENSG00000185658       ENST00000342449       39184176
8951         BRWD1 ENSG00000185658       ENST00000342449       39184176
8952         BRWD1 ENSG00000185658       ENST00000342449       39184176
8953         BRWD1 ENSG00000185658       ENST00000342449       39184176
8954         BRWD1 ENSG00000185658       ENST00000342449       39184176
8955         BRWD1 ENSG00000185658       ENST00000342449       39184176
8956         BRWD1 ENSG00000185658       ENST00000342449       39184176
8957         BRWD1 ENSG00000185658       ENST00000342449       39184176
8958         BRWD1 ENSG00000185658       ENST00000342449       39184176
8959         BRWD1 ENSG00000185658       ENST00000342449       39184176
8960         BRWD1 ENSG00000185658       ENST00000342449       39184176
8961         BRWD1 ENSG00000185658       ENST00000342449       39184176
8962         BRWD1 ENSG00000185658       ENST00000342449       39184176
8963         BRWD1 ENSG00000185658       ENST00000342449       39184176
8964         BRWD1 ENSG00000185658       ENST00000342449       39184176
8965         BRWD1 ENSG00000185658       ENST00000342449       39184176
8966         BRWD1 ENSG00000185658       ENST00000342449       39184176
8967         BRWD1 ENSG00000185658       ENST00000342449       39184176
8968         BRWD1 ENSG00000185658       ENST00000342449       39184176
8969         BRWD1 ENSG00000185658       ENST00000342449       39184176
8970         BRWD1 ENSG00000185658       ENST00000342449       39184176
8971         BRWD1 ENSG00000185658       ENST00000342449       39184176
8972         BRWD1 ENSG00000185658       ENST00000342449       39184176
8973         BRWD1 ENSG00000185658       ENST00000342449       39184176
8974         BRWD1 ENSG00000185658       ENST00000342449       39184176
8975         BRWD1 ENSG00000185658       ENST00000342449       39184176
8976         BRWD1 ENSG00000185658       ENST00000342449       39184176
8977         BRWD1 ENSG00000185658       ENST00000380800       39184176
8978         BRWD1 ENSG00000185658       ENST00000380800       39184176
8979         BRWD1 ENSG00000185658       ENST00000380800       39184176
8980         BRWD1 ENSG00000185658       ENST00000380800       39184176
8981         BRWD1 ENSG00000185658       ENST00000380800       39184176
8982         BRWD1 ENSG00000185658       ENST00000380800       39184176
8983         BRWD1 ENSG00000185658       ENST00000380800       39184176
8984         BRWD1 ENSG00000185658       ENST00000380800       39184176
8985         BRWD1 ENSG00000185658       ENST00000380800       39184176
8986         BRWD1 ENSG00000185658       ENST00000380800       39184176
8987         BRWD1 ENSG00000185658       ENST00000380800       39184176
8988         BRWD1 ENSG00000185658       ENST00000380800       39184176
8989         BRWD1 ENSG00000185658       ENST00000380800       39184176
8990         BRWD1 ENSG00000185658       ENST00000380800       39184176
8991         BRWD1 ENSG00000185658       ENST00000380800       39184176
8992         BRWD1 ENSG00000185658       ENST00000380800       39184176
8993         BRWD1 ENSG00000185658       ENST00000380800       39184176
8994         BRWD1 ENSG00000185658       ENST00000380800       39184176
8995         BRWD1 ENSG00000185658       ENST00000380800       39184176
8996         BRWD1 ENSG00000185658       ENST00000380800       39184176
8997         BRWD1 ENSG00000185658       ENST00000380800       39184176
8998         BRWD1 ENSG00000185658       ENST00000380800       39184176
8999         BRWD1 ENSG00000185658       ENST00000380800       39184176
9000         BRWD1 ENSG00000185658       ENST00000380800       39184176
9001         BRWD1 ENSG00000185658       ENST00000380800       39184176
9002         BRWD1 ENSG00000185658       ENST00000380800       39184176
9003         BRWD1 ENSG00000185658       ENST00000380800       39184176
9004         BRWD1 ENSG00000185658       ENST00000380800       39184176
9005         BRWD1 ENSG00000185658       ENST00000380800       39184176
9006         BRWD1 ENSG00000185658       ENST00000380800       39184176
9007         BRWD1 ENSG00000185658       ENST00000380800       39184176
9008         BRWD1 ENSG00000185658       ENST00000380800       39184176
9009         BRWD1 ENSG00000185658       ENST00000380800       39184176
9010         BRWD1 ENSG00000185658       ENST00000380800       39184176
9011         BRWD1 ENSG00000185658       ENST00000380800       39184176
9012         BRWD1 ENSG00000185658       ENST00000380800       39184176
9013         BRWD1 ENSG00000185658       ENST00000380800       39184176
9014         BRWD1 ENSG00000185658       ENST00000380800       39184176
9015         BRWD1 ENSG00000185658       ENST00000380800       39184176
9016         BRWD1 ENSG00000185658       ENST00000380800       39184176
9017         BRWD1 ENSG00000185658       ENST00000380800       39184176
9018         BRWD1 ENSG00000185658       ENST00000380800       39184176
9019         BRWD1 ENSG00000185658       ENST00000491564       39184176
9020         BRWD1 ENSG00000185658       ENST00000491564       39184176
9021         BRWD1 ENSG00000185658       ENST00000424441       39184176
9022         BRWD1 ENSG00000185658       ENST00000424441       39184176
9023         BRWD1 ENSG00000185658       ENST00000424441       39184176
9024         BRWD1 ENSG00000185658       ENST00000424441       39184176
9025         BRWD1 ENSG00000185658       ENST00000424441       39184176
9026         BRWD1 ENSG00000185658       ENST00000424441       39184176
9027         BRWD1 ENSG00000185658       ENST00000424441       39184176
9028         BRWD1 ENSG00000185658       ENST00000424441       39184176
9029         BRWD1 ENSG00000185658       ENST00000424441       39184176
9030         BRWD1 ENSG00000185658       ENST00000424441       39184176
9031         BRWD1 ENSG00000185658       ENST00000424441       39184176
9032         BRWD1 ENSG00000185658       ENST00000424441       39184176
9033         BRWD1 ENSG00000185658       ENST00000473813       39184176
9034         BRWD1 ENSG00000185658       ENST00000473813       39184176
9035         BRWD1 ENSG00000185658       ENST00000473813       39184176
9036         BRWD1 ENSG00000185658       ENST00000473813       39184176
9037         BRWD1 ENSG00000185658       ENST00000473813       39184176
9038         BRWD1 ENSG00000185658       ENST00000473813       39184176
9039         BRWD1 ENSG00000185658       ENST00000473813       39184176
9040         BRWD1 ENSG00000185658       ENST00000445668       39184176
9041         BRWD1 ENSG00000185658       ENST00000445668       39184176
9042         BRWD1 ENSG00000185658       ENST00000445668       39184176
9043         BRWD1 ENSG00000185658       ENST00000445668       39184176
9044         BRWD1 ENSG00000185658       ENST00000445668       39184176
9045         BRWD1 ENSG00000185658       ENST00000445668       39184176
9046         BRWD1 ENSG00000185658       ENST00000445668       39184176
9047         BRWD1 ENSG00000185658       ENST00000445668       39184176
9048         BRWD1 ENSG00000185658       ENST00000445668       39184176
9049         BRWD1 ENSG00000185658       ENST00000445668       39184176
9050         BRWD1 ENSG00000185658       ENST00000445668       39184176
9051         BRWD1 ENSG00000185658       ENST00000445668       39184176
9052         BRWD1 ENSG00000185658       ENST00000445668       39184176
9053         BRWD1 ENSG00000185658       ENST00000445668       39184176
9054         BRWD1 ENSG00000185658       ENST00000430093       39184176
9055         BRWD1 ENSG00000185658       ENST00000430093       39184176
9056         BRWD1 ENSG00000185658       ENST00000430093       39184176
9057         BRWD1 ENSG00000185658       ENST00000430093       39184176
9058         BRWD1 ENSG00000185658       ENST00000430093       39184176
9059         BRWD1 ENSG00000185658       ENST00000430093       39184176
9060         BRWD1 ENSG00000185658       ENST00000430093       39184176
9061         BRWD1 ENSG00000185658       ENST00000430093       39184176
9062         BRWD1 ENSG00000185658       ENST00000430093       39184176
9063         BRWD1 ENSG00000185658       ENST00000430093       39184176
9064         BRWD1 ENSG00000185658       ENST00000430093       39184176
9065         BRWD1 ENSG00000185658       ENST00000430093       39184176
9066         BRWD1 ENSG00000185658       ENST00000430093       39184176
9067         BRWD1 ENSG00000185658       ENST00000430093       39184176
9068         BRWD1 ENSG00000185658       ENST00000430093       39184176
9069         BRWD1 ENSG00000185658       ENST00000445245       39184176
9070         BRWD1 ENSG00000185658       ENST00000445245       39184176
9071         BRWD1 ENSG00000185658       ENST00000445245       39184176
9072         BRWD1 ENSG00000185658       ENST00000445245       39184176
9073         BRWD1 ENSG00000185658       ENST00000445245       39184176
9074         BRWD1 ENSG00000185658       ENST00000445245       39184176
9075         BRWD1 ENSG00000185658       ENST00000445245       39184176
9076         BRWD1 ENSG00000185658       ENST00000445245       39184176
9077         BRWD1 ENSG00000185658       ENST00000445245       39184176
9078         BRWD1 ENSG00000185658       ENST00000445245       39184176
9079         BRWD1 ENSG00000185658       ENST00000445245       39184176
9080         BRWD1 ENSG00000185658       ENST00000445245       39184176
9081         BRWD1 ENSG00000185658       ENST00000445245       39184176
9082         BRWD1 ENSG00000185658       ENST00000445245       39184176
9083         BRWD1 ENSG00000185658       ENST00000445245       39184176
9084         BRWD1 ENSG00000185658       ENST00000455867       39184176
9085         BRWD1 ENSG00000185658       ENST00000455867       39184176
9086         BRWD1 ENSG00000185658       ENST00000455867       39184176
9087         BRWD1 ENSG00000185658       ENST00000455867       39184176
9088         BRWD1 ENSG00000185658       ENST00000455867       39184176
9089         BRWD1 ENSG00000185658       ENST00000455867       39184176
9090         BRWD1 ENSG00000185658       ENST00000455867       39184176
9091         BRWD1 ENSG00000185658       ENST00000455867       39184176
9092         BRWD1 ENSG00000185658       ENST00000455867       39184176
9093         BRWD1 ENSG00000185658       ENST00000455867       39184176
9094         BRWD1 ENSG00000185658       ENST00000455867       39184176
9095         BRWD1 ENSG00000185658       ENST00000455867       39184176
9096         BRWD1 ENSG00000185658       ENST00000455867       39184176
9097         BRWD1 ENSG00000185658       ENST00000455867       39184176
9098         BRWD1 ENSG00000185658       ENST00000412604       39184176
9099         BRWD1 ENSG00000185658       ENST00000412604       39184176
9100         BRWD1 ENSG00000185658       ENST00000412604       39184176
9101         BRWD1 ENSG00000185658       ENST00000412604       39184176
9102         BRWD1 ENSG00000185658       ENST00000412604       39184176
9103         BRWD1 ENSG00000185658       ENST00000412604       39184176
9104         BRWD1 ENSG00000185658       ENST00000412604       39184176
9105         BRWD1 ENSG00000185658       ENST00000412604       39184176
9106         BRWD1 ENSG00000185658       ENST00000412604       39184176
9107         BRWD1 ENSG00000185658       ENST00000412604       39184176
9108         BRWD1 ENSG00000185658       ENST00000412604       39184176
9109         BRWD1 ENSG00000185658       ENST00000412604       39184176
9110         BRWD1 ENSG00000185658       ENST00000412604       39184176
9111         BRWD1 ENSG00000185658       ENST00000412604       39184176
9112         BRWD1 ENSG00000185658       ENST00000412604       39184176
9113         BRWD1 ENSG00000185658       ENST00000496759       39184176
9114         BRWD1 ENSG00000185658       ENST00000496759       39184176
9115         BRWD1 ENSG00000185658       ENST00000341322       39184176
9116         BRWD1 ENSG00000185658       ENST00000341322       39184176
9117         BRWD1 ENSG00000185658       ENST00000341322       39184176
9118         BRWD1 ENSG00000185658       ENST00000341322       39184176
9119         BRWD1 ENSG00000185658       ENST00000341322       39184176
9120         BRWD1 ENSG00000185658       ENST00000470108       39184176
9121         BRWD1 ENSG00000185658       ENST00000470108       39184176
9122         BRWD1 ENSG00000185658       ENST00000470108       39184176
9123         BRWD1 ENSG00000185658       ENST00000470108       39184176
9124         BRWD1 ENSG00000185658       ENST00000470108       39184176
9125         BRWD1 ENSG00000185658       ENST00000484090       39184176
9126         BRWD1 ENSG00000185658       ENST00000484090       39184176
9127         BRWD1 ENSG00000185658       ENST00000484090       39184176
9128     BRWD1-AS2 ENSG00000255568       ENST00000603064       39313935
9129               ENSG00000205622       ENST00000626259       38863676
9130               ENSG00000205622       ENST00000626259       38863676
9131               ENSG00000205622       ENST00000626259       38863676
9132               ENSG00000205622       ENST00000626259       38863676
9133               ENSG00000205622       ENST00000380931       38863676
9134               ENSG00000205622       ENST00000380931       38863676
9135               ENSG00000205622       ENST00000380931       38863676
9136               ENSG00000205622       ENST00000380931       38863676
9137               ENSG00000205622       ENST00000415824       38863676
9138               ENSG00000205622       ENST00000415824       38863676
9139               ENSG00000205622       ENST00000415824       38863676
9140               ENSG00000205622       ENST00000415824       38863676
9141               ENSG00000205622       ENST00000440379       38863676
9142               ENSG00000205622       ENST00000440379       38863676
9143               ENSG00000205622       ENST00000623098       38863676
9144               ENSG00000205622       ENST00000623098       38863676
9145               ENSG00000205622       ENST00000623098       38863676
9146               ENSG00000205622       ENST00000623098       38863676
9147               ENSG00000205622       ENST00000623098       38863676
9148               ENSG00000205622       ENST00000623098       38863676
9149               ENSG00000205622       ENST00000623098       38863676
9150               ENSG00000205622       ENST00000623098       38863676
9151               ENSG00000205622       ENST00000613045       38863676
9152               ENSG00000205622       ENST00000613045       38863676
9153               ENSG00000205622       ENST00000613045       38863676
9154               ENSG00000205622       ENST00000613045       38863676
9155               ENSG00000205622       ENST00000615324       38863676
9156               ENSG00000229986       ENST00000416842       38846247
9157               ENSG00000229986       ENST00000416842       38846247
9158               ENSG00000243440       ENST00000435732       14591930
9159               ENSG00000243440       ENST00000435732       14591930
9160               ENSG00000243440       ENST00000435732       14591930
9161               ENSG00000243440       ENST00000435732       14591930
9162               ENSG00000243440       ENST00000435732       14591930
9163               ENSG00000243440       ENST00000435732       14591930
9164               ENSG00000243440       ENST00000435732       14591930
9165               ENSG00000243440       ENST00000400562       14591930
9166               ENSG00000243440       ENST00000400562       14591930
9167               ENSG00000243440       ENST00000400562       14591930
9168               ENSG00000243440       ENST00000400562       14591930
9169               ENSG00000243440       ENST00000400562       14591930
9170               ENSG00000243440       ENST00000400562       14591930
9171               ENSG00000243440       ENST00000400562       14591930
9172               ENSG00000243440       ENST00000469393       14591930
9173               ENSG00000243440       ENST00000469393       14591930
9174               ENSG00000243440       ENST00000469393       14591930
9175               ENSG00000243440       ENST00000467280       14591930
9176               ENSG00000243440       ENST00000467280       14591930
9177        RPS5P3 ENSG00000215088       ENST00000414617       33481580
9178        DNMT3L ENSG00000142182       ENST00000436357       44246339
9179        DNMT3L ENSG00000142182       ENST00000436357       44246339
9180        DNMT3L ENSG00000142182       ENST00000436357       44246339
9181        DNMT3L ENSG00000142182       ENST00000436357       44246339
9182        DNMT3L ENSG00000142182       ENST00000270172       44246339
9183        DNMT3L ENSG00000142182       ENST00000270172       44246339
9184        DNMT3L ENSG00000142182       ENST00000270172       44246339
9185        DNMT3L ENSG00000142182       ENST00000270172       44246339
9186        DNMT3L ENSG00000142182       ENST00000270172       44246339
9187        DNMT3L ENSG00000142182       ENST00000270172       44246339
9188        DNMT3L ENSG00000142182       ENST00000270172       44246339
9189        DNMT3L ENSG00000142182       ENST00000270172       44246339
9190        DNMT3L ENSG00000142182       ENST00000270172       44246339
9191        DNMT3L ENSG00000142182       ENST00000270172       44246339
9192        DNMT3L ENSG00000142182       ENST00000270172       44246339
9193        DNMT3L ENSG00000142182       ENST00000270172       44246339
9194        DNMT3L ENSG00000142182       ENST00000628202       44246339
9195        DNMT3L ENSG00000142182       ENST00000628202       44246339
9196        DNMT3L ENSG00000142182       ENST00000628202       44246339
9197        DNMT3L ENSG00000142182       ENST00000628202       44246339
9198        DNMT3L ENSG00000142182       ENST00000628202       44246339
9199        DNMT3L ENSG00000142182       ENST00000628202       44246339
9200        DNMT3L ENSG00000142182       ENST00000628202       44246339
9201        DNMT3L ENSG00000142182       ENST00000628202       44246339
9202        DNMT3L ENSG00000142182       ENST00000628202       44246339
9203        DNMT3L ENSG00000142182       ENST00000628202       44246339
9204        DNMT3L ENSG00000142182       ENST00000628202       44246339
9205        DNMT3L ENSG00000142182       ENST00000628202       44246339
9206        DNMT3L ENSG00000142182       ENST00000431166       44246339
9207        DNMT3L ENSG00000142182       ENST00000431166       44246339
9208        DNMT3L ENSG00000142182       ENST00000431166       44246339
9209        DNMT3L ENSG00000142182       ENST00000431166       44246339
9210        DNMT3L ENSG00000142182       ENST00000431166       44246339
9211        DNMT3L ENSG00000142182       ENST00000431166       44246339
9212        DNMT3L ENSG00000142182       ENST00000431166       44246339
9213        DNMT3L ENSG00000142182       ENST00000431166       44246339
9214        DNMT3L ENSG00000142182       ENST00000431166       44246339
9215               ENSG00000279690       ENST00000624800       32790673
9216               ENSG00000280433       ENST00000623998        5155499
9217               ENSG00000280433       ENST00000623998        5155499
9218               ENSG00000280433       ENST00000623998        5155499
9219               ENSG00000280433       ENST00000623744        5155499
9220               ENSG00000280433       ENST00000623744        5155499
9221               ENSG00000280433       ENST00000623744        5155499
9222               ENSG00000224247       ENST00000433588       15493932
9223               ENSG00000224247       ENST00000433588       15493932
9224       CYCSP42 ENSG00000224524       ENST00000450823       15490530
9225       COL18A1 ENSG00000182871       ENST00000400337       45405137
9226       COL18A1 ENSG00000182871       ENST00000400337       45405137
9227       COL18A1 ENSG00000182871       ENST00000400337       45405137
9228       COL18A1 ENSG00000182871       ENST00000400337       45405137
9229       COL18A1 ENSG00000182871       ENST00000400337       45405137
9230       COL18A1 ENSG00000182871       ENST00000400337       45405137
9231       COL18A1 ENSG00000182871       ENST00000400337       45405137
9232       COL18A1 ENSG00000182871       ENST00000400337       45405137
9233       COL18A1 ENSG00000182871       ENST00000400337       45405137
9234       COL18A1 ENSG00000182871       ENST00000400337       45405137
9235       COL18A1 ENSG00000182871       ENST00000400337       45405137
9236       COL18A1 ENSG00000182871       ENST00000400337       45405137
9237       COL18A1 ENSG00000182871       ENST00000400337       45405137
9238       COL18A1 ENSG00000182871       ENST00000400337       45405137
9239       COL18A1 ENSG00000182871       ENST00000400337       45405137
9240       COL18A1 ENSG00000182871       ENST00000400337       45405137
9241       COL18A1 ENSG00000182871       ENST00000400337       45405137
9242       COL18A1 ENSG00000182871       ENST00000400337       45405137
9243       COL18A1 ENSG00000182871       ENST00000400337       45405137
9244       COL18A1 ENSG00000182871       ENST00000400337       45405137
9245       COL18A1 ENSG00000182871       ENST00000400337       45405137
9246       COL18A1 ENSG00000182871       ENST00000400337       45405137
9247       COL18A1 ENSG00000182871       ENST00000400337       45405137
9248       COL18A1 ENSG00000182871       ENST00000400337       45405137
9249       COL18A1 ENSG00000182871       ENST00000400337       45405137
9250       COL18A1 ENSG00000182871       ENST00000400337       45405137
9251       COL18A1 ENSG00000182871       ENST00000400337       45405137
9252       COL18A1 ENSG00000182871       ENST00000400337       45405137
9253       COL18A1 ENSG00000182871       ENST00000400337       45405137
9254       COL18A1 ENSG00000182871       ENST00000400337       45405137
9255       COL18A1 ENSG00000182871       ENST00000400337       45405137
9256       COL18A1 ENSG00000182871       ENST00000400337       45405137
9257       COL18A1 ENSG00000182871       ENST00000400337       45405137
9258       COL18A1 ENSG00000182871       ENST00000400337       45405137
9259       COL18A1 ENSG00000182871       ENST00000400337       45405137
9260       COL18A1 ENSG00000182871       ENST00000400337       45405137
9261       COL18A1 ENSG00000182871       ENST00000400337       45405137
9262       COL18A1 ENSG00000182871       ENST00000400337       45405137
9263       COL18A1 ENSG00000182871       ENST00000400337       45405137
9264       COL18A1 ENSG00000182871       ENST00000400337       45405137
9265       COL18A1 ENSG00000182871       ENST00000400337       45405137
9266       COL18A1 ENSG00000182871       ENST00000400337       45405137
9267       COL18A1 ENSG00000182871       ENST00000355480       45405137
9268       COL18A1 ENSG00000182871       ENST00000355480       45405137
9269       COL18A1 ENSG00000182871       ENST00000355480       45405137
9270       COL18A1 ENSG00000182871       ENST00000355480       45405137
9271       COL18A1 ENSG00000182871       ENST00000355480       45405137
9272       COL18A1 ENSG00000182871       ENST00000355480       45405137
9273       COL18A1 ENSG00000182871       ENST00000355480       45405137
9274       COL18A1 ENSG00000182871       ENST00000355480       45405137
9275       COL18A1 ENSG00000182871       ENST00000355480       45405137
9276       COL18A1 ENSG00000182871       ENST00000355480       45405137
9277       COL18A1 ENSG00000182871       ENST00000355480       45405137
9278       COL18A1 ENSG00000182871       ENST00000355480       45405137
9279       COL18A1 ENSG00000182871       ENST00000355480       45405137
9280       COL18A1 ENSG00000182871       ENST00000355480       45405137
9281       COL18A1 ENSG00000182871       ENST00000355480       45405137
9282       COL18A1 ENSG00000182871       ENST00000355480       45405137
9283       COL18A1 ENSG00000182871       ENST00000355480       45405137
9284       COL18A1 ENSG00000182871       ENST00000355480       45405137
9285       COL18A1 ENSG00000182871       ENST00000355480       45405137
9286       COL18A1 ENSG00000182871       ENST00000355480       45405137
9287       COL18A1 ENSG00000182871       ENST00000355480       45405137
9288       COL18A1 ENSG00000182871       ENST00000355480       45405137
9289       COL18A1 ENSG00000182871       ENST00000355480       45405137
9290       COL18A1 ENSG00000182871       ENST00000355480       45405137
9291       COL18A1 ENSG00000182871       ENST00000355480       45405137
9292       COL18A1 ENSG00000182871       ENST00000355480       45405137
9293       COL18A1 ENSG00000182871       ENST00000355480       45405137
9294       COL18A1 ENSG00000182871       ENST00000355480       45405137
9295       COL18A1 ENSG00000182871       ENST00000355480       45405137
9296       COL18A1 ENSG00000182871       ENST00000355480       45405137
9297       COL18A1 ENSG00000182871       ENST00000355480       45405137
9298       COL18A1 ENSG00000182871       ENST00000355480       45405137
9299       COL18A1 ENSG00000182871       ENST00000355480       45405137
9300       COL18A1 ENSG00000182871       ENST00000355480       45405137
9301       COL18A1 ENSG00000182871       ENST00000355480       45405137
9302       COL18A1 ENSG00000182871       ENST00000355480       45405137
9303       COL18A1 ENSG00000182871       ENST00000355480       45405137
9304       COL18A1 ENSG00000182871       ENST00000355480       45405137
9305       COL18A1 ENSG00000182871       ENST00000355480       45405137
9306       COL18A1 ENSG00000182871       ENST00000355480       45405137
9307       COL18A1 ENSG00000182871       ENST00000355480       45405137
9308       COL18A1 ENSG00000182871       ENST00000342220       45405137
9309       COL18A1 ENSG00000182871       ENST00000342220       45405137
9310       COL18A1 ENSG00000182871       ENST00000342220       45405137
9311       COL18A1 ENSG00000182871       ENST00000342220       45405137
9312       COL18A1 ENSG00000182871       ENST00000342220       45405137
9313       COL18A1 ENSG00000182871       ENST00000342220       45405137
9314       COL18A1 ENSG00000182871       ENST00000342220       45405137
9315       COL18A1 ENSG00000182871       ENST00000342220       45405137
9316       COL18A1 ENSG00000182871       ENST00000342220       45405137
9317       COL18A1 ENSG00000182871       ENST00000342220       45405137
9318       COL18A1 ENSG00000182871       ENST00000342220       45405137
9319       COL18A1 ENSG00000182871       ENST00000342220       45405137
9320       COL18A1 ENSG00000182871       ENST00000342220       45405137
9321       COL18A1 ENSG00000182871       ENST00000342220       45405137
9322       COL18A1 ENSG00000182871       ENST00000342220       45405137
9323       COL18A1 ENSG00000182871       ENST00000342220       45405137
9324       COL18A1 ENSG00000182871       ENST00000342220       45405137
9325       COL18A1 ENSG00000182871       ENST00000342220       45405137
9326       COL18A1 ENSG00000182871       ENST00000342220       45405137
9327       COL18A1 ENSG00000182871       ENST00000342220       45405137
9328       COL18A1 ENSG00000182871       ENST00000342220       45405137
9329       COL18A1 ENSG00000182871       ENST00000342220       45405137
9330       COL18A1 ENSG00000182871       ENST00000342220       45405137
9331       COL18A1 ENSG00000182871       ENST00000459895       45405137
9332       COL18A1 ENSG00000182871       ENST00000459895       45405137
9333       COL18A1 ENSG00000182871       ENST00000459895       45405137
9334       COL18A1 ENSG00000182871       ENST00000459895       45405137
9335       COL18A1 ENSG00000182871       ENST00000459895       45405137
9336       COL18A1 ENSG00000182871       ENST00000459895       45405137
9337       COL18A1 ENSG00000182871       ENST00000459895       45405137
9338       COL18A1 ENSG00000182871       ENST00000459895       45405137
9339       COL18A1 ENSG00000182871       ENST00000423214       45405137
9340       COL18A1 ENSG00000182871       ENST00000423214       45405137
9341       COL18A1 ENSG00000182871       ENST00000423214       45405137
9342       COL18A1 ENSG00000182871       ENST00000423214       45405137
9343       COL18A1 ENSG00000182871       ENST00000423214       45405137
9344       COL18A1 ENSG00000182871       ENST00000423214       45405137
9345       COL18A1 ENSG00000182871       ENST00000473212       45405137
9346       COL18A1 ENSG00000182871       ENST00000473212       45405137
9347       COL18A1 ENSG00000182871       ENST00000473212       45405137
9348       COL18A1 ENSG00000182871       ENST00000473212       45405137
9349       COL18A1 ENSG00000182871       ENST00000473212       45405137
9350       COL18A1 ENSG00000182871       ENST00000359759       45405137
9351       COL18A1 ENSG00000182871       ENST00000359759       45405137
9352       COL18A1 ENSG00000182871       ENST00000359759       45405137
9353       COL18A1 ENSG00000182871       ENST00000359759       45405137
9354       COL18A1 ENSG00000182871       ENST00000359759       45405137
9355       COL18A1 ENSG00000182871       ENST00000359759       45405137
9356       COL18A1 ENSG00000182871       ENST00000359759       45405137
9357       COL18A1 ENSG00000182871       ENST00000359759       45405137
9358       COL18A1 ENSG00000182871       ENST00000359759       45405137
9359       COL18A1 ENSG00000182871       ENST00000359759       45405137
9360       COL18A1 ENSG00000182871       ENST00000359759       45405137
9361       COL18A1 ENSG00000182871       ENST00000359759       45405137
9362       COL18A1 ENSG00000182871       ENST00000359759       45405137
9363       COL18A1 ENSG00000182871       ENST00000359759       45405137
9364       COL18A1 ENSG00000182871       ENST00000359759       45405137
9365       COL18A1 ENSG00000182871       ENST00000359759       45405137
9366       COL18A1 ENSG00000182871       ENST00000359759       45405137
9367       COL18A1 ENSG00000182871       ENST00000359759       45405137
9368       COL18A1 ENSG00000182871       ENST00000359759       45405137
9369       COL18A1 ENSG00000182871       ENST00000359759       45405137
9370       COL18A1 ENSG00000182871       ENST00000359759       45405137
9371       COL18A1 ENSG00000182871       ENST00000359759       45405137
9372       COL18A1 ENSG00000182871       ENST00000359759       45405137
9373       COL18A1 ENSG00000182871       ENST00000359759       45405137
9374       COL18A1 ENSG00000182871       ENST00000359759       45405137
9375       COL18A1 ENSG00000182871       ENST00000359759       45405137
9376       COL18A1 ENSG00000182871       ENST00000359759       45405137
9377       COL18A1 ENSG00000182871       ENST00000359759       45405137
9378       COL18A1 ENSG00000182871       ENST00000359759       45405137
9379       COL18A1 ENSG00000182871       ENST00000359759       45405137
9380       COL18A1 ENSG00000182871       ENST00000359759       45405137
9381       COL18A1 ENSG00000182871       ENST00000359759       45405137
9382       COL18A1 ENSG00000182871       ENST00000359759       45405137
9383       COL18A1 ENSG00000182871       ENST00000359759       45405137
9384       COL18A1 ENSG00000182871       ENST00000359759       45405137
9385       COL18A1 ENSG00000182871       ENST00000359759       45405137
9386       COL18A1 ENSG00000182871       ENST00000359759       45405137
9387       COL18A1 ENSG00000182871       ENST00000359759       45405137
9388       COL18A1 ENSG00000182871       ENST00000359759       45405137
9389       COL18A1 ENSG00000182871       ENST00000359759       45405137
9390       COL18A1 ENSG00000182871       ENST00000359759       45405137
9391     LINC01700 ENSG00000232837       ENST00000433952       38974429
9392     LINC01700 ENSG00000232837       ENST00000433952       38974429
9393     LINC01700 ENSG00000232837       ENST00000433952       38974429
9394    MIS18A-AS1 ENSG00000227256       ENST00000453549       32277863
9395    MIS18A-AS1 ENSG00000227256       ENST00000453549       32277863
9396    MIS18A-AS1 ENSG00000227256       ENST00000453549       32277863
9397       RPL31P1 ENSG00000214326       ENST00000398116       43551229
9398     LINC01674 ENSG00000228159       ENST00000427446       13546033
9399     LINC01674 ENSG00000228159       ENST00000427446       13546033
9400     LINC01674 ENSG00000228159       ENST00000427446       13546033
9401     LINC01674 ENSG00000228159       ENST00000427446       13546033
9402        VN1R8P ENSG00000219280       ENST00000407739       13476371
9403        FGF7P2 ENSG00000185390       ENST00000332473       13349265
9404        FGF7P2 ENSG00000185390       ENST00000332473       13349265
9405        POFUT2 ENSG00000186866       ENST00000471540       45263928
9406        POFUT2 ENSG00000186866       ENST00000471540       45263928
9407        POFUT2 ENSG00000186866       ENST00000471540       45263928
9408        POFUT2 ENSG00000186866       ENST00000471540       45263928
9409        POFUT2 ENSG00000186866       ENST00000471540       45263928
9410        POFUT2 ENSG00000186866       ENST00000471540       45263928
9411        POFUT2 ENSG00000186866       ENST00000471540       45263928
9412        POFUT2 ENSG00000186866       ENST00000471540       45263928
9413        POFUT2 ENSG00000186866       ENST00000471540       45263928
9414        POFUT2 ENSG00000186866       ENST00000331343       45263928
9415        POFUT2 ENSG00000186866       ENST00000331343       45263928
9416        POFUT2 ENSG00000186866       ENST00000331343       45263928
9417        POFUT2 ENSG00000186866       ENST00000331343       45263928
9418        POFUT2 ENSG00000186866       ENST00000331343       45263928
9419        POFUT2 ENSG00000186866       ENST00000331343       45263928
9420        POFUT2 ENSG00000186866       ENST00000331343       45263928
9421        POFUT2 ENSG00000186866       ENST00000331343       45263928
9422        POFUT2 ENSG00000186866       ENST00000334538       45263928
9423        POFUT2 ENSG00000186866       ENST00000334538       45263928
9424        POFUT2 ENSG00000186866       ENST00000334538       45263928
9425        POFUT2 ENSG00000186866       ENST00000334538       45263928
9426        POFUT2 ENSG00000186866       ENST00000334538       45263928
9427        POFUT2 ENSG00000186866       ENST00000334538       45263928
9428        POFUT2 ENSG00000186866       ENST00000334538       45263928
9429        POFUT2 ENSG00000186866       ENST00000334538       45263928
9430        POFUT2 ENSG00000186866       ENST00000334538       45263928
9431        POFUT2 ENSG00000186866       ENST00000334538       45263928
9432        POFUT2 ENSG00000186866       ENST00000349485       45263928
9433        POFUT2 ENSG00000186866       ENST00000349485       45263928
9434        POFUT2 ENSG00000186866       ENST00000349485       45263928
9435        POFUT2 ENSG00000186866       ENST00000349485       45263928
9436        POFUT2 ENSG00000186866       ENST00000349485       45263928
9437        POFUT2 ENSG00000186866       ENST00000349485       45263928
9438        POFUT2 ENSG00000186866       ENST00000349485       45263928
9439        POFUT2 ENSG00000186866       ENST00000349485       45263928
9440        POFUT2 ENSG00000186866       ENST00000349485       45263928
9441        POFUT2 ENSG00000186866       ENST00000485190       45263928
9442        POFUT2 ENSG00000186866       ENST00000485190       45263928
9443        POFUT2 ENSG00000186866       ENST00000460932       45263928
9444        POFUT2 ENSG00000186866       ENST00000460932       45263928
9445        POFUT2 ENSG00000186866       ENST00000460932       45263928
9446        POFUT2 ENSG00000186866       ENST00000463917       45263928
9447        POFUT2 ENSG00000186866       ENST00000463917       45263928
9448        POFUT2 ENSG00000186866       ENST00000451615       45263928
9449        POFUT2 ENSG00000186866       ENST00000451615       45263928
9450        POFUT2 ENSG00000186866       ENST00000451615       45263928
9451        POFUT2 ENSG00000186866       ENST00000451615       45263928
9452        POFUT2 ENSG00000186866       ENST00000451615       45263928
9453        POFUT2 ENSG00000186866       ENST00000451615       45263928
9454        POFUT2 ENSG00000186866       ENST00000451615       45263928
9455        POFUT2 ENSG00000186866       ENST00000451615       45263928
9456        POFUT2 ENSG00000186866       ENST00000493524       45263928
9457        POFUT2 ENSG00000186866       ENST00000493524       45263928
9458        POFUT2 ENSG00000186866       ENST00000493524       45263928
9459        POFUT2 ENSG00000186866       ENST00000493524       45263928
9460        POFUT2 ENSG00000186866       ENST00000493524       45263928
9461        POFUT2 ENSG00000186866       ENST00000493524       45263928
9462        POFUT2 ENSG00000186866       ENST00000468360       45263928
9463        POFUT2 ENSG00000186866       ENST00000468360       45263928
9464        POFUT2 ENSG00000186866       ENST00000468360       45263928
9465        POFUT2 ENSG00000186866       ENST00000468360       45263928
9466        POFUT2 ENSG00000186866       ENST00000468360       45263928
9467        POFUT2 ENSG00000186866       ENST00000493811       45263928
9468        POFUT2 ENSG00000186866       ENST00000493811       45263928
9469        POFUT2 ENSG00000186866       ENST00000493811       45263928
9470        POFUT2 ENSG00000186866       ENST00000493811       45263928
9471        POFUT2 ENSG00000186866       ENST00000476653       45263928
9472        POFUT2 ENSG00000186866       ENST00000476653       45263928
9473        POFUT2 ENSG00000186866       ENST00000612472       45263928
9474        POFUT2 ENSG00000186866       ENST00000612472       45263928
9475        POFUT2 ENSG00000186866       ENST00000612472       45263928
9476        POFUT2 ENSG00000186866       ENST00000612472       45263928
9477        POFUT2 ENSG00000186866       ENST00000612472       45263928
9478        POFUT2 ENSG00000186866       ENST00000612472       45263928
9479        POFUT2 ENSG00000186866       ENST00000612472       45263928
9480        POFUT2 ENSG00000186866       ENST00000612472       45263928
9481        POFUT2 ENSG00000186866       ENST00000612472       45263928
9482        POFUT2 ENSG00000186866       ENST00000612472       45263928
9483        POFUT2 ENSG00000186866       ENST00000615172       45263928
9484        POFUT2 ENSG00000186866       ENST00000615172       45263928
9485        POFUT2 ENSG00000186866       ENST00000615172       45263928
9486        POFUT2 ENSG00000186866       ENST00000615172       45263928
9487        POFUT2 ENSG00000186866       ENST00000615172       45263928
9488        POFUT2 ENSG00000186866       ENST00000615172       45263928
9489   IGHV1OR21-1 ENSG00000277282       ENST00000622028       10649400
9490   IGHV1OR21-1 ENSG00000277282       ENST00000622028       10649400
9491        ADARB1 ENSG00000197381       ENST00000462214       45073853
9492        ADARB1 ENSG00000197381       ENST00000462214       45073853
9493        ADARB1 ENSG00000197381       ENST00000462214       45073853
9494        ADARB1 ENSG00000197381       ENST00000462214       45073853
9495        ADARB1 ENSG00000197381       ENST00000460734       45073853
9496        ADARB1 ENSG00000197381       ENST00000460734       45073853
9497        ADARB1 ENSG00000197381       ENST00000460734       45073853
9498        ADARB1 ENSG00000197381       ENST00000460734       45073853
9499        ADARB1 ENSG00000197381       ENST00000460734       45073853
9500        ADARB1 ENSG00000197381       ENST00000460734       45073853
9501        ADARB1 ENSG00000197381       ENST00000460734       45073853
9502        ADARB1 ENSG00000197381       ENST00000460734       45073853
9503        ADARB1 ENSG00000197381       ENST00000460734       45073853
9504        ADARB1 ENSG00000197381       ENST00000460734       45073853
9505        ADARB1 ENSG00000197381       ENST00000389861       45073853
9506        ADARB1 ENSG00000197381       ENST00000389861       45073853
9507        ADARB1 ENSG00000197381       ENST00000389861       45073853
9508        ADARB1 ENSG00000197381       ENST00000389861       45073853
9509        ADARB1 ENSG00000197381       ENST00000389861       45073853
9510        ADARB1 ENSG00000197381       ENST00000389861       45073853
9511        ADARB1 ENSG00000197381       ENST00000389861       45073853
9512        ADARB1 ENSG00000197381       ENST00000389861       45073853
9513        ADARB1 ENSG00000197381       ENST00000389861       45073853
9514        ADARB1 ENSG00000197381       ENST00000389861       45073853
9515        ADARB1 ENSG00000197381       ENST00000389861       45073853
9516        ADARB1 ENSG00000197381       ENST00000389861       45073853
9517        ADARB1 ENSG00000197381       ENST00000389861       45073853
9518        ADARB1 ENSG00000197381       ENST00000492414       45073853
9519        ADARB1 ENSG00000197381       ENST00000492414       45073853
9520        ADARB1 ENSG00000197381       ENST00000492414       45073853
9521        ADARB1 ENSG00000197381       ENST00000492414       45073853
9522        ADARB1 ENSG00000197381       ENST00000492414       45073853
9523        ADARB1 ENSG00000197381       ENST00000492414       45073853
9524        ADARB1 ENSG00000197381       ENST00000492414       45073853
9525        ADARB1 ENSG00000197381       ENST00000492414       45073853
9526        ADARB1 ENSG00000197381       ENST00000492414       45073853
9527        ADARB1 ENSG00000197381       ENST00000492414       45073853
9528        ADARB1 ENSG00000197381       ENST00000492414       45073853
9529        ADARB1 ENSG00000197381       ENST00000492414       45073853
9530        ADARB1 ENSG00000197381       ENST00000496664       45073853
9531        ADARB1 ENSG00000197381       ENST00000496664       45073853
9532        ADARB1 ENSG00000197381       ENST00000496664       45073853
9533        ADARB1 ENSG00000197381       ENST00000496664       45073853
9534        ADARB1 ENSG00000197381       ENST00000496664       45073853
9535        ADARB1 ENSG00000197381       ENST00000496664       45073853
9536        ADARB1 ENSG00000197381       ENST00000496664       45073853
9537        ADARB1 ENSG00000197381       ENST00000496664       45073853
9538        ADARB1 ENSG00000197381       ENST00000496664       45073853
9539        ADARB1 ENSG00000197381       ENST00000496664       45073853
9540        ADARB1 ENSG00000197381       ENST00000496664       45073853
9541        ADARB1 ENSG00000197381       ENST00000496664       45073853
9542        ADARB1 ENSG00000197381       ENST00000496664       45073853
9543        ADARB1 ENSG00000197381       ENST00000389863       45073853
9544        ADARB1 ENSG00000197381       ENST00000389863       45073853
9545        ADARB1 ENSG00000197381       ENST00000389863       45073853
9546        ADARB1 ENSG00000197381       ENST00000389863       45073853
9547        ADARB1 ENSG00000197381       ENST00000389863       45073853
9548        ADARB1 ENSG00000197381       ENST00000389863       45073853
9549        ADARB1 ENSG00000197381       ENST00000389863       45073853
9550        ADARB1 ENSG00000197381       ENST00000389863       45073853
9551        ADARB1 ENSG00000197381       ENST00000389863       45073853
9552        ADARB1 ENSG00000197381       ENST00000389863       45073853
9553        ADARB1 ENSG00000197381       ENST00000389863       45073853
9554        ADARB1 ENSG00000197381       ENST00000389863       45073853
9555        ADARB1 ENSG00000197381       ENST00000389863       45073853
9556        ADARB1 ENSG00000197381       ENST00000348831       45073853
9557        ADARB1 ENSG00000197381       ENST00000348831       45073853
9558        ADARB1 ENSG00000197381       ENST00000348831       45073853
9559        ADARB1 ENSG00000197381       ENST00000348831       45073853
9560        ADARB1 ENSG00000197381       ENST00000348831       45073853
9561        ADARB1 ENSG00000197381       ENST00000348831       45073853
9562        ADARB1 ENSG00000197381       ENST00000348831       45073853
9563        ADARB1 ENSG00000197381       ENST00000348831       45073853
9564        ADARB1 ENSG00000197381       ENST00000348831       45073853
9565        ADARB1 ENSG00000197381       ENST00000348831       45073853
9566        ADARB1 ENSG00000197381       ENST00000348831       45073853
9567        ADARB1 ENSG00000197381       ENST00000449478       45073853
9568        ADARB1 ENSG00000197381       ENST00000449478       45073853
9569        ADARB1 ENSG00000197381       ENST00000449478       45073853
9570        ADARB1 ENSG00000197381       ENST00000449478       45073853
9571        ADARB1 ENSG00000197381       ENST00000464215       45073853
9572        ADARB1 ENSG00000197381       ENST00000464215       45073853
9573        ADARB1 ENSG00000197381       ENST00000464215       45073853
9574        ADARB1 ENSG00000197381       ENST00000360697       45073853
9575        ADARB1 ENSG00000197381       ENST00000360697       45073853
9576        ADARB1 ENSG00000197381       ENST00000360697       45073853
9577        ADARB1 ENSG00000197381       ENST00000360697       45073853
9578        ADARB1 ENSG00000197381       ENST00000360697       45073853
9579        ADARB1 ENSG00000197381       ENST00000360697       45073853
9580        ADARB1 ENSG00000197381       ENST00000360697       45073853
9581        ADARB1 ENSG00000197381       ENST00000360697       45073853
9582        ADARB1 ENSG00000197381       ENST00000360697       45073853
9583        ADARB1 ENSG00000197381       ENST00000360697       45073853
9584        ADARB1 ENSG00000197381       ENST00000481022       45073853
9585        ADARB1 ENSG00000197381       ENST00000481022       45073853
9586        ADARB1 ENSG00000197381       ENST00000631642       45073853
9587        ADARB1 ENSG00000197381       ENST00000631642       45073853
9588        ADARB1 ENSG00000197381       ENST00000631642       45073853
9589        ADARB1 ENSG00000197381       ENST00000631642       45073853
9590        ADARB1 ENSG00000197381       ENST00000437626       45073853
9591        ADARB1 ENSG00000197381       ENST00000437626       45073853
9592        ADARB1 ENSG00000197381       ENST00000437626       45073853
9593        ADARB1 ENSG00000197381       ENST00000437626       45073853
9594        ADARB1 ENSG00000197381       ENST00000437626       45073853
9595        ADARB1 ENSG00000197381       ENST00000437626       45073853
9596        ADARB1 ENSG00000197381       ENST00000437626       45073853
9597        ADARB1 ENSG00000197381       ENST00000437626       45073853
9598        ADARB1 ENSG00000197381       ENST00000437626       45073853
9599        ADARB1 ENSG00000197381       ENST00000437626       45073853
9600        ADARB1 ENSG00000197381       ENST00000437626       45073853
9601        ADARB1 ENSG00000197381       ENST00000437626       45073853
9602        ADARB1 ENSG00000197381       ENST00000437626       45073853
9603        ADARB1 ENSG00000197381       ENST00000611195       45073853
9604        ADARB1 ENSG00000197381       ENST00000611195       45073853
9605        ADARB1 ENSG00000197381       ENST00000629643       45073853
9606        ADARB1 ENSG00000197381       ENST00000629643       45073853
9607        ADARB1 ENSG00000197381       ENST00000629643       45073853
9608        ADARB1 ENSG00000197381       ENST00000629643       45073853
9609        ADARB1 ENSG00000197381       ENST00000629643       45073853
9610        ADARB1 ENSG00000197381       ENST00000629643       45073853
9611        ADARB1 ENSG00000197381       ENST00000629643       45073853
9612        ADARB1 ENSG00000197381       ENST00000629643       45073853
9613        ADARB1 ENSG00000197381       ENST00000629643       45073853
9614        ADARB1 ENSG00000197381       ENST00000629643       45073853
9615        ADARB1 ENSG00000197381       ENST00000629643       45073853
9616       FAM207A ENSG00000160256       ENST00000291634       44940010
9617       FAM207A ENSG00000160256       ENST00000291634       44940010
9618       FAM207A ENSG00000160256       ENST00000291634       44940010
9619       FAM207A ENSG00000160256       ENST00000291634       44940010
9620       FAM207A ENSG00000160256       ENST00000291634       44940010
9621       FAM207A ENSG00000160256       ENST00000291634       44940010
9622       FAM207A ENSG00000160256       ENST00000397826       44940010
9623       FAM207A ENSG00000160256       ENST00000397826       44940010
9624       FAM207A ENSG00000160256       ENST00000397826       44940010
9625       FAM207A ENSG00000160256       ENST00000397826       44940010
9626       FAM207A ENSG00000160256       ENST00000397826       44940010
9627       FAM207A ENSG00000160256       ENST00000397826       44940010
9628       FAM207A ENSG00000160256       ENST00000458015       44940010
9629       FAM207A ENSG00000160256       ENST00000458015       44940010
9630       FAM207A ENSG00000160256       ENST00000458015       44940010
9631       FAM207A ENSG00000160256       ENST00000458015       44940010
9632       FAM207A ENSG00000160256       ENST00000458015       44940010
9633       FAM207A ENSG00000160256       ENST00000479127       44940010
9634       FAM207A ENSG00000160256       ENST00000479127       44940010
9635       FAM207A ENSG00000160256       ENST00000479127       44940010
9636       FAM207A ENSG00000160256       ENST00000479127       44940010
9637       FAM207A ENSG00000160256       ENST00000479127       44940010
9638       FAM207A ENSG00000160256       ENST00000485207       44940010
9639       FAM207A ENSG00000160256       ENST00000485207       44940010
9640     KRTAP19-4 ENSG00000186967       ENST00000334058       30496824
9641     KRTAP19-2 ENSG00000186965       ENST00000334055       30487057
9642          GART ENSG00000159131       ENST00000381815       33503931
9643          GART ENSG00000159131       ENST00000381815       33503931
9644          GART ENSG00000159131       ENST00000381815       33503931
9645          GART ENSG00000159131       ENST00000381815       33503931
9646          GART ENSG00000159131       ENST00000381815       33503931
9647          GART ENSG00000159131       ENST00000381815       33503931
9648          GART ENSG00000159131       ENST00000381815       33503931
9649          GART ENSG00000159131       ENST00000381815       33503931
9650          GART ENSG00000159131       ENST00000381815       33503931
9651          GART ENSG00000159131       ENST00000381815       33503931
9652          GART ENSG00000159131       ENST00000381815       33503931
9653          GART ENSG00000159131       ENST00000381815       33503931
9654          GART ENSG00000159131       ENST00000381815       33503931
9655          GART ENSG00000159131       ENST00000381815       33503931
9656          GART ENSG00000159131       ENST00000381815       33503931
9657          GART ENSG00000159131       ENST00000381815       33503931
9658          GART ENSG00000159131       ENST00000381815       33503931
9659          GART ENSG00000159131       ENST00000381815       33503931
9660          GART ENSG00000159131       ENST00000381815       33503931
9661          GART ENSG00000159131       ENST00000381815       33503931
9662          GART ENSG00000159131       ENST00000381815       33503931
9663          GART ENSG00000159131       ENST00000381815       33503931
9664          GART ENSG00000159131       ENST00000381831       33503931
9665          GART ENSG00000159131       ENST00000381831       33503931
9666          GART ENSG00000159131       ENST00000381831       33503931
9667          GART ENSG00000159131       ENST00000381831       33503931
9668          GART ENSG00000159131       ENST00000381831       33503931
9669          GART ENSG00000159131       ENST00000381831       33503931
9670          GART ENSG00000159131       ENST00000381831       33503931
9671          GART ENSG00000159131       ENST00000381831       33503931
9672          GART ENSG00000159131       ENST00000381831       33503931
9673          GART ENSG00000159131       ENST00000381831       33503931
9674          GART ENSG00000159131       ENST00000381831       33503931
9675          GART ENSG00000159131       ENST00000381831       33503931
9676          GART ENSG00000159131       ENST00000381831       33503931
9677          GART ENSG00000159131       ENST00000381831       33503931
9678          GART ENSG00000159131       ENST00000381831       33503931
9679          GART ENSG00000159131       ENST00000381831       33503931
9680          GART ENSG00000159131       ENST00000381831       33503931
9681          GART ENSG00000159131       ENST00000381831       33503931
9682          GART ENSG00000159131       ENST00000381831       33503931
9683          GART ENSG00000159131       ENST00000381831       33503931
9684          GART ENSG00000159131       ENST00000381831       33503931
9685          GART ENSG00000159131       ENST00000381831       33503931
9686          GART ENSG00000159131       ENST00000381839       33503931
9687          GART ENSG00000159131       ENST00000381839       33503931
9688          GART ENSG00000159131       ENST00000381839       33503931
9689          GART ENSG00000159131       ENST00000381839       33503931
9690          GART ENSG00000159131       ENST00000381839       33503931
9691          GART ENSG00000159131       ENST00000381839       33503931
9692          GART ENSG00000159131       ENST00000381839       33503931
9693          GART ENSG00000159131       ENST00000381839       33503931
9694          GART ENSG00000159131       ENST00000381839       33503931
9695          GART ENSG00000159131       ENST00000381839       33503931
9696          GART ENSG00000159131       ENST00000381839       33503931
9697          GART ENSG00000159131       ENST00000381839       33503931
9698          GART ENSG00000159131       ENST00000381839       33503931
9699          GART ENSG00000159131       ENST00000381839       33503931
9700          GART ENSG00000159131       ENST00000381839       33503931
9701          GART ENSG00000159131       ENST00000381839       33503931
9702          GART ENSG00000159131       ENST00000381839       33503931
9703          GART ENSG00000159131       ENST00000381839       33503931
9704          GART ENSG00000159131       ENST00000381839       33503931
9705          GART ENSG00000159131       ENST00000381839       33503931
9706          GART ENSG00000159131       ENST00000381839       33503931
9707          GART ENSG00000159131       ENST00000381839       33503931
9708          GART ENSG00000159131       ENST00000424203       33503931
9709          GART ENSG00000159131       ENST00000424203       33503931
9710          GART ENSG00000159131       ENST00000424203       33503931
9711          GART ENSG00000159131       ENST00000424203       33503931
9712          GART ENSG00000159131       ENST00000424203       33503931
9713          GART ENSG00000159131       ENST00000424203       33503931
9714          GART ENSG00000159131       ENST00000424203       33503931
9715          GART ENSG00000159131       ENST00000424203       33503931
9716          GART ENSG00000159131       ENST00000424203       33503931
9717          GART ENSG00000159131       ENST00000424203       33503931
9718          GART ENSG00000159131       ENST00000424203       33503931
9719          GART ENSG00000159131       ENST00000424203       33503931
9720          GART ENSG00000159131       ENST00000424203       33503931
9721          GART ENSG00000159131       ENST00000424203       33503931
9722          GART ENSG00000159131       ENST00000424203       33503931
9723          GART ENSG00000159131       ENST00000424203       33503931
9724          GART ENSG00000159131       ENST00000424203       33503931
9725          GART ENSG00000159131       ENST00000424203       33503931
9726          GART ENSG00000159131       ENST00000424203       33503931
9727          GART ENSG00000159131       ENST00000424203       33503931
9728          GART ENSG00000159131       ENST00000424203       33503931
9729          GART ENSG00000159131       ENST00000424203       33503931
9730          GART ENSG00000159131       ENST00000482663       33503931
9731          GART ENSG00000159131       ENST00000482663       33503931
9732          GART ENSG00000159131       ENST00000487155       33503931
9733          GART ENSG00000159131       ENST00000487155       33503931
9734          GART ENSG00000159131       ENST00000460305       33503931
9735          GART ENSG00000159131       ENST00000460305       33503931
9736          GART ENSG00000159131       ENST00000460305       33503931
9737          GART ENSG00000159131       ENST00000460305       33503931
9738          GART ENSG00000159131       ENST00000467575       33503931
9739          GART ENSG00000159131       ENST00000467575       33503931
9740          GART ENSG00000159131       ENST00000467575       33503931
9741          GART ENSG00000159131       ENST00000361093       33503931
9742          GART ENSG00000159131       ENST00000361093       33503931
9743          GART ENSG00000159131       ENST00000361093       33503931
9744          GART ENSG00000159131       ENST00000361093       33503931
9745          GART ENSG00000159131       ENST00000361093       33503931
9746          GART ENSG00000159131       ENST00000361093       33503931
9747          GART ENSG00000159131       ENST00000361093       33503931
9748          GART ENSG00000159131       ENST00000361093       33503931
9749          GART ENSG00000159131       ENST00000361093       33503931
9750          GART ENSG00000159131       ENST00000361093       33503931
9751          GART ENSG00000159131       ENST00000361093       33503931
9752          GART ENSG00000159131       ENST00000366093       33503931
9753          GART ENSG00000159131       ENST00000366093       33503931
9754          GART ENSG00000159131       ENST00000366093       33503931
9755          GART ENSG00000159131       ENST00000366093       33503931
9756          GART ENSG00000159131       ENST00000366093       33503931
9757          GART ENSG00000159131       ENST00000366093       33503931
9758          GART ENSG00000159131       ENST00000366093       33503931
9759          GART ENSG00000159131       ENST00000366093       33503931
9760          GART ENSG00000159131       ENST00000466882       33503931
9761          GART ENSG00000159131       ENST00000466882       33503931
9762          GART ENSG00000159131       ENST00000466882       33503931
9763          GART ENSG00000159131       ENST00000497313       33503931
9764          GART ENSG00000159131       ENST00000497313       33503931
9765          GART ENSG00000159131       ENST00000497313       33503931
9766          GART ENSG00000159131       ENST00000497313       33503931
9767          GART ENSG00000159131       ENST00000430874       33503931
9768          GART ENSG00000159131       ENST00000430874       33503931
9769          GART ENSG00000159131       ENST00000430874       33503931
9770          GART ENSG00000159131       ENST00000430874       33503931
9771          GART ENSG00000159131       ENST00000430874       33503931
9772          GART ENSG00000159131       ENST00000430874       33503931
9773          GART ENSG00000159131       ENST00000430874       33503931
9774          GART ENSG00000159131       ENST00000426819       33503931
9775          GART ENSG00000159131       ENST00000426819       33503931
9776          GART ENSG00000159131       ENST00000426819       33503931
9777          GART ENSG00000159131       ENST00000426819       33503931
9778          GART ENSG00000159131       ENST00000426819       33503931
9779          GART ENSG00000159131       ENST00000426819       33503931
9780          GART ENSG00000159131       ENST00000426819       33503931
9781          GART ENSG00000159131       ENST00000476524       33503931
9782          GART ENSG00000159131       ENST00000476524       33503931
9783          GART ENSG00000159131       ENST00000476524       33503931
9784          GART ENSG00000159131       ENST00000476524       33503931
9785          GART ENSG00000159131       ENST00000476524       33503931
9786          GART ENSG00000159131       ENST00000476524       33503931
9787          GART ENSG00000159131       ENST00000488791       33503931
9788          GART ENSG00000159131       ENST00000488791       33503931
9789          GART ENSG00000159131       ENST00000438059       33503931
9790          GART ENSG00000159131       ENST00000438059       33503931
9791          GART ENSG00000159131       ENST00000438059       33503931
9792          GART ENSG00000159131       ENST00000438059       33503931
9793          GART ENSG00000159131       ENST00000441403       33503931
9794          GART ENSG00000159131       ENST00000441403       33503931
9795          GART ENSG00000159131       ENST00000441403       33503931
9796          GART ENSG00000159131       ENST00000441403       33503931
9797      GAPDHP14 ENSG00000236056       ENST00000450472       29222321
9798        KCNE1B ENSG00000276289       ENST00000618699        7816675
9799        KCNE1B ENSG00000276289       ENST00000618699        7816675
9800        KCNE1B ENSG00000276289       ENST00000618699        7816675
9801        KCNE1B ENSG00000276289       ENST00000623803        7816675
9802        KCNE1B ENSG00000276289       ENST00000623803        7816675
9803        KCNE1B ENSG00000276289       ENST00000623803        7816675
9804        KCNE1B ENSG00000276289       ENST00000617668        7816675
9805        KCNE1B ENSG00000276289       ENST00000617668        7816675
9806        KCNE1B ENSG00000276289       ENST00000622690        7816675
9807        KCNE1B ENSG00000276289       ENST00000622690        7816675
9808        KCNE1B ENSG00000276289       ENST00000622690        7816675
9809          AIRE ENSG00000160224       ENST00000530812       44285838
9810          AIRE ENSG00000160224       ENST00000530812       44285838
9811          AIRE ENSG00000160224       ENST00000530812       44285838
9812          AIRE ENSG00000160224       ENST00000530812       44285838
9813          AIRE ENSG00000160224       ENST00000530812       44285838
9814          AIRE ENSG00000160224       ENST00000530812       44285838
9815          AIRE ENSG00000160224       ENST00000530812       44285838
9816          AIRE ENSG00000160224       ENST00000530812       44285838
9817          AIRE ENSG00000160224       ENST00000530812       44285838
9818          AIRE ENSG00000160224       ENST00000530812       44285838
9819          AIRE ENSG00000160224       ENST00000530812       44285838
9820          AIRE ENSG00000160224       ENST00000530812       44285838
9821          AIRE ENSG00000160224       ENST00000527919       44285838
9822          AIRE ENSG00000160224       ENST00000527919       44285838
9823          AIRE ENSG00000160224       ENST00000527919       44285838
9824          AIRE ENSG00000160224       ENST00000527919       44285838
9825          AIRE ENSG00000160224       ENST00000527919       44285838
9826          AIRE ENSG00000160224       ENST00000527919       44285838
9827          AIRE ENSG00000160224       ENST00000527919       44285838
9828          AIRE ENSG00000160224       ENST00000527919       44285838
9829          AIRE ENSG00000160224       ENST00000527919       44285838
9830          AIRE ENSG00000160224       ENST00000527919       44285838
9831          AIRE ENSG00000160224       ENST00000527919       44285838
9832          AIRE ENSG00000160224       ENST00000527919       44285838
9833          AIRE ENSG00000160224       ENST00000527919       44285838
9834          AIRE ENSG00000160224       ENST00000527919       44285838
9835          AIRE ENSG00000160224       ENST00000291582       44285838
9836          AIRE ENSG00000160224       ENST00000291582       44285838
9837          AIRE ENSG00000160224       ENST00000291582       44285838
9838          AIRE ENSG00000160224       ENST00000291582       44285838
9839          AIRE ENSG00000160224       ENST00000291582       44285838
9840          AIRE ENSG00000160224       ENST00000291582       44285838
9841          AIRE ENSG00000160224       ENST00000291582       44285838
9842          AIRE ENSG00000160224       ENST00000291582       44285838
9843          AIRE ENSG00000160224       ENST00000291582       44285838
9844          AIRE ENSG00000160224       ENST00000291582       44285838
9845          AIRE ENSG00000160224       ENST00000291582       44285838
9846          AIRE ENSG00000160224       ENST00000291582       44285838
9847          AIRE ENSG00000160224       ENST00000291582       44285838
9848          AIRE ENSG00000160224       ENST00000291582       44285838
9849          AIRE ENSG00000160224       ENST00000397994       44285838
9850          AIRE ENSG00000160224       ENST00000397994       44285838
9851          AIRE ENSG00000160224       ENST00000397994       44285838
9852          AIRE ENSG00000160224       ENST00000397994       44285838
9853          AIRE ENSG00000160224       ENST00000397994       44285838
9854          AIRE ENSG00000160224       ENST00000397994       44285838
9855          AIRE ENSG00000160224       ENST00000397994       44285838
9856          AIRE ENSG00000160224       ENST00000397994       44285838
9857          AIRE ENSG00000160224       ENST00000337909       44285838
9858          AIRE ENSG00000160224       ENST00000337909       44285838
9859          AIRE ENSG00000160224       ENST00000337909       44285838
9860          AIRE ENSG00000160224       ENST00000337909       44285838
9861          AIRE ENSG00000160224       ENST00000337909       44285838
9862          AIRE ENSG00000160224       ENST00000337909       44285838
9863          AIRE ENSG00000160224       ENST00000337909       44285838
9864           WRB ENSG00000182093       ENST00000333781       39380244
9865           WRB ENSG00000182093       ENST00000333781       39380244
9866           WRB ENSG00000182093       ENST00000333781       39380244
9867           WRB ENSG00000182093       ENST00000333781       39380244
9868           WRB ENSG00000182093       ENST00000333781       39380244
9869           WRB ENSG00000182093       ENST00000623703       39380244
9870           WRB ENSG00000182093       ENST00000623703       39380244
9871           WRB ENSG00000182093       ENST00000623703       39380244
9872           WRB ENSG00000182093       ENST00000623703       39380244
9873           WRB ENSG00000182093       ENST00000623703       39380244
9874           WRB ENSG00000182093       ENST00000623703       39380244
9875           WRB ENSG00000182093       ENST00000623703       39380244
9876           WRB ENSG00000182093       ENST00000623703       39380244
9877           WRB ENSG00000182093       ENST00000623703       39380244
9878           WRB ENSG00000182093       ENST00000487869       39380244
9879           WRB ENSG00000182093       ENST00000487869       39380244
9880           WRB ENSG00000182093       ENST00000487869       39380244
9881           WRB ENSG00000182093       ENST00000471468       39380244
9882           WRB ENSG00000182093       ENST00000471468       39380244
9883           WRB ENSG00000182093       ENST00000398753       39380244
9884           WRB ENSG00000182093       ENST00000398753       39380244
9885           WRB ENSG00000182093       ENST00000398753       39380244
9886           WRB ENSG00000182093       ENST00000398753       39380244
9887           WRB ENSG00000182093       ENST00000398753       39380244
9888           WRB ENSG00000182093       ENST00000442773       39380244
9889           WRB ENSG00000182093       ENST00000442773       39380244
9890           WRB ENSG00000182093       ENST00000380713       39380244
9891           WRB ENSG00000182093       ENST00000380713       39380244
9892           WRB ENSG00000182093       ENST00000380713       39380244
9893           WRB ENSG00000182093       ENST00000380713       39380244
9894           WRB ENSG00000182093       ENST00000380708       39380244
9895           WRB ENSG00000182093       ENST00000380708       39380244
9896           WRB ENSG00000182093       ENST00000380708       39380244
9897           WRB ENSG00000182093       ENST00000380708       39380244
9898           WRB ENSG00000182093       ENST00000380708       39380244
9899           WRB ENSG00000182093       ENST00000466787       39380244
9900           WRB ENSG00000182093       ENST00000466787       39380244
9901           WRB ENSG00000182093       ENST00000466787       39380244
9902           WRB ENSG00000182093       ENST00000466787       39380244
9903           WRB ENSG00000182093       ENST00000466787       39380244
9904           WRB ENSG00000182093       ENST00000415847       39380244
9905           WRB ENSG00000182093       ENST00000415847       39380244
9906           WRB ENSG00000182093       ENST00000415847       39380244
9907           WRB ENSG00000182093       ENST00000490860       39380244
9908           WRB ENSG00000182093       ENST00000490860       39380244
9909           WRB ENSG00000182093       ENST00000478273       39380244
9910           WRB ENSG00000182093       ENST00000478273       39380244
9911           WRB ENSG00000182093       ENST00000476914       39380244
9912           WRB ENSG00000182093       ENST00000476914       39380244
9913           WRB ENSG00000182093       ENST00000480690       39380244
9914           WRB ENSG00000182093       ENST00000480690       39380244
9915               ENSG00000280346       ENST00000624353        6507017
9916        IL10RB ENSG00000243646       ENST00000290200       33266358
9917        IL10RB ENSG00000243646       ENST00000290200       33266358
9918        IL10RB ENSG00000243646       ENST00000290200       33266358
9919        IL10RB ENSG00000243646       ENST00000290200       33266358
9920        IL10RB ENSG00000243646       ENST00000290200       33266358
9921        IL10RB ENSG00000243646       ENST00000290200       33266358
9922        IL10RB ENSG00000243646       ENST00000290200       33266358
9923        IL10RB ENSG00000243646       ENST00000422891       33266358
9924        IL10RB ENSG00000243646       ENST00000422891       33266358
9925        IL10RB ENSG00000243646       ENST00000422891       33266358
9926        IL10RB ENSG00000243646       ENST00000422891       33266358
9927        IL10RB ENSG00000243646       ENST00000422891       33266358
9928        IL10RB ENSG00000243646       ENST00000422891       33266358
9929        IL10RB ENSG00000243646       ENST00000493295       33266358
9930        IL10RB ENSG00000243646       ENST00000493295       33266358
9931        IL10RB ENSG00000243646       ENST00000493295       33266358
9932        IL10RB ENSG00000243646       ENST00000493295       33266358
9933        IL10RB ENSG00000243646       ENST00000493295       33266358
9934        IL10RB ENSG00000243646       ENST00000493295       33266358
9935        IL10RB ENSG00000243646       ENST00000498371       33266358
9936        IL10RB ENSG00000243646       ENST00000498371       33266358
9937        IL10RB ENSG00000243646       ENST00000498371       33266358
9938        IL10RB ENSG00000243646       ENST00000498371       33266358
9939        IL10RB ENSG00000243646       ENST00000451065       33266358
9940        IL10RB ENSG00000243646       ENST00000451065       33266358
9941        IL10RB ENSG00000243646       ENST00000451065       33266358
9942        IL10RB ENSG00000243646       ENST00000451065       33266358
9943        IL10RB ENSG00000243646       ENST00000451065       33266358
9944        IL10RB ENSG00000243646       ENST00000451065       33266358
9945        IL10RB ENSG00000243646       ENST00000637650       33266358
9946        IL10RB ENSG00000243646       ENST00000637650       33266358
9947        IL10RB ENSG00000243646       ENST00000609556       33266358
9948        IL10RB ENSG00000243646       ENST00000609556       33266358
9949               ENSG00000280614       ENST00000625598        8393419
9950               ENSG00000280800       ENST00000631211        8210384
9951               ENSG00000277277       ENST00000613894        7768884
9952               ENSG00000275799       ENST00000620163       44244545
9953               ENSG00000279303       ENST00000623962        7135334
9954               ENSG00000280019       ENST00000624484        6272135
9955               ENSG00000280019       ENST00000624484        6272135
9956               ENSG00000280019       ENST00000624484        6272135
9957               ENSG00000280019       ENST00000624484        6272135
9958               ENSG00000280019       ENST00000624484        6272135
9959               ENSG00000280019       ENST00000624484        6272135
9960               ENSG00000280019       ENST00000624484        6272135
9961               ENSG00000280019       ENST00000624484        6272135
9962               ENSG00000280019       ENST00000624484        6272135
9963               ENSG00000280019       ENST00000624484        6272135
9964               ENSG00000230479       ENST00000429588       36430360
9965               ENSG00000230479       ENST00000429588       36430360
9966               ENSG00000279365       ENST00000624669       36485867
9967               ENSG00000233236       ENST00000436373       20256752
9968               ENSG00000233236       ENST00000436373       20256752
9969               ENSG00000271486       ENST00000603349       19620695
9970               ENSG00000235965       ENST00000450653       19046310
9971               ENSG00000235965       ENST00000450653       19046310
9972               ENSG00000234703       ENST00000455028       35136638
9973               ENSG00000234703       ENST00000455028       35136638
9974      C21orf91 ENSG00000154642       ENST00000284881       17788967
9975      C21orf91 ENSG00000154642       ENST00000284881       17788967
9976      C21orf91 ENSG00000154642       ENST00000284881       17788967
9977      C21orf91 ENSG00000154642       ENST00000284881       17788967
9978      C21orf91 ENSG00000154642       ENST00000284881       17788967
9979      C21orf91 ENSG00000154642       ENST00000400559       17788967
9980      C21orf91 ENSG00000154642       ENST00000400559       17788967
9981      C21orf91 ENSG00000154642       ENST00000400559       17788967
9982      C21orf91 ENSG00000154642       ENST00000400559       17788967
9983      C21orf91 ENSG00000154642       ENST00000400559       17788967
9984      C21orf91 ENSG00000154642       ENST00000400558       17788967
9985      C21orf91 ENSG00000154642       ENST00000400558       17788967
9986      C21orf91 ENSG00000154642       ENST00000400558       17788967
9987      C21orf91 ENSG00000154642       ENST00000400558       17788967
9988      C21orf91 ENSG00000154642       ENST00000405964       17788967
9989      C21orf91 ENSG00000154642       ENST00000405964       17788967
9990      C21orf91 ENSG00000154642       ENST00000405964       17788967
9991      C21orf91 ENSG00000154642       ENST00000405964       17788967
9992      C21orf91 ENSG00000154642       ENST00000493464       17788967
9993      C21orf91 ENSG00000154642       ENST00000493464       17788967
9994      C21orf91 ENSG00000154642       ENST00000493464       17788967
9995      C21orf91 ENSG00000154642       ENST00000493464       17788967
9996      C21orf91 ENSG00000154642       ENST00000493464       17788967
9997      C21orf91 ENSG00000154642       ENST00000482915       17788967
9998      C21orf91 ENSG00000154642       ENST00000482915       17788967
9999               ENSG00000232855       ENST00000433310       28439346
10000              ENSG00000232855       ENST00000433310       28439346
10001              ENSG00000232855       ENST00000433310       28439346
10002              ENSG00000232855       ENST00000433310       28439346
10003              ENSG00000232855       ENST00000433310       28439346
10004              ENSG00000232855       ENST00000430247       28439346
10005              ENSG00000232855       ENST00000430247       28439346
10006              ENSG00000232855       ENST00000430247       28439346
10007              ENSG00000232855       ENST00000430247       28439346
10008              ENSG00000232855       ENST00000430247       28439346
10009              ENSG00000232855       ENST00000452028       28439346
10010              ENSG00000232855       ENST00000452028       28439346
10011    LINC00161 ENSG00000226935       ENST00000412526       28539318
10012    LINC00161 ENSG00000226935       ENST00000412526       28539318
10013    LINC00161 ENSG00000226935       ENST00000455939       28539318
10014    LINC00161 ENSG00000226935       ENST00000455939       28539318
10015              ENSG00000214955       ENST00000427022       34205055
10016              ENSG00000214955       ENST00000427022       34205055
10017              ENSG00000214955       ENST00000427022       34205055
10018              ENSG00000214955       ENST00000427022       34205055
10019              ENSG00000214955       ENST00000427022       34205055
10020              ENSG00000272657       ENST00000362077       34073592
10021              ENSG00000272657       ENST00000362077       34073592
10022              ENSG00000272657       ENST00000362077       34073592
10023              ENSG00000272657       ENST00000362077       34073592
10024              ENSG00000272657       ENST00000362077       34073592
10025              ENSG00000272657       ENST00000362077       34073592
10026    LINC00310 ENSG00000227456       ENST00000630751       34157724
10027    LINC00310 ENSG00000227456       ENST00000630751       34157724
10028    LINC00310 ENSG00000227456       ENST00000630751       34157724
10029    LINC00310 ENSG00000227456       ENST00000430922       34157724
10030    LINC00310 ENSG00000227456       ENST00000430922       34157724
10031    LINC00310 ENSG00000227456       ENST00000428914       34157724
10032    LINC00310 ENSG00000227456       ENST00000428914       34157724
10033    LINC00310 ENSG00000227456       ENST00000609062       34157724
10034    LINC00310 ENSG00000227456       ENST00000609062       34157724
10035    LINC00310 ENSG00000227456       ENST00000609062       34157724
10036    LINC00310 ENSG00000227456       ENST00000609947       34157724
10037    LINC00310 ENSG00000227456       ENST00000609947       34157724
10038    LINC00310 ENSG00000227456       ENST00000609947       34157724
10039    LINC00310 ENSG00000227456       ENST00000416145       34157724
10040    LINC00310 ENSG00000227456       ENST00000416145       34157724
10041    LINC00310 ENSG00000227456       ENST00000419881       34157724
10042    LINC00310 ENSG00000227456       ENST00000419881       34157724
10043    LINC00310 ENSG00000227456       ENST00000419881       34157724
10044    LINC00310 ENSG00000227456       ENST00000619549       34157724
10045    LINC00310 ENSG00000227456       ENST00000619549       34157724
10046    LINC00310 ENSG00000227456       ENST00000619549       34157724
10047        MRPS6 ENSG00000243927       ENST00000488492       34073224
10048        MRPS6 ENSG00000243927       ENST00000488492       34073224
10049        MRPS6 ENSG00000243927       ENST00000488492       34073224
10050        MRPS6 ENSG00000243927       ENST00000488492       34073224
10051        MRPS6 ENSG00000243927       ENST00000488492       34073224
10052        MRPS6 ENSG00000243927       ENST00000399312       34073224
10053        MRPS6 ENSG00000243927       ENST00000399312       34073224
10054        MRPS6 ENSG00000243927       ENST00000399312       34073224
10055        MRPS6 ENSG00000243927       ENST00000477091       34073224
10056        MRPS6 ENSG00000243927       ENST00000477091       34073224
10057        MRPS6 ENSG00000243927       ENST00000477091       34073224
10058        MRPS6 ENSG00000243927       ENST00000477091       34073224
10059        MRPS6 ENSG00000243927       ENST00000477091       34073224
10060        MRPS6 ENSG00000243927       ENST00000483977       34073224
10061        MRPS6 ENSG00000243927       ENST00000483977       34073224
10062        MRPS6 ENSG00000243927       ENST00000482679       34073224
10063        MRPS6 ENSG00000243927       ENST00000482679       34073224
10064        MRPS6 ENSG00000243927       ENST00000482679       34073224
10065              ENSG00000280330       ENST00000624153        7129103
10066              ENSG00000280164       ENST00000623892        6721812
10067              ENSG00000280164       ENST00000623892        6721812
10068              ENSG00000280164       ENST00000623892        6721812
10069              ENSG00000280145       ENST00000623047        6630182
10070              ENSG00000280145       ENST00000623047        6630182
10071              ENSG00000280145       ENST00000623106        6630182
10072              ENSG00000280145       ENST00000623106        6630182
10073              ENSG00000280145       ENST00000623106        6630182
10074              ENSG00000280145       ENST00000625185        6630182
10075              ENSG00000280145       ENST00000625185        6630182
10076              ENSG00000280145       ENST00000625185        6630182
10077              ENSG00000280145       ENST00000625185        6630182
10078              ENSG00000280145       ENST00000624846        6630182
10079              ENSG00000280145       ENST00000624846        6630182
10080              ENSG00000280145       ENST00000624846        6630182
10081              ENSG00000280145       ENST00000623313        6630182
10082              ENSG00000280145       ENST00000623313        6630182
10083              ENSG00000280145       ENST00000623313        6630182
10084              ENSG00000280145       ENST00000623313        6630182
10085              ENSG00000280145       ENST00000623950        6630182
10086              ENSG00000280145       ENST00000623950        6630182
10087              ENSG00000280145       ENST00000623950        6630182
10088              ENSG00000280145       ENST00000624965        6630182
10089              ENSG00000280145       ENST00000624965        6630182
10090              ENSG00000280145       ENST00000624965        6630182
10091              ENSG00000280145       ENST00000623324        6630182
10092              ENSG00000280145       ENST00000623324        6630182
10093              ENSG00000280145       ENST00000623324        6630182
10094       FDPSP6 ENSG00000233676       ENST00000425091       20388334
10095              ENSG00000226956       ENST00000416641       17659276
10096              ENSG00000226956       ENST00000416641       17659276
10097       RPS5P2 ENSG00000224598       ENST00000415238       34135432
10098       SLC5A3 ENSG00000198743       ENST00000381151       34073570
10099       SLC5A3 ENSG00000198743       ENST00000381151       34073570
10100         TFF1 ENSG00000160182       ENST00000291527       42362282
10101         TFF1 ENSG00000160182       ENST00000291527       42362282
10102         TFF1 ENSG00000160182       ENST00000291527       42362282
10103      RPL10P1 ENSG00000217026       ENST00000447844       27420380
10104       GPX1P2 ENSG00000215326       ENST00000429271       27143344
10105         TFF3 ENSG00000160180       ENST00000518498       42311667
10106         TFF3 ENSG00000160180       ENST00000518498       42311667
10107         TFF3 ENSG00000160180       ENST00000518498       42311667
10108         TFF3 ENSG00000160180       ENST00000489676       42311667
10109         TFF3 ENSG00000160180       ENST00000489676       42311667
10110         TFF3 ENSG00000160180       ENST00000398431       42311667
10111         TFF3 ENSG00000160180       ENST00000398431       42311667
10112         TFF3 ENSG00000160180       ENST00000398431       42311667
10113         TFF3 ENSG00000160180       ENST00000291525       42311667
10114         TFF3 ENSG00000160180       ENST00000291525       42311667
10115         TFF3 ENSG00000160180       ENST00000291525       42311667
10116         TFF3 ENSG00000160180       ENST00000291525       42311667
10117     ERLEC1P1 ENSG00000240755       ENST00000433806       14143581
10118         LIPI ENSG00000188992       ENST00000344577       14108813
10119         LIPI ENSG00000188992       ENST00000344577       14108813
10120         LIPI ENSG00000188992       ENST00000344577       14108813
10121         LIPI ENSG00000188992       ENST00000344577       14108813
10122         LIPI ENSG00000188992       ENST00000344577       14108813
10123         LIPI ENSG00000188992       ENST00000344577       14108813
10124         LIPI ENSG00000188992       ENST00000344577       14108813
10125         LIPI ENSG00000188992       ENST00000344577       14108813
10126         LIPI ENSG00000188992       ENST00000344577       14108813
10127         LIPI ENSG00000188992       ENST00000344577       14108813
10128         LIPI ENSG00000188992       ENST00000400211       14108813
10129         LIPI ENSG00000188992       ENST00000400211       14108813
10130         LIPI ENSG00000188992       ENST00000400211       14108813
10131         LIPI ENSG00000188992       ENST00000400211       14108813
10132         LIPI ENSG00000188992       ENST00000536861       14108813
10133         LIPI ENSG00000188992       ENST00000536861       14108813
10134         LIPI ENSG00000188992       ENST00000536861       14108813
10135         LIPI ENSG00000188992       ENST00000536861       14108813
10136         LIPI ENSG00000188992       ENST00000536861       14108813
10137         LIPI ENSG00000188992       ENST00000536861       14108813
10138         LIPI ENSG00000188992       ENST00000536861       14108813
10139         LIPI ENSG00000188992       ENST00000536861       14108813
10140         LIPI ENSG00000188992       ENST00000536861       14108813
10141         LIPI ENSG00000188992       ENST00000536861       14108813
10142         LIPI ENSG00000188992       ENST00000614229       14108813
10143         LIPI ENSG00000188992       ENST00000614229       14108813
10144         LIPI ENSG00000188992       ENST00000614229       14108813
10145         LIPI ENSG00000188992       ENST00000614229       14108813
10146         LIPI ENSG00000188992       ENST00000614229       14108813
10147         LIPI ENSG00000188992       ENST00000614229       14108813
10148         LIPI ENSG00000188992       ENST00000614229       14108813
10149         LIPI ENSG00000188992       ENST00000614229       14108813
10150         LIPI ENSG00000188992       ENST00000614229       14108813
10151              ENSG00000234509       ENST00000449339       31653593
10152              ENSG00000234509       ENST00000449339       31653593
10153              ENSG00000234509       ENST00000449339       31653593
10154      OR4K12P ENSG00000218549       ENST00000406538       13581044
10155      ZNF355P ENSG00000168122       ENST00000427301       13095305
10156      ZNF355P ENSG00000168122       ENST00000427301       13095305
10157      ZNF355P ENSG00000168122       ENST00000427301       13095305
10158              ENSG00000229306       ENST00000457565       12999676
10159              ENSG00000229306       ENST00000457565       12999676
10160        DSCR8 ENSG00000198054       ENST00000478613       38121451
10161        DSCR8 ENSG00000198054       ENST00000478613       38121451
10162        DSCR8 ENSG00000198054       ENST00000478613       38121451
10163        DSCR8 ENSG00000198054       ENST00000469658       38121451
10164        DSCR8 ENSG00000198054       ENST00000469658       38121451
10165        DSCR8 ENSG00000198054       ENST00000469658       38121451
10166        DSCR8 ENSG00000198054       ENST00000400477       38121451
10167        DSCR8 ENSG00000198054       ENST00000400477       38121451
10168        DSCR8 ENSG00000198054       ENST00000400477       38121451
10169        DSCR8 ENSG00000198054       ENST00000400477       38121451
10170        DSCR8 ENSG00000198054       ENST00000495344       38121451
10171        DSCR8 ENSG00000198054       ENST00000495344       38121451
10172        DSCR8 ENSG00000198054       ENST00000495344       38121451
10173        DSCR8 ENSG00000198054       ENST00000495344       38121451
10174        DSCR8 ENSG00000198054       ENST00000465532       38121451
10175        DSCR8 ENSG00000198054       ENST00000465532       38121451
10176        DSCR8 ENSG00000198054       ENST00000465532       38121451
10177        DSCR8 ENSG00000198054       ENST00000465532       38121451
10178        DSCR8 ENSG00000198054       ENST00000357704       38121451
10179        DSCR8 ENSG00000198054       ENST00000357704       38121451
10180        DSCR8 ENSG00000198054       ENST00000357704       38121451
10181        DSCR8 ENSG00000198054       ENST00000357704       38121451
10182        DSCR8 ENSG00000198054       ENST00000472602       38121451
10183        DSCR8 ENSG00000198054       ENST00000472602       38121451
10184        DSCR8 ENSG00000198054       ENST00000472602       38121451
10185        DSCR8 ENSG00000198054       ENST00000472602       38121451
10186        DSCR8 ENSG00000198054       ENST00000472602       38121451
10187        DSCR8 ENSG00000198054       ENST00000614538       38121451
10188        DSCR8 ENSG00000198054       ENST00000614538       38121451
10189        DSCR8 ENSG00000198054       ENST00000614538       38121451
10190    KRTAP19-8 ENSG00000206102       ENST00000382822       31038159
10191      UBE3AP2 ENSG00000228941       ENST00000429033       31060600
10192      UBE3AP2 ENSG00000228941       ENST00000429033       31060600
10193      RNGTTP1 ENSG00000237731       ENST00000420965       25643489
10194        ATP5J ENSG00000154723       ENST00000400099       25716503
10195        ATP5J ENSG00000154723       ENST00000400099       25716503
10196        ATP5J ENSG00000154723       ENST00000400099       25716503
10197        ATP5J ENSG00000154723       ENST00000400099       25716503
10198        ATP5J ENSG00000154723       ENST00000400099       25716503
10199        ATP5J ENSG00000154723       ENST00000400094       25716503
10200        ATP5J ENSG00000154723       ENST00000400094       25716503
10201        ATP5J ENSG00000154723       ENST00000400094       25716503
10202        ATP5J ENSG00000154723       ENST00000400094       25716503
10203        ATP5J ENSG00000154723       ENST00000400094       25716503
10204        ATP5J ENSG00000154723       ENST00000284971       25716503
10205        ATP5J ENSG00000154723       ENST00000284971       25716503
10206        ATP5J ENSG00000154723       ENST00000284971       25716503
10207        ATP5J ENSG00000154723       ENST00000284971       25716503
10208        ATP5J ENSG00000154723       ENST00000457143       25716503
10209        ATP5J ENSG00000154723       ENST00000457143       25716503
10210        ATP5J ENSG00000154723       ENST00000457143       25716503
10211        ATP5J ENSG00000154723       ENST00000457143       25716503
10212        ATP5J ENSG00000154723       ENST00000400090       25716503
10213        ATP5J ENSG00000154723       ENST00000400090       25716503
10214        ATP5J ENSG00000154723       ENST00000400090       25716503
10215        ATP5J ENSG00000154723       ENST00000400090       25716503
10216        ATP5J ENSG00000154723       ENST00000400087       25716503
10217        ATP5J ENSG00000154723       ENST00000400087       25716503
10218        ATP5J ENSG00000154723       ENST00000400087       25716503
10219        ATP5J ENSG00000154723       ENST00000400087       25716503
10220        ATP5J ENSG00000154723       ENST00000400093       25716503
10221        ATP5J ENSG00000154723       ENST00000400093       25716503
10222        ATP5J ENSG00000154723       ENST00000400093       25716503
10223        ATP5J ENSG00000154723       ENST00000400093       25716503
10224        ATP5J ENSG00000154723       ENST00000486002       25716503
10225        ATP5J ENSG00000154723       ENST00000486002       25716503
10226        ATP5J ENSG00000154723       ENST00000486002       25716503
10227       FDX1P2 ENSG00000227054       ENST00000450769       25692180
10228        GABPA ENSG00000154727       ENST00000354828       25734570
10229        GABPA ENSG00000154727       ENST00000354828       25734570
10230        GABPA ENSG00000154727       ENST00000354828       25734570
10231        GABPA ENSG00000154727       ENST00000354828       25734570
10232        GABPA ENSG00000154727       ENST00000354828       25734570
10233        GABPA ENSG00000154727       ENST00000354828       25734570
10234        GABPA ENSG00000154727       ENST00000354828       25734570
10235        GABPA ENSG00000154727       ENST00000354828       25734570
10236        GABPA ENSG00000154727       ENST00000354828       25734570
10237        GABPA ENSG00000154727       ENST00000354828       25734570
10238        GABPA ENSG00000154727       ENST00000400075       25734570
10239        GABPA ENSG00000154727       ENST00000400075       25734570
10240        GABPA ENSG00000154727       ENST00000400075       25734570
10241        GABPA ENSG00000154727       ENST00000400075       25734570
10242        GABPA ENSG00000154727       ENST00000400075       25734570
10243        GABPA ENSG00000154727       ENST00000400075       25734570
10244        GABPA ENSG00000154727       ENST00000400075       25734570
10245        GABPA ENSG00000154727       ENST00000400075       25734570
10246        GABPA ENSG00000154727       ENST00000400075       25734570
10247        GABPA ENSG00000154727       ENST00000400075       25734570
10248        GABPA ENSG00000154727       ENST00000487266       25734570
10249        GABPA ENSG00000154727       ENST00000487266       25734570
10250        GABPA ENSG00000154727       ENST00000487266       25734570
10251        GABPA ENSG00000154727       ENST00000487266       25734570
10252    LINC01679 ENSG00000237989       ENST00000442815       43358147
10253    LINC01679 ENSG00000237989       ENST00000442815       43358147
10254       LLPHP2 ENSG00000235514       ENST00000436405       25762938
10255              ENSG00000267857       ENST00000596207       45100487
10256    KRTAP8-3P ENSG00000227840       ENST00000423658       30806932
10257    KRTAP21-1 ENSG00000187005       ENST00000335093       30754830
10258    KRTAP21-2 ENSG00000187026       ENST00000333892       30746794
10259        DSCR4 ENSG00000184029       ENST00000398948       37951425
10260        DSCR4 ENSG00000184029       ENST00000398948       37951425
10261        DSCR4 ENSG00000184029       ENST00000398948       37951425
10262        DSCR4 ENSG00000184029       ENST00000398948       37951425
10263        DSCR4 ENSG00000184029       ENST00000328264       37951425
10264        DSCR4 ENSG00000184029       ENST00000328264       37951425
10265        DSCR4 ENSG00000184029       ENST00000328264       37951425
10266        DSCR4 ENSG00000184029       ENST00000482032       37951425
10267        DSCR4 ENSG00000184029       ENST00000482032       37951425
10268        DSCR4 ENSG00000184029       ENST00000482032       37951425
10269        DSCR4 ENSG00000184029       ENST00000482032       37951425
10270        DSCR4 ENSG00000184029       ENST00000482032       37951425
10271        DSCR4 ENSG00000184029       ENST00000482032       37951425
10272    DSCR4-IT1 ENSG00000223608       ENST00000417138       38006544
10273    DSCR4-IT1 ENSG00000223608       ENST00000417138       38006544
10274        U2AF1 ENSG00000160201       ENST00000471250       43092956
10275        U2AF1 ENSG00000160201       ENST00000471250       43092956
10276        U2AF1 ENSG00000160201       ENST00000471250       43092956
10277        U2AF1 ENSG00000160201       ENST00000478282       43092956
10278        U2AF1 ENSG00000160201       ENST00000478282       43092956
10279        U2AF1 ENSG00000160201       ENST00000459639       43092956
10280        U2AF1 ENSG00000160201       ENST00000459639       43092956
10281        U2AF1 ENSG00000160201       ENST00000459639       43092956
10282        U2AF1 ENSG00000160201       ENST00000459639       43092956
10283        U2AF1 ENSG00000160201       ENST00000459639       43092956
10284        U2AF1 ENSG00000160201       ENST00000459639       43092956
10285        U2AF1 ENSG00000160201       ENST00000459639       43092956
10286        U2AF1 ENSG00000160201       ENST00000464750       43092956
10287        U2AF1 ENSG00000160201       ENST00000464750       43092956
10288        U2AF1 ENSG00000160201       ENST00000464750       43092956
10289        U2AF1 ENSG00000160201       ENST00000464750       43092956
10290        U2AF1 ENSG00000160201       ENST00000464750       43092956
10291        U2AF1 ENSG00000160201       ENST00000464750       43092956
10292        U2AF1 ENSG00000160201       ENST00000464750       43092956
10293        U2AF1 ENSG00000160201       ENST00000464750       43092956
10294        U2AF1 ENSG00000160201       ENST00000464750       43092956
10295        U2AF1 ENSG00000160201       ENST00000475639       43092956
10296        U2AF1 ENSG00000160201       ENST00000475639       43092956
10297        U2AF1 ENSG00000160201       ENST00000475639       43092956
10298        U2AF1 ENSG00000160201       ENST00000475639       43092956
10299        U2AF1 ENSG00000160201       ENST00000475639       43092956
10300        U2AF1 ENSG00000160201       ENST00000475639       43092956
10301        U2AF1 ENSG00000160201       ENST00000475639       43092956
10302        U2AF1 ENSG00000160201       ENST00000380276       43092956
10303        U2AF1 ENSG00000160201       ENST00000380276       43092956
10304        U2AF1 ENSG00000160201       ENST00000380276       43092956
10305        U2AF1 ENSG00000160201       ENST00000380276       43092956
10306        U2AF1 ENSG00000160201       ENST00000380276       43092956
10307        U2AF1 ENSG00000160201       ENST00000380276       43092956
10308        U2AF1 ENSG00000160201       ENST00000380276       43092956
10309        U2AF1 ENSG00000160201       ENST00000380276       43092956
10310        U2AF1 ENSG00000160201       ENST00000291552       43092956
10311        U2AF1 ENSG00000160201       ENST00000291552       43092956
10312        U2AF1 ENSG00000160201       ENST00000291552       43092956
10313        U2AF1 ENSG00000160201       ENST00000291552       43092956
10314        U2AF1 ENSG00000160201       ENST00000291552       43092956
10315        U2AF1 ENSG00000160201       ENST00000291552       43092956
10316        U2AF1 ENSG00000160201       ENST00000291552       43092956
10317        U2AF1 ENSG00000160201       ENST00000291552       43092956
10318        U2AF1 ENSG00000160201       ENST00000486519       43092956
10319        U2AF1 ENSG00000160201       ENST00000486519       43092956
10320        U2AF1 ENSG00000160201       ENST00000486519       43092956
10321        U2AF1 ENSG00000160201       ENST00000486519       43092956
10322        U2AF1 ENSG00000160201       ENST00000486519       43092956
10323        U2AF1 ENSG00000160201       ENST00000486519       43092956
10324        U2AF1 ENSG00000160201       ENST00000486519       43092956
10325        U2AF1 ENSG00000160201       ENST00000486519       43092956
10326        U2AF1 ENSG00000160201       ENST00000463599       43092956
10327        U2AF1 ENSG00000160201       ENST00000463599       43092956
10328        U2AF1 ENSG00000160201       ENST00000463599       43092956
10329        U2AF1 ENSG00000160201       ENST00000463599       43092956
10330        U2AF1 ENSG00000160201       ENST00000496462       43092956
10331        U2AF1 ENSG00000160201       ENST00000496462       43092956
10332        U2AF1 ENSG00000160201       ENST00000496462       43092956
10333        U2AF1 ENSG00000160201       ENST00000468039       43092956
10334        U2AF1 ENSG00000160201       ENST00000468039       43092956
10335        U2AF1 ENSG00000160201       ENST00000398137       43092956
10336        U2AF1 ENSG00000160201       ENST00000398137       43092956
10337        U2AF1 ENSG00000160201       ENST00000398137       43092956
10338        U2AF1 ENSG00000160201       ENST00000398137       43092956
10339        U2AF1 ENSG00000160201       ENST00000398137       43092956
10340        U2AF1 ENSG00000160201       ENST00000398137       43092956
10341        U2AF1 ENSG00000160201       ENST00000398137       43092956
10342        U2AF1 ENSG00000160201       ENST00000398137       43092956
10343        U2AF1 ENSG00000160201       ENST00000398137       43092956
10344     MRPL20P1 ENSG00000215734       ENST00000400819       36994643
10345              ENSG00000278903       ENST00000624576        6318434
10346              ENSG00000278903       ENST00000624576        6318434
10347              ENSG00000278903       ENST00000624576        6318434
10348              ENSG00000278903       ENST00000624576        6318434
10349              ENSG00000278903       ENST00000623738        6318434
10350              ENSG00000278903       ENST00000623738        6318434
10351              ENSG00000278903       ENST00000623738        6318434
10352              ENSG00000278903       ENST00000623738        6318434
10353              ENSG00000278903       ENST00000623989        6318434
10354              ENSG00000278903       ENST00000623989        6318434
10355              ENSG00000278903       ENST00000623989        6318434
10356              ENSG00000278903       ENST00000624165        6318434
10357              ENSG00000278903       ENST00000624165        6318434
10358              ENSG00000278903       ENST00000624165        6318434
10359              ENSG00000278903       ENST00000624847        6318434
10360              ENSG00000278903       ENST00000624847        6318434
10361              ENSG00000278903       ENST00000624847        6318434
10362              ENSG00000278903       ENST00000624847        6318434
10363       DPRXP5 ENSG00000270652       ENST00000604662       36943267
10364       DPRXP5 ENSG00000270652       ENST00000604662       36943267
10365     HLCS-IT1 ENSG00000237646       ENST00000434195       36803984
10366     HLCS-IT1 ENSG00000237646       ENST00000434195       36803984
10367    THUMPD1P1 ENSG00000215317       ENST00000400014       28901779
10368    THUMPD1P1 ENSG00000215317       ENST00000400014       28901779
10369    THUMPD1P1 ENSG00000215317       ENST00000400014       28901779
10370    LINC01425 ENSG00000233997       ENST00000425979       21746973
10371    LINC01425 ENSG00000233997       ENST00000425979       21746973
10372    LINC01425 ENSG00000233997       ENST00000425979       21746973
10373    LINC01425 ENSG00000233997       ENST00000425979       21746973
10374    LINC01425 ENSG00000233997       ENST00000430060       21746973
10375    LINC01425 ENSG00000233997       ENST00000430060       21746973
10376    LINC01425 ENSG00000233997       ENST00000430060       21746973
10377    LINC01425 ENSG00000233997       ENST00000430060       21746973
10378    LINC01425 ENSG00000233997       ENST00000430060       21746973
10379       PPIAP1 ENSG00000215351       ENST00000448832       20828127
10380              ENSG00000235772       ENST00000442605       42560374
10381              ENSG00000235772       ENST00000442605       42560374
10382     EXOSC3P1 ENSG00000229007       ENST00000448649       32496812
10383              ENSG00000228355       ENST00000456613       45378201
10384              ENSG00000228355       ENST00000456613       45378201
10385              ENSG00000228355       ENST00000416468       45378201
10386              ENSG00000228355       ENST00000416468       45378201
10387              ENSG00000273796       ENST00000617004       45403809
10388       HSF2BP ENSG00000160207       ENST00000291560       43529192
10389       HSF2BP ENSG00000160207       ENST00000291560       43529192
10390       HSF2BP ENSG00000160207       ENST00000291560       43529192
10391       HSF2BP ENSG00000160207       ENST00000291560       43529192
10392       HSF2BP ENSG00000160207       ENST00000291560       43529192
10393       HSF2BP ENSG00000160207       ENST00000291560       43529192
10394       HSF2BP ENSG00000160207       ENST00000291560       43529192
10395       HSF2BP ENSG00000160207       ENST00000291560       43529192
10396       HSF2BP ENSG00000160207       ENST00000291560       43529192
10397       HSF2BP ENSG00000160207       ENST00000443485       43529192
10398       HSF2BP ENSG00000160207       ENST00000443485       43529192
10399       HSF2BP ENSG00000160207       ENST00000443485       43529192
10400       HSF2BP ENSG00000160207       ENST00000443485       43529192
10401       HSF2BP ENSG00000160207       ENST00000443485       43529192
10402       HSF2BP ENSG00000160207       ENST00000443485       43529192
10403       HSF2BP ENSG00000160207       ENST00000443485       43529192
10404      OR4K11P ENSG00000179381       ENST00000431829       13544282
10405       DSCR10 ENSG00000233316       ENST00000432141       38206156
10406       DSCR10 ENSG00000233316       ENST00000432141       38206156
10407       DSCR10 ENSG00000233316       ENST00000432141       38206156
10408              ENSG00000273464       ENST00000608759       29657406
10409      DNAJC28 ENSG00000177692       ENST00000381947       33485530
10410      DNAJC28 ENSG00000177692       ENST00000381947       33485530
10411      DNAJC28 ENSG00000177692       ENST00000314399       33485530
10412      DNAJC28 ENSG00000177692       ENST00000314399       33485530
10413      DNAJC28 ENSG00000177692       ENST00000402202       33485530
10414      DNAJC28 ENSG00000177692       ENST00000402202       33485530
10415      DNAJC28 ENSG00000177692       ENST00000617313       33485530
10416      DNAJC28 ENSG00000177692       ENST00000617313       33485530
10417      DNAJC28 ENSG00000177692       ENST00000617313       33485530
10418              ENSG00000231355       ENST00000450928       33482499
10419              ENSG00000231355       ENST00000450928       33482499
10420              ENSG00000231355       ENST00000450928       33482499
10421              ENSG00000279647       ENST00000624595        7385058
10422              ENSG00000279647       ENST00000624595        7385058
10423              ENSG00000279647       ENST00000624595        7385058
10424              ENSG00000279647       ENST00000624595        7385058
10425              ENSG00000279647       ENST00000624595        7385058
10426              ENSG00000279647       ENST00000624595        7385058
10427              ENSG00000279647       ENST00000624595        7385058
10428              ENSG00000279647       ENST00000624595        7385058
10429              ENSG00000279647       ENST00000624595        7385058
10430       IFNGR2 ENSG00000159128       ENST00000290219       33402896
10431       IFNGR2 ENSG00000159128       ENST00000290219       33402896
10432       IFNGR2 ENSG00000159128       ENST00000290219       33402896
10433       IFNGR2 ENSG00000159128       ENST00000290219       33402896
10434       IFNGR2 ENSG00000159128       ENST00000290219       33402896
10435       IFNGR2 ENSG00000159128       ENST00000290219       33402896
10436       IFNGR2 ENSG00000159128       ENST00000290219       33402896
10437       IFNGR2 ENSG00000159128       ENST00000439213       33402896
10438       IFNGR2 ENSG00000159128       ENST00000439213       33402896
10439       IFNGR2 ENSG00000159128       ENST00000439213       33402896
10440       IFNGR2 ENSG00000159128       ENST00000439213       33402896
10441       IFNGR2 ENSG00000159128       ENST00000439213       33402896
10442       IFNGR2 ENSG00000159128       ENST00000439213       33402896
10443       IFNGR2 ENSG00000159128       ENST00000439213       33402896
10444       IFNGR2 ENSG00000159128       ENST00000381995       33402896
10445       IFNGR2 ENSG00000159128       ENST00000381995       33402896
10446       IFNGR2 ENSG00000159128       ENST00000381995       33402896
10447       IFNGR2 ENSG00000159128       ENST00000381995       33402896
10448       IFNGR2 ENSG00000159128       ENST00000381995       33402896
10449       IFNGR2 ENSG00000159128       ENST00000381995       33402896
10450       IFNGR2 ENSG00000159128       ENST00000381995       33402896
10451       IFNGR2 ENSG00000159128       ENST00000381995       33402896
10452       IFNGR2 ENSG00000159128       ENST00000545369       33402896
10453       IFNGR2 ENSG00000159128       ENST00000545369       33402896
10454       IFNGR2 ENSG00000159128       ENST00000545369       33402896
10455       IFNGR2 ENSG00000159128       ENST00000545369       33402896
10456       IFNGR2 ENSG00000159128       ENST00000545369       33402896
10457       IFNGR2 ENSG00000159128       ENST00000545369       33402896
10458       IFNGR2 ENSG00000159128       ENST00000405436       33402896
10459       IFNGR2 ENSG00000159128       ENST00000405436       33402896
10460       IFNGR2 ENSG00000159128       ENST00000405436       33402896
10461       IFNGR2 ENSG00000159128       ENST00000405436       33402896
10462       IFNGR2 ENSG00000159128       ENST00000405436       33402896
10463       IFNGR2 ENSG00000159128       ENST00000405436       33402896
10464       IFNGR2 ENSG00000159128       ENST00000405436       33402896
10465       IFNGR2 ENSG00000159128       ENST00000405436       33402896
10466       IFNGR2 ENSG00000159128       ENST00000421802       33402896
10467       IFNGR2 ENSG00000159128       ENST00000421802       33402896
10468       IFNGR2 ENSG00000159128       ENST00000421802       33402896
10469      U2AF1L5 ENSG00000275895       ENST00000637320        6484623
10470      U2AF1L5 ENSG00000275895       ENST00000637320        6484623
10471      U2AF1L5 ENSG00000275895       ENST00000637320        6484623
10472      U2AF1L5 ENSG00000275895       ENST00000623375        6484623
10473      U2AF1L5 ENSG00000275895       ENST00000623375        6484623
10474      U2AF1L5 ENSG00000275895       ENST00000623375        6484623
10475      U2AF1L5 ENSG00000275895       ENST00000623375        6484623
10476      U2AF1L5 ENSG00000275895       ENST00000623375        6484623
10477      U2AF1L5 ENSG00000275895       ENST00000623375        6484623
10478      U2AF1L5 ENSG00000275895       ENST00000623375        6484623
10479      U2AF1L5 ENSG00000275895       ENST00000610664        6484623
10480      U2AF1L5 ENSG00000275895       ENST00000610664        6484623
10481      U2AF1L5 ENSG00000275895       ENST00000610664        6484623
10482      U2AF1L5 ENSG00000275895       ENST00000610664        6484623
10483      U2AF1L5 ENSG00000275895       ENST00000610664        6484623
10484      U2AF1L5 ENSG00000275895       ENST00000610664        6484623
10485      U2AF1L5 ENSG00000275895       ENST00000610664        6484623
10486      U2AF1L5 ENSG00000275895       ENST00000610664        6484623
10487      U2AF1L5 ENSG00000275895       ENST00000620065        6484623
10488      U2AF1L5 ENSG00000275895       ENST00000620065        6484623
10489      U2AF1L5 ENSG00000275895       ENST00000620065        6484623
10490      U2AF1L5 ENSG00000275895       ENST00000620065        6484623
10491      U2AF1L5 ENSG00000275895       ENST00000620065        6484623
10492      U2AF1L5 ENSG00000275895       ENST00000620065        6484623
10493      U2AF1L5 ENSG00000275895       ENST00000620065        6484623
10494      U2AF1L5 ENSG00000275895       ENST00000620065        6484623
10495      U2AF1L5 ENSG00000275895       ENST00000620065        6484623
10496      U2AF1L5 ENSG00000275895       ENST00000636923        6484623
10497      U2AF1L5 ENSG00000275895       ENST00000636923        6484623
10498      U2AF1L5 ENSG00000275895       ENST00000624739        6484623
10499      U2AF1L5 ENSG00000275895       ENST00000624739        6484623
10500      U2AF1L5 ENSG00000275895       ENST00000624739        6484623
10501      U2AF1L5 ENSG00000275895       ENST00000624739        6484623
10502      U2AF1L5 ENSG00000275895       ENST00000624739        6484623
10503      U2AF1L5 ENSG00000275895       ENST00000624739        6484623
10504      U2AF1L5 ENSG00000275895       ENST00000624739        6484623
10505      U2AF1L5 ENSG00000275895       ENST00000619610        6484623
10506      U2AF1L5 ENSG00000275895       ENST00000619610        6484623
10507      U2AF1L5 ENSG00000275895       ENST00000619610        6484623
10508      U2AF1L5 ENSG00000275895       ENST00000619610        6484623
10509      U2AF1L5 ENSG00000275895       ENST00000619610        6484623
10510      U2AF1L5 ENSG00000275895       ENST00000619610        6484623
10511      U2AF1L5 ENSG00000275895       ENST00000619610        6484623
10512      U2AF1L5 ENSG00000275895       ENST00000619610        6484623
10513      U2AF1L5 ENSG00000275895       ENST00000636315        6484623
10514      U2AF1L5 ENSG00000275895       ENST00000636315        6484623
10515      U2AF1L5 ENSG00000275895       ENST00000636315        6484623
10516      U2AF1L5 ENSG00000275895       ENST00000636315        6484623
10517      U2AF1L5 ENSG00000275895       ENST00000636315        6484623
10518      U2AF1L5 ENSG00000275895       ENST00000636315        6484623
10519      U2AF1L5 ENSG00000275895       ENST00000636315        6484623
10520      U2AF1L5 ENSG00000275895       ENST00000636315        6484623
10521      U2AF1L5 ENSG00000275895       ENST00000637031        6484623
10522      U2AF1L5 ENSG00000275895       ENST00000637031        6484623
10523      U2AF1L5 ENSG00000275895       ENST00000637031        6484623
10524      U2AF1L5 ENSG00000275895       ENST00000637031        6484623
10525      U2AF1L5 ENSG00000275895       ENST00000636177        6484623
10526      U2AF1L5 ENSG00000275895       ENST00000636177        6484623
10527      U2AF1L5 ENSG00000275895       ENST00000636177        6484623
10528      U2AF1L5 ENSG00000275895       ENST00000636403        6484623
10529      U2AF1L5 ENSG00000275895       ENST00000636403        6484623
10530      U2AF1L5 ENSG00000275895       ENST00000639996        6484623
10531      U2AF1L5 ENSG00000275895       ENST00000639996        6484623
10532      U2AF1L5 ENSG00000275895       ENST00000639996        6484623
10533      U2AF1L5 ENSG00000275895       ENST00000639996        6484623
10534      U2AF1L5 ENSG00000275895       ENST00000639996        6484623
10535      U2AF1L5 ENSG00000275895       ENST00000639996        6484623
10536      U2AF1L5 ENSG00000275895       ENST00000639996        6484623
10537      U2AF1L5 ENSG00000275895       ENST00000639996        6484623
10538      U2AF1L5 ENSG00000275895       ENST00000639996        6484623
10539              ENSG00000237604       ENST00000411956       44175489
10540              ENSG00000237604       ENST00000411956       44175489
10541              ENSG00000249624       ENST00000433395       33246774
10542              ENSG00000249624       ENST00000433395       33246774
10543              ENSG00000249624       ENST00000433395       33246774
10544              ENSG00000249624       ENST00000433395       33246774
10545              ENSG00000249624       ENST00000433395       33246774
10546              ENSG00000249624       ENST00000433395       33246774
10547              ENSG00000249624       ENST00000433395       33246774
10548              ENSG00000249624       ENST00000432231       33246774
10549              ENSG00000249624       ENST00000432231       33246774
10550              ENSG00000249624       ENST00000432231       33246774
10551              ENSG00000249624       ENST00000432231       33246774
10552              ENSG00000249624       ENST00000432231       33246774
10553       CLDN14 ENSG00000159261       ENST00000399139       36460621
10554       CLDN14 ENSG00000159261       ENST00000399139       36460621
10555       CLDN14 ENSG00000159261       ENST00000399137       36460621
10556       CLDN14 ENSG00000159261       ENST00000399137       36460621
10557       CLDN14 ENSG00000159261       ENST00000399137       36460621
10558       CLDN14 ENSG00000159261       ENST00000399135       36460621
10559       CLDN14 ENSG00000159261       ENST00000399135       36460621
10560       CLDN14 ENSG00000159261       ENST00000399136       36460621
10561       CLDN14 ENSG00000159261       ENST00000399136       36460621
10562       CLDN14 ENSG00000159261       ENST00000399136       36460621
10563       CLDN14 ENSG00000159261       ENST00000342108       36460621
10564       CLDN14 ENSG00000159261       ENST00000342108       36460621
10565       CLDN14 ENSG00000159261       ENST00000342108       36460621
10566       CLDN14 ENSG00000159261       ENST00000478313       36460621
10567       CLDN14 ENSG00000159261       ENST00000478313       36460621
10568 C21orf91-OT1 ENSG00000240770       ENST00000430815       17763315
10569 C21orf91-OT1 ENSG00000240770       ENST00000430815       17763315
10570 C21orf91-OT1 ENSG00000240770       ENST00000430815       17763315
10571 C21orf91-OT1 ENSG00000240770       ENST00000430815       17763315
10572 C21orf91-OT1 ENSG00000240770       ENST00000430815       17763315
10573 C21orf91-OT1 ENSG00000240770       ENST00000430401       17763315
10574 C21orf91-OT1 ENSG00000240770       ENST00000430401       17763315
10575 C21orf91-OT1 ENSG00000240770       ENST00000430401       17763315
10576 C21orf91-OT1 ENSG00000240770       ENST00000439392       17763315
10577 C21orf91-OT1 ENSG00000240770       ENST00000439392       17763315
10578 C21orf91-OT1 ENSG00000240770       ENST00000439392       17763315
10579 C21orf91-OT1 ENSG00000240770       ENST00000439392       17763315
10580      TMPRSS3 ENSG00000160183       ENST00000476848       42371890
10581      TMPRSS3 ENSG00000160183       ENST00000476848       42371890
10582      TMPRSS3 ENSG00000160183       ENST00000476848       42371890
10583      TMPRSS3 ENSG00000160183       ENST00000476848       42371890
10584      TMPRSS3 ENSG00000160183       ENST00000476848       42371890
10585      TMPRSS3 ENSG00000160183       ENST00000474596       42371890
10586      TMPRSS3 ENSG00000160183       ENST00000474596       42371890
10587      TMPRSS3 ENSG00000160183       ENST00000474596       42371890
10588      TMPRSS3 ENSG00000160183       ENST00000474596       42371890
10589      TMPRSS3 ENSG00000160183       ENST00000474596       42371890
10590      TMPRSS3 ENSG00000160183       ENST00000474596       42371890
10591      TMPRSS3 ENSG00000160183       ENST00000474596       42371890
10592      TMPRSS3 ENSG00000160183       ENST00000474596       42371890
10593      TMPRSS3 ENSG00000160183       ENST00000474596       42371890
10594      TMPRSS3 ENSG00000160183       ENST00000474596       42371890
10595      TMPRSS3 ENSG00000160183       ENST00000482761       42371890
10596      TMPRSS3 ENSG00000160183       ENST00000482761       42371890
10597      TMPRSS3 ENSG00000160183       ENST00000482761       42371890
10598      TMPRSS3 ENSG00000160183       ENST00000482761       42371890
10599      TMPRSS3 ENSG00000160183       ENST00000482761       42371890
10600      TMPRSS3 ENSG00000160183       ENST00000482761       42371890
10601      TMPRSS3 ENSG00000160183       ENST00000482761       42371890
10602      TMPRSS3 ENSG00000160183       ENST00000482761       42371890
10603      TMPRSS3 ENSG00000160183       ENST00000482761       42371890
10604      TMPRSS3 ENSG00000160183       ENST00000482761       42371890
10605      TMPRSS3 ENSG00000160183       ENST00000482761       42371890
10606      TMPRSS3 ENSG00000160183       ENST00000398405       42371890
10607      TMPRSS3 ENSG00000160183       ENST00000398405       42371890
10608      TMPRSS3 ENSG00000160183       ENST00000398405       42371890
10609      TMPRSS3 ENSG00000160183       ENST00000398405       42371890
10610      TMPRSS3 ENSG00000160183       ENST00000398405       42371890
10611      TMPRSS3 ENSG00000160183       ENST00000398405       42371890
10612      TMPRSS3 ENSG00000160183       ENST00000398405       42371890
10613      TMPRSS3 ENSG00000160183       ENST00000398405       42371890
10614      TMPRSS3 ENSG00000160183       ENST00000398405       42371890
10615      TMPRSS3 ENSG00000160183       ENST00000398405       42371890
10616      TMPRSS3 ENSG00000160183       ENST00000398405       42371890
10617      TMPRSS3 ENSG00000160183       ENST00000398405       42371890
10618      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10619      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10620      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10621      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10622      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10623      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10624      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10625      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10626      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10627      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10628      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10629      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10630      TMPRSS3 ENSG00000160183       ENST00000433957       42371890
10631      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10632      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10633      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10634      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10635      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10636      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10637      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10638      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10639      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10640      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10641      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10642      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10643      TMPRSS3 ENSG00000160183       ENST00000291532       42371890
10644      TMPRSS3 ENSG00000160183       ENST00000398397       42371890
10645      TMPRSS3 ENSG00000160183       ENST00000398397       42371890
10646      TMPRSS3 ENSG00000160183       ENST00000398397       42371890
10647      TMPRSS3 ENSG00000160183       ENST00000398397       42371890
10648      TMPRSS3 ENSG00000160183       ENST00000398397       42371890
10649      TMPRSS3 ENSG00000160183       ENST00000398397       42371890
10650      TMPRSS3 ENSG00000160183       ENST00000398397       42371890
10651      TMPRSS3 ENSG00000160183       ENST00000398397       42371890
10652      TMPRSS3 ENSG00000160183       ENST00000398397       42371890
10653      TMPRSS3 ENSG00000160183       ENST00000478680       42371890
10654      TMPRSS3 ENSG00000160183       ENST00000478680       42371890
10655    LINC01673 ENSG00000234052       ENST00000426418       27638693
10656    LINC01673 ENSG00000234052       ENST00000426418       27638693
10657    LINC01673 ENSG00000234052       ENST00000426418       27638693
10658              ENSG00000276077       ENST00000617062        7430659
10659              ENSG00000276077       ENST00000617062        7430659
10660              ENSG00000276077       ENST00000617062        7430659
10661              ENSG00000276077       ENST00000617062        7430659
10662              ENSG00000276077       ENST00000625096        7430659
10663              ENSG00000276077       ENST00000625096        7430659
10664              ENSG00000276077       ENST00000625096        7430659
10665              ENSG00000276077       ENST00000625096        7430659
10666              ENSG00000276077       ENST00000624791        7430659
10667              ENSG00000276077       ENST00000624791        7430659
10668              ENSG00000276077       ENST00000624791        7430659
10669              ENSG00000276077       ENST00000624907        7430659
10670              ENSG00000276077       ENST00000624907        7430659
10671              ENSG00000276077       ENST00000624907        7430659
10672              ENSG00000276077       ENST00000624907        7430659
10673              ENSG00000276077       ENST00000624461        7430659
10674              ENSG00000276077       ENST00000624461        7430659
10675              ENSG00000276077       ENST00000624461        7430659
10676              ENSG00000276077       ENST00000625115        7430659
10677              ENSG00000276077       ENST00000625115        7430659
10678              ENSG00000276077       ENST00000625115        7430659
10679              ENSG00000276077       ENST00000610988        7430659
10680              ENSG00000276077       ENST00000610988        7430659
10681       ICOSLG ENSG00000160223       ENST00000344330       44222991
10682       ICOSLG ENSG00000160223       ENST00000344330       44222991
10683       ICOSLG ENSG00000160223       ENST00000344330       44222991
10684       ICOSLG ENSG00000160223       ENST00000344330       44222991
10685       ICOSLG ENSG00000160223       ENST00000344330       44222991
10686       ICOSLG ENSG00000160223       ENST00000344330       44222991
10687       ICOSLG ENSG00000160223       ENST00000344330       44222991
10688       ICOSLG ENSG00000160223       ENST00000407780       44222991
10689       ICOSLG ENSG00000160223       ENST00000407780       44222991
10690       ICOSLG ENSG00000160223       ENST00000407780       44222991
10691       ICOSLG ENSG00000160223       ENST00000407780       44222991
10692       ICOSLG ENSG00000160223       ENST00000407780       44222991
10693       ICOSLG ENSG00000160223       ENST00000407780       44222991
10694       ICOSLG ENSG00000160223       ENST00000407780       44222991
10695       ICOSLG ENSG00000160223       ENST00000400379       44222991
10696       ICOSLG ENSG00000160223       ENST00000400379       44222991
10697       ICOSLG ENSG00000160223       ENST00000400379       44222991
10698       ICOSLG ENSG00000160223       ENST00000400379       44222991
10699       ICOSLG ENSG00000160223       ENST00000400379       44222991
10700       ICOSLG ENSG00000160223       ENST00000400379       44222991
10701       ICOSLG ENSG00000160223       ENST00000400377       44222991
10702       ICOSLG ENSG00000160223       ENST00000400377       44222991
10703       ICOSLG ENSG00000160223       ENST00000400377       44222991
10704       ICOSLG ENSG00000160223       ENST00000400377       44222991
10705       ICOSLG ENSG00000160223       ENST00000400377       44222991
10706       ICOSLG ENSG00000160223       ENST00000400377       44222991
10707              ENSG00000226433       ENST00000450830       33156632
10708              ENSG00000226433       ENST00000450830       33156632
10709              ENSG00000226527       ENST00000421051       33111699
10710              ENSG00000226527       ENST00000421051       33111699
10711              ENSG00000226527       ENST00000421051       33111699
10712        OLIG2 ENSG00000205927       ENST00000382357       33025845
10713        OLIG2 ENSG00000205927       ENST00000382357       33025845
10714        OLIG2 ENSG00000205927       ENST00000430860       33025845
10715        OLIG2 ENSG00000205927       ENST00000430860       33025845
10716        OLIG2 ENSG00000205927       ENST00000333337       33025845
10717    LINC00945 ENSG00000232539       ENST00000453716       33057829
10718    LINC00945 ENSG00000232539       ENST00000453716       33057829
10719    LINC00945 ENSG00000232539       ENST00000453716       33057829
10720    LINC00945 ENSG00000232539       ENST00000453716       33057829
10721    LINC00945 ENSG00000232539       ENST00000453716       33057829
10722              ENSG00000228961       ENST00000424837       32958888
10723              ENSG00000228961       ENST00000424837       32958888
10724              ENSG00000279769       ENST00000624240        6034690
10725              ENSG00000279669       ENST00000623753        5232668
10726              ENSG00000279669       ENST00000623753        5232668
10727    LINC01670 ENSG00000279094       ENST00000624261        5499151
10728    LINC01670 ENSG00000279094       ENST00000624261        5499151
10729    LINC01670 ENSG00000279094       ENST00000624261        5499151
10730    LINC01670 ENSG00000279094       ENST00000624859        5499151
10731    LINC01670 ENSG00000279094       ENST00000624859        5499151
10732    LINC01670 ENSG00000279094       ENST00000624859        5499151
10733    LINC01670 ENSG00000279094       ENST00000623227        5499151
10734    LINC01670 ENSG00000279094       ENST00000623227        5499151
10735              ENSG00000224790       ENST00000637940       36966492
10736              ENSG00000224790       ENST00000637940       36966492
10737              ENSG00000224790       ENST00000637940       36966492
10738              ENSG00000224790       ENST00000637940       36966492
10739              ENSG00000224790       ENST00000430068       36966492
10740              ENSG00000224790       ENST00000430068       36966492
10741              ENSG00000224790       ENST00000430068       36966492
10742              ENSG00000224790       ENST00000430068       36966492
10743              ENSG00000274333       ENST00000619252        5553637
10744              ENSG00000274333       ENST00000619252        5553637
10745              ENSG00000274333       ENST00000619252        5553637
10746              ENSG00000274333       ENST00000623449        5553637
10747              ENSG00000274333       ENST00000623449        5553637
10748              ENSG00000274333       ENST00000623449        5553637
10749              ENSG00000274333       ENST00000623449        5553637
10750              ENSG00000274333       ENST00000623436        5553637
10751              ENSG00000274333       ENST00000623436        5553637
10752              ENSG00000274333       ENST00000624627        5553637
10753              ENSG00000274333       ENST00000624627        5553637
10754              ENSG00000274333       ENST00000624627        5553637
10755              ENSG00000274333       ENST00000624627        5553637
10756              ENSG00000274333       ENST00000624368        5553637
10757              ENSG00000274333       ENST00000624368        5553637
10758              ENSG00000274333       ENST00000624368        5553637
10759              ENSG00000274333       ENST00000624368        5553637
10760              ENSG00000274333       ENST00000624368        5553637
10761              ENSG00000274333       ENST00000623914        5553637
10762              ENSG00000274333       ENST00000623914        5553637
10763              ENSG00000274333       ENST00000623914        5553637
10764              ENSG00000274333       ENST00000623914        5553637
10765              ENSG00000274333       ENST00000624516        5553637
10766              ENSG00000274333       ENST00000624516        5553637
10767              ENSG00000274333       ENST00000624412        5553637
10768              ENSG00000274333       ENST00000624412        5553637
10769              ENSG00000274333       ENST00000624412        5553637
10770              ENSG00000274333       ENST00000622939        5553637
10771              ENSG00000274333       ENST00000622939        5553637
10772              ENSG00000274333       ENST00000622939        5553637
10773              ENSG00000274333       ENST00000622939        5553637
10774              ENSG00000274333       ENST00000623050        5553637
10775              ENSG00000274333       ENST00000623050        5553637
10776              ENSG00000274333       ENST00000623050        5553637
10777              ENSG00000274333       ENST00000624444        5553637
10778              ENSG00000274333       ENST00000624444        5553637
10779              ENSG00000274333       ENST00000623887        5553637
10780              ENSG00000274333       ENST00000623887        5553637
10781              ENSG00000274333       ENST00000611026        5553637
10782              ENSG00000274333       ENST00000611026        5553637
10783    LINC00320 ENSG00000224924       ENST00000416768       20742590
10784    LINC00320 ENSG00000224924       ENST00000416768       20742590
10785    LINC00320 ENSG00000224924       ENST00000416768       20742590
10786    LINC00320 ENSG00000224924       ENST00000416768       20742590
10787    LINC00320 ENSG00000224924       ENST00000416768       20742590
10788    LINC00320 ENSG00000224924       ENST00000416768       20742590
10789    LINC00320 ENSG00000224924       ENST00000416768       20742590
10790    LINC00320 ENSG00000224924       ENST00000437238       20742590
10791    LINC00320 ENSG00000224924       ENST00000437238       20742590
10792    LINC00320 ENSG00000224924       ENST00000437238       20742590
10793    LINC00320 ENSG00000224924       ENST00000437238       20742590
10794    LINC00320 ENSG00000224924       ENST00000437238       20742590
10795    LINC00320 ENSG00000224924       ENST00000437238       20742590
10796    LINC00320 ENSG00000224924       ENST00000437238       20742590
10797    LINC00320 ENSG00000224924       ENST00000437238       20742590
10798    LINC00320 ENSG00000224924       ENST00000452561       20742590
10799    LINC00320 ENSG00000224924       ENST00000452561       20742590
10800    LINC00320 ENSG00000224924       ENST00000452561       20742590
10801    LINC00320 ENSG00000224924       ENST00000452561       20742590
10802    LINC00320 ENSG00000224924       ENST00000452561       20742590
10803    LINC00320 ENSG00000224924       ENST00000452561       20742590
10804    LINC00320 ENSG00000224924       ENST00000452561       20742590
10805    LINC00320 ENSG00000224924       ENST00000452561       20742590
10806    LINC00320 ENSG00000224924       ENST00000435279       20742590
10807    LINC00320 ENSG00000224924       ENST00000435279       20742590
10808    LINC00320 ENSG00000224924       ENST00000435279       20742590
10809    LINC00320 ENSG00000224924       ENST00000435279       20742590
10810    LINC00320 ENSG00000224924       ENST00000435279       20742590
10811    LINC00320 ENSG00000224924       ENST00000435279       20742590
10812    LINC00320 ENSG00000224924       ENST00000435279       20742590
10813    LINC00320 ENSG00000224924       ENST00000419299       20742590
10814    LINC00320 ENSG00000224924       ENST00000419299       20742590
10815    LINC00320 ENSG00000224924       ENST00000419299       20742590
10816    LINC00320 ENSG00000224924       ENST00000419299       20742590
10817    LINC00320 ENSG00000224924       ENST00000419299       20742590
10818    LINC00320 ENSG00000224924       ENST00000419299       20742590
10819    LINC00320 ENSG00000224924       ENST00000419299       20742590
10820              ENSG00000231620       ENST00000433210       19301613
10821              ENSG00000231620       ENST00000433210       19301613
10822              ENSG00000230233       ENST00000416002       18614431
10823              ENSG00000230233       ENST00000416002       18614431
10824              ENSG00000230233       ENST00000416002       18614431
10825              ENSG00000278878       ENST00000623225        6667304
10826              ENSG00000278878       ENST00000623225        6667304
10827              ENSG00000278878       ENST00000623225        6667304
10828              ENSG00000278878       ENST00000624181        6667304
10829              ENSG00000278878       ENST00000624181        6667304
10830 C21orf62-AS1 ENSG00000205930       ENST00000382375       32772100
10831 C21orf62-AS1 ENSG00000205930       ENST00000382375       32772100
10832 C21orf62-AS1 ENSG00000205930       ENST00000382375       32772100
10833 C21orf62-AS1 ENSG00000205930       ENST00000382375       32772100
10834 C21orf62-AS1 ENSG00000205930       ENST00000382377       32772100
10835 C21orf62-AS1 ENSG00000205930       ENST00000382377       32772100
10836 C21orf62-AS1 ENSG00000205930       ENST00000454365       32772100
10837 C21orf62-AS1 ENSG00000205930       ENST00000454365       32772100
10838 C21orf62-AS1 ENSG00000205930       ENST00000454365       32772100
10839 C21orf62-AS1 ENSG00000205930       ENST00000454365       32772100
10840 C21orf62-AS1 ENSG00000205930       ENST00000612326       32772100
10841 C21orf62-AS1 ENSG00000205930       ENST00000612326       32772100
10842 C21orf62-AS1 ENSG00000205930       ENST00000612326       32772100
10843 C21orf62-AS1 ENSG00000205930       ENST00000382378       32772100
10844 C21orf62-AS1 ENSG00000205930       ENST00000382378       32772100
10845 C21orf62-AS1 ENSG00000205930       ENST00000382378       32772100
10846 C21orf62-AS1 ENSG00000205930       ENST00000382378       32772100
10847 C21orf62-AS1 ENSG00000205930       ENST00000491756       32772100
10848 C21orf62-AS1 ENSG00000205930       ENST00000491756       32772100
10849 C21orf62-AS1 ENSG00000205930       ENST00000491756       32772100
10850 C21orf62-AS1 ENSG00000205930       ENST00000477513       32772100
10851 C21orf62-AS1 ENSG00000205930       ENST00000477513       32772100
10852 C21orf62-AS1 ENSG00000205930       ENST00000477513       32772100
10853         LTN1 ENSG00000198862       ENST00000361371       28928144
10854         LTN1 ENSG00000198862       ENST00000361371       28928144
10855         LTN1 ENSG00000198862       ENST00000361371       28928144
10856         LTN1 ENSG00000198862       ENST00000361371       28928144
10857         LTN1 ENSG00000198862       ENST00000361371       28928144
10858         LTN1 ENSG00000198862       ENST00000361371       28928144
10859         LTN1 ENSG00000198862       ENST00000361371       28928144
10860         LTN1 ENSG00000198862       ENST00000361371       28928144
10861         LTN1 ENSG00000198862       ENST00000361371       28928144
10862         LTN1 ENSG00000198862       ENST00000361371       28928144
10863         LTN1 ENSG00000198862       ENST00000361371       28928144
10864         LTN1 ENSG00000198862       ENST00000361371       28928144
10865         LTN1 ENSG00000198862       ENST00000361371       28928144
10866         LTN1 ENSG00000198862       ENST00000361371       28928144
10867         LTN1 ENSG00000198862       ENST00000361371       28928144
10868         LTN1 ENSG00000198862       ENST00000361371       28928144
10869         LTN1 ENSG00000198862       ENST00000361371       28928144
10870         LTN1 ENSG00000198862       ENST00000361371       28928144
10871         LTN1 ENSG00000198862       ENST00000361371       28928144
10872         LTN1 ENSG00000198862       ENST00000361371       28928144
10873         LTN1 ENSG00000198862       ENST00000361371       28928144
10874         LTN1 ENSG00000198862       ENST00000361371       28928144
10875         LTN1 ENSG00000198862       ENST00000361371       28928144
10876         LTN1 ENSG00000198862       ENST00000361371       28928144
10877         LTN1 ENSG00000198862       ENST00000361371       28928144
10878         LTN1 ENSG00000198862       ENST00000361371       28928144
10879         LTN1 ENSG00000198862       ENST00000361371       28928144
10880         LTN1 ENSG00000198862       ENST00000361371       28928144
10881         LTN1 ENSG00000198862       ENST00000361371       28928144
10882         LTN1 ENSG00000198862       ENST00000361371       28928144
10883         LTN1 ENSG00000198862       ENST00000389194       28928144
10884         LTN1 ENSG00000198862       ENST00000389194       28928144
10885         LTN1 ENSG00000198862       ENST00000389194       28928144
10886         LTN1 ENSG00000198862       ENST00000389194       28928144
10887         LTN1 ENSG00000198862       ENST00000389194       28928144
10888         LTN1 ENSG00000198862       ENST00000389194       28928144
10889         LTN1 ENSG00000198862       ENST00000389194       28928144
10890         LTN1 ENSG00000198862       ENST00000389194       28928144
10891         LTN1 ENSG00000198862       ENST00000389194       28928144
10892         LTN1 ENSG00000198862       ENST00000389194       28928144
10893         LTN1 ENSG00000198862       ENST00000389194       28928144
10894         LTN1 ENSG00000198862       ENST00000389194       28928144
10895         LTN1 ENSG00000198862       ENST00000389194       28928144
10896         LTN1 ENSG00000198862       ENST00000389194       28928144
10897         LTN1 ENSG00000198862       ENST00000389194       28928144
10898         LTN1 ENSG00000198862       ENST00000389194       28928144
10899         LTN1 ENSG00000198862       ENST00000389194       28928144
10900         LTN1 ENSG00000198862       ENST00000389194       28928144
10901         LTN1 ENSG00000198862       ENST00000389194       28928144
10902         LTN1 ENSG00000198862       ENST00000389194       28928144
10903         LTN1 ENSG00000198862       ENST00000389194       28928144
10904         LTN1 ENSG00000198862       ENST00000389194       28928144
10905         LTN1 ENSG00000198862       ENST00000389194       28928144
10906         LTN1 ENSG00000198862       ENST00000389194       28928144
10907         LTN1 ENSG00000198862       ENST00000389194       28928144
10908         LTN1 ENSG00000198862       ENST00000389194       28928144
10909         LTN1 ENSG00000198862       ENST00000389194       28928144
10910         LTN1 ENSG00000198862       ENST00000389194       28928144
10911         LTN1 ENSG00000198862       ENST00000389194       28928144
10912         LTN1 ENSG00000198862       ENST00000389194       28928144
10913         LTN1 ENSG00000198862       ENST00000486427       28928144
10914         LTN1 ENSG00000198862       ENST00000486427       28928144
10915         LTN1 ENSG00000198862       ENST00000475344       28928144
10916         LTN1 ENSG00000198862       ENST00000475344       28928144
10917         LTN1 ENSG00000198862       ENST00000475344       28928144
10918         LTN1 ENSG00000198862       ENST00000389195       28928144
10919         LTN1 ENSG00000198862       ENST00000389195       28928144
10920         LTN1 ENSG00000198862       ENST00000389195       28928144
10921         LTN1 ENSG00000198862       ENST00000389195       28928144
10922         LTN1 ENSG00000198862       ENST00000389195       28928144
10923         LTN1 ENSG00000198862       ENST00000389195       28928144
10924         LTN1 ENSG00000198862       ENST00000389195       28928144
10925         LTN1 ENSG00000198862       ENST00000389195       28928144
10926         LTN1 ENSG00000198862       ENST00000389195       28928144
10927         LTN1 ENSG00000198862       ENST00000389195       28928144
10928         LTN1 ENSG00000198862       ENST00000389195       28928144
10929         LTN1 ENSG00000198862       ENST00000389195       28928144
10930         LTN1 ENSG00000198862       ENST00000389195       28928144
10931         LTN1 ENSG00000198862       ENST00000483326       28928144
10932         LTN1 ENSG00000198862       ENST00000483326       28928144
10933         LTN1 ENSG00000198862       ENST00000483326       28928144
10934         LTN1 ENSG00000198862       ENST00000483326       28928144
10935         LTN1 ENSG00000198862       ENST00000483326       28928144
10936         LTN1 ENSG00000198862       ENST00000483326       28928144
10937         LTN1 ENSG00000198862       ENST00000483326       28928144
10938         LTN1 ENSG00000198862       ENST00000483326       28928144
10939         LTN1 ENSG00000198862       ENST00000483326       28928144
10940         LTN1 ENSG00000198862       ENST00000483326       28928144
10941         LTN1 ENSG00000198862       ENST00000614971       28928144
10942         LTN1 ENSG00000198862       ENST00000614971       28928144
10943         LTN1 ENSG00000198862       ENST00000614971       28928144
10944         LTN1 ENSG00000198862       ENST00000614971       28928144
10945         LTN1 ENSG00000198862       ENST00000614971       28928144
10946         LTN1 ENSG00000198862       ENST00000614971       28928144
10947         LTN1 ENSG00000198862       ENST00000614971       28928144
10948         LTN1 ENSG00000198862       ENST00000614971       28928144
10949         LTN1 ENSG00000198862       ENST00000614971       28928144
10950         LTN1 ENSG00000198862       ENST00000614971       28928144
10951         LTN1 ENSG00000198862       ENST00000614971       28928144
10952         LTN1 ENSG00000198862       ENST00000614971       28928144
10953         LTN1 ENSG00000198862       ENST00000614971       28928144
10954         LTN1 ENSG00000198862       ENST00000614971       28928144
10955         LTN1 ENSG00000198862       ENST00000614971       28928144
10956         LTN1 ENSG00000198862       ENST00000614971       28928144
10957         LTN1 ENSG00000198862       ENST00000614971       28928144
10958         LTN1 ENSG00000198862       ENST00000614971       28928144
10959         LTN1 ENSG00000198862       ENST00000614971       28928144
10960         LTN1 ENSG00000198862       ENST00000614971       28928144
10961         LTN1 ENSG00000198862       ENST00000614971       28928144
10962         LTN1 ENSG00000198862       ENST00000614971       28928144
10963         LTN1 ENSG00000198862       ENST00000614971       28928144
10964         LTN1 ENSG00000198862       ENST00000614971       28928144
10965         LTN1 ENSG00000198862       ENST00000614971       28928144
10966         LTN1 ENSG00000198862       ENST00000614971       28928144
10967         LTN1 ENSG00000198862       ENST00000614971       28928144
10968         LTN1 ENSG00000198862       ENST00000614971       28928144
10969         LTN1 ENSG00000198862       ENST00000614971       28928144
10970         LTN1 ENSG00000198862       ENST00000614971       28928144
10971      HSPD1P7 ENSG00000215005       ENST00000447985       28887280
10972      HSPD1P7 ENSG00000215005       ENST00000447985       28887280
10973       N6AMT1 ENSG00000156239       ENST00000303775       28872191
10974       N6AMT1 ENSG00000156239       ENST00000303775       28872191
10975       N6AMT1 ENSG00000156239       ENST00000303775       28872191
10976       N6AMT1 ENSG00000156239       ENST00000303775       28872191
10977       N6AMT1 ENSG00000156239       ENST00000303775       28872191
10978       N6AMT1 ENSG00000156239       ENST00000303775       28872191
10979       N6AMT1 ENSG00000156239       ENST00000351429       28872191
10980       N6AMT1 ENSG00000156239       ENST00000351429       28872191
10981       N6AMT1 ENSG00000156239       ENST00000351429       28872191
10982       N6AMT1 ENSG00000156239       ENST00000351429       28872191
10983       N6AMT1 ENSG00000156239       ENST00000351429       28872191
10984       N6AMT1 ENSG00000156239       ENST00000460212       28872191
10985       N6AMT1 ENSG00000156239       ENST00000460212       28872191
10986       N6AMT1 ENSG00000156239       ENST00000460212       28872191
10987       N6AMT1 ENSG00000156239       ENST00000460212       28872191
10988       N6AMT1 ENSG00000156239       ENST00000460212       28872191
10989       N6AMT1 ENSG00000156239       ENST00000460212       28872191
10990       N6AMT1 ENSG00000156239       ENST00000460212       28872191
10991       EZH2P1 ENSG00000231300       ENST00000431167       35599732
10992      VDAC2P1 ENSG00000214976       ENST00000399358       16094415
10993    LINC01697 ENSG00000232079       ENST00000426534       28048404
10994    LINC01697 ENSG00000232079       ENST00000426534       28048404
10995    LINC01697 ENSG00000232079       ENST00000426534       28048404
10996    LINC01697 ENSG00000232079       ENST00000426534       28048404
10997    LINC01697 ENSG00000232079       ENST00000426534       28048404
10998    LINC01697 ENSG00000232079       ENST00000458316       28048404
10999    LINC01697 ENSG00000232079       ENST00000458316       28048404
11000    LINC01697 ENSG00000232079       ENST00000631186       28048404
11001    LINC01697 ENSG00000232079       ENST00000631186       28048404
11002    LINC01697 ENSG00000232079       ENST00000423808       28048404
11003    LINC01697 ENSG00000232079       ENST00000423808       28048404
11004    LINC01697 ENSG00000232079       ENST00000616647       28048404
11005    LINC01697 ENSG00000232079       ENST00000616647       28048404
11006    LINC01697 ENSG00000232079       ENST00000616647       28048404
11007    LINC01697 ENSG00000232079       ENST00000616647       28048404
11008    LINC01697 ENSG00000232079       ENST00000436878       28048404
11009    LINC01697 ENSG00000232079       ENST00000436878       28048404
11010    LINC01697 ENSG00000232079       ENST00000436878       28048404
11011    LINC01697 ENSG00000232079       ENST00000609782       28048404
11012    LINC01697 ENSG00000232079       ENST00000609782       28048404
11013              ENSG00000234083       ENST00000433344       27954922
11014              ENSG00000234083       ENST00000433344       27954922
11015              ENSG00000234083       ENST00000433344       27954922
11016              ENSG00000231236       ENST00000420186       27358885
11017              ENSG00000231236       ENST00000420186       27358885
11018              ENSG00000231236       ENST00000420186       27358885
11019              ENSG00000231236       ENST00000420186       27358885
11020              ENSG00000265590       ENST00000431216       32578822
11021              ENSG00000265590       ENST00000431216       32578822
11022              ENSG00000265590       ENST00000431216       32578822
11023              ENSG00000265590       ENST00000431216       32578822
11024              ENSG00000265590       ENST00000431216       32578822
11025              ENSG00000265590       ENST00000431216       32578822
11026              ENSG00000265590       ENST00000431216       32578822
11027              ENSG00000265590       ENST00000431216       32578822
11028              ENSG00000265590       ENST00000553001       32578822
11029              ENSG00000265590       ENST00000553001       32578822
11030              ENSG00000265590       ENST00000553001       32578822
11031              ENSG00000265590       ENST00000553001       32578822
11032              ENSG00000265590       ENST00000553001       32578822
11033              ENSG00000265590       ENST00000553001       32578822
11034              ENSG00000265590       ENST00000553001       32578822
11035       TPT1P1 ENSG00000234107       ENST00000458495       31840341
11036   UMODL1-AS1 ENSG00000184385       ENST00000329015       42102134
11037   UMODL1-AS1 ENSG00000184385       ENST00000329015       42102134
11038              ENSG00000224905       ENST00000428809       14027421
11039              ENSG00000224905       ENST00000428809       14027421
11040              ENSG00000224905       ENST00000428809       14027421
11041              ENSG00000224905       ENST00000432621       14027421
11042              ENSG00000224905       ENST00000432621       14027421
11043              ENSG00000224905       ENST00000432621       14027421
11044              ENSG00000224905       ENST00000448463       14027421
11045              ENSG00000224905       ENST00000448463       14027421
11046              ENSG00000224905       ENST00000448463       14027421
11047      HMGN1P2 ENSG00000229046       ENST00000445197       31706555
11048  ANKRD20A11P ENSG00000215559       ENST00000442192       13909574
11049  ANKRD20A11P ENSG00000215559       ENST00000442192       13909574
11050  ANKRD20A11P ENSG00000215559       ENST00000442192       13909574
11051  ANKRD20A11P ENSG00000215559       ENST00000442192       13909574
11052  ANKRD20A11P ENSG00000215559       ENST00000442192       13909574
11053  ANKRD20A11P ENSG00000215559       ENST00000442192       13909574
11054  ANKRD20A11P ENSG00000215559       ENST00000442192       13909574
11055  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11056  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11057  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11058  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11059  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11060  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11061  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11062  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11063  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11064  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11065  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11066  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11067  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11068  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11069  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11070  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11071  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11072  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11073  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11074  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11075  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11076  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11077  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11078  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11079  ANKRD20A11P ENSG00000215559       ENST00000451663       13909574
11080  ANKRD20A11P ENSG00000215559       ENST00000428576       13909574
11081  ANKRD20A11P ENSG00000215559       ENST00000428576       13909574
11082  ANKRD20A11P ENSG00000215559       ENST00000428576       13909574
11083  ANKRD20A11P ENSG00000215559       ENST00000428576       13909574
11084  ANKRD20A11P ENSG00000215559       ENST00000428576       13909574
11085  ANKRD20A11P ENSG00000215559       ENST00000428576       13909574
11086  ANKRD20A11P ENSG00000215559       ENST00000428576       13909574
11087  ANKRD20A11P ENSG00000215559       ENST00000432875       13909574
11088  ANKRD20A11P ENSG00000215559       ENST00000432875       13909574
11089  ANKRD20A11P ENSG00000215559       ENST00000432875       13909574
11090  ANKRD20A11P ENSG00000215559       ENST00000432875       13909574
11091  ANKRD20A11P ENSG00000215559       ENST00000432875       13909574
11092  ANKRD20A11P ENSG00000215559       ENST00000432875       13909574
11093  ANKRD20A11P ENSG00000215559       ENST00000429521       13909574
11094  ANKRD20A11P ENSG00000215559       ENST00000429521       13909574
11095  ANKRD20A11P ENSG00000215559       ENST00000429521       13909574
11096  ANKRD20A11P ENSG00000215559       ENST00000429521       13909574
11097  ANKRD20A11P ENSG00000215559       ENST00000429521       13909574
11098  ANKRD20A11P ENSG00000215559       ENST00000429521       13909574
11099  ANKRD20A11P ENSG00000215559       ENST00000429521       13909574
11100  ANKRD20A11P ENSG00000215559       ENST00000429521       13909574
11101  ANKRD20A11P ENSG00000215559       ENST00000344693       13909574
11102  ANKRD20A11P ENSG00000215559       ENST00000344693       13909574
11103  ANKRD20A11P ENSG00000215559       ENST00000344693       13909574
11104  ANKRD20A11P ENSG00000215559       ENST00000344693       13909574
11105  ANKRD20A11P ENSG00000215559       ENST00000344693       13909574
11106  ANKRD20A11P ENSG00000215559       ENST00000344693       13909574
11107              ENSG00000237594       ENST00000433071       31559245
11108              ENSG00000237594       ENST00000433071       31559245
11109     KRTAP7-1 ENSG00000274749       ENST00000621162       30829039
11110    KRTAP20-3 ENSG00000206104       ENST00000382826       30642864
11111              ENSG00000273210       ENST00000608783       37365477
11112       DYRK1A ENSG00000157540       ENST00000608928       37365790
11113       DYRK1A ENSG00000157540       ENST00000608928       37365790
11114       DYRK1A ENSG00000157540       ENST00000462274       37365790
11115       DYRK1A ENSG00000157540       ENST00000462274       37365790
11116       DYRK1A ENSG00000157540       ENST00000462274       37365790
11117       DYRK1A ENSG00000157540       ENST00000462274       37365790
11118       DYRK1A ENSG00000157540       ENST00000462274       37365790
11119       DYRK1A ENSG00000157540       ENST00000338785       37365790
11120       DYRK1A ENSG00000157540       ENST00000338785       37365790
11121       DYRK1A ENSG00000157540       ENST00000338785       37365790
11122       DYRK1A ENSG00000157540       ENST00000338785       37365790
11123       DYRK1A ENSG00000157540       ENST00000338785       37365790
11124       DYRK1A ENSG00000157540       ENST00000338785       37365790
11125       DYRK1A ENSG00000157540       ENST00000338785       37365790
11126       DYRK1A ENSG00000157540       ENST00000338785       37365790
11127       DYRK1A ENSG00000157540       ENST00000338785       37365790
11128       DYRK1A ENSG00000157540       ENST00000338785       37365790
11129       DYRK1A ENSG00000157540       ENST00000338785       37365790
11130       DYRK1A ENSG00000157540       ENST00000338785       37365790
11131       DYRK1A ENSG00000157540       ENST00000338785       37365790
11132       DYRK1A ENSG00000157540       ENST00000455097       37365790
11133       DYRK1A ENSG00000157540       ENST00000455097       37365790
11134       DYRK1A ENSG00000157540       ENST00000455097       37365790
11135       DYRK1A ENSG00000157540       ENST00000455097       37365790
11136       DYRK1A ENSG00000157540       ENST00000426672       37365790
11137       DYRK1A ENSG00000157540       ENST00000426672       37365790
11138       DYRK1A ENSG00000157540       ENST00000426672       37365790
11139       DYRK1A ENSG00000157540       ENST00000426672       37365790
11140       DYRK1A ENSG00000157540       ENST00000426672       37365790
11141       DYRK1A ENSG00000157540       ENST00000339659       37365790
11142       DYRK1A ENSG00000157540       ENST00000339659       37365790
11143       DYRK1A ENSG00000157540       ENST00000339659       37365790
11144       DYRK1A ENSG00000157540       ENST00000339659       37365790
11145       DYRK1A ENSG00000157540       ENST00000339659       37365790
11146       DYRK1A ENSG00000157540       ENST00000339659       37365790
11147       DYRK1A ENSG00000157540       ENST00000339659       37365790
11148       DYRK1A ENSG00000157540       ENST00000339659       37365790
11149       DYRK1A ENSG00000157540       ENST00000339659       37365790
11150       DYRK1A ENSG00000157540       ENST00000339659       37365790
11151       DYRK1A ENSG00000157540       ENST00000339659       37365790
11152       DYRK1A ENSG00000157540       ENST00000398960       37365790
11153       DYRK1A ENSG00000157540       ENST00000398960       37365790
11154       DYRK1A ENSG00000157540       ENST00000398960       37365790
11155       DYRK1A ENSG00000157540       ENST00000398960       37365790
11156       DYRK1A ENSG00000157540       ENST00000398960       37365790
11157       DYRK1A ENSG00000157540       ENST00000398960       37365790
11158       DYRK1A ENSG00000157540       ENST00000398960       37365790
11159       DYRK1A ENSG00000157540       ENST00000398960       37365790
11160       DYRK1A ENSG00000157540       ENST00000398960       37365790
11161       DYRK1A ENSG00000157540       ENST00000398960       37365790
11162       DYRK1A ENSG00000157540       ENST00000398960       37365790
11163       DYRK1A ENSG00000157540       ENST00000498351       37365790
11164       DYRK1A ENSG00000157540       ENST00000498351       37365790
11165       DYRK1A ENSG00000157540       ENST00000498351       37365790
11166       DYRK1A ENSG00000157540       ENST00000398956       37365790
11167       DYRK1A ENSG00000157540       ENST00000398956       37365790
11168       DYRK1A ENSG00000157540       ENST00000398956       37365790
11169       DYRK1A ENSG00000157540       ENST00000398956       37365790
11170       DYRK1A ENSG00000157540       ENST00000398956       37365790
11171       DYRK1A ENSG00000157540       ENST00000398956       37365790
11172       DYRK1A ENSG00000157540       ENST00000398956       37365790
11173       DYRK1A ENSG00000157540       ENST00000398956       37365790
11174       DYRK1A ENSG00000157540       ENST00000398956       37365790
11175       DYRK1A ENSG00000157540       ENST00000398956       37365790
11176       RPL8P2 ENSG00000225267       ENST00000430538       30263380
11177       DSTNP1 ENSG00000230982       ENST00000419906       46653558
11178        PRMT2 ENSG00000160310       ENST00000355680       46635167
11179        PRMT2 ENSG00000160310       ENST00000355680       46635167
11180        PRMT2 ENSG00000160310       ENST00000355680       46635167
11181        PRMT2 ENSG00000160310       ENST00000355680       46635167
11182        PRMT2 ENSG00000160310       ENST00000355680       46635167
11183        PRMT2 ENSG00000160310       ENST00000355680       46635167
11184        PRMT2 ENSG00000160310       ENST00000355680       46635167
11185        PRMT2 ENSG00000160310       ENST00000355680       46635167
11186        PRMT2 ENSG00000160310       ENST00000355680       46635167
11187        PRMT2 ENSG00000160310       ENST00000355680       46635167
11188        PRMT2 ENSG00000160310       ENST00000355680       46635167
11189        PRMT2 ENSG00000160310       ENST00000355680       46635167
11190        PRMT2 ENSG00000160310       ENST00000397638       46635167
11191        PRMT2 ENSG00000160310       ENST00000397638       46635167
11192        PRMT2 ENSG00000160310       ENST00000397638       46635167
11193        PRMT2 ENSG00000160310       ENST00000397638       46635167
11194        PRMT2 ENSG00000160310       ENST00000397638       46635167
11195        PRMT2 ENSG00000160310       ENST00000397638       46635167
11196        PRMT2 ENSG00000160310       ENST00000397638       46635167
11197        PRMT2 ENSG00000160310       ENST00000397638       46635167
11198        PRMT2 ENSG00000160310       ENST00000397638       46635167
11199        PRMT2 ENSG00000160310       ENST00000397638       46635167
11200        PRMT2 ENSG00000160310       ENST00000397638       46635167
11201        PRMT2 ENSG00000160310       ENST00000291705       46635167
11202        PRMT2 ENSG00000160310       ENST00000291705       46635167
11203        PRMT2 ENSG00000160310       ENST00000291705       46635167
11204        PRMT2 ENSG00000160310       ENST00000291705       46635167
11205        PRMT2 ENSG00000160310       ENST00000291705       46635167
11206        PRMT2 ENSG00000160310       ENST00000291705       46635167
11207        PRMT2 ENSG00000160310       ENST00000291705       46635167
11208        PRMT2 ENSG00000160310       ENST00000397637       46635167
11209        PRMT2 ENSG00000160310       ENST00000397637       46635167
11210        PRMT2 ENSG00000160310       ENST00000397637       46635167
11211        PRMT2 ENSG00000160310       ENST00000397637       46635167
11212        PRMT2 ENSG00000160310       ENST00000397637       46635167
11213        PRMT2 ENSG00000160310       ENST00000397637       46635167
11214        PRMT2 ENSG00000160310       ENST00000397637       46635167
11215        PRMT2 ENSG00000160310       ENST00000397637       46635167
11216        PRMT2 ENSG00000160310       ENST00000397637       46635167
11217        PRMT2 ENSG00000160310       ENST00000397637       46635167
11218        PRMT2 ENSG00000160310       ENST00000397637       46635167
11219        PRMT2 ENSG00000160310       ENST00000334494       46635167
11220        PRMT2 ENSG00000160310       ENST00000334494       46635167
11221        PRMT2 ENSG00000160310       ENST00000334494       46635167
11222        PRMT2 ENSG00000160310       ENST00000334494       46635167
11223        PRMT2 ENSG00000160310       ENST00000334494       46635167
11224        PRMT2 ENSG00000160310       ENST00000334494       46635167
11225        PRMT2 ENSG00000160310       ENST00000334494       46635167
11226        PRMT2 ENSG00000160310       ENST00000397628       46635167
11227        PRMT2 ENSG00000160310       ENST00000397628       46635167
11228        PRMT2 ENSG00000160310       ENST00000397628       46635167
11229        PRMT2 ENSG00000160310       ENST00000397628       46635167
11230        PRMT2 ENSG00000160310       ENST00000397628       46635167
11231        PRMT2 ENSG00000160310       ENST00000397628       46635167
11232        PRMT2 ENSG00000160310       ENST00000440086       46635167
11233        PRMT2 ENSG00000160310       ENST00000440086       46635167
11234        PRMT2 ENSG00000160310       ENST00000440086       46635167
11235        PRMT2 ENSG00000160310       ENST00000440086       46635167
11236        PRMT2 ENSG00000160310       ENST00000440086       46635167
11237        PRMT2 ENSG00000160310       ENST00000440086       46635167
11238        PRMT2 ENSG00000160310       ENST00000440086       46635167
11239        PRMT2 ENSG00000160310       ENST00000440086       46635167
11240        PRMT2 ENSG00000160310       ENST00000440086       46635167
11241        PRMT2 ENSG00000160310       ENST00000482508       46635167
11242        PRMT2 ENSG00000160310       ENST00000482508       46635167
11243        PRMT2 ENSG00000160310       ENST00000482508       46635167
11244        PRMT2 ENSG00000160310       ENST00000482508       46635167
11245        PRMT2 ENSG00000160310       ENST00000482508       46635167
11246        PRMT2 ENSG00000160310       ENST00000482508       46635167
11247        PRMT2 ENSG00000160310       ENST00000481861       46635167
11248        PRMT2 ENSG00000160310       ENST00000481861       46635167
11249        PRMT2 ENSG00000160310       ENST00000481861       46635167
11250        PRMT2 ENSG00000160310       ENST00000481861       46635167
11251        PRMT2 ENSG00000160310       ENST00000481861       46635167
11252        PRMT2 ENSG00000160310       ENST00000455177       46635167
11253        PRMT2 ENSG00000160310       ENST00000455177       46635167
11254        PRMT2 ENSG00000160310       ENST00000455177       46635167
11255        PRMT2 ENSG00000160310       ENST00000455177       46635167
11256        PRMT2 ENSG00000160310       ENST00000491389       46635167
11257        PRMT2 ENSG00000160310       ENST00000491389       46635167
11258        PRMT2 ENSG00000160310       ENST00000498151       46635167
11259        PRMT2 ENSG00000160310       ENST00000498151       46635167
11260        PRMT2 ENSG00000160310       ENST00000486520       46635167
11261        PRMT2 ENSG00000160310       ENST00000486520       46635167
11262        PRMT2 ENSG00000160310       ENST00000486520       46635167
11263        PRMT2 ENSG00000160310       ENST00000486520       46635167
11264        PRMT2 ENSG00000160310       ENST00000451211       46635167
11265        PRMT2 ENSG00000160310       ENST00000451211       46635167
11266        PRMT2 ENSG00000160310       ENST00000451211       46635167
11267        PRMT2 ENSG00000160310       ENST00000451211       46635167
11268        PRMT2 ENSG00000160310       ENST00000451211       46635167
11269        PRMT2 ENSG00000160310       ENST00000451211       46635167
11270        PRMT2 ENSG00000160310       ENST00000451211       46635167
11271        PRMT2 ENSG00000160310       ENST00000451211       46635167
11272        PRMT2 ENSG00000160310       ENST00000458387       46635167
11273        PRMT2 ENSG00000160310       ENST00000458387       46635167
11274        PRMT2 ENSG00000160310       ENST00000458387       46635167
11275        PRMT2 ENSG00000160310       ENST00000458387       46635167
11276        PRMT2 ENSG00000160310       ENST00000458387       46635167
11277        PRMT2 ENSG00000160310       ENST00000458387       46635167
11278        PRMT2 ENSG00000160310       ENST00000458387       46635167
11279        PRMT2 ENSG00000160310       ENST00000458387       46635167
11280        PRMT2 ENSG00000160310       ENST00000621201       46635167
11281        PRMT2 ENSG00000160310       ENST00000621201       46635167
11282        PRMT2 ENSG00000160310       ENST00000621201       46635167
11283        PRMT2 ENSG00000160310       ENST00000621201       46635167
11284        PRMT2 ENSG00000160310       ENST00000621201       46635167
11285        PRMT2 ENSG00000160310       ENST00000621201       46635167
11286        PRMT2 ENSG00000160310       ENST00000621201       46635167
11287    KRTAP24-1 ENSG00000188694       ENST00000340345       30281309
11288    KRTAP25-1 ENSG00000232263       ENST00000416044       30289145
11289    KRTAP26-1 ENSG00000197683       ENST00000360542       30319124
11290    KRTAP27-1 ENSG00000206107       ENST00000382835       30337013
11291    KRTAP23-1 ENSG00000186980       ENST00000334160       30348399
11292   KRTAP13-6P ENSG00000250973       ENST00000508999       30356515
11293    KRTAP13-2 ENSG00000182816       ENST00000399889       30371391
11294    KRTAP13-1 ENSG00000198390       ENST00000355459       30396074
11295    KRTAP13-3 ENSG00000240432       ENST00000390690       30425265
11296    KRTAP13-4 ENSG00000186971       ENST00000334068       30430230
11297    LINC00314 ENSG00000178457       ENST00000324988       28013363
11298    LINC00314 ENSG00000178457       ENST00000324988       28013363
11299      RBPMSLP ENSG00000234159       ENST00000433427       15744004
11300      RBPMSLP ENSG00000234159       ENST00000433427       15744004
11301       SAMSN1 ENSG00000155307       ENST00000400564       14485228
11302       SAMSN1 ENSG00000155307       ENST00000400564       14485228
11303       SAMSN1 ENSG00000155307       ENST00000400564       14485228
11304       SAMSN1 ENSG00000155307       ENST00000400564       14485228
11305       SAMSN1 ENSG00000155307       ENST00000400566       14485228
11306       SAMSN1 ENSG00000155307       ENST00000400566       14485228
11307       SAMSN1 ENSG00000155307       ENST00000400566       14485228
11308       SAMSN1 ENSG00000155307       ENST00000400566       14485228
11309       SAMSN1 ENSG00000155307       ENST00000400566       14485228
11310       SAMSN1 ENSG00000155307       ENST00000400566       14485228
11311       SAMSN1 ENSG00000155307       ENST00000400566       14485228
11312       SAMSN1 ENSG00000155307       ENST00000400566       14485228
11313       SAMSN1 ENSG00000155307       ENST00000285670       14485228
11314       SAMSN1 ENSG00000155307       ENST00000285670       14485228
11315       SAMSN1 ENSG00000155307       ENST00000285670       14485228
11316       SAMSN1 ENSG00000155307       ENST00000285670       14485228
11317       SAMSN1 ENSG00000155307       ENST00000285670       14485228
11318       SAMSN1 ENSG00000155307       ENST00000285670       14485228
11319       SAMSN1 ENSG00000155307       ENST00000285670       14485228
11320       SAMSN1 ENSG00000155307       ENST00000285670       14485228
11321       SAMSN1 ENSG00000155307       ENST00000285670       14485228
11322       SAMSN1 ENSG00000155307       ENST00000463807       14485228
11323       SAMSN1 ENSG00000155307       ENST00000463807       14485228
11324       SAMSN1 ENSG00000155307       ENST00000463807       14485228
11325       SAMSN1 ENSG00000155307       ENST00000493640       14485228
11326       SAMSN1 ENSG00000155307       ENST00000493640       14485228
11327       SAMSN1 ENSG00000155307       ENST00000493640       14485228
11328       SAMSN1 ENSG00000155307       ENST00000619120       14485228
11329       SAMSN1 ENSG00000155307       ENST00000619120       14485228
11330       SAMSN1 ENSG00000155307       ENST00000619120       14485228
11331       SAMSN1 ENSG00000155307       ENST00000619120       14485228
11332       SAMSN1 ENSG00000155307       ENST00000619120       14485228
11333       SAMSN1 ENSG00000155307       ENST00000619120       14485228
11334       SAMSN1 ENSG00000155307       ENST00000619120       14485228
11335       SAMSN1 ENSG00000155307       ENST00000619120       14485228
11336       SAMSN1 ENSG00000155307       ENST00000619120       14485228
11337    LINC00159 ENSG00000230323       ENST00000411605       32080316
11338    LINC00159 ENSG00000230323       ENST00000411605       32080316
11339    LINC00159 ENSG00000230323       ENST00000411605       32080316
11340    LINC00159 ENSG00000230323       ENST00000414877       32080316
11341    LINC00159 ENSG00000230323       ENST00000414877       32080316
11342    LINC00159 ENSG00000230323       ENST00000414877       32080316
11343    LINC00159 ENSG00000230323       ENST00000414877       32080316
11344              ENSG00000279687       ENST00000623188        5073458
11345              ENSG00000279687       ENST00000623188        5073458
11346    LINC01423 ENSG00000231231       ENST00000414189       38323635
11347    LINC01423 ENSG00000231231       ENST00000414189       38323635
11348    LINC01423 ENSG00000231231       ENST00000414189       38323635
11349    LINC01423 ENSG00000231231       ENST00000414189       38323635
11350    LINC01423 ENSG00000231231       ENST00000414189       38323635
11351    LINC01423 ENSG00000231231       ENST00000436845       38323635
11352    LINC01423 ENSG00000231231       ENST00000436845       38323635
11353    LINC01423 ENSG00000231231       ENST00000436845       38323635
11354    LINC01423 ENSG00000231231       ENST00000436845       38323635
11355     FBXW11P1 ENSG00000230870       ENST00000393804       31627127
11356    LINC00322 ENSG00000237864       ENST00000450205       43322417
11357    LINC00322 ENSG00000237864       ENST00000450205       43322417
11358    LINC00322 ENSG00000237864       ENST00000450205       43322417
11359    SPATA20P1 ENSG00000231123       ENST00000423089       38238227
11360              ENSG00000238257       ENST00000424582       30762682
11361    KRTAP19-3 ENSG00000244025       ENST00000334063       30491464
11362    KRTAP15-1 ENSG00000186970       ENST00000334067       30440275
11363        BAGE2 ENSG00000187172       ENST00000474011       10413477
11364        BAGE2 ENSG00000187172       ENST00000474011       10413477
11365        BAGE2 ENSG00000187172       ENST00000474011       10413477
11366        BAGE2 ENSG00000187172       ENST00000470054       10413477
11367        BAGE2 ENSG00000187172       ENST00000470054       10413477
11368        BAGE2 ENSG00000187172       ENST00000470054       10413477
11369        BAGE2 ENSG00000187172       ENST00000470054       10413477
11370        BAGE2 ENSG00000187172       ENST00000470054       10413477
11371        BAGE2 ENSG00000187172       ENST00000470054       10413477
11372        BAGE2 ENSG00000187172       ENST00000470054       10413477
11373        BAGE2 ENSG00000187172       ENST00000470054       10413477
11374        BAGE2 ENSG00000187172       ENST00000470054       10413477
11375        BAGE2 ENSG00000187172       ENST00000470054       10413477
11376        BAGE2 ENSG00000187172       ENST00000496773       10413477
11377        BAGE2 ENSG00000187172       ENST00000496773       10413477
11378        BAGE2 ENSG00000187172       ENST00000496773       10413477
11379        BAGE2 ENSG00000187172       ENST00000496773       10413477
11380        BAGE2 ENSG00000187172       ENST00000496773       10413477
11381        BAGE2 ENSG00000187172       ENST00000496773       10413477
11382        BAGE2 ENSG00000187172       ENST00000496773       10413477
11383        BAGE2 ENSG00000187172       ENST00000496773       10413477
11384        BAGE2 ENSG00000187172       ENST00000496773       10413477
11385        BAGE2 ENSG00000187172       ENST00000496773       10413477
11386        BAGE2 ENSG00000187172       ENST00000496773       10413477
11387        BAGE2 ENSG00000187172       ENST00000496773       10413477
11388        BAGE2 ENSG00000187172       ENST00000496773       10413477
11389        BAGE2 ENSG00000187172       ENST00000496773       10413477
11390        BAGE2 ENSG00000187172       ENST00000496773       10413477
11391              ENSG00000273840       ENST00000612267       10482738
11392              ENSG00000273840       ENST00000612267       10482738
11393              ENSG00000273840       ENST00000612267       10482738
11394              ENSG00000273840       ENST00000612267       10482738
11395              ENSG00000273840       ENST00000612267       10482738
11396              ENSG00000273840       ENST00000612267       10482738
11397              ENSG00000273840       ENST00000612267       10482738
11398              ENSG00000273840       ENST00000612267       10482738
11399              ENSG00000273840       ENST00000612267       10482738
11400              ENSG00000273840       ENST00000612267       10482738
11401              ENSG00000273840       ENST00000612267       10482738
11402              ENSG00000273840       ENST00000612267       10482738
11403              ENSG00000273840       ENST00000612267       10482738
11404              ENSG00000273840       ENST00000612267       10482738
11405              ENSG00000273840       ENST00000612267       10482738
11406              ENSG00000273840       ENST00000612267       10482738
11407              ENSG00000273840       ENST00000612267       10482738
11408              ENSG00000273840       ENST00000612267       10482738
11409              ENSG00000273840       ENST00000612267       10482738
11410              ENSG00000273840       ENST00000612267       10482738
11411              ENSG00000273840       ENST00000612267       10482738
11412              ENSG00000273840       ENST00000612267       10482738
11413              ENSG00000273840       ENST00000612267       10482738
11414              ENSG00000273840       ENST00000612267       10482738
11415              ENSG00000273840       ENST00000612267       10482738
11416              ENSG00000273840       ENST00000612267       10482738
11417              ENSG00000273840       ENST00000612267       10482738
11418              ENSG00000273840       ENST00000612267       10482738
11419              ENSG00000273840       ENST00000612267       10482738
11420              ENSG00000273840       ENST00000612267       10482738
11421              ENSG00000273840       ENST00000612267       10482738
11422              ENSG00000273840       ENST00000612267       10482738
11423              ENSG00000228708       ENST00000455391       18477358
11424              ENSG00000228708       ENST00000455391       18477358
11425     MIR99AHG ENSG00000215386       ENST00000635845       15928296
11426     MIR99AHG ENSG00000215386       ENST00000635845       15928296
11427     MIR99AHG ENSG00000215386       ENST00000635845       15928296
11428     MIR99AHG ENSG00000215386       ENST00000635845       15928296
11429     MIR99AHG ENSG00000215386       ENST00000635845       15928296
11430     MIR99AHG ENSG00000215386       ENST00000635845       15928296
11431     MIR99AHG ENSG00000215386       ENST00000602580       15928296
11432     MIR99AHG ENSG00000215386       ENST00000602580       15928296
11433     MIR99AHG ENSG00000215386       ENST00000602580       15928296
11434     MIR99AHG ENSG00000215386       ENST00000602580       15928296
11435     MIR99AHG ENSG00000215386       ENST00000602580       15928296
11436     MIR99AHG ENSG00000215386       ENST00000602580       15928296
11437     MIR99AHG ENSG00000215386       ENST00000619222       15928296
11438     MIR99AHG ENSG00000215386       ENST00000619222       15928296
11439     MIR99AHG ENSG00000215386       ENST00000619222       15928296
11440     MIR99AHG ENSG00000215386       ENST00000619222       15928296
11441     MIR99AHG ENSG00000215386       ENST00000619222       15928296
11442     MIR99AHG ENSG00000215386       ENST00000619222       15928296
11443     MIR99AHG ENSG00000215386       ENST00000619222       15928296
11444     MIR99AHG ENSG00000215386       ENST00000619222       15928296
11445     MIR99AHG ENSG00000215386       ENST00000602935       15928296
11446     MIR99AHG ENSG00000215386       ENST00000602935       15928296
11447     MIR99AHG ENSG00000215386       ENST00000602935       15928296
11448     MIR99AHG ENSG00000215386       ENST00000602935       15928296
11449     MIR99AHG ENSG00000215386       ENST00000602935       15928296
11450     MIR99AHG ENSG00000215386       ENST00000602935       15928296
11451     MIR99AHG ENSG00000215386       ENST00000400178       15928296
11452     MIR99AHG ENSG00000215386       ENST00000400178       15928296
11453     MIR99AHG ENSG00000215386       ENST00000400178       15928296
11454     MIR99AHG ENSG00000215386       ENST00000400178       15928296
11455     MIR99AHG ENSG00000215386       ENST00000400178       15928296
11456     MIR99AHG ENSG00000215386       ENST00000400178       15928296
11457     MIR99AHG ENSG00000215386       ENST00000456342       15928296
11458     MIR99AHG ENSG00000215386       ENST00000456342       15928296
11459     MIR99AHG ENSG00000215386       ENST00000456342       15928296
11460     MIR99AHG ENSG00000215386       ENST00000456342       15928296
11461     MIR99AHG ENSG00000215386       ENST00000456342       15928296
11462     MIR99AHG ENSG00000215386       ENST00000456342       15928296
11463     MIR99AHG ENSG00000215386       ENST00000456342       15928296
11464     MIR99AHG ENSG00000215386       ENST00000428669       15928296
11465     MIR99AHG ENSG00000215386       ENST00000428669       15928296
11466     MIR99AHG ENSG00000215386       ENST00000428669       15928296
11467     MIR99AHG ENSG00000215386       ENST00000428669       15928296
11468     MIR99AHG ENSG00000215386       ENST00000428669       15928296
11469     MIR99AHG ENSG00000215386       ENST00000428669       15928296
11470     MIR99AHG ENSG00000215386       ENST00000428669       15928296
11471     MIR99AHG ENSG00000215386       ENST00000419952       15928296
11472     MIR99AHG ENSG00000215386       ENST00000419952       15928296
11473     MIR99AHG ENSG00000215386       ENST00000419952       15928296
11474     MIR99AHG ENSG00000215386       ENST00000419952       15928296
11475     MIR99AHG ENSG00000215386       ENST00000419952       15928296
11476     MIR99AHG ENSG00000215386       ENST00000445461       15928296
11477     MIR99AHG ENSG00000215386       ENST00000445461       15928296
11478     MIR99AHG ENSG00000215386       ENST00000445461       15928296
11479     MIR99AHG ENSG00000215386       ENST00000445461       15928296
11480     MIR99AHG ENSG00000215386       ENST00000445461       15928296
11481     MIR99AHG ENSG00000215386       ENST00000445461       15928296
11482     MIR99AHG ENSG00000215386       ENST00000602505       15928296
11483     MIR99AHG ENSG00000215386       ENST00000602505       15928296
11484     MIR99AHG ENSG00000215386       ENST00000602505       15928296
11485     MIR99AHG ENSG00000215386       ENST00000602901       15928296
11486     MIR99AHG ENSG00000215386       ENST00000602901       15928296
11487     MIR99AHG ENSG00000215386       ENST00000602901       15928296
11488     MIR99AHG ENSG00000215386       ENST00000602901       15928296
11489     MIR99AHG ENSG00000215386       ENST00000602901       15928296
11490     MIR99AHG ENSG00000215386       ENST00000602339       15928296
11491     MIR99AHG ENSG00000215386       ENST00000602339       15928296
11492     MIR99AHG ENSG00000215386       ENST00000602339       15928296
11493     MIR99AHG ENSG00000215386       ENST00000602339       15928296
11494     MIR99AHG ENSG00000215386       ENST00000602339       15928296
11495     MIR99AHG ENSG00000215386       ENST00000602892       15928296
11496     MIR99AHG ENSG00000215386       ENST00000602892       15928296
11497     MIR99AHG ENSG00000215386       ENST00000602892       15928296
11498     MIR99AHG ENSG00000215386       ENST00000418813       15928296
11499     MIR99AHG ENSG00000215386       ENST00000418813       15928296
11500     MIR99AHG ENSG00000215386       ENST00000418813       15928296
11501     MIR99AHG ENSG00000215386       ENST00000418813       15928296
11502     MIR99AHG ENSG00000215386       ENST00000418813       15928296
11503     MIR99AHG ENSG00000215386       ENST00000435697       15928296
11504     MIR99AHG ENSG00000215386       ENST00000435697       15928296
11505     MIR99AHG ENSG00000215386       ENST00000453910       15928296
11506     MIR99AHG ENSG00000215386       ENST00000453910       15928296
11507     MIR99AHG ENSG00000215386       ENST00000453910       15928296
11508     MIR99AHG ENSG00000215386       ENST00000453910       15928296
11509     MIR99AHG ENSG00000215386       ENST00000453910       15928296
11510     MIR99AHG ENSG00000215386       ENST00000602620       15928296
11511     MIR99AHG ENSG00000215386       ENST00000602620       15928296
11512     MIR99AHG ENSG00000215386       ENST00000602620       15928296
11513     MIR99AHG ENSG00000215386       ENST00000602620       15928296
11514     MIR99AHG ENSG00000215386       ENST00000441820       15928296
11515     MIR99AHG ENSG00000215386       ENST00000441820       15928296
11516     MIR99AHG ENSG00000215386       ENST00000441820       15928296
11517     MIR99AHG ENSG00000215386       ENST00000602280       15928296
11518     MIR99AHG ENSG00000215386       ENST00000602280       15928296
11519     MIR99AHG ENSG00000215386       ENST00000602280       15928296
11520     MIR99AHG ENSG00000215386       ENST00000602280       15928296
11521     MIR99AHG ENSG00000215386       ENST00000602323       15928296
11522     MIR99AHG ENSG00000215386       ENST00000602323       15928296
11523     MIR99AHG ENSG00000215386       ENST00000602323       15928296
11524     MIR99AHG ENSG00000215386       ENST00000602323       15928296
11525     MIR99AHG ENSG00000215386       ENST00000602323       15928296
11526              ENSG00000238220       ENST00000411943       32624416
11527              ENSG00000238220       ENST00000411943       32624416
11528     EIF4A1P1 ENSG00000233300       ENST00000420241       27367014
11529              ENSG00000272991       ENST00000608767       39184469
11530    BRWD1-AS1 ENSG00000238141       ENST00000423274       39315707
11531    BRWD1-AS1 ENSG00000238141       ENST00000423274       39315707
11532    BRWD1-AS1 ENSG00000238141       ENST00000423274       39315707
11533      PCBP2P1 ENSG00000235701       ENST00000437262       39171130
11534              ENSG00000273492       ENST00000608591       26170871
11535              ENSG00000273492       ENST00000608591       26170871
11536              ENSG00000273492       ENST00000608591       26170871
11537              ENSG00000273492       ENST00000609365       26170871
11538              ENSG00000273492       ENST00000609365       26170871
11539              ENSG00000273492       ENST00000609365       26170871
11540              ENSG00000273492       ENST00000609365       26170871
11541          APP ENSG00000142192       ENST00000346798       25880550
11542          APP ENSG00000142192       ENST00000346798       25880550
11543          APP ENSG00000142192       ENST00000346798       25880550
11544          APP ENSG00000142192       ENST00000346798       25880550
11545          APP ENSG00000142192       ENST00000346798       25880550
11546          APP ENSG00000142192       ENST00000346798       25880550
11547          APP ENSG00000142192       ENST00000346798       25880550
11548          APP ENSG00000142192       ENST00000346798       25880550
11549          APP ENSG00000142192       ENST00000346798       25880550
11550          APP ENSG00000142192       ENST00000346798       25880550
11551          APP ENSG00000142192       ENST00000346798       25880550
11552          APP ENSG00000142192       ENST00000346798       25880550
11553          APP ENSG00000142192       ENST00000346798       25880550
11554          APP ENSG00000142192       ENST00000346798       25880550
11555          APP ENSG00000142192       ENST00000346798       25880550
11556          APP ENSG00000142192       ENST00000346798       25880550
11557          APP ENSG00000142192       ENST00000346798       25880550
11558          APP ENSG00000142192       ENST00000346798       25880550
11559          APP ENSG00000142192       ENST00000354192       25880550
11560          APP ENSG00000142192       ENST00000354192       25880550
11561          APP ENSG00000142192       ENST00000354192       25880550
11562          APP ENSG00000142192       ENST00000354192       25880550
11563          APP ENSG00000142192       ENST00000354192       25880550
11564          APP ENSG00000142192       ENST00000354192       25880550
11565          APP ENSG00000142192       ENST00000354192       25880550
11566          APP ENSG00000142192       ENST00000354192       25880550
11567          APP ENSG00000142192       ENST00000354192       25880550
11568          APP ENSG00000142192       ENST00000354192       25880550
11569          APP ENSG00000142192       ENST00000354192       25880550
11570          APP ENSG00000142192       ENST00000354192       25880550
11571          APP ENSG00000142192       ENST00000354192       25880550
11572          APP ENSG00000142192       ENST00000354192       25880550
11573          APP ENSG00000142192       ENST00000354192       25880550
11574          APP ENSG00000142192       ENST00000348990       25880550
11575          APP ENSG00000142192       ENST00000348990       25880550
11576          APP ENSG00000142192       ENST00000348990       25880550
11577          APP ENSG00000142192       ENST00000348990       25880550
11578          APP ENSG00000142192       ENST00000348990       25880550
11579          APP ENSG00000142192       ENST00000348990       25880550
11580          APP ENSG00000142192       ENST00000348990       25880550
11581          APP ENSG00000142192       ENST00000348990       25880550
11582          APP ENSG00000142192       ENST00000348990       25880550
11583          APP ENSG00000142192       ENST00000348990       25880550
11584          APP ENSG00000142192       ENST00000348990       25880550
11585          APP ENSG00000142192       ENST00000348990       25880550
11586          APP ENSG00000142192       ENST00000348990       25880550
11587          APP ENSG00000142192       ENST00000348990       25880550
11588          APP ENSG00000142192       ENST00000348990       25880550
11589          APP ENSG00000142192       ENST00000348990       25880550
11590          APP ENSG00000142192       ENST00000357903       25880550
11591          APP ENSG00000142192       ENST00000357903       25880550
11592          APP ENSG00000142192       ENST00000357903       25880550
11593          APP ENSG00000142192       ENST00000357903       25880550
11594          APP ENSG00000142192       ENST00000357903       25880550
11595          APP ENSG00000142192       ENST00000357903       25880550
11596          APP ENSG00000142192       ENST00000357903       25880550
11597          APP ENSG00000142192       ENST00000357903       25880550
11598          APP ENSG00000142192       ENST00000357903       25880550
11599          APP ENSG00000142192       ENST00000357903       25880550
11600          APP ENSG00000142192       ENST00000357903       25880550
11601          APP ENSG00000142192       ENST00000357903       25880550
11602          APP ENSG00000142192       ENST00000357903       25880550
11603          APP ENSG00000142192       ENST00000357903       25880550
11604          APP ENSG00000142192       ENST00000357903       25880550
11605          APP ENSG00000142192       ENST00000357903       25880550
11606          APP ENSG00000142192       ENST00000357903       25880550
11607          APP ENSG00000142192       ENST00000440126       25880550
11608          APP ENSG00000142192       ENST00000440126       25880550
11609          APP ENSG00000142192       ENST00000440126       25880550
11610          APP ENSG00000142192       ENST00000440126       25880550
11611          APP ENSG00000142192       ENST00000440126       25880550
11612          APP ENSG00000142192       ENST00000440126       25880550
11613          APP ENSG00000142192       ENST00000440126       25880550
11614          APP ENSG00000142192       ENST00000440126       25880550
11615          APP ENSG00000142192       ENST00000440126       25880550
11616          APP ENSG00000142192       ENST00000440126       25880550
11617          APP ENSG00000142192       ENST00000440126       25880550
11618          APP ENSG00000142192       ENST00000440126       25880550
11619          APP ENSG00000142192       ENST00000440126       25880550
11620          APP ENSG00000142192       ENST00000440126       25880550
11621          APP ENSG00000142192       ENST00000440126       25880550
11622          APP ENSG00000142192       ENST00000440126       25880550
11623          APP ENSG00000142192       ENST00000440126       25880550
11624          APP ENSG00000142192       ENST00000439274       25880550
11625          APP ENSG00000142192       ENST00000439274       25880550
11626          APP ENSG00000142192       ENST00000439274       25880550
11627          APP ENSG00000142192       ENST00000439274       25880550
11628          APP ENSG00000142192       ENST00000439274       25880550
11629          APP ENSG00000142192       ENST00000439274       25880550
11630          APP ENSG00000142192       ENST00000439274       25880550
11631          APP ENSG00000142192       ENST00000439274       25880550
11632          APP ENSG00000142192       ENST00000439274       25880550
11633          APP ENSG00000142192       ENST00000439274       25880550
11634          APP ENSG00000142192       ENST00000439274       25880550
11635          APP ENSG00000142192       ENST00000439274       25880550
11636          APP ENSG00000142192       ENST00000439274       25880550
11637          APP ENSG00000142192       ENST00000439274       25880550
11638          APP ENSG00000142192       ENST00000439274       25880550
11639          APP ENSG00000142192       ENST00000439274       25880550
11640          APP ENSG00000142192       ENST00000439274       25880550
11641          APP ENSG00000142192       ENST00000464867       25880550
11642          APP ENSG00000142192       ENST00000464867       25880550
11643          APP ENSG00000142192       ENST00000464867       25880550
11644          APP ENSG00000142192       ENST00000358918       25880550
11645          APP ENSG00000142192       ENST00000358918       25880550
11646          APP ENSG00000142192       ENST00000358918       25880550
11647          APP ENSG00000142192       ENST00000358918       25880550
11648          APP ENSG00000142192       ENST00000358918       25880550
11649          APP ENSG00000142192       ENST00000358918       25880550
11650          APP ENSG00000142192       ENST00000358918       25880550
11651          APP ENSG00000142192       ENST00000358918       25880550
11652          APP ENSG00000142192       ENST00000358918       25880550
11653          APP ENSG00000142192       ENST00000358918       25880550
11654          APP ENSG00000142192       ENST00000358918       25880550
11655          APP ENSG00000142192       ENST00000358918       25880550
11656          APP ENSG00000142192       ENST00000358918       25880550
11657          APP ENSG00000142192       ENST00000358918       25880550
11658          APP ENSG00000142192       ENST00000358918       25880550
11659          APP ENSG00000142192       ENST00000358918       25880550
11660          APP ENSG00000142192       ENST00000358918       25880550
11661          APP ENSG00000142192       ENST00000448850       25880550
11662          APP ENSG00000142192       ENST00000448850       25880550
11663          APP ENSG00000142192       ENST00000448850       25880550
11664          APP ENSG00000142192       ENST00000448850       25880550
11665          APP ENSG00000142192       ENST00000448850       25880550
11666          APP ENSG00000142192       ENST00000448850       25880550
11667          APP ENSG00000142192       ENST00000448850       25880550
11668          APP ENSG00000142192       ENST00000448850       25880550
11669          APP ENSG00000142192       ENST00000448850       25880550
11670          APP ENSG00000142192       ENST00000448850       25880550
11671          APP ENSG00000142192       ENST00000448850       25880550
11672          APP ENSG00000142192       ENST00000415997       25880550
11673          APP ENSG00000142192       ENST00000415997       25880550
11674          APP ENSG00000142192       ENST00000415997       25880550
11675          APP ENSG00000142192       ENST00000415997       25880550
11676          APP ENSG00000142192       ENST00000415997       25880550
11677          APP ENSG00000142192       ENST00000415997       25880550
11678          APP ENSG00000142192       ENST00000491395       25880550
11679          APP ENSG00000142192       ENST00000491395       25880550
11680          APP ENSG00000142192       ENST00000491395       25880550
11681          APP ENSG00000142192       ENST00000491395       25880550
11682          APP ENSG00000142192       ENST00000474136       25880550
11683          APP ENSG00000142192       ENST00000474136       25880550
11684          APP ENSG00000142192       ENST00000474136       25880550
11685          APP ENSG00000142192       ENST00000474136       25880550
11686          APP ENSG00000142192       ENST00000474136       25880550
11687          APP ENSG00000142192       ENST00000474136       25880550
11688          APP ENSG00000142192       ENST00000474136       25880550
11689          APP ENSG00000142192       ENST00000463070       25880550
11690          APP ENSG00000142192       ENST00000463070       25880550
11691          APP ENSG00000142192       ENST00000463070       25880550
11692          APP ENSG00000142192       ENST00000548570       25880550
11693          APP ENSG00000142192       ENST00000548570       25880550
11694          APP ENSG00000142192       ENST00000548570       25880550
11695          APP ENSG00000142192       ENST00000462267       25880550
11696          APP ENSG00000142192       ENST00000462267       25880550
11697          APP ENSG00000142192       ENST00000466453       25880550
11698          APP ENSG00000142192       ENST00000466453       25880550
11699          APP ENSG00000142192       ENST00000359726       25880550
11700          APP ENSG00000142192       ENST00000359726       25880550
11701          APP ENSG00000142192       ENST00000359726       25880550
11702          APP ENSG00000142192       ENST00000359726       25880550
11703          APP ENSG00000142192       ENST00000359726       25880550
11704          APP ENSG00000142192       ENST00000359726       25880550
11705          APP ENSG00000142192       ENST00000359726       25880550
11706          APP ENSG00000142192       ENST00000359726       25880550
11707          APP ENSG00000142192       ENST00000359726       25880550
11708          APP ENSG00000142192       ENST00000359726       25880550
11709          APP ENSG00000142192       ENST00000359726       25880550
11710          APP ENSG00000142192       ENST00000359726       25880550
11711          APP ENSG00000142192       ENST00000359726       25880550
11712          APP ENSG00000142192       ENST00000359726       25880550
11713          APP ENSG00000142192       ENST00000359726       25880550
11714          APP ENSG00000142192       ENST00000359726       25880550
11715    LINC01695 ENSG00000236532       ENST00000453420       28116094
11716    LINC01695 ENSG00000236532       ENST00000453420       28116094
11717    LINC01695 ENSG00000236532       ENST00000453420       28116094
11718    LINC01695 ENSG00000236532       ENST00000453420       28116094
11719    LINC01695 ENSG00000236532       ENST00000453420       28116094
11720    LINC01695 ENSG00000236532       ENST00000453420       28116094
11721    LINC01695 ENSG00000236532       ENST00000433303       28116094
11722    LINC01695 ENSG00000236532       ENST00000433303       28116094
11723    LINC01695 ENSG00000236532       ENST00000433303       28116094
11724    LINC01695 ENSG00000236532       ENST00000437194       28116094
11725    LINC01695 ENSG00000236532       ENST00000437194       28116094
11726    LINC01695 ENSG00000236532       ENST00000437194       28116094
11727    LINC01695 ENSG00000236532       ENST00000437194       28116094
11728    LINC01694 ENSG00000233922       ENST00000441095       45593654
11729    LINC01694 ENSG00000233922       ENST00000441095       45593654
11730    LINC01694 ENSG00000233922       ENST00000424569       45593654
11731    LINC01694 ENSG00000233922       ENST00000424569       45593654
11732    LINC01694 ENSG00000233922       ENST00000424569       45593654
11733    LINC00316 ENSG00000237664       ENST00000416722       45338590
11734    LINC00316 ENSG00000237664       ENST00000416722       45338590
11735              ENSG00000229382       ENST00000445242       45336707
11736              ENSG00000229382       ENST00000445242       45336707
11737    LINC00315 ENSG00000184274       ENST00000441947       45300245
11738    LINC00315 ENSG00000184274       ENST00000441947       45300245
11739    LINC00315 ENSG00000184274       ENST00000441947       45300245
11740    LINC00205 ENSG00000223768       ENST00000433465       45293285
11741    LINC00205 ENSG00000223768       ENST00000433465       45293285
11742         URB1 ENSG00000142207       ENST00000382751       32311018
11743         URB1 ENSG00000142207       ENST00000382751       32311018
11744         URB1 ENSG00000142207       ENST00000382751       32311018
11745         URB1 ENSG00000142207       ENST00000382751       32311018
11746         URB1 ENSG00000142207       ENST00000382751       32311018
11747         URB1 ENSG00000142207       ENST00000382751       32311018
11748         URB1 ENSG00000142207       ENST00000382751       32311018
11749         URB1 ENSG00000142207       ENST00000382751       32311018
11750         URB1 ENSG00000142207       ENST00000382751       32311018
11751         URB1 ENSG00000142207       ENST00000382751       32311018
11752         URB1 ENSG00000142207       ENST00000382751       32311018
11753         URB1 ENSG00000142207       ENST00000382751       32311018
11754         URB1 ENSG00000142207       ENST00000382751       32311018
11755         URB1 ENSG00000142207       ENST00000382751       32311018
11756         URB1 ENSG00000142207       ENST00000382751       32311018
11757         URB1 ENSG00000142207       ENST00000382751       32311018
11758         URB1 ENSG00000142207       ENST00000382751       32311018
11759         URB1 ENSG00000142207       ENST00000382751       32311018
11760         URB1 ENSG00000142207       ENST00000382751       32311018
11761         URB1 ENSG00000142207       ENST00000382751       32311018
11762         URB1 ENSG00000142207       ENST00000382751       32311018
11763         URB1 ENSG00000142207       ENST00000382751       32311018
11764         URB1 ENSG00000142207       ENST00000382751       32311018
11765         URB1 ENSG00000142207       ENST00000382751       32311018
11766         URB1 ENSG00000142207       ENST00000382751       32311018
11767         URB1 ENSG00000142207       ENST00000382751       32311018
11768         URB1 ENSG00000142207       ENST00000382751       32311018
11769         URB1 ENSG00000142207       ENST00000382751       32311018
11770         URB1 ENSG00000142207       ENST00000382751       32311018
11771         URB1 ENSG00000142207       ENST00000382751       32311018
11772         URB1 ENSG00000142207       ENST00000382751       32311018
11773         URB1 ENSG00000142207       ENST00000382751       32311018
11774         URB1 ENSG00000142207       ENST00000382751       32311018
11775         URB1 ENSG00000142207       ENST00000382751       32311018
11776         URB1 ENSG00000142207       ENST00000382751       32311018
11777         URB1 ENSG00000142207       ENST00000382751       32311018
11778         URB1 ENSG00000142207       ENST00000382751       32311018
11779         URB1 ENSG00000142207       ENST00000382751       32311018
11780         URB1 ENSG00000142207       ENST00000382751       32311018
11781         URB1 ENSG00000142207       ENST00000480196       32311018
11782         URB1 ENSG00000142207       ENST00000480196       32311018
11783         URB1 ENSG00000142207       ENST00000492603       32311018
11784         URB1 ENSG00000142207       ENST00000492603       32311018
11785      NCSTNP1 ENSG00000219592       ENST00000406229       27492118
11786              ENSG00000223563       ENST00000426771       26889376
11787              ENSG00000223563       ENST00000426771       26889376
11788              ENSG00000223563       ENST00000426771       26889376
11789              ENSG00000229025       ENST00000435878       26349780
11790              ENSG00000229025       ENST00000435878       26349780
11791   METTL21AP1 ENSG00000229623       ENST00000438852       39235386
11792        POTED ENSG00000166351       ENST00000299443       13609858
11793        POTED ENSG00000166351       ENST00000299443       13609858
11794        POTED ENSG00000166351       ENST00000299443       13609858
11795        POTED ENSG00000166351       ENST00000299443       13609858
11796        POTED ENSG00000166351       ENST00000299443       13609858
11797        POTED ENSG00000166351       ENST00000299443       13609858
11798        POTED ENSG00000166351       ENST00000299443       13609858
11799        POTED ENSG00000166351       ENST00000299443       13609858
11800        POTED ENSG00000166351       ENST00000299443       13609858
11801        POTED ENSG00000166351       ENST00000299443       13609858
11802        POTED ENSG00000166351       ENST00000299443       13609858
11803        POTED ENSG00000166351       ENST00000620442       13609858
11804        POTED ENSG00000166351       ENST00000620442       13609858
11805        POTED ENSG00000166351       ENST00000620442       13609858
11806        POTED ENSG00000166351       ENST00000620442       13609858
11807        POTED ENSG00000166351       ENST00000620442       13609858
11808        POTED ENSG00000166351       ENST00000620442       13609858
11809        POTED ENSG00000166351       ENST00000620442       13609858
11810        POTED ENSG00000166351       ENST00000620442       13609858
11811              ENSG00000273271       ENST00000609934       31666728
11812         SOD1 ENSG00000142168       ENST00000270142       31659622
11813         SOD1 ENSG00000142168       ENST00000270142       31659622
11814         SOD1 ENSG00000142168       ENST00000270142       31659622
11815         SOD1 ENSG00000142168       ENST00000270142       31659622
11816         SOD1 ENSG00000142168       ENST00000270142       31659622
11817         SOD1 ENSG00000142168       ENST00000389995       31659622
11818         SOD1 ENSG00000142168       ENST00000389995       31659622
11819         SOD1 ENSG00000142168       ENST00000389995       31659622
11820         SOD1 ENSG00000142168       ENST00000389995       31659622
11821         SOD1 ENSG00000142168       ENST00000389995       31659622
11822         SOD1 ENSG00000142168       ENST00000476106       31659622
11823         SOD1 ENSG00000142168       ENST00000476106       31659622
11824         SOD1 ENSG00000142168       ENST00000476106       31659622
11825         SOD1 ENSG00000142168       ENST00000476106       31659622
11826         SOD1 ENSG00000142168       ENST00000476106       31659622
11827         SOD1 ENSG00000142168       ENST00000470944       31659622
11828         SOD1 ENSG00000142168       ENST00000470944       31659622
11829         SOD1 ENSG00000142168       ENST00000470944       31659622
11830         SOD1 ENSG00000142168       ENST00000470944       31659622
11831         SOD1 ENSG00000142168       ENST00000470944       31659622
11832    LINC00319 ENSG00000188660       ENST00000448049       43446601
11833    LINC00319 ENSG00000188660       ENST00000448049       43446601
11834    LINC00319 ENSG00000188660       ENST00000448049       43446601
11835    LINC00319 ENSG00000188660       ENST00000448049       43446601
11836    LINC00319 ENSG00000188660       ENST00000342757       43446601
11837    LINC00319 ENSG00000188660       ENST00000342757       43446601
11838    LINC00319 ENSG00000188660       ENST00000342757       43446601
11839              ENSG00000223975       ENST00000436359       43465309
11840              ENSG00000223975       ENST00000436359       43465309
11841    LINC00313 ENSG00000185186       ENST00000426942       43462094
11842    LINC00313 ENSG00000185186       ENST00000426942       43462094
11843    LINC00313 ENSG00000185186       ENST00000332440       43462094
11844    LINC00313 ENSG00000185186       ENST00000332440       43462094
11845    LINC00313 ENSG00000185186       ENST00000332440       43462094
11846    LINC00313 ENSG00000185186       ENST00000332440       43462094
11847    LINC00313 ENSG00000185186       ENST00000413721       43462094
11848    LINC00313 ENSG00000185186       ENST00000413721       43462094
11849    LINC00313 ENSG00000185186       ENST00000413721       43462094
11850    LINC00313 ENSG00000185186       ENST00000451543       43462094
11851    LINC00313 ENSG00000185186       ENST00000451543       43462094
11852    LINC00313 ENSG00000185186       ENST00000451543       43462094
11853    LINC00313 ENSG00000185186       ENST00000451543       43462094
11854    LINC00313 ENSG00000185186       ENST00000418516       43462094
11855    LINC00313 ENSG00000185186       ENST00000418516       43462094
11856    LINC00313 ENSG00000185186       ENST00000418516       43462094
11857    LINC00313 ENSG00000185186       ENST00000427188       43462094
11858    LINC00313 ENSG00000185186       ENST00000427188       43462094
11859    LINC00313 ENSG00000185186       ENST00000441283       43462094
11860    LINC00313 ENSG00000185186       ENST00000441283       43462094
11861    LINC00313 ENSG00000185186       ENST00000441283       43462094
11862    LINC00313 ENSG00000185186       ENST00000441283       43462094
11863              ENSG00000278381       ENST00000613704       13654073
11864     GRAMD4P1 ENSG00000227874       ENST00000435181       13665868
11865     GRAMD4P1 ENSG00000227874       ENST00000435181       13665868
11866      CXADRP1 ENSG00000214319       ENST00000398098       13676022
11867              ENSG00000279773       ENST00000624520       13679300
11868              ENSG00000273692       ENST00000619798       13704853
11869      FEM1AP1 ENSG00000229231       ENST00000431297       13762338
11870              ENSG00000224922       ENST00000444356       13769932
11871              ENSG00000224922       ENST00000444356       13769932
11872      TERF1P1 ENSG00000173231       ENST00000311003       13776086
11873       ZBTB21 ENSG00000173276       ENST00000398505       41986831
11874       ZBTB21 ENSG00000173276       ENST00000398505       41986831
11875       ZBTB21 ENSG00000173276       ENST00000398505       41986831
11876       ZBTB21 ENSG00000173276       ENST00000398505       41986831
11877       ZBTB21 ENSG00000173276       ENST00000310826       41986831
11878       ZBTB21 ENSG00000173276       ENST00000310826       41986831
11879       ZBTB21 ENSG00000173276       ENST00000310826       41986831
11880       ZBTB21 ENSG00000173276       ENST00000398499       41986831
11881       ZBTB21 ENSG00000173276       ENST00000398499       41986831
11882       ZBTB21 ENSG00000173276       ENST00000398499       41986831
11883       ZBTB21 ENSG00000173276       ENST00000398499       41986831
11884       ZBTB21 ENSG00000173276       ENST00000398511       41986831
11885       ZBTB21 ENSG00000173276       ENST00000398511       41986831
11886       ZBTB21 ENSG00000173276       ENST00000465968       41986831
11887       ZBTB21 ENSG00000173276       ENST00000465968       41986831
11888       ZBTB21 ENSG00000173276       ENST00000465968       41986831
11889       ZBTB21 ENSG00000173276       ENST00000425521       41986831
11890       ZBTB21 ENSG00000173276       ENST00000425521       41986831
11891       ZBTB21 ENSG00000173276       ENST00000449949       41986831
11892       ZBTB21 ENSG00000173276       ENST00000449949       41986831
11893       ZBTB21 ENSG00000173276       ENST00000449949       41986831
11894       ZBTB21 ENSG00000173276       ENST00000449949       41986831
11895       ZBTB21 ENSG00000173276       ENST00000398497       41986831
11896       ZBTB21 ENSG00000173276       ENST00000398497       41986831
11897       ZBTB21 ENSG00000173276       ENST00000398497       41986831
11898       ZBTB21 ENSG00000173276       ENST00000398497       41986831
11899   ZNF295-AS1 ENSG00000237232       ENST00000412906       42009194
11900   ZNF295-AS1 ENSG00000237232       ENST00000412906       42009194
11901   ZNF295-AS1 ENSG00000237232       ENST00000455701       42009194
11902   ZNF295-AS1 ENSG00000237232       ENST00000455701       42009194
11903   ZNF295-AS1 ENSG00000237232       ENST00000429739       42009194
11904   ZNF295-AS1 ENSG00000237232       ENST00000429739       42009194
11905     FAM207CP ENSG00000232797       ENST00000443486       13792635
11906     GXYLT1P2 ENSG00000224860       ENST00000433312       13824406
11907       CNN2P7 ENSG00000215562       ENST00000400583       13826696
11908     ZNF114P1 ENSG00000234538       ENST00000453500       13839118
11909     CYP4F29P ENSG00000228314       ENST00000428301       13843133
11910     CYP4F29P ENSG00000228314       ENST00000428301       13843133
11911     CYP4F29P ENSG00000228314       ENST00000428301       13843133
11912     CYP4F29P ENSG00000228314       ENST00000428301       13843133
11913     CYP4F29P ENSG00000228314       ENST00000428301       13843133
11914     CYP4F29P ENSG00000228314       ENST00000428301       13843133
11915     CYP4F29P ENSG00000228314       ENST00000420685       13843133
11916     CYP4F29P ENSG00000228314       ENST00000420685       13843133
11917     CYP4F29P ENSG00000228314       ENST00000420685       13843133
11918     CYP4F29P ENSG00000228314       ENST00000436765       13843133
11919     CYP4F29P ENSG00000228314       ENST00000436765       13843133
11920     CYP4F29P ENSG00000228314       ENST00000436765       13843133
11921     SNX18P13 ENSG00000230965       ENST00000412442       13905960
11922          ERG ENSG00000157554       ENST00000398905       38380027
11923          ERG ENSG00000157554       ENST00000398905       38380027
11924          ERG ENSG00000157554       ENST00000398905       38380027
11925          ERG ENSG00000157554       ENST00000398905       38380027
11926          ERG ENSG00000157554       ENST00000398905       38380027
11927          ERG ENSG00000157554       ENST00000398905       38380027
11928          ERG ENSG00000157554       ENST00000398905       38380027
11929          ERG ENSG00000157554       ENST00000398905       38380027
11930          ERG ENSG00000157554       ENST00000398905       38380027
11931          ERG ENSG00000157554       ENST00000398907       38380027
11932          ERG ENSG00000157554       ENST00000398907       38380027
11933          ERG ENSG00000157554       ENST00000398907       38380027
11934          ERG ENSG00000157554       ENST00000398907       38380027
11935          ERG ENSG00000157554       ENST00000398907       38380027
11936          ERG ENSG00000157554       ENST00000398907       38380027
11937          ERG ENSG00000157554       ENST00000398907       38380027
11938          ERG ENSG00000157554       ENST00000398907       38380027
11939          ERG ENSG00000157554       ENST00000398907       38380027
11940          ERG ENSG00000157554       ENST00000288319       38380027
11941          ERG ENSG00000157554       ENST00000288319       38380027
11942          ERG ENSG00000157554       ENST00000288319       38380027
11943          ERG ENSG00000157554       ENST00000288319       38380027
11944          ERG ENSG00000157554       ENST00000288319       38380027
11945          ERG ENSG00000157554       ENST00000288319       38380027
11946          ERG ENSG00000157554       ENST00000288319       38380027
11947          ERG ENSG00000157554       ENST00000288319       38380027
11948          ERG ENSG00000157554       ENST00000288319       38380027
11949          ERG ENSG00000157554       ENST00000288319       38380027
11950          ERG ENSG00000157554       ENST00000398897       38380027
11951          ERG ENSG00000157554       ENST00000398897       38380027
11952          ERG ENSG00000157554       ENST00000398897       38380027
11953          ERG ENSG00000157554       ENST00000398897       38380027
11954          ERG ENSG00000157554       ENST00000398897       38380027
11955          ERG ENSG00000157554       ENST00000398897       38380027
11956          ERG ENSG00000157554       ENST00000398897       38380027
11957          ERG ENSG00000157554       ENST00000398897       38380027
11958          ERG ENSG00000157554       ENST00000398897       38380027
11959          ERG ENSG00000157554       ENST00000398911       38380027
11960          ERG ENSG00000157554       ENST00000398911       38380027
11961          ERG ENSG00000157554       ENST00000398911       38380027
11962          ERG ENSG00000157554       ENST00000398911       38380027
11963          ERG ENSG00000157554       ENST00000398911       38380027
11964          ERG ENSG00000157554       ENST00000398911       38380027
11965          ERG ENSG00000157554       ENST00000398911       38380027
11966          ERG ENSG00000157554       ENST00000398911       38380027
11967          ERG ENSG00000157554       ENST00000398911       38380027
11968          ERG ENSG00000157554       ENST00000398911       38380027
11969          ERG ENSG00000157554       ENST00000417133       38380027
11970          ERG ENSG00000157554       ENST00000417133       38380027
11971          ERG ENSG00000157554       ENST00000417133       38380027
11972          ERG ENSG00000157554       ENST00000417133       38380027
11973          ERG ENSG00000157554       ENST00000417133       38380027
11974          ERG ENSG00000157554       ENST00000417133       38380027
11975          ERG ENSG00000157554       ENST00000417133       38380027
11976          ERG ENSG00000157554       ENST00000417133       38380027
11977          ERG ENSG00000157554       ENST00000417133       38380027
11978          ERG ENSG00000157554       ENST00000417133       38380027
11979          ERG ENSG00000157554       ENST00000417133       38380027
11980          ERG ENSG00000157554       ENST00000417133       38380027
11981          ERG ENSG00000157554       ENST00000398910       38380027
11982          ERG ENSG00000157554       ENST00000398910       38380027
11983          ERG ENSG00000157554       ENST00000398910       38380027
11984          ERG ENSG00000157554       ENST00000398910       38380027
11985          ERG ENSG00000157554       ENST00000398910       38380027
11986          ERG ENSG00000157554       ENST00000398910       38380027
11987          ERG ENSG00000157554       ENST00000398910       38380027
11988          ERG ENSG00000157554       ENST00000398910       38380027
11989          ERG ENSG00000157554       ENST00000398910       38380027
11990          ERG ENSG00000157554       ENST00000398910       38380027
11991          ERG ENSG00000157554       ENST00000398910       38380027
11992          ERG ENSG00000157554       ENST00000453032       38380027
11993          ERG ENSG00000157554       ENST00000453032       38380027
11994          ERG ENSG00000157554       ENST00000453032       38380027
11995          ERG ENSG00000157554       ENST00000453032       38380027
11996          ERG ENSG00000157554       ENST00000453032       38380027
11997          ERG ENSG00000157554       ENST00000453032       38380027
11998          ERG ENSG00000157554       ENST00000453032       38380027
11999          ERG ENSG00000157554       ENST00000453032       38380027
12000          ERG ENSG00000157554       ENST00000453032       38380027
12001          ERG ENSG00000157554       ENST00000398919       38380027
12002          ERG ENSG00000157554       ENST00000398919       38380027
12003          ERG ENSG00000157554       ENST00000398919       38380027
12004          ERG ENSG00000157554       ENST00000398919       38380027
12005          ERG ENSG00000157554       ENST00000398919       38380027
12006          ERG ENSG00000157554       ENST00000398919       38380027
12007          ERG ENSG00000157554       ENST00000398919       38380027
12008          ERG ENSG00000157554       ENST00000398919       38380027
12009          ERG ENSG00000157554       ENST00000398919       38380027
12010          ERG ENSG00000157554       ENST00000398919       38380027
12011          ERG ENSG00000157554       ENST00000398919       38380027
12012          ERG ENSG00000157554       ENST00000398919       38380027
12013          ERG ENSG00000157554       ENST00000481609       38380027
12014          ERG ENSG00000157554       ENST00000481609       38380027
12015          ERG ENSG00000157554       ENST00000481609       38380027
12016          ERG ENSG00000157554       ENST00000481609       38380027
12017          ERG ENSG00000157554       ENST00000481609       38380027
12018          ERG ENSG00000157554       ENST00000481609       38380027
12019          ERG ENSG00000157554       ENST00000481609       38380027
12020          ERG ENSG00000157554       ENST00000481609       38380027
12021          ERG ENSG00000157554       ENST00000492833       38380027
12022          ERG ENSG00000157554       ENST00000492833       38380027
12023          ERG ENSG00000157554       ENST00000492833       38380027
12024          ERG ENSG00000157554       ENST00000492833       38380027
12025          ERG ENSG00000157554       ENST00000492833       38380027
12026          ERG ENSG00000157554       ENST00000492833       38380027
12027          ERG ENSG00000157554       ENST00000468474       38380027
12028          ERG ENSG00000157554       ENST00000468474       38380027
12029          ERG ENSG00000157554       ENST00000468474       38380027
12030          ERG ENSG00000157554       ENST00000468474       38380027
12031          ERG ENSG00000157554       ENST00000468474       38380027
12032          ERG ENSG00000157554       ENST00000468474       38380027
12033          ERG ENSG00000157554       ENST00000468474       38380027
12034          ERG ENSG00000157554       ENST00000468474       38380027
12035          ERG ENSG00000157554       ENST00000473107       38380027
12036          ERG ENSG00000157554       ENST00000473107       38380027
12037          ERG ENSG00000157554       ENST00000473107       38380027
12038          ERG ENSG00000157554       ENST00000473107       38380027
12039          ERG ENSG00000157554       ENST00000485493       38380027
12040          ERG ENSG00000157554       ENST00000485493       38380027
12041          ERG ENSG00000157554       ENST00000485493       38380027
12042          ERG ENSG00000157554       ENST00000485493       38380027
12043          ERG ENSG00000157554       ENST00000485493       38380027
12044          ERG ENSG00000157554       ENST00000442448       38380027
12045          ERG ENSG00000157554       ENST00000442448       38380027
12046          ERG ENSG00000157554       ENST00000442448       38380027
12047          ERG ENSG00000157554       ENST00000442448       38380027
12048          ERG ENSG00000157554       ENST00000442448       38380027
12049          ERG ENSG00000157554       ENST00000442448       38380027
12050          ERG ENSG00000157554       ENST00000442448       38380027
12051          ERG ENSG00000157554       ENST00000442448       38380027
12052          ERG ENSG00000157554       ENST00000442448       38380027
12053          ERG ENSG00000157554       ENST00000442448       38380027
12054          ERG ENSG00000157554       ENST00000442448       38380027
12055          ERG ENSG00000157554       ENST00000429727       38380027
12056          ERG ENSG00000157554       ENST00000429727       38380027
12057          ERG ENSG00000157554       ENST00000429727       38380027
12058          ERG ENSG00000157554       ENST00000429727       38380027
12059          ERG ENSG00000157554       ENST00000429727       38380027
12060          ERG ENSG00000157554       ENST00000429727       38380027
12061          ERG ENSG00000157554       ENST00000429727       38380027
12062          ERG ENSG00000157554       ENST00000429727       38380027
12063          ERG ENSG00000157554       ENST00000429727       38380027
12064      GTF2IP2 ENSG00000226930       ENST00000424290       13443373
12065      GTF2IP2 ENSG00000226930       ENST00000424290       13443373
12066      GTF2IP2 ENSG00000226930       ENST00000424290       13443373
12067      GTF2IP2 ENSG00000226930       ENST00000424290       13443373
12068      GTF2IP2 ENSG00000226930       ENST00000424290       13443373
12069      GTF2IP2 ENSG00000226930       ENST00000424290       13443373
12070    KRTAP20-2 ENSG00000184032       ENST00000330798       30635236
12071              ENSG00000237609       ENST00000440714       39028536
12072              ENSG00000237609       ENST00000440714       39028536
12073              ENSG00000273091       ENST00000610276       31735732
12074   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12075   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12076   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12077   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12078   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12079   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12080   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12081   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12082   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12083   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12084   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12085   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12086   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12087   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12088   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12089   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12090   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12091   ANKRD30BP1 ENSG00000175302       ENST00000451052       13384249
12092    KRTAP19-6 ENSG00000186925       ENST00000334046       30541535
12093     RPL23AP3 ENSG00000214914       ENST00000453844       36016079
12094              ENSG00000273199       ENST00000608391       36319792
12095      H2AFZP1 ENSG00000213440       ENST00000416034       44046347
12096      H2AFZP1 ENSG00000213440       ENST00000416034       44046347
12097      RPL37P3 ENSG00000215369       ENST00000456825       17894193
12098         TFF2 ENSG00000160181       ENST00000291526       42346357
12099         TFF2 ENSG00000160181       ENST00000291526       42346357
12100         TFF2 ENSG00000160181       ENST00000291526       42346357
12101         TFF2 ENSG00000160181       ENST00000291526       42346357
12102         TFF2 ENSG00000160181       ENST00000463771       42346357
12103         TFF2 ENSG00000160181       ENST00000463771       42346357
12104         TFF2 ENSG00000160181       ENST00000463771       42346357
12105         TFF2 ENSG00000160181       ENST00000463771       42346357
12106         TFF2 ENSG00000160181       ENST00000475297       42346357
12107         TFF2 ENSG00000160181       ENST00000475297       42346357
12108         TFF2 ENSG00000160181       ENST00000475297       42346357
12109         TFF2 ENSG00000160181       ENST00000475297       42346357
12110         TFF2 ENSG00000160181       ENST00000475297       42346357
12111      RHOT1P2 ENSG00000203616       ENST00000366423       13936993
12112              ENSG00000225637       ENST00000435702       43363332
12113              ENSG00000225637       ENST00000435702       43363332
12114    KRTAP8-2P ENSG00000233036       ENST00000440620       30802242
12115    KRTAP21-3 ENSG00000231068       ENST00000444335       30718525
12116              ENSG00000272825       ENST00000609953       44936303
12117    KRTAP19-7 ENSG00000244362       ENST00000334849       30560875
12118        CLDN8 ENSG00000156284       ENST00000399899       30214006
12119              ENSG00000278106       ENST00000612331       10397644
12120              ENSG00000277693       ENST00000622592       10328411
12121              ENSG00000277693       ENST00000622592       10328411
12122              ENSG00000277693       ENST00000622592       10328411
12123              ENSG00000277693       ENST00000622592       10328411
12124              ENSG00000277693       ENST00000616952       10328411
12125              ENSG00000277693       ENST00000616952       10328411
12126              ENSG00000279062       ENST00000623954       10136419
12127              ENSG00000229962       ENST00000419694       25515473
12128              ENSG00000229962       ENST00000419694       25515473
12129    LINC00158 ENSG00000185433       ENST00000441013       25385820
12130    LINC00158 ENSG00000185433       ENST00000441013       25385820
12131    LINC00158 ENSG00000185433       ENST00000441013       25385820
12132    LINC00158 ENSG00000185433       ENST00000441013       25385820
12133    LINC00158 ENSG00000185433       ENST00000332587       25385820
12134    LINC00158 ENSG00000185433       ENST00000332587       25385820
12135    LINC00158 ENSG00000185433       ENST00000332587       25385820
12136    LINC00158 ENSG00000185433       ENST00000332587       25385820
12137    LINC00158 ENSG00000185433       ENST00000332587       25385820
12138    LINC00158 ENSG00000185433       ENST00000440205       25385820
12139    LINC00158 ENSG00000185433       ENST00000440205       25385820
12140    LINC00158 ENSG00000185433       ENST00000440205       25385820
12141    LINC00158 ENSG00000185433       ENST00000439840       25385820
12142    LINC00158 ENSG00000185433       ENST00000439840       25385820
12143    LINC00158 ENSG00000185433       ENST00000439840       25385820
12144    LINC00158 ENSG00000185433       ENST00000439840       25385820
12145              ENSG00000279534       ENST00000624405       25371827
12146     RPL13AP7 ENSG00000213885       ENST00000425147       25361821
12147    LINC01667 ENSG00000280081       ENST00000623554        9781918
12148    LINC01667 ENSG00000280081       ENST00000623554        9781918
12149    LINC01667 ENSG00000280081       ENST00000623554        9781918
12150    LINC01667 ENSG00000280081       ENST00000623554        9781918
12151    LINC01667 ENSG00000280081       ENST00000623554        9781918
12152    LINC01667 ENSG00000280081       ENST00000623554        9781918
12153    LINC01667 ENSG00000280081       ENST00000623919        9781918
12154    LINC01667 ENSG00000280081       ENST00000623919        9781918
12155    LINC01667 ENSG00000280081       ENST00000623919        9781918
12156    LINC01667 ENSG00000280081       ENST00000623933        9781918
12157    LINC01667 ENSG00000280081       ENST00000623933        9781918
12158    LINC01667 ENSG00000280081       ENST00000623933        9781918
12159    LINC01667 ENSG00000280081       ENST00000623933        9781918
12160    LINC01667 ENSG00000280081       ENST00000623933        9781918
12161              ENSG00000280075       ENST00000623929        9810381
12162              ENSG00000279211       ENST00000623408        9580024
12163              ENSG00000279864       ENST00000624736        9558970
12164     SNX18P12 ENSG00000279718       ENST00000624821        9364467
12165              ENSG00000222042       ENST00000409758       25169431
12166              ENSG00000222042       ENST00000409758       25169431
12167              ENSG00000222042       ENST00000409758       25169431
12168              ENSG00000222042       ENST00000409758       25169431
12169              ENSG00000223870       ENST00000426609       25127469
12170              ENSG00000223870       ENST00000426609       25127469
12171              ENSG00000223870       ENST00000426609       25127469
12172              ENSG00000223870       ENST00000426609       25127469
12173              ENSG00000232512       ENST00000453802       25095022
12174              ENSG00000232512       ENST00000453802       25095022
12175              ENSG00000232512       ENST00000453802       25095022
12176              ENSG00000232512       ENST00000418942       25095022
12177              ENSG00000232512       ENST00000418942       25095022
12178              ENSG00000232512       ENST00000418942       25095022
12179              ENSG00000227090       ENST00000446404       24886676
12180              ENSG00000227090       ENST00000446404       24886676
12181    LINC01692 ENSG00000226983       ENST00000441009       24840550
12182    LINC01692 ENSG00000226983       ENST00000441009       24840550
12183    LINC01692 ENSG00000226983       ENST00000441009       24840550
12184    LINC01692 ENSG00000226983       ENST00000441009       24840550
12185              ENSG00000230379       ENST00000454182       24938431
12186              ENSG00000230379       ENST00000454182       24938431
12187              ENSG00000230379       ENST00000441666       24938431
12188              ENSG00000230379       ENST00000441666       24938431
12189              ENSG00000230379       ENST00000444178       24938431
12190              ENSG00000230379       ENST00000444178       24938431
12191    LINC01684 ENSG00000237484       ENST00000453784       24428740
12192    LINC01684 ENSG00000237484       ENST00000453784       24428740
12193    LINC01684 ENSG00000237484       ENST00000453784       24428740
12194    LINC01684 ENSG00000237484       ENST00000453784       24428740
12195    LINC01684 ENSG00000237484       ENST00000453784       24428740
12196    LINC01684 ENSG00000237484       ENST00000453784       24428740
12197    LINC01684 ENSG00000237484       ENST00000423581       24428740
12198    LINC01684 ENSG00000237484       ENST00000423581       24428740
12199    LINC01684 ENSG00000237484       ENST00000423581       24428740
12200    LINC01684 ENSG00000237484       ENST00000415182       24428740
12201    LINC01684 ENSG00000237484       ENST00000415182       24428740
12202    LINC01684 ENSG00000237484       ENST00000415182       24428740
12203              ENSG00000226996       ENST00000415269       24043257
12204              ENSG00000226996       ENST00000415269       24043257
12205              ENSG00000226996       ENST00000434859       24043257
12206              ENSG00000226996       ENST00000434859       24043257
12207              ENSG00000235564       ENST00000447405       23960905
12208              ENSG00000235564       ENST00000447405       23960905
12209              ENSG00000279720       ENST00000624968        9082601
12210              ENSG00000227716       ENST00000433101       23477641
12211              ENSG00000227716       ENST00000433101       23477641
12212              ENSG00000279501       ENST00000623236        8996496
12213              ENSG00000279501       ENST00000623236        8996496
12214        TUBAP ENSG00000237569       ENST00000425085       23407658
12215        TUBAP ENSG00000237569       ENST00000425085       23407658
12216     RIMKLBP1 ENSG00000189089       ENST00000408914       36050214
12217         CBR3 ENSG00000159231       ENST00000290354       36134912
12218         CBR3 ENSG00000159231       ENST00000290354       36134912
12219         CBR3 ENSG00000159231       ENST00000290354       36134912
12220     TRAPPC10 ENSG00000160218       ENST00000380221       44012319
12221     TRAPPC10 ENSG00000160218       ENST00000380221       44012319
12222     TRAPPC10 ENSG00000160218       ENST00000380221       44012319
12223     TRAPPC10 ENSG00000160218       ENST00000380221       44012319
12224     TRAPPC10 ENSG00000160218       ENST00000380221       44012319
12225     TRAPPC10 ENSG00000160218       ENST00000380221       44012319
12226     TRAPPC10 ENSG00000160218       ENST00000380221       44012319
12227     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12228     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12229     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12230     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12231     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12232     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12233     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12234     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12235     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12236     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12237     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12238     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12239     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12240     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12241     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12242     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12243     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12244     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12245     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12246     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12247     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12248     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12249     TRAPPC10 ENSG00000160218       ENST00000291574       44012319
12250     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12251     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12252     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12253     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12254     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12255     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12256     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12257     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12258     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12259     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12260     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12261     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12262     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12263     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12264     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12265     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12266     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12267     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12268     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12269     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12270     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12271     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12272     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12273     TRAPPC10 ENSG00000160218       ENST00000422875       44012319
12274     TRAPPC10 ENSG00000160218       ENST00000481460       44012319
12275     TRAPPC10 ENSG00000160218       ENST00000481460       44012319
12276     TRAPPC10 ENSG00000160218       ENST00000481460       44012319
12277     TRAPPC10 ENSG00000160218       ENST00000461889       44012319
12278     TRAPPC10 ENSG00000160218       ENST00000461889       44012319
12279     TRAPPC10 ENSG00000160218       ENST00000459741       44012319
12280     TRAPPC10 ENSG00000160218       ENST00000459741       44012319
12281     TRAPPC10 ENSG00000160218       ENST00000459741       44012319
12282     TRAPPC10 ENSG00000160218       ENST00000459741       44012319
12283     TRAPPC10 ENSG00000160218       ENST00000459741       44012319
12284     TRAPPC10 ENSG00000160218       ENST00000459741       44012319
12285     TRAPPC10 ENSG00000160218       ENST00000465905       44012319
12286     TRAPPC10 ENSG00000160218       ENST00000465905       44012319
12287     TRAPPC10 ENSG00000160218       ENST00000465905       44012319
12288     TRAPPC10 ENSG00000160218       ENST00000465905       44012319
12289     TRAPPC10 ENSG00000160218       ENST00000465905       44012319
12290     TRAPPC10 ENSG00000160218       ENST00000483973       44012319
12291     TRAPPC10 ENSG00000160218       ENST00000483973       44012319
12292     TRAPPC10 ENSG00000160218       ENST00000483973       44012319
12293     TRAPPC10 ENSG00000160218       ENST00000483973       44012319
12294     TRAPPC10 ENSG00000160218       ENST00000483973       44012319
12295     TRAPPC10 ENSG00000160218       ENST00000486746       44012319
12296     TRAPPC10 ENSG00000160218       ENST00000486746       44012319
12297     TRAPPC10 ENSG00000160218       ENST00000486746       44012319
12298     TRAPPC10 ENSG00000160218       ENST00000486746       44012319
12299     TRAPPC10 ENSG00000160218       ENST00000486746       44012319
12300     TRAPPC10 ENSG00000160218       ENST00000469521       44012319
12301     TRAPPC10 ENSG00000160218       ENST00000469521       44012319
12302     TRAPPC10 ENSG00000160218       ENST00000469521       44012319
12303     TRAPPC10 ENSG00000160218       ENST00000469521       44012319
12304     TRAPPC10 ENSG00000160218       ENST00000469521       44012319
12305     TRAPPC10 ENSG00000160218       ENST00000485621       44012319
12306     TRAPPC10 ENSG00000160218       ENST00000485621       44012319
12307     TRAPPC10 ENSG00000160218       ENST00000485621       44012319
12308     TRAPPC10 ENSG00000160218       ENST00000468864       44012319
12309     TRAPPC10 ENSG00000160218       ENST00000468864       44012319
12310     TRAPPC10 ENSG00000160218       ENST00000468864       44012319
12311        PCBP3 ENSG00000183570       ENST00000465077       45643694
12312        PCBP3 ENSG00000183570       ENST00000465077       45643694
12313        PCBP3 ENSG00000183570       ENST00000465077       45643694
12314        PCBP3 ENSG00000183570       ENST00000465077       45643694
12315        PCBP3 ENSG00000183570       ENST00000400314       45643694
12316        PCBP3 ENSG00000183570       ENST00000400314       45643694
12317        PCBP3 ENSG00000183570       ENST00000400314       45643694
12318        PCBP3 ENSG00000183570       ENST00000400314       45643694
12319        PCBP3 ENSG00000183570       ENST00000400314       45643694
12320        PCBP3 ENSG00000183570       ENST00000400314       45643694
12321        PCBP3 ENSG00000183570       ENST00000400314       45643694
12322        PCBP3 ENSG00000183570       ENST00000400314       45643694
12323        PCBP3 ENSG00000183570       ENST00000400314       45643694
12324        PCBP3 ENSG00000183570       ENST00000400314       45643694
12325        PCBP3 ENSG00000183570       ENST00000400314       45643694
12326        PCBP3 ENSG00000183570       ENST00000400314       45643694
12327        PCBP3 ENSG00000183570       ENST00000400314       45643694
12328        PCBP3 ENSG00000183570       ENST00000400314       45643694
12329        PCBP3 ENSG00000183570       ENST00000400314       45643694
12330        PCBP3 ENSG00000183570       ENST00000400314       45643694
12331        PCBP3 ENSG00000183570       ENST00000472191       45643694
12332        PCBP3 ENSG00000183570       ENST00000472191       45643694
12333        PCBP3 ENSG00000183570       ENST00000594149       45643694
12334        PCBP3 ENSG00000183570       ENST00000594149       45643694
12335        PCBP3 ENSG00000183570       ENST00000594149       45643694
12336        PCBP3 ENSG00000183570       ENST00000594149       45643694
12337        PCBP3 ENSG00000183570       ENST00000594149       45643694
12338        PCBP3 ENSG00000183570       ENST00000594149       45643694
12339        PCBP3 ENSG00000183570       ENST00000628776       45643694
12340        PCBP3 ENSG00000183570       ENST00000628776       45643694
12341        PCBP3 ENSG00000183570       ENST00000628776       45643694
12342        PCBP3 ENSG00000183570       ENST00000628776       45643694
12343        PCBP3 ENSG00000183570       ENST00000593338       45643694
12344        PCBP3 ENSG00000183570       ENST00000593338       45643694
12345        PCBP3 ENSG00000183570       ENST00000609985       45643694
12346        PCBP3 ENSG00000183570       ENST00000609985       45643694
12347        PCBP3 ENSG00000183570       ENST00000594320       45643694
12348        PCBP3 ENSG00000183570       ENST00000594320       45643694
12349        PCBP3 ENSG00000183570       ENST00000610200       45643694
12350        PCBP3 ENSG00000183570       ENST00000610200       45643694
12351        PCBP3 ENSG00000183570       ENST00000610200       45643694
12352        PCBP3 ENSG00000183570       ENST00000423045       45643694
12353        PCBP3 ENSG00000183570       ENST00000423045       45643694
12354        PCBP3 ENSG00000183570       ENST00000423045       45643694
12355        PCBP3 ENSG00000183570       ENST00000400310       45643694
12356        PCBP3 ENSG00000183570       ENST00000400310       45643694
12357        PCBP3 ENSG00000183570       ENST00000400310       45643694
12358        PCBP3 ENSG00000183570       ENST00000400310       45643694
12359        PCBP3 ENSG00000183570       ENST00000400310       45643694
12360        PCBP3 ENSG00000183570       ENST00000400310       45643694
12361        PCBP3 ENSG00000183570       ENST00000400310       45643694
12362        PCBP3 ENSG00000183570       ENST00000400310       45643694
12363        PCBP3 ENSG00000183570       ENST00000400310       45643694
12364        PCBP3 ENSG00000183570       ENST00000400310       45643694
12365        PCBP3 ENSG00000183570       ENST00000400310       45643694
12366        PCBP3 ENSG00000183570       ENST00000400310       45643694
12367        PCBP3 ENSG00000183570       ENST00000400310       45643694
12368        PCBP3 ENSG00000183570       ENST00000400310       45643694
12369        PCBP3 ENSG00000183570       ENST00000400309       45643694
12370        PCBP3 ENSG00000183570       ENST00000400309       45643694
12371        PCBP3 ENSG00000183570       ENST00000400309       45643694
12372        PCBP3 ENSG00000183570       ENST00000400309       45643694
12373        PCBP3 ENSG00000183570       ENST00000400309       45643694
12374        PCBP3 ENSG00000183570       ENST00000400309       45643694
12375        PCBP3 ENSG00000183570       ENST00000400309       45643694
12376        PCBP3 ENSG00000183570       ENST00000400309       45643694
12377        PCBP3 ENSG00000183570       ENST00000400309       45643694
12378        PCBP3 ENSG00000183570       ENST00000400309       45643694
12379        PCBP3 ENSG00000183570       ENST00000400309       45643694
12380        PCBP3 ENSG00000183570       ENST00000400309       45643694
12381        PCBP3 ENSG00000183570       ENST00000400309       45643694
12382        PCBP3 ENSG00000183570       ENST00000400309       45643694
12383        PCBP3 ENSG00000183570       ENST00000400308       45643694
12384        PCBP3 ENSG00000183570       ENST00000400308       45643694
12385        PCBP3 ENSG00000183570       ENST00000400308       45643694
12386        PCBP3 ENSG00000183570       ENST00000400308       45643694
12387        PCBP3 ENSG00000183570       ENST00000400308       45643694
12388        PCBP3 ENSG00000183570       ENST00000400308       45643694
12389        PCBP3 ENSG00000183570       ENST00000400308       45643694
12390        PCBP3 ENSG00000183570       ENST00000400308       45643694
12391        PCBP3 ENSG00000183570       ENST00000400308       45643694
12392        PCBP3 ENSG00000183570       ENST00000400308       45643694
12393        PCBP3 ENSG00000183570       ENST00000400308       45643694
12394        PCBP3 ENSG00000183570       ENST00000400308       45643694
12395        PCBP3 ENSG00000183570       ENST00000400308       45643694
12396        PCBP3 ENSG00000183570       ENST00000481302       45643694
12397        PCBP3 ENSG00000183570       ENST00000481302       45643694
12398        PCBP3 ENSG00000183570       ENST00000481302       45643694
12399        PCBP3 ENSG00000183570       ENST00000481302       45643694
12400        PCBP3 ENSG00000183570       ENST00000481302       45643694
12401        PCBP3 ENSG00000183570       ENST00000498121       45643694
12402        PCBP3 ENSG00000183570       ENST00000498121       45643694
12403        PCBP3 ENSG00000183570       ENST00000498121       45643694
12404        PCBP3 ENSG00000183570       ENST00000498121       45643694
12405        PCBP3 ENSG00000183570       ENST00000498121       45643694
12406        PCBP3 ENSG00000183570       ENST00000498121       45643694
12407        PCBP3 ENSG00000183570       ENST00000549265       45643694
12408        PCBP3 ENSG00000183570       ENST00000549265       45643694
12409        PCBP3 ENSG00000183570       ENST00000400305       45643694
12410        PCBP3 ENSG00000183570       ENST00000400305       45643694
12411        PCBP3 ENSG00000183570       ENST00000400305       45643694
12412        PCBP3 ENSG00000183570       ENST00000400305       45643694
12413        PCBP3 ENSG00000183570       ENST00000400305       45643694
12414        PCBP3 ENSG00000183570       ENST00000400305       45643694
12415        PCBP3 ENSG00000183570       ENST00000400305       45643694
12416        PCBP3 ENSG00000183570       ENST00000400305       45643694
12417        PCBP3 ENSG00000183570       ENST00000400305       45643694
12418        PCBP3 ENSG00000183570       ENST00000400305       45643694
12419        PCBP3 ENSG00000183570       ENST00000400305       45643694
12420        PCBP3 ENSG00000183570       ENST00000400305       45643694
12421        PCBP3 ENSG00000183570       ENST00000400304       45643694
12422        PCBP3 ENSG00000183570       ENST00000400304       45643694
12423        PCBP3 ENSG00000183570       ENST00000400304       45643694
12424        PCBP3 ENSG00000183570       ENST00000400304       45643694
12425        PCBP3 ENSG00000183570       ENST00000400304       45643694
12426        PCBP3 ENSG00000183570       ENST00000400304       45643694
12427        PCBP3 ENSG00000183570       ENST00000400304       45643694
12428        PCBP3 ENSG00000183570       ENST00000400304       45643694
12429        PCBP3 ENSG00000183570       ENST00000400304       45643694
12430        PCBP3 ENSG00000183570       ENST00000400304       45643694
12431        PCBP3 ENSG00000183570       ENST00000400304       45643694
12432        PCBP3 ENSG00000183570       ENST00000400304       45643694
12433        PCBP3 ENSG00000183570       ENST00000400304       45643694
12434        PCBP3 ENSG00000183570       ENST00000468429       45643694
12435        PCBP3 ENSG00000183570       ENST00000468429       45643694
12436        PCBP3 ENSG00000183570       ENST00000468429       45643694
12437        PCBP3 ENSG00000183570       ENST00000468429       45643694
12438        PCBP3 ENSG00000183570       ENST00000468429       45643694
12439        PCBP3 ENSG00000183570       ENST00000468429       45643694
12440        PCBP3 ENSG00000183570       ENST00000468429       45643694
12441        PCBP3 ENSG00000183570       ENST00000468429       45643694
12442        PCBP3 ENSG00000183570       ENST00000468429       45643694
12443        PCBP3 ENSG00000183570       ENST00000475402       45643694
12444        PCBP3 ENSG00000183570       ENST00000475402       45643694
12445        PCBP3 ENSG00000183570       ENST00000475402       45643694
12446        PCBP3 ENSG00000183570       ENST00000475402       45643694
12447        PCBP3 ENSG00000183570       ENST00000475402       45643694
12448        PCBP3 ENSG00000183570       ENST00000449640       45643694
12449        PCBP3 ENSG00000183570       ENST00000449640       45643694
12450        PCBP3 ENSG00000183570       ENST00000449640       45643694
12451        PCBP3 ENSG00000183570       ENST00000449640       45643694
12452        PCBP3 ENSG00000183570       ENST00000449640       45643694
12453        PCBP3 ENSG00000183570       ENST00000449640       45643694
12454        PCBP3 ENSG00000183570       ENST00000449640       45643694
12455        PCBP3 ENSG00000183570       ENST00000449640       45643694
12456        PCBP3 ENSG00000183570       ENST00000449640       45643694
12457        PCBP3 ENSG00000183570       ENST00000449640       45643694
12458        PCBP3 ENSG00000183570       ENST00000449640       45643694
12459        PCBP3 ENSG00000183570       ENST00000449640       45643694
12460        PCBP3 ENSG00000183570       ENST00000449640       45643694
12461        PCBP3 ENSG00000183570       ENST00000449640       45643694
12462         CSTB ENSG00000160213       ENST00000639959       43772511
12463         CSTB ENSG00000160213       ENST00000639959       43772511
12464         CSTB ENSG00000160213       ENST00000291568       43772511
12465         CSTB ENSG00000160213       ENST00000291568       43772511
12466         CSTB ENSG00000160213       ENST00000291568       43772511
12467         CSTB ENSG00000160213       ENST00000640406       43772511
12468         CSTB ENSG00000160213       ENST00000640406       43772511
12469         CSTB ENSG00000160213       ENST00000480147       43772511
12470        USP25 ENSG00000155313       ENST00000285679       15730025
12471        USP25 ENSG00000155313       ENST00000285679       15730025
12472        USP25 ENSG00000155313       ENST00000285679       15730025
12473        USP25 ENSG00000155313       ENST00000285679       15730025
12474        USP25 ENSG00000155313       ENST00000285679       15730025
12475        USP25 ENSG00000155313       ENST00000285679       15730025
12476        USP25 ENSG00000155313       ENST00000285679       15730025
12477        USP25 ENSG00000155313       ENST00000285679       15730025
12478        USP25 ENSG00000155313       ENST00000285679       15730025
12479        USP25 ENSG00000155313       ENST00000285679       15730025
12480        USP25 ENSG00000155313       ENST00000285679       15730025
12481        USP25 ENSG00000155313       ENST00000285679       15730025
12482        USP25 ENSG00000155313       ENST00000285679       15730025
12483        USP25 ENSG00000155313       ENST00000285679       15730025
12484        USP25 ENSG00000155313       ENST00000285679       15730025
12485        USP25 ENSG00000155313       ENST00000285679       15730025
12486        USP25 ENSG00000155313       ENST00000285679       15730025
12487        USP25 ENSG00000155313       ENST00000285679       15730025
12488        USP25 ENSG00000155313       ENST00000285679       15730025
12489        USP25 ENSG00000155313       ENST00000285679       15730025
12490        USP25 ENSG00000155313       ENST00000285679       15730025
12491        USP25 ENSG00000155313       ENST00000285679       15730025
12492        USP25 ENSG00000155313       ENST00000285679       15730025
12493        USP25 ENSG00000155313       ENST00000285679       15730025
12494        USP25 ENSG00000155313       ENST00000351097       15730025
12495        USP25 ENSG00000155313       ENST00000351097       15730025
12496        USP25 ENSG00000155313       ENST00000351097       15730025
12497        USP25 ENSG00000155313       ENST00000351097       15730025
12498        USP25 ENSG00000155313       ENST00000351097       15730025
12499        USP25 ENSG00000155313       ENST00000351097       15730025
12500        USP25 ENSG00000155313       ENST00000351097       15730025
12501        USP25 ENSG00000155313       ENST00000351097       15730025
12502        USP25 ENSG00000155313       ENST00000351097       15730025
12503        USP25 ENSG00000155313       ENST00000351097       15730025
12504        USP25 ENSG00000155313       ENST00000351097       15730025
12505        USP25 ENSG00000155313       ENST00000285681       15730025
12506        USP25 ENSG00000155313       ENST00000285681       15730025
12507        USP25 ENSG00000155313       ENST00000285681       15730025
12508        USP25 ENSG00000155313       ENST00000285681       15730025
12509        USP25 ENSG00000155313       ENST00000285681       15730025
12510        USP25 ENSG00000155313       ENST00000285681       15730025
12511        USP25 ENSG00000155313       ENST00000285681       15730025
12512        USP25 ENSG00000155313       ENST00000285681       15730025
12513        USP25 ENSG00000155313       ENST00000285681       15730025
12514        USP25 ENSG00000155313       ENST00000285681       15730025
12515        USP25 ENSG00000155313       ENST00000285681       15730025
12516        USP25 ENSG00000155313       ENST00000285681       15730025
12517        USP25 ENSG00000155313       ENST00000285681       15730025
12518        USP25 ENSG00000155313       ENST00000285681       15730025
12519        USP25 ENSG00000155313       ENST00000285681       15730025
12520        USP25 ENSG00000155313       ENST00000285681       15730025
12521        USP25 ENSG00000155313       ENST00000285681       15730025
12522        USP25 ENSG00000155313       ENST00000285681       15730025
12523        USP25 ENSG00000155313       ENST00000285681       15730025
12524        USP25 ENSG00000155313       ENST00000285681       15730025
12525        USP25 ENSG00000155313       ENST00000285681       15730025
12526        USP25 ENSG00000155313       ENST00000285681       15730025
12527        USP25 ENSG00000155313       ENST00000285681       15730025
12528        USP25 ENSG00000155313       ENST00000285681       15730025
12529        USP25 ENSG00000155313       ENST00000285681       15730025
12530        USP25 ENSG00000155313       ENST00000547201       15730025
12531        USP25 ENSG00000155313       ENST00000547201       15730025
12532        USP25 ENSG00000155313       ENST00000547201       15730025
12533        USP25 ENSG00000155313       ENST00000547201       15730025
12534        USP25 ENSG00000155313       ENST00000547201       15730025
12535        USP25 ENSG00000155313       ENST00000547201       15730025
12536        USP25 ENSG00000155313       ENST00000547201       15730025
12537        USP25 ENSG00000155313       ENST00000547201       15730025
12538        USP25 ENSG00000155313       ENST00000549362       15730025
12539        USP25 ENSG00000155313       ENST00000549362       15730025
12540        USP25 ENSG00000155313       ENST00000549362       15730025
12541        USP25 ENSG00000155313       ENST00000549362       15730025
12542        USP25 ENSG00000155313       ENST00000549362       15730025
12543        USP25 ENSG00000155313       ENST00000549362       15730025
12544        USP25 ENSG00000155313       ENST00000464435       15730025
12545        USP25 ENSG00000155313       ENST00000464435       15730025
12546        USP25 ENSG00000155313       ENST00000453553       15730025
12547        USP25 ENSG00000155313       ENST00000453553       15730025
12548        USP25 ENSG00000155313       ENST00000453553       15730025
12549        USP25 ENSG00000155313       ENST00000453553       15730025
12550        USP25 ENSG00000155313       ENST00000453553       15730025
12551        USP25 ENSG00000155313       ENST00000449491       15730025
12552        USP25 ENSG00000155313       ENST00000449491       15730025
12553        USP25 ENSG00000155313       ENST00000449491       15730025
12554        USP25 ENSG00000155313       ENST00000449491       15730025
12555        USP25 ENSG00000155313       ENST00000449491       15730025
12556        USP25 ENSG00000155313       ENST00000449491       15730025
12557        USP25 ENSG00000155313       ENST00000449491       15730025
12558        USP25 ENSG00000155313       ENST00000478932       15730025
12559        USP25 ENSG00000155313       ENST00000478932       15730025
12560        USP25 ENSG00000155313       ENST00000400183       15730025
12561        USP25 ENSG00000155313       ENST00000400183       15730025
12562        USP25 ENSG00000155313       ENST00000400183       15730025
12563        USP25 ENSG00000155313       ENST00000400183       15730025
12564        USP25 ENSG00000155313       ENST00000400183       15730025
12565        USP25 ENSG00000155313       ENST00000400183       15730025
12566        USP25 ENSG00000155313       ENST00000400183       15730025
12567        USP25 ENSG00000155313       ENST00000400183       15730025
12568        USP25 ENSG00000155313       ENST00000400183       15730025
12569        USP25 ENSG00000155313       ENST00000400183       15730025
12570        USP25 ENSG00000155313       ENST00000400183       15730025
12571        USP25 ENSG00000155313       ENST00000400183       15730025
12572        USP25 ENSG00000155313       ENST00000400183       15730025
12573        USP25 ENSG00000155313       ENST00000400183       15730025
12574        USP25 ENSG00000155313       ENST00000400183       15730025
12575        USP25 ENSG00000155313       ENST00000400183       15730025
12576        USP25 ENSG00000155313       ENST00000400183       15730025
12577        USP25 ENSG00000155313       ENST00000400183       15730025
12578        USP25 ENSG00000155313       ENST00000400183       15730025
12579        USP25 ENSG00000155313       ENST00000400183       15730025
12580        USP25 ENSG00000155313       ENST00000400183       15730025
12581        USP25 ENSG00000155313       ENST00000400183       15730025
12582        USP25 ENSG00000155313       ENST00000400183       15730025
12583        USP25 ENSG00000155313       ENST00000400183       15730025
12584        USP25 ENSG00000155313       ENST00000400183       15730025
12585        USP25 ENSG00000155313       ENST00000400183       15730025
12586        PSMG1 ENSG00000183527       ENST00000331573       39174769
12587        PSMG1 ENSG00000183527       ENST00000331573       39174769
12588        PSMG1 ENSG00000183527       ENST00000331573       39174769
12589        PSMG1 ENSG00000183527       ENST00000331573       39174769
12590        PSMG1 ENSG00000183527       ENST00000331573       39174769
12591        PSMG1 ENSG00000183527       ENST00000331573       39174769
12592        PSMG1 ENSG00000183527       ENST00000331573       39174769
12593        PSMG1 ENSG00000183527       ENST00000481921       39174769
12594        PSMG1 ENSG00000183527       ENST00000481921       39174769
12595        PSMG1 ENSG00000183527       ENST00000481921       39174769
12596        PSMG1 ENSG00000183527       ENST00000411828       39174769
12597        PSMG1 ENSG00000183527       ENST00000411828       39174769
12598        PSMG1 ENSG00000183527       ENST00000411828       39174769
12599        PSMG1 ENSG00000183527       ENST00000411828       39174769
12600        PSMG1 ENSG00000183527       ENST00000411828       39174769
12601        PSMG1 ENSG00000183527       ENST00000411828       39174769
12602        PSMG1 ENSG00000183527       ENST00000411828       39174769
12603        PSMG1 ENSG00000183527       ENST00000431628       39174769
12604        PSMG1 ENSG00000183527       ENST00000431628       39174769
12605        PSMG1 ENSG00000183527       ENST00000431628       39174769
12606        PSMG1 ENSG00000183527       ENST00000431628       39174769
12607        PSMG1 ENSG00000183527       ENST00000431628       39174769
12608        PSMG1 ENSG00000183527       ENST00000431628       39174769
12609        PSMG1 ENSG00000183527       ENST00000380900       39174769
12610        PSMG1 ENSG00000183527       ENST00000380900       39174769
12611        PSMG1 ENSG00000183527       ENST00000380900       39174769
12612        PSMG1 ENSG00000183527       ENST00000380900       39174769
12613        PSMG1 ENSG00000183527       ENST00000380900       39174769
12614        PSMG1 ENSG00000183527       ENST00000380900       39174769
12615              ENSG00000215447       ENST00000454115       45288052
12616              ENSG00000215447       ENST00000454115       45288052
12617              ENSG00000215447       ENST00000454115       45288052
12618              ENSG00000215447       ENST00000400362       45288052
12619              ENSG00000215447       ENST00000400362       45288052
12620              ENSG00000215447       ENST00000400362       45288052
12621    RPL23AP12 ENSG00000228861       ENST00000467573       39127568
12622        NF1P3 ENSG00000183249       ENST00000457709       14000927
12623        NF1P3 ENSG00000183249       ENST00000457709       14000927
12624        NF1P3 ENSG00000183249       ENST00000457709       14000927
12625        NF1P3 ENSG00000183249       ENST00000457709       14000927
12626              ENSG00000279493       ENST00000624081        5011799
12627              ENSG00000279493       ENST00000624081        5011799
12628              ENSG00000279493       ENST00000624081        5011799
12629              ENSG00000279493       ENST00000624081        5011799
12630      SNX19P1 ENSG00000228184       ENST00000444901       13525599
12631         SIK1 ENSG00000142178       ENST00000270162       43414515
12632         SIK1 ENSG00000142178       ENST00000270162       43414515
12633         SIK1 ENSG00000142178       ENST00000270162       43414515
12634         SIK1 ENSG00000142178       ENST00000270162       43414515
12635         SIK1 ENSG00000142178       ENST00000270162       43414515
12636         SIK1 ENSG00000142178       ENST00000270162       43414515
12637         SIK1 ENSG00000142178       ENST00000270162       43414515
12638         SIK1 ENSG00000142178       ENST00000270162       43414515
12639         SIK1 ENSG00000142178       ENST00000270162       43414515
12640         SIK1 ENSG00000142178       ENST00000270162       43414515
12641         SIK1 ENSG00000142178       ENST00000270162       43414515
12642         SIK1 ENSG00000142178       ENST00000270162       43414515
12643         SIK1 ENSG00000142178       ENST00000270162       43414515
12644         SIK1 ENSG00000142178       ENST00000270162       43414515
12645         SIK1 ENSG00000142178       ENST00000478426       43414515
12646         SIK1 ENSG00000142178       ENST00000478426       43414515
12647         SIK1 ENSG00000142178       ENST00000478426       43414515
12648              ENSG00000280108       ENST00000624445       13305152
12649              ENSG00000280108       ENST00000624445       13305152
12650    LINC00334 ENSG00000182586       ENST00000584169       45234340
12651    LINC00334 ENSG00000182586       ENST00000584169       45234340
12652    LINC00334 ENSG00000182586       ENST00000584169       45234340
12653    LINC00334 ENSG00000182586       ENST00000638500       45234340
12654    LINC00334 ENSG00000182586       ENST00000638500       45234340
12655    LINC00334 ENSG00000182586       ENST00000638500       45234340
12656    LINC00334 ENSG00000182586       ENST00000638500       45234340
12657    LINC00334 ENSG00000182586       ENST00000328344       45234340
12658    LINC00334 ENSG00000182586       ENST00000328344       45234340
12659    LINC00334 ENSG00000182586       ENST00000328344       45234340
12660       KCNJ15 ENSG00000157551       ENST00000549158       38157034
12661       KCNJ15 ENSG00000157551       ENST00000549158       38157034
12662       KCNJ15 ENSG00000157551       ENST00000549158       38157034
12663       KCNJ15 ENSG00000157551       ENST00000549158       38157034
12664       KCNJ15 ENSG00000157551       ENST00000549158       38157034
12665       KCNJ15 ENSG00000157551       ENST00000549158       38157034
12666       KCNJ15 ENSG00000157551       ENST00000549805       38157034
12667       KCNJ15 ENSG00000157551       ENST00000549805       38157034
12668       KCNJ15 ENSG00000157551       ENST00000549805       38157034
12669       KCNJ15 ENSG00000157551       ENST00000549805       38157034
12670       KCNJ15 ENSG00000157551       ENST00000549805       38157034
12671       KCNJ15 ENSG00000157551       ENST00000549805       38157034
12672       KCNJ15 ENSG00000157551       ENST00000549805       38157034
12673       KCNJ15 ENSG00000157551       ENST00000547341       38157034
12674       KCNJ15 ENSG00000157551       ENST00000547341       38157034
12675       KCNJ15 ENSG00000157551       ENST00000547341       38157034
12676       KCNJ15 ENSG00000157551       ENST00000547341       38157034
12677       KCNJ15 ENSG00000157551       ENST00000547341       38157034
12678       KCNJ15 ENSG00000157551       ENST00000549932       38157034
12679       KCNJ15 ENSG00000157551       ENST00000549932       38157034
12680       KCNJ15 ENSG00000157551       ENST00000549932       38157034
12681       KCNJ15 ENSG00000157551       ENST00000549932       38157034
12682       KCNJ15 ENSG00000157551       ENST00000549932       38157034
12683       KCNJ15 ENSG00000157551       ENST00000547595       38157034
12684       KCNJ15 ENSG00000157551       ENST00000547595       38157034
12685       KCNJ15 ENSG00000157551       ENST00000547595       38157034
12686       KCNJ15 ENSG00000157551       ENST00000548700       38157034
12687       KCNJ15 ENSG00000157551       ENST00000548700       38157034
12688       KCNJ15 ENSG00000157551       ENST00000548700       38157034
12689       KCNJ15 ENSG00000157551       ENST00000551422       38157034
12690       KCNJ15 ENSG00000157551       ENST00000551422       38157034
12691       KCNJ15 ENSG00000157551       ENST00000551422       38157034
12692       KCNJ15 ENSG00000157551       ENST00000551422       38157034
12693       KCNJ15 ENSG00000157551       ENST00000398925       38157034
12694       KCNJ15 ENSG00000157551       ENST00000398925       38157034
12695       KCNJ15 ENSG00000157551       ENST00000398925       38157034
12696       KCNJ15 ENSG00000157551       ENST00000398925       38157034
12697       KCNJ15 ENSG00000157551       ENST00000398925       38157034
12698       KCNJ15 ENSG00000157551       ENST00000398928       38157034
12699       KCNJ15 ENSG00000157551       ENST00000398928       38157034
12700       KCNJ15 ENSG00000157551       ENST00000398928       38157034
12701       KCNJ15 ENSG00000157551       ENST00000398928       38157034
12702       KCNJ15 ENSG00000157551       ENST00000328656       38157034
12703       KCNJ15 ENSG00000157551       ENST00000328656       38157034
12704       KCNJ15 ENSG00000157551       ENST00000328656       38157034
12705       KCNJ15 ENSG00000157551       ENST00000328656       38157034
12706       KCNJ15 ENSG00000157551       ENST00000443341       38157034
12707       KCNJ15 ENSG00000157551       ENST00000443341       38157034
12708       KCNJ15 ENSG00000157551       ENST00000443341       38157034
12709       KCNJ15 ENSG00000157551       ENST00000443341       38157034
12710       KCNJ15 ENSG00000157551       ENST00000443341       38157034
12711       KCNJ15 ENSG00000157551       ENST00000443341       38157034
12712       KCNJ15 ENSG00000157551       ENST00000443341       38157034
12713       KCNJ15 ENSG00000157551       ENST00000417042       38157034
12714       KCNJ15 ENSG00000157551       ENST00000417042       38157034
12715       KCNJ15 ENSG00000157551       ENST00000417042       38157034
12716       KCNJ15 ENSG00000157551       ENST00000417042       38157034
12717       KCNJ15 ENSG00000157551       ENST00000417042       38157034
12718       KCNJ15 ENSG00000157551       ENST00000398938       38157034
12719       KCNJ15 ENSG00000157551       ENST00000398938       38157034
12720       KCNJ15 ENSG00000157551       ENST00000398938       38157034
12721       KCNJ15 ENSG00000157551       ENST00000398932       38157034
12722       KCNJ15 ENSG00000157551       ENST00000398932       38157034
12723       KCNJ15 ENSG00000157551       ENST00000398932       38157034
12724       KCNJ15 ENSG00000157551       ENST00000398932       38157034
12725       KCNJ15 ENSG00000157551       ENST00000438657       38157034
12726       KCNJ15 ENSG00000157551       ENST00000438657       38157034
12727       KCNJ15 ENSG00000157551       ENST00000438657       38157034
12728       KCNJ15 ENSG00000157551       ENST00000398930       38157034
12729       KCNJ15 ENSG00000157551       ENST00000398930       38157034
12730       KCNJ15 ENSG00000157551       ENST00000398930       38157034
12731       KCNJ15 ENSG00000157551       ENST00000398930       38157034
12732       KCNJ15 ENSG00000157551       ENST00000398927       38157034
12733       KCNJ15 ENSG00000157551       ENST00000398927       38157034
12734       KCNJ15 ENSG00000157551       ENST00000398927       38157034
12735       KCNJ15 ENSG00000157551       ENST00000419868       38157034
12736       KCNJ15 ENSG00000157551       ENST00000419868       38157034
12737       KCNJ15 ENSG00000157551       ENST00000398934       38157034
12738       KCNJ15 ENSG00000157551       ENST00000398934       38157034
12739       KCNJ15 ENSG00000157551       ENST00000398934       38157034
12740       KCNJ15 ENSG00000157551       ENST00000613499       38157034
12741       KCNJ15 ENSG00000157551       ENST00000613499       38157034
12742       KCNJ15 ENSG00000157551       ENST00000613499       38157034
12743       KCNJ15 ENSG00000157551       ENST00000613499       38157034
12744       KCNJ15 ENSG00000157551       ENST00000613499       38157034
12745       KCNJ15 ENSG00000157551       ENST00000612702       38157034
12746       KCNJ15 ENSG00000157551       ENST00000612702       38157034
12747       KCNJ15 ENSG00000157551       ENST00000612702       38157034
12748       KCNJ15 ENSG00000157551       ENST00000612702       38157034
12749       KCNJ15 ENSG00000157551       ENST00000612702       38157034
12750              ENSG00000226012       ENST00000444977       38237217
12751              ENSG00000226012       ENST00000444977       38237217
12752    LINC01547 ENSG00000183250       ENST00000397841       44932814
12753    LINC01547 ENSG00000183250       ENST00000397841       44932814
12754    LINC01547 ENSG00000183250       ENST00000397841       44932814
12755    LINC01547 ENSG00000183250       ENST00000397841       44932814
12756    LINC01547 ENSG00000183250       ENST00000330551       44932814
12757    LINC01547 ENSG00000183250       ENST00000330551       44932814
12758    LINC01547 ENSG00000183250       ENST00000330551       44932814
12759    LINC01547 ENSG00000183250       ENST00000330551       44932814
12760    LINC01547 ENSG00000183250       ENST00000615847       44932814
12761    LINC01547 ENSG00000183250       ENST00000615847       44932814
12762              ENSG00000218125       ENST00000406413       30526546
12763  KRTAP19-10P ENSG00000235312       ENST00000445258       30514613
12764   KRTAP19-9P ENSG00000237841       ENST00000421795       30510307
12765              ENSG00000259981       ENST00000565564       30089717
12766              ENSG00000259981       ENST00000565564       30089717
12767              ENSG00000279156       ENST00000623771       18917213
12768      PPIAP22 ENSG00000198618       ENST00000358455       18857779
12769              ENSG00000235023       ENST00000424890       42648271
12770              ENSG00000235023       ENST00000424890       42648271
12771      ADAMTS1 ENSG00000154734       ENST00000284984       26835747
12772      ADAMTS1 ENSG00000154734       ENST00000284984       26835747
12773      ADAMTS1 ENSG00000154734       ENST00000284984       26835747
12774      ADAMTS1 ENSG00000154734       ENST00000284984       26835747
12775      ADAMTS1 ENSG00000154734       ENST00000284984       26835747
12776      ADAMTS1 ENSG00000154734       ENST00000284984       26835747
12777      ADAMTS1 ENSG00000154734       ENST00000284984       26835747
12778      ADAMTS1 ENSG00000154734       ENST00000284984       26835747
12779      ADAMTS1 ENSG00000154734       ENST00000284984       26835747
12780      ADAMTS1 ENSG00000154734       ENST00000464589       26835747
12781      ADAMTS1 ENSG00000154734       ENST00000464589       26835747
12782      ADAMTS1 ENSG00000154734       ENST00000464589       26835747
12783      ADAMTS1 ENSG00000154734       ENST00000464589       26835747
12784      ADAMTS1 ENSG00000154734       ENST00000492656       26835747
12785      ADAMTS1 ENSG00000154734       ENST00000492656       26835747
12786      ADAMTS1 ENSG00000154734       ENST00000492656       26835747
12787      ADAMTS1 ENSG00000154734       ENST00000492656       26835747
12788      ADAMTS1 ENSG00000154734       ENST00000517777       26835747
12789      ADAMTS1 ENSG00000154734       ENST00000517777       26835747
12790      ADAMTS1 ENSG00000154734       ENST00000517777       26835747
12791      ADAMTS1 ENSG00000154734       ENST00000517777       26835747
12792      ADAMTS1 ENSG00000154734       ENST00000451462       26835747
12793      ADAMTS1 ENSG00000154734       ENST00000451462       26835747
12794      ADAMTS1 ENSG00000154734       ENST00000451462       26835747
12795      ADAMTS1 ENSG00000154734       ENST00000451462       26835747
12796      ADAMTS1 ENSG00000154734       ENST00000517452       26835747
12797      ADAMTS1 ENSG00000154734       ENST00000517452       26835747
12798      ADAMTS1 ENSG00000154734       ENST00000517452       26835747
12799      TIMM9P2 ENSG00000232608       ENST00000419324       39216624
12800      TIMM9P2 ENSG00000232608       ENST00000419324       39216624
12801       TCP10L ENSG00000242220       ENST00000300258       32574841
12802       TCP10L ENSG00000242220       ENST00000300258       32574841
12803       TCP10L ENSG00000242220       ENST00000300258       32574841
12804       TCP10L ENSG00000242220       ENST00000300258       32574841
12805       TCP10L ENSG00000242220       ENST00000300258       32574841
12806       TCP10L ENSG00000242220       ENST00000491828       32574841
12807       TCP10L ENSG00000242220       ENST00000491828       32574841
12808       TCP10L ENSG00000242220       ENST00000491828       32574841
12809       TCP10L ENSG00000242220       ENST00000491828       32574841
12810       TCP10L ENSG00000242220       ENST00000472557       32574841
12811       TCP10L ENSG00000242220       ENST00000472557       32574841
12812       TCP10L ENSG00000242220       ENST00000472557       32574841
12813       TCP10L ENSG00000242220       ENST00000472557       32574841
12814       TCP10L ENSG00000242220       ENST00000582575       32574841
12815       TCP10L ENSG00000242220       ENST00000582575       32574841
12816       TCP10L ENSG00000242220       ENST00000582575       32574841
12817       TCP10L ENSG00000242220       ENST00000582575       32574841
12818       TCP10L ENSG00000242220       ENST00000582575       32574841
12819    LINC00846 ENSG00000186842       ENST00000334165       32572238
12820    LINC00846 ENSG00000186842       ENST00000334165       32572238
12821    LINC00846 ENSG00000186842       ENST00000334165       32572238
12822    LINC00846 ENSG00000186842       ENST00000334165       32572238
12823              ENSG00000233783       ENST00000617755       25928754
12824              ENSG00000233783       ENST00000617755       25928754
12825              ENSG00000233783       ENST00000456904       25928754
12826              ENSG00000233783       ENST00000456904       25928754
12827              ENSG00000233783       ENST00000596385       25928754
12828              ENSG00000233783       ENST00000596385       25928754
12829              ENSG00000233783       ENST00000596385       25928754
12830              ENSG00000233783       ENST00000596385       25928754
12831              ENSG00000233783       ENST00000599572       25928754
12832              ENSG00000233783       ENST00000599572       25928754
12833              ENSG00000233783       ENST00000597894       25928754
12834              ENSG00000233783       ENST00000597894       25928754
12835              ENSG00000233783       ENST00000600590       25928754
12836              ENSG00000233783       ENST00000600590       25928754
12837              ENSG00000233783       ENST00000600590       25928754
12838              ENSG00000233783       ENST00000596669       25928754
12839       MIS18A ENSG00000159055       ENST00000290130       32268219
12840       MIS18A ENSG00000159055       ENST00000290130       32268219
12841       MIS18A ENSG00000159055       ENST00000290130       32268219
12842       MIS18A ENSG00000159055       ENST00000290130       32268219
12843       MIS18A ENSG00000159055       ENST00000290130       32268219
12844       MIS18A ENSG00000159055       ENST00000486363       32268219
12845       MIS18A ENSG00000159055       ENST00000486363       32268219
12846      RPSAP64 ENSG00000227721       ENST00000451820       38894917
12847    LINC00113 ENSG00000225298       ENST00000411460       27722379
12848    LINC00113 ENSG00000225298       ENST00000411460       27722379
12849    LINC00113 ENSG00000225298       ENST00000411460       27722379
12850    LINC00113 ENSG00000225298       ENST00000411460       27722379
12851    LINC00113 ENSG00000225298       ENST00000425376       27722379
12852    LINC00113 ENSG00000225298       ENST00000425376       27722379
12853    LINC00113 ENSG00000225298       ENST00000425376       27722379
12854    LINC00113 ENSG00000225298       ENST00000425376       27722379
12855    LINC00113 ENSG00000225298       ENST00000442550       27722379
12856    LINC00113 ENSG00000225298       ENST00000442550       27722379
12857    LINC00113 ENSG00000225298       ENST00000442550       27722379
12858    LINC00113 ENSG00000225298       ENST00000442550       27722379
12859              ENSG00000236332       ENST00000447384       27361164
12860              ENSG00000236332       ENST00000447384       27361164
12861              ENSG00000236332       ENST00000447384       27361164
12862              ENSG00000236332       ENST00000447384       27361164
12863              ENSG00000236332       ENST00000447384       27361164
12864              ENSG00000232884       ENST00000455253       14746762
12865              ENSG00000232884       ENST00000455253       14746762
12866              ENSG00000232884       ENST00000455253       14746762
12867              ENSG00000232884       ENST00000454128       14746762
12868              ENSG00000232884       ENST00000454128       14746762
12869              ENSG00000232884       ENST00000454128       14746762
12870              ENSG00000229925       ENST00000434589       38888772
12871              ENSG00000229925       ENST00000434589       38888772
12872        H2BFS ENSG00000234289       ENST00000599962       43565189
12873   SLC25A15P4 ENSG00000273872       ENST00000614260       10612455
12874   SLC25A15P4 ENSG00000273872       ENST00000614260       10612455
12875    LINC00160 ENSG00000230978       ENST00000430635       34723807
12876    LINC00160 ENSG00000230978       ENST00000430635       34723807
12877    LINC00160 ENSG00000230978       ENST00000430635       34723807
12878    LINC00160 ENSG00000230978       ENST00000430635       34723807
12879    LINC00160 ENSG00000230978       ENST00000430635       34723807
12880    LINC00160 ENSG00000230978       ENST00000430635       34723807
12881     C21orf59 ENSG00000159079       ENST00000431599       32592079
12882     C21orf59 ENSG00000159079       ENST00000431599       32592079
12883     C21orf59 ENSG00000159079       ENST00000440966       32592079
12884     C21orf59 ENSG00000159079       ENST00000440966       32592079
12885     C21orf59 ENSG00000159079       ENST00000440966       32592079
12886     C21orf59 ENSG00000159079       ENST00000440966       32592079
12887     C21orf59 ENSG00000159079       ENST00000440966       32592079
12888     C21orf59 ENSG00000159079       ENST00000440966       32592079
12889     C21orf59 ENSG00000159079       ENST00000382549       32592079
12890     C21orf59 ENSG00000159079       ENST00000382549       32592079
12891     C21orf59 ENSG00000159079       ENST00000382549       32592079
12892     C21orf59 ENSG00000159079       ENST00000382549       32592079
12893     C21orf59 ENSG00000159079       ENST00000382549       32592079
12894     C21orf59 ENSG00000159079       ENST00000290155       32592079
12895     C21orf59 ENSG00000159079       ENST00000290155       32592079
12896     C21orf59 ENSG00000159079       ENST00000290155       32592079
12897     C21orf59 ENSG00000159079       ENST00000290155       32592079
12898     C21orf59 ENSG00000159079       ENST00000290155       32592079
12899     C21orf59 ENSG00000159079       ENST00000290155       32592079
12900     C21orf59 ENSG00000159079       ENST00000290155       32592079
12901     C21orf59 ENSG00000159079       ENST00000425336       32592079
12902     C21orf59 ENSG00000159079       ENST00000425336       32592079
12903     C21orf59 ENSG00000159079       ENST00000425336       32592079
12904     C21orf59 ENSG00000159079       ENST00000300260       32592079
12905     C21orf59 ENSG00000159079       ENST00000300260       32592079
12906     C21orf59 ENSG00000159079       ENST00000300260       32592079
12907     C21orf59 ENSG00000159079       ENST00000300260       32592079
12908     C21orf59 ENSG00000159079       ENST00000300260       32592079
12909     C21orf59 ENSG00000159079       ENST00000300260       32592079
12910     C21orf59 ENSG00000159079       ENST00000483315       32592079
12911     C21orf59 ENSG00000159079       ENST00000483315       32592079
12912     C21orf59 ENSG00000159079       ENST00000458138       32592079
12913     C21orf59 ENSG00000159079       ENST00000458138       32592079
12914     C21orf59 ENSG00000159079       ENST00000458138       32592079
12915     C21orf59 ENSG00000159079       ENST00000458138       32592079
12916     C21orf59 ENSG00000159079       ENST00000458138       32592079
12917              ENSG00000224541       ENST00000455275       26158091
12918              ENSG00000224541       ENST00000455275       26158091
12919              ENSG00000233818       ENST00000428667       36445731
12920              ENSG00000233818       ENST00000428667       36445731
12921              ENSG00000233818       ENST00000454980       36445731
12922              ENSG00000233818       ENST00000454980       36445731
12923              ENSG00000234034       ENST00000441759       22500604
12924              ENSG00000234034       ENST00000441759       22500604
12925              ENSG00000234034       ENST00000441759       22500604
12926              ENSG00000231136       ENST00000454567       22153950
12927              ENSG00000232193       ENST00000440372       18917934
12928              ENSG00000232193       ENST00000440372       18917934
12929              ENSG00000225731       ENST00000437426       42733594
12930              ENSG00000225731       ENST00000437426       42733594
12931      SRSF9P1 ENSG00000214867       ENST00000399149       36295173
12932              ENSG00000227330       ENST00000432412       18022370
12933              ENSG00000227330       ENST00000432412       18022370
12934              ENSG00000227330       ENST00000432412       18022370
12935              ENSG00000227330       ENST00000432412       18022370
12936              ENSG00000227330       ENST00000432412       18022370
12937     CBR3-AS1 ENSG00000236830       ENST00000453159       36131767
12938     CBR3-AS1 ENSG00000236830       ENST00000453159       36131767
12939     CBR3-AS1 ENSG00000236830       ENST00000453159       36131767
12940     CBR3-AS1 ENSG00000236830       ENST00000413862       36131767
12941     CBR3-AS1 ENSG00000236830       ENST00000413862       36131767
12942     CBR3-AS1 ENSG00000236830       ENST00000413862       36131767
12943     CBR3-AS1 ENSG00000236830       ENST00000413862       36131767
12944     CBR3-AS1 ENSG00000236830       ENST00000608690       36131767
12945     CBR3-AS1 ENSG00000236830       ENST00000608690       36131767
12946     CBR3-AS1 ENSG00000236830       ENST00000608690       36131767
12947     CBR3-AS1 ENSG00000236830       ENST00000608690       36131767
12948     CBR3-AS1 ENSG00000236830       ENST00000608622       36131767
12949     CBR3-AS1 ENSG00000236830       ENST00000608622       36131767
12950     CBR3-AS1 ENSG00000236830       ENST00000608622       36131767
12951     CBR3-AS1 ENSG00000236830       ENST00000608622       36131767
12952     CBR3-AS1 ENSG00000236830       ENST00000608632       36131767
12953     CBR3-AS1 ENSG00000236830       ENST00000608632       36131767
12954     CBR3-AS1 ENSG00000236830       ENST00000608632       36131767
12955     CBR3-AS1 ENSG00000236830       ENST00000608632       36131767
12956     CBR3-AS1 ENSG00000236830       ENST00000608632       36131767
12957     CBR3-AS1 ENSG00000236830       ENST00000609192       36131767
12958     CBR3-AS1 ENSG00000236830       ENST00000609192       36131767
12959     CBR3-AS1 ENSG00000236830       ENST00000609192       36131767
12960     CBR3-AS1 ENSG00000236830       ENST00000608641       36131767
12961     CBR3-AS1 ENSG00000236830       ENST00000608641       36131767
12962     CBR3-AS1 ENSG00000236830       ENST00000608641       36131767
12963     CBR3-AS1 ENSG00000236830       ENST00000608641       36131767
12964     CBR3-AS1 ENSG00000236830       ENST00000608641       36131767
12965     CBR3-AS1 ENSG00000236830       ENST00000625189       36131767
12966     CBR3-AS1 ENSG00000236830       ENST00000625189       36131767
12967     CBR3-AS1 ENSG00000236830       ENST00000625079       36131767
12968     CBR3-AS1 ENSG00000236830       ENST00000625079       36131767
12969     CBR3-AS1 ENSG00000236830       ENST00000625079       36131767
12970     CBR3-AS1 ENSG00000236830       ENST00000623579       36131767
12971     CBR3-AS1 ENSG00000236830       ENST00000623579       36131767
12972     CBR3-AS1 ENSG00000236830       ENST00000623579       36131767
12973     CBR3-AS1 ENSG00000236830       ENST00000623579       36131767
12974     CBR3-AS1 ENSG00000236830       ENST00000623638       36131767
12975     CBR3-AS1 ENSG00000236830       ENST00000623638       36131767
12976     CBR3-AS1 ENSG00000236830       ENST00000624080       36131767
12977     CBR3-AS1 ENSG00000236830       ENST00000624080       36131767
12978     CBR3-AS1 ENSG00000236830       ENST00000624080       36131767
12979     CBR3-AS1 ENSG00000236830       ENST00000624086       36131767
12980     CBR3-AS1 ENSG00000236830       ENST00000624086       36131767
12981     CBR3-AS1 ENSG00000236830       ENST00000624883       36131767
12982     CBR3-AS1 ENSG00000236830       ENST00000624883       36131767
12983     CBR3-AS1 ENSG00000236830       ENST00000623647       36131767
12984     CBR3-AS1 ENSG00000236830       ENST00000623647       36131767
12985     CBR3-AS1 ENSG00000236830       ENST00000623647       36131767
12986     CBR3-AS1 ENSG00000236830       ENST00000623484       36131767
12987     CBR3-AS1 ENSG00000236830       ENST00000623484       36131767
12988     CBR3-AS1 ENSG00000236830       ENST00000427491       36131767
12989     CBR3-AS1 ENSG00000236830       ENST00000427491       36131767
12990     CBR3-AS1 ENSG00000236830       ENST00000427491       36131767
12991     CBR3-AS1 ENSG00000236830       ENST00000432988       36131767
12992     CBR3-AS1 ENSG00000236830       ENST00000432988       36131767
12993     CBR3-AS1 ENSG00000236830       ENST00000432988       36131767
12994              ENSG00000279648       ENST00000624164       17705408
12995      OR7E23P ENSG00000228433       ENST00000435600       32621049
12996              ENSG00000280082       ENST00000623768       15346652
12997        RRP1B ENSG00000160208       ENST00000340648       43659548
12998        RRP1B ENSG00000160208       ENST00000340648       43659548
12999        RRP1B ENSG00000160208       ENST00000340648       43659548
13000        RRP1B ENSG00000160208       ENST00000340648       43659548
13001        RRP1B ENSG00000160208       ENST00000340648       43659548
13002        RRP1B ENSG00000160208       ENST00000340648       43659548
13003        RRP1B ENSG00000160208       ENST00000340648       43659548
13004        RRP1B ENSG00000160208       ENST00000340648       43659548
13005        RRP1B ENSG00000160208       ENST00000340648       43659548
13006        RRP1B ENSG00000160208       ENST00000340648       43659548
13007        RRP1B ENSG00000160208       ENST00000340648       43659548
13008        RRP1B ENSG00000160208       ENST00000340648       43659548
13009        RRP1B ENSG00000160208       ENST00000340648       43659548
13010        RRP1B ENSG00000160208       ENST00000340648       43659548
13011        RRP1B ENSG00000160208       ENST00000340648       43659548
13012        RRP1B ENSG00000160208       ENST00000340648       43659548
13013        RRP1B ENSG00000160208       ENST00000470886       43659548
13014        RRP1B ENSG00000160208       ENST00000470886       43659548
13015        RRP1B ENSG00000160208       ENST00000470886       43659548
13016        RRP1B ENSG00000160208       ENST00000470886       43659548
13017        RRP1B ENSG00000160208       ENST00000470886       43659548
13018              ENSG00000276612       ENST00000623476        5116343
13019              ENSG00000276612       ENST00000623476        5116343
13020              ENSG00000276612       ENST00000623476        5116343
13021              ENSG00000276612       ENST00000623476        5116343
13022              ENSG00000276612       ENST00000623476        5116343
13023              ENSG00000276612       ENST00000623476        5116343
13024              ENSG00000276612       ENST00000623476        5116343
13025        SCAF4 ENSG00000156304       ENST00000286835       31671033
13026        SCAF4 ENSG00000156304       ENST00000286835       31671033
13027        SCAF4 ENSG00000156304       ENST00000286835       31671033
13028        SCAF4 ENSG00000156304       ENST00000286835       31671033
13029        SCAF4 ENSG00000156304       ENST00000286835       31671033
13030        SCAF4 ENSG00000156304       ENST00000286835       31671033
13031        SCAF4 ENSG00000156304       ENST00000286835       31671033
13032        SCAF4 ENSG00000156304       ENST00000286835       31671033
13033        SCAF4 ENSG00000156304       ENST00000286835       31671033
13034        SCAF4 ENSG00000156304       ENST00000286835       31671033
13035        SCAF4 ENSG00000156304       ENST00000286835       31671033
13036        SCAF4 ENSG00000156304       ENST00000286835       31671033
13037        SCAF4 ENSG00000156304       ENST00000286835       31671033
13038        SCAF4 ENSG00000156304       ENST00000286835       31671033
13039        SCAF4 ENSG00000156304       ENST00000286835       31671033
13040        SCAF4 ENSG00000156304       ENST00000286835       31671033
13041        SCAF4 ENSG00000156304       ENST00000286835       31671033
13042        SCAF4 ENSG00000156304       ENST00000286835       31671033
13043        SCAF4 ENSG00000156304       ENST00000286835       31671033
13044        SCAF4 ENSG00000156304       ENST00000286835       31671033
13045        SCAF4 ENSG00000156304       ENST00000399804       31671033
13046        SCAF4 ENSG00000156304       ENST00000399804       31671033
13047        SCAF4 ENSG00000156304       ENST00000399804       31671033
13048        SCAF4 ENSG00000156304       ENST00000399804       31671033
13049        SCAF4 ENSG00000156304       ENST00000399804       31671033
13050        SCAF4 ENSG00000156304       ENST00000399804       31671033
13051        SCAF4 ENSG00000156304       ENST00000399804       31671033
13052        SCAF4 ENSG00000156304       ENST00000399804       31671033
13053        SCAF4 ENSG00000156304       ENST00000399804       31671033
13054        SCAF4 ENSG00000156304       ENST00000399804       31671033
13055        SCAF4 ENSG00000156304       ENST00000399804       31671033
13056        SCAF4 ENSG00000156304       ENST00000399804       31671033
13057        SCAF4 ENSG00000156304       ENST00000399804       31671033
13058        SCAF4 ENSG00000156304       ENST00000399804       31671033
13059        SCAF4 ENSG00000156304       ENST00000399804       31671033
13060        SCAF4 ENSG00000156304       ENST00000399804       31671033
13061        SCAF4 ENSG00000156304       ENST00000399804       31671033
13062        SCAF4 ENSG00000156304       ENST00000399804       31671033
13063        SCAF4 ENSG00000156304       ENST00000399804       31671033
13064        SCAF4 ENSG00000156304       ENST00000399804       31671033
13065        SCAF4 ENSG00000156304       ENST00000434667       31671033
13066        SCAF4 ENSG00000156304       ENST00000434667       31671033
13067        SCAF4 ENSG00000156304       ENST00000434667       31671033
13068        SCAF4 ENSG00000156304       ENST00000434667       31671033
13069        SCAF4 ENSG00000156304       ENST00000434667       31671033
13070        SCAF4 ENSG00000156304       ENST00000434667       31671033
13071        SCAF4 ENSG00000156304       ENST00000434667       31671033
13072        SCAF4 ENSG00000156304       ENST00000434667       31671033
13073        SCAF4 ENSG00000156304       ENST00000434667       31671033
13074        SCAF4 ENSG00000156304       ENST00000434667       31671033
13075        SCAF4 ENSG00000156304       ENST00000434667       31671033
13076        SCAF4 ENSG00000156304       ENST00000434667       31671033
13077        SCAF4 ENSG00000156304       ENST00000434667       31671033
13078        SCAF4 ENSG00000156304       ENST00000434667       31671033
13079        SCAF4 ENSG00000156304       ENST00000434667       31671033
13080        SCAF4 ENSG00000156304       ENST00000434667       31671033
13081        SCAF4 ENSG00000156304       ENST00000434667       31671033
13082        SCAF4 ENSG00000156304       ENST00000434667       31671033
13083        SCAF4 ENSG00000156304       ENST00000434667       31671033
13084        SCAF4 ENSG00000156304       ENST00000467731       31671033
13085        SCAF4 ENSG00000156304       ENST00000467731       31671033
13086        SCAF4 ENSG00000156304       ENST00000467731       31671033
13087        SCAF4 ENSG00000156304       ENST00000467731       31671033
13088        SCAF4 ENSG00000156304       ENST00000467731       31671033
13089        SCAF4 ENSG00000156304       ENST00000467731       31671033
13090        SCAF4 ENSG00000156304       ENST00000467731       31671033
13091        SCAF4 ENSG00000156304       ENST00000467731       31671033
13092        SCAF4 ENSG00000156304       ENST00000467731       31671033
13093        SCAF4 ENSG00000156304       ENST00000467731       31671033
13094        SCAF4 ENSG00000156304       ENST00000467731       31671033
13095        SCAF4 ENSG00000156304       ENST00000467731       31671033
13096        SCAF4 ENSG00000156304       ENST00000467731       31671033
13097        SCAF4 ENSG00000156304       ENST00000467731       31671033
13098        SCAF4 ENSG00000156304       ENST00000472318       31671033
13099        SCAF4 ENSG00000156304       ENST00000472318       31671033
13100        SCAF4 ENSG00000156304       ENST00000472318       31671033
13101        SCAF4 ENSG00000156304       ENST00000485790       31671033
13102        SCAF4 ENSG00000156304       ENST00000485790       31671033
13103        SCAF4 ENSG00000156304       ENST00000485790       31671033
13104        SCAF4 ENSG00000156304       ENST00000485790       31671033
13105        SCAF4 ENSG00000156304       ENST00000485790       31671033
13106        SCAF4 ENSG00000156304       ENST00000485790       31671033
13107        SCAF4 ENSG00000156304       ENST00000485790       31671033
13108        C2CD2 ENSG00000157617       ENST00000449165       41885112
13109        C2CD2 ENSG00000157617       ENST00000449165       41885112
13110        C2CD2 ENSG00000157617       ENST00000449165       41885112
13111        C2CD2 ENSG00000157617       ENST00000329623       41885112
13112        C2CD2 ENSG00000157617       ENST00000329623       41885112
13113        C2CD2 ENSG00000157617       ENST00000329623       41885112
13114        C2CD2 ENSG00000157617       ENST00000329623       41885112
13115        C2CD2 ENSG00000157617       ENST00000329623       41885112
13116        C2CD2 ENSG00000157617       ENST00000329623       41885112
13117        C2CD2 ENSG00000157617       ENST00000329623       41885112
13118        C2CD2 ENSG00000157617       ENST00000329623       41885112
13119        C2CD2 ENSG00000157617       ENST00000329623       41885112
13120        C2CD2 ENSG00000157617       ENST00000329623       41885112
13121        C2CD2 ENSG00000157617       ENST00000329623       41885112
13122        C2CD2 ENSG00000157617       ENST00000329623       41885112
13123        C2CD2 ENSG00000157617       ENST00000329623       41885112
13124        C2CD2 ENSG00000157617       ENST00000380486       41885112
13125        C2CD2 ENSG00000157617       ENST00000380486       41885112
13126        C2CD2 ENSG00000157617       ENST00000380486       41885112
13127        C2CD2 ENSG00000157617       ENST00000380486       41885112
13128        C2CD2 ENSG00000157617       ENST00000380486       41885112
13129        C2CD2 ENSG00000157617       ENST00000380486       41885112
13130        C2CD2 ENSG00000157617       ENST00000380486       41885112
13131        C2CD2 ENSG00000157617       ENST00000380486       41885112
13132        C2CD2 ENSG00000157617       ENST00000380486       41885112
13133        C2CD2 ENSG00000157617       ENST00000380486       41885112
13134        C2CD2 ENSG00000157617       ENST00000380486       41885112
13135        C2CD2 ENSG00000157617       ENST00000380486       41885112
13136        C2CD2 ENSG00000157617       ENST00000380486       41885112
13137        C2CD2 ENSG00000157617       ENST00000380486       41885112
13138        C2CD2 ENSG00000157617       ENST00000482186       41885112
13139        C2CD2 ENSG00000157617       ENST00000482186       41885112
13140        C2CD2 ENSG00000157617       ENST00000482186       41885112
13141        C2CD2 ENSG00000157617       ENST00000482186       41885112
13142        C2CD2 ENSG00000157617       ENST00000482186       41885112
13143        C2CD2 ENSG00000157617       ENST00000482186       41885112
13144        C2CD2 ENSG00000157617       ENST00000482084       41885112
13145        C2CD2 ENSG00000157617       ENST00000482084       41885112
13146        C2CD2 ENSG00000157617       ENST00000482084       41885112
13147        C2CD2 ENSG00000157617       ENST00000482084       41885112
13148        C2CD2 ENSG00000157617       ENST00000482084       41885112
13149        C2CD2 ENSG00000157617       ENST00000482084       41885112
13150        C2CD2 ENSG00000157617       ENST00000482084       41885112
13151        C2CD2 ENSG00000157617       ENST00000482084       41885112
13152        C2CD2 ENSG00000157617       ENST00000482084       41885112
13153        C2CD2 ENSG00000157617       ENST00000482084       41885112
13154        C2CD2 ENSG00000157617       ENST00000482084       41885112
13155        C2CD2 ENSG00000157617       ENST00000467074       41885112
13156        C2CD2 ENSG00000157617       ENST00000467074       41885112
13157        C2CD2 ENSG00000157617       ENST00000467074       41885112
13158        C2CD2 ENSG00000157617       ENST00000467074       41885112
13159        C2CD2 ENSG00000157617       ENST00000467074       41885112
13160        C2CD2 ENSG00000157617       ENST00000467074       41885112
13161        C2CD2 ENSG00000157617       ENST00000467074       41885112
13162        C2CD2 ENSG00000157617       ENST00000467074       41885112
13163        C2CD2 ENSG00000157617       ENST00000467074       41885112
13164        C2CD2 ENSG00000157617       ENST00000467074       41885112
13165        C2CD2 ENSG00000157617       ENST00000467074       41885112
13166        C2CD2 ENSG00000157617       ENST00000490479       41885112
13167        C2CD2 ENSG00000157617       ENST00000490479       41885112
13168        C2CD2 ENSG00000157617       ENST00000490479       41885112
13169        C2CD2 ENSG00000157617       ENST00000490479       41885112
13170        C2CD2 ENSG00000157617       ENST00000490479       41885112
13171        C2CD2 ENSG00000157617       ENST00000490479       41885112
13172        C2CD2 ENSG00000157617       ENST00000478372       41885112
13173        C2CD2 ENSG00000157617       ENST00000478372       41885112
13174    LINC01426 ENSG00000234380       ENST00000420877       34745757
13175    LINC01426 ENSG00000234380       ENST00000420877       34745757
13176    LINC01426 ENSG00000234380       ENST00000420877       34745757
13177    LINC01426 ENSG00000234380       ENST00000419921       34745757
13178    LINC01426 ENSG00000234380       ENST00000419921       34745757
13179         MRAP ENSG00000170262       ENST00000399784       32291813
13180         MRAP ENSG00000170262       ENST00000399784       32291813
13181         MRAP ENSG00000170262       ENST00000399784       32291813
13182         MRAP ENSG00000170262       ENST00000399784       32291813
13183         MRAP ENSG00000170262       ENST00000399784       32291813
13184         MRAP ENSG00000170262       ENST00000497833       32291813
13185         MRAP ENSG00000170262       ENST00000497833       32291813
13186         MRAP ENSG00000170262       ENST00000497833       32291813
13187         MRAP ENSG00000170262       ENST00000497833       32291813
13188         MRAP ENSG00000170262       ENST00000303645       32291813
13189         MRAP ENSG00000170262       ENST00000303645       32291813
13190         MRAP ENSG00000170262       ENST00000303645       32291813
13191         MRAP ENSG00000170262       ENST00000339944       32291813
13192         MRAP ENSG00000170262       ENST00000339944       32291813
13193         MRAP ENSG00000170262       ENST00000339944       32291813
13194       FRG2MP ENSG00000275170       ENST00000613317       14019060
13195       FRG2MP ENSG00000275170       ENST00000613317       14019060
13196       FRG2MP ENSG00000275170       ENST00000613317       14019060
13197       FRG2MP ENSG00000275170       ENST00000613317       14019060
13198              ENSG00000277117       ENST00000612610        5022493
13199              ENSG00000277117       ENST00000612610        5022493
13200              ENSG00000277117       ENST00000612610        5022493
13201              ENSG00000277117       ENST00000612610        5022493
13202              ENSG00000277117       ENST00000612610        5022493
13203              ENSG00000277117       ENST00000612610        5022493
13204              ENSG00000277117       ENST00000612610        5022493
13205              ENSG00000277117       ENST00000623960        5022493
13206              ENSG00000277117       ENST00000623960        5022493
13207              ENSG00000277117       ENST00000623960        5022493
13208              ENSG00000277117       ENST00000623960        5022493
13209              ENSG00000277117       ENST00000623960        5022493
13210              ENSG00000277117       ENST00000623960        5022493
13211              ENSG00000277117       ENST00000623960        5022493
13212              ENSG00000277117       ENST00000623903        5022493
13213              ENSG00000277117       ENST00000623903        5022493
13214              ENSG00000277117       ENST00000623903        5022493
13215              ENSG00000277117       ENST00000623903        5022493
13216              ENSG00000277117       ENST00000623903        5022493
13217              ENSG00000277117       ENST00000623903        5022493
13218              ENSG00000277117       ENST00000623903        5022493
13219              ENSG00000277117       ENST00000623795        5022493
13220              ENSG00000277117       ENST00000623795        5022493
13221              ENSG00000277117       ENST00000623795        5022493
13222              ENSG00000277117       ENST00000623795        5022493
13223              ENSG00000277117       ENST00000623795        5022493
13224              ENSG00000277117       ENST00000623795        5022493
13225              ENSG00000277117       ENST00000620481        5022493
13226              ENSG00000277117       ENST00000620481        5022493
13227              ENSG00000277117       ENST00000620481        5022493
13228              ENSG00000277117       ENST00000620481        5022493
13229              ENSG00000277117       ENST00000620481        5022493
13230              ENSG00000277117       ENST00000620481        5022493
13231     SNRPGP13 ENSG00000231480       ENST00000442212       38502445
13232              ENSG00000226204       ENST00000449840       18953264
13233              ENSG00000226204       ENST00000449840       18953264
13234              ENSG00000231867       ENST00000429903       42508624
13235              ENSG00000231867       ENST00000429903       42508624
13236              ENSG00000231867       ENST00000455116       42508624
13237              ENSG00000231867       ENST00000455116       42508624
13238              ENSG00000276633       ENST00000618749       45870854
13239     TMEM97P1 ENSG00000234030       ENST00000452969       43783123
13240              ENSG00000229425       ENST00000634642       15370500
13241              ENSG00000229425       ENST00000634642       15370500
13242              ENSG00000229425       ENST00000634642       15370500
13243              ENSG00000229425       ENST00000634642       15370500
13244              ENSG00000229425       ENST00000634642       15370500
13245              ENSG00000229425       ENST00000634642       15370500
13246              ENSG00000229425       ENST00000634642       15370500
13247              ENSG00000229425       ENST00000634644       15370500
13248              ENSG00000229425       ENST00000634644       15370500
13249              ENSG00000229425       ENST00000634644       15370500
13250              ENSG00000229425       ENST00000634644       15370500
13251              ENSG00000229425       ENST00000634644       15370500
13252              ENSG00000229425       ENST00000634644       15370500
13253              ENSG00000229425       ENST00000634644       15370500
13254              ENSG00000229425       ENST00000634644       15370500
13255              ENSG00000229425       ENST00000634644       15370500
13256              ENSG00000229425       ENST00000634644       15370500
13257              ENSG00000229425       ENST00000634644       15370500
13258              ENSG00000229425       ENST00000634644       15370500
13259              ENSG00000229425       ENST00000634708       15370500
13260              ENSG00000229425       ENST00000634708       15370500
13261              ENSG00000229425       ENST00000634708       15370500
13262              ENSG00000229425       ENST00000634708       15370500
13263              ENSG00000229425       ENST00000634708       15370500
13264              ENSG00000229425       ENST00000634708       15370500
13265              ENSG00000229425       ENST00000634708       15370500
13266              ENSG00000229425       ENST00000634708       15370500
13267              ENSG00000229425       ENST00000634708       15370500
13268              ENSG00000229425       ENST00000634708       15370500
13269              ENSG00000229425       ENST00000635621       15370500
13270              ENSG00000229425       ENST00000635621       15370500
13271              ENSG00000229425       ENST00000635621       15370500
13272              ENSG00000229425       ENST00000635621       15370500
13273              ENSG00000229425       ENST00000635621       15370500
13274              ENSG00000229425       ENST00000635621       15370500
13275              ENSG00000229425       ENST00000635621       15370500
13276              ENSG00000229425       ENST00000635621       15370500
13277              ENSG00000229425       ENST00000635621       15370500
13278              ENSG00000229425       ENST00000635621       15370500
13279              ENSG00000229425       ENST00000635621       15370500
13280              ENSG00000229425       ENST00000635225       15370500
13281              ENSG00000229425       ENST00000635225       15370500
13282              ENSG00000229425       ENST00000635225       15370500
13283              ENSG00000229425       ENST00000635225       15370500
13284              ENSG00000229425       ENST00000635225       15370500
13285              ENSG00000229425       ENST00000635225       15370500
13286              ENSG00000229425       ENST00000635225       15370500
13287              ENSG00000229425       ENST00000635225       15370500
13288              ENSG00000229425       ENST00000635225       15370500
13289              ENSG00000229425       ENST00000449602       15370500
13290              ENSG00000229425       ENST00000449602       15370500
13291              ENSG00000229425       ENST00000449602       15370500
13292              ENSG00000229425       ENST00000449602       15370500
13293              ENSG00000229425       ENST00000449602       15370500
13294              ENSG00000229425       ENST00000449602       15370500
13295              ENSG00000229425       ENST00000449602       15370500
13296              ENSG00000229425       ENST00000634659       15370500
13297              ENSG00000229425       ENST00000634659       15370500
13298              ENSG00000229425       ENST00000634659       15370500
13299              ENSG00000229425       ENST00000635525       15370500
13300              ENSG00000229425       ENST00000635525       15370500
13301              ENSG00000229425       ENST00000635525       15370500
13302              ENSG00000229425       ENST00000634853       15370500
13303              ENSG00000229425       ENST00000634853       15370500
13304              ENSG00000229425       ENST00000634853       15370500
13305              ENSG00000229425       ENST00000634853       15370500
13306              ENSG00000229425       ENST00000634853       15370500
13307              ENSG00000229425       ENST00000635684       15370500
13308              ENSG00000229425       ENST00000635684       15370500
13309              ENSG00000229425       ENST00000635684       15370500
13310              ENSG00000229425       ENST00000635684       15370500
13311  COL18A1-AS2 ENSG00000224574       ENST00000446475       45407386
13312  COL18A1-AS2 ENSG00000224574       ENST00000446475       45407386
13313  COL18A1-AS2 ENSG00000224574       ENST00000446475       45407386
13314  COL18A1-AS2 ENSG00000224574       ENST00000446475       45407386
13315              ENSG00000226751       ENST00000435315       14761710
13316              ENSG00000226751       ENST00000435315       14761710
13317   SAMSN1-AS1 ENSG00000223662       ENST00000449214       14582202
13318   SAMSN1-AS1 ENSG00000223662       ENST00000449214       14582202
13319   SAMSN1-AS1 ENSG00000223662       ENST00000449214       14582202
13320   SAMSN1-AS1 ENSG00000223662       ENST00000449214       14582202
13321   SAMSN1-AS1 ENSG00000223662       ENST00000449214       14582202
13322    KRTAP19-1 ENSG00000184351       ENST00000390689       30479699
13323   KRTAP13-5P ENSG00000233640       ENST00000418755       30436466
13324      CYCSP41 ENSG00000278678       ENST00000616920       10576292
13325         TPTE ENSG00000274391       ENST00000622113       10521553
13326         TPTE ENSG00000274391       ENST00000622113       10521553
13327         TPTE ENSG00000274391       ENST00000622113       10521553
13328         TPTE ENSG00000274391       ENST00000622113       10521553
13329         TPTE ENSG00000274391       ENST00000622113       10521553
13330         TPTE ENSG00000274391       ENST00000622113       10521553
13331         TPTE ENSG00000274391       ENST00000622113       10521553
13332         TPTE ENSG00000274391       ENST00000622113       10521553
13333         TPTE ENSG00000274391       ENST00000622113       10521553
13334         TPTE ENSG00000274391       ENST00000622113       10521553
13335         TPTE ENSG00000274391       ENST00000622113       10521553
13336         TPTE ENSG00000274391       ENST00000622113       10521553
13337         TPTE ENSG00000274391       ENST00000622113       10521553
13338         TPTE ENSG00000274391       ENST00000622113       10521553
13339         TPTE ENSG00000274391       ENST00000622113       10521553
13340         TPTE ENSG00000274391       ENST00000622113       10521553
13341         TPTE ENSG00000274391       ENST00000622113       10521553
13342         TPTE ENSG00000274391       ENST00000622113       10521553
13343         TPTE ENSG00000274391       ENST00000622113       10521553
13344         TPTE ENSG00000274391       ENST00000622113       10521553
13345         TPTE ENSG00000274391       ENST00000622113       10521553
13346         TPTE ENSG00000274391       ENST00000622113       10521553
13347         TPTE ENSG00000274391       ENST00000622113       10521553
13348         TPTE ENSG00000274391       ENST00000612957       10521553
13349         TPTE ENSG00000274391       ENST00000612957       10521553
13350         TPTE ENSG00000274391       ENST00000612957       10521553
13351         TPTE ENSG00000274391       ENST00000612957       10521553
13352         TPTE ENSG00000274391       ENST00000612957       10521553
13353         TPTE ENSG00000274391       ENST00000612957       10521553
13354         TPTE ENSG00000274391       ENST00000612957       10521553
13355         TPTE ENSG00000274391       ENST00000612957       10521553
13356         TPTE ENSG00000274391       ENST00000612957       10521553
13357         TPTE ENSG00000274391       ENST00000612957       10521553
13358         TPTE ENSG00000274391       ENST00000618007       10521553
13359         TPTE ENSG00000274391       ENST00000618007       10521553
13360         TPTE ENSG00000274391       ENST00000618007       10521553
13361         TPTE ENSG00000274391       ENST00000618007       10521553
13362         TPTE ENSG00000274391       ENST00000618007       10521553
13363         TPTE ENSG00000274391       ENST00000618007       10521553
13364         TPTE ENSG00000274391       ENST00000618007       10521553
13365         TPTE ENSG00000274391       ENST00000618007       10521553
13366         TPTE ENSG00000274391       ENST00000618007       10521553
13367         TPTE ENSG00000274391       ENST00000618007       10521553
13368         TPTE ENSG00000274391       ENST00000618007       10521553
13369         TPTE ENSG00000274391       ENST00000618007       10521553
13370         TPTE ENSG00000274391       ENST00000618007       10521553
13371         TPTE ENSG00000274391       ENST00000618007       10521553
13372         TPTE ENSG00000274391       ENST00000618007       10521553
13373         TPTE ENSG00000274391       ENST00000618007       10521553
13374         TPTE ENSG00000274391       ENST00000618007       10521553
13375         TPTE ENSG00000274391       ENST00000618007       10521553
13376         TPTE ENSG00000274391       ENST00000618007       10521553
13377         TPTE ENSG00000274391       ENST00000618007       10521553
13378         TPTE ENSG00000274391       ENST00000618007       10521553
13379         TPTE ENSG00000274391       ENST00000618007       10521553
13380         TPTE ENSG00000274391       ENST00000618007       10521553
13381         TPTE ENSG00000274391       ENST00000618007       10521553
13382         TPTE ENSG00000274391       ENST00000427445       10521553
13383         TPTE ENSG00000274391       ENST00000427445       10521553
13384         TPTE ENSG00000274391       ENST00000427445       10521553
13385         TPTE ENSG00000274391       ENST00000427445       10521553
13386         TPTE ENSG00000274391       ENST00000427445       10521553
13387         TPTE ENSG00000274391       ENST00000427445       10521553
13388         TPTE ENSG00000274391       ENST00000427445       10521553
13389         TPTE ENSG00000274391       ENST00000427445       10521553
13390         TPTE ENSG00000274391       ENST00000427445       10521553
13391         TPTE ENSG00000274391       ENST00000427445       10521553
13392         TPTE ENSG00000274391       ENST00000427445       10521553
13393         TPTE ENSG00000274391       ENST00000427445       10521553
13394         TPTE ENSG00000274391       ENST00000427445       10521553
13395         TPTE ENSG00000274391       ENST00000427445       10521553
13396         TPTE ENSG00000274391       ENST00000427445       10521553
13397         TPTE ENSG00000274391       ENST00000427445       10521553
13398         TPTE ENSG00000274391       ENST00000427445       10521553
13399         TPTE ENSG00000274391       ENST00000427445       10521553
13400         TPTE ENSG00000274391       ENST00000427445       10521553
13401         TPTE ENSG00000274391       ENST00000427445       10521553
13402         TPTE ENSG00000274391       ENST00000427445       10521553
13403         TPTE ENSG00000274391       ENST00000427445       10521553
13404         TPTE ENSG00000274391       ENST00000612746       10521553
13405         TPTE ENSG00000274391       ENST00000612746       10521553
13406         TPTE ENSG00000274391       ENST00000612746       10521553
13407         TPTE ENSG00000274391       ENST00000612746       10521553
13408         TPTE ENSG00000274391       ENST00000612746       10521553
13409         TPTE ENSG00000274391       ENST00000612746       10521553
13410         TPTE ENSG00000274391       ENST00000612746       10521553
13411         TPTE ENSG00000274391       ENST00000612746       10521553
13412         TPTE ENSG00000274391       ENST00000612746       10521553
13413         TPTE ENSG00000274391       ENST00000612746       10521553
13414         TPTE ENSG00000274391       ENST00000612746       10521553
13415         TPTE ENSG00000274391       ENST00000612746       10521553
13416         TPTE ENSG00000274391       ENST00000612746       10521553
13417         TPTE ENSG00000274391       ENST00000612746       10521553
13418         TPTE ENSG00000274391       ENST00000612746       10521553
13419         TPTE ENSG00000274391       ENST00000612746       10521553
13420         TPTE ENSG00000274391       ENST00000612746       10521553
13421         TPTE ENSG00000274391       ENST00000612746       10521553
13422         TPTE ENSG00000274391       ENST00000612746       10521553
13423    LINC01689 ENSG00000224832       ENST00000416218       24304550
13424    LINC01689 ENSG00000224832       ENST00000416218       24304550
13425    LINC01689 ENSG00000224832       ENST00000416218       24304550
13426    LINC01689 ENSG00000224832       ENST00000416218       24304550
13427              ENSG00000231986       ENST00000441465       23888798
13428              ENSG00000231986       ENST00000441465       23888798
13429              ENSG00000231986       ENST00000441465       23888798
13430      TEKT4P2 ENSG00000188681       ENST00000559466        9068361
13431      TEKT4P2 ENSG00000188681       ENST00000559466        9068361
13432      TEKT4P2 ENSG00000188681       ENST00000559466        9068361
13433      TEKT4P2 ENSG00000188681       ENST00000559466        9068361
13434      TEKT4P2 ENSG00000188681       ENST00000559466        9068361
13435      TEKT4P2 ENSG00000188681       ENST00000559466        9068361
13436      TEKT4P2 ENSG00000188681       ENST00000416067        9068361
13437      TEKT4P2 ENSG00000188681       ENST00000416067        9068361
13438      TEKT4P2 ENSG00000188681       ENST00000416067        9068361
13439      TEKT4P2 ENSG00000188681       ENST00000416067        9068361
13440              ENSG00000280436       ENST00000623201        9053122
13441              ENSG00000280436       ENST00000623201        9053122
13442     EEF1A1P1 ENSG00000223822       ENST00000447052       23390258
13443              ENSG00000278931       ENST00000624291        8857260
13444              ENSG00000278931       ENST00000624291        8857260
13445              ENSG00000278931       ENST00000624291        8857260
13446              ENSG00000278931       ENST00000624291        8857260
13447              ENSG00000278931       ENST00000624291        8857260
13448              ENSG00000278931       ENST00000624291        8857260
13449              ENSG00000278931       ENST00000624291        8857260
13450              ENSG00000278931       ENST00000624291        8857260
13451              ENSG00000278931       ENST00000624291        8857260
13452              ENSG00000237325       ENST00000490865       31452466
13453    LINC00307 ENSG00000227342       ENST00000451410       30209151
13454    LINC00307 ENSG00000227342       ENST00000451410       30209151
13455    LINC00307 ENSG00000227342       ENST00000451410       30209151
13456       CLDN17 ENSG00000156282       ENST00000286808       30165564
13457       VN1R7P ENSG00000275592       ENST00000619242       10357400
13458       VN1R7P ENSG00000275592       ENST00000619242       10357400
13459              ENSG00000260583       ENST00000567517       25582770
13460      EIF3FP1 ENSG00000275945       ENST00000613970       10330732
13461              ENSG00000279783       ENST00000624130        9810501
13462              ENSG00000279208       ENST00000624041        9369285
13463              ENSG00000279208       ENST00000624041        9369285
13464              ENSG00000279208       ENST00000624041        9369285
13465              ENSG00000279208       ENST00000624041        9369285
13466              ENSG00000278932       ENST00000622961        9325013
13467              ENSG00000278932       ENST00000622961        9325013
13468              ENSG00000278932       ENST00000622961        9325013
13469              ENSG00000278932       ENST00000622961        9325013
13470              ENSG00000278932       ENST00000622961        9325013
13471              ENSG00000278932       ENST00000622961        9325013
13472              ENSG00000278932       ENST00000622995        9325013
13473              ENSG00000278932       ENST00000622995        9325013
13474              ENSG00000278932       ENST00000625153        9325013
13475              ENSG00000278932       ENST00000625153        9325013
13476              ENSG00000278932       ENST00000625153        9325013
13477              ENSG00000278932       ENST00000625153        9325013
13478              ENSG00000278932       ENST00000625153        9325013
13479              ENSG00000278932       ENST00000624052        9325013
13480              ENSG00000278932       ENST00000624052        9325013
13481              ENSG00000278932       ENST00000624052        9325013
13482              ENSG00000278932       ENST00000623409        9325013
13483              ENSG00000278932       ENST00000623409        9325013
13484              ENSG00000278932       ENST00000624162        9325013
13485              ENSG00000278932       ENST00000624162        9325013
13486              ENSG00000244278       ENST00000424017       25055535
13487              ENSG00000244278       ENST00000424017       25055535
13488              ENSG00000244278       ENST00000424017       25055535
13489              ENSG00000244278       ENST00000424017       25055535
13490              ENSG00000237444       ENST00000423389       25031005
13491              ENSG00000224018       ENST00000448063       24155170
13492              ENSG00000224018       ENST00000448063       24155170
13493              ENSG00000224018       ENST00000448063       24155170
13494              ENSG00000279381       ENST00000623217        9088188
13495              ENSG00000279414       ENST00000623182        9026821
13496      MTCO1P1 ENSG00000280243       ENST00000624263        8845566
13497     SNX18P10 ENSG00000279213       ENST00000625014        8801362
13498    LINC01666 ENSG00000279579       ENST00000624813        8759077
13499    LINC01666 ENSG00000279579       ENST00000624813        8759077
13500    LINC01666 ENSG00000279579       ENST00000623794        8759077
13501    LINC01666 ENSG00000279579       ENST00000623794        8759077
13502              ENSG00000279167       ENST00000625098        8701461
13503              ENSG00000279615       ENST00000624852        8680538
13504      RPSAP68 ENSG00000279990       ENST00000625020        8603547
13505              ENSG00000281181       ENST00000627981        8437629
13506     PPP6R2P1 ENSG00000233442       ENST00000450880       14007134
13507     PPP6R2P1 ENSG00000233442       ENST00000450880       14007134
13508     PPP6R2P1 ENSG00000233442       ENST00000450880       14007134
13509     PPP6R2P1 ENSG00000233442       ENST00000450880       14007134
13510     PPP6R2P1 ENSG00000233442       ENST00000450880       14007134
13511     PPP6R2P1 ENSG00000233442       ENST00000450880       14007134
13512     PPP6R2P1 ENSG00000233442       ENST00000450880       14007134
13513     PPP6R2P1 ENSG00000233442       ENST00000450880       14007134
13514     PPP6R2P1 ENSG00000233442       ENST00000450880       14007134
13515     PPP6R2P1 ENSG00000233442       ENST00000450880       14007134
13516     PPP6R2P1 ENSG00000233442       ENST00000450880       14007134
13517  KRTAP19-11P ENSG00000236612       ENST00000439851       30537278
13518       MRPL39 ENSG00000154719       ENST00000352957       25585656
13519       MRPL39 ENSG00000154719       ENST00000352957       25585656
13520       MRPL39 ENSG00000154719       ENST00000352957       25585656
13521       MRPL39 ENSG00000154719       ENST00000352957       25585656
13522       MRPL39 ENSG00000154719       ENST00000352957       25585656
13523       MRPL39 ENSG00000154719       ENST00000352957       25585656
13524       MRPL39 ENSG00000154719       ENST00000352957       25585656
13525       MRPL39 ENSG00000154719       ENST00000352957       25585656
13526       MRPL39 ENSG00000154719       ENST00000352957       25585656
13527       MRPL39 ENSG00000154719       ENST00000352957       25585656
13528       MRPL39 ENSG00000154719       ENST00000307301       25585656
13529       MRPL39 ENSG00000154719       ENST00000307301       25585656
13530       MRPL39 ENSG00000154719       ENST00000307301       25585656
13531       MRPL39 ENSG00000154719       ENST00000307301       25585656
13532       MRPL39 ENSG00000154719       ENST00000307301       25585656
13533       MRPL39 ENSG00000154719       ENST00000307301       25585656
13534       MRPL39 ENSG00000154719       ENST00000307301       25585656
13535       MRPL39 ENSG00000154719       ENST00000307301       25585656
13536       MRPL39 ENSG00000154719       ENST00000307301       25585656
13537       MRPL39 ENSG00000154719       ENST00000307301       25585656
13538       MRPL39 ENSG00000154719       ENST00000307301       25585656
13539       MRPL39 ENSG00000154719       ENST00000419219       25585656
13540       MRPL39 ENSG00000154719       ENST00000419219       25585656
13541       MRPL39 ENSG00000154719       ENST00000419219       25585656
13542       MRPL39 ENSG00000154719       ENST00000419219       25585656
13543       MRPL39 ENSG00000154719       ENST00000419219       25585656
13544       MRPL39 ENSG00000154719       ENST00000419219       25585656
13545       MRPL39 ENSG00000154719       ENST00000419219       25585656
13546       MRPL39 ENSG00000154719       ENST00000419219       25585656
13547     MIR155HG ENSG00000234883       ENST00000456917       25561909
13548     MIR155HG ENSG00000234883       ENST00000456917       25561909
13549     MIR155HG ENSG00000234883       ENST00000456917       25561909
13550     MIR155HG ENSG00000234883       ENST00000456917       25561909
13551              ENSG00000279321       ENST00000624226        9913117
13552              ENSG00000279321       ENST00000624226        9913117
13553              ENSG00000279321       ENST00000623559        9913117
13554              ENSG00000279321       ENST00000623559        9913117
13555              ENSG00000279321       ENST00000623559        9913117
13556              ENSG00000270533       ENST00000625012        9975017
13557              ENSG00000270533       ENST00000625012        9975017
13558              ENSG00000270533       ENST00000625012        9975017
13559              ENSG00000270533       ENST00000625012        9975017
13560              ENSG00000270533       ENST00000625012        9975017
13561              ENSG00000270533       ENST00000625012        9975017
13562              ENSG00000270533       ENST00000625012        9975017
13563              ENSG00000270533       ENST00000625012        9975017
13564              ENSG00000270533       ENST00000625012        9975017
13565              ENSG00000270533       ENST00000625012        9975017
13566              ENSG00000270533       ENST00000625012        9975017
13567              ENSG00000270533       ENST00000604687        9975017
13568              ENSG00000280372       ENST00000624662       10028361
13569              ENSG00000279851       ENST00000623370       10122273
13570              ENSG00000279851       ENST00000623370       10122273
13571    LINC01671 ENSG00000225431       ENST00000419628       42599280
13572    LINC01671 ENSG00000225431       ENST00000419628       42599280
13573    CYYR1-AS1 ENSG00000197934       ENST00000414486       26393635
13574    CYYR1-AS1 ENSG00000197934       ENST00000414486       26393635
13575    CYYR1-AS1 ENSG00000197934       ENST00000414486       26393635
13576    CYYR1-AS1 ENSG00000197934       ENST00000414486       26393635
13577    CYYR1-AS1 ENSG00000197934       ENST00000357401       26393635
13578    CYYR1-AS1 ENSG00000197934       ENST00000357401       26393635
13579    CYYR1-AS1 ENSG00000197934       ENST00000357401       26393635
13580    CYYR1-AS1 ENSG00000197934       ENST00000357401       26393635
13581     RAD23BLP ENSG00000226298       ENST00000454157       15694300
13582     RAD23BLP ENSG00000226298       ENST00000454157       15694300
13583              ENSG00000236471       ENST00000449746       15067070
13584              ENSG00000236471       ENST00000449746       15067070
13585      MTCO1P3 ENSG00000228930       ENST00000429327       45376191
13586              ENSG00000232623       ENST00000450936       32306464
13587              ENSG00000232623       ENST00000450936       32306464
13588              ENSG00000237721       ENST00000419664       39006648
13589              ENSG00000237721       ENST00000419664       39006648
13590              ENSG00000237721       ENST00000419664       39006648
13591              ENSG00000261610       ENST00000565959       32259804
13592         ETS2 ENSG00000157557       ENST00000360214       38805307
13593         ETS2 ENSG00000157557       ENST00000360214       38805307
13594         ETS2 ENSG00000157557       ENST00000360214       38805307
13595         ETS2 ENSG00000157557       ENST00000360214       38805307
13596         ETS2 ENSG00000157557       ENST00000360214       38805307
13597         ETS2 ENSG00000157557       ENST00000360214       38805307
13598         ETS2 ENSG00000157557       ENST00000360214       38805307
13599         ETS2 ENSG00000157557       ENST00000360214       38805307
13600         ETS2 ENSG00000157557       ENST00000360214       38805307
13601         ETS2 ENSG00000157557       ENST00000360214       38805307
13602         ETS2 ENSG00000157557       ENST00000360214       38805307
13603         ETS2 ENSG00000157557       ENST00000360938       38805307
13604         ETS2 ENSG00000157557       ENST00000360938       38805307
13605         ETS2 ENSG00000157557       ENST00000360938       38805307
13606         ETS2 ENSG00000157557       ENST00000360938       38805307
13607         ETS2 ENSG00000157557       ENST00000360938       38805307
13608         ETS2 ENSG00000157557       ENST00000360938       38805307
13609         ETS2 ENSG00000157557       ENST00000360938       38805307
13610         ETS2 ENSG00000157557       ENST00000360938       38805307
13611         ETS2 ENSG00000157557       ENST00000360938       38805307
13612         ETS2 ENSG00000157557       ENST00000360938       38805307
13613         ETS2 ENSG00000157557       ENST00000432278       38805307
13614         ETS2 ENSG00000157557       ENST00000432278       38805307
13615         ETS2 ENSG00000157557       ENST00000432278       38805307
13616         ETS2 ENSG00000157557       ENST00000432278       38805307
13617         ETS2 ENSG00000157557       ENST00000432278       38805307
13618         ETS2 ENSG00000157557       ENST00000432278       38805307
13619         ETS2 ENSG00000157557       ENST00000456966       38805307
13620         ETS2 ENSG00000157557       ENST00000456966       38805307
13621         ETS2 ENSG00000157557       ENST00000456966       38805307
13622         ETS2 ENSG00000157557       ENST00000456966       38805307
13623         ETS2 ENSG00000157557       ENST00000456966       38805307
13624         ETS2 ENSG00000157557       ENST00000456966       38805307
13625         ETS2 ENSG00000157557       ENST00000456966       38805307
13626       UMODL1 ENSG00000177398       ENST00000400427       42062959
13627       UMODL1 ENSG00000177398       ENST00000400427       42062959
13628       UMODL1 ENSG00000177398       ENST00000400427       42062959
13629       UMODL1 ENSG00000177398       ENST00000400427       42062959
13630       UMODL1 ENSG00000177398       ENST00000400427       42062959
13631       UMODL1 ENSG00000177398       ENST00000400427       42062959
13632       UMODL1 ENSG00000177398       ENST00000400427       42062959
13633       UMODL1 ENSG00000177398       ENST00000400427       42062959
13634       UMODL1 ENSG00000177398       ENST00000400427       42062959
13635       UMODL1 ENSG00000177398       ENST00000400427       42062959
13636       UMODL1 ENSG00000177398       ENST00000400427       42062959
13637       UMODL1 ENSG00000177398       ENST00000400427       42062959
13638       UMODL1 ENSG00000177398       ENST00000400427       42062959
13639       UMODL1 ENSG00000177398       ENST00000400427       42062959
13640       UMODL1 ENSG00000177398       ENST00000400427       42062959
13641       UMODL1 ENSG00000177398       ENST00000400427       42062959
13642       UMODL1 ENSG00000177398       ENST00000400427       42062959
13643       UMODL1 ENSG00000177398       ENST00000400427       42062959
13644       UMODL1 ENSG00000177398       ENST00000400427       42062959
13645       UMODL1 ENSG00000177398       ENST00000400427       42062959
13646       UMODL1 ENSG00000177398       ENST00000400427       42062959
13647       UMODL1 ENSG00000177398       ENST00000400427       42062959
13648       UMODL1 ENSG00000177398       ENST00000400424       42062959
13649       UMODL1 ENSG00000177398       ENST00000400424       42062959
13650       UMODL1 ENSG00000177398       ENST00000400424       42062959
13651       UMODL1 ENSG00000177398       ENST00000400424       42062959
13652       UMODL1 ENSG00000177398       ENST00000400424       42062959
13653       UMODL1 ENSG00000177398       ENST00000400424       42062959
13654       UMODL1 ENSG00000177398       ENST00000400424       42062959
13655       UMODL1 ENSG00000177398       ENST00000400424       42062959
13656       UMODL1 ENSG00000177398       ENST00000400424       42062959
13657       UMODL1 ENSG00000177398       ENST00000400424       42062959
13658       UMODL1 ENSG00000177398       ENST00000400424       42062959
13659       UMODL1 ENSG00000177398       ENST00000400424       42062959
13660       UMODL1 ENSG00000177398       ENST00000400424       42062959
13661       UMODL1 ENSG00000177398       ENST00000400424       42062959
13662       UMODL1 ENSG00000177398       ENST00000400424       42062959
13663       UMODL1 ENSG00000177398       ENST00000400424       42062959
13664       UMODL1 ENSG00000177398       ENST00000400424       42062959
13665       UMODL1 ENSG00000177398       ENST00000400424       42062959
13666       UMODL1 ENSG00000177398       ENST00000400424       42062959
13667       UMODL1 ENSG00000177398       ENST00000400424       42062959
13668       UMODL1 ENSG00000177398       ENST00000400424       42062959
13669       UMODL1 ENSG00000177398       ENST00000400424       42062959
13670       UMODL1 ENSG00000177398       ENST00000400424       42062959
13671       UMODL1 ENSG00000177398       ENST00000408989       42062959
13672       UMODL1 ENSG00000177398       ENST00000408989       42062959
13673       UMODL1 ENSG00000177398       ENST00000408989       42062959
13674       UMODL1 ENSG00000177398       ENST00000408989       42062959
13675       UMODL1 ENSG00000177398       ENST00000408989       42062959
13676       UMODL1 ENSG00000177398       ENST00000408989       42062959
13677       UMODL1 ENSG00000177398       ENST00000408989       42062959
13678       UMODL1 ENSG00000177398       ENST00000408989       42062959
13679       UMODL1 ENSG00000177398       ENST00000408989       42062959
13680       UMODL1 ENSG00000177398       ENST00000408989       42062959
13681       UMODL1 ENSG00000177398       ENST00000408989       42062959
13682       UMODL1 ENSG00000177398       ENST00000408989       42062959
13683       UMODL1 ENSG00000177398       ENST00000408989       42062959
13684       UMODL1 ENSG00000177398       ENST00000408989       42062959
13685       UMODL1 ENSG00000177398       ENST00000408989       42062959
13686       UMODL1 ENSG00000177398       ENST00000408989       42062959
13687       UMODL1 ENSG00000177398       ENST00000408989       42062959
13688       UMODL1 ENSG00000177398       ENST00000408989       42062959
13689       UMODL1 ENSG00000177398       ENST00000408989       42062959
13690       UMODL1 ENSG00000177398       ENST00000408989       42062959
13691       UMODL1 ENSG00000177398       ENST00000408989       42062959
13692       UMODL1 ENSG00000177398       ENST00000408989       42062959
13693       UMODL1 ENSG00000177398       ENST00000408910       42062959
13694       UMODL1 ENSG00000177398       ENST00000408910       42062959
13695       UMODL1 ENSG00000177398       ENST00000408910       42062959
13696       UMODL1 ENSG00000177398       ENST00000408910       42062959
13697       UMODL1 ENSG00000177398       ENST00000408910       42062959
13698       UMODL1 ENSG00000177398       ENST00000408910       42062959
13699       UMODL1 ENSG00000177398       ENST00000408910       42062959
13700       UMODL1 ENSG00000177398       ENST00000408910       42062959
13701       UMODL1 ENSG00000177398       ENST00000408910       42062959
13702       UMODL1 ENSG00000177398       ENST00000408910       42062959
13703       UMODL1 ENSG00000177398       ENST00000408910       42062959
13704       UMODL1 ENSG00000177398       ENST00000408910       42062959
13705       UMODL1 ENSG00000177398       ENST00000408910       42062959
13706       UMODL1 ENSG00000177398       ENST00000408910       42062959
13707       UMODL1 ENSG00000177398       ENST00000408910       42062959
13708       UMODL1 ENSG00000177398       ENST00000408910       42062959
13709       UMODL1 ENSG00000177398       ENST00000408910       42062959
13710       UMODL1 ENSG00000177398       ENST00000408910       42062959
13711       UMODL1 ENSG00000177398       ENST00000408910       42062959
13712       UMODL1 ENSG00000177398       ENST00000408910       42062959
13713       UMODL1 ENSG00000177398       ENST00000408910       42062959
13714       UMODL1 ENSG00000177398       ENST00000408910       42062959
13715       UMODL1 ENSG00000177398       ENST00000408910       42062959
13716       UMODL1 ENSG00000177398       ENST00000491559       42062959
13717       UMODL1 ENSG00000177398       ENST00000491559       42062959
13718       UMODL1 ENSG00000177398       ENST00000491559       42062959
13719       UMODL1 ENSG00000177398       ENST00000491559       42062959
13720       UMODL1 ENSG00000177398       ENST00000491559       42062959
13721       UMODL1 ENSG00000177398       ENST00000491559       42062959
13722       UMODL1 ENSG00000177398       ENST00000491559       42062959
13723       UMODL1 ENSG00000177398       ENST00000491559       42062959
13724       UMODL1 ENSG00000177398       ENST00000468982       42062959
13725       UMODL1 ENSG00000177398       ENST00000468982       42062959
13726       UMODL1 ENSG00000177398       ENST00000468982       42062959
13727       UMODL1 ENSG00000177398       ENST00000468982       42062959
13728       UMODL1 ENSG00000177398       ENST00000468982       42062959
13729       UMODL1 ENSG00000177398       ENST00000468982       42062959
13730       UMODL1 ENSG00000177398       ENST00000468982       42062959
13731       UMODL1 ENSG00000177398       ENST00000497243       42062959
13732       UMODL1 ENSG00000177398       ENST00000497243       42062959
13733       UMODL1 ENSG00000177398       ENST00000497243       42062959
13734       UMODL1 ENSG00000177398       ENST00000497243       42062959
13735       UMODL1 ENSG00000177398       ENST00000497243       42062959
13736       UMODL1 ENSG00000177398       ENST00000400421       42062959
13737       UMODL1 ENSG00000177398       ENST00000400421       42062959
13738       UMODL1 ENSG00000177398       ENST00000400421       42062959
13739       UMODL1 ENSG00000177398       ENST00000400421       42062959
13740       UMODL1 ENSG00000177398       ENST00000400421       42062959
13741       UMODL1 ENSG00000177398       ENST00000400421       42062959
13742       UMODL1 ENSG00000177398       ENST00000400421       42062959
13743       UMODL1 ENSG00000177398       ENST00000466434       42062959
13744       UMODL1 ENSG00000177398       ENST00000466434       42062959
13745       UMODL1 ENSG00000177398       ENST00000466434       42062959
13746       UMODL1 ENSG00000177398       ENST00000466434       42062959
13747       UMODL1 ENSG00000177398       ENST00000466434       42062959
13748       UMODL1 ENSG00000177398       ENST00000466434       42062959
13749       UMODL1 ENSG00000177398       ENST00000466434       42062959
13750       UMODL1 ENSG00000177398       ENST00000485357       42062959
13751       UMODL1 ENSG00000177398       ENST00000485357       42062959
13752       UMODL1 ENSG00000177398       ENST00000485357       42062959
13753       UMODL1 ENSG00000177398       ENST00000485357       42062959
13754       UMODL1 ENSG00000177398       ENST00000485357       42062959
13755       UMODL1 ENSG00000177398       ENST00000485357       42062959
13756       UMODL1 ENSG00000177398       ENST00000485357       42062959
13757       UMODL1 ENSG00000177398       ENST00000475047       42062959
13758       UMODL1 ENSG00000177398       ENST00000475047       42062959
13759       UMODL1 ENSG00000177398       ENST00000475047       42062959
13760       UMODL1 ENSG00000177398       ENST00000475047       42062959
13761       UMODL1 ENSG00000177398       ENST00000484174       42062959
13762       UMODL1 ENSG00000177398       ENST00000484174       42062959
13763       UMODL1 ENSG00000177398       ENST00000484174       42062959
13764       UMODL1 ENSG00000177398       ENST00000400423       42062959
13765       UMODL1 ENSG00000177398       ENST00000400423       42062959
13766       UMODL1 ENSG00000177398       ENST00000400423       42062959
13767       UMODL1 ENSG00000177398       ENST00000400423       42062959
13768       UMODL1 ENSG00000177398       ENST00000400423       42062959
13769       UMODL1 ENSG00000177398       ENST00000400423       42062959
13770       UMODL1 ENSG00000177398       ENST00000400423       42062959
13771       UMODL1 ENSG00000177398       ENST00000400423       42062959
13772       UMODL1 ENSG00000177398       ENST00000400423       42062959
13773       UMODL1 ENSG00000177398       ENST00000484712       42062959
13774       UMODL1 ENSG00000177398       ENST00000484712       42062959
13775       UMODL1 ENSG00000177398       ENST00000484712       42062959
13776       UMODL1 ENSG00000177398       ENST00000484712       42062959
13777              ENSG00000275464       ENST00000617716        5130871
13778              ENSG00000275464       ENST00000617716        5130871
13779              ENSG00000275464       ENST00000617716        5130871
13780              ENSG00000275464       ENST00000617716        5130871
13781              ENSG00000275464       ENST00000617716        5130871
13782              ENSG00000275464       ENST00000617716        5130871
13783              ENSG00000275464       ENST00000617716        5130871
13784              ENSG00000275464       ENST00000617716        5130871
13785              ENSG00000275464       ENST00000617716        5130871
13786              ENSG00000275464       ENST00000617716        5130871
13787              ENSG00000275464       ENST00000617716        5130871
13788              ENSG00000275464       ENST00000617716        5130871
13789              ENSG00000275464       ENST00000617716        5130871
13790              ENSG00000275464       ENST00000617716        5130871
13791              ENSG00000275464       ENST00000617716        5130871
13792              ENSG00000275464       ENST00000617716        5130871
13793              ENSG00000275464       ENST00000617716        5130871
13794              ENSG00000275464       ENST00000617716        5130871
13795              ENSG00000275464       ENST00000617716        5130871
13796              ENSG00000275464       ENST00000617716        5130871
13797              ENSG00000275464       ENST00000617716        5130871
13798              ENSG00000275464       ENST00000632537        5130871
13799              ENSG00000275464       ENST00000632537        5130871
13800              ENSG00000275464       ENST00000632537        5130871
13801              ENSG00000275464       ENST00000632537        5130871
13802              ENSG00000275464       ENST00000632537        5130871
13803              ENSG00000275464       ENST00000632537        5130871
13804              ENSG00000275464       ENST00000623011        5130871
13805              ENSG00000275464       ENST00000623011        5130871
13806              ENSG00000275464       ENST00000623011        5130871
13807              ENSG00000275464       ENST00000623011        5130871
13808              ENSG00000275464       ENST00000623011        5130871
13809              ENSG00000275464       ENST00000623011        5130871
13810              ENSG00000275464       ENST00000624312        5130871
13811              ENSG00000275464       ENST00000624312        5130871
13812              ENSG00000275464       ENST00000633442        5130871
13813              ENSG00000275464       ENST00000633442        5130871
13814              ENSG00000275464       ENST00000633442        5130871
13815              ENSG00000275464       ENST00000633593        5130871
13816              ENSG00000275464       ENST00000633593        5130871
13817              ENSG00000275464       ENST00000633593        5130871
13818              ENSG00000275464       ENST00000634020        5130871
13819              ENSG00000275464       ENST00000634020        5130871
13820              ENSG00000275464       ENST00000634020        5130871
13821              ENSG00000275464       ENST00000634020        5130871
13822              ENSG00000275464       ENST00000634020        5130871
13823              ENSG00000275464       ENST00000634021        5130871
13824              ENSG00000275464       ENST00000634021        5130871
13825              ENSG00000275464       ENST00000634021        5130871
13826              ENSG00000275464       ENST00000634021        5130871
13827              ENSG00000275464       ENST00000634021        5130871
13828              ENSG00000280071       ENST00000624810        5079294
13829              ENSG00000280071       ENST00000624810        5079294
13830              ENSG00000280071       ENST00000624810        5079294
13831              ENSG00000280071       ENST00000624810        5079294
13832              ENSG00000280071       ENST00000624810        5079294
13833              ENSG00000280071       ENST00000624810        5079294
13834              ENSG00000280071       ENST00000625036        5079294
13835              ENSG00000280071       ENST00000625036        5079294
13836              ENSG00000280071       ENST00000625036        5079294
13837              ENSG00000280071       ENST00000625036        5079294
13838              ENSG00000280071       ENST00000625036        5079294
13839              ENSG00000280071       ENST00000620015        5079294
13840              ENSG00000280071       ENST00000620015        5079294
13841              ENSG00000280071       ENST00000620015        5079294
13842              ENSG00000280071       ENST00000620015        5079294
13843              ENSG00000280071       ENST00000620015        5079294
13844              ENSG00000280071       ENST00000620015        5079294
13845              ENSG00000280071       ENST00000620528        5079294
13846              ENSG00000280071       ENST00000620528        5079294
13847              ENSG00000280071       ENST00000620528        5079294
13848              ENSG00000280071       ENST00000620528        5079294
13849              ENSG00000280071       ENST00000620528        5079294
13850              ENSG00000280071       ENST00000620528        5079294
13851              ENSG00000280071       ENST00000620528        5079294
13852              ENSG00000280071       ENST00000624120        5079294
13853              ENSG00000280071       ENST00000624120        5079294
13854              ENSG00000280071       ENST00000624120        5079294
13855              ENSG00000280071       ENST00000624120        5079294
13856              ENSG00000280071       ENST00000624120        5079294
13857              ENSG00000280071       ENST00000624120        5079294
13858              ENSG00000280071       ENST00000624748        5079294
13859              ENSG00000280071       ENST00000624748        5079294
13860              ENSG00000280071       ENST00000624748        5079294
13861              ENSG00000280071       ENST00000624648        5079294
13862              ENSG00000280071       ENST00000624648        5079294
13863              ENSG00000280071       ENST00000624648        5079294
13864              ENSG00000280071       ENST00000624648        5079294
13865              ENSG00000280071       ENST00000624648        5079294
13866              ENSG00000280071       ENST00000624648        5079294
13867              ENSG00000280071       ENST00000623810        5079294
13868              ENSG00000280071       ENST00000623810        5079294
13869              ENSG00000280071       ENST00000623810        5079294
13870              ENSG00000280071       ENST00000623810        5079294
13871              ENSG00000280071       ENST00000623810        5079294
13872              ENSG00000280071       ENST00000624714        5079294
13873              ENSG00000280071       ENST00000624714        5079294
13874              ENSG00000280071       ENST00000624714        5079294
13875              ENSG00000280071       ENST00000624714        5079294
13876              ENSG00000280071       ENST00000624714        5079294
13877              ENSG00000280071       ENST00000623390        5079294
13878              ENSG00000280071       ENST00000623390        5079294
13879              ENSG00000280071       ENST00000623390        5079294
13880              ENSG00000280071       ENST00000623390        5079294
13881              ENSG00000280071       ENST00000622915        5079294
13882              ENSG00000280071       ENST00000622915        5079294
13883   ANKRD30BP2 ENSG00000224309       ENST00000447861       13038160
13884   ANKRD30BP2 ENSG00000224309       ENST00000447861       13038160
13885   ANKRD30BP2 ENSG00000224309       ENST00000447861       13038160
13886   ANKRD30BP2 ENSG00000224309       ENST00000447861       13038160
13887   ANKRD30BP2 ENSG00000224309       ENST00000447861       13038160
13888   ANKRD30BP2 ENSG00000224309       ENST00000435744       13038160
13889   ANKRD30BP2 ENSG00000224309       ENST00000435744       13038160
13890   ANKRD30BP2 ENSG00000224309       ENST00000435744       13038160
13891   ANKRD30BP2 ENSG00000224309       ENST00000435744       13038160
13892   ANKRD30BP2 ENSG00000224309       ENST00000435744       13038160
13893   ANKRD30BP2 ENSG00000224309       ENST00000435744       13038160
13894   ANKRD30BP2 ENSG00000224309       ENST00000435744       13038160
13895   ANKRD30BP2 ENSG00000224309       ENST00000435744       13038160
13896   ANKRD30BP2 ENSG00000224309       ENST00000435744       13038160
13897   ANKRD30BP2 ENSG00000224309       ENST00000435744       13038160
13898   ANKRD30BP2 ENSG00000224309       ENST00000435744       13038160
13899   ANKRD30BP2 ENSG00000224309       ENST00000507941       13038160
13900   ANKRD30BP2 ENSG00000224309       ENST00000507941       13038160
13901   ANKRD30BP2 ENSG00000224309       ENST00000471407       13038160
13902   ANKRD30BP2 ENSG00000224309       ENST00000471407       13038160
13903   ANKRD30BP2 ENSG00000224309       ENST00000471407       13038160
13904   ANKRD30BP2 ENSG00000224309       ENST00000471407       13038160
13905              ENSG00000276556       ENST00000611755       10640028
13906              ENSG00000270835       ENST00000632732       38204141
13907              ENSG00000270835       ENST00000605450       38204141
13908    KRTAP11-1 ENSG00000182591       ENST00000332378       30880644
13909     KRTAP8-1 ENSG00000183640       ENST00000329621       30812697
13910   KRTAP21-4P ENSG00000236400       ENST00000454921       30741780
13911        KCNJ6 ENSG00000157542       ENST00000609713       37607376
13912        KCNJ6 ENSG00000157542       ENST00000609713       37607376
13913        KCNJ6 ENSG00000157542       ENST00000609713       37607376
13914        KCNJ6 ENSG00000157542       ENST00000609713       37607376
13915    KCNJ6-AS1 ENSG00000233213       ENST00000435001       37717102
13916    KCNJ6-AS1 ENSG00000233213       ENST00000435001       37717102
13917    KRTAP22-2 ENSG00000206106       ENST00000382830       30590105
13918     KRTAP6-3 ENSG00000212938       ENST00000391624       30592440
13919     RPL23AP4 ENSG00000212932       ENST00000427757       46690764
13920     KRTAP6-2 ENSG00000186930       ENST00000334897       30598590
13921    KRTAP22-1 ENSG00000186924       ENST00000334680       30601087
13922     KRTAP6-1 ENSG00000184724       ENST00000329122       30613431
13923    KRTAP20-1 ENSG00000244624       ENST00000334664       30616425
13924    KRTAP20-4 ENSG00000206105       ENST00000382828       30620627
13925              ENSG00000276529       ENST00000616815       44978832
13926    LINC00163 ENSG00000234880       ENST00000439088       44989864
13927    LINC00163 ENSG00000234880       ENST00000439088       44989864
13928    LINC00163 ENSG00000234880       ENST00000434081       44989864
13929    LINC00163 ENSG00000234880       ENST00000434081       44989864
13930    LINC00165 ENSG00000261706       ENST00000569966       44994362
13931       PICSAR ENSG00000275874       ENST00000615826       44999208
13932       PICSAR ENSG00000275874       ENST00000615826       44999208
13933       SSR4P1 ENSG00000235374       ENST00000599569       45070952
13934       SSR4P1 ENSG00000235374       ENST00000429427       45070952
13935       SSR4P1 ENSG00000235374       ENST00000429427       45070952
13936       SSR4P1 ENSG00000235374       ENST00000415143       45070952
13937   RNU6-1150P ENSG00000252606       ENST00000516797       43996322
13938              ENSG00000199698       ENST00000362828       23432181
13939              ENSG00000277777       ENST00000610788        5597390
13940              ENSG00000274484       ENST00000613803        7474394
13941    RNU6-614P ENSG00000207097       ENST00000384369       13047583
13942     MIRLET7C ENSG00000199030       ENST00000362160       16539828
13943    RN7SKP236 ENSG00000274662       ENST00000410635       25101132
13944    RN7SL740P ENSG00000244294       ENST00000467060       33918995
13945    RNU6-992P ENSG00000200213       ENST00000363343       36066545
13946              ENSG00000238390       ENST00000458922       31664306
13947    RNU6-859P ENSG00000199598       ENST00000362728       43919795
13948    RNA5SP490 ENSG00000252950       ENST00000517141       32563075
13949      MIR4327 ENSG00000265007       ENST00000581194       30375294
13950              ENSG00000252915       ENST00000517106       39344537
13951    RNU6-926P ENSG00000206802       ENST00000384075       26190707
13952    RNU6-113P ENSG00000252462       ENST00000516653       17431547
13953              ENSG00000275631       ENST00000620684        9646825
13954      MIR3197 ENSG00000263681       ENST00000582241       41167557
13955              ENSG00000207147       ENST00000384418       40513144
13956       MIR99A ENSG00000207638       ENST00000384906       16539089
13957      MIR6070 ENSG00000278433       ENST00000613967       43609887
13958    MIR6724-3 ENSG00000277379       ENST00000622482        8388362
13959              ENSG00000277572       ENST00000613590       14075950
13960              ENSG00000251778       ENST00000515969       41882205
13961              ENSG00000272015       ENST00000606322       38894785
13962     RNA5-8S5 ENSG00000278233       ENST00000612463        8212572
13963     RN7SL52P ENSG00000264002       ENST00000584271        9902344
13964      MIR6508 ENSG00000275523       ENST00000611656       39447010
13965              ENSG00000252199       ENST00000516390        9907916
13966    MIR3156-3 ENSG00000266211       ENST00000580304       13406384
13967     SNORA80A ENSG00000200792       ENST00000363922       32377187
13968              ENSG00000212479       ENST00000391177       29180425
13969    RNA5SP488 ENSG00000201812       ENST00000364942       14070871
13970              ENSG00000252045       ENST00000516236       32538299
13971      MIR548X ENSG00000265841       ENST00000580069       18686090
13972     RNU4-45P ENSG00000202339       ENST00000365469       22205192
13973    RNU6-954P ENSG00000223287       ENST00000411355       13968489
13974    RN7SL678P ENSG00000263969       ENST00000579533       37215605
13975     RNA5-8S5 ENSG00000278189       ENST00000619471        8439823
13976     RNA5-8S5 ENSG00000275215       ENST00000613359        8395607
13977              ENSG00000199962       ENST00000363092       17576798
13978    RNU6-396P ENSG00000202239       ENST00000365369       46525618
      end_position
1         44439110
2          7092716
3          8433174
4         39171560
5         41872054
6         41872054
7         44931989
8         44931989
9         44931989
10        44931989
11        44931989
12        44931989
13        44931989
14        44931989
15        44931989
16        44931989
17        44931989
18        44931989
19        44931989
20        44931989
21        44931989
22        44931989
23        44931989
24        44931989
25        44931989
26        44931989
27        44931989
28        44931989
29        44931989
30        44931989
31        44931989
32        44931989
33        44931989
34        44931989
35        44931989
36        44931989
37        44931989
38        44931989
39        44931989
40        44931989
41        44931989
42        44931989
43        44931989
44        44931989
45        44931989
46        44931989
47        44931989
48        44931989
49        44931989
50        44931989
51        44931989
52        44931989
53        44931989
54        44931989
55        44931989
56        44931989
57        44931989
58        44931989
59        44931989
60        44931989
61        44931989
62        44931989
63        44931989
64        44931989
65        44931989
66        44931989
67        44931989
68        44931989
69        44931989
70        44931989
71        44931989
72        44931989
73        44931989
74        44931989
75        44931989
76        44931989
77        44931989
78        44931989
79        44931989
80        44931989
81        44931989
82        44931989
83        44931989
84        44931989
85        44931989
86        44931989
87        44931989
88        44931989
89        44931989
90        44931989
91        44931989
92        44931989
93        44931989
94        44931989
95        44931989
96        44931989
97        44931989
98        44931989
99        44931989
100       44931989
101       44931989
102       44931989
103       44931989
104       44931989
105       44931989
106       44931989
107       44931989
108       44931989
109       44931989
110       44931989
111       44931989
112       44931989
113       44931989
114       44931989
115       44931989
116       44931989
117       44931989
118       44931989
119       44931989
120       44931989
121       44931989
122       44931989
123       44931989
124       44931989
125       44931989
126       44931989
127       44931989
128       44931989
129       44931989
130       44931989
131       44931989
132       44931989
133       44931989
134       44931989
135       44931989
136       44931989
137       44931989
138       44931989
139       44931989
140       44931989
141       44931989
142       44931989
143       44931989
144       44931989
145       44931989
146       44931989
147       44931989
148       44931989
149       44931989
150       44931989
151       44931989
152       44931989
153       44931989
154       44931989
155       44931989
156       44931989
157       44931989
158       44931989
159       44931989
160       44931989
161       44931989
162       44931989
163       44931989
164       44931989
165       44931989
166       44931989
167       44931989
168       44931989
169       44931989
170       44931989
171       44931989
172       44931989
173       44931989
174       44931989
175       44931989
176       44931989
177       44931989
178       44931989
179       44931989
180       44931989
181       44931989
182       44931989
183       44931989
184       44931989
185       44931989
186       44931989
187       44931989
188       44931989
189       44931989
190       44931989
191       44931989
192       44931989
193       44931989
194       44931989
195       44931989
196       44931989
197       44931989
198       44931989
199       44931989
200       44931989
201       44931989
202       44931989
203       25202315
204       42417593
205       43748468
206       43748468
207       35720808
208       23281909
209       17527247
210       28743291
211       40212431
212       46605208
213       46605208
214       46605208
215       46605208
216       46605208
217       46605208
218       46605208
219       46605208
220       46605208
221       46569852
222       46569852
223       46569852
224       46569852
225       46569852
226       46569852
227       46569852
228       46569852
229       46569852
230       46569852
231       46569852
232       46569852
233       46569852
234       46569852
235       46569852
236       46569852
237       46569852
238       46569852
239       46569852
240       46569852
241       46569852
242       46569852
243       46569852
244       46569852
245       46569852
246       46569852
247       46569852
248       46569852
249       46569852
250       46569852
251       46569852
252       46569852
253       46569852
254       46569852
255       46569852
256       46569852
257       46569852
258       46569852
259       46569852
260       46569852
261       46569852
262       46569852
263       46569852
264       46569852
265       46569852
266       46569852
267       46569852
268       46569852
269       46569852
270       46569852
271       46569852
272       46569852
273       46569852
274       46569852
275       46569852
276       46569852
277       46569852
278       46569852
279       46569852
280       46569852
281       46569852
282       46569852
283       46569852
284       46569852
285       46569852
286       46569852
287       46569852
288       46569852
289       46569852
290       46569852
291       46569852
292       46569852
293       46569852
294       46569852
295       46569852
296       46569852
297       46569852
298       46569852
299       46569852
300       46569852
301       46569852
302       46569852
303       46569852
304       46569852
305       46569852
306       46569852
307       46569852
308       46569852
309       46569852
310       46569852
311       46569852
312       46569852
313       46569852
314       46569852
315       46569852
316       46569852
317       46569852
318       46569852
319       46569852
320       46569852
321       46569852
322       46569852
323       46569852
324       46569852
325       46569852
326       46569852
327       46569852
328       46569852
329       46569852
330       46569852
331       46569852
332       46569852
333       46569852
334       46569852
335       46569852
336       46569852
337       46569852
338       46569852
339       46569852
340       46569852
341       46569852
342       46569852
343       46569852
344       46569852
345       46569852
346       46569852
347       46569852
348       46569852
349       46569852
350       46569852
351       46569852
352       46569852
353       46569852
354       46569852
355       46569852
356       46569852
357       46569852
358       46569852
359       46569852
360       46569852
361       46569852
362       46569852
363       46569852
364       46569852
365       46569852
366       46569852
367       46569852
368       46569852
369       46569852
370       46569852
371       46569852
372       46569852
373       46569852
374       46569852
375       46569852
376       46569852
377       46569852
378       46569852
379       46569852
380       46569852
381       46569852
382       46569852
383       46569852
384       46569852
385       46569852
386       46569852
387       46569852
388       46569852
389       46569852
390       46569852
391       46569852
392       46569852
393       46569852
394       46569852
395       46569852
396       46569852
397       46569852
398       46569852
399       46569852
400       46569852
401       46569852
402       46569852
403       46569852
404       46569852
405       46569852
406       46569852
407       46569852
408       46569852
409       46569852
410       46569852
411       46569852
412       20355852
413        8987178
414       33550728
415       16284768
416       25574044
417       13644850
418       42951014
419       44804717
420       44804717
421       44666927
422       44654659
423       37268497
424       46445769
425       46445769
426       46445769
427       46445769
428       46445769
429       46445769
430       46445769
431       46445769
432       46445769
433       46445769
434       46445769
435       46445769
436       46445769
437       46445769
438       46445769
439       46445769
440       46445769
441       46445769
442       46445769
443       46445769
444       46445769
445       46445769
446       46445769
447       46445769
448       46445769
449       46445769
450       46445769
451       46445769
452       46445769
453       46445769
454       46445769
455       46445769
456       46445769
457       46445769
458       46445769
459       46445769
460       46445769
461       46445769
462       46445769
463       46445769
464       46445769
465       46445769
466       46445769
467       46445769
468       46445769
469       46445769
470       46445769
471       46445769
472       46445769
473       46445769
474       46445769
475       46445769
476       46445769
477       46445769
478       46445769
479       46445769
480       46445769
481       46445769
482       46445769
483       46445769
484       46445769
485       46445769
486       46445769
487       46445769
488       46445769
489       46445769
490       46445769
491       46445769
492       46445769
493       46445769
494       46445769
495       46445769
496       46445769
497       46445769
498       46445769
499       46445769
500       46445769
501       46445769
502       46445769
503       46445769
504       46445769
505       46445769
506       46445769
507       46445769
508       46445769
509       46445769
510       46445769
511       46445769
512       46445769
513       46445769
514       46445769
515       46445769
516       46445769
517       46445769
518       46445769
519       46445769
520       46445769
521       46445769
522       46445769
523       46445769
524       46445769
525       46445769
526       46445769
527       46445769
528       46445769
529       46445769
530       46445769
531       46445769
532       46445769
533       46445769
534       46445769
535       46445769
536       46445769
537       46445769
538       46445769
539       46445769
540       46445769
541       46445769
542       46445769
543       46445769
544       46445769
545       46445769
546       46445769
547       44658341
548       44592505
549       44682163
550       44551505
551       44551505
552       44551505
553       44455284
554       44455284
555       44455284
556       44455284
557        8388987
558       36986851
559       41180626
560       41180626
561       33968573
562       33968573
563        8227646
564        8227646
565        8227646
566        8227646
567        8227646
568        8227646
569        8227646
570       29359453
571       29500386
572       29500386
573       29630751
574       29630751
575       29630751
576       29630751
577       29630751
578       29630751
579       29630751
580       29630751
581       29630751
582       29630751
583       29630751
584       29630751
585       29630751
586       29630751
587       29630751
588       29630751
589       29630751
590       29630751
591       29630751
592       29630751
593       29630751
594       29630751
595       29630751
596       29630751
597       29630751
598       29630751
599       29630751
600       29630751
601       29630751
602       29630751
603       29630751
604       29630751
605       29630751
606       29630751
607       29630751
608       29630751
609       29630751
610       29630751
611       29630751
612       29630751
613       29630751
614       29630751
615       29630751
616       29630751
617       29630751
618       37101343
619        7681742
620        7681742
621        7681742
622        7681742
623        7681742
624        7681742
625        7681742
626        7681742
627        7681742
628        7681742
629        7681742
630        7681742
631        7681742
632        7681742
633        7681742
634        7681742
635        7681742
636        7681742
637        7681742
638        7681742
639        7681742
640        8256933
641        8205940
642       26954043
643       46421034
644       41715775
645       41715775
646       41715775
647       41715775
648       41715775
649       41715775
650       41715775
651       41715775
652       41715775
653       41715775
654       41715775
655       41715775
656       41715775
657       41715775
658       41715775
659       41715775
660       41715775
661       41715775
662       41715775
663       41715775
664       44525952
665       44525952
666       44525952
667       44525952
668       44525952
669       44525952
670       44525952
671       44612954
672       32841995
673        6859256
674       44802019
675       44802019
676       44802019
677       44802019
678       44802019
679       44802019
680       44802019
681       44802019
682       44802019
683       44802019
684       44802019
685       44802019
686       44802019
687       44802019
688       44802019
689       44802019
690       44802019
691       44802019
692       44802019
693       44802019
694       44802019
695       44802019
696       44802019
697       44802019
698       44802019
699       44802019
700       44802019
701       44802019
702       44802019
703       44802019
704       44802019
705       44802019
706       44802019
707       44802019
708       44802019
709       44802019
710       44802019
711       44802019
712       44802019
713       44802019
714       44802019
715       44802019
716       44802019
717       44802019
718       44802019
719       44802019
720       44802019
721       44802019
722       44802019
723       44802019
724       44802019
725       44802019
726       44802019
727       44802019
728       44802019
729       44802019
730       44802019
731       44802019
732       44802019
733       44802019
734       44558760
735       44602174
736       42782229
737       42782229
738       41282518
739       41282518
740       41282518
741       41282518
742       41282518
743       41282518
744       41282518
745       41282518
746       41282518
747       41282518
748       41282518
749       41282518
750       41282518
751       41282518
752       41282518
753       41282518
754       41282518
755       41282518
756       41282518
757       41282518
758       41282518
759       41282518
760       41282518
761       41282518
762       41282518
763       41282518
764       41282518
765       41282518
766       41282518
767       41282518
768       41282518
769       41282518
770       41282518
771       41282518
772       41282518
773       41282518
774       41282518
775       41282518
776       41282518
777       41282518
778       41282518
779       41282518
780       41282518
781       41282518
782       41282518
783       41282518
784       41282518
785       41282518
786       41282518
787       41282518
788       41282518
789       41282518
790       41282518
791       41282518
792       41282518
793       41282518
794       41282518
795       41282518
796       41282518
797       41282518
798       41282518
799       41282518
800       41282518
801       41282518
802       41282518
803       41148133
804       41148133
805       41148133
806       41148133
807       41148133
808       41148133
809       41148133
810       40864473
811       13621683
812        8250149
813       44930112
814       41767106
815       41767106
816       41767106
817       41767106
818       41767106
819       41767106
820       41767106
821       41767106
822       41767106
823       41767106
824       41767106
825       41767106
826       41767106
827       41767106
828       41767106
829       41767106
830       41767106
831       41531116
832       41531116
833       41531116
834       41531116
835       41531116
836       41531116
837       41531116
838       41531116
839       41531116
840       41531116
841       41531116
842       41531116
843       41531116
844       41531116
845       41531116
846       41531116
847       41531116
848       41531116
849       41531116
850       41531116
851       41531116
852       41531116
853       41531116
854       41531116
855       41531116
856       41531116
857       41531116
858       41531116
859       41531116
860       41531116
861       41531116
862       41531116
863       41531116
864       41531116
865       41531116
866       41531116
867       41531116
868       41531116
869       41531116
870       41531116
871       41531116
872       41531116
873       41531116
874       41531116
875       41531116
876       41531116
877       41531116
878       41531116
879       41531116
880       41531116
881       41531116
882       41531116
883       41531116
884       41531116
885       41531116
886       41531116
887       41531116
888       41531116
889       41531116
890       41531116
891       41531116
892       41531116
893       41531116
894       41531116
895       41531116
896       41531116
897       41531116
898       41531116
899       41531116
900       41531116
901       41531116
902       41531116
903       41531116
904       41531116
905       41531116
906       41531116
907       41531116
908       41531116
909       41531116
910       41531116
911       44818779
912       44818779
913       44818779
914       44818779
915       44818779
916       44818779
917       44818779
918       44818779
919       44818779
920       44818779
921       44818779
922       44818779
923       44818779
924       44818779
925       44818779
926       44818779
927       44818779
928       44818779
929       44818779
930       44818779
931       44818779
932       44818779
933       13724274
934       23079392
935        8205406
936       37045636
937       15614389
938       44647650
939       44686629
940       40385358
941       40385358
942       40385358
943       40385358
944       40385358
945       40385358
946       40385358
947       40385358
948       40385358
949       40385358
950        8432621
951       25943145
952       42221286
953       19345312
954        8208652
955        6267317
956        6267317
957        6267317
958        6267317
959        6267317
960        6267317
961        6267317
962        6267317
963        6267317
964        6267317
965        6267317
966        6267317
967        6267317
968        6267317
969        6267317
970        6267317
971        6267317
972        6267317
973        6267317
974        6267317
975        6267317
976        5709456
977        5709456
978       44145723
979       44145723
980       44145723
981       44145723
982       44145723
983       44145723
984       44145723
985       44145723
986       44145723
987       44145723
988       44145723
989       44145723
990       44145723
991       44145723
992       44145723
993       44145723
994       44145723
995       44145723
996       44145723
997       44145723
998       44145723
999       44145723
1000      44145723
1001      44145723
1002      44145723
1003      44145723
1004      44145723
1005      44145723
1006      44145723
1007      44145723
1008      44145723
1009      44145723
1010      44145723
1011      44145723
1012      44145723
1013      44145723
1014      44145723
1015      44145723
1016      44145723
1017      44145723
1018      44145723
1019      44145723
1020      44145723
1021      44145723
1022      44145723
1023      44145723
1024      44145723
1025      44145723
1026      44145723
1027      44145723
1028      44145723
1029      44145723
1030      44145723
1031      44145723
1032      44145723
1033      44145723
1034      44145723
1035      44145723
1036      36073166
1037      36073166
1038      36073166
1039      36073166
1040      36073166
1041      36073166
1042      36073166
1043      36073166
1044      36073166
1045      36073166
1046      36073166
1047      36073166
1048      36073166
1049      36073166
1050      36389112
1051      36294274
1052      36294274
1053      36294274
1054      36294274
1055      36294274
1056      36294274
1057      36294274
1058      36294274
1059      36294274
1060      36294274
1061      36294274
1062      36294274
1063      36294274
1064      36294274
1065      36294274
1066      36294274
1067      36294274
1068      36294274
1069      36294274
1070      36294274
1071      36294274
1072      36294274
1073      36294274
1074      36294274
1075      36294274
1076      36294274
1077      36294274
1078      36294274
1079      36294274
1080      36294274
1081      36294274
1082      36294274
1083      36294274
1084      36294274
1085      36294274
1086      36294274
1087      36294274
1088      36294274
1089      36294274
1090      36294274
1091      36294274
1092      36294274
1093      36294274
1094      36294274
1095      36294274
1096      36294274
1097      36294274
1098      36294274
1099      36294274
1100      36294274
1101      36294274
1102      34718227
1103      34718227
1104      34718227
1105      34718227
1106      34718227
1107      34718227
1108      34718227
1109      34718227
1110      34718227
1111      34718227
1112      34718227
1113      34718227
1114      34718227
1115      14383484
1116      14383484
1117      14383484
1118      14383484
1119      14383484
1120      14383484
1121      14383484
1122      14383484
1123      16640683
1124      16640683
1125      16640683
1126      16640683
1127      16645065
1128      16815688
1129      16815688
1130      16815688
1131      34371389
1132      34371389
1133      43986536
1134      43986536
1135      43986536
1136      43986536
1137      43986536
1138      43986536
1139      43986536
1140      43986536
1141      43986536
1142      43986536
1143      43986536
1144      43986536
1145      43986536
1146      43986536
1147      43986536
1148      43986536
1149      43986536
1150      43986536
1151      43986536
1152      43986536
1153      43986536
1154      43986536
1155      43986536
1156      43986536
1157      43986536
1158      43986536
1159      43986536
1160      43986536
1161      43986536
1162      43986536
1163      43986536
1164      43986536
1165      43986536
1166      43986536
1167      43986536
1168      43986536
1169      43986536
1170      43986536
1171      43986536
1172      43986536
1173      43986536
1174      43986536
1175      43986536
1176      43986536
1177      43986536
1178      43986536
1179      43986536
1180      43986536
1181      43986536
1182      43986536
1183      43986536
1184      43986536
1185      43986536
1186      43986536
1187      43986536
1188      43986536
1189      43986536
1190      43986536
1191      43986536
1192      43986536
1193      43986536
1194      43986536
1195      43986536
1196      43986536
1197      43986536
1198      43986536
1199      43986536
1200      43986536
1201      43986536
1202      43986536
1203      43986536
1204      43986536
1205      43986536
1206      43986536
1207      43986536
1208      43986536
1209      43986536
1210      43986536
1211      43986536
1212      43986536
1213      43986536
1214      43986536
1215      43986536
1216      43986536
1217      43986536
1218      43986536
1219      43986536
1220      43986536
1221      43986536
1222      43986536
1223      43986536
1224      43986536
1225      43986536
1226      43986536
1227      43986536
1228      43986536
1229      43986536
1230      43986536
1231      43986536
1232      43986536
1233      43986536
1234      43986536
1235      43986536
1236      43986536
1237      43986536
1238      43986536
1239      43986536
1240      43986536
1241      43986536
1242      43986536
1243      43986536
1244      43986536
1245      43986536
1246      34375348
1247      34375348
1248      45974953
1249      34401072
1250      34407866
1251      34407866
1252      34407866
1253      34407866
1254      34407866
1255      34407866
1256      34407866
1257      34407866
1258      34407866
1259      34407866
1260      34407866
1261      34407866
1262      34407866
1263      34407866
1264      34407866
1265      34407866
1266      34407866
1267      34407866
1268      34407866
1269      34407866
1270      34407866
1271      34407866
1272      34407866
1273      34407866
1274      34407866
1275      34407866
1276      34407866
1277      34407866
1278      34407866
1279      34407866
1280      42447681
1281      42447681
1282      42447681
1283      42447681
1284      42447681
1285      42447681
1286      42447681
1287      42447681
1288      42447681
1289      42447681
1290      42447681
1291      42447681
1292      42447681
1293      42447681
1294      42447681
1295      42447681
1296      42447681
1297      42447681
1298      42447681
1299      42447681
1300      42447681
1301      42447681
1302      42447681
1303      42447681
1304      42447681
1305      42447681
1306      42447681
1307      42447681
1308      42447681
1309      42447681
1310      42447681
1311      42447681
1312      42447681
1313      42447681
1314      42447681
1315      42447681
1316      42447681
1317      42447681
1318      42447681
1319      42447681
1320      42447681
1321      42447681
1322      42447681
1323      42447681
1324      42447681
1325      42447681
1326      42447681
1327      42447681
1328      42447681
1329      42447681
1330      42447681
1331      42447681
1332      42447681
1333      42447681
1334      42447681
1335      42447681
1336      42447681
1337      42447681
1338      42447681
1339      42447681
1340      42447681
1341      42447681
1342      42447681
1343      42447681
1344      42447681
1345      42447681
1346      42447681
1347      42447681
1348      42447681
1349      42447681
1350      42447681
1351      42447681
1352      42447681
1353      42447681
1354      42447681
1355      42447681
1356      42447681
1357      42447681
1358      42447681
1359      42447681
1360      42447681
1361      42447681
1362      42447681
1363      42447681
1364      42447681
1365      42447681
1366      34412587
1367      34423966
1368      34423966
1369      34426017
1370      14228372
1371      14228372
1372      14228372
1373      14228372
1374      14228372
1375      14228372
1376      14228372
1377      14228372
1378      14228372
1379      14228372
1380      14228372
1381      14228372
1382      14228372
1383      14228372
1384      14228372
1385      14228372
1386      14228372
1387      14228372
1388      14228372
1389      14228372
1390      14228372
1391      14228372
1392      14228372
1393      14228372
1394      16873691
1395      16873691
1396      16873691
1397      16873691
1398      46005050
1399      46005050
1400      46005050
1401      46005050
1402      46005050
1403      46005050
1404      46005050
1405      46005050
1406      46005050
1407      46005050
1408      46005050
1409      46005050
1410      46005050
1411      46005050
1412      46005050
1413      46005050
1414      46005050
1415      46005050
1416      46005050
1417      46005050
1418      46005050
1419      46005050
1420      46005050
1421      46005050
1422      46005050
1423      46005050
1424      46005050
1425      46005050
1426      46005050
1427      46005050
1428      46005050
1429      46005050
1430      46005050
1431      46005050
1432      46005050
1433      46005050
1434      46005050
1435      46005050
1436      46005050
1437      46005050
1438      46005050
1439      46005050
1440      46005050
1441      46005050
1442      46005050
1443      46005050
1444      46005050
1445      46005050
1446      46005050
1447      46005050
1448      46005050
1449      46005050
1450      46005050
1451      46005050
1452      46005050
1453      46005050
1454      46005050
1455      46005050
1456      46005050
1457      46005050
1458      46005050
1459      46005050
1460      46005050
1461      46005050
1462      46005050
1463      46005050
1464      46005050
1465      46005050
1466      46005050
1467      46005050
1468      46005050
1469      46005050
1470      46005050
1471      46005050
1472      46005050
1473      46005050
1474      46005050
1475      46005050
1476      46005050
1477      46005050
1478      46005050
1479      46005050
1480      46005050
1481      46005050
1482      46005050
1483      46005050
1484      46005050
1485      46005050
1486      46005050
1487      17211347
1488      17296596
1489      17449185
1490      17449185
1491      17449185
1492      17449185
1493      17449185
1494      17449185
1495      17449185
1496      17500824
1497      34512275
1498      34512275
1499      34512275
1500      34512275
1501      34512275
1502      34512275
1503      34512275
1504      34512275
1505      34512275
1506      34512275
1507      34512275
1508      34512275
1509      34512275
1510      34512275
1511      34512275
1512      34512275
1513      34512275
1514      34512275
1515      34512275
1516      34512275
1517      34512275
1518      34512275
1519      34512275
1520      34512275
1521      34512275
1522      17593579
1523      17593579
1524      17593579
1525      17593579
1526      17593579
1527      17593579
1528      17593579
1529      17593579
1530      17593579
1531      17593579
1532      17593579
1533      17593579
1534      17593579
1535      17593579
1536      17593579
1537      17593579
1538      17593579
1539      17593579
1540      17593579
1541      17593579
1542      17593579
1543      17593579
1544      17593579
1545      17593579
1546      17593579
1547      17593579
1548      17593579
1549      17518993
1550      46039807
1551      46039807
1552      46053105
1553      46053105
1554      46057567
1555      46057567
1556      14362754
1557      14362754
1558      14362754
1559      14362754
1560      14362754
1561      14362754
1562      14362754
1563      14362754
1564      14362754
1565      14362754
1566      14362754
1567      14362754
1568      14362754
1569      14362754
1570      14362754
1571      14362754
1572      14362754
1573      14362754
1574      14362754
1575      14362754
1576      14362754
1577      14362754
1578      14362754
1579      14362754
1580      14362754
1581      14362754
1582      14362754
1583      14362754
1584      14362754
1585      14362754
1586      14362754
1587      14362754
1588      14362754
1589      14362754
1590      14362754
1591      14362754
1592      14362754
1593      14362754
1594      14362754
1595      14362754
1596      14362754
1597      14362754
1598      14362754
1599      14362754
1600      14362754
1601      14362754
1602      14362754
1603      14362754
1604      14362754
1605      14362754
1606      14362754
1607      14362754
1608      14362754
1609      14362754
1610      14362754
1611      14362754
1612      14362754
1613      14362754
1614      14362754
1615      14362754
1616      14362754
1617      14362754
1618      14362754
1619      34615142
1620      34615142
1621      34615142
1622      34615142
1623      34615142
1624      34615142
1625      34615142
1626      34615142
1627      34615142
1628      34615142
1629      34615142
1630      34615142
1631      34615142
1632      34615142
1633      34615142
1634      34615142
1635      34615142
1636      34615142
1637      34615142
1638      34615142
1639      34615142
1640      34615142
1641      34615142
1642      34615142
1643      34615142
1644      34615142
1645      34615142
1646      34615142
1647      34615142
1648      34615142
1649      34615142
1650      34615142
1651      34615142
1652      34615142
1653      34615142
1654      34615142
1655      34615142
1656      34615142
1657      34615142
1658      34615142
1659      34615142
1660      34615142
1661      34615142
1662      34615142
1663      34615142
1664      34615142
1665      34615142
1666      34615142
1667      34615142
1668      46072248
1669      17612947
1670      17612947
1671      17612947
1672      17612947
1673      17612947
1674      17612947
1675      17612947
1676      17612947
1677      17612947
1678      17612947
1679      17612947
1680      17612947
1681      17612947
1682      17612947
1683      17612947
1684      17612947
1685      17612947
1686      17612947
1687      17612947
1688      17612947
1689      17633199
1690      17633199
1691      17633199
1692      17633199
1693      32743122
1694      32743122
1695      32743122
1696      32743122
1697      32743122
1698      32743122
1699      32743122
1700      32743122
1701      32743122
1702      32771858
1703      32771858
1704      32771858
1705      32771858
1706      32771858
1707      32771858
1708      32771858
1709      32771858
1710      32771858
1711      32771858
1712      32771858
1713      32771858
1714      32771858
1715      32771858
1716      32771858
1717      32771858
1718      32771858
1719      32771858
1720      32771858
1721      32771858
1722      32771858
1723      32771858
1724      32771858
1725      32771858
1726      32771858
1727      32771858
1728      32771858
1729      32771858
1730      32771858
1731      32771858
1732      32771858
1733      32771858
1734      32771858
1735      32771858
1736      32771858
1737      32771858
1738      32771858
1739      32771858
1740      32771858
1741      32771858
1742      32771858
1743      32771858
1744      32771858
1745      32771858
1746      32771858
1747      32771858
1748      32771858
1749      32771858
1750      32771858
1751      32771858
1752      32771858
1753      32771858
1754      32771858
1755      32771858
1756      32771858
1757      32771858
1758      32771858
1759      32771858
1760      32771858
1761      32771858
1762      32771858
1763      32771858
1764      32771858
1765      32771858
1766      32771858
1767      32771858
1768      32771858
1769      32771858
1770      32771858
1771      32771858
1772      32771858
1773      32771858
1774      32771858
1775      32771858
1776      32771858
1777      32771858
1778      32771858
1779      32771858
1780      32771858
1781      32771858
1782      32771858
1783      32771858
1784      32771858
1785      32771858
1786      32771858
1787      32771858
1788      32771858
1789      32771858
1790      32771858
1791      32771858
1792      32771858
1793      32771858
1794      32771858
1795      32771858
1796      16719157
1797       8987430
1798       7826225
1799      36852028
1800       8249596
1801      16035509
1802      41357431
1803      41357431
1804      41357431
1805      41357431
1806      41357431
1807      41357431
1808      41357431
1809      41357431
1810      41357431
1811      41357431
1812      41357431
1813      41357431
1814      41357431
1815      41357431
1816      41357431
1817      41357431
1818      41357431
1819      41357431
1820      41357431
1821      41357431
1822      41357431
1823      41357431
1824      41357431
1825      41357431
1826      41357431
1827      41357431
1828      41357431
1829      41357431
1830      41357431
1831      41357431
1832      41357431
1833      41357431
1834      41357431
1835      41357431
1836      41357431
1837      41357431
1838      41357431
1839      41357431
1840      41357431
1841      41357431
1842      41357431
1843      41357431
1844      41357431
1845      41357431
1846      41357431
1847      41357431
1848      42965363
1849      42965363
1850      42879568
1851      42879568
1852      42879568
1853      42879568
1854      42879568
1855      42879568
1856      42879568
1857      42879568
1858      42879568
1859      42879568
1860      42879568
1861      42879568
1862      42879568
1863      42879568
1864      42879568
1865      42879568
1866      42879568
1867      42879568
1868      42879568
1869      42879568
1870      42879568
1871      42879568
1872      42879568
1873      42879568
1874      42879568
1875      42879568
1876      42879568
1877      42879568
1878      42879568
1879      42879568
1880      42879568
1881      42879568
1882      42879568
1883      42879568
1884      42879568
1885      42879568
1886      42879568
1887      42879568
1888      42879568
1889      42879568
1890      42879568
1891      42879568
1892      42879568
1893      42879568
1894      42879568
1895      42879568
1896      42879568
1897      42879568
1898      42879568
1899      42879568
1900      42879568
1901      42879568
1902      42879568
1903      42879568
1904      42879568
1905      42879568
1906      42879568
1907      42879568
1908      42879568
1909      42879568
1910      42879568
1911      42879568
1912      42879568
1913      42879568
1914      42879568
1915      37193926
1916      37193926
1917      44251520
1918      44251520
1919       7627528
1920      44242081
1921       6564489
1922       6564489
1923       6564489
1924       6564489
1925       6564489
1926       6564489
1927       6564489
1928       6564489
1929       6564489
1930       6564489
1931       6564489
1932       6520670
1933      29024890
1934      41445708
1935      41445708
1936      41445708
1937      41459214
1938      41459214
1939      41459214
1940      41459214
1941      41459214
1942      41459214
1943      41459214
1944      41459214
1945      41459214
1946      41459214
1947      41459214
1948      41459214
1949      41459214
1950      41459214
1951      41459214
1952      41459214
1953      41459214
1954      41459214
1955      41459214
1956      41459214
1957      41459214
1958      41459214
1959      41459214
1960      41459214
1961      41459214
1962      41459214
1963      41459214
1964      41459214
1965      41459214
1966      41459214
1967      41459214
1968      41459214
1969      41459214
1970      41459214
1971      41459214
1972      41459214
1973      41459214
1974      41459214
1975      41459214
1976      41459214
1977      41459214
1978      41459214
1979      41459214
1980      41459214
1981      41459214
1982      41459214
1983      41459214
1984      41459214
1985      41459214
1986      41459214
1987      41459214
1988      41459214
1989      41459214
1990      41459214
1991      41459214
1992      41459214
1993      41459214
1994      41459214
1995      41459214
1996      41459214
1997      41459214
1998      41459214
1999      41459214
2000      41459214
2001      41459214
2002      41459214
2003      41459214
2004      41459214
2005      41459214
2006      41459214
2007      41459214
2008      41459214
2009      41459214
2010      41459214
2011      41459214
2012      41459214
2013      41459214
2014      41459214
2015      41459214
2016      41459214
2017      41459214
2018      41459214
2019      41459214
2020      41459214
2021      41459214
2022      41459214
2023      41459214
2024      41459214
2025      41459214
2026      41459214
2027      41459214
2028      41459214
2029      41459214
2030      41459214
2031      41459214
2032      41459214
2033      41459214
2034      41459214
2035      41459214
2036      41459214
2037      41459214
2038      41459214
2039      41459214
2040      41459214
2041      41459214
2042      41459214
2043      41459214
2044      41459214
2045      41459214
2046      41459214
2047      41459214
2048      41459214
2049      41459214
2050      41459214
2051      41459214
2052      41459214
2053      41459214
2054      41459214
2055      41459214
2056      41459214
2057      41459214
2058      41459214
2059      41459214
2060      41459214
2061      41459214
2062      41459214
2063      41459214
2064      41459214
2065      41459214
2066      41459214
2067      41459214
2068      41459214
2069      44478493
2070      44490288
2071      44490288
2072      44495519
2073      17506728
2074       6366055
2075      46225364
2076      46225364
2077      46225364
2078      46225364
2079      46225364
2080      46225364
2081       7793954
2082       7793954
2083       7087229
2084       7087229
2085       7087229
2086       7087229
2087       7087229
2088       7087229
2089       7087229
2090       7087229
2091       7087229
2092       7087229
2093       7087229
2094       7087229
2095       7087229
2096       7087229
2097       7087229
2098       7087229
2099       7087229
2100       7087229
2101       7087229
2102      39377066
2103      39377066
2104      39377066
2105      39377066
2106      39377066
2107      46297751
2108      46297751
2109      46297751
2110      46297751
2111      46297751
2112      46297751
2113      46297751
2114      46297751
2115      46297751
2116      46297751
2117      46297751
2118      46297751
2119      46297751
2120      46297751
2121      46297751
2122      46297751
2123      46297751
2124      46297751
2125      46297751
2126      46297751
2127      46297751
2128      46297751
2129      46297751
2130      46297751
2131      46297751
2132      46297751
2133      46297751
2134      46297751
2135      46297751
2136      46297751
2137      46297751
2138      46297751
2139      46297751
2140      46297751
2141      42913304
2142      42913304
2143      42913304
2144      42913304
2145      42913304
2146      42913304
2147      42913304
2148      42913304
2149      42913304
2150      42913304
2151      42913304
2152      42913304
2153      42913304
2154      42913304
2155      42913304
2156      44929678
2157      44929678
2158      44929678
2159      44929678
2160      44929678
2161      44929678
2162      44929678
2163      44929678
2164      44929678
2165      44929678
2166      44929678
2167      44929678
2168      44929678
2169      44929678
2170      44929678
2171      44929678
2172      44929678
2173      44929678
2174      44929678
2175      44929678
2176      44929678
2177      44929678
2178      41741308
2179      41741308
2180      26966513
2181      26966513
2182      26966513
2183      26966513
2184      26966513
2185      26966513
2186      26966513
2187      26966513
2188      43115709
2189      43141092
2190      43141092
2191      43162277
2192      43162277
2193      43162277
2194      43172805
2195      43172805
2196      43172805
2197      43172805
2198      43172805
2199      43172805
2200      43172805
2201      43172805
2202      43172805
2203      43172805
2204      43172805
2205      43172805
2206      43172805
2207      43172805
2208      43172805
2209      44873903
2210      44873903
2211      44873903
2212      44873903
2213      44873903
2214      44873903
2215      44873903
2216      44873903
2217      44873903
2218      44873903
2219      44873903
2220      44873903
2221      44873903
2222      44873903
2223      44873903
2224      44873903
2225      44873903
2226      44873903
2227      44873903
2228      44873903
2229      44873903
2230      44873903
2231      44873903
2232      44873903
2233      44873903
2234      44873903
2235      44873903
2236      44873903
2237      44873903
2238      44873903
2239      44873903
2240      44873903
2241      41697336
2242      41697336
2243      41697336
2244      44516575
2245      44516575
2246      44516575
2247      44516575
2248      44516575
2249      44516575
2250      44516575
2251      44516575
2252      44516575
2253      44638455
2254      46254133
2255      46254133
2256      46254133
2257      46254133
2258      46259390
2259      46259390
2260      46259390
2261      46259390
2262      46259390
2263      46259390
2264      46259390
2265      46259390
2266      46259390
2267      46259390
2268      46259390
2269      46259390
2270      46259390
2271      46259390
2272      46259390
2273      46259390
2274      46259390
2275      46259390
2276      46259390
2277      46259390
2278      46259390
2279      46259390
2280      46259390
2281      46259390
2282      46259390
2283      46286297
2284      46286297
2285      46286297
2286      46286297
2287      46286297
2288      46286297
2289      46286297
2290      46286297
2291      46286297
2292      46286297
2293      46286297
2294      46286297
2295      46286297
2296      46286297
2297      46286297
2298      46286297
2299      46286297
2300      46286297
2301      46286297
2302      46286297
2303      46286297
2304      46286297
2305      46286297
2306      46286297
2307      46286297
2308      46286297
2309      46286297
2310      46286297
2311      46286297
2312      46286297
2313      46286297
2314      46286297
2315      46286297
2316      46286297
2317      46286297
2318      46286297
2319      46286297
2320      46286297
2321      46286297
2322      46286297
2323      46286297
2324      46286297
2325      46286297
2326      46286297
2327      46286297
2328      46286297
2329      46286297
2330      46286297
2331      46286297
2332      46286297
2333      46286297
2334      46286297
2335      46286297
2336      46286297
2337      46286297
2338      46286297
2339      46286297
2340      46286297
2341      46286297
2342      46286297
2343      46286297
2344      46286297
2345      46286297
2346      46286297
2347      46286297
2348      46286297
2349      46286297
2350      46286297
2351      46286297
2352      46286297
2353      46286297
2354      46286297
2355      46286297
2356      46286297
2357      46286297
2358      46286297
2359      46286297
2360      46286297
2361      46286297
2362      46286297
2363      46286297
2364      46286297
2365      46286297
2366      46286297
2367      46286297
2368      46286297
2369      46286297
2370      46286297
2371      46286297
2372      46286297
2373      46286297
2374      46286297
2375      46286297
2376      46286297
2377      46286297
2378      46286297
2379      46286297
2380      46286297
2381      46286297
2382      46286297
2383      46286297
2384      46286297
2385      46286297
2386      46286297
2387      46286297
2388      46286297
2389      46286297
2390      46286297
2391      46286297
2392      46286297
2393      46286297
2394      46286297
2395      46286297
2396      46286297
2397      46286297
2398      46286297
2399      46286297
2400      46286297
2401      43033931
2402      43033931
2403      43033931
2404      43033931
2405      43033931
2406      43033931
2407      43033931
2408      43033931
2409      43033931
2410      43033931
2411      43033931
2412      43033931
2413      43033931
2414      43033931
2415      43033931
2416      43033931
2417      43033931
2418      43033931
2419      43033931
2420      43033931
2421      43033931
2422      43033931
2423      43033931
2424      43033931
2425      43033931
2426      43033931
2427      43033931
2428      43033931
2429      43033931
2430      43033931
2431      43033931
2432      43033931
2433      43033931
2434      43033931
2435      43033931
2436      43033931
2437      43033931
2438      43033931
2439      43033931
2440      43033931
2441      43033931
2442      43033931
2443      43033931
2444      43033931
2445      43033931
2446      43033931
2447      43033931
2448      43033931
2449      43033931
2450      43033931
2451      43033931
2452      43033931
2453      43033931
2454      43033931
2455      43033931
2456      43033931
2457      43033931
2458      43033931
2459      43033931
2460      41717580
2461      41717580
2462      41717580
2463      41581319
2464      41581319
2465      41562958
2466      41562958
2467      41562958
2468      46469306
2469      46469306
2470      46469306
2471      46469306
2472      44711580
2473      44711580
2474      44711580
2475      44711580
2476      44711580
2477      44711580
2478      44711580
2479      44711580
2480      44711580
2481      44711580
2482      44711580
2483      44711580
2484      44711580
2485      44711580
2486      44711580
2487      44711580
2488      44711580
2489      44711580
2490      44711580
2491      44711580
2492      44711580
2493      44711580
2494      44711580
2495      44711580
2496      44711580
2497      44711580
2498      44711580
2499      44711580
2500      44711580
2501      44711580
2502      44711580
2503      44711580
2504      44711580
2505      44711580
2506      44711580
2507      44711580
2508      44711580
2509      44711580
2510      44711580
2511      44711580
2512      44711580
2513      44711580
2514      44711580
2515      44711580
2516      44711580
2517      44711580
2518      44540195
2519       8410645
2520       8410645
2521       8410645
2522       8410645
2523       8410645
2524       8410645
2525       8410645
2526      29187795
2527      29187795
2528       6223580
2529      41539326
2530      41746841
2531      20356896
2532      44638284
2533      44638284
2534      44638284
2535      44638284
2536      44638284
2537      44638284
2538      44638284
2539      44638284
2540      44638284
2541      44638284
2542      44678086
2543      16590325
2544       7664011
2545      29139384
2546      44437175
2547      44628293
2548      44628293
2549      44628293
2550      44628293
2551      44628293
2552      44628293
2553      43076943
2554      43076943
2555      43076943
2556      43076943
2557      43076943
2558      43076943
2559      43076943
2560      43076943
2561      43076943
2562      43076943
2563      43076943
2564      43076943
2565      43076943
2566      43076943
2567      43076943
2568      43076943
2569      43076943
2570      43076943
2571      43076943
2572      43076943
2573      43076943
2574      43076943
2575      43076943
2576      43076943
2577      43076943
2578      43076943
2579      43076943
2580      43076943
2581      43076943
2582      43076943
2583      43076943
2584      43076943
2585      43076943
2586      43076943
2587      43076943
2588      43076943
2589      43076943
2590      43076943
2591      43076943
2592      43076943
2593      43076943
2594      43076943
2595      43076943
2596      43076943
2597      43076943
2598      43076943
2599      43076943
2600      43076943
2601      43076943
2602      43076943
2603      43076943
2604      43076943
2605      43076943
2606      43076943
2607      43076943
2608      43076943
2609      43076943
2610      43076943
2611      43076943
2612      43076943
2613      43076943
2614      43076943
2615      43076943
2616      43076943
2617      43076943
2618      43076943
2619      43076943
2620      43076943
2621      43076943
2622      43076943
2623      43076943
2624      43076943
2625      43076943
2626      43076943
2627      43076943
2628      43076943
2629      43076943
2630      43076943
2631      43076943
2632      43076943
2633      43076943
2634      43076943
2635      43076943
2636      43076943
2637      43076943
2638      43076943
2639      43076943
2640      43076943
2641      43076943
2642      43076943
2643      43076943
2644      43076943
2645      43076943
2646      43076943
2647      43076943
2648      43076943
2649      43076943
2650      43076943
2651      43076943
2652      43076943
2653      43076943
2654      43076943
2655      43076943
2656      43076943
2657      43076943
2658      43076943
2659      43076943
2660      43076943
2661      43076943
2662      43076943
2663      43076943
2664      43076943
2665      43076943
2666      43076943
2667      43076943
2668      43076943
2669      43076943
2670      43076943
2671      43076943
2672      43076943
2673      43076943
2674      43076943
2675      43076943
2676      43076943
2677      43076943
2678      43076943
2679      43076943
2680      43076943
2681      43076943
2682      43076943
2683      43076943
2684      43076943
2685      43076943
2686      43076943
2687      43076943
2688      43076943
2689      43076943
2690      43076943
2691      43076943
2692      46247682
2693      46247682
2694      37221736
2695      37221736
2696      37221736
2697      37221736
2698      37221736
2699      37221736
2700      37221736
2701      37221736
2702      37221736
2703      37221736
2704      37221736
2705      37221736
2706      37221736
2707      37221736
2708      37221736
2709      37221736
2710      37221736
2711      37221736
2712      37221736
2713      37221736
2714      37221736
2715      37267919
2716      37267919
2717      37267919
2718      37267919
2719      37267919
2720      37267919
2721      37267919
2722      37267919
2723      37267919
2724      37267919
2725      37267919
2726      37267919
2727      37267919
2728      37267919
2729      37267919
2730      37267919
2731      37267919
2732      37267919
2733      37267919
2734      37267919
2735      37267919
2736      37267919
2737      37267919
2738      37267919
2739      37267919
2740      37267919
2741      37267919
2742      37267919
2743      37267919
2744      37267919
2745      37267919
2746      37267919
2747      37267919
2748      37267919
2749      37267919
2750      37267919
2751      37267919
2752      37267919
2753      37267919
2754      37267919
2755      37267919
2756      37267919
2757      37267919
2758      37267919
2759      37267919
2760      37267919
2761      37267919
2762      37267919
2763      37267919
2764      37267919
2765      37267919
2766      37267919
2767      37267919
2768      37267919
2769      37267919
2770      37267919
2771      37267919
2772      37267919
2773      37267919
2774      37267919
2775      37267919
2776      37267919
2777      37267919
2778      37267919
2779      37267919
2780      34456237
2781       8208904
2782      45478326
2783      41877613
2784      41877613
2785      41877613
2786      44580604
2787      37237744
2788      37237744
2789      44207399
2790      44207399
2791      32841811
2792      21543329
2793      21543329
2794      21543329
2795      21543329
2796      21543329
2797      21543329
2798      21543329
2799      21543329
2800      21543329
2801      21543329
2802      21543329
2803      21543329
2804      21543329
2805      21543329
2806      21543329
2807      21543329
2808      21543329
2809      21543329
2810      21543329
2811      21543329
2812      21543329
2813      21543329
2814      21543329
2815      21543329
2816      21543329
2817      21543329
2818      21543329
2819      21543329
2820      21543329
2821      21543329
2822      21543329
2823      21543329
2824      21543329
2825      21543329
2826      21543329
2827      21543329
2828      21543329
2829      21543329
2830      21543329
2831      21543329
2832      21543329
2833      21543329
2834      21543329
2835      21543329
2836      21543329
2837      21543329
2838      21543329
2839      21543329
2840      36126640
2841      36126640
2842      36126640
2843      36126640
2844      36126640
2845      36126640
2846      36109690
2847      36109690
2848      36133032
2849      39349647
2850      39349647
2851      39349647
2852      39349647
2853      39349647
2854      39349647
2855      39349647
2856      39349647
2857      39349647
2858      39349647
2859      39349647
2860      39349647
2861      39349647
2862      39349647
2863      39349647
2864      39349647
2865      39349647
2866      39349647
2867      39349647
2868      39349647
2869      39349647
2870      39349647
2871      39349647
2872      39349647
2873      39349647
2874      39349647
2875      39349647
2876      39349647
2877      39349647
2878      39349647
2879      39349647
2880      39349647
2881      39349647
2882      39349647
2883      39349647
2884      39349647
2885      39349647
2886      39349647
2887      39349647
2888      39349647
2889      39349647
2890      39349647
2891      39349647
2892      39349647
2893      39349647
2894      39349647
2895      39349647
2896      39349647
2897      39349647
2898      39349647
2899      39349647
2900      39349647
2901      39349647
2902      39349647
2903      39349647
2904      39349647
2905      39349647
2906      39349647
2907      39349647
2908      39349647
2909      39349647
2910      39349647
2911      39349647
2912      39349647
2913      39349647
2914      39349647
2915      39349647
2916      39349647
2917      39349647
2918      39349647
2919      39349647
2920      39349647
2921      39349647
2922      39349647
2923      39349647
2924      39349647
2925      39349647
2926      39349647
2927      39349647
2928      39349647
2929      39349647
2930      39349647
2931      39349647
2932      39349647
2933      39349647
2934      39349647
2935      39349647
2936      39349647
2937      39349647
2938      39349647
2939      39349647
2940      39349647
2941      39349647
2942      39349647
2943      39349647
2944      39349647
2945      39349647
2946      39349647
2947      39349647
2948      39349647
2949      39349647
2950      39349647
2951      39349647
2952      39349647
2953      39349647
2954      39349647
2955      39349647
2956      39349647
2957      39349647
2958      39349647
2959      39349647
2960      39349647
2961      39349647
2962      39349647
2963      39349647
2964      39349647
2965      39349647
2966      16121644
2967      16527019
2968      16582637
2969      16582637
2970      16419080
2971      16419080
2972      16419080
2973      16308133
2974      16308133
2975      16308133
2976      44462196
2977      44462196
2978      42925646
2979      42925646
2980      42925646
2981      33643926
2982      33643926
2983      33643926
2984      33643926
2985      33643926
2986      33643926
2987      33643926
2988      33643926
2989      33643926
2990      33643926
2991      33643926
2992      33643926
2993      33643926
2994      33643926
2995      33643926
2996      33643926
2997      33643926
2998      33643926
2999      33643926
3000      33643926
3001      33643926
3002      33643926
3003      33643926
3004      33643926
3005      33643926
3006      33643926
3007      33643926
3008      33643926
3009      33643926
3010      33643926
3011      33643926
3012      33643926
3013      33643926
3014      33643926
3015      33643926
3016      33643926
3017      33643926
3018      33643926
3019      33643926
3020      33643926
3021      33643926
3022      33643926
3023      33643926
3024      33643926
3025      33643926
3026      33643926
3027      33643926
3028      33643926
3029      33643926
3030      33643926
3031      33643926
3032      33643926
3033      33643926
3034      33643926
3035      33643926
3036      33643926
3037      33643926
3038      33643926
3039      33643926
3040      33643926
3041      33643926
3042      33643926
3043      33643926
3044      33643926
3045      33643926
3046      33643926
3047      33643926
3048      33643926
3049      33643926
3050      33643926
3051      33643926
3052      33643926
3053      33643926
3054      33643926
3055      33643926
3056      33643926
3057      33643926
3058      33643926
3059      33643926
3060      33643926
3061      33643926
3062      33643926
3063      33643926
3064      33643926
3065      33643926
3066      33643926
3067      33643926
3068      33643926
3069      33643926
3070      33643926
3071      33643926
3072      33643926
3073      33643926
3074      33643926
3075      33643926
3076      33643926
3077      33643926
3078      33643926
3079      33643926
3080      33643926
3081      33643926
3082      33643926
3083      33643926
3084      33643926
3085      33643926
3086      33643926
3087      33643926
3088      33643926
3089      33643926
3090      33643926
3091      33643926
3092      33643926
3093      33643926
3094      33643926
3095      33643926
3096      33643926
3097      33643926
3098      33643926
3099      33643926
3100      33643926
3101      33643926
3102      33643926
3103      33643926
3104      33643926
3105      33643926
3106      33643926
3107      33643926
3108      33643926
3109      33643926
3110      33643926
3111      33643926
3112      33643926
3113      33643926
3114      33643926
3115      33643926
3116      33643926
3117      33643926
3118      33643926
3119      33643926
3120      33643926
3121      33643926
3122      33643926
3123      33643926
3124      33643926
3125      33643926
3126      33643926
3127      33643926
3128      33643926
3129      33643926
3130      33643926
3131      33643926
3132      33643926
3133      33643926
3134      33643926
3135      33643926
3136      33643926
3137      33643926
3138      33643926
3139      33643926
3140      33643926
3141      33643926
3142      33643926
3143      33643926
3144      33643926
3145      33643926
3146      33643926
3147      33643926
3148      33643926
3149      39491898
3150      29376339
3151      29376339
3152      29376339
3153      29376339
3154      33588708
3155      33588708
3156      33588708
3157      33588708
3158      33588708
3159      33588708
3160      33588708
3161      33588708
3162      33588708
3163      33588708
3164      33588708
3165      33588708
3166      33588708
3167      33588708
3168      33588708
3169      33588708
3170      33588708
3171      33588708
3172      33588708
3173      33588708
3174      33588708
3175      33588708
3176      33588708
3177      33588708
3178      33588708
3179      33588708
3180      33588708
3181      33588708
3182      33588708
3183      33588708
3184      33588708
3185      33588708
3186      33588708
3187      33588708
3188      33588708
3189      33588708
3190      33588708
3191      33588708
3192      33588708
3193      33588708
3194      33588708
3195      33588708
3196      33588708
3197      33588708
3198      33588708
3199      33588708
3200      33588708
3201      33588708
3202      33588708
3203      33588708
3204      33588708
3205      33588708
3206      33588708
3207      33588708
3208      33588708
3209      33588708
3210      33588708
3211      33588708
3212      33588708
3213      33588708
3214      33588708
3215      33588708
3216      33588708
3217      33588708
3218      33588708
3219      33588708
3220      33588708
3221      33588708
3222      33588708
3223      33588708
3224      33588708
3225      33588708
3226      33588708
3227      33588708
3228      33588708
3229      33588708
3230      33588708
3231      33588708
3232      33588708
3233      33588708
3234      33588708
3235      33588708
3236      33588708
3237      33588708
3238      33588708
3239      33588708
3240      33588708
3241      33588708
3242      33588708
3243      33588708
3244      33588708
3245      33588708
3246      33588708
3247      44327376
3248      44327376
3249      44327376
3250      44327376
3251      44327376
3252      44327376
3253      44327376
3254      44327376
3255      44327376
3256      44327376
3257      44327376
3258      44327376
3259      44327376
3260      44327376
3261      44327376
3262      44327376
3263      44327376
3264      44327376
3265      44327376
3266      44327376
3267      44327376
3268      44327376
3269      44327376
3270      44327376
3271      44327376
3272      44327376
3273      44327376
3274      44327376
3275      44327376
3276      44327376
3277      44327376
3278      44327376
3279      44327376
3280      44327376
3281      44327376
3282      44327376
3283      44327376
3284      44327376
3285      44327376
3286      44327376
3287      44327376
3288      44327376
3289      44327376
3290      44327376
3291      44327376
3292      44327376
3293      44327376
3294      44327376
3295      44327376
3296      44327376
3297      44327376
3298      44327376
3299      44327376
3300      44327376
3301      44327376
3302      44327376
3303      44327376
3304      44327376
3305      44327376
3306      44327376
3307      44327376
3308      44327376
3309      44327376
3310      44327376
3311      44327376
3312      44327376
3313      44327376
3314      44327376
3315      44327376
3316      44327376
3317      44327376
3318      44327376
3319      44327376
3320      44327376
3321      44327376
3322      44327376
3323      44327376
3324      44327376
3325      44327376
3326      44327376
3327      44327376
3328      44327376
3329      44327376
3330      44327376
3331      44327376
3332      44327376
3333      44327376
3334      44327376
3335      44327376
3336      44327376
3337      44327376
3338      44327376
3339      44327376
3340      44327376
3341      44327376
3342      44327376
3343      44327376
3344      44327376
3345      44327376
3346      44327376
3347      44327376
3348      44327376
3349      44327376
3350      44327376
3351      44327376
3352      44327376
3353      44327376
3354      44327376
3355      44327376
3356      44327376
3357      44327376
3358      44327376
3359      44327376
3360      44327376
3361      44327376
3362      44327376
3363      44327376
3364      44327376
3365      44327376
3366      44327376
3367      44327376
3368      44327376
3369      44327376
3370      44327376
3371      44327376
3372      44327376
3373      44327376
3374      44327376
3375      44327376
3376      44327376
3377      44327376
3378      44327376
3379      44327376
3380      44327376
3381      44327376
3382      44327376
3383      44327376
3384       8255514
3385      29361894
3386      29361894
3387      29361894
3388      29361894
3389      44698044
3390      44698044
3391      44698044
3392      44698044
3393      44472516
3394      44472516
3395      44472516
3396      44348295
3397      44330221
3398      44330221
3399      44330221
3400      44330221
3401      44330221
3402      29940033
3403      29940033
3404      29940033
3405      29940033
3406      29940033
3407      29940033
3408      29940033
3409      29940033
3410      29940033
3411      29940033
3412      29940033
3413      29940033
3414      29940033
3415      29940033
3416      29940033
3417      29940033
3418      29940033
3419      29940033
3420      29940033
3421      29940033
3422      29940033
3423      29940033
3424      29940033
3425      29940033
3426      29940033
3427      29940033
3428      29940033
3429      29940033
3430      29940033
3431      29940033
3432      29940033
3433      29940033
3434      29940033
3435      29940033
3436      29940033
3437      29940033
3438      29940033
3439      29940033
3440      29940033
3441      29940033
3442      29940033
3443      29940033
3444      29940033
3445      29940033
3446      29940033
3447      29940033
3448      29940033
3449      29940033
3450      29940033
3451      29940033
3452      29940033
3453      29940033
3454      29940033
3455      29940033
3456      29940033
3457      29940033
3458      29940033
3459      29940033
3460      29940033
3461      29940033
3462      29940033
3463      29940033
3464      29940033
3465      29940033
3466      29940033
3467      29940033
3468      29940033
3469      29940033
3470      29940033
3471      29940033
3472      29940033
3473      29940033
3474      29940033
3475      29940033
3476      29940033
3477      29940033
3478      29940033
3479      29940033
3480      29940033
3481      29940033
3482      29940033
3483      29940033
3484      29940033
3485      29940033
3486      29940033
3487      29940033
3488      29940033
3489      29940033
3490      29940033
3491      29940033
3492      29940033
3493      29940033
3494      29940033
3495      29940033
3496      29940033
3497      29940033
3498      29940033
3499      29940033
3500      29940033
3501      29940033
3502      29940033
3503      29940033
3504      29940033
3505      29940033
3506      29940033
3507      29940033
3508      29940033
3509      29940033
3510      29940033
3511      29940033
3512      29940033
3513      29940033
3514      29940033
3515      29940033
3516      29940033
3517      29940033
3518      29940033
3519      29940033
3520      29940033
3521      29940033
3522      29940033
3523      29940033
3524      29940033
3525      29940033
3526      29940033
3527      29940033
3528       7777853
3529       7777853
3530       7777853
3531       7777853
3532       7777853
3533       7777853
3534       7777853
3535       7777853
3536       7777853
3537       7777853
3538       7777853
3539       7777853
3540       7777853
3541       7777853
3542       7777853
3543       7777853
3544       7777853
3545       7777853
3546       7777853
3547       7777853
3548       7777853
3549       7777853
3550       7777853
3551       7777853
3552       7777853
3553       7777853
3554       7777853
3555       7425839
3556       7425839
3557       7425839
3558       7425839
3559       7425839
3560       7425839
3561       7425839
3562       7425839
3563       7425839
3564       7425839
3565      28998033
3566      46228824
3567      46228824
3568      46228824
3569      46228824
3570      46228824
3571      46228824
3572      46228824
3573      46228824
3574      46228824
3575      46228824
3576      46228824
3577      46228824
3578      46228824
3579      46228824
3580      46228824
3581      46228824
3582      46228824
3583      46228824
3584      46228824
3585      46228824
3586      46228824
3587      46228824
3588      46228824
3589      46228824
3590      46228824
3591      46228824
3592      46228824
3593      46228824
3594      46228824
3595      46228824
3596      46228824
3597      46228824
3598      46228824
3599      46228824
3600      46228824
3601      46228824
3602      46228824
3603      46228824
3604      46228824
3605      46228824
3606      46228824
3607      46228824
3608      46228824
3609      46228824
3610      46228824
3611      46228824
3612      46228824
3613      46228824
3614      46228824
3615      46228824
3616      46228824
3617      46228824
3618      46228824
3619      46228824
3620      46228824
3621      46228824
3622      46228824
3623      46228824
3624      46228824
3625      46228824
3626      46228824
3627      46228824
3628      46228824
3629      46228824
3630      46228824
3631      46228824
3632      46228824
3633      46228824
3634      46228824
3635      46228824
3636      46228824
3637      46228824
3638      46228824
3639      46228824
3640      46228824
3641      46228824
3642      46228824
3643      46228824
3644      46228824
3645      46228824
3646      46228824
3647      46228824
3648      46228824
3649      46228824
3650      46228824
3651      46228824
3652      46228824
3653      46228824
3654      46228824
3655      46228824
3656      46228824
3657      46228824
3658      46228824
3659      46228824
3660      46228824
3661      46228824
3662      46228824
3663      46228824
3664      46228824
3665      46228824
3666      46228824
3667      46228824
3668      46228824
3669      46228824
3670      46228824
3671      46228824
3672      46228824
3673      46228824
3674      46228824
3675      46228824
3676      46228824
3677      46228824
3678      46228824
3679      46228824
3680      46228824
3681      41879482
3682      41879482
3683      41879482
3684      41879482
3685      41879482
3686      41879482
3687      41879482
3688      41879482
3689      41879482
3690      41879482
3691      41879482
3692      41879482
3693      41879482
3694      41879482
3695      41879482
3696      41879482
3697      41879482
3698      41879482
3699      41879482
3700      41879482
3701      41879482
3702      41879482
3703      41879482
3704      41879482
3705      41879482
3706      41879482
3707      41879482
3708      41879482
3709      41879482
3710      41879482
3711      41879482
3712      41879482
3713      41879482
3714      41879482
3715      41879482
3716      41879482
3717      41879482
3718      41879482
3719      41879482
3720      41879482
3721      41879482
3722      41879482
3723      41879482
3724      41879482
3725      41879482
3726      41879482
3727      41879482
3728      41879482
3729      41879482
3730      41879482
3731      41879482
3732      41879482
3733      41879482
3734      41879482
3735      41879482
3736      41879482
3737      41879482
3738      41879482
3739      41879482
3740      41879482
3741      41879482
3742      41879482
3743      41879482
3744      41879482
3745      41879482
3746      41879482
3747      41879482
3748      41879482
3749      41879482
3750      41879482
3751      41879482
3752      41879482
3753      41879482
3754      41879482
3755      41879482
3756      41879482
3757      41879482
3758      41879482
3759      41879482
3760      41879482
3761      41879482
3762      41879482
3763      41879482
3764      41879482
3765      41879482
3766      41879482
3767      41879482
3768      41879482
3769      41879482
3770      41879482
3771      41879482
3772      41879482
3773      41879482
3774      41879482
3775      41879482
3776      41879482
3777      41879482
3778      41879482
3779      41879482
3780      41879482
3781      41879482
3782      41879482
3783      41879482
3784      41879482
3785      41879482
3786      41879482
3787      41879482
3788      41879482
3789      41879482
3790      41879482
3791      41879482
3792      41879482
3793      41879482
3794      41879482
3795      41879482
3796      41879482
3797      41879482
3798      41879482
3799      41879482
3800      41879482
3801      41879482
3802      41879482
3803      41879482
3804      41879482
3805      41879482
3806      41879482
3807      41879482
3808      41879482
3809      41879482
3810      41879482
3811      41879482
3812      41879482
3813      41879482
3814      41879482
3815      41879482
3816      41879482
3817      41879482
3818      41879482
3819      41879482
3820      41879482
3821      41879482
3822      41879482
3823      41879482
3824      41879482
3825      41879482
3826      41879482
3827      41879482
3828      41879482
3829      41879482
3830      41879482
3831      41879482
3832      41879482
3833      41879482
3834      41879482
3835      41879482
3836      41879482
3837      41879482
3838      41879482
3839      41879482
3840      41879482
3841      41879482
3842      41879482
3843      41879482
3844      41879482
3845      41879482
3846      41879482
3847      41879482
3848      41879482
3849      41879482
3850      41879482
3851      41879482
3852      41879482
3853      41879482
3854      41879482
3855      41879482
3856      41879482
3857      41879482
3858      41879482
3859      41879482
3860      41879482
3861      41879482
3862      41879482
3863      41879482
3864      41879482
3865      41879482
3866      41879482
3867      41879482
3868      41879482
3869      41879482
3870      41879482
3871      41879482
3872      41879482
3873      41879482
3874      41879482
3875      41879482
3876      41879482
3877      41879482
3878      41879482
3879      41879482
3880      41879482
3881      41879482
3882      41879482
3883      41879482
3884      41879482
3885      41879482
3886      41879482
3887      41879482
3888      41879482
3889      41879482
3890      41879482
3891      41879482
3892      41879482
3893      41879482
3894      41879482
3895      41879482
3896      41879482
3897      41879482
3898      41879482
3899      41879482
3900      41879482
3901      41879482
3902      41879482
3903      41879482
3904      41879482
3905      41879482
3906      41879482
3907      41879482
3908      41879482
3909      41879482
3910      41879482
3911      41879482
3912      41879482
3913      41879482
3914      41879482
3915      41879482
3916      41879482
3917      41879482
3918      41879482
3919      41879482
3920      41879482
3921      41879482
3922      41879482
3923      41879482
3924      41879482
3925      41879482
3926      41879482
3927      41879482
3928      41879482
3929      41879482
3930      41879482
3931      41879482
3932      41879482
3933      29175889
3934      29175889
3935      29175889
3936      29175889
3937      29175889
3938      29175889
3939      29175889
3940      29175889
3941      29175889
3942      29175889
3943      29175889
3944      29175889
3945      29175889
3946      29175889
3947      29175889
3948      29175889
3949      29175889
3950      29175889
3951      29175889
3952      29175889
3953      29175889
3954      29175889
3955      29175889
3956      29175889
3957      29175889
3958      29175889
3959      29175889
3960      29175889
3961      29175889
3962      29175889
3963      29175889
3964      29175889
3965      29175889
3966      29175889
3967      29175889
3968      29175889
3969      29175889
3970      29175889
3971      29175889
3972      29175889
3973      29175889
3974      29175889
3975      29175889
3976      29175889
3977      29175889
3978      29175889
3979      29175889
3980      29175889
3981      29175889
3982      29175889
3983      29175889
3984      29175889
3985      29175889
3986      29175889
3987      29175889
3988      29175889
3989      29175889
3990      29175889
3991      29175889
3992      29175889
3993      29175889
3994      29175889
3995      29175889
3996      29175889
3997      29175889
3998      29175889
3999      29175889
4000      29175889
4001      29175889
4002      29175889
4003      29175889
4004      29175889
4005      29175889
4006      29175889
4007      29175889
4008      29175889
4009      29175889
4010      29175889
4011      29175889
4012      29175889
4013      29175889
4014      29175889
4015      29175889
4016      29175889
4017      29175889
4018      29175889
4019      29175889
4020      29175889
4021      29175889
4022      29175889
4023      29175889
4024      29175889
4025      29175889
4026      29175889
4027      29175889
4028      29175889
4029      29175889
4030      29175889
4031      29175889
4032      29175889
4033      29128188
4034       6076305
4035       6076305
4036       6076305
4037       6076305
4038       6076305
4039       6076305
4040       6076305
4041       6076305
4042       6076305
4043       6076305
4044       6076305
4045       6076305
4046       6076305
4047       6076305
4048       6076305
4049       5705637
4050       5707160
4051       5707160
4052      23131206
4053      23131206
4054      23131206
4055      23131206
4056      23131206
4057      22098459
4058      22098459
4059      22098459
4060      22098459
4061      22098459
4062      22098459
4063      22098459
4064      22098459
4065      22098459
4066      22098459
4067      22098459
4068      22098459
4069      21975681
4070      21975681
4071      21975681
4072      36064408
4073      36064408
4074      36064408
4075      19899755
4076      19899755
4077      19899755
4078      32515397
4079      32515397
4080      32515397
4081      32515397
4082      32515397
4083      32515397
4084      32515397
4085      32515397
4086      32515397
4087      32515397
4088      32515397
4089      32515397
4090      32515397
4091      32515397
4092      32515397
4093      32515397
4094      32515397
4095      32515397
4096      32515397
4097      32515397
4098      32515397
4099      32515397
4100      32515397
4101      32515397
4102      32515397
4103      32515397
4104      32515397
4105      32515397
4106      32515397
4107      32515397
4108      32515397
4109      32515397
4110      32515397
4111      32515397
4112      32515397
4113      32515397
4114      32515397
4115      32515397
4116      32515397
4117      32515397
4118      32515397
4119      32515397
4120      32515397
4121      32515397
4122      32515397
4123      32515397
4124      32515397
4125      32515397
4126      32515397
4127      32515397
4128      32515397
4129      32515397
4130      32515397
4131      32515397
4132      32515397
4133      32515397
4134      32515397
4135      32515397
4136      32515397
4137      32515397
4138      32515397
4139      32515397
4140      32515397
4141      32515397
4142      32515397
4143      32515397
4144      32515397
4145      32515397
4146      32515397
4147      32515397
4148      32515397
4149      32515397
4150      32515397
4151      39006153
4152      39006153
4153      39006153
4154      14069087
4155      14069087
4156      14069087
4157      13120807
4158      31559977
4159      31559977
4160      31559977
4161      31559977
4162      31559977
4163      31559977
4164      31559977
4165      31559977
4166      31559977
4167      31559977
4168      31559977
4169      31559977
4170      31559977
4171      31559977
4172      31559977
4173      31559977
4174      31559977
4175      31559977
4176      31559977
4177      31559977
4178      31559977
4179      31559977
4180      31559977
4181      31559977
4182      31559977
4183      31559977
4184      31559977
4185      31559977
4186      31559977
4187      31559977
4188      31559977
4189      31559977
4190      31559977
4191      31559977
4192      31559977
4193      31559977
4194      31559977
4195      31559977
4196      31559977
4197      31559977
4198      31559977
4199      31559977
4200      31559977
4201      31559977
4202      31559977
4203      31559977
4204      31559977
4205      31559977
4206      31559977
4207      31559977
4208      31559977
4209      31559977
4210      31559977
4211      31559977
4212      31559977
4213      31559977
4214      31559977
4215      31559977
4216      31559977
4217      31559977
4218      31559977
4219      31559977
4220      31559977
4221      31559977
4222      31559977
4223      31559977
4224      31559977
4225      31559977
4226      31559977
4227      31559977
4228      31559977
4229      31559977
4230      31559977
4231      31559977
4232      31559977
4233      31559977
4234      31559977
4235      31559977
4236      31559977
4237      31559977
4238      31559977
4239      31559977
4240      31559977
4241      31559977
4242      31559977
4243      31559977
4244      31559977
4245      31559977
4246      31559977
4247      25717562
4248      25717562
4249      25717562
4250      25717562
4251      25717562
4252      25717562
4253      25717562
4254      25717562
4255      25717562
4256      25717562
4257      25717562
4258      25717562
4259      25717562
4260      25717562
4261      25717562
4262      25717562
4263      25717562
4264      25717562
4265      25717562
4266      25717562
4267      25717562
4268      25717562
4269      25717562
4270      25717562
4271      25717562
4272      25717562
4273      25717562
4274      25717562
4275      25717562
4276      25717562
4277      25717562
4278      25717562
4279      25717562
4280      25717562
4281      25717562
4282      25717562
4283      25717562
4284      25717562
4285      25717562
4286      25717562
4287      25717562
4288      25717562
4289      25717562
4290      25717562
4291      25717562
4292      25717562
4293      30502117
4294      44425272
4295      44425272
4296      44425272
4297      44425272
4298      44425272
4299      44443081
4300      44443081
4301      44443081
4302      44443081
4303      44443081
4304      44443081
4305      44443081
4306      44443081
4307      44443081
4308      44443081
4309      44443081
4310      44443081
4311      44443081
4312      44443081
4313      44443081
4314      44443081
4315      44443081
4316      44443081
4317      44443081
4318      44443081
4319      44443081
4320      44443081
4321      44443081
4322      44443081
4323      44443081
4324      44443081
4325      44443081
4326      44443081
4327      44443081
4328      44443081
4329      44443081
4330      44443081
4331      44443081
4332      44443081
4333      44443081
4334      44443081
4335      44443081
4336      44443081
4337      44443081
4338      44443081
4339      44443081
4340      44443081
4341      44443081
4342      44443081
4343      44443081
4344      44443081
4345      44443081
4346      44443081
4347      44443081
4348      44443081
4349      44443081
4350      44443081
4351      44443081
4352      44443081
4353      44443081
4354      44443081
4355      44443081
4356      44443081
4357      44443081
4358      44443081
4359      44443081
4360      44443081
4361      44443081
4362      44443081
4363      44443081
4364      44443081
4365      44443081
4366      44443081
4367      44443081
4368      44443081
4369      44443081
4370      44443081
4371      44443081
4372      44443081
4373      44443081
4374      44443081
4375      44443081
4376      44443081
4377      44443081
4378      44443081
4379      44443081
4380      44443081
4381      44443081
4382      44443081
4383      44443081
4384      44443081
4385      44443081
4386      44443081
4387      44443081
4388      44443081
4389      44443081
4390      44443081
4391      44443081
4392      44443081
4393      44443081
4394      44443081
4395      44443081
4396      44443081
4397      44443081
4398      44443081
4399      44443081
4400      44443081
4401      44443081
4402      44443081
4403      44443081
4404      44443081
4405      44443081
4406      44443081
4407      44443081
4408      44443081
4409      44443081
4410      44443081
4411      44443081
4412      44443081
4413      44443081
4414      44443081
4415      44443081
4416      44443081
4417      44443081
4418      44443081
4419      44443081
4420      44443081
4421      44443081
4422      44443081
4423      44443081
4424      44443081
4425      44443081
4426      44443081
4427      44443081
4428      44443081
4429      44443081
4430      44443081
4431      44443081
4432      44443081
4433      44443081
4434      44443081
4435      44443081
4436      44443081
4437      44443081
4438      44443081
4439      44443081
4440      44443081
4441      44443081
4442      44443081
4443      44443081
4444      44443081
4445      44443081
4446      44443081
4447      44443081
4448      44443081
4449      44443081
4450      44443081
4451      44443081
4452      44443081
4453      44443081
4454      44443081
4455      44443081
4456      44443081
4457      44443081
4458      44443081
4459      44443081
4460      44443081
4461      44443081
4462      44443081
4463      44443081
4464      44443081
4465      44443081
4466      44443081
4467      44443081
4468      44443081
4469      44443081
4470      44443081
4471      44443081
4472      44443081
4473      44443081
4474      44443081
4475      44443081
4476      44443081
4477      44443081
4478      44443081
4479      46188941
4480      46188941
4481      40630767
4482      40630767
4483      40630767
4484      40630767
4485      40630767
4486      40630767
4487      40630767
4488      40630767
4489      39515506
4490      39515506
4491      39515506
4492      39515506
4493      39515506
4494      39515506
4495      39515506
4496      39515506
4497      39515506
4498      39515506
4499      39515506
4500      39515506
4501      39515506
4502      39515506
4503      39515506
4504      39515506
4505      39515506
4506      39515506
4507      39515506
4508      39515506
4509      39515506
4510      39515506
4511      39515506
4512      39515506
4513      39515506
4514      39515506
4515      39515506
4516      39515506
4517      39515506
4518      39515506
4519      39515506
4520      39515506
4521      39515506
4522      39515506
4523      39515506
4524      39515506
4525      39515506
4526      39515506
4527      39515506
4528      39515506
4529      39515506
4530      39515506
4531      39515506
4532      39515506
4533      39515506
4534      39515506
4535      39515506
4536      39515506
4537      39515506
4538      39515506
4539      39515506
4540      39515506
4541      29764002
4542      29764002
4543      29764002
4544      29764002
4545      29764002
4546      29764002
4547      29764002
4548      29764002
4549      29764002
4550      29764002
4551      29764002
4552      29764002
4553      29764002
4554      29764002
4555      29764002
4556      29764002
4557      46132849
4558      46132849
4559      46132849
4560      46132849
4561      46132849
4562      46132849
4563      46132849
4564      46132849
4565      46132849
4566      46132849
4567      46132849
4568      46132849
4569      46132849
4570      46132849
4571      46132849
4572      46132849
4573      46132849
4574      46132849
4575      46132849
4576      46132849
4577      46132849
4578      46132849
4579      46132849
4580      46132849
4581      46132849
4582      46132849
4583      46132849
4584      46132849
4585      46132849
4586      46132849
4587      46132849
4588      46132849
4589      46132849
4590      46132849
4591      46132849
4592      46132849
4593      46132849
4594      46132849
4595      46132849
4596      46132849
4597      46132849
4598      46132849
4599      46132849
4600      46132849
4601      46132849
4602      46132849
4603      46132849
4604      46132849
4605      46132849
4606      46132849
4607      46132849
4608      46132849
4609      46132849
4610      46132849
4611      46132849
4612      46132849
4613      46132849
4614      46132849
4615      46132849
4616      46132849
4617      46132849
4618      46132849
4619      46132849
4620      46132849
4621      46132849
4622      46132849
4623      46132849
4624      46132849
4625      46132849
4626      46132849
4627      46132849
4628      46132849
4629      46132849
4630      46132849
4631      46132849
4632      46132849
4633      46132849
4634      46132849
4635      46132849
4636      46132849
4637      46132849
4638      46132849
4639      46132849
4640      46132849
4641      46132849
4642      46132849
4643      46132849
4644      46132849
4645      46132849
4646      46132849
4647      46132849
4648      46132849
4649      46132849
4650      46132849
4651      46132849
4652      46132849
4653      46132849
4654      46132849
4655      46132849
4656      46132849
4657      46132849
4658      46132849
4659      46132849
4660      46132849
4661      46132849
4662      46132849
4663      46132849
4664      46132849
4665      46132849
4666      46132849
4667      46132849
4668      46132849
4669      46132849
4670      46132849
4671      46132849
4672      46132849
4673      46132849
4674      46132849
4675      46132849
4676      46132849
4677      46132849
4678      46132849
4679      46132849
4680      46132849
4681      46132849
4682      46132849
4683      46132849
4684      46132849
4685      46132849
4686      46132849
4687      46132849
4688      46132849
4689      46132849
4690      33931607
4691      33931607
4692      33931607
4693      33931607
4694      33931607
4695      33931607
4696      33931607
4697      33931607
4698      44339402
4699      44339402
4700      44339402
4701      44339402
4702      44339402
4703      44339402
4704      44339402
4705      44339402
4706      44339402
4707      44339402
4708      44339402
4709      44339402
4710      44339402
4711      44339402
4712      44339402
4713      44339402
4714      44339402
4715      44339402
4716      44339402
4717      44339402
4718      44339402
4719      44339402
4720      44339402
4721      44339402
4722      44339402
4723      44339402
4724      44339402
4725      44339402
4726      44339402
4727      44339402
4728      44339402
4729      44339402
4730      44339402
4731      44339402
4732      44339402
4733      44339402
4734      44339402
4735      44339402
4736      44339402
4737      44339402
4738      46155567
4739      46155567
4740      46155567
4741      46155567
4742      46155567
4743      46155567
4744      46155567
4745      46155567
4746      46155567
4747      46155567
4748      46155567
4749      46155567
4750      46155567
4751      46155567
4752      46155567
4753      46155567
4754      46155567
4755      46155567
4756      46155567
4757      46155567
4758      46155567
4759      46155567
4760      46155567
4761      46155567
4762      46155567
4763      46155567
4764      46155567
4765      46155567
4766      46155567
4767      46155567
4768      46155567
4769      46155567
4770      46155567
4771      46155567
4772      46155567
4773      46155567
4774      46155567
4775      46155567
4776      46155567
4777      46155567
4778      46155567
4779      46155567
4780      46155567
4781      46155567
4782      46155567
4783      46155567
4784      46155567
4785      46155567
4786      46155567
4787      46155567
4788      46155567
4789      46155567
4790      46155567
4791      46155567
4792      46155567
4793      46155567
4794      46155567
4795      46155567
4796      46155567
4797      46155567
4798      46155567
4799      46155567
4800      46155567
4801      46155567
4802      46155567
4803      46155567
4804      46155567
4805      46155567
4806      46155567
4807      46155567
4808      46155567
4809      46155567
4810      46155567
4811      46155567
4812      46155567
4813      46155567
4814      46155567
4815      46155567
4816      46155567
4817      46155567
4818      46155567
4819      46155567
4820      46155567
4821      46155567
4822      46155567
4823      46155567
4824      46155567
4825      46155567
4826      46155567
4827      46155567
4828      46155567
4829      46155567
4830      46155567
4831      46155567
4832      46155567
4833      44473739
4834      44473739
4835      44475097
4836      41186788
4837      41186788
4838      41186788
4839      41186788
4840      41186788
4841      41186788
4842      41186788
4843      41186788
4844      41186788
4845      41186788
4846      44702791
4847      33170649
4848      33170649
4849      33170649
4850      33170649
4851      33170649
4852      33170649
4853      33170649
4854      33170649
4855      33170649
4856       6123739
4857       6123739
4858       6123739
4859       6123739
4860       6123739
4861       6123739
4862       6123739
4863       6123739
4864       6123739
4865       6123739
4866       6123739
4867       6123739
4868       6123739
4869       6123739
4870       6123739
4871       6123739
4872       6123739
4873      22420819
4874      22420819
4875      22420819
4876      22116528
4877      22116528
4878      22116528
4879      22116528
4880      22116528
4881      22116528
4882      36007838
4883      36007838
4884      42497443
4885      42497443
4886      42497443
4887      18267373
4888      18267373
4889      18267373
4890      18267373
4891      18267373
4892      18267373
4893      18267373
4894      18267373
4895      18267373
4896      18267373
4897      18267373
4898      18267373
4899      18267373
4900      18267373
4901      18267373
4902      18267373
4903      18267373
4904      18267373
4905      18267373
4906      18267373
4907      18267373
4908      18267373
4909      18267373
4910      18267373
4911      18267373
4912      18267373
4913      18267373
4914      18267373
4915      18267373
4916      18267373
4917      18267373
4918      18267373
4919      18267373
4920      18267373
4921      18267373
4922      18267373
4923      18267373
4924      18267373
4925      18267373
4926      18267373
4927      18267373
4928      46097530
4929      46097530
4930       6082585
4931       6082585
4932      23384861
4933      23384861
4934      23384861
4935      23384861
4936      23384861
4937      42581440
4938      42581440
4939      42581440
4940      42581440
4941      42581440
4942      42581440
4943      42581440
4944      42581440
4945      42581440
4946      42581440
4947      42581440
4948      42581440
4949      42581440
4950      42581440
4951      42581440
4952      42581440
4953      42581440
4954      42581440
4955      42581440
4956      42581440
4957      42581440
4958      42581440
4959      42581440
4960      42581440
4961      42581440
4962      42581440
4963      42581440
4964      42581440
4965      42581440
4966      42581440
4967      42581440
4968      42581440
4969      42581440
4970      42581440
4971      42581440
4972      42581440
4973      42581440
4974      42581440
4975      42581440
4976      42581440
4977      42581440
4978      42581440
4979      42581440
4980      42581440
4981      42581440
4982      42581440
4983      42581440
4984      42581440
4985      42581440
4986      42581440
4987      42581440
4988      42581440
4989      42581440
4990      42581440
4991      42581440
4992      42581440
4993      42581440
4994      42581440
4995      42581440
4996      42581440
4997      42581440
4998      42581440
4999      42581440
5000      45836419
5001      45836419
5002      45836419
5003      39219805
5004      39219805
5005      14775262
5006      14947096
5007      14947096
5008      15014430
5009      15014430
5010      15014430
5011      15014430
5012      14918552
5013      14918552
5014      14918552
5015      14918552
5016      14918552
5017      14918552
5018      14918552
5019      14918552
5020      14918552
5021      14918552
5022      14918552
5023      14918552
5024      14918552
5025      14918552
5026      14918552
5027      14918552
5028      14918552
5029      14918552
5030      14918552
5031      14918552
5032      14918552
5033      14918552
5034      14918552
5035      42297244
5036      42297244
5037      42297244
5038      42297244
5039      42297244
5040      42297244
5041      42297244
5042      42297244
5043      42297244
5044      42297244
5045      42297244
5046      42297244
5047      42297244
5048      42297244
5049      42297244
5050      42297244
5051      42297244
5052      42297244
5053      42297244
5054      42297244
5055      42297244
5056      42297244
5057      42297244
5058      42297244
5059      42297244
5060      42297244
5061      42297244
5062      42297244
5063      42297244
5064      42297244
5065      42297244
5066      42297244
5067      42297244
5068      42297244
5069      42297244
5070      42297244
5071      42297244
5072      42297244
5073      42297244
5074      42297244
5075      42297244
5076      42297244
5077      42297244
5078      42297244
5079      42297244
5080      42297244
5081      42297244
5082      42297244
5083      42297244
5084      42297244
5085      42297244
5086      42297244
5087      42297244
5088      42297244
5089      42297244
5090      42297244
5091      42297244
5092      42297244
5093      42297244
5094      42297244
5095      42297244
5096      42297244
5097      42297244
5098      42297244
5099      42297244
5100      42297244
5101      42297244
5102      42297244
5103      42297244
5104      42297244
5105      42297244
5106      42297244
5107      42297244
5108      42297244
5109      42297244
5110      42297244
5111      42297244
5112      42297244
5113      42297244
5114      42297244
5115      42297244
5116      42297244
5117      42297244
5118      42297244
5119      42297244
5120      42297244
5121      42297244
5122      42297244
5123      42297244
5124      42297244
5125      42297244
5126      42297244
5127      42297244
5128      42297244
5129      42297244
5130      42297244
5131      42297244
5132      42297244
5133      42297244
5134      42297244
5135      42297244
5136      42297244
5137      42297244
5138      42297244
5139      42297244
5140      42297244
5141      42297244
5142      42297244
5143      42297244
5144      42297244
5145      42297244
5146      42297244
5147      42297244
5148      42297244
5149      42297244
5150      42297244
5151      42297244
5152      42297244
5153      42297244
5154      42297244
5155      42297244
5156      42297244
5157      42297244
5158      42297244
5159      42297244
5160      42297244
5161      42297244
5162      42297244
5163      42297244
5164      42297244
5165      42297244
5166      42297244
5167      42297244
5168      42297244
5169      42297244
5170      42297244
5171      15065936
5172      15065936
5173      15065936
5174      15065936
5175      15065936
5176      15065936
5177      15065936
5178      15065936
5179      15065936
5180      15065936
5181      15065936
5182      15065936
5183      15065936
5184      15065936
5185      15065936
5186      15065936
5187      15065936
5188      15065936
5189      15065936
5190      15065936
5191      15065936
5192      15065936
5193      15065936
5194      14829989
5195      45544411
5196      45544411
5197      45544411
5198      45544411
5199      45544411
5200      45544411
5201      45544411
5202      45544411
5203      45544411
5204      45544411
5205      45544411
5206      45544411
5207      45544411
5208      45544411
5209      45544411
5210      45544411
5211      45544411
5212      45544411
5213      45544411
5214      45544411
5215      45544411
5216      45544411
5217      45544411
5218      45544411
5219      45544411
5220      45544411
5221      45544411
5222      45544411
5223      45544411
5224      45544411
5225      45544411
5226      45544411
5227      45544411
5228      45544411
5229      45544411
5230      45544411
5231      45544411
5232      45544411
5233      45544411
5234      45544411
5235      45544411
5236      45544411
5237      45544411
5238      45544411
5239      45544411
5240      45544411
5241      45544411
5242      14964233
5243      14964233
5244      15052379
5245      14992854
5246      14992854
5247      14992854
5248      45425070
5249      45425070
5250      45425070
5251      45425070
5252      45425070
5253      45425070
5254      39488760
5255      46323875
5256      46323875
5257      46323875
5258      46323875
5259      46323875
5260      46323875
5261      46323875
5262      46323875
5263      46323875
5264      46323875
5265      46323875
5266      46323875
5267      46323875
5268      46323875
5269      46323875
5270      46323875
5271      46323875
5272      46323875
5273      46323875
5274      46323875
5275      46323875
5276      46323875
5277      46323875
5278      46323875
5279      46323875
5280      46323875
5281      46323875
5282      46323875
5283      46323875
5284      46323875
5285      46323875
5286      46323875
5287      46323875
5288      46323875
5289      46323875
5290      46323875
5291      46323875
5292      46323875
5293      46323875
5294      46323875
5295      46323875
5296      46323875
5297      46323875
5298      46323875
5299      46323875
5300      46323875
5301      46323875
5302      46323875
5303      46323875
5304      46323875
5305      46323875
5306      46323875
5307      46323875
5308      46323875
5309      46323875
5310      46323875
5311      46323875
5312      46323875
5313      46323875
5314      46323875
5315      46323875
5316      46323875
5317      46323875
5318      46323875
5319      46323875
5320      46323875
5321      46323875
5322      46323875
5323      46323875
5324      46323875
5325      41409390
5326      41409390
5327      41409390
5328      41409390
5329      41409390
5330      41409390
5331      41409390
5332      41409390
5333      41409390
5334      41409390
5335      41409390
5336      41409390
5337      41409390
5338      41409390
5339      41409390
5340      41409390
5341      41409390
5342      41409390
5343      41409390
5344      41409390
5345      41409390
5346      41409390
5347      41409390
5348      41409390
5349      41409390
5350      41409390
5351      41409390
5352      41409390
5353      41409390
5354      41409390
5355      41409390
5356      41409390
5357      41409390
5358      41409390
5359      41409390
5360      41409390
5361      41409390
5362      41409390
5363      41409390
5364      41409390
5365      41409390
5366      41409390
5367      41409390
5368      41409390
5369      41409390
5370      41409390
5371      41409390
5372      41409390
5373      41409390
5374      41409390
5375      41409390
5376      41409390
5377      41409390
5378      41409390
5379      41409390
5380      41409390
5381      41409390
5382      41409390
5383      41409390
5384      41409390
5385      41409390
5386      41409390
5387      39929397
5388      39929397
5389      39929397
5390      39929397
5391      39929397
5392      39929397
5393      39929397
5394      39929397
5395      39929397
5396      39929397
5397      39929397
5398      39929397
5399      39929397
5400      39929397
5401      39529855
5402      39529855
5403      33977691
5404      33977691
5405      33977691
5406      33977691
5407      33977691
5408      33977691
5409      33977691
5410      33977691
5411      33977691
5412      33977691
5413      33977691
5414      33977691
5415      33977691
5416      33977691
5417      33977691
5418      33977691
5419      33977691
5420      33977691
5421      33977691
5422      33977691
5423      33977691
5424      33977691
5425      33977691
5426      33977691
5427      33977691
5428      33977691
5429      33977691
5430      33977691
5431      33977691
5432      33977691
5433      33977691
5434      33977691
5435      33977691
5436      33977691
5437      33977691
5438      33977691
5439      33977691
5440      33977691
5441      33977691
5442      33977691
5443      33977691
5444      33977691
5445      33977691
5446      33977691
5447      33977691
5448      33977691
5449      33977691
5450      33977691
5451      33977691
5452      33977691
5453      33977691
5454      33977691
5455      33977691
5456      33977691
5457      33977691
5458      33977691
5459      33519108
5460      39673137
5461      39673137
5462      39673137
5463      39673137
5464      39673137
5465      39673137
5466      39673137
5467      39673137
5468      39673137
5469      39673137
5470      39673137
5471      39673137
5472      39673137
5473      39673137
5474      39673137
5475      39673137
5476      39673137
5477      39673137
5478      33577481
5479      33577481
5480      33577481
5481      33577481
5482      33577481
5483      33577481
5484      33577481
5485      33577481
5486      33577481
5487      33577481
5488      33577481
5489      33577481
5490      33577481
5491      33577481
5492      33577481
5493      33577481
5494      33577481
5495      33577481
5496      33577481
5497      33577481
5498      33577481
5499      33577481
5500      33577481
5501      33577481
5502      33577481
5503      33577481
5504      33577481
5505      33577481
5506      33577481
5507      33577481
5508      33577481
5509      33577481
5510      33577481
5511      33577481
5512      33577481
5513      33577481
5514      33577481
5515      33577481
5516      33577481
5517      33577481
5518      33577481
5519      33577481
5520      33577481
5521      33577481
5522      33577481
5523      33577481
5524      33577481
5525      33577481
5526      33577481
5527      33577481
5528      33577481
5529      33577481
5530      33577481
5531      33577481
5532      33577481
5533      33577481
5534      33577481
5535      33577481
5536      33577481
5537      33577481
5538      33577481
5539      33577481
5540      33577481
5541      33577481
5542      33577481
5543      33577481
5544      33577481
5545      33577481
5546      33577481
5547      33577481
5548      33577481
5549      33577481
5550      33577481
5551      33577481
5552      33577481
5553      33577481
5554      33577481
5555      33577481
5556      33577481
5557      33577481
5558      33577481
5559      33577481
5560      33577481
5561      33577481
5562      33577481
5563      33577481
5564      33577481
5565      33577481
5566      33577481
5567      33577481
5568      33577481
5569      33577481
5570      33577481
5571      33577481
5572      33577481
5573      33577481
5574      33577481
5575      33577481
5576      33577481
5577      33577481
5578      33577481
5579      33577481
5580      33577481
5581      33577481
5582      33577481
5583      33577481
5584      33577481
5585      33577481
5586      33577481
5587      33577481
5588      33577481
5589      33577481
5590      33577481
5591      33577481
5592      33577481
5593      33577481
5594      33577481
5595      33577481
5596      33577481
5597      33577481
5598      33577481
5599      33577481
5600      33577481
5601      33577481
5602      46152647
5603      46152647
5604      39726085
5605      39726085
5606      39726085
5607      39612821
5608      39612821
5609      39612821
5610      39612821
5611      39612821
5612      39612821
5613      39612821
5614      39612821
5615      39612821
5616      39612821
5617      39612821
5618      39730680
5619      39730680
5620      39730680
5621      39730680
5622      39730680
5623      39802096
5624      39802096
5625      39802096
5626      39802096
5627      39802096
5628      39802096
5629      39802096
5630      39802096
5631      39802096
5632      39802096
5633      39802096
5634      39802096
5635      39802096
5636      39802096
5637      39802096
5638      39802096
5639      39802096
5640      44340470
5641      44340470
5642      44335851
5643      44335851
5644      33915980
5645      33915980
5646      33915980
5647      33915980
5648      33915980
5649      33915980
5650      33915980
5651      33915980
5652      33915980
5653      33915980
5654      33915980
5655      33915980
5656      33915980
5657      33915980
5658      33915980
5659      33915980
5660      33915980
5661      33915980
5662      33915980
5663      33915980
5664      33915980
5665      33915980
5666      33915980
5667      33915980
5668      33915980
5669      33915980
5670      33915980
5671      33915980
5672      33915980
5673      33915980
5674      33915980
5675      33915980
5676      33915980
5677      33915980
5678      33915980
5679      33915980
5680      33915980
5681      33915980
5682      33915980
5683      33915980
5684      33915980
5685      33915980
5686      33915980
5687      33915980
5688      33915980
5689      29288205
5690      29288205
5691      29288205
5692      29288205
5693      29288205
5694      29288205
5695      29288205
5696      29288205
5697      40847139
5698      40847139
5699      40847139
5700      40847139
5701      40847139
5702      40847139
5703      40847139
5704      40847139
5705      40847139
5706      40847139
5707      40847139
5708      40847139
5709      40847139
5710      40847139
5711      40847139
5712      40847139
5713      40847139
5714      40847139
5715      40847139
5716      40847139
5717      40847139
5718      40847139
5719      40847139
5720      40847139
5721      40847139
5722      40847139
5723      40847139
5724      40847139
5725      40847139
5726      40847139
5727      40847139
5728      40847139
5729      40847139
5730      40847139
5731      40847139
5732      40847139
5733      40847139
5734      40847139
5735      40847139
5736      40847139
5737      40847139
5738      40847139
5739      40847139
5740      40847139
5741      40847139
5742      40847139
5743      40847139
5744      40847139
5745      40847139
5746      40847139
5747      40847139
5748      40847139
5749      40847139
5750      40847139
5751      40847139
5752      40847139
5753      40847139
5754      40847139
5755      40847139
5756      40847139
5757      40847139
5758      40847139
5759      40847139
5760      40847139
5761      40847139
5762      40847139
5763      40847139
5764      40847139
5765      40847139
5766      40847139
5767      40847139
5768      40847139
5769      40847139
5770      40847139
5771      40847139
5772      40847139
5773      40847139
5774      40847139
5775      40847139
5776      40847139
5777      40847139
5778      40847139
5779      40847139
5780      40847139
5781      40847139
5782      40847139
5783      40847139
5784      40847139
5785      40847139
5786      40847139
5787      40847139
5788      40847139
5789      37203112
5790      37203112
5791      37203112
5792      37203112
5793      37203112
5794      37203112
5795      37203112
5796      37203112
5797      37203112
5798      37203112
5799      37203112
5800      37203112
5801      37203112
5802      37203112
5803      37203112
5804      37203112
5805      37203112
5806      37203112
5807      37203112
5808      37203112
5809      37203112
5810      37203112
5811      37203112
5812      37203112
5813      37203112
5814      37203112
5815      37203112
5816      37203112
5817      37203112
5818      37203112
5819      37203112
5820      37203112
5821      37203112
5822      37203112
5823      37203112
5824      37203112
5825      37203112
5826      37203112
5827      37203112
5828      37203112
5829      37203112
5830      37203112
5831      37203112
5832      37203112
5833      37203112
5834      37203112
5835      37203112
5836      37203112
5837      37203112
5838      37203112
5839      37203112
5840      37203112
5841      37203112
5842      37203112
5843      37203112
5844      37203112
5845      37203112
5846      37203112
5847      37203112
5848      37203112
5849      37203112
5850      37203112
5851      37203112
5852      37203112
5853      37203112
5854      37203112
5855      37203112
5856      37203112
5857      37203112
5858      37203112
5859      37203112
5860      37203112
5861      37203112
5862      37203112
5863      37203112
5864      37203112
5865      37203112
5866      37203112
5867      37203112
5868      37203112
5869      37203112
5870      37203112
5871      37203112
5872      37203112
5873      37203112
5874      37203112
5875      37203112
5876      37203112
5877      37203112
5878      37203112
5879      37203112
5880      37203112
5881      37203112
5882      37203112
5883      37203112
5884      37203112
5885      37203112
5886      37203112
5887      37203112
5888      37203112
5889      37203112
5890      37203112
5891      37203112
5892      37203112
5893      37203112
5894      37203112
5895      37203112
5896      37203112
5897      37203112
5898      37203112
5899      37203112
5900      37203112
5901      37203112
5902      37203112
5903      37203112
5904      37203112
5905      37203112
5906      37203112
5907      37203112
5908      37203112
5909      37203112
5910      37203112
5911      37203112
5912      37203112
5913      37203112
5914      37203112
5915      37203112
5916      37203112
5917      37203112
5918      37203112
5919      37203112
5920      37203112
5921      37203112
5922      37203112
5923      37203112
5924      37203112
5925      37203112
5926      37203112
5927      37203112
5928      37203112
5929      37203112
5930      37203112
5931      37203112
5932      37203112
5933      37203112
5934      37203112
5935      37203112
5936      37203112
5937      37203112
5938      37203112
5939      37203112
5940      37203112
5941      37203112
5942      37203112
5943      37203112
5944      37203112
5945      37203112
5946      37203112
5947      37203112
5948      37203112
5949      37203112
5950      37203112
5951      37203112
5952      37203112
5953      37203112
5954      37203112
5955      37203112
5956      37203112
5957      37203112
5958      37203112
5959      37203112
5960      37203112
5961      37203112
5962      37203112
5963      37203112
5964      37203112
5965      37203112
5966      37203112
5967      37203112
5968      37203112
5969      37203112
5970      37203112
5971      37203112
5972      37203112
5973      37203112
5974      37203112
5975      37203112
5976      37203112
5977      37203112
5978      37203112
5979      37203112
5980      37203112
5981      37203112
5982      37203112
5983      37203112
5984      37203112
5985      37203112
5986      37203112
5987      37203112
5988      37203112
5989      37203112
5990      37203112
5991      37203112
5992      37203112
5993      37203112
5994      37203112
5995      37203112
5996      37203112
5997      37203112
5998      37203112
5999      37203112
6000      37203112
6001      37203112
6002      37203112
6003      37203112
6004      37203112
6005      37203112
6006      37203112
6007      37203112
6008      37203112
6009      37203112
6010      37203112
6011      37203112
6012      37203112
6013      37203112
6014      37203112
6015      37203112
6016      37203112
6017      37203112
6018      37203112
6019      37203112
6020      37203112
6021      37203112
6022      37203112
6023      37203112
6024      37203112
6025      37203112
6026      37203112
6027      37203112
6028      37203112
6029      37203112
6030      37203112
6031      37203112
6032      37203112
6033      37203112
6034      37203112
6035      37203112
6036      37203112
6037      37203112
6038      37203112
6039      37203112
6040      37203112
6041      37203112
6042      37203112
6043      37203112
6044      37203112
6045      37203112
6046      37203112
6047      37203112
6048      37203112
6049      37203112
6050      37203112
6051      37203112
6052      37203112
6053      37203112
6054      37203112
6055      37203112
6056      37203112
6057      37203112
6058      37203112
6059      37203112
6060      37203112
6061      37203112
6062      37203112
6063      37203112
6064      37203112
6065      37203112
6066      37203112
6067      37203112
6068      37203112
6069      37203112
6070      37203112
6071      37203112
6072      37203112
6073      37203112
6074      37203112
6075      37203112
6076      37203112
6077      37203112
6078      37203112
6079      37203112
6080      37203112
6081      37203112
6082      37203112
6083      37203112
6084      37203112
6085      37203112
6086      37203112
6087      37203112
6088      37203112
6089      37203112
6090      37203112
6091      37203112
6092      37203112
6093      37203112
6094      37203112
6095      37203112
6096      37203112
6097      37203112
6098      37203112
6099      37203112
6100      37203112
6101      37203112
6102      37203112
6103      37203112
6104      37203112
6105      37203112
6106      37203112
6107      37203112
6108      37203112
6109      37203112
6110      37203112
6111      37203112
6112      37203112
6113      37203112
6114      37203112
6115      37203112
6116      37203112
6117      37203112
6118      37203112
6119      37203112
6120      37203112
6121      37203112
6122      37203112
6123      37203112
6124      37203112
6125      37203112
6126      37203112
6127      37203112
6128      37203112
6129      37203112
6130      37203112
6131      37203112
6132      37203112
6133      37203112
6134      37203112
6135      37203112
6136      37203112
6137      37203112
6138      37203112
6139      37203112
6140      37203112
6141      37203112
6142      37203112
6143      37203112
6144      37203112
6145      37203112
6146      37203112
6147      37203112
6148      37203112
6149      37203112
6150      37203112
6151      37203112
6152      37203112
6153      37203112
6154      37203112
6155      37203112
6156      37203112
6157      37203112
6158      37203112
6159      37203112
6160      37203112
6161      37203112
6162      37203112
6163      37203112
6164      37203112
6165      37203112
6166      37203112
6167      37203112
6168      37203112
6169      37203112
6170      37203112
6171      37203112
6172      37203112
6173      37203112
6174      37203112
6175      37203112
6176      37203112
6177      37203112
6178      37203112
6179      37203112
6180      37203112
6181      37203112
6182      37203112
6183      37203112
6184      37203112
6185      37203112
6186      37203112
6187      37203112
6188      37203112
6189      37203112
6190      37203112
6191      37203112
6192      37203112
6193      37203112
6194      37203112
6195      37203112
6196      37203112
6197      37203112
6198      37203112
6199      37203112
6200      37203112
6201      37203112
6202      37203112
6203      37203112
6204      37203112
6205      37203112
6206      37203112
6207      37203112
6208      37203112
6209      37203112
6210      37203112
6211      37203112
6212      37203112
6213      37203112
6214      37203112
6215      37203112
6216      37203112
6217      37203112
6218      37203112
6219      37203112
6220      37203112
6221      37203112
6222      37203112
6223      37203112
6224      37203112
6225      37203112
6226      37203112
6227      37203112
6228      37203112
6229      37203112
6230      37203112
6231      37203112
6232      37203112
6233      37203112
6234      37203112
6235      37203112
6236      37203112
6237      37203112
6238      37203112
6239      37203112
6240      37203112
6241      37203112
6242      37203112
6243      37203112
6244      37203112
6245      37203112
6246      37203112
6247      37203112
6248      37203112
6249      37203112
6250      37203112
6251      37203112
6252      37203112
6253      37203112
6254      37203112
6255      37203112
6256      37203112
6257      37203112
6258      37203112
6259      37203112
6260      37203112
6261      37203112
6262      37203112
6263      37203112
6264       6812297
6265       6812297
6266       6812297
6267      29060095
6268      29060095
6269      29073797
6270      29073797
6271      29073797
6272      29073797
6273      29073797
6274      29073797
6275      29073797
6276      29073797
6277      29073797
6278      29073797
6279      29073797
6280      29073797
6281      29073797
6282      29073797
6283      29073797
6284      29073797
6285      29073797
6286      29073797
6287      29073797
6288      29073797
6289      29073797
6290      29073797
6291      29073797
6292      29073797
6293      29073797
6294      29073797
6295      29073797
6296      29073797
6297      29073797
6298      29073797
6299      29073797
6300      29073797
6301      29073797
6302      29073797
6303      29073797
6304      29073797
6305      29073797
6306      29073797
6307      29073797
6308      29073797
6309      29073797
6310      29073797
6311      29073797
6312      29073797
6313      29073797
6314      29073797
6315      29073797
6316      29073797
6317      29073797
6318      29073797
6319      29073797
6320      29073797
6321      29073797
6322      29073797
6323      29073797
6324      29073797
6325      29073797
6326      29073797
6327      29073797
6328      29073797
6329      29073797
6330      29073797
6331      29073797
6332      29073797
6333      29073797
6334      29073797
6335      29073797
6336      29073797
6337      29073797
6338      29073797
6339      29073797
6340      29073797
6341      29073797
6342      29073797
6343      29073797
6344      29073797
6345      29073797
6346      29073797
6347      29073797
6348      29073797
6349      29073797
6350      29073797
6351      29073797
6352      29073797
6353      29073797
6354      29073797
6355      29073797
6356      29073797
6357      29073797
6358      29073797
6359      29073797
6360      29073797
6361      29073797
6362      29073797
6363      29073797
6364      29073797
6365      29073797
6366      29073797
6367      29073797
6368      29073797
6369      29073797
6370      29073797
6371       6897263
6372       6897263
6373       6897263
6374      33335096
6375      33359862
6376      33359862
6377      33359862
6378      33359862
6379      33359862
6380      33359862
6381      33359862
6382      33359862
6383      33359862
6384      33359862
6385      33359862
6386      33359862
6387      33359862
6388      33359862
6389      33359862
6390      33359862
6391      33359862
6392       6899280
6393       6906692
6394       6906692
6395       6997737
6396       6997737
6397       6997737
6398       6997765
6399       6997765
6400       6997765
6401       6997765
6402       6997765
6403       6997765
6404       6997765
6405       6997765
6406       6997765
6407       6997765
6408       6997765
6409      39445805
6410      39445805
6411      39445805
6412      39445805
6413      39445805
6414      39445805
6415      39445805
6416      39445805
6417      39445805
6418      39445805
6419      39445805
6420      39445805
6421      39445805
6422      39445805
6423      39445805
6424      39445805
6425      39445805
6426      39445805
6427      39445805
6428      39445805
6429      39445805
6430      39445805
6431      39445805
6432      39445805
6433      39445805
6434      39445805
6435      39445805
6436      39445805
6437      39445805
6438      39445805
6439      39445805
6440      39445805
6441      39445805
6442      39445805
6443      39445805
6444      39445805
6445      39445805
6446      39445805
6447      39445805
6448      39445805
6449      39445805
6450      39445805
6451      39445805
6452      39445805
6453      39445805
6454      39445805
6455      39445805
6456      39445805
6457      39445805
6458      39445805
6459      39445805
6460      39445805
6461      39445805
6462      39445805
6463      39445805
6464      39445805
6465      39445805
6466      39445805
6467      39445805
6468      39445805
6469      39445805
6470      39445805
6471      39445805
6472      39445805
6473      39445805
6474      39445805
6475      39445805
6476      39445805
6477      39445805
6478      39445805
6479      39445805
6480      39445805
6481      39445805
6482      39445805
6483      39445805
6484      39445805
6485      39445805
6486      39445805
6487      39445805
6488      39445805
6489      39445805
6490      39445805
6491      39445805
6492      39445805
6493      39445805
6494      39445805
6495      39445805
6496      39445805
6497      39445805
6498      39445805
6499      39445805
6500      39445805
6501      39445805
6502      39445805
6503      39445805
6504      39445805
6505      39445805
6506      39445805
6507      39445805
6508      39445805
6509      39445805
6510      39445805
6511      39445805
6512      39445805
6513      39445805
6514      39445805
6515      39445805
6516      39445805
6517      39445805
6518      39445805
6519      39445805
6520      39445805
6521      39445805
6522      39445805
6523      39445805
6524      39445805
6525      39445805
6526       7007022
6527       7007022
6528       7007022
6529       7007022
6530       7007022
6531       7007022
6532       7007022
6533       7007022
6534       7007022
6535      33266260
6536      33266260
6537      29054488
6538      29054488
6539      29054488
6540      29054488
6541      29054488
6542      29054488
6543      29054488
6544      29054488
6545      29054488
6546      29054488
6547      29054488
6548      29054488
6549      29054488
6550      29054488
6551      29054488
6552      29054488
6553      29054488
6554      29054488
6555      29054488
6556      29054488
6557      29054488
6558      29054488
6559      29054488
6560      29054488
6561      29054488
6562      29054488
6563      29054488
6564      29054488
6565      29054488
6566      29054488
6567      29054488
6568      29054488
6569      29054488
6570      29054488
6571      29054488
6572      29054488
6573      29054488
6574      29054488
6575      29054488
6576      29054488
6577      29054488
6578      29054488
6579      29054488
6580      29054488
6581      29054488
6582      29054488
6583      29054488
6584      29054488
6585      29054488
6586      29054488
6587      29054488
6588      29054488
6589      29054488
6590      29054488
6591      29054488
6592      29054488
6593      29054488
6594      29054488
6595      29054488
6596      29054488
6597      29054488
6598      29054488
6599      29054488
6600      29054488
6601      29054488
6602      29054488
6603      29054488
6604      29054488
6605      29054488
6606      29054488
6607      29054488
6608      29054488
6609      29054488
6610      29054488
6611      29054488
6612      29054488
6613      29054488
6614      29054488
6615      29054488
6616      32813743
6617      32813743
6618      32813743
6619      32813743
6620      32813743
6621      32813743
6622      32813743
6623      32813743
6624      32813743
6625      32813743
6626      32813743
6627      32813743
6628      36487411
6629      36487411
6630      23091831
6631      22438349
6632      21737319
6633      21737319
6634      21737319
6635      44131181
6636      44131181
6637      44131181
6638      44131181
6639      44131181
6640      44131181
6641      44131181
6642      44131181
6643      44131181
6644      44131181
6645      44131181
6646      44131181
6647      44131181
6648      44131181
6649      44131181
6650      44131181
6651      44131181
6652      44131181
6653      44131181
6654      44131181
6655      44131181
6656      44131181
6657      44131181
6658      44131181
6659      44131181
6660      44131181
6661      44131181
6662      44131181
6663      44131181
6664      44131181
6665      44131181
6666      44131181
6667      44131181
6668      44131181
6669      44131181
6670      44131181
6671      44131181
6672      44131181
6673      44131181
6674      44131181
6675      44131181
6676      44131181
6677      44131181
6678      44131181
6679      44131181
6680      44131181
6681      19134423
6682      19134423
6683      19246392
6684      33480011
6685      33480011
6686      33480011
6687      33480011
6688      33480011
6689      33480011
6690      33480011
6691      33480011
6692      33480011
6693      33480011
6694      33480011
6695      33480011
6696      33480011
6697      33480011
6698      33480011
6699      33480011
6700      33480011
6701      33480011
6702      33480011
6703      33480011
6704      33480011
6705      33480011
6706      33480011
6707      33480011
6708      33480011
6709      33480011
6710      33480011
6711      33480011
6712      33480011
6713      33480011
6714      33480011
6715      33480011
6716      33480011
6717      33480011
6718      33480011
6719      33480011
6720      33480011
6721      33480011
6722      33480011
6723      33480011
6724      33480011
6725      33480011
6726      33480011
6727      33480011
6728      33480011
6729      33480011
6730      33480011
6731      33480011
6732      33480011
6733      33072420
6734      33072420
6735      33072420
6736      33072420
6737      33072420
6738      32849934
6739      32849934
6740       6312948
6741       6312948
6742       6312948
6743       6312948
6744       6312948
6745       6312948
6746      36990236
6747      36990236
6748      36990236
6749      36990236
6750      36990236
6751      36990236
6752      36990236
6753      36990236
6754      36990236
6755      36990236
6756      36990236
6757      36990236
6758      36990236
6759      36990236
6760      36990236
6761      36990236
6762      36990236
6763      36990236
6764      36990236
6765      36990236
6766      36990236
6767      36990236
6768      36990236
6769      36990236
6770      36990236
6771      36990236
6772      36990236
6773      36990236
6774      36990236
6775      36990236
6776      36990236
6777      36990236
6778      36990236
6779      36990236
6780      36990236
6781      36990236
6782      36990236
6783      36990236
6784      36990236
6785      36990236
6786      36990236
6787      36990236
6788      36990236
6789      36990236
6790      36990236
6791      36990236
6792      36990236
6793      36990236
6794      36990236
6795      36990236
6796      36990236
6797      36701564
6798      36701564
6799       6008810
6800       7025166
6801       7025166
6802      29019378
6803      29019378
6804      29019378
6805      29019378
6806      29019378
6807      29019378
6808      29019378
6809      29019378
6810      29019378
6811      29019378
6812      29019378
6813      29019378
6814      29019378
6815      29019378
6816      29019378
6817      29019378
6818      29019378
6819      29019378
6820      29019378
6821      29019378
6822      29019378
6823      29019378
6824      29019378
6825      29019378
6826      29019378
6827      29019378
6828      29019378
6829      29019378
6830      29019378
6831      37019659
6832      37019659
6833      37019659
6834      37019659
6835      37019659
6836      37019659
6837      37019659
6838      37019659
6839      37019659
6840      37019659
6841      37019659
6842      36749917
6843      36749917
6844      36749917
6845      36749917
6846      36749917
6847      36749917
6848      36749917
6849      36749917
6850      36749917
6851      36749917
6852      36749917
6853      36749917
6854      36749917
6855      36749917
6856      36749917
6857      36749917
6858      36749917
6859      36749917
6860      36749917
6861      36749917
6862      36749917
6863      36749917
6864      36749917
6865      36749917
6866      36749917
6867      36749917
6868      36749917
6869      36749917
6870      36749917
6871      36749917
6872      36749917
6873      36749917
6874      36749917
6875      36749917
6876      36749917
6877      36637033
6878      36637033
6879       5973383
6880      21226829
6881      21226829
6882      19740150
6883      19594108
6884      18760003
6885      18760003
6886      18760003
6887      18760003
6888      18760003
6889      18760003
6890      18760003
6891      18760003
6892      18760003
6893      18760003
6894      18760003
6895      18760003
6896      42836477
6897      42836477
6898      42836477
6899      42779994
6900      42779994
6901      42779994
6902      46184476
6903      46184476
6904      46184476
6905      46184476
6906      46184476
6907      46184476
6908      46184476
6909      46184476
6910      46184476
6911      41185239
6912      41185239
6913      33899861
6914      33899861
6915      33899861
6916      33899861
6917      33899861
6918      33899861
6919      33899861
6920      33899861
6921      33899861
6922      33899861
6923      33899861
6924      33899861
6925      33899861
6926      33899861
6927      33899861
6928      33899861
6929      33899861
6930      33899861
6931      33899861
6932      33899861
6933      33899861
6934      33899861
6935      33899861
6936      33899861
6937      33899861
6938      33899861
6939      33899861
6940      33899861
6941      33899861
6942      33899861
6943      33899861
6944      33899861
6945      33899861
6946      33899861
6947      33899861
6948      33899861
6949      33899861
6950      33899861
6951      33899861
6952      33899861
6953      33899861
6954      33899861
6955      33899861
6956      33899861
6957      33899861
6958      33899861
6959      33899861
6960      33899861
6961      33899861
6962      33899861
6963      33899861
6964      33899861
6965      33899861
6966      33899861
6967      33899861
6968      33899861
6969      33899861
6970      33899861
6971      33899861
6972      33899861
6973      33899861
6974      33899861
6975      33899861
6976      33899861
6977      33899861
6978      33899861
6979      33899861
6980      33899861
6981      33899861
6982      33899861
6983      33899861
6984      33899861
6985      33899861
6986      33899861
6987      33899861
6988      33899861
6989      33899861
6990      33899861
6991      33899861
6992      33899861
6993      33899861
6994      33899861
6995      33899861
6996      33899861
6997      33899861
6998      33899861
6999      33899861
7000      33899861
7001      33899861
7002      33899861
7003      33899861
7004      33899861
7005      33899861
7006      33899861
7007      33899861
7008      33899861
7009      33899861
7010      33899861
7011      33899861
7012      33899861
7013      33899861
7014      33899861
7015      33899861
7016      33899861
7017      33899861
7018      33899861
7019      33899861
7020      33899861
7021      33899861
7022      33899861
7023      33899861
7024      33899861
7025      33899861
7026      33899861
7027      33899861
7028      33899861
7029      33899861
7030      33899861
7031      33899861
7032      33899861
7033      33899861
7034      33899861
7035      33899861
7036      33899861
7037      33899861
7038      33899861
7039      33899861
7040      33899861
7041      33899861
7042      33899861
7043      33899861
7044      33899861
7045      33899861
7046      33899861
7047      33899861
7048      33899861
7049      33899861
7050      33899861
7051      33899861
7052      33899861
7053      33899861
7054      33899861
7055      33899861
7056      33899861
7057      33899861
7058      33899861
7059      33899861
7060      33899861
7061      33899861
7062      33899861
7063      33899861
7064      33899861
7065      33899861
7066      33899861
7067      33899861
7068      33899861
7069      33899861
7070      33899861
7071      33899861
7072      33899861
7073      33899861
7074      33899861
7075      33899861
7076      33899861
7077      33899861
7078      33899861
7079      33899861
7080      33899861
7081      33899861
7082      33899861
7083      33899861
7084      33899861
7085      33899861
7086      33899861
7087      33899861
7088      33899861
7089      33899861
7090      33899861
7091      33899861
7092      33899861
7093      33899861
7094      33899861
7095      33899861
7096      33899861
7097      33899861
7098      33899861
7099      33899861
7100      33899861
7101      33899861
7102      33899861
7103      33899861
7104      33899861
7105      33899861
7106      33899861
7107      33899861
7108      33899861
7109      33899861
7110      33899861
7111      33899861
7112      33899861
7113      33899861
7114      33899861
7115      33899861
7116      33899861
7117      33899861
7118      33899861
7119      33899861
7120      33899861
7121      33899861
7122      33899861
7123      33899861
7124      33899861
7125      33899861
7126      33899861
7127      33899861
7128      33899861
7129      33899861
7130      33899861
7131      33899861
7132      33899861
7133      33899861
7134      33899861
7135      33899861
7136      33899861
7137      33899861
7138      33899861
7139      33899861
7140      33899861
7141      33899861
7142      33899861
7143      33899861
7144      33899861
7145      33899861
7146      33899861
7147      33899861
7148      33899861
7149      33899861
7150      33899861
7151      33899861
7152      33899861
7153      33899861
7154      33899861
7155      33899861
7156      33899861
7157      33899861
7158      33899861
7159      33899861
7160      33899861
7161      33899861
7162      33899861
7163      33899861
7164      33899861
7165      33899861
7166      33899861
7167      33899861
7168      33899861
7169      33899861
7170      33899861
7171      33899861
7172      33899861
7173      33899861
7174      33899861
7175      33899861
7176      33899861
7177      33899861
7178      33899861
7179      33899861
7180      33899861
7181      33899861
7182      33899861
7183      33899861
7184      33899861
7185      33899861
7186      33899861
7187      33899861
7188      33899861
7189      33899861
7190      33899861
7191      33899861
7192      33899861
7193      33899861
7194      33899861
7195      33899861
7196      33899861
7197      33899861
7198      33899861
7199      33899861
7200      33899861
7201      33899861
7202      33899861
7203      33899861
7204      33899861
7205      33899861
7206      33899861
7207      33899861
7208      33899861
7209      33899861
7210      33899861
7211      33899861
7212      33899861
7213      33899861
7214      33899861
7215      33899861
7216      33899861
7217      33899861
7218      33899861
7219      33899861
7220      33899861
7221      33899861
7222      33899861
7223      33899861
7224      33899861
7225      33899861
7226      33899861
7227      33899861
7228      33899861
7229      33899861
7230      33899861
7231      33899861
7232      33899861
7233      33899861
7234      33899861
7235      33899861
7236      33899861
7237      33899861
7238      33899861
7239      33899861
7240      33899861
7241      33899861
7242      33899861
7243      33899861
7244      33899861
7245      33899861
7246      33899861
7247      33899861
7248      33899861
7249      33899861
7250      33899861
7251      33899861
7252      33899861
7253      33899861
7254      33899861
7255      33899861
7256      33899861
7257      33899861
7258      33899861
7259      33899861
7260      33899861
7261      33899861
7262      33899861
7263      33899861
7264      33899861
7265      33899861
7266      33899861
7267      33899861
7268      33899861
7269      33899861
7270      33899861
7271      33899861
7272      33899861
7273      33899861
7274      33899861
7275      33899861
7276      33899861
7277      33899861
7278      33899861
7279      33899861
7280      33899861
7281      33899861
7282      33899861
7283      33899861
7284      33899861
7285      33899861
7286      33899861
7287      33899861
7288      33899861
7289      33899861
7290      33899861
7291      33899861
7292      33899861
7293      33899861
7294      33899861
7295      33899861
7296      33899861
7297      33899861
7298      33899861
7299      33899861
7300      33899861
7301      33899861
7302      33899861
7303      33899861
7304      33899861
7305      33899861
7306      33899861
7307      33899861
7308      33899861
7309      33899861
7310      33899861
7311      33899861
7312      33899861
7313      33899861
7314      33899861
7315      33899861
7316      33899861
7317      33899861
7318      33899861
7319      33899861
7320      33899861
7321      33899861
7322       8103706
7323      43856342
7324      45763758
7325      45919483
7326      45919483
7327      45919483
7328      26573284
7329      26573284
7330      26573284
7331      26573284
7332      26573284
7333      26573284
7334      26573284
7335      26573284
7336      26471698
7337      26471698
7338      26471698
7339      26471698
7340      26471698
7341      26471698
7342      26471698
7343      26471698
7344      26471698
7345      26471698
7346      26471698
7347      26471698
7348      26471698
7349      26471698
7350      14758352
7351      32021782
7352      32021782
7353      32044633
7354      32044633
7355      32044633
7356      32044633
7357      32044633
7358      32044633
7359      32044633
7360      32044633
7361      32044633
7362      32044633
7363      32044633
7364      32044633
7365      32044633
7366      32044633
7367      32044633
7368      32044633
7369      32044633
7370      32044633
7371      32044633
7372      32044633
7373      32044633
7374      32044633
7375      32044633
7376      32044633
7377      38747460
7378      38747460
7379      38747460
7380      38747460
7381      38747460
7382      38747460
7383      38747460
7384      38747460
7385      38747460
7386      38747460
7387      38747460
7388      38747460
7389      38747460
7390      38747460
7391      38747460
7392       6553955
7393       6553955
7394       6553955
7395      33265675
7396      33265675
7397      33265675
7398      33265675
7399      33265675
7400      33265675
7401      33265675
7402      33265675
7403      33265675
7404      33265675
7405      33265675
7406      33265675
7407      33265675
7408      33265675
7409      33265675
7410      33265675
7411      33265675
7412      33265675
7413      33265675
7414      33265675
7415      33265675
7416      33265675
7417      33265675
7418      33265675
7419      33265675
7420      33265675
7421      33265675
7422      33265675
7423      33265675
7424      33265675
7425      33265675
7426      33265675
7427      33265675
7428      33265675
7429      33265675
7430      33265675
7431      33265675
7432      33265675
7433      33265675
7434      33265675
7435      33265675
7436      33265675
7437      33265675
7438      33265675
7439      33265675
7440      33265675
7441      33265675
7442      33265675
7443      33265675
7444      33265675
7445      33265675
7446      33265675
7447      33265675
7448      33265675
7449      33265675
7450      33265675
7451      33265675
7452      33265675
7453      33265675
7454      33265675
7455      33265675
7456      33265675
7457      33265675
7458      33265675
7459      33265675
7460      33265675
7461      33265675
7462      33265675
7463      33265675
7464      33265675
7465      33265675
7466      33265675
7467      33265675
7468      44160076
7469      44160076
7470      44160076
7471      44160076
7472      44160076
7473       6468040
7474       6468040
7475       6468040
7476       6468040
7477       6468040
7478       6468040
7479       6468040
7480       6468040
7481       6468040
7482       6468040
7483       6468040
7484       6468040
7485       6468040
7486       6468040
7487       6468040
7488       6468040
7489       6468040
7490       6468040
7491       6468040
7492       6468040
7493       6468040
7494       6468040
7495       6468040
7496       6468040
7497       6468040
7498       6468040
7499       6468040
7500       6468040
7501       6468040
7502       6468040
7503       6468040
7504       6468040
7505       6468040
7506       6468040
7507       6468040
7508       6468040
7509       6468040
7510       6468040
7511       6468040
7512       6468040
7513       6468040
7514       6468040
7515       6468040
7516       6468040
7517       6468040
7518       6468040
7519       6468040
7520       6468040
7521       6468040
7522       6468040
7523       6468040
7524       6468040
7525       6468040
7526       6468040
7527       6468040
7528       6468040
7529       6468040
7530       6468040
7531       6468040
7532       6468040
7533       6468040
7534       6468040
7535       6468040
7536       6468040
7537       6468040
7538       6468040
7539       6468040
7540       6468040
7541       6468040
7542       6468040
7543       6468040
7544       6468040
7545       6468040
7546       6468040
7547       6468040
7548       6468040
7549       6468040
7550       6468040
7551       6468040
7552       6468040
7553       6468040
7554       6468040
7555       6468040
7556       6468040
7557       6468040
7558       6468040
7559       6468040
7560       6468040
7561       6468040
7562       6468040
7563       6468040
7564       6468040
7565       6468040
7566       6468040
7567       6468040
7568       6468040
7569       6468040
7570       6468040
7571       6468040
7572       6468040
7573       6468040
7574       6468040
7575       6468040
7576       6468040
7577       6468040
7578       6468040
7579       6468040
7580       6468040
7581       6468040
7582       6468040
7583       6468040
7584       6468040
7585       6468040
7586       6468040
7587       6468040
7588       6468040
7589       6468040
7590       6468040
7591       6468040
7592       6468040
7593      33071104
7594      33071104
7595      36090414
7596      36090414
7597      42775509
7598      42775509
7599      42775509
7600      42775509
7601      42775509
7602      42775509
7603      42775509
7604      42775509
7605      42775509
7606      42775509
7607      42775509
7608      42775509
7609      42775509
7610      42775509
7611      42775509
7612      42775509
7613      42775509
7614      42775509
7615      42775509
7616      42775509
7617      42775509
7618      42775509
7619      42775509
7620      42775509
7621      42775509
7622      42775509
7623      42775509
7624      42775509
7625      42775509
7626      42775509
7627      42775509
7628      42775509
7629      42775509
7630      42775509
7631      42775509
7632      42775509
7633      42775509
7634      42775509
7635      42775509
7636      42775509
7637      42775509
7638      42775509
7639      42775509
7640      42775509
7641      42775509
7642      42775509
7643      42775509
7644      42775509
7645      42775509
7646      42775509
7647      42775509
7648      42775509
7649      42775509
7650      42775509
7651      42775509
7652      42775509
7653      42775509
7654      42775509
7655      42775509
7656      42775509
7657      42775509
7658      42775509
7659      42775509
7660      42775509
7661      42775509
7662      42775509
7663      42775509
7664      42775509
7665      42775509
7666      42775509
7667      42775509
7668      42775509
7669      42775509
7670      42775509
7671      42775509
7672      42775509
7673      42775509
7674      42775509
7675      42775509
7676      42775509
7677      42775509
7678      42775509
7679      42775509
7680      42775509
7681      42775509
7682      42775509
7683      42775509
7684      42775509
7685      42775509
7686      42775509
7687      42775509
7688      42775509
7689      42775509
7690      42775509
7691      42775509
7692      42775509
7693      42775509
7694      42775509
7695      42775509
7696      42775509
7697      42775509
7698      42775509
7699      42775509
7700      42775509
7701      42775509
7702      42775509
7703      42775509
7704      42775509
7705      42775509
7706      42775509
7707      42775509
7708      42775509
7709      42775509
7710      42775509
7711      42775509
7712      42775509
7713      42775509
7714      42775509
7715      42775509
7716      42775509
7717      42775509
7718      42775509
7719      42775509
7720      42775509
7721      42775509
7722      42775509
7723      42775509
7724      42775509
7725      42775509
7726      42775509
7727      42775509
7728      42775509
7729      42775509
7730      42775509
7731      42775509
7732      42775509
7733      42775509
7734      42775509
7735      42775509
7736      42775509
7737      42775509
7738      42775509
7739      42775509
7740      42775509
7741      42775509
7742      42775509
7743      42775509
7744      42775509
7745      42775509
7746      42775509
7747      42775509
7748      42775509
7749      42775509
7750      42775509
7751      42775509
7752      42775509
7753      42775509
7754      42775509
7755      42775509
7756      42775509
7757      42775509
7758      42775509
7759      42775509
7760      42775509
7761      42775509
7762      42775509
7763      42775509
7764      42775509
7765      42775509
7766      42775509
7767      42775509
7768      42775509
7769      42775509
7770      42775509
7771      42775509
7772      42775509
7773      42775509
7774      42775509
7775      42775509
7776      42775509
7777      42775509
7778      42775509
7779      42775509
7780      42775509
7781      42775509
7782      42775509
7783      42775509
7784      42775509
7785      42775509
7786      42775509
7787      42775509
7788      42775509
7789      42775509
7790      42775509
7791      42775509
7792      42775509
7793      42775509
7794      42775509
7795      42775509
7796      42775509
7797      42775509
7798      42775509
7799      42775509
7800      42775509
7801      42775509
7802      42775509
7803      42775509
7804      42775509
7805      42775509
7806      42775509
7807      42775509
7808      42775509
7809      42775509
7810      42775509
7811      42775509
7812      42775509
7813      42775509
7814      42775509
7815      42775509
7816      42775509
7817      42775509
7818      42775509
7819      42775509
7820      42775509
7821      42775509
7822      42775509
7823      42775509
7824      42775509
7825      42775509
7826      42775509
7827      42775509
7828      42775509
7829      42775509
7830      42775509
7831      42775509
7832      42775509
7833      42775509
7834      42775509
7835      42775509
7836      42775509
7837      42775509
7838      42775509
7839      42775509
7840      42775509
7841      42775509
7842      42775509
7843      42775509
7844      42775509
7845      42775509
7846      42775509
7847      42775509
7848      42775509
7849      42775509
7850      42775509
7851      42775509
7852      42775509
7853      42775509
7854      42775509
7855      42775509
7856      42775509
7857      42775509
7858      42775509
7859      42775509
7860      42775509
7861      42775509
7862      42775509
7863      42775509
7864      42775509
7865      42775509
7866      42775509
7867      42775509
7868      42775509
7869      42775509
7870      42775509
7871      42775509
7872      42775509
7873      42775509
7874      42775509
7875      42775509
7876      42775509
7877      42775509
7878      42775509
7879      42775509
7880      42775509
7881      42775509
7882      42775509
7883      42775509
7884      42775509
7885      42775509
7886      42775509
7887      42775509
7888      42775509
7889      42775509
7890      42775509
7891      42775509
7892      42775509
7893      42775509
7894      42775509
7895      42775509
7896      42775509
7897      42775509
7898      42775509
7899      42775509
7900      42775509
7901      42775509
7902      42775509
7903      42775509
7904      42775509
7905      42775509
7906      42775509
7907      42775509
7908      42775509
7909      42775509
7910      42775509
7911      42775509
7912      42775509
7913      42775509
7914      42775509
7915      42775509
7916      42775509
7917      42775509
7918      42775509
7919      42775509
7920      42775509
7921      42775509
7922      42775509
7923      42775509
7924      42775509
7925      42775509
7926      42775509
7927      42775509
7928      42775509
7929      42775509
7930      42775509
7931      42775509
7932      42775509
7933      42775509
7934      42775509
7935      42775509
7936      42775509
7937      42775509
7938      42775509
7939      42775509
7940      42775509
7941      42775509
7942      42775509
7943      42775509
7944      42775509
7945      42775509
7946      42775509
7947      42775509
7948      42775509
7949      42775509
7950      42775509
7951      42775509
7952      42775509
7953      42775509
7954      42775509
7955      42775509
7956      42775509
7957      42775509
7958      42775509
7959      42775509
7960      42775509
7961      42775509
7962      42775509
7963      42775509
7964      42775509
7965      42775509
7966      42775509
7967      42775509
7968      42775509
7969      42775509
7970      42775509
7971      42775509
7972      42775509
7973      42775509
7974      42775509
7975      42775509
7976      42775509
7977      42775509
7978      42775509
7979      42775509
7980      42775509
7981      42775509
7982      42775509
7983      42775509
7984      42775509
7985      42775509
7986      42775509
7987      42775509
7988      42775509
7989      42775509
7990      42775509
7991      42775509
7992      42775509
7993      42775509
7994      42775509
7995      42775509
7996      42775509
7997      42775509
7998      42775509
7999      42775509
8000      42775509
8001      42775509
8002      42775509
8003      42775509
8004      42775509
8005      42775509
8006      42775509
8007      42775509
8008      42775509
8009      42775509
8010      42775509
8011      42775509
8012      42775509
8013      42775509
8014      42775509
8015      42775509
8016      42775509
8017      42775509
8018      42775509
8019      42496354
8020      42496354
8021      42496354
8022      42496354
8023      42496354
8024      42496354
8025      42496354
8026      42496354
8027      42496354
8028      42496354
8029      42496354
8030      42496354
8031      42496354
8032      42496354
8033      42496354
8034      42496354
8035      42496354
8036      42496354
8037      42496354
8038      42496354
8039      42496354
8040      42496354
8041      42496354
8042      42496354
8043      42496354
8044      35472432
8045      35725100
8046      35732942
8047      35732942
8048      36004667
8049      36004667
8050      36004667
8051      36004667
8052      36004667
8053      36004667
8054      36004667
8055      36004667
8056      36004667
8057      36004667
8058      36004667
8059      36004667
8060      36004667
8061      36004667
8062      36004667
8063      36004667
8064      36004667
8065      36004667
8066      36004667
8067      36004667
8068      36004667
8069      36004667
8070      36004667
8071      36004667
8072      36004667
8073      36004667
8074      36004667
8075      36004667
8076      36004667
8077      36004667
8078      36004667
8079      36004667
8080      36004667
8081      36004667
8082      36004667
8083      36004667
8084      36004667
8085      36004667
8086      36004667
8087      36004667
8088      36004667
8089      36004667
8090      36004667
8091      36004667
8092      36004667
8093      36004667
8094      36004667
8095      36004667
8096      36004667
8097      36004667
8098      36004667
8099      36004667
8100      36004667
8101      36004667
8102      36004667
8103      36004667
8104      36004667
8105      36004667
8106      36004667
8107      36004667
8108      36004667
8109      36004667
8110      36004667
8111      36004667
8112      36004667
8113      36004667
8114      36004667
8115      36004667
8116      36004667
8117      36004667
8118      36004667
8119      36004667
8120      36004667
8121      36004667
8122      36004667
8123      36004667
8124      36004667
8125      36004667
8126      36004667
8127      36004667
8128      36004667
8129      36004667
8130      36004667
8131      36131376
8132      17810845
8133      17810845
8134      17810845
8135      17810845
8136      43812567
8137      43812567
8138      43812567
8139      43812567
8140      43812567
8141      43812567
8142      43812567
8143      43812567
8144      26460214
8145      32393960
8146      43762307
8147      43762307
8148      43762307
8149      43762307
8150      43762307
8151      43762307
8152      43762307
8153      43762307
8154      43762307
8155      43762307
8156      43762307
8157      43762307
8158      43762307
8159      43762307
8160      43762307
8161      43762307
8162      43762307
8163      43762307
8164      43762307
8165      43762307
8166      43762307
8167      43762307
8168      43762307
8169      43762307
8170      43762307
8171      43762307
8172      43762307
8173      43762307
8174      43762307
8175      43762307
8176      43762307
8177      43762307
8178      43762307
8179      43762307
8180      43762307
8181      43762307
8182      43762307
8183      43762307
8184      43762307
8185      43762307
8186      43762307
8187      43762307
8188      43762307
8189      43762307
8190      43762307
8191      43762307
8192      43762307
8193      43762307
8194      43762307
8195      43762307
8196      43762307
8197      43762307
8198      43762307
8199      43762307
8200      43762307
8201      43762307
8202      43762307
8203      43762307
8204      43762307
8205      43762307
8206      43762307
8207      43762307
8208      43762307
8209      43762307
8210      43762307
8211      43762307
8212      43762307
8213      43762307
8214      43762307
8215      43762307
8216      43762307
8217      43762307
8218      43762307
8219      43762307
8220      43762307
8221      43762307
8222      43762307
8223      43762307
8224      43762307
8225      43762307
8226      43762307
8227      43762307
8228      43762307
8229      43762307
8230      43762307
8231      43762307
8232      43762307
8233      43762307
8234      43762307
8235      43762307
8236      43762307
8237      43762307
8238      43762307
8239      43762307
8240      43762307
8241      43762307
8242      43762307
8243      43762307
8244      43762307
8245      43762307
8246      43762307
8247      43762307
8248      43762307
8249      43762307
8250      43762307
8251      43762307
8252      43762307
8253      43762307
8254      43762307
8255      43762307
8256      43762307
8257      43762307
8258      43762307
8259      43762307
8260      43762307
8261      43762307
8262      43762307
8263      43762307
8264      43762307
8265      43762307
8266      43762307
8267      43762307
8268      29373709
8269      29373709
8270      29373709
8271      29373709
8272      29373709
8273      29373709
8274      29373709
8275      29373709
8276       6716361
8277       6716361
8278       6716361
8279       6716361
8280       6716361
8281       6716361
8282       6716361
8283       6716361
8284       6679962
8285       6679962
8286       6679962
8287       6679962
8288       6679962
8289       6679962
8290       6679962
8291       6679962
8292       6679962
8293      44202696
8294      44202696
8295      37073170
8296      37073170
8297      37073170
8298      37073170
8299      37073170
8300      37073170
8301      37073170
8302      37073170
8303      37073170
8304      37073170
8305      37073170
8306      37073170
8307      37073170
8308      37073170
8309      37073170
8310      37073170
8311      37073170
8312      37073170
8313      37073170
8314      37073170
8315      37073170
8316      37073170
8317      37073170
8318      37073170
8319      37073170
8320      37073170
8321      37073170
8322      37073170
8323      37073170
8324      37073170
8325      37073170
8326      37073170
8327      37073170
8328       6091407
8329       6091407
8330       6091407
8331       6091407
8332       6091407
8333       6091407
8334       6091407
8335      23103074
8336      23103074
8337      23103074
8338      22884000
8339      22884000
8340      22884000
8341      21686329
8342      21686329
8343      21686329
8344      21686329
8345      21686329
8346      21615437
8347      21615437
8348      36079389
8349      36079389
8350      36079389
8351      36079389
8352      36079389
8353      36079389
8354      36079389
8355      36079389
8356      36079389
8357      36079389
8358      36079389
8359      36079389
8360      36079389
8361      36079389
8362      36079389
8363      36079389
8364      36079389
8365      36079389
8366      36079389
8367      36079389
8368      36079389
8369      36079389
8370      36079389
8371      36079389
8372      36079389
8373      36079389
8374      36079389
8375      36079389
8376      36079389
8377      36079389
8378      36079389
8379      36079389
8380      36079389
8381      36079389
8382      36079389
8383      36079389
8384      36079389
8385      36079389
8386      36079389
8387      36079389
8388      36079389
8389      36079389
8390      36079389
8391      36079389
8392      36079389
8393      36079389
8394      36079389
8395      36079389
8396      36079389
8397      36079389
8398      36079389
8399      36079389
8400      36079389
8401      36079389
8402      36079389
8403      36079389
8404      36079389
8405      36079389
8406      36079389
8407      36079389
8408      36079389
8409      36079389
8410      36079389
8411      36079389
8412      36079389
8413      36079389
8414      36079389
8415      36079389
8416      36079389
8417      36079389
8418      36079389
8419      36079389
8420      36079389
8421      36079389
8422      36079389
8423      36079389
8424      36079389
8425      36079389
8426      36079389
8427      36079389
8428      36079389
8429      36079389
8430      36079389
8431      36079389
8432      36079389
8433      36079389
8434      36079389
8435      36079389
8436      36079389
8437      36079389
8438      36079389
8439      36079389
8440      36079389
8441      36079389
8442      36079389
8443      36079389
8444      36079389
8445      36079389
8446      36079389
8447      36079389
8448      36079389
8449      36079389
8450      36079389
8451      36079389
8452      36079389
8453      36079389
8454      36079389
8455      36079389
8456      36079389
8457      36079389
8458      36079389
8459      36079389
8460      36079389
8461      36079389
8462      36079389
8463      36079389
8464      36079389
8465      36079389
8466      36079389
8467      36079389
8468      20598163
8469      20430762
8470      20426206
8471      19760128
8472      36386148
8473      36386148
8474      36386148
8475      36386148
8476      36386148
8477      36386148
8478      36386148
8479      36386148
8480      36386148
8481      36386148
8482      36386148
8483      36386148
8484      36386148
8485      36386148
8486      36386148
8487      36386148
8488      36386148
8489      36386148
8490      36386148
8491      36386148
8492      36386148
8493      36386148
8494      36386148
8495      36386148
8496      36386148
8497      36386148
8498      36386148
8499      36386148
8500      36386148
8501      36386148
8502      36386148
8503      36386148
8504      36386148
8505      36386148
8506      36386148
8507      36386148
8508      36386148
8509      36386148
8510      36386148
8511      36386148
8512      36386148
8513      36386148
8514      36386148
8515      36386148
8516      36386148
8517      36386148
8518      36386148
8519      36386148
8520      36386148
8521      36386148
8522      36386148
8523      36386148
8524      36386148
8525      36386148
8526      36386148
8527      36386148
8528      36386148
8529      36386148
8530      36386148
8531      36386148
8532      36386148
8533      36386148
8534      36386148
8535      36386148
8536      36386148
8537      36386148
8538      36386148
8539      36386148
8540      36386148
8541      36386148
8542      36386148
8543      36386148
8544      36386148
8545      36386148
8546      36386148
8547      36386148
8548      36386148
8549      36386148
8550      36386148
8551      36386148
8552      36386148
8553      36386148
8554      36386148
8555      36362040
8556      36362040
8557      36419015
8558      36419015
8559      36419015
8560      36419015
8561      36419015
8562      36419015
8563      36419015
8564      36419015
8565      36419015
8566      36419015
8567      36419015
8568      36419015
8569      36419015
8570      36419015
8571      36419015
8572      36419015
8573      36419015
8574      36419015
8575      36419015
8576      36419015
8577      36419015
8578      36419015
8579      36419015
8580      36419015
8581      35887807
8582      36170180
8583      43805293
8584      43805293
8585      43805293
8586      43805293
8587      43805293
8588      43805293
8589      43805293
8590      43805293
8591      43805293
8592      43805293
8593      43805293
8594      43805293
8595      43805293
8596      43805293
8597      43805293
8598      43805293
8599      43805293
8600      43805293
8601      43805293
8602      43805293
8603      43805293
8604      43805293
8605      43805293
8606      43805293
8607      43805293
8608      43805293
8609      43805293
8610      43805293
8611      43805293
8612      43805293
8613      43805293
8614      43805293
8615      43805293
8616      43805293
8617      43805293
8618      43805293
8619      43805293
8620      43805293
8621      43805293
8622      43805293
8623      43805293
8624      43805293
8625      43805293
8626      43805293
8627      43805293
8628      43805293
8629      43805293
8630      43805293
8631      43805293
8632      43805293
8633      43805293
8634      22136083
8635      18485879
8636      18485879
8637      18485879
8638      18485879
8639      18485879
8640      18485879
8641      18485879
8642      18485879
8643      18485879
8644      18485879
8645      18485879
8646      18485879
8647      18485879
8648      18485879
8649      18485879
8650      18485879
8651      18485879
8652      18485879
8653      18485879
8654      18485879
8655      18485879
8656      18485879
8657      18485879
8658      18485879
8659      18485879
8660      18485879
8661      18485879
8662      18485879
8663      18485879
8664      18485879
8665      18485879
8666      18485879
8667      18485879
8668      18485879
8669      18485879
8670      18485879
8671      18485879
8672      17885608
8673      17885608
8674      17885608
8675      32728048
8676      32728048
8677      32728048
8678      32728048
8679      32728048
8680      32728048
8681      32728048
8682      32728048
8683      32728048
8684      32728048
8685      32728048
8686      32728048
8687      32728048
8688      32728048
8689      32728048
8690      32728048
8691      32728048
8692      32728048
8693      32728048
8694      32728048
8695      32728048
8696      32728048
8697      32728048
8698      32728048
8699      32728048
8700      32728048
8701      32728048
8702      32728048
8703      32728048
8704      32728048
8705      32728048
8706      32728048
8707      32728048
8708      32728048
8709      32728048
8710      32728048
8711      32728048
8712      32728048
8713      32728048
8714      32728048
8715      32728048
8716      32728048
8717      32728048
8718      32728048
8719      32728048
8720      32728048
8721      32728048
8722      32728048
8723      32728048
8724      32728048
8725      32728048
8726      32728048
8727      32728048
8728      32728048
8729      32728048
8730      32728048
8731      32728048
8732      32728048
8733      32728048
8734      32728048
8735      32728048
8736      32728048
8737      32728048
8738      32728048
8739      32728048
8740      32728048
8741      32728048
8742      32728048
8743      32728048
8744      32728048
8745      32728048
8746      32728048
8747      32728048
8748      32728048
8749      32728048
8750      32728048
8751      32728048
8752      32728048
8753      32728048
8754      32728048
8755      32728048
8756      32728048
8757      32728048
8758      32728048
8759      32728048
8760      32728048
8761      32728048
8762      32728048
8763      32728048
8764      32728048
8765      32728048
8766      32728048
8767      32728048
8768      32728048
8769      32728048
8770      32728048
8771      32728048
8772      32728048
8773      32728048
8774      32728048
8775      32728048
8776      32728048
8777      32728048
8778      32728048
8779      32728048
8780      32728048
8781      32728048
8782      32728048
8783      32728048
8784      32728048
8785      32728048
8786      32728048
8787      32728048
8788      32728048
8789      32728048
8790      32728048
8791      32728048
8792      32728048
8793      32728048
8794      32728048
8795      32728048
8796      32728048
8797      32728048
8798      32728048
8799      32728048
8800      32728048
8801      32728048
8802      32728048
8803      32728048
8804      32728048
8805      32728048
8806      32728048
8807      32728048
8808      32728048
8809      32728048
8810      32728048
8811      32728048
8812      32728048
8813      32728048
8814      32728048
8815      32728048
8816      32728048
8817      32728048
8818      32728048
8819      32728048
8820      32728048
8821      32728048
8822      32728048
8823      32728048
8824      32728048
8825      32728048
8826      32728048
8827      32728048
8828      32728048
8829      32728048
8830      32728048
8831      32728048
8832      32728048
8833      32728048
8834      32728048
8835      32728048
8836      32728048
8837      32728048
8838      32728048
8839      32728048
8840      32728048
8841      32728048
8842      32728048
8843      32728048
8844      32728048
8845      32728048
8846      32728048
8847      32728048
8848      32728048
8849      32728048
8850      32728048
8851      32728048
8852      32728048
8853      32728048
8854      32728048
8855      32728048
8856      32728048
8857      32728048
8858      32728048
8859      32728048
8860      32728048
8861      32728048
8862      32728048
8863      32728048
8864      32728048
8865      32728048
8866      32728048
8867      32728048
8868      39321559
8869      39321559
8870      39321559
8871      39321559
8872      39321559
8873      39321559
8874      39321559
8875      39321559
8876      39321559
8877      39321559
8878      39321559
8879      39321559
8880      39321559
8881      39321559
8882      39321559
8883      39321559
8884      39321559
8885      39321559
8886      39321559
8887      39321559
8888      39321559
8889      39321559
8890      39321559
8891      39321559
8892      39321559
8893      39321559
8894      39321559
8895      39321559
8896      39321559
8897      39321559
8898      39321559
8899      39321559
8900      39321559
8901      39321559
8902      39321559
8903      39321559
8904      39321559
8905      39321559
8906      39321559
8907      39321559
8908      39321559
8909      39321559
8910      39321559
8911      39321559
8912      39321559
8913      39321559
8914      39321559
8915      39321559
8916      39321559
8917      39321559
8918      39321559
8919      39321559
8920      39321559
8921      39321559
8922      39321559
8923      39321559
8924      39321559
8925      39321559
8926      39321559
8927      39321559
8928      39321559
8929      39321559
8930      39321559
8931      39321559
8932      39321559
8933      39321559
8934      39321559
8935      39321559
8936      39321559
8937      39321559
8938      39321559
8939      39321559
8940      39321559
8941      39321559
8942      39321559
8943      39321559
8944      39321559
8945      39321559
8946      39321559
8947      39321559
8948      39321559
8949      39321559
8950      39321559
8951      39321559
8952      39321559
8953      39321559
8954      39321559
8955      39321559
8956      39321559
8957      39321559
8958      39321559
8959      39321559
8960      39321559
8961      39321559
8962      39321559
8963      39321559
8964      39321559
8965      39321559
8966      39321559
8967      39321559
8968      39321559
8969      39321559
8970      39321559
8971      39321559
8972      39321559
8973      39321559
8974      39321559
8975      39321559
8976      39321559
8977      39321559
8978      39321559
8979      39321559
8980      39321559
8981      39321559
8982      39321559
8983      39321559
8984      39321559
8985      39321559
8986      39321559
8987      39321559
8988      39321559
8989      39321559
8990      39321559
8991      39321559
8992      39321559
8993      39321559
8994      39321559
8995      39321559
8996      39321559
8997      39321559
8998      39321559
8999      39321559
9000      39321559
9001      39321559
9002      39321559
9003      39321559
9004      39321559
9005      39321559
9006      39321559
9007      39321559
9008      39321559
9009      39321559
9010      39321559
9011      39321559
9012      39321559
9013      39321559
9014      39321559
9015      39321559
9016      39321559
9017      39321559
9018      39321559
9019      39321559
9020      39321559
9021      39321559
9022      39321559
9023      39321559
9024      39321559
9025      39321559
9026      39321559
9027      39321559
9028      39321559
9029      39321559
9030      39321559
9031      39321559
9032      39321559
9033      39321559
9034      39321559
9035      39321559
9036      39321559
9037      39321559
9038      39321559
9039      39321559
9040      39321559
9041      39321559
9042      39321559
9043      39321559
9044      39321559
9045      39321559
9046      39321559
9047      39321559
9048      39321559
9049      39321559
9050      39321559
9051      39321559
9052      39321559
9053      39321559
9054      39321559
9055      39321559
9056      39321559
9057      39321559
9058      39321559
9059      39321559
9060      39321559
9061      39321559
9062      39321559
9063      39321559
9064      39321559
9065      39321559
9066      39321559
9067      39321559
9068      39321559
9069      39321559
9070      39321559
9071      39321559
9072      39321559
9073      39321559
9074      39321559
9075      39321559
9076      39321559
9077      39321559
9078      39321559
9079      39321559
9080      39321559
9081      39321559
9082      39321559
9083      39321559
9084      39321559
9085      39321559
9086      39321559
9087      39321559
9088      39321559
9089      39321559
9090      39321559
9091      39321559
9092      39321559
9093      39321559
9094      39321559
9095      39321559
9096      39321559
9097      39321559
9098      39321559
9099      39321559
9100      39321559
9101      39321559
9102      39321559
9103      39321559
9104      39321559
9105      39321559
9106      39321559
9107      39321559
9108      39321559
9109      39321559
9110      39321559
9111      39321559
9112      39321559
9113      39321559
9114      39321559
9115      39321559
9116      39321559
9117      39321559
9118      39321559
9119      39321559
9120      39321559
9121      39321559
9122      39321559
9123      39321559
9124      39321559
9125      39321559
9126      39321559
9127      39321559
9128      39314962
9129      38956467
9130      38956467
9131      38956467
9132      38956467
9133      38956467
9134      38956467
9135      38956467
9136      38956467
9137      38956467
9138      38956467
9139      38956467
9140      38956467
9141      38956467
9142      38956467
9143      38956467
9144      38956467
9145      38956467
9146      38956467
9147      38956467
9148      38956467
9149      38956467
9150      38956467
9151      38956467
9152      38956467
9153      38956467
9154      38956467
9155      38956467
9156      38848644
9157      38848644
9158      14658821
9159      14658821
9160      14658821
9161      14658821
9162      14658821
9163      14658821
9164      14658821
9165      14658821
9166      14658821
9167      14658821
9168      14658821
9169      14658821
9170      14658821
9171      14658821
9172      14658821
9173      14658821
9174      14658821
9175      14658821
9176      14658821
9177      33482195
9178      44262216
9179      44262216
9180      44262216
9181      44262216
9182      44262216
9183      44262216
9184      44262216
9185      44262216
9186      44262216
9187      44262216
9188      44262216
9189      44262216
9190      44262216
9191      44262216
9192      44262216
9193      44262216
9194      44262216
9195      44262216
9196      44262216
9197      44262216
9198      44262216
9199      44262216
9200      44262216
9201      44262216
9202      44262216
9203      44262216
9204      44262216
9205      44262216
9206      44262216
9207      44262216
9208      44262216
9209      44262216
9210      44262216
9211      44262216
9212      44262216
9213      44262216
9214      44262216
9215      32791504
9216       5165472
9217       5165472
9218       5165472
9219       5165472
9220       5165472
9221       5165472
9222      15496124
9223      15496124
9224      15490767
9225      45513720
9226      45513720
9227      45513720
9228      45513720
9229      45513720
9230      45513720
9231      45513720
9232      45513720
9233      45513720
9234      45513720
9235      45513720
9236      45513720
9237      45513720
9238      45513720
9239      45513720
9240      45513720
9241      45513720
9242      45513720
9243      45513720
9244      45513720
9245      45513720
9246      45513720
9247      45513720
9248      45513720
9249      45513720
9250      45513720
9251      45513720
9252      45513720
9253      45513720
9254      45513720
9255      45513720
9256      45513720
9257      45513720
9258      45513720
9259      45513720
9260      45513720
9261      45513720
9262      45513720
9263      45513720
9264      45513720
9265      45513720
9266      45513720
9267      45513720
9268      45513720
9269      45513720
9270      45513720
9271      45513720
9272      45513720
9273      45513720
9274      45513720
9275      45513720
9276      45513720
9277      45513720
9278      45513720
9279      45513720
9280      45513720
9281      45513720
9282      45513720
9283      45513720
9284      45513720
9285      45513720
9286      45513720
9287      45513720
9288      45513720
9289      45513720
9290      45513720
9291      45513720
9292      45513720
9293      45513720
9294      45513720
9295      45513720
9296      45513720
9297      45513720
9298      45513720
9299      45513720
9300      45513720
9301      45513720
9302      45513720
9303      45513720
9304      45513720
9305      45513720
9306      45513720
9307      45513720
9308      45513720
9309      45513720
9310      45513720
9311      45513720
9312      45513720
9313      45513720
9314      45513720
9315      45513720
9316      45513720
9317      45513720
9318      45513720
9319      45513720
9320      45513720
9321      45513720
9322      45513720
9323      45513720
9324      45513720
9325      45513720
9326      45513720
9327      45513720
9328      45513720
9329      45513720
9330      45513720
9331      45513720
9332      45513720
9333      45513720
9334      45513720
9335      45513720
9336      45513720
9337      45513720
9338      45513720
9339      45513720
9340      45513720
9341      45513720
9342      45513720
9343      45513720
9344      45513720
9345      45513720
9346      45513720
9347      45513720
9348      45513720
9349      45513720
9350      45513720
9351      45513720
9352      45513720
9353      45513720
9354      45513720
9355      45513720
9356      45513720
9357      45513720
9358      45513720
9359      45513720
9360      45513720
9361      45513720
9362      45513720
9363      45513720
9364      45513720
9365      45513720
9366      45513720
9367      45513720
9368      45513720
9369      45513720
9370      45513720
9371      45513720
9372      45513720
9373      45513720
9374      45513720
9375      45513720
9376      45513720
9377      45513720
9378      45513720
9379      45513720
9380      45513720
9381      45513720
9382      45513720
9383      45513720
9384      45513720
9385      45513720
9386      45513720
9387      45513720
9388      45513720
9389      45513720
9390      45513720
9391      38977774
9392      38977774
9393      38977774
9394      32280988
9395      32280988
9396      32280988
9397      43551600
9398      13558461
9399      13558461
9400      13558461
9401      13558461
9402      13477263
9403      13350648
9404      13350648
9405      45287898
9406      45287898
9407      45287898
9408      45287898
9409      45287898
9410      45287898
9411      45287898
9412      45287898
9413      45287898
9414      45287898
9415      45287898
9416      45287898
9417      45287898
9418      45287898
9419      45287898
9420      45287898
9421      45287898
9422      45287898
9423      45287898
9424      45287898
9425      45287898
9426      45287898
9427      45287898
9428      45287898
9429      45287898
9430      45287898
9431      45287898
9432      45287898
9433      45287898
9434      45287898
9435      45287898
9436      45287898
9437      45287898
9438      45287898
9439      45287898
9440      45287898
9441      45287898
9442      45287898
9443      45287898
9444      45287898
9445      45287898
9446      45287898
9447      45287898
9448      45287898
9449      45287898
9450      45287898
9451      45287898
9452      45287898
9453      45287898
9454      45287898
9455      45287898
9456      45287898
9457      45287898
9458      45287898
9459      45287898
9460      45287898
9461      45287898
9462      45287898
9463      45287898
9464      45287898
9465      45287898
9466      45287898
9467      45287898
9468      45287898
9469      45287898
9470      45287898
9471      45287898
9472      45287898
9473      45287898
9474      45287898
9475      45287898
9476      45287898
9477      45287898
9478      45287898
9479      45287898
9480      45287898
9481      45287898
9482      45287898
9483      45287898
9484      45287898
9485      45287898
9486      45287898
9487      45287898
9488      45287898
9489      10649835
9490      10649835
9491      45226560
9492      45226560
9493      45226560
9494      45226560
9495      45226560
9496      45226560
9497      45226560
9498      45226560
9499      45226560
9500      45226560
9501      45226560
9502      45226560
9503      45226560
9504      45226560
9505      45226560
9506      45226560
9507      45226560
9508      45226560
9509      45226560
9510      45226560
9511      45226560
9512      45226560
9513      45226560
9514      45226560
9515      45226560
9516      45226560
9517      45226560
9518      45226560
9519      45226560
9520      45226560
9521      45226560
9522      45226560
9523      45226560
9524      45226560
9525      45226560
9526      45226560
9527      45226560
9528      45226560
9529      45226560
9530      45226560
9531      45226560
9532      45226560
9533      45226560
9534      45226560
9535      45226560
9536      45226560
9537      45226560
9538      45226560
9539      45226560
9540      45226560
9541      45226560
9542      45226560
9543      45226560
9544      45226560
9545      45226560
9546      45226560
9547      45226560
9548      45226560
9549      45226560
9550      45226560
9551      45226560
9552      45226560
9553      45226560
9554      45226560
9555      45226560
9556      45226560
9557      45226560
9558      45226560
9559      45226560
9560      45226560
9561      45226560
9562      45226560
9563      45226560
9564      45226560
9565      45226560
9566      45226560
9567      45226560
9568      45226560
9569      45226560
9570      45226560
9571      45226560
9572      45226560
9573      45226560
9574      45226560
9575      45226560
9576      45226560
9577      45226560
9578      45226560
9579      45226560
9580      45226560
9581      45226560
9582      45226560
9583      45226560
9584      45226560
9585      45226560
9586      45226560
9587      45226560
9588      45226560
9589      45226560
9590      45226560
9591      45226560
9592      45226560
9593      45226560
9594      45226560
9595      45226560
9596      45226560
9597      45226560
9598      45226560
9599      45226560
9600      45226560
9601      45226560
9602      45226560
9603      45226560
9604      45226560
9605      45226560
9606      45226560
9607      45226560
9608      45226560
9609      45226560
9610      45226560
9611      45226560
9612      45226560
9613      45226560
9614      45226560
9615      45226560
9616      44976989
9617      44976989
9618      44976989
9619      44976989
9620      44976989
9621      44976989
9622      44976989
9623      44976989
9624      44976989
9625      44976989
9626      44976989
9627      44976989
9628      44976989
9629      44976989
9630      44976989
9631      44976989
9632      44976989
9633      44976989
9634      44976989
9635      44976989
9636      44976989
9637      44976989
9638      44976989
9639      44976989
9640      30497133
9641      30487436
9642      33543491
9643      33543491
9644      33543491
9645      33543491
9646      33543491
9647      33543491
9648      33543491
9649      33543491
9650      33543491
9651      33543491
9652      33543491
9653      33543491
9654      33543491
9655      33543491
9656      33543491
9657      33543491
9658      33543491
9659      33543491
9660      33543491
9661      33543491
9662      33543491
9663      33543491
9664      33543491
9665      33543491
9666      33543491
9667      33543491
9668      33543491
9669      33543491
9670      33543491
9671      33543491
9672      33543491
9673      33543491
9674      33543491
9675      33543491
9676      33543491
9677      33543491
9678      33543491
9679      33543491
9680      33543491
9681      33543491
9682      33543491
9683      33543491
9684      33543491
9685      33543491
9686      33543491
9687      33543491
9688      33543491
9689      33543491
9690      33543491
9691      33543491
9692      33543491
9693      33543491
9694      33543491
9695      33543491
9696      33543491
9697      33543491
9698      33543491
9699      33543491
9700      33543491
9701      33543491
9702      33543491
9703      33543491
9704      33543491
9705      33543491
9706      33543491
9707      33543491
9708      33543491
9709      33543491
9710      33543491
9711      33543491
9712      33543491
9713      33543491
9714      33543491
9715      33543491
9716      33543491
9717      33543491
9718      33543491
9719      33543491
9720      33543491
9721      33543491
9722      33543491
9723      33543491
9724      33543491
9725      33543491
9726      33543491
9727      33543491
9728      33543491
9729      33543491
9730      33543491
9731      33543491
9732      33543491
9733      33543491
9734      33543491
9735      33543491
9736      33543491
9737      33543491
9738      33543491
9739      33543491
9740      33543491
9741      33543491
9742      33543491
9743      33543491
9744      33543491
9745      33543491
9746      33543491
9747      33543491
9748      33543491
9749      33543491
9750      33543491
9751      33543491
9752      33543491
9753      33543491
9754      33543491
9755      33543491
9756      33543491
9757      33543491
9758      33543491
9759      33543491
9760      33543491
9761      33543491
9762      33543491
9763      33543491
9764      33543491
9765      33543491
9766      33543491
9767      33543491
9768      33543491
9769      33543491
9770      33543491
9771      33543491
9772      33543491
9773      33543491
9774      33543491
9775      33543491
9776      33543491
9777      33543491
9778      33543491
9779      33543491
9780      33543491
9781      33543491
9782      33543491
9783      33543491
9784      33543491
9785      33543491
9786      33543491
9787      33543491
9788      33543491
9789      33543491
9790      33543491
9791      33543491
9792      33543491
9793      33543491
9794      33543491
9795      33543491
9796      33543491
9797      29223257
9798       7829926
9799       7829926
9800       7829926
9801       7829926
9802       7829926
9803       7829926
9804       7829926
9805       7829926
9806       7829926
9807       7829926
9808       7829926
9809      44298648
9810      44298648
9811      44298648
9812      44298648
9813      44298648
9814      44298648
9815      44298648
9816      44298648
9817      44298648
9818      44298648
9819      44298648
9820      44298648
9821      44298648
9822      44298648
9823      44298648
9824      44298648
9825      44298648
9826      44298648
9827      44298648
9828      44298648
9829      44298648
9830      44298648
9831      44298648
9832      44298648
9833      44298648
9834      44298648
9835      44298648
9836      44298648
9837      44298648
9838      44298648
9839      44298648
9840      44298648
9841      44298648
9842      44298648
9843      44298648
9844      44298648
9845      44298648
9846      44298648
9847      44298648
9848      44298648
9849      44298648
9850      44298648
9851      44298648
9852      44298648
9853      44298648
9854      44298648
9855      44298648
9856      44298648
9857      44298648
9858      44298648
9859      44298648
9860      44298648
9861      44298648
9862      44298648
9863      44298648
9864      39428528
9865      39428528
9866      39428528
9867      39428528
9868      39428528
9869      39428528
9870      39428528
9871      39428528
9872      39428528
9873      39428528
9874      39428528
9875      39428528
9876      39428528
9877      39428528
9878      39428528
9879      39428528
9880      39428528
9881      39428528
9882      39428528
9883      39428528
9884      39428528
9885      39428528
9886      39428528
9887      39428528
9888      39428528
9889      39428528
9890      39428528
9891      39428528
9892      39428528
9893      39428528
9894      39428528
9895      39428528
9896      39428528
9897      39428528
9898      39428528
9899      39428528
9900      39428528
9901      39428528
9902      39428528
9903      39428528
9904      39428528
9905      39428528
9906      39428528
9907      39428528
9908      39428528
9909      39428528
9910      39428528
9911      39428528
9912      39428528
9913      39428528
9914      39428528
9915       6507389
9916      33310187
9917      33310187
9918      33310187
9919      33310187
9920      33310187
9921      33310187
9922      33310187
9923      33310187
9924      33310187
9925      33310187
9926      33310187
9927      33310187
9928      33310187
9929      33310187
9930      33310187
9931      33310187
9932      33310187
9933      33310187
9934      33310187
9935      33310187
9936      33310187
9937      33310187
9938      33310187
9939      33310187
9940      33310187
9941      33310187
9942      33310187
9943      33310187
9944      33310187
9945      33310187
9946      33310187
9947      33310187
9948      33310187
9949       8394341
9950       8211306
9951       7770591
9952      44244993
9953       7137789
9954       6276532
9955       6276532
9956       6276532
9957       6276532
9958       6276532
9959       6276532
9960       6276532
9961       6276532
9962       6276532
9963       6276532
9964      36481070
9965      36481070
9966      36487760
9967      20258820
9968      20258820
9969      19621545
9970      19047684
9971      19047684
9972      35139222
9973      35139222
9974      17819386
9975      17819386
9976      17819386
9977      17819386
9978      17819386
9979      17819386
9980      17819386
9981      17819386
9982      17819386
9983      17819386
9984      17819386
9985      17819386
9986      17819386
9987      17819386
9988      17819386
9989      17819386
9990      17819386
9991      17819386
9992      17819386
9993      17819386
9994      17819386
9995      17819386
9996      17819386
9997      17819386
9998      17819386
9999      28674848
10000     28674848
10001     28674848
10002     28674848
10003     28674848
10004     28674848
10005     28674848
10006     28674848
10007     28674848
10008     28674848
10009     28674848
10010     28674848
10011     28540355
10012     28540355
10013     28540355
10014     28540355
10015     34325034
10016     34325034
10017     34325034
10018     34325034
10019     34325034
10020     34360033
10021     34360033
10022     34360033
10023     34360033
10024     34360033
10025     34360033
10026     34190244
10027     34190244
10028     34190244
10029     34190244
10030     34190244
10031     34190244
10032     34190244
10033     34190244
10034     34190244
10035     34190244
10036     34190244
10037     34190244
10038     34190244
10039     34190244
10040     34190244
10041     34190244
10042     34190244
10043     34190244
10044     34190244
10045     34190244
10046     34190244
10047     34143034
10048     34143034
10049     34143034
10050     34143034
10051     34143034
10052     34143034
10053     34143034
10054     34143034
10055     34143034
10056     34143034
10057     34143034
10058     34143034
10059     34143034
10060     34143034
10061     34143034
10062     34143034
10063     34143034
10064     34143034
10065      7130287
10066      6725209
10067      6725209
10068      6725209
10069      6670695
10070      6670695
10071      6670695
10072      6670695
10073      6670695
10074      6670695
10075      6670695
10076      6670695
10077      6670695
10078      6670695
10079      6670695
10080      6670695
10081      6670695
10082      6670695
10083      6670695
10084      6670695
10085      6670695
10086      6670695
10087      6670695
10088      6670695
10089      6670695
10090      6670695
10091      6670695
10092      6670695
10093      6670695
10094     20388845
10095     17660384
10096     17660384
10097     34136071
10098     34106262
10099     34106262
10100     42366594
10101     42366594
10102     42366594
10103     27421023
10104     27143949
10105     42315651
10106     42315651
10107     42315651
10108     42315651
10109     42315651
10110     42315651
10111     42315651
10112     42315651
10113     42315651
10114     42315651
10115     42315651
10116     42315651
10117     14144158
10118     14210891
10119     14210891
10120     14210891
10121     14210891
10122     14210891
10123     14210891
10124     14210891
10125     14210891
10126     14210891
10127     14210891
10128     14210891
10129     14210891
10130     14210891
10131     14210891
10132     14210891
10133     14210891
10134     14210891
10135     14210891
10136     14210891
10137     14210891
10138     14210891
10139     14210891
10140     14210891
10141     14210891
10142     14210891
10143     14210891
10144     14210891
10145     14210891
10146     14210891
10147     14210891
10148     14210891
10149     14210891
10150     14210891
10151     31659500
10152     31659500
10153     31659500
10154     13582004
10155     13113790
10156     13113790
10157     13113790
10158     13016692
10159     13016692
10160     38188016
10161     38188016
10162     38188016
10163     38188016
10164     38188016
10165     38188016
10166     38188016
10167     38188016
10168     38188016
10169     38188016
10170     38188016
10171     38188016
10172     38188016
10173     38188016
10174     38188016
10175     38188016
10176     38188016
10177     38188016
10178     38188016
10179     38188016
10180     38188016
10181     38188016
10182     38188016
10183     38188016
10184     38188016
10185     38188016
10186     38188016
10187     38188016
10188     38188016
10189     38188016
10190     31038476
10191     31063168
10192     31063168
10193     25644216
10194     25735673
10195     25735673
10196     25735673
10197     25735673
10198     25735673
10199     25735673
10200     25735673
10201     25735673
10202     25735673
10203     25735673
10204     25735673
10205     25735673
10206     25735673
10207     25735673
10208     25735673
10209     25735673
10210     25735673
10211     25735673
10212     25735673
10213     25735673
10214     25735673
10215     25735673
10216     25735673
10217     25735673
10218     25735673
10219     25735673
10220     25735673
10221     25735673
10222     25735673
10223     25735673
10224     25735673
10225     25735673
10226     25735673
10227     25692554
10228     25772460
10229     25772460
10230     25772460
10231     25772460
10232     25772460
10233     25772460
10234     25772460
10235     25772460
10236     25772460
10237     25772460
10238     25772460
10239     25772460
10240     25772460
10241     25772460
10242     25772460
10243     25772460
10244     25772460
10245     25772460
10246     25772460
10247     25772460
10248     25772460
10249     25772460
10250     25772460
10251     25772460
10252     43362349
10253     43362349
10254     25763333
10255     45101094
10256     30807119
10257     30755428
10258     30747233
10259     38121360
10260     38121360
10261     38121360
10262     38121360
10263     38121360
10264     38121360
10265     38121360
10266     38121360
10267     38121360
10268     38121360
10269     38121360
10270     38121360
10271     38121360
10272     38010618
10273     38010618
10274     43107587
10275     43107587
10276     43107587
10277     43107587
10278     43107587
10279     43107587
10280     43107587
10281     43107587
10282     43107587
10283     43107587
10284     43107587
10285     43107587
10286     43107587
10287     43107587
10288     43107587
10289     43107587
10290     43107587
10291     43107587
10292     43107587
10293     43107587
10294     43107587
10295     43107587
10296     43107587
10297     43107587
10298     43107587
10299     43107587
10300     43107587
10301     43107587
10302     43107587
10303     43107587
10304     43107587
10305     43107587
10306     43107587
10307     43107587
10308     43107587
10309     43107587
10310     43107587
10311     43107587
10312     43107587
10313     43107587
10314     43107587
10315     43107587
10316     43107587
10317     43107587
10318     43107587
10319     43107587
10320     43107587
10321     43107587
10322     43107587
10323     43107587
10324     43107587
10325     43107587
10326     43107587
10327     43107587
10328     43107587
10329     43107587
10330     43107587
10331     43107587
10332     43107587
10333     43107587
10334     43107587
10335     43107587
10336     43107587
10337     43107587
10338     43107587
10339     43107587
10340     43107587
10341     43107587
10342     43107587
10343     43107587
10344     36995075
10345      6360415
10346      6360415
10347      6360415
10348      6360415
10349      6360415
10350      6360415
10351      6360415
10352      6360415
10353      6360415
10354      6360415
10355      6360415
10356      6360415
10357      6360415
10358      6360415
10359      6360415
10360      6360415
10361      6360415
10362      6360415
10363     36944125
10364     36944125
10365     36806284
10366     36806284
10367     28903697
10368     28903697
10369     28903697
10370     21797415
10371     21797415
10372     21797415
10373     21797415
10374     21797415
10375     21797415
10376     21797415
10377     21797415
10378     21797415
10379     20828622
10380     42561934
10381     42561934
10382     32497311
10383     45379635
10384     45379635
10385     45379635
10386     45379635
10387     45404369
10388     43659493
10389     43659493
10390     43659493
10391     43659493
10392     43659493
10393     43659493
10394     43659493
10395     43659493
10396     43659493
10397     43659493
10398     43659493
10399     43659493
10400     43659493
10401     43659493
10402     43659493
10403     43659493
10404     13545185
10405     38208644
10406     38208644
10407     38208644
10408     29657831
10409     33491720
10410     33491720
10411     33491720
10412     33491720
10413     33491720
10414     33491720
10415     33491720
10416     33491720
10417     33491720
10418     33484258
10419     33484258
10420     33484258
10421      7388799
10422      7388799
10423      7388799
10424      7388799
10425      7388799
10426      7388799
10427      7388799
10428      7388799
10429      7388799
10430     33479348
10431     33479348
10432     33479348
10433     33479348
10434     33479348
10435     33479348
10436     33479348
10437     33479348
10438     33479348
10439     33479348
10440     33479348
10441     33479348
10442     33479348
10443     33479348
10444     33479348
10445     33479348
10446     33479348
10447     33479348
10448     33479348
10449     33479348
10450     33479348
10451     33479348
10452     33479348
10453     33479348
10454     33479348
10455     33479348
10456     33479348
10457     33479348
10458     33479348
10459     33479348
10460     33479348
10461     33479348
10462     33479348
10463     33479348
10464     33479348
10465     33479348
10466     33479348
10467     33479348
10468     33479348
10469      6499261
10470      6499261
10471      6499261
10472      6499261
10473      6499261
10474      6499261
10475      6499261
10476      6499261
10477      6499261
10478      6499261
10479      6499261
10480      6499261
10481      6499261
10482      6499261
10483      6499261
10484      6499261
10485      6499261
10486      6499261
10487      6499261
10488      6499261
10489      6499261
10490      6499261
10491      6499261
10492      6499261
10493      6499261
10494      6499261
10495      6499261
10496      6499261
10497      6499261
10498      6499261
10499      6499261
10500      6499261
10501      6499261
10502      6499261
10503      6499261
10504      6499261
10505      6499261
10506      6499261
10507      6499261
10508      6499261
10509      6499261
10510      6499261
10511      6499261
10512      6499261
10513      6499261
10514      6499261
10515      6499261
10516      6499261
10517      6499261
10518      6499261
10519      6499261
10520      6499261
10521      6499261
10522      6499261
10523      6499261
10524      6499261
10525      6499261
10526      6499261
10527      6499261
10528      6499261
10529      6499261
10530      6499261
10531      6499261
10532      6499261
10533      6499261
10534      6499261
10535      6499261
10536      6499261
10537      6499261
10538      6499261
10539     44176453
10540     44176453
10541     33283212
10542     33283212
10543     33283212
10544     33283212
10545     33283212
10546     33283212
10547     33283212
10548     33283212
10549     33283212
10550     33283212
10551     33283212
10552     33283212
10553     36576569
10554     36576569
10555     36576569
10556     36576569
10557     36576569
10558     36576569
10559     36576569
10560     36576569
10561     36576569
10562     36576569
10563     36576569
10564     36576569
10565     36576569
10566     36576569
10567     36576569
10568     17792523
10569     17792523
10570     17792523
10571     17792523
10572     17792523
10573     17792523
10574     17792523
10575     17792523
10576     17792523
10577     17792523
10578     17792523
10579     17792523
10580     42396846
10581     42396846
10582     42396846
10583     42396846
10584     42396846
10585     42396846
10586     42396846
10587     42396846
10588     42396846
10589     42396846
10590     42396846
10591     42396846
10592     42396846
10593     42396846
10594     42396846
10595     42396846
10596     42396846
10597     42396846
10598     42396846
10599     42396846
10600     42396846
10601     42396846
10602     42396846
10603     42396846
10604     42396846
10605     42396846
10606     42396846
10607     42396846
10608     42396846
10609     42396846
10610     42396846
10611     42396846
10612     42396846
10613     42396846
10614     42396846
10615     42396846
10616     42396846
10617     42396846
10618     42396846
10619     42396846
10620     42396846
10621     42396846
10622     42396846
10623     42396846
10624     42396846
10625     42396846
10626     42396846
10627     42396846
10628     42396846
10629     42396846
10630     42396846
10631     42396846
10632     42396846
10633     42396846
10634     42396846
10635     42396846
10636     42396846
10637     42396846
10638     42396846
10639     42396846
10640     42396846
10641     42396846
10642     42396846
10643     42396846
10644     42396846
10645     42396846
10646     42396846
10647     42396846
10648     42396846
10649     42396846
10650     42396846
10651     42396846
10652     42396846
10653     42396846
10654     42396846
10655     27653491
10656     27653491
10657     27653491
10658      7469007
10659      7469007
10660      7469007
10661      7469007
10662      7469007
10663      7469007
10664      7469007
10665      7469007
10666      7469007
10667      7469007
10668      7469007
10669      7469007
10670      7469007
10671      7469007
10672      7469007
10673      7469007
10674      7469007
10675      7469007
10676      7469007
10677      7469007
10678      7469007
10679      7469007
10680      7469007
10681     44240966
10682     44240966
10683     44240966
10684     44240966
10685     44240966
10686     44240966
10687     44240966
10688     44240966
10689     44240966
10690     44240966
10691     44240966
10692     44240966
10693     44240966
10694     44240966
10695     44240966
10696     44240966
10697     44240966
10698     44240966
10699     44240966
10700     44240966
10701     44240966
10702     44240966
10703     44240966
10704     44240966
10705     44240966
10706     44240966
10707     33159110
10708     33159110
10709     33123703
10710     33123703
10711     33123703
10712     33029196
10713     33029196
10714     33029196
10715     33029196
10716     33029196
10717     33064983
10718     33064983
10719     33064983
10720     33064983
10721     33064983
10722     32960566
10723     32960566
10724      6036093
10725      5243833
10726      5243833
10727      5502542
10728      5502542
10729      5502542
10730      5502542
10731      5502542
10732      5502542
10733      5502542
10734      5502542
10735     36975164
10736     36975164
10737     36975164
10738     36975164
10739     36975164
10740     36975164
10741     36975164
10742     36975164
10743      5614880
10744      5614880
10745      5614880
10746      5614880
10747      5614880
10748      5614880
10749      5614880
10750      5614880
10751      5614880
10752      5614880
10753      5614880
10754      5614880
10755      5614880
10756      5614880
10757      5614880
10758      5614880
10759      5614880
10760      5614880
10761      5614880
10762      5614880
10763      5614880
10764      5614880
10765      5614880
10766      5614880
10767      5614880
10768      5614880
10769      5614880
10770      5614880
10771      5614880
10772      5614880
10773      5614880
10774      5614880
10775      5614880
10776      5614880
10777      5614880
10778      5614880
10779      5614880
10780      5614880
10781      5614880
10782      5614880
10783     20803216
10784     20803216
10785     20803216
10786     20803216
10787     20803216
10788     20803216
10789     20803216
10790     20803216
10791     20803216
10792     20803216
10793     20803216
10794     20803216
10795     20803216
10796     20803216
10797     20803216
10798     20803216
10799     20803216
10800     20803216
10801     20803216
10802     20803216
10803     20803216
10804     20803216
10805     20803216
10806     20803216
10807     20803216
10808     20803216
10809     20803216
10810     20803216
10811     20803216
10812     20803216
10813     20803216
10814     20803216
10815     20803216
10816     20803216
10817     20803216
10818     20803216
10819     20803216
10820     19303739
10821     19303739
10822     18650360
10823     18650360
10824     18650360
10825      6670667
10826      6670667
10827      6670667
10828      6670667
10829      6670667
10830     32893735
10831     32893735
10832     32893735
10833     32893735
10834     32893735
10835     32893735
10836     32893735
10837     32893735
10838     32893735
10839     32893735
10840     32893735
10841     32893735
10842     32893735
10843     32893735
10844     32893735
10845     32893735
10846     32893735
10847     32893735
10848     32893735
10849     32893735
10850     32893735
10851     32893735
10852     32893735
10853     28992956
10854     28992956
10855     28992956
10856     28992956
10857     28992956
10858     28992956
10859     28992956
10860     28992956
10861     28992956
10862     28992956
10863     28992956
10864     28992956
10865     28992956
10866     28992956
10867     28992956
10868     28992956
10869     28992956
10870     28992956
10871     28992956
10872     28992956
10873     28992956
10874     28992956
10875     28992956
10876     28992956
10877     28992956
10878     28992956
10879     28992956
10880     28992956
10881     28992956
10882     28992956
10883     28992956
10884     28992956
10885     28992956
10886     28992956
10887     28992956
10888     28992956
10889     28992956
10890     28992956
10891     28992956
10892     28992956
10893     28992956
10894     28992956
10895     28992956
10896     28992956
10897     28992956
10898     28992956
10899     28992956
10900     28992956
10901     28992956
10902     28992956
10903     28992956
10904     28992956
10905     28992956
10906     28992956
10907     28992956
10908     28992956
10909     28992956
10910     28992956
10911     28992956
10912     28992956
10913     28992956
10914     28992956
10915     28992956
10916     28992956
10917     28992956
10918     28992956
10919     28992956
10920     28992956
10921     28992956
10922     28992956
10923     28992956
10924     28992956
10925     28992956
10926     28992956
10927     28992956
10928     28992956
10929     28992956
10930     28992956
10931     28992956
10932     28992956
10933     28992956
10934     28992956
10935     28992956
10936     28992956
10937     28992956
10938     28992956
10939     28992956
10940     28992956
10941     28992956
10942     28992956
10943     28992956
10944     28992956
10945     28992956
10946     28992956
10947     28992956
10948     28992956
10949     28992956
10950     28992956
10951     28992956
10952     28992956
10953     28992956
10954     28992956
10955     28992956
10956     28992956
10957     28992956
10958     28992956
10959     28992956
10960     28992956
10961     28992956
10962     28992956
10963     28992956
10964     28992956
10965     28992956
10966     28992956
10967     28992956
10968     28992956
10969     28992956
10970     28992956
10971     28889272
10972     28889272
10973     28885371
10974     28885371
10975     28885371
10976     28885371
10977     28885371
10978     28885371
10979     28885371
10980     28885371
10981     28885371
10982     28885371
10983     28885371
10984     28885371
10985     28885371
10986     28885371
10987     28885371
10988     28885371
10989     28885371
10990     28885371
10991     35600022
10992     16095372
10993     28137611
10994     28137611
10995     28137611
10996     28137611
10997     28137611
10998     28137611
10999     28137611
11000     28137611
11001     28137611
11002     28137611
11003     28137611
11004     28137611
11005     28137611
11006     28137611
11007     28137611
11008     28137611
11009     28137611
11010     28137611
11011     28137611
11012     28137611
11013     27985295
11014     27985295
11015     27985295
11016     27448579
11017     27448579
11018     27448579
11019     27448579
11020     32612281
11021     32612281
11022     32612281
11023     32612281
11024     32612281
11025     32612281
11026     32612281
11027     32612281
11028     32612281
11029     32612281
11030     32612281
11031     32612281
11032     32612281
11033     32612281
11034     32612281
11035     31840858
11036     42108534
11037     42108534
11038     14144468
11039     14144468
11040     14144468
11041     14144468
11042     14144468
11043     14144468
11044     14144468
11045     14144468
11046     14144468
11047     31706864
11048     13980437
11049     13980437
11050     13980437
11051     13980437
11052     13980437
11053     13980437
11054     13980437
11055     13980437
11056     13980437
11057     13980437
11058     13980437
11059     13980437
11060     13980437
11061     13980437
11062     13980437
11063     13980437
11064     13980437
11065     13980437
11066     13980437
11067     13980437
11068     13980437
11069     13980437
11070     13980437
11071     13980437
11072     13980437
11073     13980437
11074     13980437
11075     13980437
11076     13980437
11077     13980437
11078     13980437
11079     13980437
11080     13980437
11081     13980437
11082     13980437
11083     13980437
11084     13980437
11085     13980437
11086     13980437
11087     13980437
11088     13980437
11089     13980437
11090     13980437
11091     13980437
11092     13980437
11093     13980437
11094     13980437
11095     13980437
11096     13980437
11097     13980437
11098     13980437
11099     13980437
11100     13980437
11101     13980437
11102     13980437
11103     13980437
11104     13980437
11105     13980437
11106     13980437
11107     31560487
11108     31560487
11109     30829759
11110     30643136
11111     37365932
11112     37517450
11113     37517450
11114     37517450
11115     37517450
11116     37517450
11117     37517450
11118     37517450
11119     37517450
11120     37517450
11121     37517450
11122     37517450
11123     37517450
11124     37517450
11125     37517450
11126     37517450
11127     37517450
11128     37517450
11129     37517450
11130     37517450
11131     37517450
11132     37517450
11133     37517450
11134     37517450
11135     37517450
11136     37517450
11137     37517450
11138     37517450
11139     37517450
11140     37517450
11141     37517450
11142     37517450
11143     37517450
11144     37517450
11145     37517450
11146     37517450
11147     37517450
11148     37517450
11149     37517450
11150     37517450
11151     37517450
11152     37517450
11153     37517450
11154     37517450
11155     37517450
11156     37517450
11157     37517450
11158     37517450
11159     37517450
11160     37517450
11161     37517450
11162     37517450
11163     37517450
11164     37517450
11165     37517450
11166     37517450
11167     37517450
11168     37517450
11169     37517450
11170     37517450
11171     37517450
11172     37517450
11173     37517450
11174     37517450
11175     37517450
11176     30263881
11177     46654022
11178     46665124
11179     46665124
11180     46665124
11181     46665124
11182     46665124
11183     46665124
11184     46665124
11185     46665124
11186     46665124
11187     46665124
11188     46665124
11189     46665124
11190     46665124
11191     46665124
11192     46665124
11193     46665124
11194     46665124
11195     46665124
11196     46665124
11197     46665124
11198     46665124
11199     46665124
11200     46665124
11201     46665124
11202     46665124
11203     46665124
11204     46665124
11205     46665124
11206     46665124
11207     46665124
11208     46665124
11209     46665124
11210     46665124
11211     46665124
11212     46665124
11213     46665124
11214     46665124
11215     46665124
11216     46665124
11217     46665124
11218     46665124
11219     46665124
11220     46665124
11221     46665124
11222     46665124
11223     46665124
11224     46665124
11225     46665124
11226     46665124
11227     46665124
11228     46665124
11229     46665124
11230     46665124
11231     46665124
11232     46665124
11233     46665124
11234     46665124
11235     46665124
11236     46665124
11237     46665124
11238     46665124
11239     46665124
11240     46665124
11241     46665124
11242     46665124
11243     46665124
11244     46665124
11245     46665124
11246     46665124
11247     46665124
11248     46665124
11249     46665124
11250     46665124
11251     46665124
11252     46665124
11253     46665124
11254     46665124
11255     46665124
11256     46665124
11257     46665124
11258     46665124
11259     46665124
11260     46665124
11261     46665124
11262     46665124
11263     46665124
11264     46665124
11265     46665124
11266     46665124
11267     46665124
11268     46665124
11269     46665124
11270     46665124
11271     46665124
11272     46665124
11273     46665124
11274     46665124
11275     46665124
11276     46665124
11277     46665124
11278     46665124
11279     46665124
11280     46665124
11281     46665124
11282     46665124
11283     46665124
11284     46665124
11285     46665124
11286     46665124
11287     30282958
11288     30289514
11289     30320316
11290     30337694
11291     30348609
11292     30356885
11293     30372257
11294     30396822
11295     30425968
11296     30431026
11297     28023233
11298     28023233
11299     15745080
11300     15745080
11301     14583402
11302     14583402
11303     14583402
11304     14583402
11305     14583402
11306     14583402
11307     14583402
11308     14583402
11309     14583402
11310     14583402
11311     14583402
11312     14583402
11313     14583402
11314     14583402
11315     14583402
11316     14583402
11317     14583402
11318     14583402
11319     14583402
11320     14583402
11321     14583402
11322     14583402
11323     14583402
11324     14583402
11325     14583402
11326     14583402
11327     14583402
11328     14583402
11329     14583402
11330     14583402
11331     14583402
11332     14583402
11333     14583402
11334     14583402
11335     14583402
11336     14583402
11337     32197813
11338     32197813
11339     32197813
11340     32197813
11341     32197813
11342     32197813
11343     32197813
11344      5087867
11345      5087867
11346     38333421
11347     38333421
11348     38333421
11349     38333421
11350     38333421
11351     38333421
11352     38333421
11353     38333421
11354     38333421
11355     31628600
11356     43332039
11357     43332039
11358     43332039
11359     38238664
11360     30762882
11361     30491985
11362     30440945
11363     10516431
11364     10516431
11365     10516431
11366     10516431
11367     10516431
11368     10516431
11369     10516431
11370     10516431
11371     10516431
11372     10516431
11373     10516431
11374     10516431
11375     10516431
11376     10516431
11377     10516431
11378     10516431
11379     10516431
11380     10516431
11381     10516431
11382     10516431
11383     10516431
11384     10516431
11385     10516431
11386     10516431
11387     10516431
11388     10516431
11389     10516431
11390     10516431
11391     10605716
11392     10605716
11393     10605716
11394     10605716
11395     10605716
11396     10605716
11397     10605716
11398     10605716
11399     10605716
11400     10605716
11401     10605716
11402     10605716
11403     10605716
11404     10605716
11405     10605716
11406     10605716
11407     10605716
11408     10605716
11409     10605716
11410     10605716
11411     10605716
11412     10605716
11413     10605716
11414     10605716
11415     10605716
11416     10605716
11417     10605716
11418     10605716
11419     10605716
11420     10605716
11421     10605716
11422     10605716
11423     18486599
11424     18486599
11425     16627397
11426     16627397
11427     16627397
11428     16627397
11429     16627397
11430     16627397
11431     16627397
11432     16627397
11433     16627397
11434     16627397
11435     16627397
11436     16627397
11437     16627397
11438     16627397
11439     16627397
11440     16627397
11441     16627397
11442     16627397
11443     16627397
11444     16627397
11445     16627397
11446     16627397
11447     16627397
11448     16627397
11449     16627397
11450     16627397
11451     16627397
11452     16627397
11453     16627397
11454     16627397
11455     16627397
11456     16627397
11457     16627397
11458     16627397
11459     16627397
11460     16627397
11461     16627397
11462     16627397
11463     16627397
11464     16627397
11465     16627397
11466     16627397
11467     16627397
11468     16627397
11469     16627397
11470     16627397
11471     16627397
11472     16627397
11473     16627397
11474     16627397
11475     16627397
11476     16627397
11477     16627397
11478     16627397
11479     16627397
11480     16627397
11481     16627397
11482     16627397
11483     16627397
11484     16627397
11485     16627397
11486     16627397
11487     16627397
11488     16627397
11489     16627397
11490     16627397
11491     16627397
11492     16627397
11493     16627397
11494     16627397
11495     16627397
11496     16627397
11497     16627397
11498     16627397
11499     16627397
11500     16627397
11501     16627397
11502     16627397
11503     16627397
11504     16627397
11505     16627397
11506     16627397
11507     16627397
11508     16627397
11509     16627397
11510     16627397
11511     16627397
11512     16627397
11513     16627397
11514     16627397
11515     16627397
11516     16627397
11517     16627397
11518     16627397
11519     16627397
11520     16627397
11521     16627397
11522     16627397
11523     16627397
11524     16627397
11525     16627397
11526     32625096
11527     32625096
11528     27367947
11529     39184899
11530     39323218
11531     39323218
11532     39323218
11533     39172106
11534     26217381
11535     26217381
11536     26217381
11537     26217381
11538     26217381
11539     26217381
11540     26217381
11541     26171128
11542     26171128
11543     26171128
11544     26171128
11545     26171128
11546     26171128
11547     26171128
11548     26171128
11549     26171128
11550     26171128
11551     26171128
11552     26171128
11553     26171128
11554     26171128
11555     26171128
11556     26171128
11557     26171128
11558     26171128
11559     26171128
11560     26171128
11561     26171128
11562     26171128
11563     26171128
11564     26171128
11565     26171128
11566     26171128
11567     26171128
11568     26171128
11569     26171128
11570     26171128
11571     26171128
11572     26171128
11573     26171128
11574     26171128
11575     26171128
11576     26171128
11577     26171128
11578     26171128
11579     26171128
11580     26171128
11581     26171128
11582     26171128
11583     26171128
11584     26171128
11585     26171128
11586     26171128
11587     26171128
11588     26171128
11589     26171128
11590     26171128
11591     26171128
11592     26171128
11593     26171128
11594     26171128
11595     26171128
11596     26171128
11597     26171128
11598     26171128
11599     26171128
11600     26171128
11601     26171128
11602     26171128
11603     26171128
11604     26171128
11605     26171128
11606     26171128
11607     26171128
11608     26171128
11609     26171128
11610     26171128
11611     26171128
11612     26171128
11613     26171128
11614     26171128
11615     26171128
11616     26171128
11617     26171128
11618     26171128
11619     26171128
11620     26171128
11621     26171128
11622     26171128
11623     26171128
11624     26171128
11625     26171128
11626     26171128
11627     26171128
11628     26171128
11629     26171128
11630     26171128
11631     26171128
11632     26171128
11633     26171128
11634     26171128
11635     26171128
11636     26171128
11637     26171128
11638     26171128
11639     26171128
11640     26171128
11641     26171128
11642     26171128
11643     26171128
11644     26171128
11645     26171128
11646     26171128
11647     26171128
11648     26171128
11649     26171128
11650     26171128
11651     26171128
11652     26171128
11653     26171128
11654     26171128
11655     26171128
11656     26171128
11657     26171128
11658     26171128
11659     26171128
11660     26171128
11661     26171128
11662     26171128
11663     26171128
11664     26171128
11665     26171128
11666     26171128
11667     26171128
11668     26171128
11669     26171128
11670     26171128
11671     26171128
11672     26171128
11673     26171128
11674     26171128
11675     26171128
11676     26171128
11677     26171128
11678     26171128
11679     26171128
11680     26171128
11681     26171128
11682     26171128
11683     26171128
11684     26171128
11685     26171128
11686     26171128
11687     26171128
11688     26171128
11689     26171128
11690     26171128
11691     26171128
11692     26171128
11693     26171128
11694     26171128
11695     26171128
11696     26171128
11697     26171128
11698     26171128
11699     26171128
11700     26171128
11701     26171128
11702     26171128
11703     26171128
11704     26171128
11705     26171128
11706     26171128
11707     26171128
11708     26171128
11709     26171128
11710     26171128
11711     26171128
11712     26171128
11713     26171128
11714     26171128
11715     28228667
11716     28228667
11717     28228667
11718     28228667
11719     28228667
11720     28228667
11721     28228667
11722     28228667
11723     28228667
11724     28228667
11725     28228667
11726     28228667
11727     28228667
11728     45603056
11729     45603056
11730     45603056
11731     45603056
11732     45603056
11733     45341990
11734     45341990
11735     45338665
11736     45338665
11737     45305257
11738     45305257
11739     45305257
11740     45297354
11741     45297354
11742     32393026
11743     32393026
11744     32393026
11745     32393026
11746     32393026
11747     32393026
11748     32393026
11749     32393026
11750     32393026
11751     32393026
11752     32393026
11753     32393026
11754     32393026
11755     32393026
11756     32393026
11757     32393026
11758     32393026
11759     32393026
11760     32393026
11761     32393026
11762     32393026
11763     32393026
11764     32393026
11765     32393026
11766     32393026
11767     32393026
11768     32393026
11769     32393026
11770     32393026
11771     32393026
11772     32393026
11773     32393026
11774     32393026
11775     32393026
11776     32393026
11777     32393026
11778     32393026
11779     32393026
11780     32393026
11781     32393026
11782     32393026
11783     32393026
11784     32393026
11785     27492261
11786     26939742
11787     26939742
11788     26939742
11789     26350634
11790     26350634
11791     39236020
11792     13641585
11793     13641585
11794     13641585
11795     13641585
11796     13641585
11797     13641585
11798     13641585
11799     13641585
11800     13641585
11801     13641585
11802     13641585
11803     13641585
11804     13641585
11805     13641585
11806     13641585
11807     13641585
11808     13641585
11809     13641585
11810     13641585
11811     31667247
11812     31668931
11813     31668931
11814     31668931
11815     31668931
11816     31668931
11817     31668931
11818     31668931
11819     31668931
11820     31668931
11821     31668931
11822     31668931
11823     31668931
11824     31668931
11825     31668931
11826     31668931
11827     31668931
11828     31668931
11829     31668931
11830     31668931
11831     31668931
11832     43453893
11833     43453893
11834     43453893
11835     43453893
11836     43453893
11837     43453893
11838     43453893
11839     43467298
11840     43467298
11841     43479534
11842     43479534
11843     43479534
11844     43479534
11845     43479534
11846     43479534
11847     43479534
11848     43479534
11849     43479534
11850     43479534
11851     43479534
11852     43479534
11853     43479534
11854     43479534
11855     43479534
11856     43479534
11857     43479534
11858     43479534
11859     43479534
11860     43479534
11861     43479534
11862     43479534
11863     13654356
11864     13667546
11865     13667546
11866     13677116
11867     13681138
11868     13705518
11869     13764332
11870     13771740
11871     13771740
11872     13777266
11873     42010387
11874     42010387
11875     42010387
11876     42010387
11877     42010387
11878     42010387
11879     42010387
11880     42010387
11881     42010387
11882     42010387
11883     42010387
11884     42010387
11885     42010387
11886     42010387
11887     42010387
11888     42010387
11889     42010387
11890     42010387
11891     42010387
11892     42010387
11893     42010387
11894     42010387
11895     42010387
11896     42010387
11897     42010387
11898     42010387
11899     42024924
11900     42024924
11901     42024924
11902     42024924
11903     42024924
11904     42024924
11905     13793141
11906     13825635
11907     13827627
11908     13839409
11909     13848364
11910     13848364
11911     13848364
11912     13848364
11913     13848364
11914     13848364
11915     13848364
11916     13848364
11917     13848364
11918     13848364
11919     13848364
11920     13848364
11921     13906488
11922     38661780
11923     38661780
11924     38661780
11925     38661780
11926     38661780
11927     38661780
11928     38661780
11929     38661780
11930     38661780
11931     38661780
11932     38661780
11933     38661780
11934     38661780
11935     38661780
11936     38661780
11937     38661780
11938     38661780
11939     38661780
11940     38661780
11941     38661780
11942     38661780
11943     38661780
11944     38661780
11945     38661780
11946     38661780
11947     38661780
11948     38661780
11949     38661780
11950     38661780
11951     38661780
11952     38661780
11953     38661780
11954     38661780
11955     38661780
11956     38661780
11957     38661780
11958     38661780
11959     38661780
11960     38661780
11961     38661780
11962     38661780
11963     38661780
11964     38661780
11965     38661780
11966     38661780
11967     38661780
11968     38661780
11969     38661780
11970     38661780
11971     38661780
11972     38661780
11973     38661780
11974     38661780
11975     38661780
11976     38661780
11977     38661780
11978     38661780
11979     38661780
11980     38661780
11981     38661780
11982     38661780
11983     38661780
11984     38661780
11985     38661780
11986     38661780
11987     38661780
11988     38661780
11989     38661780
11990     38661780
11991     38661780
11992     38661780
11993     38661780
11994     38661780
11995     38661780
11996     38661780
11997     38661780
11998     38661780
11999     38661780
12000     38661780
12001     38661780
12002     38661780
12003     38661780
12004     38661780
12005     38661780
12006     38661780
12007     38661780
12008     38661780
12009     38661780
12010     38661780
12011     38661780
12012     38661780
12013     38661780
12014     38661780
12015     38661780
12016     38661780
12017     38661780
12018     38661780
12019     38661780
12020     38661780
12021     38661780
12022     38661780
12023     38661780
12024     38661780
12025     38661780
12026     38661780
12027     38661780
12028     38661780
12029     38661780
12030     38661780
12031     38661780
12032     38661780
12033     38661780
12034     38661780
12035     38661780
12036     38661780
12037     38661780
12038     38661780
12039     38661780
12040     38661780
12041     38661780
12042     38661780
12043     38661780
12044     38661780
12045     38661780
12046     38661780
12047     38661780
12048     38661780
12049     38661780
12050     38661780
12051     38661780
12052     38661780
12053     38661780
12054     38661780
12055     38661780
12056     38661780
12057     38661780
12058     38661780
12059     38661780
12060     38661780
12061     38661780
12062     38661780
12063     38661780
12064     13489176
12065     13489176
12066     13489176
12067     13489176
12068     13489176
12069     13489176
12070     30635619
12071     39029128
12072     39029128
12073     31736407
12074     13427773
12075     13427773
12076     13427773
12077     13427773
12078     13427773
12079     13427773
12080     13427773
12081     13427773
12082     13427773
12083     13427773
12084     13427773
12085     13427773
12086     13427773
12087     13427773
12088     13427773
12089     13427773
12090     13427773
12091     13427773
12092     30541864
12093     36016546
12094     36320670
12095     44047041
12096     44047041
12097     17894485
12098     42351128
12099     42351128
12100     42351128
12101     42351128
12102     42351128
12103     42351128
12104     42351128
12105     42351128
12106     42351128
12107     42351128
12108     42351128
12109     42351128
12110     42351128
12111     13937325
12112     43366566
12113     43366566
12114     30802427
12115     30718777
12116     44936954
12117     30561314
12118     30216073
12119     10397778
12120     10342737
12121     10342737
12122     10342737
12123     10342737
12124     10342737
12125     10342737
12126     10137004
12127     25518338
12128     25518338
12129     25431701
12130     25431701
12131     25431701
12132     25431701
12133     25431701
12134     25431701
12135     25431701
12136     25431701
12137     25431701
12138     25431701
12139     25431701
12140     25431701
12141     25431701
12142     25431701
12143     25431701
12144     25431701
12145     25372043
12146     25362431
12147      9814009
12148      9814009
12149      9814009
12150      9814009
12151      9814009
12152      9814009
12153      9814009
12154      9814009
12155      9814009
12156      9814009
12157      9814009
12158      9814009
12159      9814009
12160      9814009
12161      9810503
12162      9580415
12163      9559155
12164      9365225
12165     25333825
12166     25333825
12167     25333825
12168     25333825
12169     25135247
12170     25135247
12171     25135247
12172     25135247
12173     25103670
12174     25103670
12175     25103670
12176     25103670
12177     25103670
12178     25103670
12179     24902756
12180     24902756
12181     25057746
12182     25057746
12183     25057746
12184     25057746
12185     24992817
12186     24992817
12187     24992817
12188     24992817
12189     24992817
12190     24992817
12191     24547942
12192     24547942
12193     24547942
12194     24547942
12195     24547942
12196     24547942
12197     24547942
12198     24547942
12199     24547942
12200     24547942
12201     24547942
12202     24547942
12203     24050286
12204     24050286
12205     24050286
12206     24050286
12207     23967273
12208     23967273
12209      9083101
12210     23490724
12211     23490724
12212      9018670
12213      9018670
12214     23409128
12215     23409128
12216     36051377
12217     36146566
12218     36146566
12219     36146566
12220     44106552
12221     44106552
12222     44106552
12223     44106552
12224     44106552
12225     44106552
12226     44106552
12227     44106552
12228     44106552
12229     44106552
12230     44106552
12231     44106552
12232     44106552
12233     44106552
12234     44106552
12235     44106552
12236     44106552
12237     44106552
12238     44106552
12239     44106552
12240     44106552
12241     44106552
12242     44106552
12243     44106552
12244     44106552
12245     44106552
12246     44106552
12247     44106552
12248     44106552
12249     44106552
12250     44106552
12251     44106552
12252     44106552
12253     44106552
12254     44106552
12255     44106552
12256     44106552
12257     44106552
12258     44106552
12259     44106552
12260     44106552
12261     44106552
12262     44106552
12263     44106552
12264     44106552
12265     44106552
12266     44106552
12267     44106552
12268     44106552
12269     44106552
12270     44106552
12271     44106552
12272     44106552
12273     44106552
12274     44106552
12275     44106552
12276     44106552
12277     44106552
12278     44106552
12279     44106552
12280     44106552
12281     44106552
12282     44106552
12283     44106552
12284     44106552
12285     44106552
12286     44106552
12287     44106552
12288     44106552
12289     44106552
12290     44106552
12291     44106552
12292     44106552
12293     44106552
12294     44106552
12295     44106552
12296     44106552
12297     44106552
12298     44106552
12299     44106552
12300     44106552
12301     44106552
12302     44106552
12303     44106552
12304     44106552
12305     44106552
12306     44106552
12307     44106552
12308     44106552
12309     44106552
12310     44106552
12311     45942454
12312     45942454
12313     45942454
12314     45942454
12315     45942454
12316     45942454
12317     45942454
12318     45942454
12319     45942454
12320     45942454
12321     45942454
12322     45942454
12323     45942454
12324     45942454
12325     45942454
12326     45942454
12327     45942454
12328     45942454
12329     45942454
12330     45942454
12331     45942454
12332     45942454
12333     45942454
12334     45942454
12335     45942454
12336     45942454
12337     45942454
12338     45942454
12339     45942454
12340     45942454
12341     45942454
12342     45942454
12343     45942454
12344     45942454
12345     45942454
12346     45942454
12347     45942454
12348     45942454
12349     45942454
12350     45942454
12351     45942454
12352     45942454
12353     45942454
12354     45942454
12355     45942454
12356     45942454
12357     45942454
12358     45942454
12359     45942454
12360     45942454
12361     45942454
12362     45942454
12363     45942454
12364     45942454
12365     45942454
12366     45942454
12367     45942454
12368     45942454
12369     45942454
12370     45942454
12371     45942454
12372     45942454
12373     45942454
12374     45942454
12375     45942454
12376     45942454
12377     45942454
12378     45942454
12379     45942454
12380     45942454
12381     45942454
12382     45942454
12383     45942454
12384     45942454
12385     45942454
12386     45942454
12387     45942454
12388     45942454
12389     45942454
12390     45942454
12391     45942454
12392     45942454
12393     45942454
12394     45942454
12395     45942454
12396     45942454
12397     45942454
12398     45942454
12399     45942454
12400     45942454
12401     45942454
12402     45942454
12403     45942454
12404     45942454
12405     45942454
12406     45942454
12407     45942454
12408     45942454
12409     45942454
12410     45942454
12411     45942454
12412     45942454
12413     45942454
12414     45942454
12415     45942454
12416     45942454
12417     45942454
12418     45942454
12419     45942454
12420     45942454
12421     45942454
12422     45942454
12423     45942454
12424     45942454
12425     45942454
12426     45942454
12427     45942454
12428     45942454
12429     45942454
12430     45942454
12431     45942454
12432     45942454
12433     45942454
12434     45942454
12435     45942454
12436     45942454
12437     45942454
12438     45942454
12439     45942454
12440     45942454
12441     45942454
12442     45942454
12443     45942454
12444     45942454
12445     45942454
12446     45942454
12447     45942454
12448     45942454
12449     45942454
12450     45942454
12451     45942454
12452     45942454
12453     45942454
12454     45942454
12455     45942454
12456     45942454
12457     45942454
12458     45942454
12459     45942454
12460     45942454
12461     45942454
12462     43776445
12463     43776445
12464     43776445
12465     43776445
12466     43776445
12467     43776445
12468     43776445
12469     43776445
12470     15880069
12471     15880069
12472     15880069
12473     15880069
12474     15880069
12475     15880069
12476     15880069
12477     15880069
12478     15880069
12479     15880069
12480     15880069
12481     15880069
12482     15880069
12483     15880069
12484     15880069
12485     15880069
12486     15880069
12487     15880069
12488     15880069
12489     15880069
12490     15880069
12491     15880069
12492     15880069
12493     15880069
12494     15880069
12495     15880069
12496     15880069
12497     15880069
12498     15880069
12499     15880069
12500     15880069
12501     15880069
12502     15880069
12503     15880069
12504     15880069
12505     15880069
12506     15880069
12507     15880069
12508     15880069
12509     15880069
12510     15880069
12511     15880069
12512     15880069
12513     15880069
12514     15880069
12515     15880069
12516     15880069
12517     15880069
12518     15880069
12519     15880069
12520     15880069
12521     15880069
12522     15880069
12523     15880069
12524     15880069
12525     15880069
12526     15880069
12527     15880069
12528     15880069
12529     15880069
12530     15880069
12531     15880069
12532     15880069
12533     15880069
12534     15880069
12535     15880069
12536     15880069
12537     15880069
12538     15880069
12539     15880069
12540     15880069
12541     15880069
12542     15880069
12543     15880069
12544     15880069
12545     15880069
12546     15880069
12547     15880069
12548     15880069
12549     15880069
12550     15880069
12551     15880069
12552     15880069
12553     15880069
12554     15880069
12555     15880069
12556     15880069
12557     15880069
12558     15880069
12559     15880069
12560     15880069
12561     15880069
12562     15880069
12563     15880069
12564     15880069
12565     15880069
12566     15880069
12567     15880069
12568     15880069
12569     15880069
12570     15880069
12571     15880069
12572     15880069
12573     15880069
12574     15880069
12575     15880069
12576     15880069
12577     15880069
12578     15880069
12579     15880069
12580     15880069
12581     15880069
12582     15880069
12583     15880069
12584     15880069
12585     15880069
12586     39183851
12587     39183851
12588     39183851
12589     39183851
12590     39183851
12591     39183851
12592     39183851
12593     39183851
12594     39183851
12595     39183851
12596     39183851
12597     39183851
12598     39183851
12599     39183851
12600     39183851
12601     39183851
12602     39183851
12603     39183851
12604     39183851
12605     39183851
12606     39183851
12607     39183851
12608     39183851
12609     39183851
12610     39183851
12611     39183851
12612     39183851
12613     39183851
12614     39183851
12615     45291738
12616     45291738
12617     45291738
12618     45291738
12619     45291738
12620     45291738
12621     39128040
12622     14005279
12623     14005279
12624     14005279
12625     14005279
12626      5017145
12627      5017145
12628      5017145
12629      5017145
12630     13528579
12631     43427128
12632     43427128
12633     43427128
12634     43427128
12635     43427128
12636     43427128
12637     43427128
12638     43427128
12639     43427128
12640     43427128
12641     43427128
12642     43427128
12643     43427128
12644     43427128
12645     43427128
12646     43427128
12647     43427128
12648     13314944
12649     13314944
12650     45264548
12651     45264548
12652     45264548
12653     45264548
12654     45264548
12655     45264548
12656     45264548
12657     45264548
12658     45264548
12659     45264548
12660     38307357
12661     38307357
12662     38307357
12663     38307357
12664     38307357
12665     38307357
12666     38307357
12667     38307357
12668     38307357
12669     38307357
12670     38307357
12671     38307357
12672     38307357
12673     38307357
12674     38307357
12675     38307357
12676     38307357
12677     38307357
12678     38307357
12679     38307357
12680     38307357
12681     38307357
12682     38307357
12683     38307357
12684     38307357
12685     38307357
12686     38307357
12687     38307357
12688     38307357
12689     38307357
12690     38307357
12691     38307357
12692     38307357
12693     38307357
12694     38307357
12695     38307357
12696     38307357
12697     38307357
12698     38307357
12699     38307357
12700     38307357
12701     38307357
12702     38307357
12703     38307357
12704     38307357
12705     38307357
12706     38307357
12707     38307357
12708     38307357
12709     38307357
12710     38307357
12711     38307357
12712     38307357
12713     38307357
12714     38307357
12715     38307357
12716     38307357
12717     38307357
12718     38307357
12719     38307357
12720     38307357
12721     38307357
12722     38307357
12723     38307357
12724     38307357
12725     38307357
12726     38307357
12727     38307357
12728     38307357
12729     38307357
12730     38307357
12731     38307357
12732     38307357
12733     38307357
12734     38307357
12735     38307357
12736     38307357
12737     38307357
12738     38307357
12739     38307357
12740     38307357
12741     38307357
12742     38307357
12743     38307357
12744     38307357
12745     38307357
12746     38307357
12747     38307357
12748     38307357
12749     38307357
12750     38238201
12751     38238201
12752     44939913
12753     44939913
12754     44939913
12755     44939913
12756     44939913
12757     44939913
12758     44939913
12759     44939913
12760     44939913
12761     44939913
12762     30526701
12763     30514799
12764     30510497
12765     30097836
12766     30097836
12767     18917429
12768     18858276
12769     42651244
12770     42651244
12771     26845409
12772     26845409
12773     26845409
12774     26845409
12775     26845409
12776     26845409
12777     26845409
12778     26845409
12779     26845409
12780     26845409
12781     26845409
12782     26845409
12783     26845409
12784     26845409
12785     26845409
12786     26845409
12787     26845409
12788     26845409
12789     26845409
12790     26845409
12791     26845409
12792     26845409
12793     26845409
12794     26845409
12795     26845409
12796     26845409
12797     26845409
12798     26845409
12799     39217506
12800     39217506
12801     32587373
12802     32587373
12803     32587373
12804     32587373
12805     32587373
12806     32587373
12807     32587373
12808     32587373
12809     32587373
12810     32587373
12811     32587373
12812     32587373
12813     32587373
12814     32587373
12815     32587373
12816     32587373
12817     32587373
12818     32587373
12819     32575881
12820     32575881
12821     32575881
12822     32575881
12823     25942686
12824     25942686
12825     25942686
12826     25942686
12827     25942686
12828     25942686
12829     25942686
12830     25942686
12831     25942686
12832     25942686
12833     25942686
12834     25942686
12835     25942686
12836     25942686
12837     25942686
12838     25942686
12839     32279069
12840     32279069
12841     32279069
12842     32279069
12843     32279069
12844     32279069
12845     32279069
12846     38895252
12847     27751233
12848     27751233
12849     27751233
12850     27751233
12851     27751233
12852     27751233
12853     27751233
12854     27751233
12855     27751233
12856     27751233
12857     27751233
12858     27751233
12859     27395787
12860     27395787
12861     27395787
12862     27395787
12863     27395787
12864     14753863
12865     14753863
12866     14753863
12867     14753863
12868     14753863
12869     14753863
12870     38903905
12871     38903905
12872     43565648
12873     10613379
12874     10613379
12875     34737181
12876     34737181
12877     34737181
12878     34737181
12879     34737181
12880     34737181
12881     32612866
12882     32612866
12883     32612866
12884     32612866
12885     32612866
12886     32612866
12887     32612866
12888     32612866
12889     32612866
12890     32612866
12891     32612866
12892     32612866
12893     32612866
12894     32612866
12895     32612866
12896     32612866
12897     32612866
12898     32612866
12899     32612866
12900     32612866
12901     32612866
12902     32612866
12903     32612866
12904     32612866
12905     32612866
12906     32612866
12907     32612866
12908     32612866
12909     32612866
12910     32612866
12911     32612866
12912     32612866
12913     32612866
12914     32612866
12915     32612866
12916     32612866
12917     26175824
12918     26175824
12919     36532408
12920     36532408
12921     36532408
12922     36532408
12923     22520058
12924     22520058
12925     22520058
12926     22154299
12927     18935859
12928     18935859
12929     42741758
12930     42741758
12931     36295702
12932     18114904
12933     18114904
12934     18114904
12935     18114904
12936     18114904
12937     36175815
12938     36175815
12939     36175815
12940     36175815
12941     36175815
12942     36175815
12943     36175815
12944     36175815
12945     36175815
12946     36175815
12947     36175815
12948     36175815
12949     36175815
12950     36175815
12951     36175815
12952     36175815
12953     36175815
12954     36175815
12955     36175815
12956     36175815
12957     36175815
12958     36175815
12959     36175815
12960     36175815
12961     36175815
12962     36175815
12963     36175815
12964     36175815
12965     36175815
12966     36175815
12967     36175815
12968     36175815
12969     36175815
12970     36175815
12971     36175815
12972     36175815
12973     36175815
12974     36175815
12975     36175815
12976     36175815
12977     36175815
12978     36175815
12979     36175815
12980     36175815
12981     36175815
12982     36175815
12983     36175815
12984     36175815
12985     36175815
12986     36175815
12987     36175815
12988     36175815
12989     36175815
12990     36175815
12991     36175815
12992     36175815
12993     36175815
12994     17707455
12995     32622096
12996     15346738
12997     43696079
12998     43696079
12999     43696079
13000     43696079
13001     43696079
13002     43696079
13003     43696079
13004     43696079
13005     43696079
13006     43696079
13007     43696079
13008     43696079
13009     43696079
13010     43696079
13011     43696079
13012     43696079
13013     43696079
13014     43696079
13015     43696079
13016     43696079
13017     43696079
13018      5133805
13019      5133805
13020      5133805
13021      5133805
13022      5133805
13023      5133805
13024      5133805
13025     31732075
13026     31732075
13027     31732075
13028     31732075
13029     31732075
13030     31732075
13031     31732075
13032     31732075
13033     31732075
13034     31732075
13035     31732075
13036     31732075
13037     31732075
13038     31732075
13039     31732075
13040     31732075
13041     31732075
13042     31732075
13043     31732075
13044     31732075
13045     31732075
13046     31732075
13047     31732075
13048     31732075
13049     31732075
13050     31732075
13051     31732075
13052     31732075
13053     31732075
13054     31732075
13055     31732075
13056     31732075
13057     31732075
13058     31732075
13059     31732075
13060     31732075
13061     31732075
13062     31732075
13063     31732075
13064     31732075
13065     31732075
13066     31732075
13067     31732075
13068     31732075
13069     31732075
13070     31732075
13071     31732075
13072     31732075
13073     31732075
13074     31732075
13075     31732075
13076     31732075
13077     31732075
13078     31732075
13079     31732075
13080     31732075
13081     31732075
13082     31732075
13083     31732075
13084     31732075
13085     31732075
13086     31732075
13087     31732075
13088     31732075
13089     31732075
13090     31732075
13091     31732075
13092     31732075
13093     31732075
13094     31732075
13095     31732075
13096     31732075
13097     31732075
13098     31732075
13099     31732075
13100     31732075
13101     31732075
13102     31732075
13103     31732075
13104     31732075
13105     31732075
13106     31732075
13107     31732075
13108     41953890
13109     41953890
13110     41953890
13111     41953890
13112     41953890
13113     41953890
13114     41953890
13115     41953890
13116     41953890
13117     41953890
13118     41953890
13119     41953890
13120     41953890
13121     41953890
13122     41953890
13123     41953890
13124     41953890
13125     41953890
13126     41953890
13127     41953890
13128     41953890
13129     41953890
13130     41953890
13131     41953890
13132     41953890
13133     41953890
13134     41953890
13135     41953890
13136     41953890
13137     41953890
13138     41953890
13139     41953890
13140     41953890
13141     41953890
13142     41953890
13143     41953890
13144     41953890
13145     41953890
13146     41953890
13147     41953890
13148     41953890
13149     41953890
13150     41953890
13151     41953890
13152     41953890
13153     41953890
13154     41953890
13155     41953890
13156     41953890
13157     41953890
13158     41953890
13159     41953890
13160     41953890
13161     41953890
13162     41953890
13163     41953890
13164     41953890
13165     41953890
13166     41953890
13167     41953890
13168     41953890
13169     41953890
13170     41953890
13171     41953890
13172     41953890
13173     41953890
13174     34784886
13175     34784886
13176     34784886
13177     34784886
13178     34784886
13179     32314784
13180     32314784
13181     32314784
13182     32314784
13183     32314784
13184     32314784
13185     32314784
13186     32314784
13187     32314784
13188     32314784
13189     32314784
13190     32314784
13191     32314784
13192     32314784
13193     32314784
13194     14020725
13195     14020725
13196     14020725
13197     14020725
13198      5040666
13199      5040666
13200      5040666
13201      5040666
13202      5040666
13203      5040666
13204      5040666
13205      5040666
13206      5040666
13207      5040666
13208      5040666
13209      5040666
13210      5040666
13211      5040666
13212      5040666
13213      5040666
13214      5040666
13215      5040666
13216      5040666
13217      5040666
13218      5040666
13219      5040666
13220      5040666
13221      5040666
13222      5040666
13223      5040666
13224      5040666
13225      5040666
13226      5040666
13227      5040666
13228      5040666
13229      5040666
13230      5040666
13231     38502621
13232     18967058
13233     18967058
13234     42509661
13235     42509661
13236     42509661
13237     42509661
13238     45873345
13239     43783573
13240     15627342
13241     15627342
13242     15627342
13243     15627342
13244     15627342
13245     15627342
13246     15627342
13247     15627342
13248     15627342
13249     15627342
13250     15627342
13251     15627342
13252     15627342
13253     15627342
13254     15627342
13255     15627342
13256     15627342
13257     15627342
13258     15627342
13259     15627342
13260     15627342
13261     15627342
13262     15627342
13263     15627342
13264     15627342
13265     15627342
13266     15627342
13267     15627342
13268     15627342
13269     15627342
13270     15627342
13271     15627342
13272     15627342
13273     15627342
13274     15627342
13275     15627342
13276     15627342
13277     15627342
13278     15627342
13279     15627342
13280     15627342
13281     15627342
13282     15627342
13283     15627342
13284     15627342
13285     15627342
13286     15627342
13287     15627342
13288     15627342
13289     15627342
13290     15627342
13291     15627342
13292     15627342
13293     15627342
13294     15627342
13295     15627342
13296     15627342
13297     15627342
13298     15627342
13299     15627342
13300     15627342
13301     15627342
13302     15627342
13303     15627342
13304     15627342
13305     15627342
13306     15627342
13307     15627342
13308     15627342
13309     15627342
13310     15627342
13311     45410065
13312     45410065
13313     45410065
13314     45410065
13315     14763090
13316     14763090
13317     14598303
13318     14598303
13319     14598303
13320     14598303
13321     14598303
13322     30480344
13323     30436964
13324     10576587
13325     10606140
13326     10606140
13327     10606140
13328     10606140
13329     10606140
13330     10606140
13331     10606140
13332     10606140
13333     10606140
13334     10606140
13335     10606140
13336     10606140
13337     10606140
13338     10606140
13339     10606140
13340     10606140
13341     10606140
13342     10606140
13343     10606140
13344     10606140
13345     10606140
13346     10606140
13347     10606140
13348     10606140
13349     10606140
13350     10606140
13351     10606140
13352     10606140
13353     10606140
13354     10606140
13355     10606140
13356     10606140
13357     10606140
13358     10606140
13359     10606140
13360     10606140
13361     10606140
13362     10606140
13363     10606140
13364     10606140
13365     10606140
13366     10606140
13367     10606140
13368     10606140
13369     10606140
13370     10606140
13371     10606140
13372     10606140
13373     10606140
13374     10606140
13375     10606140
13376     10606140
13377     10606140
13378     10606140
13379     10606140
13380     10606140
13381     10606140
13382     10606140
13383     10606140
13384     10606140
13385     10606140
13386     10606140
13387     10606140
13388     10606140
13389     10606140
13390     10606140
13391     10606140
13392     10606140
13393     10606140
13394     10606140
13395     10606140
13396     10606140
13397     10606140
13398     10606140
13399     10606140
13400     10606140
13401     10606140
13402     10606140
13403     10606140
13404     10606140
13405     10606140
13406     10606140
13407     10606140
13408     10606140
13409     10606140
13410     10606140
13411     10606140
13412     10606140
13413     10606140
13414     10606140
13415     10606140
13416     10606140
13417     10606140
13418     10606140
13419     10606140
13420     10606140
13421     10606140
13422     10606140
13423     24321377
13424     24321377
13425     24321377
13426     24321377
13427     23890541
13428     23890541
13429     23890541
13430      9129752
13431      9129752
13432      9129752
13433      9129752
13434      9129752
13435      9129752
13436      9129752
13437      9129752
13438      9129752
13439      9129752
13440      9059060
13441      9059060
13442     23390996
13443      8880976
13444      8880976
13445      8880976
13446      8880976
13447      8880976
13448      8880976
13449      8880976
13450      8880976
13451      8880976
13452     31453223
13453     30211783
13454     30211783
13455     30211783
13456     30166756
13457     10358620
13458     10358620
13459     25583326
13460     10331537
13461      9810848
13462      9376645
13463      9376645
13464      9376645
13465      9376645
13466      9368775
13467      9368775
13468      9368775
13469      9368775
13470      9368775
13471      9368775
13472      9368775
13473      9368775
13474      9368775
13475      9368775
13476      9368775
13477      9368775
13478      9368775
13479      9368775
13480      9368775
13481      9368775
13482      9368775
13483      9368775
13484      9368775
13485      9368775
13486     25069906
13487     25069906
13488     25069906
13489     25069906
13490     25031529
13491     24188342
13492     24188342
13493     24188342
13494      9088391
13495      9027329
13496      8846646
13497      8801880
13498      8761335
13499      8761335
13500      8761335
13501      8761335
13502      8701562
13503      8680934
13504      8603984
13505      8438551
13506     14014880
13507     14014880
13508     14014880
13509     14014880
13510     14014880
13511     14014880
13512     14014880
13513     14014880
13514     14014880
13515     14014880
13516     14014880
13517     30537381
13518     25607517
13519     25607517
13520     25607517
13521     25607517
13522     25607517
13523     25607517
13524     25607517
13525     25607517
13526     25607517
13527     25607517
13528     25607517
13529     25607517
13530     25607517
13531     25607517
13532     25607517
13533     25607517
13534     25607517
13535     25607517
13536     25607517
13537     25607517
13538     25607517
13539     25607517
13540     25607517
13541     25607517
13542     25607517
13543     25607517
13544     25607517
13545     25607517
13546     25607517
13547     25575168
13548     25575168
13549     25575168
13550     25575168
13551      9914846
13552      9914846
13553      9914846
13554      9914846
13555      9914846
13556     10119309
13557     10119309
13558     10119309
13559     10119309
13560     10119309
13561     10119309
13562     10119309
13563     10119309
13564     10119309
13565     10119309
13566     10119309
13567     10119309
13568     10029855
13569     10129029
13570     10129029
13571     42615058
13572     42615058
13573     26569252
13574     26569252
13575     26569252
13576     26569252
13577     26569252
13578     26569252
13579     26569252
13580     26569252
13581     15696581
13582     15696581
13583     15067837
13584     15067837
13585     45376382
13586     32308737
13587     32308737
13588     39011329
13589     39011329
13590     39011329
13591     32261585
13592     38824955
13593     38824955
13594     38824955
13595     38824955
13596     38824955
13597     38824955
13598     38824955
13599     38824955
13600     38824955
13601     38824955
13602     38824955
13603     38824955
13604     38824955
13605     38824955
13606     38824955
13607     38824955
13608     38824955
13609     38824955
13610     38824955
13611     38824955
13612     38824955
13613     38824955
13614     38824955
13615     38824955
13616     38824955
13617     38824955
13618     38824955
13619     38824955
13620     38824955
13621     38824955
13622     38824955
13623     38824955
13624     38824955
13625     38824955
13626     42143453
13627     42143453
13628     42143453
13629     42143453
13630     42143453
13631     42143453
13632     42143453
13633     42143453
13634     42143453
13635     42143453
13636     42143453
13637     42143453
13638     42143453
13639     42143453
13640     42143453
13641     42143453
13642     42143453
13643     42143453
13644     42143453
13645     42143453
13646     42143453
13647     42143453
13648     42143453
13649     42143453
13650     42143453
13651     42143453
13652     42143453
13653     42143453
13654     42143453
13655     42143453
13656     42143453
13657     42143453
13658     42143453
13659     42143453
13660     42143453
13661     42143453
13662     42143453
13663     42143453
13664     42143453
13665     42143453
13666     42143453
13667     42143453
13668     42143453
13669     42143453
13670     42143453
13671     42143453
13672     42143453
13673     42143453
13674     42143453
13675     42143453
13676     42143453
13677     42143453
13678     42143453
13679     42143453
13680     42143453
13681     42143453
13682     42143453
13683     42143453
13684     42143453
13685     42143453
13686     42143453
13687     42143453
13688     42143453
13689     42143453
13690     42143453
13691     42143453
13692     42143453
13693     42143453
13694     42143453
13695     42143453
13696     42143453
13697     42143453
13698     42143453
13699     42143453
13700     42143453
13701     42143453
13702     42143453
13703     42143453
13704     42143453
13705     42143453
13706     42143453
13707     42143453
13708     42143453
13709     42143453
13710     42143453
13711     42143453
13712     42143453
13713     42143453
13714     42143453
13715     42143453
13716     42143453
13717     42143453
13718     42143453
13719     42143453
13720     42143453
13721     42143453
13722     42143453
13723     42143453
13724     42143453
13725     42143453
13726     42143453
13727     42143453
13728     42143453
13729     42143453
13730     42143453
13731     42143453
13732     42143453
13733     42143453
13734     42143453
13735     42143453
13736     42143453
13737     42143453
13738     42143453
13739     42143453
13740     42143453
13741     42143453
13742     42143453
13743     42143453
13744     42143453
13745     42143453
13746     42143453
13747     42143453
13748     42143453
13749     42143453
13750     42143453
13751     42143453
13752     42143453
13753     42143453
13754     42143453
13755     42143453
13756     42143453
13757     42143453
13758     42143453
13759     42143453
13760     42143453
13761     42143453
13762     42143453
13763     42143453
13764     42143453
13765     42143453
13766     42143453
13767     42143453
13768     42143453
13769     42143453
13770     42143453
13771     42143453
13772     42143453
13773     42143453
13774     42143453
13775     42143453
13776     42143453
13777      5154734
13778      5154734
13779      5154734
13780      5154734
13781      5154734
13782      5154734
13783      5154734
13784      5154734
13785      5154734
13786      5154734
13787      5154734
13788      5154734
13789      5154734
13790      5154734
13791      5154734
13792      5154734
13793      5154734
13794      5154734
13795      5154734
13796      5154734
13797      5154734
13798      5154734
13799      5154734
13800      5154734
13801      5154734
13802      5154734
13803      5154734
13804      5154734
13805      5154734
13806      5154734
13807      5154734
13808      5154734
13809      5154734
13810      5154734
13811      5154734
13812      5154734
13813      5154734
13814      5154734
13815      5154734
13816      5154734
13817      5154734
13818      5154734
13819      5154734
13820      5154734
13821      5154734
13822      5154734
13823      5154734
13824      5154734
13825      5154734
13826      5154734
13827      5154734
13828      5128425
13829      5128425
13830      5128425
13831      5128425
13832      5128425
13833      5128425
13834      5128425
13835      5128425
13836      5128425
13837      5128425
13838      5128425
13839      5128425
13840      5128425
13841      5128425
13842      5128425
13843      5128425
13844      5128425
13845      5128425
13846      5128425
13847      5128425
13848      5128425
13849      5128425
13850      5128425
13851      5128425
13852      5128425
13853      5128425
13854      5128425
13855      5128425
13856      5128425
13857      5128425
13858      5128425
13859      5128425
13860      5128425
13861      5128425
13862      5128425
13863      5128425
13864      5128425
13865      5128425
13866      5128425
13867      5128425
13868      5128425
13869      5128425
13870      5128425
13871      5128425
13872      5128425
13873      5128425
13874      5128425
13875      5128425
13876      5128425
13877      5128425
13878      5128425
13879      5128425
13880      5128425
13881      5128425
13882      5128425
13883     13067033
13884     13067033
13885     13067033
13886     13067033
13887     13067033
13888     13067033
13889     13067033
13890     13067033
13891     13067033
13892     13067033
13893     13067033
13894     13067033
13895     13067033
13896     13067033
13897     13067033
13898     13067033
13899     13067033
13900     13067033
13901     13067033
13902     13067033
13903     13067033
13904     13067033
13905     10640338
13906     38206080
13907     38206080
13908     30881555
13909     30813252
13910     30742595
13911     37916446
13912     37916446
13913     37916446
13914     37916446
13915     37719569
13916     37719569
13917     30590397
13918     30593075
13919     46691226
13920     30598902
13921     30601382
13922     30613930
13923     30616699
13924     30620850
13925     44979274
13926     44994086
13927     44994086
13928     44994086
13929     44994086
13930     44995185
13931     45004727
13932     45004727
13933     45074165
13934     45074165
13935     45074165
13936     45074165
13937     43996420
13938     23432282
13939      5597490
13940      7474494
13941     13047689
13942     16539911
13943     25101415
13944     33919338
13945     36066652
13946     31664482
13947     43919901
13948     32563210
13949     30375378
13950     39344628
13951     26190813
13952     17431647
13953      9647000
13954     41167629
13955     40513279
13956     16539169
13957     43609989
13958      8388453
13959     14076038
13960     41882300
13961     38894867
13962      8212724
13963      9902627
13964     39447069
13965      9908010
13966     13406460
13967     32377322
13968     29180639
13969     14070986
13970     32538434
13971     18686164
13972     22205332
13973     13968595
13974     37215903
13975      8439975
13976      8395759
13977     17576906
13978     46525722

Verbs for inspecting data

Summary

  • as_tibble() (dplyr::as_data_frame) to convert to a tibble (different from as.data.frame in R base)
  • glimpse() - some of each column
  • filter() - subsetting
  • arrange() - sorting (desc to reverse the sort)
  • select() - picking (and omiting) columns

Value transformation

mutate()

rename()

Renaming columns

  • Rename columns with rename(new_name = old_name).
    • To keep the order correct, read/remember the renaming = as "was".
    • Rename will replace column names
gene_by_exon %>%
  rename(stop = end_position, start = start_position)
      ensembl_gene_id ensembl_transcript_id ensembl_exon_id
1     ENSG00000264452       ENST00000583496 ENSE00002709519
2     ENSG00000274046       ENST00000617336 ENSE00003722332
3     ENSG00000278775       ENST00000619112 ENSE00003751812
4     ENSG00000276873       ENST00000616808 ENSE00003730872
5     ENSG00000236545       ENST00000458654 ENSE00001729372
6     ENSG00000236545       ENST00000458654 ENSE00001673061
7     ENSG00000160255       ENST00000302347 ENSE00003791070
8     ENSG00000160255       ENST00000302347 ENSE00003688153
9     ENSG00000160255       ENST00000302347 ENSE00003784896
10    ENSG00000160255       ENST00000302347 ENSE00003569344
11    ENSG00000160255       ENST00000302347 ENSE00003648854
12    ENSG00000160255       ENST00000302347 ENSE00003786943
13    ENSG00000160255       ENST00000302347 ENSE00003692776
14    ENSG00000160255       ENST00000302347 ENSE00003596110
15    ENSG00000160255       ENST00000302347 ENSE00003676989
16    ENSG00000160255       ENST00000302347 ENSE00003610443
17    ENSG00000160255       ENST00000302347 ENSE00003474058
18    ENSG00000160255       ENST00000302347 ENSE00003538737
19    ENSG00000160255       ENST00000302347 ENSE00003608831
20    ENSG00000160255       ENST00000302347 ENSE00003634407
21    ENSG00000160255       ENST00000302347 ENSE00001530484
22    ENSG00000160255       ENST00000302347 ENSE00003654080
23    ENSG00000160255       ENST00000518033 ENSE00002121803
24    ENSG00000160255       ENST00000518033 ENSE00002135361
25    ENSG00000160255       ENST00000523126 ENSE00002119259
26    ENSG00000160255       ENST00000523126 ENSE00002100821
27    ENSG00000160255       ENST00000521995 ENSE00003791070
28    ENSG00000160255       ENST00000521995 ENSE00003634407
29    ENSG00000160255       ENST00000521995 ENSE00001530484
30    ENSG00000160255       ENST00000521995 ENSE00002118353
31    ENSG00000160255       ENST00000397846 ENSE00003791070
32    ENSG00000160255       ENST00000397846 ENSE00003634407
33    ENSG00000160255       ENST00000397846 ENSE00001854101
34    ENSG00000160255       ENST00000397846 ENSE00003532481
35    ENSG00000160255       ENST00000479849 ENSE00003476552
36    ENSG00000160255       ENST00000479849 ENSE00001858561
37    ENSG00000160255       ENST00000479849 ENSE00003542143
38    ENSG00000160255       ENST00000517819 ENSE00003791070
39    ENSG00000160255       ENST00000517819 ENSE00003634407
40    ENSG00000160255       ENST00000517819 ENSE00002110944
41    ENSG00000160255       ENST00000517819 ENSE00002093217
42    ENSG00000160255       ENST00000524251 ENSE00002104346
43    ENSG00000160255       ENST00000524251 ENSE00002135256
44    ENSG00000160255       ENST00000524251 ENSE00003650963
45    ENSG00000160255       ENST00000524251 ENSE00002125359
46    ENSG00000160255       ENST00000520389 ENSE00003791070
47    ENSG00000160255       ENST00000520389 ENSE00003634407
48    ENSG00000160255       ENST00000520389 ENSE00003607150
49    ENSG00000160255       ENST00000520389 ENSE00002121803
50    ENSG00000160255       ENST00000520389 ENSE00002103133
51    ENSG00000160255       ENST00000520389 ENSE00002090699
52    ENSG00000160255       ENST00000522688 ENSE00003476552
53    ENSG00000160255       ENST00000522688 ENSE00002089808
54    ENSG00000160255       ENST00000522688 ENSE00002104346
55    ENSG00000160255       ENST00000522688 ENSE00003480328
56    ENSG00000160255       ENST00000522688 ENSE00002140166
57    ENSG00000160255       ENST00000517563 ENSE00003791070
58    ENSG00000160255       ENST00000517563 ENSE00003688153
59    ENSG00000160255       ENST00000517563 ENSE00003634407
60    ENSG00000160255       ENST00000517563 ENSE00001530485
61    ENSG00000160255       ENST00000517563 ENSE00002135901
62    ENSG00000160255       ENST00000517563 ENSE00002137412
63    ENSG00000160255       ENST00000320216 ENSE00003791070
64    ENSG00000160255       ENST00000320216 ENSE00003688153
65    ENSG00000160255       ENST00000320216 ENSE00003784896
66    ENSG00000160255       ENST00000320216 ENSE00003569344
67    ENSG00000160255       ENST00000320216 ENSE00003648854
68    ENSG00000160255       ENST00000320216 ENSE00003786943
69    ENSG00000160255       ENST00000320216 ENSE00001760685
70    ENSG00000160255       ENST00000521987 ENSE00003639138
71    ENSG00000160255       ENST00000521987 ENSE00002129948
72    ENSG00000160255       ENST00000521987 ENSE00002100250
73    ENSG00000160255       ENST00000523663 ENSE00003791070
74    ENSG00000160255       ENST00000523663 ENSE00003688153
75    ENSG00000160255       ENST00000523663 ENSE00003784896
76    ENSG00000160255       ENST00000523663 ENSE00003634407
77    ENSG00000160255       ENST00000523663 ENSE00002137392
78    ENSG00000160255       ENST00000522931 ENSE00003791070
79    ENSG00000160255       ENST00000522931 ENSE00003688153
80    ENSG00000160255       ENST00000522931 ENSE00003634407
81    ENSG00000160255       ENST00000522931 ENSE00002113067
82    ENSG00000160255       ENST00000522931 ENSE00002121804
83    ENSG00000160255       ENST00000479202 ENSE00003475946
84    ENSG00000160255       ENST00000479202 ENSE00001841395
85    ENSG00000160255       ENST00000479202 ENSE00001846827
86    ENSG00000160255       ENST00000523323 ENSE00003562837
87    ENSG00000160255       ENST00000523323 ENSE00003470757
88    ENSG00000160255       ENST00000523323 ENSE00003621554
89    ENSG00000160255       ENST00000523323 ENSE00003610265
90    ENSG00000160255       ENST00000523323 ENSE00003475946
91    ENSG00000160255       ENST00000523323 ENSE00003634407
92    ENSG00000160255       ENST00000523323 ENSE00003639138
93    ENSG00000160255       ENST00000523323 ENSE00003474596
94    ENSG00000160255       ENST00000523323 ENSE00003573867
95    ENSG00000160255       ENST00000523323 ENSE00003583970
96    ENSG00000160255       ENST00000523323 ENSE00002122904
97    ENSG00000160255       ENST00000523323 ENSE00003658064
98    ENSG00000160255       ENST00000523323 ENSE00003607150
99    ENSG00000160255       ENST00000523323 ENSE00003587147
100   ENSG00000160255       ENST00000523323 ENSE00003484049
101   ENSG00000160255       ENST00000523323 ENSE00003477398
102   ENSG00000160255       ENST00000397850 ENSE00003791070
103   ENSG00000160255       ENST00000397850 ENSE00003688153
104   ENSG00000160255       ENST00000397850 ENSE00003784896
105   ENSG00000160255       ENST00000397850 ENSE00003569344
106   ENSG00000160255       ENST00000397850 ENSE00003648854
107   ENSG00000160255       ENST00000397850 ENSE00003786943
108   ENSG00000160255       ENST00000397850 ENSE00003692776
109   ENSG00000160255       ENST00000397850 ENSE00003596110
110   ENSG00000160255       ENST00000397850 ENSE00003676989
111   ENSG00000160255       ENST00000397850 ENSE00003610443
112   ENSG00000160255       ENST00000397850 ENSE00003474058
113   ENSG00000160255       ENST00000397850 ENSE00003538737
114   ENSG00000160255       ENST00000397850 ENSE00003608831
115   ENSG00000160255       ENST00000397850 ENSE00003564872
116   ENSG00000160255       ENST00000397850 ENSE00003634407
117   ENSG00000160255       ENST00000397850 ENSE00002097953
118   ENSG00000160255       ENST00000397850 ENSE00001530484
119   ENSG00000160255       ENST00000355153 ENSE00003791070
120   ENSG00000160255       ENST00000355153 ENSE00003688153
121   ENSG00000160255       ENST00000355153 ENSE00003784896
122   ENSG00000160255       ENST00000355153 ENSE00003569344
123   ENSG00000160255       ENST00000355153 ENSE00003648854
124   ENSG00000160255       ENST00000355153 ENSE00003786943
125   ENSG00000160255       ENST00000355153 ENSE00003692776
126   ENSG00000160255       ENST00000355153 ENSE00003596110
127   ENSG00000160255       ENST00000355153 ENSE00003676989
128   ENSG00000160255       ENST00000355153 ENSE00003610443
129   ENSG00000160255       ENST00000355153 ENSE00003474058
130   ENSG00000160255       ENST00000355153 ENSE00003538737
131   ENSG00000160255       ENST00000355153 ENSE00003608831
132   ENSG00000160255       ENST00000355153 ENSE00003564872
133   ENSG00000160255       ENST00000355153 ENSE00003634407
134   ENSG00000160255       ENST00000355153 ENSE00001430780
135   ENSG00000160255       ENST00000498666 ENSE00003562837
136   ENSG00000160255       ENST00000498666 ENSE00003470757
137   ENSG00000160255       ENST00000498666 ENSE00003621554
138   ENSG00000160255       ENST00000498666 ENSE00003610265
139   ENSG00000160255       ENST00000498666 ENSE00003475946
140   ENSG00000160255       ENST00000498666 ENSE00003491446
141   ENSG00000160255       ENST00000498666 ENSE00001905428
142   ENSG00000160255       ENST00000498666 ENSE00003583278
143   ENSG00000160255       ENST00000498666 ENSE00003476552
144   ENSG00000160255       ENST00000498666 ENSE00003602491
145   ENSG00000160255       ENST00000498666 ENSE00003639138
146   ENSG00000160255       ENST00000498666 ENSE00003474596
147   ENSG00000160255       ENST00000498666 ENSE00003573867
148   ENSG00000160255       ENST00000498666 ENSE00003583970
149   ENSG00000160255       ENST00000498666 ENSE00001949282
150   ENSG00000160255       ENST00000397857 ENSE00003791070
151   ENSG00000160255       ENST00000397857 ENSE00003688153
152   ENSG00000160255       ENST00000397857 ENSE00003784896
153   ENSG00000160255       ENST00000397857 ENSE00003569344
154   ENSG00000160255       ENST00000397857 ENSE00003648854
155   ENSG00000160255       ENST00000397857 ENSE00003786943
156   ENSG00000160255       ENST00000397857 ENSE00003692776
157   ENSG00000160255       ENST00000397857 ENSE00003596110
158   ENSG00000160255       ENST00000397857 ENSE00003676989
159   ENSG00000160255       ENST00000397857 ENSE00003610443
160   ENSG00000160255       ENST00000397857 ENSE00003474058
161   ENSG00000160255       ENST00000397857 ENSE00003538737
162   ENSG00000160255       ENST00000397857 ENSE00003608831
163   ENSG00000160255       ENST00000397857 ENSE00003564872
164   ENSG00000160255       ENST00000397857 ENSE00001530495
165   ENSG00000160255       ENST00000397857 ENSE00003634407
166   ENSG00000160255       ENST00000397854 ENSE00003791070
167   ENSG00000160255       ENST00000397854 ENSE00003688153
168   ENSG00000160255       ENST00000397854 ENSE00003569344
169   ENSG00000160255       ENST00000397854 ENSE00003648854
170   ENSG00000160255       ENST00000397854 ENSE00003786943
171   ENSG00000160255       ENST00000397854 ENSE00003692776
172   ENSG00000160255       ENST00000397854 ENSE00003596110
173   ENSG00000160255       ENST00000397854 ENSE00003676989
174   ENSG00000160255       ENST00000397854 ENSE00003610443
175   ENSG00000160255       ENST00000397854 ENSE00003474058
176   ENSG00000160255       ENST00000397854 ENSE00003538737
177   ENSG00000160255       ENST00000397854 ENSE00003608831
178   ENSG00000160255       ENST00000397854 ENSE00003564872
179   ENSG00000160255       ENST00000397854 ENSE00003634407
180   ENSG00000160255       ENST00000397854 ENSE00001948527
181   ENSG00000160255       ENST00000475170 ENSE00001892842
182   ENSG00000160255       ENST00000475170 ENSE00003562837
183   ENSG00000160255       ENST00000475170 ENSE00003470757
184   ENSG00000160255       ENST00000475170 ENSE00003621554
185   ENSG00000160255       ENST00000475170 ENSE00003610265
186   ENSG00000160255       ENST00000475170 ENSE00003475946
187   ENSG00000160255       ENST00000475170 ENSE00003491446
188   ENSG00000160255       ENST00000397852 ENSE00001483672
189   ENSG00000160255       ENST00000397852 ENSE00003791070
190   ENSG00000160255       ENST00000397852 ENSE00003688153
191   ENSG00000160255       ENST00000397852 ENSE00003784896
192   ENSG00000160255       ENST00000397852 ENSE00003569344
193   ENSG00000160255       ENST00000397852 ENSE00003648854
194   ENSG00000160255       ENST00000397852 ENSE00003786943
195   ENSG00000160255       ENST00000397852 ENSE00003692776
196   ENSG00000160255       ENST00000397852 ENSE00003596110
197   ENSG00000160255       ENST00000397852 ENSE00003676989
198   ENSG00000160255       ENST00000397852 ENSE00003610443
199   ENSG00000160255       ENST00000397852 ENSE00003474058
200   ENSG00000160255       ENST00000397852 ENSE00003538737
201   ENSG00000160255       ENST00000397852 ENSE00003608831
202   ENSG00000160255       ENST00000397852 ENSE00003564872
203   ENSG00000238627       ENST00000410986 ENSE00001807022
204   ENSG00000252619       ENST00000516810 ENSE00002089087
205   ENSG00000281420       ENST00000626421 ENSE00003764467
206   ENSG00000281420       ENST00000626421 ENSE00003762175
207   ENSG00000211590       ENST00000390235 ENSE00001507662
208   ENSG00000223078       ENST00000411146 ENSE00001590964
209   ENSG00000200754       ENST00000363884 ENSE00001808378
210   ENSG00000283300       ENST00000637157 ENSE00003800948
211   ENSG00000263973       ENST00000585040 ENSE00002707623
212   ENSG00000160307       ENST00000291700 ENSE00001051348
213   ENSG00000160307       ENST00000291700 ENSE00001051347
214   ENSG00000160307       ENST00000291700 ENSE00003554900
215   ENSG00000160307       ENST00000367071 ENSE00001051348
216   ENSG00000160307       ENST00000367071 ENSE00001051347
217   ENSG00000160307       ENST00000367071 ENSE00001443411
218   ENSG00000160307       ENST00000367071 ENSE00003463155
219   ENSG00000160307       ENST00000397648 ENSE00001529559
220   ENSG00000160307       ENST00000397648 ENSE00001529558
221   ENSG00000160305       ENST00000400274 ENSE00001542216
222   ENSG00000160305       ENST00000400274 ENSE00002347315
223   ENSG00000160305       ENST00000400274 ENSE00002324363
224   ENSG00000160305       ENST00000400274 ENSE00002319629
225   ENSG00000160305       ENST00000400274 ENSE00002218277
226   ENSG00000160305       ENST00000400274 ENSE00002276427
227   ENSG00000160305       ENST00000400274 ENSE00003471299
228   ENSG00000160305       ENST00000400274 ENSE00001542215
229   ENSG00000160305       ENST00000400274 ENSE00003546587
230   ENSG00000160305       ENST00000400274 ENSE00003683586
231   ENSG00000160305       ENST00000400274 ENSE00003494381
232   ENSG00000160305       ENST00000400274 ENSE00003672705
233   ENSG00000160305       ENST00000400274 ENSE00003533110
234   ENSG00000160305       ENST00000400274 ENSE00003466019
235   ENSG00000160305       ENST00000400274 ENSE00003623916
236   ENSG00000160305       ENST00000400274 ENSE00003546483
237   ENSG00000160305       ENST00000400274 ENSE00003535268
238   ENSG00000160305       ENST00000400274 ENSE00003474907
239   ENSG00000160305       ENST00000400274 ENSE00003641160
240   ENSG00000160305       ENST00000400274 ENSE00003562990
241   ENSG00000160305       ENST00000400274 ENSE00002685752
242   ENSG00000160305       ENST00000400274 ENSE00002444500
243   ENSG00000160305       ENST00000400274 ENSE00002499829
244   ENSG00000160305       ENST00000400274 ENSE00002476417
245   ENSG00000160305       ENST00000400274 ENSE00002513022
246   ENSG00000160305       ENST00000400274 ENSE00002533498
247   ENSG00000160305       ENST00000400274 ENSE00003662615
248   ENSG00000160305       ENST00000400274 ENSE00003590044
249   ENSG00000160305       ENST00000400274 ENSE00003495758
250   ENSG00000160305       ENST00000400274 ENSE00003559256
251   ENSG00000160305       ENST00000400274 ENSE00003545429
252   ENSG00000160305       ENST00000400274 ENSE00002444706
253   ENSG00000160305       ENST00000400274 ENSE00002517274
254   ENSG00000160305       ENST00000400274 ENSE00002499891
255   ENSG00000160305       ENST00000400274 ENSE00003560718
256   ENSG00000160305       ENST00000400274 ENSE00003514252
257   ENSG00000160305       ENST00000400274 ENSE00003516999
258   ENSG00000160305       ENST00000400274 ENSE00003575495
259   ENSG00000160305       ENST00000457905 ENSE00002347315
260   ENSG00000160305       ENST00000457905 ENSE00002324363
261   ENSG00000160305       ENST00000457905 ENSE00002319629
262   ENSG00000160305       ENST00000457905 ENSE00002218277
263   ENSG00000160305       ENST00000457905 ENSE00002276427
264   ENSG00000160305       ENST00000457905 ENSE00003471299
265   ENSG00000160305       ENST00000457905 ENSE00003546587
266   ENSG00000160305       ENST00000457905 ENSE00003683586
267   ENSG00000160305       ENST00000457905 ENSE00003494381
268   ENSG00000160305       ENST00000457905 ENSE00003672705
269   ENSG00000160305       ENST00000457905 ENSE00003533110
270   ENSG00000160305       ENST00000457905 ENSE00003466019
271   ENSG00000160305       ENST00000457905 ENSE00003623916
272   ENSG00000160305       ENST00000457905 ENSE00003546483
273   ENSG00000160305       ENST00000457905 ENSE00003535268
274   ENSG00000160305       ENST00000457905 ENSE00003474907
275   ENSG00000160305       ENST00000457905 ENSE00003641160
276   ENSG00000160305       ENST00000457905 ENSE00003562990
277   ENSG00000160305       ENST00000457905 ENSE00002685752
278   ENSG00000160305       ENST00000457905 ENSE00001895397
279   ENSG00000160305       ENST00000457905 ENSE00003480214
280   ENSG00000160305       ENST00000457905 ENSE00001863984
281   ENSG00000160305       ENST00000466639 ENSE00002347315
282   ENSG00000160305       ENST00000466639 ENSE00002324363
283   ENSG00000160305       ENST00000466639 ENSE00002319629
284   ENSG00000160305       ENST00000466639 ENSE00002218277
285   ENSG00000160305       ENST00000466639 ENSE00003471299
286   ENSG00000160305       ENST00000466639 ENSE00003546587
287   ENSG00000160305       ENST00000466639 ENSE00003683586
288   ENSG00000160305       ENST00000466639 ENSE00003494381
289   ENSG00000160305       ENST00000466639 ENSE00003672705
290   ENSG00000160305       ENST00000466639 ENSE00003533110
291   ENSG00000160305       ENST00000466639 ENSE00003466019
292   ENSG00000160305       ENST00000466639 ENSE00003623916
293   ENSG00000160305       ENST00000466639 ENSE00003546483
294   ENSG00000160305       ENST00000466639 ENSE00003535268
295   ENSG00000160305       ENST00000466639 ENSE00003474907
296   ENSG00000160305       ENST00000466639 ENSE00003641160
297   ENSG00000160305       ENST00000466639 ENSE00003562990
298   ENSG00000160305       ENST00000466639 ENSE00003480214
299   ENSG00000160305       ENST00000466639 ENSE00002254995
300   ENSG00000160305       ENST00000466639 ENSE00003558519
301   ENSG00000160305       ENST00000435722 ENSE00002347315
302   ENSG00000160305       ENST00000435722 ENSE00002324363
303   ENSG00000160305       ENST00000435722 ENSE00002319629
304   ENSG00000160305       ENST00000435722 ENSE00002218277
305   ENSG00000160305       ENST00000435722 ENSE00002276427
306   ENSG00000160305       ENST00000435722 ENSE00003471299
307   ENSG00000160305       ENST00000435722 ENSE00003546587
308   ENSG00000160305       ENST00000435722 ENSE00003683586
309   ENSG00000160305       ENST00000435722 ENSE00003494381
310   ENSG00000160305       ENST00000435722 ENSE00003672705
311   ENSG00000160305       ENST00000435722 ENSE00003533110
312   ENSG00000160305       ENST00000435722 ENSE00003466019
313   ENSG00000160305       ENST00000435722 ENSE00003623916
314   ENSG00000160305       ENST00000435722 ENSE00003546483
315   ENSG00000160305       ENST00000435722 ENSE00003535268
316   ENSG00000160305       ENST00000435722 ENSE00003474907
317   ENSG00000160305       ENST00000435722 ENSE00003641160
318   ENSG00000160305       ENST00000435722 ENSE00003562990
319   ENSG00000160305       ENST00000435722 ENSE00003480214
320   ENSG00000160305       ENST00000435722 ENSE00003558519
321   ENSG00000160305       ENST00000435722 ENSE00001831129
322   ENSG00000160305       ENST00000417564 ENSE00002347315
323   ENSG00000160305       ENST00000417564 ENSE00002324363
324   ENSG00000160305       ENST00000417564 ENSE00002319629
325   ENSG00000160305       ENST00000417564 ENSE00002218277
326   ENSG00000160305       ENST00000417564 ENSE00002276427
327   ENSG00000160305       ENST00000417564 ENSE00003471299
328   ENSG00000160305       ENST00000417564 ENSE00003546587
329   ENSG00000160305       ENST00000417564 ENSE00003683586
330   ENSG00000160305       ENST00000417564 ENSE00003494381
331   ENSG00000160305       ENST00000417564 ENSE00003672705
332   ENSG00000160305       ENST00000417564 ENSE00003533110
333   ENSG00000160305       ENST00000417564 ENSE00003466019
334   ENSG00000160305       ENST00000417564 ENSE00003623916
335   ENSG00000160305       ENST00000417564 ENSE00003546483
336   ENSG00000160305       ENST00000417564 ENSE00003535268
337   ENSG00000160305       ENST00000417564 ENSE00003474907
338   ENSG00000160305       ENST00000417564 ENSE00003641160
339   ENSG00000160305       ENST00000417564 ENSE00003562990
340   ENSG00000160305       ENST00000417564 ENSE00002685752
341   ENSG00000160305       ENST00000417564 ENSE00002444500
342   ENSG00000160305       ENST00000417564 ENSE00002499829
343   ENSG00000160305       ENST00000417564 ENSE00002476417
344   ENSG00000160305       ENST00000417564 ENSE00002513022
345   ENSG00000160305       ENST00000417564 ENSE00002533498
346   ENSG00000160305       ENST00000417564 ENSE00003662615
347   ENSG00000160305       ENST00000417564 ENSE00003590044
348   ENSG00000160305       ENST00000417564 ENSE00003495758
349   ENSG00000160305       ENST00000417564 ENSE00003559256
350   ENSG00000160305       ENST00000417564 ENSE00003545429
351   ENSG00000160305       ENST00000417564 ENSE00002444706
352   ENSG00000160305       ENST00000417564 ENSE00002517274
353   ENSG00000160305       ENST00000417564 ENSE00002499891
354   ENSG00000160305       ENST00000417564 ENSE00003560718
355   ENSG00000160305       ENST00000417564 ENSE00003514252
356   ENSG00000160305       ENST00000417564 ENSE00003516999
357   ENSG00000160305       ENST00000417564 ENSE00003480214
358   ENSG00000160305       ENST00000417564 ENSE00002096758
359   ENSG00000160305       ENST00000417564 ENSE00002109859
360   ENSG00000160305       ENST00000473752 ENSE00001893033
361   ENSG00000160305       ENST00000473752 ENSE00003624236
362   ENSG00000160305       ENST00000473752 ENSE00003609621
363   ENSG00000160305       ENST00000473752 ENSE00003658351
364   ENSG00000160305       ENST00000473752 ENSE00003548383
365   ENSG00000160305       ENST00000473752 ENSE00003466194
366   ENSG00000160305       ENST00000473752 ENSE00003560854
367   ENSG00000160305       ENST00000473752 ENSE00003532045
368   ENSG00000160305       ENST00000473752 ENSE00003548730
369   ENSG00000160305       ENST00000473752 ENSE00003682634
370   ENSG00000160305       ENST00000473752 ENSE00003477663
371   ENSG00000160305       ENST00000473752 ENSE00003491118
372   ENSG00000160305       ENST00000473752 ENSE00003531194
373   ENSG00000160305       ENST00000473752 ENSE00001845804
374   ENSG00000160305       ENST00000494435 ENSE00003624236
375   ENSG00000160305       ENST00000494435 ENSE00003609621
376   ENSG00000160305       ENST00000494435 ENSE00003658351
377   ENSG00000160305       ENST00000494435 ENSE00003548383
378   ENSG00000160305       ENST00000494435 ENSE00003466194
379   ENSG00000160305       ENST00000494435 ENSE00003560854
380   ENSG00000160305       ENST00000494435 ENSE00003532045
381   ENSG00000160305       ENST00000494435 ENSE00003548730
382   ENSG00000160305       ENST00000494435 ENSE00003682634
383   ENSG00000160305       ENST00000494435 ENSE00003477663
384   ENSG00000160305       ENST00000494435 ENSE00003491118
385   ENSG00000160305       ENST00000494435 ENSE00003531194
386   ENSG00000160305       ENST00000494435 ENSE00001832505
387   ENSG00000160305       ENST00000494435 ENSE00003631174
388   ENSG00000160305       ENST00000494435 ENSE00001943172
389   ENSG00000160305       ENST00000480553 ENSE00003531194
390   ENSG00000160305       ENST00000480553 ENSE00003631174
391   ENSG00000160305       ENST00000480553 ENSE00001819473
392   ENSG00000160305       ENST00000480553 ENSE00003563295
393   ENSG00000160305       ENST00000480553 ENSE00003468850
394   ENSG00000160305       ENST00000472364 ENSE00001940869
395   ENSG00000160305       ENST00000472364 ENSE00003614249
396   ENSG00000160305       ENST00000472364 ENSE00003628901
397   ENSG00000160305       ENST00000472364 ENSE00003633613
398   ENSG00000160305       ENST00000472364 ENSE00003646220
399   ENSG00000160305       ENST00000472364 ENSE00003482678
400   ENSG00000160305       ENST00000472364 ENSE00001863731
401   ENSG00000160305       ENST00000481883 ENSE00001916374
402   ENSG00000160305       ENST00000481883 ENSE00001912450
403   ENSG00000160305       ENST00000478105 ENSE00001814111
404   ENSG00000160305       ENST00000478105 ENSE00003639290
405   ENSG00000160305       ENST00000478105 ENSE00003479836
406   ENSG00000160305       ENST00000478105 ENSE00003657555
407   ENSG00000160305       ENST00000478105 ENSE00003504998
408   ENSG00000160305       ENST00000479654 ENSE00003479836
409   ENSG00000160305       ENST00000479654 ENSE00003657555
410   ENSG00000160305       ENST00000479654 ENSE00003504998
411   ENSG00000160305       ENST00000479654 ENSE00001864214
412   ENSG00000251851       ENST00000516042 ENSE00002088319
413   ENSG00000264462       ENST00000581792 ENSE00002687018
414   ENSG00000284448       ENST00000290239 ENSE00003729123
415   ENSG00000201025       ENST00000364155 ENSE00001438918
416   ENSG00000283904       ENST00000385060 ENSE00001500066
417   ENSG00000266299       ENST00000581787 ENSE00002688762
418   ENSG00000264580       ENST00000579137 ENSE00002701278
419   ENSG00000236519       ENST00000417820 ENSE00001654036
420   ENSG00000236519       ENST00000417820 ENSE00001648916
421   ENSG00000221864       ENST00000360770 ENSE00001406200
422   ENSG00000212933       ENST00000391618 ENSE00001509396
423   ENSG00000272948       ENST00000608405 ENSE00003705623
424   ENSG00000160299       ENST00000359568 ENSE00001740168
425   ENSG00000160299       ENST00000359568 ENSE00003693207
426   ENSG00000160299       ENST00000359568 ENSE00003471660
427   ENSG00000160299       ENST00000359568 ENSE00003614602
428   ENSG00000160299       ENST00000359568 ENSE00003653302
429   ENSG00000160299       ENST00000359568 ENSE00003669717
430   ENSG00000160299       ENST00000359568 ENSE00003461020
431   ENSG00000160299       ENST00000359568 ENSE00003679886
432   ENSG00000160299       ENST00000359568 ENSE00003636169
433   ENSG00000160299       ENST00000359568 ENSE00003634961
434   ENSG00000160299       ENST00000359568 ENSE00003613496
435   ENSG00000160299       ENST00000359568 ENSE00003595154
436   ENSG00000160299       ENST00000359568 ENSE00003505517
437   ENSG00000160299       ENST00000359568 ENSE00003581236
438   ENSG00000160299       ENST00000359568 ENSE00003484112
439   ENSG00000160299       ENST00000359568 ENSE00003464323
440   ENSG00000160299       ENST00000359568 ENSE00003678564
441   ENSG00000160299       ENST00000359568 ENSE00003460972
442   ENSG00000160299       ENST00000359568 ENSE00003625307
443   ENSG00000160299       ENST00000359568 ENSE00003655962
444   ENSG00000160299       ENST00000359568 ENSE00003582881
445   ENSG00000160299       ENST00000359568 ENSE00003536588
446   ENSG00000160299       ENST00000359568 ENSE00003618058
447   ENSG00000160299       ENST00000359568 ENSE00003541937
448   ENSG00000160299       ENST00000359568 ENSE00003551868
449   ENSG00000160299       ENST00000359568 ENSE00003675280
450   ENSG00000160299       ENST00000359568 ENSE00003615973
451   ENSG00000160299       ENST00000359568 ENSE00003566596
452   ENSG00000160299       ENST00000359568 ENSE00003499600
453   ENSG00000160299       ENST00000359568 ENSE00003605610
454   ENSG00000160299       ENST00000359568 ENSE00003634932
455   ENSG00000160299       ENST00000359568 ENSE00003634727
456   ENSG00000160299       ENST00000359568 ENSE00003668725
457   ENSG00000160299       ENST00000359568 ENSE00003680909
458   ENSG00000160299       ENST00000359568 ENSE00003622344
459   ENSG00000160299       ENST00000359568 ENSE00003517344
460   ENSG00000160299       ENST00000359568 ENSE00003526928
461   ENSG00000160299       ENST00000359568 ENSE00001591369
462   ENSG00000160299       ENST00000359568 ENSE00003482441
463   ENSG00000160299       ENST00000359568 ENSE00003499558
464   ENSG00000160299       ENST00000359568 ENSE00003498357
465   ENSG00000160299       ENST00000359568 ENSE00003637382
466   ENSG00000160299       ENST00000359568 ENSE00003675210
467   ENSG00000160299       ENST00000359568 ENSE00003507941
468   ENSG00000160299       ENST00000359568 ENSE00003518479
469   ENSG00000160299       ENST00000359568 ENSE00003608595
470   ENSG00000160299       ENST00000359568 ENSE00003625234
471   ENSG00000160299       ENST00000490468 ENSE00001830035
472   ENSG00000160299       ENST00000490468 ENSE00003486596
473   ENSG00000160299       ENST00000490468 ENSE00003656784
474   ENSG00000160299       ENST00000490468 ENSE00003615418
475   ENSG00000160299       ENST00000490468 ENSE00001838703
476   ENSG00000160299       ENST00000490468 ENSE00003689424
477   ENSG00000160299       ENST00000490468 ENSE00003613544
478   ENSG00000160299       ENST00000490468 ENSE00001872238
479   ENSG00000160299       ENST00000480896 ENSE00003486596
480   ENSG00000160299       ENST00000480896 ENSE00003656784
481   ENSG00000160299       ENST00000480896 ENSE00003615418
482   ENSG00000160299       ENST00000480896 ENSE00003689424
483   ENSG00000160299       ENST00000480896 ENSE00003613544
484   ENSG00000160299       ENST00000480896 ENSE00001865596
485   ENSG00000160299       ENST00000480896 ENSE00003627023
486   ENSG00000160299       ENST00000480896 ENSE00003570581
487   ENSG00000160299       ENST00000480896 ENSE00003692728
488   ENSG00000160299       ENST00000480896 ENSE00003614830
489   ENSG00000160299       ENST00000480896 ENSE00003685925
490   ENSG00000160299       ENST00000480896 ENSE00003458946
491   ENSG00000160299       ENST00000480896 ENSE00003651724
492   ENSG00000160299       ENST00000480896 ENSE00003476210
493   ENSG00000160299       ENST00000480896 ENSE00003490601
494   ENSG00000160299       ENST00000480896 ENSE00003595417
495   ENSG00000160299       ENST00000480896 ENSE00003472692
496   ENSG00000160299       ENST00000480896 ENSE00003510656
497   ENSG00000160299       ENST00000480896 ENSE00003681544
498   ENSG00000160299       ENST00000480896 ENSE00003617233
499   ENSG00000160299       ENST00000480896 ENSE00003520873
500   ENSG00000160299       ENST00000480896 ENSE00003596567
501   ENSG00000160299       ENST00000480896 ENSE00003686338
502   ENSG00000160299       ENST00000480896 ENSE00003576652
503   ENSG00000160299       ENST00000480896 ENSE00003671216
504   ENSG00000160299       ENST00000480896 ENSE00003535844
505   ENSG00000160299       ENST00000480896 ENSE00003459531
506   ENSG00000160299       ENST00000480896 ENSE00003620841
507   ENSG00000160299       ENST00000480896 ENSE00003656599
508   ENSG00000160299       ENST00000480896 ENSE00003529904
509   ENSG00000160299       ENST00000480896 ENSE00003655674
510   ENSG00000160299       ENST00000480896 ENSE00003479687
511   ENSG00000160299       ENST00000480896 ENSE00003513445
512   ENSG00000160299       ENST00000480896 ENSE00003507274
513   ENSG00000160299       ENST00000480896 ENSE00003472119
514   ENSG00000160299       ENST00000480896 ENSE00003561276
515   ENSG00000160299       ENST00000480896 ENSE00003597401
516   ENSG00000160299       ENST00000480896 ENSE00001908254
517   ENSG00000160299       ENST00000480896 ENSE00003694509
518   ENSG00000160299       ENST00000480896 ENSE00003615562
519   ENSG00000160299       ENST00000480896 ENSE00003544978
520   ENSG00000160299       ENST00000480896 ENSE00003560159
521   ENSG00000160299       ENST00000480896 ENSE00003627521
522   ENSG00000160299       ENST00000480896 ENSE00003674484
523   ENSG00000160299       ENST00000480896 ENSE00003562761
524   ENSG00000160299       ENST00000480896 ENSE00003494030
525   ENSG00000160299       ENST00000480896 ENSE00003673280
526   ENSG00000160299       ENST00000466474 ENSE00003689424
527   ENSG00000160299       ENST00000466474 ENSE00003613544
528   ENSG00000160299       ENST00000466474 ENSE00003627023
529   ENSG00000160299       ENST00000466474 ENSE00003570581
530   ENSG00000160299       ENST00000466474 ENSE00001851890
531   ENSG00000160299       ENST00000466474 ENSE00001821537
532   ENSG00000160299       ENST00000483844 ENSE00003613544
533   ENSG00000160299       ENST00000483844 ENSE00003570581
534   ENSG00000160299       ENST00000483844 ENSE00003692728
535   ENSG00000160299       ENST00000483844 ENSE00003614830
536   ENSG00000160299       ENST00000483844 ENSE00001895119
537   ENSG00000160299       ENST00000482575 ENSE00001815960
538   ENSG00000160299       ENST00000482575 ENSE00001921539
539   ENSG00000160299       ENST00000418394 ENSE00003498357
540   ENSG00000160299       ENST00000418394 ENSE00003637382
541   ENSG00000160299       ENST00000418394 ENSE00003675210
542   ENSG00000160299       ENST00000418394 ENSE00003507941
543   ENSG00000160299       ENST00000418394 ENSE00001624393
544   ENSG00000160299       ENST00000418394 ENSE00001767577
545   ENSG00000160299       ENST00000465356 ENSE00001949582
546   ENSG00000160299       ENST00000465356 ENSE00001843651
547   ENSG00000205439       ENST00000397907 ENSE00001370311
548   ENSG00000188155       ENST00000400368 ENSE00001542615
549   ENSG00000187175       ENST00000391617 ENSE00001382580
550   ENSG00000205445       ENST00000391621 ENSE00001509399
551   ENSG00000205445       ENST00000498210 ENSE00001917994
552   ENSG00000205445       ENST00000498210 ENSE00001878737
553   ENSG00000229356       ENST00000426578 ENSE00001789377
554   ENSG00000229356       ENST00000426578 ENSE00001745110
555   ENSG00000229356       ENST00000426578 ENSE00001630947
556   ENSG00000229356       ENST00000426578 ENSE00001594641
557   ENSG00000274868       ENST00000612139 ENSE00003747157
558   ENSG00000207416       ENST00000384685 ENSE00001499693
559   ENSG00000224388       ENST00000433378 ENSE00001788165
560   ENSG00000224388       ENST00000433378 ENSE00001752650
561   ENSG00000273102       ENST00000607953 ENSE00003707731
562   ENSG00000273102       ENST00000607953 ENSE00003706509
563   ENSG00000278996       ENST00000623664 ENSE00003755016
564   ENSG00000278996       ENST00000623664 ENSE00003756341
565   ENSG00000278996       ENST00000623664 ENSE00003759596
566   ENSG00000278996       ENST00000623664 ENSE00003754954
567   ENSG00000278996       ENST00000623664 ENSE00003759620
568   ENSG00000278996       ENST00000623664 ENSE00003758298
569   ENSG00000278996       ENST00000623664 ENSE00003757619
570   ENSG00000273017       ENST00000609910 ENSE00003709418
571   ENSG00000234293       ENST00000429843 ENSE00001637321
572   ENSG00000234293       ENST00000429843 ENSE00001669398
573   ENSG00000156273       ENST00000548219 ENSE00002371519
574   ENSG00000156273       ENST00000548219 ENSE00002367409
575   ENSG00000156273       ENST00000550131 ENSE00002367409
576   ENSG00000156273       ENST00000550131 ENSE00002344168
577   ENSG00000156273       ENST00000550131 ENSE00002371634
578   ENSG00000156273       ENST00000547141 ENSE00002367409
579   ENSG00000156273       ENST00000547141 ENSE00002344168
580   ENSG00000156273       ENST00000547141 ENSE00002417182
581   ENSG00000156273       ENST00000546469 ENSE00002367409
582   ENSG00000156273       ENST00000546469 ENSE00002344168
583   ENSG00000156273       ENST00000546469 ENSE00002425143
584   ENSG00000156273       ENST00000546469 ENSE00002363553
585   ENSG00000156273       ENST00000286800 ENSE00001376331
586   ENSG00000156273       ENST00000286800 ENSE00001025546
587   ENSG00000156273       ENST00000286800 ENSE00001025548
588   ENSG00000156273       ENST00000286800 ENSE00003204163
589   ENSG00000156273       ENST00000286800 ENSE00001192071
590   ENSG00000156273       ENST00000399921 ENSE00001025546
591   ENSG00000156273       ENST00000399921 ENSE00001025548
592   ENSG00000156273       ENST00000399921 ENSE00003204163
593   ENSG00000156273       ENST00000399921 ENSE00001192071
594   ENSG00000156273       ENST00000399921 ENSE00001540806
595   ENSG00000156273       ENST00000548467 ENSE00002367409
596   ENSG00000156273       ENST00000548467 ENSE00002357516
597   ENSG00000156273       ENST00000451655 ENSE00001025546
598   ENSG00000156273       ENST00000451655 ENSE00001661027
599   ENSG00000156273       ENST00000451655 ENSE00001705868
600   ENSG00000156273       ENST00000447177 ENSE00001025546
601   ENSG00000156273       ENST00000447177 ENSE00001797717
602   ENSG00000156273       ENST00000447177 ENSE00001643254
603   ENSG00000156273       ENST00000435072 ENSE00001025546
604   ENSG00000156273       ENST00000435072 ENSE00001649814
605   ENSG00000156273       ENST00000435072 ENSE00001728422
606   ENSG00000156273       ENST00000422809 ENSE00003204163
607   ENSG00000156273       ENST00000422809 ENSE00001644051
608   ENSG00000156273       ENST00000422809 ENSE00001662834
609   ENSG00000156273       ENST00000422809 ENSE00003499536
610   ENSG00000156273       ENST00000422809 ENSE00003586991
611   ENSG00000156273       ENST00000468059 ENSE00003204163
612   ENSG00000156273       ENST00000468059 ENSE00001890232
613   ENSG00000156273       ENST00000468059 ENSE00003567462
614   ENSG00000156273       ENST00000468059 ENSE00003583559
615   ENSG00000156273       ENST00000462262 ENSE00003542569
616   ENSG00000156273       ENST00000462262 ENSE00003621620
617   ENSG00000156273       ENST00000462262 ENSE00003530973
618   ENSG00000270116       ENST00000602568 ENSE00003455069
619   ENSG00000277991       ENST00000623374 ENSE00003759286
620   ENSG00000277991       ENST00000623374 ENSE00003758559
621   ENSG00000277991       ENST00000624633 ENSE00003758521
622   ENSG00000277991       ENST00000624633 ENSE00003756225
623   ENSG00000277991       ENST00000624633 ENSE00003756579
624   ENSG00000277991       ENST00000623190 ENSE00003751082
625   ENSG00000277991       ENST00000623190 ENSE00003759947
626   ENSG00000277991       ENST00000623637 ENSE00003757494
627   ENSG00000277991       ENST00000623637 ENSE00003757831
628   ENSG00000277991       ENST00000623783 ENSE00003756063
629   ENSG00000277991       ENST00000623783 ENSE00003756532
630   ENSG00000277991       ENST00000625005 ENSE00003756225
631   ENSG00000277991       ENST00000625005 ENSE00003759056
632   ENSG00000277991       ENST00000625005 ENSE00003758752
633   ENSG00000277991       ENST00000625005 ENSE00003756544
634   ENSG00000277991       ENST00000623797 ENSE00003756225
635   ENSG00000277991       ENST00000623797 ENSE00003758872
636   ENSG00000277991       ENST00000623797 ENSE00003759857
637   ENSG00000277991       ENST00000623643 ENSE00003756225
638   ENSG00000277991       ENST00000623643 ENSE00003757556
639   ENSG00000277991       ENST00000623643 ENSE00003755671
640   ENSG00000277739       ENST00000610460 ENSE00003746458
641   ENSG00000275664       ENST00000610482 ENSE00003750218
642   ENSG00000266133       ENST00000584048 ENSE00002722960
643   ENSG00000225043       ENST00000450007 ENSE00001666267
644   ENSG00000236384       ENST00000412102 ENSE00001757480
645   ENSG00000236384       ENST00000412102 ENSE00001630053
646   ENSG00000236384       ENST00000412102 ENSE00002070273
647   ENSG00000236384       ENST00000412102 ENSE00001746656
648   ENSG00000236384       ENST00000412102 ENSE00001723122
649   ENSG00000236384       ENST00000412102 ENSE00001789833
650   ENSG00000236384       ENST00000457881 ENSE00001723122
651   ENSG00000236384       ENST00000457881 ENSE00001601971
652   ENSG00000236384       ENST00000457881 ENSE00001615174
653   ENSG00000236384       ENST00000457881 ENSE00001747672
654   ENSG00000236384       ENST00000586552 ENSE00001630053
655   ENSG00000236384       ENST00000586552 ENSE00002887471
656   ENSG00000236384       ENST00000586552 ENSE00002878102
657   ENSG00000236384       ENST00000589300 ENSE00001630053
658   ENSG00000236384       ENST00000589300 ENSE00001746656
659   ENSG00000236384       ENST00000589300 ENSE00001723122
660   ENSG00000236384       ENST00000589300 ENSE00002887471
661   ENSG00000236384       ENST00000589300 ENSE00002910569
662   ENSG00000236384       ENST00000589300 ENSE00002906467
663   ENSG00000236384       ENST00000589300 ENSE00002966689
664   ENSG00000182912       ENST00000330490 ENSE00001327329
665   ENSG00000182912       ENST00000330490 ENSE00001310393
666   ENSG00000182912       ENST00000330490 ENSE00001623177
667   ENSG00000182912       ENST00000354333 ENSE00001841204
668   ENSG00000182912       ENST00000354333 ENSE00001701009
669   ENSG00000182912       ENST00000465978 ENSE00001887580
670   ENSG00000182912       ENST00000465978 ENSE00001948009
671   ENSG00000187766       ENST00000334662 ENSE00001332752
672   ENSG00000207098       ENST00000384370 ENSE00001808734
673   ENSG00000284550       ENST00000616627 ENSE00003733446
674   ENSG00000184787       ENST00000345496 ENSE00001810483
675   ENSG00000184787       ENST00000345496 ENSE00003461738
676   ENSG00000184787       ENST00000345496 ENSE00003545838
677   ENSG00000184787       ENST00000345496 ENSE00003513720
678   ENSG00000184787       ENST00000345496 ENSE00003611843
679   ENSG00000184787       ENST00000345496 ENSE00003540326
680   ENSG00000184787       ENST00000481546 ENSE00001872412
681   ENSG00000184787       ENST00000481546 ENSE00003471255
682   ENSG00000184787       ENST00000497630 ENSE00001872150
683   ENSG00000184787       ENST00000497630 ENSE00003508865
684   ENSG00000184787       ENST00000497630 ENSE00003551927
685   ENSG00000184787       ENST00000497630 ENSE00001887954
686   ENSG00000184787       ENST00000477954 ENSE00003508865
687   ENSG00000184787       ENST00000477954 ENSE00003551927
688   ENSG00000184787       ENST00000477954 ENSE00001814551
689   ENSG00000184787       ENST00000477954 ENSE00003526014
690   ENSG00000184787       ENST00000477954 ENSE00003530492
691   ENSG00000184787       ENST00000477954 ENSE00001944638
692   ENSG00000184787       ENST00000477954 ENSE00001884911
693   ENSG00000184787       ENST00000491513 ENSE00003461738
694   ENSG00000184787       ENST00000491513 ENSE00003545838
695   ENSG00000184787       ENST00000491513 ENSE00003508865
696   ENSG00000184787       ENST00000491513 ENSE00003551927
697   ENSG00000184787       ENST00000491513 ENSE00002216085
698   ENSG00000184787       ENST00000491513 ENSE00001929225
699   ENSG00000184787       ENST00000491513 ENSE00001915495
700   ENSG00000184787       ENST00000330942 ENSE00003513720
701   ENSG00000184787       ENST00000330942 ENSE00003611843
702   ENSG00000184787       ENST00000330942 ENSE00003526014
703   ENSG00000184787       ENST00000330942 ENSE00001853287
704   ENSG00000184787       ENST00000330942 ENSE00001336667
705   ENSG00000184787       ENST00000330942 ENSE00003549866
706   ENSG00000184787       ENST00000330942 ENSE00001859493
707   ENSG00000184787       ENST00000478200 ENSE00003461738
708   ENSG00000184787       ENST00000478200 ENSE00003545838
709   ENSG00000184787       ENST00000478200 ENSE00003513720
710   ENSG00000184787       ENST00000478200 ENSE00001835597
711   ENSG00000184787       ENST00000478200 ENSE00001876928
712   ENSG00000184787       ENST00000478200 ENSE00001932562
713   ENSG00000184787       ENST00000497664 ENSE00003508865
714   ENSG00000184787       ENST00000497664 ENSE00003526014
715   ENSG00000184787       ENST00000497664 ENSE00003530492
716   ENSG00000184787       ENST00000497664 ENSE00001814908
717   ENSG00000184787       ENST00000497664 ENSE00001943360
718   ENSG00000184787       ENST00000462569 ENSE00003526014
719   ENSG00000184787       ENST00000462569 ENSE00003530492
720   ENSG00000184787       ENST00000462569 ENSE00001816447
721   ENSG00000184787       ENST00000462569 ENSE00001946578
722   ENSG00000184787       ENST00000490450 ENSE00003526014
723   ENSG00000184787       ENST00000490450 ENSE00003530492
724   ENSG00000184787       ENST00000490450 ENSE00001336667
725   ENSG00000184787       ENST00000490450 ENSE00001816312
726   ENSG00000184787       ENST00000490450 ENSE00001840940
727   ENSG00000184787       ENST00000496395 ENSE00003526014
728   ENSG00000184787       ENST00000496395 ENSE00003530492
729   ENSG00000184787       ENST00000496395 ENSE00001895465
730   ENSG00000184787       ENST00000496395 ENSE00001882636
731   ENSG00000184787       ENST00000496395 ENSE00002260764
732   ENSG00000184787       ENST00000490091 ENSE00001931750
733   ENSG00000184787       ENST00000490091 ENSE00001908272
734   ENSG00000212935       ENST00000391620 ENSE00001509398
735   ENSG00000272804       ENST00000609664 ENSE00003707050
736   ENSG00000233754       ENST00000420273 ENSE00001656886
737   ENSG00000233754       ENST00000420273 ENSE00001724127
738   ENSG00000182240       ENST00000330333 ENSE00001304779
739   ENSG00000182240       ENST00000330333 ENSE00003469846
740   ENSG00000182240       ENST00000330333 ENSE00003645299
741   ENSG00000182240       ENST00000330333 ENSE00003571071
742   ENSG00000182240       ENST00000330333 ENSE00003499814
743   ENSG00000182240       ENST00000330333 ENSE00003680958
744   ENSG00000182240       ENST00000330333 ENSE00003650610
745   ENSG00000182240       ENST00000330333 ENSE00003625781
746   ENSG00000182240       ENST00000330333 ENSE00003637712
747   ENSG00000182240       ENST00000328735 ENSE00001304779
748   ENSG00000182240       ENST00000328735 ENSE00003469846
749   ENSG00000182240       ENST00000328735 ENSE00003645299
750   ENSG00000182240       ENST00000328735 ENSE00003571071
751   ENSG00000182240       ENST00000328735 ENSE00003499814
752   ENSG00000182240       ENST00000328735 ENSE00003680958
753   ENSG00000182240       ENST00000328735 ENSE00003650610
754   ENSG00000182240       ENST00000328735 ENSE00003625685
755   ENSG00000182240       ENST00000347667 ENSE00001304779
756   ENSG00000182240       ENST00000347667 ENSE00003469846
757   ENSG00000182240       ENST00000347667 ENSE00003645299
758   ENSG00000182240       ENST00000347667 ENSE00003571071
759   ENSG00000182240       ENST00000347667 ENSE00003499814
760   ENSG00000182240       ENST00000347667 ENSE00003680958
761   ENSG00000182240       ENST00000347667 ENSE00003625781
762   ENSG00000182240       ENST00000347667 ENSE00003704949
763   ENSG00000182240       ENST00000470864 ENSE00001817363
764   ENSG00000182240       ENST00000470864 ENSE00003544662
765   ENSG00000182240       ENST00000470864 ENSE00003610690
766   ENSG00000182240       ENST00000470864 ENSE00001861522
767   ENSG00000182240       ENST00000487994 ENSE00003544662
768   ENSG00000182240       ENST00000487994 ENSE00003610690
769   ENSG00000182240       ENST00000487994 ENSE00001845787
770   ENSG00000182240       ENST00000487994 ENSE00003463382
771   ENSG00000182240       ENST00000487994 ENSE00003554135
772   ENSG00000182240       ENST00000487994 ENSE00003491406
773   ENSG00000182240       ENST00000487994 ENSE00003542620
774   ENSG00000182240       ENST00000487994 ENSE00002455890
775   ENSG00000182240       ENST00000491838 ENSE00003610690
776   ENSG00000182240       ENST00000491838 ENSE00003463382
777   ENSG00000182240       ENST00000491838 ENSE00001838045
778   ENSG00000182240       ENST00000491838 ENSE00003506120
779   ENSG00000182240       ENST00000491838 ENSE00001831325
780   ENSG00000182240       ENST00000466122 ENSE00003610690
781   ENSG00000182240       ENST00000466122 ENSE00003463382
782   ENSG00000182240       ENST00000466122 ENSE00003554135
783   ENSG00000182240       ENST00000466122 ENSE00003491406
784   ENSG00000182240       ENST00000466122 ENSE00003542620
785   ENSG00000182240       ENST00000466122 ENSE00003506120
786   ENSG00000182240       ENST00000466122 ENSE00001833992
787   ENSG00000182240       ENST00000466122 ENSE00003634739
788   ENSG00000182240       ENST00000465326 ENSE00003610690
789   ENSG00000182240       ENST00000465326 ENSE00003463382
790   ENSG00000182240       ENST00000465326 ENSE00003554135
791   ENSG00000182240       ENST00000465326 ENSE00003491406
792   ENSG00000182240       ENST00000465326 ENSE00003542620
793   ENSG00000182240       ENST00000465326 ENSE00003506120
794   ENSG00000182240       ENST00000465326 ENSE00001850438
795   ENSG00000182240       ENST00000463674 ENSE00003463382
796   ENSG00000182240       ENST00000463674 ENSE00003554135
797   ENSG00000182240       ENST00000463674 ENSE00003491406
798   ENSG00000182240       ENST00000463674 ENSE00003542620
799   ENSG00000182240       ENST00000463674 ENSE00001893797
800   ENSG00000182240       ENST00000463674 ENSE00001953820
801   ENSG00000182240       ENST00000475618 ENSE00003542620
802   ENSG00000182240       ENST00000475618 ENSE00001930291
803   ENSG00000226496       ENST00000441268 ENSE00001756775
804   ENSG00000226496       ENST00000441268 ENSE00001805493
805   ENSG00000226496       ENST00000435493 ENSE00001658161
806   ENSG00000226496       ENST00000435493 ENSE00001754320
807   ENSG00000226496       ENST00000446910 ENSE00001730495
808   ENSG00000226496       ENST00000446910 ENSE00001779579
809   ENSG00000226496       ENST00000446910 ENSE00001594800
810   ENSG00000230859       ENST00000456507 ENSE00001729497
811   ENSG00000207476       ENST00000384745 ENSE00001807519
812   ENSG00000277671       ENST00000618423 ENSE00003724872
813   ENSG00000273027       ENST00000609461 ENSE00003708573
814   ENSG00000183421       ENST00000332512 ENSE00002730798
815   ENSG00000183421       ENST00000332512 ENSE00003507261
816   ENSG00000183421       ENST00000332512 ENSE00002506003
817   ENSG00000183421       ENST00000332512 ENSE00002514017
818   ENSG00000183421       ENST00000332512 ENSE00002459022
819   ENSG00000183421       ENST00000332512 ENSE00001314637
820   ENSG00000183421       ENST00000332512 ENSE00001293079
821   ENSG00000183421       ENST00000332512 ENSE00001813443
822   ENSG00000183421       ENST00000352483 ENSE00003507261
823   ENSG00000183421       ENST00000352483 ENSE00002506003
824   ENSG00000183421       ENST00000352483 ENSE00002514017
825   ENSG00000183421       ENST00000352483 ENSE00002459022
826   ENSG00000183421       ENST00000352483 ENSE00001293079
827   ENSG00000183421       ENST00000352483 ENSE00001813443
828   ENSG00000183421       ENST00000352483 ENSE00003712753
829   ENSG00000183421       ENST00000352483 ENSE00001312280
830   ENSG00000183421       ENST00000352483 ENSE00001290290
831   ENSG00000184012       ENST00000332149 ENSE00001881208
832   ENSG00000184012       ENST00000332149 ENSE00003502036
833   ENSG00000184012       ENST00000332149 ENSE00003788834
834   ENSG00000184012       ENST00000332149 ENSE00003500399
835   ENSG00000184012       ENST00000332149 ENSE00001308618
836   ENSG00000184012       ENST00000332149 ENSE00001328752
837   ENSG00000184012       ENST00000332149 ENSE00001296879
838   ENSG00000184012       ENST00000332149 ENSE00001319118
839   ENSG00000184012       ENST00000332149 ENSE00001291248
840   ENSG00000184012       ENST00000332149 ENSE00001310536
841   ENSG00000184012       ENST00000332149 ENSE00001309041
842   ENSG00000184012       ENST00000332149 ENSE00001324661
843   ENSG00000184012       ENST00000332149 ENSE00003786558
844   ENSG00000184012       ENST00000332149 ENSE00001919654
845   ENSG00000184012       ENST00000488556 ENSE00001893309
846   ENSG00000184012       ENST00000488556 ENSE00001872432
847   ENSG00000184012       ENST00000458356 ENSE00003502036
848   ENSG00000184012       ENST00000458356 ENSE00003788834
849   ENSG00000184012       ENST00000458356 ENSE00003500399
850   ENSG00000184012       ENST00000458356 ENSE00001308618
851   ENSG00000184012       ENST00000458356 ENSE00001328752
852   ENSG00000184012       ENST00000458356 ENSE00001296879
853   ENSG00000184012       ENST00000458356 ENSE00001319118
854   ENSG00000184012       ENST00000458356 ENSE00001291248
855   ENSG00000184012       ENST00000458356 ENSE00001310536
856   ENSG00000184012       ENST00000458356 ENSE00001309041
857   ENSG00000184012       ENST00000458356 ENSE00001324661
858   ENSG00000184012       ENST00000458356 ENSE00003786558
859   ENSG00000184012       ENST00000458356 ENSE00001710402
860   ENSG00000184012       ENST00000458356 ENSE00001651579
861   ENSG00000184012       ENST00000454499 ENSE00003502036
862   ENSG00000184012       ENST00000454499 ENSE00003788834
863   ENSG00000184012       ENST00000454499 ENSE00003500399
864   ENSG00000184012       ENST00000454499 ENSE00001308618
865   ENSG00000184012       ENST00000454499 ENSE00001328752
866   ENSG00000184012       ENST00000454499 ENSE00001296879
867   ENSG00000184012       ENST00000454499 ENSE00001319118
868   ENSG00000184012       ENST00000454499 ENSE00001291248
869   ENSG00000184012       ENST00000454499 ENSE00001310536
870   ENSG00000184012       ENST00000454499 ENSE00001309041
871   ENSG00000184012       ENST00000454499 ENSE00001324661
872   ENSG00000184012       ENST00000454499 ENSE00003786558
873   ENSG00000184012       ENST00000454499 ENSE00001620762
874   ENSG00000184012       ENST00000454499 ENSE00001620678
875   ENSG00000184012       ENST00000469395 ENSE00001909048
876   ENSG00000184012       ENST00000469395 ENSE00001950249
877   ENSG00000184012       ENST00000424093 ENSE00003502036
878   ENSG00000184012       ENST00000424093 ENSE00003788834
879   ENSG00000184012       ENST00000424093 ENSE00003500399
880   ENSG00000184012       ENST00000424093 ENSE00001328752
881   ENSG00000184012       ENST00000424093 ENSE00001296879
882   ENSG00000184012       ENST00000424093 ENSE00001319118
883   ENSG00000184012       ENST00000424093 ENSE00002442487
884   ENSG00000184012       ENST00000424093 ENSE00001665763
885   ENSG00000184012       ENST00000497881 ENSE00001296629
886   ENSG00000184012       ENST00000497881 ENSE00003609166
887   ENSG00000184012       ENST00000497881 ENSE00001846183
888   ENSG00000184012       ENST00000463138 ENSE00003609166
889   ENSG00000184012       ENST00000463138 ENSE00001876229
890   ENSG00000184012       ENST00000463138 ENSE00003467838
891   ENSG00000184012       ENST00000463138 ENSE00001843326
892   ENSG00000184012       ENST00000455813 ENSE00003502036
893   ENSG00000184012       ENST00000455813 ENSE00003788834
894   ENSG00000184012       ENST00000455813 ENSE00001686361
895   ENSG00000184012       ENST00000489201 ENSE00001838338
896   ENSG00000184012       ENST00000489201 ENSE00001948395
897   ENSG00000184012       ENST00000398585 ENSE00003788834
898   ENSG00000184012       ENST00000398585 ENSE00003500399
899   ENSG00000184012       ENST00000398585 ENSE00001308618
900   ENSG00000184012       ENST00000398585 ENSE00001328752
901   ENSG00000184012       ENST00000398585 ENSE00001296879
902   ENSG00000184012       ENST00000398585 ENSE00001319118
903   ENSG00000184012       ENST00000398585 ENSE00001291248
904   ENSG00000184012       ENST00000398585 ENSE00001310536
905   ENSG00000184012       ENST00000398585 ENSE00001309041
906   ENSG00000184012       ENST00000398585 ENSE00001324661
907   ENSG00000184012       ENST00000398585 ENSE00003786558
908   ENSG00000184012       ENST00000398585 ENSE00001894632
909   ENSG00000184012       ENST00000398585 ENSE00003523611
910   ENSG00000184012       ENST00000398585 ENSE00001485252
911   ENSG00000184900       ENST00000397898 ENSE00001530662
912   ENSG00000184900       ENST00000397898 ENSE00003489741
913   ENSG00000184900       ENST00000397898 ENSE00001530648
914   ENSG00000184900       ENST00000397898 ENSE00003479904
915   ENSG00000184900       ENST00000332859 ENSE00003489741
916   ENSG00000184900       ENST00000332859 ENSE00001315520
917   ENSG00000184900       ENST00000332859 ENSE00003660434
918   ENSG00000184900       ENST00000332859 ENSE00003627960
919   ENSG00000184900       ENST00000479153 ENSE00001845480
920   ENSG00000184900       ENST00000479153 ENSE00003543157
921   ENSG00000184900       ENST00000479153 ENSE00003558790
922   ENSG00000184900       ENST00000479153 ENSE00003536698
923   ENSG00000184900       ENST00000397893 ENSE00003489741
924   ENSG00000184900       ENST00000397893 ENSE00003660434
925   ENSG00000184900       ENST00000397893 ENSE00001956379
926   ENSG00000184900       ENST00000397893 ENSE00001530624
927   ENSG00000184900       ENST00000466861 ENSE00001924051
928   ENSG00000184900       ENST00000466861 ENSE00001844436
929   ENSG00000184900       ENST00000411651 ENSE00001315520
930   ENSG00000184900       ENST00000411651 ENSE00003660434
931   ENSG00000184900       ENST00000411651 ENSE00003627960
932   ENSG00000184900       ENST00000411651 ENSE00001636287
933   ENSG00000278618       ENST00000621412 ENSE00003716433
934   ENSG00000275469       ENST00000619419 ENSE00003741747
935   ENSG00000275950       ENST00000616420 ENSE00003733866
936   ENSG00000212136       ENST00000390834 ENSE00001508618
937   ENSG00000212564       ENST00000391262 ENSE00001808578
938   ENSG00000243489       ENST00000334670 ENSE00001433049
939   ENSG00000276647       ENST00000617417 ENSE00003754561
940   ENSG00000235123       ENST00000444046 ENSE00001615334
941   ENSG00000235123       ENST00000444046 ENSE00001795643
942   ENSG00000235123       ENST00000455354 ENSE00001795643
943   ENSG00000235123       ENST00000455354 ENSE00001661261
944   ENSG00000235123       ENST00000422749 ENSE00001795643
945   ENSG00000235123       ENST00000422749 ENSE00001684754
946   ENSG00000235123       ENST00000422749 ENSE00001602383
947   ENSG00000235123       ENST00000427451 ENSE00001615334
948   ENSG00000235123       ENST00000427451 ENSE00001666308
949   ENSG00000235123       ENST00000427451 ENSE00001795643
950   ENSG00000275692       ENST00000617390 ENSE00003749461
951   ENSG00000251972       ENST00000516163 ENSE00002088440
952   ENSG00000223262       ENST00000411330 ENSE00001591148
953   ENSG00000212609       ENST00000391307 ENSE00001509091
954   ENSG00000275708       ENST00000615959 ENSE00003739698
955   ENSG00000275496       ENST00000621924 ENSE00003755171
956   ENSG00000275496       ENST00000621924 ENSE00003757852
957   ENSG00000275496       ENST00000621924 ENSE00003737671
958   ENSG00000275496       ENST00000621924 ENSE00003742977
959   ENSG00000275496       ENST00000617746 ENSE00003737671
960   ENSG00000275496       ENST00000617746 ENSE00003748268
961   ENSG00000275496       ENST00000617746 ENSE00003755479
962   ENSG00000275496       ENST00000624446 ENSE00003760365
963   ENSG00000275496       ENST00000624446 ENSE00003756748
964   ENSG00000275496       ENST00000623405 ENSE00003758844
965   ENSG00000275496       ENST00000623405 ENSE00003759109
966   ENSG00000275496       ENST00000623405 ENSE00003755640
967   ENSG00000275496       ENST00000623575 ENSE00003737671
968   ENSG00000275496       ENST00000623575 ENSE00003758900
969   ENSG00000275496       ENST00000623575 ENSE00003758450
970   ENSG00000275496       ENST00000623506 ENSE00003737671
971   ENSG00000275496       ENST00000623506 ENSE00003759109
972   ENSG00000275496       ENST00000623506 ENSE00003756171
973   ENSG00000275496       ENST00000623506 ENSE00003757693
974   ENSG00000275496       ENST00000619488 ENSE00003725671
975   ENSG00000275496       ENST00000619488 ENSE00003721031
976   ENSG00000279064       ENST00000623723 ENSE00003758212
977   ENSG00000279064       ENST00000623723 ENSE00003756092
978   ENSG00000160221       ENST00000291577 ENSE00001822596
979   ENSG00000160221       ENST00000291577 ENSE00003673943
980   ENSG00000160221       ENST00000291577 ENSE00003570914
981   ENSG00000160221       ENST00000291577 ENSE00003619394
982   ENSG00000160221       ENST00000291577 ENSE00003482790
983   ENSG00000160221       ENST00000291577 ENSE00003667692
984   ENSG00000160221       ENST00000291577 ENSE00001506660
985   ENSG00000160221       ENST00000495007 ENSE00001849368
986   ENSG00000160221       ENST00000495007 ENSE00003580779
987   ENSG00000160221       ENST00000495007 ENSE00003672906
988   ENSG00000160221       ENST00000495007 ENSE00003665668
989   ENSG00000160221       ENST00000495007 ENSE00003676797
990   ENSG00000160221       ENST00000495007 ENSE00001853546
991   ENSG00000160221       ENST00000427803 ENSE00003673943
992   ENSG00000160221       ENST00000427803 ENSE00003570914
993   ENSG00000160221       ENST00000427803 ENSE00003619394
994   ENSG00000160221       ENST00000427803 ENSE00003482790
995   ENSG00000160221       ENST00000427803 ENSE00001876352
996   ENSG00000160221       ENST00000427803 ENSE00001613924
997   ENSG00000160221       ENST00000493883 ENSE00003580779
998   ENSG00000160221       ENST00000493883 ENSE00003672906
999   ENSG00000160221       ENST00000493883 ENSE00003665668
1000  ENSG00000160221       ENST00000493883 ENSE00001845946
1001  ENSG00000160221       ENST00000493883 ENSE00003474302
1002  ENSG00000160221       ENST00000480786 ENSE00003580779
1003  ENSG00000160221       ENST00000480786 ENSE00003672906
1004  ENSG00000160221       ENST00000480786 ENSE00001937614
1005  ENSG00000160221       ENST00000480786 ENSE00003566481
1006  ENSG00000160221       ENST00000480786 ENSE00001882951
1007  ENSG00000160221       ENST00000348499 ENSE00003673943
1008  ENSG00000160221       ENST00000348499 ENSE00003570914
1009  ENSG00000160221       ENST00000348499 ENSE00003619394
1010  ENSG00000160221       ENST00000348499 ENSE00003667692
1011  ENSG00000160221       ENST00000348499 ENSE00001506660
1012  ENSG00000160221       ENST00000348499 ENSE00001857588
1013  ENSG00000160221       ENST00000389690 ENSE00003673943
1014  ENSG00000160221       ENST00000389690 ENSE00003570914
1015  ENSG00000160221       ENST00000389690 ENSE00003619394
1016  ENSG00000160221       ENST00000389690 ENSE00003482790
1017  ENSG00000160221       ENST00000389690 ENSE00001603625
1018  ENSG00000160221       ENST00000389690 ENSE00003626079
1019  ENSG00000160221       ENST00000449622 ENSE00003673943
1020  ENSG00000160221       ENST00000449622 ENSE00003570914
1021  ENSG00000160221       ENST00000449622 ENSE00003482790
1022  ENSG00000160221       ENST00000449622 ENSE00003667692
1023  ENSG00000160221       ENST00000449622 ENSE00001506660
1024  ENSG00000160221       ENST00000449622 ENSE00001612727
1025  ENSG00000160221       ENST00000449622 ENSE00001804088
1026  ENSG00000160221       ENST00000488392 ENSE00001953904
1027  ENSG00000160221       ENST00000488392 ENSE00001927142
1028  ENSG00000160221       ENST00000419699 ENSE00003619394
1029  ENSG00000160221       ENST00000419699 ENSE00003482790
1030  ENSG00000160221       ENST00000419699 ENSE00003667692
1031  ENSG00000160221       ENST00000419699 ENSE00001754071
1032  ENSG00000160221       ENST00000419699 ENSE00001638299
1033  ENSG00000160221       ENST00000419699 ENSE00001675777
1034  ENSG00000160221       ENST00000470545 ENSE00001828535
1035  ENSG00000160221       ENST00000470545 ENSE00001901011
1036  ENSG00000159228       ENST00000466328 ENSE00003566185
1037  ENSG00000159228       ENST00000466328 ENSE00003559746
1038  ENSG00000159228       ENST00000466328 ENSE00002154026
1039  ENSG00000159228       ENST00000530908 ENSE00003512897
1040  ENSG00000159228       ENST00000530908 ENSE00003643969
1041  ENSG00000159228       ENST00000530908 ENSE00001734805
1042  ENSG00000159228       ENST00000290349 ENSE00003512897
1043  ENSG00000159228       ENST00000290349 ENSE00003643969
1044  ENSG00000159228       ENST00000290349 ENSE00001044162
1045  ENSG00000159228       ENST00000439427 ENSE00001919847
1046  ENSG00000159228       ENST00000439427 ENSE00002152862
1047  ENSG00000159228       ENST00000399191 ENSE00003643969
1048  ENSG00000159228       ENST00000399191 ENSE00001891664
1049  ENSG00000159228       ENST00000399191 ENSE00001536887
1050  ENSG00000224421       ENST00000444161 ENSE00001758681
1051  ENSG00000142197       ENST00000270190 ENSE00001709988
1052  ENSG00000142197       ENST00000270190 ENSE00001044194
1053  ENSG00000142197       ENST00000270190 ENSE00001044279
1054  ENSG00000142197       ENST00000270190 ENSE00001599264
1055  ENSG00000142197       ENST00000399151 ENSE00001044194
1056  ENSG00000142197       ENST00000399151 ENSE00001044279
1057  ENSG00000142197       ENST00000399151 ENSE00001536697
1058  ENSG00000142197       ENST00000399151 ENSE00001044238
1059  ENSG00000142197       ENST00000399151 ENSE00003641468
1060  ENSG00000142197       ENST00000399151 ENSE00003500617
1061  ENSG00000142197       ENST00000399151 ENSE00001044233
1062  ENSG00000142197       ENST00000399151 ENSE00001044212
1063  ENSG00000142197       ENST00000399151 ENSE00001044187
1064  ENSG00000142197       ENST00000399151 ENSE00000952867
1065  ENSG00000142197       ENST00000399151 ENSE00000952868
1066  ENSG00000142197       ENST00000399151 ENSE00000952869
1067  ENSG00000142197       ENST00000399151 ENSE00000952870
1068  ENSG00000142197       ENST00000399151 ENSE00000952871
1069  ENSG00000142197       ENST00000399151 ENSE00000952872
1070  ENSG00000142197       ENST00000399151 ENSE00000952873
1071  ENSG00000142197       ENST00000399151 ENSE00000952874
1072  ENSG00000142197       ENST00000399151 ENSE00000952875
1073  ENSG00000142197       ENST00000399151 ENSE00001044199
1074  ENSG00000142197       ENST00000399151 ENSE00003664197
1075  ENSG00000142197       ENST00000399151 ENSE00003504893
1076  ENSG00000142197       ENST00000399151 ENSE00003649664
1077  ENSG00000142197       ENST00000399151 ENSE00003464096
1078  ENSG00000142197       ENST00000399151 ENSE00001044228
1079  ENSG00000142197       ENST00000399151 ENSE00001044202
1080  ENSG00000142197       ENST00000399151 ENSE00001044179
1081  ENSG00000142197       ENST00000399151 ENSE00001238145
1082  ENSG00000142197       ENST00000399151 ENSE00001044224
1083  ENSG00000142197       ENST00000399151 ENSE00001044263
1084  ENSG00000142197       ENST00000399151 ENSE00001044258
1085  ENSG00000142197       ENST00000399151 ENSE00001044208
1086  ENSG00000142197       ENST00000399151 ENSE00001044198
1087  ENSG00000142197       ENST00000399151 ENSE00001044241
1088  ENSG00000142197       ENST00000399151 ENSE00001044254
1089  ENSG00000142197       ENST00000399151 ENSE00001044242
1090  ENSG00000142197       ENST00000399151 ENSE00001044260
1091  ENSG00000142197       ENST00000399151 ENSE00001238304
1092  ENSG00000142197       ENST00000492760 ENSE00001935111
1093  ENSG00000142197       ENST00000492760 ENSE00003535798
1094  ENSG00000142197       ENST00000492760 ENSE00003617926
1095  ENSG00000142197       ENST00000492760 ENSE00001862064
1096  ENSG00000142197       ENST00000463668 ENSE00001819883
1097  ENSG00000142197       ENST00000463668 ENSE00003645318
1098  ENSG00000142197       ENST00000463668 ENSE00003580486
1099  ENSG00000142197       ENST00000463668 ENSE00003476245
1100  ENSG00000142197       ENST00000463668 ENSE00003570770
1101  ENSG00000142197       ENST00000463668 ENSE00001954890
1102  ENSG00000159212       ENST00000360731 ENSE00001635328
1103  ENSG00000159212       ENST00000360731 ENSE00001487601
1104  ENSG00000159212       ENST00000360731 ENSE00002449170
1105  ENSG00000159212       ENST00000360731 ENSE00001044048
1106  ENSG00000159212       ENST00000360731 ENSE00001044021
1107  ENSG00000159212       ENST00000360731 ENSE00001044034
1108  ENSG00000159212       ENST00000360731 ENSE00001325100
1109  ENSG00000159212       ENST00000349499 ENSE00001635328
1110  ENSG00000159212       ENST00000349499 ENSE00002449170
1111  ENSG00000159212       ENST00000349499 ENSE00001044048
1112  ENSG00000159212       ENST00000349499 ENSE00001044021
1113  ENSG00000159212       ENST00000349499 ENSE00001044034
1114  ENSG00000159212       ENST00000349499 ENSE00001325100
1115  ENSG00000155304       ENST00000285667 ENSE00001020226
1116  ENSG00000155304       ENST00000285667 ENSE00003608679
1117  ENSG00000155304       ENST00000285667 ENSE00001020231
1118  ENSG00000155304       ENST00000285667 ENSE00003578743
1119  ENSG00000155304       ENST00000285667 ENSE00001280391
1120  ENSG00000155304       ENST00000478035 ENSE00001847212
1121  ENSG00000155304       ENST00000478035 ENSE00003691864
1122  ENSG00000155304       ENST00000478035 ENSE00001890168
1123  ENSG00000228798       ENST00000413645 ENSE00001665029
1124  ENSG00000228798       ENST00000413645 ENSE00001597851
1125  ENSG00000228798       ENST00000438762 ENSE00001804332
1126  ENSG00000228798       ENST00000438762 ENSE00001712871
1127  ENSG00000270093       ENST00000602659 ENSE00003298469
1128  ENSG00000237735       ENST00000444868 ENSE00001602968
1129  ENSG00000237735       ENST00000444868 ENSE00001745431
1130  ENSG00000237735       ENST00000444868 ENSE00001776707
1131  ENSG00000159197       ENST00000290310 ENSE00001043935
1132  ENSG00000159197       ENST00000290310 ENSE00001043939
1133  ENSG00000160216       ENST00000291572 ENSE00001950544
1134  ENSG00000160216       ENST00000291572 ENSE00001137610
1135  ENSG00000160216       ENST00000291572 ENSE00001414183
1136  ENSG00000160216       ENST00000291572 ENSE00003532414
1137  ENSG00000160216       ENST00000291572 ENSE00003635589
1138  ENSG00000160216       ENST00000291572 ENSE00003620755
1139  ENSG00000160216       ENST00000291572 ENSE00003790142
1140  ENSG00000160216       ENST00000291572 ENSE00003500378
1141  ENSG00000160216       ENST00000291572 ENSE00003671315
1142  ENSG00000160216       ENST00000291572 ENSE00001420549
1143  ENSG00000160216       ENST00000474735 ENSE00001892144
1144  ENSG00000160216       ENST00000474735 ENSE00001896051
1145  ENSG00000160216       ENST00000474735 ENSE00001946709
1146  ENSG00000160216       ENST00000474735 ENSE00001957413
1147  ENSG00000160216       ENST00000448287 ENSE00001137610
1148  ENSG00000160216       ENST00000448287 ENSE00001414183
1149  ENSG00000160216       ENST00000448287 ENSE00001769988
1150  ENSG00000160216       ENST00000448287 ENSE00001753604
1151  ENSG00000160216       ENST00000398061 ENSE00001137610
1152  ENSG00000160216       ENST00000398061 ENSE00001414183
1153  ENSG00000160216       ENST00000398061 ENSE00003532414
1154  ENSG00000160216       ENST00000398061 ENSE00003635589
1155  ENSG00000160216       ENST00000398061 ENSE00003620755
1156  ENSG00000160216       ENST00000398061 ENSE00003790142
1157  ENSG00000160216       ENST00000398061 ENSE00003500378
1158  ENSG00000160216       ENST00000398061 ENSE00003671315
1159  ENSG00000160216       ENST00000398061 ENSE00001531383
1160  ENSG00000160216       ENST00000398061 ENSE00001321560
1161  ENSG00000160216       ENST00000327505 ENSE00001414183
1162  ENSG00000160216       ENST00000327505 ENSE00003532414
1163  ENSG00000160216       ENST00000327505 ENSE00003635589
1164  ENSG00000160216       ENST00000327505 ENSE00003620755
1165  ENSG00000160216       ENST00000327505 ENSE00003790142
1166  ENSG00000160216       ENST00000327505 ENSE00003500378
1167  ENSG00000160216       ENST00000327505 ENSE00003671315
1168  ENSG00000160216       ENST00000327505 ENSE00001321560
1169  ENSG00000160216       ENST00000327505 ENSE00001531366
1170  ENSG00000160216       ENST00000445582 ENSE00001414183
1171  ENSG00000160216       ENST00000445582 ENSE00003532414
1172  ENSG00000160216       ENST00000445582 ENSE00001793970
1173  ENSG00000160216       ENST00000445582 ENSE00001768657
1174  ENSG00000160216       ENST00000398063 ENSE00001414183
1175  ENSG00000160216       ENST00000398063 ENSE00003532414
1176  ENSG00000160216       ENST00000398063 ENSE00003635589
1177  ENSG00000160216       ENST00000398063 ENSE00003620755
1178  ENSG00000160216       ENST00000398063 ENSE00003790142
1179  ENSG00000160216       ENST00000398063 ENSE00003500378
1180  ENSG00000160216       ENST00000398063 ENSE00003671315
1181  ENSG00000160216       ENST00000398063 ENSE00001420549
1182  ENSG00000160216       ENST00000398063 ENSE00001531391
1183  ENSG00000160216       ENST00000398058 ENSE00001414183
1184  ENSG00000160216       ENST00000398058 ENSE00003532414
1185  ENSG00000160216       ENST00000398058 ENSE00003635589
1186  ENSG00000160216       ENST00000398058 ENSE00003620755
1187  ENSG00000160216       ENST00000398058 ENSE00003790142
1188  ENSG00000160216       ENST00000398058 ENSE00003500378
1189  ENSG00000160216       ENST00000398058 ENSE00003671315
1190  ENSG00000160216       ENST00000398058 ENSE00001321560
1191  ENSG00000160216       ENST00000398058 ENSE00001531361
1192  ENSG00000160216       ENST00000398058 ENSE00001531359
1193  ENSG00000160216       ENST00000398058 ENSE00001531358
1194  ENSG00000160216       ENST00000457068 ENSE00001414183
1195  ENSG00000160216       ENST00000457068 ENSE00003532414
1196  ENSG00000160216       ENST00000457068 ENSE00003635589
1197  ENSG00000160216       ENST00000457068 ENSE00003620755
1198  ENSG00000160216       ENST00000457068 ENSE00003790142
1199  ENSG00000160216       ENST00000457068 ENSE00001641882
1200  ENSG00000160216       ENST00000448845 ENSE00001600918
1201  ENSG00000160216       ENST00000448845 ENSE00001619416
1202  ENSG00000160216       ENST00000448845 ENSE00001599763
1203  ENSG00000160216       ENST00000498670 ENSE00001931929
1204  ENSG00000160216       ENST00000498670 ENSE00001864296
1205  ENSG00000160216       ENST00000498670 ENSE00001842203
1206  ENSG00000160216       ENST00000422850 ENSE00001414183
1207  ENSG00000160216       ENST00000422850 ENSE00003532414
1208  ENSG00000160216       ENST00000422850 ENSE00003635589
1209  ENSG00000160216       ENST00000422850 ENSE00003620755
1210  ENSG00000160216       ENST00000422850 ENSE00003790142
1211  ENSG00000160216       ENST00000422850 ENSE00001653194
1212  ENSG00000160216       ENST00000497909 ENSE00001926499
1213  ENSG00000160216       ENST00000497909 ENSE00001910758
1214  ENSG00000160216       ENST00000479117 ENSE00001874093
1215  ENSG00000160216       ENST00000479117 ENSE00001925147
1216  ENSG00000160216       ENST00000479117 ENSE00003631068
1217  ENSG00000160216       ENST00000479117 ENSE00003645537
1218  ENSG00000160216       ENST00000479117 ENSE00003636375
1219  ENSG00000160216       ENST00000479117 ENSE00003670715
1220  ENSG00000160216       ENST00000479117 ENSE00003599240
1221  ENSG00000160216       ENST00000479117 ENSE00003557357
1222  ENSG00000160216       ENST00000479117 ENSE00001928991
1223  ENSG00000160216       ENST00000481319 ENSE00001925147
1224  ENSG00000160216       ENST00000481319 ENSE00001838730
1225  ENSG00000160216       ENST00000481319 ENSE00001838240
1226  ENSG00000160216       ENST00000481319 ENSE00001833458
1227  ENSG00000160216       ENST00000467358 ENSE00003645537
1228  ENSG00000160216       ENST00000467358 ENSE00003636375
1229  ENSG00000160216       ENST00000467358 ENSE00003670715
1230  ENSG00000160216       ENST00000467358 ENSE00003599240
1231  ENSG00000160216       ENST00000467358 ENSE00003557357
1232  ENSG00000160216       ENST00000467358 ENSE00001848324
1233  ENSG00000160216       ENST00000467358 ENSE00001869981
1234  ENSG00000160216       ENST00000484865 ENSE00003599240
1235  ENSG00000160216       ENST00000484865 ENSE00001932028
1236  ENSG00000160216       ENST00000484865 ENSE00001896463
1237  ENSG00000160216       ENST00000546158 ENSE00001414183
1238  ENSG00000160216       ENST00000546158 ENSE00003532414
1239  ENSG00000160216       ENST00000546158 ENSE00003635589
1240  ENSG00000160216       ENST00000546158 ENSE00003620755
1241  ENSG00000160216       ENST00000546158 ENSE00003790142
1242  ENSG00000160216       ENST00000546158 ENSE00003500378
1243  ENSG00000160216       ENST00000546158 ENSE00003671315
1244  ENSG00000160216       ENST00000546158 ENSE00002217841
1245  ENSG00000160216       ENST00000546158 ENSE00002251004
1246  ENSG00000225555       ENST00000440403 ENSE00001655354
1247  ENSG00000225555       ENST00000440403 ENSE00001790510
1248  ENSG00000274248       ENST00000621707 ENSE00003725750
1249  ENSG00000222018       ENST00000410005 ENSE00001579649
1250  ENSG00000205670       ENST00000481710 ENSE00001556393
1251  ENSG00000205670       ENST00000481710 ENSE00003482155
1252  ENSG00000205670       ENST00000481710 ENSE00003551852
1253  ENSG00000205670       ENST00000481710 ENSE00003543986
1254  ENSG00000205670       ENST00000481710 ENSE00003609660
1255  ENSG00000205670       ENST00000399292 ENSE00001487632
1256  ENSG00000205670       ENST00000399292 ENSE00003674919
1257  ENSG00000205670       ENST00000399292 ENSE00003525225
1258  ENSG00000205670       ENST00000399292 ENSE00001537374
1259  ENSG00000205670       ENST00000399299 ENSE00001487632
1260  ENSG00000205670       ENST00000399299 ENSE00003674919
1261  ENSG00000205670       ENST00000399299 ENSE00003644005
1262  ENSG00000205670       ENST00000399299 ENSE00003581207
1263  ENSG00000205670       ENST00000489469 ENSE00003482155
1264  ENSG00000205670       ENST00000489469 ENSE00003551852
1265  ENSG00000205670       ENST00000489469 ENSE00001879241
1266  ENSG00000205670       ENST00000489469 ENSE00001945592
1267  ENSG00000205670       ENST00000495363 ENSE00003482155
1268  ENSG00000205670       ENST00000495363 ENSE00003551852
1269  ENSG00000205670       ENST00000495363 ENSE00003543986
1270  ENSG00000205670       ENST00000495363 ENSE00002445885
1271  ENSG00000205670       ENST00000495363 ENSE00001901127
1272  ENSG00000205670       ENST00000495363 ENSE00001845984
1273  ENSG00000205670       ENST00000474455 ENSE00003482155
1274  ENSG00000205670       ENST00000474455 ENSE00001856243
1275  ENSG00000205670       ENST00000474455 ENSE00001937886
1276  ENSG00000205670       ENST00000399295 ENSE00003674919
1277  ENSG00000205670       ENST00000399295 ENSE00003525225
1278  ENSG00000205670       ENST00000399295 ENSE00001537376
1279  ENSG00000205670       ENST00000399295 ENSE00001537370
1280  ENSG00000160185       ENST00000635189 ENSE00003787837
1281  ENSG00000160185       ENST00000635189 ENSE00003693107
1282  ENSG00000160185       ENST00000635189 ENSE00003583784
1283  ENSG00000160185       ENST00000635189 ENSE00003588403
1284  ENSG00000160185       ENST00000635189 ENSE00003785860
1285  ENSG00000160185       ENST00000291535 ENSE00003583784
1286  ENSG00000160185       ENST00000291535 ENSE00003588403
1287  ENSG00000160185       ENST00000291535 ENSE00003787320
1288  ENSG00000160185       ENST00000291535 ENSE00003658789
1289  ENSG00000160185       ENST00000291535 ENSE00003563179
1290  ENSG00000160185       ENST00000291535 ENSE00003689328
1291  ENSG00000160185       ENST00000291535 ENSE00003601029
1292  ENSG00000160185       ENST00000291535 ENSE00003568239
1293  ENSG00000160185       ENST00000291535 ENSE00001259628
1294  ENSG00000160185       ENST00000291535 ENSE00001050381
1295  ENSG00000160185       ENST00000291535 ENSE00003471164
1296  ENSG00000160185       ENST00000291535 ENSE00003593464
1297  ENSG00000160185       ENST00000291535 ENSE00003665179
1298  ENSG00000160185       ENST00000291535 ENSE00003464292
1299  ENSG00000160185       ENST00000635108 ENSE00003583784
1300  ENSG00000160185       ENST00000635108 ENSE00003789992
1301  ENSG00000160185       ENST00000635108 ENSE00003784332
1302  ENSG00000160185       ENST00000635108 ENSE00003790547
1303  ENSG00000160185       ENST00000635325 ENSE00003583784
1304  ENSG00000160185       ENST00000635325 ENSE00003588403
1305  ENSG00000160185       ENST00000635325 ENSE00003658789
1306  ENSG00000160185       ENST00000635325 ENSE00003563179
1307  ENSG00000160185       ENST00000635325 ENSE00003689328
1308  ENSG00000160185       ENST00000635325 ENSE00003601029
1309  ENSG00000160185       ENST00000635325 ENSE00003568239
1310  ENSG00000160185       ENST00000635325 ENSE00001259628
1311  ENSG00000160185       ENST00000635325 ENSE00001050381
1312  ENSG00000160185       ENST00000635325 ENSE00003471164
1313  ENSG00000160185       ENST00000635325 ENSE00003789992
1314  ENSG00000160185       ENST00000635325 ENSE00003785493
1315  ENSG00000160185       ENST00000635325 ENSE00003490390
1316  ENSG00000160185       ENST00000635325 ENSE00003788035
1317  ENSG00000160185       ENST00000634453 ENSE00001891722
1318  ENSG00000160185       ENST00000634453 ENSE00003557340
1319  ENSG00000160185       ENST00000634453 ENSE00003507328
1320  ENSG00000160185       ENST00000634453 ENSE00003791291
1321  ENSG00000160185       ENST00000634718 ENSE00003557340
1322  ENSG00000160185       ENST00000634718 ENSE00003507328
1323  ENSG00000160185       ENST00000634718 ENSE00003784549
1324  ENSG00000160185       ENST00000634718 ENSE00003791328
1325  ENSG00000160185       ENST00000319294 ENSE00003583784
1326  ENSG00000160185       ENST00000319294 ENSE00003588403
1327  ENSG00000160185       ENST00000319294 ENSE00003658789
1328  ENSG00000160185       ENST00000319294 ENSE00003563179
1329  ENSG00000160185       ENST00000319294 ENSE00003689328
1330  ENSG00000160185       ENST00000319294 ENSE00003601029
1331  ENSG00000160185       ENST00000319294 ENSE00003568239
1332  ENSG00000160185       ENST00000319294 ENSE00001259628
1333  ENSG00000160185       ENST00000319294 ENSE00001050381
1334  ENSG00000160185       ENST00000319294 ENSE00003471164
1335  ENSG00000160185       ENST00000319294 ENSE00003593464
1336  ENSG00000160185       ENST00000319294 ENSE00003665179
1337  ENSG00000160185       ENST00000319294 ENSE00001884887
1338  ENSG00000160185       ENST00000319294 ENSE00001050389
1339  ENSG00000160185       ENST00000319294 ENSE00001259600
1340  ENSG00000160185       ENST00000398367 ENSE00003583784
1341  ENSG00000160185       ENST00000398367 ENSE00003588403
1342  ENSG00000160185       ENST00000398367 ENSE00003658789
1343  ENSG00000160185       ENST00000398367 ENSE00003563179
1344  ENSG00000160185       ENST00000398367 ENSE00003689328
1345  ENSG00000160185       ENST00000398367 ENSE00003601029
1346  ENSG00000160185       ENST00000398367 ENSE00003568239
1347  ENSG00000160185       ENST00000398367 ENSE00001259628
1348  ENSG00000160185       ENST00000398367 ENSE00001050381
1349  ENSG00000160185       ENST00000398367 ENSE00003471164
1350  ENSG00000160185       ENST00000398367 ENSE00003694724
1351  ENSG00000160185       ENST00000398367 ENSE00003631571
1352  ENSG00000160185       ENST00000473381 ENSE00003583784
1353  ENSG00000160185       ENST00000473381 ENSE00003588403
1354  ENSG00000160185       ENST00000473381 ENSE00003658789
1355  ENSG00000160185       ENST00000473381 ENSE00003563179
1356  ENSG00000160185       ENST00000473381 ENSE00003689328
1357  ENSG00000160185       ENST00000473381 ENSE00003601029
1358  ENSG00000160185       ENST00000473381 ENSE00003568239
1359  ENSG00000160185       ENST00000473381 ENSE00003490390
1360  ENSG00000160185       ENST00000473381 ENSE00003694724
1361  ENSG00000160185       ENST00000473381 ENSE00001881260
1362  ENSG00000160185       ENST00000473381 ENSE00001858826
1363  ENSG00000160185       ENST00000473381 ENSE00003674107
1364  ENSG00000160185       ENST00000473381 ENSE00003562002
1365  ENSG00000160185       ENST00000473381 ENSE00001860921
1366  ENSG00000273104       ENST00000608665 ENSE00003706100
1367  ENSG00000243627       ENST00000450895 ENSE00001721013
1368  ENSG00000243627       ENST00000450895 ENSE00001791276
1369  ENSG00000272958       ENST00000608289 ENSE00003707178
1370  ENSG00000185272       ENST00000468643 ENSE00001845775
1371  ENSG00000185272       ENST00000468643 ENSE00001926508
1372  ENSG00000185272       ENST00000468643 ENSE00003601318
1373  ENSG00000185272       ENST00000468643 ENSE00003592279
1374  ENSG00000185272       ENST00000468643 ENSE00003473282
1375  ENSG00000185272       ENST00000468788 ENSE00001926508
1376  ENSG00000185272       ENST00000468788 ENSE00003601318
1377  ENSG00000185272       ENST00000468788 ENSE00003592279
1378  ENSG00000185272       ENST00000468788 ENSE00002210130
1379  ENSG00000185272       ENST00000468788 ENSE00001837415
1380  ENSG00000185272       ENST00000495055 ENSE00003601318
1381  ENSG00000185272       ENST00000495055 ENSE00003592279
1382  ENSG00000185272       ENST00000495055 ENSE00001901873
1383  ENSG00000185272       ENST00000495055 ENSE00001855722
1384  ENSG00000185272       ENST00000461088 ENSE00001839054
1385  ENSG00000185272       ENST00000461088 ENSE00003574247
1386  ENSG00000185272       ENST00000461088 ENSE00001949402
1387  ENSG00000185272       ENST00000400577 ENSE00001939246
1388  ENSG00000185272       ENST00000400577 ENSE00003546298
1389  ENSG00000185272       ENST00000400577 ENSE00003560060
1390  ENSG00000185272       ENST00000400577 ENSE00003485052
1391  ENSG00000185272       ENST00000400577 ENSE00003529564
1392  ENSG00000185272       ENST00000475864 ENSE00001865382
1393  ENSG00000185272       ENST00000475864 ENSE00001847712
1394  ENSG00000232886       ENST00000430064 ENSE00001605591
1395  ENSG00000232886       ENST00000430064 ENSE00001803577
1396  ENSG00000232886       ENST00000430064 ENSE00001711567
1397  ENSG00000232886       ENST00000430064 ENSE00001638800
1398  ENSG00000142156       ENST00000361866 ENSE00001436541
1399  ENSG00000142156       ENST00000361866 ENSE00000952543
1400  ENSG00000142156       ENST00000361866 ENSE00002693513
1401  ENSG00000142156       ENST00000361866 ENSE00002468227
1402  ENSG00000142156       ENST00000361866 ENSE00002430903
1403  ENSG00000142156       ENST00000361866 ENSE00002444369
1404  ENSG00000142156       ENST00000361866 ENSE00002457874
1405  ENSG00000142156       ENST00000361866 ENSE00002517632
1406  ENSG00000142156       ENST00000361866 ENSE00002473380
1407  ENSG00000142156       ENST00000361866 ENSE00002442314
1408  ENSG00000142156       ENST00000361866 ENSE00002514254
1409  ENSG00000142156       ENST00000361866 ENSE00002446605
1410  ENSG00000142156       ENST00000361866 ENSE00002492838
1411  ENSG00000142156       ENST00000361866 ENSE00002477756
1412  ENSG00000142156       ENST00000361866 ENSE00002450819
1413  ENSG00000142156       ENST00000361866 ENSE00002494313
1414  ENSG00000142156       ENST00000361866 ENSE00002468467
1415  ENSG00000142156       ENST00000361866 ENSE00002500444
1416  ENSG00000142156       ENST00000361866 ENSE00002449732
1417  ENSG00000142156       ENST00000361866 ENSE00002470662
1418  ENSG00000142156       ENST00000361866 ENSE00002459279
1419  ENSG00000142156       ENST00000361866 ENSE00002465494
1420  ENSG00000142156       ENST00000361866 ENSE00002478448
1421  ENSG00000142156       ENST00000361866 ENSE00002505064
1422  ENSG00000142156       ENST00000361866 ENSE00002525270
1423  ENSG00000142156       ENST00000361866 ENSE00002519552
1424  ENSG00000142156       ENST00000361866 ENSE00002495880
1425  ENSG00000142156       ENST00000361866 ENSE00003466321
1426  ENSG00000142156       ENST00000361866 ENSE00002483667
1427  ENSG00000142156       ENST00000361866 ENSE00003665865
1428  ENSG00000142156       ENST00000361866 ENSE00003672421
1429  ENSG00000142156       ENST00000361866 ENSE00003587026
1430  ENSG00000142156       ENST00000361866 ENSE00003560168
1431  ENSG00000142156       ENST00000361866 ENSE00003615014
1432  ENSG00000142156       ENST00000361866 ENSE00003606957
1433  ENSG00000142156       ENST00000492851 ENSE00001903439
1434  ENSG00000142156       ENST00000492851 ENSE00001952397
1435  ENSG00000142156       ENST00000466285 ENSE00001922911
1436  ENSG00000142156       ENST00000466285 ENSE00003624032
1437  ENSG00000142156       ENST00000466285 ENSE00001917616
1438  ENSG00000142156       ENST00000463060 ENSE00001893250
1439  ENSG00000142156       ENST00000463060 ENSE00003630961
1440  ENSG00000142156       ENST00000463060 ENSE00003582235
1441  ENSG00000142156       ENST00000463060 ENSE00003677365
1442  ENSG00000142156       ENST00000463060 ENSE00003547340
1443  ENSG00000142156       ENST00000463060 ENSE00003668198
1444  ENSG00000142156       ENST00000498614 ENSE00003582235
1445  ENSG00000142156       ENST00000498614 ENSE00003677365
1446  ENSG00000142156       ENST00000498614 ENSE00003547340
1447  ENSG00000142156       ENST00000498614 ENSE00003668198
1448  ENSG00000142156       ENST00000498614 ENSE00001858383
1449  ENSG00000142156       ENST00000498614 ENSE00003632905
1450  ENSG00000142156       ENST00000486023 ENSE00003668198
1451  ENSG00000142156       ENST00000486023 ENSE00001856981
1452  ENSG00000142156       ENST00000486023 ENSE00001901960
1453  ENSG00000142156       ENST00000612273 ENSE00000952543
1454  ENSG00000142156       ENST00000612273 ENSE00002693513
1455  ENSG00000142156       ENST00000612273 ENSE00002468227
1456  ENSG00000142156       ENST00000612273 ENSE00002430903
1457  ENSG00000142156       ENST00000612273 ENSE00002444369
1458  ENSG00000142156       ENST00000612273 ENSE00002457874
1459  ENSG00000142156       ENST00000612273 ENSE00002517632
1460  ENSG00000142156       ENST00000612273 ENSE00002473380
1461  ENSG00000142156       ENST00000612273 ENSE00002442314
1462  ENSG00000142156       ENST00000612273 ENSE00002514254
1463  ENSG00000142156       ENST00000612273 ENSE00002446605
1464  ENSG00000142156       ENST00000612273 ENSE00002492838
1465  ENSG00000142156       ENST00000612273 ENSE00002477756
1466  ENSG00000142156       ENST00000612273 ENSE00002450819
1467  ENSG00000142156       ENST00000612273 ENSE00002494313
1468  ENSG00000142156       ENST00000612273 ENSE00002468467
1469  ENSG00000142156       ENST00000612273 ENSE00002500444
1470  ENSG00000142156       ENST00000612273 ENSE00002449732
1471  ENSG00000142156       ENST00000612273 ENSE00002470662
1472  ENSG00000142156       ENST00000612273 ENSE00002459279
1473  ENSG00000142156       ENST00000612273 ENSE00002465494
1474  ENSG00000142156       ENST00000612273 ENSE00002478448
1475  ENSG00000142156       ENST00000612273 ENSE00002505064
1476  ENSG00000142156       ENST00000612273 ENSE00002525270
1477  ENSG00000142156       ENST00000612273 ENSE00002519552
1478  ENSG00000142156       ENST00000612273 ENSE00002495880
1479  ENSG00000142156       ENST00000612273 ENSE00003665865
1480  ENSG00000142156       ENST00000612273 ENSE00003672421
1481  ENSG00000142156       ENST00000612273 ENSE00003587026
1482  ENSG00000142156       ENST00000612273 ENSE00003560168
1483  ENSG00000142156       ENST00000612273 ENSE00003615014
1484  ENSG00000142156       ENST00000612273 ENSE00003742428
1485  ENSG00000142156       ENST00000612273 ENSE00003752431
1486  ENSG00000142156       ENST00000612273 ENSE00003753322
1487  ENSG00000225735       ENST00000433383 ENSE00001719980
1488  ENSG00000278181       ENST00000620221 ENSE00003748822
1489  ENSG00000232560       ENST00000440664 ENSE00001788379
1490  ENSG00000232560       ENST00000440664 ENSE00001712270
1491  ENSG00000232560       ENST00000440664 ENSE00001679869
1492  ENSG00000232560       ENST00000440664 ENSE00001713465
1493  ENSG00000232560       ENST00000613691 ENSE00001679869
1494  ENSG00000232560       ENST00000613691 ENSE00003733945
1495  ENSG00000232560       ENST00000613691 ENSE00003744295
1496  ENSG00000226580       ENST00000445481 ENSE00001702562
1497  ENSG00000180509       ENST00000399289 ENSE00001537358
1498  ENSG00000180509       ENST00000399289 ENSE00001537356
1499  ENSG00000180509       ENST00000399289 ENSE00001954035
1500  ENSG00000180509       ENST00000399286 ENSE00001340756
1501  ENSG00000180509       ENST00000399286 ENSE00001340749
1502  ENSG00000180509       ENST00000399286 ENSE00001340746
1503  ENSG00000180509       ENST00000399286 ENSE00001787865
1504  ENSG00000180509       ENST00000416357 ENSE00001537344
1505  ENSG00000180509       ENST00000416357 ENSE00001537342
1506  ENSG00000180509       ENST00000399284 ENSE00001537356
1507  ENSG00000180509       ENST00000399284 ENSE00001537342
1508  ENSG00000180509       ENST00000399284 ENSE00001537339
1509  ENSG00000180509       ENST00000489175 ENSE00001811534
1510  ENSG00000180509       ENST00000489175 ENSE00001859709
1511  ENSG00000180509       ENST00000432085 ENSE00001537358
1512  ENSG00000180509       ENST00000432085 ENSE00001340746
1513  ENSG00000180509       ENST00000432085 ENSE00003743338
1514  ENSG00000180509       ENST00000621601 ENSE00001340746
1515  ENSG00000180509       ENST00000621601 ENSE00003743338
1516  ENSG00000180509       ENST00000621601 ENSE00003711662
1517  ENSG00000180509       ENST00000337385 ENSE00001340746
1518  ENSG00000180509       ENST00000337385 ENSE00003722111
1519  ENSG00000180509       ENST00000337385 ENSE00003729051
1520  ENSG00000180509       ENST00000611936 ENSE00003743338
1521  ENSG00000180509       ENST00000611936 ENSE00003742486
1522  ENSG00000154639       ENST00000284878 ENSE00001356018
1523  ENSG00000154639       ENST00000284878 ENSE00001370254
1524  ENSG00000154639       ENST00000284878 ENSE00001016957
1525  ENSG00000154639       ENST00000284878 ENSE00001016954
1526  ENSG00000154639       ENST00000284878 ENSE00001016953
1527  ENSG00000154639       ENST00000284878 ENSE00001016956
1528  ENSG00000154639       ENST00000284878 ENSE00001918181
1529  ENSG00000154639       ENST00000400166 ENSE00001370254
1530  ENSG00000154639       ENST00000400166 ENSE00001016957
1531  ENSG00000154639       ENST00000400166 ENSE00001016954
1532  ENSG00000154639       ENST00000400166 ENSE00001541826
1533  ENSG00000154639       ENST00000400166 ENSE00001541825
1534  ENSG00000154639       ENST00000356275 ENSE00001370254
1535  ENSG00000154639       ENST00000356275 ENSE00001541853
1536  ENSG00000154639       ENST00000356275 ENSE00001531599
1537  ENSG00000154639       ENST00000400165 ENSE00001370254
1538  ENSG00000154639       ENST00000400165 ENSE00001016957
1539  ENSG00000154639       ENST00000400165 ENSE00001541853
1540  ENSG00000154639       ENST00000400165 ENSE00001541821
1541  ENSG00000154639       ENST00000400169 ENSE00001370254
1542  ENSG00000154639       ENST00000400169 ENSE00001016957
1543  ENSG00000154639       ENST00000400169 ENSE00001016954
1544  ENSG00000154639       ENST00000400169 ENSE00001016953
1545  ENSG00000154639       ENST00000400169 ENSE00001016956
1546  ENSG00000154639       ENST00000400169 ENSE00001541853
1547  ENSG00000154639       ENST00000400169 ENSE00001541834
1548  ENSG00000154639       ENST00000400169 ENSE00001541833
1549  ENSG00000232260       ENST00000413813 ENSE00001673021
1550  ENSG00000224413       ENST00000451618 ENSE00001746523
1551  ENSG00000224413       ENST00000451618 ENSE00001806459
1552  ENSG00000228235       ENST00000429512 ENSE00001613855
1553  ENSG00000228235       ENST00000429512 ENSE00001801618
1554  ENSG00000226115       ENST00000435738 ENSE00001648638
1555  ENSG00000226115       ENST00000435738 ENSE00001764024
1556  ENSG00000243064       ENST00000429114 ENSE00001602011
1557  ENSG00000243064       ENST00000429114 ENSE00001685786
1558  ENSG00000243064       ENST00000429114 ENSE00001749100
1559  ENSG00000243064       ENST00000429114 ENSE00001595237
1560  ENSG00000243064       ENST00000429114 ENSE00003548683
1561  ENSG00000243064       ENST00000482980 ENSE00003548683
1562  ENSG00000243064       ENST00000482980 ENSE00003486510
1563  ENSG00000243064       ENST00000482980 ENSE00003655188
1564  ENSG00000243064       ENST00000482980 ENSE00003668380
1565  ENSG00000243064       ENST00000482980 ENSE00003465925
1566  ENSG00000243064       ENST00000482980 ENSE00003654218
1567  ENSG00000243064       ENST00000482980 ENSE00003494827
1568  ENSG00000243064       ENST00000482980 ENSE00003518649
1569  ENSG00000243064       ENST00000482980 ENSE00001861485
1570  ENSG00000243064       ENST00000482980 ENSE00001851664
1571  ENSG00000243064       ENST00000482980 ENSE00001941127
1572  ENSG00000243064       ENST00000482980 ENSE00001862267
1573  ENSG00000243064       ENST00000482980 ENSE00001868303
1574  ENSG00000243064       ENST00000482980 ENSE00001809374
1575  ENSG00000243064       ENST00000481582 ENSE00003548683
1576  ENSG00000243064       ENST00000481582 ENSE00003655188
1577  ENSG00000243064       ENST00000481582 ENSE00001860371
1578  ENSG00000243064       ENST00000481582 ENSE00001852478
1579  ENSG00000243064       ENST00000481582 ENSE00001833363
1580  ENSG00000243064       ENST00000467409 ENSE00003548683
1581  ENSG00000243064       ENST00000467409 ENSE00003655188
1582  ENSG00000243064       ENST00000467409 ENSE00003668380
1583  ENSG00000243064       ENST00000467409 ENSE00003465925
1584  ENSG00000243064       ENST00000467409 ENSE00001888386
1585  ENSG00000243064       ENST00000467409 ENSE00001809825
1586  ENSG00000243064       ENST00000471902 ENSE00003548683
1587  ENSG00000243064       ENST00000471902 ENSE00003655188
1588  ENSG00000243064       ENST00000471902 ENSE00003668380
1589  ENSG00000243064       ENST00000471902 ENSE00001882870
1590  ENSG00000243064       ENST00000471902 ENSE00001925104
1591  ENSG00000243064       ENST00000463099 ENSE00003548683
1592  ENSG00000243064       ENST00000463099 ENSE00003655188
1593  ENSG00000243064       ENST00000463099 ENSE00003668380
1594  ENSG00000243064       ENST00000463099 ENSE00003465925
1595  ENSG00000243064       ENST00000463099 ENSE00003654218
1596  ENSG00000243064       ENST00000463099 ENSE00003494827
1597  ENSG00000243064       ENST00000463099 ENSE00003518649
1598  ENSG00000243064       ENST00000463099 ENSE00001941127
1599  ENSG00000243064       ENST00000463099 ENSE00001868303
1600  ENSG00000243064       ENST00000463099 ENSE00001856952
1601  ENSG00000243064       ENST00000463099 ENSE00001880249
1602  ENSG00000243064       ENST00000463099 ENSE00001889039
1603  ENSG00000243064       ENST00000463099 ENSE00001844190
1604  ENSG00000243064       ENST00000463099 ENSE00001857549
1605  ENSG00000243064       ENST00000463099 ENSE00001845742
1606  ENSG00000243064       ENST00000463099 ENSE00001913535
1607  ENSG00000243064       ENST00000463099 ENSE00001882947
1608  ENSG00000243064       ENST00000463099 ENSE00001907632
1609  ENSG00000243064       ENST00000463099 ENSE00001854008
1610  ENSG00000243064       ENST00000463099 ENSE00001881574
1611  ENSG00000243064       ENST00000463099 ENSE00001914404
1612  ENSG00000243064       ENST00000463099 ENSE00001957758
1613  ENSG00000243064       ENST00000463099 ENSE00001860265
1614  ENSG00000243064       ENST00000463099 ENSE00001946890
1615  ENSG00000243064       ENST00000463099 ENSE00001927536
1616  ENSG00000243064       ENST00000463099 ENSE00001870240
1617  ENSG00000243064       ENST00000463099 ENSE00001856887
1618  ENSG00000243064       ENST00000463099 ENSE00001916507
1619  ENSG00000159200       ENST00000487434 ENSE00001871208
1620  ENSG00000159200       ENST00000487434 ENSE00001866275
1621  ENSG00000159200       ENST00000482533 ENSE00001891602
1622  ENSG00000159200       ENST00000482533 ENSE00003659681
1623  ENSG00000159200       ENST00000482533 ENSE00003652771
1624  ENSG00000159200       ENST00000481448 ENSE00003659681
1625  ENSG00000159200       ENST00000481448 ENSE00003652771
1626  ENSG00000159200       ENST00000481448 ENSE00001883414
1627  ENSG00000159200       ENST00000481448 ENSE00001869588
1628  ENSG00000159200       ENST00000481448 ENSE00003708710
1629  ENSG00000159200       ENST00000381132 ENSE00003659681
1630  ENSG00000159200       ENST00000381132 ENSE00003652771
1631  ENSG00000159200       ENST00000381132 ENSE00003708710
1632  ENSG00000159200       ENST00000381132 ENSE00001487609
1633  ENSG00000159200       ENST00000487990 ENSE00003659681
1634  ENSG00000159200       ENST00000487990 ENSE00003652771
1635  ENSG00000159200       ENST00000487990 ENSE00001826052
1636  ENSG00000159200       ENST00000487990 ENSE00003524250
1637  ENSG00000159200       ENST00000399272 ENSE00003659681
1638  ENSG00000159200       ENST00000399272 ENSE00003652771
1639  ENSG00000159200       ENST00000399272 ENSE00003708710
1640  ENSG00000159200       ENST00000399272 ENSE00001537287
1641  ENSG00000159200       ENST00000489903 ENSE00001537265
1642  ENSG00000159200       ENST00000489903 ENSE00003707676
1643  ENSG00000159200       ENST00000489903 ENSE00003485644
1644  ENSG00000159200       ENST00000489903 ENSE00003498425
1645  ENSG00000159200       ENST00000313806 ENSE00003659681
1646  ENSG00000159200       ENST00000313806 ENSE00003652771
1647  ENSG00000159200       ENST00000313806 ENSE00003708710
1648  ENSG00000159200       ENST00000313806 ENSE00001869771
1649  ENSG00000159200       ENST00000492600 ENSE00003708710
1650  ENSG00000159200       ENST00000492600 ENSE00001957975
1651  ENSG00000159200       ENST00000492600 ENSE00001899157
1652  ENSG00000159200       ENST00000609325 ENSE00003708809
1653  ENSG00000159200       ENST00000463276 ENSE00001886756
1654  ENSG00000159200       ENST00000463276 ENSE00001893756
1655  ENSG00000159200       ENST00000463276 ENSE00001952788
1656  ENSG00000159200       ENST00000443408 ENSE00003659681
1657  ENSG00000159200       ENST00000443408 ENSE00003524250
1658  ENSG00000159200       ENST00000443408 ENSE00001537265
1659  ENSG00000159200       ENST00000443408 ENSE00003736651
1660  ENSG00000159200       ENST00000381135 ENSE00003659681
1661  ENSG00000159200       ENST00000381135 ENSE00003708710
1662  ENSG00000159200       ENST00000381135 ENSE00003736651
1663  ENSG00000159200       ENST00000381135 ENSE00001487624
1664  ENSG00000159200       ENST00000620920 ENSE00003659681
1665  ENSG00000159200       ENST00000620920 ENSE00003524250
1666  ENSG00000159200       ENST00000620920 ENSE00003736651
1667  ENSG00000159200       ENST00000620920 ENSE00003753426
1668  ENSG00000233767       ENST00000428242 ENSE00001594272
1669  ENSG00000154640       ENST00000339775 ENSE00001897245
1670  ENSG00000154640       ENST00000339775 ENSE00001016965
1671  ENSG00000154640       ENST00000339775 ENSE00001016961
1672  ENSG00000154640       ENST00000339775 ENSE00001372820
1673  ENSG00000154640       ENST00000339775 ENSE00001016967
1674  ENSG00000154640       ENST00000339775 ENSE00001016968
1675  ENSG00000154640       ENST00000348354 ENSE00001016965
1676  ENSG00000154640       ENST00000348354 ENSE00001016961
1677  ENSG00000154640       ENST00000348354 ENSE00001016967
1678  ENSG00000154640       ENST00000348354 ENSE00001016968
1679  ENSG00000154640       ENST00000348354 ENSE00001597441
1680  ENSG00000154640       ENST00000471860 ENSE00001898890
1681  ENSG00000154640       ENST00000471860 ENSE00001854422
1682  ENSG00000154640       ENST00000496601 ENSE00001915391
1683  ENSG00000154640       ENST00000496601 ENSE00001878176
1684  ENSG00000154640       ENST00000464058 ENSE00001945420
1685  ENSG00000154640       ENST00000464058 ENSE00001924316
1686  ENSG00000154640       ENST00000457956 ENSE00001493981
1687  ENSG00000154640       ENST00000457956 ENSE00001719551
1688  ENSG00000154640       ENST00000457956 ENSE00001654853
1689  ENSG00000280594       ENST00000626994 ENSE00003773795
1690  ENSG00000280594       ENST00000626994 ENSE00003773426
1691  ENSG00000280594       ENST00000626994 ENSE00003774205
1692  ENSG00000280594       ENST00000630155 ENSE00003761532
1693  ENSG00000238197       ENST00000458479 ENSE00001724672
1694  ENSG00000238197       ENST00000458479 ENSE00001729889
1695  ENSG00000238197       ENST00000440052 ENSE00001637352
1696  ENSG00000238197       ENST00000440052 ENSE00001758586
1697  ENSG00000238197       ENST00000440052 ENSE00001710895
1698  ENSG00000238197       ENST00000440052 ENSE00001755988
1699  ENSG00000238197       ENST00000455170 ENSE00001758586
1700  ENSG00000238197       ENST00000455170 ENSE00001621594
1701  ENSG00000238197       ENST00000455170 ENSE00001672645
1702  ENSG00000159086       ENST00000331923 ENSE00001418055
1703  ENSG00000159086       ENST00000331923 ENSE00003586691
1704  ENSG00000159086       ENST00000331923 ENSE00003689070
1705  ENSG00000159086       ENST00000331923 ENSE00003475039
1706  ENSG00000159086       ENST00000331923 ENSE00003619321
1707  ENSG00000159086       ENST00000331923 ENSE00003576082
1708  ENSG00000159086       ENST00000331923 ENSE00003600861
1709  ENSG00000159086       ENST00000331923 ENSE00001043135
1710  ENSG00000159086       ENST00000331923 ENSE00003479846
1711  ENSG00000159086       ENST00000331923 ENSE00003659463
1712  ENSG00000159086       ENST00000331923 ENSE00003514300
1713  ENSG00000159086       ENST00000331923 ENSE00003531041
1714  ENSG00000159086       ENST00000331923 ENSE00003564031
1715  ENSG00000159086       ENST00000331923 ENSE00003491166
1716  ENSG00000159086       ENST00000331923 ENSE00003613165
1717  ENSG00000159086       ENST00000331923 ENSE00003485802
1718  ENSG00000159086       ENST00000331923 ENSE00003693611
1719  ENSG00000159086       ENST00000331923 ENSE00001888460
1720  ENSG00000159086       ENST00000466846 ENSE00001932194
1721  ENSG00000159086       ENST00000466846 ENSE00003577622
1722  ENSG00000159086       ENST00000466846 ENSE00003591604
1723  ENSG00000159086       ENST00000466846 ENSE00003663813
1724  ENSG00000159086       ENST00000466846 ENSE00003660643
1725  ENSG00000159086       ENST00000466846 ENSE00003620897
1726  ENSG00000159086       ENST00000466846 ENSE00003585458
1727  ENSG00000159086       ENST00000466846 ENSE00003626527
1728  ENSG00000159086       ENST00000466846 ENSE00003626262
1729  ENSG00000159086       ENST00000466846 ENSE00003634643
1730  ENSG00000159086       ENST00000466846 ENSE00001861849
1731  ENSG00000159086       ENST00000443785 ENSE00003586691
1732  ENSG00000159086       ENST00000443785 ENSE00003689070
1733  ENSG00000159086       ENST00000443785 ENSE00003475039
1734  ENSG00000159086       ENST00000443785 ENSE00003619321
1735  ENSG00000159086       ENST00000443785 ENSE00003576082
1736  ENSG00000159086       ENST00000443785 ENSE00003600861
1737  ENSG00000159086       ENST00000443785 ENSE00003591604
1738  ENSG00000159086       ENST00000443785 ENSE00003663813
1739  ENSG00000159086       ENST00000443785 ENSE00003660643
1740  ENSG00000159086       ENST00000443785 ENSE00003620897
1741  ENSG00000159086       ENST00000443785 ENSE00003585458
1742  ENSG00000159086       ENST00000443785 ENSE00003626527
1743  ENSG00000159086       ENST00000443785 ENSE00003626262
1744  ENSG00000159086       ENST00000443785 ENSE00003634643
1745  ENSG00000159086       ENST00000443785 ENSE00001669669
1746  ENSG00000159086       ENST00000443785 ENSE00001662090
1747  ENSG00000159086       ENST00000443785 ENSE00003626702
1748  ENSG00000159086       ENST00000443785 ENSE00001616809
1749  ENSG00000159086       ENST00000497873 ENSE00003591604
1750  ENSG00000159086       ENST00000497873 ENSE00003663813
1751  ENSG00000159086       ENST00000497873 ENSE00003660643
1752  ENSG00000159086       ENST00000497873 ENSE00003620897
1753  ENSG00000159086       ENST00000497873 ENSE00003585458
1754  ENSG00000159086       ENST00000497873 ENSE00003626527
1755  ENSG00000159086       ENST00000497873 ENSE00003626262
1756  ENSG00000159086       ENST00000497873 ENSE00003634643
1757  ENSG00000159086       ENST00000497873 ENSE00001910821
1758  ENSG00000159086       ENST00000497873 ENSE00001824171
1759  ENSG00000159086       ENST00000290178 ENSE00003586691
1760  ENSG00000159086       ENST00000290178 ENSE00003689070
1761  ENSG00000159086       ENST00000290178 ENSE00003475039
1762  ENSG00000159086       ENST00000290178 ENSE00003619321
1763  ENSG00000159086       ENST00000290178 ENSE00003576082
1764  ENSG00000159086       ENST00000290178 ENSE00003600861
1765  ENSG00000159086       ENST00000290178 ENSE00001043135
1766  ENSG00000159086       ENST00000290178 ENSE00003479846
1767  ENSG00000159086       ENST00000290178 ENSE00003659463
1768  ENSG00000159086       ENST00000290178 ENSE00003514300
1769  ENSG00000159086       ENST00000290178 ENSE00003531041
1770  ENSG00000159086       ENST00000290178 ENSE00003564031
1771  ENSG00000159086       ENST00000290178 ENSE00003491166
1772  ENSG00000159086       ENST00000290178 ENSE00003613165
1773  ENSG00000159086       ENST00000290178 ENSE00003582198
1774  ENSG00000159086       ENST00000290178 ENSE00001326257
1775  ENSG00000159086       ENST00000445049 ENSE00001606735
1776  ENSG00000159086       ENST00000445049 ENSE00001713074
1777  ENSG00000159086       ENST00000445049 ENSE00001648431
1778  ENSG00000159086       ENST00000445049 ENSE00001752495
1779  ENSG00000159086       ENST00000421049 ENSE00003626702
1780  ENSG00000159086       ENST00000421049 ENSE00001593977
1781  ENSG00000159086       ENST00000421049 ENSE00001603347
1782  ENSG00000159086       ENST00000472588 ENSE00003594198
1783  ENSG00000159086       ENST00000472588 ENSE00003640180
1784  ENSG00000159086       ENST00000472588 ENSE00003615127
1785  ENSG00000159086       ENST00000472588 ENSE00003539172
1786  ENSG00000159086       ENST00000472588 ENSE00003523209
1787  ENSG00000159086       ENST00000472588 ENSE00003576093
1788  ENSG00000159086       ENST00000472588 ENSE00003539511
1789  ENSG00000159086       ENST00000472588 ENSE00001845379
1790  ENSG00000159086       ENST00000464256 ENSE00003640180
1791  ENSG00000159086       ENST00000464256 ENSE00003615127
1792  ENSG00000159086       ENST00000464256 ENSE00003539172
1793  ENSG00000159086       ENST00000464256 ENSE00003523209
1794  ENSG00000159086       ENST00000464256 ENSE00001857609
1795  ENSG00000159086       ENST00000464256 ENSE00001869099
1796  ENSG00000239023       ENST00000458992 ENSE00001807640
1797  ENSG00000264063       ENST00000577708 ENSE00002724720
1798  ENSG00000273614       ENST00000619030 ENSE00003736182
1799  ENSG00000199806       ENST00000362936 ENSE00001437699
1800  ENSG00000274060       ENST00000616483 ENSE00003726608
1801  ENSG00000252273       ENST00000516464 ENSE00002088741
1802  ENSG00000183844       ENST00000479810 ENSE00002101425
1803  ENSG00000183844       ENST00000479810 ENSE00001950129
1804  ENSG00000183844       ENST00000479810 ENSE00003534003
1805  ENSG00000183844       ENST00000479810 ENSE00003506040
1806  ENSG00000183844       ENST00000479810 ENSE00003486755
1807  ENSG00000183844       ENST00000479810 ENSE00003664877
1808  ENSG00000183844       ENST00000479810 ENSE00001879922
1809  ENSG00000183844       ENST00000479810 ENSE00003664777
1810  ENSG00000183844       ENST00000479810 ENSE00003644982
1811  ENSG00000183844       ENST00000479810 ENSE00003488124
1812  ENSG00000183844       ENST00000518236 ENSE00003534003
1813  ENSG00000183844       ENST00000518236 ENSE00003506040
1814  ENSG00000183844       ENST00000518236 ENSE00003486755
1815  ENSG00000183844       ENST00000518236 ENSE00001890535
1816  ENSG00000183844       ENST00000518236 ENSE00002115910
1817  ENSG00000183844       ENST00000357985 ENSE00001416667
1818  ENSG00000183844       ENST00000357985 ENSE00003691429
1819  ENSG00000183844       ENST00000357985 ENSE00003569115
1820  ENSG00000183844       ENST00000357985 ENSE00003640536
1821  ENSG00000183844       ENST00000357985 ENSE00003578761
1822  ENSG00000183844       ENST00000357985 ENSE00003481681
1823  ENSG00000183844       ENST00000357985 ENSE00003669104
1824  ENSG00000183844       ENST00000357985 ENSE00003555613
1825  ENSG00000183844       ENST00000398652 ENSE00003691429
1826  ENSG00000183844       ENST00000398652 ENSE00003569115
1827  ENSG00000183844       ENST00000398652 ENSE00003640536
1828  ENSG00000183844       ENST00000398652 ENSE00003578761
1829  ENSG00000183844       ENST00000398652 ENSE00003481681
1830  ENSG00000183844       ENST00000398652 ENSE00003669104
1831  ENSG00000183844       ENST00000398652 ENSE00003555613
1832  ENSG00000183844       ENST00000398652 ENSE00001954950
1833  ENSG00000183844       ENST00000398652 ENSE00001311260
1834  ENSG00000183844       ENST00000398647 ENSE00003569115
1835  ENSG00000183844       ENST00000398647 ENSE00003640536
1836  ENSG00000183844       ENST00000398647 ENSE00003578761
1837  ENSG00000183844       ENST00000398647 ENSE00003481681
1838  ENSG00000183844       ENST00000398647 ENSE00003669104
1839  ENSG00000183844       ENST00000398647 ENSE00003555613
1840  ENSG00000183844       ENST00000398647 ENSE00001954950
1841  ENSG00000183844       ENST00000398646 ENSE00003569115
1842  ENSG00000183844       ENST00000398646 ENSE00003640536
1843  ENSG00000183844       ENST00000398646 ENSE00003578761
1844  ENSG00000183844       ENST00000398646 ENSE00003481681
1845  ENSG00000183844       ENST00000398646 ENSE00003669104
1846  ENSG00000183844       ENST00000398646 ENSE00003555613
1847  ENSG00000183844       ENST00000398646 ENSE00001534120
1848  ENSG00000224100       ENST00000428410 ENSE00001701367
1849  ENSG00000224100       ENST00000428410 ENSE00001759374
1850  ENSG00000160193       ENST00000330317 ENSE00001889621
1851  ENSG00000160193       ENST00000330317 ENSE00003690805
1852  ENSG00000160193       ENST00000330317 ENSE00003486103
1853  ENSG00000160193       ENST00000330317 ENSE00003641564
1854  ENSG00000160193       ENST00000330317 ENSE00003599130
1855  ENSG00000160193       ENST00000330317 ENSE00003694162
1856  ENSG00000160193       ENST00000330317 ENSE00003511519
1857  ENSG00000160193       ENST00000330317 ENSE00003606199
1858  ENSG00000160193       ENST00000330317 ENSE00003570160
1859  ENSG00000160193       ENST00000330317 ENSE00003540633
1860  ENSG00000160193       ENST00000330317 ENSE00001313461
1861  ENSG00000160193       ENST00000330317 ENSE00001283844
1862  ENSG00000160193       ENST00000492742 ENSE00001863152
1863  ENSG00000160193       ENST00000492742 ENSE00003643979
1864  ENSG00000160193       ENST00000492742 ENSE00001937024
1865  ENSG00000160193       ENST00000492742 ENSE00003494390
1866  ENSG00000160193       ENST00000492742 ENSE00003500552
1867  ENSG00000160193       ENST00000492742 ENSE00003616698
1868  ENSG00000160193       ENST00000492742 ENSE00003500418
1869  ENSG00000160193       ENST00000492742 ENSE00003568755
1870  ENSG00000160193       ENST00000492742 ENSE00003678235
1871  ENSG00000160193       ENST00000492742 ENSE00003524987
1872  ENSG00000160193       ENST00000492742 ENSE00003557317
1873  ENSG00000160193       ENST00000398208 ENSE00003690805
1874  ENSG00000160193       ENST00000398208 ENSE00003486103
1875  ENSG00000160193       ENST00000398208 ENSE00003641564
1876  ENSG00000160193       ENST00000398208 ENSE00003599130
1877  ENSG00000160193       ENST00000398208 ENSE00003694162
1878  ENSG00000160193       ENST00000398208 ENSE00003511519
1879  ENSG00000160193       ENST00000398208 ENSE00003606199
1880  ENSG00000160193       ENST00000398208 ENSE00003570160
1881  ENSG00000160193       ENST00000398208 ENSE00003540633
1882  ENSG00000160193       ENST00000398208 ENSE00001138597
1883  ENSG00000160193       ENST00000398208 ENSE00003552431
1884  ENSG00000160193       ENST00000476326 ENSE00003643979
1885  ENSG00000160193       ENST00000476326 ENSE00001937024
1886  ENSG00000160193       ENST00000476326 ENSE00003494390
1887  ENSG00000160193       ENST00000476326 ENSE00003500552
1888  ENSG00000160193       ENST00000476326 ENSE00003616698
1889  ENSG00000160193       ENST00000476326 ENSE00003500418
1890  ENSG00000160193       ENST00000476326 ENSE00003568755
1891  ENSG00000160193       ENST00000476326 ENSE00003678235
1892  ENSG00000160193       ENST00000476326 ENSE00003524987
1893  ENSG00000160193       ENST00000476326 ENSE00003557317
1894  ENSG00000160193       ENST00000476326 ENSE00001857786
1895  ENSG00000160193       ENST00000479429 ENSE00003643979
1896  ENSG00000160193       ENST00000479429 ENSE00001937024
1897  ENSG00000160193       ENST00000479429 ENSE00003494390
1898  ENSG00000160193       ENST00000479429 ENSE00003500552
1899  ENSG00000160193       ENST00000479429 ENSE00003616698
1900  ENSG00000160193       ENST00000479429 ENSE00003500418
1901  ENSG00000160193       ENST00000479429 ENSE00003568755
1902  ENSG00000160193       ENST00000479429 ENSE00001902257
1903  ENSG00000160193       ENST00000463902 ENSE00003643979
1904  ENSG00000160193       ENST00000463902 ENSE00001937024
1905  ENSG00000160193       ENST00000463902 ENSE00003494390
1906  ENSG00000160193       ENST00000463902 ENSE00003500552
1907  ENSG00000160193       ENST00000463902 ENSE00003616698
1908  ENSG00000160193       ENST00000463902 ENSE00001898146
1909  ENSG00000160193       ENST00000463902 ENSE00001928743
1910  ENSG00000160193       ENST00000470658 ENSE00003643979
1911  ENSG00000160193       ENST00000470658 ENSE00003494390
1912  ENSG00000160193       ENST00000470658 ENSE00003500552
1913  ENSG00000160193       ENST00000470658 ENSE00001947837
1914  ENSG00000160193       ENST00000470658 ENSE00003517811
1915  ENSG00000228677       ENST00000424733 ENSE00001619558
1916  ENSG00000228677       ENST00000424733 ENSE00001652211
1917  ENSG00000232010       ENST00000442785 ENSE00001615938
1918  ENSG00000232010       ENST00000442785 ENSE00001605285
1919  ENSG00000279177       ENST00000624906 ENSE00003756514
1920  ENSG00000278158       ENST00000619053 ENSE00003728435
1921  ENSG00000276076       ENST00000619537 ENSE00003716393
1922  ENSG00000276076       ENST00000619537 ENSE00003745946
1923  ENSG00000276076       ENST00000619537 ENSE00003751475
1924  ENSG00000276076       ENST00000624019 ENSE00003745946
1925  ENSG00000276076       ENST00000624019 ENSE00003758215
1926  ENSG00000276076       ENST00000624019 ENSE00003757854
1927  ENSG00000276076       ENST00000624901 ENSE00003755715
1928  ENSG00000276076       ENST00000624901 ENSE00003755354
1929  ENSG00000276076       ENST00000624932 ENSE00003745946
1930  ENSG00000276076       ENST00000624932 ENSE00003755371
1931  ENSG00000276076       ENST00000624932 ENSE00003757511
1932  ENSG00000279226       ENST00000623061 ENSE00003756704
1933  ENSG00000273254       ENST00000608809 ENSE00003703315
1934  ENSG00000228318       ENST00000411427 ENSE00003718873
1935  ENSG00000228318       ENST00000411427 ENSE00001774186
1936  ENSG00000228318       ENST00000411427 ENSE00001786815
1937  ENSG00000157601       ENST00000490220 ENSE00001942734
1938  ENSG00000157601       ENST00000490220 ENSE00001534043
1939  ENSG00000157601       ENST00000490220 ENSE00001534041
1940  ENSG00000157601       ENST00000490220 ENSE00001534040
1941  ENSG00000157601       ENST00000490220 ENSE00001534038
1942  ENSG00000157601       ENST00000468506 ENSE00001952105
1943  ENSG00000157601       ENST00000468506 ENSE00001715229
1944  ENSG00000157601       ENST00000468506 ENSE00001776947
1945  ENSG00000157601       ENST00000468506 ENSE00001943029
1946  ENSG00000157601       ENST00000398600 ENSE00001534043
1947  ENSG00000157601       ENST00000398600 ENSE00001534041
1948  ENSG00000157601       ENST00000398600 ENSE00001534040
1949  ENSG00000157601       ENST00000398600 ENSE00001534038
1950  ENSG00000157601       ENST00000398600 ENSE00001534045
1951  ENSG00000157601       ENST00000398600 ENSE00001534036
1952  ENSG00000157601       ENST00000398600 ENSE00003795097
1953  ENSG00000157601       ENST00000398600 ENSE00002459117
1954  ENSG00000157601       ENST00000398600 ENSE00001033794
1955  ENSG00000157601       ENST00000398600 ENSE00003785790
1956  ENSG00000157601       ENST00000398600 ENSE00002440210
1957  ENSG00000157601       ENST00000398600 ENSE00001033785
1958  ENSG00000157601       ENST00000398600 ENSE00001033788
1959  ENSG00000157601       ENST00000398600 ENSE00001033793
1960  ENSG00000157601       ENST00000398600 ENSE00003640572
1961  ENSG00000157601       ENST00000398600 ENSE00001033780
1962  ENSG00000157601       ENST00000398600 ENSE00001225085
1963  ENSG00000157601       ENST00000398600 ENSE00001033791
1964  ENSG00000157601       ENST00000398600 ENSE00001533818
1965  ENSG00000157601       ENST00000413778 ENSE00001534041
1966  ENSG00000157601       ENST00000413778 ENSE00001534040
1967  ENSG00000157601       ENST00000413778 ENSE00001534038
1968  ENSG00000157601       ENST00000413778 ENSE00001715229
1969  ENSG00000157601       ENST00000413778 ENSE00001776947
1970  ENSG00000157601       ENST00000413778 ENSE00001534036
1971  ENSG00000157601       ENST00000413778 ENSE00001765492
1972  ENSG00000157601       ENST00000413778 ENSE00001752508
1973  ENSG00000157601       ENST00000413778 ENSE00001634889
1974  ENSG00000157601       ENST00000419044 ENSE00001534040
1975  ENSG00000157601       ENST00000419044 ENSE00001534038
1976  ENSG00000157601       ENST00000419044 ENSE00001534036
1977  ENSG00000157601       ENST00000419044 ENSE00001595799
1978  ENSG00000157601       ENST00000419044 ENSE00001724986
1979  ENSG00000157601       ENST00000398598 ENSE00001534040
1980  ENSG00000157601       ENST00000398598 ENSE00001534038
1981  ENSG00000157601       ENST00000398598 ENSE00001534036
1982  ENSG00000157601       ENST00000398598 ENSE00003795097
1983  ENSG00000157601       ENST00000398598 ENSE00002459117
1984  ENSG00000157601       ENST00000398598 ENSE00001033794
1985  ENSG00000157601       ENST00000398598 ENSE00003785790
1986  ENSG00000157601       ENST00000398598 ENSE00002440210
1987  ENSG00000157601       ENST00000398598 ENSE00001033785
1988  ENSG00000157601       ENST00000398598 ENSE00001033788
1989  ENSG00000157601       ENST00000398598 ENSE00001033793
1990  ENSG00000157601       ENST00000398598 ENSE00003640572
1991  ENSG00000157601       ENST00000398598 ENSE00001033780
1992  ENSG00000157601       ENST00000398598 ENSE00001225085
1993  ENSG00000157601       ENST00000398598 ENSE00001033791
1994  ENSG00000157601       ENST00000398598 ENSE00001533818
1995  ENSG00000157601       ENST00000398598 ENSE00001784904
1996  ENSG00000157601       ENST00000424365 ENSE00001534038
1997  ENSG00000157601       ENST00000424365 ENSE00001534036
1998  ENSG00000157601       ENST00000424365 ENSE00002459117
1999  ENSG00000157601       ENST00000424365 ENSE00001033794
2000  ENSG00000157601       ENST00000424365 ENSE00003785790
2001  ENSG00000157601       ENST00000424365 ENSE00001752508
2002  ENSG00000157601       ENST00000424365 ENSE00001689686
2003  ENSG00000157601       ENST00000484465 ENSE00001930931
2004  ENSG00000157601       ENST00000484465 ENSE00001948624
2005  ENSG00000157601       ENST00000417963 ENSE00001534038
2006  ENSG00000157601       ENST00000417963 ENSE00001534036
2007  ENSG00000157601       ENST00000417963 ENSE00003795097
2008  ENSG00000157601       ENST00000417963 ENSE00002459117
2009  ENSG00000157601       ENST00000417963 ENSE00001033794
2010  ENSG00000157601       ENST00000417963 ENSE00003785790
2011  ENSG00000157601       ENST00000417963 ENSE00001663814
2012  ENSG00000157601       ENST00000417963 ENSE00002480631
2013  ENSG00000157601       ENST00000441677 ENSE00001534040
2014  ENSG00000157601       ENST00000441677 ENSE00001534038
2015  ENSG00000157601       ENST00000441677 ENSE00001534036
2016  ENSG00000157601       ENST00000441677 ENSE00001752508
2017  ENSG00000157601       ENST00000441677 ENSE00001746505
2018  ENSG00000157601       ENST00000441677 ENSE00002494256
2019  ENSG00000157601       ENST00000478268 ENSE00001906621
2020  ENSG00000157601       ENST00000478268 ENSE00001843747
2021  ENSG00000157601       ENST00000427464 ENSE00001534036
2022  ENSG00000157601       ENST00000427464 ENSE00003795097
2023  ENSG00000157601       ENST00000427464 ENSE00001788494
2024  ENSG00000157601       ENST00000288383 ENSE00001033794
2025  ENSG00000157601       ENST00000288383 ENSE00003785790
2026  ENSG00000157601       ENST00000288383 ENSE00002440210
2027  ENSG00000157601       ENST00000288383 ENSE00001033785
2028  ENSG00000157601       ENST00000288383 ENSE00001033788
2029  ENSG00000157601       ENST00000288383 ENSE00001033793
2030  ENSG00000157601       ENST00000288383 ENSE00003640572
2031  ENSG00000157601       ENST00000288383 ENSE00001033780
2032  ENSG00000157601       ENST00000288383 ENSE00001225085
2033  ENSG00000157601       ENST00000288383 ENSE00001033791
2034  ENSG00000157601       ENST00000288383 ENSE00001533818
2035  ENSG00000157601       ENST00000288383 ENSE00001533821
2036  ENSG00000157601       ENST00000288383 ENSE00001533820
2037  ENSG00000157601       ENST00000467510 ENSE00001930325
2038  ENSG00000157601       ENST00000467510 ENSE00001892183
2039  ENSG00000157601       ENST00000486275 ENSE00001926086
2040  ENSG00000157601       ENST00000486275 ENSE00003691836
2041  ENSG00000157601       ENST00000486275 ENSE00001928216
2042  ENSG00000157601       ENST00000491110 ENSE00001821897
2043  ENSG00000157601       ENST00000491110 ENSE00001931053
2044  ENSG00000157601       ENST00000455164 ENSE00001534038
2045  ENSG00000157601       ENST00000455164 ENSE00003795097
2046  ENSG00000157601       ENST00000455164 ENSE00002459117
2047  ENSG00000157601       ENST00000455164 ENSE00001033794
2048  ENSG00000157601       ENST00000455164 ENSE00003785790
2049  ENSG00000157601       ENST00000455164 ENSE00002440210
2050  ENSG00000157601       ENST00000455164 ENSE00001033785
2051  ENSG00000157601       ENST00000455164 ENSE00001033788
2052  ENSG00000157601       ENST00000455164 ENSE00001033793
2053  ENSG00000157601       ENST00000455164 ENSE00003640572
2054  ENSG00000157601       ENST00000455164 ENSE00001033780
2055  ENSG00000157601       ENST00000455164 ENSE00001225085
2056  ENSG00000157601       ENST00000455164 ENSE00001033791
2057  ENSG00000157601       ENST00000455164 ENSE00002290682
2058  ENSG00000157601       ENST00000455164 ENSE00001292698
2059  ENSG00000157601       ENST00000619682 ENSE00003795097
2060  ENSG00000157601       ENST00000619682 ENSE00002459117
2061  ENSG00000157601       ENST00000619682 ENSE00001033794
2062  ENSG00000157601       ENST00000619682 ENSE00003785790
2063  ENSG00000157601       ENST00000619682 ENSE00002440210
2064  ENSG00000157601       ENST00000619682 ENSE00001033785
2065  ENSG00000157601       ENST00000619682 ENSE00001033788
2066  ENSG00000157601       ENST00000619682 ENSE00001033793
2067  ENSG00000157601       ENST00000619682 ENSE00003640572
2068  ENSG00000157601       ENST00000619682 ENSE00003754697
2069  ENSG00000274225       ENST00000617205 ENSE00003731552
2070  ENSG00000228709       ENST00000449713 ENSE00001752545
2071  ENSG00000228709       ENST00000449713 ENSE00001681181
2072  ENSG00000277352       ENST00000622854 ENSE00003747804
2073  ENSG00000266195       ENST00000583100 ENSE00002702021
2074  ENSG00000276902       ENST00000615262 ENSE00003749199
2075  ENSG00000223901       ENST00000418029 ENSE00001619066
2076  ENSG00000223901       ENST00000418029 ENSE00003773090
2077  ENSG00000223901       ENST00000626933 ENSE00003770624
2078  ENSG00000223901       ENST00000626933 ENSE00001656573
2079  ENSG00000223901       ENST00000626933 ENSE00003767484
2080  ENSG00000223901       ENST00000626933 ENSE00003760665
2081  ENSG00000278961       ENST00000624951 ENSE00003759970
2082  ENSG00000278961       ENST00000624951 ENSE00003755793
2083  ENSG00000277067       ENST00000623095 ENSE00003755511
2084  ENSG00000277067       ENST00000623095 ENSE00003756819
2085  ENSG00000277067       ENST00000623095 ENSE00003744303
2086  ENSG00000277067       ENST00000623095 ENSE00003757948
2087  ENSG00000277067       ENST00000622911 ENSE00003758925
2088  ENSG00000277067       ENST00000622911 ENSE00003759116
2089  ENSG00000277067       ENST00000622911 ENSE00003755901
2090  ENSG00000277067       ENST00000621909 ENSE00003744303
2091  ENSG00000277067       ENST00000621909 ENSE00003728829
2092  ENSG00000277067       ENST00000621909 ENSE00003757247
2093  ENSG00000277067       ENST00000623394 ENSE00003744303
2094  ENSG00000277067       ENST00000623394 ENSE00003759476
2095  ENSG00000277067       ENST00000623394 ENSE00003757804
2096  ENSG00000277067       ENST00000623394 ENSE00003760366
2097  ENSG00000277067       ENST00000624310 ENSE00003744303
2098  ENSG00000277067       ENST00000624310 ENSE00003755219
2099  ENSG00000277067       ENST00000624310 ENSE00003758184
2100  ENSG00000277067       ENST00000615804 ENSE00003751287
2101  ENSG00000277067       ENST00000615804 ENSE00003734211
2102  ENSG00000227406       ENST00000444889 ENSE00001765685
2103  ENSG00000227406       ENST00000444889 ENSE00001728994
2104  ENSG00000227406       ENST00000444889 ENSE00001764217
2105  ENSG00000227406       ENST00000444889 ENSE00001631951
2106  ENSG00000227406       ENST00000444889 ENSE00001638845
2107  ENSG00000182362       ENST00000397691 ENSE00003566287
2108  ENSG00000182362       ENST00000397691 ENSE00001302401
2109  ENSG00000182362       ENST00000397691 ENSE00001322578
2110  ENSG00000182362       ENST00000397691 ENSE00001529749
2111  ENSG00000182362       ENST00000397691 ENSE00001529733
2112  ENSG00000182362       ENST00000492864 ENSE00003679893
2113  ENSG00000182362       ENST00000492864 ENSE00001300525
2114  ENSG00000182362       ENST00000492864 ENSE00001884057
2115  ENSG00000182362       ENST00000397692 ENSE00001322578
2116  ENSG00000182362       ENST00000397692 ENSE00001529749
2117  ENSG00000182362       ENST00000397692 ENSE00001529738
2118  ENSG00000182362       ENST00000397692 ENSE00001529737
2119  ENSG00000182362       ENST00000339195 ENSE00003566287
2120  ENSG00000182362       ENST00000339195 ENSE00001322578
2121  ENSG00000182362       ENST00000339195 ENSE00001529749
2122  ENSG00000182362       ENST00000339195 ENSE00001529753
2123  ENSG00000182362       ENST00000329319 ENSE00003566287
2124  ENSG00000182362       ENST00000329319 ENSE00001302401
2125  ENSG00000182362       ENST00000329319 ENSE00001322578
2126  ENSG00000182362       ENST00000329319 ENSE00001529749
2127  ENSG00000182362       ENST00000329319 ENSE00001529753
2128  ENSG00000182362       ENST00000397694 ENSE00001302401
2129  ENSG00000182362       ENST00000397694 ENSE00001322578
2130  ENSG00000182362       ENST00000397694 ENSE00001529738
2131  ENSG00000182362       ENST00000397694 ENSE00001529737
2132  ENSG00000182362       ENST00000397694 ENSE00001529735
2133  ENSG00000182362       ENST00000468924 ENSE00001890878
2134  ENSG00000182362       ENST00000468924 ENSE00003679893
2135  ENSG00000182362       ENST00000468924 ENSE00001879604
2136  ENSG00000182362       ENST00000397701 ENSE00001820637
2137  ENSG00000182362       ENST00000397701 ENSE00003566287
2138  ENSG00000182362       ENST00000397701 ENSE00001302401
2139  ENSG00000182362       ENST00000397701 ENSE00001322578
2140  ENSG00000182362       ENST00000397701 ENSE00001529749
2141  ENSG00000160194       ENST00000460259 ENSE00001933035
2142  ENSG00000160194       ENST00000460259 ENSE00001890968
2143  ENSG00000160194       ENST00000460259 ENSE00001865986
2144  ENSG00000160194       ENST00000460259 ENSE00003654774
2145  ENSG00000160194       ENST00000460259 ENSE00003507608
2146  ENSG00000160194       ENST00000460259 ENSE00003680556
2147  ENSG00000160194       ENST00000354250 ENSE00001947597
2148  ENSG00000160194       ENST00000354250 ENSE00003679113
2149  ENSG00000160194       ENST00000354250 ENSE00003589387
2150  ENSG00000160194       ENST00000354250 ENSE00003614580
2151  ENSG00000160194       ENST00000340344 ENSE00003679113
2152  ENSG00000160194       ENST00000340344 ENSE00001436763
2153  ENSG00000160194       ENST00000340344 ENSE00001352095
2154  ENSG00000160194       ENST00000460740 ENSE00001885628
2155  ENSG00000160194       ENST00000460740 ENSE00001951615
2156  ENSG00000227039       ENST00000609592 ENSE00003710239
2157  ENSG00000227039       ENST00000609592 ENSE00003710484
2158  ENSG00000227039       ENST00000609592 ENSE00003705562
2159  ENSG00000227039       ENST00000610063 ENSE00001617442
2160  ENSG00000227039       ENST00000610063 ENSE00003707190
2161  ENSG00000227039       ENST00000610063 ENSE00003708738
2162  ENSG00000227039       ENST00000608043 ENSE00001617442
2163  ENSG00000227039       ENST00000608043 ENSE00003710787
2164  ENSG00000227039       ENST00000608043 ENSE00003707190
2165  ENSG00000227039       ENST00000608043 ENSE00003705201
2166  ENSG00000227039       ENST00000429132 ENSE00001617442
2167  ENSG00000227039       ENST00000429132 ENSE00001640376
2168  ENSG00000227039       ENST00000429132 ENSE00001598901
2169  ENSG00000227039       ENST00000609694 ENSE00001617442
2170  ENSG00000227039       ENST00000609694 ENSE00001704328
2171  ENSG00000227039       ENST00000609694 ENSE00003702969
2172  ENSG00000227039       ENST00000609694 ENSE00003710787
2173  ENSG00000227039       ENST00000609694 ENSE00003710887
2174  ENSG00000227039       ENST00000441379 ENSE00001790658
2175  ENSG00000227039       ENST00000441379 ENSE00001617442
2176  ENSG00000227039       ENST00000441379 ENSE00001704328
2177  ENSG00000227039       ENST00000441379 ENSE00001605959
2178  ENSG00000236883       ENST00000423276 ENSE00001804657
2179  ENSG00000236883       ENST00000423276 ENSE00001669381
2180  ENSG00000154736       ENST00000284987 ENSE00001017391
2181  ENSG00000154736       ENST00000284987 ENSE00001017390
2182  ENSG00000154736       ENST00000284987 ENSE00001017386
2183  ENSG00000154736       ENST00000284987 ENSE00001017392
2184  ENSG00000154736       ENST00000284987 ENSE00001017389
2185  ENSG00000154736       ENST00000284987 ENSE00001017388
2186  ENSG00000154736       ENST00000284987 ENSE00001017393
2187  ENSG00000154736       ENST00000284987 ENSE00001017387
2188  ENSG00000232777       ENST00000450190 ENSE00001685797
2189  ENSG00000236663       ENST00000424933 ENSE00001715893
2190  ENSG00000236663       ENST00000424933 ENSE00001602659
2191  ENSG00000228120       ENST00000433840 ENSE00001606520
2192  ENSG00000228120       ENST00000433840 ENSE00002229482
2193  ENSG00000228120       ENST00000433840 ENSE00001622616
2194  ENSG00000160202       ENST00000291554 ENSE00001050530
2195  ENSG00000160202       ENST00000291554 ENSE00003509055
2196  ENSG00000160202       ENST00000291554 ENSE00003462823
2197  ENSG00000160202       ENST00000482775 ENSE00001944360
2198  ENSG00000160202       ENST00000482775 ENSE00001890817
2199  ENSG00000160202       ENST00000482775 ENSE00003636164
2200  ENSG00000160202       ENST00000482775 ENSE00003585847
2201  ENSG00000160202       ENST00000398133 ENSE00003509055
2202  ENSG00000160202       ENST00000398133 ENSE00001531761
2203  ENSG00000160202       ENST00000398133 ENSE00001531760
2204  ENSG00000160202       ENST00000398132 ENSE00003509055
2205  ENSG00000160202       ENST00000398132 ENSE00001531759
2206  ENSG00000160202       ENST00000398132 ENSE00001531758
2207  ENSG00000160202       ENST00000468016 ENSE00001809860
2208  ENSG00000160202       ENST00000468016 ENSE00001864083
2209  ENSG00000183255       ENST00000330938 ENSE00003464385
2210  ENSG00000183255       ENST00000330938 ENSE00003589141
2211  ENSG00000183255       ENST00000330938 ENSE00001315456
2212  ENSG00000183255       ENST00000330938 ENSE00001303620
2213  ENSG00000183255       ENST00000330938 ENSE00003496468
2214  ENSG00000183255       ENST00000330938 ENSE00001291155
2215  ENSG00000183255       ENST00000397886 ENSE00003589141
2216  ENSG00000183255       ENST00000397886 ENSE00003496468
2217  ENSG00000183255       ENST00000397886 ENSE00001291155
2218  ENSG00000183255       ENST00000397886 ENSE00001530589
2219  ENSG00000183255       ENST00000397886 ENSE00001932137
2220  ENSG00000183255       ENST00000474737 ENSE00001822465
2221  ENSG00000183255       ENST00000474737 ENSE00003546676
2222  ENSG00000183255       ENST00000474737 ENSE00003679044
2223  ENSG00000183255       ENST00000474737 ENSE00001950421
2224  ENSG00000183255       ENST00000494690 ENSE00003546676
2225  ENSG00000183255       ENST00000494690 ENSE00003679044
2226  ENSG00000183255       ENST00000494690 ENSE00001953116
2227  ENSG00000183255       ENST00000494690 ENSE00001927838
2228  ENSG00000183255       ENST00000494690 ENSE00003531203
2229  ENSG00000183255       ENST00000494690 ENSE00002455661
2230  ENSG00000183255       ENST00000480234 ENSE00003546676
2231  ENSG00000183255       ENST00000480234 ENSE00001927838
2232  ENSG00000183255       ENST00000480234 ENSE00001906465
2233  ENSG00000183255       ENST00000480234 ENSE00001948521
2234  ENSG00000183255       ENST00000445724 ENSE00003464385
2235  ENSG00000183255       ENST00000445724 ENSE00001530597
2236  ENSG00000183255       ENST00000445724 ENSE00002263448
2237  ENSG00000183255       ENST00000397887 ENSE00001924408
2238  ENSG00000183255       ENST00000397887 ENSE00003464385
2239  ENSG00000183255       ENST00000397887 ENSE00003589141
2240  ENSG00000183255       ENST00000397887 ENSE00001315456
2241  ENSG00000227702       ENST00000413718 ENSE00001672060
2242  ENSG00000227702       ENST00000413718 ENSE00001747712
2243  ENSG00000227702       ENST00000413718 ENSE00001704971
2244  ENSG00000235890       ENST00000451035 ENSE00001782279
2245  ENSG00000235890       ENST00000451035 ENSE00001657960
2246  ENSG00000235890       ENST00000451035 ENSE00001762813
2247  ENSG00000235890       ENST00000451035 ENSE00001595085
2248  ENSG00000235890       ENST00000451035 ENSE00001788976
2249  ENSG00000235890       ENST00000451035 ENSE00001789177
2250  ENSG00000235890       ENST00000430181 ENSE00001665245
2251  ENSG00000235890       ENST00000430181 ENSE00001765454
2252  ENSG00000235890       ENST00000430181 ENSE00001595553
2253  ENSG00000221859       ENST00000380095 ENSE00001483712
2254  ENSG00000239415       ENST00000447037 ENSE00001750338
2255  ENSG00000239415       ENST00000447037 ENSE00001666775
2256  ENSG00000239415       ENST00000430259 ENSE00001774125
2257  ENSG00000239415       ENST00000430259 ENSE00001700485
2258  ENSG00000215424       ENST00000590829 ENSE00002823050
2259  ENSG00000215424       ENST00000590829 ENSE00001312905
2260  ENSG00000215424       ENST00000590829 ENSE00002773042
2261  ENSG00000215424       ENST00000591223 ENSE00001312905
2262  ENSG00000215424       ENST00000591223 ENSE00002920131
2263  ENSG00000215424       ENST00000591223 ENSE00002855596
2264  ENSG00000215424       ENST00000414659 ENSE00001312905
2265  ENSG00000215424       ENST00000414659 ENSE00001344241
2266  ENSG00000215424       ENST00000414659 ENSE00001483121
2267  ENSG00000215424       ENST00000414659 ENSE00001667261
2268  ENSG00000215424       ENST00000432735 ENSE00001305889
2269  ENSG00000215424       ENST00000432735 ENSE00001419892
2270  ENSG00000215424       ENST00000432735 ENSE00001793841
2271  ENSG00000215424       ENST00000444998 ENSE00001793841
2272  ENSG00000215424       ENST00000444998 ENSE00001612115
2273  ENSG00000215424       ENST00000455567 ENSE00001312905
2274  ENSG00000215424       ENST00000455567 ENSE00001667261
2275  ENSG00000215424       ENST00000455567 ENSE00001764670
2276  ENSG00000215424       ENST00000421927 ENSE00001631322
2277  ENSG00000215424       ENST00000421927 ENSE00001760389
2278  ENSG00000215424       ENST00000588753 ENSE00002915067
2279  ENSG00000215424       ENST00000588753 ENSE00002781108
2280  ENSG00000215424       ENST00000588753 ENSE00002858811
2281  ENSG00000215424       ENST00000420074 ENSE00001638204
2282  ENSG00000215424       ENST00000420074 ENSE00001608729
2283  ENSG00000160294       ENST00000467026 ENSE00001956545
2284  ENSG00000160294       ENST00000467026 ENSE00003643410
2285  ENSG00000160294       ENST00000467026 ENSE00003688476
2286  ENSG00000160294       ENST00000467026 ENSE00003484738
2287  ENSG00000160294       ENST00000467026 ENSE00003581188
2288  ENSG00000160294       ENST00000467026 ENSE00003526095
2289  ENSG00000160294       ENST00000467026 ENSE00003597990
2290  ENSG00000160294       ENST00000467026 ENSE00003500518
2291  ENSG00000160294       ENST00000467026 ENSE00003482097
2292  ENSG00000160294       ENST00000467026 ENSE00003603723
2293  ENSG00000160294       ENST00000467026 ENSE00003533166
2294  ENSG00000160294       ENST00000467026 ENSE00003463408
2295  ENSG00000160294       ENST00000467026 ENSE00003633023
2296  ENSG00000160294       ENST00000496607 ENSE00003643410
2297  ENSG00000160294       ENST00000496607 ENSE00003688476
2298  ENSG00000160294       ENST00000496607 ENSE00003484738
2299  ENSG00000160294       ENST00000496607 ENSE00003581188
2300  ENSG00000160294       ENST00000496607 ENSE00003526095
2301  ENSG00000160294       ENST00000496607 ENSE00003597990
2302  ENSG00000160294       ENST00000496607 ENSE00003500518
2303  ENSG00000160294       ENST00000496607 ENSE00003482097
2304  ENSG00000160294       ENST00000496607 ENSE00003603723
2305  ENSG00000160294       ENST00000496607 ENSE00003533166
2306  ENSG00000160294       ENST00000496607 ENSE00003463408
2307  ENSG00000160294       ENST00000496607 ENSE00003633023
2308  ENSG00000160294       ENST00000496607 ENSE00001815486
2309  ENSG00000160294       ENST00000496607 ENSE00003634959
2310  ENSG00000160294       ENST00000496607 ENSE00003620264
2311  ENSG00000160294       ENST00000496607 ENSE00003647431
2312  ENSG00000160294       ENST00000496607 ENSE00003667275
2313  ENSG00000160294       ENST00000496607 ENSE00003673707
2314  ENSG00000160294       ENST00000486937 ENSE00003643410
2315  ENSG00000160294       ENST00000486937 ENSE00003688476
2316  ENSG00000160294       ENST00000486937 ENSE00003484738
2317  ENSG00000160294       ENST00000486937 ENSE00003581188
2318  ENSG00000160294       ENST00000486937 ENSE00003500518
2319  ENSG00000160294       ENST00000486937 ENSE00003482097
2320  ENSG00000160294       ENST00000486937 ENSE00003603723
2321  ENSG00000160294       ENST00000486937 ENSE00003533166
2322  ENSG00000160294       ENST00000486937 ENSE00003463408
2323  ENSG00000160294       ENST00000486937 ENSE00003633023
2324  ENSG00000160294       ENST00000486937 ENSE00003634959
2325  ENSG00000160294       ENST00000486937 ENSE00003620264
2326  ENSG00000160294       ENST00000486937 ENSE00003647431
2327  ENSG00000160294       ENST00000486937 ENSE00003667275
2328  ENSG00000160294       ENST00000486937 ENSE00003673707
2329  ENSG00000160294       ENST00000486937 ENSE00001822948
2330  ENSG00000160294       ENST00000486937 ENSE00003561146
2331  ENSG00000160294       ENST00000486937 ENSE00001878149
2332  ENSG00000160294       ENST00000397708 ENSE00001529813
2333  ENSG00000160294       ENST00000397708 ENSE00001529811
2334  ENSG00000160294       ENST00000397708 ENSE00001051219
2335  ENSG00000160294       ENST00000397708 ENSE00001051212
2336  ENSG00000160294       ENST00000397708 ENSE00001051213
2337  ENSG00000160294       ENST00000397708 ENSE00001051232
2338  ENSG00000160294       ENST00000397708 ENSE00001051216
2339  ENSG00000160294       ENST00000397708 ENSE00001051206
2340  ENSG00000160294       ENST00000397708 ENSE00001051226
2341  ENSG00000160294       ENST00000397708 ENSE00001051240
2342  ENSG00000160294       ENST00000397708 ENSE00001051215
2343  ENSG00000160294       ENST00000397708 ENSE00003461146
2344  ENSG00000160294       ENST00000397708 ENSE00003532634
2345  ENSG00000160294       ENST00000397708 ENSE00003620301
2346  ENSG00000160294       ENST00000397708 ENSE00003486931
2347  ENSG00000160294       ENST00000397708 ENSE00003675693
2348  ENSG00000160294       ENST00000397708 ENSE00003458431
2349  ENSG00000160294       ENST00000397708 ENSE00003599023
2350  ENSG00000160294       ENST00000397708 ENSE00003566979
2351  ENSG00000160294       ENST00000397708 ENSE00003506114
2352  ENSG00000160294       ENST00000397708 ENSE00003487436
2353  ENSG00000160294       ENST00000397708 ENSE00003553058
2354  ENSG00000160294       ENST00000397708 ENSE00003572625
2355  ENSG00000160294       ENST00000397708 ENSE00003482081
2356  ENSG00000160294       ENST00000397708 ENSE00003630073
2357  ENSG00000160294       ENST00000397708 ENSE00003459748
2358  ENSG00000160294       ENST00000397708 ENSE00003606597
2359  ENSG00000160294       ENST00000397708 ENSE00003485376
2360  ENSG00000160294       ENST00000397708 ENSE00003650730
2361  ENSG00000160294       ENST00000481113 ENSE00003643410
2362  ENSG00000160294       ENST00000481113 ENSE00003688476
2363  ENSG00000160294       ENST00000481113 ENSE00003484738
2364  ENSG00000160294       ENST00000481113 ENSE00001872826
2365  ENSG00000160294       ENST00000494755 ENSE00001823878
2366  ENSG00000160294       ENST00000494755 ENSE00001843870
2367  ENSG00000160294       ENST00000479557 ENSE00001910988
2368  ENSG00000160294       ENST00000479557 ENSE00001889901
2369  ENSG00000160294       ENST00000426537 ENSE00001615976
2370  ENSG00000160294       ENST00000426537 ENSE00001662047
2371  ENSG00000160294       ENST00000495475 ENSE00001937494
2372  ENSG00000160294       ENST00000495475 ENSE00001879980
2373  ENSG00000160294       ENST00000291688 ENSE00001529811
2374  ENSG00000160294       ENST00000291688 ENSE00001051219
2375  ENSG00000160294       ENST00000291688 ENSE00001051212
2376  ENSG00000160294       ENST00000291688 ENSE00001051213
2377  ENSG00000160294       ENST00000291688 ENSE00001051232
2378  ENSG00000160294       ENST00000291688 ENSE00001051216
2379  ENSG00000160294       ENST00000291688 ENSE00001051206
2380  ENSG00000160294       ENST00000291688 ENSE00001051226
2381  ENSG00000160294       ENST00000291688 ENSE00001051240
2382  ENSG00000160294       ENST00000291688 ENSE00001051215
2383  ENSG00000160294       ENST00000291688 ENSE00003461146
2384  ENSG00000160294       ENST00000291688 ENSE00003532634
2385  ENSG00000160294       ENST00000291688 ENSE00003620301
2386  ENSG00000160294       ENST00000291688 ENSE00003486931
2387  ENSG00000160294       ENST00000291688 ENSE00003675693
2388  ENSG00000160294       ENST00000291688 ENSE00003458431
2389  ENSG00000160294       ENST00000291688 ENSE00003599023
2390  ENSG00000160294       ENST00000291688 ENSE00003566979
2391  ENSG00000160294       ENST00000291688 ENSE00003506114
2392  ENSG00000160294       ENST00000291688 ENSE00003487436
2393  ENSG00000160294       ENST00000291688 ENSE00003553058
2394  ENSG00000160294       ENST00000291688 ENSE00003572625
2395  ENSG00000160294       ENST00000291688 ENSE00003482081
2396  ENSG00000160294       ENST00000291688 ENSE00003630073
2397  ENSG00000160294       ENST00000291688 ENSE00003459748
2398  ENSG00000160294       ENST00000291688 ENSE00003606597
2399  ENSG00000160294       ENST00000291688 ENSE00003485376
2400  ENSG00000160294       ENST00000291688 ENSE00001051222
2401  ENSG00000160199       ENST00000291547 ENSE00001860427
2402  ENSG00000160199       ENST00000291547 ENSE00003491838
2403  ENSG00000160199       ENST00000291547 ENSE00003627186
2404  ENSG00000160199       ENST00000291547 ENSE00003513802
2405  ENSG00000160199       ENST00000291547 ENSE00003738221
2406  ENSG00000160199       ENST00000291547 ENSE00003551171
2407  ENSG00000160199       ENST00000291547 ENSE00003597493
2408  ENSG00000160199       ENST00000291547 ENSE00003520581
2409  ENSG00000160199       ENST00000291547 ENSE00003699223
2410  ENSG00000160199       ENST00000291547 ENSE00003700349
2411  ENSG00000160199       ENST00000291547 ENSE00001050477
2412  ENSG00000160199       ENST00000418336 ENSE00003462056
2413  ENSG00000160199       ENST00000418336 ENSE00002563670
2414  ENSG00000160199       ENST00000418336 ENSE00002537972
2415  ENSG00000160199       ENST00000480179 ENSE00003462056
2416  ENSG00000160199       ENST00000480179 ENSE00003637651
2417  ENSG00000160199       ENST00000480179 ENSE00003576614
2418  ENSG00000160199       ENST00000480179 ENSE00003624412
2419  ENSG00000160199       ENST00000480179 ENSE00002508807
2420  ENSG00000160199       ENST00000480179 ENSE00001951813
2421  ENSG00000160199       ENST00000456957 ENSE00002553706
2422  ENSG00000160199       ENST00000456957 ENSE00002565116
2423  ENSG00000160199       ENST00000560448 ENSE00003627186
2424  ENSG00000160199       ENST00000560448 ENSE00003601994
2425  ENSG00000160199       ENST00000560448 ENSE00003566766
2426  ENSG00000160199       ENST00000560448 ENSE00003701920
2427  ENSG00000160199       ENST00000560448 ENSE00003698867
2428  ENSG00000160199       ENST00000560448 ENSE00002562979
2429  ENSG00000160199       ENST00000560448 ENSE00003521625
2430  ENSG00000160199       ENST00000560448 ENSE00003695650
2431  ENSG00000160199       ENST00000560448 ENSE00003549078
2432  ENSG00000160199       ENST00000607049 ENSE00003701920
2433  ENSG00000160199       ENST00000607049 ENSE00003701093
2434  ENSG00000160199       ENST00000607049 ENSE00003699704
2435  ENSG00000160199       ENST00000607049 ENSE00002537572
2436  ENSG00000160199       ENST00000557820 ENSE00003701920
2437  ENSG00000160199       ENST00000557820 ENSE00003698867
2438  ENSG00000160199       ENST00000557820 ENSE00003695650
2439  ENSG00000160199       ENST00000557820 ENSE00002540015
2440  ENSG00000160199       ENST00000557820 ENSE00002539137
2441  ENSG00000160199       ENST00000474336 ENSE00003698867
2442  ENSG00000160199       ENST00000474336 ENSE00001887167
2443  ENSG00000160199       ENST00000474336 ENSE00001931642
2444  ENSG00000160199       ENST00000607150 ENSE00003698867
2445  ENSG00000160199       ENST00000607150 ENSE00003697340
2446  ENSG00000160199       ENST00000607150 ENSE00003695687
2447  ENSG00000160199       ENST00000558955 ENSE00003695650
2448  ENSG00000160199       ENST00000558955 ENSE00002563068
2449  ENSG00000160199       ENST00000558955 ENSE00003699728
2450  ENSG00000160199       ENST00000432907 ENSE00001860427
2451  ENSG00000160199       ENST00000432907 ENSE00003551171
2452  ENSG00000160199       ENST00000432907 ENSE00003597493
2453  ENSG00000160199       ENST00000432907 ENSE00003520581
2454  ENSG00000160199       ENST00000432907 ENSE00003699223
2455  ENSG00000160199       ENST00000432907 ENSE00003700349
2456  ENSG00000160199       ENST00000432907 ENSE00003462056
2457  ENSG00000160199       ENST00000432907 ENSE00003637651
2458  ENSG00000160199       ENST00000432907 ENSE00003738006
2459  ENSG00000160199       ENST00000432907 ENSE00003572037
2460  ENSG00000232401       ENST00000432830 ENSE00001777924
2461  ENSG00000232401       ENST00000432830 ENSE00001623179
2462  ENSG00000232401       ENST00000432830 ENSE00001768569
2463  ENSG00000223400       ENST00000418874 ENSE00001613842
2464  ENSG00000223400       ENST00000418874 ENSE00001647667
2465  ENSG00000232806       ENST00000415820 ENSE00001720802
2466  ENSG00000232806       ENST00000415820 ENSE00001665375
2467  ENSG00000232806       ENST00000415820 ENSE00001653250
2468  ENSG00000223692       ENST00000442434 ENSE00001740202
2469  ENSG00000223692       ENST00000442434 ENSE00001790677
2470  ENSG00000223692       ENST00000442434 ENSE00001765964
2471  ENSG00000223692       ENST00000442434 ENSE00001681675
2472  ENSG00000175894       ENST00000323084 ENSE00001423221
2473  ENSG00000175894       ENST00000323084 ENSE00003535905
2474  ENSG00000175894       ENST00000323084 ENSE00001284021
2475  ENSG00000175894       ENST00000323084 ENSE00001283963
2476  ENSG00000175894       ENST00000323084 ENSE00001284011
2477  ENSG00000175894       ENST00000323084 ENSE00001284001
2478  ENSG00000175894       ENST00000323084 ENSE00001283993
2479  ENSG00000175894       ENST00000323084 ENSE00001283944
2480  ENSG00000175894       ENST00000323084 ENSE00001283979
2481  ENSG00000175894       ENST00000323084 ENSE00001284037
2482  ENSG00000175894       ENST00000323084 ENSE00001283969
2483  ENSG00000175894       ENST00000323084 ENSE00001837326
2484  ENSG00000175894       ENST00000397916 ENSE00001284021
2485  ENSG00000175894       ENST00000397916 ENSE00001283963
2486  ENSG00000175894       ENST00000397916 ENSE00001284011
2487  ENSG00000175894       ENST00000397916 ENSE00001284001
2488  ENSG00000175894       ENST00000397916 ENSE00001283993
2489  ENSG00000175894       ENST00000397916 ENSE00001283944
2490  ENSG00000175894       ENST00000397916 ENSE00001283979
2491  ENSG00000175894       ENST00000397916 ENSE00001284037
2492  ENSG00000175894       ENST00000397916 ENSE00001530728
2493  ENSG00000175894       ENST00000397916 ENSE00003694712
2494  ENSG00000175894       ENST00000397916 ENSE00001530723
2495  ENSG00000175894       ENST00000614657 ENSE00001284021
2496  ENSG00000175894       ENST00000614657 ENSE00001283963
2497  ENSG00000175894       ENST00000614657 ENSE00001284011
2498  ENSG00000175894       ENST00000614657 ENSE00001284001
2499  ENSG00000175894       ENST00000614657 ENSE00001283993
2500  ENSG00000175894       ENST00000614657 ENSE00001283944
2501  ENSG00000175894       ENST00000614657 ENSE00001283979
2502  ENSG00000175894       ENST00000614657 ENSE00001284037
2503  ENSG00000175894       ENST00000614657 ENSE00001283969
2504  ENSG00000175894       ENST00000614657 ENSE00003694712
2505  ENSG00000175894       ENST00000614657 ENSE00003738390
2506  ENSG00000175894       ENST00000614657 ENSE00003718568
2507  ENSG00000175894       ENST00000614657 ENSE00003727284
2508  ENSG00000175894       ENST00000613245 ENSE00001423221
2509  ENSG00000175894       ENST00000613245 ENSE00003535905
2510  ENSG00000175894       ENST00000613245 ENSE00001283993
2511  ENSG00000175894       ENST00000613245 ENSE00001283944
2512  ENSG00000175894       ENST00000613245 ENSE00001283979
2513  ENSG00000175894       ENST00000613245 ENSE00001284037
2514  ENSG00000175894       ENST00000613245 ENSE00001283969
2515  ENSG00000175894       ENST00000613245 ENSE00003727284
2516  ENSG00000175894       ENST00000613245 ENSE00003718356
2517  ENSG00000175894       ENST00000613245 ENSE00003732571
2518  ENSG00000215455       ENST00000400375 ENSE00001542634
2519  ENSG00000280441       ENST00000623860 ENSE00003778050
2520  ENSG00000280441       ENST00000623860 ENSE00003757769
2521  ENSG00000280441       ENST00000623860 ENSE00003756013
2522  ENSG00000280441       ENST00000623860 ENSE00003755168
2523  ENSG00000280441       ENST00000623860 ENSE00003757460
2524  ENSG00000280441       ENST00000623860 ENSE00003755829
2525  ENSG00000280441       ENST00000623860 ENSE00003755242
2526  ENSG00000224649       ENST00000430001 ENSE00001612552
2527  ENSG00000224649       ENST00000430001 ENSE00001626475
2528  ENSG00000274790       ENST00000616522 ENSE00003748067
2529  ENSG00000207503       ENST00000384772 ENSE00001807952
2530  ENSG00000275166       ENST00000622292 ENSE00003738277
2531  ENSG00000252963       ENST00000517154 ENSE00002089431
2532  ENSG00000215454       ENST00000400374 ENSE00001542630
2533  ENSG00000215454       ENST00000622352 ENSE00003731192
2534  ENSG00000215454       ENST00000622352 ENSE00003802553
2535  ENSG00000215454       ENST00000622352 ENSE00003751886
2536  ENSG00000215454       ENST00000622352 ENSE00003811422
2537  ENSG00000215454       ENST00000622352 ENSE00003739004
2538  ENSG00000215454       ENST00000616689 ENSE00003803406
2539  ENSG00000215454       ENST00000616689 ENSE00003801807
2540  ENSG00000215454       ENST00000616689 ENSE00003714391
2541  ENSG00000215454       ENST00000616689 ENSE00003742381
2542  ENSG00000229880       ENST00000435590 ENSE00000768001
2543  ENSG00000207863       ENST00000385128 ENSE00001500134
2544  ENSG00000276546       ENST00000619005 ENSE00003732689
2545  ENSG00000201984       ENST00000365114 ENSE00001807733
2546  ENSG00000266692       ENST00000581669 ENSE00002724833
2547  ENSG00000221837       ENST00000397911 ENSE00001530698
2548  ENSG00000221837       ENST00000484861 ENSE00001912554
2549  ENSG00000221837       ENST00000484861 ENSE00001891028
2550  ENSG00000221837       ENST00000616529 ENSE00003737172
2551  ENSG00000221837       ENST00000616529 ENSE00003712036
2552  ENSG00000221837       ENST00000616529 ENSE00003726178
2553  ENSG00000160200       ENST00000461686 ENSE00001908507
2554  ENSG00000160200       ENST00000461686 ENSE00003469164
2555  ENSG00000160200       ENST00000461686 ENSE00003525847
2556  ENSG00000160200       ENST00000461686 ENSE00003615145
2557  ENSG00000160200       ENST00000461686 ENSE00003607098
2558  ENSG00000160200       ENST00000461686 ENSE00003667754
2559  ENSG00000160200       ENST00000461686 ENSE00003680209
2560  ENSG00000160200       ENST00000461686 ENSE00003459939
2561  ENSG00000160200       ENST00000461686 ENSE00003561958
2562  ENSG00000160200       ENST00000461686 ENSE00003666289
2563  ENSG00000160200       ENST00000461686 ENSE00003616603
2564  ENSG00000160200       ENST00000461686 ENSE00003497276
2565  ENSG00000160200       ENST00000461686 ENSE00003566190
2566  ENSG00000160200       ENST00000461686 ENSE00003609272
2567  ENSG00000160200       ENST00000398158 ENSE00001531894
2568  ENSG00000160200       ENST00000398158 ENSE00001531893
2569  ENSG00000160200       ENST00000398158 ENSE00003478977
2570  ENSG00000160200       ENST00000398158 ENSE00003589198
2571  ENSG00000160200       ENST00000398158 ENSE00003692007
2572  ENSG00000160200       ENST00000398158 ENSE00003790203
2573  ENSG00000160200       ENST00000398158 ENSE00003666431
2574  ENSG00000160200       ENST00000398158 ENSE00003566517
2575  ENSG00000160200       ENST00000398158 ENSE00003498748
2576  ENSG00000160200       ENST00000398158 ENSE00003462667
2577  ENSG00000160200       ENST00000398158 ENSE00003646251
2578  ENSG00000160200       ENST00000398158 ENSE00003525308
2579  ENSG00000160200       ENST00000398158 ENSE00003682750
2580  ENSG00000160200       ENST00000398158 ENSE00003646800
2581  ENSG00000160200       ENST00000398158 ENSE00003601456
2582  ENSG00000160200       ENST00000398158 ENSE00003643599
2583  ENSG00000160200       ENST00000398158 ENSE00003511439
2584  ENSG00000160200       ENST00000398165 ENSE00003478977
2585  ENSG00000160200       ENST00000398165 ENSE00003589198
2586  ENSG00000160200       ENST00000398165 ENSE00003692007
2587  ENSG00000160200       ENST00000398165 ENSE00003790203
2588  ENSG00000160200       ENST00000398165 ENSE00003666431
2589  ENSG00000160200       ENST00000398165 ENSE00003566517
2590  ENSG00000160200       ENST00000398165 ENSE00003498748
2591  ENSG00000160200       ENST00000398165 ENSE00003462667
2592  ENSG00000160200       ENST00000398165 ENSE00003646251
2593  ENSG00000160200       ENST00000398165 ENSE00003525308
2594  ENSG00000160200       ENST00000398165 ENSE00003682750
2595  ENSG00000160200       ENST00000398165 ENSE00003646800
2596  ENSG00000160200       ENST00000398165 ENSE00003601456
2597  ENSG00000160200       ENST00000398165 ENSE00003643599
2598  ENSG00000160200       ENST00000398165 ENSE00003511439
2599  ENSG00000160200       ENST00000398165 ENSE00001702250
2600  ENSG00000160200       ENST00000398165 ENSE00001270928
2601  ENSG00000160200       ENST00000359624 ENSE00003478977
2602  ENSG00000160200       ENST00000359624 ENSE00003589198
2603  ENSG00000160200       ENST00000359624 ENSE00003692007
2604  ENSG00000160200       ENST00000359624 ENSE00003790203
2605  ENSG00000160200       ENST00000359624 ENSE00003666431
2606  ENSG00000160200       ENST00000359624 ENSE00003566517
2607  ENSG00000160200       ENST00000359624 ENSE00003498748
2608  ENSG00000160200       ENST00000359624 ENSE00003462667
2609  ENSG00000160200       ENST00000359624 ENSE00003646251
2610  ENSG00000160200       ENST00000359624 ENSE00003525308
2611  ENSG00000160200       ENST00000359624 ENSE00003682750
2612  ENSG00000160200       ENST00000359624 ENSE00003646800
2613  ENSG00000160200       ENST00000359624 ENSE00003601456
2614  ENSG00000160200       ENST00000359624 ENSE00003643599
2615  ENSG00000160200       ENST00000359624 ENSE00001270928
2616  ENSG00000160200       ENST00000359624 ENSE00001413822
2617  ENSG00000160200       ENST00000359624 ENSE00001050504
2618  ENSG00000160200       ENST00000359624 ENSE00001424612
2619  ENSG00000160200       ENST00000352178 ENSE00003478977
2620  ENSG00000160200       ENST00000352178 ENSE00003589198
2621  ENSG00000160200       ENST00000352178 ENSE00003692007
2622  ENSG00000160200       ENST00000352178 ENSE00003790203
2623  ENSG00000160200       ENST00000352178 ENSE00003666431
2624  ENSG00000160200       ENST00000352178 ENSE00003566517
2625  ENSG00000160200       ENST00000352178 ENSE00003498748
2626  ENSG00000160200       ENST00000352178 ENSE00003462667
2627  ENSG00000160200       ENST00000352178 ENSE00003646251
2628  ENSG00000160200       ENST00000352178 ENSE00003525308
2629  ENSG00000160200       ENST00000352178 ENSE00003682750
2630  ENSG00000160200       ENST00000352178 ENSE00003646800
2631  ENSG00000160200       ENST00000352178 ENSE00003601456
2632  ENSG00000160200       ENST00000352178 ENSE00003643599
2633  ENSG00000160200       ENST00000352178 ENSE00003511439
2634  ENSG00000160200       ENST00000352178 ENSE00001270928
2635  ENSG00000160200       ENST00000352178 ENSE00001531915
2636  ENSG00000160200       ENST00000451248 ENSE00003601456
2637  ENSG00000160200       ENST00000451248 ENSE00003643599
2638  ENSG00000160200       ENST00000451248 ENSE00001596615
2639  ENSG00000160200       ENST00000451248 ENSE00001367761
2640  ENSG00000160200       ENST00000451248 ENSE00001611563
2641  ENSG00000160200       ENST00000462349 ENSE00003616603
2642  ENSG00000160200       ENST00000462349 ENSE00003497276
2643  ENSG00000160200       ENST00000462349 ENSE00003566190
2644  ENSG00000160200       ENST00000462349 ENSE00001863234
2645  ENSG00000160200       ENST00000462349 ENSE00001896483
2646  ENSG00000160200       ENST00000491776 ENSE00003666289
2647  ENSG00000160200       ENST00000491776 ENSE00003616603
2648  ENSG00000160200       ENST00000491776 ENSE00003497276
2649  ENSG00000160200       ENST00000491776 ENSE00003566190
2650  ENSG00000160200       ENST00000491776 ENSE00001826173
2651  ENSG00000160200       ENST00000491776 ENSE00001924222
2652  ENSG00000160200       ENST00000458223 ENSE00003601456
2653  ENSG00000160200       ENST00000458223 ENSE00003643599
2654  ENSG00000160200       ENST00000458223 ENSE00001367761
2655  ENSG00000160200       ENST00000458223 ENSE00001628373
2656  ENSG00000160200       ENST00000458223 ENSE00001630945
2657  ENSG00000160200       ENST00000430013 ENSE00003525308
2658  ENSG00000160200       ENST00000430013 ENSE00003682750
2659  ENSG00000160200       ENST00000430013 ENSE00003646800
2660  ENSG00000160200       ENST00000430013 ENSE00003601456
2661  ENSG00000160200       ENST00000430013 ENSE00003643599
2662  ENSG00000160200       ENST00000430013 ENSE00001367761
2663  ENSG00000160200       ENST00000430013 ENSE00001772125
2664  ENSG00000160200       ENST00000496485 ENSE00003680209
2665  ENSG00000160200       ENST00000496485 ENSE00003459939
2666  ENSG00000160200       ENST00000496485 ENSE00003561958
2667  ENSG00000160200       ENST00000496485 ENSE00001949697
2668  ENSG00000160200       ENST00000496485 ENSE00001946945
2669  ENSG00000160200       ENST00000486098 ENSE00001842478
2670  ENSG00000160200       ENST00000486098 ENSE00001905316
2671  ENSG00000160200       ENST00000441030 ENSE00003478977
2672  ENSG00000160200       ENST00000441030 ENSE00003589198
2673  ENSG00000160200       ENST00000441030 ENSE00003692007
2674  ENSG00000160200       ENST00000441030 ENSE00003790203
2675  ENSG00000160200       ENST00000441030 ENSE00001270928
2676  ENSG00000160200       ENST00000441030 ENSE00001744053
2677  ENSG00000160200       ENST00000470912 ENSE00003469164
2678  ENSG00000160200       ENST00000470912 ENSE00001702250
2679  ENSG00000160200       ENST00000470912 ENSE00001270928
2680  ENSG00000160200       ENST00000470912 ENSE00003669131
2681  ENSG00000160200       ENST00000470912 ENSE00003594354
2682  ENSG00000160200       ENST00000470912 ENSE00001942914
2683  ENSG00000160200       ENST00000465732 ENSE00001270928
2684  ENSG00000160200       ENST00000465732 ENSE00003669131
2685  ENSG00000160200       ENST00000465732 ENSE00001826787
2686  ENSG00000160200       ENST00000465732 ENSE00001889312
2687  ENSG00000160200       ENST00000488526 ENSE00003669131
2688  ENSG00000160200       ENST00000488526 ENSE00001953424
2689  ENSG00000160200       ENST00000488526 ENSE00001822201
2690  ENSG00000160200       ENST00000478709 ENSE00001879838
2691  ENSG00000160200       ENST00000478709 ENSE00001946214
2692  ENSG00000228137       ENST00000444966 ENSE00001791667
2693  ENSG00000228137       ENST00000444966 ENSE00001740737
2694  ENSG00000230366       ENST00000581640 ENSE00001725341
2695  ENSG00000230366       ENST00000581640 ENSE00001775785
2696  ENSG00000230366       ENST00000581640 ENSE00002721013
2697  ENSG00000230366       ENST00000581640 ENSE00002730956
2698  ENSG00000230366       ENST00000581640 ENSE00002712199
2699  ENSG00000230366       ENST00000578829 ENSE00001725341
2700  ENSG00000230366       ENST00000578829 ENSE00001775785
2701  ENSG00000230366       ENST00000578829 ENSE00002693074
2702  ENSG00000230366       ENST00000578829 ENSE00002698248
2703  ENSG00000230366       ENST00000585273 ENSE00001725341
2704  ENSG00000230366       ENST00000585273 ENSE00001775785
2705  ENSG00000230366       ENST00000585273 ENSE00002730956
2706  ENSG00000230366       ENST00000585273 ENSE00002693074
2707  ENSG00000230366       ENST00000585273 ENSE00002723329
2708  ENSG00000230366       ENST00000584840 ENSE00001725341
2709  ENSG00000230366       ENST00000584840 ENSE00001775785
2710  ENSG00000230366       ENST00000584840 ENSE00002730956
2711  ENSG00000230366       ENST00000584840 ENSE00002685409
2712  ENSG00000230366       ENST00000454482 ENSE00001725341
2713  ENSG00000230366       ENST00000454482 ENSE00001775785
2714  ENSG00000230366       ENST00000454482 ENSE00001786499
2715  ENSG00000157538       ENST00000497493 ENSE00001863158
2716  ENSG00000157538       ENST00000497493 ENSE00001838101
2717  ENSG00000157538       ENST00000309117 ENSE00001535907
2718  ENSG00000157538       ENST00000309117 ENSE00003523339
2719  ENSG00000157538       ENST00000309117 ENSE00003458727
2720  ENSG00000157538       ENST00000309117 ENSE00003520824
2721  ENSG00000157538       ENST00000309117 ENSE00003505095
2722  ENSG00000157538       ENST00000309117 ENSE00003615492
2723  ENSG00000157538       ENST00000309117 ENSE00003635629
2724  ENSG00000157538       ENST00000309117 ENSE00003490386
2725  ENSG00000157538       ENST00000399000 ENSE00001814007
2726  ENSG00000157538       ENST00000399000 ENSE00003679523
2727  ENSG00000157538       ENST00000399000 ENSE00003569704
2728  ENSG00000157538       ENST00000399000 ENSE00003609994
2729  ENSG00000157538       ENST00000399000 ENSE00001851352
2730  ENSG00000157538       ENST00000399000 ENSE00001825203
2731  ENSG00000157538       ENST00000399000 ENSE00001847806
2732  ENSG00000157538       ENST00000399000 ENSE00003690629
2733  ENSG00000157538       ENST00000399000 ENSE00003642305
2734  ENSG00000157538       ENST00000399000 ENSE00003619075
2735  ENSG00000157538       ENST00000399001 ENSE00003505095
2736  ENSG00000157538       ENST00000399001 ENSE00003615492
2737  ENSG00000157538       ENST00000399001 ENSE00003635629
2738  ENSG00000157538       ENST00000399001 ENSE00001535918
2739  ENSG00000157538       ENST00000399001 ENSE00001535917
2740  ENSG00000157538       ENST00000476950 ENSE00003523339
2741  ENSG00000157538       ENST00000476950 ENSE00003458727
2742  ENSG00000157538       ENST00000476950 ENSE00003505095
2743  ENSG00000157538       ENST00000476950 ENSE00003615492
2744  ENSG00000157538       ENST00000476950 ENSE00003635629
2745  ENSG00000157538       ENST00000476950 ENSE00001870537
2746  ENSG00000157538       ENST00000476950 ENSE00001930684
2747  ENSG00000157538       ENST00000488368 ENSE00003679523
2748  ENSG00000157538       ENST00000488368 ENSE00003569704
2749  ENSG00000157538       ENST00000488368 ENSE00003609994
2750  ENSG00000157538       ENST00000488368 ENSE00003690629
2751  ENSG00000157538       ENST00000488368 ENSE00003642305
2752  ENSG00000157538       ENST00000488368 ENSE00001879923
2753  ENSG00000157538       ENST00000488368 ENSE00001901807
2754  ENSG00000157538       ENST00000488368 ENSE00003590920
2755  ENSG00000157538       ENST00000488368 ENSE00001919170
2756  ENSG00000157538       ENST00000398998 ENSE00001535907
2757  ENSG00000157538       ENST00000398998 ENSE00003458727
2758  ENSG00000157538       ENST00000398998 ENSE00003520824
2759  ENSG00000157538       ENST00000398998 ENSE00003505095
2760  ENSG00000157538       ENST00000398998 ENSE00003615492
2761  ENSG00000157538       ENST00000398998 ENSE00003635629
2762  ENSG00000157538       ENST00000398998 ENSE00001535905
2763  ENSG00000157538       ENST00000495858 ENSE00003609994
2764  ENSG00000157538       ENST00000495858 ENSE00003590920
2765  ENSG00000157538       ENST00000495858 ENSE00001889967
2766  ENSG00000157538       ENST00000495858 ENSE00001952028
2767  ENSG00000157538       ENST00000480452 ENSE00003679523
2768  ENSG00000157538       ENST00000480452 ENSE00003569704
2769  ENSG00000157538       ENST00000480452 ENSE00001823421
2770  ENSG00000157538       ENST00000480452 ENSE00001922878
2771  ENSG00000157538       ENST00000475009 ENSE00003679523
2772  ENSG00000157538       ENST00000475009 ENSE00001948394
2773  ENSG00000157538       ENST00000475009 ENSE00001921742
2774  ENSG00000157538       ENST00000492514 ENSE00001903216
2775  ENSG00000157538       ENST00000492514 ENSE00001843513
2776  ENSG00000157538       ENST00000462467 ENSE00001837948
2777  ENSG00000157538       ENST00000462467 ENSE00001892436
2778  ENSG00000157538       ENST00000498789 ENSE00001892436
2779  ENSG00000157538       ENST00000498789 ENSE00001897034
2780  ENSG00000221398       ENST00000408471 ENSE00001565106
2781  ENSG00000277437       ENST00000614492 ENSE00003754026
2782  ENSG00000275167       ENST00000611994 ENSE00003717901
2783  ENSG00000227698       ENST00000432411 ENSE00001721524
2784  ENSG00000227698       ENST00000432411 ENSE00001797065
2785  ENSG00000227698       ENST00000432411 ENSE00001739053
2786  ENSG00000241123       ENST00000400372 ENSE00001542625
2787  ENSG00000242553       ENST00000440629 ENSE00001611756
2788  ENSG00000242553       ENST00000440629 ENSE00001775751
2789  ENSG00000232698       ENST00000423967 ENSE00001685278
2790  ENSG00000232698       ENST00000423967 ENSE00001758001
2791  ENSG00000224427       ENST00000444036 ENSE00001800916
2792  ENSG00000154654       ENST00000400546 ENSE00001543472
2793  ENSG00000154654       ENST00000400546 ENSE00003496361
2794  ENSG00000154654       ENST00000400546 ENSE00003691834
2795  ENSG00000154654       ENST00000400546 ENSE00003484151
2796  ENSG00000154654       ENST00000400546 ENSE00003667449
2797  ENSG00000154654       ENST00000400546 ENSE00003570848
2798  ENSG00000154654       ENST00000400546 ENSE00003633427
2799  ENSG00000154654       ENST00000400546 ENSE00001017033
2800  ENSG00000154654       ENST00000400546 ENSE00001017041
2801  ENSG00000154654       ENST00000400546 ENSE00001017045
2802  ENSG00000154654       ENST00000400546 ENSE00001017052
2803  ENSG00000154654       ENST00000400546 ENSE00001017031
2804  ENSG00000154654       ENST00000400546 ENSE00003566319
2805  ENSG00000154654       ENST00000400546 ENSE00003613335
2806  ENSG00000154654       ENST00000400546 ENSE00001017035
2807  ENSG00000154654       ENST00000400546 ENSE00001017048
2808  ENSG00000154654       ENST00000400546 ENSE00001017044
2809  ENSG00000154654       ENST00000400546 ENSE00001543443
2810  ENSG00000154654       ENST00000486367 ENSE00001889667
2811  ENSG00000154654       ENST00000486367 ENSE00003486515
2812  ENSG00000154654       ENST00000486367 ENSE00003459285
2813  ENSG00000154654       ENST00000486367 ENSE00003462661
2814  ENSG00000154654       ENST00000486367 ENSE00001932067
2815  ENSG00000154654       ENST00000461281 ENSE00001957208
2816  ENSG00000154654       ENST00000461281 ENSE00003471779
2817  ENSG00000154654       ENST00000461281 ENSE00003613854
2818  ENSG00000154654       ENST00000461281 ENSE00003577791
2819  ENSG00000154654       ENST00000461281 ENSE00001839401
2820  ENSG00000154654       ENST00000484983 ENSE00001828379
2821  ENSG00000154654       ENST00000484983 ENSE00003546575
2822  ENSG00000154654       ENST00000484983 ENSE00003567949
2823  ENSG00000154654       ENST00000284894 ENSE00003691834
2824  ENSG00000154654       ENST00000284894 ENSE00003484151
2825  ENSG00000154654       ENST00000284894 ENSE00003667449
2826  ENSG00000154654       ENST00000284894 ENSE00003570848
2827  ENSG00000154654       ENST00000284894 ENSE00003633427
2828  ENSG00000154654       ENST00000284894 ENSE00001017033
2829  ENSG00000154654       ENST00000284894 ENSE00001017041
2830  ENSG00000154654       ENST00000284894 ENSE00001017045
2831  ENSG00000154654       ENST00000284894 ENSE00001017052
2832  ENSG00000154654       ENST00000284894 ENSE00001017031
2833  ENSG00000154654       ENST00000284894 ENSE00003566319
2834  ENSG00000154654       ENST00000284894 ENSE00003613335
2835  ENSG00000154654       ENST00000284894 ENSE00001017035
2836  ENSG00000154654       ENST00000284894 ENSE00001017048
2837  ENSG00000154654       ENST00000284894 ENSE00001017044
2838  ENSG00000154654       ENST00000284894 ENSE00003749383
2839  ENSG00000154654       ENST00000284894 ENSE00001315726
2840  ENSG00000230212       ENST00000535199 ENSE00002324295
2841  ENSG00000230212       ENST00000535199 ENSE00002234089
2842  ENSG00000230212       ENST00000535199 ENSE00002675369
2843  ENSG00000230212       ENST00000535199 ENSE00002205771
2844  ENSG00000230212       ENST00000415147 ENSE00002675369
2845  ENSG00000230212       ENST00000415147 ENSE00001597545
2846  ENSG00000233393       ENST00000422473 ENSE00001713087
2847  ENSG00000233393       ENST00000422473 ENSE00001723606
2848  ENSG00000214889       ENST00000419943 ENSE00001795815
2849  ENSG00000205581       ENST00000288344 ENSE00001705853
2850  ENSG00000205581       ENST00000288344 ENSE00003552745
2851  ENSG00000205581       ENST00000288344 ENSE00003585321
2852  ENSG00000205581       ENST00000288344 ENSE00003605975
2853  ENSG00000205581       ENST00000288344 ENSE00003676815
2854  ENSG00000205581       ENST00000288344 ENSE00003601648
2855  ENSG00000205581       ENST00000288344 ENSE00003686823
2856  ENSG00000205581       ENST00000486741 ENSE00003686823
2857  ENSG00000205581       ENST00000486741 ENSE00001643983
2858  ENSG00000205581       ENST00000486741 ENSE00003669232
2859  ENSG00000205581       ENST00000486741 ENSE00003627640
2860  ENSG00000205581       ENST00000486741 ENSE00001898923
2861  ENSG00000205581       ENST00000431390 ENSE00003552745
2862  ENSG00000205581       ENST00000431390 ENSE00003585321
2863  ENSG00000205581       ENST00000431390 ENSE00003605975
2864  ENSG00000205581       ENST00000431390 ENSE00003601648
2865  ENSG00000205581       ENST00000431390 ENSE00003686823
2866  ENSG00000205581       ENST00000431390 ENSE00001659207
2867  ENSG00000205581       ENST00000431390 ENSE00001642656
2868  ENSG00000205581       ENST00000431390 ENSE00003493302
2869  ENSG00000205581       ENST00000380749 ENSE00003552745
2870  ENSG00000205581       ENST00000380749 ENSE00003585321
2871  ENSG00000205581       ENST00000380749 ENSE00003605975
2872  ENSG00000205581       ENST00000380749 ENSE00001942039
2873  ENSG00000205581       ENST00000380749 ENSE00003532954
2874  ENSG00000205581       ENST00000380749 ENSE00003659677
2875  ENSG00000205581       ENST00000492280 ENSE00003601648
2876  ENSG00000205581       ENST00000492280 ENSE00003686823
2877  ENSG00000205581       ENST00000492280 ENSE00003669232
2878  ENSG00000205581       ENST00000492280 ENSE00003627640
2879  ENSG00000205581       ENST00000492280 ENSE00001942976
2880  ENSG00000205581       ENST00000492280 ENSE00003613784
2881  ENSG00000205581       ENST00000492280 ENSE00003485728
2882  ENSG00000205581       ENST00000492280 ENSE00001930581
2883  ENSG00000205581       ENST00000436324 ENSE00003552745
2884  ENSG00000205581       ENST00000436324 ENSE00003585321
2885  ENSG00000205581       ENST00000436324 ENSE00003605975
2886  ENSG00000205581       ENST00000436324 ENSE00003601648
2887  ENSG00000205581       ENST00000436324 ENSE00001599611
2888  ENSG00000205581       ENST00000436324 ENSE00003550272
2889  ENSG00000205581       ENST00000436324 ENSE00001726652
2890  ENSG00000205581       ENST00000380748 ENSE00003552745
2891  ENSG00000205581       ENST00000380748 ENSE00003605975
2892  ENSG00000205581       ENST00000380748 ENSE00003532954
2893  ENSG00000205581       ENST00000380748 ENSE00001486104
2894  ENSG00000205581       ENST00000380748 ENSE00001486102
2895  ENSG00000205581       ENST00000419378 ENSE00003552745
2896  ENSG00000205581       ENST00000419378 ENSE00003585321
2897  ENSG00000205581       ENST00000419378 ENSE00003605975
2898  ENSG00000205581       ENST00000419378 ENSE00003601648
2899  ENSG00000205581       ENST00000419378 ENSE00001642656
2900  ENSG00000205581       ENST00000419378 ENSE00001667562
2901  ENSG00000205581       ENST00000419378 ENSE00001740454
2902  ENSG00000205581       ENST00000489072 ENSE00003601648
2903  ENSG00000205581       ENST00000489072 ENSE00003627640
2904  ENSG00000205581       ENST00000489072 ENSE00003493302
2905  ENSG00000205581       ENST00000489072 ENSE00003613784
2906  ENSG00000205581       ENST00000489072 ENSE00001884218
2907  ENSG00000205581       ENST00000489072 ENSE00001820349
2908  ENSG00000205581       ENST00000482192 ENSE00003601648
2909  ENSG00000205581       ENST00000482192 ENSE00003627640
2910  ENSG00000205581       ENST00000482192 ENSE00003613784
2911  ENSG00000205581       ENST00000482192 ENSE00003485728
2912  ENSG00000205581       ENST00000482192 ENSE00001875720
2913  ENSG00000205581       ENST00000482192 ENSE00001699401
2914  ENSG00000205581       ENST00000482192 ENSE00001895283
2915  ENSG00000205581       ENST00000380747 ENSE00003552745
2916  ENSG00000205581       ENST00000380747 ENSE00003585321
2917  ENSG00000205581       ENST00000380747 ENSE00003605975
2918  ENSG00000205581       ENST00000380747 ENSE00003532954
2919  ENSG00000205581       ENST00000380747 ENSE00001486098
2920  ENSG00000205581       ENST00000380747 ENSE00001220166
2921  ENSG00000205581       ENST00000485550 ENSE00003601648
2922  ENSG00000205581       ENST00000485550 ENSE00003627640
2923  ENSG00000205581       ENST00000485550 ENSE00003493302
2924  ENSG00000205581       ENST00000485550 ENSE00003613784
2925  ENSG00000205581       ENST00000485550 ENSE00003485728
2926  ENSG00000205581       ENST00000485550 ENSE00001850231
2927  ENSG00000205581       ENST00000485550 ENSE00001948699
2928  ENSG00000205581       ENST00000490032 ENSE00003601648
2929  ENSG00000205581       ENST00000490032 ENSE00003613784
2930  ENSG00000205581       ENST00000490032 ENSE00001699401
2931  ENSG00000205581       ENST00000490032 ENSE00001900021
2932  ENSG00000205581       ENST00000443046 ENSE00003552745
2933  ENSG00000205581       ENST00000443046 ENSE00003585321
2934  ENSG00000205581       ENST00000443046 ENSE00003605975
2935  ENSG00000205581       ENST00000443046 ENSE00003601648
2936  ENSG00000205581       ENST00000443046 ENSE00003493302
2937  ENSG00000205581       ENST00000443046 ENSE00003550272
2938  ENSG00000205581       ENST00000443046 ENSE00001699401
2939  ENSG00000205581       ENST00000443046 ENSE00003573173
2940  ENSG00000205581       ENST00000443046 ENSE00001732770
2941  ENSG00000205581       ENST00000464078 ENSE00003601648
2942  ENSG00000205581       ENST00000464078 ENSE00003613784
2943  ENSG00000205581       ENST00000464078 ENSE00003692123
2944  ENSG00000205581       ENST00000464078 ENSE00001893135
2945  ENSG00000205581       ENST00000464078 ENSE00001951514
2946  ENSG00000205581       ENST00000491183 ENSE00003669232
2947  ENSG00000205581       ENST00000491183 ENSE00003627640
2948  ENSG00000205581       ENST00000491183 ENSE00003613784
2949  ENSG00000205581       ENST00000491183 ENSE00003485728
2950  ENSG00000205581       ENST00000491183 ENSE00001850965
2951  ENSG00000205581       ENST00000491183 ENSE00001913220
2952  ENSG00000205581       ENST00000479586 ENSE00003669232
2953  ENSG00000205581       ENST00000479586 ENSE00003627640
2954  ENSG00000205581       ENST00000479586 ENSE00003613784
2955  ENSG00000205581       ENST00000479586 ENSE00001812091
2956  ENSG00000205581       ENST00000479586 ENSE00001890035
2957  ENSG00000205581       ENST00000471260 ENSE00003627640
2958  ENSG00000205581       ENST00000471260 ENSE00003613784
2959  ENSG00000205581       ENST00000471260 ENSE00001902671
2960  ENSG00000205581       ENST00000471260 ENSE00001952974
2961  ENSG00000205581       ENST00000482733 ENSE00001852835
2962  ENSG00000205581       ENST00000482733 ENSE00001840952
2963  ENSG00000205581       ENST00000463631 ENSE00003692123
2964  ENSG00000205581       ENST00000463631 ENSE00001893135
2965  ENSG00000205581       ENST00000463631 ENSE00001888057
2966  ENSG00000224602       ENST00000418544 ENSE00001783908
2967  ENSG00000280432       ENST00000624971 ENSE00003757355
2968  ENSG00000269950       ENST00000602654 ENSE00003340104
2969  ENSG00000269950       ENST00000602654 ENSE00003317403
2970  ENSG00000270139       ENST00000602454 ENSE00003308634
2971  ENSG00000270139       ENST00000602454 ENSE00003315556
2972  ENSG00000270139       ENST00000602454 ENSE00003259208
2973  ENSG00000270071       ENST00000602921 ENSE00003431949
2974  ENSG00000270071       ENST00000602921 ENSE00003279300
2975  ENSG00000270071       ENST00000602921 ENSE00003354180
2976  ENSG00000160233       ENST00000291592 ENSE00001838176
2977  ENSG00000160233       ENST00000291592 ENSE00001050784
2978  ENSG00000233056       ENST00000447535 ENSE00001619093
2979  ENSG00000233056       ENST00000447535 ENSE00001612295
2980  ENSG00000233056       ENST00000617971 ENSE00003740042
2981  ENSG00000205758       ENST00000488167 ENSE00001878345
2982  ENSG00000205758       ENST00000488167 ENSE00003613982
2983  ENSG00000205758       ENST00000488167 ENSE00003624943
2984  ENSG00000205758       ENST00000488167 ENSE00002530970
2985  ENSG00000205758       ENST00000417979 ENSE00003635139
2986  ENSG00000205758       ENST00000417979 ENSE00003502265
2987  ENSG00000205758       ENST00000417979 ENSE00003547975
2988  ENSG00000205758       ENST00000417979 ENSE00001538343
2989  ENSG00000205758       ENST00000417979 ENSE00003545673
2990  ENSG00000205758       ENST00000417979 ENSE00003567629
2991  ENSG00000205758       ENST00000417979 ENSE00001596721
2992  ENSG00000205758       ENST00000417979 ENSE00002448451
2993  ENSG00000205758       ENST00000490714 ENSE00003545673
2994  ENSG00000205758       ENST00000490714 ENSE00003613982
2995  ENSG00000205758       ENST00000490714 ENSE00001899745
2996  ENSG00000205758       ENST00000490714 ENSE00003552865
2997  ENSG00000205758       ENST00000490714 ENSE00003690988
2998  ENSG00000205758       ENST00000490714 ENSE00003483827
2999  ENSG00000205758       ENST00000490714 ENSE00001833797
3000  ENSG00000205758       ENST00000413017 ENSE00003642759
3001  ENSG00000205758       ENST00000413017 ENSE00003528796
3002  ENSG00000205758       ENST00000413017 ENSE00003683733
3003  ENSG00000205758       ENST00000413017 ENSE00003635139
3004  ENSG00000205758       ENST00000413017 ENSE00001812915
3005  ENSG00000205758       ENST00000413017 ENSE00001655845
3006  ENSG00000205758       ENST00000438788 ENSE00001711363
3007  ENSG00000205758       ENST00000438788 ENSE00001780713
3008  ENSG00000205758       ENST00000431177 ENSE00003642759
3009  ENSG00000205758       ENST00000431177 ENSE00003528796
3010  ENSG00000205758       ENST00000431177 ENSE00003683733
3011  ENSG00000205758       ENST00000431177 ENSE00003635139
3012  ENSG00000205758       ENST00000431177 ENSE00003502265
3013  ENSG00000205758       ENST00000431177 ENSE00003547975
3014  ENSG00000205758       ENST00000431177 ENSE00001680487
3015  ENSG00000205758       ENST00000431177 ENSE00001669850
3016  ENSG00000205758       ENST00000479964 ENSE00003516588
3017  ENSG00000205758       ENST00000479964 ENSE00001937306
3018  ENSG00000205758       ENST00000479964 ENSE00003688771
3019  ENSG00000205758       ENST00000479964 ENSE00001813881
3020  ENSG00000205758       ENST00000440526 ENSE00003635139
3021  ENSG00000205758       ENST00000440526 ENSE00003502265
3022  ENSG00000205758       ENST00000440526 ENSE00003547975
3023  ENSG00000205758       ENST00000440526 ENSE00001387385
3024  ENSG00000205758       ENST00000440526 ENSE00003493157
3025  ENSG00000205758       ENST00000440526 ENSE00003596663
3026  ENSG00000205758       ENST00000440526 ENSE00001805410
3027  ENSG00000205758       ENST00000440526 ENSE00001739270
3028  ENSG00000205758       ENST00000437996 ENSE00001770207
3029  ENSG00000205758       ENST00000437996 ENSE00003582597
3030  ENSG00000205758       ENST00000437996 ENSE00003516588
3031  ENSG00000205758       ENST00000437996 ENSE00001747269
3032  ENSG00000205758       ENST00000437996 ENSE00003520702
3033  ENSG00000205758       ENST00000437996 ENSE00001644442
3034  ENSG00000205758       ENST00000445393 ENSE00003642759
3035  ENSG00000205758       ENST00000445393 ENSE00003528796
3036  ENSG00000205758       ENST00000445393 ENSE00003683733
3037  ENSG00000205758       ENST00000445393 ENSE00003547975
3038  ENSG00000205758       ENST00000445393 ENSE00001387385
3039  ENSG00000205758       ENST00000445393 ENSE00001538343
3040  ENSG00000205758       ENST00000445393 ENSE00001717080
3041  ENSG00000205758       ENST00000480893 ENSE00003516588
3042  ENSG00000205758       ENST00000480893 ENSE00001879733
3043  ENSG00000205758       ENST00000480893 ENSE00001935720
3044  ENSG00000205758       ENST00000480893 ENSE00001861758
3045  ENSG00000205758       ENST00000381554 ENSE00001883826
3046  ENSG00000205758       ENST00000381554 ENSE00003642759
3047  ENSG00000205758       ENST00000381554 ENSE00003528796
3048  ENSG00000205758       ENST00000381554 ENSE00003683733
3049  ENSG00000205758       ENST00000381554 ENSE00003635139
3050  ENSG00000205758       ENST00000381554 ENSE00003502265
3051  ENSG00000205758       ENST00000381554 ENSE00003547975
3052  ENSG00000205758       ENST00000381554 ENSE00001387385
3053  ENSG00000205758       ENST00000381554 ENSE00003493157
3054  ENSG00000205758       ENST00000381554 ENSE00003596663
3055  ENSG00000205758       ENST00000381554 ENSE00003499413
3056  ENSG00000205758       ENST00000381554 ENSE00003635551
3057  ENSG00000205758       ENST00000381554 ENSE00001603968
3058  ENSG00000205758       ENST00000399442 ENSE00001538349
3059  ENSG00000205758       ENST00000399442 ENSE00001538341
3060  ENSG00000205758       ENST00000399442 ENSE00001538339
3061  ENSG00000205758       ENST00000426935 ENSE00003635139
3062  ENSG00000205758       ENST00000426935 ENSE00003502265
3063  ENSG00000205758       ENST00000426935 ENSE00003547975
3064  ENSG00000205758       ENST00000426935 ENSE00001387385
3065  ENSG00000205758       ENST00000426935 ENSE00001489060
3066  ENSG00000205758       ENST00000426935 ENSE00003545673
3067  ENSG00000205758       ENST00000426935 ENSE00003567629
3068  ENSG00000205758       ENST00000426935 ENSE00001787834
3069  ENSG00000205758       ENST00000414079 ENSE00001387385
3070  ENSG00000205758       ENST00000414079 ENSE00003493157
3071  ENSG00000205758       ENST00000414079 ENSE00001598386
3072  ENSG00000205758       ENST00000414079 ENSE00001592679
3073  ENSG00000205758       ENST00000420072 ENSE00003642759
3074  ENSG00000205758       ENST00000420072 ENSE00003528796
3075  ENSG00000205758       ENST00000420072 ENSE00003683733
3076  ENSG00000205758       ENST00000420072 ENSE00003635139
3077  ENSG00000205758       ENST00000420072 ENSE00003502265
3078  ENSG00000205758       ENST00000420072 ENSE00003547975
3079  ENSG00000205758       ENST00000420072 ENSE00001387385
3080  ENSG00000205758       ENST00000420072 ENSE00001770207
3081  ENSG00000205758       ENST00000420072 ENSE00003582597
3082  ENSG00000205758       ENST00000420072 ENSE00003516588
3083  ENSG00000205758       ENST00000420072 ENSE00001404762
3084  ENSG00000205758       ENST00000420072 ENSE00001690724
3085  ENSG00000205758       ENST00000429827 ENSE00003642759
3086  ENSG00000205758       ENST00000429827 ENSE00003528796
3087  ENSG00000205758       ENST00000429827 ENSE00003683733
3088  ENSG00000205758       ENST00000429827 ENSE00003502265
3089  ENSG00000205758       ENST00000429827 ENSE00003547975
3090  ENSG00000205758       ENST00000429827 ENSE00001387385
3091  ENSG00000205758       ENST00000429827 ENSE00001770207
3092  ENSG00000205758       ENST00000429827 ENSE00003582597
3093  ENSG00000205758       ENST00000429827 ENSE00003516588
3094  ENSG00000205758       ENST00000429827 ENSE00001722894
3095  ENSG00000205758       ENST00000429827 ENSE00001667525
3096  ENSG00000205758       ENST00000361534 ENSE00003528796
3097  ENSG00000205758       ENST00000361534 ENSE00003683733
3098  ENSG00000205758       ENST00000361534 ENSE00003635139
3099  ENSG00000205758       ENST00000361534 ENSE00003502265
3100  ENSG00000205758       ENST00000361534 ENSE00003547975
3101  ENSG00000205758       ENST00000361534 ENSE00001387385
3102  ENSG00000205758       ENST00000361534 ENSE00003493157
3103  ENSG00000205758       ENST00000361534 ENSE00003596663
3104  ENSG00000205758       ENST00000361534 ENSE00003499413
3105  ENSG00000205758       ENST00000361534 ENSE00001432491
3106  ENSG00000205758       ENST00000361534 ENSE00001538349
3107  ENSG00000205758       ENST00000361534 ENSE00003486782
3108  ENSG00000205758       ENST00000361534 ENSE00001436391
3109  ENSG00000205758       ENST00000452420 ENSE00003547975
3110  ENSG00000205758       ENST00000452420 ENSE00001387385
3111  ENSG00000205758       ENST00000452420 ENSE00001632301
3112  ENSG00000205758       ENST00000452420 ENSE00001770207
3113  ENSG00000205758       ENST00000452420 ENSE00003582597
3114  ENSG00000205758       ENST00000452420 ENSE00003516588
3115  ENSG00000205758       ENST00000452420 ENSE00001643192
3116  ENSG00000205758       ENST00000452420 ENSE00001655452
3117  ENSG00000205758       ENST00000452420 ENSE00001177939
3118  ENSG00000205758       ENST00000381540 ENSE00003642759
3119  ENSG00000205758       ENST00000381540 ENSE00003528796
3120  ENSG00000205758       ENST00000381540 ENSE00003683733
3121  ENSG00000205758       ENST00000381540 ENSE00003635139
3122  ENSG00000205758       ENST00000381540 ENSE00003502265
3123  ENSG00000205758       ENST00000381540 ENSE00003547975
3124  ENSG00000205758       ENST00000381540 ENSE00001387385
3125  ENSG00000205758       ENST00000381540 ENSE00003493157
3126  ENSG00000205758       ENST00000381540 ENSE00003596663
3127  ENSG00000205758       ENST00000381540 ENSE00003499413
3128  ENSG00000205758       ENST00000381540 ENSE00001850083
3129  ENSG00000205758       ENST00000381540 ENSE00001489057
3130  ENSG00000205758       ENST00000381540 ENSE00001953102
3131  ENSG00000205758       ENST00000468349 ENSE00001881951
3132  ENSG00000205758       ENST00000468349 ENSE00001926168
3133  ENSG00000205758       ENST00000290244 ENSE00003642759
3134  ENSG00000205758       ENST00000290244 ENSE00003528796
3135  ENSG00000205758       ENST00000290244 ENSE00003683733
3136  ENSG00000205758       ENST00000290244 ENSE00003502265
3137  ENSG00000205758       ENST00000290244 ENSE00003547975
3138  ENSG00000205758       ENST00000290244 ENSE00001387385
3139  ENSG00000205758       ENST00000290244 ENSE00003493157
3140  ENSG00000205758       ENST00000290244 ENSE00003596663
3141  ENSG00000205758       ENST00000290244 ENSE00003499413
3142  ENSG00000205758       ENST00000290244 ENSE00003635551
3143  ENSG00000205758       ENST00000290244 ENSE00001903909
3144  ENSG00000205758       ENST00000290244 ENSE00001860221
3145  ENSG00000205758       ENST00000441940 ENSE00003596663
3146  ENSG00000205758       ENST00000441940 ENSE00003499413
3147  ENSG00000205758       ENST00000441940 ENSE00003635551
3148  ENSG00000205758       ENST00000441940 ENSE00001779760
3149  ENSG00000228349       ENST00000431743 ENSE00001693107
3150  ENSG00000232118       ENST00000449923 ENSE00001743205
3151  ENSG00000232118       ENST00000449923 ENSE00001657359
3152  ENSG00000232118       ENST00000615718 ENSE00003736747
3153  ENSG00000232118       ENST00000615718 ENSE00003754459
3154  ENSG00000159147       ENST00000439593 ENSE00001675773
3155  ENSG00000159147       ENST00000439593 ENSE00001786948
3156  ENSG00000159147       ENST00000439593 ENSE00001728787
3157  ENSG00000159147       ENST00000439593 ENSE00001651561
3158  ENSG00000159147       ENST00000303113 ENSE00001422868
3159  ENSG00000159147       ENST00000303113 ENSE00001237873
3160  ENSG00000159147       ENST00000303113 ENSE00003539477
3161  ENSG00000159147       ENST00000303113 ENSE00001489382
3162  ENSG00000159147       ENST00000303113 ENSE00003588206
3163  ENSG00000159147       ENST00000303113 ENSE00003561968
3164  ENSG00000159147       ENST00000303113 ENSE00003571961
3165  ENSG00000159147       ENST00000303113 ENSE00003597599
3166  ENSG00000159147       ENST00000303113 ENSE00003660298
3167  ENSG00000159147       ENST00000303113 ENSE00001489351
3168  ENSG00000159147       ENST00000303113 ENSE00001489349
3169  ENSG00000159147       ENST00000453626 ENSE00001237873
3170  ENSG00000159147       ENST00000453626 ENSE00003539477
3171  ENSG00000159147       ENST00000453626 ENSE00003588206
3172  ENSG00000159147       ENST00000453626 ENSE00003561968
3173  ENSG00000159147       ENST00000453626 ENSE00003571961
3174  ENSG00000159147       ENST00000453626 ENSE00003597599
3175  ENSG00000159147       ENST00000453626 ENSE00001592067
3176  ENSG00000159147       ENST00000453626 ENSE00003563368
3177  ENSG00000159147       ENST00000453626 ENSE00001646634
3178  ENSG00000159147       ENST00000453626 ENSE00001747838
3179  ENSG00000159147       ENST00000457359 ENSE00001237873
3180  ENSG00000159147       ENST00000457359 ENSE00003539477
3181  ENSG00000159147       ENST00000457359 ENSE00001592067
3182  ENSG00000159147       ENST00000457359 ENSE00003626477
3183  ENSG00000159147       ENST00000457359 ENSE00003539393
3184  ENSG00000159147       ENST00000457359 ENSE00003548859
3185  ENSG00000159147       ENST00000457359 ENSE00003656557
3186  ENSG00000159147       ENST00000457359 ENSE00003610877
3187  ENSG00000159147       ENST00000457359 ENSE00001713755
3188  ENSG00000159147       ENST00000303071 ENSE00001237873
3189  ENSG00000159147       ENST00000303071 ENSE00003539477
3190  ENSG00000159147       ENST00000303071 ENSE00003588206
3191  ENSG00000159147       ENST00000303071 ENSE00003561968
3192  ENSG00000159147       ENST00000303071 ENSE00003571961
3193  ENSG00000159147       ENST00000303071 ENSE00003597599
3194  ENSG00000159147       ENST00000303071 ENSE00003660298
3195  ENSG00000159147       ENST00000303071 ENSE00003563368
3196  ENSG00000159147       ENST00000303071 ENSE00001363177
3197  ENSG00000159147       ENST00000303071 ENSE00001363113
3198  ENSG00000159147       ENST00000417871 ENSE00001422868
3199  ENSG00000159147       ENST00000417871 ENSE00001237873
3200  ENSG00000159147       ENST00000417871 ENSE00003539393
3201  ENSG00000159147       ENST00000417871 ENSE00003548859
3202  ENSG00000159147       ENST00000417871 ENSE00003656557
3203  ENSG00000159147       ENST00000417871 ENSE00003610877
3204  ENSG00000159147       ENST00000417871 ENSE00001696559
3205  ENSG00000159147       ENST00000417871 ENSE00003558274
3206  ENSG00000159147       ENST00000417871 ENSE00001736545
3207  ENSG00000159147       ENST00000460557 ENSE00001928466
3208  ENSG00000159147       ENST00000460557 ENSE00001910947
3209  ENSG00000159147       ENST00000444517 ENSE00001237873
3210  ENSG00000159147       ENST00000444517 ENSE00003539477
3211  ENSG00000159147       ENST00000444517 ENSE00003563368
3212  ENSG00000159147       ENST00000444517 ENSE00003532468
3213  ENSG00000159147       ENST00000444517 ENSE00001664485
3214  ENSG00000159147       ENST00000442660 ENSE00001237873
3215  ENSG00000159147       ENST00000442660 ENSE00003539477
3216  ENSG00000159147       ENST00000442660 ENSE00003563368
3217  ENSG00000159147       ENST00000442660 ENSE00003548859
3218  ENSG00000159147       ENST00000442660 ENSE00003656557
3219  ENSG00000159147       ENST00000442660 ENSE00003610877
3220  ENSG00000159147       ENST00000442660 ENSE00001664485
3221  ENSG00000159147       ENST00000442660 ENSE00003467816
3222  ENSG00000159147       ENST00000437395 ENSE00003539477
3223  ENSG00000159147       ENST00000437395 ENSE00003588206
3224  ENSG00000159147       ENST00000437395 ENSE00003561968
3225  ENSG00000159147       ENST00000437395 ENSE00003571961
3226  ENSG00000159147       ENST00000437395 ENSE00003597599
3227  ENSG00000159147       ENST00000437395 ENSE00003660298
3228  ENSG00000159147       ENST00000437395 ENSE00003563368
3229  ENSG00000159147       ENST00000437395 ENSE00001703448
3230  ENSG00000159147       ENST00000437395 ENSE00001775066
3231  ENSG00000159147       ENST00000432378 ENSE00001237873
3232  ENSG00000159147       ENST00000432378 ENSE00003539477
3233  ENSG00000159147       ENST00000432378 ENSE00003588206
3234  ENSG00000159147       ENST00000432378 ENSE00003561968
3235  ENSG00000159147       ENST00000432378 ENSE00003571961
3236  ENSG00000159147       ENST00000432378 ENSE00003597599
3237  ENSG00000159147       ENST00000432378 ENSE00003563368
3238  ENSG00000159147       ENST00000432378 ENSE00001787922
3239  ENSG00000159147       ENST00000432378 ENSE00001751333
3240  ENSG00000159147       ENST00000440810 ENSE00003571961
3241  ENSG00000159147       ENST00000440810 ENSE00003597599
3242  ENSG00000159147       ENST00000440810 ENSE00003563368
3243  ENSG00000159147       ENST00000440810 ENSE00001608266
3244  ENSG00000159147       ENST00000440810 ENSE00001618006
3245  ENSG00000159147       ENST00000462566 ENSE00001863437
3246  ENSG00000159147       ENST00000462566 ENSE00001818548
3247  ENSG00000141959       ENST00000349048 ENSE00001560222
3248  ENSG00000141959       ENST00000349048 ENSE00003556813
3249  ENSG00000141959       ENST00000349048 ENSE00003468441
3250  ENSG00000141959       ENST00000349048 ENSE00003468758
3251  ENSG00000141959       ENST00000349048 ENSE00003620819
3252  ENSG00000141959       ENST00000349048 ENSE00003487259
3253  ENSG00000141959       ENST00000349048 ENSE00003482974
3254  ENSG00000141959       ENST00000349048 ENSE00003610456
3255  ENSG00000141959       ENST00000349048 ENSE00003668706
3256  ENSG00000141959       ENST00000349048 ENSE00003572167
3257  ENSG00000141959       ENST00000349048 ENSE00003470814
3258  ENSG00000141959       ENST00000349048 ENSE00003669897
3259  ENSG00000141959       ENST00000349048 ENSE00003682480
3260  ENSG00000141959       ENST00000349048 ENSE00003688681
3261  ENSG00000141959       ENST00000349048 ENSE00003543348
3262  ENSG00000141959       ENST00000349048 ENSE00003650066
3263  ENSG00000141959       ENST00000349048 ENSE00003492099
3264  ENSG00000141959       ENST00000349048 ENSE00003615543
3265  ENSG00000141959       ENST00000349048 ENSE00003538638
3266  ENSG00000141959       ENST00000349048 ENSE00003533809
3267  ENSG00000141959       ENST00000349048 ENSE00003458220
3268  ENSG00000141959       ENST00000349048 ENSE00003483524
3269  ENSG00000141959       ENST00000397961 ENSE00001560222
3270  ENSG00000141959       ENST00000397961 ENSE00003586588
3271  ENSG00000141959       ENST00000397961 ENSE00002714710
3272  ENSG00000141959       ENST00000397961 ENSE00003520125
3273  ENSG00000141959       ENST00000397961 ENSE00003589820
3274  ENSG00000141959       ENST00000397961 ENSE00003557725
3275  ENSG00000141959       ENST00000397961 ENSE00003520020
3276  ENSG00000141959       ENST00000397961 ENSE00003605052
3277  ENSG00000141959       ENST00000397961 ENSE00003574149
3278  ENSG00000141959       ENST00000397961 ENSE00003537097
3279  ENSG00000141959       ENST00000397961 ENSE00003678527
3280  ENSG00000141959       ENST00000397961 ENSE00003512653
3281  ENSG00000141959       ENST00000397961 ENSE00003571406
3282  ENSG00000141959       ENST00000397961 ENSE00003482524
3283  ENSG00000141959       ENST00000397961 ENSE00003459127
3284  ENSG00000141959       ENST00000397961 ENSE00003536916
3285  ENSG00000141959       ENST00000397961 ENSE00003538062
3286  ENSG00000141959       ENST00000397961 ENSE00003665414
3287  ENSG00000141959       ENST00000397961 ENSE00003547726
3288  ENSG00000141959       ENST00000397961 ENSE00003677022
3289  ENSG00000141959       ENST00000397961 ENSE00003635521
3290  ENSG00000141959       ENST00000397961 ENSE00003594641
3291  ENSG00000141959       ENST00000397961 ENSE00003582240
3292  ENSG00000141959       ENST00000397961 ENSE00003573803
3293  ENSG00000141959       ENST00000397961 ENSE00003625182
3294  ENSG00000141959       ENST00000496824 ENSE00003589820
3295  ENSG00000141959       ENST00000496824 ENSE00003557725
3296  ENSG00000141959       ENST00000496824 ENSE00003520020
3297  ENSG00000141959       ENST00000496824 ENSE00003605052
3298  ENSG00000141959       ENST00000496824 ENSE00003574149
3299  ENSG00000141959       ENST00000496824 ENSE00003537097
3300  ENSG00000141959       ENST00000496824 ENSE00003678527
3301  ENSG00000141959       ENST00000496824 ENSE00001611910
3302  ENSG00000141959       ENST00000496824 ENSE00003679758
3303  ENSG00000141959       ENST00000466134 ENSE00003589820
3304  ENSG00000141959       ENST00000466134 ENSE00003557725
3305  ENSG00000141959       ENST00000466134 ENSE00003520020
3306  ENSG00000141959       ENST00000466134 ENSE00003605052
3307  ENSG00000141959       ENST00000466134 ENSE00003574149
3308  ENSG00000141959       ENST00000466134 ENSE00003512653
3309  ENSG00000141959       ENST00000466134 ENSE00003571406
3310  ENSG00000141959       ENST00000466134 ENSE00003536916
3311  ENSG00000141959       ENST00000466134 ENSE00003538062
3312  ENSG00000141959       ENST00000466134 ENSE00003665414
3313  ENSG00000141959       ENST00000466134 ENSE00003547726
3314  ENSG00000141959       ENST00000466134 ENSE00003677022
3315  ENSG00000141959       ENST00000466134 ENSE00003635521
3316  ENSG00000141959       ENST00000466134 ENSE00003594641
3317  ENSG00000141959       ENST00000466134 ENSE00003573803
3318  ENSG00000141959       ENST00000466134 ENSE00003625182
3319  ENSG00000141959       ENST00000466134 ENSE00001834602
3320  ENSG00000141959       ENST00000466134 ENSE00001819263
3321  ENSG00000141959       ENST00000466134 ENSE00001847043
3322  ENSG00000141959       ENST00000466134 ENSE00001854527
3323  ENSG00000141959       ENST00000491298 ENSE00003589820
3324  ENSG00000141959       ENST00000491298 ENSE00003557725
3325  ENSG00000141959       ENST00000491298 ENSE00003520020
3326  ENSG00000141959       ENST00000491298 ENSE00003605052
3327  ENSG00000141959       ENST00000491298 ENSE00003574149
3328  ENSG00000141959       ENST00000491298 ENSE00001892739
3329  ENSG00000141959       ENST00000491298 ENSE00001866194
3330  ENSG00000141959       ENST00000474114 ENSE00003512653
3331  ENSG00000141959       ENST00000474114 ENSE00003571406
3332  ENSG00000141959       ENST00000474114 ENSE00003538062
3333  ENSG00000141959       ENST00000474114 ENSE00003665414
3334  ENSG00000141959       ENST00000474114 ENSE00003547726
3335  ENSG00000141959       ENST00000474114 ENSE00003677022
3336  ENSG00000141959       ENST00000474114 ENSE00003573803
3337  ENSG00000141959       ENST00000474114 ENSE00003625182
3338  ENSG00000141959       ENST00000474114 ENSE00001840062
3339  ENSG00000141959       ENST00000474114 ENSE00001936818
3340  ENSG00000141959       ENST00000474114 ENSE00001938426
3341  ENSG00000141959       ENST00000498841 ENSE00003536916
3342  ENSG00000141959       ENST00000498841 ENSE00003538062
3343  ENSG00000141959       ENST00000498841 ENSE00003665414
3344  ENSG00000141959       ENST00000498841 ENSE00003547726
3345  ENSG00000141959       ENST00000498841 ENSE00003677022
3346  ENSG00000141959       ENST00000498841 ENSE00003573803
3347  ENSG00000141959       ENST00000498841 ENSE00003625182
3348  ENSG00000141959       ENST00000498841 ENSE00001938426
3349  ENSG00000141959       ENST00000498841 ENSE00001847152
3350  ENSG00000141959       ENST00000460020 ENSE00003536916
3351  ENSG00000141959       ENST00000460020 ENSE00003538062
3352  ENSG00000141959       ENST00000460020 ENSE00003665414
3353  ENSG00000141959       ENST00000460020 ENSE00003547726
3354  ENSG00000141959       ENST00000460020 ENSE00001885464
3355  ENSG00000141959       ENST00000460020 ENSE00001943900
3356  ENSG00000141959       ENST00000467315 ENSE00003536916
3357  ENSG00000141959       ENST00000467315 ENSE00003538062
3358  ENSG00000141959       ENST00000467315 ENSE00003665414
3359  ENSG00000141959       ENST00000467315 ENSE00003547726
3360  ENSG00000141959       ENST00000467315 ENSE00003677022
3361  ENSG00000141959       ENST00000467315 ENSE00003635521
3362  ENSG00000141959       ENST00000467315 ENSE00003594641
3363  ENSG00000141959       ENST00000467315 ENSE00003582240
3364  ENSG00000141959       ENST00000467315 ENSE00003573803
3365  ENSG00000141959       ENST00000467315 ENSE00003625182
3366  ENSG00000141959       ENST00000467315 ENSE00001856420
3367  ENSG00000141959       ENST00000460521 ENSE00003538062
3368  ENSG00000141959       ENST00000460521 ENSE00003665414
3369  ENSG00000141959       ENST00000460521 ENSE00003547726
3370  ENSG00000141959       ENST00000460521 ENSE00003677022
3371  ENSG00000141959       ENST00000460521 ENSE00003635521
3372  ENSG00000141959       ENST00000460521 ENSE00003594641
3373  ENSG00000141959       ENST00000460521 ENSE00003582240
3374  ENSG00000141959       ENST00000460521 ENSE00003573803
3375  ENSG00000141959       ENST00000460521 ENSE00003625182
3376  ENSG00000141959       ENST00000460521 ENSE00001897458
3377  ENSG00000141959       ENST00000495274 ENSE00003665414
3378  ENSG00000141959       ENST00000495274 ENSE00003547726
3379  ENSG00000141959       ENST00000495274 ENSE00003677022
3380  ENSG00000141959       ENST00000495274 ENSE00003635521
3381  ENSG00000141959       ENST00000495274 ENSE00001819579
3382  ENSG00000141959       ENST00000628044 ENSE00003775335
3383  ENSG00000141959       ENST00000628044 ENSE00003764175
3384  ENSG00000281383       ENST00000629969 ENSE00003768347
3385  ENSG00000248476       ENST00000504298 ENSE00002057091
3386  ENSG00000248476       ENST00000504298 ENSE00002028160
3387  ENSG00000248476       ENST00000504298 ENSE00002047876
3388  ENSG00000248476       ENST00000504298 ENSE00002020319
3389  ENSG00000189169       ENST00000400365 ENSE00001542603
3390  ENSG00000189169       ENST00000618832 ENSE00003714599
3391  ENSG00000189169       ENST00000618832 ENSE00003740231
3392  ENSG00000189169       ENST00000618832 ENSE00003731665
3393  ENSG00000224747       ENST00000443300 ENSE00001774227
3394  ENSG00000224747       ENST00000443300 ENSE00001716424
3395  ENSG00000224747       ENST00000443300 ENSE00001607690
3396  ENSG00000260256       ENST00000568332 ENSE00002602902
3397  ENSG00000241728       ENST00000444409 ENSE00001610727
3398  ENSG00000241728       ENST00000444409 ENSE00001601990
3399  ENSG00000241728       ENST00000444409 ENSE00001778009
3400  ENSG00000241728       ENST00000422357 ENSE00001736116
3401  ENSG00000241728       ENST00000422357 ENSE00001610727
3402  ENSG00000171189       ENST00000327783 ENSE00001540737
3403  ENSG00000171189       ENST00000327783 ENSE00003604433
3404  ENSG00000171189       ENST00000327783 ENSE00003680741
3405  ENSG00000171189       ENST00000327783 ENSE00003468156
3406  ENSG00000171189       ENST00000327783 ENSE00003504657
3407  ENSG00000171189       ENST00000327783 ENSE00003478056
3408  ENSG00000171189       ENST00000327783 ENSE00003680298
3409  ENSG00000171189       ENST00000327783 ENSE00001137266
3410  ENSG00000171189       ENST00000327783 ENSE00001313812
3411  ENSG00000171189       ENST00000327783 ENSE00001143398
3412  ENSG00000171189       ENST00000327783 ENSE00001143391
3413  ENSG00000171189       ENST00000327783 ENSE00001640609
3414  ENSG00000171189       ENST00000327783 ENSE00001625731
3415  ENSG00000171189       ENST00000327783 ENSE00001778184
3416  ENSG00000171189       ENST00000327783 ENSE00001143363
3417  ENSG00000171189       ENST00000327783 ENSE00001192027
3418  ENSG00000171189       ENST00000327783 ENSE00001540755
3419  ENSG00000171189       ENST00000327783 ENSE00001540750
3420  ENSG00000171189       ENST00000389125 ENSE00003604433
3421  ENSG00000171189       ENST00000389125 ENSE00003680741
3422  ENSG00000171189       ENST00000389125 ENSE00003468156
3423  ENSG00000171189       ENST00000389125 ENSE00003504657
3424  ENSG00000171189       ENST00000389125 ENSE00003478056
3425  ENSG00000171189       ENST00000389125 ENSE00003680298
3426  ENSG00000171189       ENST00000389125 ENSE00001137266
3427  ENSG00000171189       ENST00000389125 ENSE00001143398
3428  ENSG00000171189       ENST00000389125 ENSE00001143391
3429  ENSG00000171189       ENST00000389125 ENSE00001640609
3430  ENSG00000171189       ENST00000389125 ENSE00001625731
3431  ENSG00000171189       ENST00000389125 ENSE00001778184
3432  ENSG00000171189       ENST00000389125 ENSE00001143363
3433  ENSG00000171189       ENST00000389125 ENSE00001192027
3434  ENSG00000171189       ENST00000389125 ENSE00001540750
3435  ENSG00000171189       ENST00000389125 ENSE00001303364
3436  ENSG00000171189       ENST00000399913 ENSE00003604433
3437  ENSG00000171189       ENST00000399913 ENSE00003680741
3438  ENSG00000171189       ENST00000399913 ENSE00003468156
3439  ENSG00000171189       ENST00000399913 ENSE00003504657
3440  ENSG00000171189       ENST00000399913 ENSE00003478056
3441  ENSG00000171189       ENST00000399913 ENSE00003680298
3442  ENSG00000171189       ENST00000399913 ENSE00001137266
3443  ENSG00000171189       ENST00000399913 ENSE00001313812
3444  ENSG00000171189       ENST00000399913 ENSE00001143398
3445  ENSG00000171189       ENST00000399913 ENSE00001143391
3446  ENSG00000171189       ENST00000399913 ENSE00001640609
3447  ENSG00000171189       ENST00000399913 ENSE00001625731
3448  ENSG00000171189       ENST00000399913 ENSE00001778184
3449  ENSG00000171189       ENST00000399913 ENSE00001143363
3450  ENSG00000171189       ENST00000399913 ENSE00001192027
3451  ENSG00000171189       ENST00000399913 ENSE00001540750
3452  ENSG00000171189       ENST00000399913 ENSE00001540742
3453  ENSG00000171189       ENST00000399914 ENSE00003604433
3454  ENSG00000171189       ENST00000399914 ENSE00003680741
3455  ENSG00000171189       ENST00000399914 ENSE00003468156
3456  ENSG00000171189       ENST00000399914 ENSE00003504657
3457  ENSG00000171189       ENST00000399914 ENSE00003478056
3458  ENSG00000171189       ENST00000399914 ENSE00003680298
3459  ENSG00000171189       ENST00000399914 ENSE00001137266
3460  ENSG00000171189       ENST00000399914 ENSE00001143398
3461  ENSG00000171189       ENST00000399914 ENSE00001143391
3462  ENSG00000171189       ENST00000399914 ENSE00001640609
3463  ENSG00000171189       ENST00000399914 ENSE00001625731
3464  ENSG00000171189       ENST00000399914 ENSE00001778184
3465  ENSG00000171189       ENST00000399914 ENSE00001143363
3466  ENSG00000171189       ENST00000399914 ENSE00001192027
3467  ENSG00000171189       ENST00000399914 ENSE00001540755
3468  ENSG00000171189       ENST00000399914 ENSE00001540750
3469  ENSG00000171189       ENST00000399914 ENSE00001540756
3470  ENSG00000171189       ENST00000389124 ENSE00001540737
3471  ENSG00000171189       ENST00000389124 ENSE00003604433
3472  ENSG00000171189       ENST00000389124 ENSE00003680741
3473  ENSG00000171189       ENST00000389124 ENSE00003468156
3474  ENSG00000171189       ENST00000389124 ENSE00003504657
3475  ENSG00000171189       ENST00000389124 ENSE00003478056
3476  ENSG00000171189       ENST00000389124 ENSE00003680298
3477  ENSG00000171189       ENST00000389124 ENSE00001137266
3478  ENSG00000171189       ENST00000389124 ENSE00001313812
3479  ENSG00000171189       ENST00000389124 ENSE00001143398
3480  ENSG00000171189       ENST00000389124 ENSE00001143391
3481  ENSG00000171189       ENST00000389124 ENSE00001640609
3482  ENSG00000171189       ENST00000389124 ENSE00001625731
3483  ENSG00000171189       ENST00000389124 ENSE00001778184
3484  ENSG00000171189       ENST00000389124 ENSE00001143363
3485  ENSG00000171189       ENST00000389124 ENSE00001192027
3486  ENSG00000171189       ENST00000389124 ENSE00001540732
3487  ENSG00000171189       ENST00000399907 ENSE00003604433
3488  ENSG00000171189       ENST00000399907 ENSE00003680741
3489  ENSG00000171189       ENST00000399907 ENSE00003468156
3490  ENSG00000171189       ENST00000399907 ENSE00003504657
3491  ENSG00000171189       ENST00000399907 ENSE00003478056
3492  ENSG00000171189       ENST00000399907 ENSE00003680298
3493  ENSG00000171189       ENST00000399907 ENSE00001137266
3494  ENSG00000171189       ENST00000399907 ENSE00001313812
3495  ENSG00000171189       ENST00000399907 ENSE00001143398
3496  ENSG00000171189       ENST00000399907 ENSE00001143391
3497  ENSG00000171189       ENST00000399907 ENSE00001640609
3498  ENSG00000171189       ENST00000399907 ENSE00001625731
3499  ENSG00000171189       ENST00000399907 ENSE00001778184
3500  ENSG00000171189       ENST00000399907 ENSE00001143363
3501  ENSG00000171189       ENST00000399907 ENSE00001192027
3502  ENSG00000171189       ENST00000399907 ENSE00001540722
3503  ENSG00000171189       ENST00000399907 ENSE00001540719
3504  ENSG00000171189       ENST00000399909 ENSE00003604433
3505  ENSG00000171189       ENST00000399909 ENSE00003680741
3506  ENSG00000171189       ENST00000399909 ENSE00003468156
3507  ENSG00000171189       ENST00000399909 ENSE00003504657
3508  ENSG00000171189       ENST00000399909 ENSE00003478056
3509  ENSG00000171189       ENST00000399909 ENSE00003680298
3510  ENSG00000171189       ENST00000399909 ENSE00001137266
3511  ENSG00000171189       ENST00000399909 ENSE00001143398
3512  ENSG00000171189       ENST00000399909 ENSE00001143391
3513  ENSG00000171189       ENST00000399909 ENSE00001640609
3514  ENSG00000171189       ENST00000399909 ENSE00001625731
3515  ENSG00000171189       ENST00000399909 ENSE00001778184
3516  ENSG00000171189       ENST00000399909 ENSE00001143363
3517  ENSG00000171189       ENST00000399909 ENSE00001192027
3518  ENSG00000171189       ENST00000399909 ENSE00001540722
3519  ENSG00000171189       ENST00000399909 ENSE00001540719
3520  ENSG00000171189       ENST00000472429 ENSE00001843989
3521  ENSG00000171189       ENST00000472429 ENSE00003632601
3522  ENSG00000171189       ENST00000472429 ENSE00003487025
3523  ENSG00000171189       ENST00000472429 ENSE00003572399
3524  ENSG00000171189       ENST00000472429 ENSE00003477933
3525  ENSG00000171189       ENST00000472429 ENSE00003637099
3526  ENSG00000171189       ENST00000472429 ENSE00003572934
3527  ENSG00000171189       ENST00000472429 ENSE00001899617
3528  ENSG00000273590       ENST00000624534 ENSE00003722423
3529  ENSG00000273590       ENST00000624534 ENSE00003756999
3530  ENSG00000273590       ENST00000622934 ENSE00003713618
3531  ENSG00000273590       ENST00000622934 ENSE00003718280
3532  ENSG00000273590       ENST00000622934 ENSE00003716325
3533  ENSG00000273590       ENST00000622934 ENSE00003755942
3534  ENSG00000273590       ENST00000622934 ENSE00003739023
3535  ENSG00000273590       ENST00000619874 ENSE00003718280
3536  ENSG00000273590       ENST00000619874 ENSE00003716325
3537  ENSG00000273590       ENST00000619874 ENSE00003756294
3538  ENSG00000273590       ENST00000619874 ENSE00003723301
3539  ENSG00000273590       ENST00000612624 ENSE00003718280
3540  ENSG00000273590       ENST00000612624 ENSE00003758020
3541  ENSG00000273590       ENST00000612624 ENSE00003753303
3542  ENSG00000273590       ENST00000612624 ENSE00003756026
3543  ENSG00000273590       ENST00000624304 ENSE00003718280
3544  ENSG00000273590       ENST00000624304 ENSE00003757947
3545  ENSG00000273590       ENST00000624304 ENSE00003755655
3546  ENSG00000273590       ENST00000624758 ENSE00003718280
3547  ENSG00000273590       ENST00000624758 ENSE00003716325
3548  ENSG00000273590       ENST00000624758 ENSE00003759572
3549  ENSG00000273590       ENST00000624758 ENSE00003757322
3550  ENSG00000273590       ENST00000623661 ENSE00003718280
3551  ENSG00000273590       ENST00000623661 ENSE00003716325
3552  ENSG00000273590       ENST00000623661 ENSE00003755942
3553  ENSG00000273590       ENST00000623661 ENSE00003756787
3554  ENSG00000273590       ENST00000623661 ENSE00003756749
3555  ENSG00000279895       ENST00000624042 ENSE00003756446
3556  ENSG00000279895       ENST00000624042 ENSE00003755060
3557  ENSG00000279895       ENST00000624042 ENSE00003759023
3558  ENSG00000279895       ENST00000624042 ENSE00003755612
3559  ENSG00000279895       ENST00000624042 ENSE00003756572
3560  ENSG00000279895       ENST00000624042 ENSE00003758063
3561  ENSG00000279895       ENST00000624042 ENSE00003757344
3562  ENSG00000279895       ENST00000624042 ENSE00003758582
3563  ENSG00000279895       ENST00000624042 ENSE00003760305
3564  ENSG00000279895       ENST00000624042 ENSE00003756621
3565  ENSG00000176054       ENST00000320371 ENSE00001764304
3566  ENSG00000160285       ENST00000356396 ENSE00001894078
3567  ENSG00000160285       ENST00000356396 ENSE00003470036
3568  ENSG00000160285       ENST00000356396 ENSE00003581204
3569  ENSG00000160285       ENST00000356396 ENSE00003491878
3570  ENSG00000160285       ENST00000356396 ENSE00003532484
3571  ENSG00000160285       ENST00000356396 ENSE00003525946
3572  ENSG00000160285       ENST00000356396 ENSE00003784869
3573  ENSG00000160285       ENST00000356396 ENSE00003500657
3574  ENSG00000160285       ENST00000356396 ENSE00001051158
3575  ENSG00000160285       ENST00000356396 ENSE00001051181
3576  ENSG00000160285       ENST00000356396 ENSE00001296974
3577  ENSG00000160285       ENST00000356396 ENSE00001051175
3578  ENSG00000160285       ENST00000356396 ENSE00001051174
3579  ENSG00000160285       ENST00000356396 ENSE00001051179
3580  ENSG00000160285       ENST00000356396 ENSE00001285727
3581  ENSG00000160285       ENST00000356396 ENSE00001051185
3582  ENSG00000160285       ENST00000356396 ENSE00001051152
3583  ENSG00000160285       ENST00000356396 ENSE00001051183
3584  ENSG00000160285       ENST00000356396 ENSE00003493443
3585  ENSG00000160285       ENST00000356396 ENSE00001051167
3586  ENSG00000160285       ENST00000356396 ENSE00001051182
3587  ENSG00000160285       ENST00000356396 ENSE00001415142
3588  ENSG00000160285       ENST00000356396 ENSE00003536777
3589  ENSG00000160285       ENST00000491729 ENSE00001936292
3590  ENSG00000160285       ENST00000491729 ENSE00001904479
3591  ENSG00000160285       ENST00000491729 ENSE00001414492
3592  ENSG00000160285       ENST00000397728 ENSE00003470036
3593  ENSG00000160285       ENST00000397728 ENSE00003581204
3594  ENSG00000160285       ENST00000397728 ENSE00003491878
3595  ENSG00000160285       ENST00000397728 ENSE00003532484
3596  ENSG00000160285       ENST00000397728 ENSE00003525946
3597  ENSG00000160285       ENST00000397728 ENSE00003784869
3598  ENSG00000160285       ENST00000397728 ENSE00003500657
3599  ENSG00000160285       ENST00000397728 ENSE00001051158
3600  ENSG00000160285       ENST00000397728 ENSE00001051181
3601  ENSG00000160285       ENST00000397728 ENSE00001296974
3602  ENSG00000160285       ENST00000397728 ENSE00001051175
3603  ENSG00000160285       ENST00000397728 ENSE00001051174
3604  ENSG00000160285       ENST00000397728 ENSE00001051179
3605  ENSG00000160285       ENST00000397728 ENSE00001285727
3606  ENSG00000160285       ENST00000397728 ENSE00001051185
3607  ENSG00000160285       ENST00000397728 ENSE00001051152
3608  ENSG00000160285       ENST00000397728 ENSE00001051183
3609  ENSG00000160285       ENST00000397728 ENSE00003493443
3610  ENSG00000160285       ENST00000397728 ENSE00001051167
3611  ENSG00000160285       ENST00000397728 ENSE00001051182
3612  ENSG00000160285       ENST00000397728 ENSE00003648196
3613  ENSG00000160285       ENST00000397728 ENSE00003493068
3614  ENSG00000160285       ENST00000419093 ENSE00001051182
3615  ENSG00000160285       ENST00000419093 ENSE00001660756
3616  ENSG00000160285       ENST00000419093 ENSE00001620839
3617  ENSG00000160285       ENST00000474319 ENSE00001842859
3618  ENSG00000160285       ENST00000474319 ENSE00003604982
3619  ENSG00000160285       ENST00000522411 ENSE00003470036
3620  ENSG00000160285       ENST00000522411 ENSE00003581204
3621  ENSG00000160285       ENST00000522411 ENSE00003532484
3622  ENSG00000160285       ENST00000522411 ENSE00003525946
3623  ENSG00000160285       ENST00000522411 ENSE00003784869
3624  ENSG00000160285       ENST00000522411 ENSE00003500657
3625  ENSG00000160285       ENST00000522411 ENSE00001051158
3626  ENSG00000160285       ENST00000522411 ENSE00001051181
3627  ENSG00000160285       ENST00000522411 ENSE00001296974
3628  ENSG00000160285       ENST00000522411 ENSE00001051175
3629  ENSG00000160285       ENST00000522411 ENSE00001051174
3630  ENSG00000160285       ENST00000522411 ENSE00001051179
3631  ENSG00000160285       ENST00000522411 ENSE00001285727
3632  ENSG00000160285       ENST00000522411 ENSE00001051185
3633  ENSG00000160285       ENST00000522411 ENSE00001051152
3634  ENSG00000160285       ENST00000522411 ENSE00001051183
3635  ENSG00000160285       ENST00000522411 ENSE00003493443
3636  ENSG00000160285       ENST00000522411 ENSE00001051167
3637  ENSG00000160285       ENST00000522411 ENSE00001051182
3638  ENSG00000160285       ENST00000522411 ENSE00002125527
3639  ENSG00000160285       ENST00000522411 ENSE00001643951
3640  ENSG00000160285       ENST00000522411 ENSE00002137517
3641  ENSG00000160285       ENST00000484808 ENSE00001842323
3642  ENSG00000160285       ENST00000484808 ENSE00003677959
3643  ENSG00000160285       ENST00000464357 ENSE00001881795
3644  ENSG00000160285       ENST00000464357 ENSE00003538704
3645  ENSG00000160285       ENST00000464357 ENSE00003622265
3646  ENSG00000160285       ENST00000464357 ENSE00003500120
3647  ENSG00000160285       ENST00000464357 ENSE00003564674
3648  ENSG00000160285       ENST00000464357 ENSE00003527897
3649  ENSG00000160285       ENST00000464357 ENSE00003493703
3650  ENSG00000160285       ENST00000450351 ENSE00003470036
3651  ENSG00000160285       ENST00000450351 ENSE00003581204
3652  ENSG00000160285       ENST00000450351 ENSE00003491878
3653  ENSG00000160285       ENST00000450351 ENSE00003532484
3654  ENSG00000160285       ENST00000450351 ENSE00003525946
3655  ENSG00000160285       ENST00000450351 ENSE00003784869
3656  ENSG00000160285       ENST00000450351 ENSE00001717484
3657  ENSG00000160285       ENST00000472272 ENSE00001344217
3658  ENSG00000160285       ENST00000472272 ENSE00003629865
3659  ENSG00000160285       ENST00000472272 ENSE00001819912
3660  ENSG00000160285       ENST00000457828 ENSE00003491878
3661  ENSG00000160285       ENST00000457828 ENSE00003532484
3662  ENSG00000160285       ENST00000457828 ENSE00003525946
3663  ENSG00000160285       ENST00000457828 ENSE00003784869
3664  ENSG00000160285       ENST00000457828 ENSE00003500657
3665  ENSG00000160285       ENST00000457828 ENSE00001051158
3666  ENSG00000160285       ENST00000457828 ENSE00001051181
3667  ENSG00000160285       ENST00000457828 ENSE00001296974
3668  ENSG00000160285       ENST00000457828 ENSE00001051175
3669  ENSG00000160285       ENST00000457828 ENSE00001051174
3670  ENSG00000160285       ENST00000457828 ENSE00001051179
3671  ENSG00000160285       ENST00000457828 ENSE00001285727
3672  ENSG00000160285       ENST00000457828 ENSE00001051185
3673  ENSG00000160285       ENST00000457828 ENSE00001051152
3674  ENSG00000160285       ENST00000457828 ENSE00001051183
3675  ENSG00000160285       ENST00000457828 ENSE00003493443
3676  ENSG00000160285       ENST00000457828 ENSE00001051167
3677  ENSG00000160285       ENST00000457828 ENSE00001051182
3678  ENSG00000160285       ENST00000457828 ENSE00002282628
3679  ENSG00000160285       ENST00000457828 ENSE00003556063
3680  ENSG00000160285       ENST00000457828 ENSE00002209641
3681  ENSG00000141956       ENST00000486812 ENSE00003475242
3682  ENSG00000141956       ENST00000486812 ENSE00003462670
3683  ENSG00000141956       ENST00000486812 ENSE00002371444
3684  ENSG00000141956       ENST00000486812 ENSE00001776279
3685  ENSG00000141956       ENST00000486812 ENSE00001876184
3686  ENSG00000141956       ENST00000486812 ENSE00003626137
3687  ENSG00000141956       ENST00000470586 ENSE00001875391
3688  ENSG00000141956       ENST00000470586 ENSE00003475242
3689  ENSG00000141956       ENST00000470586 ENSE00003462670
3690  ENSG00000141956       ENST00000470586 ENSE00002416115
3691  ENSG00000141956       ENST00000470586 ENSE00002397078
3692  ENSG00000141956       ENST00000470586 ENSE00002371444
3693  ENSG00000141956       ENST00000470586 ENSE00001776279
3694  ENSG00000141956       ENST00000447016 ENSE00002371444
3695  ENSG00000141956       ENST00000447016 ENSE00001776279
3696  ENSG00000141956       ENST00000447016 ENSE00001949076
3697  ENSG00000141956       ENST00000447016 ENSE00003594386
3698  ENSG00000141956       ENST00000447016 ENSE00001327189
3699  ENSG00000141956       ENST00000447016 ENSE00001320360
3700  ENSG00000141956       ENST00000447016 ENSE00000951413
3701  ENSG00000141956       ENST00000447016 ENSE00000951414
3702  ENSG00000141956       ENST00000447016 ENSE00000951415
3703  ENSG00000141956       ENST00000447016 ENSE00000951416
3704  ENSG00000141956       ENST00000447016 ENSE00003504505
3705  ENSG00000141956       ENST00000447016 ENSE00003509158
3706  ENSG00000141956       ENST00000447016 ENSE00003686098
3707  ENSG00000141956       ENST00000447016 ENSE00003676963
3708  ENSG00000141956       ENST00000447016 ENSE00003565640
3709  ENSG00000141956       ENST00000447016 ENSE00003461883
3710  ENSG00000141956       ENST00000447016 ENSE00003585719
3711  ENSG00000141956       ENST00000447016 ENSE00003638827
3712  ENSG00000141956       ENST00000447016 ENSE00003564993
3713  ENSG00000141956       ENST00000447016 ENSE00003542838
3714  ENSG00000141956       ENST00000447016 ENSE00003511333
3715  ENSG00000141956       ENST00000447016 ENSE00003580708
3716  ENSG00000141956       ENST00000447016 ENSE00003594566
3717  ENSG00000141956       ENST00000447016 ENSE00003667541
3718  ENSG00000141956       ENST00000447016 ENSE00003561259
3719  ENSG00000141956       ENST00000447016 ENSE00003557617
3720  ENSG00000141956       ENST00000422911 ENSE00001327189
3721  ENSG00000141956       ENST00000422911 ENSE00001320360
3722  ENSG00000141956       ENST00000422911 ENSE00000951413
3723  ENSG00000141956       ENST00000422911 ENSE00000951414
3724  ENSG00000141956       ENST00000422911 ENSE00000951415
3725  ENSG00000141956       ENST00000422911 ENSE00000951416
3726  ENSG00000141956       ENST00000422911 ENSE00003504505
3727  ENSG00000141956       ENST00000422911 ENSE00003509158
3728  ENSG00000141956       ENST00000422911 ENSE00003686098
3729  ENSG00000141956       ENST00000422911 ENSE00003676963
3730  ENSG00000141956       ENST00000422911 ENSE00003565640
3731  ENSG00000141956       ENST00000422911 ENSE00003461883
3732  ENSG00000141956       ENST00000422911 ENSE00003585719
3733  ENSG00000141956       ENST00000422911 ENSE00003638827
3734  ENSG00000141956       ENST00000422911 ENSE00003564993
3735  ENSG00000141956       ENST00000422911 ENSE00003542838
3736  ENSG00000141956       ENST00000422911 ENSE00003511333
3737  ENSG00000141956       ENST00000422911 ENSE00003580708
3738  ENSG00000141956       ENST00000422911 ENSE00003594566
3739  ENSG00000141956       ENST00000422911 ENSE00003667541
3740  ENSG00000141956       ENST00000422911 ENSE00003561259
3741  ENSG00000141956       ENST00000422911 ENSE00003635598
3742  ENSG00000141956       ENST00000422911 ENSE00003559079
3743  ENSG00000141956       ENST00000422911 ENSE00001485163
3744  ENSG00000141956       ENST00000422911 ENSE00003573987
3745  ENSG00000141956       ENST00000441787 ENSE00003475242
3746  ENSG00000141956       ENST00000441787 ENSE00003462670
3747  ENSG00000141956       ENST00000441787 ENSE00003594386
3748  ENSG00000141956       ENST00000441787 ENSE00001327189
3749  ENSG00000141956       ENST00000441787 ENSE00001320360
3750  ENSG00000141956       ENST00000441787 ENSE00000951413
3751  ENSG00000141956       ENST00000441787 ENSE00000951414
3752  ENSG00000141956       ENST00000441787 ENSE00000951415
3753  ENSG00000141956       ENST00000441787 ENSE00000951416
3754  ENSG00000141956       ENST00000441787 ENSE00003509158
3755  ENSG00000141956       ENST00000441787 ENSE00003686098
3756  ENSG00000141956       ENST00000441787 ENSE00003650421
3757  ENSG00000141956       ENST00000441787 ENSE00001616145
3758  ENSG00000141956       ENST00000441787 ENSE00001485162
3759  ENSG00000141956       ENST00000441787 ENSE00003460271
3760  ENSG00000141956       ENST00000441787 ENSE00003663073
3761  ENSG00000141956       ENST00000441787 ENSE00003643230
3762  ENSG00000141956       ENST00000441787 ENSE00003621160
3763  ENSG00000141956       ENST00000441787 ENSE00003667572
3764  ENSG00000141956       ENST00000441787 ENSE00003559252
3765  ENSG00000141956       ENST00000441787 ENSE00003528992
3766  ENSG00000141956       ENST00000441787 ENSE00003593338
3767  ENSG00000141956       ENST00000441787 ENSE00003559241
3768  ENSG00000141956       ENST00000441787 ENSE00003666999
3769  ENSG00000141956       ENST00000449395 ENSE00003475242
3770  ENSG00000141956       ENST00000449395 ENSE00003462670
3771  ENSG00000141956       ENST00000449395 ENSE00001327189
3772  ENSG00000141956       ENST00000449395 ENSE00001320360
3773  ENSG00000141956       ENST00000449395 ENSE00000951413
3774  ENSG00000141956       ENST00000449395 ENSE00000951414
3775  ENSG00000141956       ENST00000449395 ENSE00000951415
3776  ENSG00000141956       ENST00000449395 ENSE00000951416
3777  ENSG00000141956       ENST00000449395 ENSE00003504505
3778  ENSG00000141956       ENST00000449395 ENSE00003509158
3779  ENSG00000141956       ENST00000449395 ENSE00003686098
3780  ENSG00000141956       ENST00000449395 ENSE00003635598
3781  ENSG00000141956       ENST00000449395 ENSE00003559079
3782  ENSG00000141956       ENST00000449395 ENSE00001485163
3783  ENSG00000141956       ENST00000449395 ENSE00001485162
3784  ENSG00000141956       ENST00000449395 ENSE00003460271
3785  ENSG00000141956       ENST00000449395 ENSE00003663073
3786  ENSG00000141956       ENST00000449395 ENSE00003643230
3787  ENSG00000141956       ENST00000449395 ENSE00003621160
3788  ENSG00000141956       ENST00000449395 ENSE00003667572
3789  ENSG00000141956       ENST00000449395 ENSE00003559252
3790  ENSG00000141956       ENST00000449395 ENSE00003528992
3791  ENSG00000141956       ENST00000449395 ENSE00003593338
3792  ENSG00000141956       ENST00000449395 ENSE00003559241
3793  ENSG00000141956       ENST00000449395 ENSE00003666999
3794  ENSG00000141956       ENST00000398548 ENSE00001327189
3795  ENSG00000141956       ENST00000398548 ENSE00001320360
3796  ENSG00000141956       ENST00000398548 ENSE00000951413
3797  ENSG00000141956       ENST00000398548 ENSE00000951414
3798  ENSG00000141956       ENST00000398548 ENSE00000951415
3799  ENSG00000141956       ENST00000398548 ENSE00000951416
3800  ENSG00000141956       ENST00000398548 ENSE00003504505
3801  ENSG00000141956       ENST00000398548 ENSE00003509158
3802  ENSG00000141956       ENST00000398548 ENSE00003686098
3803  ENSG00000141956       ENST00000398548 ENSE00003676963
3804  ENSG00000141956       ENST00000398548 ENSE00003565640
3805  ENSG00000141956       ENST00000398548 ENSE00003461883
3806  ENSG00000141956       ENST00000398548 ENSE00003585719
3807  ENSG00000141956       ENST00000398548 ENSE00003638827
3808  ENSG00000141956       ENST00000398548 ENSE00003564993
3809  ENSG00000141956       ENST00000398548 ENSE00003542838
3810  ENSG00000141956       ENST00000398548 ENSE00003511333
3811  ENSG00000141956       ENST00000398548 ENSE00003580708
3812  ENSG00000141956       ENST00000398548 ENSE00003594566
3813  ENSG00000141956       ENST00000398548 ENSE00003667541
3814  ENSG00000141956       ENST00000398548 ENSE00003561259
3815  ENSG00000141956       ENST00000398548 ENSE00003635598
3816  ENSG00000141956       ENST00000398548 ENSE00003559079
3817  ENSG00000141956       ENST00000398548 ENSE00003573987
3818  ENSG00000141956       ENST00000433067 ENSE00002371444
3819  ENSG00000141956       ENST00000433067 ENSE00001776279
3820  ENSG00000141956       ENST00000433067 ENSE00001327189
3821  ENSG00000141956       ENST00000433067 ENSE00001320360
3822  ENSG00000141956       ENST00000433067 ENSE00000951413
3823  ENSG00000141956       ENST00000433067 ENSE00000951414
3824  ENSG00000141956       ENST00000433067 ENSE00000951415
3825  ENSG00000141956       ENST00000433067 ENSE00000951416
3826  ENSG00000141956       ENST00000433067 ENSE00003504505
3827  ENSG00000141956       ENST00000433067 ENSE00003509158
3828  ENSG00000141956       ENST00000433067 ENSE00003686098
3829  ENSG00000141956       ENST00000433067 ENSE00003676963
3830  ENSG00000141956       ENST00000433067 ENSE00003565640
3831  ENSG00000141956       ENST00000433067 ENSE00003461883
3832  ENSG00000141956       ENST00000433067 ENSE00003585719
3833  ENSG00000141956       ENST00000433067 ENSE00003638827
3834  ENSG00000141956       ENST00000433067 ENSE00003564993
3835  ENSG00000141956       ENST00000433067 ENSE00003542838
3836  ENSG00000141956       ENST00000433067 ENSE00003511333
3837  ENSG00000141956       ENST00000433067 ENSE00003580708
3838  ENSG00000141956       ENST00000433067 ENSE00003594566
3839  ENSG00000141956       ENST00000433067 ENSE00003667541
3840  ENSG00000141956       ENST00000433067 ENSE00003561259
3841  ENSG00000141956       ENST00000433067 ENSE00003557617
3842  ENSG00000141956       ENST00000433067 ENSE00003559079
3843  ENSG00000141956       ENST00000433067 ENSE00002728515
3844  ENSG00000141956       ENST00000433067 ENSE00002450021
3845  ENSG00000141956       ENST00000433067 ENSE00002535944
3846  ENSG00000141956       ENST00000433067 ENSE00002483656
3847  ENSG00000141956       ENST00000433067 ENSE00002523713
3848  ENSG00000141956       ENST00000433067 ENSE00002495427
3849  ENSG00000141956       ENST00000433067 ENSE00002471300
3850  ENSG00000141956       ENST00000433067 ENSE00001304247
3851  ENSG00000141956       ENST00000465955 ENSE00001898745
3852  ENSG00000141956       ENST00000465955 ENSE00001937389
3853  ENSG00000141956       ENST00000477633 ENSE00003462670
3854  ENSG00000141956       ENST00000477633 ENSE00001692014
3855  ENSG00000141956       ENST00000477633 ENSE00001954341
3856  ENSG00000141956       ENST00000495217 ENSE00003475242
3857  ENSG00000141956       ENST00000495217 ENSE00003528992
3858  ENSG00000141956       ENST00000495217 ENSE00003593338
3859  ENSG00000141956       ENST00000495217 ENSE00003559241
3860  ENSG00000141956       ENST00000495217 ENSE00001918204
3861  ENSG00000141956       ENST00000495217 ENSE00001862885
3862  ENSG00000141956       ENST00000491486 ENSE00003643230
3863  ENSG00000141956       ENST00000491486 ENSE00001934687
3864  ENSG00000141956       ENST00000491486 ENSE00003489919
3865  ENSG00000141956       ENST00000491486 ENSE00003525145
3866  ENSG00000141956       ENST00000491486 ENSE00001868807
3867  ENSG00000141956       ENST00000489661 ENSE00003489919
3868  ENSG00000141956       ENST00000489661 ENSE00001904962
3869  ENSG00000141956       ENST00000489661 ENSE00003599212
3870  ENSG00000141956       ENST00000489661 ENSE00003614758
3871  ENSG00000141956       ENST00000489661 ENSE00001956232
3872  ENSG00000141956       ENST00000496124 ENSE00003599212
3873  ENSG00000141956       ENST00000496124 ENSE00003614758
3874  ENSG00000141956       ENST00000496124 ENSE00001920832
3875  ENSG00000141956       ENST00000496124 ENSE00003629930
3876  ENSG00000141956       ENST00000496124 ENSE00002467731
3877  ENSG00000141956       ENST00000269844 ENSE00001327189
3878  ENSG00000141956       ENST00000269844 ENSE00001320360
3879  ENSG00000141956       ENST00000269844 ENSE00000951413
3880  ENSG00000141956       ENST00000269844 ENSE00000951414
3881  ENSG00000141956       ENST00000269844 ENSE00000951415
3882  ENSG00000141956       ENST00000269844 ENSE00000951416
3883  ENSG00000141956       ENST00000269844 ENSE00003504505
3884  ENSG00000141956       ENST00000269844 ENSE00003509158
3885  ENSG00000141956       ENST00000269844 ENSE00003686098
3886  ENSG00000141956       ENST00000269844 ENSE00003676963
3887  ENSG00000141956       ENST00000269844 ENSE00003565640
3888  ENSG00000141956       ENST00000269844 ENSE00003461883
3889  ENSG00000141956       ENST00000269844 ENSE00003585719
3890  ENSG00000141956       ENST00000269844 ENSE00003638827
3891  ENSG00000141956       ENST00000269844 ENSE00003564993
3892  ENSG00000141956       ENST00000269844 ENSE00003542838
3893  ENSG00000141956       ENST00000269844 ENSE00003511333
3894  ENSG00000141956       ENST00000269844 ENSE00003580708
3895  ENSG00000141956       ENST00000269844 ENSE00003594566
3896  ENSG00000141956       ENST00000269844 ENSE00003667541
3897  ENSG00000141956       ENST00000269844 ENSE00003561259
3898  ENSG00000141956       ENST00000269844 ENSE00003559079
3899  ENSG00000141956       ENST00000269844 ENSE00002728515
3900  ENSG00000141956       ENST00000269844 ENSE00002450021
3901  ENSG00000141956       ENST00000269844 ENSE00002535944
3902  ENSG00000141956       ENST00000269844 ENSE00002483656
3903  ENSG00000141956       ENST00000269844 ENSE00002523713
3904  ENSG00000141956       ENST00000269844 ENSE00002495427
3905  ENSG00000141956       ENST00000269844 ENSE00002471300
3906  ENSG00000141956       ENST00000269844 ENSE00001304247
3907  ENSG00000141956       ENST00000269844 ENSE00002312361
3908  ENSG00000141956       ENST00000447207 ENSE00002371444
3909  ENSG00000141956       ENST00000447207 ENSE00001327189
3910  ENSG00000141956       ENST00000447207 ENSE00001320360
3911  ENSG00000141956       ENST00000447207 ENSE00000951413
3912  ENSG00000141956       ENST00000447207 ENSE00000951414
3913  ENSG00000141956       ENST00000447207 ENSE00000951415
3914  ENSG00000141956       ENST00000447207 ENSE00000951416
3915  ENSG00000141956       ENST00000447207 ENSE00003504505
3916  ENSG00000141956       ENST00000447207 ENSE00003509158
3917  ENSG00000141956       ENST00000447207 ENSE00003686098
3918  ENSG00000141956       ENST00000447207 ENSE00003676963
3919  ENSG00000141956       ENST00000447207 ENSE00003565640
3920  ENSG00000141956       ENST00000447207 ENSE00003461883
3921  ENSG00000141956       ENST00000447207 ENSE00003585719
3922  ENSG00000141956       ENST00000447207 ENSE00003638827
3923  ENSG00000141956       ENST00000447207 ENSE00003564993
3924  ENSG00000141956       ENST00000447207 ENSE00003542838
3925  ENSG00000141956       ENST00000447207 ENSE00003511333
3926  ENSG00000141956       ENST00000447207 ENSE00003580708
3927  ENSG00000141956       ENST00000447207 ENSE00003594566
3928  ENSG00000141956       ENST00000447207 ENSE00003667541
3929  ENSG00000141956       ENST00000447207 ENSE00003561259
3930  ENSG00000141956       ENST00000447207 ENSE00003557617
3931  ENSG00000141956       ENST00000447207 ENSE00002243056
3932  ENSG00000141956       ENST00000447207 ENSE00002344156
3933  ENSG00000156265       ENST00000496779 ENSE00001932051
3934  ENSG00000156265       ENST00000496779 ENSE00001540907
3935  ENSG00000156265       ENST00000496779 ENSE00003637621
3936  ENSG00000156265       ENST00000496779 ENSE00003506187
3937  ENSG00000156265       ENST00000496779 ENSE00003692591
3938  ENSG00000156265       ENST00000496779 ENSE00003592989
3939  ENSG00000156265       ENST00000496779 ENSE00001830924
3940  ENSG00000156265       ENST00000419845 ENSE00001540907
3941  ENSG00000156265       ENST00000419845 ENSE00001801678
3942  ENSG00000156265       ENST00000419845 ENSE00003477047
3943  ENSG00000156265       ENST00000419845 ENSE00003788813
3944  ENSG00000156265       ENST00000492930 ENSE00003637621
3945  ENSG00000156265       ENST00000492930 ENSE00003506187
3946  ENSG00000156265       ENST00000492930 ENSE00003692591
3947  ENSG00000156265       ENST00000492930 ENSE00003592989
3948  ENSG00000156265       ENST00000492930 ENSE00001954687
3949  ENSG00000156265       ENST00000492930 ENSE00001920016
3950  ENSG00000156265       ENST00000341618 ENSE00003477047
3951  ENSG00000156265       ENST00000341618 ENSE00003788813
3952  ENSG00000156265       ENST00000341618 ENSE00001540930
3953  ENSG00000156265       ENST00000341618 ENSE00003688344
3954  ENSG00000156265       ENST00000341618 ENSE00003616566
3955  ENSG00000156265       ENST00000341618 ENSE00003505985
3956  ENSG00000156265       ENST00000341618 ENSE00003485631
3957  ENSG00000156265       ENST00000341618 ENSE00001540853
3958  ENSG00000156265       ENST00000399935 ENSE00003637621
3959  ENSG00000156265       ENST00000399935 ENSE00003506187
3960  ENSG00000156265       ENST00000399935 ENSE00003692591
3961  ENSG00000156265       ENST00000399935 ENSE00003592989
3962  ENSG00000156265       ENST00000399935 ENSE00001540930
3963  ENSG00000156265       ENST00000399935 ENSE00003505985
3964  ENSG00000156265       ENST00000399935 ENSE00003485631
3965  ENSG00000156265       ENST00000399935 ENSE00001540853
3966  ENSG00000156265       ENST00000399935 ENSE00001413060
3967  ENSG00000156265       ENST00000399935 ENSE00003577947
3968  ENSG00000156265       ENST00000399934 ENSE00003637621
3969  ENSG00000156265       ENST00000399934 ENSE00003506187
3970  ENSG00000156265       ENST00000399934 ENSE00003692591
3971  ENSG00000156265       ENST00000399934 ENSE00003592989
3972  ENSG00000156265       ENST00000399934 ENSE00001540930
3973  ENSG00000156265       ENST00000399934 ENSE00003505985
3974  ENSG00000156265       ENST00000399934 ENSE00003485631
3975  ENSG00000156265       ENST00000399934 ENSE00001540853
3976  ENSG00000156265       ENST00000399934 ENSE00003577947
3977  ENSG00000156265       ENST00000399947 ENSE00001540907
3978  ENSG00000156265       ENST00000399947 ENSE00003477047
3979  ENSG00000156265       ENST00000399947 ENSE00003788813
3980  ENSG00000156265       ENST00000399947 ENSE00003688344
3981  ENSG00000156265       ENST00000399947 ENSE00003616566
3982  ENSG00000156265       ENST00000399947 ENSE00003505985
3983  ENSG00000156265       ENST00000399947 ENSE00003485631
3984  ENSG00000156265       ENST00000399947 ENSE00001540853
3985  ENSG00000156265       ENST00000399947 ENSE00001540906
3986  ENSG00000156265       ENST00000339024 ENSE00003505985
3987  ENSG00000156265       ENST00000339024 ENSE00003485631
3988  ENSG00000156265       ENST00000339024 ENSE00001540853
3989  ENSG00000156265       ENST00000339024 ENSE00001413060
3990  ENSG00000156265       ENST00000339024 ENSE00003577947
3991  ENSG00000156265       ENST00000339024 ENSE00001493551
3992  ENSG00000156265       ENST00000339024 ENSE00003482924
3993  ENSG00000156265       ENST00000460883 ENSE00001929670
3994  ENSG00000156265       ENST00000460883 ENSE00003577225
3995  ENSG00000156265       ENST00000460883 ENSE00003686991
3996  ENSG00000156265       ENST00000460883 ENSE00001878413
3997  ENSG00000156265       ENST00000399928 ENSE00003505985
3998  ENSG00000156265       ENST00000399928 ENSE00003485631
3999  ENSG00000156265       ENST00000399928 ENSE00001540853
4000  ENSG00000156265       ENST00000399928 ENSE00003577947
4001  ENSG00000156265       ENST00000399928 ENSE00001540840
4002  ENSG00000156265       ENST00000399926 ENSE00003505985
4003  ENSG00000156265       ENST00000399926 ENSE00003485631
4004  ENSG00000156265       ENST00000399926 ENSE00001413060
4005  ENSG00000156265       ENST00000399926 ENSE00003577947
4006  ENSG00000156265       ENST00000399926 ENSE00001540834
4007  ENSG00000156265       ENST00000399926 ENSE00001540833
4008  ENSG00000156265       ENST00000399925 ENSE00003505985
4009  ENSG00000156265       ENST00000399925 ENSE00003485631
4010  ENSG00000156265       ENST00000399925 ENSE00003577947
4011  ENSG00000156265       ENST00000399925 ENSE00001540829
4012  ENSG00000156265       ENST00000399925 ENSE00001540828
4013  ENSG00000156265       ENST00000451489 ENSE00003505985
4014  ENSG00000156265       ENST00000451489 ENSE00003485631
4015  ENSG00000156265       ENST00000451489 ENSE00003577947
4016  ENSG00000156265       ENST00000451489 ENSE00001721677
4017  ENSG00000156265       ENST00000451489 ENSE00001692353
4018  ENSG00000156265       ENST00000470800 ENSE00003577225
4019  ENSG00000156265       ENST00000470800 ENSE00003686991
4020  ENSG00000156265       ENST00000470800 ENSE00001855228
4021  ENSG00000156265       ENST00000470800 ENSE00001953114
4022  ENSG00000156265       ENST00000286791 ENSE00003788813
4023  ENSG00000156265       ENST00000286791 ENSE00003688344
4024  ENSG00000156265       ENST00000286791 ENSE00003616566
4025  ENSG00000156265       ENST00000286791 ENSE00003505985
4026  ENSG00000156265       ENST00000286791 ENSE00003485631
4027  ENSG00000156265       ENST00000286791 ENSE00003734512
4028  ENSG00000156265       ENST00000286791 ENSE00001749481
4029  ENSG00000156265       ENST00000545939 ENSE00003505985
4030  ENSG00000156265       ENST00000545939 ENSE00003485631
4031  ENSG00000156265       ENST00000545939 ENSE00001749481
4032  ENSG00000156265       ENST00000545939 ENSE00003616261
4033  ENSG00000232687       ENST00000412942 ENSE00001799833
4034  ENSG00000280191       ENST00000624561 ENSE00003755445
4035  ENSG00000280191       ENST00000624561 ENSE00003758565
4036  ENSG00000280191       ENST00000624561 ENSE00003754900
4037  ENSG00000280191       ENST00000624561 ENSE00003759768
4038  ENSG00000280191       ENST00000624105 ENSE00003756793
4039  ENSG00000280191       ENST00000624105 ENSE00003758991
4040  ENSG00000280191       ENST00000624113 ENSE00003758109
4041  ENSG00000280191       ENST00000624113 ENSE00003758468
4042  ENSG00000280191       ENST00000623161 ENSE00003757687
4043  ENSG00000280191       ENST00000623161 ENSE00003757910
4044  ENSG00000280191       ENST00000623161 ENSE00003757588
4045  ENSG00000280191       ENST00000623161 ENSE00003754930
4046  ENSG00000280191       ENST00000623549 ENSE00003757910
4047  ENSG00000280191       ENST00000623549 ENSE00003756348
4048  ENSG00000280191       ENST00000623549 ENSE00003759668
4049  ENSG00000279186       ENST00000624506 ENSE00003756739
4050  ENSG00000279784       ENST00000623587 ENSE00003758868
4051  ENSG00000279784       ENST00000623587 ENSE00003757033
4052  ENSG00000230972       ENST00000421604 ENSE00001649771
4053  ENSG00000230972       ENST00000421604 ENSE00001709811
4054  ENSG00000230972       ENST00000421604 ENSE00001665289
4055  ENSG00000230972       ENST00000421604 ENSE00001669384
4056  ENSG00000230972       ENST00000421604 ENSE00001638286
4057  ENSG00000233215       ENST00000416327 ENSE00001644507
4058  ENSG00000233215       ENST00000416327 ENSE00001621289
4059  ENSG00000233215       ENST00000416327 ENSE00001772640
4060  ENSG00000233215       ENST00000420255 ENSE00001621289
4061  ENSG00000233215       ENST00000420255 ENSE00001744169
4062  ENSG00000233215       ENST00000420255 ENSE00001646364
4063  ENSG00000233215       ENST00000420255 ENSE00001723739
4064  ENSG00000233215       ENST00000420255 ENSE00001752387
4065  ENSG00000233215       ENST00000420255 ENSE00001654279
4066  ENSG00000233215       ENST00000419467 ENSE00001686615
4067  ENSG00000233215       ENST00000419467 ENSE00001725038
4068  ENSG00000233215       ENST00000419467 ENSE00001671087
4069  ENSG00000227075       ENST00000452500 ENSE00001794925
4070  ENSG00000227075       ENST00000452500 ENSE00001685738
4071  ENSG00000227075       ENST00000452500 ENSE00001616092
4072  ENSG00000236677       ENST00000436303 ENSE00001711920
4073  ENSG00000236677       ENST00000436303 ENSE00001788299
4074  ENSG00000236677       ENST00000436303 ENSE00001650043
4075  ENSG00000233480       ENST00000443479 ENSE00001650188
4076  ENSG00000233480       ENST00000443479 ENSE00001677715
4077  ENSG00000233480       ENST00000443479 ENSE00001705269
4078  ENSG00000166979       ENST00000469079 ENSE00001954046
4079  ENSG00000166979       ENST00000469079 ENSE00003506889
4080  ENSG00000166979       ENST00000469079 ENSE00003578865
4081  ENSG00000166979       ENST00000469079 ENSE00001887125
4082  ENSG00000166979       ENST00000459833 ENSE00003506889
4083  ENSG00000166979       ENST00000459833 ENSE00001932967
4084  ENSG00000166979       ENST00000459833 ENSE00003496455
4085  ENSG00000166979       ENST00000459833 ENSE00003548118
4086  ENSG00000166979       ENST00000459833 ENSE00001907656
4087  ENSG00000166979       ENST00000300255 ENSE00001840809
4088  ENSG00000166979       ENST00000300255 ENSE00003528501
4089  ENSG00000166979       ENST00000300255 ENSE00003593323
4090  ENSG00000166979       ENST00000300255 ENSE00003610773
4091  ENSG00000166979       ENST00000300255 ENSE00003640508
4092  ENSG00000166979       ENST00000300255 ENSE00003516969
4093  ENSG00000166979       ENST00000300255 ENSE00003488598
4094  ENSG00000166979       ENST00000300255 ENSE00003571881
4095  ENSG00000166979       ENST00000435323 ENSE00003496455
4096  ENSG00000166979       ENST00000435323 ENSE00001493039
4097  ENSG00000166979       ENST00000435323 ENSE00003651349
4098  ENSG00000166979       ENST00000435323 ENSE00003584501
4099  ENSG00000166979       ENST00000435323 ENSE00003477931
4100  ENSG00000166979       ENST00000435323 ENSE00003535755
4101  ENSG00000166979       ENST00000437338 ENSE00003496455
4102  ENSG00000166979       ENST00000437338 ENSE00003548118
4103  ENSG00000166979       ENST00000437338 ENSE00001493039
4104  ENSG00000166979       ENST00000437338 ENSE00003651349
4105  ENSG00000166979       ENST00000437338 ENSE00003584501
4106  ENSG00000166979       ENST00000437338 ENSE00003477931
4107  ENSG00000166979       ENST00000437338 ENSE00003535755
4108  ENSG00000166979       ENST00000457807 ENSE00003610773
4109  ENSG00000166979       ENST00000457807 ENSE00003640508
4110  ENSG00000166979       ENST00000457807 ENSE00003477931
4111  ENSG00000166979       ENST00000457807 ENSE00003535755
4112  ENSG00000166979       ENST00000457807 ENSE00001553789
4113  ENSG00000166979       ENST00000457807 ENSE00001789432
4114  ENSG00000166979       ENST00000401402 ENSE00003528501
4115  ENSG00000166979       ENST00000401402 ENSE00003593323
4116  ENSG00000166979       ENST00000401402 ENSE00003610773
4117  ENSG00000166979       ENST00000401402 ENSE00003516969
4118  ENSG00000166979       ENST00000401402 ENSE00003488598
4119  ENSG00000166979       ENST00000401402 ENSE00001944221
4120  ENSG00000166979       ENST00000401402 ENSE00001863083
4121  ENSG00000166979       ENST00000382699 ENSE00003528501
4122  ENSG00000166979       ENST00000382699 ENSE00003593323
4123  ENSG00000166979       ENST00000382699 ENSE00003610773
4124  ENSG00000166979       ENST00000382699 ENSE00003640508
4125  ENSG00000166979       ENST00000382699 ENSE00003488598
4126  ENSG00000166979       ENST00000382699 ENSE00003571881
4127  ENSG00000166979       ENST00000382699 ENSE00001901234
4128  ENSG00000166979       ENST00000382699 ENSE00001493037
4129  ENSG00000166979       ENST00000481638 ENSE00001816132
4130  ENSG00000166979       ENST00000481638 ENSE00001957162
4131  ENSG00000166979       ENST00000412833 ENSE00003593323
4132  ENSG00000166979       ENST00000412833 ENSE00003610773
4133  ENSG00000166979       ENST00000412833 ENSE00001736309
4134  ENSG00000166979       ENST00000412833 ENSE00003581613
4135  ENSG00000166979       ENST00000412833 ENSE00001702714
4136  ENSG00000166979       ENST00000464037 ENSE00003578865
4137  ENSG00000166979       ENST00000464037 ENSE00003496455
4138  ENSG00000166979       ENST00000464037 ENSE00003548118
4139  ENSG00000166979       ENST00000464037 ENSE00003584501
4140  ENSG00000166979       ENST00000464037 ENSE00003477931
4141  ENSG00000166979       ENST00000464037 ENSE00003535755
4142  ENSG00000166979       ENST00000464037 ENSE00001886268
4143  ENSG00000166979       ENST00000496615 ENSE00003548118
4144  ENSG00000166979       ENST00000496615 ENSE00003584501
4145  ENSG00000166979       ENST00000496615 ENSE00003477931
4146  ENSG00000166979       ENST00000496615 ENSE00001851200
4147  ENSG00000166979       ENST00000496615 ENSE00001928321
4148  ENSG00000166979       ENST00000485488 ENSE00003477931
4149  ENSG00000166979       ENST00000485488 ENSE00003535755
4150  ENSG00000166979       ENST00000485488 ENSE00001819450
4151  ENSG00000235888       ENST00000417335 ENSE00001688039
4152  ENSG00000235888       ENST00000417335 ENSE00001602024
4153  ENSG00000235888       ENST00000417335 ENSE00001798412
4154  ENSG00000249493       ENST00000359341 ENSE00002039080
4155  ENSG00000249493       ENST00000359341 ENSE00001609657
4156  ENSG00000249493       ENST00000359341 ENSE00002057291
4157  ENSG00000237202       ENST00000424255 ENSE00001727607
4158  ENSG00000156299       ENST00000286827 ENSE00001372551
4159  ENSG00000156299       ENST00000286827 ENSE00001367893
4160  ENSG00000156299       ENST00000286827 ENSE00001383160
4161  ENSG00000156299       ENST00000286827 ENSE00001365575
4162  ENSG00000156299       ENST00000286827 ENSE00001025653
4163  ENSG00000156299       ENST00000286827 ENSE00003665885
4164  ENSG00000156299       ENST00000286827 ENSE00003624335
4165  ENSG00000156299       ENST00000286827 ENSE00003540307
4166  ENSG00000156299       ENST00000286827 ENSE00003581255
4167  ENSG00000156299       ENST00000286827 ENSE00003609954
4168  ENSG00000156299       ENST00000286827 ENSE00001265070
4169  ENSG00000156299       ENST00000286827 ENSE00001025641
4170  ENSG00000156299       ENST00000286827 ENSE00001025658
4171  ENSG00000156299       ENST00000286827 ENSE00001025636
4172  ENSG00000156299       ENST00000286827 ENSE00001025648
4173  ENSG00000156299       ENST00000286827 ENSE00001025649
4174  ENSG00000156299       ENST00000286827 ENSE00001025650
4175  ENSG00000156299       ENST00000286827 ENSE00001025643
4176  ENSG00000156299       ENST00000286827 ENSE00001025638
4177  ENSG00000156299       ENST00000286827 ENSE00001025637
4178  ENSG00000156299       ENST00000286827 ENSE00001025651
4179  ENSG00000156299       ENST00000286827 ENSE00001610053
4180  ENSG00000156299       ENST00000286827 ENSE00001722006
4181  ENSG00000156299       ENST00000286827 ENSE00001700177
4182  ENSG00000156299       ENST00000286827 ENSE00001806004
4183  ENSG00000156299       ENST00000286827 ENSE00001667545
4184  ENSG00000156299       ENST00000286827 ENSE00003544916
4185  ENSG00000156299       ENST00000286827 ENSE00001769773
4186  ENSG00000156299       ENST00000286827 ENSE00001612577
4187  ENSG00000156299       ENST00000423206 ENSE00003544916
4188  ENSG00000156299       ENST00000423206 ENSE00001769773
4189  ENSG00000156299       ENST00000423206 ENSE00001637946
4190  ENSG00000156299       ENST00000423206 ENSE00001683059
4191  ENSG00000156299       ENST00000636887 ENSE00001025643
4192  ENSG00000156299       ENST00000636887 ENSE00001025638
4193  ENSG00000156299       ENST00000636887 ENSE00001025637
4194  ENSG00000156299       ENST00000636887 ENSE00001025651
4195  ENSG00000156299       ENST00000636887 ENSE00001610053
4196  ENSG00000156299       ENST00000636887 ENSE00001722006
4197  ENSG00000156299       ENST00000636887 ENSE00001700177
4198  ENSG00000156299       ENST00000636887 ENSE00001806004
4199  ENSG00000156299       ENST00000636887 ENSE00001667545
4200  ENSG00000156299       ENST00000636887 ENSE00003544916
4201  ENSG00000156299       ENST00000636887 ENSE00001769773
4202  ENSG00000156299       ENST00000636887 ENSE00003794617
4203  ENSG00000156299       ENST00000636887 ENSE00003799789
4204  ENSG00000156299       ENST00000491927 ENSE00001888014
4205  ENSG00000156299       ENST00000491927 ENSE00003543470
4206  ENSG00000156299       ENST00000491927 ENSE00001903329
4207  ENSG00000156299       ENST00000469412 ENSE00001367893
4208  ENSG00000156299       ENST00000469412 ENSE00001383160
4209  ENSG00000156299       ENST00000469412 ENSE00001895275
4210  ENSG00000156299       ENST00000469412 ENSE00003484349
4211  ENSG00000156299       ENST00000469412 ENSE00003671420
4212  ENSG00000156299       ENST00000469412 ENSE00003665677
4213  ENSG00000156299       ENST00000469412 ENSE00003511263
4214  ENSG00000156299       ENST00000469412 ENSE00003569946
4215  ENSG00000156299       ENST00000469412 ENSE00001941047
4216  ENSG00000156299       ENST00000455508 ENSE00001383160
4217  ENSG00000156299       ENST00000455508 ENSE00001365575
4218  ENSG00000156299       ENST00000455508 ENSE00001708609
4219  ENSG00000156299       ENST00000455508 ENSE00001678266
4220  ENSG00000156299       ENST00000541036 ENSE00001372551
4221  ENSG00000156299       ENST00000541036 ENSE00001367893
4222  ENSG00000156299       ENST00000541036 ENSE00001383160
4223  ENSG00000156299       ENST00000541036 ENSE00001365575
4224  ENSG00000156299       ENST00000541036 ENSE00001025653
4225  ENSG00000156299       ENST00000541036 ENSE00003665885
4226  ENSG00000156299       ENST00000541036 ENSE00003624335
4227  ENSG00000156299       ENST00000541036 ENSE00003540307
4228  ENSG00000156299       ENST00000541036 ENSE00003581255
4229  ENSG00000156299       ENST00000541036 ENSE00003609954
4230  ENSG00000156299       ENST00000541036 ENSE00001025641
4231  ENSG00000156299       ENST00000541036 ENSE00001025636
4232  ENSG00000156299       ENST00000541036 ENSE00001025648
4233  ENSG00000156299       ENST00000541036 ENSE00001025649
4234  ENSG00000156299       ENST00000541036 ENSE00001025650
4235  ENSG00000156299       ENST00000541036 ENSE00001025643
4236  ENSG00000156299       ENST00000541036 ENSE00001025638
4237  ENSG00000156299       ENST00000541036 ENSE00001025637
4238  ENSG00000156299       ENST00000541036 ENSE00001025651
4239  ENSG00000156299       ENST00000541036 ENSE00001610053
4240  ENSG00000156299       ENST00000541036 ENSE00001722006
4241  ENSG00000156299       ENST00000541036 ENSE00001700177
4242  ENSG00000156299       ENST00000541036 ENSE00001806004
4243  ENSG00000156299       ENST00000541036 ENSE00001667545
4244  ENSG00000156299       ENST00000541036 ENSE00003544916
4245  ENSG00000156299       ENST00000541036 ENSE00001769773
4246  ENSG00000156299       ENST00000541036 ENSE00002257089
4247  ENSG00000154721       ENST00000400532 ENSE00002192567
4248  ENSG00000154721       ENST00000400532 ENSE00001017308
4249  ENSG00000154721       ENST00000400532 ENSE00001017301
4250  ENSG00000154721       ENST00000400532 ENSE00001017300
4251  ENSG00000154721       ENST00000400532 ENSE00001017302
4252  ENSG00000154721       ENST00000400532 ENSE00001017305
4253  ENSG00000154721       ENST00000400532 ENSE00003679527
4254  ENSG00000154721       ENST00000400532 ENSE00001764187
4255  ENSG00000154721       ENST00000400532 ENSE00003467564
4256  ENSG00000154721       ENST00000400532 ENSE00001543360
4257  ENSG00000154721       ENST00000480456 ENSE00002192567
4258  ENSG00000154721       ENST00000480456 ENSE00001017308
4259  ENSG00000154721       ENST00000480456 ENSE00001017301
4260  ENSG00000154721       ENST00000480456 ENSE00001017300
4261  ENSG00000154721       ENST00000480456 ENSE00001017302
4262  ENSG00000154721       ENST00000480456 ENSE00001017305
4263  ENSG00000154721       ENST00000480456 ENSE00003679527
4264  ENSG00000154721       ENST00000480456 ENSE00001764187
4265  ENSG00000154721       ENST00000480456 ENSE00003467564
4266  ENSG00000154721       ENST00000480456 ENSE00001862906
4267  ENSG00000154721       ENST00000460679 ENSE00001017301
4268  ENSG00000154721       ENST00000460679 ENSE00001017300
4269  ENSG00000154721       ENST00000460679 ENSE00001017302
4270  ENSG00000154721       ENST00000460679 ENSE00001017305
4271  ENSG00000154721       ENST00000460679 ENSE00003679527
4272  ENSG00000154721       ENST00000460679 ENSE00001764187
4273  ENSG00000154721       ENST00000460679 ENSE00001945621
4274  ENSG00000154721       ENST00000460679 ENSE00003610477
4275  ENSG00000154721       ENST00000460679 ENSE00001889046
4276  ENSG00000154721       ENST00000492962 ENSE00001928073
4277  ENSG00000154721       ENST00000492962 ENSE00003665697
4278  ENSG00000154721       ENST00000492962 ENSE00001855937
4279  ENSG00000154721       ENST00000477351 ENSE00003610477
4280  ENSG00000154721       ENST00000477351 ENSE00001951699
4281  ENSG00000154721       ENST00000477351 ENSE00001949672
4282  ENSG00000154721       ENST00000471689 ENSE00001885439
4283  ENSG00000154721       ENST00000471689 ENSE00001852067
4284  ENSG00000154721       ENST00000312957 ENSE00001017308
4285  ENSG00000154721       ENST00000312957 ENSE00001017300
4286  ENSG00000154721       ENST00000312957 ENSE00001017302
4287  ENSG00000154721       ENST00000312957 ENSE00001017305
4288  ENSG00000154721       ENST00000312957 ENSE00003679527
4289  ENSG00000154721       ENST00000312957 ENSE00001764187
4290  ENSG00000154721       ENST00000312957 ENSE00003467564
4291  ENSG00000154721       ENST00000312957 ENSE00001250732
4292  ENSG00000154721       ENST00000312957 ENSE00002256602
4293  ENSG00000186977       ENST00000334151 ENSE00001338619
4294  ENSG00000230061       ENST00000423310 ENSE00001678346
4295  ENSG00000230061       ENST00000423310 ENSE00001670662
4296  ENSG00000230061       ENST00000423310 ENSE00001659958
4297  ENSG00000230061       ENST00000456880 ENSE00001767057
4298  ENSG00000230061       ENST00000456880 ENSE00001609549
4299  ENSG00000142185       ENST00000300482 ENSE00001483894
4300  ENSG00000142185       ENST00000300482 ENSE00001050762
4301  ENSG00000142185       ENST00000300482 ENSE00001211363
4302  ENSG00000142185       ENST00000300482 ENSE00001136423
4303  ENSG00000142185       ENST00000300482 ENSE00001050770
4304  ENSG00000142185       ENST00000300482 ENSE00001136239
4305  ENSG00000142185       ENST00000300482 ENSE00003563694
4306  ENSG00000142185       ENST00000300482 ENSE00003691176
4307  ENSG00000142185       ENST00000300482 ENSE00003509381
4308  ENSG00000142185       ENST00000300482 ENSE00003518763
4309  ENSG00000142185       ENST00000300482 ENSE00003500029
4310  ENSG00000142185       ENST00000300482 ENSE00003575443
4311  ENSG00000142185       ENST00000300482 ENSE00003484543
4312  ENSG00000142185       ENST00000300482 ENSE00003599280
4313  ENSG00000142185       ENST00000300482 ENSE00003597184
4314  ENSG00000142185       ENST00000300482 ENSE00003465034
4315  ENSG00000142185       ENST00000300482 ENSE00003636376
4316  ENSG00000142185       ENST00000300482 ENSE00003562029
4317  ENSG00000142185       ENST00000300482 ENSE00003529143
4318  ENSG00000142185       ENST00000300482 ENSE00003604228
4319  ENSG00000142185       ENST00000300482 ENSE00003621257
4320  ENSG00000142185       ENST00000300482 ENSE00003626924
4321  ENSG00000142185       ENST00000300482 ENSE00003534191
4322  ENSG00000142185       ENST00000300482 ENSE00003510537
4323  ENSG00000142185       ENST00000300482 ENSE00003547493
4324  ENSG00000142185       ENST00000300482 ENSE00003580935
4325  ENSG00000142185       ENST00000300482 ENSE00003546941
4326  ENSG00000142185       ENST00000300482 ENSE00003630131
4327  ENSG00000142185       ENST00000300482 ENSE00003488936
4328  ENSG00000142185       ENST00000300482 ENSE00003499642
4329  ENSG00000142185       ENST00000300482 ENSE00003538028
4330  ENSG00000142185       ENST00000300482 ENSE00003546538
4331  ENSG00000142185       ENST00000300482 ENSE00003693802
4332  ENSG00000142185       ENST00000431901 ENSE00001050762
4333  ENSG00000142185       ENST00000431901 ENSE00001211363
4334  ENSG00000142185       ENST00000431901 ENSE00001136423
4335  ENSG00000142185       ENST00000431901 ENSE00001733152
4336  ENSG00000142185       ENST00000431901 ENSE00002489935
4337  ENSG00000142185       ENST00000397928 ENSE00001211363
4338  ENSG00000142185       ENST00000397928 ENSE00001136423
4339  ENSG00000142185       ENST00000397928 ENSE00001050770
4340  ENSG00000142185       ENST00000397928 ENSE00001136239
4341  ENSG00000142185       ENST00000397928 ENSE00003563694
4342  ENSG00000142185       ENST00000397928 ENSE00003691176
4343  ENSG00000142185       ENST00000397928 ENSE00003509381
4344  ENSG00000142185       ENST00000397928 ENSE00003518763
4345  ENSG00000142185       ENST00000397928 ENSE00003500029
4346  ENSG00000142185       ENST00000397928 ENSE00003575443
4347  ENSG00000142185       ENST00000397928 ENSE00003484543
4348  ENSG00000142185       ENST00000397928 ENSE00003599280
4349  ENSG00000142185       ENST00000397928 ENSE00003597184
4350  ENSG00000142185       ENST00000397928 ENSE00003465034
4351  ENSG00000142185       ENST00000397928 ENSE00003636376
4352  ENSG00000142185       ENST00000397928 ENSE00003562029
4353  ENSG00000142185       ENST00000397928 ENSE00003529143
4354  ENSG00000142185       ENST00000397928 ENSE00003604228
4355  ENSG00000142185       ENST00000397928 ENSE00003621257
4356  ENSG00000142185       ENST00000397928 ENSE00003626924
4357  ENSG00000142185       ENST00000397928 ENSE00003534191
4358  ENSG00000142185       ENST00000397928 ENSE00003510537
4359  ENSG00000142185       ENST00000397928 ENSE00003547493
4360  ENSG00000142185       ENST00000397928 ENSE00003580935
4361  ENSG00000142185       ENST00000397928 ENSE00003546941
4362  ENSG00000142185       ENST00000397928 ENSE00003630131
4363  ENSG00000142185       ENST00000397928 ENSE00003488936
4364  ENSG00000142185       ENST00000397928 ENSE00003499642
4365  ENSG00000142185       ENST00000397928 ENSE00003538028
4366  ENSG00000142185       ENST00000397928 ENSE00003546538
4367  ENSG00000142185       ENST00000397928 ENSE00003693802
4368  ENSG00000142185       ENST00000397928 ENSE00001530923
4369  ENSG00000142185       ENST00000397932 ENSE00001211363
4370  ENSG00000142185       ENST00000397932 ENSE00001136423
4371  ENSG00000142185       ENST00000397932 ENSE00001050770
4372  ENSG00000142185       ENST00000397932 ENSE00001136239
4373  ENSG00000142185       ENST00000397932 ENSE00003563694
4374  ENSG00000142185       ENST00000397932 ENSE00003691176
4375  ENSG00000142185       ENST00000397932 ENSE00003509381
4376  ENSG00000142185       ENST00000397932 ENSE00003518763
4377  ENSG00000142185       ENST00000397932 ENSE00003500029
4378  ENSG00000142185       ENST00000397932 ENSE00003575443
4379  ENSG00000142185       ENST00000397932 ENSE00003484543
4380  ENSG00000142185       ENST00000397932 ENSE00003599280
4381  ENSG00000142185       ENST00000397932 ENSE00003597184
4382  ENSG00000142185       ENST00000397932 ENSE00003465034
4383  ENSG00000142185       ENST00000397932 ENSE00003636376
4384  ENSG00000142185       ENST00000397932 ENSE00003562029
4385  ENSG00000142185       ENST00000397932 ENSE00003529143
4386  ENSG00000142185       ENST00000397932 ENSE00003604228
4387  ENSG00000142185       ENST00000397932 ENSE00003621257
4388  ENSG00000142185       ENST00000397932 ENSE00003626924
4389  ENSG00000142185       ENST00000397932 ENSE00003534191
4390  ENSG00000142185       ENST00000397932 ENSE00003510537
4391  ENSG00000142185       ENST00000397932 ENSE00003547493
4392  ENSG00000142185       ENST00000397932 ENSE00003580935
4393  ENSG00000142185       ENST00000397932 ENSE00003546941
4394  ENSG00000142185       ENST00000397932 ENSE00003630131
4395  ENSG00000142185       ENST00000397932 ENSE00003488936
4396  ENSG00000142185       ENST00000397932 ENSE00003499642
4397  ENSG00000142185       ENST00000397932 ENSE00003538028
4398  ENSG00000142185       ENST00000397932 ENSE00003546538
4399  ENSG00000142185       ENST00000397932 ENSE00001877735
4400  ENSG00000142185       ENST00000397932 ENSE00001530839
4401  ENSG00000142185       ENST00000397932 ENSE00001876151
4402  ENSG00000142185       ENST00000300481 ENSE00001211363
4403  ENSG00000142185       ENST00000300481 ENSE00001136423
4404  ENSG00000142185       ENST00000300481 ENSE00001050770
4405  ENSG00000142185       ENST00000300481 ENSE00001136239
4406  ENSG00000142185       ENST00000300481 ENSE00003563694
4407  ENSG00000142185       ENST00000300481 ENSE00003691176
4408  ENSG00000142185       ENST00000300481 ENSE00003509381
4409  ENSG00000142185       ENST00000300481 ENSE00003518763
4410  ENSG00000142185       ENST00000300481 ENSE00003500029
4411  ENSG00000142185       ENST00000300481 ENSE00003484543
4412  ENSG00000142185       ENST00000300481 ENSE00003599280
4413  ENSG00000142185       ENST00000300481 ENSE00003597184
4414  ENSG00000142185       ENST00000300481 ENSE00003465034
4415  ENSG00000142185       ENST00000300481 ENSE00003636376
4416  ENSG00000142185       ENST00000300481 ENSE00003562029
4417  ENSG00000142185       ENST00000300481 ENSE00003529143
4418  ENSG00000142185       ENST00000300481 ENSE00003604228
4419  ENSG00000142185       ENST00000300481 ENSE00003621257
4420  ENSG00000142185       ENST00000300481 ENSE00003626924
4421  ENSG00000142185       ENST00000300481 ENSE00003534191
4422  ENSG00000142185       ENST00000300481 ENSE00003510537
4423  ENSG00000142185       ENST00000300481 ENSE00003547493
4424  ENSG00000142185       ENST00000300481 ENSE00003580935
4425  ENSG00000142185       ENST00000300481 ENSE00003546941
4426  ENSG00000142185       ENST00000300481 ENSE00003488936
4427  ENSG00000142185       ENST00000300481 ENSE00003499642
4428  ENSG00000142185       ENST00000300481 ENSE00003538028
4429  ENSG00000142185       ENST00000300481 ENSE00003546538
4430  ENSG00000142185       ENST00000300481 ENSE00003693802
4431  ENSG00000142185       ENST00000300481 ENSE00001877735
4432  ENSG00000142185       ENST00000300481 ENSE00001416218
4433  ENSG00000142185       ENST00000300481 ENSE00001414553
4434  ENSG00000142185       ENST00000498430 ENSE00001902244
4435  ENSG00000142185       ENST00000498430 ENSE00003471764
4436  ENSG00000142185       ENST00000498430 ENSE00003459665
4437  ENSG00000142185       ENST00000498430 ENSE00003651596
4438  ENSG00000142185       ENST00000498430 ENSE00003682501
4439  ENSG00000142185       ENST00000498430 ENSE00003675520
4440  ENSG00000142185       ENST00000498430 ENSE00003622879
4441  ENSG00000142185       ENST00000498430 ENSE00003691530
4442  ENSG00000142185       ENST00000498430 ENSE00003507409
4443  ENSG00000142185       ENST00000498430 ENSE00003623903
4444  ENSG00000142185       ENST00000498430 ENSE00003524621
4445  ENSG00000142185       ENST00000498430 ENSE00003524534
4446  ENSG00000142185       ENST00000498430 ENSE00003580616
4447  ENSG00000142185       ENST00000498430 ENSE00003549137
4448  ENSG00000142185       ENST00000498430 ENSE00003663649
4449  ENSG00000142185       ENST00000498430 ENSE00003578389
4450  ENSG00000142185       ENST00000498430 ENSE00003667346
4451  ENSG00000142185       ENST00000498430 ENSE00003520249
4452  ENSG00000142185       ENST00000498430 ENSE00003687397
4453  ENSG00000142185       ENST00000498430 ENSE00003632964
4454  ENSG00000142185       ENST00000498430 ENSE00003638286
4455  ENSG00000142185       ENST00000498430 ENSE00003578159
4456  ENSG00000142185       ENST00000498430 ENSE00003508814
4457  ENSG00000142185       ENST00000498430 ENSE00003465116
4458  ENSG00000142185       ENST00000498430 ENSE00003549495
4459  ENSG00000142185       ENST00000498430 ENSE00003653585
4460  ENSG00000142185       ENST00000498430 ENSE00003565672
4461  ENSG00000142185       ENST00000498430 ENSE00003636165
4462  ENSG00000142185       ENST00000490982 ENSE00003465116
4463  ENSG00000142185       ENST00000490982 ENSE00003549495
4464  ENSG00000142185       ENST00000490982 ENSE00003653585
4465  ENSG00000142185       ENST00000490982 ENSE00003565672
4466  ENSG00000142185       ENST00000490982 ENSE00001956052
4467  ENSG00000142185       ENST00000490982 ENSE00001881565
4468  ENSG00000142185       ENST00000490982 ENSE00001943881
4469  ENSG00000142185       ENST00000621064 ENSE00003546941
4470  ENSG00000142185       ENST00000621064 ENSE00003488936
4471  ENSG00000142185       ENST00000621064 ENSE00003499642
4472  ENSG00000142185       ENST00000621064 ENSE00003538028
4473  ENSG00000142185       ENST00000621064 ENSE00003546538
4474  ENSG00000142185       ENST00000621064 ENSE00003718749
4475  ENSG00000142185       ENST00000621064 ENSE00003715769
4476  ENSG00000142185       ENST00000621064 ENSE00003745506
4477  ENSG00000142185       ENST00000621064 ENSE00003750244
4478  ENSG00000142185       ENST00000621064 ENSE00003749845
4479  ENSG00000228404       ENST00000415026 ENSE00001804194
4480  ENSG00000228404       ENST00000415026 ENSE00001732405
4481  ENSG00000233756       ENST00000440363 ENSE00001764323
4482  ENSG00000233756       ENST00000440363 ENSE00001636286
4483  ENSG00000233756       ENST00000440363 ENSE00001753303
4484  ENSG00000233756       ENST00000440363 ENSE00001687067
4485  ENSG00000233756       ENST00000441910 ENSE00001764323
4486  ENSG00000233756       ENST00000441910 ENSE00001636286
4487  ENSG00000233756       ENST00000441910 ENSE00001753303
4488  ENSG00000233756       ENST00000441910 ENSE00001644795
4489  ENSG00000185437       ENST00000380637 ENSE00001485742
4490  ENSG00000185437       ENST00000380637 ENSE00003479361
4491  ENSG00000185437       ENST00000380637 ENSE00001325607
4492  ENSG00000185437       ENST00000380637 ENSE00001304806
4493  ENSG00000185437       ENST00000380637 ENSE00001291003
4494  ENSG00000185437       ENST00000380637 ENSE00001318388
4495  ENSG00000185437       ENST00000380637 ENSE00003616304
4496  ENSG00000185437       ENST00000380634 ENSE00003479361
4497  ENSG00000185437       ENST00000380634 ENSE00001325607
4498  ENSG00000185437       ENST00000380634 ENSE00001304806
4499  ENSG00000185437       ENST00000380634 ENSE00001291003
4500  ENSG00000185437       ENST00000380634 ENSE00001318388
4501  ENSG00000185437       ENST00000380634 ENSE00001485693
4502  ENSG00000185437       ENST00000380634 ENSE00001485691
4503  ENSG00000185437       ENST00000458295 ENSE00001325607
4504  ENSG00000185437       ENST00000458295 ENSE00001291003
4505  ENSG00000185437       ENST00000458295 ENSE00001318388
4506  ENSG00000185437       ENST00000458295 ENSE00001595390
4507  ENSG00000185437       ENST00000458295 ENSE00001746157
4508  ENSG00000185437       ENST00000458295 ENSE00001674565
4509  ENSG00000185437       ENST00000440288 ENSE00003479361
4510  ENSG00000185437       ENST00000440288 ENSE00001325607
4511  ENSG00000185437       ENST00000440288 ENSE00001304806
4512  ENSG00000185437       ENST00000440288 ENSE00001291003
4513  ENSG00000185437       ENST00000440288 ENSE00001674668
4514  ENSG00000185437       ENST00000440288 ENSE00001762104
4515  ENSG00000185437       ENST00000380631 ENSE00003479361
4516  ENSG00000185437       ENST00000380631 ENSE00001325607
4517  ENSG00000185437       ENST00000380631 ENSE00001304806
4518  ENSG00000185437       ENST00000380631 ENSE00001291003
4519  ENSG00000185437       ENST00000380631 ENSE00001318388
4520  ENSG00000185437       ENST00000380631 ENSE00001485686
4521  ENSG00000185437       ENST00000380631 ENSE00001485685
4522  ENSG00000185437       ENST00000333634 ENSE00001325607
4523  ENSG00000185437       ENST00000333634 ENSE00001304806
4524  ENSG00000185437       ENST00000333634 ENSE00001291003
4525  ENSG00000185437       ENST00000333634 ENSE00001318388
4526  ENSG00000185437       ENST00000333634 ENSE00003616304
4527  ENSG00000185437       ENST00000333634 ENSE00001290961
4528  ENSG00000185437       ENST00000333634 ENSE00003570356
4529  ENSG00000185437       ENST00000452550 ENSE00001325607
4530  ENSG00000185437       ENST00000452550 ENSE00001291003
4531  ENSG00000185437       ENST00000452550 ENSE00001318388
4532  ENSG00000185437       ENST00000452550 ENSE00003616304
4533  ENSG00000185437       ENST00000452550 ENSE00003570356
4534  ENSG00000185437       ENST00000452550 ENSE00002510123
4535  ENSG00000185437       ENST00000423596 ENSE00001304806
4536  ENSG00000185437       ENST00000423596 ENSE00001291003
4537  ENSG00000185437       ENST00000423596 ENSE00001628122
4538  ENSG00000185437       ENST00000423596 ENSE00001624370
4539  ENSG00000185437       ENST00000447939 ENSE00001304806
4540  ENSG00000185437       ENST00000447939 ENSE00003523025
4541  ENSG00000174680       ENST00000455392 ENSE00001699657
4542  ENSG00000174680       ENST00000455392 ENSE00001727818
4543  ENSG00000174680       ENST00000455392 ENSE00001191923
4544  ENSG00000174680       ENST00000455392 ENSE00001642182
4545  ENSG00000174680       ENST00000455392 ENSE00001678834
4546  ENSG00000174680       ENST00000309331 ENSE00001191923
4547  ENSG00000174680       ENST00000309331 ENSE00001429814
4548  ENSG00000174680       ENST00000309331 ENSE00001681171
4549  ENSG00000174680       ENST00000423221 ENSE00001681171
4550  ENSG00000174680       ENST00000423221 ENSE00001622569
4551  ENSG00000174680       ENST00000412579 ENSE00001642182
4552  ENSG00000174680       ENST00000412579 ENSE00001681171
4553  ENSG00000174680       ENST00000412579 ENSE00001650559
4554  ENSG00000174680       ENST00000412579 ENSE00001644342
4555  ENSG00000174680       ENST00000413131 ENSE00001681171
4556  ENSG00000174680       ENST00000413131 ENSE00001753021
4557  ENSG00000142173       ENST00000300527 ENSE00001902209
4558  ENSG00000142173       ENST00000300527 ENSE00000952665
4559  ENSG00000142173       ENST00000300527 ENSE00001134048
4560  ENSG00000142173       ENST00000300527 ENSE00000952667
4561  ENSG00000142173       ENST00000300527 ENSE00001219451
4562  ENSG00000142173       ENST00000300527 ENSE00003477309
4563  ENSG00000142173       ENST00000300527 ENSE00003473000
4564  ENSG00000142173       ENST00000300527 ENSE00003589368
4565  ENSG00000142173       ENST00000300527 ENSE00003564562
4566  ENSG00000142173       ENST00000300527 ENSE00003652273
4567  ENSG00000142173       ENST00000300527 ENSE00000952674
4568  ENSG00000142173       ENST00000300527 ENSE00000952704
4569  ENSG00000142173       ENST00000300527 ENSE00000952707
4570  ENSG00000142173       ENST00000300527 ENSE00000952695
4571  ENSG00000142173       ENST00000300527 ENSE00000952678
4572  ENSG00000142173       ENST00000300527 ENSE00000952696
4573  ENSG00000142173       ENST00000300527 ENSE00000952699
4574  ENSG00000142173       ENST00000300527 ENSE00001332369
4575  ENSG00000142173       ENST00000300527 ENSE00001219267
4576  ENSG00000142173       ENST00000300527 ENSE00000952683
4577  ENSG00000142173       ENST00000300527 ENSE00000952697
4578  ENSG00000142173       ENST00000300527 ENSE00001219263
4579  ENSG00000142173       ENST00000300527 ENSE00000952705
4580  ENSG00000142173       ENST00000300527 ENSE00001218880
4581  ENSG00000142173       ENST00000300527 ENSE00001219302
4582  ENSG00000142173       ENST00000300527 ENSE00001133859
4583  ENSG00000142173       ENST00000300527 ENSE00001110398
4584  ENSG00000142173       ENST00000300527 ENSE00000952691
4585  ENSG00000142173       ENST00000436769 ENSE00000952665
4586  ENSG00000142173       ENST00000436769 ENSE00001700317
4587  ENSG00000142173       ENST00000436769 ENSE00001719735
4588  ENSG00000142173       ENST00000409416 ENSE00001134048
4589  ENSG00000142173       ENST00000409416 ENSE00000952667
4590  ENSG00000142173       ENST00000409416 ENSE00001219451
4591  ENSG00000142173       ENST00000409416 ENSE00003477309
4592  ENSG00000142173       ENST00000409416 ENSE00003473000
4593  ENSG00000142173       ENST00000409416 ENSE00003589368
4594  ENSG00000142173       ENST00000409416 ENSE00003564562
4595  ENSG00000142173       ENST00000409416 ENSE00003652273
4596  ENSG00000142173       ENST00000409416 ENSE00000952674
4597  ENSG00000142173       ENST00000409416 ENSE00000952704
4598  ENSG00000142173       ENST00000409416 ENSE00000952707
4599  ENSG00000142173       ENST00000409416 ENSE00000952695
4600  ENSG00000142173       ENST00000409416 ENSE00000952678
4601  ENSG00000142173       ENST00000409416 ENSE00000952696
4602  ENSG00000142173       ENST00000409416 ENSE00000952699
4603  ENSG00000142173       ENST00000409416 ENSE00001332369
4604  ENSG00000142173       ENST00000409416 ENSE00001219267
4605  ENSG00000142173       ENST00000409416 ENSE00000952683
4606  ENSG00000142173       ENST00000409416 ENSE00000952697
4607  ENSG00000142173       ENST00000409416 ENSE00001219263
4608  ENSG00000142173       ENST00000409416 ENSE00000952705
4609  ENSG00000142173       ENST00000409416 ENSE00001218880
4610  ENSG00000142173       ENST00000409416 ENSE00001219302
4611  ENSG00000142173       ENST00000409416 ENSE00001133859
4612  ENSG00000142173       ENST00000409416 ENSE00001110398
4613  ENSG00000142173       ENST00000409416 ENSE00001584872
4614  ENSG00000142173       ENST00000409416 ENSE00001582755
4615  ENSG00000142173       ENST00000397763 ENSE00000952665
4616  ENSG00000142173       ENST00000397763 ENSE00001134048
4617  ENSG00000142173       ENST00000397763 ENSE00000952667
4618  ENSG00000142173       ENST00000397763 ENSE00001219451
4619  ENSG00000142173       ENST00000397763 ENSE00003477309
4620  ENSG00000142173       ENST00000397763 ENSE00003473000
4621  ENSG00000142173       ENST00000397763 ENSE00003589368
4622  ENSG00000142173       ENST00000397763 ENSE00003564562
4623  ENSG00000142173       ENST00000397763 ENSE00003652273
4624  ENSG00000142173       ENST00000397763 ENSE00000952674
4625  ENSG00000142173       ENST00000397763 ENSE00000952704
4626  ENSG00000142173       ENST00000397763 ENSE00000952707
4627  ENSG00000142173       ENST00000397763 ENSE00000952695
4628  ENSG00000142173       ENST00000397763 ENSE00000952678
4629  ENSG00000142173       ENST00000397763 ENSE00000952696
4630  ENSG00000142173       ENST00000397763 ENSE00000952699
4631  ENSG00000142173       ENST00000397763 ENSE00001332369
4632  ENSG00000142173       ENST00000397763 ENSE00001219267
4633  ENSG00000142173       ENST00000397763 ENSE00000952683
4634  ENSG00000142173       ENST00000397763 ENSE00000952697
4635  ENSG00000142173       ENST00000397763 ENSE00001219263
4636  ENSG00000142173       ENST00000397763 ENSE00000952705
4637  ENSG00000142173       ENST00000397763 ENSE00001218880
4638  ENSG00000142173       ENST00000397763 ENSE00001219302
4639  ENSG00000142173       ENST00000397763 ENSE00001133859
4640  ENSG00000142173       ENST00000397763 ENSE00001110398
4641  ENSG00000142173       ENST00000397763 ENSE00001530047
4642  ENSG00000142173       ENST00000460886 ENSE00001941337
4643  ENSG00000142173       ENST00000460886 ENSE00001895403
4644  ENSG00000142173       ENST00000485591 ENSE00001870884
4645  ENSG00000142173       ENST00000485591 ENSE00003511430
4646  ENSG00000142173       ENST00000485591 ENSE00003507459
4647  ENSG00000142173       ENST00000485591 ENSE00003569914
4648  ENSG00000142173       ENST00000485591 ENSE00003536878
4649  ENSG00000142173       ENST00000485591 ENSE00003677337
4650  ENSG00000142173       ENST00000485591 ENSE00001952021
4651  ENSG00000142173       ENST00000413758 ENSE00000952699
4652  ENSG00000142173       ENST00000413758 ENSE00001332369
4653  ENSG00000142173       ENST00000413758 ENSE00001219267
4654  ENSG00000142173       ENST00000413758 ENSE00000952683
4655  ENSG00000142173       ENST00000413758 ENSE00000952697
4656  ENSG00000142173       ENST00000413758 ENSE00001219263
4657  ENSG00000142173       ENST00000413758 ENSE00000952705
4658  ENSG00000142173       ENST00000413758 ENSE00001218880
4659  ENSG00000142173       ENST00000413758 ENSE00002492269
4660  ENSG00000142173       ENST00000413758 ENSE00001718972
4661  ENSG00000142173       ENST00000413758 ENSE00001643861
4662  ENSG00000142173       ENST00000310645 ENSE00000952665
4663  ENSG00000142173       ENST00000310645 ENSE00001134048
4664  ENSG00000142173       ENST00000310645 ENSE00000952667
4665  ENSG00000142173       ENST00000310645 ENSE00001219451
4666  ENSG00000142173       ENST00000310645 ENSE00003477309
4667  ENSG00000142173       ENST00000310645 ENSE00003473000
4668  ENSG00000142173       ENST00000310645 ENSE00003589368
4669  ENSG00000142173       ENST00000310645 ENSE00003564562
4670  ENSG00000142173       ENST00000310645 ENSE00003652273
4671  ENSG00000142173       ENST00000310645 ENSE00000952674
4672  ENSG00000142173       ENST00000310645 ENSE00000952704
4673  ENSG00000142173       ENST00000310645 ENSE00000952707
4674  ENSG00000142173       ENST00000310645 ENSE00000952695
4675  ENSG00000142173       ENST00000310645 ENSE00000952678
4676  ENSG00000142173       ENST00000310645 ENSE00000952696
4677  ENSG00000142173       ENST00000310645 ENSE00000952699
4678  ENSG00000142173       ENST00000310645 ENSE00001332369
4679  ENSG00000142173       ENST00000310645 ENSE00001219267
4680  ENSG00000142173       ENST00000310645 ENSE00000952683
4681  ENSG00000142173       ENST00000310645 ENSE00000952697
4682  ENSG00000142173       ENST00000310645 ENSE00001219263
4683  ENSG00000142173       ENST00000310645 ENSE00000952705
4684  ENSG00000142173       ENST00000310645 ENSE00001218880
4685  ENSG00000142173       ENST00000310645 ENSE00001219302
4686  ENSG00000142173       ENST00000310645 ENSE00001133859
4687  ENSG00000142173       ENST00000310645 ENSE00001110398
4688  ENSG00000142173       ENST00000310645 ENSE00001110410
4689  ENSG00000142173       ENST00000310645 ENSE00001314213
4690  ENSG00000249209       ENST00000429238 ENSE00003756449
4691  ENSG00000249209       ENST00000429238 ENSE00003756201
4692  ENSG00000249209       ENST00000429238 ENSE00003757768
4693  ENSG00000249209       ENST00000429238 ENSE00001713270
4694  ENSG00000249209       ENST00000429238 ENSE00003619177
4695  ENSG00000249209       ENST00000429238 ENSE00003476113
4696  ENSG00000249209       ENST00000429238 ENSE00003484190
4697  ENSG00000249209       ENST00000429238 ENSE00001767773
4698  ENSG00000160226       ENST00000397956 ENSE00003613299
4699  ENSG00000160226       ENST00000397956 ENSE00003567529
4700  ENSG00000160226       ENST00000397956 ENSE00003465964
4701  ENSG00000160226       ENST00000397956 ENSE00003623799
4702  ENSG00000160226       ENST00000397956 ENSE00001424924
4703  ENSG00000160226       ENST00000397956 ENSE00001376910
4704  ENSG00000160226       ENST00000397956 ENSE00003539176
4705  ENSG00000160226       ENST00000496321 ENSE00003689756
4706  ENSG00000160226       ENST00000496321 ENSE00001953648
4707  ENSG00000160226       ENST00000496321 ENSE00003630507
4708  ENSG00000160226       ENST00000496321 ENSE00001846530
4709  ENSG00000160226       ENST00000496321 ENSE00003571080
4710  ENSG00000160226       ENST00000496321 ENSE00001844561
4711  ENSG00000160226       ENST00000496321 ENSE00003520918
4712  ENSG00000160226       ENST00000496321 ENSE00003481879
4713  ENSG00000160226       ENST00000470196 ENSE00001874997
4714  ENSG00000160226       ENST00000470196 ENSE00003547241
4715  ENSG00000160226       ENST00000470196 ENSE00003689756
4716  ENSG00000160226       ENST00000478674 ENSE00001889989
4717  ENSG00000160226       ENST00000478674 ENSE00001946448
4718  ENSG00000160226       ENST00000325223 ENSE00001228467
4719  ENSG00000160226       ENST00000325223 ENSE00003613299
4720  ENSG00000160226       ENST00000325223 ENSE00003567529
4721  ENSG00000160226       ENST00000325223 ENSE00003465964
4722  ENSG00000160226       ENST00000325223 ENSE00003623799
4723  ENSG00000160226       ENST00000325223 ENSE00003539176
4724  ENSG00000160226       ENST00000325223 ENSE00003633104
4725  ENSG00000160226       ENST00000462742 ENSE00003689756
4726  ENSG00000160226       ENST00000462742 ENSE00003630507
4727  ENSG00000160226       ENST00000462742 ENSE00001927617
4728  ENSG00000160226       ENST00000462742 ENSE00001820612
4729  ENSG00000160226       ENST00000462742 ENSE00003485191
4730  ENSG00000160226       ENST00000462742 ENSE00001889941
4731  ENSG00000160226       ENST00000339818 ENSE00001228467
4732  ENSG00000160226       ENST00000339818 ENSE00003613299
4733  ENSG00000160226       ENST00000339818 ENSE00003567529
4734  ENSG00000160226       ENST00000339818 ENSE00003465964
4735  ENSG00000160226       ENST00000339818 ENSE00003623799
4736  ENSG00000160226       ENST00000339818 ENSE00003670111
4737  ENSG00000160226       ENST00000339818 ENSE00001136472
4738  ENSG00000160282       ENST00000483568 ENSE00003583249
4739  ENSG00000160282       ENST00000483568 ENSE00001945718
4740  ENSG00000160282       ENST00000483568 ENSE00003459852
4741  ENSG00000160282       ENST00000460011 ENSE00003583249
4742  ENSG00000160282       ENST00000460011 ENSE00003459852
4743  ENSG00000160282       ENST00000460011 ENSE00001822816
4744  ENSG00000160282       ENST00000460011 ENSE00003537411
4745  ENSG00000160282       ENST00000460011 ENSE00001954775
4746  ENSG00000160282       ENST00000498355 ENSE00003583249
4747  ENSG00000160282       ENST00000498355 ENSE00003459852
4748  ENSG00000160282       ENST00000498355 ENSE00003537411
4749  ENSG00000160282       ENST00000498355 ENSE00003496449
4750  ENSG00000160282       ENST00000498355 ENSE00003484320
4751  ENSG00000160282       ENST00000498355 ENSE00003684905
4752  ENSG00000160282       ENST00000498355 ENSE00001834425
4753  ENSG00000160282       ENST00000498355 ENSE00003583297
4754  ENSG00000160282       ENST00000498355 ENSE00003657756
4755  ENSG00000160282       ENST00000498355 ENSE00003471194
4756  ENSG00000160282       ENST00000498355 ENSE00003553506
4757  ENSG00000160282       ENST00000498355 ENSE00003548804
4758  ENSG00000160282       ENST00000498355 ENSE00003597812
4759  ENSG00000160282       ENST00000498355 ENSE00003668063
4760  ENSG00000160282       ENST00000498355 ENSE00001835896
4761  ENSG00000160282       ENST00000291670 ENSE00003459852
4762  ENSG00000160282       ENST00000291670 ENSE00003615828
4763  ENSG00000160282       ENST00000291670 ENSE00003597294
4764  ENSG00000160282       ENST00000291670 ENSE00003493394
4765  ENSG00000160282       ENST00000291670 ENSE00001051131
4766  ENSG00000160282       ENST00000291670 ENSE00003672954
4767  ENSG00000160282       ENST00000291670 ENSE00003595298
4768  ENSG00000160282       ENST00000291670 ENSE00003580136
4769  ENSG00000160282       ENST00000291670 ENSE00003613882
4770  ENSG00000160282       ENST00000291670 ENSE00003684003
4771  ENSG00000160282       ENST00000291670 ENSE00003506553
4772  ENSG00000160282       ENST00000291670 ENSE00003555273
4773  ENSG00000160282       ENST00000291670 ENSE00003606219
4774  ENSG00000160282       ENST00000291670 ENSE00003545440
4775  ENSG00000160282       ENST00000291670 ENSE00003712935
4776  ENSG00000160282       ENST00000397748 ENSE00003615828
4777  ENSG00000160282       ENST00000397748 ENSE00003597294
4778  ENSG00000160282       ENST00000397748 ENSE00003493394
4779  ENSG00000160282       ENST00000397748 ENSE00001051131
4780  ENSG00000160282       ENST00000397748 ENSE00003672954
4781  ENSG00000160282       ENST00000397748 ENSE00003595298
4782  ENSG00000160282       ENST00000397748 ENSE00003580136
4783  ENSG00000160282       ENST00000397748 ENSE00003613882
4784  ENSG00000160282       ENST00000397748 ENSE00003684003
4785  ENSG00000160282       ENST00000397748 ENSE00003506553
4786  ENSG00000160282       ENST00000397748 ENSE00003555273
4787  ENSG00000160282       ENST00000397748 ENSE00003606219
4788  ENSG00000160282       ENST00000397748 ENSE00003545440
4789  ENSG00000160282       ENST00000397748 ENSE00001385976
4790  ENSG00000160282       ENST00000397748 ENSE00003478862
4791  ENSG00000160282       ENST00000446405 ENSE00003545440
4792  ENSG00000160282       ENST00000446405 ENSE00001779518
4793  ENSG00000160282       ENST00000446405 ENSE00001734884
4794  ENSG00000160282       ENST00000397746 ENSE00003615828
4795  ENSG00000160282       ENST00000397746 ENSE00003597294
4796  ENSG00000160282       ENST00000397746 ENSE00003493394
4797  ENSG00000160282       ENST00000397746 ENSE00001051131
4798  ENSG00000160282       ENST00000397746 ENSE00003672954
4799  ENSG00000160282       ENST00000397746 ENSE00003595298
4800  ENSG00000160282       ENST00000397746 ENSE00003580136
4801  ENSG00000160282       ENST00000397746 ENSE00003613882
4802  ENSG00000160282       ENST00000397746 ENSE00003684003
4803  ENSG00000160282       ENST00000397746 ENSE00003506553
4804  ENSG00000160282       ENST00000397746 ENSE00003555273
4805  ENSG00000160282       ENST00000397746 ENSE00003606219
4806  ENSG00000160282       ENST00000397746 ENSE00003545440
4807  ENSG00000160282       ENST00000397746 ENSE00003681420
4808  ENSG00000160282       ENST00000397743 ENSE00003615828
4809  ENSG00000160282       ENST00000397743 ENSE00003597294
4810  ENSG00000160282       ENST00000397743 ENSE00003493394
4811  ENSG00000160282       ENST00000397743 ENSE00001051131
4812  ENSG00000160282       ENST00000397743 ENSE00003672954
4813  ENSG00000160282       ENST00000397743 ENSE00003595298
4814  ENSG00000160282       ENST00000397743 ENSE00003580136
4815  ENSG00000160282       ENST00000397743 ENSE00003613882
4816  ENSG00000160282       ENST00000397743 ENSE00003684003
4817  ENSG00000160282       ENST00000397743 ENSE00003506553
4818  ENSG00000160282       ENST00000397743 ENSE00003525931
4819  ENSG00000160282       ENST00000397743 ENSE00003578617
4820  ENSG00000160282       ENST00000397743 ENSE00003509476
4821  ENSG00000160282       ENST00000494498 ENSE00003583249
4822  ENSG00000160282       ENST00000494498 ENSE00003537411
4823  ENSG00000160282       ENST00000494498 ENSE00003668063
4824  ENSG00000160282       ENST00000494498 ENSE00001891398
4825  ENSG00000160282       ENST00000488577 ENSE00001919083
4826  ENSG00000160282       ENST00000488577 ENSE00001906631
4827  ENSG00000160282       ENST00000488577 ENSE00001954164
4828  ENSG00000160282       ENST00000480950 ENSE00003553506
4829  ENSG00000160282       ENST00000480950 ENSE00001958239
4830  ENSG00000160282       ENST00000480950 ENSE00001910597
4831  ENSG00000160282       ENST00000469240 ENSE00001935847
4832  ENSG00000160282       ENST00000469240 ENSE00001920442
4833  ENSG00000223431       ENST00000443620 ENSE00001696870
4834  ENSG00000223431       ENST00000443620 ENSE00001732080
4835  ENSG00000227999       ENST00000445440 ENSE00001616067
4836  ENSG00000225745       ENST00000430327 ENSE00002046002
4837  ENSG00000225745       ENST00000430327 ENSE00001802711
4838  ENSG00000225745       ENST00000430327 ENSE00002081182
4839  ENSG00000225745       ENST00000440221 ENSE00001802711
4840  ENSG00000225745       ENST00000440221 ENSE00002087631
4841  ENSG00000225745       ENST00000440221 ENSE00003463767
4842  ENSG00000225745       ENST00000440221 ENSE00001693577
4843  ENSG00000225745       ENST00000414699 ENSE00001752363
4844  ENSG00000225745       ENST00000414699 ENSE00001753386
4845  ENSG00000225745       ENST00000414699 ENSE00001690352
4846  ENSG00000236382       ENST00000412914 ENSE00001709572
4847  ENSG00000229086       ENST00000451980 ENSE00003800352
4848  ENSG00000229086       ENST00000451980 ENSE00003793721
4849  ENSG00000229086       ENST00000451980 ENSE00001626183
4850  ENSG00000229086       ENST00000451980 ENSE00001719305
4851  ENSG00000229086       ENST00000451980 ENSE00001745295
4852  ENSG00000229086       ENST00000637328 ENSE00001626183
4853  ENSG00000229086       ENST00000637328 ENSE00001719305
4854  ENSG00000229086       ENST00000637328 ENSE00001731986
4855  ENSG00000229086       ENST00000637328 ENSE00003796046
4856  ENSG00000275993       ENST00000613488 ENSE00003719700
4857  ENSG00000275993       ENST00000613488 ENSE00003721870
4858  ENSG00000275993       ENST00000613488 ENSE00003732806
4859  ENSG00000275993       ENST00000613488 ENSE00003751307
4860  ENSG00000275993       ENST00000613488 ENSE00003734764
4861  ENSG00000275993       ENST00000613488 ENSE00003715068
4862  ENSG00000275993       ENST00000613488 ENSE00003730883
4863  ENSG00000275993       ENST00000613488 ENSE00003738075
4864  ENSG00000275993       ENST00000613488 ENSE00003745922
4865  ENSG00000275993       ENST00000613488 ENSE00003714437
4866  ENSG00000275993       ENST00000613488 ENSE00003715905
4867  ENSG00000275993       ENST00000613488 ENSE00003752597
4868  ENSG00000275993       ENST00000613488 ENSE00003754375
4869  ENSG00000275993       ENST00000613488 ENSE00003742007
4870  ENSG00000275993       ENST00000624077 ENSE00003757113
4871  ENSG00000275993       ENST00000624077 ENSE00003756648
4872  ENSG00000275993       ENST00000624077 ENSE00003758830
4873  ENSG00000226043       ENST00000444130 ENSE00001742793
4874  ENSG00000226043       ENST00000444130 ENSE00001716227
4875  ENSG00000226043       ENST00000444130 ENSE00001672780
4876  ENSG00000184856       ENST00000419431 ENSE00001543427
4877  ENSG00000184856       ENST00000419431 ENSE00001643098
4878  ENSG00000184856       ENST00000419431 ENSE00001794212
4879  ENSG00000184856       ENST00000419431 ENSE00001798738
4880  ENSG00000184856       ENST00000419431 ENSE00001684289
4881  ENSG00000184856       ENST00000419431 ENSE00001612574
4882  ENSG00000231106       ENST00000457157 ENSE00001694810
4883  ENSG00000231106       ENST00000457157 ENSE00001621618
4884  ENSG00000239930       ENST00000416179 ENSE00001742222
4885  ENSG00000239930       ENST00000416179 ENSE00001740000
4886  ENSG00000239930       ENST00000416179 ENSE00001594678
4887  ENSG00000154645       ENST00000400128 ENSE00001541680
4888  ENSG00000154645       ENST00000400128 ENSE00001541679
4889  ENSG00000154645       ENST00000400128 ENSE00003555705
4890  ENSG00000154645       ENST00000400128 ENSE00001016990
4891  ENSG00000154645       ENST00000400128 ENSE00001016989
4892  ENSG00000154645       ENST00000400128 ENSE00001016988
4893  ENSG00000154645       ENST00000400128 ENSE00003543855
4894  ENSG00000154645       ENST00000400131 ENSE00003555705
4895  ENSG00000154645       ENST00000400131 ENSE00001016990
4896  ENSG00000154645       ENST00000400131 ENSE00001016989
4897  ENSG00000154645       ENST00000400131 ENSE00001541702
4898  ENSG00000154645       ENST00000400131 ENSE00003545796
4899  ENSG00000154645       ENST00000400135 ENSE00003555705
4900  ENSG00000154645       ENST00000400135 ENSE00001016990
4901  ENSG00000154645       ENST00000400135 ENSE00001016989
4902  ENSG00000154645       ENST00000400135 ENSE00001541702
4903  ENSG00000154645       ENST00000400135 ENSE00003545796
4904  ENSG00000154645       ENST00000400135 ENSE00001541701
4905  ENSG00000154645       ENST00000400127 ENSE00003555705
4906  ENSG00000154645       ENST00000400127 ENSE00001016990
4907  ENSG00000154645       ENST00000400127 ENSE00001016989
4908  ENSG00000154645       ENST00000400127 ENSE00001016988
4909  ENSG00000154645       ENST00000400127 ENSE00003543855
4910  ENSG00000154645       ENST00000400127 ENSE00001541702
4911  ENSG00000154645       ENST00000400127 ENSE00001541701
4912  ENSG00000154645       ENST00000299295 ENSE00001016990
4913  ENSG00000154645       ENST00000299295 ENSE00001016989
4914  ENSG00000154645       ENST00000299295 ENSE00001016988
4915  ENSG00000154645       ENST00000299295 ENSE00003543855
4916  ENSG00000154645       ENST00000299295 ENSE00003468151
4917  ENSG00000154645       ENST00000299295 ENSE00003659737
4918  ENSG00000154645       ENST00000543733 ENSE00001016990
4919  ENSG00000154645       ENST00000543733 ENSE00001016989
4920  ENSG00000154645       ENST00000543733 ENSE00001016988
4921  ENSG00000154645       ENST00000543733 ENSE00003659737
4922  ENSG00000154645       ENST00000543733 ENSE00002245925
4923  ENSG00000154645       ENST00000543733 ENSE00002217929
4924  ENSG00000154645       ENST00000338326 ENSE00001016990
4925  ENSG00000154645       ENST00000338326 ENSE00001016989
4926  ENSG00000154645       ENST00000338326 ENSE00003742672
4927  ENSG00000154645       ENST00000338326 ENSE00001633443
4928  ENSG00000227438       ENST00000454245 ENSE00001776573
4929  ENSG00000227438       ENST00000454245 ENSE00001661271
4930  ENSG00000280095       ENST00000623983 ENSE00003755041
4931  ENSG00000280095       ENST00000623983 ENSE00003758873
4932  ENSG00000228592       ENST00000262354 ENSE00001610852
4933  ENSG00000228592       ENST00000262354 ENSE00001599920
4934  ENSG00000228592       ENST00000262354 ENSE00001654047
4935  ENSG00000228592       ENST00000262354 ENSE00001687865
4936  ENSG00000228592       ENST00000262354 ENSE00001530006
4937  ENSG00000160190       ENST00000454800 ENSE00001677181
4938  ENSG00000160190       ENST00000454800 ENSE00001781553
4939  ENSG00000160190       ENST00000419522 ENSE00001532871
4940  ENSG00000160190       ENST00000419522 ENSE00001532813
4941  ENSG00000160190       ENST00000419522 ENSE00003614777
4942  ENSG00000160190       ENST00000398341 ENSE00001532813
4943  ENSG00000160190       ENST00000398341 ENSE00003614777
4944  ENSG00000160190       ENST00000398341 ENSE00001532814
4945  ENSG00000160190       ENST00000398341 ENSE00001050425
4946  ENSG00000160190       ENST00000398341 ENSE00001050414
4947  ENSG00000160190       ENST00000398341 ENSE00001050420
4948  ENSG00000160190       ENST00000398341 ENSE00001050423
4949  ENSG00000160190       ENST00000398341 ENSE00001050419
4950  ENSG00000160190       ENST00000398341 ENSE00001050430
4951  ENSG00000160190       ENST00000398341 ENSE00001050427
4952  ENSG00000160190       ENST00000398341 ENSE00001296458
4953  ENSG00000160190       ENST00000398341 ENSE00001050429
4954  ENSG00000160190       ENST00000398341 ENSE00002439789
4955  ENSG00000160190       ENST00000398341 ENSE00001050417
4956  ENSG00000160190       ENST00000398341 ENSE00001050431
4957  ENSG00000160190       ENST00000398341 ENSE00003531380
4958  ENSG00000160190       ENST00000398341 ENSE00003689795
4959  ENSG00000160190       ENST00000398341 ENSE00003509943
4960  ENSG00000160190       ENST00000398341 ENSE00003534969
4961  ENSG00000160190       ENST00000398341 ENSE00001050428
4962  ENSG00000160190       ENST00000398341 ENSE00001217629
4963  ENSG00000160190       ENST00000484887 ENSE00001532813
4964  ENSG00000160190       ENST00000484887 ENSE00001864255
4965  ENSG00000160190       ENST00000484887 ENSE00001915884
4966  ENSG00000160190       ENST00000471277 ENSE00001869930
4967  ENSG00000160190       ENST00000471277 ENSE00001927461
4968  ENSG00000160190       ENST00000471277 ENSE00003620799
4969  ENSG00000160190       ENST00000471277 ENSE00001896458
4970  ENSG00000160190       ENST00000352133 ENSE00003614777
4971  ENSG00000160190       ENST00000352133 ENSE00001050425
4972  ENSG00000160190       ENST00000352133 ENSE00001050414
4973  ENSG00000160190       ENST00000352133 ENSE00001050420
4974  ENSG00000160190       ENST00000352133 ENSE00001050423
4975  ENSG00000160190       ENST00000352133 ENSE00001050419
4976  ENSG00000160190       ENST00000352133 ENSE00001050430
4977  ENSG00000160190       ENST00000352133 ENSE00001050427
4978  ENSG00000160190       ENST00000352133 ENSE00001296458
4979  ENSG00000160190       ENST00000352133 ENSE00001050429
4980  ENSG00000160190       ENST00000352133 ENSE00002439789
4981  ENSG00000160190       ENST00000352133 ENSE00001050417
4982  ENSG00000160190       ENST00000352133 ENSE00001050431
4983  ENSG00000160190       ENST00000352133 ENSE00003531380
4984  ENSG00000160190       ENST00000352133 ENSE00003689795
4985  ENSG00000160190       ENST00000352133 ENSE00003509943
4986  ENSG00000160190       ENST00000352133 ENSE00003534969
4987  ENSG00000160190       ENST00000352133 ENSE00001050428
4988  ENSG00000160190       ENST00000352133 ENSE00001217629
4989  ENSG00000160190       ENST00000352133 ENSE00001138938
4990  ENSG00000160190       ENST00000398343 ENSE00003614777
4991  ENSG00000160190       ENST00000398343 ENSE00001654580
4992  ENSG00000160190       ENST00000398343 ENSE00001638547
4993  ENSG00000160190       ENST00000487951 ENSE00001906684
4994  ENSG00000160190       ENST00000487951 ENSE00001941605
4995  ENSG00000160190       ENST00000496416 ENSE00003484963
4996  ENSG00000160190       ENST00000496416 ENSE00003554080
4997  ENSG00000160190       ENST00000496416 ENSE00003461747
4998  ENSG00000160190       ENST00000496416 ENSE00003658486
4999  ENSG00000160190       ENST00000496416 ENSE00001923943
5000  ENSG00000205424       ENST00000380008 ENSE00001483375
5001  ENSG00000205424       ENST00000380008 ENSE00001483374
5002  ENSG00000205424       ENST00000380008 ENSE00001483372
5003  ENSG00000237373       ENST00000435608 ENSE00001651259
5004  ENSG00000237373       ENST00000435608 ENSE00001635289
5005  ENSG00000225502       ENST00000448152 ENSE00001722185
5006  ENSG00000235277       ENST00000430391 ENSE00001786136
5007  ENSG00000235277       ENST00000430391 ENSE00001726405
5008  ENSG00000235609       ENST00000432230 ENSE00003761756
5009  ENSG00000235609       ENST00000432230 ENSE00003768951
5010  ENSG00000235609       ENST00000432230 ENSE00001784162
5011  ENSG00000235609       ENST00000432230 ENSE00001699663
5012  ENSG00000281903       ENST00000630354 ENSE00003771565
5013  ENSG00000281903       ENST00000630354 ENSE00003773266
5014  ENSG00000281903       ENST00000593619 ENSE00003177498
5015  ENSG00000281903       ENST00000627623 ENSE00003763131
5016  ENSG00000281903       ENST00000627623 ENSE00003765785
5017  ENSG00000281903       ENST00000627623 ENSE00003764269
5018  ENSG00000281903       ENST00000630211 ENSE00003765785
5019  ENSG00000281903       ENST00000630211 ENSE00003768870
5020  ENSG00000281903       ENST00000630211 ENSE00003761914
5021  ENSG00000281903       ENST00000630211 ENSE00003764202
5022  ENSG00000281903       ENST00000630211 ENSE00003766821
5023  ENSG00000281903       ENST00000630211 ENSE00003760619
5024  ENSG00000281903       ENST00000625278 ENSE00003765785
5025  ENSG00000281903       ENST00000625278 ENSE00003766821
5026  ENSG00000281903       ENST00000625278 ENSE00003760619
5027  ENSG00000281903       ENST00000625278 ENSE00003770108
5028  ENSG00000281903       ENST00000412426 ENSE00003766821
5029  ENSG00000281903       ENST00000412426 ENSE00001686725
5030  ENSG00000281903       ENST00000412426 ENSE00001663376
5031  ENSG00000281903       ENST00000412426 ENSE00001746958
5032  ENSG00000281903       ENST00000418954 ENSE00003766821
5033  ENSG00000281903       ENST00000418954 ENSE00001700572
5034  ENSG00000281903       ENST00000418954 ENSE00001662129
5035  ENSG00000160179       ENST00000398457 ENSE00001533348
5036  ENSG00000160179       ENST00000398457 ENSE00003482497
5037  ENSG00000160179       ENST00000398457 ENSE00003506666
5038  ENSG00000160179       ENST00000398457 ENSE00003523195
5039  ENSG00000160179       ENST00000398457 ENSE00003543273
5040  ENSG00000160179       ENST00000398457 ENSE00003477889
5041  ENSG00000160179       ENST00000398457 ENSE00003547441
5042  ENSG00000160179       ENST00000398457 ENSE00003689634
5043  ENSG00000160179       ENST00000398457 ENSE00003505582
5044  ENSG00000160179       ENST00000398457 ENSE00003553101
5045  ENSG00000160179       ENST00000398457 ENSE00003544349
5046  ENSG00000160179       ENST00000398457 ENSE00003688085
5047  ENSG00000160179       ENST00000398457 ENSE00003670239
5048  ENSG00000160179       ENST00000398457 ENSE00003496464
5049  ENSG00000160179       ENST00000398457 ENSE00003674298
5050  ENSG00000160179       ENST00000398457 ENSE00003688526
5051  ENSG00000160179       ENST00000462050 ENSE00001917295
5052  ENSG00000160179       ENST00000462050 ENSE00003486574
5053  ENSG00000160179       ENST00000462050 ENSE00001848792
5054  ENSG00000160179       ENST00000462050 ENSE00003603253
5055  ENSG00000160179       ENST00000462050 ENSE00003610461
5056  ENSG00000160179       ENST00000462050 ENSE00003531861
5057  ENSG00000160179       ENST00000462050 ENSE00003611951
5058  ENSG00000160179       ENST00000462050 ENSE00003619236
5059  ENSG00000160179       ENST00000462050 ENSE00003502441
5060  ENSG00000160179       ENST00000462050 ENSE00003634060
5061  ENSG00000160179       ENST00000462050 ENSE00003472929
5062  ENSG00000160179       ENST00000462050 ENSE00003665058
5063  ENSG00000160179       ENST00000462050 ENSE00003640764
5064  ENSG00000160179       ENST00000462050 ENSE00003624267
5065  ENSG00000160179       ENST00000462050 ENSE00003531087
5066  ENSG00000160179       ENST00000462050 ENSE00003605681
5067  ENSG00000160179       ENST00000462050 ENSE00003499091
5068  ENSG00000160179       ENST00000347800 ENSE00003506666
5069  ENSG00000160179       ENST00000347800 ENSE00003523195
5070  ENSG00000160179       ENST00000347800 ENSE00003543273
5071  ENSG00000160179       ENST00000347800 ENSE00003477889
5072  ENSG00000160179       ENST00000347800 ENSE00003547441
5073  ENSG00000160179       ENST00000347800 ENSE00003689634
5074  ENSG00000160179       ENST00000347800 ENSE00003505582
5075  ENSG00000160179       ENST00000347800 ENSE00003553101
5076  ENSG00000160179       ENST00000347800 ENSE00003544349
5077  ENSG00000160179       ENST00000347800 ENSE00003688085
5078  ENSG00000160179       ENST00000347800 ENSE00003670239
5079  ENSG00000160179       ENST00000347800 ENSE00003496464
5080  ENSG00000160179       ENST00000347800 ENSE00003674298
5081  ENSG00000160179       ENST00000347800 ENSE00003688526
5082  ENSG00000160179       ENST00000347800 ENSE00001887087
5083  ENSG00000160179       ENST00000450121 ENSE00003506666
5084  ENSG00000160179       ENST00000450121 ENSE00003523195
5085  ENSG00000160179       ENST00000450121 ENSE00003543273
5086  ENSG00000160179       ENST00000450121 ENSE00003547441
5087  ENSG00000160179       ENST00000450121 ENSE00001533208
5088  ENSG00000160179       ENST00000450121 ENSE00001704849
5089  ENSG00000160179       ENST00000398449 ENSE00003506666
5090  ENSG00000160179       ENST00000398449 ENSE00003523195
5091  ENSG00000160179       ENST00000398449 ENSE00003543273
5092  ENSG00000160179       ENST00000398449 ENSE00003477889
5093  ENSG00000160179       ENST00000398449 ENSE00003547441
5094  ENSG00000160179       ENST00000398449 ENSE00003689634
5095  ENSG00000160179       ENST00000398449 ENSE00003505582
5096  ENSG00000160179       ENST00000398449 ENSE00003553101
5097  ENSG00000160179       ENST00000398449 ENSE00003544349
5098  ENSG00000160179       ENST00000398449 ENSE00003688085
5099  ENSG00000160179       ENST00000398449 ENSE00003670239
5100  ENSG00000160179       ENST00000398449 ENSE00003496464
5101  ENSG00000160179       ENST00000398449 ENSE00003674298
5102  ENSG00000160179       ENST00000398449 ENSE00003688526
5103  ENSG00000160179       ENST00000398449 ENSE00001179278
5104  ENSG00000160179       ENST00000361802 ENSE00003506666
5105  ENSG00000160179       ENST00000361802 ENSE00003523195
5106  ENSG00000160179       ENST00000361802 ENSE00003543273
5107  ENSG00000160179       ENST00000361802 ENSE00003477889
5108  ENSG00000160179       ENST00000361802 ENSE00003547441
5109  ENSG00000160179       ENST00000361802 ENSE00003689634
5110  ENSG00000160179       ENST00000361802 ENSE00003505582
5111  ENSG00000160179       ENST00000361802 ENSE00003544349
5112  ENSG00000160179       ENST00000361802 ENSE00003688085
5113  ENSG00000160179       ENST00000361802 ENSE00003670239
5114  ENSG00000160179       ENST00000361802 ENSE00003496464
5115  ENSG00000160179       ENST00000361802 ENSE00003674298
5116  ENSG00000160179       ENST00000361802 ENSE00003688526
5117  ENSG00000160179       ENST00000361802 ENSE00001179278
5118  ENSG00000160179       ENST00000361802 ENSE00003586318
5119  ENSG00000160179       ENST00000343687 ENSE00003506666
5120  ENSG00000160179       ENST00000343687 ENSE00003523195
5121  ENSG00000160179       ENST00000343687 ENSE00003543273
5122  ENSG00000160179       ENST00000343687 ENSE00003477889
5123  ENSG00000160179       ENST00000343687 ENSE00003547441
5124  ENSG00000160179       ENST00000343687 ENSE00003689634
5125  ENSG00000160179       ENST00000343687 ENSE00003505582
5126  ENSG00000160179       ENST00000343687 ENSE00003553101
5127  ENSG00000160179       ENST00000343687 ENSE00003544349
5128  ENSG00000160179       ENST00000343687 ENSE00003688085
5129  ENSG00000160179       ENST00000343687 ENSE00003670239
5130  ENSG00000160179       ENST00000343687 ENSE00003496464
5131  ENSG00000160179       ENST00000343687 ENSE00003674298
5132  ENSG00000160179       ENST00000343687 ENSE00003688526
5133  ENSG00000160179       ENST00000343687 ENSE00001384388
5134  ENSG00000160179       ENST00000398437 ENSE00003523195
5135  ENSG00000160179       ENST00000398437 ENSE00003543273
5136  ENSG00000160179       ENST00000398437 ENSE00003477889
5137  ENSG00000160179       ENST00000398437 ENSE00003547441
5138  ENSG00000160179       ENST00000398437 ENSE00003689634
5139  ENSG00000160179       ENST00000398437 ENSE00003505582
5140  ENSG00000160179       ENST00000398437 ENSE00003544349
5141  ENSG00000160179       ENST00000398437 ENSE00003688085
5142  ENSG00000160179       ENST00000398437 ENSE00003670239
5143  ENSG00000160179       ENST00000398437 ENSE00003496464
5144  ENSG00000160179       ENST00000398437 ENSE00003674298
5145  ENSG00000160179       ENST00000398437 ENSE00003688526
5146  ENSG00000160179       ENST00000398437 ENSE00003586318
5147  ENSG00000160179       ENST00000398437 ENSE00001109772
5148  ENSG00000160179       ENST00000398437 ENSE00001533178
5149  ENSG00000160179       ENST00000398437 ENSE00001109773
5150  ENSG00000160179       ENST00000472587 ENSE00003619236
5151  ENSG00000160179       ENST00000472587 ENSE00003502441
5152  ENSG00000160179       ENST00000472587 ENSE00003634060
5153  ENSG00000160179       ENST00000472587 ENSE00003665058
5154  ENSG00000160179       ENST00000472587 ENSE00003640764
5155  ENSG00000160179       ENST00000472587 ENSE00003624267
5156  ENSG00000160179       ENST00000472587 ENSE00003531087
5157  ENSG00000160179       ENST00000472587 ENSE00003605681
5158  ENSG00000160179       ENST00000472587 ENSE00003499091
5159  ENSG00000160179       ENST00000472587 ENSE00001866954
5160  ENSG00000160179       ENST00000472587 ENSE00003525583
5161  ENSG00000160179       ENST00000467818 ENSE00003619236
5162  ENSG00000160179       ENST00000467818 ENSE00003502441
5163  ENSG00000160179       ENST00000467818 ENSE00001887535
5164  ENSG00000160179       ENST00000467818 ENSE00001837452
5165  ENSG00000160179       ENST00000496783 ENSE00003640764
5166  ENSG00000160179       ENST00000496783 ENSE00003624267
5167  ENSG00000160179       ENST00000496783 ENSE00003531087
5168  ENSG00000160179       ENST00000496783 ENSE00001827552
5169  ENSG00000160179       ENST00000496783 ENSE00001956350
5170  ENSG00000160179       ENST00000496783 ENSE00001884617
5171  ENSG00000180530       ENST00000400199 ENSE00001541961
5172  ENSG00000180530       ENST00000400199 ENSE00001541960
5173  ENSG00000180530       ENST00000400199 ENSE00003773881
5174  ENSG00000180530       ENST00000400202 ENSE00003773881
5175  ENSG00000180530       ENST00000400202 ENSE00001541970
5176  ENSG00000180530       ENST00000400202 ENSE00001541969
5177  ENSG00000180530       ENST00000411932 ENSE00001707724
5178  ENSG00000180530       ENST00000411932 ENSE00001640139
5179  ENSG00000180530       ENST00000638122 ENSE00001541960
5180  ENSG00000180530       ENST00000638122 ENSE00003793238
5181  ENSG00000180530       ENST00000638122 ENSE00003800760
5182  ENSG00000180530       ENST00000637963 ENSE00001541960
5183  ENSG00000180530       ENST00000637963 ENSE00003799215
5184  ENSG00000180530       ENST00000637963 ENSE00003797209
5185  ENSG00000180530       ENST00000637630 ENSE00001541960
5186  ENSG00000180530       ENST00000637630 ENSE00001541969
5187  ENSG00000180530       ENST00000637630 ENSE00003800934
5188  ENSG00000180530       ENST00000637630 ENSE00003799518
5189  ENSG00000180530       ENST00000637630 ENSE00003798618
5190  ENSG00000180530       ENST00000318948 ENSE00001541960
5191  ENSG00000180530       ENST00000318948 ENSE00003773881
5192  ENSG00000180530       ENST00000318948 ENSE00001541969
5193  ENSG00000180530       ENST00000318948 ENSE00001561503
5194  ENSG00000226406       ENST00000454795 ENSE00001764397
5195  ENSG00000173638       ENST00000417954 ENSE00001638523
5196  ENSG00000173638       ENST00000417954 ENSE00001210607
5197  ENSG00000173638       ENST00000417954 ENSE00002299646
5198  ENSG00000173638       ENST00000417954 ENSE00001483422
5199  ENSG00000173638       ENST00000417954 ENSE00001795265
5200  ENSG00000173638       ENST00000567670 ENSE00001210607
5201  ENSG00000173638       ENST00000567670 ENSE00002299646
5202  ENSG00000173638       ENST00000567670 ENSE00002608273
5203  ENSG00000173638       ENST00000567670 ENSE00002734562
5204  ENSG00000173638       ENST00000567670 ENSE00002448210
5205  ENSG00000173638       ENST00000567670 ENSE00002618089
5206  ENSG00000173638       ENST00000461785 ENSE00001940589
5207  ENSG00000173638       ENST00000461785 ENSE00001958145
5208  ENSG00000173638       ENST00000468508 ENSE00001904088
5209  ENSG00000173638       ENST00000468508 ENSE00001888727
5210  ENSG00000173638       ENST00000460174 ENSE00001946834
5211  ENSG00000173638       ENST00000460174 ENSE00001711757
5212  ENSG00000173638       ENST00000460174 ENSE00001925563
5213  ENSG00000173638       ENST00000460174 ENSE00001881847
5214  ENSG00000173638       ENST00000311124 ENSE00001210607
5215  ENSG00000173638       ENST00000311124 ENSE00002299646
5216  ENSG00000173638       ENST00000311124 ENSE00002734562
5217  ENSG00000173638       ENST00000311124 ENSE00002448210
5218  ENSG00000173638       ENST00000311124 ENSE00001857378
5219  ENSG00000173638       ENST00000311124 ENSE00001210645
5220  ENSG00000173638       ENST00000380010 ENSE00001210607
5221  ENSG00000173638       ENST00000380010 ENSE00002299646
5222  ENSG00000173638       ENST00000380010 ENSE00002734562
5223  ENSG00000173638       ENST00000380010 ENSE00002448210
5224  ENSG00000173638       ENST00000380010 ENSE00001857378
5225  ENSG00000173638       ENST00000380010 ENSE00001880694
5226  ENSG00000173638       ENST00000485649 ENSE00001210607
5227  ENSG00000173638       ENST00000485649 ENSE00002299646
5228  ENSG00000173638       ENST00000485649 ENSE00002448210
5229  ENSG00000173638       ENST00000485649 ENSE00001949385
5230  ENSG00000173638       ENST00000485649 ENSE00002315751
5231  ENSG00000173638       ENST00000427839 ENSE00002734562
5232  ENSG00000173638       ENST00000427839 ENSE00001769708
5233  ENSG00000173638       ENST00000427839 ENSE00001789884
5234  ENSG00000173638       ENST00000443742 ENSE00002734562
5235  ENSG00000173638       ENST00000443742 ENSE00001609753
5236  ENSG00000173638       ENST00000443742 ENSE00001644617
5237  ENSG00000173638       ENST00000486303 ENSE00001872362
5238  ENSG00000173638       ENST00000486303 ENSE00001869151
5239  ENSG00000173638       ENST00000528477 ENSE00002140206
5240  ENSG00000173638       ENST00000528477 ENSE00002166597
5241  ENSG00000173638       ENST00000528477 ENSE00002184510
5242  ENSG00000229047       ENST00000446301 ENSE00001721303
5243  ENSG00000229047       ENST00000446301 ENSE00001679975
5244  ENSG00000279390       ENST00000623352 ENSE00003758400
5245  ENSG00000231201       ENST00000436429 ENSE00001771426
5246  ENSG00000231201       ENST00000436429 ENSE00001693515
5247  ENSG00000231201       ENST00000436429 ENSE00001607020
5248  ENSG00000183535       ENST00000397787 ENSE00001530162
5249  ENSG00000183535       ENST00000397787 ENSE00002084477
5250  ENSG00000183535       ENST00000397787 ENSE00001530161
5251  ENSG00000183535       ENST00000485206 ENSE00002084477
5252  ENSG00000183535       ENST00000485206 ENSE00001530161
5253  ENSG00000183535       ENST00000485206 ENSE00001327867
5254  ENSG00000235808       ENST00000450079 ENSE00001600829
5255  ENSG00000160298       ENST00000491666 ENSE00001670598
5256  ENSG00000160298       ENST00000491666 ENSE00003530408
5257  ENSG00000160298       ENST00000491666 ENSE00003567971
5258  ENSG00000160298       ENST00000491666 ENSE00001051246
5259  ENSG00000160298       ENST00000491666 ENSE00002244793
5260  ENSG00000160298       ENST00000491666 ENSE00003583756
5261  ENSG00000160298       ENST00000491666 ENSE00001836049
5262  ENSG00000160298       ENST00000491666 ENSE00001845892
5263  ENSG00000160298       ENST00000397683 ENSE00002244793
5264  ENSG00000160298       ENST00000397683 ENSE00003583756
5265  ENSG00000160298       ENST00000397683 ENSE00001529697
5266  ENSG00000160298       ENST00000397683 ENSE00003486245
5267  ENSG00000160298       ENST00000397683 ENSE00001529695
5268  ENSG00000160298       ENST00000397683 ENSE00003550419
5269  ENSG00000160298       ENST00000397683 ENSE00002319841
5270  ENSG00000160298       ENST00000397683 ENSE00001529703
5271  ENSG00000160298       ENST00000397683 ENSE00001529687
5272  ENSG00000160298       ENST00000417060 ENSE00001670598
5273  ENSG00000160298       ENST00000417060 ENSE00003530408
5274  ENSG00000160298       ENST00000417060 ENSE00003567971
5275  ENSG00000160298       ENST00000417060 ENSE00001051246
5276  ENSG00000160298       ENST00000417060 ENSE00002244793
5277  ENSG00000160298       ENST00000417060 ENSE00003583756
5278  ENSG00000160298       ENST00000417060 ENSE00001529703
5279  ENSG00000160298       ENST00000417060 ENSE00001777824
5280  ENSG00000160298       ENST00000397682 ENSE00002244793
5281  ENSG00000160298       ENST00000397682 ENSE00003583756
5282  ENSG00000160298       ENST00000397682 ENSE00003486245
5283  ENSG00000160298       ENST00000397682 ENSE00001529695
5284  ENSG00000160298       ENST00000397682 ENSE00003550419
5285  ENSG00000160298       ENST00000397682 ENSE00002319841
5286  ENSG00000160298       ENST00000397682 ENSE00001529703
5287  ENSG00000160298       ENST00000397682 ENSE00003555584
5288  ENSG00000160298       ENST00000397682 ENSE00001529701
5289  ENSG00000160298       ENST00000291691 ENSE00003530408
5290  ENSG00000160298       ENST00000291691 ENSE00003567971
5291  ENSG00000160298       ENST00000291691 ENSE00001051246
5292  ENSG00000160298       ENST00000291691 ENSE00002244793
5293  ENSG00000160298       ENST00000291691 ENSE00003583756
5294  ENSG00000160298       ENST00000291691 ENSE00003603708
5295  ENSG00000160298       ENST00000291691 ENSE00003625644
5296  ENSG00000160298       ENST00000291691 ENSE00001529699
5297  ENSG00000160298       ENST00000397679 ENSE00002244793
5298  ENSG00000160298       ENST00000397679 ENSE00003583756
5299  ENSG00000160298       ENST00000397679 ENSE00001529695
5300  ENSG00000160298       ENST00000397679 ENSE00003550419
5301  ENSG00000160298       ENST00000397679 ENSE00002319841
5302  ENSG00000160298       ENST00000397679 ENSE00001529675
5303  ENSG00000160298       ENST00000397679 ENSE00001271873
5304  ENSG00000160298       ENST00000397680 ENSE00002244793
5305  ENSG00000160298       ENST00000397680 ENSE00003583756
5306  ENSG00000160298       ENST00000397680 ENSE00003486245
5307  ENSG00000160298       ENST00000397680 ENSE00003550419
5308  ENSG00000160298       ENST00000397680 ENSE00002319841
5309  ENSG00000160298       ENST00000397680 ENSE00001271873
5310  ENSG00000160298       ENST00000397680 ENSE00001529681
5311  ENSG00000160298       ENST00000397680 ENSE00003621434
5312  ENSG00000160298       ENST00000472607 ENSE00001865923
5313  ENSG00000160298       ENST00000472607 ENSE00003471562
5314  ENSG00000160298       ENST00000472607 ENSE00001848575
5315  ENSG00000160298       ENST00000445935 ENSE00003486245
5316  ENSG00000160298       ENST00000445935 ENSE00003550419
5317  ENSG00000160298       ENST00000445935 ENSE00003621434
5318  ENSG00000160298       ENST00000445935 ENSE00001749376
5319  ENSG00000160298       ENST00000445935 ENSE00001654746
5320  ENSG00000160298       ENST00000445935 ENSE00003614855
5321  ENSG00000160298       ENST00000475776 ENSE00003486245
5322  ENSG00000160298       ENST00000475776 ENSE00003621434
5323  ENSG00000160298       ENST00000475776 ENSE00001749376
5324  ENSG00000160298       ENST00000475776 ENSE00001918011
5325  ENSG00000183486       ENST00000330714 ENSE00001890231
5326  ENSG00000183486       ENST00000330714 ENSE00001290756
5327  ENSG00000183486       ENST00000330714 ENSE00002502168
5328  ENSG00000183486       ENST00000330714 ENSE00001306785
5329  ENSG00000183486       ENST00000330714 ENSE00001328894
5330  ENSG00000183486       ENST00000330714 ENSE00002506138
5331  ENSG00000183486       ENST00000330714 ENSE00003670439
5332  ENSG00000183486       ENST00000330714 ENSE00003625443
5333  ENSG00000183486       ENST00000330714 ENSE00003659722
5334  ENSG00000183486       ENST00000330714 ENSE00003461072
5335  ENSG00000183486       ENST00000330714 ENSE00003486071
5336  ENSG00000183486       ENST00000330714 ENSE00003483351
5337  ENSG00000183486       ENST00000330714 ENSE00003494762
5338  ENSG00000183486       ENST00000330714 ENSE00003548437
5339  ENSG00000183486       ENST00000436410 ENSE00001290756
5340  ENSG00000183486       ENST00000436410 ENSE00001800362
5341  ENSG00000183486       ENST00000436410 ENSE00001662455
5342  ENSG00000183486       ENST00000436410 ENSE00001665952
5343  ENSG00000183486       ENST00000435611 ENSE00001290756
5344  ENSG00000183486       ENST00000435611 ENSE00001649361
5345  ENSG00000183486       ENST00000435611 ENSE00001761564
5346  ENSG00000183486       ENST00000435611 ENSE00002461157
5347  ENSG00000183486       ENST00000494252 ENSE00001813213
5348  ENSG00000183486       ENST00000494252 ENSE00001841427
5349  ENSG00000183486       ENST00000494252 ENSE00001852057
5350  ENSG00000183486       ENST00000495892 ENSE00002208472
5351  ENSG00000183486       ENST00000495892 ENSE00002202195
5352  ENSG00000183486       ENST00000416447 ENSE00001662455
5353  ENSG00000183486       ENST00000416447 ENSE00001673002
5354  ENSG00000183486       ENST00000416447 ENSE00001789052
5355  ENSG00000183486       ENST00000416447 ENSE00001752940
5356  ENSG00000183486       ENST00000418103 ENSE00001290756
5357  ENSG00000183486       ENST00000418103 ENSE00001726214
5358  ENSG00000183486       ENST00000418103 ENSE00001653112
5359  ENSG00000183486       ENST00000482953 ENSE00001888638
5360  ENSG00000183486       ENST00000482953 ENSE00003562160
5361  ENSG00000183486       ENST00000482953 ENSE00003581209
5362  ENSG00000183486       ENST00000482953 ENSE00003648119
5363  ENSG00000183486       ENST00000482953 ENSE00003513419
5364  ENSG00000183486       ENST00000482953 ENSE00003610392
5365  ENSG00000183486       ENST00000482953 ENSE00003527405
5366  ENSG00000183486       ENST00000482953 ENSE00003626175
5367  ENSG00000183486       ENST00000482953 ENSE00001923768
5368  ENSG00000183486       ENST00000496774 ENSE00003562160
5369  ENSG00000183486       ENST00000496774 ENSE00003581209
5370  ENSG00000183486       ENST00000496774 ENSE00003648119
5371  ENSG00000183486       ENST00000496774 ENSE00003513419
5372  ENSG00000183486       ENST00000496774 ENSE00001899985
5373  ENSG00000183486       ENST00000496774 ENSE00001887418
5374  ENSG00000183486       ENST00000493753 ENSE00003648119
5375  ENSG00000183486       ENST00000493753 ENSE00001944277
5376  ENSG00000183486       ENST00000493753 ENSE00001954134
5377  ENSG00000183486       ENST00000481838 ENSE00003610392
5378  ENSG00000183486       ENST00000481838 ENSE00003527405
5379  ENSG00000183486       ENST00000481838 ENSE00003626175
5380  ENSG00000183486       ENST00000481838 ENSE00001925533
5381  ENSG00000183486       ENST00000481838 ENSE00001902958
5382  ENSG00000183486       ENST00000474368 ENSE00001873282
5383  ENSG00000183486       ENST00000474368 ENSE00001848097
5384  ENSG00000183486       ENST00000398632 ENSE00003626175
5385  ENSG00000183486       ENST00000398632 ENSE00001645471
5386  ENSG00000183486       ENST00000398632 ENSE00003638781
5387  ENSG00000183036       ENST00000328619 ENSE00001938571
5388  ENSG00000183036       ENST00000328619 ENSE00003668461
5389  ENSG00000183036       ENST00000328619 ENSE00003509580
5390  ENSG00000183036       ENST00000462224 ENSE00003668461
5391  ENSG00000183036       ENST00000462224 ENSE00001297485
5392  ENSG00000183036       ENST00000462224 ENSE00001922702
5393  ENSG00000183036       ENST00000462224 ENSE00003577223
5394  ENSG00000183036       ENST00000468717 ENSE00003577223
5395  ENSG00000183036       ENST00000468717 ENSE00001909917
5396  ENSG00000183036       ENST00000468717 ENSE00001880963
5397  ENSG00000183036       ENST00000468717 ENSE00003620024
5398  ENSG00000183036       ENST00000467565 ENSE00003577223
5399  ENSG00000183036       ENST00000467565 ENSE00003620024
5400  ENSG00000183036       ENST00000467565 ENSE00001811785
5401  ENSG00000235012       ENST00000411867 ENSE00001734064
5402  ENSG00000235012       ENST00000411867 ENSE00001760174
5403  ENSG00000237945       ENST00000596365 ENSE00003124073
5404  ENSG00000237945       ENST00000596365 ENSE00001670666
5405  ENSG00000237945       ENST00000596365 ENSE00003172124
5406  ENSG00000237945       ENST00000597626 ENSE00001670666
5407  ENSG00000237945       ENST00000597626 ENSE00003178299
5408  ENSG00000237945       ENST00000597626 ENSE00002980010
5409  ENSG00000237945       ENST00000597626 ENSE00003135021
5410  ENSG00000237945       ENST00000597626 ENSE00003187413
5411  ENSG00000237945       ENST00000597626 ENSE00003216082
5412  ENSG00000237945       ENST00000616030 ENSE00003741815
5413  ENSG00000237945       ENST00000616030 ENSE00003728433
5414  ENSG00000237945       ENST00000616030 ENSE00003139331
5415  ENSG00000237945       ENST00000610236 ENSE00003708695
5416  ENSG00000237945       ENST00000610236 ENSE00003710879
5417  ENSG00000237945       ENST00000601471 ENSE00003115913
5418  ENSG00000237945       ENST00000601471 ENSE00003133909
5419  ENSG00000237945       ENST00000601471 ENSE00003056389
5420  ENSG00000237945       ENST00000427447 ENSE00001670666
5421  ENSG00000237945       ENST00000427447 ENSE00001741388
5422  ENSG00000237945       ENST00000427447 ENSE00001615684
5423  ENSG00000237945       ENST00000599421 ENSE00003134385
5424  ENSG00000237945       ENST00000599421 ENSE00003181378
5425  ENSG00000237945       ENST00000400353 ENSE00001670666
5426  ENSG00000237945       ENST00000400353 ENSE00001663992
5427  ENSG00000237945       ENST00000400353 ENSE00001796945
5428  ENSG00000237945       ENST00000622171 ENSE00002460708
5429  ENSG00000237945       ENST00000622171 ENSE00003744821
5430  ENSG00000237945       ENST00000628906 ENSE00001670666
5431  ENSG00000237945       ENST00000628906 ENSE00003765910
5432  ENSG00000237945       ENST00000628906 ENSE00003764620
5433  ENSG00000237945       ENST00000594752 ENSE00001670666
5434  ENSG00000237945       ENST00000594752 ENSE00003139331
5435  ENSG00000237945       ENST00000594752 ENSE00003111737
5436  ENSG00000237945       ENST00000594370 ENSE00001670666
5437  ENSG00000237945       ENST00000594370 ENSE00003139331
5438  ENSG00000237945       ENST00000594370 ENSE00003215400
5439  ENSG00000237945       ENST00000595747 ENSE00001670666
5440  ENSG00000237945       ENST00000595747 ENSE00003139331
5441  ENSG00000237945       ENST00000595747 ENSE00003005088
5442  ENSG00000237945       ENST00000608431 ENSE00001670666
5443  ENSG00000237945       ENST00000608431 ENSE00003702638
5444  ENSG00000237945       ENST00000593977 ENSE00003030697
5445  ENSG00000237945       ENST00000593977 ENSE00003191751
5446  ENSG00000237945       ENST00000593977 ENSE00002989601
5447  ENSG00000237945       ENST00000600155 ENSE00003043329
5448  ENSG00000237945       ENST00000600155 ENSE00003170413
5449  ENSG00000237945       ENST00000600155 ENSE00003149762
5450  ENSG00000237945       ENST00000381181 ENSE00001487744
5451  ENSG00000237945       ENST00000381181 ENSE00001487739
5452  ENSG00000237945       ENST00000620580 ENSE00003745774
5453  ENSG00000237945       ENST00000620580 ENSE00003753917
5454  ENSG00000237945       ENST00000613667 ENSE00003729314
5455  ENSG00000237945       ENST00000613667 ENSE00003754258
5456  ENSG00000237945       ENST00000609132 ENSE00003706565
5457  ENSG00000237945       ENST00000609132 ENSE00003704960
5458  ENSG00000237945       ENST00000609132 ENSE00003708550
5459  ENSG00000233956       ENST00000448054 ENSE00001644099
5460  ENSG00000183778       ENST00000380620 ENSE00001485659
5461  ENSG00000183778       ENST00000380620 ENSE00001485658
5462  ENSG00000183778       ENST00000380620 ENSE00001485657
5463  ENSG00000183778       ENST00000380620 ENSE00001485655
5464  ENSG00000183778       ENST00000380620 ENSE00003704093
5465  ENSG00000183778       ENST00000475838 ENSE00001943002
5466  ENSG00000183778       ENST00000475838 ENSE00001813619
5467  ENSG00000183778       ENST00000380618 ENSE00001485655
5468  ENSG00000183778       ENST00000380618 ENSE00001485640
5469  ENSG00000183778       ENST00000380618 ENSE00001485653
5470  ENSG00000183778       ENST00000398714 ENSE00003714074
5471  ENSG00000183778       ENST00000398714 ENSE00003754588
5472  ENSG00000183778       ENST00000615480 ENSE00001485655
5473  ENSG00000183778       ENST00000615480 ENSE00003719844
5474  ENSG00000183778       ENST00000615480 ENSE00003729165
5475  ENSG00000183778       ENST00000343118 ENSE00001485655
5476  ENSG00000183778       ENST00000343118 ENSE00003729165
5477  ENSG00000183778       ENST00000343118 ENSE00001534522
5478  ENSG00000159140       ENST00000356577 ENSE00001948678
5479  ENSG00000159140       ENST00000356577 ENSE00003672267
5480  ENSG00000159140       ENST00000356577 ENSE00001314216
5481  ENSG00000159140       ENST00000356577 ENSE00001043468
5482  ENSG00000159140       ENST00000356577 ENSE00001043475
5483  ENSG00000159140       ENST00000356577 ENSE00001178085
5484  ENSG00000159140       ENST00000356577 ENSE00001372796
5485  ENSG00000159140       ENST00000356577 ENSE00001379673
5486  ENSG00000159140       ENST00000356577 ENSE00003496844
5487  ENSG00000159140       ENST00000356577 ENSE00003612832
5488  ENSG00000159140       ENST00000356577 ENSE00003486708
5489  ENSG00000159140       ENST00000356577 ENSE00001938879
5490  ENSG00000159140       ENST00000475072 ENSE00003533300
5491  ENSG00000159140       ENST00000475072 ENSE00001954525
5492  ENSG00000159140       ENST00000381692 ENSE00003672267
5493  ENSG00000159140       ENST00000381692 ENSE00001043468
5494  ENSG00000159140       ENST00000381692 ENSE00001043475
5495  ENSG00000159140       ENST00000381692 ENSE00001178085
5496  ENSG00000159140       ENST00000381692 ENSE00001372796
5497  ENSG00000159140       ENST00000381692 ENSE00001379673
5498  ENSG00000159140       ENST00000381692 ENSE00003496844
5499  ENSG00000159140       ENST00000381692 ENSE00003612832
5500  ENSG00000159140       ENST00000381692 ENSE00003486708
5501  ENSG00000159140       ENST00000381692 ENSE00001938879
5502  ENSG00000159140       ENST00000381692 ENSE00003472004
5503  ENSG00000159140       ENST00000300278 ENSE00003672267
5504  ENSG00000159140       ENST00000300278 ENSE00001314216
5505  ENSG00000159140       ENST00000300278 ENSE00001043468
5506  ENSG00000159140       ENST00000300278 ENSE00001043475
5507  ENSG00000159140       ENST00000300278 ENSE00001178085
5508  ENSG00000159140       ENST00000300278 ENSE00001489445
5509  ENSG00000159140       ENST00000300278 ENSE00001223547
5510  ENSG00000159140       ENST00000455528 ENSE00003672267
5511  ENSG00000159140       ENST00000455528 ENSE00001314216
5512  ENSG00000159140       ENST00000455528 ENSE00001043468
5513  ENSG00000159140       ENST00000455528 ENSE00001043475
5514  ENSG00000159140       ENST00000455528 ENSE00001178085
5515  ENSG00000159140       ENST00000455528 ENSE00001372796
5516  ENSG00000159140       ENST00000455528 ENSE00001379673
5517  ENSG00000159140       ENST00000455528 ENSE00003613245
5518  ENSG00000159140       ENST00000455528 ENSE00003680040
5519  ENSG00000159140       ENST00000455528 ENSE00001489445
5520  ENSG00000159140       ENST00000455528 ENSE00003502064
5521  ENSG00000159140       ENST00000455528 ENSE00003473700
5522  ENSG00000159140       ENST00000455528 ENSE00003522025
5523  ENSG00000159140       ENST00000381679 ENSE00003672267
5524  ENSG00000159140       ENST00000381679 ENSE00001314216
5525  ENSG00000159140       ENST00000381679 ENSE00001043468
5526  ENSG00000159140       ENST00000381679 ENSE00001810356
5527  ENSG00000159140       ENST00000381679 ENSE00001800502
5528  ENSG00000159140       ENST00000492229 ENSE00003652074
5529  ENSG00000159140       ENST00000492229 ENSE00001834572
5530  ENSG00000159140       ENST00000492229 ENSE00001956474
5531  ENSG00000159140       ENST00000436227 ENSE00001043468
5532  ENSG00000159140       ENST00000436227 ENSE00001043475
5533  ENSG00000159140       ENST00000436227 ENSE00001178085
5534  ENSG00000159140       ENST00000436227 ENSE00001372796
5535  ENSG00000159140       ENST00000436227 ENSE00001379673
5536  ENSG00000159140       ENST00000436227 ENSE00003496844
5537  ENSG00000159140       ENST00000436227 ENSE00003612832
5538  ENSG00000159140       ENST00000436227 ENSE00003486708
5539  ENSG00000159140       ENST00000436227 ENSE00001489549
5540  ENSG00000159140       ENST00000436227 ENSE00003497392
5541  ENSG00000159140       ENST00000421541 ENSE00001043468
5542  ENSG00000159140       ENST00000421541 ENSE00001043475
5543  ENSG00000159140       ENST00000421541 ENSE00001178085
5544  ENSG00000159140       ENST00000421541 ENSE00001605864
5545  ENSG00000159140       ENST00000421541 ENSE00001660463
5546  ENSG00000159140       ENST00000429093 ENSE00001379673
5547  ENSG00000159140       ENST00000429093 ENSE00001771207
5548  ENSG00000159140       ENST00000429093 ENSE00001735512
5549  ENSG00000159140       ENST00000429093 ENSE00001726937
5550  ENSG00000159140       ENST00000474355 ENSE00001911365
5551  ENSG00000159140       ENST00000474355 ENSE00001831533
5552  ENSG00000159140       ENST00000457208 ENSE00001379673
5553  ENSG00000159140       ENST00000457208 ENSE00003613245
5554  ENSG00000159140       ENST00000457208 ENSE00003680040
5555  ENSG00000159140       ENST00000457208 ENSE00003502064
5556  ENSG00000159140       ENST00000457208 ENSE00003473700
5557  ENSG00000159140       ENST00000457208 ENSE00001782697
5558  ENSG00000159140       ENST00000457208 ENSE00001758425
5559  ENSG00000159140       ENST00000467616 ENSE00003631795
5560  ENSG00000159140       ENST00000467616 ENSE00003613245
5561  ENSG00000159140       ENST00000467616 ENSE00003680040
5562  ENSG00000159140       ENST00000467616 ENSE00001883356
5563  ENSG00000159140       ENST00000467616 ENSE00001644384
5564  ENSG00000159140       ENST00000467616 ENSE00003514358
5565  ENSG00000159140       ENST00000467616 ENSE00001929802
5566  ENSG00000159140       ENST00000484294 ENSE00003631795
5567  ENSG00000159140       ENST00000484294 ENSE00003613245
5568  ENSG00000159140       ENST00000484294 ENSE00003680040
5569  ENSG00000159140       ENST00000484294 ENSE00003514358
5570  ENSG00000159140       ENST00000484294 ENSE00001892372
5571  ENSG00000159140       ENST00000484294 ENSE00001811217
5572  ENSG00000159140       ENST00000473102 ENSE00003631795
5573  ENSG00000159140       ENST00000473102 ENSE00003613245
5574  ENSG00000159140       ENST00000473102 ENSE00003680040
5575  ENSG00000159140       ENST00000473102 ENSE00003514358
5576  ENSG00000159140       ENST00000473102 ENSE00001892372
5577  ENSG00000159140       ENST00000473102 ENSE00001906939
5578  ENSG00000159140       ENST00000470533 ENSE00003631795
5579  ENSG00000159140       ENST00000470533 ENSE00003613245
5580  ENSG00000159140       ENST00000470533 ENSE00003680040
5581  ENSG00000159140       ENST00000470533 ENSE00003514358
5582  ENSG00000159140       ENST00000470533 ENSE00001956629
5583  ENSG00000159140       ENST00000470533 ENSE00001829240
5584  ENSG00000159140       ENST00000478183 ENSE00003631795
5585  ENSG00000159140       ENST00000478183 ENSE00003613245
5586  ENSG00000159140       ENST00000478183 ENSE00003680040
5587  ENSG00000159140       ENST00000478183 ENSE00003522025
5588  ENSG00000159140       ENST00000478183 ENSE00001911649
5589  ENSG00000159140       ENST00000465834 ENSE00003631795
5590  ENSG00000159140       ENST00000465834 ENSE00003613245
5591  ENSG00000159140       ENST00000465834 ENSE00003680040
5592  ENSG00000159140       ENST00000465834 ENSE00001873837
5593  ENSG00000159140       ENST00000465834 ENSE00001933609
5594  ENSG00000159140       ENST00000477419 ENSE00003613245
5595  ENSG00000159140       ENST00000477419 ENSE00003680040
5596  ENSG00000159140       ENST00000477419 ENSE00001908556
5597  ENSG00000159140       ENST00000477419 ENSE00001952969
5598  ENSG00000159140       ENST00000491794 ENSE00003613245
5599  ENSG00000159140       ENST00000491794 ENSE00003680040
5600  ENSG00000159140       ENST00000491794 ENSE00001881361
5601  ENSG00000159140       ENST00000491794 ENSE00001838069
5602  ENSG00000237338       ENST00000446649 ENSE00001793539
5603  ENSG00000237338       ENST00000446649 ENSE00001749111
5604  ENSG00000225330       ENST00000416555 ENSE00001719289
5605  ENSG00000225330       ENST00000416555 ENSE00001615190
5606  ENSG00000225330       ENST00000416555 ENSE00001782898
5607  ENSG00000184809       ENST00000489821 ENSE00001867995
5608  ENSG00000184809       ENST00000489821 ENSE00003757115
5609  ENSG00000184809       ENST00000380612 ENSE00003757115
5610  ENSG00000184809       ENST00000380612 ENSE00001811621
5611  ENSG00000184809       ENST00000380612 ENSE00001295606
5612  ENSG00000184809       ENST00000380604 ENSE00001811621
5613  ENSG00000184809       ENST00000380604 ENSE00001295606
5614  ENSG00000184809       ENST00000380604 ENSE00001718741
5615  ENSG00000184809       ENST00000329618 ENSE00001295606
5616  ENSG00000184809       ENST00000329618 ENSE00001316494
5617  ENSG00000184809       ENST00000329618 ENSE00001719814
5618  ENSG00000231713       ENST00000457325 ENSE00001726936
5619  ENSG00000231713       ENST00000457325 ENSE00001751889
5620  ENSG00000231713       ENST00000457325 ENSE00001686404
5621  ENSG00000231713       ENST00000419826 ENSE00001793894
5622  ENSG00000231713       ENST00000419826 ENSE00001657959
5623  ENSG00000183067       ENST00000380588 ENSE00001769493
5624  ENSG00000183067       ENST00000380588 ENSE00001485574
5625  ENSG00000183067       ENST00000380588 ENSE00003604826
5626  ENSG00000183067       ENST00000380588 ENSE00003647311
5627  ENSG00000183067       ENST00000380588 ENSE00003495748
5628  ENSG00000183067       ENST00000380588 ENSE00003527190
5629  ENSG00000183067       ENST00000380588 ENSE00001290607
5630  ENSG00000183067       ENST00000380588 ENSE00003687559
5631  ENSG00000183067       ENST00000380588 ENSE00001328914
5632  ENSG00000183067       ENST00000479378 ENSE00001935100
5633  ENSG00000183067       ENST00000479378 ENSE00003581442
5634  ENSG00000183067       ENST00000479378 ENSE00003577494
5635  ENSG00000183067       ENST00000479378 ENSE00003612795
5636  ENSG00000183067       ENST00000479378 ENSE00003562860
5637  ENSG00000183067       ENST00000459922 ENSE00001917500
5638  ENSG00000183067       ENST00000459922 ENSE00003595409
5639  ENSG00000183067       ENST00000459922 ENSE00001863487
5640  ENSG00000232969       ENST00000426029 ENSE00001737329
5641  ENSG00000232969       ENST00000426029 ENSE00001772801
5642  ENSG00000184441       ENST00000448927 ENSE00001732904
5643  ENSG00000184441       ENST00000448927 ENSE00001701875
5644  ENSG00000241837       ENST00000431254 ENSE00003686413
5645  ENSG00000241837       ENST00000431254 ENSE00001777826
5646  ENSG00000241837       ENST00000431254 ENSE00003553754
5647  ENSG00000241837       ENST00000431254 ENSE00003664335
5648  ENSG00000241837       ENST00000431254 ENSE00003660834
5649  ENSG00000241837       ENST00000431254 ENSE00003505158
5650  ENSG00000241837       ENST00000491703 ENSE00003686413
5651  ENSG00000241837       ENST00000491703 ENSE00003505158
5652  ENSG00000241837       ENST00000491703 ENSE00001880491
5653  ENSG00000241837       ENST00000491703 ENSE00003484979
5654  ENSG00000241837       ENST00000491703 ENSE00003622069
5655  ENSG00000241837       ENST00000491703 ENSE00001840885
5656  ENSG00000241837       ENST00000290299 ENSE00003553754
5657  ENSG00000241837       ENST00000290299 ENSE00003664335
5658  ENSG00000241837       ENST00000290299 ENSE00001391666
5659  ENSG00000241837       ENST00000290299 ENSE00003658594
5660  ENSG00000241837       ENST00000290299 ENSE00003608641
5661  ENSG00000241837       ENST00000290299 ENSE00003477232
5662  ENSG00000241837       ENST00000290299 ENSE00003503253
5663  ENSG00000241837       ENST00000417181 ENSE00003505158
5664  ENSG00000241837       ENST00000417181 ENSE00001592610
5665  ENSG00000241837       ENST00000417181 ENSE00001688323
5666  ENSG00000241837       ENST00000417181 ENSE00001608844
5667  ENSG00000241837       ENST00000417181 ENSE00001792484
5668  ENSG00000241837       ENST00000418933 ENSE00003608641
5669  ENSG00000241837       ENST00000418933 ENSE00003477232
5670  ENSG00000241837       ENST00000418933 ENSE00002494347
5671  ENSG00000241837       ENST00000418933 ENSE00001714691
5672  ENSG00000241837       ENST00000429064 ENSE00003505158
5673  ENSG00000241837       ENST00000429064 ENSE00001671372
5674  ENSG00000241837       ENST00000429064 ENSE00001717647
5675  ENSG00000241837       ENST00000429064 ENSE00001632641
5676  ENSG00000241837       ENST00000495005 ENSE00003484979
5677  ENSG00000241837       ENST00000495005 ENSE00001868718
5678  ENSG00000241837       ENST00000495005 ENSE00003473248
5679  ENSG00000241837       ENST00000495005 ENSE00001917505
5680  ENSG00000241837       ENST00000496044 ENSE00003473248
5681  ENSG00000241837       ENST00000496044 ENSE00001948435
5682  ENSG00000241837       ENST00000496044 ENSE00001810366
5683  ENSG00000241837       ENST00000484627 ENSE00003473248
5684  ENSG00000241837       ENST00000484627 ENSE00001810366
5685  ENSG00000241837       ENST00000484627 ENSE00001896370
5686  ENSG00000241837       ENST00000487374 ENSE00003473248
5687  ENSG00000241837       ENST00000487374 ENSE00001927911
5688  ENSG00000241837       ENST00000487374 ENSE00001936688
5689  ENSG00000215533       ENST00000447125 ENSE00001543338
5690  ENSG00000215533       ENST00000447125 ENSE00001766934
5691  ENSG00000215533       ENST00000447125 ENSE00001686651
5692  ENSG00000215533       ENST00000420364 ENSE00001686651
5693  ENSG00000215533       ENST00000420364 ENSE00001806032
5694  ENSG00000215533       ENST00000431661 ENSE00001647948
5695  ENSG00000215533       ENST00000431661 ENSE00003549843
5696  ENSG00000215533       ENST00000431661 ENSE00001632640
5697  ENSG00000171587       ENST00000617870 ENSE00001174815
5698  ENSG00000171587       ENST00000617870 ENSE00001174811
5699  ENSG00000171587       ENST00000617870 ENSE00001174805
5700  ENSG00000171587       ENST00000617870 ENSE00001174802
5701  ENSG00000171587       ENST00000617870 ENSE00001303370
5702  ENSG00000171587       ENST00000617870 ENSE00001297675
5703  ENSG00000171587       ENST00000617870 ENSE00001299928
5704  ENSG00000171587       ENST00000617870 ENSE00001330905
5705  ENSG00000171587       ENST00000617870 ENSE00001301906
5706  ENSG00000171587       ENST00000617870 ENSE00001296378
5707  ENSG00000171587       ENST00000617870 ENSE00001318915
5708  ENSG00000171587       ENST00000617870 ENSE00001325865
5709  ENSG00000171587       ENST00000617870 ENSE00001305503
5710  ENSG00000171587       ENST00000617870 ENSE00001327150
5711  ENSG00000171587       ENST00000617870 ENSE00001306377
5712  ENSG00000171587       ENST00000617870 ENSE00001203423
5713  ENSG00000171587       ENST00000617870 ENSE00001175262
5714  ENSG00000171587       ENST00000617870 ENSE00001175254
5715  ENSG00000171587       ENST00000617870 ENSE00001175248
5716  ENSG00000171587       ENST00000617870 ENSE00001175244
5717  ENSG00000171587       ENST00000617870 ENSE00001175237
5718  ENSG00000171587       ENST00000617870 ENSE00001203412
5719  ENSG00000171587       ENST00000617870 ENSE00001290929
5720  ENSG00000171587       ENST00000617870 ENSE00002519798
5721  ENSG00000171587       ENST00000617870 ENSE00001301674
5722  ENSG00000171587       ENST00000617870 ENSE00001290276
5723  ENSG00000171587       ENST00000617870 ENSE00001317868
5724  ENSG00000171587       ENST00000617870 ENSE00001322604
5725  ENSG00000171587       ENST00000617870 ENSE00003731461
5726  ENSG00000171587       ENST00000617870 ENSE00003745904
5727  ENSG00000171587       ENST00000400454 ENSE00001543050
5728  ENSG00000171587       ENST00000400454 ENSE00001543045
5729  ENSG00000171587       ENST00000400454 ENSE00001300225
5730  ENSG00000171587       ENST00000400454 ENSE00001138378
5731  ENSG00000171587       ENST00000400454 ENSE00001174815
5732  ENSG00000171587       ENST00000400454 ENSE00001174811
5733  ENSG00000171587       ENST00000400454 ENSE00001174805
5734  ENSG00000171587       ENST00000400454 ENSE00001174802
5735  ENSG00000171587       ENST00000400454 ENSE00001303370
5736  ENSG00000171587       ENST00000400454 ENSE00001297675
5737  ENSG00000171587       ENST00000400454 ENSE00001299928
5738  ENSG00000171587       ENST00000400454 ENSE00001330905
5739  ENSG00000171587       ENST00000400454 ENSE00001301906
5740  ENSG00000171587       ENST00000400454 ENSE00001296378
5741  ENSG00000171587       ENST00000400454 ENSE00001318915
5742  ENSG00000171587       ENST00000400454 ENSE00001325865
5743  ENSG00000171587       ENST00000400454 ENSE00001305503
5744  ENSG00000171587       ENST00000400454 ENSE00001327150
5745  ENSG00000171587       ENST00000400454 ENSE00001306377
5746  ENSG00000171587       ENST00000400454 ENSE00001203423
5747  ENSG00000171587       ENST00000400454 ENSE00001175262
5748  ENSG00000171587       ENST00000400454 ENSE00001175254
5749  ENSG00000171587       ENST00000400454 ENSE00001175248
5750  ENSG00000171587       ENST00000400454 ENSE00001175244
5751  ENSG00000171587       ENST00000400454 ENSE00001175237
5752  ENSG00000171587       ENST00000400454 ENSE00001203412
5753  ENSG00000171587       ENST00000400454 ENSE00001290929
5754  ENSG00000171587       ENST00000400454 ENSE00002519798
5755  ENSG00000171587       ENST00000400454 ENSE00001301674
5756  ENSG00000171587       ENST00000400454 ENSE00001290276
5757  ENSG00000171587       ENST00000400454 ENSE00001317868
5758  ENSG00000171587       ENST00000400454 ENSE00001322604
5759  ENSG00000171587       ENST00000400454 ENSE00001542956
5760  ENSG00000171587       ENST00000404019 ENSE00001174811
5761  ENSG00000171587       ENST00000404019 ENSE00001174805
5762  ENSG00000171587       ENST00000404019 ENSE00001174802
5763  ENSG00000171587       ENST00000404019 ENSE00001303370
5764  ENSG00000171587       ENST00000404019 ENSE00001297675
5765  ENSG00000171587       ENST00000404019 ENSE00001299928
5766  ENSG00000171587       ENST00000404019 ENSE00001330905
5767  ENSG00000171587       ENST00000404019 ENSE00001301906
5768  ENSG00000171587       ENST00000404019 ENSE00001296378
5769  ENSG00000171587       ENST00000404019 ENSE00001318915
5770  ENSG00000171587       ENST00000404019 ENSE00001325865
5771  ENSG00000171587       ENST00000404019 ENSE00001305503
5772  ENSG00000171587       ENST00000404019 ENSE00001327150
5773  ENSG00000171587       ENST00000404019 ENSE00001306377
5774  ENSG00000171587       ENST00000404019 ENSE00001203423
5775  ENSG00000171587       ENST00000404019 ENSE00001175262
5776  ENSG00000171587       ENST00000404019 ENSE00001175254
5777  ENSG00000171587       ENST00000404019 ENSE00001175248
5778  ENSG00000171587       ENST00000404019 ENSE00001175244
5779  ENSG00000171587       ENST00000404019 ENSE00001175237
5780  ENSG00000171587       ENST00000404019 ENSE00001203412
5781  ENSG00000171587       ENST00000404019 ENSE00001290929
5782  ENSG00000171587       ENST00000404019 ENSE00002519798
5783  ENSG00000171587       ENST00000404019 ENSE00001301674
5784  ENSG00000171587       ENST00000404019 ENSE00001290276
5785  ENSG00000171587       ENST00000404019 ENSE00001317868
5786  ENSG00000171587       ENST00000404019 ENSE00001322604
5787  ENSG00000171587       ENST00000404019 ENSE00001712962
5788  ENSG00000171587       ENST00000404019 ENSE00001549129
5789  ENSG00000182670       ENST00000492275 ENSE00001926459
5790  ENSG00000182670       ENST00000492275 ENSE00003492829
5791  ENSG00000182670       ENST00000492275 ENSE00003616905
5792  ENSG00000182670       ENST00000492275 ENSE00003489082
5793  ENSG00000182670       ENST00000492275 ENSE00003506193
5794  ENSG00000182670       ENST00000492275 ENSE00003496994
5795  ENSG00000182670       ENST00000492275 ENSE00003608391
5796  ENSG00000182670       ENST00000492275 ENSE00003552849
5797  ENSG00000182670       ENST00000492275 ENSE00001867322
5798  ENSG00000182670       ENST00000418766 ENSE00001635826
5799  ENSG00000182670       ENST00000418766 ENSE00003656604
5800  ENSG00000182670       ENST00000418766 ENSE00003656402
5801  ENSG00000182670       ENST00000418766 ENSE00003612884
5802  ENSG00000182670       ENST00000418766 ENSE00003656477
5803  ENSG00000182670       ENST00000418766 ENSE00003675922
5804  ENSG00000182670       ENST00000418766 ENSE00003507071
5805  ENSG00000182670       ENST00000418766 ENSE00003482158
5806  ENSG00000182670       ENST00000418766 ENSE00003608941
5807  ENSG00000182670       ENST00000418766 ENSE00003565200
5808  ENSG00000182670       ENST00000418766 ENSE00003637056
5809  ENSG00000182670       ENST00000418766 ENSE00003465554
5810  ENSG00000182670       ENST00000418766 ENSE00003494877
5811  ENSG00000182670       ENST00000418766 ENSE00003476101
5812  ENSG00000182670       ENST00000418766 ENSE00003460189
5813  ENSG00000182670       ENST00000418766 ENSE00003511582
5814  ENSG00000182670       ENST00000418766 ENSE00003665746
5815  ENSG00000182670       ENST00000418766 ENSE00003690606
5816  ENSG00000182670       ENST00000418766 ENSE00003577978
5817  ENSG00000182670       ENST00000418766 ENSE00003628284
5818  ENSG00000182670       ENST00000418766 ENSE00003654536
5819  ENSG00000182670       ENST00000418766 ENSE00003473796
5820  ENSG00000182670       ENST00000418766 ENSE00003665897
5821  ENSG00000182670       ENST00000418766 ENSE00003500879
5822  ENSG00000182670       ENST00000418766 ENSE00003524799
5823  ENSG00000182670       ENST00000418766 ENSE00003628441
5824  ENSG00000182670       ENST00000418766 ENSE00003791477
5825  ENSG00000182670       ENST00000418766 ENSE00003530987
5826  ENSG00000182670       ENST00000418766 ENSE00003687576
5827  ENSG00000182670       ENST00000418766 ENSE00003536562
5828  ENSG00000182670       ENST00000418766 ENSE00003627255
5829  ENSG00000182670       ENST00000418766 ENSE00003661197
5830  ENSG00000182670       ENST00000418766 ENSE00001603321
5831  ENSG00000182670       ENST00000485402 ENSE00003492829
5832  ENSG00000182670       ENST00000485402 ENSE00003616905
5833  ENSG00000182670       ENST00000485402 ENSE00003489082
5834  ENSG00000182670       ENST00000485402 ENSE00003506193
5835  ENSG00000182670       ENST00000485402 ENSE00003496994
5836  ENSG00000182670       ENST00000485402 ENSE00003608391
5837  ENSG00000182670       ENST00000485402 ENSE00003552849
5838  ENSG00000182670       ENST00000485402 ENSE00001913164
5839  ENSG00000182670       ENST00000485402 ENSE00003553663
5840  ENSG00000182670       ENST00000485402 ENSE00003633215
5841  ENSG00000182670       ENST00000485402 ENSE00003628855
5842  ENSG00000182670       ENST00000485402 ENSE00003599881
5843  ENSG00000182670       ENST00000485402 ENSE00003473338
5844  ENSG00000182670       ENST00000485402 ENSE00003513098
5845  ENSG00000182670       ENST00000485402 ENSE00003593783
5846  ENSG00000182670       ENST00000485402 ENSE00003465547
5847  ENSG00000182670       ENST00000485402 ENSE00003482670
5848  ENSG00000182670       ENST00000485402 ENSE00003530526
5849  ENSG00000182670       ENST00000485402 ENSE00003576767
5850  ENSG00000182670       ENST00000485402 ENSE00003691391
5851  ENSG00000182670       ENST00000485402 ENSE00003521393
5852  ENSG00000182670       ENST00000485402 ENSE00003597362
5853  ENSG00000182670       ENST00000485402 ENSE00003595792
5854  ENSG00000182670       ENST00000485402 ENSE00003585112
5855  ENSG00000182670       ENST00000485402 ENSE00003584754
5856  ENSG00000182670       ENST00000485402 ENSE00003476752
5857  ENSG00000182670       ENST00000485402 ENSE00003674933
5858  ENSG00000182670       ENST00000485402 ENSE00003491750
5859  ENSG00000182670       ENST00000485402 ENSE00003515585
5860  ENSG00000182670       ENST00000485402 ENSE00003626252
5861  ENSG00000182670       ENST00000485402 ENSE00003559674
5862  ENSG00000182670       ENST00000485402 ENSE00003676478
5863  ENSG00000182670       ENST00000450533 ENSE00003656604
5864  ENSG00000182670       ENST00000450533 ENSE00003656402
5865  ENSG00000182670       ENST00000450533 ENSE00003612884
5866  ENSG00000182670       ENST00000450533 ENSE00003656477
5867  ENSG00000182670       ENST00000450533 ENSE00003675922
5868  ENSG00000182670       ENST00000450533 ENSE00003507071
5869  ENSG00000182670       ENST00000450533 ENSE00003482158
5870  ENSG00000182670       ENST00000450533 ENSE00003608941
5871  ENSG00000182670       ENST00000450533 ENSE00003565200
5872  ENSG00000182670       ENST00000450533 ENSE00003637056
5873  ENSG00000182670       ENST00000450533 ENSE00003465554
5874  ENSG00000182670       ENST00000450533 ENSE00003494877
5875  ENSG00000182670       ENST00000450533 ENSE00003476101
5876  ENSG00000182670       ENST00000450533 ENSE00003460189
5877  ENSG00000182670       ENST00000450533 ENSE00003511582
5878  ENSG00000182670       ENST00000450533 ENSE00003665746
5879  ENSG00000182670       ENST00000450533 ENSE00003690606
5880  ENSG00000182670       ENST00000450533 ENSE00003577978
5881  ENSG00000182670       ENST00000450533 ENSE00003628284
5882  ENSG00000182670       ENST00000450533 ENSE00003654536
5883  ENSG00000182670       ENST00000450533 ENSE00003473796
5884  ENSG00000182670       ENST00000450533 ENSE00003665897
5885  ENSG00000182670       ENST00000450533 ENSE00003500879
5886  ENSG00000182670       ENST00000450533 ENSE00003524799
5887  ENSG00000182670       ENST00000450533 ENSE00001430930
5888  ENSG00000182670       ENST00000450533 ENSE00001599328
5889  ENSG00000182670       ENST00000438055 ENSE00003656604
5890  ENSG00000182670       ENST00000438055 ENSE00003656402
5891  ENSG00000182670       ENST00000438055 ENSE00003612884
5892  ENSG00000182670       ENST00000438055 ENSE00003656477
5893  ENSG00000182670       ENST00000438055 ENSE00003507071
5894  ENSG00000182670       ENST00000438055 ENSE00003482158
5895  ENSG00000182670       ENST00000438055 ENSE00003608941
5896  ENSG00000182670       ENST00000438055 ENSE00003565200
5897  ENSG00000182670       ENST00000438055 ENSE00003637056
5898  ENSG00000182670       ENST00000438055 ENSE00003465554
5899  ENSG00000182670       ENST00000438055 ENSE00003494877
5900  ENSG00000182670       ENST00000438055 ENSE00003476101
5901  ENSG00000182670       ENST00000438055 ENSE00003460189
5902  ENSG00000182670       ENST00000438055 ENSE00003511582
5903  ENSG00000182670       ENST00000438055 ENSE00003665746
5904  ENSG00000182670       ENST00000438055 ENSE00003690606
5905  ENSG00000182670       ENST00000438055 ENSE00003577978
5906  ENSG00000182670       ENST00000438055 ENSE00003628284
5907  ENSG00000182670       ENST00000438055 ENSE00003654536
5908  ENSG00000182670       ENST00000438055 ENSE00003473796
5909  ENSG00000182670       ENST00000438055 ENSE00003665897
5910  ENSG00000182670       ENST00000438055 ENSE00003500879
5911  ENSG00000182670       ENST00000438055 ENSE00003524799
5912  ENSG00000182670       ENST00000438055 ENSE00003628441
5913  ENSG00000182670       ENST00000438055 ENSE00003791477
5914  ENSG00000182670       ENST00000438055 ENSE00003530987
5915  ENSG00000182670       ENST00000438055 ENSE00003687576
5916  ENSG00000182670       ENST00000438055 ENSE00003536562
5917  ENSG00000182670       ENST00000438055 ENSE00003627255
5918  ENSG00000182670       ENST00000438055 ENSE00003661197
5919  ENSG00000182670       ENST00000438055 ENSE00001430930
5920  ENSG00000182670       ENST00000438055 ENSE00003545372
5921  ENSG00000182670       ENST00000463216 ENSE00003492829
5922  ENSG00000182670       ENST00000463216 ENSE00003616905
5923  ENSG00000182670       ENST00000463216 ENSE00003489082
5924  ENSG00000182670       ENST00000463216 ENSE00003506193
5925  ENSG00000182670       ENST00000463216 ENSE00003496994
5926  ENSG00000182670       ENST00000463216 ENSE00003608391
5927  ENSG00000182670       ENST00000463216 ENSE00003552849
5928  ENSG00000182670       ENST00000463216 ENSE00001846091
5929  ENSG00000182670       ENST00000463216 ENSE00001893223
5930  ENSG00000182670       ENST00000481605 ENSE00003492829
5931  ENSG00000182670       ENST00000481605 ENSE00003489082
5932  ENSG00000182670       ENST00000481605 ENSE00003506193
5933  ENSG00000182670       ENST00000481605 ENSE00003496994
5934  ENSG00000182670       ENST00000481605 ENSE00003608391
5935  ENSG00000182670       ENST00000481605 ENSE00003552849
5936  ENSG00000182670       ENST00000481605 ENSE00003482670
5937  ENSG00000182670       ENST00000481605 ENSE00003530526
5938  ENSG00000182670       ENST00000481605 ENSE00003576767
5939  ENSG00000182670       ENST00000481605 ENSE00003691391
5940  ENSG00000182670       ENST00000481605 ENSE00003521393
5941  ENSG00000182670       ENST00000481605 ENSE00003597362
5942  ENSG00000182670       ENST00000481605 ENSE00003595792
5943  ENSG00000182670       ENST00000481605 ENSE00003585112
5944  ENSG00000182670       ENST00000481605 ENSE00001846091
5945  ENSG00000182670       ENST00000481605 ENSE00001846651
5946  ENSG00000182670       ENST00000494243 ENSE00003492829
5947  ENSG00000182670       ENST00000494243 ENSE00003616905
5948  ENSG00000182670       ENST00000494243 ENSE00003489082
5949  ENSG00000182670       ENST00000494243 ENSE00003506193
5950  ENSG00000182670       ENST00000494243 ENSE00003496994
5951  ENSG00000182670       ENST00000494243 ENSE00003608391
5952  ENSG00000182670       ENST00000494243 ENSE00003552849
5953  ENSG00000182670       ENST00000494243 ENSE00001810102
5954  ENSG00000182670       ENST00000494243 ENSE00001942305
5955  ENSG00000182670       ENST00000494243 ENSE00001893020
5956  ENSG00000182670       ENST00000540756 ENSE00003492829
5957  ENSG00000182670       ENST00000540756 ENSE00003494877
5958  ENSG00000182670       ENST00000540756 ENSE00003476101
5959  ENSG00000182670       ENST00000540756 ENSE00003460189
5960  ENSG00000182670       ENST00000540756 ENSE00003511582
5961  ENSG00000182670       ENST00000540756 ENSE00003665746
5962  ENSG00000182670       ENST00000540756 ENSE00003690606
5963  ENSG00000182670       ENST00000540756 ENSE00003577978
5964  ENSG00000182670       ENST00000540756 ENSE00003628284
5965  ENSG00000182670       ENST00000540756 ENSE00003654536
5966  ENSG00000182670       ENST00000540756 ENSE00003473796
5967  ENSG00000182670       ENST00000540756 ENSE00003665897
5968  ENSG00000182670       ENST00000540756 ENSE00003500879
5969  ENSG00000182670       ENST00000540756 ENSE00003524799
5970  ENSG00000182670       ENST00000540756 ENSE00003628441
5971  ENSG00000182670       ENST00000540756 ENSE00001810102
5972  ENSG00000182670       ENST00000540756 ENSE00003559648
5973  ENSG00000182670       ENST00000540756 ENSE00002281751
5974  ENSG00000182670       ENST00000399010 ENSE00003656604
5975  ENSG00000182670       ENST00000399010 ENSE00003656402
5976  ENSG00000182670       ENST00000399010 ENSE00003612884
5977  ENSG00000182670       ENST00000399010 ENSE00003656477
5978  ENSG00000182670       ENST00000399010 ENSE00003675922
5979  ENSG00000182670       ENST00000399010 ENSE00003507071
5980  ENSG00000182670       ENST00000399010 ENSE00003482158
5981  ENSG00000182670       ENST00000399010 ENSE00003608941
5982  ENSG00000182670       ENST00000399010 ENSE00003565200
5983  ENSG00000182670       ENST00000399010 ENSE00001535966
5984  ENSG00000182670       ENST00000399010 ENSE00001535965
5985  ENSG00000182670       ENST00000399017 ENSE00003656604
5986  ENSG00000182670       ENST00000399017 ENSE00003656402
5987  ENSG00000182670       ENST00000399017 ENSE00003612884
5988  ENSG00000182670       ENST00000399017 ENSE00003656477
5989  ENSG00000182670       ENST00000399017 ENSE00003675922
5990  ENSG00000182670       ENST00000399017 ENSE00003507071
5991  ENSG00000182670       ENST00000399017 ENSE00003482158
5992  ENSG00000182670       ENST00000399017 ENSE00003608941
5993  ENSG00000182670       ENST00000399017 ENSE00003565200
5994  ENSG00000182670       ENST00000399017 ENSE00003637056
5995  ENSG00000182670       ENST00000399017 ENSE00003465554
5996  ENSG00000182670       ENST00000399017 ENSE00003494877
5997  ENSG00000182670       ENST00000399017 ENSE00003476101
5998  ENSG00000182670       ENST00000399017 ENSE00003460189
5999  ENSG00000182670       ENST00000399017 ENSE00003511582
6000  ENSG00000182670       ENST00000399017 ENSE00003665746
6001  ENSG00000182670       ENST00000399017 ENSE00003690606
6002  ENSG00000182670       ENST00000399017 ENSE00003577978
6003  ENSG00000182670       ENST00000399017 ENSE00003628284
6004  ENSG00000182670       ENST00000399017 ENSE00003654536
6005  ENSG00000182670       ENST00000399017 ENSE00003473796
6006  ENSG00000182670       ENST00000399017 ENSE00003665897
6007  ENSG00000182670       ENST00000399017 ENSE00003500879
6008  ENSG00000182670       ENST00000399017 ENSE00003524799
6009  ENSG00000182670       ENST00000399017 ENSE00003628441
6010  ENSG00000182670       ENST00000399017 ENSE00003791477
6011  ENSG00000182670       ENST00000399017 ENSE00003530987
6012  ENSG00000182670       ENST00000399017 ENSE00003687576
6013  ENSG00000182670       ENST00000399017 ENSE00003536562
6014  ENSG00000182670       ENST00000399017 ENSE00003627255
6015  ENSG00000182670       ENST00000399017 ENSE00003661197
6016  ENSG00000182670       ENST00000399017 ENSE00001824890
6017  ENSG00000182670       ENST00000399017 ENSE00003636017
6018  ENSG00000182670       ENST00000399017 ENSE00003521313
6019  ENSG00000182670       ENST00000399017 ENSE00003643560
6020  ENSG00000182670       ENST00000399017 ENSE00003661677
6021  ENSG00000182670       ENST00000399017 ENSE00003479315
6022  ENSG00000182670       ENST00000399017 ENSE00003560308
6023  ENSG00000182670       ENST00000399017 ENSE00003561232
6024  ENSG00000182670       ENST00000399017 ENSE00003589692
6025  ENSG00000182670       ENST00000399017 ENSE00003492781
6026  ENSG00000182670       ENST00000399017 ENSE00003590736
6027  ENSG00000182670       ENST00000399017 ENSE00003688182
6028  ENSG00000182670       ENST00000399017 ENSE00003507263
6029  ENSG00000182670       ENST00000399017 ENSE00003636513
6030  ENSG00000182670       ENST00000399017 ENSE00003493492
6031  ENSG00000182670       ENST00000484047 ENSE00003553663
6032  ENSG00000182670       ENST00000484047 ENSE00003628855
6033  ENSG00000182670       ENST00000484047 ENSE00003599881
6034  ENSG00000182670       ENST00000484047 ENSE00001921180
6035  ENSG00000182670       ENST00000484047 ENSE00001868313
6036  ENSG00000182670       ENST00000484047 ENSE00001887719
6037  ENSG00000182670       ENST00000484047 ENSE00001939389
6038  ENSG00000182670       ENST00000354749 ENSE00003656402
6039  ENSG00000182670       ENST00000354749 ENSE00003612884
6040  ENSG00000182670       ENST00000354749 ENSE00003656477
6041  ENSG00000182670       ENST00000354749 ENSE00003675922
6042  ENSG00000182670       ENST00000354749 ENSE00003507071
6043  ENSG00000182670       ENST00000354749 ENSE00003482158
6044  ENSG00000182670       ENST00000354749 ENSE00003608941
6045  ENSG00000182670       ENST00000354749 ENSE00003565200
6046  ENSG00000182670       ENST00000354749 ENSE00003637056
6047  ENSG00000182670       ENST00000354749 ENSE00003465554
6048  ENSG00000182670       ENST00000354749 ENSE00003494877
6049  ENSG00000182670       ENST00000354749 ENSE00003476101
6050  ENSG00000182670       ENST00000354749 ENSE00003460189
6051  ENSG00000182670       ENST00000354749 ENSE00003511582
6052  ENSG00000182670       ENST00000354749 ENSE00003665746
6053  ENSG00000182670       ENST00000354749 ENSE00003690606
6054  ENSG00000182670       ENST00000354749 ENSE00003577978
6055  ENSG00000182670       ENST00000354749 ENSE00003628284
6056  ENSG00000182670       ENST00000354749 ENSE00003654536
6057  ENSG00000182670       ENST00000354749 ENSE00003473796
6058  ENSG00000182670       ENST00000354749 ENSE00003665897
6059  ENSG00000182670       ENST00000354749 ENSE00003500879
6060  ENSG00000182670       ENST00000354749 ENSE00003524799
6061  ENSG00000182670       ENST00000354749 ENSE00003628441
6062  ENSG00000182670       ENST00000354749 ENSE00003791477
6063  ENSG00000182670       ENST00000354749 ENSE00003530987
6064  ENSG00000182670       ENST00000354749 ENSE00003687576
6065  ENSG00000182670       ENST00000354749 ENSE00003536562
6066  ENSG00000182670       ENST00000354749 ENSE00003627255
6067  ENSG00000182670       ENST00000354749 ENSE00003661197
6068  ENSG00000182670       ENST00000354749 ENSE00003636017
6069  ENSG00000182670       ENST00000354749 ENSE00003521313
6070  ENSG00000182670       ENST00000354749 ENSE00003643560
6071  ENSG00000182670       ENST00000354749 ENSE00003661677
6072  ENSG00000182670       ENST00000354749 ENSE00003479315
6073  ENSG00000182670       ENST00000354749 ENSE00003560308
6074  ENSG00000182670       ENST00000354749 ENSE00003561232
6075  ENSG00000182670       ENST00000354749 ENSE00003589692
6076  ENSG00000182670       ENST00000354749 ENSE00003492781
6077  ENSG00000182670       ENST00000354749 ENSE00003590736
6078  ENSG00000182670       ENST00000354749 ENSE00003688182
6079  ENSG00000182670       ENST00000354749 ENSE00003507263
6080  ENSG00000182670       ENST00000354749 ENSE00003636513
6081  ENSG00000182670       ENST00000354749 ENSE00003493492
6082  ENSG00000182670       ENST00000354749 ENSE00003640322
6083  ENSG00000182670       ENST00000479930 ENSE00003492829
6084  ENSG00000182670       ENST00000479930 ENSE00003616905
6085  ENSG00000182670       ENST00000479930 ENSE00003489082
6086  ENSG00000182670       ENST00000479930 ENSE00003506193
6087  ENSG00000182670       ENST00000479930 ENSE00003496994
6088  ENSG00000182670       ENST00000479930 ENSE00003608391
6089  ENSG00000182670       ENST00000479930 ENSE00003552849
6090  ENSG00000182670       ENST00000479930 ENSE00003633215
6091  ENSG00000182670       ENST00000479930 ENSE00003628855
6092  ENSG00000182670       ENST00000479930 ENSE00003599881
6093  ENSG00000182670       ENST00000479930 ENSE00003473338
6094  ENSG00000182670       ENST00000479930 ENSE00003593783
6095  ENSG00000182670       ENST00000479930 ENSE00003465547
6096  ENSG00000182670       ENST00000479930 ENSE00003482670
6097  ENSG00000182670       ENST00000479930 ENSE00003530526
6098  ENSG00000182670       ENST00000479930 ENSE00003576767
6099  ENSG00000182670       ENST00000479930 ENSE00003691391
6100  ENSG00000182670       ENST00000479930 ENSE00003521393
6101  ENSG00000182670       ENST00000479930 ENSE00003597362
6102  ENSG00000182670       ENST00000479930 ENSE00003595792
6103  ENSG00000182670       ENST00000479930 ENSE00003585112
6104  ENSG00000182670       ENST00000479930 ENSE00003584754
6105  ENSG00000182670       ENST00000479930 ENSE00003476752
6106  ENSG00000182670       ENST00000479930 ENSE00003674933
6107  ENSG00000182670       ENST00000479930 ENSE00003491750
6108  ENSG00000182670       ENST00000479930 ENSE00003515585
6109  ENSG00000182670       ENST00000479930 ENSE00003626252
6110  ENSG00000182670       ENST00000479930 ENSE00003559674
6111  ENSG00000182670       ENST00000479930 ENSE00003587673
6112  ENSG00000182670       ENST00000479930 ENSE00003595729
6113  ENSG00000182670       ENST00000479930 ENSE00003479693
6114  ENSG00000182670       ENST00000479930 ENSE00003492321
6115  ENSG00000182670       ENST00000479930 ENSE00003603698
6116  ENSG00000182670       ENST00000479930 ENSE00003599612
6117  ENSG00000182670       ENST00000479930 ENSE00003568218
6118  ENSG00000182670       ENST00000479930 ENSE00003653003
6119  ENSG00000182670       ENST00000479930 ENSE00003627839
6120  ENSG00000182670       ENST00000479930 ENSE00003496809
6121  ENSG00000182670       ENST00000479930 ENSE00003552885
6122  ENSG00000182670       ENST00000479930 ENSE00003485866
6123  ENSG00000182670       ENST00000479930 ENSE00003619915
6124  ENSG00000182670       ENST00000479930 ENSE00003618329
6125  ENSG00000182670       ENST00000479930 ENSE00003617054
6126  ENSG00000182670       ENST00000479930 ENSE00003591319
6127  ENSG00000182670       ENST00000460328 ENSE00003513098
6128  ENSG00000182670       ENST00000460328 ENSE00003593783
6129  ENSG00000182670       ENST00000460328 ENSE00001888280
6130  ENSG00000182670       ENST00000460328 ENSE00001918908
6131  ENSG00000182670       ENST00000491952 ENSE00003513098
6132  ENSG00000182670       ENST00000491952 ENSE00001943458
6133  ENSG00000182670       ENST00000491952 ENSE00001921343
6134  ENSG00000182670       ENST00000476784 ENSE00003616905
6135  ENSG00000182670       ENST00000476784 ENSE00003489082
6136  ENSG00000182670       ENST00000476784 ENSE00003506193
6137  ENSG00000182670       ENST00000476784 ENSE00003496994
6138  ENSG00000182670       ENST00000476784 ENSE00003608391
6139  ENSG00000182670       ENST00000476784 ENSE00003552849
6140  ENSG00000182670       ENST00000476784 ENSE00003482670
6141  ENSG00000182670       ENST00000476784 ENSE00003530526
6142  ENSG00000182670       ENST00000476784 ENSE00003576767
6143  ENSG00000182670       ENST00000476784 ENSE00003691391
6144  ENSG00000182670       ENST00000476784 ENSE00003521393
6145  ENSG00000182670       ENST00000476784 ENSE00003597362
6146  ENSG00000182670       ENST00000476784 ENSE00003595792
6147  ENSG00000182670       ENST00000476784 ENSE00003585112
6148  ENSG00000182670       ENST00000476784 ENSE00003584754
6149  ENSG00000182670       ENST00000476784 ENSE00003476752
6150  ENSG00000182670       ENST00000476784 ENSE00003674933
6151  ENSG00000182670       ENST00000476784 ENSE00003491750
6152  ENSG00000182670       ENST00000476784 ENSE00003515585
6153  ENSG00000182670       ENST00000476784 ENSE00003626252
6154  ENSG00000182670       ENST00000476784 ENSE00003559674
6155  ENSG00000182670       ENST00000476784 ENSE00003479693
6156  ENSG00000182670       ENST00000476784 ENSE00003492321
6157  ENSG00000182670       ENST00000476784 ENSE00003603698
6158  ENSG00000182670       ENST00000476784 ENSE00003599612
6159  ENSG00000182670       ENST00000476784 ENSE00003568218
6160  ENSG00000182670       ENST00000476784 ENSE00003653003
6161  ENSG00000182670       ENST00000476784 ENSE00003627839
6162  ENSG00000182670       ENST00000476784 ENSE00003496809
6163  ENSG00000182670       ENST00000476784 ENSE00003552885
6164  ENSG00000182670       ENST00000476784 ENSE00003485866
6165  ENSG00000182670       ENST00000476784 ENSE00003619915
6166  ENSG00000182670       ENST00000476784 ENSE00003618329
6167  ENSG00000182670       ENST00000476784 ENSE00003617054
6168  ENSG00000182670       ENST00000476784 ENSE00003591319
6169  ENSG00000182670       ENST00000476784 ENSE00001917971
6170  ENSG00000182670       ENST00000414818 ENSE00003473796
6171  ENSG00000182670       ENST00000414818 ENSE00003500879
6172  ENSG00000182670       ENST00000414818 ENSE00003524799
6173  ENSG00000182670       ENST00000414818 ENSE00003628441
6174  ENSG00000182670       ENST00000414818 ENSE00003791477
6175  ENSG00000182670       ENST00000414818 ENSE00001769719
6176  ENSG00000182670       ENST00000411496 ENSE00003530987
6177  ENSG00000182670       ENST00000411496 ENSE00003687576
6178  ENSG00000182670       ENST00000411496 ENSE00003536562
6179  ENSG00000182670       ENST00000411496 ENSE00003627255
6180  ENSG00000182670       ENST00000411496 ENSE00003661197
6181  ENSG00000182670       ENST00000411496 ENSE00001703974
6182  ENSG00000182670       ENST00000411496 ENSE00001656025
6183  ENSG00000182670       ENST00000411496 ENSE00001677346
6184  ENSG00000182670       ENST00000487711 ENSE00003674933
6185  ENSG00000182670       ENST00000487711 ENSE00003491750
6186  ENSG00000182670       ENST00000487711 ENSE00003515585
6187  ENSG00000182670       ENST00000487711 ENSE00003626252
6188  ENSG00000182670       ENST00000487711 ENSE00003559674
6189  ENSG00000182670       ENST00000487711 ENSE00003676478
6190  ENSG00000182670       ENST00000487711 ENSE00001907290
6191  ENSG00000182670       ENST00000487711 ENSE00001908317
6192  ENSG00000182670       ENST00000472398 ENSE00003491750
6193  ENSG00000182670       ENST00000472398 ENSE00003515585
6194  ENSG00000182670       ENST00000472398 ENSE00003626252
6195  ENSG00000182670       ENST00000472398 ENSE00003559674
6196  ENSG00000182670       ENST00000472398 ENSE00003479693
6197  ENSG00000182670       ENST00000472398 ENSE00003492321
6198  ENSG00000182670       ENST00000472398 ENSE00003603698
6199  ENSG00000182670       ENST00000472398 ENSE00003599612
6200  ENSG00000182670       ENST00000472398 ENSE00001821106
6201  ENSG00000182670       ENST00000472398 ENSE00001927285
6202  ENSG00000182670       ENST00000469939 ENSE00003515585
6203  ENSG00000182670       ENST00000469939 ENSE00003626252
6204  ENSG00000182670       ENST00000469939 ENSE00003559674
6205  ENSG00000182670       ENST00000469939 ENSE00003676478
6206  ENSG00000182670       ENST00000469939 ENSE00001851140
6207  ENSG00000182670       ENST00000428693 ENSE00003589692
6208  ENSG00000182670       ENST00000428693 ENSE00003590736
6209  ENSG00000182670       ENST00000428693 ENSE00003688182
6210  ENSG00000182670       ENST00000428693 ENSE00003507263
6211  ENSG00000182670       ENST00000428693 ENSE00003636513
6212  ENSG00000182670       ENST00000428693 ENSE00001768326
6213  ENSG00000182670       ENST00000488522 ENSE00003485866
6214  ENSG00000182670       ENST00000488522 ENSE00003619915
6215  ENSG00000182670       ENST00000488522 ENSE00001946751
6216  ENSG00000182670       ENST00000488522 ENSE00001835324
6217  ENSG00000182670       ENST00000488522 ENSE00001896588
6218  ENSG00000182670       ENST00000355666 ENSE00003656604
6219  ENSG00000182670       ENST00000355666 ENSE00003656402
6220  ENSG00000182670       ENST00000355666 ENSE00003612884
6221  ENSG00000182670       ENST00000355666 ENSE00003656477
6222  ENSG00000182670       ENST00000355666 ENSE00003675922
6223  ENSG00000182670       ENST00000355666 ENSE00003507071
6224  ENSG00000182670       ENST00000355666 ENSE00003482158
6225  ENSG00000182670       ENST00000355666 ENSE00003608941
6226  ENSG00000182670       ENST00000355666 ENSE00003565200
6227  ENSG00000182670       ENST00000355666 ENSE00003637056
6228  ENSG00000182670       ENST00000355666 ENSE00003465554
6229  ENSG00000182670       ENST00000355666 ENSE00003494877
6230  ENSG00000182670       ENST00000355666 ENSE00003476101
6231  ENSG00000182670       ENST00000355666 ENSE00003460189
6232  ENSG00000182670       ENST00000355666 ENSE00003511582
6233  ENSG00000182670       ENST00000355666 ENSE00003665746
6234  ENSG00000182670       ENST00000355666 ENSE00003690606
6235  ENSG00000182670       ENST00000355666 ENSE00003577978
6236  ENSG00000182670       ENST00000355666 ENSE00003628284
6237  ENSG00000182670       ENST00000355666 ENSE00003654536
6238  ENSG00000182670       ENST00000355666 ENSE00003473796
6239  ENSG00000182670       ENST00000355666 ENSE00003665897
6240  ENSG00000182670       ENST00000355666 ENSE00003500879
6241  ENSG00000182670       ENST00000355666 ENSE00003524799
6242  ENSG00000182670       ENST00000355666 ENSE00003628441
6243  ENSG00000182670       ENST00000355666 ENSE00003791477
6244  ENSG00000182670       ENST00000355666 ENSE00003530987
6245  ENSG00000182670       ENST00000355666 ENSE00003687576
6246  ENSG00000182670       ENST00000355666 ENSE00003536562
6247  ENSG00000182670       ENST00000355666 ENSE00003627255
6248  ENSG00000182670       ENST00000355666 ENSE00003661197
6249  ENSG00000182670       ENST00000355666 ENSE00003636017
6250  ENSG00000182670       ENST00000355666 ENSE00003521313
6251  ENSG00000182670       ENST00000355666 ENSE00003643560
6252  ENSG00000182670       ENST00000355666 ENSE00003661677
6253  ENSG00000182670       ENST00000355666 ENSE00003479315
6254  ENSG00000182670       ENST00000355666 ENSE00003560308
6255  ENSG00000182670       ENST00000355666 ENSE00003561232
6256  ENSG00000182670       ENST00000355666 ENSE00003589692
6257  ENSG00000182670       ENST00000355666 ENSE00003492781
6258  ENSG00000182670       ENST00000355666 ENSE00003590736
6259  ENSG00000182670       ENST00000355666 ENSE00003688182
6260  ENSG00000182670       ENST00000355666 ENSE00003507263
6261  ENSG00000182670       ENST00000355666 ENSE00003636513
6262  ENSG00000182670       ENST00000355666 ENSE00001420440
6263  ENSG00000182670       ENST00000355666 ENSE00001367371
6264  ENSG00000279998       ENST00000623678 ENSE00003757566
6265  ENSG00000279998       ENST00000623678 ENSE00003760176
6266  ENSG00000279998       ENST00000623678 ENSE00003757437
6267  ENSG00000231125       ENST00000457162 ENSE00001599010
6268  ENSG00000231125       ENST00000457162 ENSE00001613545
6269  ENSG00000156261       ENST00000432178 ENSE00001607255
6270  ENSG00000156261       ENST00000432178 ENSE00003525940
6271  ENSG00000156261       ENST00000432178 ENSE00001754281
6272  ENSG00000156261       ENST00000432178 ENSE00001779330
6273  ENSG00000156261       ENST00000496121 ENSE00001904305
6274  ENSG00000156261       ENST00000496121 ENSE00003657826
6275  ENSG00000156261       ENST00000496121 ENSE00003590459
6276  ENSG00000156261       ENST00000496121 ENSE00003494714
6277  ENSG00000156261       ENST00000496121 ENSE00003648424
6278  ENSG00000156261       ENST00000470450 ENSE00003657826
6279  ENSG00000156261       ENST00000470450 ENSE00003590459
6280  ENSG00000156261       ENST00000470450 ENSE00003494714
6281  ENSG00000156261       ENST00000470450 ENSE00003648424
6282  ENSG00000156261       ENST00000470450 ENSE00001910427
6283  ENSG00000156261       ENST00000470450 ENSE00003606420
6284  ENSG00000156261       ENST00000470450 ENSE00003601749
6285  ENSG00000156261       ENST00000470450 ENSE00003514393
6286  ENSG00000156261       ENST00000470450 ENSE00003625237
6287  ENSG00000156261       ENST00000470450 ENSE00003569164
6288  ENSG00000156261       ENST00000470450 ENSE00003663644
6289  ENSG00000156261       ENST00000470450 ENSE00003590042
6290  ENSG00000156261       ENST00000470450 ENSE00003693955
6291  ENSG00000156261       ENST00000470450 ENSE00003463549
6292  ENSG00000156261       ENST00000470450 ENSE00003562158
6293  ENSG00000156261       ENST00000286788 ENSE00003525940
6294  ENSG00000156261       ENST00000286788 ENSE00001504993
6295  ENSG00000156261       ENST00000286788 ENSE00003645550
6296  ENSG00000156261       ENST00000286788 ENSE00003598993
6297  ENSG00000156261       ENST00000286788 ENSE00003610619
6298  ENSG00000156261       ENST00000286788 ENSE00003519479
6299  ENSG00000156261       ENST00000286788 ENSE00003487814
6300  ENSG00000156261       ENST00000286788 ENSE00003573390
6301  ENSG00000156261       ENST00000286788 ENSE00003511485
6302  ENSG00000156261       ENST00000286788 ENSE00003605829
6303  ENSG00000156261       ENST00000286788 ENSE00003689478
6304  ENSG00000156261       ENST00000286788 ENSE00003515090
6305  ENSG00000156261       ENST00000286788 ENSE00003537960
6306  ENSG00000156261       ENST00000286788 ENSE00003539207
6307  ENSG00000156261       ENST00000286788 ENSE00003573058
6308  ENSG00000156261       ENST00000626972 ENSE00003525940
6309  ENSG00000156261       ENST00000626972 ENSE00003645550
6310  ENSG00000156261       ENST00000626972 ENSE00003598993
6311  ENSG00000156261       ENST00000626972 ENSE00003610619
6312  ENSG00000156261       ENST00000626972 ENSE00003519479
6313  ENSG00000156261       ENST00000626972 ENSE00003487814
6314  ENSG00000156261       ENST00000626972 ENSE00003573390
6315  ENSG00000156261       ENST00000626972 ENSE00003511485
6316  ENSG00000156261       ENST00000626972 ENSE00003605829
6317  ENSG00000156261       ENST00000626972 ENSE00003689478
6318  ENSG00000156261       ENST00000626972 ENSE00003515090
6319  ENSG00000156261       ENST00000626972 ENSE00003537960
6320  ENSG00000156261       ENST00000626972 ENSE00003539207
6321  ENSG00000156261       ENST00000626972 ENSE00003770661
6322  ENSG00000156261       ENST00000626972 ENSE00003765957
6323  ENSG00000156261       ENST00000626972 ENSE00003774417
6324  ENSG00000156261       ENST00000480359 ENSE00003463549
6325  ENSG00000156261       ENST00000480359 ENSE00003562158
6326  ENSG00000156261       ENST00000480359 ENSE00001930283
6327  ENSG00000156261       ENST00000475205 ENSE00003693955
6328  ENSG00000156261       ENST00000475205 ENSE00001955002
6329  ENSG00000156261       ENST00000475205 ENSE00001897678
6330  ENSG00000156261       ENST00000431234 ENSE00003645550
6331  ENSG00000156261       ENST00000431234 ENSE00003598993
6332  ENSG00000156261       ENST00000431234 ENSE00003610619
6333  ENSG00000156261       ENST00000431234 ENSE00003519479
6334  ENSG00000156261       ENST00000431234 ENSE00003487814
6335  ENSG00000156261       ENST00000431234 ENSE00003511485
6336  ENSG00000156261       ENST00000431234 ENSE00003605829
6337  ENSG00000156261       ENST00000431234 ENSE00003689478
6338  ENSG00000156261       ENST00000431234 ENSE00001680303
6339  ENSG00000156261       ENST00000431234 ENSE00001608754
6340  ENSG00000156261       ENST00000484403 ENSE00003606420
6341  ENSG00000156261       ENST00000484403 ENSE00003601749
6342  ENSG00000156261       ENST00000484403 ENSE00003514393
6343  ENSG00000156261       ENST00000484403 ENSE00001137318
6344  ENSG00000156261       ENST00000484403 ENSE00001858582
6345  ENSG00000156261       ENST00000484403 ENSE00001923756
6346  ENSG00000156261       ENST00000481059 ENSE00003606420
6347  ENSG00000156261       ENST00000481059 ENSE00003601749
6348  ENSG00000156261       ENST00000481059 ENSE00003514393
6349  ENSG00000156261       ENST00000481059 ENSE00003625237
6350  ENSG00000156261       ENST00000481059 ENSE00003569164
6351  ENSG00000156261       ENST00000481059 ENSE00001837955
6352  ENSG00000156261       ENST00000481059 ENSE00001890619
6353  ENSG00000156261       ENST00000494296 ENSE00003606420
6354  ENSG00000156261       ENST00000494296 ENSE00003601749
6355  ENSG00000156261       ENST00000494296 ENSE00001949140
6356  ENSG00000156261       ENST00000494296 ENSE00001850453
6357  ENSG00000156261       ENST00000540844 ENSE00003525940
6358  ENSG00000156261       ENST00000540844 ENSE00003610619
6359  ENSG00000156261       ENST00000540844 ENSE00003519479
6360  ENSG00000156261       ENST00000540844 ENSE00003487814
6361  ENSG00000156261       ENST00000540844 ENSE00003573390
6362  ENSG00000156261       ENST00000540844 ENSE00003511485
6363  ENSG00000156261       ENST00000540844 ENSE00003605829
6364  ENSG00000156261       ENST00000540844 ENSE00003689478
6365  ENSG00000156261       ENST00000540844 ENSE00003515090
6366  ENSG00000156261       ENST00000540844 ENSE00003537960
6367  ENSG00000156261       ENST00000540844 ENSE00003539207
6368  ENSG00000156261       ENST00000540844 ENSE00002308759
6369  ENSG00000156261       ENST00000540844 ENSE00003644939
6370  ENSG00000156261       ENST00000540844 ENSE00002272827
6371  ENSG00000278955       ENST00000624937 ENSE00003759173
6372  ENSG00000278955       ENST00000624937 ENSE00003758401
6373  ENSG00000278955       ENST00000624937 ENSE00003759923
6374  ENSG00000226501       ENST00000451645 ENSE00001715177
6375  ENSG00000142166       ENST00000493503 ENSE00001855615
6376  ENSG00000142166       ENST00000493503 ENSE00001913247
6377  ENSG00000142166       ENST00000270139 ENSE00001958164
6378  ENSG00000142166       ENST00000270139 ENSE00003606171
6379  ENSG00000142166       ENST00000270139 ENSE00003575721
6380  ENSG00000142166       ENST00000270139 ENSE00000952626
6381  ENSG00000142166       ENST00000270139 ENSE00000952627
6382  ENSG00000142166       ENST00000270139 ENSE00000952628
6383  ENSG00000142166       ENST00000270139 ENSE00000952629
6384  ENSG00000142166       ENST00000270139 ENSE00000952630
6385  ENSG00000142166       ENST00000270139 ENSE00001043348
6386  ENSG00000142166       ENST00000270139 ENSE00000952632
6387  ENSG00000142166       ENST00000270139 ENSE00001842850
6388  ENSG00000142166       ENST00000442071 ENSE00003606171
6389  ENSG00000142166       ENST00000442071 ENSE00003575721
6390  ENSG00000142166       ENST00000442071 ENSE00001794726
6391  ENSG00000142166       ENST00000442071 ENSE00001656702
6392  ENSG00000280172       ENST00000623131 ENSE00003755973
6393  ENSG00000279751       ENST00000623720 ENSE00003756925
6394  ENSG00000279751       ENST00000623720 ENSE00003756884
6395  ENSG00000279313       ENST00000623347 ENSE00003756510
6396  ENSG00000279313       ENST00000623347 ENSE00003757157
6397  ENSG00000279313       ENST00000623347 ENSE00003755088
6398  ENSG00000280018       ENST00000623165 ENSE00003755095
6399  ENSG00000280018       ENST00000623165 ENSE00003756164
6400  ENSG00000280018       ENST00000623165 ENSE00003755730
6401  ENSG00000280018       ENST00000623165 ENSE00003756792
6402  ENSG00000280018       ENST00000623165 ENSE00003759370
6403  ENSG00000280018       ENST00000624519 ENSE00003756164
6404  ENSG00000280018       ENST00000624519 ENSE00003755773
6405  ENSG00000280018       ENST00000624519 ENSE00003756359
6406  ENSG00000280018       ENST00000624728 ENSE00003757442
6407  ENSG00000280018       ENST00000624728 ENSE00003757990
6408  ENSG00000280018       ENST00000624728 ENSE00003758270
6409  ENSG00000157578       ENST00000288350 ENSE00001485938
6410  ENSG00000157578       ENST00000288350 ENSE00001380142
6411  ENSG00000157578       ENST00000288350 ENSE00001391688
6412  ENSG00000157578       ENST00000288350 ENSE00001367319
6413  ENSG00000157578       ENST00000288350 ENSE00003787481
6414  ENSG00000157578       ENST00000288350 ENSE00001033593
6415  ENSG00000157578       ENST00000288350 ENSE00003503789
6416  ENSG00000157578       ENST00000288350 ENSE00003491574
6417  ENSG00000157578       ENST00000288350 ENSE00003604959
6418  ENSG00000157578       ENST00000288350 ENSE00003608880
6419  ENSG00000157578       ENST00000288350 ENSE00001033603
6420  ENSG00000157578       ENST00000358268 ENSE00001391688
6421  ENSG00000157578       ENST00000358268 ENSE00001367319
6422  ENSG00000157578       ENST00000358268 ENSE00003787481
6423  ENSG00000157578       ENST00000358268 ENSE00001033593
6424  ENSG00000157578       ENST00000358268 ENSE00003503789
6425  ENSG00000157578       ENST00000358268 ENSE00003491574
6426  ENSG00000157578       ENST00000358268 ENSE00003604959
6427  ENSG00000157578       ENST00000358268 ENSE00003608880
6428  ENSG00000157578       ENST00000358268 ENSE00001402234
6429  ENSG00000157578       ENST00000358268 ENSE00001485810
6430  ENSG00000157578       ENST00000495240 ENSE00001848538
6431  ENSG00000157578       ENST00000495240 ENSE00003563475
6432  ENSG00000157578       ENST00000495240 ENSE00003610886
6433  ENSG00000157578       ENST00000495240 ENSE00001893402
6434  ENSG00000157578       ENST00000484878 ENSE00001380142
6435  ENSG00000157578       ENST00000484878 ENSE00001391688
6436  ENSG00000157578       ENST00000484878 ENSE00001613374
6437  ENSG00000157578       ENST00000484878 ENSE00001625544
6438  ENSG00000157578       ENST00000484878 ENSE00001848196
6439  ENSG00000157578       ENST00000484878 ENSE00001877157
6440  ENSG00000157578       ENST00000484878 ENSE00003595828
6441  ENSG00000157578       ENST00000484878 ENSE00003539949
6442  ENSG00000157578       ENST00000485895 ENSE00001485938
6443  ENSG00000157578       ENST00000485895 ENSE00001391688
6444  ENSG00000157578       ENST00000485895 ENSE00001367319
6445  ENSG00000157578       ENST00000485895 ENSE00003787481
6446  ENSG00000157578       ENST00000485895 ENSE00003697933
6447  ENSG00000157578       ENST00000491625 ENSE00001380142
6448  ENSG00000157578       ENST00000491625 ENSE00001367319
6449  ENSG00000157578       ENST00000491625 ENSE00001937581
6450  ENSG00000157578       ENST00000491625 ENSE00001928148
6451  ENSG00000157578       ENST00000459939 ENSE00001391688
6452  ENSG00000157578       ENST00000459939 ENSE00001367319
6453  ENSG00000157578       ENST00000459939 ENSE00001810020
6454  ENSG00000157578       ENST00000459939 ENSE00001932346
6455  ENSG00000157578       ENST00000490184 ENSE00001380142
6456  ENSG00000157578       ENST00000490184 ENSE00001391688
6457  ENSG00000157578       ENST00000490184 ENSE00001367319
6458  ENSG00000157578       ENST00000490184 ENSE00001822113
6459  ENSG00000157578       ENST00000490184 ENSE00001791403
6460  ENSG00000157578       ENST00000490184 ENSE00001864188
6461  ENSG00000157578       ENST00000490184 ENSE00001864965
6462  ENSG00000157578       ENST00000418018 ENSE00001380142
6463  ENSG00000157578       ENST00000418018 ENSE00001367319
6464  ENSG00000157578       ENST00000418018 ENSE00003787481
6465  ENSG00000157578       ENST00000418018 ENSE00001663615
6466  ENSG00000157578       ENST00000418018 ENSE00001698170
6467  ENSG00000157578       ENST00000418018 ENSE00001736929
6468  ENSG00000157578       ENST00000466954 ENSE00001380142
6469  ENSG00000157578       ENST00000466954 ENSE00001402234
6470  ENSG00000157578       ENST00000466954 ENSE00001698170
6471  ENSG00000157578       ENST00000466954 ENSE00001732749
6472  ENSG00000157578       ENST00000466954 ENSE00001834842
6473  ENSG00000157578       ENST00000448288 ENSE00001391688
6474  ENSG00000157578       ENST00000448288 ENSE00003787481
6475  ENSG00000157578       ENST00000448288 ENSE00001732749
6476  ENSG00000157578       ENST00000448288 ENSE00001643940
6477  ENSG00000157578       ENST00000434281 ENSE00001380142
6478  ENSG00000157578       ENST00000434281 ENSE00001367319
6479  ENSG00000157578       ENST00000434281 ENSE00001768871
6480  ENSG00000157578       ENST00000434281 ENSE00001649696
6481  ENSG00000157578       ENST00000438404 ENSE00001380142
6482  ENSG00000157578       ENST00000438404 ENSE00001367319
6483  ENSG00000157578       ENST00000438404 ENSE00001791403
6484  ENSG00000157578       ENST00000438404 ENSE00001650724
6485  ENSG00000157578       ENST00000438404 ENSE00001663055
6486  ENSG00000157578       ENST00000438404 ENSE00001688947
6487  ENSG00000157578       ENST00000411566 ENSE00001391688
6488  ENSG00000157578       ENST00000411566 ENSE00001367319
6489  ENSG00000157578       ENST00000411566 ENSE00001402234
6490  ENSG00000157578       ENST00000411566 ENSE00001684484
6491  ENSG00000157578       ENST00000468009 ENSE00001367319
6492  ENSG00000157578       ENST00000468009 ENSE00001954372
6493  ENSG00000157578       ENST00000468009 ENSE00003182186
6494  ENSG00000157578       ENST00000415863 ENSE00001380142
6495  ENSG00000157578       ENST00000415863 ENSE00001391688
6496  ENSG00000157578       ENST00000415863 ENSE00001367319
6497  ENSG00000157578       ENST00000415863 ENSE00001601398
6498  ENSG00000157578       ENST00000415863 ENSE00001655912
6499  ENSG00000157578       ENST00000415863 ENSE00001641048
6500  ENSG00000157578       ENST00000426783 ENSE00001391688
6501  ENSG00000157578       ENST00000426783 ENSE00001367319
6502  ENSG00000157578       ENST00000426783 ENSE00001625544
6503  ENSG00000157578       ENST00000426783 ENSE00001601398
6504  ENSG00000157578       ENST00000426783 ENSE00001655912
6505  ENSG00000157578       ENST00000426783 ENSE00001693947
6506  ENSG00000157578       ENST00000456017 ENSE00001380142
6507  ENSG00000157578       ENST00000456017 ENSE00001698170
6508  ENSG00000157578       ENST00000456017 ENSE00001732749
6509  ENSG00000157578       ENST00000456017 ENSE00001796700
6510  ENSG00000157578       ENST00000456017 ENSE00001645080
6511  ENSG00000157578       ENST00000451131 ENSE00001380142
6512  ENSG00000157578       ENST00000451131 ENSE00001391688
6513  ENSG00000157578       ENST00000451131 ENSE00001613374
6514  ENSG00000157578       ENST00000451131 ENSE00001791403
6515  ENSG00000157578       ENST00000451131 ENSE00001732749
6516  ENSG00000157578       ENST00000451131 ENSE00001605897
6517  ENSG00000157578       ENST00000480612 ENSE00001923238
6518  ENSG00000157578       ENST00000480612 ENSE00001863071
6519  ENSG00000157578       ENST00000380671 ENSE00001033593
6520  ENSG00000157578       ENST00000380671 ENSE00003503789
6521  ENSG00000157578       ENST00000380671 ENSE00003491574
6522  ENSG00000157578       ENST00000380671 ENSE00003604959
6523  ENSG00000157578       ENST00000380671 ENSE00003608880
6524  ENSG00000157578       ENST00000380671 ENSE00001033603
6525  ENSG00000157578       ENST00000380671 ENSE00003733938
6526  ENSG00000279477       ENST00000623518 ENSE00003757180
6527  ENSG00000279477       ENST00000623518 ENSE00003760093
6528  ENSG00000279477       ENST00000623518 ENSE00003760314
6529  ENSG00000279477       ENST00000623518 ENSE00003756126
6530  ENSG00000279477       ENST00000623518 ENSE00003758804
6531  ENSG00000279477       ENST00000623518 ENSE00003759143
6532  ENSG00000279477       ENST00000623518 ENSE00003760299
6533  ENSG00000279477       ENST00000623518 ENSE00003754951
6534  ENSG00000279477       ENST00000623518 ENSE00003758686
6535  ENSG00000223799       ENST00000411998 ENSE00001712553
6536  ENSG00000223799       ENST00000411998 ENSE00001682874
6537  ENSG00000156256       ENST00000485067 ENSE00003506815
6538  ENSG00000156256       ENST00000485067 ENSE00001819682
6539  ENSG00000156256       ENST00000399973 ENSE00003626880
6540  ENSG00000156256       ENST00000399973 ENSE00003638792
6541  ENSG00000156256       ENST00000399973 ENSE00001541048
6542  ENSG00000156256       ENST00000399973 ENSE00001541047
6543  ENSG00000156256       ENST00000399973 ENSE00001541046
6544  ENSG00000156256       ENST00000399976 ENSE00001143616
6545  ENSG00000156256       ENST00000399976 ENSE00003626880
6546  ENSG00000156256       ENST00000399976 ENSE00003638792
6547  ENSG00000156256       ENST00000399976 ENSE00003603870
6548  ENSG00000156256       ENST00000399976 ENSE00003496277
6549  ENSG00000156256       ENST00000399976 ENSE00003525236
6550  ENSG00000156256       ENST00000399976 ENSE00003459896
6551  ENSG00000156256       ENST00000399976 ENSE00003551291
6552  ENSG00000156256       ENST00000399976 ENSE00003551154
6553  ENSG00000156256       ENST00000399976 ENSE00003463886
6554  ENSG00000156256       ENST00000399976 ENSE00001025441
6555  ENSG00000156256       ENST00000399976 ENSE00001025450
6556  ENSG00000156256       ENST00000399976 ENSE00003458546
6557  ENSG00000156256       ENST00000399976 ENSE00003539453
6558  ENSG00000156256       ENST00000399976 ENSE00003514567
6559  ENSG00000156256       ENST00000399976 ENSE00003460845
6560  ENSG00000156256       ENST00000399976 ENSE00003535264
6561  ENSG00000156256       ENST00000399976 ENSE00003520051
6562  ENSG00000156256       ENST00000474835 ENSE00001815863
6563  ENSG00000156256       ENST00000474835 ENSE00003674321
6564  ENSG00000156256       ENST00000474835 ENSE00003515742
6565  ENSG00000156256       ENST00000474835 ENSE00003658533
6566  ENSG00000156256       ENST00000474835 ENSE00003480929
6567  ENSG00000156256       ENST00000474835 ENSE00003567905
6568  ENSG00000156256       ENST00000474835 ENSE00003642376
6569  ENSG00000156256       ENST00000474835 ENSE00003585255
6570  ENSG00000156256       ENST00000474835 ENSE00003547460
6571  ENSG00000156256       ENST00000474835 ENSE00003646567
6572  ENSG00000156256       ENST00000474835 ENSE00003550367
6573  ENSG00000156256       ENST00000474835 ENSE00001824330
6574  ENSG00000156256       ENST00000474835 ENSE00003549861
6575  ENSG00000156256       ENST00000474835 ENSE00003670139
6576  ENSG00000156256       ENST00000474835 ENSE00003674400
6577  ENSG00000156256       ENST00000474835 ENSE00003474183
6578  ENSG00000156256       ENST00000474835 ENSE00003506815
6579  ENSG00000156256       ENST00000334352 ENSE00003626880
6580  ENSG00000156256       ENST00000334352 ENSE00003638792
6581  ENSG00000156256       ENST00000334352 ENSE00003603870
6582  ENSG00000156256       ENST00000334352 ENSE00003496277
6583  ENSG00000156256       ENST00000334352 ENSE00003525236
6584  ENSG00000156256       ENST00000334352 ENSE00003459896
6585  ENSG00000156256       ENST00000334352 ENSE00003551291
6586  ENSG00000156256       ENST00000334352 ENSE00003551154
6587  ENSG00000156256       ENST00000334352 ENSE00003463886
6588  ENSG00000156256       ENST00000334352 ENSE00001025441
6589  ENSG00000156256       ENST00000334352 ENSE00001025450
6590  ENSG00000156256       ENST00000334352 ENSE00003458546
6591  ENSG00000156256       ENST00000334352 ENSE00003539453
6592  ENSG00000156256       ENST00000334352 ENSE00003514567
6593  ENSG00000156256       ENST00000334352 ENSE00003460845
6594  ENSG00000156256       ENST00000334352 ENSE00003535264
6595  ENSG00000156256       ENST00000334352 ENSE00003520051
6596  ENSG00000156256       ENST00000334352 ENSE00001815863
6597  ENSG00000156256       ENST00000334352 ENSE00001493612
6598  ENSG00000156256       ENST00000399975 ENSE00001143616
6599  ENSG00000156256       ENST00000399975 ENSE00003626880
6600  ENSG00000156256       ENST00000399975 ENSE00003638792
6601  ENSG00000156256       ENST00000399975 ENSE00003603870
6602  ENSG00000156256       ENST00000399975 ENSE00003496277
6603  ENSG00000156256       ENST00000399975 ENSE00001541058
6604  ENSG00000156256       ENST00000399975 ENSE00003525236
6605  ENSG00000156256       ENST00000399975 ENSE00003459896
6606  ENSG00000156256       ENST00000399975 ENSE00003551291
6607  ENSG00000156256       ENST00000399975 ENSE00003551154
6608  ENSG00000156256       ENST00000399975 ENSE00003463886
6609  ENSG00000156256       ENST00000399975 ENSE00001025441
6610  ENSG00000156256       ENST00000399975 ENSE00001025450
6611  ENSG00000156256       ENST00000399975 ENSE00003458546
6612  ENSG00000156256       ENST00000399975 ENSE00003539453
6613  ENSG00000156256       ENST00000399975 ENSE00003514567
6614  ENSG00000156256       ENST00000399975 ENSE00003460845
6615  ENSG00000156256       ENST00000399975 ENSE00003535264
6616  ENSG00000205929       ENST00000490358 ENSE00001885790
6617  ENSG00000205929       ENST00000490358 ENSE00003634340
6618  ENSG00000205929       ENST00000490358 ENSE00001958608
6619  ENSG00000205929       ENST00000487113 ENSE00001829713
6620  ENSG00000205929       ENST00000487113 ENSE00001817582
6621  ENSG00000205929       ENST00000382373 ENSE00001491885
6622  ENSG00000205929       ENST00000382373 ENSE00003460207
6623  ENSG00000205929       ENST00000382373 ENSE00001915548
6624  ENSG00000205929       ENST00000479548 ENSE00003634340
6625  ENSG00000205929       ENST00000479548 ENSE00001915744
6626  ENSG00000205929       ENST00000479548 ENSE00001817822
6627  ENSG00000205929       ENST00000479548 ENSE00001491871
6628  ENSG00000223741       ENST00000433951 ENSE00001724634
6629  ENSG00000223741       ENST00000433951 ENSE00001794887
6630  ENSG00000219368       ENST00000406845 ENSE00001548463
6631  ENSG00000223488       ENST00000379571 ENSE00001553831
6632  ENSG00000238265       ENST00000419069 ENSE00001715952
6633  ENSG00000238265       ENST00000419069 ENSE00001759143
6634  ENSG00000238265       ENST00000419069 ENSE00001735958
6635  ENSG00000241945       ENST00000291576 ENSE00001367795
6636  ENSG00000241945       ENST00000291576 ENSE00001177844
6637  ENSG00000241945       ENST00000291576 ENSE00001050676
6638  ENSG00000241945       ENST00000291576 ENSE00001050672
6639  ENSG00000241945       ENST00000291576 ENSE00003579779
6640  ENSG00000241945       ENST00000291576 ENSE00003682861
6641  ENSG00000241945       ENST00000291576 ENSE00003660102
6642  ENSG00000241945       ENST00000291576 ENSE00001050670
6643  ENSG00000241945       ENST00000291576 ENSE00001050681
6644  ENSG00000241945       ENST00000291576 ENSE00001050669
6645  ENSG00000241945       ENST00000291576 ENSE00003612411
6646  ENSG00000241945       ENST00000291576 ENSE00003671210
6647  ENSG00000241945       ENST00000291576 ENSE00001050666
6648  ENSG00000241945       ENST00000291576 ENSE00001050680
6649  ENSG00000241945       ENST00000291576 ENSE00001050675
6650  ENSG00000241945       ENST00000291576 ENSE00003652919
6651  ENSG00000241945       ENST00000291576 ENSE00003469591
6652  ENSG00000241945       ENST00000291576 ENSE00003545412
6653  ENSG00000241945       ENST00000291576 ENSE00003592879
6654  ENSG00000241945       ENST00000291576 ENSE00003554676
6655  ENSG00000241945       ENST00000291576 ENSE00001050684
6656  ENSG00000241945       ENST00000456705 ENSE00001177844
6657  ENSG00000241945       ENST00000456705 ENSE00001050676
6658  ENSG00000241945       ENST00000456705 ENSE00001605720
6659  ENSG00000241945       ENST00000456705 ENSE00003646685
6660  ENSG00000241945       ENST00000456705 ENSE00003465236
6661  ENSG00000241945       ENST00000456705 ENSE00001738496
6662  ENSG00000241945       ENST00000486126 ENSE00001843881
6663  ENSG00000241945       ENST00000486126 ENSE00003485231
6664  ENSG00000241945       ENST00000486126 ENSE00003657793
6665  ENSG00000241945       ENST00000486126 ENSE00001907344
6666  ENSG00000241945       ENST00000471490 ENSE00001914183
6667  ENSG00000241945       ENST00000471490 ENSE00003620555
6668  ENSG00000241945       ENST00000471490 ENSE00003495215
6669  ENSG00000241945       ENST00000471490 ENSE00001899443
6670  ENSG00000241945       ENST00000471490 ENSE00001888031
6671  ENSG00000241945       ENST00000471490 ENSE00001908491
6672  ENSG00000241945       ENST00000494310 ENSE00003693408
6673  ENSG00000241945       ENST00000494310 ENSE00003498598
6674  ENSG00000241945       ENST00000494310 ENSE00001911388
6675  ENSG00000241945       ENST00000494310 ENSE00003535688
6676  ENSG00000241945       ENST00000494310 ENSE00003549438
6677  ENSG00000241945       ENST00000494310 ENSE00001936802
6678  ENSG00000241945       ENST00000476948 ENSE00003549438
6679  ENSG00000241945       ENST00000476948 ENSE00001937792
6680  ENSG00000241945       ENST00000476948 ENSE00001936461
6681  ENSG00000229289       ENST00000424219 ENSE00001764290
6682  ENSG00000229289       ENST00000424219 ENSE00001666620
6683  ENSG00000226818       ENST00000413933 ENSE00001605194
6684  ENSG00000142188       ENST00000484377 ENSE00001882914
6685  ENSG00000142188       ENST00000484377 ENSE00001759214
6686  ENSG00000142188       ENST00000484377 ENSE00001886293
6687  ENSG00000142188       ENST00000484377 ENSE00001780824
6688  ENSG00000142188       ENST00000420455 ENSE00001759214
6689  ENSG00000142188       ENST00000420455 ENSE00001780824
6690  ENSG00000142188       ENST00000420455 ENSE00001710937
6691  ENSG00000142188       ENST00000420455 ENSE00002433737
6692  ENSG00000142188       ENST00000420455 ENSE00002432940
6693  ENSG00000142188       ENST00000420455 ENSE00002464649
6694  ENSG00000142188       ENST00000420455 ENSE00003500050
6695  ENSG00000142188       ENST00000420455 ENSE00003620269
6696  ENSG00000142188       ENST00000420455 ENSE00001728160
6697  ENSG00000142188       ENST00000470682 ENSE00001759214
6698  ENSG00000142188       ENST00000470682 ENSE00001949319
6699  ENSG00000142188       ENST00000470682 ENSE00001931031
6700  ENSG00000142188       ENST00000470682 ENSE00002223591
6701  ENSG00000142188       ENST00000468874 ENSE00001759214
6702  ENSG00000142188       ENST00000468874 ENSE00002223653
6703  ENSG00000142188       ENST00000468874 ENSE00002480117
6704  ENSG00000142188       ENST00000468874 ENSE00001860876
6705  ENSG00000142188       ENST00000542230 ENSE00002433737
6706  ENSG00000142188       ENST00000542230 ENSE00002432940
6707  ENSG00000142188       ENST00000542230 ENSE00002464649
6708  ENSG00000142188       ENST00000542230 ENSE00003500050
6709  ENSG00000142188       ENST00000542230 ENSE00003620269
6710  ENSG00000142188       ENST00000542230 ENSE00001874127
6711  ENSG00000142188       ENST00000542230 ENSE00001490415
6712  ENSG00000142188       ENST00000441128 ENSE00002433737
6713  ENSG00000142188       ENST00000441128 ENSE00003681159
6714  ENSG00000142188       ENST00000441128 ENSE00003527592
6715  ENSG00000142188       ENST00000441128 ENSE00001796225
6716  ENSG00000142188       ENST00000442441 ENSE00002433737
6717  ENSG00000142188       ENST00000442441 ENSE00002432940
6718  ENSG00000142188       ENST00000442441 ENSE00002464649
6719  ENSG00000142188       ENST00000442441 ENSE00003500050
6720  ENSG00000142188       ENST00000442441 ENSE00003527592
6721  ENSG00000142188       ENST00000442441 ENSE00001661237
6722  ENSG00000142188       ENST00000442441 ENSE00001630493
6723  ENSG00000142188       ENST00000442441 ENSE00001733828
6724  ENSG00000142188       ENST00000474272 ENSE00001845831
6725  ENSG00000142188       ENST00000474272 ENSE00001868512
6726  ENSG00000142188       ENST00000432504 ENSE00002433737
6727  ENSG00000142188       ENST00000432504 ENSE00002432940
6728  ENSG00000142188       ENST00000432504 ENSE00001762249
6729  ENSG00000142188       ENST00000432504 ENSE00001725907
6730  ENSG00000142188       ENST00000432504 ENSE00001702748
6731  ENSG00000142188       ENST00000459909 ENSE00001921393
6732  ENSG00000142188       ENST00000459909 ENSE00001931991
6733  ENSG00000184221       ENST00000382348 ENSE00001491811
6734  ENSG00000184221       ENST00000426947 ENSE00001737506
6735  ENSG00000184221       ENST00000426947 ENSE00001636163
6736  ENSG00000184221       ENST00000498799 ENSE00001636163
6737  ENSG00000184221       ENST00000498799 ENSE00001819077
6738  ENSG00000232360       ENST00000427911 ENSE00001675851
6739  ENSG00000232360       ENST00000427911 ENSE00001597049
6740  ENSG00000279709       ENST00000623377 ENSE00003760287
6741  ENSG00000279709       ENST00000623377 ENSE00003755605
6742  ENSG00000279709       ENST00000623377 ENSE00003756426
6743  ENSG00000279709       ENST00000623377 ENSE00003755878
6744  ENSG00000279709       ENST00000623377 ENSE00003755120
6745  ENSG00000279709       ENST00000623377 ENSE00003758733
6746  ENSG00000159267       ENST00000336648 ENSE00001401604
6747  ENSG00000159267       ENST00000336648 ENSE00001282167
6748  ENSG00000159267       ENST00000336648 ENSE00001402516
6749  ENSG00000159267       ENST00000336648 ENSE00001282204
6750  ENSG00000159267       ENST00000336648 ENSE00001044408
6751  ENSG00000159267       ENST00000336648 ENSE00001044404
6752  ENSG00000159267       ENST00000336648 ENSE00001282176
6753  ENSG00000159267       ENST00000336648 ENSE00001108868
6754  ENSG00000159267       ENST00000336648 ENSE00001282128
6755  ENSG00000159267       ENST00000336648 ENSE00001108867
6756  ENSG00000159267       ENST00000336648 ENSE00001108871
6757  ENSG00000159267       ENST00000336648 ENSE00003709295
6758  ENSG00000159267       ENST00000399120 ENSE00001282167
6759  ENSG00000159267       ENST00000399120 ENSE00001282204
6760  ENSG00000159267       ENST00000399120 ENSE00001044408
6761  ENSG00000159267       ENST00000399120 ENSE00001044404
6762  ENSG00000159267       ENST00000399120 ENSE00001282176
6763  ENSG00000159267       ENST00000399120 ENSE00001108868
6764  ENSG00000159267       ENST00000399120 ENSE00001282128
6765  ENSG00000159267       ENST00000399120 ENSE00001108867
6766  ENSG00000159267       ENST00000399120 ENSE00001108871
6767  ENSG00000159267       ENST00000399120 ENSE00001536491
6768  ENSG00000159267       ENST00000399120 ENSE00001536490
6769  ENSG00000159267       ENST00000399120 ENSE00001536488
6770  ENSG00000159267       ENST00000482273 ENSE00001847098
6771  ENSG00000159267       ENST00000482273 ENSE00001897220
6772  ENSG00000159267       ENST00000448340 ENSE00001282167
6773  ENSG00000159267       ENST00000448340 ENSE00001282204
6774  ENSG00000159267       ENST00000448340 ENSE00001644544
6775  ENSG00000159267       ENST00000448340 ENSE00001685793
6776  ENSG00000159267       ENST00000419461 ENSE00001605772
6777  ENSG00000159267       ENST00000419461 ENSE00003793408
6778  ENSG00000159267       ENST00000419461 ENSE00003800504
6779  ENSG00000159267       ENST00000419461 ENSE00001630049
6780  ENSG00000159267       ENST00000427746 ENSE00001282167
6781  ENSG00000159267       ENST00000427746 ENSE00001282204
6782  ENSG00000159267       ENST00000427746 ENSE00001744646
6783  ENSG00000159267       ENST00000427746 ENSE00002506497
6784  ENSG00000159267       ENST00000427746 ENSE00001703983
6785  ENSG00000159267       ENST00000612277 ENSE00001282167
6786  ENSG00000159267       ENST00000612277 ENSE00001402516
6787  ENSG00000159267       ENST00000612277 ENSE00001282204
6788  ENSG00000159267       ENST00000612277 ENSE00001044408
6789  ENSG00000159267       ENST00000612277 ENSE00001044404
6790  ENSG00000159267       ENST00000612277 ENSE00001282176
6791  ENSG00000159267       ENST00000612277 ENSE00001108868
6792  ENSG00000159267       ENST00000612277 ENSE00001282128
6793  ENSG00000159267       ENST00000612277 ENSE00001108867
6794  ENSG00000159267       ENST00000612277 ENSE00001108871
6795  ENSG00000159267       ENST00000612277 ENSE00003709295
6796  ENSG00000159267       ENST00000612277 ENSE00003720755
6797  ENSG00000224269       ENST00000430607 ENSE00001664825
6798  ENSG00000224269       ENST00000430607 ENSE00001641594
6799  ENSG00000280013       ENST00000623928 ENSE00003755553
6800  ENSG00000278884       ENST00000625184 ENSE00003759051
6801  ENSG00000278884       ENST00000625184 ENSE00003755035
6802  ENSG00000156253       ENST00000493196 ENSE00001025429
6803  ENSG00000156253       ENST00000493196 ENSE00003681891
6804  ENSG00000156253       ENST00000493196 ENSE00003647905
6805  ENSG00000156253       ENST00000493196 ENSE00003538911
6806  ENSG00000156253       ENST00000493196 ENSE00001849080
6807  ENSG00000156253       ENST00000486719 ENSE00001918331
6808  ENSG00000156253       ENST00000486719 ENSE00001819118
6809  ENSG00000156253       ENST00000486719 ENSE00003474121
6810  ENSG00000156253       ENST00000486719 ENSE00003646383
6811  ENSG00000156253       ENST00000486719 ENSE00003465328
6812  ENSG00000156253       ENST00000486719 ENSE00001025423
6813  ENSG00000156253       ENST00000286777 ENSE00003474121
6814  ENSG00000156253       ENST00000286777 ENSE00003465328
6815  ENSG00000156253       ENST00000286777 ENSE00001025423
6816  ENSG00000156253       ENST00000286777 ENSE00001951088
6817  ENSG00000156253       ENST00000472184 ENSE00003465328
6818  ENSG00000156253       ENST00000472184 ENSE00001025423
6819  ENSG00000156253       ENST00000472184 ENSE00001815125
6820  ENSG00000156253       ENST00000472184 ENSE00001924738
6821  ENSG00000156253       ENST00000466746 ENSE00001957410
6822  ENSG00000156253       ENST00000466746 ENSE00001934433
6823  ENSG00000156253       ENST00000481411 ENSE00001819118
6824  ENSG00000156253       ENST00000481411 ENSE00001946229
6825  ENSG00000156253       ENST00000481411 ENSE00001847488
6826  ENSG00000156253       ENST00000471269 ENSE00003474121
6827  ENSG00000156253       ENST00000471269 ENSE00003646383
6828  ENSG00000156253       ENST00000471269 ENSE00001929590
6829  ENSG00000156253       ENST00000471269 ENSE00001820085
6830  ENSG00000156253       ENST00000471269 ENSE00001878184
6831  ENSG00000183145       ENST00000485272 ENSE00001882887
6832  ENSG00000183145       ENST00000485272 ENSE00003619477
6833  ENSG00000183145       ENST00000485272 ENSE00003657706
6834  ENSG00000183145       ENST00000485272 ENSE00003468590
6835  ENSG00000183145       ENST00000490393 ENSE00003619477
6836  ENSG00000183145       ENST00000490393 ENSE00003468590
6837  ENSG00000183145       ENST00000490393 ENSE00001833211
6838  ENSG00000183145       ENST00000329553 ENSE00001292766
6839  ENSG00000183145       ENST00000329553 ENSE00003623418
6840  ENSG00000183145       ENST00000329553 ENSE00003508393
6841  ENSG00000183145       ENST00000329553 ENSE00003500060
6842  ENSG00000159263       ENST00000460783 ENSE00001878503
6843  ENSG00000159263       ENST00000460783 ENSE00001818449
6844  ENSG00000159263       ENST00000481185 ENSE00003476435
6845  ENSG00000159263       ENST00000481185 ENSE00003493741
6846  ENSG00000159263       ENST00000481185 ENSE00003604799
6847  ENSG00000159263       ENST00000481185 ENSE00003602705
6848  ENSG00000159263       ENST00000481185 ENSE00003476887
6849  ENSG00000159263       ENST00000481185 ENSE00003560552
6850  ENSG00000159263       ENST00000481185 ENSE00003598751
6851  ENSG00000159263       ENST00000481185 ENSE00003585801
6852  ENSG00000159263       ENST00000481185 ENSE00003679691
6853  ENSG00000159263       ENST00000481185 ENSE00001929256
6854  ENSG00000159263       ENST00000290399 ENSE00003579996
6855  ENSG00000159263       ENST00000290399 ENSE00003635370
6856  ENSG00000159263       ENST00000290399 ENSE00003632648
6857  ENSG00000159263       ENST00000290399 ENSE00003575917
6858  ENSG00000159263       ENST00000290399 ENSE00003558601
6859  ENSG00000159263       ENST00000290399 ENSE00003598947
6860  ENSG00000159263       ENST00000290399 ENSE00003621494
6861  ENSG00000159263       ENST00000290399 ENSE00003474390
6862  ENSG00000159263       ENST00000290399 ENSE00003458994
6863  ENSG00000159263       ENST00000290399 ENSE00001284595
6864  ENSG00000159263       ENST00000290399 ENSE00001044382
6865  ENSG00000159263       ENST00000431229 ENSE00003632648
6866  ENSG00000159263       ENST00000431229 ENSE00003575917
6867  ENSG00000159263       ENST00000431229 ENSE00003558601
6868  ENSG00000159263       ENST00000431229 ENSE00003598947
6869  ENSG00000159263       ENST00000431229 ENSE00003621494
6870  ENSG00000159263       ENST00000431229 ENSE00003474390
6871  ENSG00000159263       ENST00000431229 ENSE00003458994
6872  ENSG00000159263       ENST00000431229 ENSE00001284595
6873  ENSG00000159263       ENST00000431229 ENSE00001596341
6874  ENSG00000159263       ENST00000431229 ENSE00001675188
6875  ENSG00000159263       ENST00000483178 ENSE00001948708
6876  ENSG00000159263       ENST00000483178 ENSE00001886731
6877  ENSG00000231324       ENST00000457669 ENSE00001613818
6878  ENSG00000231324       ENST00000457669 ENSE00001671260
6879  ENSG00000274559       ENST00000464664 ENSE00002211850
6880  ENSG00000226771       ENST00000425058 ENSE00001728521
6881  ENSG00000226771       ENST00000425058 ENSE00001700237
6882  ENSG00000229336       ENST00000282964 ENSE00001759787
6883  ENSG00000230198       ENST00000448908 ENSE00001657492
6884  ENSG00000224141       ENST00000437492 ENSE00001631540
6885  ENSG00000224141       ENST00000437492 ENSE00001764729
6886  ENSG00000224141       ENST00000437492 ENSE00001788014
6887  ENSG00000224141       ENST00000437492 ENSE00001750886
6888  ENSG00000224141       ENST00000355189 ENSE00001764729
6889  ENSG00000224141       ENST00000355189 ENSE00001788014
6890  ENSG00000224141       ENST00000355189 ENSE00001755702
6891  ENSG00000224141       ENST00000355189 ENSE00001518655
6892  ENSG00000224141       ENST00000355189 ENSE00001657136
6893  ENSG00000224141       ENST00000414582 ENSE00001764729
6894  ENSG00000224141       ENST00000414582 ENSE00001627822
6895  ENSG00000224141       ENST00000414582 ENSE00001799906
6896  ENSG00000225218       ENST00000431150 ENSE00001753290
6897  ENSG00000225218       ENST00000431150 ENSE00001683445
6898  ENSG00000225218       ENST00000431150 ENSE00001661955
6899  ENSG00000283051       ENST00000635001 ENSE00003791687
6900  ENSG00000283051       ENST00000635001 ENSE00003787512
6901  ENSG00000283051       ENST00000635001 ENSE00003789768
6902  ENSG00000160284       ENST00000291672 ENSE00001051147
6903  ENSG00000160284       ENST00000291672 ENSE00001309448
6904  ENSG00000160284       ENST00000291672 ENSE00002281221
6905  ENSG00000160284       ENST00000291672 ENSE00003479913
6906  ENSG00000160284       ENST00000291672 ENSE00002117665
6907  ENSG00000160284       ENST00000330205 ENSE00001846176
6908  ENSG00000160284       ENST00000330205 ENSE00003593001
6909  ENSG00000160284       ENST00000330205 ENSE00001051147
6910  ENSG00000160284       ENST00000330205 ENSE00001942963
6911  ENSG00000280109       ENST00000623119 ENSE00003755206
6912  ENSG00000280109       ENST00000624999 ENSE00003758813
6913  ENSG00000205726       ENST00000399353 ENSE00001537709
6914  ENSG00000205726       ENST00000399353 ENSE00003554783
6915  ENSG00000205726       ENST00000399353 ENSE00003636097
6916  ENSG00000205726       ENST00000399353 ENSE00003727180
6917  ENSG00000205726       ENST00000399353 ENSE00003789821
6918  ENSG00000205726       ENST00000399353 ENSE00001701224
6919  ENSG00000205726       ENST00000399353 ENSE00002306218
6920  ENSG00000205726       ENST00000399353 ENSE00003615598
6921  ENSG00000205726       ENST00000399353 ENSE00003660532
6922  ENSG00000205726       ENST00000399353 ENSE00003560708
6923  ENSG00000205726       ENST00000399353 ENSE00003582731
6924  ENSG00000205726       ENST00000399353 ENSE00002289133
6925  ENSG00000205726       ENST00000399353 ENSE00003754038
6926  ENSG00000205726       ENST00000399353 ENSE00003740685
6927  ENSG00000205726       ENST00000399353 ENSE00003748649
6928  ENSG00000205726       ENST00000399353 ENSE00003716255
6929  ENSG00000205726       ENST00000399353 ENSE00003716800
6930  ENSG00000205726       ENST00000399353 ENSE00003722466
6931  ENSG00000205726       ENST00000399353 ENSE00002294975
6932  ENSG00000205726       ENST00000399353 ENSE00003746393
6933  ENSG00000205726       ENST00000399353 ENSE00003629591
6934  ENSG00000205726       ENST00000399353 ENSE00002286409
6935  ENSG00000205726       ENST00000399353 ENSE00003550586
6936  ENSG00000205726       ENST00000399353 ENSE00003559784
6937  ENSG00000205726       ENST00000399353 ENSE00003604372
6938  ENSG00000205726       ENST00000399353 ENSE00003487819
6939  ENSG00000205726       ENST00000399353 ENSE00003694267
6940  ENSG00000205726       ENST00000399353 ENSE00003626830
6941  ENSG00000205726       ENST00000399353 ENSE00001537706
6942  ENSG00000205726       ENST00000444491 ENSE00003554783
6943  ENSG00000205726       ENST00000444491 ENSE00003636097
6944  ENSG00000205726       ENST00000444491 ENSE00003727180
6945  ENSG00000205726       ENST00000444491 ENSE00003789821
6946  ENSG00000205726       ENST00000444491 ENSE00001766438
6947  ENSG00000205726       ENST00000444491 ENSE00001725831
6948  ENSG00000205726       ENST00000444491 ENSE00001784317
6949  ENSG00000205726       ENST00000470742 ENSE00001907792
6950  ENSG00000205726       ENST00000470742 ENSE00003649049
6951  ENSG00000205726       ENST00000470742 ENSE00003617729
6952  ENSG00000205726       ENST00000470742 ENSE00001833384
6953  ENSG00000205726       ENST00000381318 ENSE00003554783
6954  ENSG00000205726       ENST00000381318 ENSE00003636097
6955  ENSG00000205726       ENST00000381318 ENSE00003727180
6956  ENSG00000205726       ENST00000381318 ENSE00003789821
6957  ENSG00000205726       ENST00000381318 ENSE00002306218
6958  ENSG00000205726       ENST00000381318 ENSE00003615598
6959  ENSG00000205726       ENST00000381318 ENSE00003660532
6960  ENSG00000205726       ENST00000381318 ENSE00003560708
6961  ENSG00000205726       ENST00000381318 ENSE00003582731
6962  ENSG00000205726       ENST00000381318 ENSE00002289133
6963  ENSG00000205726       ENST00000381318 ENSE00003754038
6964  ENSG00000205726       ENST00000381318 ENSE00003740685
6965  ENSG00000205726       ENST00000381318 ENSE00003748649
6966  ENSG00000205726       ENST00000381318 ENSE00003716255
6967  ENSG00000205726       ENST00000381318 ENSE00003716800
6968  ENSG00000205726       ENST00000381318 ENSE00003722466
6969  ENSG00000205726       ENST00000381318 ENSE00002294975
6970  ENSG00000205726       ENST00000381318 ENSE00003746393
6971  ENSG00000205726       ENST00000381318 ENSE00003629591
6972  ENSG00000205726       ENST00000381318 ENSE00002286409
6973  ENSG00000205726       ENST00000381318 ENSE00003550586
6974  ENSG00000205726       ENST00000381318 ENSE00003559784
6975  ENSG00000205726       ENST00000381318 ENSE00003604372
6976  ENSG00000205726       ENST00000381318 ENSE00003487819
6977  ENSG00000205726       ENST00000381318 ENSE00003694267
6978  ENSG00000205726       ENST00000381318 ENSE00003626830
6979  ENSG00000205726       ENST00000381318 ENSE00001867436
6980  ENSG00000205726       ENST00000381318 ENSE00003711579
6981  ENSG00000205726       ENST00000381318 ENSE00002528364
6982  ENSG00000205726       ENST00000381318 ENSE00003481950
6983  ENSG00000205726       ENST00000381318 ENSE00003516373
6984  ENSG00000205726       ENST00000381318 ENSE00003644095
6985  ENSG00000205726       ENST00000381318 ENSE00003529805
6986  ENSG00000205726       ENST00000381318 ENSE00003520853
6987  ENSG00000205726       ENST00000381318 ENSE00003507202
6988  ENSG00000205726       ENST00000381318 ENSE00003590878
6989  ENSG00000205726       ENST00000381318 ENSE00003543412
6990  ENSG00000205726       ENST00000381318 ENSE00003535724
6991  ENSG00000205726       ENST00000381318 ENSE00003673780
6992  ENSG00000205726       ENST00000381318 ENSE00001844175
6993  ENSG00000205726       ENST00000381291 ENSE00003554783
6994  ENSG00000205726       ENST00000381291 ENSE00003636097
6995  ENSG00000205726       ENST00000381291 ENSE00003727180
6996  ENSG00000205726       ENST00000381291 ENSE00003789821
6997  ENSG00000205726       ENST00000381291 ENSE00002306218
6998  ENSG00000205726       ENST00000381291 ENSE00003615598
6999  ENSG00000205726       ENST00000381291 ENSE00003660532
7000  ENSG00000205726       ENST00000381291 ENSE00003560708
7001  ENSG00000205726       ENST00000381291 ENSE00003582731
7002  ENSG00000205726       ENST00000381291 ENSE00002289133
7003  ENSG00000205726       ENST00000381291 ENSE00003754038
7004  ENSG00000205726       ENST00000381291 ENSE00003740685
7005  ENSG00000205726       ENST00000381291 ENSE00003748649
7006  ENSG00000205726       ENST00000381291 ENSE00003716255
7007  ENSG00000205726       ENST00000381291 ENSE00003716800
7008  ENSG00000205726       ENST00000381291 ENSE00003722466
7009  ENSG00000205726       ENST00000381291 ENSE00002294975
7010  ENSG00000205726       ENST00000381291 ENSE00003746393
7011  ENSG00000205726       ENST00000381291 ENSE00003629591
7012  ENSG00000205726       ENST00000381291 ENSE00002286409
7013  ENSG00000205726       ENST00000381291 ENSE00003550586
7014  ENSG00000205726       ENST00000381291 ENSE00003559784
7015  ENSG00000205726       ENST00000381291 ENSE00003604372
7016  ENSG00000205726       ENST00000381291 ENSE00003487819
7017  ENSG00000205726       ENST00000381291 ENSE00003694267
7018  ENSG00000205726       ENST00000381291 ENSE00003626830
7019  ENSG00000205726       ENST00000381291 ENSE00003711579
7020  ENSG00000205726       ENST00000381291 ENSE00002528364
7021  ENSG00000205726       ENST00000381291 ENSE00001488097
7022  ENSG00000205726       ENST00000381291 ENSE00001488096
7023  ENSG00000205726       ENST00000399367 ENSE00003554783
7024  ENSG00000205726       ENST00000399367 ENSE00003636097
7025  ENSG00000205726       ENST00000399367 ENSE00003727180
7026  ENSG00000205726       ENST00000399367 ENSE00003789821
7027  ENSG00000205726       ENST00000399367 ENSE00002306218
7028  ENSG00000205726       ENST00000399367 ENSE00003615598
7029  ENSG00000205726       ENST00000399367 ENSE00003660532
7030  ENSG00000205726       ENST00000399367 ENSE00003560708
7031  ENSG00000205726       ENST00000399367 ENSE00003582731
7032  ENSG00000205726       ENST00000399367 ENSE00002289133
7033  ENSG00000205726       ENST00000399367 ENSE00003754038
7034  ENSG00000205726       ENST00000399367 ENSE00003740685
7035  ENSG00000205726       ENST00000399367 ENSE00003748649
7036  ENSG00000205726       ENST00000399367 ENSE00003716255
7037  ENSG00000205726       ENST00000399367 ENSE00003716800
7038  ENSG00000205726       ENST00000399367 ENSE00003722466
7039  ENSG00000205726       ENST00000399367 ENSE00002294975
7040  ENSG00000205726       ENST00000399367 ENSE00003746393
7041  ENSG00000205726       ENST00000399367 ENSE00003629591
7042  ENSG00000205726       ENST00000399367 ENSE00002286409
7043  ENSG00000205726       ENST00000399367 ENSE00003550586
7044  ENSG00000205726       ENST00000399367 ENSE00003559784
7045  ENSG00000205726       ENST00000399367 ENSE00003604372
7046  ENSG00000205726       ENST00000399367 ENSE00003487819
7047  ENSG00000205726       ENST00000399367 ENSE00003694267
7048  ENSG00000205726       ENST00000399367 ENSE00003626830
7049  ENSG00000205726       ENST00000399367 ENSE00003711579
7050  ENSG00000205726       ENST00000399367 ENSE00003481950
7051  ENSG00000205726       ENST00000399367 ENSE00003516373
7052  ENSG00000205726       ENST00000399367 ENSE00003644095
7053  ENSG00000205726       ENST00000399367 ENSE00003529805
7054  ENSG00000205726       ENST00000399367 ENSE00003520853
7055  ENSG00000205726       ENST00000399367 ENSE00003507202
7056  ENSG00000205726       ENST00000399367 ENSE00003590878
7057  ENSG00000205726       ENST00000399367 ENSE00003543412
7058  ENSG00000205726       ENST00000399367 ENSE00003535724
7059  ENSG00000205726       ENST00000399367 ENSE00003673780
7060  ENSG00000205726       ENST00000399367 ENSE00001837439
7061  ENSG00000205726       ENST00000399367 ENSE00001937188
7062  ENSG00000205726       ENST00000399352 ENSE00003554783
7063  ENSG00000205726       ENST00000399352 ENSE00003636097
7064  ENSG00000205726       ENST00000399352 ENSE00003727180
7065  ENSG00000205726       ENST00000399352 ENSE00003789821
7066  ENSG00000205726       ENST00000399352 ENSE00002306218
7067  ENSG00000205726       ENST00000399352 ENSE00003615598
7068  ENSG00000205726       ENST00000399352 ENSE00003660532
7069  ENSG00000205726       ENST00000399352 ENSE00003560708
7070  ENSG00000205726       ENST00000399352 ENSE00003582731
7071  ENSG00000205726       ENST00000399352 ENSE00002289133
7072  ENSG00000205726       ENST00000399352 ENSE00003754038
7073  ENSG00000205726       ENST00000399352 ENSE00003740685
7074  ENSG00000205726       ENST00000399352 ENSE00003748649
7075  ENSG00000205726       ENST00000399352 ENSE00003716255
7076  ENSG00000205726       ENST00000399352 ENSE00003716800
7077  ENSG00000205726       ENST00000399352 ENSE00003722466
7078  ENSG00000205726       ENST00000399352 ENSE00002294975
7079  ENSG00000205726       ENST00000399352 ENSE00003746393
7080  ENSG00000205726       ENST00000399352 ENSE00003629591
7081  ENSG00000205726       ENST00000399352 ENSE00002286409
7082  ENSG00000205726       ENST00000399352 ENSE00003550586
7083  ENSG00000205726       ENST00000399352 ENSE00003559784
7084  ENSG00000205726       ENST00000399352 ENSE00003604372
7085  ENSG00000205726       ENST00000399352 ENSE00003487819
7086  ENSG00000205726       ENST00000399352 ENSE00003694267
7087  ENSG00000205726       ENST00000399352 ENSE00003626830
7088  ENSG00000205726       ENST00000399352 ENSE00003711579
7089  ENSG00000205726       ENST00000399352 ENSE00001537699
7090  ENSG00000205726       ENST00000399352 ENSE00001537698
7091  ENSG00000205726       ENST00000399355 ENSE00003554783
7092  ENSG00000205726       ENST00000399355 ENSE00003636097
7093  ENSG00000205726       ENST00000399355 ENSE00003727180
7094  ENSG00000205726       ENST00000399355 ENSE00003789821
7095  ENSG00000205726       ENST00000399355 ENSE00002306218
7096  ENSG00000205726       ENST00000399355 ENSE00003615598
7097  ENSG00000205726       ENST00000399355 ENSE00003660532
7098  ENSG00000205726       ENST00000399355 ENSE00003560708
7099  ENSG00000205726       ENST00000399355 ENSE00003582731
7100  ENSG00000205726       ENST00000399355 ENSE00002289133
7101  ENSG00000205726       ENST00000399355 ENSE00003754038
7102  ENSG00000205726       ENST00000399355 ENSE00003740685
7103  ENSG00000205726       ENST00000399355 ENSE00003748649
7104  ENSG00000205726       ENST00000399355 ENSE00003716255
7105  ENSG00000205726       ENST00000399355 ENSE00003716800
7106  ENSG00000205726       ENST00000399355 ENSE00003722466
7107  ENSG00000205726       ENST00000399355 ENSE00002294975
7108  ENSG00000205726       ENST00000399355 ENSE00003746393
7109  ENSG00000205726       ENST00000399355 ENSE00003629591
7110  ENSG00000205726       ENST00000399355 ENSE00002286409
7111  ENSG00000205726       ENST00000399355 ENSE00003550586
7112  ENSG00000205726       ENST00000399355 ENSE00003487819
7113  ENSG00000205726       ENST00000399355 ENSE00003694267
7114  ENSG00000205726       ENST00000399355 ENSE00003626830
7115  ENSG00000205726       ENST00000399355 ENSE00003711579
7116  ENSG00000205726       ENST00000399355 ENSE00002528364
7117  ENSG00000205726       ENST00000399355 ENSE00001537694
7118  ENSG00000205726       ENST00000399355 ENSE00001682575
7119  ENSG00000205726       ENST00000399349 ENSE00003554783
7120  ENSG00000205726       ENST00000399349 ENSE00003636097
7121  ENSG00000205726       ENST00000399349 ENSE00003727180
7122  ENSG00000205726       ENST00000399349 ENSE00003789821
7123  ENSG00000205726       ENST00000399349 ENSE00002306218
7124  ENSG00000205726       ENST00000399349 ENSE00003615598
7125  ENSG00000205726       ENST00000399349 ENSE00003660532
7126  ENSG00000205726       ENST00000399349 ENSE00003560708
7127  ENSG00000205726       ENST00000399349 ENSE00003582731
7128  ENSG00000205726       ENST00000399349 ENSE00002289133
7129  ENSG00000205726       ENST00000399349 ENSE00003754038
7130  ENSG00000205726       ENST00000399349 ENSE00003740685
7131  ENSG00000205726       ENST00000399349 ENSE00003748649
7132  ENSG00000205726       ENST00000399349 ENSE00003716255
7133  ENSG00000205726       ENST00000399349 ENSE00003716800
7134  ENSG00000205726       ENST00000399349 ENSE00003722466
7135  ENSG00000205726       ENST00000399349 ENSE00002294975
7136  ENSG00000205726       ENST00000399349 ENSE00003746393
7137  ENSG00000205726       ENST00000399349 ENSE00003629591
7138  ENSG00000205726       ENST00000399349 ENSE00002286409
7139  ENSG00000205726       ENST00000399349 ENSE00003550586
7140  ENSG00000205726       ENST00000399349 ENSE00003487819
7141  ENSG00000205726       ENST00000399349 ENSE00003694267
7142  ENSG00000205726       ENST00000399349 ENSE00003626830
7143  ENSG00000205726       ENST00000399349 ENSE00003711579
7144  ENSG00000205726       ENST00000399349 ENSE00001537694
7145  ENSG00000205726       ENST00000399349 ENSE00001537693
7146  ENSG00000205726       ENST00000451686 ENSE00003554783
7147  ENSG00000205726       ENST00000451686 ENSE00003636097
7148  ENSG00000205726       ENST00000451686 ENSE00003727180
7149  ENSG00000205726       ENST00000451686 ENSE00001725831
7150  ENSG00000205726       ENST00000451686 ENSE00001764225
7151  ENSG00000205726       ENST00000451686 ENSE00001713722
7152  ENSG00000205726       ENST00000381283 ENSE00003554783
7153  ENSG00000205726       ENST00000381283 ENSE00003636097
7154  ENSG00000205726       ENST00000381283 ENSE00003727180
7155  ENSG00000205726       ENST00000381283 ENSE00003789821
7156  ENSG00000205726       ENST00000381283 ENSE00002306218
7157  ENSG00000205726       ENST00000381283 ENSE00003615598
7158  ENSG00000205726       ENST00000381283 ENSE00003660532
7159  ENSG00000205726       ENST00000381283 ENSE00003560708
7160  ENSG00000205726       ENST00000381283 ENSE00003582731
7161  ENSG00000205726       ENST00000381283 ENSE00001754766
7162  ENSG00000205726       ENST00000456489 ENSE00001778198
7163  ENSG00000205726       ENST00000456489 ENSE00001696492
7164  ENSG00000205726       ENST00000488166 ENSE00003508603
7165  ENSG00000205726       ENST00000488166 ENSE00003583157
7166  ENSG00000205726       ENST00000488166 ENSE00003632990
7167  ENSG00000205726       ENST00000488166 ENSE00003505623
7168  ENSG00000205726       ENST00000488166 ENSE00001872002
7169  ENSG00000205726       ENST00000488166 ENSE00001857476
7170  ENSG00000205726       ENST00000488166 ENSE00001911086
7171  ENSG00000205726       ENST00000474132 ENSE00001815146
7172  ENSG00000205726       ENST00000474132 ENSE00001911561
7173  ENSG00000205726       ENST00000419241 ENSE00002294975
7174  ENSG00000205726       ENST00000419241 ENSE00003490444
7175  ENSG00000205726       ENST00000419241 ENSE00001658212
7176  ENSG00000205726       ENST00000419241 ENSE00002521154
7177  ENSG00000205726       ENST00000419241 ENSE00003597769
7178  ENSG00000205726       ENST00000419241 ENSE00001632947
7179  ENSG00000205726       ENST00000440794 ENSE00003746393
7180  ENSG00000205726       ENST00000440794 ENSE00003629591
7181  ENSG00000205726       ENST00000440794 ENSE00002528364
7182  ENSG00000205726       ENST00000440794 ENSE00002510832
7183  ENSG00000205726       ENST00000440794 ENSE00001653730
7184  ENSG00000205726       ENST00000465143 ENSE00002525954
7185  ENSG00000205726       ENST00000465143 ENSE00001949525
7186  ENSG00000205726       ENST00000487427 ENSE00003459835
7187  ENSG00000205726       ENST00000487427 ENSE00001874278
7188  ENSG00000205726       ENST00000487427 ENSE00003463149
7189  ENSG00000205726       ENST00000487427 ENSE00003617459
7190  ENSG00000205726       ENST00000487427 ENSE00002233835
7191  ENSG00000205726       ENST00000437126 ENSE00003550586
7192  ENSG00000205726       ENST00000437126 ENSE00003615431
7193  ENSG00000205726       ENST00000437126 ENSE00001780124
7194  ENSG00000205726       ENST00000437126 ENSE00003654428
7195  ENSG00000205726       ENST00000437126 ENSE00001766726
7196  ENSG00000205726       ENST00000437126 ENSE00001602683
7197  ENSG00000205726       ENST00000428240 ENSE00003459835
7198  ENSG00000205726       ENST00000428240 ENSE00003617459
7199  ENSG00000205726       ENST00000428240 ENSE00001645690
7200  ENSG00000205726       ENST00000428240 ENSE00001778723
7201  ENSG00000205726       ENST00000472548 ENSE00003615431
7202  ENSG00000205726       ENST00000472548 ENSE00003641021
7203  ENSG00000205726       ENST00000472548 ENSE00003497810
7204  ENSG00000205726       ENST00000472548 ENSE00001924934
7205  ENSG00000205726       ENST00000472548 ENSE00001924956
7206  ENSG00000205726       ENST00000479424 ENSE00003615431
7207  ENSG00000205726       ENST00000479424 ENSE00003641021
7208  ENSG00000205726       ENST00000479424 ENSE00003497810
7209  ENSG00000205726       ENST00000479424 ENSE00001924956
7210  ENSG00000205726       ENST00000479424 ENSE00001901752
7211  ENSG00000205726       ENST00000462212 ENSE00003641021
7212  ENSG00000205726       ENST00000462212 ENSE00003497810
7213  ENSG00000205726       ENST00000462212 ENSE00001924956
7214  ENSG00000205726       ENST00000462212 ENSE00001879685
7215  ENSG00000205726       ENST00000495656 ENSE00003615431
7216  ENSG00000205726       ENST00000495656 ENSE00003641021
7217  ENSG00000205726       ENST00000495656 ENSE00003497810
7218  ENSG00000205726       ENST00000495656 ENSE00001924934
7219  ENSG00000205726       ENST00000495656 ENSE00001828929
7220  ENSG00000205726       ENST00000475422 ENSE00001879685
7221  ENSG00000205726       ENST00000475422 ENSE00001828929
7222  ENSG00000205726       ENST00000489261 ENSE00003641021
7223  ENSG00000205726       ENST00000489261 ENSE00003497810
7224  ENSG00000205726       ENST00000489261 ENSE00001879685
7225  ENSG00000205726       ENST00000489261 ENSE00001828929
7226  ENSG00000205726       ENST00000381284 ENSE00003644095
7227  ENSG00000205726       ENST00000381284 ENSE00003529805
7228  ENSG00000205726       ENST00000381284 ENSE00003507202
7229  ENSG00000205726       ENST00000381284 ENSE00003590878
7230  ENSG00000205726       ENST00000381284 ENSE00003543412
7231  ENSG00000205726       ENST00000381284 ENSE00003535724
7232  ENSG00000205726       ENST00000381284 ENSE00001759724
7233  ENSG00000205726       ENST00000381284 ENSE00001794822
7234  ENSG00000205726       ENST00000420666 ENSE00001678440
7235  ENSG00000205726       ENST00000420666 ENSE00003672211
7236  ENSG00000205726       ENST00000420666 ENSE00003523032
7237  ENSG00000205726       ENST00000420666 ENSE00001623875
7238  ENSG00000205726       ENST00000415023 ENSE00003590878
7239  ENSG00000205726       ENST00000415023 ENSE00003543412
7240  ENSG00000205726       ENST00000415023 ENSE00003535724
7241  ENSG00000205726       ENST00000415023 ENSE00001794822
7242  ENSG00000205726       ENST00000415023 ENSE00001698022
7243  ENSG00000205726       ENST00000379960 ENSE00002306218
7244  ENSG00000205726       ENST00000379960 ENSE00003615598
7245  ENSG00000205726       ENST00000379960 ENSE00003660532
7246  ENSG00000205726       ENST00000379960 ENSE00003560708
7247  ENSG00000205726       ENST00000379960 ENSE00003582731
7248  ENSG00000205726       ENST00000379960 ENSE00003731962
7249  ENSG00000205726       ENST00000379960 ENSE00003717171
7250  ENSG00000205726       ENST00000379960 ENSE00003728232
7251  ENSG00000205726       ENST00000379960 ENSE00003726732
7252  ENSG00000205726       ENST00000379960 ENSE00003736560
7253  ENSG00000205726       ENST00000379960 ENSE00003731102
7254  ENSG00000205726       ENST00000379960 ENSE00002230721
7255  ENSG00000205726       ENST00000379960 ENSE00003720754
7256  ENSG00000205726       ENST00000379960 ENSE00003490444
7257  ENSG00000205726       ENST00000379960 ENSE00003750025
7258  ENSG00000205726       ENST00000379960 ENSE00003459835
7259  ENSG00000205726       ENST00000379960 ENSE00003641021
7260  ENSG00000205726       ENST00000379960 ENSE00003715155
7261  ENSG00000205726       ENST00000379960 ENSE00003717775
7262  ENSG00000205726       ENST00000379960 ENSE00003719460
7263  ENSG00000205726       ENST00000381285 ENSE00003554783
7264  ENSG00000205726       ENST00000381285 ENSE00003636097
7265  ENSG00000205726       ENST00000381285 ENSE00003727180
7266  ENSG00000205726       ENST00000381285 ENSE00003789821
7267  ENSG00000205726       ENST00000381285 ENSE00001701224
7268  ENSG00000205726       ENST00000381285 ENSE00002306218
7269  ENSG00000205726       ENST00000381285 ENSE00003615598
7270  ENSG00000205726       ENST00000381285 ENSE00003660532
7271  ENSG00000205726       ENST00000381285 ENSE00003560708
7272  ENSG00000205726       ENST00000381285 ENSE00003582731
7273  ENSG00000205726       ENST00000381285 ENSE00002289133
7274  ENSG00000205726       ENST00000381285 ENSE00003754038
7275  ENSG00000205726       ENST00000381285 ENSE00003740685
7276  ENSG00000205726       ENST00000381285 ENSE00003748649
7277  ENSG00000205726       ENST00000381285 ENSE00003716255
7278  ENSG00000205726       ENST00000381285 ENSE00003716800
7279  ENSG00000205726       ENST00000381285 ENSE00003722466
7280  ENSG00000205726       ENST00000381285 ENSE00002294975
7281  ENSG00000205726       ENST00000381285 ENSE00003746393
7282  ENSG00000205726       ENST00000381285 ENSE00003629591
7283  ENSG00000205726       ENST00000381285 ENSE00001488097
7284  ENSG00000205726       ENST00000381285 ENSE00003615431
7285  ENSG00000205726       ENST00000381285 ENSE00003641021
7286  ENSG00000205726       ENST00000381285 ENSE00003497810
7287  ENSG00000205726       ENST00000381285 ENSE00003463149
7288  ENSG00000205726       ENST00000381285 ENSE00003617459
7289  ENSG00000205726       ENST00000381285 ENSE00003523032
7290  ENSG00000205726       ENST00000381285 ENSE00003512396
7291  ENSG00000205726       ENST00000381285 ENSE00003522306
7292  ENSG00000205726       ENST00000381285 ENSE00003663309
7293  ENSG00000205726       ENST00000381285 ENSE00003521528
7294  ENSG00000205726       ENST00000381285 ENSE00003581231
7295  ENSG00000205726       ENST00000381285 ENSE00003519879
7296  ENSG00000205726       ENST00000381285 ENSE00003584313
7297  ENSG00000205726       ENST00000381285 ENSE00003675722
7298  ENSG00000205726       ENST00000381285 ENSE00003571526
7299  ENSG00000205726       ENST00000381285 ENSE00003682629
7300  ENSG00000205726       ENST00000381285 ENSE00001664654
7301  ENSG00000205726       ENST00000399338 ENSE00003636097
7302  ENSG00000205726       ENST00000399338 ENSE00003727180
7303  ENSG00000205726       ENST00000399338 ENSE00003789821
7304  ENSG00000205726       ENST00000399338 ENSE00002306218
7305  ENSG00000205726       ENST00000399338 ENSE00003615598
7306  ENSG00000205726       ENST00000399338 ENSE00003660532
7307  ENSG00000205726       ENST00000399338 ENSE00003560708
7308  ENSG00000205726       ENST00000399338 ENSE00003582731
7309  ENSG00000205726       ENST00000399338 ENSE00002289133
7310  ENSG00000205726       ENST00000399338 ENSE00003754038
7311  ENSG00000205726       ENST00000399338 ENSE00003740685
7312  ENSG00000205726       ENST00000399338 ENSE00003748649
7313  ENSG00000205726       ENST00000399338 ENSE00003716255
7314  ENSG00000205726       ENST00000399338 ENSE00003716800
7315  ENSG00000205726       ENST00000399338 ENSE00003722466
7316  ENSG00000205726       ENST00000399338 ENSE00002294975
7317  ENSG00000205726       ENST00000399338 ENSE00003746393
7318  ENSG00000205726       ENST00000399338 ENSE00003629591
7319  ENSG00000205726       ENST00000399338 ENSE00003711579
7320  ENSG00000205726       ENST00000399338 ENSE00002220213
7321  ENSG00000205726       ENST00000399338 ENSE00001719494
7322  ENSG00000279967       ENST00000624806 ENSE00003758113
7323  ENSG00000226543       ENST00000449877 ENSE00001599627
7324  ENSG00000275139       ENST00000617854 ENSE00003716006
7325  ENSG00000280604       ENST00000626237 ENSE00003774066
7326  ENSG00000280604       ENST00000626237 ENSE00003763886
7327  ENSG00000280604       ENST00000626237 ENSE00003760972
7328  ENSG00000166265       ENST00000299340 ENSE00001949957
7329  ENSG00000166265       ENST00000299340 ENSE00001101546
7330  ENSG00000166265       ENST00000299340 ENSE00003694569
7331  ENSG00000166265       ENST00000299340 ENSE00001149319
7332  ENSG00000166265       ENST00000400043 ENSE00001101546
7333  ENSG00000166265       ENST00000400043 ENSE00003694569
7334  ENSG00000166265       ENST00000400043 ENSE00001823282
7335  ENSG00000166265       ENST00000400043 ENSE00001674139
7336  ENSG00000232692       ENST00000429340 ENSE00001732848
7337  ENSG00000232692       ENST00000429340 ENSE00001790439
7338  ENSG00000232692       ENST00000429340 ENSE00001596262
7339  ENSG00000232692       ENST00000429340 ENSE00001635399
7340  ENSG00000232692       ENST00000429340 ENSE00001693292
7341  ENSG00000232692       ENST00000429340 ENSE00001737734
7342  ENSG00000232692       ENST00000452460 ENSE00001597055
7343  ENSG00000232692       ENST00000452460 ENSE00001675911
7344  ENSG00000232692       ENST00000452460 ENSE00001782152
7345  ENSG00000232692       ENST00000452460 ENSE00001773943
7346  ENSG00000232692       ENST00000421771 ENSE00001750896
7347  ENSG00000232692       ENST00000421771 ENSE00001729877
7348  ENSG00000232692       ENST00000444306 ENSE00001791544
7349  ENSG00000232692       ENST00000444306 ENSE00001721258
7350  ENSG00000228600       ENST00000453699 ENSE00001625311
7351  ENSG00000237138       ENST00000437109 ENSE00001717018
7352  ENSG00000237138       ENST00000437109 ENSE00001593911
7353  ENSG00000142149       ENST00000270112 ENSE00001191626
7354  ENSG00000142149       ENST00000270112 ENSE00001025755
7355  ENSG00000142149       ENST00000270112 ENSE00000952493
7356  ENSG00000142149       ENST00000270112 ENSE00000952494
7357  ENSG00000142149       ENST00000270112 ENSE00000952495
7358  ENSG00000142149       ENST00000270112 ENSE00001025758
7359  ENSG00000142149       ENST00000270112 ENSE00001025754
7360  ENSG00000142149       ENST00000270112 ENSE00003547885
7361  ENSG00000142149       ENST00000270112 ENSE00003508200
7362  ENSG00000142149       ENST00000270112 ENSE00001025753
7363  ENSG00000142149       ENST00000270112 ENSE00001191620
7364  ENSG00000142149       ENST00000430354 ENSE00000952493
7365  ENSG00000142149       ENST00000430354 ENSE00000952494
7366  ENSG00000142149       ENST00000430354 ENSE00001716705
7367  ENSG00000142149       ENST00000430354 ENSE00001601286
7368  ENSG00000142149       ENST00000465574 ENSE00001853426
7369  ENSG00000142149       ENST00000465574 ENSE00003653371
7370  ENSG00000142149       ENST00000465574 ENSE00003605677
7371  ENSG00000142149       ENST00000465574 ENSE00001863134
7372  ENSG00000142149       ENST00000439107 ENSE00003547885
7373  ENSG00000142149       ENST00000439107 ENSE00003508200
7374  ENSG00000142149       ENST00000439107 ENSE00001025753
7375  ENSG00000142149       ENST00000439107 ENSE00001624651
7376  ENSG00000142149       ENST00000439107 ENSE00001802814
7377  ENSG00000223806       ENST00000448579 ENSE00001738568
7378  ENSG00000223806       ENST00000448579 ENSE00001785567
7379  ENSG00000223806       ENST00000448579 ENSE00001662035
7380  ENSG00000223806       ENST00000448579 ENSE00001660742
7381  ENSG00000223806       ENST00000448579 ENSE00001610560
7382  ENSG00000223806       ENST00000411989 ENSE00001738568
7383  ENSG00000223806       ENST00000411989 ENSE00001660742
7384  ENSG00000223806       ENST00000411989 ENSE00001610560
7385  ENSG00000223806       ENST00000411989 ENSE00001640534
7386  ENSG00000223806       ENST00000429621 ENSE00002495358
7387  ENSG00000223806       ENST00000429621 ENSE00001738568
7388  ENSG00000223806       ENST00000429621 ENSE00001662035
7389  ENSG00000223806       ENST00000429621 ENSE00001660742
7390  ENSG00000223806       ENST00000429621 ENSE00001610560
7391  ENSG00000223806       ENST00000429621 ENSE00001634264
7392  ENSG00000278927       ENST00000623896 ENSE00003757836
7393  ENSG00000278927       ENST00000623896 ENSE00003757781
7394  ENSG00000278927       ENST00000623896 ENSE00003755470
7395  ENSG00000159110       ENST00000382264 ENSE00001918565
7396  ENSG00000159110       ENST00000382264 ENSE00003660426
7397  ENSG00000159110       ENST00000382264 ENSE00003535341
7398  ENSG00000159110       ENST00000382264 ENSE00003620483
7399  ENSG00000159110       ENST00000382264 ENSE00001733110
7400  ENSG00000159110       ENST00000382264 ENSE00003787406
7401  ENSG00000159110       ENST00000382264 ENSE00003542940
7402  ENSG00000159110       ENST00000382264 ENSE00003650647
7403  ENSG00000159110       ENST00000382264 ENSE00001491486
7404  ENSG00000159110       ENST00000404220 ENSE00003535341
7405  ENSG00000159110       ENST00000404220 ENSE00003620483
7406  ENSG00000159110       ENST00000404220 ENSE00001733110
7407  ENSG00000159110       ENST00000404220 ENSE00003787406
7408  ENSG00000159110       ENST00000404220 ENSE00003542940
7409  ENSG00000159110       ENST00000404220 ENSE00003650647
7410  ENSG00000159110       ENST00000404220 ENSE00001881451
7411  ENSG00000159110       ENST00000404220 ENSE00001366893
7412  ENSG00000159110       ENST00000404220 ENSE00001862690
7413  ENSG00000159110       ENST00000342136 ENSE00003535341
7414  ENSG00000159110       ENST00000342136 ENSE00003620483
7415  ENSG00000159110       ENST00000342136 ENSE00001733110
7416  ENSG00000159110       ENST00000342136 ENSE00003787406
7417  ENSG00000159110       ENST00000342136 ENSE00003542940
7418  ENSG00000159110       ENST00000342136 ENSE00003650647
7419  ENSG00000159110       ENST00000342136 ENSE00001366893
7420  ENSG00000159110       ENST00000342136 ENSE00001384199
7421  ENSG00000159110       ENST00000342136 ENSE00003460001
7422  ENSG00000159110       ENST00000420068 ENSE00001776929
7423  ENSG00000159110       ENST00000420068 ENSE00003531736
7424  ENSG00000159110       ENST00000420068 ENSE00003484390
7425  ENSG00000159110       ENST00000420068 ENSE00001734372
7426  ENSG00000159110       ENST00000342101 ENSE00003535341
7427  ENSG00000159110       ENST00000342101 ENSE00003620483
7428  ENSG00000159110       ENST00000342101 ENSE00001733110
7429  ENSG00000159110       ENST00000342101 ENSE00003787406
7430  ENSG00000159110       ENST00000342101 ENSE00003542940
7431  ENSG00000159110       ENST00000342101 ENSE00001366893
7432  ENSG00000159110       ENST00000342101 ENSE00001491360
7433  ENSG00000159110       ENST00000342101 ENSE00003581056
7434  ENSG00000159110       ENST00000382238 ENSE00003660426
7435  ENSG00000159110       ENST00000382238 ENSE00003535341
7436  ENSG00000159110       ENST00000382238 ENSE00003620483
7437  ENSG00000159110       ENST00000382238 ENSE00001733110
7438  ENSG00000159110       ENST00000382238 ENSE00003787406
7439  ENSG00000159110       ENST00000382238 ENSE00001434457
7440  ENSG00000159110       ENST00000382238 ENSE00003595336
7441  ENSG00000159110       ENST00000382238 ENSE00003477776
7442  ENSG00000159110       ENST00000382238 ENSE00003606777
7443  ENSG00000159110       ENST00000382238 ENSE00003547857
7444  ENSG00000159110       ENST00000413881 ENSE00001733110
7445  ENSG00000159110       ENST00000413881 ENSE00003787406
7446  ENSG00000159110       ENST00000413881 ENSE00003542940
7447  ENSG00000159110       ENST00000413881 ENSE00001635653
7448  ENSG00000159110       ENST00000413881 ENSE00003471951
7449  ENSG00000159110       ENST00000413881 ENSE00003475234
7450  ENSG00000159110       ENST00000443073 ENSE00001733110
7451  ENSG00000159110       ENST00000443073 ENSE00003787406
7452  ENSG00000159110       ENST00000443073 ENSE00003542940
7453  ENSG00000159110       ENST00000443073 ENSE00003650647
7454  ENSG00000159110       ENST00000443073 ENSE00001635653
7455  ENSG00000159110       ENST00000443073 ENSE00003471951
7456  ENSG00000159110       ENST00000443073 ENSE00003557392
7457  ENSG00000159110       ENST00000447980 ENSE00003535341
7458  ENSG00000159110       ENST00000447980 ENSE00003620483
7459  ENSG00000159110       ENST00000447980 ENSE00001733110
7460  ENSG00000159110       ENST00000447980 ENSE00003787406
7461  ENSG00000159110       ENST00000447980 ENSE00001635967
7462  ENSG00000159110       ENST00000447980 ENSE00003630943
7463  ENSG00000159110       ENST00000417007 ENSE00003595336
7464  ENSG00000159110       ENST00000417007 ENSE00003477776
7465  ENSG00000159110       ENST00000417007 ENSE00003606777
7466  ENSG00000159110       ENST00000417007 ENSE00001644621
7467  ENSG00000159110       ENST00000417007 ENSE00001666549
7468  ENSG00000225331       ENST00000411694 ENSE00001708764
7469  ENSG00000225331       ENST00000411694 ENSE00001605988
7470  ENSG00000225331       ENST00000424921 ENSE00001728626
7471  ENSG00000225331       ENST00000424921 ENSE00001690812
7472  ENSG00000225331       ENST00000424921 ENSE00001634931
7473  ENSG00000274276       ENST00000624691 ENSE00003756584
7474  ENSG00000274276       ENST00000624691 ENSE00003758366
7475  ENSG00000274276       ENST00000624691 ENSE00003759969
7476  ENSG00000274276       ENST00000624691 ENSE00003756688
7477  ENSG00000274276       ENST00000624691 ENSE00003756870
7478  ENSG00000274276       ENST00000624691 ENSE00003758226
7479  ENSG00000274276       ENST00000624691 ENSE00003760060
7480  ENSG00000274276       ENST00000624691 ENSE00003758069
7481  ENSG00000274276       ENST00000624691 ENSE00003758296
7482  ENSG00000274276       ENST00000624691 ENSE00003755191
7483  ENSG00000274276       ENST00000624691 ENSE00003755577
7484  ENSG00000274276       ENST00000624691 ENSE00003756767
7485  ENSG00000274276       ENST00000624691 ENSE00003757326
7486  ENSG00000274276       ENST00000624691 ENSE00003757429
7487  ENSG00000274276       ENST00000624406 ENSE00003755056
7488  ENSG00000274276       ENST00000624406 ENSE00003760135
7489  ENSG00000274276       ENST00000624406 ENSE00003733879
7490  ENSG00000274276       ENST00000624406 ENSE00003743930
7491  ENSG00000274276       ENST00000624406 ENSE00003734019
7492  ENSG00000274276       ENST00000624406 ENSE00003745764
7493  ENSG00000274276       ENST00000624406 ENSE00003736081
7494  ENSG00000274276       ENST00000624406 ENSE00003749155
7495  ENSG00000274276       ENST00000624406 ENSE00003729930
7496  ENSG00000274276       ENST00000624406 ENSE00003724250
7497  ENSG00000274276       ENST00000624406 ENSE00003742762
7498  ENSG00000274276       ENST00000624406 ENSE00003719221
7499  ENSG00000274276       ENST00000624406 ENSE00003746144
7500  ENSG00000274276       ENST00000624406 ENSE00003743266
7501  ENSG00000274276       ENST00000624406 ENSE00003747262
7502  ENSG00000274276       ENST00000624406 ENSE00003753596
7503  ENSG00000274276       ENST00000624406 ENSE00001531922
7504  ENSG00000274276       ENST00000398168 ENSE00003733879
7505  ENSG00000274276       ENST00000398168 ENSE00003743930
7506  ENSG00000274276       ENST00000398168 ENSE00003734019
7507  ENSG00000274276       ENST00000398168 ENSE00003745764
7508  ENSG00000274276       ENST00000398168 ENSE00003736081
7509  ENSG00000274276       ENST00000398168 ENSE00003749155
7510  ENSG00000274276       ENST00000398168 ENSE00003729930
7511  ENSG00000274276       ENST00000398168 ENSE00003724250
7512  ENSG00000274276       ENST00000398168 ENSE00003742762
7513  ENSG00000274276       ENST00000398168 ENSE00003719221
7514  ENSG00000274276       ENST00000398168 ENSE00003746144
7515  ENSG00000274276       ENST00000398168 ENSE00003743266
7516  ENSG00000274276       ENST00000398168 ENSE00003747262
7517  ENSG00000274276       ENST00000398168 ENSE00003753596
7518  ENSG00000274276       ENST00000398168 ENSE00001531922
7519  ENSG00000274276       ENST00000398168 ENSE00001532023
7520  ENSG00000274276       ENST00000398168 ENSE00003734456
7521  ENSG00000274276       ENST00000618024 ENSE00003733879
7522  ENSG00000274276       ENST00000618024 ENSE00003743930
7523  ENSG00000274276       ENST00000618024 ENSE00003734019
7524  ENSG00000274276       ENST00000618024 ENSE00003745764
7525  ENSG00000274276       ENST00000618024 ENSE00003736081
7526  ENSG00000274276       ENST00000618024 ENSE00003749155
7527  ENSG00000274276       ENST00000618024 ENSE00003729930
7528  ENSG00000274276       ENST00000618024 ENSE00003724250
7529  ENSG00000274276       ENST00000618024 ENSE00003742762
7530  ENSG00000274276       ENST00000618024 ENSE00003719221
7531  ENSG00000274276       ENST00000618024 ENSE00003746144
7532  ENSG00000274276       ENST00000618024 ENSE00003743266
7533  ENSG00000274276       ENST00000618024 ENSE00003747262
7534  ENSG00000274276       ENST00000618024 ENSE00003753596
7535  ENSG00000274276       ENST00000618024 ENSE00003734456
7536  ENSG00000274276       ENST00000618024 ENSE00003738801
7537  ENSG00000274276       ENST00000618024 ENSE00003737649
7538  ENSG00000274276       ENST00000618024 ENSE00003726168
7539  ENSG00000274276       ENST00000624934 ENSE00003733879
7540  ENSG00000274276       ENST00000624934 ENSE00003743930
7541  ENSG00000274276       ENST00000624934 ENSE00003734019
7542  ENSG00000274276       ENST00000624934 ENSE00003745764
7543  ENSG00000274276       ENST00000624934 ENSE00003736081
7544  ENSG00000274276       ENST00000624934 ENSE00003749155
7545  ENSG00000274276       ENST00000624934 ENSE00003729930
7546  ENSG00000274276       ENST00000624934 ENSE00003724250
7547  ENSG00000274276       ENST00000624934 ENSE00003742762
7548  ENSG00000274276       ENST00000624934 ENSE00003719221
7549  ENSG00000274276       ENST00000624934 ENSE00003746144
7550  ENSG00000274276       ENST00000624934 ENSE00003743266
7551  ENSG00000274276       ENST00000624934 ENSE00003747262
7552  ENSG00000274276       ENST00000624934 ENSE00003753596
7553  ENSG00000274276       ENST00000624934 ENSE00001532023
7554  ENSG00000274276       ENST00000624934 ENSE00003734456
7555  ENSG00000274276       ENST00000624934 ENSE00003756191
7556  ENSG00000274276       ENST00000624934 ENSE00003760064
7557  ENSG00000274276       ENST00000622914 ENSE00003758146
7558  ENSG00000274276       ENST00000622914 ENSE00003757104
7559  ENSG00000274276       ENST00000624808 ENSE00003756767
7560  ENSG00000274276       ENST00000624808 ENSE00003757326
7561  ENSG00000274276       ENST00000624808 ENSE00003759294
7562  ENSG00000274276       ENST00000624808 ENSE00003759014
7563  ENSG00000274276       ENST00000624808 ENSE00003758047
7564  ENSG00000274276       ENST00000623939 ENSE00003758366
7565  ENSG00000274276       ENST00000623939 ENSE00003759969
7566  ENSG00000274276       ENST00000623939 ENSE00003756688
7567  ENSG00000274276       ENST00000623939 ENSE00003758011
7568  ENSG00000274276       ENST00000623939 ENSE00003759764
7569  ENSG00000274276       ENST00000623939 ENSE00003758943
7570  ENSG00000274276       ENST00000624921 ENSE00003734456
7571  ENSG00000274276       ENST00000624921 ENSE00003759764
7572  ENSG00000274276       ENST00000624921 ENSE00003756051
7573  ENSG00000274276       ENST00000624921 ENSE00003755043
7574  ENSG00000274276       ENST00000624921 ENSE00003760384
7575  ENSG00000274276       ENST00000624921 ENSE00003759542
7576  ENSG00000274276       ENST00000617706 ENSE00003733879
7577  ENSG00000274276       ENST00000617706 ENSE00003743930
7578  ENSG00000274276       ENST00000617706 ENSE00003734019
7579  ENSG00000274276       ENST00000617706 ENSE00003745764
7580  ENSG00000274276       ENST00000617706 ENSE00003736081
7581  ENSG00000274276       ENST00000617706 ENSE00003749155
7582  ENSG00000274276       ENST00000617706 ENSE00003729930
7583  ENSG00000274276       ENST00000617706 ENSE00003724250
7584  ENSG00000274276       ENST00000617706 ENSE00003742762
7585  ENSG00000274276       ENST00000617706 ENSE00003719221
7586  ENSG00000274276       ENST00000617706 ENSE00003746144
7587  ENSG00000274276       ENST00000617706 ENSE00003743266
7588  ENSG00000274276       ENST00000617706 ENSE00003747262
7589  ENSG00000274276       ENST00000617706 ENSE00003753596
7590  ENSG00000274276       ENST00000617706 ENSE00003734456
7591  ENSG00000274276       ENST00000617706 ENSE00003738801
7592  ENSG00000274276       ENST00000617706 ENSE00002235271
7593  ENSG00000227757       ENST00000454622 ENSE00001684089
7594  ENSG00000227757       ENST00000454622 ENSE00001688113
7595  ENSG00000236119       ENST00000445464 ENSE00001680052
7596  ENSG00000236119       ENST00000445464 ENSE00001712529
7597  ENSG00000160191       ENST00000460905 ENSE00001882281
7598  ENSG00000160191       ENST00000460905 ENSE00001864622
7599  ENSG00000160191       ENST00000460905 ENSE00003517962
7600  ENSG00000160191       ENST00000460905 ENSE00003490488
7601  ENSG00000160191       ENST00000460905 ENSE00003510642
7602  ENSG00000160191       ENST00000460905 ENSE00003548951
7603  ENSG00000160191       ENST00000460905 ENSE00003488958
7604  ENSG00000160191       ENST00000472401 ENSE00001833420
7605  ENSG00000160191       ENST00000472401 ENSE00003620172
7606  ENSG00000160191       ENST00000472401 ENSE00003629203
7607  ENSG00000160191       ENST00000472401 ENSE00003602426
7608  ENSG00000160191       ENST00000472401 ENSE00001863986
7609  ENSG00000160191       ENST00000335512 ENSE00001864638
7610  ENSG00000160191       ENST00000335512 ENSE00003625815
7611  ENSG00000160191       ENST00000335512 ENSE00003565257
7612  ENSG00000160191       ENST00000335512 ENSE00003689265
7613  ENSG00000160191       ENST00000335512 ENSE00003492285
7614  ENSG00000160191       ENST00000335512 ENSE00003656908
7615  ENSG00000160191       ENST00000335512 ENSE00003667734
7616  ENSG00000160191       ENST00000335512 ENSE00003645170
7617  ENSG00000160191       ENST00000335512 ENSE00003642531
7618  ENSG00000160191       ENST00000335512 ENSE00003538925
7619  ENSG00000160191       ENST00000335512 ENSE00003602236
7620  ENSG00000160191       ENST00000335512 ENSE00003546441
7621  ENSG00000160191       ENST00000335512 ENSE00003586792
7622  ENSG00000160191       ENST00000335512 ENSE00003561153
7623  ENSG00000160191       ENST00000335512 ENSE00003611375
7624  ENSG00000160191       ENST00000335512 ENSE00003461715
7625  ENSG00000160191       ENST00000335512 ENSE00003490275
7626  ENSG00000160191       ENST00000335512 ENSE00003692648
7627  ENSG00000160191       ENST00000335512 ENSE00003643013
7628  ENSG00000160191       ENST00000470987 ENSE00003517962
7629  ENSG00000160191       ENST00000470987 ENSE00003490488
7630  ENSG00000160191       ENST00000470987 ENSE00003510642
7631  ENSG00000160191       ENST00000470987 ENSE00003548951
7632  ENSG00000160191       ENST00000470987 ENSE00003488958
7633  ENSG00000160191       ENST00000470987 ENSE00003620172
7634  ENSG00000160191       ENST00000470987 ENSE00003629203
7635  ENSG00000160191       ENST00000470987 ENSE00003602426
7636  ENSG00000160191       ENST00000470987 ENSE00003458519
7637  ENSG00000160191       ENST00000470987 ENSE00003686816
7638  ENSG00000160191       ENST00000470987 ENSE00003480474
7639  ENSG00000160191       ENST00000470987 ENSE00003684148
7640  ENSG00000160191       ENST00000470987 ENSE00003483886
7641  ENSG00000160191       ENST00000470987 ENSE00003466425
7642  ENSG00000160191       ENST00000470987 ENSE00003481356
7643  ENSG00000160191       ENST00000470987 ENSE00003641571
7644  ENSG00000160191       ENST00000470987 ENSE00003577931
7645  ENSG00000160191       ENST00000470987 ENSE00003676892
7646  ENSG00000160191       ENST00000470987 ENSE00003518456
7647  ENSG00000160191       ENST00000470987 ENSE00003694465
7648  ENSG00000160191       ENST00000291539 ENSE00003625815
7649  ENSG00000160191       ENST00000291539 ENSE00003565257
7650  ENSG00000160191       ENST00000291539 ENSE00003689265
7651  ENSG00000160191       ENST00000291539 ENSE00003492285
7652  ENSG00000160191       ENST00000291539 ENSE00003656908
7653  ENSG00000160191       ENST00000291539 ENSE00003667734
7654  ENSG00000160191       ENST00000291539 ENSE00003645170
7655  ENSG00000160191       ENST00000291539 ENSE00003642531
7656  ENSG00000160191       ENST00000291539 ENSE00003538925
7657  ENSG00000160191       ENST00000291539 ENSE00003602236
7658  ENSG00000160191       ENST00000291539 ENSE00003546441
7659  ENSG00000160191       ENST00000291539 ENSE00003586792
7660  ENSG00000160191       ENST00000291539 ENSE00003561153
7661  ENSG00000160191       ENST00000291539 ENSE00003611375
7662  ENSG00000160191       ENST00000291539 ENSE00003461715
7663  ENSG00000160191       ENST00000291539 ENSE00003490275
7664  ENSG00000160191       ENST00000291539 ENSE00003692648
7665  ENSG00000160191       ENST00000291539 ENSE00003643013
7666  ENSG00000160191       ENST00000291539 ENSE00003681162
7667  ENSG00000160191       ENST00000291539 ENSE00003691085
7668  ENSG00000160191       ENST00000490803 ENSE00003517962
7669  ENSG00000160191       ENST00000490803 ENSE00003490488
7670  ENSG00000160191       ENST00000490803 ENSE00003510642
7671  ENSG00000160191       ENST00000490803 ENSE00003548951
7672  ENSG00000160191       ENST00000490803 ENSE00003488958
7673  ENSG00000160191       ENST00000490803 ENSE00003458519
7674  ENSG00000160191       ENST00000490803 ENSE00003480474
7675  ENSG00000160191       ENST00000490803 ENSE00003684148
7676  ENSG00000160191       ENST00000490803 ENSE00003483886
7677  ENSG00000160191       ENST00000490803 ENSE00003466425
7678  ENSG00000160191       ENST00000490803 ENSE00003481356
7679  ENSG00000160191       ENST00000490803 ENSE00003641571
7680  ENSG00000160191       ENST00000490803 ENSE00003577931
7681  ENSG00000160191       ENST00000490803 ENSE00003676892
7682  ENSG00000160191       ENST00000490803 ENSE00003518456
7683  ENSG00000160191       ENST00000490803 ENSE00003694465
7684  ENSG00000160191       ENST00000490803 ENSE00003611483
7685  ENSG00000160191       ENST00000486902 ENSE00003620172
7686  ENSG00000160191       ENST00000486902 ENSE00003629203
7687  ENSG00000160191       ENST00000486902 ENSE00003686816
7688  ENSG00000160191       ENST00000486902 ENSE00003667235
7689  ENSG00000160191       ENST00000486902 ENSE00001917796
7690  ENSG00000160191       ENST00000380328 ENSE00003625815
7691  ENSG00000160191       ENST00000380328 ENSE00003565257
7692  ENSG00000160191       ENST00000380328 ENSE00003656908
7693  ENSG00000160191       ENST00000380328 ENSE00003667734
7694  ENSG00000160191       ENST00000380328 ENSE00003645170
7695  ENSG00000160191       ENST00000380328 ENSE00003642531
7696  ENSG00000160191       ENST00000380328 ENSE00003538925
7697  ENSG00000160191       ENST00000380328 ENSE00003602236
7698  ENSG00000160191       ENST00000380328 ENSE00003546441
7699  ENSG00000160191       ENST00000380328 ENSE00003586792
7700  ENSG00000160191       ENST00000380328 ENSE00003561153
7701  ENSG00000160191       ENST00000380328 ENSE00003611375
7702  ENSG00000160191       ENST00000380328 ENSE00003461715
7703  ENSG00000160191       ENST00000380328 ENSE00003490275
7704  ENSG00000160191       ENST00000380328 ENSE00003692648
7705  ENSG00000160191       ENST00000380328 ENSE00003643013
7706  ENSG00000160191       ENST00000380328 ENSE00003577781
7707  ENSG00000160191       ENST00000380328 ENSE00003668628
7708  ENSG00000160191       ENST00000380328 ENSE00003690236
7709  ENSG00000160191       ENST00000495521 ENSE00003490488
7710  ENSG00000160191       ENST00000495521 ENSE00003548951
7711  ENSG00000160191       ENST00000495521 ENSE00003488958
7712  ENSG00000160191       ENST00000495521 ENSE00003686816
7713  ENSG00000160191       ENST00000495521 ENSE00003480474
7714  ENSG00000160191       ENST00000495521 ENSE00003684148
7715  ENSG00000160191       ENST00000495521 ENSE00003483886
7716  ENSG00000160191       ENST00000495521 ENSE00003466425
7717  ENSG00000160191       ENST00000495521 ENSE00003481356
7718  ENSG00000160191       ENST00000495521 ENSE00003641571
7719  ENSG00000160191       ENST00000495521 ENSE00003577931
7720  ENSG00000160191       ENST00000495521 ENSE00003676892
7721  ENSG00000160191       ENST00000495521 ENSE00003518456
7722  ENSG00000160191       ENST00000495521 ENSE00003694465
7723  ENSG00000160191       ENST00000495521 ENSE00003667235
7724  ENSG00000160191       ENST00000398232 ENSE00003689265
7725  ENSG00000160191       ENST00000398232 ENSE00003492285
7726  ENSG00000160191       ENST00000398232 ENSE00003656908
7727  ENSG00000160191       ENST00000398232 ENSE00003667734
7728  ENSG00000160191       ENST00000398232 ENSE00003645170
7729  ENSG00000160191       ENST00000398232 ENSE00003642531
7730  ENSG00000160191       ENST00000398232 ENSE00003538925
7731  ENSG00000160191       ENST00000398232 ENSE00003602236
7732  ENSG00000160191       ENST00000398232 ENSE00003546441
7733  ENSG00000160191       ENST00000398232 ENSE00003586792
7734  ENSG00000160191       ENST00000398232 ENSE00003561153
7735  ENSG00000160191       ENST00000398232 ENSE00003611375
7736  ENSG00000160191       ENST00000398232 ENSE00003461715
7737  ENSG00000160191       ENST00000398232 ENSE00003490275
7738  ENSG00000160191       ENST00000398232 ENSE00003692648
7739  ENSG00000160191       ENST00000398232 ENSE00003643013
7740  ENSG00000160191       ENST00000398232 ENSE00003691085
7741  ENSG00000160191       ENST00000398232 ENSE00003522588
7742  ENSG00000160191       ENST00000462571 ENSE00003517962
7743  ENSG00000160191       ENST00000462571 ENSE00003490488
7744  ENSG00000160191       ENST00000462571 ENSE00003510642
7745  ENSG00000160191       ENST00000462571 ENSE00003548951
7746  ENSG00000160191       ENST00000462571 ENSE00003488958
7747  ENSG00000160191       ENST00000462571 ENSE00003686816
7748  ENSG00000160191       ENST00000462571 ENSE00003480474
7749  ENSG00000160191       ENST00000462571 ENSE00003684148
7750  ENSG00000160191       ENST00000462571 ENSE00003483886
7751  ENSG00000160191       ENST00000462571 ENSE00003466425
7752  ENSG00000160191       ENST00000462571 ENSE00003481356
7753  ENSG00000160191       ENST00000462571 ENSE00003641571
7754  ENSG00000160191       ENST00000462571 ENSE00003577931
7755  ENSG00000160191       ENST00000462571 ENSE00003676892
7756  ENSG00000160191       ENST00000462571 ENSE00003518456
7757  ENSG00000160191       ENST00000462571 ENSE00003694465
7758  ENSG00000160191       ENST00000462571 ENSE00003667235
7759  ENSG00000160191       ENST00000462571 ENSE00001899580
7760  ENSG00000160191       ENST00000398234 ENSE00003565257
7761  ENSG00000160191       ENST00000398234 ENSE00003689265
7762  ENSG00000160191       ENST00000398234 ENSE00003492285
7763  ENSG00000160191       ENST00000398234 ENSE00003656908
7764  ENSG00000160191       ENST00000398234 ENSE00003667734
7765  ENSG00000160191       ENST00000398234 ENSE00003645170
7766  ENSG00000160191       ENST00000398234 ENSE00003642531
7767  ENSG00000160191       ENST00000398234 ENSE00003538925
7768  ENSG00000160191       ENST00000398234 ENSE00003602236
7769  ENSG00000160191       ENST00000398234 ENSE00003546441
7770  ENSG00000160191       ENST00000398234 ENSE00003586792
7771  ENSG00000160191       ENST00000398234 ENSE00003561153
7772  ENSG00000160191       ENST00000398234 ENSE00003611375
7773  ENSG00000160191       ENST00000398234 ENSE00003461715
7774  ENSG00000160191       ENST00000398234 ENSE00003490275
7775  ENSG00000160191       ENST00000398234 ENSE00003692648
7776  ENSG00000160191       ENST00000398234 ENSE00003643013
7777  ENSG00000160191       ENST00000398234 ENSE00003522588
7778  ENSG00000160191       ENST00000398236 ENSE00003625815
7779  ENSG00000160191       ENST00000398236 ENSE00003689265
7780  ENSG00000160191       ENST00000398236 ENSE00003492285
7781  ENSG00000160191       ENST00000398236 ENSE00003656908
7782  ENSG00000160191       ENST00000398236 ENSE00003667734
7783  ENSG00000160191       ENST00000398236 ENSE00003645170
7784  ENSG00000160191       ENST00000398236 ENSE00003642531
7785  ENSG00000160191       ENST00000398236 ENSE00003538925
7786  ENSG00000160191       ENST00000398236 ENSE00003602236
7787  ENSG00000160191       ENST00000398236 ENSE00003546441
7788  ENSG00000160191       ENST00000398236 ENSE00003586792
7789  ENSG00000160191       ENST00000398236 ENSE00003561153
7790  ENSG00000160191       ENST00000398236 ENSE00003611375
7791  ENSG00000160191       ENST00000398236 ENSE00003461715
7792  ENSG00000160191       ENST00000398236 ENSE00003490275
7793  ENSG00000160191       ENST00000398236 ENSE00003692648
7794  ENSG00000160191       ENST00000398236 ENSE00003643013
7795  ENSG00000160191       ENST00000398236 ENSE00003577781
7796  ENSG00000160191       ENST00000468805 ENSE00003490488
7797  ENSG00000160191       ENST00000468805 ENSE00003510642
7798  ENSG00000160191       ENST00000468805 ENSE00003548951
7799  ENSG00000160191       ENST00000468805 ENSE00003488958
7800  ENSG00000160191       ENST00000468805 ENSE00003620172
7801  ENSG00000160191       ENST00000468805 ENSE00003686816
7802  ENSG00000160191       ENST00000468805 ENSE00003480474
7803  ENSG00000160191       ENST00000468805 ENSE00003684148
7804  ENSG00000160191       ENST00000468805 ENSE00003483886
7805  ENSG00000160191       ENST00000468805 ENSE00003466425
7806  ENSG00000160191       ENST00000468805 ENSE00003481356
7807  ENSG00000160191       ENST00000468805 ENSE00003641571
7808  ENSG00000160191       ENST00000468805 ENSE00003577931
7809  ENSG00000160191       ENST00000468805 ENSE00003676892
7810  ENSG00000160191       ENST00000468805 ENSE00003518456
7811  ENSG00000160191       ENST00000468805 ENSE00003694465
7812  ENSG00000160191       ENST00000468805 ENSE00003667235
7813  ENSG00000160191       ENST00000328862 ENSE00003625815
7814  ENSG00000160191       ENST00000328862 ENSE00003689265
7815  ENSG00000160191       ENST00000328862 ENSE00003492285
7816  ENSG00000160191       ENST00000328862 ENSE00003656908
7817  ENSG00000160191       ENST00000328862 ENSE00003667734
7818  ENSG00000160191       ENST00000328862 ENSE00003645170
7819  ENSG00000160191       ENST00000328862 ENSE00003642531
7820  ENSG00000160191       ENST00000328862 ENSE00003538925
7821  ENSG00000160191       ENST00000328862 ENSE00003602236
7822  ENSG00000160191       ENST00000328862 ENSE00003546441
7823  ENSG00000160191       ENST00000328862 ENSE00003586792
7824  ENSG00000160191       ENST00000328862 ENSE00003561153
7825  ENSG00000160191       ENST00000328862 ENSE00003611375
7826  ENSG00000160191       ENST00000328862 ENSE00003461715
7827  ENSG00000160191       ENST00000328862 ENSE00003490275
7828  ENSG00000160191       ENST00000328862 ENSE00003692648
7829  ENSG00000160191       ENST00000328862 ENSE00003643013
7830  ENSG00000160191       ENST00000328862 ENSE00003691085
7831  ENSG00000160191       ENST00000328862 ENSE00003577781
7832  ENSG00000160191       ENST00000335440 ENSE00003656908
7833  ENSG00000160191       ENST00000335440 ENSE00003667734
7834  ENSG00000160191       ENST00000335440 ENSE00003645170
7835  ENSG00000160191       ENST00000335440 ENSE00003642531
7836  ENSG00000160191       ENST00000335440 ENSE00003538925
7837  ENSG00000160191       ENST00000335440 ENSE00003602236
7838  ENSG00000160191       ENST00000335440 ENSE00003546441
7839  ENSG00000160191       ENST00000335440 ENSE00003586792
7840  ENSG00000160191       ENST00000335440 ENSE00003561153
7841  ENSG00000160191       ENST00000335440 ENSE00003611375
7842  ENSG00000160191       ENST00000335440 ENSE00003461715
7843  ENSG00000160191       ENST00000335440 ENSE00003490275
7844  ENSG00000160191       ENST00000335440 ENSE00003692648
7845  ENSG00000160191       ENST00000335440 ENSE00003643013
7846  ENSG00000160191       ENST00000335440 ENSE00003577781
7847  ENSG00000160191       ENST00000335440 ENSE00003690236
7848  ENSG00000160191       ENST00000335440 ENSE00003508313
7849  ENSG00000160191       ENST00000398225 ENSE00003565257
7850  ENSG00000160191       ENST00000398225 ENSE00003689265
7851  ENSG00000160191       ENST00000398225 ENSE00003492285
7852  ENSG00000160191       ENST00000398225 ENSE00003656908
7853  ENSG00000160191       ENST00000398225 ENSE00003667734
7854  ENSG00000160191       ENST00000398225 ENSE00003645170
7855  ENSG00000160191       ENST00000398225 ENSE00003642531
7856  ENSG00000160191       ENST00000398225 ENSE00003538925
7857  ENSG00000160191       ENST00000398225 ENSE00003602236
7858  ENSG00000160191       ENST00000398225 ENSE00003546441
7859  ENSG00000160191       ENST00000398225 ENSE00003586792
7860  ENSG00000160191       ENST00000398225 ENSE00003561153
7861  ENSG00000160191       ENST00000398225 ENSE00003611375
7862  ENSG00000160191       ENST00000398225 ENSE00003461715
7863  ENSG00000160191       ENST00000398225 ENSE00003490275
7864  ENSG00000160191       ENST00000398225 ENSE00003692648
7865  ENSG00000160191       ENST00000398225 ENSE00003643013
7866  ENSG00000160191       ENST00000398225 ENSE00003691085
7867  ENSG00000160191       ENST00000398225 ENSE00003522588
7868  ENSG00000160191       ENST00000497805 ENSE00003490488
7869  ENSG00000160191       ENST00000497805 ENSE00003510642
7870  ENSG00000160191       ENST00000497805 ENSE00003548951
7871  ENSG00000160191       ENST00000497805 ENSE00003488958
7872  ENSG00000160191       ENST00000497805 ENSE00003629203
7873  ENSG00000160191       ENST00000497805 ENSE00003686816
7874  ENSG00000160191       ENST00000497805 ENSE00003480474
7875  ENSG00000160191       ENST00000497805 ENSE00003684148
7876  ENSG00000160191       ENST00000497805 ENSE00003483886
7877  ENSG00000160191       ENST00000497805 ENSE00003466425
7878  ENSG00000160191       ENST00000497805 ENSE00003481356
7879  ENSG00000160191       ENST00000497805 ENSE00003641571
7880  ENSG00000160191       ENST00000497805 ENSE00003577931
7881  ENSG00000160191       ENST00000497805 ENSE00003676892
7882  ENSG00000160191       ENST00000497805 ENSE00003518456
7883  ENSG00000160191       ENST00000497805 ENSE00003694465
7884  ENSG00000160191       ENST00000497805 ENSE00003611483
7885  ENSG00000160191       ENST00000497805 ENSE00003667235
7886  ENSG00000160191       ENST00000398229 ENSE00003565257
7887  ENSG00000160191       ENST00000398229 ENSE00003656908
7888  ENSG00000160191       ENST00000398229 ENSE00003667734
7889  ENSG00000160191       ENST00000398229 ENSE00003645170
7890  ENSG00000160191       ENST00000398229 ENSE00003642531
7891  ENSG00000160191       ENST00000398229 ENSE00003538925
7892  ENSG00000160191       ENST00000398229 ENSE00003602236
7893  ENSG00000160191       ENST00000398229 ENSE00003546441
7894  ENSG00000160191       ENST00000398229 ENSE00003586792
7895  ENSG00000160191       ENST00000398229 ENSE00003561153
7896  ENSG00000160191       ENST00000398229 ENSE00003611375
7897  ENSG00000160191       ENST00000398229 ENSE00003461715
7898  ENSG00000160191       ENST00000398229 ENSE00003490275
7899  ENSG00000160191       ENST00000398229 ENSE00003692648
7900  ENSG00000160191       ENST00000398229 ENSE00003643013
7901  ENSG00000160191       ENST00000398229 ENSE00003522588
7902  ENSG00000160191       ENST00000398227 ENSE00003656908
7903  ENSG00000160191       ENST00000398227 ENSE00003667734
7904  ENSG00000160191       ENST00000398227 ENSE00003645170
7905  ENSG00000160191       ENST00000398227 ENSE00003642531
7906  ENSG00000160191       ENST00000398227 ENSE00003538925
7907  ENSG00000160191       ENST00000398227 ENSE00003602236
7908  ENSG00000160191       ENST00000398227 ENSE00003546441
7909  ENSG00000160191       ENST00000398227 ENSE00003586792
7910  ENSG00000160191       ENST00000398227 ENSE00003561153
7911  ENSG00000160191       ENST00000398227 ENSE00003611375
7912  ENSG00000160191       ENST00000398227 ENSE00003461715
7913  ENSG00000160191       ENST00000398227 ENSE00003490275
7914  ENSG00000160191       ENST00000398227 ENSE00003692648
7915  ENSG00000160191       ENST00000398227 ENSE00003643013
7916  ENSG00000160191       ENST00000398227 ENSE00003522588
7917  ENSG00000160191       ENST00000460989 ENSE00003490488
7918  ENSG00000160191       ENST00000460989 ENSE00003548951
7919  ENSG00000160191       ENST00000460989 ENSE00003488958
7920  ENSG00000160191       ENST00000460989 ENSE00003480474
7921  ENSG00000160191       ENST00000460989 ENSE00003684148
7922  ENSG00000160191       ENST00000460989 ENSE00003483886
7923  ENSG00000160191       ENST00000460989 ENSE00003466425
7924  ENSG00000160191       ENST00000460989 ENSE00003481356
7925  ENSG00000160191       ENST00000460989 ENSE00003641571
7926  ENSG00000160191       ENST00000460989 ENSE00003577931
7927  ENSG00000160191       ENST00000460989 ENSE00003676892
7928  ENSG00000160191       ENST00000460989 ENSE00003518456
7929  ENSG00000160191       ENST00000460989 ENSE00003694465
7930  ENSG00000160191       ENST00000460989 ENSE00003667235
7931  ENSG00000160191       ENST00000467403 ENSE00003517962
7932  ENSG00000160191       ENST00000467403 ENSE00003490488
7933  ENSG00000160191       ENST00000467403 ENSE00003510642
7934  ENSG00000160191       ENST00000467403 ENSE00003548951
7935  ENSG00000160191       ENST00000467403 ENSE00003488958
7936  ENSG00000160191       ENST00000467403 ENSE00003480474
7937  ENSG00000160191       ENST00000467403 ENSE00003684148
7938  ENSG00000160191       ENST00000467403 ENSE00003483886
7939  ENSG00000160191       ENST00000467403 ENSE00003466425
7940  ENSG00000160191       ENST00000467403 ENSE00003481356
7941  ENSG00000160191       ENST00000467403 ENSE00003641571
7942  ENSG00000160191       ENST00000467403 ENSE00003577931
7943  ENSG00000160191       ENST00000467403 ENSE00003676892
7944  ENSG00000160191       ENST00000467403 ENSE00003518456
7945  ENSG00000160191       ENST00000467403 ENSE00003694465
7946  ENSG00000160191       ENST00000467403 ENSE00003667235
7947  ENSG00000160191       ENST00000349112 ENSE00003656908
7948  ENSG00000160191       ENST00000349112 ENSE00003667734
7949  ENSG00000160191       ENST00000349112 ENSE00003645170
7950  ENSG00000160191       ENST00000349112 ENSE00003642531
7951  ENSG00000160191       ENST00000349112 ENSE00003538925
7952  ENSG00000160191       ENST00000349112 ENSE00003602236
7953  ENSG00000160191       ENST00000349112 ENSE00003546441
7954  ENSG00000160191       ENST00000349112 ENSE00003586792
7955  ENSG00000160191       ENST00000349112 ENSE00003561153
7956  ENSG00000160191       ENST00000349112 ENSE00003611375
7957  ENSG00000160191       ENST00000349112 ENSE00003461715
7958  ENSG00000160191       ENST00000349112 ENSE00003490275
7959  ENSG00000160191       ENST00000349112 ENSE00003692648
7960  ENSG00000160191       ENST00000349112 ENSE00003643013
7961  ENSG00000160191       ENST00000349112 ENSE00003690236
7962  ENSG00000160191       ENST00000349112 ENSE00003538927
7963  ENSG00000160191       ENST00000398224 ENSE00003689265
7964  ENSG00000160191       ENST00000398224 ENSE00003492285
7965  ENSG00000160191       ENST00000398224 ENSE00003656908
7966  ENSG00000160191       ENST00000398224 ENSE00003667734
7967  ENSG00000160191       ENST00000398224 ENSE00003645170
7968  ENSG00000160191       ENST00000398224 ENSE00003642531
7969  ENSG00000160191       ENST00000398224 ENSE00003538925
7970  ENSG00000160191       ENST00000398224 ENSE00003602236
7971  ENSG00000160191       ENST00000398224 ENSE00003546441
7972  ENSG00000160191       ENST00000398224 ENSE00003586792
7973  ENSG00000160191       ENST00000398224 ENSE00003561153
7974  ENSG00000160191       ENST00000398224 ENSE00003611375
7975  ENSG00000160191       ENST00000398224 ENSE00003461715
7976  ENSG00000160191       ENST00000398224 ENSE00003490275
7977  ENSG00000160191       ENST00000398224 ENSE00003692648
7978  ENSG00000160191       ENST00000398224 ENSE00003643013
7979  ENSG00000160191       ENST00000398224 ENSE00003628617
7980  ENSG00000160191       ENST00000467162 ENSE00003517962
7981  ENSG00000160191       ENST00000467162 ENSE00003490488
7982  ENSG00000160191       ENST00000467162 ENSE00003548951
7983  ENSG00000160191       ENST00000467162 ENSE00003488958
7984  ENSG00000160191       ENST00000467162 ENSE00003629203
7985  ENSG00000160191       ENST00000467162 ENSE00003686816
7986  ENSG00000160191       ENST00000467162 ENSE00003480474
7987  ENSG00000160191       ENST00000467162 ENSE00003684148
7988  ENSG00000160191       ENST00000467162 ENSE00003483886
7989  ENSG00000160191       ENST00000467162 ENSE00001895084
7990  ENSG00000160191       ENST00000467162 ENSE00001892956
7991  ENSG00000160191       ENST00000495343 ENSE00003517962
7992  ENSG00000160191       ENST00000495343 ENSE00003490488
7993  ENSG00000160191       ENST00000495343 ENSE00003548951
7994  ENSG00000160191       ENST00000495343 ENSE00003488958
7995  ENSG00000160191       ENST00000495343 ENSE00003480474
7996  ENSG00000160191       ENST00000495343 ENSE00003684148
7997  ENSG00000160191       ENST00000495343 ENSE00003483886
7998  ENSG00000160191       ENST00000495343 ENSE00003466425
7999  ENSG00000160191       ENST00000495343 ENSE00003481356
8000  ENSG00000160191       ENST00000495343 ENSE00003641571
8001  ENSG00000160191       ENST00000495343 ENSE00003577931
8002  ENSG00000160191       ENST00000495343 ENSE00003676892
8003  ENSG00000160191       ENST00000495343 ENSE00003518456
8004  ENSG00000160191       ENST00000495343 ENSE00003694465
8005  ENSG00000160191       ENST00000495343 ENSE00001867279
8006  ENSG00000160191       ENST00000489319 ENSE00003684148
8007  ENSG00000160191       ENST00000489319 ENSE00003483886
8008  ENSG00000160191       ENST00000489319 ENSE00003466425
8009  ENSG00000160191       ENST00000489319 ENSE00003481356
8010  ENSG00000160191       ENST00000489319 ENSE00003641571
8011  ENSG00000160191       ENST00000489319 ENSE00003577931
8012  ENSG00000160191       ENST00000489319 ENSE00003676892
8013  ENSG00000160191       ENST00000489319 ENSE00003518456
8014  ENSG00000160191       ENST00000489319 ENSE00003694465
8015  ENSG00000160191       ENST00000489319 ENSE00001943585
8016  ENSG00000160191       ENST00000466472 ENSE00003481356
8017  ENSG00000160191       ENST00000466472 ENSE00001934640
8018  ENSG00000160191       ENST00000466472 ENSE00001918948
8019  ENSG00000160188       ENST00000493019 ENSE00001872951
8020  ENSG00000160188       ENST00000493019 ENSE00003595360
8021  ENSG00000160188       ENST00000493019 ENSE00003526573
8022  ENSG00000160188       ENST00000493019 ENSE00001816987
8023  ENSG00000160188       ENST00000493019 ENSE00003580117
8024  ENSG00000160188       ENST00000493019 ENSE00003471308
8025  ENSG00000160188       ENST00000493019 ENSE00003481292
8026  ENSG00000160188       ENST00000493019 ENSE00003530493
8027  ENSG00000160188       ENST00000291536 ENSE00001327702
8028  ENSG00000160188       ENST00000291536 ENSE00003467057
8029  ENSG00000160188       ENST00000291536 ENSE00003642321
8030  ENSG00000160188       ENST00000291536 ENSE00001109814
8031  ENSG00000160188       ENST00000291536 ENSE00001109809
8032  ENSG00000160188       ENST00000291536 ENSE00003590447
8033  ENSG00000160188       ENST00000291536 ENSE00003488576
8034  ENSG00000160188       ENST00000291536 ENSE00003493888
8035  ENSG00000160188       ENST00000291536 ENSE00003645485
8036  ENSG00000160188       ENST00000398352 ENSE00003642321
8037  ENSG00000160188       ENST00000398352 ENSE00001109814
8038  ENSG00000160188       ENST00000398352 ENSE00001109809
8039  ENSG00000160188       ENST00000398352 ENSE00003590447
8040  ENSG00000160188       ENST00000398352 ENSE00003488576
8041  ENSG00000160188       ENST00000398352 ENSE00003493888
8042  ENSG00000160188       ENST00000398352 ENSE00001826404
8043  ENSG00000160188       ENST00000398352 ENSE00001855346
8044  ENSG00000223671       ENST00000421454 ENSE00001729205
8045  ENSG00000229761       ENST00000434853 ENSE00001628169
8046  ENSG00000230794       ENST00000412240 ENSE00001667321
8047  ENSG00000230794       ENST00000412240 ENSE00001690811
8048  ENSG00000159216       ENST00000344691 ENSE00001380483
8049  ENSG00000159216       ENST00000344691 ENSE00003519701
8050  ENSG00000159216       ENST00000344691 ENSE00003512550
8051  ENSG00000159216       ENST00000344691 ENSE00003788902
8052  ENSG00000159216       ENST00000344691 ENSE00003559527
8053  ENSG00000159216       ENST00000344691 ENSE00002287560
8054  ENSG00000159216       ENST00000300305 ENSE00003519701
8055  ENSG00000159216       ENST00000300305 ENSE00003512550
8056  ENSG00000159216       ENST00000300305 ENSE00003788902
8057  ENSG00000159216       ENST00000300305 ENSE00003559527
8058  ENSG00000159216       ENST00000300305 ENSE00002287560
8059  ENSG00000159216       ENST00000300305 ENSE00001317351
8060  ENSG00000159216       ENST00000300305 ENSE00003790369
8061  ENSG00000159216       ENST00000300305 ENSE00002454902
8062  ENSG00000159216       ENST00000482318 ENSE00001877026
8063  ENSG00000159216       ENST00000482318 ENSE00003704290
8064  ENSG00000159216       ENST00000482318 ENSE00003488338
8065  ENSG00000159216       ENST00000482318 ENSE00003661108
8066  ENSG00000159216       ENST00000482318 ENSE00003479797
8067  ENSG00000159216       ENST00000482318 ENSE00003535832
8068  ENSG00000159216       ENST00000482318 ENSE00001909211
8069  ENSG00000159216       ENST00000399240 ENSE00003519701
8070  ENSG00000159216       ENST00000399240 ENSE00003512550
8071  ENSG00000159216       ENST00000399240 ENSE00003559527
8072  ENSG00000159216       ENST00000399240 ENSE00001537135
8073  ENSG00000159216       ENST00000399240 ENSE00001537132
8074  ENSG00000159216       ENST00000479325 ENSE00001936216
8075  ENSG00000159216       ENST00000479325 ENSE00003608863
8076  ENSG00000159216       ENST00000358356 ENSE00001380483
8077  ENSG00000159216       ENST00000358356 ENSE00003519701
8078  ENSG00000159216       ENST00000358356 ENSE00003512550
8079  ENSG00000159216       ENST00000358356 ENSE00003788902
8080  ENSG00000159216       ENST00000358356 ENSE00003654721
8081  ENSG00000159216       ENST00000469087 ENSE00001887888
8082  ENSG00000159216       ENST00000469087 ENSE00001927669
8083  ENSG00000159216       ENST00000399237 ENSE00003519701
8084  ENSG00000159216       ENST00000399237 ENSE00003512550
8085  ENSG00000159216       ENST00000399237 ENSE00003788902
8086  ENSG00000159216       ENST00000399237 ENSE00002454902
8087  ENSG00000159216       ENST00000399237 ENSE00001780556
8088  ENSG00000159216       ENST00000467577 ENSE00003661108
8089  ENSG00000159216       ENST00000467577 ENSE00001817260
8090  ENSG00000159216       ENST00000455571 ENSE00002454902
8091  ENSG00000159216       ENST00000455571 ENSE00003704290
8092  ENSG00000159216       ENST00000455571 ENSE00001745508
8093  ENSG00000159216       ENST00000455571 ENSE00001802332
8094  ENSG00000159216       ENST00000475045 ENSE00003790369
8095  ENSG00000159216       ENST00000475045 ENSE00003704290
8096  ENSG00000159216       ENST00000475045 ENSE00003704169
8097  ENSG00000159216       ENST00000475045 ENSE00003707665
8098  ENSG00000159216       ENST00000475045 ENSE00001858910
8099  ENSG00000159216       ENST00000475045 ENSE00001840292
8100  ENSG00000159216       ENST00000475045 ENSE00002477305
8101  ENSG00000159216       ENST00000475045 ENSE00001841260
8102  ENSG00000159216       ENST00000475045 ENSE00001921911
8103  ENSG00000159216       ENST00000475045 ENSE00001851690
8104  ENSG00000159216       ENST00000475045 ENSE00001814878
8105  ENSG00000159216       ENST00000475045 ENSE00001822156
8106  ENSG00000159216       ENST00000475045 ENSE00001949821
8107  ENSG00000159216       ENST00000416754 ENSE00003790369
8108  ENSG00000159216       ENST00000416754 ENSE00003704290
8109  ENSG00000159216       ENST00000416754 ENSE00001595684
8110  ENSG00000159216       ENST00000468726 ENSE00001822156
8111  ENSG00000159216       ENST00000468726 ENSE00001819641
8112  ENSG00000159216       ENST00000467692 ENSE00001814878
8113  ENSG00000159216       ENST00000467692 ENSE00001858662
8114  ENSG00000159216       ENST00000467692 ENSE00001914443
8115  ENSG00000159216       ENST00000494829 ENSE00001814878
8116  ENSG00000159216       ENST00000494829 ENSE00001891207
8117  ENSG00000159216       ENST00000494829 ENSE00001869802
8118  ENSG00000159216       ENST00000460207 ENSE00001840292
8119  ENSG00000159216       ENST00000460207 ENSE00002477305
8120  ENSG00000159216       ENST00000460207 ENSE00001920158
8121  ENSG00000159216       ENST00000460207 ENSE00001889950
8122  ENSG00000159216       ENST00000437180 ENSE00003519701
8123  ENSG00000159216       ENST00000437180 ENSE00003512550
8124  ENSG00000159216       ENST00000437180 ENSE00003788902
8125  ENSG00000159216       ENST00000437180 ENSE00003559527
8126  ENSG00000159216       ENST00000437180 ENSE00002287560
8127  ENSG00000159216       ENST00000437180 ENSE00003790369
8128  ENSG00000159216       ENST00000437180 ENSE00002454902
8129  ENSG00000159216       ENST00000437180 ENSE00003704290
8130  ENSG00000159216       ENST00000437180 ENSE00001745508
8131  ENSG00000226054       ENST00000452572 ENSE00001655365
8132  ENSG00000244676       ENST00000428689 ENSE00001782668
8133  ENSG00000244676       ENST00000428689 ENSE00001713116
8134  ENSG00000244676       ENST00000454737 ENSE00001713116
8135  ENSG00000244676       ENST00000454737 ENSE00001689198
8136  ENSG00000215458       ENST00000437258 ENSE00001696564
8137  ENSG00000215458       ENST00000437258 ENSE00001542670
8138  ENSG00000215458       ENST00000448247 ENSE00001542670
8139  ENSG00000215458       ENST00000448247 ENSE00003678800
8140  ENSG00000215458       ENST00000448247 ENSE00001684957
8141  ENSG00000215458       ENST00000448247 ENSE00001538942
8142  ENSG00000215458       ENST00000400385 ENSE00001542670
8143  ENSG00000215458       ENST00000400385 ENSE00001542671
8144  ENSG00000273115       ENST00000608410 ENSE00003706216
8145  ENSG00000256073       ENST00000534991 ENSE00002210111
8146  ENSG00000160209       ENST00000398081 ENSE00001531495
8147  ENSG00000160209       ENST00000398081 ENSE00003585237
8148  ENSG00000160209       ENST00000398081 ENSE00001531493
8149  ENSG00000160209       ENST00000468090 ENSE00003585237
8150  ENSG00000160209       ENST00000468090 ENSE00001376263
8151  ENSG00000160209       ENST00000468090 ENSE00003670847
8152  ENSG00000160209       ENST00000468090 ENSE00003694032
8153  ENSG00000160209       ENST00000468090 ENSE00003534315
8154  ENSG00000160209       ENST00000468090 ENSE00003489627
8155  ENSG00000160209       ENST00000468090 ENSE00003583352
8156  ENSG00000160209       ENST00000468090 ENSE00003552597
8157  ENSG00000160209       ENST00000468090 ENSE00003647981
8158  ENSG00000160209       ENST00000468090 ENSE00003043881
8159  ENSG00000160209       ENST00000291565 ENSE00003585237
8160  ENSG00000160209       ENST00000291565 ENSE00003670847
8161  ENSG00000160209       ENST00000291565 ENSE00003694032
8162  ENSG00000160209       ENST00000291565 ENSE00003534315
8163  ENSG00000160209       ENST00000291565 ENSE00003489627
8164  ENSG00000160209       ENST00000291565 ENSE00003583352
8165  ENSG00000160209       ENST00000291565 ENSE00003552597
8166  ENSG00000160209       ENST00000291565 ENSE00003647981
8167  ENSG00000160209       ENST00000291565 ENSE00003043881
8168  ENSG00000160209       ENST00000291565 ENSE00001861574
8169  ENSG00000160209       ENST00000291565 ENSE00003511412
8170  ENSG00000160209       ENST00000398085 ENSE00001822483
8171  ENSG00000160209       ENST00000398085 ENSE00003478560
8172  ENSG00000160209       ENST00000398085 ENSE00003584320
8173  ENSG00000160209       ENST00000398085 ENSE00001865037
8174  ENSG00000160209       ENST00000398085 ENSE00003573041
8175  ENSG00000160209       ENST00000398085 ENSE00003633585
8176  ENSG00000160209       ENST00000398085 ENSE00003500846
8177  ENSG00000160209       ENST00000398085 ENSE00003573966
8178  ENSG00000160209       ENST00000476084 ENSE00001928563
8179  ENSG00000160209       ENST00000476084 ENSE00001949080
8180  ENSG00000160209       ENST00000470029 ENSE00003478560
8181  ENSG00000160209       ENST00000470029 ENSE00003584320
8182  ENSG00000160209       ENST00000470029 ENSE00001868734
8183  ENSG00000160209       ENST00000470029 ENSE00003617125
8184  ENSG00000160209       ENST00000470029 ENSE00001823145
8185  ENSG00000160209       ENST00000438837 ENSE00001736120
8186  ENSG00000160209       ENST00000438837 ENSE00001722546
8187  ENSG00000160209       ENST00000498040 ENSE00003478560
8188  ENSG00000160209       ENST00000498040 ENSE00003584320
8189  ENSG00000160209       ENST00000498040 ENSE00003573041
8190  ENSG00000160209       ENST00000498040 ENSE00003633585
8191  ENSG00000160209       ENST00000498040 ENSE00003500846
8192  ENSG00000160209       ENST00000498040 ENSE00003573966
8193  ENSG00000160209       ENST00000498040 ENSE00003617125
8194  ENSG00000160209       ENST00000498040 ENSE00001933485
8195  ENSG00000160209       ENST00000498040 ENSE00001926471
8196  ENSG00000160209       ENST00000327574 ENSE00003585237
8197  ENSG00000160209       ENST00000327574 ENSE00001531493
8198  ENSG00000160209       ENST00000327574 ENSE00001434352
8199  ENSG00000160209       ENST00000327574 ENSE00001432839
8200  ENSG00000160209       ENST00000472777 ENSE00003478560
8201  ENSG00000160209       ENST00000472777 ENSE00003584320
8202  ENSG00000160209       ENST00000472777 ENSE00003573041
8203  ENSG00000160209       ENST00000472777 ENSE00003617125
8204  ENSG00000160209       ENST00000472777 ENSE00001813503
8205  ENSG00000160209       ENST00000472777 ENSE00001881690
8206  ENSG00000160209       ENST00000476313 ENSE00003478560
8207  ENSG00000160209       ENST00000476313 ENSE00001920411
8208  ENSG00000160209       ENST00000476313 ENSE00001861531
8209  ENSG00000160209       ENST00000476313 ENSE00001880782
8210  ENSG00000160209       ENST00000481512 ENSE00003478560
8211  ENSG00000160209       ENST00000481512 ENSE00003584320
8212  ENSG00000160209       ENST00000481512 ENSE00003573041
8213  ENSG00000160209       ENST00000481512 ENSE00003633585
8214  ENSG00000160209       ENST00000481512 ENSE00003500846
8215  ENSG00000160209       ENST00000481512 ENSE00003573966
8216  ENSG00000160209       ENST00000481512 ENSE00003617125
8217  ENSG00000160209       ENST00000481512 ENSE00001954980
8218  ENSG00000160209       ENST00000481512 ENSE00002486241
8219  ENSG00000160209       ENST00000490666 ENSE00003584320
8220  ENSG00000160209       ENST00000490666 ENSE00003573041
8221  ENSG00000160209       ENST00000490666 ENSE00003633585
8222  ENSG00000160209       ENST00000490666 ENSE00003500846
8223  ENSG00000160209       ENST00000490666 ENSE00003573966
8224  ENSG00000160209       ENST00000490666 ENSE00003617125
8225  ENSG00000160209       ENST00000490666 ENSE00001926471
8226  ENSG00000160209       ENST00000490666 ENSE00001957154
8227  ENSG00000160209       ENST00000467908 ENSE00003670847
8228  ENSG00000160209       ENST00000467908 ENSE00003694032
8229  ENSG00000160209       ENST00000467908 ENSE00003534315
8230  ENSG00000160209       ENST00000467908 ENSE00003489627
8231  ENSG00000160209       ENST00000467908 ENSE00003583352
8232  ENSG00000160209       ENST00000467908 ENSE00003552597
8233  ENSG00000160209       ENST00000467908 ENSE00003647981
8234  ENSG00000160209       ENST00000467908 ENSE00003043881
8235  ENSG00000160209       ENST00000467908 ENSE00003511412
8236  ENSG00000160209       ENST00000467908 ENSE00001955629
8237  ENSG00000160209       ENST00000343528 ENSE00003584320
8238  ENSG00000160209       ENST00000343528 ENSE00003573041
8239  ENSG00000160209       ENST00000343528 ENSE00003633585
8240  ENSG00000160209       ENST00000343528 ENSE00003500846
8241  ENSG00000160209       ENST00000343528 ENSE00003573966
8242  ENSG00000160209       ENST00000343528 ENSE00003617125
8243  ENSG00000160209       ENST00000343528 ENSE00001757941
8244  ENSG00000160209       ENST00000343528 ENSE00003626994
8245  ENSG00000160209       ENST00000343528 ENSE00003610600
8246  ENSG00000160209       ENST00000343528 ENSE00001897856
8247  ENSG00000160209       ENST00000398078 ENSE00003573041
8248  ENSG00000160209       ENST00000398078 ENSE00003633585
8249  ENSG00000160209       ENST00000398078 ENSE00003500846
8250  ENSG00000160209       ENST00000398078 ENSE00003573966
8251  ENSG00000160209       ENST00000398078 ENSE00003617125
8252  ENSG00000160209       ENST00000398078 ENSE00003626994
8253  ENSG00000160209       ENST00000398078 ENSE00003610600
8254  ENSG00000160209       ENST00000398078 ENSE00001899869
8255  ENSG00000160209       ENST00000398078 ENSE00001899812
8256  ENSG00000160209       ENST00000468392 ENSE00003633585
8257  ENSG00000160209       ENST00000468392 ENSE00003500846
8258  ENSG00000160209       ENST00000468392 ENSE00003573966
8259  ENSG00000160209       ENST00000468392 ENSE00003626994
8260  ENSG00000160209       ENST00000468392 ENSE00003610600
8261  ENSG00000160209       ENST00000468392 ENSE00001951613
8262  ENSG00000160209       ENST00000468392 ENSE00001887017
8263  ENSG00000160209       ENST00000461123 ENSE00003626994
8264  ENSG00000160209       ENST00000461123 ENSE00001810387
8265  ENSG00000160209       ENST00000461123 ENSE00001828323
8266  ENSG00000160209       ENST00000621478 ENSE00003738484
8267  ENSG00000160209       ENST00000621478 ENSE00003728118
8268  ENSG00000228817       ENST00000626681 ENSE00003765546
8269  ENSG00000228817       ENST00000608072 ENSE00003704890
8270  ENSG00000228817       ENST00000608072 ENSE00003704865
8271  ENSG00000228817       ENST00000608072 ENSE00003710207
8272  ENSG00000228817       ENST00000608072 ENSE00003711393
8273  ENSG00000228817       ENST00000436529 ENSE00003142988
8274  ENSG00000228817       ENST00000436529 ENSE00001634016
8275  ENSG00000228817       ENST00000436529 ENSE00001673483
8276  ENSG00000279728       ENST00000623809 ENSE00003760235
8277  ENSG00000279728       ENST00000623809 ENSE00003756609
8278  ENSG00000279728       ENST00000623809 ENSE00003756282
8279  ENSG00000279728       ENST00000623809 ENSE00003759964
8280  ENSG00000279728       ENST00000623809 ENSE00003759867
8281  ENSG00000279728       ENST00000623809 ENSE00003756135
8282  ENSG00000279728       ENST00000623809 ENSE00003760015
8283  ENSG00000279728       ENST00000623809 ENSE00003756399
8284  ENSG00000279788       ENST00000624266 ENSE00003758739
8285  ENSG00000279788       ENST00000624266 ENSE00003758671
8286  ENSG00000279788       ENST00000624266 ENSE00003756773
8287  ENSG00000279788       ENST00000624266 ENSE00003759000
8288  ENSG00000279788       ENST00000624266 ENSE00003757866
8289  ENSG00000279788       ENST00000624266 ENSE00003757734
8290  ENSG00000279788       ENST00000624266 ENSE00003755969
8291  ENSG00000279788       ENST00000624266 ENSE00003757842
8292  ENSG00000279788       ENST00000624266 ENSE00003760032
8293  ENSG00000232124       ENST00000437557 ENSE00001601966
8294  ENSG00000232124       ENST00000437557 ENSE00001612223
8295  ENSG00000185808       ENST00000360525 ENSE00001419804
8296  ENSG00000185808       ENST00000360525 ENSE00003470276
8297  ENSG00000185808       ENST00000360525 ENSE00003788488
8298  ENSG00000185808       ENST00000360525 ENSE00003468709
8299  ENSG00000185808       ENST00000360525 ENSE00001875155
8300  ENSG00000185808       ENST00000464265 ENSE00003788488
8301  ENSG00000185808       ENST00000464265 ENSE00003468709
8302  ENSG00000185808       ENST00000464265 ENSE00001320201
8303  ENSG00000185808       ENST00000464265 ENSE00001818729
8304  ENSG00000185808       ENST00000329667 ENSE00003592147
8305  ENSG00000185808       ENST00000329667 ENSE00003541657
8306  ENSG00000185808       ENST00000329667 ENSE00003537149
8307  ENSG00000185808       ENST00000399102 ENSE00003470276
8308  ENSG00000185808       ENST00000399102 ENSE00003788488
8309  ENSG00000185808       ENST00000399102 ENSE00003468709
8310  ENSG00000185808       ENST00000399102 ENSE00001536420
8311  ENSG00000185808       ENST00000399102 ENSE00003526634
8312  ENSG00000185808       ENST00000399103 ENSE00003470276
8313  ENSG00000185808       ENST00000399103 ENSE00003788488
8314  ENSG00000185808       ENST00000399103 ENSE00003468709
8315  ENSG00000185808       ENST00000399103 ENSE00003526634
8316  ENSG00000185808       ENST00000399103 ENSE00001536427
8317  ENSG00000185808       ENST00000399098 ENSE00003788488
8318  ENSG00000185808       ENST00000399098 ENSE00003468709
8319  ENSG00000185808       ENST00000399098 ENSE00003592147
8320  ENSG00000185808       ENST00000399098 ENSE00003526634
8321  ENSG00000185808       ENST00000399098 ENSE00001536419
8322  ENSG00000185808       ENST00000399098 ENSE00001536408
8323  ENSG00000185808       ENST00000479152 ENSE00001936150
8324  ENSG00000185808       ENST00000479152 ENSE00001944308
8325  ENSG00000185808       ENST00000430792 ENSE00003788488
8326  ENSG00000185808       ENST00000430792 ENSE00001536408
8327  ENSG00000185808       ENST00000430792 ENSE00001616850
8328  ENSG00000280179       ENST00000623297 ENSE00003759249
8329  ENSG00000280179       ENST00000623297 ENSE00003757797
8330  ENSG00000280179       ENST00000623297 ENSE00003756788
8331  ENSG00000280179       ENST00000624872 ENSE00003760322
8332  ENSG00000280179       ENST00000624872 ENSE00003759178
8333  ENSG00000280179       ENST00000624872 ENSE00003755582
8334  ENSG00000280179       ENST00000624872 ENSE00003759999
8335  ENSG00000231058       ENST00000445341 ENSE00001673727
8336  ENSG00000231058       ENST00000445341 ENSE00001750674
8337  ENSG00000231058       ENST00000445341 ENSE00001685096
8338  ENSG00000225906       ENST00000438328 ENSE00001739640
8339  ENSG00000225906       ENST00000438328 ENSE00001591721
8340  ENSG00000225906       ENST00000438328 ENSE00001675402
8341  ENSG00000237527       ENST00000416182 ENSE00001772345
8342  ENSG00000237527       ENST00000416182 ENSE00001792306
8343  ENSG00000237527       ENST00000416182 ENSE00001749247
8344  ENSG00000237527       ENST00000416182 ENSE00001690468
8345  ENSG00000237527       ENST00000416182 ENSE00001726600
8346  ENSG00000234730       ENST00000428205 ENSE00001609710
8347  ENSG00000234730       ENST00000428205 ENSE00001712433
8348  ENSG00000185917       ENST00000399215 ENSE00001536988
8349  ENSG00000185917       ENST00000399215 ENSE00003682516
8350  ENSG00000185917       ENST00000399215 ENSE00003480255
8351  ENSG00000185917       ENST00000399215 ENSE00003545287
8352  ENSG00000185917       ENST00000399215 ENSE00003690844
8353  ENSG00000185917       ENST00000399215 ENSE00003582817
8354  ENSG00000185917       ENST00000399215 ENSE00003584489
8355  ENSG00000185917       ENST00000399215 ENSE00003594407
8356  ENSG00000185917       ENST00000399215 ENSE00003480317
8357  ENSG00000185917       ENST00000399215 ENSE00001536987
8358  ENSG00000185917       ENST00000481477 ENSE00001938468
8359  ENSG00000185917       ENST00000481477 ENSE00003555627
8360  ENSG00000185917       ENST00000481477 ENSE00003625862
8361  ENSG00000185917       ENST00000481477 ENSE00003530209
8362  ENSG00000185917       ENST00000481477 ENSE00003669031
8363  ENSG00000185917       ENST00000481477 ENSE00003620581
8364  ENSG00000185917       ENST00000481477 ENSE00003608660
8365  ENSG00000185917       ENST00000481477 ENSE00003502527
8366  ENSG00000185917       ENST00000481477 ENSE00003483155
8367  ENSG00000185917       ENST00000481477 ENSE00003520090
8368  ENSG00000185917       ENST00000481477 ENSE00001957727
8369  ENSG00000185917       ENST00000399212 ENSE00003682516
8370  ENSG00000185917       ENST00000399212 ENSE00003480255
8371  ENSG00000185917       ENST00000399212 ENSE00003545287
8372  ENSG00000185917       ENST00000399212 ENSE00003690844
8373  ENSG00000185917       ENST00000399212 ENSE00003582817
8374  ENSG00000185917       ENST00000399212 ENSE00003584489
8375  ENSG00000185917       ENST00000399212 ENSE00003594407
8376  ENSG00000185917       ENST00000399212 ENSE00003480317
8377  ENSG00000185917       ENST00000399212 ENSE00001536987
8378  ENSG00000185917       ENST00000399212 ENSE00001536980
8379  ENSG00000185917       ENST00000399212 ENSE00003671031
8380  ENSG00000185917       ENST00000399212 ENSE00001536969
8381  ENSG00000185917       ENST00000332131 ENSE00003682516
8382  ENSG00000185917       ENST00000332131 ENSE00003480255
8383  ENSG00000185917       ENST00000332131 ENSE00003545287
8384  ENSG00000185917       ENST00000332131 ENSE00003690844
8385  ENSG00000185917       ENST00000332131 ENSE00003582817
8386  ENSG00000185917       ENST00000332131 ENSE00003584489
8387  ENSG00000185917       ENST00000332131 ENSE00003594407
8388  ENSG00000185917       ENST00000332131 ENSE00003480317
8389  ENSG00000185917       ENST00000332131 ENSE00001957727
8390  ENSG00000185917       ENST00000332131 ENSE00001799578
8391  ENSG00000185917       ENST00000332131 ENSE00003468436
8392  ENSG00000185917       ENST00000332131 ENSE00003687277
8393  ENSG00000185917       ENST00000487297 ENSE00003502527
8394  ENSG00000185917       ENST00000487297 ENSE00003483155
8395  ENSG00000185917       ENST00000487297 ENSE00003520090
8396  ENSG00000185917       ENST00000487297 ENSE00001927148
8397  ENSG00000185917       ENST00000487297 ENSE00001330579
8398  ENSG00000185917       ENST00000469482 ENSE00003608660
8399  ENSG00000185917       ENST00000469482 ENSE00003502527
8400  ENSG00000185917       ENST00000469482 ENSE00003483155
8401  ENSG00000185917       ENST00000469482 ENSE00003520090
8402  ENSG00000185917       ENST00000469482 ENSE00001890945
8403  ENSG00000185917       ENST00000399205 ENSE00003682516
8404  ENSG00000185917       ENST00000399205 ENSE00003480255
8405  ENSG00000185917       ENST00000399205 ENSE00003545287
8406  ENSG00000185917       ENST00000399205 ENSE00003690844
8407  ENSG00000185917       ENST00000399205 ENSE00003671031
8408  ENSG00000185917       ENST00000399205 ENSE00001536969
8409  ENSG00000185917       ENST00000399205 ENSE00001536960
8410  ENSG00000185917       ENST00000399205 ENSE00001536954
8411  ENSG00000185917       ENST00000399208 ENSE00003682516
8412  ENSG00000185917       ENST00000399208 ENSE00003480255
8413  ENSG00000185917       ENST00000399208 ENSE00003545287
8414  ENSG00000185917       ENST00000399208 ENSE00003690844
8415  ENSG00000185917       ENST00000399208 ENSE00001536954
8416  ENSG00000185917       ENST00000399208 ENSE00001941692
8417  ENSG00000185917       ENST00000399208 ENSE00003592720
8418  ENSG00000185917       ENST00000399201 ENSE00003682516
8419  ENSG00000185917       ENST00000399201 ENSE00003480255
8420  ENSG00000185917       ENST00000399201 ENSE00003545287
8421  ENSG00000185917       ENST00000399201 ENSE00003690844
8422  ENSG00000185917       ENST00000399201 ENSE00003555627
8423  ENSG00000185917       ENST00000399201 ENSE00001536969
8424  ENSG00000185917       ENST00000399201 ENSE00001536954
8425  ENSG00000185917       ENST00000399201 ENSE00001536934
8426  ENSG00000185917       ENST00000399207 ENSE00003682516
8427  ENSG00000185917       ENST00000399207 ENSE00003480255
8428  ENSG00000185917       ENST00000399207 ENSE00003545287
8429  ENSG00000185917       ENST00000399207 ENSE00003690844
8430  ENSG00000185917       ENST00000399207 ENSE00003468436
8431  ENSG00000185917       ENST00000399207 ENSE00001536948
8432  ENSG00000185917       ENST00000399207 ENSE00001536946
8433  ENSG00000185917       ENST00000424303 ENSE00003682516
8434  ENSG00000185917       ENST00000424303 ENSE00003480255
8435  ENSG00000185917       ENST00000424303 ENSE00003545287
8436  ENSG00000185917       ENST00000424303 ENSE00003592720
8437  ENSG00000185917       ENST00000424303 ENSE00002517842
8438  ENSG00000185917       ENST00000424303 ENSE00001722077
8439  ENSG00000185917       ENST00000429161 ENSE00003682516
8440  ENSG00000185917       ENST00000429161 ENSE00003480255
8441  ENSG00000185917       ENST00000429161 ENSE00003545287
8442  ENSG00000185917       ENST00000429161 ENSE00003468436
8443  ENSG00000185917       ENST00000429161 ENSE00001536960
8444  ENSG00000185917       ENST00000429161 ENSE00001643676
8445  ENSG00000185917       ENST00000485865 ENSE00003530209
8446  ENSG00000185917       ENST00000485865 ENSE00001927489
8447  ENSG00000185917       ENST00000485865 ENSE00003477604
8448  ENSG00000185917       ENST00000485865 ENSE00001827880
8449  ENSG00000185917       ENST00000446166 ENSE00003682516
8450  ENSG00000185917       ENST00000446166 ENSE00003480255
8451  ENSG00000185917       ENST00000446166 ENSE00003545287
8452  ENSG00000185917       ENST00000446166 ENSE00003555627
8453  ENSG00000185917       ENST00000446166 ENSE00001536980
8454  ENSG00000185917       ENST00000446166 ENSE00001536969
8455  ENSG00000185917       ENST00000446166 ENSE00001786022
8456  ENSG00000185917       ENST00000442559 ENSE00003682516
8457  ENSG00000185917       ENST00000442559 ENSE00003480255
8458  ENSG00000185917       ENST00000442559 ENSE00003555627
8459  ENSG00000185917       ENST00000442559 ENSE00001536969
8460  ENSG00000185917       ENST00000442559 ENSE00002487387
8461  ENSG00000185917       ENST00000442559 ENSE00001798629
8462  ENSG00000185917       ENST00000460704 ENSE00001882789
8463  ENSG00000185917       ENST00000460704 ENSE00001869422
8464  ENSG00000185917       ENST00000443703 ENSE00003682516
8465  ENSG00000185917       ENST00000443703 ENSE00003592720
8466  ENSG00000185917       ENST00000443703 ENSE00001624437
8467  ENSG00000185917       ENST00000443703 ENSE00001763098
8468  ENSG00000276738       ENST00000615444 ENSE00003734790
8469  ENSG00000233206       ENST00000413190 ENSE00001788148
8470  ENSG00000234439       ENST00000447938 ENSE00001742157
8471  ENSG00000215353       ENST00000400117 ENSE00001541625
8472  ENSG00000159256       ENST00000492336 ENSE00003481905
8473  ENSG00000159256       ENST00000492336 ENSE00003542582
8474  ENSG00000159256       ENST00000492336 ENSE00003511660
8475  ENSG00000159256       ENST00000492336 ENSE00003612731
8476  ENSG00000159256       ENST00000492336 ENSE00001816746
8477  ENSG00000159256       ENST00000400485 ENSE00003657062
8478  ENSG00000159256       ENST00000400485 ENSE00003566823
8479  ENSG00000159256       ENST00000400485 ENSE00003482680
8480  ENSG00000159256       ENST00000400485 ENSE00003615780
8481  ENSG00000159256       ENST00000400485 ENSE00003667982
8482  ENSG00000159256       ENST00000400485 ENSE00003477961
8483  ENSG00000159256       ENST00000400485 ENSE00003579316
8484  ENSG00000159256       ENST00000400485 ENSE00003636120
8485  ENSG00000159256       ENST00000400485 ENSE00003621847
8486  ENSG00000159256       ENST00000400485 ENSE00003570014
8487  ENSG00000159256       ENST00000400485 ENSE00003623420
8488  ENSG00000159256       ENST00000400485 ENSE00003522346
8489  ENSG00000159256       ENST00000400485 ENSE00003620224
8490  ENSG00000159256       ENST00000400485 ENSE00003549856
8491  ENSG00000159256       ENST00000400485 ENSE00003676247
8492  ENSG00000159256       ENST00000400485 ENSE00003693820
8493  ENSG00000159256       ENST00000400485 ENSE00003663455
8494  ENSG00000159256       ENST00000487909 ENSE00003511660
8495  ENSG00000159256       ENST00000487909 ENSE00003612731
8496  ENSG00000159256       ENST00000487909 ENSE00001844409
8497  ENSG00000159256       ENST00000487909 ENSE00003633497
8498  ENSG00000159256       ENST00000487909 ENSE00003462510
8499  ENSG00000159256       ENST00000487909 ENSE00003629032
8500  ENSG00000159256       ENST00000487909 ENSE00003561106
8501  ENSG00000159256       ENST00000487909 ENSE00003623617
8502  ENSG00000159256       ENST00000487909 ENSE00003559718
8503  ENSG00000159256       ENST00000487909 ENSE00003470004
8504  ENSG00000159256       ENST00000487909 ENSE00003550917
8505  ENSG00000159256       ENST00000487909 ENSE00003661371
8506  ENSG00000159256       ENST00000487909 ENSE00003506559
8507  ENSG00000159256       ENST00000487909 ENSE00003492014
8508  ENSG00000159256       ENST00000487909 ENSE00003652189
8509  ENSG00000159256       ENST00000487909 ENSE00003555085
8510  ENSG00000159256       ENST00000485933 ENSE00001890132
8511  ENSG00000159256       ENST00000485933 ENSE00001928353
8512  ENSG00000159256       ENST00000485299 ENSE00003623617
8513  ENSG00000159256       ENST00000485299 ENSE00003559718
8514  ENSG00000159256       ENST00000485299 ENSE00001876771
8515  ENSG00000159256       ENST00000485299 ENSE00001827151
8516  ENSG00000159256       ENST00000484028 ENSE00003506559
8517  ENSG00000159256       ENST00000484028 ENSE00001859893
8518  ENSG00000159256       ENST00000484028 ENSE00001875331
8519  ENSG00000159256       ENST00000546482 ENSE00003693820
8520  ENSG00000159256       ENST00000546482 ENSE00003489439
8521  ENSG00000159256       ENST00000546482 ENSE00002350566
8522  ENSG00000159256       ENST00000546482 ENSE00003668379
8523  ENSG00000159256       ENST00000546482 ENSE00002410964
8524  ENSG00000159256       ENST00000546482 ENSE00002342944
8525  ENSG00000159256       ENST00000546482 ENSE00002355022
8526  ENSG00000159256       ENST00000546482 ENSE00002333753
8527  ENSG00000159256       ENST00000549948 ENSE00003693820
8528  ENSG00000159256       ENST00000549948 ENSE00003489439
8529  ENSG00000159256       ENST00000549948 ENSE00002350566
8530  ENSG00000159256       ENST00000549948 ENSE00002355022
8531  ENSG00000159256       ENST00000549948 ENSE00002333753
8532  ENSG00000159256       ENST00000549948 ENSE00003579232
8533  ENSG00000159256       ENST00000549948 ENSE00002388022
8534  ENSG00000159256       ENST00000551788 ENSE00003693820
8535  ENSG00000159256       ENST00000551788 ENSE00003489439
8536  ENSG00000159256       ENST00000551788 ENSE00002350566
8537  ENSG00000159256       ENST00000551788 ENSE00003668379
8538  ENSG00000159256       ENST00000551788 ENSE00002355022
8539  ENSG00000159256       ENST00000551788 ENSE00002333753
8540  ENSG00000159256       ENST00000551367 ENSE00003652189
8541  ENSG00000159256       ENST00000551367 ENSE00002333753
8542  ENSG00000159256       ENST00000551367 ENSE00003501266
8543  ENSG00000159256       ENST00000552581 ENSE00003693820
8544  ENSG00000159256       ENST00000552581 ENSE00002355022
8545  ENSG00000159256       ENST00000552581 ENSE00002333753
8546  ENSG00000159256       ENST00000552581 ENSE00003559346
8547  ENSG00000159256       ENST00000552581 ENSE00002372498
8548  ENSG00000159256       ENST00000552581 ENSE00003560391
8549  ENSG00000159256       ENST00000552581 ENSE00003463975
8550  ENSG00000159256       ENST00000547657 ENSE00003652189
8551  ENSG00000159256       ENST00000547657 ENSE00002410964
8552  ENSG00000159256       ENST00000547657 ENSE00002355022
8553  ENSG00000159256       ENST00000547657 ENSE00002333753
8554  ENSG00000159256       ENST00000547657 ENSE00003501266
8555  ENSG00000228107       ENST00000397184 ENSE00001723336
8556  ENSG00000228107       ENST00000397184 ENSE00001627362
8557  ENSG00000159259       ENST00000314103 ENSE00001384227
8558  ENSG00000159259       ENST00000314103 ENSE00003477571
8559  ENSG00000159259       ENST00000314103 ENSE00003613324
8560  ENSG00000159259       ENST00000314103 ENSE00003583414
8561  ENSG00000159259       ENST00000314103 ENSE00003480180
8562  ENSG00000159259       ENST00000314103 ENSE00003672161
8563  ENSG00000159259       ENST00000314103 ENSE00001044347
8564  ENSG00000159259       ENST00000314103 ENSE00003494204
8565  ENSG00000159259       ENST00000314103 ENSE00001044360
8566  ENSG00000159259       ENST00000314103 ENSE00001044354
8567  ENSG00000159259       ENST00000314103 ENSE00003561304
8568  ENSG00000159259       ENST00000314103 ENSE00001044359
8569  ENSG00000159259       ENST00000314103 ENSE00001044343
8570  ENSG00000159259       ENST00000314103 ENSE00001213718
8571  ENSG00000159259       ENST00000480486 ENSE00003562978
8572  ENSG00000159259       ENST00000480486 ENSE00003506630
8573  ENSG00000159259       ENST00000480486 ENSE00003610974
8574  ENSG00000159259       ENST00000480486 ENSE00003680325
8575  ENSG00000159259       ENST00000480486 ENSE00003552194
8576  ENSG00000159259       ENST00000480486 ENSE00001906268
8577  ENSG00000159259       ENST00000481458 ENSE00001953480
8578  ENSG00000159259       ENST00000481458 ENSE00003637834
8579  ENSG00000159259       ENST00000481458 ENSE00003621858
8580  ENSG00000159259       ENST00000481458 ENSE00001864121
8581  ENSG00000234008       ENST00000440405 ENSE00001678453
8582  ENSG00000228149       ENST00000437106 ENSE00001635423
8583  ENSG00000160214       ENST00000475534 ENSE00001931102
8584  ENSG00000160214       ENST00000475534 ENSE00003656454
8585  ENSG00000160214       ENST00000475534 ENSE00003550106
8586  ENSG00000160214       ENST00000475534 ENSE00003516124
8587  ENSG00000160214       ENST00000475534 ENSE00003535222
8588  ENSG00000160214       ENST00000475534 ENSE00001880625
8589  ENSG00000160214       ENST00000497547 ENSE00001867462
8590  ENSG00000160214       ENST00000497547 ENSE00003577332
8591  ENSG00000160214       ENST00000497547 ENSE00003564822
8592  ENSG00000160214       ENST00000497547 ENSE00003580595
8593  ENSG00000160214       ENST00000497547 ENSE00003460664
8594  ENSG00000160214       ENST00000497547 ENSE00003549420
8595  ENSG00000160214       ENST00000497547 ENSE00003626947
8596  ENSG00000160214       ENST00000497547 ENSE00003546458
8597  ENSG00000160214       ENST00000497547 ENSE00003493319
8598  ENSG00000160214       ENST00000497547 ENSE00003627514
8599  ENSG00000160214       ENST00000497547 ENSE00003527287
8600  ENSG00000160214       ENST00000497547 ENSE00003680163
8601  ENSG00000160214       ENST00000497547 ENSE00003497110
8602  ENSG00000160214       ENST00000483896 ENSE00003656454
8603  ENSG00000160214       ENST00000483896 ENSE00003550106
8604  ENSG00000160214       ENST00000483896 ENSE00003516124
8605  ENSG00000160214       ENST00000483896 ENSE00003535222
8606  ENSG00000160214       ENST00000483896 ENSE00001897232
8607  ENSG00000160214       ENST00000483896 ENSE00001818491
8608  ENSG00000160214       ENST00000483896 ENSE00003543761
8609  ENSG00000160214       ENST00000483896 ENSE00003519158
8610  ENSG00000160214       ENST00000483896 ENSE00001935204
8611  ENSG00000160214       ENST00000492638 ENSE00003656454
8612  ENSG00000160214       ENST00000492638 ENSE00001820769
8613  ENSG00000160214       ENST00000492638 ENSE00001845578
8614  ENSG00000160214       ENST00000473988 ENSE00001824364
8615  ENSG00000160214       ENST00000473988 ENSE00001893624
8616  ENSG00000160214       ENST00000467112 ENSE00003535222
8617  ENSG00000160214       ENST00000467112 ENSE00003543761
8618  ENSG00000160214       ENST00000467112 ENSE00003519158
8619  ENSG00000160214       ENST00000467112 ENSE00001920474
8620  ENSG00000160214       ENST00000467112 ENSE00003495573
8621  ENSG00000160214       ENST00000467112 ENSE00003676200
8622  ENSG00000160214       ENST00000467112 ENSE00003500627
8623  ENSG00000160214       ENST00000467112 ENSE00003681408
8624  ENSG00000160214       ENST00000467112 ENSE00003507179
8625  ENSG00000160214       ENST00000467112 ENSE00003478106
8626  ENSG00000160214       ENST00000471909 ENSE00003519158
8627  ENSG00000160214       ENST00000471909 ENSE00003495573
8628  ENSG00000160214       ENST00000471909 ENSE00003676200
8629  ENSG00000160214       ENST00000471909 ENSE00003500627
8630  ENSG00000160214       ENST00000471909 ENSE00003681408
8631  ENSG00000160214       ENST00000471909 ENSE00003507179
8632  ENSG00000160214       ENST00000471909 ENSE00003478106
8633  ENSG00000160214       ENST00000471909 ENSE00001872195
8634  ENSG00000234340       ENST00000433524 ENSE00001635068
8635  ENSG00000154646       ENST00000284885 ENSE00001017019
8636  ENSG00000154646       ENST00000284885 ENSE00001017017
8637  ENSG00000154646       ENST00000284885 ENSE00001017016
8638  ENSG00000154646       ENST00000284885 ENSE00003606729
8639  ENSG00000154646       ENST00000284885 ENSE00001017000
8640  ENSG00000154646       ENST00000284885 ENSE00003669261
8641  ENSG00000154646       ENST00000284885 ENSE00003787340
8642  ENSG00000154646       ENST00000284885 ENSE00001017001
8643  ENSG00000154646       ENST00000284885 ENSE00001017009
8644  ENSG00000154646       ENST00000284885 ENSE00001016995
8645  ENSG00000154646       ENST00000284885 ENSE00001017012
8646  ENSG00000154646       ENST00000284885 ENSE00001016999
8647  ENSG00000154646       ENST00000284885 ENSE00001016997
8648  ENSG00000154646       ENST00000284885 ENSE00001017015
8649  ENSG00000154646       ENST00000284885 ENSE00001017011
8650  ENSG00000154646       ENST00000284885 ENSE00001017002
8651  ENSG00000154646       ENST00000284885 ENSE00001017006
8652  ENSG00000154646       ENST00000284885 ENSE00001017014
8653  ENSG00000154646       ENST00000284885 ENSE00001016996
8654  ENSG00000154646       ENST00000284885 ENSE00001017005
8655  ENSG00000154646       ENST00000284885 ENSE00001017018
8656  ENSG00000154646       ENST00000284885 ENSE00001017004
8657  ENSG00000154646       ENST00000284885 ENSE00001016998
8658  ENSG00000154646       ENST00000284885 ENSE00001017003
8659  ENSG00000154646       ENST00000284885 ENSE00001017008
8660  ENSG00000154646       ENST00000422787 ENSE00001017017
8661  ENSG00000154646       ENST00000422787 ENSE00001017016
8662  ENSG00000154646       ENST00000422787 ENSE00003606729
8663  ENSG00000154646       ENST00000422787 ENSE00001017000
8664  ENSG00000154646       ENST00000422787 ENSE00003669261
8665  ENSG00000154646       ENST00000422787 ENSE00003787340
8666  ENSG00000154646       ENST00000422787 ENSE00001738585
8667  ENSG00000154646       ENST00000422787 ENSE00001643450
8668  ENSG00000154646       ENST00000474775 ENSE00001812633
8669  ENSG00000154646       ENST00000474775 ENSE00003604709
8670  ENSG00000154646       ENST00000474775 ENSE00003526428
8671  ENSG00000154646       ENST00000474775 ENSE00001890022
8672  ENSG00000231755       ENST00000447175 ENSE00001614466
8673  ENSG00000231755       ENST00000447175 ENSE00001760043
8674  ENSG00000231755       ENST00000447175 ENSE00001646083
8675  ENSG00000159082       ENST00000438952 ENSE00001640749
8676  ENSG00000159082       ENST00000438952 ENSE00001694887
8677  ENSG00000159082       ENST00000438952 ENSE00001716834
8678  ENSG00000159082       ENST00000438952 ENSE00001600415
8679  ENSG00000159082       ENST00000438952 ENSE00001672736
8680  ENSG00000159082       ENST00000438952 ENSE00001768777
8681  ENSG00000159082       ENST00000438952 ENSE00001659680
8682  ENSG00000159082       ENST00000438952 ENSE00001709732
8683  ENSG00000159082       ENST00000630077 ENSE00001600415
8684  ENSG00000159082       ENST00000630077 ENSE00001672736
8685  ENSG00000159082       ENST00000630077 ENSE00001768777
8686  ENSG00000159082       ENST00000630077 ENSE00003765054
8687  ENSG00000159082       ENST00000630077 ENSE00003633787
8688  ENSG00000159082       ENST00000630077 ENSE00001692945
8689  ENSG00000159082       ENST00000630077 ENSE00001594835
8690  ENSG00000159082       ENST00000630077 ENSE00001723440
8691  ENSG00000159082       ENST00000630077 ENSE00001711441
8692  ENSG00000159082       ENST00000630077 ENSE00001710675
8693  ENSG00000159082       ENST00000630077 ENSE00001660563
8694  ENSG00000159082       ENST00000630077 ENSE00001615936
8695  ENSG00000159082       ENST00000630077 ENSE00001719041
8696  ENSG00000159082       ENST00000630077 ENSE00001611870
8697  ENSG00000159082       ENST00000630077 ENSE00001539668
8698  ENSG00000159082       ENST00000630077 ENSE00001677991
8699  ENSG00000159082       ENST00000630077 ENSE00001695277
8700  ENSG00000159082       ENST00000630077 ENSE00001661250
8701  ENSG00000159082       ENST00000630077 ENSE00002276949
8702  ENSG00000159082       ENST00000630077 ENSE00001692306
8703  ENSG00000159082       ENST00000630077 ENSE00003510649
8704  ENSG00000159082       ENST00000630077 ENSE00003560819
8705  ENSG00000159082       ENST00000630077 ENSE00001706423
8706  ENSG00000159082       ENST00000630077 ENSE00001604255
8707  ENSG00000159082       ENST00000630077 ENSE00003584985
8708  ENSG00000159082       ENST00000630077 ENSE00001800575
8709  ENSG00000159082       ENST00000630077 ENSE00001628547
8710  ENSG00000159082       ENST00000630077 ENSE00003762064
8711  ENSG00000159082       ENST00000382499 ENSE00001694887
8712  ENSG00000159082       ENST00000382499 ENSE00001716834
8713  ENSG00000159082       ENST00000382499 ENSE00001600415
8714  ENSG00000159082       ENST00000382499 ENSE00001672736
8715  ENSG00000159082       ENST00000382499 ENSE00001768777
8716  ENSG00000159082       ENST00000382499 ENSE00001659680
8717  ENSG00000159082       ENST00000382499 ENSE00001692945
8718  ENSG00000159082       ENST00000382499 ENSE00001594835
8719  ENSG00000159082       ENST00000382499 ENSE00001723440
8720  ENSG00000159082       ENST00000382499 ENSE00001711441
8721  ENSG00000159082       ENST00000382499 ENSE00001710675
8722  ENSG00000159082       ENST00000382499 ENSE00001660563
8723  ENSG00000159082       ENST00000382499 ENSE00001615936
8724  ENSG00000159082       ENST00000382499 ENSE00001719041
8725  ENSG00000159082       ENST00000382499 ENSE00001611870
8726  ENSG00000159082       ENST00000382499 ENSE00001677991
8727  ENSG00000159082       ENST00000382499 ENSE00001695277
8728  ENSG00000159082       ENST00000382499 ENSE00001661250
8729  ENSG00000159082       ENST00000382499 ENSE00002276949
8730  ENSG00000159082       ENST00000382499 ENSE00001692306
8731  ENSG00000159082       ENST00000382499 ENSE00003510649
8732  ENSG00000159082       ENST00000382499 ENSE00003560819
8733  ENSG00000159082       ENST00000382499 ENSE00001706423
8734  ENSG00000159082       ENST00000382499 ENSE00001604255
8735  ENSG00000159082       ENST00000382499 ENSE00003584985
8736  ENSG00000159082       ENST00000382499 ENSE00001800575
8737  ENSG00000159082       ENST00000382499 ENSE00001628547
8738  ENSG00000159082       ENST00000382499 ENSE00001492364
8739  ENSG00000159082       ENST00000382499 ENSE00003514976
8740  ENSG00000159082       ENST00000382499 ENSE00001640014
8741  ENSG00000159082       ENST00000382499 ENSE00001619493
8742  ENSG00000159082       ENST00000382499 ENSE00001043068
8743  ENSG00000159082       ENST00000382499 ENSE00001492363
8744  ENSG00000159082       ENST00000433931 ENSE00001694887
8745  ENSG00000159082       ENST00000433931 ENSE00001716834
8746  ENSG00000159082       ENST00000433931 ENSE00001600415
8747  ENSG00000159082       ENST00000433931 ENSE00001672736
8748  ENSG00000159082       ENST00000433931 ENSE00001768777
8749  ENSG00000159082       ENST00000433931 ENSE00001692945
8750  ENSG00000159082       ENST00000433931 ENSE00001594835
8751  ENSG00000159082       ENST00000433931 ENSE00001723440
8752  ENSG00000159082       ENST00000433931 ENSE00001711441
8753  ENSG00000159082       ENST00000433931 ENSE00001710675
8754  ENSG00000159082       ENST00000433931 ENSE00001660563
8755  ENSG00000159082       ENST00000433931 ENSE00001615936
8756  ENSG00000159082       ENST00000433931 ENSE00001719041
8757  ENSG00000159082       ENST00000433931 ENSE00001611870
8758  ENSG00000159082       ENST00000433931 ENSE00001677991
8759  ENSG00000159082       ENST00000433931 ENSE00001695277
8760  ENSG00000159082       ENST00000433931 ENSE00001661250
8761  ENSG00000159082       ENST00000433931 ENSE00002276949
8762  ENSG00000159082       ENST00000433931 ENSE00001692306
8763  ENSG00000159082       ENST00000433931 ENSE00003510649
8764  ENSG00000159082       ENST00000433931 ENSE00003560819
8765  ENSG00000159082       ENST00000433931 ENSE00001706423
8766  ENSG00000159082       ENST00000433931 ENSE00001604255
8767  ENSG00000159082       ENST00000433931 ENSE00003584985
8768  ENSG00000159082       ENST00000433931 ENSE00001800575
8769  ENSG00000159082       ENST00000433931 ENSE00001628547
8770  ENSG00000159082       ENST00000433931 ENSE00003514976
8771  ENSG00000159082       ENST00000433931 ENSE00001640014
8772  ENSG00000159082       ENST00000433931 ENSE00001619493
8773  ENSG00000159082       ENST00000433931 ENSE00001043068
8774  ENSG00000159082       ENST00000433931 ENSE00001798903
8775  ENSG00000159082       ENST00000433931 ENSE00001707933
8776  ENSG00000159082       ENST00000418301 ENSE00001672736
8777  ENSG00000159082       ENST00000418301 ENSE00001768777
8778  ENSG00000159082       ENST00000418301 ENSE00001665192
8779  ENSG00000159082       ENST00000418301 ENSE00001597791
8780  ENSG00000159082       ENST00000418301 ENSE00001684229
8781  ENSG00000159082       ENST00000467445 ENSE00003581395
8782  ENSG00000159082       ENST00000467445 ENSE00001950509
8783  ENSG00000159082       ENST00000464778 ENSE00003519084
8784  ENSG00000159082       ENST00000464778 ENSE00003593335
8785  ENSG00000159082       ENST00000464778 ENSE00001950568
8786  ENSG00000159082       ENST00000464778 ENSE00001865588
8787  ENSG00000159082       ENST00000429236 ENSE00003633787
8788  ENSG00000159082       ENST00000429236 ENSE00001692945
8789  ENSG00000159082       ENST00000429236 ENSE00001594835
8790  ENSG00000159082       ENST00000429236 ENSE00001723440
8791  ENSG00000159082       ENST00000429236 ENSE00001711441
8792  ENSG00000159082       ENST00000429236 ENSE00001710675
8793  ENSG00000159082       ENST00000429236 ENSE00001660563
8794  ENSG00000159082       ENST00000429236 ENSE00001615936
8795  ENSG00000159082       ENST00000429236 ENSE00001719041
8796  ENSG00000159082       ENST00000429236 ENSE00001611870
8797  ENSG00000159082       ENST00000429236 ENSE00001539668
8798  ENSG00000159082       ENST00000429236 ENSE00001677991
8799  ENSG00000159082       ENST00000429236 ENSE00001695277
8800  ENSG00000159082       ENST00000429236 ENSE00001661250
8801  ENSG00000159082       ENST00000429236 ENSE00001801600
8802  ENSG00000159082       ENST00000429236 ENSE00001763897
8803  ENSG00000159082       ENST00000456084 ENSE00001692945
8804  ENSG00000159082       ENST00000456084 ENSE00001594835
8805  ENSG00000159082       ENST00000456084 ENSE00001685197
8806  ENSG00000159082       ENST00000456084 ENSE00001624962
8807  ENSG00000159082       ENST00000357345 ENSE00001694887
8808  ENSG00000159082       ENST00000357345 ENSE00001716834
8809  ENSG00000159082       ENST00000357345 ENSE00001600415
8810  ENSG00000159082       ENST00000357345 ENSE00001672736
8811  ENSG00000159082       ENST00000357345 ENSE00001768777
8812  ENSG00000159082       ENST00000357345 ENSE00001659680
8813  ENSG00000159082       ENST00000357345 ENSE00003633787
8814  ENSG00000159082       ENST00000357345 ENSE00001692945
8815  ENSG00000159082       ENST00000357345 ENSE00001594835
8816  ENSG00000159082       ENST00000357345 ENSE00001723440
8817  ENSG00000159082       ENST00000357345 ENSE00001711441
8818  ENSG00000159082       ENST00000357345 ENSE00001710675
8819  ENSG00000159082       ENST00000357345 ENSE00001660563
8820  ENSG00000159082       ENST00000357345 ENSE00001615936
8821  ENSG00000159082       ENST00000357345 ENSE00001719041
8822  ENSG00000159082       ENST00000357345 ENSE00001611870
8823  ENSG00000159082       ENST00000357345 ENSE00001677991
8824  ENSG00000159082       ENST00000357345 ENSE00001695277
8825  ENSG00000159082       ENST00000357345 ENSE00001661250
8826  ENSG00000159082       ENST00000357345 ENSE00002276949
8827  ENSG00000159082       ENST00000357345 ENSE00001692306
8828  ENSG00000159082       ENST00000357345 ENSE00003510649
8829  ENSG00000159082       ENST00000357345 ENSE00003560819
8830  ENSG00000159082       ENST00000357345 ENSE00001706423
8831  ENSG00000159082       ENST00000357345 ENSE00001604255
8832  ENSG00000159082       ENST00000357345 ENSE00003584985
8833  ENSG00000159082       ENST00000357345 ENSE00001800575
8834  ENSG00000159082       ENST00000357345 ENSE00001628547
8835  ENSG00000159082       ENST00000357345 ENSE00001640014
8836  ENSG00000159082       ENST00000357345 ENSE00001619493
8837  ENSG00000159082       ENST00000357345 ENSE00001801600
8838  ENSG00000159082       ENST00000357345 ENSE00003747770
8839  ENSG00000159082       ENST00000382491 ENSE00001600415
8840  ENSG00000159082       ENST00000382491 ENSE00001672736
8841  ENSG00000159082       ENST00000382491 ENSE00001768777
8842  ENSG00000159082       ENST00000382491 ENSE00001659680
8843  ENSG00000159082       ENST00000382491 ENSE00003633787
8844  ENSG00000159082       ENST00000382491 ENSE00001692945
8845  ENSG00000159082       ENST00000382491 ENSE00001594835
8846  ENSG00000159082       ENST00000382491 ENSE00001723440
8847  ENSG00000159082       ENST00000382491 ENSE00001711441
8848  ENSG00000159082       ENST00000382491 ENSE00001710675
8849  ENSG00000159082       ENST00000382491 ENSE00001660563
8850  ENSG00000159082       ENST00000382491 ENSE00001615936
8851  ENSG00000159082       ENST00000382491 ENSE00001719041
8852  ENSG00000159082       ENST00000382491 ENSE00001611870
8853  ENSG00000159082       ENST00000382491 ENSE00001539668
8854  ENSG00000159082       ENST00000382491 ENSE00001677991
8855  ENSG00000159082       ENST00000382491 ENSE00001695277
8856  ENSG00000159082       ENST00000382491 ENSE00001661250
8857  ENSG00000159082       ENST00000382491 ENSE00002276949
8858  ENSG00000159082       ENST00000382491 ENSE00001692306
8859  ENSG00000159082       ENST00000382491 ENSE00003510649
8860  ENSG00000159082       ENST00000382491 ENSE00003560819
8861  ENSG00000159082       ENST00000382491 ENSE00001706423
8862  ENSG00000159082       ENST00000382491 ENSE00001604255
8863  ENSG00000159082       ENST00000382491 ENSE00003584985
8864  ENSG00000159082       ENST00000382491 ENSE00001800575
8865  ENSG00000159082       ENST00000382491 ENSE00001628547
8866  ENSG00000159082       ENST00000382491 ENSE00003747770
8867  ENSG00000159082       ENST00000382491 ENSE00003717800
8868  ENSG00000185658       ENST00000333229 ENSE00001880434
8869  ENSG00000185658       ENST00000333229 ENSE00003515339
8870  ENSG00000185658       ENST00000333229 ENSE00003653232
8871  ENSG00000185658       ENST00000333229 ENSE00003641761
8872  ENSG00000185658       ENST00000333229 ENSE00002431924
8873  ENSG00000185658       ENST00000333229 ENSE00002497178
8874  ENSG00000185658       ENST00000333229 ENSE00002462623
8875  ENSG00000185658       ENST00000333229 ENSE00002458215
8876  ENSG00000185658       ENST00000333229 ENSE00002465628
8877  ENSG00000185658       ENST00000333229 ENSE00002482303
8878  ENSG00000185658       ENST00000333229 ENSE00002520544
8879  ENSG00000185658       ENST00000333229 ENSE00002433897
8880  ENSG00000185658       ENST00000333229 ENSE00002506458
8881  ENSG00000185658       ENST00000333229 ENSE00002521348
8882  ENSG00000185658       ENST00000333229 ENSE00002497896
8883  ENSG00000185658       ENST00000333229 ENSE00002446887
8884  ENSG00000185658       ENST00000333229 ENSE00003490914
8885  ENSG00000185658       ENST00000333229 ENSE00003536179
8886  ENSG00000185658       ENST00000333229 ENSE00003600281
8887  ENSG00000185658       ENST00000333229 ENSE00003655791
8888  ENSG00000185658       ENST00000333229 ENSE00003519259
8889  ENSG00000185658       ENST00000333229 ENSE00003584341
8890  ENSG00000185658       ENST00000333229 ENSE00002446443
8891  ENSG00000185658       ENST00000333229 ENSE00002470382
8892  ENSG00000185658       ENST00000333229 ENSE00002437169
8893  ENSG00000185658       ENST00000333229 ENSE00001788177
8894  ENSG00000185658       ENST00000333229 ENSE00001674297
8895  ENSG00000185658       ENST00000333229 ENSE00001651462
8896  ENSG00000185658       ENST00000333229 ENSE00001622845
8897  ENSG00000185658       ENST00000333229 ENSE00003582172
8898  ENSG00000185658       ENST00000333229 ENSE00003525602
8899  ENSG00000185658       ENST00000333229 ENSE00003677382
8900  ENSG00000185658       ENST00000333229 ENSE00003529207
8901  ENSG00000185658       ENST00000333229 ENSE00003621343
8902  ENSG00000185658       ENST00000333229 ENSE00003497316
8903  ENSG00000185658       ENST00000333229 ENSE00003520595
8904  ENSG00000185658       ENST00000333229 ENSE00003583448
8905  ENSG00000185658       ENST00000333229 ENSE00003562855
8906  ENSG00000185658       ENST00000333229 ENSE00003674456
8907  ENSG00000185658       ENST00000333229 ENSE00003675873
8908  ENSG00000185658       ENST00000333229 ENSE00003618132
8909  ENSG00000185658       ENST00000333229 ENSE00001780720
8910  ENSG00000185658       ENST00000446924 ENSE00003490914
8911  ENSG00000185658       ENST00000446924 ENSE00003536179
8912  ENSG00000185658       ENST00000446924 ENSE00003600281
8913  ENSG00000185658       ENST00000446924 ENSE00003655791
8914  ENSG00000185658       ENST00000446924 ENSE00003519259
8915  ENSG00000185658       ENST00000446924 ENSE00003584341
8916  ENSG00000185658       ENST00000446924 ENSE00002446443
8917  ENSG00000185658       ENST00000446924 ENSE00002470382
8918  ENSG00000185658       ENST00000446924 ENSE00002437169
8919  ENSG00000185658       ENST00000446924 ENSE00001788177
8920  ENSG00000185658       ENST00000446924 ENSE00001674297
8921  ENSG00000185658       ENST00000446924 ENSE00001651462
8922  ENSG00000185658       ENST00000446924 ENSE00001622845
8923  ENSG00000185658       ENST00000446924 ENSE00001794606
8924  ENSG00000185658       ENST00000446924 ENSE00001706237
8925  ENSG00000185658       ENST00000446924 ENSE00003622298
8926  ENSG00000185658       ENST00000446924 ENSE00003670759
8927  ENSG00000185658       ENST00000446924 ENSE00003580095
8928  ENSG00000185658       ENST00000446924 ENSE00003610171
8929  ENSG00000185658       ENST00000446924 ENSE00003596356
8930  ENSG00000185658       ENST00000446924 ENSE00003612392
8931  ENSG00000185658       ENST00000446924 ENSE00003672997
8932  ENSG00000185658       ENST00000446924 ENSE00003513288
8933  ENSG00000185658       ENST00000446924 ENSE00003545917
8934  ENSG00000185658       ENST00000446924 ENSE00003571434
8935  ENSG00000185658       ENST00000446924 ENSE00001696762
8936  ENSG00000185658       ENST00000342449 ENSE00003515339
8937  ENSG00000185658       ENST00000342449 ENSE00003653232
8938  ENSG00000185658       ENST00000342449 ENSE00003641761
8939  ENSG00000185658       ENST00000342449 ENSE00002431924
8940  ENSG00000185658       ENST00000342449 ENSE00002497178
8941  ENSG00000185658       ENST00000342449 ENSE00002462623
8942  ENSG00000185658       ENST00000342449 ENSE00002458215
8943  ENSG00000185658       ENST00000342449 ENSE00002465628
8944  ENSG00000185658       ENST00000342449 ENSE00002482303
8945  ENSG00000185658       ENST00000342449 ENSE00002520544
8946  ENSG00000185658       ENST00000342449 ENSE00002433897
8947  ENSG00000185658       ENST00000342449 ENSE00002506458
8948  ENSG00000185658       ENST00000342449 ENSE00002521348
8949  ENSG00000185658       ENST00000342449 ENSE00002497896
8950  ENSG00000185658       ENST00000342449 ENSE00002446887
8951  ENSG00000185658       ENST00000342449 ENSE00003490914
8952  ENSG00000185658       ENST00000342449 ENSE00003536179
8953  ENSG00000185658       ENST00000342449 ENSE00003600281
8954  ENSG00000185658       ENST00000342449 ENSE00003655791
8955  ENSG00000185658       ENST00000342449 ENSE00003519259
8956  ENSG00000185658       ENST00000342449 ENSE00003584341
8957  ENSG00000185658       ENST00000342449 ENSE00002446443
8958  ENSG00000185658       ENST00000342449 ENSE00002470382
8959  ENSG00000185658       ENST00000342449 ENSE00002437169
8960  ENSG00000185658       ENST00000342449 ENSE00001788177
8961  ENSG00000185658       ENST00000342449 ENSE00001674297
8962  ENSG00000185658       ENST00000342449 ENSE00001651462
8963  ENSG00000185658       ENST00000342449 ENSE00001622845
8964  ENSG00000185658       ENST00000342449 ENSE00003582172
8965  ENSG00000185658       ENST00000342449 ENSE00003525602
8966  ENSG00000185658       ENST00000342449 ENSE00003677382
8967  ENSG00000185658       ENST00000342449 ENSE00003529207
8968  ENSG00000185658       ENST00000342449 ENSE00003621343
8969  ENSG00000185658       ENST00000342449 ENSE00003497316
8970  ENSG00000185658       ENST00000342449 ENSE00003520595
8971  ENSG00000185658       ENST00000342449 ENSE00003583448
8972  ENSG00000185658       ENST00000342449 ENSE00003562855
8973  ENSG00000185658       ENST00000342449 ENSE00003674456
8974  ENSG00000185658       ENST00000342449 ENSE00003675873
8975  ENSG00000185658       ENST00000342449 ENSE00001883590
8976  ENSG00000185658       ENST00000342449 ENSE00001383767
8977  ENSG00000185658       ENST00000380800 ENSE00003515339
8978  ENSG00000185658       ENST00000380800 ENSE00003653232
8979  ENSG00000185658       ENST00000380800 ENSE00003641761
8980  ENSG00000185658       ENST00000380800 ENSE00002431924
8981  ENSG00000185658       ENST00000380800 ENSE00002497178
8982  ENSG00000185658       ENST00000380800 ENSE00002462623
8983  ENSG00000185658       ENST00000380800 ENSE00002458215
8984  ENSG00000185658       ENST00000380800 ENSE00002465628
8985  ENSG00000185658       ENST00000380800 ENSE00002482303
8986  ENSG00000185658       ENST00000380800 ENSE00002520544
8987  ENSG00000185658       ENST00000380800 ENSE00002433897
8988  ENSG00000185658       ENST00000380800 ENSE00002506458
8989  ENSG00000185658       ENST00000380800 ENSE00002521348
8990  ENSG00000185658       ENST00000380800 ENSE00002497896
8991  ENSG00000185658       ENST00000380800 ENSE00002446887
8992  ENSG00000185658       ENST00000380800 ENSE00003490914
8993  ENSG00000185658       ENST00000380800 ENSE00003536179
8994  ENSG00000185658       ENST00000380800 ENSE00003600281
8995  ENSG00000185658       ENST00000380800 ENSE00003655791
8996  ENSG00000185658       ENST00000380800 ENSE00003519259
8997  ENSG00000185658       ENST00000380800 ENSE00003584341
8998  ENSG00000185658       ENST00000380800 ENSE00002446443
8999  ENSG00000185658       ENST00000380800 ENSE00002470382
9000  ENSG00000185658       ENST00000380800 ENSE00002437169
9001  ENSG00000185658       ENST00000380800 ENSE00001788177
9002  ENSG00000185658       ENST00000380800 ENSE00001674297
9003  ENSG00000185658       ENST00000380800 ENSE00001651462
9004  ENSG00000185658       ENST00000380800 ENSE00001622845
9005  ENSG00000185658       ENST00000380800 ENSE00003582172
9006  ENSG00000185658       ENST00000380800 ENSE00003525602
9007  ENSG00000185658       ENST00000380800 ENSE00003677382
9008  ENSG00000185658       ENST00000380800 ENSE00003529207
9009  ENSG00000185658       ENST00000380800 ENSE00003621343
9010  ENSG00000185658       ENST00000380800 ENSE00003497316
9011  ENSG00000185658       ENST00000380800 ENSE00003520595
9012  ENSG00000185658       ENST00000380800 ENSE00003583448
9013  ENSG00000185658       ENST00000380800 ENSE00003562855
9014  ENSG00000185658       ENST00000380800 ENSE00003674456
9015  ENSG00000185658       ENST00000380800 ENSE00003675873
9016  ENSG00000185658       ENST00000380800 ENSE00003618132
9017  ENSG00000185658       ENST00000380800 ENSE00001897340
9018  ENSG00000185658       ENST00000380800 ENSE00001486321
9019  ENSG00000185658       ENST00000491564 ENSE00001852973
9020  ENSG00000185658       ENST00000491564 ENSE00001865375
9021  ENSG00000185658       ENST00000424441 ENSE00001674297
9022  ENSG00000185658       ENST00000424441 ENSE00001651462
9023  ENSG00000185658       ENST00000424441 ENSE00001622845
9024  ENSG00000185658       ENST00000424441 ENSE00003582172
9025  ENSG00000185658       ENST00000424441 ENSE00003525602
9026  ENSG00000185658       ENST00000424441 ENSE00003677382
9027  ENSG00000185658       ENST00000424441 ENSE00003529207
9028  ENSG00000185658       ENST00000424441 ENSE00003621343
9029  ENSG00000185658       ENST00000424441 ENSE00003520595
9030  ENSG00000185658       ENST00000424441 ENSE00003583448
9031  ENSG00000185658       ENST00000424441 ENSE00001731798
9032  ENSG00000185658       ENST00000424441 ENSE00001623960
9033  ENSG00000185658       ENST00000473813 ENSE00003670759
9034  ENSG00000185658       ENST00000473813 ENSE00003580095
9035  ENSG00000185658       ENST00000473813 ENSE00003686178
9036  ENSG00000185658       ENST00000473813 ENSE00003515471
9037  ENSG00000185658       ENST00000473813 ENSE00003676246
9038  ENSG00000185658       ENST00000473813 ENSE00001862816
9039  ENSG00000185658       ENST00000473813 ENSE00001827867
9040  ENSG00000185658       ENST00000445668 ENSE00002482303
9041  ENSG00000185658       ENST00000445668 ENSE00002520544
9042  ENSG00000185658       ENST00000445668 ENSE00002433897
9043  ENSG00000185658       ENST00000445668 ENSE00002506458
9044  ENSG00000185658       ENST00000445668 ENSE00002521348
9045  ENSG00000185658       ENST00000445668 ENSE00002497896
9046  ENSG00000185658       ENST00000445668 ENSE00002446887
9047  ENSG00000185658       ENST00000445668 ENSE00003490914
9048  ENSG00000185658       ENST00000445668 ENSE00003536179
9049  ENSG00000185658       ENST00000445668 ENSE00001735508
9050  ENSG00000185658       ENST00000445668 ENSE00003616362
9051  ENSG00000185658       ENST00000445668 ENSE00003575172
9052  ENSG00000185658       ENST00000445668 ENSE00003582397
9053  ENSG00000185658       ENST00000445668 ENSE00001619715
9054  ENSG00000185658       ENST00000430093 ENSE00002482303
9055  ENSG00000185658       ENST00000430093 ENSE00002520544
9056  ENSG00000185658       ENST00000430093 ENSE00002433897
9057  ENSG00000185658       ENST00000430093 ENSE00002506458
9058  ENSG00000185658       ENST00000430093 ENSE00002521348
9059  ENSG00000185658       ENST00000430093 ENSE00002497896
9060  ENSG00000185658       ENST00000430093 ENSE00002446887
9061  ENSG00000185658       ENST00000430093 ENSE00001735508
9062  ENSG00000185658       ENST00000430093 ENSE00003575172
9063  ENSG00000185658       ENST00000430093 ENSE00003582397
9064  ENSG00000185658       ENST00000430093 ENSE00001619715
9065  ENSG00000185658       ENST00000430093 ENSE00001783589
9066  ENSG00000185658       ENST00000430093 ENSE00003630425
9067  ENSG00000185658       ENST00000430093 ENSE00003687599
9068  ENSG00000185658       ENST00000430093 ENSE00003675221
9069  ENSG00000185658       ENST00000445245 ENSE00002482303
9070  ENSG00000185658       ENST00000445245 ENSE00002520544
9071  ENSG00000185658       ENST00000445245 ENSE00002433897
9072  ENSG00000185658       ENST00000445245 ENSE00002506458
9073  ENSG00000185658       ENST00000445245 ENSE00002521348
9074  ENSG00000185658       ENST00000445245 ENSE00002497896
9075  ENSG00000185658       ENST00000445245 ENSE00001735508
9076  ENSG00000185658       ENST00000445245 ENSE00003575172
9077  ENSG00000185658       ENST00000445245 ENSE00003582397
9078  ENSG00000185658       ENST00000445245 ENSE00001619715
9079  ENSG00000185658       ENST00000445245 ENSE00003630425
9080  ENSG00000185658       ENST00000445245 ENSE00003687599
9081  ENSG00000185658       ENST00000445245 ENSE00003675221
9082  ENSG00000185658       ENST00000445245 ENSE00001624112
9083  ENSG00000185658       ENST00000445245 ENSE00003495150
9084  ENSG00000185658       ENST00000455867 ENSE00002482303
9085  ENSG00000185658       ENST00000455867 ENSE00002520544
9086  ENSG00000185658       ENST00000455867 ENSE00002433897
9087  ENSG00000185658       ENST00000455867 ENSE00002506458
9088  ENSG00000185658       ENST00000455867 ENSE00002521348
9089  ENSG00000185658       ENST00000455867 ENSE00002497896
9090  ENSG00000185658       ENST00000455867 ENSE00002446887
9091  ENSG00000185658       ENST00000455867 ENSE00003490914
9092  ENSG00000185658       ENST00000455867 ENSE00003536179
9093  ENSG00000185658       ENST00000455867 ENSE00003600281
9094  ENSG00000185658       ENST00000455867 ENSE00003655791
9095  ENSG00000185658       ENST00000455867 ENSE00003584341
9096  ENSG00000185658       ENST00000455867 ENSE00001735508
9097  ENSG00000185658       ENST00000455867 ENSE00003564188
9098  ENSG00000185658       ENST00000412604 ENSE00002482303
9099  ENSG00000185658       ENST00000412604 ENSE00002520544
9100  ENSG00000185658       ENST00000412604 ENSE00002433897
9101  ENSG00000185658       ENST00000412604 ENSE00002506458
9102  ENSG00000185658       ENST00000412604 ENSE00002521348
9103  ENSG00000185658       ENST00000412604 ENSE00002497896
9104  ENSG00000185658       ENST00000412604 ENSE00002446887
9105  ENSG00000185658       ENST00000412604 ENSE00003490914
9106  ENSG00000185658       ENST00000412604 ENSE00003536179
9107  ENSG00000185658       ENST00000412604 ENSE00001735508
9108  ENSG00000185658       ENST00000412604 ENSE00003575172
9109  ENSG00000185658       ENST00000412604 ENSE00003582397
9110  ENSG00000185658       ENST00000412604 ENSE00002225679
9111  ENSG00000185658       ENST00000412604 ENSE00003540012
9112  ENSG00000185658       ENST00000412604 ENSE00003644923
9113  ENSG00000185658       ENST00000496759 ENSE00001851565
9114  ENSG00000185658       ENST00000496759 ENSE00001832241
9115  ENSG00000185658       ENST00000341322 ENSE00003515339
9116  ENSG00000185658       ENST00000341322 ENSE00003653232
9117  ENSG00000185658       ENST00000341322 ENSE00003641761
9118  ENSG00000185658       ENST00000341322 ENSE00001946259
9119  ENSG00000185658       ENST00000341322 ENSE00001486224
9120  ENSG00000185658       ENST00000470108 ENSE00001951079
9121  ENSG00000185658       ENST00000470108 ENSE00003497887
9122  ENSG00000185658       ENST00000470108 ENSE00003590815
9123  ENSG00000185658       ENST00000470108 ENSE00003594814
9124  ENSG00000185658       ENST00000470108 ENSE00001905226
9125  ENSG00000185658       ENST00000484090 ENSE00003590815
9126  ENSG00000185658       ENST00000484090 ENSE00001873973
9127  ENSG00000185658       ENST00000484090 ENSE00001871884
9128  ENSG00000255568       ENST00000603064 ENSE00003604103
9129  ENSG00000205622       ENST00000626259 ENSE00003767325
9130  ENSG00000205622       ENST00000626259 ENSE00003767488
9131  ENSG00000205622       ENST00000626259 ENSE00002440510
9132  ENSG00000205622       ENST00000626259 ENSE00003761206
9133  ENSG00000205622       ENST00000380931 ENSE00002440510
9134  ENSG00000205622       ENST00000380931 ENSE00001543058
9135  ENSG00000205622       ENST00000380931 ENSE00001543055
9136  ENSG00000205622       ENST00000380931 ENSE00001486856
9137  ENSG00000205622       ENST00000415824 ENSE00002440510
9138  ENSG00000205622       ENST00000415824 ENSE00001593766
9139  ENSG00000205622       ENST00000415824 ENSE00001718319
9140  ENSG00000205622       ENST00000415824 ENSE00001635974
9141  ENSG00000205622       ENST00000440379 ENSE00001717572
9142  ENSG00000205622       ENST00000440379 ENSE00001739866
9143  ENSG00000205622       ENST00000623098 ENSE00001543055
9144  ENSG00000205622       ENST00000623098 ENSE00003758780
9145  ENSG00000205622       ENST00000623098 ENSE00003759506
9146  ENSG00000205622       ENST00000623098 ENSE00003757941
9147  ENSG00000205622       ENST00000623098 ENSE00003757480
9148  ENSG00000205622       ENST00000623098 ENSE00003755442
9149  ENSG00000205622       ENST00000623098 ENSE00003722266
9150  ENSG00000205622       ENST00000623098 ENSE00003756083
9151  ENSG00000205622       ENST00000613045 ENSE00003722266
9152  ENSG00000205622       ENST00000613045 ENSE00003726544
9153  ENSG00000205622       ENST00000613045 ENSE00003735395
9154  ENSG00000205622       ENST00000613045 ENSE00003729674
9155  ENSG00000205622       ENST00000615324 ENSE00003717088
9156  ENSG00000229986       ENST00000416842 ENSE00001774031
9157  ENSG00000229986       ENST00000416842 ENSE00001650709
9158  ENSG00000243440       ENST00000435732 ENSE00001543502
9159  ENSG00000243440       ENST00000435732 ENSE00003598244
9160  ENSG00000243440       ENST00000435732 ENSE00003688243
9161  ENSG00000243440       ENST00000435732 ENSE00003203998
9162  ENSG00000243440       ENST00000435732 ENSE00003094519
9163  ENSG00000243440       ENST00000435732 ENSE00003122886
9164  ENSG00000243440       ENST00000435732 ENSE00001731205
9165  ENSG00000243440       ENST00000400562 ENSE00001543502
9166  ENSG00000243440       ENST00000400562 ENSE00003598244
9167  ENSG00000243440       ENST00000400562 ENSE00003688243
9168  ENSG00000243440       ENST00000400562 ENSE00003203998
9169  ENSG00000243440       ENST00000400562 ENSE00003094519
9170  ENSG00000243440       ENST00000400562 ENSE00001543504
9171  ENSG00000243440       ENST00000400562 ENSE00001543496
9172  ENSG00000243440       ENST00000469393 ENSE00003606206
9173  ENSG00000243440       ENST00000469393 ENSE00003626471
9174  ENSG00000243440       ENST00000469393 ENSE00001852661
9175  ENSG00000243440       ENST00000467280 ENSE00003606206
9176  ENSG00000243440       ENST00000467280 ENSE00001899848
9177  ENSG00000215088       ENST00000414617 ENSE00001687998
9178  ENSG00000142182       ENST00000436357 ENSE00001687519
9179  ENSG00000142182       ENST00000436357 ENSE00003790618
9180  ENSG00000142182       ENST00000436357 ENSE00000952766
9181  ENSG00000142182       ENST00000436357 ENSE00001678574
9182  ENSG00000142182       ENST00000270172 ENSE00003790618
9183  ENSG00000142182       ENST00000270172 ENSE00000952766
9184  ENSG00000142182       ENST00000270172 ENSE00001371054
9185  ENSG00000142182       ENST00000270172 ENSE00000952757
9186  ENSG00000142182       ENST00000270172 ENSE00000952758
9187  ENSG00000142182       ENST00000270172 ENSE00000952759
9188  ENSG00000142182       ENST00000270172 ENSE00000952760
9189  ENSG00000142182       ENST00000270172 ENSE00001286863
9190  ENSG00000142182       ENST00000270172 ENSE00001297260
9191  ENSG00000142182       ENST00000270172 ENSE00001311957
9192  ENSG00000142182       ENST00000270172 ENSE00001291091
9193  ENSG00000142182       ENST00000270172 ENSE00000952767
9194  ENSG00000142182       ENST00000628202 ENSE00003790618
9195  ENSG00000142182       ENST00000628202 ENSE00000952766
9196  ENSG00000142182       ENST00000628202 ENSE00000952757
9197  ENSG00000142182       ENST00000628202 ENSE00000952758
9198  ENSG00000142182       ENST00000628202 ENSE00000952759
9199  ENSG00000142182       ENST00000628202 ENSE00000952760
9200  ENSG00000142182       ENST00000628202 ENSE00001286863
9201  ENSG00000142182       ENST00000628202 ENSE00001297260
9202  ENSG00000142182       ENST00000628202 ENSE00001311957
9203  ENSG00000142182       ENST00000628202 ENSE00001291091
9204  ENSG00000142182       ENST00000628202 ENSE00003768543
9205  ENSG00000142182       ENST00000628202 ENSE00003767744
9206  ENSG00000142182       ENST00000431166 ENSE00003790618
9207  ENSG00000142182       ENST00000431166 ENSE00000952757
9208  ENSG00000142182       ENST00000431166 ENSE00000952759
9209  ENSG00000142182       ENST00000431166 ENSE00000952760
9210  ENSG00000142182       ENST00000431166 ENSE00001286863
9211  ENSG00000142182       ENST00000431166 ENSE00001297260
9212  ENSG00000142182       ENST00000431166 ENSE00001311957
9213  ENSG00000142182       ENST00000431166 ENSE00001291091
9214  ENSG00000142182       ENST00000431166 ENSE00001754418
9215  ENSG00000279690       ENST00000624800 ENSE00003755953
9216  ENSG00000280433       ENST00000623998 ENSE00003756000
9217  ENSG00000280433       ENST00000623998 ENSE00003757796
9218  ENSG00000280433       ENST00000623998 ENSE00003755430
9219  ENSG00000280433       ENST00000623744 ENSE00003758857
9220  ENSG00000280433       ENST00000623744 ENSE00003758141
9221  ENSG00000280433       ENST00000623744 ENSE00003758852
9222  ENSG00000224247       ENST00000433588 ENSE00001623810
9223  ENSG00000224247       ENST00000433588 ENSE00001795303
9224  ENSG00000224524       ENST00000450823 ENSE00001685999
9225  ENSG00000182871       ENST00000400337 ENSE00001758888
9226  ENSG00000182871       ENST00000400337 ENSE00001603969
9227  ENSG00000182871       ENST00000400337 ENSE00001654135
9228  ENSG00000182871       ENST00000400337 ENSE00001640622
9229  ENSG00000182871       ENST00000400337 ENSE00001722709
9230  ENSG00000182871       ENST00000400337 ENSE00001740104
9231  ENSG00000182871       ENST00000400337 ENSE00001627003
9232  ENSG00000182871       ENST00000400337 ENSE00001638049
9233  ENSG00000182871       ENST00000400337 ENSE00001595082
9234  ENSG00000182871       ENST00000400337 ENSE00001685925
9235  ENSG00000182871       ENST00000400337 ENSE00001758572
9236  ENSG00000182871       ENST00000400337 ENSE00001617212
9237  ENSG00000182871       ENST00000400337 ENSE00001619008
9238  ENSG00000182871       ENST00000400337 ENSE00001665017
9239  ENSG00000182871       ENST00000400337 ENSE00001748652
9240  ENSG00000182871       ENST00000400337 ENSE00001760845
9241  ENSG00000182871       ENST00000400337 ENSE00001705636
9242  ENSG00000182871       ENST00000400337 ENSE00001712155
9243  ENSG00000182871       ENST00000400337 ENSE00001677445
9244  ENSG00000182871       ENST00000400337 ENSE00001759875
9245  ENSG00000182871       ENST00000400337 ENSE00001792883
9246  ENSG00000182871       ENST00000400337 ENSE00001742681
9247  ENSG00000182871       ENST00000400337 ENSE00001649344
9248  ENSG00000182871       ENST00000400337 ENSE00001701626
9249  ENSG00000182871       ENST00000400337 ENSE00001654943
9250  ENSG00000182871       ENST00000400337 ENSE00003523340
9251  ENSG00000182871       ENST00000400337 ENSE00003594559
9252  ENSG00000182871       ENST00000400337 ENSE00003563378
9253  ENSG00000182871       ENST00000400337 ENSE00003601528
9254  ENSG00000182871       ENST00000400337 ENSE00003582147
9255  ENSG00000182871       ENST00000400337 ENSE00003624748
9256  ENSG00000182871       ENST00000400337 ENSE00001717282
9257  ENSG00000182871       ENST00000400337 ENSE00001638654
9258  ENSG00000182871       ENST00000400337 ENSE00001601591
9259  ENSG00000182871       ENST00000400337 ENSE00001761211
9260  ENSG00000182871       ENST00000400337 ENSE00001725836
9261  ENSG00000182871       ENST00000400337 ENSE00001717154
9262  ENSG00000182871       ENST00000400337 ENSE00002238826
9263  ENSG00000182871       ENST00000400337 ENSE00003582883
9264  ENSG00000182871       ENST00000400337 ENSE00003643178
9265  ENSG00000182871       ENST00000400337 ENSE00003588504
9266  ENSG00000182871       ENST00000400337 ENSE00001542501
9267  ENSG00000182871       ENST00000355480 ENSE00001654135
9268  ENSG00000182871       ENST00000355480 ENSE00001640622
9269  ENSG00000182871       ENST00000355480 ENSE00001722709
9270  ENSG00000182871       ENST00000355480 ENSE00001740104
9271  ENSG00000182871       ENST00000355480 ENSE00001627003
9272  ENSG00000182871       ENST00000355480 ENSE00001638049
9273  ENSG00000182871       ENST00000355480 ENSE00001595082
9274  ENSG00000182871       ENST00000355480 ENSE00001685925
9275  ENSG00000182871       ENST00000355480 ENSE00001758572
9276  ENSG00000182871       ENST00000355480 ENSE00001617212
9277  ENSG00000182871       ENST00000355480 ENSE00001619008
9278  ENSG00000182871       ENST00000355480 ENSE00001665017
9279  ENSG00000182871       ENST00000355480 ENSE00001748652
9280  ENSG00000182871       ENST00000355480 ENSE00001760845
9281  ENSG00000182871       ENST00000355480 ENSE00001705636
9282  ENSG00000182871       ENST00000355480 ENSE00001712155
9283  ENSG00000182871       ENST00000355480 ENSE00001677445
9284  ENSG00000182871       ENST00000355480 ENSE00001759875
9285  ENSG00000182871       ENST00000355480 ENSE00001792883
9286  ENSG00000182871       ENST00000355480 ENSE00001742681
9287  ENSG00000182871       ENST00000355480 ENSE00001649344
9288  ENSG00000182871       ENST00000355480 ENSE00001701626
9289  ENSG00000182871       ENST00000355480 ENSE00001654943
9290  ENSG00000182871       ENST00000355480 ENSE00003523340
9291  ENSG00000182871       ENST00000355480 ENSE00003594559
9292  ENSG00000182871       ENST00000355480 ENSE00003563378
9293  ENSG00000182871       ENST00000355480 ENSE00003601528
9294  ENSG00000182871       ENST00000355480 ENSE00003582147
9295  ENSG00000182871       ENST00000355480 ENSE00003624748
9296  ENSG00000182871       ENST00000355480 ENSE00001717282
9297  ENSG00000182871       ENST00000355480 ENSE00001638654
9298  ENSG00000182871       ENST00000355480 ENSE00001601591
9299  ENSG00000182871       ENST00000355480 ENSE00001761211
9300  ENSG00000182871       ENST00000355480 ENSE00001725836
9301  ENSG00000182871       ENST00000355480 ENSE00001717154
9302  ENSG00000182871       ENST00000355480 ENSE00002238826
9303  ENSG00000182871       ENST00000355480 ENSE00003582883
9304  ENSG00000182871       ENST00000355480 ENSE00003643178
9305  ENSG00000182871       ENST00000355480 ENSE00003588504
9306  ENSG00000182871       ENST00000355480 ENSE00001542501
9307  ENSG00000182871       ENST00000355480 ENSE00001428474
9308  ENSG00000182871       ENST00000342220 ENSE00001759875
9309  ENSG00000182871       ENST00000342220 ENSE00001792883
9310  ENSG00000182871       ENST00000342220 ENSE00001742681
9311  ENSG00000182871       ENST00000342220 ENSE00001649344
9312  ENSG00000182871       ENST00000342220 ENSE00001701626
9313  ENSG00000182871       ENST00000342220 ENSE00001654943
9314  ENSG00000182871       ENST00000342220 ENSE00003523340
9315  ENSG00000182871       ENST00000342220 ENSE00003594559
9316  ENSG00000182871       ENST00000342220 ENSE00003563378
9317  ENSG00000182871       ENST00000342220 ENSE00003601528
9318  ENSG00000182871       ENST00000342220 ENSE00003582147
9319  ENSG00000182871       ENST00000342220 ENSE00003624748
9320  ENSG00000182871       ENST00000342220 ENSE00001717282
9321  ENSG00000182871       ENST00000342220 ENSE00001638654
9322  ENSG00000182871       ENST00000342220 ENSE00001601591
9323  ENSG00000182871       ENST00000342220 ENSE00001761211
9324  ENSG00000182871       ENST00000342220 ENSE00001725836
9325  ENSG00000182871       ENST00000342220 ENSE00002238826
9326  ENSG00000182871       ENST00000342220 ENSE00003582883
9327  ENSG00000182871       ENST00000342220 ENSE00003643178
9328  ENSG00000182871       ENST00000342220 ENSE00003588504
9329  ENSG00000182871       ENST00000342220 ENSE00001542501
9330  ENSG00000182871       ENST00000342220 ENSE00001631330
9331  ENSG00000182871       ENST00000459895 ENSE00001830760
9332  ENSG00000182871       ENST00000459895 ENSE00003536172
9333  ENSG00000182871       ENST00000459895 ENSE00003508403
9334  ENSG00000182871       ENST00000459895 ENSE00003629018
9335  ENSG00000182871       ENST00000459895 ENSE00003552652
9336  ENSG00000182871       ENST00000459895 ENSE00003463075
9337  ENSG00000182871       ENST00000459895 ENSE00003465228
9338  ENSG00000182871       ENST00000459895 ENSE00001857655
9339  ENSG00000182871       ENST00000423214 ENSE00001725836
9340  ENSG00000182871       ENST00000423214 ENSE00001717154
9341  ENSG00000182871       ENST00000423214 ENSE00003582883
9342  ENSG00000182871       ENST00000423214 ENSE00003643178
9343  ENSG00000182871       ENST00000423214 ENSE00003588504
9344  ENSG00000182871       ENST00000423214 ENSE00001591664
9345  ENSG00000182871       ENST00000473212 ENSE00003575913
9346  ENSG00000182871       ENST00000473212 ENSE00003636018
9347  ENSG00000182871       ENST00000473212 ENSE00003613826
9348  ENSG00000182871       ENST00000473212 ENSE00001855789
9349  ENSG00000182871       ENST00000473212 ENSE00001875428
9350  ENSG00000182871       ENST00000359759 ENSE00001654135
9351  ENSG00000182871       ENST00000359759 ENSE00001640622
9352  ENSG00000182871       ENST00000359759 ENSE00001722709
9353  ENSG00000182871       ENST00000359759 ENSE00001740104
9354  ENSG00000182871       ENST00000359759 ENSE00001627003
9355  ENSG00000182871       ENST00000359759 ENSE00001638049
9356  ENSG00000182871       ENST00000359759 ENSE00001595082
9357  ENSG00000182871       ENST00000359759 ENSE00001685925
9358  ENSG00000182871       ENST00000359759 ENSE00001758572
9359  ENSG00000182871       ENST00000359759 ENSE00001617212
9360  ENSG00000182871       ENST00000359759 ENSE00001619008
9361  ENSG00000182871       ENST00000359759 ENSE00001665017
9362  ENSG00000182871       ENST00000359759 ENSE00001748652
9363  ENSG00000182871       ENST00000359759 ENSE00001760845
9364  ENSG00000182871       ENST00000359759 ENSE00001705636
9365  ENSG00000182871       ENST00000359759 ENSE00001712155
9366  ENSG00000182871       ENST00000359759 ENSE00001677445
9367  ENSG00000182871       ENST00000359759 ENSE00001759875
9368  ENSG00000182871       ENST00000359759 ENSE00001792883
9369  ENSG00000182871       ENST00000359759 ENSE00001742681
9370  ENSG00000182871       ENST00000359759 ENSE00001649344
9371  ENSG00000182871       ENST00000359759 ENSE00001701626
9372  ENSG00000182871       ENST00000359759 ENSE00001654943
9373  ENSG00000182871       ENST00000359759 ENSE00003523340
9374  ENSG00000182871       ENST00000359759 ENSE00003594559
9375  ENSG00000182871       ENST00000359759 ENSE00003563378
9376  ENSG00000182871       ENST00000359759 ENSE00003601528
9377  ENSG00000182871       ENST00000359759 ENSE00003582147
9378  ENSG00000182871       ENST00000359759 ENSE00003624748
9379  ENSG00000182871       ENST00000359759 ENSE00001717282
9380  ENSG00000182871       ENST00000359759 ENSE00001638654
9381  ENSG00000182871       ENST00000359759 ENSE00001601591
9382  ENSG00000182871       ENST00000359759 ENSE00001761211
9383  ENSG00000182871       ENST00000359759 ENSE00001725836
9384  ENSG00000182871       ENST00000359759 ENSE00001717154
9385  ENSG00000182871       ENST00000359759 ENSE00002238826
9386  ENSG00000182871       ENST00000359759 ENSE00003582883
9387  ENSG00000182871       ENST00000359759 ENSE00003643178
9388  ENSG00000182871       ENST00000359759 ENSE00003588504
9389  ENSG00000182871       ENST00000359759 ENSE00001299500
9390  ENSG00000182871       ENST00000359759 ENSE00001313674
9391  ENSG00000232837       ENST00000433952 ENSE00001718570
9392  ENSG00000232837       ENST00000433952 ENSE00001801407
9393  ENSG00000232837       ENST00000433952 ENSE00001660496
9394  ENSG00000227256       ENST00000453549 ENSE00001727266
9395  ENSG00000227256       ENST00000453549 ENSE00001762978
9396  ENSG00000227256       ENST00000453549 ENSE00001652395
9397  ENSG00000214326       ENST00000398116 ENSE00001610827
9398  ENSG00000228159       ENST00000427446 ENSE00001662293
9399  ENSG00000228159       ENST00000427446 ENSE00001678745
9400  ENSG00000228159       ENST00000427446 ENSE00001645333
9401  ENSG00000228159       ENST00000427446 ENSE00001733572
9402  ENSG00000219280       ENST00000407739 ENSE00001554923
9403  ENSG00000185390       ENST00000332473 ENSE00002040703
9404  ENSG00000185390       ENST00000332473 ENSE00001329082
9405  ENSG00000186866       ENST00000471540 ENSE00001833042
9406  ENSG00000186866       ENST00000471540 ENSE00003537856
9407  ENSG00000186866       ENST00000471540 ENSE00003553176
9408  ENSG00000186866       ENST00000471540 ENSE00001917296
9409  ENSG00000186866       ENST00000471540 ENSE00003653777
9410  ENSG00000186866       ENST00000471540 ENSE00003563296
9411  ENSG00000186866       ENST00000471540 ENSE00003608186
9412  ENSG00000186866       ENST00000471540 ENSE00003478059
9413  ENSG00000186866       ENST00000471540 ENSE00003568041
9414  ENSG00000186866       ENST00000331343 ENSE00001850690
9415  ENSG00000186866       ENST00000331343 ENSE00003614666
9416  ENSG00000186866       ENST00000331343 ENSE00003473928
9417  ENSG00000186866       ENST00000331343 ENSE00003522310
9418  ENSG00000186866       ENST00000331343 ENSE00003583701
9419  ENSG00000186866       ENST00000331343 ENSE00003530867
9420  ENSG00000186866       ENST00000331343 ENSE00003462591
9421  ENSG00000186866       ENST00000331343 ENSE00001350244
9422  ENSG00000186866       ENST00000334538 ENSE00003568041
9423  ENSG00000186866       ENST00000334538 ENSE00001850690
9424  ENSG00000186866       ENST00000334538 ENSE00003614666
9425  ENSG00000186866       ENST00000334538 ENSE00003473928
9426  ENSG00000186866       ENST00000334538 ENSE00003522310
9427  ENSG00000186866       ENST00000334538 ENSE00003583701
9428  ENSG00000186866       ENST00000334538 ENSE00003530867
9429  ENSG00000186866       ENST00000334538 ENSE00003462591
9430  ENSG00000186866       ENST00000334538 ENSE00003683659
9431  ENSG00000186866       ENST00000334538 ENSE00003567218
9432  ENSG00000186866       ENST00000349485 ENSE00001850690
9433  ENSG00000186866       ENST00000349485 ENSE00003614666
9434  ENSG00000186866       ENST00000349485 ENSE00003473928
9435  ENSG00000186866       ENST00000349485 ENSE00003522310
9436  ENSG00000186866       ENST00000349485 ENSE00003583701
9437  ENSG00000186866       ENST00000349485 ENSE00003530867
9438  ENSG00000186866       ENST00000349485 ENSE00003462591
9439  ENSG00000186866       ENST00000349485 ENSE00003683659
9440  ENSG00000186866       ENST00000349485 ENSE00003489621
9441  ENSG00000186866       ENST00000485190 ENSE00001820548
9442  ENSG00000186866       ENST00000485190 ENSE00001910129
9443  ENSG00000186866       ENST00000460932 ENSE00003608186
9444  ENSG00000186866       ENST00000460932 ENSE00001939547
9445  ENSG00000186866       ENST00000460932 ENSE00001902655
9446  ENSG00000186866       ENST00000463917 ENSE00001848517
9447  ENSG00000186866       ENST00000463917 ENSE00001880278
9448  ENSG00000186866       ENST00000451615 ENSE00003473928
9449  ENSG00000186866       ENST00000451615 ENSE00003522310
9450  ENSG00000186866       ENST00000451615 ENSE00003583701
9451  ENSG00000186866       ENST00000451615 ENSE00003530867
9452  ENSG00000186866       ENST00000451615 ENSE00003462591
9453  ENSG00000186866       ENST00000451615 ENSE00002442646
9454  ENSG00000186866       ENST00000451615 ENSE00001680898
9455  ENSG00000186866       ENST00000451615 ENSE00002468586
9456  ENSG00000186866       ENST00000493524 ENSE00003537856
9457  ENSG00000186866       ENST00000493524 ENSE00003553176
9458  ENSG00000186866       ENST00000493524 ENSE00003653777
9459  ENSG00000186866       ENST00000493524 ENSE00002025594
9460  ENSG00000186866       ENST00000493524 ENSE00003673509
9461  ENSG00000186866       ENST00000493524 ENSE00001935444
9462  ENSG00000186866       ENST00000468360 ENSE00003553176
9463  ENSG00000186866       ENST00000468360 ENSE00003653777
9464  ENSG00000186866       ENST00000468360 ENSE00003673509
9465  ENSG00000186866       ENST00000468360 ENSE00001902843
9466  ENSG00000186866       ENST00000468360 ENSE00001828687
9467  ENSG00000186866       ENST00000493811 ENSE00003673509
9468  ENSG00000186866       ENST00000493811 ENSE00001951160
9469  ENSG00000186866       ENST00000493811 ENSE00003690134
9470  ENSG00000186866       ENST00000493811 ENSE00001942075
9471  ENSG00000186866       ENST00000476653 ENSE00001956512
9472  ENSG00000186866       ENST00000476653 ENSE00001903333
9473  ENSG00000186866       ENST00000612472 ENSE00003553176
9474  ENSG00000186866       ENST00000612472 ENSE00003653777
9475  ENSG00000186866       ENST00000612472 ENSE00003563296
9476  ENSG00000186866       ENST00000612472 ENSE00003608186
9477  ENSG00000186866       ENST00000612472 ENSE00003614666
9478  ENSG00000186866       ENST00000612472 ENSE00003733514
9479  ENSG00000186866       ENST00000612472 ENSE00003748436
9480  ENSG00000186866       ENST00000612472 ENSE00003740519
9481  ENSG00000186866       ENST00000612472 ENSE00003716929
9482  ENSG00000186866       ENST00000612472 ENSE00003727744
9483  ENSG00000186866       ENST00000615172 ENSE00003462591
9484  ENSG00000186866       ENST00000615172 ENSE00003683659
9485  ENSG00000186866       ENST00000615172 ENSE00003567218
9486  ENSG00000186866       ENST00000615172 ENSE00003734930
9487  ENSG00000186866       ENST00000615172 ENSE00003718162
9488  ENSG00000186866       ENST00000615172 ENSE00003736828
9489  ENSG00000277282       ENST00000622028 ENSE00003742120
9490  ENSG00000277282       ENST00000622028 ENSE00003753345
9491  ENSG00000197381       ENST00000462214 ENSE00001840433
9492  ENSG00000197381       ENST00000462214 ENSE00001210927
9493  ENSG00000197381       ENST00000462214 ENSE00003777008
9494  ENSG00000197381       ENST00000462214 ENSE00001825818
9495  ENSG00000197381       ENST00000460734 ENSE00001210927
9496  ENSG00000197381       ENST00000460734 ENSE00003777008
9497  ENSG00000197381       ENST00000460734 ENSE00001890115
9498  ENSG00000197381       ENST00000460734 ENSE00001929777
9499  ENSG00000197381       ENST00000460734 ENSE00001888667
9500  ENSG00000197381       ENST00000460734 ENSE00001864664
9501  ENSG00000197381       ENST00000460734 ENSE00001935775
9502  ENSG00000197381       ENST00000460734 ENSE00001902790
9503  ENSG00000197381       ENST00000460734 ENSE00002456815
9504  ENSG00000197381       ENST00000460734 ENSE00001847313
9505  ENSG00000197381       ENST00000389861 ENSE00001210927
9506  ENSG00000197381       ENST00000389861 ENSE00003777008
9507  ENSG00000197381       ENST00000389861 ENSE00001210936
9508  ENSG00000197381       ENST00000389861 ENSE00003779805
9509  ENSG00000197381       ENST00000389861 ENSE00003781361
9510  ENSG00000197381       ENST00000389861 ENSE00003781814
9511  ENSG00000197381       ENST00000389861 ENSE00003776488
9512  ENSG00000197381       ENST00000389861 ENSE00003781665
9513  ENSG00000197381       ENST00000389861 ENSE00003783846
9514  ENSG00000197381       ENST00000389861 ENSE00003780616
9515  ENSG00000197381       ENST00000389861 ENSE00003782989
9516  ENSG00000197381       ENST00000389861 ENSE00003779854
9517  ENSG00000197381       ENST00000389861 ENSE00003562843
9518  ENSG00000197381       ENST00000492414 ENSE00001210927
9519  ENSG00000197381       ENST00000492414 ENSE00001210936
9520  ENSG00000197381       ENST00000492414 ENSE00003562843
9521  ENSG00000197381       ENST00000492414 ENSE00003625084
9522  ENSG00000197381       ENST00000492414 ENSE00001050989
9523  ENSG00000197381       ENST00000492414 ENSE00003721505
9524  ENSG00000197381       ENST00000492414 ENSE00003721925
9525  ENSG00000197381       ENST00000492414 ENSE00003732074
9526  ENSG00000197381       ENST00000492414 ENSE00003736672
9527  ENSG00000197381       ENST00000492414 ENSE00003745511
9528  ENSG00000197381       ENST00000492414 ENSE00003718967
9529  ENSG00000197381       ENST00000492414 ENSE00003711984
9530  ENSG00000197381       ENST00000496664 ENSE00001210927
9531  ENSG00000197381       ENST00000496664 ENSE00001210936
9532  ENSG00000197381       ENST00000496664 ENSE00003562843
9533  ENSG00000197381       ENST00000496664 ENSE00003625084
9534  ENSG00000197381       ENST00000496664 ENSE00001050989
9535  ENSG00000197381       ENST00000496664 ENSE00003721505
9536  ENSG00000197381       ENST00000496664 ENSE00003721925
9537  ENSG00000197381       ENST00000496664 ENSE00003732074
9538  ENSG00000197381       ENST00000496664 ENSE00003736672
9539  ENSG00000197381       ENST00000496664 ENSE00003745511
9540  ENSG00000197381       ENST00000496664 ENSE00003718967
9541  ENSG00000197381       ENST00000496664 ENSE00003711984
9542  ENSG00000197381       ENST00000496664 ENSE00001507134
9543  ENSG00000197381       ENST00000389863 ENSE00001210927
9544  ENSG00000197381       ENST00000389863 ENSE00001210936
9545  ENSG00000197381       ENST00000389863 ENSE00003625084
9546  ENSG00000197381       ENST00000389863 ENSE00001050989
9547  ENSG00000197381       ENST00000389863 ENSE00003721505
9548  ENSG00000197381       ENST00000389863 ENSE00003721925
9549  ENSG00000197381       ENST00000389863 ENSE00003732074
9550  ENSG00000197381       ENST00000389863 ENSE00003736672
9551  ENSG00000197381       ENST00000389863 ENSE00003745511
9552  ENSG00000197381       ENST00000389863 ENSE00003718967
9553  ENSG00000197381       ENST00000389863 ENSE00001507134
9554  ENSG00000197381       ENST00000389863 ENSE00001507132
9555  ENSG00000197381       ENST00000389863 ENSE00003651172
9556  ENSG00000197381       ENST00000348831 ENSE00001210927
9557  ENSG00000197381       ENST00000348831 ENSE00001210936
9558  ENSG00000197381       ENST00000348831 ENSE00003625084
9559  ENSG00000197381       ENST00000348831 ENSE00001050989
9560  ENSG00000197381       ENST00000348831 ENSE00003721505
9561  ENSG00000197381       ENST00000348831 ENSE00003721925
9562  ENSG00000197381       ENST00000348831 ENSE00003732074
9563  ENSG00000197381       ENST00000348831 ENSE00003736672
9564  ENSG00000197381       ENST00000348831 ENSE00003745511
9565  ENSG00000197381       ENST00000348831 ENSE00003718967
9566  ENSG00000197381       ENST00000348831 ENSE00001530203
9567  ENSG00000197381       ENST00000449478 ENSE00001210927
9568  ENSG00000197381       ENST00000449478 ENSE00003625084
9569  ENSG00000197381       ENST00000449478 ENSE00001631876
9570  ENSG00000197381       ENST00000449478 ENSE00001772958
9571  ENSG00000197381       ENST00000464215 ENSE00003777008
9572  ENSG00000197381       ENST00000464215 ENSE00001832701
9573  ENSG00000197381       ENST00000464215 ENSE00001871618
9574  ENSG00000197381       ENST00000360697 ENSE00001050989
9575  ENSG00000197381       ENST00000360697 ENSE00003721505
9576  ENSG00000197381       ENST00000360697 ENSE00003721925
9577  ENSG00000197381       ENST00000360697 ENSE00003732074
9578  ENSG00000197381       ENST00000360697 ENSE00003736672
9579  ENSG00000197381       ENST00000360697 ENSE00003745511
9580  ENSG00000197381       ENST00000360697 ENSE00003718967
9581  ENSG00000197381       ENST00000360697 ENSE00001507134
9582  ENSG00000197381       ENST00000360697 ENSE00001530203
9583  ENSG00000197381       ENST00000360697 ENSE00001507135
9584  ENSG00000197381       ENST00000481022 ENSE00001817612
9585  ENSG00000197381       ENST00000481022 ENSE00001894242
9586  ENSG00000197381       ENST00000631642 ENSE00003776488
9587  ENSG00000197381       ENST00000631642 ENSE00003782648
9588  ENSG00000197381       ENST00000631642 ENSE00003776594
9589  ENSG00000197381       ENST00000631642 ENSE00003779119
9590  ENSG00000197381       ENST00000437626 ENSE00001210927
9591  ENSG00000197381       ENST00000437626 ENSE00001210936
9592  ENSG00000197381       ENST00000437626 ENSE00003625084
9593  ENSG00000197381       ENST00000437626 ENSE00001050989
9594  ENSG00000197381       ENST00000437626 ENSE00003721505
9595  ENSG00000197381       ENST00000437626 ENSE00003721925
9596  ENSG00000197381       ENST00000437626 ENSE00003732074
9597  ENSG00000197381       ENST00000437626 ENSE00003736672
9598  ENSG00000197381       ENST00000437626 ENSE00003745511
9599  ENSG00000197381       ENST00000437626 ENSE00003718967
9600  ENSG00000197381       ENST00000437626 ENSE00003711984
9601  ENSG00000197381       ENST00000437626 ENSE00001507134
9602  ENSG00000197381       ENST00000437626 ENSE00001612728
9603  ENSG00000197381       ENST00000611195 ENSE00003723523
9604  ENSG00000197381       ENST00000611195 ENSE00003724758
9605  ENSG00000197381       ENST00000629643 ENSE00001050989
9606  ENSG00000197381       ENST00000629643 ENSE00003721505
9607  ENSG00000197381       ENST00000629643 ENSE00003721925
9608  ENSG00000197381       ENST00000629643 ENSE00003732074
9609  ENSG00000197381       ENST00000629643 ENSE00003736672
9610  ENSG00000197381       ENST00000629643 ENSE00003745511
9611  ENSG00000197381       ENST00000629643 ENSE00003718967
9612  ENSG00000197381       ENST00000629643 ENSE00003711984
9613  ENSG00000197381       ENST00000629643 ENSE00001612728
9614  ENSG00000197381       ENST00000629643 ENSE00003769076
9615  ENSG00000197381       ENST00000629643 ENSE00003587995
9616  ENSG00000160256       ENST00000291634 ENSE00001878719
9617  ENSG00000160256       ENST00000291634 ENSE00001050957
9618  ENSG00000160256       ENST00000291634 ENSE00003668740
9619  ENSG00000160256       ENST00000291634 ENSE00003550369
9620  ENSG00000160256       ENST00000291634 ENSE00003504383
9621  ENSG00000160256       ENST00000291634 ENSE00001819747
9622  ENSG00000160256       ENST00000397826 ENSE00003668740
9623  ENSG00000160256       ENST00000397826 ENSE00003550369
9624  ENSG00000160256       ENST00000397826 ENSE00003504383
9625  ENSG00000160256       ENST00000397826 ENSE00001819747
9626  ENSG00000160256       ENST00000397826 ENSE00001942549
9627  ENSG00000160256       ENST00000397826 ENSE00001530388
9628  ENSG00000160256       ENST00000458015 ENSE00003668740
9629  ENSG00000160256       ENST00000458015 ENSE00003550369
9630  ENSG00000160256       ENST00000458015 ENSE00001530388
9631  ENSG00000160256       ENST00000458015 ENSE00001530392
9632  ENSG00000160256       ENST00000458015 ENSE00001618394
9633  ENSG00000160256       ENST00000479127 ENSE00001809547
9634  ENSG00000160256       ENST00000479127 ENSE00003541861
9635  ENSG00000160256       ENST00000479127 ENSE00003653566
9636  ENSG00000160256       ENST00000479127 ENSE00003630684
9637  ENSG00000160256       ENST00000479127 ENSE00001050954
9638  ENSG00000160256       ENST00000485207 ENSE00001050954
9639  ENSG00000160256       ENST00000485207 ENSE00001911440
9640  ENSG00000186967       ENST00000334058 ENSE00001338568
9641  ENSG00000186965       ENST00000334055 ENSE00001338566
9642  ENSG00000159131       ENST00000381815 ENSE00001232541
9643  ENSG00000159131       ENST00000381815 ENSE00003564138
9644  ENSG00000159131       ENST00000381815 ENSE00003660742
9645  ENSG00000159131       ENST00000381815 ENSE00003786797
9646  ENSG00000159131       ENST00000381815 ENSE00003622385
9647  ENSG00000159131       ENST00000381815 ENSE00003636687
9648  ENSG00000159131       ENST00000381815 ENSE00003784675
9649  ENSG00000159131       ENST00000381815 ENSE00003466855
9650  ENSG00000159131       ENST00000381815 ENSE00003481319
9651  ENSG00000159131       ENST00000381815 ENSE00003513650
9652  ENSG00000159131       ENST00000381815 ENSE00003539927
9653  ENSG00000159131       ENST00000381815 ENSE00003674151
9654  ENSG00000159131       ENST00000381815 ENSE00003609172
9655  ENSG00000159131       ENST00000381815 ENSE00003468726
9656  ENSG00000159131       ENST00000381815 ENSE00003513723
9657  ENSG00000159131       ENST00000381815 ENSE00003675443
9658  ENSG00000159131       ENST00000381815 ENSE00003645473
9659  ENSG00000159131       ENST00000381815 ENSE00003680855
9660  ENSG00000159131       ENST00000381815 ENSE00003468374
9661  ENSG00000159131       ENST00000381815 ENSE00003687543
9662  ENSG00000159131       ENST00000381815 ENSE00003507973
9663  ENSG00000159131       ENST00000381815 ENSE00001736479
9664  ENSG00000159131       ENST00000381831 ENSE00003660742
9665  ENSG00000159131       ENST00000381831 ENSE00003786797
9666  ENSG00000159131       ENST00000381831 ENSE00003622385
9667  ENSG00000159131       ENST00000381831 ENSE00003636687
9668  ENSG00000159131       ENST00000381831 ENSE00003784675
9669  ENSG00000159131       ENST00000381831 ENSE00003466855
9670  ENSG00000159131       ENST00000381831 ENSE00003481319
9671  ENSG00000159131       ENST00000381831 ENSE00003513650
9672  ENSG00000159131       ENST00000381831 ENSE00003539927
9673  ENSG00000159131       ENST00000381831 ENSE00003674151
9674  ENSG00000159131       ENST00000381831 ENSE00003609172
9675  ENSG00000159131       ENST00000381831 ENSE00003468726
9676  ENSG00000159131       ENST00000381831 ENSE00003513723
9677  ENSG00000159131       ENST00000381831 ENSE00003675443
9678  ENSG00000159131       ENST00000381831 ENSE00003645473
9679  ENSG00000159131       ENST00000381831 ENSE00003680855
9680  ENSG00000159131       ENST00000381831 ENSE00003468374
9681  ENSG00000159131       ENST00000381831 ENSE00003687543
9682  ENSG00000159131       ENST00000381831 ENSE00003507973
9683  ENSG00000159131       ENST00000381831 ENSE00001736479
9684  ENSG00000159131       ENST00000381831 ENSE00001489989
9685  ENSG00000159131       ENST00000381831 ENSE00001489983
9686  ENSG00000159131       ENST00000381839 ENSE00003564138
9687  ENSG00000159131       ENST00000381839 ENSE00003660742
9688  ENSG00000159131       ENST00000381839 ENSE00003786797
9689  ENSG00000159131       ENST00000381839 ENSE00003622385
9690  ENSG00000159131       ENST00000381839 ENSE00003636687
9691  ENSG00000159131       ENST00000381839 ENSE00003784675
9692  ENSG00000159131       ENST00000381839 ENSE00003466855
9693  ENSG00000159131       ENST00000381839 ENSE00003481319
9694  ENSG00000159131       ENST00000381839 ENSE00003513650
9695  ENSG00000159131       ENST00000381839 ENSE00003539927
9696  ENSG00000159131       ENST00000381839 ENSE00003674151
9697  ENSG00000159131       ENST00000381839 ENSE00003609172
9698  ENSG00000159131       ENST00000381839 ENSE00003468726
9699  ENSG00000159131       ENST00000381839 ENSE00003513723
9700  ENSG00000159131       ENST00000381839 ENSE00003675443
9701  ENSG00000159131       ENST00000381839 ENSE00003645473
9702  ENSG00000159131       ENST00000381839 ENSE00003680855
9703  ENSG00000159131       ENST00000381839 ENSE00003468374
9704  ENSG00000159131       ENST00000381839 ENSE00003687543
9705  ENSG00000159131       ENST00000381839 ENSE00003507973
9706  ENSG00000159131       ENST00000381839 ENSE00001736479
9707  ENSG00000159131       ENST00000381839 ENSE00001490224
9708  ENSG00000159131       ENST00000424203 ENSE00003564138
9709  ENSG00000159131       ENST00000424203 ENSE00003660742
9710  ENSG00000159131       ENST00000424203 ENSE00003786797
9711  ENSG00000159131       ENST00000424203 ENSE00003622385
9712  ENSG00000159131       ENST00000424203 ENSE00003636687
9713  ENSG00000159131       ENST00000424203 ENSE00003784675
9714  ENSG00000159131       ENST00000424203 ENSE00003466855
9715  ENSG00000159131       ENST00000424203 ENSE00001701956
9716  ENSG00000159131       ENST00000424203 ENSE00001703277
9717  ENSG00000159131       ENST00000424203 ENSE00003607819
9718  ENSG00000159131       ENST00000424203 ENSE00003588672
9719  ENSG00000159131       ENST00000424203 ENSE00003504890
9720  ENSG00000159131       ENST00000424203 ENSE00003610380
9721  ENSG00000159131       ENST00000424203 ENSE00003462589
9722  ENSG00000159131       ENST00000424203 ENSE00003655742
9723  ENSG00000159131       ENST00000424203 ENSE00003592650
9724  ENSG00000159131       ENST00000424203 ENSE00003572508
9725  ENSG00000159131       ENST00000424203 ENSE00003577136
9726  ENSG00000159131       ENST00000424203 ENSE00003654291
9727  ENSG00000159131       ENST00000424203 ENSE00003694718
9728  ENSG00000159131       ENST00000424203 ENSE00003520124
9729  ENSG00000159131       ENST00000424203 ENSE00001804711
9730  ENSG00000159131       ENST00000482663 ENSE00001810179
9731  ENSG00000159131       ENST00000482663 ENSE00001915629
9732  ENSG00000159131       ENST00000487155 ENSE00001920078
9733  ENSG00000159131       ENST00000487155 ENSE00001946350
9734  ENSG00000159131       ENST00000460305 ENSE00003504890
9735  ENSG00000159131       ENST00000460305 ENSE00003610380
9736  ENSG00000159131       ENST00000460305 ENSE00001819885
9737  ENSG00000159131       ENST00000460305 ENSE00001869887
9738  ENSG00000159131       ENST00000467575 ENSE00003588672
9739  ENSG00000159131       ENST00000467575 ENSE00001956168
9740  ENSG00000159131       ENST00000467575 ENSE00001876807
9741  ENSG00000159131       ENST00000361093 ENSE00003564138
9742  ENSG00000159131       ENST00000361093 ENSE00003660742
9743  ENSG00000159131       ENST00000361093 ENSE00003786797
9744  ENSG00000159131       ENST00000361093 ENSE00003622385
9745  ENSG00000159131       ENST00000361093 ENSE00003636687
9746  ENSG00000159131       ENST00000361093 ENSE00003784675
9747  ENSG00000159131       ENST00000361093 ENSE00003466855
9748  ENSG00000159131       ENST00000361093 ENSE00003481319
9749  ENSG00000159131       ENST00000361093 ENSE00003513650
9750  ENSG00000159131       ENST00000361093 ENSE00001908678
9751  ENSG00000159131       ENST00000361093 ENSE00001489917
9752  ENSG00000159131       ENST00000366093 ENSE00003622385
9753  ENSG00000159131       ENST00000366093 ENSE00003636687
9754  ENSG00000159131       ENST00000366093 ENSE00003784675
9755  ENSG00000159131       ENST00000366093 ENSE00001626250
9756  ENSG00000159131       ENST00000366093 ENSE00001643587
9757  ENSG00000159131       ENST00000366093 ENSE00003649161
9758  ENSG00000159131       ENST00000366093 ENSE00003490233
9759  ENSG00000159131       ENST00000366093 ENSE00001602967
9760  ENSG00000159131       ENST00000466882 ENSE00003649161
9761  ENSG00000159131       ENST00000466882 ENSE00001916873
9762  ENSG00000159131       ENST00000466882 ENSE00001893045
9763  ENSG00000159131       ENST00000497313 ENSE00001809865
9764  ENSG00000159131       ENST00000497313 ENSE00003526660
9765  ENSG00000159131       ENST00000497313 ENSE00003558791
9766  ENSG00000159131       ENST00000497313 ENSE00001879494
9767  ENSG00000159131       ENST00000430874 ENSE00003564138
9768  ENSG00000159131       ENST00000430874 ENSE00003660742
9769  ENSG00000159131       ENST00000430874 ENSE00003786797
9770  ENSG00000159131       ENST00000430874 ENSE00003622385
9771  ENSG00000159131       ENST00000430874 ENSE00003636687
9772  ENSG00000159131       ENST00000430874 ENSE00003784675
9773  ENSG00000159131       ENST00000430874 ENSE00001759010
9774  ENSG00000159131       ENST00000426819 ENSE00003660742
9775  ENSG00000159131       ENST00000426819 ENSE00003786797
9776  ENSG00000159131       ENST00000426819 ENSE00003622385
9777  ENSG00000159131       ENST00000426819 ENSE00003636687
9778  ENSG00000159131       ENST00000426819 ENSE00001489983
9779  ENSG00000159131       ENST00000426819 ENSE00001635400
9780  ENSG00000159131       ENST00000426819 ENSE00001749701
9781  ENSG00000159131       ENST00000476524 ENSE00003526660
9782  ENSG00000159131       ENST00000476524 ENSE00002469634
9783  ENSG00000159131       ENST00000476524 ENSE00003613252
9784  ENSG00000159131       ENST00000476524 ENSE00003552692
9785  ENSG00000159131       ENST00000476524 ENSE00003678844
9786  ENSG00000159131       ENST00000476524 ENSE00001851277
9787  ENSG00000159131       ENST00000488791 ENSE00001912460
9788  ENSG00000159131       ENST00000488791 ENSE00001884219
9789  ENSG00000159131       ENST00000438059 ENSE00003660742
9790  ENSG00000159131       ENST00000438059 ENSE00003786797
9791  ENSG00000159131       ENST00000438059 ENSE00001489983
9792  ENSG00000159131       ENST00000438059 ENSE00001782476
9793  ENSG00000159131       ENST00000441403 ENSE00003660742
9794  ENSG00000159131       ENST00000441403 ENSE00001489983
9795  ENSG00000159131       ENST00000441403 ENSE00001667966
9796  ENSG00000159131       ENST00000441403 ENSE00001672116
9797  ENSG00000236056       ENST00000450472 ENSE00001607360
9798  ENSG00000276289       ENST00000618699 ENSE00003740911
9799  ENSG00000276289       ENST00000618699 ENSE00003758541
9800  ENSG00000276289       ENST00000618699 ENSE00003718509
9801  ENSG00000276289       ENST00000623803 ENSE00003753201
9802  ENSG00000276289       ENST00000623803 ENSE00003755363
9803  ENSG00000276289       ENST00000623803 ENSE00003755128
9804  ENSG00000276289       ENST00000617668 ENSE00003719853
9805  ENSG00000276289       ENST00000617668 ENSE00003757666
9806  ENSG00000276289       ENST00000622690 ENSE00003753201
9807  ENSG00000276289       ENST00000622690 ENSE00003752992
9808  ENSG00000276289       ENST00000622690 ENSE00003722011
9809  ENSG00000160224       ENST00000530812 ENSE00002196264
9810  ENSG00000160224       ENST00000530812 ENSE00003528176
9811  ENSG00000160224       ENST00000530812 ENSE00002149937
9812  ENSG00000160224       ENST00000530812 ENSE00002161949
9813  ENSG00000160224       ENST00000530812 ENSE00003661391
9814  ENSG00000160224       ENST00000530812 ENSE00002177605
9815  ENSG00000160224       ENST00000530812 ENSE00003547168
9816  ENSG00000160224       ENST00000530812 ENSE00003689225
9817  ENSG00000160224       ENST00000530812 ENSE00003565844
9818  ENSG00000160224       ENST00000530812 ENSE00003569029
9819  ENSG00000160224       ENST00000530812 ENSE00003557852
9820  ENSG00000160224       ENST00000530812 ENSE00002143741
9821  ENSG00000160224       ENST00000527919 ENSE00003528176
9822  ENSG00000160224       ENST00000527919 ENSE00002149937
9823  ENSG00000160224       ENST00000527919 ENSE00003661391
9824  ENSG00000160224       ENST00000527919 ENSE00002177605
9825  ENSG00000160224       ENST00000527919 ENSE00003547168
9826  ENSG00000160224       ENST00000527919 ENSE00003689225
9827  ENSG00000160224       ENST00000527919 ENSE00003565844
9828  ENSG00000160224       ENST00000527919 ENSE00003557852
9829  ENSG00000160224       ENST00000527919 ENSE00002157138
9830  ENSG00000160224       ENST00000527919 ENSE00003571459
9831  ENSG00000160224       ENST00000527919 ENSE00002197440
9832  ENSG00000160224       ENST00000527919 ENSE00003641315
9833  ENSG00000160224       ENST00000527919 ENSE00002141811
9834  ENSG00000160224       ENST00000527919 ENSE00002165283
9835  ENSG00000160224       ENST00000291582 ENSE00001050710
9836  ENSG00000160224       ENST00000291582 ENSE00003484440
9837  ENSG00000160224       ENST00000291582 ENSE00001050714
9838  ENSG00000160224       ENST00000291582 ENSE00001050716
9839  ENSG00000160224       ENST00000291582 ENSE00003524824
9840  ENSG00000160224       ENST00000291582 ENSE00003592619
9841  ENSG00000160224       ENST00000291582 ENSE00003685344
9842  ENSG00000160224       ENST00000291582 ENSE00001136688
9843  ENSG00000160224       ENST00000291582 ENSE00003560932
9844  ENSG00000160224       ENST00000291582 ENSE00003569099
9845  ENSG00000160224       ENST00000291582 ENSE00003600226
9846  ENSG00000160224       ENST00000291582 ENSE00003664932
9847  ENSG00000160224       ENST00000291582 ENSE00003586834
9848  ENSG00000160224       ENST00000291582 ENSE00003668332
9849  ENSG00000160224       ENST00000397994 ENSE00003547168
9850  ENSG00000160224       ENST00000397994 ENSE00003565844
9851  ENSG00000160224       ENST00000397994 ENSE00003569029
9852  ENSG00000160224       ENST00000397994 ENSE00003557852
9853  ENSG00000160224       ENST00000397994 ENSE00002168258
9854  ENSG00000160224       ENST00000397994 ENSE00003353237
9855  ENSG00000160224       ENST00000397994 ENSE00003529538
9856  ENSG00000160224       ENST00000397994 ENSE00003624155
9857  ENSG00000160224       ENST00000337909 ENSE00003547168
9858  ENSG00000160224       ENST00000337909 ENSE00003689225
9859  ENSG00000160224       ENST00000337909 ENSE00003565844
9860  ENSG00000160224       ENST00000337909 ENSE00003569029
9861  ENSG00000160224       ENST00000337909 ENSE00003557852
9862  ENSG00000160224       ENST00000337909 ENSE00002168258
9863  ENSG00000160224       ENST00000337909 ENSE00003353237
9864  ENSG00000182093       ENST00000333781 ENSE00001950073
9865  ENSG00000182093       ENST00000333781 ENSE00003757548
9866  ENSG00000182093       ENST00000333781 ENSE00003651735
9867  ENSG00000182093       ENST00000333781 ENSE00003788222
9868  ENSG00000182093       ENST00000333781 ENSE00001486004
9869  ENSG00000182093       ENST00000623703 ENSE00003757548
9870  ENSG00000182093       ENST00000623703 ENSE00003651735
9871  ENSG00000182093       ENST00000623703 ENSE00003788222
9872  ENSG00000182093       ENST00000623703 ENSE00003758746
9873  ENSG00000182093       ENST00000623703 ENSE00003759192
9874  ENSG00000182093       ENST00000623703 ENSE00003757934
9875  ENSG00000182093       ENST00000623703 ENSE00003758866
9876  ENSG00000182093       ENST00000623703 ENSE00003758202
9877  ENSG00000182093       ENST00000623703 ENSE00003756719
9878  ENSG00000182093       ENST00000487869 ENSE00001864930
9879  ENSG00000182093       ENST00000487869 ENSE00003563129
9880  ENSG00000182093       ENST00000487869 ENSE00001939130
9881  ENSG00000182093       ENST00000471468 ENSE00001813007
9882  ENSG00000182093       ENST00000471468 ENSE00001848335
9883  ENSG00000182093       ENST00000398753 ENSE00003757548
9884  ENSG00000182093       ENST00000398753 ENSE00003651735
9885  ENSG00000182093       ENST00000398753 ENSE00003788222
9886  ENSG00000182093       ENST00000398753 ENSE00001534725
9887  ENSG00000182093       ENST00000398753 ENSE00001534714
9888  ENSG00000182093       ENST00000442773 ENSE00001673646
9889  ENSG00000182093       ENST00000442773 ENSE00001630418
9890  ENSG00000182093       ENST00000380713 ENSE00003757548
9891  ENSG00000182093       ENST00000380713 ENSE00003651735
9892  ENSG00000182093       ENST00000380713 ENSE00003788222
9893  ENSG00000182093       ENST00000380713 ENSE00001650643
9894  ENSG00000182093       ENST00000380708 ENSE00003757548
9895  ENSG00000182093       ENST00000380708 ENSE00003651735
9896  ENSG00000182093       ENST00000380708 ENSE00003788222
9897  ENSG00000182093       ENST00000380708 ENSE00001486004
9898  ENSG00000182093       ENST00000380708 ENSE00001485985
9899  ENSG00000182093       ENST00000466787 ENSE00001915597
9900  ENSG00000182093       ENST00000466787 ENSE00001923036
9901  ENSG00000182093       ENST00000466787 ENSE00003589273
9902  ENSG00000182093       ENST00000466787 ENSE00003502214
9903  ENSG00000182093       ENST00000466787 ENSE00001882286
9904  ENSG00000182093       ENST00000415847 ENSE00003788222
9905  ENSG00000182093       ENST00000415847 ENSE00003711093
9906  ENSG00000182093       ENST00000415847 ENSE00001628955
9907  ENSG00000182093       ENST00000490860 ENSE00001855761
9908  ENSG00000182093       ENST00000490860 ENSE00001846736
9909  ENSG00000182093       ENST00000478273 ENSE00001853929
9910  ENSG00000182093       ENST00000478273 ENSE00001946548
9911  ENSG00000182093       ENST00000476914 ENSE00001946548
9912  ENSG00000182093       ENST00000476914 ENSE00001956940
9913  ENSG00000182093       ENST00000480690 ENSE00001945110
9914  ENSG00000182093       ENST00000480690 ENSE00001957650
9915  ENSG00000280346       ENST00000624353 ENSE00003756736
9916  ENSG00000243646       ENST00000290200 ENSE00001043281
9917  ENSG00000243646       ENST00000290200 ENSE00003554973
9918  ENSG00000243646       ENST00000290200 ENSE00003490674
9919  ENSG00000243646       ENST00000290200 ENSE00003519873
9920  ENSG00000243646       ENST00000290200 ENSE00003620117
9921  ENSG00000243646       ENST00000290200 ENSE00003628210
9922  ENSG00000243646       ENST00000290200 ENSE00001927323
9923  ENSG00000243646       ENST00000422891 ENSE00003554973
9924  ENSG00000243646       ENST00000422891 ENSE00001729591
9925  ENSG00000243646       ENST00000422891 ENSE00003540143
9926  ENSG00000243646       ENST00000422891 ENSE00003467460
9927  ENSG00000243646       ENST00000422891 ENSE00003460810
9928  ENSG00000243646       ENST00000422891 ENSE00001614880
9929  ENSG00000243646       ENST00000493295 ENSE00003467460
9930  ENSG00000243646       ENST00000493295 ENSE00003460810
9931  ENSG00000243646       ENST00000493295 ENSE00001860564
9932  ENSG00000243646       ENST00000493295 ENSE00003668610
9933  ENSG00000243646       ENST00000493295 ENSE00003561299
9934  ENSG00000243646       ENST00000493295 ENSE00001858828
9935  ENSG00000243646       ENST00000498371 ENSE00003467460
9936  ENSG00000243646       ENST00000498371 ENSE00003561299
9937  ENSG00000243646       ENST00000498371 ENSE00001834344
9938  ENSG00000243646       ENST00000498371 ENSE00002467116
9939  ENSG00000243646       ENST00000451065 ENSE00003519873
9940  ENSG00000243646       ENST00000451065 ENSE00003620117
9941  ENSG00000243646       ENST00000451065 ENSE00003628210
9942  ENSG00000243646       ENST00000451065 ENSE00001698964
9943  ENSG00000243646       ENST00000451065 ENSE00001796592
9944  ENSG00000243646       ENST00000451065 ENSE00001625180
9945  ENSG00000243646       ENST00000637650 ENSE00003797974
9946  ENSG00000243646       ENST00000637650 ENSE00003792920
9947  ENSG00000243646       ENST00000609556 ENSE00003797974
9948  ENSG00000243646       ENST00000609556 ENSE00003706288
9949  ENSG00000280614       ENST00000625598 ENSE00003762709
9950  ENSG00000280800       ENST00000631211 ENSE00003763487
9951  ENSG00000277277       ENST00000613894 ENSE00003726287
9952  ENSG00000275799       ENST00000620163 ENSE00003725912
9953  ENSG00000279303       ENST00000623962 ENSE00003756385
9954  ENSG00000280019       ENST00000624484 ENSE00003758953
9955  ENSG00000280019       ENST00000624484 ENSE00003759077
9956  ENSG00000280019       ENST00000624484 ENSE00003756023
9957  ENSG00000280019       ENST00000624484 ENSE00003758373
9958  ENSG00000280019       ENST00000624484 ENSE00003755687
9959  ENSG00000280019       ENST00000624484 ENSE00003759438
9960  ENSG00000280019       ENST00000624484 ENSE00003756613
9961  ENSG00000280019       ENST00000624484 ENSE00003757220
9962  ENSG00000280019       ENST00000624484 ENSE00003759611
9963  ENSG00000280019       ENST00000624484 ENSE00003758587
9964  ENSG00000230479       ENST00000429588 ENSE00001669981
9965  ENSG00000230479       ENST00000429588 ENSE00001614612
9966  ENSG00000279365       ENST00000624669 ENSE00003759761
9967  ENSG00000233236       ENST00000436373 ENSE00001642062
9968  ENSG00000233236       ENST00000436373 ENSE00001598199
9969  ENSG00000271486       ENST00000603349 ENSE00003648479
9970  ENSG00000235965       ENST00000450653 ENSE00001668592
9971  ENSG00000235965       ENST00000450653 ENSE00001613169
9972  ENSG00000234703       ENST00000455028 ENSE00001623290
9973  ENSG00000234703       ENST00000455028 ENSE00001764112
9974  ENSG00000154642       ENST00000284881 ENSE00001543482
9975  ENSG00000154642       ENST00000284881 ENSE00003679576
9976  ENSG00000154642       ENST00000284881 ENSE00001642880
9977  ENSG00000154642       ENST00000284881 ENSE00003784853
9978  ENSG00000154642       ENST00000284881 ENSE00001934909
9979  ENSG00000154642       ENST00000400559 ENSE00001543482
9980  ENSG00000154642       ENST00000400559 ENSE00003679576
9981  ENSG00000154642       ENST00000400559 ENSE00001642880
9982  ENSG00000154642       ENST00000400559 ENSE00003784853
9983  ENSG00000154642       ENST00000400559 ENSE00001836456
9984  ENSG00000154642       ENST00000400558 ENSE00001543482
9985  ENSG00000154642       ENST00000400558 ENSE00003679576
9986  ENSG00000154642       ENST00000400558 ENSE00001642880
9987  ENSG00000154642       ENST00000400558 ENSE00001925737
9988  ENSG00000154642       ENST00000405964 ENSE00003679576
9989  ENSG00000154642       ENST00000405964 ENSE00001642880
9990  ENSG00000154642       ENST00000405964 ENSE00003784853
9991  ENSG00000154642       ENST00000405964 ENSE00001757903
9992  ENSG00000154642       ENST00000493464 ENSE00001860985
9993  ENSG00000154642       ENST00000493464 ENSE00003540501
9994  ENSG00000154642       ENST00000493464 ENSE00001829026
9995  ENSG00000154642       ENST00000493464 ENSE00001924293
9996  ENSG00000154642       ENST00000493464 ENSE00001955959
9997  ENSG00000154642       ENST00000482915 ENSE00001896052
9998  ENSG00000154642       ENST00000482915 ENSE00001842658
9999  ENSG00000232855       ENST00000433310 ENSE00001638522
      chromosome_name    start     stop  hgnc_symbol    hgnc_id strand
1                  21 44439035 44439110                              1
2                  21  7092616  7092716                              1
3                  21  8433085  8433174                              1
4                  21 39171462 39171560                             -1
5                  21 41870633 41872054                              1
6                  21 41870633 41872054                              1
7                  21 44885953 44931989        ITGB2  HGNC:6155     -1
8                  21 44885953 44931989        ITGB2  HGNC:6155     -1
9                  21 44885953 44931989        ITGB2  HGNC:6155     -1
10                 21 44885953 44931989        ITGB2  HGNC:6155     -1
11                 21 44885953 44931989        ITGB2  HGNC:6155     -1
12                 21 44885953 44931989        ITGB2  HGNC:6155     -1
13                 21 44885953 44931989        ITGB2  HGNC:6155     -1
14                 21 44885953 44931989        ITGB2  HGNC:6155     -1
15                 21 44885953 44931989        ITGB2  HGNC:6155     -1
16                 21 44885953 44931989        ITGB2  HGNC:6155     -1
17                 21 44885953 44931989        ITGB2  HGNC:6155     -1
18                 21 44885953 44931989        ITGB2  HGNC:6155     -1
19                 21 44885953 44931989        ITGB2  HGNC:6155     -1
20                 21 44885953 44931989        ITGB2  HGNC:6155     -1
21                 21 44885953 44931989        ITGB2  HGNC:6155     -1
22                 21 44885953 44931989        ITGB2  HGNC:6155     -1
23                 21 44885953 44931989        ITGB2  HGNC:6155     -1
24                 21 44885953 44931989        ITGB2  HGNC:6155     -1
25                 21 44885953 44931989        ITGB2  HGNC:6155     -1
26                 21 44885953 44931989        ITGB2  HGNC:6155     -1
27                 21 44885953 44931989        ITGB2  HGNC:6155     -1
28                 21 44885953 44931989        ITGB2  HGNC:6155     -1
29                 21 44885953 44931989        ITGB2  HGNC:6155     -1
30                 21 44885953 44931989        ITGB2  HGNC:6155     -1
31                 21 44885953 44931989        ITGB2  HGNC:6155     -1
32                 21 44885953 44931989        ITGB2  HGNC:6155     -1
33                 21 44885953 44931989        ITGB2  HGNC:6155     -1
34                 21 44885953 44931989        ITGB2  HGNC:6155     -1
35                 21 44885953 44931989        ITGB2  HGNC:6155     -1
36                 21 44885953 44931989        ITGB2  HGNC:6155     -1
37                 21 44885953 44931989        ITGB2  HGNC:6155     -1
38                 21 44885953 44931989        ITGB2  HGNC:6155     -1
39                 21 44885953 44931989        ITGB2  HGNC:6155     -1
40                 21 44885953 44931989        ITGB2  HGNC:6155     -1
41                 21 44885953 44931989        ITGB2  HGNC:6155     -1
42                 21 44885953 44931989        ITGB2  HGNC:6155     -1
43                 21 44885953 44931989        ITGB2  HGNC:6155     -1
44                 21 44885953 44931989        ITGB2  HGNC:6155     -1
45                 21 44885953 44931989        ITGB2  HGNC:6155     -1
46                 21 44885953 44931989        ITGB2  HGNC:6155     -1
47                 21 44885953 44931989        ITGB2  HGNC:6155     -1
48                 21 44885953 44931989        ITGB2  HGNC:6155     -1
49                 21 44885953 44931989        ITGB2  HGNC:6155     -1
50                 21 44885953 44931989        ITGB2  HGNC:6155     -1
51                 21 44885953 44931989        ITGB2  HGNC:6155     -1
52                 21 44885953 44931989        ITGB2  HGNC:6155     -1
53                 21 44885953 44931989        ITGB2  HGNC:6155     -1
54                 21 44885953 44931989        ITGB2  HGNC:6155     -1
55                 21 44885953 44931989        ITGB2  HGNC:6155     -1
56                 21 44885953 44931989        ITGB2  HGNC:6155     -1
57                 21 44885953 44931989        ITGB2  HGNC:6155     -1
58                 21 44885953 44931989        ITGB2  HGNC:6155     -1
59                 21 44885953 44931989        ITGB2  HGNC:6155     -1
60                 21 44885953 44931989        ITGB2  HGNC:6155     -1
61                 21 44885953 44931989        ITGB2  HGNC:6155     -1
62                 21 44885953 44931989        ITGB2  HGNC:6155     -1
63                 21 44885953 44931989        ITGB2  HGNC:6155     -1
64                 21 44885953 44931989        ITGB2  HGNC:6155     -1
65                 21 44885953 44931989        ITGB2  HGNC:6155     -1
66                 21 44885953 44931989        ITGB2  HGNC:6155     -1
67                 21 44885953 44931989        ITGB2  HGNC:6155     -1
68                 21 44885953 44931989        ITGB2  HGNC:6155     -1
69                 21 44885953 44931989        ITGB2  HGNC:6155     -1
70                 21 44885953 44931989        ITGB2  HGNC:6155     -1
71                 21 44885953 44931989        ITGB2  HGNC:6155     -1
72                 21 44885953 44931989        ITGB2  HGNC:6155     -1
73                 21 44885953 44931989        ITGB2  HGNC:6155     -1
74                 21 44885953 44931989        ITGB2  HGNC:6155     -1
75                 21 44885953 44931989        ITGB2  HGNC:6155     -1
76                 21 44885953 44931989        ITGB2  HGNC:6155     -1
77                 21 44885953 44931989        ITGB2  HGNC:6155     -1
78                 21 44885953 44931989        ITGB2  HGNC:6155     -1
79                 21 44885953 44931989        ITGB2  HGNC:6155     -1
80                 21 44885953 44931989        ITGB2  HGNC:6155     -1
81                 21 44885953 44931989        ITGB2  HGNC:6155     -1
82                 21 44885953 44931989        ITGB2  HGNC:6155     -1
83                 21 44885953 44931989        ITGB2  HGNC:6155     -1
84                 21 44885953 44931989        ITGB2  HGNC:6155     -1
85                 21 44885953 44931989        ITGB2  HGNC:6155     -1
86                 21 44885953 44931989        ITGB2  HGNC:6155     -1
87                 21 44885953 44931989        ITGB2  HGNC:6155     -1
88                 21 44885953 44931989        ITGB2  HGNC:6155     -1
89                 21 44885953 44931989        ITGB2  HGNC:6155     -1
90                 21 44885953 44931989        ITGB2  HGNC:6155     -1
91                 21 44885953 44931989        ITGB2  HGNC:6155     -1
92                 21 44885953 44931989        ITGB2  HGNC:6155     -1
93                 21 44885953 44931989        ITGB2  HGNC:6155     -1
94                 21 44885953 44931989        ITGB2  HGNC:6155     -1
95                 21 44885953 44931989        ITGB2  HGNC:6155     -1
96                 21 44885953 44931989        ITGB2  HGNC:6155     -1
97                 21 44885953 44931989        ITGB2  HGNC:6155     -1
98                 21 44885953 44931989        ITGB2  HGNC:6155     -1
99                 21 44885953 44931989        ITGB2  HGNC:6155     -1
100                21 44885953 44931989        ITGB2  HGNC:6155     -1
101                21 44885953 44931989        ITGB2  HGNC:6155     -1
102                21 44885953 44931989        ITGB2  HGNC:6155     -1
103                21 44885953 44931989        ITGB2  HGNC:6155     -1
104                21 44885953 44931989        ITGB2  HGNC:6155     -1
105                21 44885953 44931989        ITGB2  HGNC:6155     -1
106                21 44885953 44931989        ITGB2  HGNC:6155     -1
107                21 44885953 44931989        ITGB2  HGNC:6155     -1
108                21 44885953 44931989        ITGB2  HGNC:6155     -1
109                21 44885953 44931989        ITGB2  HGNC:6155     -1
110                21 44885953 44931989        ITGB2  HGNC:6155     -1
111                21 44885953 44931989        ITGB2  HGNC:6155     -1
112                21 44885953 44931989        ITGB2  HGNC:6155     -1
113                21 44885953 44931989        ITGB2  HGNC:6155     -1
114                21 44885953 44931989        ITGB2  HGNC:6155     -1
115                21 44885953 44931989        ITGB2  HGNC:6155     -1
116                21 44885953 44931989        ITGB2  HGNC:6155     -1
117                21 44885953 44931989        ITGB2  HGNC:6155     -1
118                21 44885953 44931989        ITGB2  HGNC:6155     -1
119                21 44885953 44931989        ITGB2  HGNC:6155     -1
120                21 44885953 44931989        ITGB2  HGNC:6155     -1
121                21 44885953 44931989        ITGB2  HGNC:6155     -1
122                21 44885953 44931989        ITGB2  HGNC:6155     -1
123                21 44885953 44931989        ITGB2  HGNC:6155     -1
124                21 44885953 44931989        ITGB2  HGNC:6155     -1
125                21 44885953 44931989        ITGB2  HGNC:6155     -1
126                21 44885953 44931989        ITGB2  HGNC:6155     -1
127                21 44885953 44931989        ITGB2  HGNC:6155     -1
128                21 44885953 44931989        ITGB2  HGNC:6155     -1
129                21 44885953 44931989        ITGB2  HGNC:6155     -1
130                21 44885953 44931989        ITGB2  HGNC:6155     -1
131                21 44885953 44931989        ITGB2  HGNC:6155     -1
132                21 44885953 44931989        ITGB2  HGNC:6155     -1
133                21 44885953 44931989        ITGB2  HGNC:6155     -1
134                21 44885953 44931989        ITGB2  HGNC:6155     -1
135                21 44885953 44931989        ITGB2  HGNC:6155     -1
136                21 44885953 44931989        ITGB2  HGNC:6155     -1
137                21 44885953 44931989        ITGB2  HGNC:6155     -1
138                21 44885953 44931989        ITGB2  HGNC:6155     -1
139                21 44885953 44931989        ITGB2  HGNC:6155     -1
140                21 44885953 44931989        ITGB2  HGNC:6155     -1
141                21 44885953 44931989        ITGB2  HGNC:6155     -1
142                21 44885953 44931989        ITGB2  HGNC:6155     -1
143                21 44885953 44931989        ITGB2  HGNC:6155     -1
144                21 44885953 44931989        ITGB2  HGNC:6155     -1
145                21 44885953 44931989        ITGB2  HGNC:6155     -1
146                21 44885953 44931989        ITGB2  HGNC:6155     -1
147                21 44885953 44931989        ITGB2  HGNC:6155     -1
148                21 44885953 44931989        ITGB2  HGNC:6155     -1
149                21 44885953 44931989        ITGB2  HGNC:6155     -1
150                21 44885953 44931989        ITGB2  HGNC:6155     -1
151                21 44885953 44931989        ITGB2  HGNC:6155     -1
152                21 44885953 44931989        ITGB2  HGNC:6155     -1
153                21 44885953 44931989        ITGB2  HGNC:6155     -1
154                21 44885953 44931989        ITGB2  HGNC:6155     -1
155                21 44885953 44931989        ITGB2  HGNC:6155     -1
156                21 44885953 44931989        ITGB2  HGNC:6155     -1
157                21 44885953 44931989        ITGB2  HGNC:6155     -1
158                21 44885953 44931989        ITGB2  HGNC:6155     -1
159                21 44885953 44931989        ITGB2  HGNC:6155     -1
160                21 44885953 44931989        ITGB2  HGNC:6155     -1
161                21 44885953 44931989        ITGB2  HGNC:6155     -1
162                21 44885953 44931989        ITGB2  HGNC:6155     -1
163                21 44885953 44931989        ITGB2  HGNC:6155     -1
164                21 44885953 44931989        ITGB2  HGNC:6155     -1
165                21 44885953 44931989        ITGB2  HGNC:6155     -1
166                21 44885953 44931989        ITGB2  HGNC:6155     -1
167                21 44885953 44931989        ITGB2  HGNC:6155     -1
168                21 44885953 44931989        ITGB2  HGNC:6155     -1
169                21 44885953 44931989        ITGB2  HGNC:6155     -1
170                21 44885953 44931989        ITGB2  HGNC:6155     -1
171                21 44885953 44931989        ITGB2  HGNC:6155     -1
172                21 44885953 44931989        ITGB2  HGNC:6155     -1
173                21 44885953 44931989        ITGB2  HGNC:6155     -1
174                21 44885953 44931989        ITGB2  HGNC:6155     -1
175                21 44885953 44931989        ITGB2  HGNC:6155     -1
176                21 44885953 44931989        ITGB2  HGNC:6155     -1
177                21 44885953 44931989        ITGB2  HGNC:6155     -1
178                21 44885953 44931989        ITGB2  HGNC:6155     -1
179                21 44885953 44931989        ITGB2  HGNC:6155     -1
180                21 44885953 44931989        ITGB2  HGNC:6155     -1
181                21 44885953 44931989        ITGB2  HGNC:6155     -1
182                21 44885953 44931989        ITGB2  HGNC:6155     -1
183                21 44885953 44931989        ITGB2  HGNC:6155     -1
184                21 44885953 44931989        ITGB2  HGNC:6155     -1
185                21 44885953 44931989        ITGB2  HGNC:6155     -1
186                21 44885953 44931989        ITGB2  HGNC:6155     -1
187                21 44885953 44931989        ITGB2  HGNC:6155     -1
188                21 44885953 44931989        ITGB2  HGNC:6155     -1
189                21 44885953 44931989        ITGB2  HGNC:6155     -1
190                21 44885953 44931989        ITGB2  HGNC:6155     -1
191                21 44885953 44931989        ITGB2  HGNC:6155     -1
192                21 44885953 44931989        ITGB2  HGNC:6155     -1
193                21 44885953 44931989        ITGB2  HGNC:6155     -1
194                21 44885953 44931989        ITGB2  HGNC:6155     -1
195                21 44885953 44931989        ITGB2  HGNC:6155     -1
196                21 44885953 44931989        ITGB2  HGNC:6155     -1
197                21 44885953 44931989        ITGB2  HGNC:6155     -1
198                21 44885953 44931989        ITGB2  HGNC:6155     -1
199                21 44885953 44931989        ITGB2  HGNC:6155     -1
200                21 44885953 44931989        ITGB2  HGNC:6155     -1
201                21 44885953 44931989        ITGB2  HGNC:6155     -1
202                21 44885953 44931989        ITGB2  HGNC:6155     -1
203                21 25202207 25202315    RNA5SP489 HGNC:43389      1
204                21 42417497 42417593   RNU6-1149P HGNC:48112     -1
205                21 43748365 43748468                             -1
206                21 43748365 43748468                             -1
207                21 35720715 35720808       MIR802 HGNC:33140      1
208                21 23281736 23281909     RNU2-55P HGNC:48548     -1
209                21 17527140 17527247                             -1
210                21 28743208 28743291                              1
211                21 40212352 40212431      MIR4760 HGNC:41698     -1
212                21 46598962 46605208        S100B HGNC:10500     -1
213                21 46598962 46605208        S100B HGNC:10500     -1
214                21 46598962 46605208        S100B HGNC:10500     -1
215                21 46598962 46605208        S100B HGNC:10500     -1
216                21 46598962 46605208        S100B HGNC:10500     -1
217                21 46598962 46605208        S100B HGNC:10500     -1
218                21 46598962 46605208        S100B HGNC:10500     -1
219                21 46598962 46605208        S100B HGNC:10500     -1
220                21 46598962 46605208        S100B HGNC:10500     -1
221                21 46458899 46569852        DIP2A HGNC:17217      1
222                21 46458899 46569852        DIP2A HGNC:17217      1
223                21 46458899 46569852        DIP2A HGNC:17217      1
224                21 46458899 46569852        DIP2A HGNC:17217      1
225                21 46458899 46569852        DIP2A HGNC:17217      1
226                21 46458899 46569852        DIP2A HGNC:17217      1
227                21 46458899 46569852        DIP2A HGNC:17217      1
228                21 46458899 46569852        DIP2A HGNC:17217      1
229                21 46458899 46569852        DIP2A HGNC:17217      1
230                21 46458899 46569852        DIP2A HGNC:17217      1
231                21 46458899 46569852        DIP2A HGNC:17217      1
232                21 46458899 46569852        DIP2A HGNC:17217      1
233                21 46458899 46569852        DIP2A HGNC:17217      1
234                21 46458899 46569852        DIP2A HGNC:17217      1
235                21 46458899 46569852        DIP2A HGNC:17217      1
236                21 46458899 46569852        DIP2A HGNC:17217      1
237                21 46458899 46569852        DIP2A HGNC:17217      1
238                21 46458899 46569852        DIP2A HGNC:17217      1
239                21 46458899 46569852        DIP2A HGNC:17217      1
240                21 46458899 46569852        DIP2A HGNC:17217      1
241                21 46458899 46569852        DIP2A HGNC:17217      1
242                21 46458899 46569852        DIP2A HGNC:17217      1
243                21 46458899 46569852        DIP2A HGNC:17217      1
244                21 46458899 46569852        DIP2A HGNC:17217      1
245                21 46458899 46569852        DIP2A HGNC:17217      1
246                21 46458899 46569852        DIP2A HGNC:17217      1
247                21 46458899 46569852        DIP2A HGNC:17217      1
248                21 46458899 46569852        DIP2A HGNC:17217      1
249                21 46458899 46569852        DIP2A HGNC:17217      1
250                21 46458899 46569852        DIP2A HGNC:17217      1
251                21 46458899 46569852        DIP2A HGNC:17217      1
252                21 46458899 46569852        DIP2A HGNC:17217      1
253                21 46458899 46569852        DIP2A HGNC:17217      1
254                21 46458899 46569852        DIP2A HGNC:17217      1
255                21 46458899 46569852        DIP2A HGNC:17217      1
256                21 46458899 46569852        DIP2A HGNC:17217      1
257                21 46458899 46569852        DIP2A HGNC:17217      1
258                21 46458899 46569852        DIP2A HGNC:17217      1
259                21 46458899 46569852        DIP2A HGNC:17217      1
260                21 46458899 46569852        DIP2A HGNC:17217      1
261                21 46458899 46569852        DIP2A HGNC:17217      1
262                21 46458899 46569852        DIP2A HGNC:17217      1
263                21 46458899 46569852        DIP2A HGNC:17217      1
264                21 46458899 46569852        DIP2A HGNC:17217      1
265                21 46458899 46569852        DIP2A HGNC:17217      1
266                21 46458899 46569852        DIP2A HGNC:17217      1
267                21 46458899 46569852        DIP2A HGNC:17217      1
268                21 46458899 46569852        DIP2A HGNC:17217      1
269                21 46458899 46569852        DIP2A HGNC:17217      1
270                21 46458899 46569852        DIP2A HGNC:17217      1
271                21 46458899 46569852        DIP2A HGNC:17217      1
272                21 46458899 46569852        DIP2A HGNC:17217      1
273                21 46458899 46569852        DIP2A HGNC:17217      1
274                21 46458899 46569852        DIP2A HGNC:17217      1
275                21 46458899 46569852        DIP2A HGNC:17217      1
276                21 46458899 46569852        DIP2A HGNC:17217      1
277                21 46458899 46569852        DIP2A HGNC:17217      1
278                21 46458899 46569852        DIP2A HGNC:17217      1
279                21 46458899 46569852        DIP2A HGNC:17217      1
280                21 46458899 46569852        DIP2A HGNC:17217      1
281                21 46458899 46569852        DIP2A HGNC:17217      1
282                21 46458899 46569852        DIP2A HGNC:17217      1
283                21 46458899 46569852        DIP2A HGNC:17217      1
284                21 46458899 46569852        DIP2A HGNC:17217      1
285                21 46458899 46569852        DIP2A HGNC:17217      1
286                21 46458899 46569852        DIP2A HGNC:17217      1
287                21 46458899 46569852        DIP2A HGNC:17217      1
288                21 46458899 46569852        DIP2A HGNC:17217      1
289                21 46458899 46569852        DIP2A HGNC:17217      1
290                21 46458899 46569852        DIP2A HGNC:17217      1
291                21 46458899 46569852        DIP2A HGNC:17217      1
292                21 46458899 46569852        DIP2A HGNC:17217      1
293                21 46458899 46569852        DIP2A HGNC:17217      1
294                21 46458899 46569852        DIP2A HGNC:17217      1
295                21 46458899 46569852        DIP2A HGNC:17217      1
296                21 46458899 46569852        DIP2A HGNC:17217      1
297                21 46458899 46569852        DIP2A HGNC:17217      1
298                21 46458899 46569852        DIP2A HGNC:17217      1
299                21 46458899 46569852        DIP2A HGNC:17217      1
300                21 46458899 46569852        DIP2A HGNC:17217      1
301                21 46458899 46569852        DIP2A HGNC:17217      1
302                21 46458899 46569852        DIP2A HGNC:17217      1
303                21 46458899 46569852        DIP2A HGNC:17217      1
304                21 46458899 46569852        DIP2A HGNC:17217      1
305                21 46458899 46569852        DIP2A HGNC:17217      1
306                21 46458899 46569852        DIP2A HGNC:17217      1
307                21 46458899 46569852        DIP2A HGNC:17217      1
308                21 46458899 46569852        DIP2A HGNC:17217      1
309                21 46458899 46569852        DIP2A HGNC:17217      1
310                21 46458899 46569852        DIP2A HGNC:17217      1
311                21 46458899 46569852        DIP2A HGNC:17217      1
312                21 46458899 46569852        DIP2A HGNC:17217      1
313                21 46458899 46569852        DIP2A HGNC:17217      1
314                21 46458899 46569852        DIP2A HGNC:17217      1
315                21 46458899 46569852        DIP2A HGNC:17217      1
316                21 46458899 46569852        DIP2A HGNC:17217      1
317                21 46458899 46569852        DIP2A HGNC:17217      1
318                21 46458899 46569852        DIP2A HGNC:17217      1
319                21 46458899 46569852        DIP2A HGNC:17217      1
320                21 46458899 46569852        DIP2A HGNC:17217      1
321                21 46458899 46569852        DIP2A HGNC:17217      1
322                21 46458899 46569852        DIP2A HGNC:17217      1
323                21 46458899 46569852        DIP2A HGNC:17217      1
324                21 46458899 46569852        DIP2A HGNC:17217      1
325                21 46458899 46569852        DIP2A HGNC:17217      1
326                21 46458899 46569852        DIP2A HGNC:17217      1
327                21 46458899 46569852        DIP2A HGNC:17217      1
328                21 46458899 46569852        DIP2A HGNC:17217      1
329                21 46458899 46569852        DIP2A HGNC:17217      1
330                21 46458899 46569852        DIP2A HGNC:17217      1
331                21 46458899 46569852        DIP2A HGNC:17217      1
332                21 46458899 46569852        DIP2A HGNC:17217      1
333                21 46458899 46569852        DIP2A HGNC:17217      1
334                21 46458899 46569852        DIP2A HGNC:17217      1
335                21 46458899 46569852        DIP2A HGNC:17217      1
336                21 46458899 46569852        DIP2A HGNC:17217      1
337                21 46458899 46569852        DIP2A HGNC:17217      1
338                21 46458899 46569852        DIP2A HGNC:17217      1
339                21 46458899 46569852        DIP2A HGNC:17217      1
340                21 46458899 46569852        DIP2A HGNC:17217      1
341                21 46458899 46569852        DIP2A HGNC:17217      1
342                21 46458899 46569852        DIP2A HGNC:17217      1
343                21 46458899 46569852        DIP2A HGNC:17217      1
344                21 46458899 46569852        DIP2A HGNC:17217      1
345                21 46458899 46569852        DIP2A HGNC:17217      1
346                21 46458899 46569852        DIP2A HGNC:17217      1
347                21 46458899 46569852        DIP2A HGNC:17217      1
348                21 46458899 46569852        DIP2A HGNC:17217      1
349                21 46458899 46569852        DIP2A HGNC:17217      1
350                21 46458899 46569852        DIP2A HGNC:17217      1
351                21 46458899 46569852        DIP2A HGNC:17217      1
352                21 46458899 46569852        DIP2A HGNC:17217      1
353                21 46458899 46569852        DIP2A HGNC:17217      1
354                21 46458899 46569852        DIP2A HGNC:17217      1
355                21 46458899 46569852        DIP2A HGNC:17217      1
356                21 46458899 46569852        DIP2A HGNC:17217      1
357                21 46458899 46569852        DIP2A HGNC:17217      1
358                21 46458899 46569852        DIP2A HGNC:17217      1
359                21 46458899 46569852        DIP2A HGNC:17217      1
360                21 46458899 46569852        DIP2A HGNC:17217      1
361                21 46458899 46569852        DIP2A HGNC:17217      1
362                21 46458899 46569852        DIP2A HGNC:17217      1
363                21 46458899 46569852        DIP2A HGNC:17217      1
364                21 46458899 46569852        DIP2A HGNC:17217      1
365                21 46458899 46569852        DIP2A HGNC:17217      1
366                21 46458899 46569852        DIP2A HGNC:17217      1
367                21 46458899 46569852        DIP2A HGNC:17217      1
368                21 46458899 46569852        DIP2A HGNC:17217      1
369                21 46458899 46569852        DIP2A HGNC:17217      1
370                21 46458899 46569852        DIP2A HGNC:17217      1
371                21 46458899 46569852        DIP2A HGNC:17217      1
372                21 46458899 46569852        DIP2A HGNC:17217      1
373                21 46458899 46569852        DIP2A HGNC:17217      1
374                21 46458899 46569852        DIP2A HGNC:17217      1
375                21 46458899 46569852        DIP2A HGNC:17217      1
376                21 46458899 46569852        DIP2A HGNC:17217      1
377                21 46458899 46569852        DIP2A HGNC:17217      1
378                21 46458899 46569852        DIP2A HGNC:17217      1
379                21 46458899 46569852        DIP2A HGNC:17217      1
380                21 46458899 46569852        DIP2A HGNC:17217      1
381                21 46458899 46569852        DIP2A HGNC:17217      1
382                21 46458899 46569852        DIP2A HGNC:17217      1
383                21 46458899 46569852        DIP2A HGNC:17217      1
384                21 46458899 46569852        DIP2A HGNC:17217      1
385                21 46458899 46569852        DIP2A HGNC:17217      1
386                21 46458899 46569852        DIP2A HGNC:17217      1
387                21 46458899 46569852        DIP2A HGNC:17217      1
388                21 46458899 46569852        DIP2A HGNC:17217      1
389                21 46458899 46569852        DIP2A HGNC:17217      1
390                21 46458899 46569852        DIP2A HGNC:17217      1
391                21 46458899 46569852        DIP2A HGNC:17217      1
392                21 46458899 46569852        DIP2A HGNC:17217      1
393                21 46458899 46569852        DIP2A HGNC:17217      1
394                21 46458899 46569852        DIP2A HGNC:17217      1
395                21 46458899 46569852        DIP2A HGNC:17217      1
396                21 46458899 46569852        DIP2A HGNC:17217      1
397                21 46458899 46569852        DIP2A HGNC:17217      1
398                21 46458899 46569852        DIP2A HGNC:17217      1
399                21 46458899 46569852        DIP2A HGNC:17217      1
400                21 46458899 46569852        DIP2A HGNC:17217      1
401                21 46458899 46569852        DIP2A HGNC:17217      1
402                21 46458899 46569852        DIP2A HGNC:17217      1
403                21 46458899 46569852        DIP2A HGNC:17217      1
404                21 46458899 46569852        DIP2A HGNC:17217      1
405                21 46458899 46569852        DIP2A HGNC:17217      1
406                21 46458899 46569852        DIP2A HGNC:17217      1
407                21 46458899 46569852        DIP2A HGNC:17217      1
408                21 46458899 46569852        DIP2A HGNC:17217      1
409                21 46458899 46569852        DIP2A HGNC:17217      1
410                21 46458899 46569852        DIP2A HGNC:17217      1
411                21 46458899 46569852        DIP2A HGNC:17217      1
412                21 20355748 20355852    RNU6-772P HGNC:47735     -1
413                21  8986999  8987178    MIR3648-2 HGNC:50843      1
414                21 33550662 33550728      MIR6501 HGNC:50033      1
415                21 16284696 16284768                             -1
416                21 25573980 25574044       MIR155 HGNC:31542      1
417                21 13644775 13644850    MIR3118-1 HGNC:38265     -1
418                21 42950928 42951014     MIR5692B HGNC:43535     -1
419                21 44802577 44804717    LINC01424 HGNC:40558      1
420                21 44802577 44804717    LINC01424 HGNC:40558      1
421                21 44666189 44666927    KRTAP12-2 HGNC:20530     -1
422                21 44654213 44654659    KRTAP12-4 HGNC:20532     -1
423                21 37267784 37268497                              1
424                21 46324122 46445769         PCNT HGNC:16068      1
425                21 46324122 46445769         PCNT HGNC:16068      1
426                21 46324122 46445769         PCNT HGNC:16068      1
427                21 46324122 46445769         PCNT HGNC:16068      1
428                21 46324122 46445769         PCNT HGNC:16068      1
429                21 46324122 46445769         PCNT HGNC:16068      1
430                21 46324122 46445769         PCNT HGNC:16068      1
431                21 46324122 46445769         PCNT HGNC:16068      1
432                21 46324122 46445769         PCNT HGNC:16068      1
433                21 46324122 46445769         PCNT HGNC:16068      1
434                21 46324122 46445769         PCNT HGNC:16068      1
435                21 46324122 46445769         PCNT HGNC:16068      1
436                21 46324122 46445769         PCNT HGNC:16068      1
437                21 46324122 46445769         PCNT HGNC:16068      1
438                21 46324122 46445769         PCNT HGNC:16068      1
439                21 46324122 46445769         PCNT HGNC:16068      1
440                21 46324122 46445769         PCNT HGNC:16068      1
441                21 46324122 46445769         PCNT HGNC:16068      1
442                21 46324122 46445769         PCNT HGNC:16068      1
443                21 46324122 46445769         PCNT HGNC:16068      1
444                21 46324122 46445769         PCNT HGNC:16068      1
445                21 46324122 46445769         PCNT HGNC:16068      1
446                21 46324122 46445769         PCNT HGNC:16068      1
447                21 46324122 46445769         PCNT HGNC:16068      1
448                21 46324122 46445769         PCNT HGNC:16068      1
449                21 46324122 46445769         PCNT HGNC:16068      1
450                21 46324122 46445769         PCNT HGNC:16068      1
451                21 46324122 46445769         PCNT HGNC:16068      1
452                21 46324122 46445769         PCNT HGNC:16068      1
453                21 46324122 46445769         PCNT HGNC:16068      1
454                21 46324122 46445769         PCNT HGNC:16068      1
455                21 46324122 46445769         PCNT HGNC:16068      1
456                21 46324122 46445769         PCNT HGNC:16068      1
457                21 46324122 46445769         PCNT HGNC:16068      1
458                21 46324122 46445769         PCNT HGNC:16068      1
459                21 46324122 46445769         PCNT HGNC:16068      1
460                21 46324122 46445769         PCNT HGNC:16068      1
461                21 46324122 46445769         PCNT HGNC:16068      1
462                21 46324122 46445769         PCNT HGNC:16068      1
463                21 46324122 46445769         PCNT HGNC:16068      1
464                21 46324122 46445769         PCNT HGNC:16068      1
465                21 46324122 46445769         PCNT HGNC:16068      1
466                21 46324122 46445769         PCNT HGNC:16068      1
467                21 46324122 46445769         PCNT HGNC:16068      1
468                21 46324122 46445769         PCNT HGNC:16068      1
469                21 46324122 46445769         PCNT HGNC:16068      1
470                21 46324122 46445769         PCNT HGNC:16068      1
471                21 46324122 46445769         PCNT HGNC:16068      1
472                21 46324122 46445769         PCNT HGNC:16068      1
473                21 46324122 46445769         PCNT HGNC:16068      1
474                21 46324122 46445769         PCNT HGNC:16068      1
475                21 46324122 46445769         PCNT HGNC:16068      1
476                21 46324122 46445769         PCNT HGNC:16068      1
477                21 46324122 46445769         PCNT HGNC:16068      1
478                21 46324122 46445769         PCNT HGNC:16068      1
479                21 46324122 46445769         PCNT HGNC:16068      1
480                21 46324122 46445769         PCNT HGNC:16068      1
481                21 46324122 46445769         PCNT HGNC:16068      1
482                21 46324122 46445769         PCNT HGNC:16068      1
483                21 46324122 46445769         PCNT HGNC:16068      1
484                21 46324122 46445769         PCNT HGNC:16068      1
485                21 46324122 46445769         PCNT HGNC:16068      1
486                21 46324122 46445769         PCNT HGNC:16068      1
487                21 46324122 46445769         PCNT HGNC:16068      1
488                21 46324122 46445769         PCNT HGNC:16068      1
489                21 46324122 46445769         PCNT HGNC:16068      1
490                21 46324122 46445769         PCNT HGNC:16068      1
491                21 46324122 46445769         PCNT HGNC:16068      1
492                21 46324122 46445769         PCNT HGNC:16068      1
493                21 46324122 46445769         PCNT HGNC:16068      1
494                21 46324122 46445769         PCNT HGNC:16068      1
495                21 46324122 46445769         PCNT HGNC:16068      1
496                21 46324122 46445769         PCNT HGNC:16068      1
497                21 46324122 46445769         PCNT HGNC:16068      1
498                21 46324122 46445769         PCNT HGNC:16068      1
499                21 46324122 46445769         PCNT HGNC:16068      1
500                21 46324122 46445769         PCNT HGNC:16068      1
501                21 46324122 46445769         PCNT HGNC:16068      1
502                21 46324122 46445769         PCNT HGNC:16068      1
503                21 46324122 46445769         PCNT HGNC:16068      1
504                21 46324122 46445769         PCNT HGNC:16068      1
505                21 46324122 46445769         PCNT HGNC:16068      1
506                21 46324122 46445769         PCNT HGNC:16068      1
507                21 46324122 46445769         PCNT HGNC:16068      1
508                21 46324122 46445769         PCNT HGNC:16068      1
509                21 46324122 46445769         PCNT HGNC:16068      1
510                21 46324122 46445769         PCNT HGNC:16068      1
511                21 46324122 46445769         PCNT HGNC:16068      1
512                21 46324122 46445769         PCNT HGNC:16068      1
513                21 46324122 46445769         PCNT HGNC:16068      1
514                21 46324122 46445769         PCNT HGNC:16068      1
515                21 46324122 46445769         PCNT HGNC:16068      1
516                21 46324122 46445769         PCNT HGNC:16068      1
517                21 46324122 46445769         PCNT HGNC:16068      1
518                21 46324122 46445769         PCNT HGNC:16068      1
519                21 46324122 46445769         PCNT HGNC:16068      1
520                21 46324122 46445769         PCNT HGNC:16068      1
521                21 46324122 46445769         PCNT HGNC:16068      1
522                21 46324122 46445769         PCNT HGNC:16068      1
523                21 46324122 46445769         PCNT HGNC:16068      1
524                21 46324122 46445769         PCNT HGNC:16068      1
525                21 46324122 46445769         PCNT HGNC:16068      1
526                21 46324122 46445769         PCNT HGNC:16068      1
527                21 46324122 46445769         PCNT HGNC:16068      1
528                21 46324122 46445769         PCNT HGNC:16068      1
529                21 46324122 46445769         PCNT HGNC:16068      1
530                21 46324122 46445769         PCNT HGNC:16068      1
531                21 46324122 46445769         PCNT HGNC:16068      1
532                21 46324122 46445769         PCNT HGNC:16068      1
533                21 46324122 46445769         PCNT HGNC:16068      1
534                21 46324122 46445769         PCNT HGNC:16068      1
535                21 46324122 46445769         PCNT HGNC:16068      1
536                21 46324122 46445769         PCNT HGNC:16068      1
537                21 46324122 46445769         PCNT HGNC:16068      1
538                21 46324122 46445769         PCNT HGNC:16068      1
539                21 46324122 46445769         PCNT HGNC:16068      1
540                21 46324122 46445769         PCNT HGNC:16068      1
541                21 46324122 46445769         PCNT HGNC:16068      1
542                21 46324122 46445769         PCNT HGNC:16068      1
543                21 46324122 46445769         PCNT HGNC:16068      1
544                21 46324122 46445769         PCNT HGNC:16068      1
545                21 46324122 46445769         PCNT HGNC:16068      1
546                21 46324122 46445769         PCNT HGNC:16068      1
547                21 44657932 44658341    KRTAP12-3 HGNC:20531      1
548                21 44591268 44592505    KRTAP10-6 HGNC:20523     -1
549                21 44681576 44682163    KRTAP12-1 HGNC:20529     -1
550                21 44550357 44551505    KRTAP10-2 HGNC:22967     -1
551                21 44550357 44551505    KRTAP10-2 HGNC:22967     -1
552                21 44550357 44551505    KRTAP10-2 HGNC:22967     -1
553                21 44450986 44455284    LRRC3-AS1 HGNC:43636     -1
554                21 44450986 44455284    LRRC3-AS1 HGNC:43636     -1
555                21 44450986 44455284    LRRC3-AS1 HGNC:43636     -1
556                21 44450986 44455284    LRRC3-AS1 HGNC:43636     -1
557                21  8388898  8388987                              1
558                21 36986739 36986851                             -1
559                21 41180097 41180626    BACE2-IT1 HGNC:16024      1
560                21 41180097 41180626    BACE2-IT1 HGNC:16024      1
561                21 33967101 33968573                             -1
562                21 33967101 33968573                             -1
563                21  8197620  8227646                              1
564                21  8197620  8227646                              1
565                21  8197620  8227646                              1
566                21  8197620  8227646                              1
567                21  8197620  8227646                              1
568                21  8197620  8227646                              1
569                21  8197620  8227646                              1
570                21 29359002 29359453                              1
571                21 29496047 29500386    BACH1-IT3 HGNC:16455      1
572                21 29496047 29500386    BACH1-IT3 HGNC:16455      1
573                21 29194071 29630751        BACH1   HGNC:935      1
574                21 29194071 29630751        BACH1   HGNC:935      1
575                21 29194071 29630751        BACH1   HGNC:935      1
576                21 29194071 29630751        BACH1   HGNC:935      1
577                21 29194071 29630751        BACH1   HGNC:935      1
578                21 29194071 29630751        BACH1   HGNC:935      1
579                21 29194071 29630751        BACH1   HGNC:935      1
580                21 29194071 29630751        BACH1   HGNC:935      1
581                21 29194071 29630751        BACH1   HGNC:935      1
582                21 29194071 29630751        BACH1   HGNC:935      1
583                21 29194071 29630751        BACH1   HGNC:935      1
584                21 29194071 29630751        BACH1   HGNC:935      1
585                21 29194071 29630751        BACH1   HGNC:935      1
586                21 29194071 29630751        BACH1   HGNC:935      1
587                21 29194071 29630751        BACH1   HGNC:935      1
588                21 29194071 29630751        BACH1   HGNC:935      1
589                21 29194071 29630751        BACH1   HGNC:935      1
590                21 29194071 29630751        BACH1   HGNC:935      1
591                21 29194071 29630751        BACH1   HGNC:935      1
592                21 29194071 29630751        BACH1   HGNC:935      1
593                21 29194071 29630751        BACH1   HGNC:935      1
594                21 29194071 29630751        BACH1   HGNC:935      1
595                21 29194071 29630751        BACH1   HGNC:935      1
596                21 29194071 29630751        BACH1   HGNC:935      1
597                21 29194071 29630751        BACH1   HGNC:935      1
598                21 29194071 29630751        BACH1   HGNC:935      1
599                21 29194071 29630751        BACH1   HGNC:935      1
600                21 29194071 29630751        BACH1   HGNC:935      1
601                21 29194071 29630751        BACH1   HGNC:935      1
602                21 29194071 29630751        BACH1   HGNC:935      1
603                21 29194071 29630751        BACH1   HGNC:935      1
604                21 29194071 29630751        BACH1   HGNC:935      1
605                21 29194071 29630751        BACH1   HGNC:935      1
606                21 29194071 29630751        BACH1   HGNC:935      1
607                21 29194071 29630751        BACH1   HGNC:935      1
608                21 29194071 29630751        BACH1   HGNC:935      1
609                21 29194071 29630751        BACH1   HGNC:935      1
610                21 29194071 29630751        BACH1   HGNC:935      1
611                21 29194071 29630751        BACH1   HGNC:935      1
612                21 29194071 29630751        BACH1   HGNC:935      1
613                21 29194071 29630751        BACH1   HGNC:935      1
614                21 29194071 29630751        BACH1   HGNC:935      1
615                21 29194071 29630751        BACH1   HGNC:935      1
616                21 29194071 29630751        BACH1   HGNC:935      1
617                21 29194071 29630751        BACH1   HGNC:935      1
618                21 37100814 37101343                              1
619                21  7669397  7681742                             -1
620                21  7669397  7681742                             -1
621                21  7669397  7681742                             -1
622                21  7669397  7681742                             -1
623                21  7669397  7681742                             -1
624                21  7669397  7681742                             -1
625                21  7669397  7681742                             -1
626                21  7669397  7681742                             -1
627                21  7669397  7681742                             -1
628                21  7669397  7681742                             -1
629                21  7669397  7681742                             -1
630                21  7669397  7681742                             -1
631                21  7669397  7681742                             -1
632                21  7669397  7681742                             -1
633                21  7669397  7681742                             -1
634                21  7669397  7681742                             -1
635                21  7669397  7681742                             -1
636                21  7669397  7681742                             -1
637                21  7669397  7681742                             -1
638                21  7669397  7681742                             -1
639                21  7669397  7681742                             -1
640                21  8256781  8256933     RNA5-8S5 HGNC:37660      1
641                21  8205851  8205940                              1
642                21 26953961 26954043      MIR4759 HGNC:41575      1
643                21 46420553 46421034     RPL18AP2 HGNC:23774     -1
644                21 41711520 41715775    LINC00479 HGNC:19727     -1
645                21 41711520 41715775    LINC00479 HGNC:19727     -1
646                21 41711520 41715775    LINC00479 HGNC:19727     -1
647                21 41711520 41715775    LINC00479 HGNC:19727     -1
648                21 41711520 41715775    LINC00479 HGNC:19727     -1
649                21 41711520 41715775    LINC00479 HGNC:19727     -1
650                21 41711520 41715775    LINC00479 HGNC:19727     -1
651                21 41711520 41715775    LINC00479 HGNC:19727     -1
652                21 41711520 41715775    LINC00479 HGNC:19727     -1
653                21 41711520 41715775    LINC00479 HGNC:19727     -1
654                21 41711520 41715775    LINC00479 HGNC:19727     -1
655                21 41711520 41715775    LINC00479 HGNC:19727     -1
656                21 41711520 41715775    LINC00479 HGNC:19727     -1
657                21 41711520 41715775    LINC00479 HGNC:19727     -1
658                21 41711520 41715775    LINC00479 HGNC:19727     -1
659                21 41711520 41715775    LINC00479 HGNC:19727     -1
660                21 41711520 41715775    LINC00479 HGNC:19727     -1
661                21 41711520 41715775    LINC00479 HGNC:19727     -1
662                21 41711520 41715775    LINC00479 HGNC:19727     -1
663                21 41711520 41715775    LINC00479 HGNC:19727     -1
664                21 44517216 44525952   TSPEAR-AS2 HGNC:16428      1
665                21 44517216 44525952   TSPEAR-AS2 HGNC:16428      1
666                21 44517216 44525952   TSPEAR-AS2 HGNC:16428      1
667                21 44517216 44525952   TSPEAR-AS2 HGNC:16428      1
668                21 44517216 44525952   TSPEAR-AS2 HGNC:16428      1
669                21 44517216 44525952   TSPEAR-AS2 HGNC:16428      1
670                21 44517216 44525952   TSPEAR-AS2 HGNC:16428      1
671                21 44612079 44612954    KRTAP10-8 HGNC:20525      1
672                21 32841861 32841995                             -1
673                21  6859171  6859256    MIR8069-1 HGNC:50262      1
674                21 44768580 44802019       UBE2G2 HGNC:12483     -1
675                21 44768580 44802019       UBE2G2 HGNC:12483     -1
676                21 44768580 44802019       UBE2G2 HGNC:12483     -1
677                21 44768580 44802019       UBE2G2 HGNC:12483     -1
678                21 44768580 44802019       UBE2G2 HGNC:12483     -1
679                21 44768580 44802019       UBE2G2 HGNC:12483     -1
680                21 44768580 44802019       UBE2G2 HGNC:12483     -1
681                21 44768580 44802019       UBE2G2 HGNC:12483     -1
682                21 44768580 44802019       UBE2G2 HGNC:12483     -1
683                21 44768580 44802019       UBE2G2 HGNC:12483     -1
684                21 44768580 44802019       UBE2G2 HGNC:12483     -1
685                21 44768580 44802019       UBE2G2 HGNC:12483     -1
686                21 44768580 44802019       UBE2G2 HGNC:12483     -1
687                21 44768580 44802019       UBE2G2 HGNC:12483     -1
688                21 44768580 44802019       UBE2G2 HGNC:12483     -1
689                21 44768580 44802019       UBE2G2 HGNC:12483     -1
690                21 44768580 44802019       UBE2G2 HGNC:12483     -1
691                21 44768580 44802019       UBE2G2 HGNC:12483     -1
692                21 44768580 44802019       UBE2G2 HGNC:12483     -1
693                21 44768580 44802019       UBE2G2 HGNC:12483     -1
694                21 44768580 44802019       UBE2G2 HGNC:12483     -1
695                21 44768580 44802019       UBE2G2 HGNC:12483     -1
696                21 44768580 44802019       UBE2G2 HGNC:12483     -1
697                21 44768580 44802019       UBE2G2 HGNC:12483     -1
698                21 44768580 44802019       UBE2G2 HGNC:12483     -1
699                21 44768580 44802019       UBE2G2 HGNC:12483     -1
700                21 44768580 44802019       UBE2G2 HGNC:12483     -1
701                21 44768580 44802019       UBE2G2 HGNC:12483     -1
702                21 44768580 44802019       UBE2G2 HGNC:12483     -1
703                21 44768580 44802019       UBE2G2 HGNC:12483     -1
704                21 44768580 44802019       UBE2G2 HGNC:12483     -1
705                21 44768580 44802019       UBE2G2 HGNC:12483     -1
706                21 44768580 44802019       UBE2G2 HGNC:12483     -1
707                21 44768580 44802019       UBE2G2 HGNC:12483     -1
708                21 44768580 44802019       UBE2G2 HGNC:12483     -1
709                21 44768580 44802019       UBE2G2 HGNC:12483     -1
710                21 44768580 44802019       UBE2G2 HGNC:12483     -1
711                21 44768580 44802019       UBE2G2 HGNC:12483     -1
712                21 44768580 44802019       UBE2G2 HGNC:12483     -1
713                21 44768580 44802019       UBE2G2 HGNC:12483     -1
714                21 44768580 44802019       UBE2G2 HGNC:12483     -1
715                21 44768580 44802019       UBE2G2 HGNC:12483     -1
716                21 44768580 44802019       UBE2G2 HGNC:12483     -1
717                21 44768580 44802019       UBE2G2 HGNC:12483     -1
718                21 44768580 44802019       UBE2G2 HGNC:12483     -1
719                21 44768580 44802019       UBE2G2 HGNC:12483     -1
720                21 44768580 44802019       UBE2G2 HGNC:12483     -1
721                21 44768580 44802019       UBE2G2 HGNC:12483     -1
722                21 44768580 44802019       UBE2G2 HGNC:12483     -1
723                21 44768580 44802019       UBE2G2 HGNC:12483     -1
724                21 44768580 44802019       UBE2G2 HGNC:12483     -1
725                21 44768580 44802019       UBE2G2 HGNC:12483     -1
726                21 44768580 44802019       UBE2G2 HGNC:12483     -1
727                21 44768580 44802019       UBE2G2 HGNC:12483     -1
728                21 44768580 44802019       UBE2G2 HGNC:12483     -1
729                21 44768580 44802019       UBE2G2 HGNC:12483     -1
730                21 44768580 44802019       UBE2G2 HGNC:12483     -1
731                21 44768580 44802019       UBE2G2 HGNC:12483     -1
732                21 44768580 44802019       UBE2G2 HGNC:12483     -1
733                21 44768580 44802019       UBE2G2 HGNC:12483     -1
734                21 44557790 44558760    KRTAP10-3 HGNC:22968     -1
735                21 44600597 44602174    KRTAP10-7 HGNC:22970      1
736                21 42781074 42782229                             -1
737                21 42781074 42782229                             -1
738                21 41167801 41282518        BACE2   HGNC:934      1
739                21 41167801 41282518        BACE2   HGNC:934      1
740                21 41167801 41282518        BACE2   HGNC:934      1
741                21 41167801 41282518        BACE2   HGNC:934      1
742                21 41167801 41282518        BACE2   HGNC:934      1
743                21 41167801 41282518        BACE2   HGNC:934      1
744                21 41167801 41282518        BACE2   HGNC:934      1
745                21 41167801 41282518        BACE2   HGNC:934      1
746                21 41167801 41282518        BACE2   HGNC:934      1
747                21 41167801 41282518        BACE2   HGNC:934      1
748                21 41167801 41282518        BACE2   HGNC:934      1
749                21 41167801 41282518        BACE2   HGNC:934      1
750                21 41167801 41282518        BACE2   HGNC:934      1
751                21 41167801 41282518        BACE2   HGNC:934      1
752                21 41167801 41282518        BACE2   HGNC:934      1
753                21 41167801 41282518        BACE2   HGNC:934      1
754                21 41167801 41282518        BACE2   HGNC:934      1
755                21 41167801 41282518        BACE2   HGNC:934      1
756                21 41167801 41282518        BACE2   HGNC:934      1
757                21 41167801 41282518        BACE2   HGNC:934      1
758                21 41167801 41282518        BACE2   HGNC:934      1
759                21 41167801 41282518        BACE2   HGNC:934      1
760                21 41167801 41282518        BACE2   HGNC:934      1
761                21 41167801 41282518        BACE2   HGNC:934      1
762                21 41167801 41282518        BACE2   HGNC:934      1
763                21 41167801 41282518        BACE2   HGNC:934      1
764                21 41167801 41282518        BACE2   HGNC:934      1
765                21 41167801 41282518        BACE2   HGNC:934      1
766                21 41167801 41282518        BACE2   HGNC:934      1
767                21 41167801 41282518        BACE2   HGNC:934      1
768                21 41167801 41282518        BACE2   HGNC:934      1
769                21 41167801 41282518        BACE2   HGNC:934      1
770                21 41167801 41282518        BACE2   HGNC:934      1
771                21 41167801 41282518        BACE2   HGNC:934      1
772                21 41167801 41282518        BACE2   HGNC:934      1
773                21 41167801 41282518        BACE2   HGNC:934      1
774                21 41167801 41282518        BACE2   HGNC:934      1
775                21 41167801 41282518        BACE2   HGNC:934      1
776                21 41167801 41282518        BACE2   HGNC:934      1
777                21 41167801 41282518        BACE2   HGNC:934      1
778                21 41167801 41282518        BACE2   HGNC:934      1
779                21 41167801 41282518        BACE2   HGNC:934      1
780                21 41167801 41282518        BACE2   HGNC:934      1
781                21 41167801 41282518        BACE2   HGNC:934      1
782                21 41167801 41282518        BACE2   HGNC:934      1
783                21 41167801 41282518        BACE2   HGNC:934      1
784                21 41167801 41282518        BACE2   HGNC:934      1
785                21 41167801 41282518        BACE2   HGNC:934      1
786                21 41167801 41282518        BACE2   HGNC:934      1
787                21 41167801 41282518        BACE2   HGNC:934      1
788                21 41167801 41282518        BACE2   HGNC:934      1
789                21 41167801 41282518        BACE2   HGNC:934      1
790                21 41167801 41282518        BACE2   HGNC:934      1
791                21 41167801 41282518        BACE2   HGNC:934      1
792                21 41167801 41282518        BACE2   HGNC:934      1
793                21 41167801 41282518        BACE2   HGNC:934      1
794                21 41167801 41282518        BACE2   HGNC:934      1
795                21 41167801 41282518        BACE2   HGNC:934      1
796                21 41167801 41282518        BACE2   HGNC:934      1
797                21 41167801 41282518        BACE2   HGNC:934      1
798                21 41167801 41282518        BACE2   HGNC:934      1
799                21 41167801 41282518        BACE2   HGNC:934      1
800                21 41167801 41282518        BACE2   HGNC:934      1
801                21 41167801 41282518        BACE2   HGNC:934      1
802                21 41167801 41282518        BACE2   HGNC:934      1
803                21 41141493 41148133    LINC00323 HGNC:19720     -1
804                21 41141493 41148133    LINC00323 HGNC:19720     -1
805                21 41141493 41148133    LINC00323 HGNC:19720     -1
806                21 41141493 41148133    LINC00323 HGNC:19720     -1
807                21 41141493 41148133    LINC00323 HGNC:19720     -1
808                21 41141493 41148133    LINC00323 HGNC:19720     -1
809                21 41141493 41148133    LINC00323 HGNC:19720     -1
810                21 40863994 40864473       YRDCP3 HGNC:39921      1
811                21 13621577 13621683    RNU6-286P HGNC:47249      1
812                21  8250060  8250149                              1
813                21 44929653 44930112                             -1
814                21 41739369 41767106        RIPK4   HGNC:496     -1
815                21 41739369 41767106        RIPK4   HGNC:496     -1
816                21 41739369 41767106        RIPK4   HGNC:496     -1
817                21 41739369 41767106        RIPK4   HGNC:496     -1
818                21 41739369 41767106        RIPK4   HGNC:496     -1
819                21 41739369 41767106        RIPK4   HGNC:496     -1
820                21 41739369 41767106        RIPK4   HGNC:496     -1
821                21 41739369 41767106        RIPK4   HGNC:496     -1
822                21 41739369 41767106        RIPK4   HGNC:496     -1
823                21 41739369 41767106        RIPK4   HGNC:496     -1
824                21 41739369 41767106        RIPK4   HGNC:496     -1
825                21 41739369 41767106        RIPK4   HGNC:496     -1
826                21 41739369 41767106        RIPK4   HGNC:496     -1
827                21 41739369 41767106        RIPK4   HGNC:496     -1
828                21 41739369 41767106        RIPK4   HGNC:496     -1
829                21 41739369 41767106        RIPK4   HGNC:496     -1
830                21 41739369 41767106        RIPK4   HGNC:496     -1
831                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
832                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
833                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
834                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
835                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
836                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
837                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
838                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
839                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
840                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
841                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
842                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
843                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
844                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
845                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
846                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
847                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
848                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
849                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
850                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
851                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
852                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
853                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
854                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
855                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
856                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
857                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
858                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
859                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
860                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
861                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
862                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
863                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
864                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
865                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
866                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
867                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
868                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
869                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
870                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
871                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
872                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
873                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
874                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
875                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
876                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
877                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
878                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
879                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
880                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
881                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
882                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
883                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
884                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
885                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
886                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
887                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
888                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
889                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
890                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
891                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
892                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
893                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
894                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
895                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
896                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
897                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
898                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
899                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
900                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
901                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
902                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
903                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
904                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
905                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
906                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
907                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
908                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
909                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
910                21 41464551 41531116      TMPRSS2 HGNC:11876     -1
911                21 44805617 44818779        SUMO3 HGNC:11124     -1
912                21 44805617 44818779        SUMO3 HGNC:11124     -1
913                21 44805617 44818779        SUMO3 HGNC:11124     -1
914                21 44805617 44818779        SUMO3 HGNC:11124     -1
915                21 44805617 44818779        SUMO3 HGNC:11124     -1
916                21 44805617 44818779        SUMO3 HGNC:11124     -1
917                21 44805617 44818779        SUMO3 HGNC:11124     -1
918                21 44805617 44818779        SUMO3 HGNC:11124     -1
919                21 44805617 44818779        SUMO3 HGNC:11124     -1
920                21 44805617 44818779        SUMO3 HGNC:11124     -1
921                21 44805617 44818779        SUMO3 HGNC:11124     -1
922                21 44805617 44818779        SUMO3 HGNC:11124     -1
923                21 44805617 44818779        SUMO3 HGNC:11124     -1
924                21 44805617 44818779        SUMO3 HGNC:11124     -1
925                21 44805617 44818779        SUMO3 HGNC:11124     -1
926                21 44805617 44818779        SUMO3 HGNC:11124     -1
927                21 44805617 44818779        SUMO3 HGNC:11124     -1
928                21 44805617 44818779        SUMO3 HGNC:11124     -1
929                21 44805617 44818779        SUMO3 HGNC:11124     -1
930                21 44805617 44818779        SUMO3 HGNC:11124     -1
931                21 44805617 44818779        SUMO3 HGNC:11124     -1
932                21 44805617 44818779        SUMO3 HGNC:11124     -1
933                21 13724189 13724274    MIR8069-2 HGNC:50836      1
934                21 23079284 23079392      MIR6130 HGNC:50156      1
935                21  8205315  8205406    MIR6724-1 HGNC:50837      1
936                21 37045530 37045636    RNU6-696P HGNC:47659      1
937                21 15614283 15614389   RNU6-1326P HGNC:48289      1
938                21 44646414 44647650   KRTAP10-11 HGNC:20528      1
939                21 44686358 44686629                              1
940                21 40383083 40385358    DSCAM-AS1 HGNC:40197      1
941                21 40383083 40385358    DSCAM-AS1 HGNC:40197      1
942                21 40383083 40385358    DSCAM-AS1 HGNC:40197      1
943                21 40383083 40385358    DSCAM-AS1 HGNC:40197      1
944                21 40383083 40385358    DSCAM-AS1 HGNC:40197      1
945                21 40383083 40385358    DSCAM-AS1 HGNC:40197      1
946                21 40383083 40385358    DSCAM-AS1 HGNC:40197      1
947                21 40383083 40385358    DSCAM-AS1 HGNC:40197      1
948                21 40383083 40385358    DSCAM-AS1 HGNC:40197      1
949                21 40383083 40385358    DSCAM-AS1 HGNC:40197      1
950                21  8432530  8432621    MIR6724-4 HGNC:50830      1
951                21 25943044 25943145    RNU6-123P HGNC:47086     -1
952                21 42221173 42221286    RNA5SP492 HGNC:43392      1
953                21 19345148 19345312    RNU1-139P HGNC:48481      1
954                21  8208473  8208652    MIR3648-1 HGNC:38941      1
955                21  6228966  6267317                             -1
956                21  6228966  6267317                             -1
957                21  6228966  6267317                             -1
958                21  6228966  6267317                             -1
959                21  6228966  6267317                             -1
960                21  6228966  6267317                             -1
961                21  6228966  6267317                             -1
962                21  6228966  6267317                             -1
963                21  6228966  6267317                             -1
964                21  6228966  6267317                             -1
965                21  6228966  6267317                             -1
966                21  6228966  6267317                             -1
967                21  6228966  6267317                             -1
968                21  6228966  6267317                             -1
969                21  6228966  6267317                             -1
970                21  6228966  6267317                             -1
971                21  6228966  6267317                             -1
972                21  6228966  6267317                             -1
973                21  6228966  6267317                             -1
974                21  6228966  6267317                             -1
975                21  6228966  6267317                             -1
976                21  5707004  5709456                             -1
977                21  5707004  5709456                             -1
978                21 44133605 44145723     C21orf33  HGNC:1273      1
979                21 44133605 44145723     C21orf33  HGNC:1273      1
980                21 44133605 44145723     C21orf33  HGNC:1273      1
981                21 44133605 44145723     C21orf33  HGNC:1273      1
982                21 44133605 44145723     C21orf33  HGNC:1273      1
983                21 44133605 44145723     C21orf33  HGNC:1273      1
984                21 44133605 44145723     C21orf33  HGNC:1273      1
985                21 44133605 44145723     C21orf33  HGNC:1273      1
986                21 44133605 44145723     C21orf33  HGNC:1273      1
987                21 44133605 44145723     C21orf33  HGNC:1273      1
988                21 44133605 44145723     C21orf33  HGNC:1273      1
989                21 44133605 44145723     C21orf33  HGNC:1273      1
990                21 44133605 44145723     C21orf33  HGNC:1273      1
991                21 44133605 44145723     C21orf33  HGNC:1273      1
992                21 44133605 44145723     C21orf33  HGNC:1273      1
993                21 44133605 44145723     C21orf33  HGNC:1273      1
994                21 44133605 44145723     C21orf33  HGNC:1273      1
995                21 44133605 44145723     C21orf33  HGNC:1273      1
996                21 44133605 44145723     C21orf33  HGNC:1273      1
997                21 44133605 44145723     C21orf33  HGNC:1273      1
998                21 44133605 44145723     C21orf33  HGNC:1273      1
999                21 44133605 44145723     C21orf33  HGNC:1273      1
1000               21 44133605 44145723     C21orf33  HGNC:1273      1
1001               21 44133605 44145723     C21orf33  HGNC:1273      1
1002               21 44133605 44145723     C21orf33  HGNC:1273      1
1003               21 44133605 44145723     C21orf33  HGNC:1273      1
1004               21 44133605 44145723     C21orf33  HGNC:1273      1
1005               21 44133605 44145723     C21orf33  HGNC:1273      1
1006               21 44133605 44145723     C21orf33  HGNC:1273      1
1007               21 44133605 44145723     C21orf33  HGNC:1273      1
1008               21 44133605 44145723     C21orf33  HGNC:1273      1
1009               21 44133605 44145723     C21orf33  HGNC:1273      1
1010               21 44133605 44145723     C21orf33  HGNC:1273      1
1011               21 44133605 44145723     C21orf33  HGNC:1273      1
1012               21 44133605 44145723     C21orf33  HGNC:1273      1
1013               21 44133605 44145723     C21orf33  HGNC:1273      1
1014               21 44133605 44145723     C21orf33  HGNC:1273      1
1015               21 44133605 44145723     C21orf33  HGNC:1273      1
1016               21 44133605 44145723     C21orf33  HGNC:1273      1
1017               21 44133605 44145723     C21orf33  HGNC:1273      1
1018               21 44133605 44145723     C21orf33  HGNC:1273      1
1019               21 44133605 44145723     C21orf33  HGNC:1273      1
1020               21 44133605 44145723     C21orf33  HGNC:1273      1
1021               21 44133605 44145723     C21orf33  HGNC:1273      1
1022               21 44133605 44145723     C21orf33  HGNC:1273      1
1023               21 44133605 44145723     C21orf33  HGNC:1273      1
1024               21 44133605 44145723     C21orf33  HGNC:1273      1
1025               21 44133605 44145723     C21orf33  HGNC:1273      1
1026               21 44133605 44145723     C21orf33  HGNC:1273      1
1027               21 44133605 44145723     C21orf33  HGNC:1273      1
1028               21 44133605 44145723     C21orf33  HGNC:1273      1
1029               21 44133605 44145723     C21orf33  HGNC:1273      1
1030               21 44133605 44145723     C21orf33  HGNC:1273      1
1031               21 44133605 44145723     C21orf33  HGNC:1273      1
1032               21 44133605 44145723     C21orf33  HGNC:1273      1
1033               21 44133605 44145723     C21orf33  HGNC:1273      1
1034               21 44133605 44145723     C21orf33  HGNC:1273      1
1035               21 44133605 44145723     C21orf33  HGNC:1273      1
1036               21 36069941 36073166         CBR1  HGNC:1548      1
1037               21 36069941 36073166         CBR1  HGNC:1548      1
1038               21 36069941 36073166         CBR1  HGNC:1548      1
1039               21 36069941 36073166         CBR1  HGNC:1548      1
1040               21 36069941 36073166         CBR1  HGNC:1548      1
1041               21 36069941 36073166         CBR1  HGNC:1548      1
1042               21 36069941 36073166         CBR1  HGNC:1548      1
1043               21 36069941 36073166         CBR1  HGNC:1548      1
1044               21 36069941 36073166         CBR1  HGNC:1548      1
1045               21 36069941 36073166         CBR1  HGNC:1548      1
1046               21 36069941 36073166         CBR1  HGNC:1548      1
1047               21 36069941 36073166         CBR1  HGNC:1548      1
1048               21 36069941 36073166         CBR1  HGNC:1548      1
1049               21 36069941 36073166         CBR1  HGNC:1548      1
1050               21 36388878 36389112     ATP5J2LP   HGNC:849     -1
1051               21 36156782 36294274       DOPEY2  HGNC:1291      1
1052               21 36156782 36294274       DOPEY2  HGNC:1291      1
1053               21 36156782 36294274       DOPEY2  HGNC:1291      1
1054               21 36156782 36294274       DOPEY2  HGNC:1291      1
1055               21 36156782 36294274       DOPEY2  HGNC:1291      1
1056               21 36156782 36294274       DOPEY2  HGNC:1291      1
1057               21 36156782 36294274       DOPEY2  HGNC:1291      1
1058               21 36156782 36294274       DOPEY2  HGNC:1291      1
1059               21 36156782 36294274       DOPEY2  HGNC:1291      1
1060               21 36156782 36294274       DOPEY2  HGNC:1291      1
1061               21 36156782 36294274       DOPEY2  HGNC:1291      1
1062               21 36156782 36294274       DOPEY2  HGNC:1291      1
1063               21 36156782 36294274       DOPEY2  HGNC:1291      1
1064               21 36156782 36294274       DOPEY2  HGNC:1291      1
1065               21 36156782 36294274       DOPEY2  HGNC:1291      1
1066               21 36156782 36294274       DOPEY2  HGNC:1291      1
1067               21 36156782 36294274       DOPEY2  HGNC:1291      1
1068               21 36156782 36294274       DOPEY2  HGNC:1291      1
1069               21 36156782 36294274       DOPEY2  HGNC:1291      1
1070               21 36156782 36294274       DOPEY2  HGNC:1291      1
1071               21 36156782 36294274       DOPEY2  HGNC:1291      1
1072               21 36156782 36294274       DOPEY2  HGNC:1291      1
1073               21 36156782 36294274       DOPEY2  HGNC:1291      1
1074               21 36156782 36294274       DOPEY2  HGNC:1291      1
1075               21 36156782 36294274       DOPEY2  HGNC:1291      1
1076               21 36156782 36294274       DOPEY2  HGNC:1291      1
1077               21 36156782 36294274       DOPEY2  HGNC:1291      1
1078               21 36156782 36294274       DOPEY2  HGNC:1291      1
1079               21 36156782 36294274       DOPEY2  HGNC:1291      1
1080               21 36156782 36294274       DOPEY2  HGNC:1291      1
1081               21 36156782 36294274       DOPEY2  HGNC:1291      1
1082               21 36156782 36294274       DOPEY2  HGNC:1291      1
1083               21 36156782 36294274       DOPEY2  HGNC:1291      1
1084               21 36156782 36294274       DOPEY2  HGNC:1291      1
1085               21 36156782 36294274       DOPEY2  HGNC:1291      1
1086               21 36156782 36294274       DOPEY2  HGNC:1291      1
1087               21 36156782 36294274       DOPEY2  HGNC:1291      1
1088               21 36156782 36294274       DOPEY2  HGNC:1291      1
1089               21 36156782 36294274       DOPEY2  HGNC:1291      1
1090               21 36156782 36294274       DOPEY2  HGNC:1291      1
1091               21 36156782 36294274       DOPEY2  HGNC:1291      1
1092               21 36156782 36294274       DOPEY2  HGNC:1291      1
1093               21 36156782 36294274       DOPEY2  HGNC:1291      1
1094               21 36156782 36294274       DOPEY2  HGNC:1291      1
1095               21 36156782 36294274       DOPEY2  HGNC:1291      1
1096               21 36156782 36294274       DOPEY2  HGNC:1291      1
1097               21 36156782 36294274       DOPEY2  HGNC:1291      1
1098               21 36156782 36294274       DOPEY2  HGNC:1291      1
1099               21 36156782 36294274       DOPEY2  HGNC:1291      1
1100               21 36156782 36294274       DOPEY2  HGNC:1291      1
1101               21 36156782 36294274       DOPEY2  HGNC:1291      1
1102               21 34669389 34718227        CLIC6  HGNC:2065      1
1103               21 34669389 34718227        CLIC6  HGNC:2065      1
1104               21 34669389 34718227        CLIC6  HGNC:2065      1
1105               21 34669389 34718227        CLIC6  HGNC:2065      1
1106               21 34669389 34718227        CLIC6  HGNC:2065      1
1107               21 34669389 34718227        CLIC6  HGNC:2065      1
1108               21 34669389 34718227        CLIC6  HGNC:2065      1
1109               21 34669389 34718227        CLIC6  HGNC:2065      1
1110               21 34669389 34718227        CLIC6  HGNC:2065      1
1111               21 34669389 34718227        CLIC6  HGNC:2065      1
1112               21 34669389 34718227        CLIC6  HGNC:2065      1
1113               21 34669389 34718227        CLIC6  HGNC:2065      1
1114               21 34669389 34718227        CLIC6  HGNC:2065      1
1115               21 14371115 14383484       HSPA13 HGNC:11375     -1
1116               21 14371115 14383484       HSPA13 HGNC:11375     -1
1117               21 14371115 14383484       HSPA13 HGNC:11375     -1
1118               21 14371115 14383484       HSPA13 HGNC:11375     -1
1119               21 14371115 14383484       HSPA13 HGNC:11375     -1
1120               21 14371115 14383484       HSPA13 HGNC:11375     -1
1121               21 14371115 14383484       HSPA13 HGNC:11375     -1
1122               21 14371115 14383484       HSPA13 HGNC:11375     -1
1123               21 16630827 16640683                              1
1124               21 16630827 16640683                              1
1125               21 16630827 16640683                              1
1126               21 16630827 16640683                              1
1127               21 16643529 16645065                              1
1128               21 16754519 16815688                             -1
1129               21 16754519 16815688                             -1
1130               21 16754519 16815688                             -1
1131               21 34364024 34371389        KCNE2  HGNC:6242      1
1132               21 34364024 34371389        KCNE2  HGNC:6242      1
1133               21 43865186 43986536       AGPAT3   HGNC:326      1
1134               21 43865186 43986536       AGPAT3   HGNC:326      1
1135               21 43865186 43986536       AGPAT3   HGNC:326      1
1136               21 43865186 43986536       AGPAT3   HGNC:326      1
1137               21 43865186 43986536       AGPAT3   HGNC:326      1
1138               21 43865186 43986536       AGPAT3   HGNC:326      1
1139               21 43865186 43986536       AGPAT3   HGNC:326      1
1140               21 43865186 43986536       AGPAT3   HGNC:326      1
1141               21 43865186 43986536       AGPAT3   HGNC:326      1
1142               21 43865186 43986536       AGPAT3   HGNC:326      1
1143               21 43865186 43986536       AGPAT3   HGNC:326      1
1144               21 43865186 43986536       AGPAT3   HGNC:326      1
1145               21 43865186 43986536       AGPAT3   HGNC:326      1
1146               21 43865186 43986536       AGPAT3   HGNC:326      1
1147               21 43865186 43986536       AGPAT3   HGNC:326      1
1148               21 43865186 43986536       AGPAT3   HGNC:326      1
1149               21 43865186 43986536       AGPAT3   HGNC:326      1
1150               21 43865186 43986536       AGPAT3   HGNC:326      1
1151               21 43865186 43986536       AGPAT3   HGNC:326      1
1152               21 43865186 43986536       AGPAT3   HGNC:326      1
1153               21 43865186 43986536       AGPAT3   HGNC:326      1
1154               21 43865186 43986536       AGPAT3   HGNC:326      1
1155               21 43865186 43986536       AGPAT3   HGNC:326      1
1156               21 43865186 43986536       AGPAT3   HGNC:326      1
1157               21 43865186 43986536       AGPAT3   HGNC:326      1
1158               21 43865186 43986536       AGPAT3   HGNC:326      1
1159               21 43865186 43986536       AGPAT3   HGNC:326      1
1160               21 43865186 43986536       AGPAT3   HGNC:326      1
1161               21 43865186 43986536       AGPAT3   HGNC:326      1
1162               21 43865186 43986536       AGPAT3   HGNC:326      1
1163               21 43865186 43986536       AGPAT3   HGNC:326      1
1164               21 43865186 43986536       AGPAT3   HGNC:326      1
1165               21 43865186 43986536       AGPAT3   HGNC:326      1
1166               21 43865186 43986536       AGPAT3   HGNC:326      1
1167               21 43865186 43986536       AGPAT3   HGNC:326      1
1168               21 43865186 43986536       AGPAT3   HGNC:326      1
1169               21 43865186 43986536       AGPAT3   HGNC:326      1
1170               21 43865186 43986536       AGPAT3   HGNC:326      1
1171               21 43865186 43986536       AGPAT3   HGNC:326      1
1172               21 43865186 43986536       AGPAT3   HGNC:326      1
1173               21 43865186 43986536       AGPAT3   HGNC:326      1
1174               21 43865186 43986536       AGPAT3   HGNC:326      1
1175               21 43865186 43986536       AGPAT3   HGNC:326      1
1176               21 43865186 43986536       AGPAT3   HGNC:326      1
1177               21 43865186 43986536       AGPAT3   HGNC:326      1
1178               21 43865186 43986536       AGPAT3   HGNC:326      1
1179               21 43865186 43986536       AGPAT3   HGNC:326      1
1180               21 43865186 43986536       AGPAT3   HGNC:326      1
1181               21 43865186 43986536       AGPAT3   HGNC:326      1
1182               21 43865186 43986536       AGPAT3   HGNC:326      1
1183               21 43865186 43986536       AGPAT3   HGNC:326      1
1184               21 43865186 43986536       AGPAT3   HGNC:326      1
1185               21 43865186 43986536       AGPAT3   HGNC:326      1
1186               21 43865186 43986536       AGPAT3   HGNC:326      1
1187               21 43865186 43986536       AGPAT3   HGNC:326      1
1188               21 43865186 43986536       AGPAT3   HGNC:326      1
1189               21 43865186 43986536       AGPAT3   HGNC:326      1
1190               21 43865186 43986536       AGPAT3   HGNC:326      1
1191               21 43865186 43986536       AGPAT3   HGNC:326      1
1192               21 43865186 43986536       AGPAT3   HGNC:326      1
1193               21 43865186 43986536       AGPAT3   HGNC:326      1
1194               21 43865186 43986536       AGPAT3   HGNC:326      1
1195               21 43865186 43986536       AGPAT3   HGNC:326      1
1196               21 43865186 43986536       AGPAT3   HGNC:326      1
1197               21 43865186 43986536       AGPAT3   HGNC:326      1
1198               21 43865186 43986536       AGPAT3   HGNC:326      1
1199               21 43865186 43986536       AGPAT3   HGNC:326      1
1200               21 43865186 43986536       AGPAT3   HGNC:326      1
1201               21 43865186 43986536       AGPAT3   HGNC:326      1
1202               21 43865186 43986536       AGPAT3   HGNC:326      1
1203               21 43865186 43986536       AGPAT3   HGNC:326      1
1204               21 43865186 43986536       AGPAT3   HGNC:326      1
1205               21 43865186 43986536       AGPAT3   HGNC:326      1
1206               21 43865186 43986536       AGPAT3   HGNC:326      1
1207               21 43865186 43986536       AGPAT3   HGNC:326      1
1208               21 43865186 43986536       AGPAT3   HGNC:326      1
1209               21 43865186 43986536       AGPAT3   HGNC:326      1
1210               21 43865186 43986536       AGPAT3   HGNC:326      1
1211               21 43865186 43986536       AGPAT3   HGNC:326      1
1212               21 43865186 43986536       AGPAT3   HGNC:326      1
1213               21 43865186 43986536       AGPAT3   HGNC:326      1
1214               21 43865186 43986536       AGPAT3   HGNC:326      1
1215               21 43865186 43986536       AGPAT3   HGNC:326      1
1216               21 43865186 43986536       AGPAT3   HGNC:326      1
1217               21 43865186 43986536       AGPAT3   HGNC:326      1
1218               21 43865186 43986536       AGPAT3   HGNC:326      1
1219               21 43865186 43986536       AGPAT3   HGNC:326      1
1220               21 43865186 43986536       AGPAT3   HGNC:326      1
1221               21 43865186 43986536       AGPAT3   HGNC:326      1
1222               21 43865186 43986536       AGPAT3   HGNC:326      1
1223               21 43865186 43986536       AGPAT3   HGNC:326      1
1224               21 43865186 43986536       AGPAT3   HGNC:326      1
1225               21 43865186 43986536       AGPAT3   HGNC:326      1
1226               21 43865186 43986536       AGPAT3   HGNC:326      1
1227               21 43865186 43986536       AGPAT3   HGNC:326      1
1228               21 43865186 43986536       AGPAT3   HGNC:326      1
1229               21 43865186 43986536       AGPAT3   HGNC:326      1
1230               21 43865186 43986536       AGPAT3   HGNC:326      1
1231               21 43865186 43986536       AGPAT3   HGNC:326      1
1232               21 43865186 43986536       AGPAT3   HGNC:326      1
1233               21 43865186 43986536       AGPAT3   HGNC:326      1
1234               21 43865186 43986536       AGPAT3   HGNC:326      1
1235               21 43865186 43986536       AGPAT3   HGNC:326      1
1236               21 43865186 43986536       AGPAT3   HGNC:326      1
1237               21 43865186 43986536       AGPAT3   HGNC:326      1
1238               21 43865186 43986536       AGPAT3   HGNC:326      1
1239               21 43865186 43986536       AGPAT3   HGNC:326      1
1240               21 43865186 43986536       AGPAT3   HGNC:326      1
1241               21 43865186 43986536       AGPAT3   HGNC:326      1
1242               21 43865186 43986536       AGPAT3   HGNC:326      1
1243               21 43865186 43986536       AGPAT3   HGNC:326      1
1244               21 43865186 43986536       AGPAT3   HGNC:326      1
1245               21 43865186 43986536       AGPAT3   HGNC:326      1
1246               21 34370802 34375348                             -1
1247               21 34370802 34375348                             -1
1248               21 45974489 45974953                              1
1249               21 34400317 34401072    C21orf140 HGNC:39602     -1
1250               21 34375480 34407866      SMIM11A  HGNC:1293      1
1251               21 34375480 34407866      SMIM11A  HGNC:1293      1
1252               21 34375480 34407866      SMIM11A  HGNC:1293      1
1253               21 34375480 34407866      SMIM11A  HGNC:1293      1
1254               21 34375480 34407866      SMIM11A  HGNC:1293      1
1255               21 34375480 34407866      SMIM11A  HGNC:1293      1
1256               21 34375480 34407866      SMIM11A  HGNC:1293      1
1257               21 34375480 34407866      SMIM11A  HGNC:1293      1
1258               21 34375480 34407866      SMIM11A  HGNC:1293      1
1259               21 34375480 34407866      SMIM11A  HGNC:1293      1
1260               21 34375480 34407866      SMIM11A  HGNC:1293      1
1261               21 34375480 34407866      SMIM11A  HGNC:1293      1
1262               21 34375480 34407866      SMIM11A  HGNC:1293      1
1263               21 34375480 34407866      SMIM11A  HGNC:1293      1
1264               21 34375480 34407866      SMIM11A  HGNC:1293      1
1265               21 34375480 34407866      SMIM11A  HGNC:1293      1
1266               21 34375480 34407866      SMIM11A  HGNC:1293      1
1267               21 34375480 34407866      SMIM11A  HGNC:1293      1
1268               21 34375480 34407866      SMIM11A  HGNC:1293      1
1269               21 34375480 34407866      SMIM11A  HGNC:1293      1
1270               21 34375480 34407866      SMIM11A  HGNC:1293      1
1271               21 34375480 34407866      SMIM11A  HGNC:1293      1
1272               21 34375480 34407866      SMIM11A  HGNC:1293      1
1273               21 34375480 34407866      SMIM11A  HGNC:1293      1
1274               21 34375480 34407866      SMIM11A  HGNC:1293      1
1275               21 34375480 34407866      SMIM11A  HGNC:1293      1
1276               21 34375480 34407866      SMIM11A  HGNC:1293      1
1277               21 34375480 34407866      SMIM11A  HGNC:1293      1
1278               21 34375480 34407866      SMIM11A  HGNC:1293      1
1279               21 34375480 34407866      SMIM11A  HGNC:1293      1
1280               21 42403447 42447681      UBASH3A HGNC:12462      1
1281               21 42403447 42447681      UBASH3A HGNC:12462      1
1282               21 42403447 42447681      UBASH3A HGNC:12462      1
1283               21 42403447 42447681      UBASH3A HGNC:12462      1
1284               21 42403447 42447681      UBASH3A HGNC:12462      1
1285               21 42403447 42447681      UBASH3A HGNC:12462      1
1286               21 42403447 42447681      UBASH3A HGNC:12462      1
1287               21 42403447 42447681      UBASH3A HGNC:12462      1
1288               21 42403447 42447681      UBASH3A HGNC:12462      1
1289               21 42403447 42447681      UBASH3A HGNC:12462      1
1290               21 42403447 42447681      UBASH3A HGNC:12462      1
1291               21 42403447 42447681      UBASH3A HGNC:12462      1
1292               21 42403447 42447681      UBASH3A HGNC:12462      1
1293               21 42403447 42447681      UBASH3A HGNC:12462      1
1294               21 42403447 42447681      UBASH3A HGNC:12462      1
1295               21 42403447 42447681      UBASH3A HGNC:12462      1
1296               21 42403447 42447681      UBASH3A HGNC:12462      1
1297               21 42403447 42447681      UBASH3A HGNC:12462      1
1298               21 42403447 42447681      UBASH3A HGNC:12462      1
1299               21 42403447 42447681      UBASH3A HGNC:12462      1
1300               21 42403447 42447681      UBASH3A HGNC:12462      1
1301               21 42403447 42447681      UBASH3A HGNC:12462      1
1302               21 42403447 42447681      UBASH3A HGNC:12462      1
1303               21 42403447 42447681      UBASH3A HGNC:12462      1
1304               21 42403447 42447681      UBASH3A HGNC:12462      1
1305               21 42403447 42447681      UBASH3A HGNC:12462      1
1306               21 42403447 42447681      UBASH3A HGNC:12462      1
1307               21 42403447 42447681      UBASH3A HGNC:12462      1
1308               21 42403447 42447681      UBASH3A HGNC:12462      1
1309               21 42403447 42447681      UBASH3A HGNC:12462      1
1310               21 42403447 42447681      UBASH3A HGNC:12462      1
1311               21 42403447 42447681      UBASH3A HGNC:12462      1
1312               21 42403447 42447681      UBASH3A HGNC:12462      1
1313               21 42403447 42447681      UBASH3A HGNC:12462      1
1314               21 42403447 42447681      UBASH3A HGNC:12462      1
1315               21 42403447 42447681      UBASH3A HGNC:12462      1
1316               21 42403447 42447681      UBASH3A HGNC:12462      1
1317               21 42403447 42447681      UBASH3A HGNC:12462      1
1318               21 42403447 42447681      UBASH3A HGNC:12462      1
1319               21 42403447 42447681      UBASH3A HGNC:12462      1
1320               21 42403447 42447681      UBASH3A HGNC:12462      1
1321               21 42403447 42447681      UBASH3A HGNC:12462      1
1322               21 42403447 42447681      UBASH3A HGNC:12462      1
1323               21 42403447 42447681      UBASH3A HGNC:12462      1
1324               21 42403447 42447681      UBASH3A HGNC:12462      1
1325               21 42403447 42447681      UBASH3A HGNC:12462      1
1326               21 42403447 42447681      UBASH3A HGNC:12462      1
1327               21 42403447 42447681      UBASH3A HGNC:12462      1
1328               21 42403447 42447681      UBASH3A HGNC:12462      1
1329               21 42403447 42447681      UBASH3A HGNC:12462      1
1330               21 42403447 42447681      UBASH3A HGNC:12462      1
1331               21 42403447 42447681      UBASH3A HGNC:12462      1
1332               21 42403447 42447681      UBASH3A HGNC:12462      1
1333               21 42403447 42447681      UBASH3A HGNC:12462      1
1334               21 42403447 42447681      UBASH3A HGNC:12462      1
1335               21 42403447 42447681      UBASH3A HGNC:12462      1
1336               21 42403447 42447681      UBASH3A HGNC:12462      1
1337               21 42403447 42447681      UBASH3A HGNC:12462      1
1338               21 42403447 42447681      UBASH3A HGNC:12462      1
1339               21 42403447 42447681      UBASH3A HGNC:12462      1
1340               21 42403447 42447681      UBASH3A HGNC:12462      1
1341               21 42403447 42447681      UBASH3A HGNC:12462      1
1342               21 42403447 42447681      UBASH3A HGNC:12462      1
1343               21 42403447 42447681      UBASH3A HGNC:12462      1
1344               21 42403447 42447681      UBASH3A HGNC:12462      1
1345               21 42403447 42447681      UBASH3A HGNC:12462      1
1346               21 42403447 42447681      UBASH3A HGNC:12462      1
1347               21 42403447 42447681      UBASH3A HGNC:12462      1
1348               21 42403447 42447681      UBASH3A HGNC:12462      1
1349               21 42403447 42447681      UBASH3A HGNC:12462      1
1350               21 42403447 42447681      UBASH3A HGNC:12462      1
1351               21 42403447 42447681      UBASH3A HGNC:12462      1
1352               21 42403447 42447681      UBASH3A HGNC:12462      1
1353               21 42403447 42447681      UBASH3A HGNC:12462      1
1354               21 42403447 42447681      UBASH3A HGNC:12462      1
1355               21 42403447 42447681      UBASH3A HGNC:12462      1
1356               21 42403447 42447681      UBASH3A HGNC:12462      1
1357               21 42403447 42447681      UBASH3A HGNC:12462      1
1358               21 42403447 42447681      UBASH3A HGNC:12462      1
1359               21 42403447 42447681      UBASH3A HGNC:12462      1
1360               21 42403447 42447681      UBASH3A HGNC:12462      1
1361               21 42403447 42447681      UBASH3A HGNC:12462      1
1362               21 42403447 42447681      UBASH3A HGNC:12462      1
1363               21 42403447 42447681      UBASH3A HGNC:12462      1
1364               21 42403447 42447681      UBASH3A HGNC:12462      1
1365               21 42403447 42447681      UBASH3A HGNC:12462      1
1366               21 34412200 34412587                              1
1367               21 34418715 34423966                             -1
1368               21 34418715 34423966                             -1
1369               21 34425508 34426017                              1
1370               21 14216130 14228372        RBM11  HGNC:9897      1
1371               21 14216130 14228372        RBM11  HGNC:9897      1
1372               21 14216130 14228372        RBM11  HGNC:9897      1
1373               21 14216130 14228372        RBM11  HGNC:9897      1
1374               21 14216130 14228372        RBM11  HGNC:9897      1
1375               21 14216130 14228372        RBM11  HGNC:9897      1
1376               21 14216130 14228372        RBM11  HGNC:9897      1
1377               21 14216130 14228372        RBM11  HGNC:9897      1
1378               21 14216130 14228372        RBM11  HGNC:9897      1
1379               21 14216130 14228372        RBM11  HGNC:9897      1
1380               21 14216130 14228372        RBM11  HGNC:9897      1
1381               21 14216130 14228372        RBM11  HGNC:9897      1
1382               21 14216130 14228372        RBM11  HGNC:9897      1
1383               21 14216130 14228372        RBM11  HGNC:9897      1
1384               21 14216130 14228372        RBM11  HGNC:9897      1
1385               21 14216130 14228372        RBM11  HGNC:9897      1
1386               21 14216130 14228372        RBM11  HGNC:9897      1
1387               21 14216130 14228372        RBM11  HGNC:9897      1
1388               21 14216130 14228372        RBM11  HGNC:9897      1
1389               21 14216130 14228372        RBM11  HGNC:9897      1
1390               21 14216130 14228372        RBM11  HGNC:9897      1
1391               21 14216130 14228372        RBM11  HGNC:9897      1
1392               21 14216130 14228372        RBM11  HGNC:9897      1
1393               21 14216130 14228372        RBM11  HGNC:9897      1
1394               21 16862875 16873691                             -1
1395               21 16862875 16873691                             -1
1396               21 16862875 16873691                             -1
1397               21 16862875 16873691                             -1
1398               21 45981737 46005050       COL6A1  HGNC:2211      1
1399               21 45981737 46005050       COL6A1  HGNC:2211      1
1400               21 45981737 46005050       COL6A1  HGNC:2211      1
1401               21 45981737 46005050       COL6A1  HGNC:2211      1
1402               21 45981737 46005050       COL6A1  HGNC:2211      1
1403               21 45981737 46005050       COL6A1  HGNC:2211      1
1404               21 45981737 46005050       COL6A1  HGNC:2211      1
1405               21 45981737 46005050       COL6A1  HGNC:2211      1
1406               21 45981737 46005050       COL6A1  HGNC:2211      1
1407               21 45981737 46005050       COL6A1  HGNC:2211      1
1408               21 45981737 46005050       COL6A1  HGNC:2211      1
1409               21 45981737 46005050       COL6A1  HGNC:2211      1
1410               21 45981737 46005050       COL6A1  HGNC:2211      1
1411               21 45981737 46005050       COL6A1  HGNC:2211      1
1412               21 45981737 46005050       COL6A1  HGNC:2211      1
1413               21 45981737 46005050       COL6A1  HGNC:2211      1
1414               21 45981737 46005050       COL6A1  HGNC:2211      1
1415               21 45981737 46005050       COL6A1  HGNC:2211      1
1416               21 45981737 46005050       COL6A1  HGNC:2211      1
1417               21 45981737 46005050       COL6A1  HGNC:2211      1
1418               21 45981737 46005050       COL6A1  HGNC:2211      1
1419               21 45981737 46005050       COL6A1  HGNC:2211      1
1420               21 45981737 46005050       COL6A1  HGNC:2211      1
1421               21 45981737 46005050       COL6A1  HGNC:2211      1
1422               21 45981737 46005050       COL6A1  HGNC:2211      1
1423               21 45981737 46005050       COL6A1  HGNC:2211      1
1424               21 45981737 46005050       COL6A1  HGNC:2211      1
1425               21 45981737 46005050       COL6A1  HGNC:2211      1
1426               21 45981737 46005050       COL6A1  HGNC:2211      1
1427               21 45981737 46005050       COL6A1  HGNC:2211      1
1428               21 45981737 46005050       COL6A1  HGNC:2211      1
1429               21 45981737 46005050       COL6A1  HGNC:2211      1
1430               21 45981737 46005050       COL6A1  HGNC:2211      1
1431               21 45981737 46005050       COL6A1  HGNC:2211      1
1432               21 45981737 46005050       COL6A1  HGNC:2211      1
1433               21 45981737 46005050       COL6A1  HGNC:2211      1
1434               21 45981737 46005050       COL6A1  HGNC:2211      1
1435               21 45981737 46005050       COL6A1  HGNC:2211      1
1436               21 45981737 46005050       COL6A1  HGNC:2211      1
1437               21 45981737 46005050       COL6A1  HGNC:2211      1
1438               21 45981737 46005050       COL6A1  HGNC:2211      1
1439               21 45981737 46005050       COL6A1  HGNC:2211      1
1440               21 45981737 46005050       COL6A1  HGNC:2211      1
1441               21 45981737 46005050       COL6A1  HGNC:2211      1
1442               21 45981737 46005050       COL6A1  HGNC:2211      1
1443               21 45981737 46005050       COL6A1  HGNC:2211      1
1444               21 45981737 46005050       COL6A1  HGNC:2211      1
1445               21 45981737 46005050       COL6A1  HGNC:2211      1
1446               21 45981737 46005050       COL6A1  HGNC:2211      1
1447               21 45981737 46005050       COL6A1  HGNC:2211      1
1448               21 45981737 46005050       COL6A1  HGNC:2211      1
1449               21 45981737 46005050       COL6A1  HGNC:2211      1
1450               21 45981737 46005050       COL6A1  HGNC:2211      1
1451               21 45981737 46005050       COL6A1  HGNC:2211      1
1452               21 45981737 46005050       COL6A1  HGNC:2211      1
1453               21 45981737 46005050       COL6A1  HGNC:2211      1
1454               21 45981737 46005050       COL6A1  HGNC:2211      1
1455               21 45981737 46005050       COL6A1  HGNC:2211      1
1456               21 45981737 46005050       COL6A1  HGNC:2211      1
1457               21 45981737 46005050       COL6A1  HGNC:2211      1
1458               21 45981737 46005050       COL6A1  HGNC:2211      1
1459               21 45981737 46005050       COL6A1  HGNC:2211      1
1460               21 45981737 46005050       COL6A1  HGNC:2211      1
1461               21 45981737 46005050       COL6A1  HGNC:2211      1
1462               21 45981737 46005050       COL6A1  HGNC:2211      1
1463               21 45981737 46005050       COL6A1  HGNC:2211      1
1464               21 45981737 46005050       COL6A1  HGNC:2211      1
1465               21 45981737 46005050       COL6A1  HGNC:2211      1
1466               21 45981737 46005050       COL6A1  HGNC:2211      1
1467               21 45981737 46005050       COL6A1  HGNC:2211      1
1468               21 45981737 46005050       COL6A1  HGNC:2211      1
1469               21 45981737 46005050       COL6A1  HGNC:2211      1
1470               21 45981737 46005050       COL6A1  HGNC:2211      1
1471               21 45981737 46005050       COL6A1  HGNC:2211      1
1472               21 45981737 46005050       COL6A1  HGNC:2211      1
1473               21 45981737 46005050       COL6A1  HGNC:2211      1
1474               21 45981737 46005050       COL6A1  HGNC:2211      1
1475               21 45981737 46005050       COL6A1  HGNC:2211      1
1476               21 45981737 46005050       COL6A1  HGNC:2211      1
1477               21 45981737 46005050       COL6A1  HGNC:2211      1
1478               21 45981737 46005050       COL6A1  HGNC:2211      1
1479               21 45981737 46005050       COL6A1  HGNC:2211      1
1480               21 45981737 46005050       COL6A1  HGNC:2211      1
1481               21 45981737 46005050       COL6A1  HGNC:2211      1
1482               21 45981737 46005050       COL6A1  HGNC:2211      1
1483               21 45981737 46005050       COL6A1  HGNC:2211      1
1484               21 45981737 46005050       COL6A1  HGNC:2211      1
1485               21 45981737 46005050       COL6A1  HGNC:2211      1
1486               21 45981737 46005050       COL6A1  HGNC:2211      1
1487               21 17210469 17211347       NEK4P1 HGNC:39649     -1
1488               21 17296219 17296596                              1
1489               21 17438890 17449185    LINC01549  HGNC:1277      1
1490               21 17438890 17449185    LINC01549  HGNC:1277      1
1491               21 17438890 17449185    LINC01549  HGNC:1277      1
1492               21 17438890 17449185    LINC01549  HGNC:1277      1
1493               21 17438890 17449185    LINC01549  HGNC:1277      1
1494               21 17438890 17449185    LINC01549  HGNC:1277      1
1495               21 17438890 17449185    LINC01549  HGNC:1277      1
1496               21 17500679 17500824     RPL39P40 HGNC:35823     -1
1497               21 34446688 34512275        KCNE1  HGNC:6240     -1
1498               21 34446688 34512275        KCNE1  HGNC:6240     -1
1499               21 34446688 34512275        KCNE1  HGNC:6240     -1
1500               21 34446688 34512275        KCNE1  HGNC:6240     -1
1501               21 34446688 34512275        KCNE1  HGNC:6240     -1
1502               21 34446688 34512275        KCNE1  HGNC:6240     -1
1503               21 34446688 34512275        KCNE1  HGNC:6240     -1
1504               21 34446688 34512275        KCNE1  HGNC:6240     -1
1505               21 34446688 34512275        KCNE1  HGNC:6240     -1
1506               21 34446688 34512275        KCNE1  HGNC:6240     -1
1507               21 34446688 34512275        KCNE1  HGNC:6240     -1
1508               21 34446688 34512275        KCNE1  HGNC:6240     -1
1509               21 34446688 34512275        KCNE1  HGNC:6240     -1
1510               21 34446688 34512275        KCNE1  HGNC:6240     -1
1511               21 34446688 34512275        KCNE1  HGNC:6240     -1
1512               21 34446688 34512275        KCNE1  HGNC:6240     -1
1513               21 34446688 34512275        KCNE1  HGNC:6240     -1
1514               21 34446688 34512275        KCNE1  HGNC:6240     -1
1515               21 34446688 34512275        KCNE1  HGNC:6240     -1
1516               21 34446688 34512275        KCNE1  HGNC:6240     -1
1517               21 34446688 34512275        KCNE1  HGNC:6240     -1
1518               21 34446688 34512275        KCNE1  HGNC:6240     -1
1519               21 34446688 34512275        KCNE1  HGNC:6240     -1
1520               21 34446688 34512275        KCNE1  HGNC:6240     -1
1521               21 34446688 34512275        KCNE1  HGNC:6240     -1
1522               21 17512382 17593579        CXADR  HGNC:2559      1
1523               21 17512382 17593579        CXADR  HGNC:2559      1
1524               21 17512382 17593579        CXADR  HGNC:2559      1
1525               21 17512382 17593579        CXADR  HGNC:2559      1
1526               21 17512382 17593579        CXADR  HGNC:2559      1
1527               21 17512382 17593579        CXADR  HGNC:2559      1
1528               21 17512382 17593579        CXADR  HGNC:2559      1
1529               21 17512382 17593579        CXADR  HGNC:2559      1
1530               21 17512382 17593579        CXADR  HGNC:2559      1
1531               21 17512382 17593579        CXADR  HGNC:2559      1
1532               21 17512382 17593579        CXADR  HGNC:2559      1
1533               21 17512382 17593579        CXADR  HGNC:2559      1
1534               21 17512382 17593579        CXADR  HGNC:2559      1
1535               21 17512382 17593579        CXADR  HGNC:2559      1
1536               21 17512382 17593579        CXADR  HGNC:2559      1
1537               21 17512382 17593579        CXADR  HGNC:2559      1
1538               21 17512382 17593579        CXADR  HGNC:2559      1
1539               21 17512382 17593579        CXADR  HGNC:2559      1
1540               21 17512382 17593579        CXADR  HGNC:2559      1
1541               21 17512382 17593579        CXADR  HGNC:2559      1
1542               21 17512382 17593579        CXADR  HGNC:2559      1
1543               21 17512382 17593579        CXADR  HGNC:2559      1
1544               21 17512382 17593579        CXADR  HGNC:2559      1
1545               21 17512382 17593579        CXADR  HGNC:2559      1
1546               21 17512382 17593579        CXADR  HGNC:2559      1
1547               21 17512382 17593579        CXADR  HGNC:2559      1
1548               21 17512382 17593579        CXADR  HGNC:2559      1
1549               21 17518526 17518993     BTF3L4P1 HGNC:39645     -1
1550               21 46037052 46039807                              1
1551               21 46037052 46039807                              1
1552               21 46052596 46053105                              1
1553               21 46052596 46053105                              1
1554               21 46056516 46057567                              1
1555               21 46056516 46057567                              1
1556               21 14236206 14362754       ABCC13 HGNC:16022      1
1557               21 14236206 14362754       ABCC13 HGNC:16022      1
1558               21 14236206 14362754       ABCC13 HGNC:16022      1
1559               21 14236206 14362754       ABCC13 HGNC:16022      1
1560               21 14236206 14362754       ABCC13 HGNC:16022      1
1561               21 14236206 14362754       ABCC13 HGNC:16022      1
1562               21 14236206 14362754       ABCC13 HGNC:16022      1
1563               21 14236206 14362754       ABCC13 HGNC:16022      1
1564               21 14236206 14362754       ABCC13 HGNC:16022      1
1565               21 14236206 14362754       ABCC13 HGNC:16022      1
1566               21 14236206 14362754       ABCC13 HGNC:16022      1
1567               21 14236206 14362754       ABCC13 HGNC:16022      1
1568               21 14236206 14362754       ABCC13 HGNC:16022      1
1569               21 14236206 14362754       ABCC13 HGNC:16022      1
1570               21 14236206 14362754       ABCC13 HGNC:16022      1
1571               21 14236206 14362754       ABCC13 HGNC:16022      1
1572               21 14236206 14362754       ABCC13 HGNC:16022      1
1573               21 14236206 14362754       ABCC13 HGNC:16022      1
1574               21 14236206 14362754       ABCC13 HGNC:16022      1
1575               21 14236206 14362754       ABCC13 HGNC:16022      1
1576               21 14236206 14362754       ABCC13 HGNC:16022      1
1577               21 14236206 14362754       ABCC13 HGNC:16022      1
1578               21 14236206 14362754       ABCC13 HGNC:16022      1
1579               21 14236206 14362754       ABCC13 HGNC:16022      1
1580               21 14236206 14362754       ABCC13 HGNC:16022      1
1581               21 14236206 14362754       ABCC13 HGNC:16022      1
1582               21 14236206 14362754       ABCC13 HGNC:16022      1
1583               21 14236206 14362754       ABCC13 HGNC:16022      1
1584               21 14236206 14362754       ABCC13 HGNC:16022      1
1585               21 14236206 14362754       ABCC13 HGNC:16022      1
1586               21 14236206 14362754       ABCC13 HGNC:16022      1
1587               21 14236206 14362754       ABCC13 HGNC:16022      1
1588               21 14236206 14362754       ABCC13 HGNC:16022      1
1589               21 14236206 14362754       ABCC13 HGNC:16022      1
1590               21 14236206 14362754       ABCC13 HGNC:16022      1
1591               21 14236206 14362754       ABCC13 HGNC:16022      1
1592               21 14236206 14362754       ABCC13 HGNC:16022      1
1593               21 14236206 14362754       ABCC13 HGNC:16022      1
1594               21 14236206 14362754       ABCC13 HGNC:16022      1
1595               21 14236206 14362754       ABCC13 HGNC:16022      1
1596               21 14236206 14362754       ABCC13 HGNC:16022      1
1597               21 14236206 14362754       ABCC13 HGNC:16022      1
1598               21 14236206 14362754       ABCC13 HGNC:16022      1
1599               21 14236206 14362754       ABCC13 HGNC:16022      1
1600               21 14236206 14362754       ABCC13 HGNC:16022      1
1601               21 14236206 14362754       ABCC13 HGNC:16022      1
1602               21 14236206 14362754       ABCC13 HGNC:16022      1
1603               21 14236206 14362754       ABCC13 HGNC:16022      1
1604               21 14236206 14362754       ABCC13 HGNC:16022      1
1605               21 14236206 14362754       ABCC13 HGNC:16022      1
1606               21 14236206 14362754       ABCC13 HGNC:16022      1
1607               21 14236206 14362754       ABCC13 HGNC:16022      1
1608               21 14236206 14362754       ABCC13 HGNC:16022      1
1609               21 14236206 14362754       ABCC13 HGNC:16022      1
1610               21 14236206 14362754       ABCC13 HGNC:16022      1
1611               21 14236206 14362754       ABCC13 HGNC:16022      1
1612               21 14236206 14362754       ABCC13 HGNC:16022      1
1613               21 14236206 14362754       ABCC13 HGNC:16022      1
1614               21 14236206 14362754       ABCC13 HGNC:16022      1
1615               21 14236206 14362754       ABCC13 HGNC:16022      1
1616               21 14236206 14362754       ABCC13 HGNC:16022      1
1617               21 14236206 14362754       ABCC13 HGNC:16022      1
1618               21 14236206 14362754       ABCC13 HGNC:16022      1
1619               21 34513142 34615142        RCAN1  HGNC:3040     -1
1620               21 34513142 34615142        RCAN1  HGNC:3040     -1
1621               21 34513142 34615142        RCAN1  HGNC:3040     -1
1622               21 34513142 34615142        RCAN1  HGNC:3040     -1
1623               21 34513142 34615142        RCAN1  HGNC:3040     -1
1624               21 34513142 34615142        RCAN1  HGNC:3040     -1
1625               21 34513142 34615142        RCAN1  HGNC:3040     -1
1626               21 34513142 34615142        RCAN1  HGNC:3040     -1
1627               21 34513142 34615142        RCAN1  HGNC:3040     -1
1628               21 34513142 34615142        RCAN1  HGNC:3040     -1
1629               21 34513142 34615142        RCAN1  HGNC:3040     -1
1630               21 34513142 34615142        RCAN1  HGNC:3040     -1
1631               21 34513142 34615142        RCAN1  HGNC:3040     -1
1632               21 34513142 34615142        RCAN1  HGNC:3040     -1
1633               21 34513142 34615142        RCAN1  HGNC:3040     -1
1634               21 34513142 34615142        RCAN1  HGNC:3040     -1
1635               21 34513142 34615142        RCAN1  HGNC:3040     -1
1636               21 34513142 34615142        RCAN1  HGNC:3040     -1
1637               21 34513142 34615142        RCAN1  HGNC:3040     -1
1638               21 34513142 34615142        RCAN1  HGNC:3040     -1
1639               21 34513142 34615142        RCAN1  HGNC:3040     -1
1640               21 34513142 34615142        RCAN1  HGNC:3040     -1
1641               21 34513142 34615142        RCAN1  HGNC:3040     -1
1642               21 34513142 34615142        RCAN1  HGNC:3040     -1
1643               21 34513142 34615142        RCAN1  HGNC:3040     -1
1644               21 34513142 34615142        RCAN1  HGNC:3040     -1
1645               21 34513142 34615142        RCAN1  HGNC:3040     -1
1646               21 34513142 34615142        RCAN1  HGNC:3040     -1
1647               21 34513142 34615142        RCAN1  HGNC:3040     -1
1648               21 34513142 34615142        RCAN1  HGNC:3040     -1
1649               21 34513142 34615142        RCAN1  HGNC:3040     -1
1650               21 34513142 34615142        RCAN1  HGNC:3040     -1
1651               21 34513142 34615142        RCAN1  HGNC:3040     -1
1652               21 34513142 34615142        RCAN1  HGNC:3040     -1
1653               21 34513142 34615142        RCAN1  HGNC:3040     -1
1654               21 34513142 34615142        RCAN1  HGNC:3040     -1
1655               21 34513142 34615142        RCAN1  HGNC:3040     -1
1656               21 34513142 34615142        RCAN1  HGNC:3040     -1
1657               21 34513142 34615142        RCAN1  HGNC:3040     -1
1658               21 34513142 34615142        RCAN1  HGNC:3040     -1
1659               21 34513142 34615142        RCAN1  HGNC:3040     -1
1660               21 34513142 34615142        RCAN1  HGNC:3040     -1
1661               21 34513142 34615142        RCAN1  HGNC:3040     -1
1662               21 34513142 34615142        RCAN1  HGNC:3040     -1
1663               21 34513142 34615142        RCAN1  HGNC:3040     -1
1664               21 34513142 34615142        RCAN1  HGNC:3040     -1
1665               21 34513142 34615142        RCAN1  HGNC:3040     -1
1666               21 34513142 34615142        RCAN1  HGNC:3040     -1
1667               21 34513142 34615142        RCAN1  HGNC:3040     -1
1668               21 46072085 46072248      PSMA6P3 HGNC:39608     -1
1669               21 17593653 17612947         BTG3  HGNC:1132     -1
1670               21 17593653 17612947         BTG3  HGNC:1132     -1
1671               21 17593653 17612947         BTG3  HGNC:1132     -1
1672               21 17593653 17612947         BTG3  HGNC:1132     -1
1673               21 17593653 17612947         BTG3  HGNC:1132     -1
1674               21 17593653 17612947         BTG3  HGNC:1132     -1
1675               21 17593653 17612947         BTG3  HGNC:1132     -1
1676               21 17593653 17612947         BTG3  HGNC:1132     -1
1677               21 17593653 17612947         BTG3  HGNC:1132     -1
1678               21 17593653 17612947         BTG3  HGNC:1132     -1
1679               21 17593653 17612947         BTG3  HGNC:1132     -1
1680               21 17593653 17612947         BTG3  HGNC:1132     -1
1681               21 17593653 17612947         BTG3  HGNC:1132     -1
1682               21 17593653 17612947         BTG3  HGNC:1132     -1
1683               21 17593653 17612947         BTG3  HGNC:1132     -1
1684               21 17593653 17612947         BTG3  HGNC:1132     -1
1685               21 17593653 17612947         BTG3  HGNC:1132     -1
1686               21 17593653 17612947         BTG3  HGNC:1132     -1
1687               21 17593653 17612947         BTG3  HGNC:1132     -1
1688               21 17593653 17612947         BTG3  HGNC:1132     -1
1689               21 17611744 17633199                              1
1690               21 17611744 17633199                              1
1691               21 17611744 17633199                              1
1692               21 17611744 17633199                              1
1693               21 32728115 32743122   PAXBP1-AS1 HGNC:39603      1
1694               21 32728115 32743122   PAXBP1-AS1 HGNC:39603      1
1695               21 32728115 32743122   PAXBP1-AS1 HGNC:39603      1
1696               21 32728115 32743122   PAXBP1-AS1 HGNC:39603      1
1697               21 32728115 32743122   PAXBP1-AS1 HGNC:39603      1
1698               21 32728115 32743122   PAXBP1-AS1 HGNC:39603      1
1699               21 32728115 32743122   PAXBP1-AS1 HGNC:39603      1
1700               21 32728115 32743122   PAXBP1-AS1 HGNC:39603      1
1701               21 32728115 32743122   PAXBP1-AS1 HGNC:39603      1
1702               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1703               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1704               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1705               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1706               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1707               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1708               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1709               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1710               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1711               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1712               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1713               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1714               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1715               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1716               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1717               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1718               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1719               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1720               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1721               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1722               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1723               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1724               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1725               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1726               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1727               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1728               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1729               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1730               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1731               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1732               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1733               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1734               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1735               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1736               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1737               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1738               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1739               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1740               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1741               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1742               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1743               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1744               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1745               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1746               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1747               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1748               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1749               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1750               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1751               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1752               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1753               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1754               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1755               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1756               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1757               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1758               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1759               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1760               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1761               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1762               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1763               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1764               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1765               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1766               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1767               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1768               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1769               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1770               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1771               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1772               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1773               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1774               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1775               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1776               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1777               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1778               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1779               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1780               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1781               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1782               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1783               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1784               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1785               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1786               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1787               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1788               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1789               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1790               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1791               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1792               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1793               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1794               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1795               21 32733899 32771858       PAXBP1 HGNC:13579     -1
1796               21 16718998 16719157     RNU1-98P HGNC:48440      1
1797               21  8987370  8987430    MIR3687-2 HGNC:50835      1
1798               21  7826098  7826225                             -1
1799               21 36851911 36852028    RNA5SP491 HGNC:43391      1
1800               21  8249505  8249596    MIR6724-2 HGNC:50832      1
1801               21 16035413 16035509    RNU6-426P HGNC:47389     -1
1802               21 41304212 41357431        FAM3B  HGNC:1253      1
1803               21 41304212 41357431        FAM3B  HGNC:1253      1
1804               21 41304212 41357431        FAM3B  HGNC:1253      1
1805               21 41304212 41357431        FAM3B  HGNC:1253      1
1806               21 41304212 41357431        FAM3B  HGNC:1253      1
1807               21 41304212 41357431        FAM3B  HGNC:1253      1
1808               21 41304212 41357431        FAM3B  HGNC:1253      1
1809               21 41304212 41357431        FAM3B  HGNC:1253      1
1810               21 41304212 41357431        FAM3B  HGNC:1253      1
1811               21 41304212 41357431        FAM3B  HGNC:1253      1
1812               21 41304212 41357431        FAM3B  HGNC:1253      1
1813               21 41304212 41357431        FAM3B  HGNC:1253      1
1814               21 41304212 41357431        FAM3B  HGNC:1253      1
1815               21 41304212 41357431        FAM3B  HGNC:1253      1
1816               21 41304212 41357431        FAM3B  HGNC:1253      1
1817               21 41304212 41357431        FAM3B  HGNC:1253      1
1818               21 41304212 41357431        FAM3B  HGNC:1253      1
1819               21 41304212 41357431        FAM3B  HGNC:1253      1
1820               21 41304212 41357431        FAM3B  HGNC:1253      1
1821               21 41304212 41357431        FAM3B  HGNC:1253      1
1822               21 41304212 41357431        FAM3B  HGNC:1253      1
1823               21 41304212 41357431        FAM3B  HGNC:1253      1
1824               21 41304212 41357431        FAM3B  HGNC:1253      1
1825               21 41304212 41357431        FAM3B  HGNC:1253      1
1826               21 41304212 41357431        FAM3B  HGNC:1253      1
1827               21 41304212 41357431        FAM3B  HGNC:1253      1
1828               21 41304212 41357431        FAM3B  HGNC:1253      1
1829               21 41304212 41357431        FAM3B  HGNC:1253      1
1830               21 41304212 41357431        FAM3B  HGNC:1253      1
1831               21 41304212 41357431        FAM3B  HGNC:1253      1
1832               21 41304212 41357431        FAM3B  HGNC:1253      1
1833               21 41304212 41357431        FAM3B  HGNC:1253      1
1834               21 41304212 41357431        FAM3B  HGNC:1253      1
1835               21 41304212 41357431        FAM3B  HGNC:1253      1
1836               21 41304212 41357431        FAM3B  HGNC:1253      1
1837               21 41304212 41357431        FAM3B  HGNC:1253      1
1838               21 41304212 41357431        FAM3B  HGNC:1253      1
1839               21 41304212 41357431        FAM3B  HGNC:1253      1
1840               21 41304212 41357431        FAM3B  HGNC:1253      1
1841               21 41304212 41357431        FAM3B  HGNC:1253      1
1842               21 41304212 41357431        FAM3B  HGNC:1253      1
1843               21 41304212 41357431        FAM3B  HGNC:1253      1
1844               21 41304212 41357431        FAM3B  HGNC:1253      1
1845               21 41304212 41357431        FAM3B  HGNC:1253      1
1846               21 41304212 41357431        FAM3B  HGNC:1253      1
1847               21 41304212 41357431        FAM3B  HGNC:1253      1
1848               21 42964639 42965363                             -1
1849               21 42964639 42965363                             -1
1850               21 42843094 42879568         WDR4 HGNC:12756     -1
1851               21 42843094 42879568         WDR4 HGNC:12756     -1
1852               21 42843094 42879568         WDR4 HGNC:12756     -1
1853               21 42843094 42879568         WDR4 HGNC:12756     -1
1854               21 42843094 42879568         WDR4 HGNC:12756     -1
1855               21 42843094 42879568         WDR4 HGNC:12756     -1
1856               21 42843094 42879568         WDR4 HGNC:12756     -1
1857               21 42843094 42879568         WDR4 HGNC:12756     -1
1858               21 42843094 42879568         WDR4 HGNC:12756     -1
1859               21 42843094 42879568         WDR4 HGNC:12756     -1
1860               21 42843094 42879568         WDR4 HGNC:12756     -1
1861               21 42843094 42879568         WDR4 HGNC:12756     -1
1862               21 42843094 42879568         WDR4 HGNC:12756     -1
1863               21 42843094 42879568         WDR4 HGNC:12756     -1
1864               21 42843094 42879568         WDR4 HGNC:12756     -1
1865               21 42843094 42879568         WDR4 HGNC:12756     -1
1866               21 42843094 42879568         WDR4 HGNC:12756     -1
1867               21 42843094 42879568         WDR4 HGNC:12756     -1
1868               21 42843094 42879568         WDR4 HGNC:12756     -1
1869               21 42843094 42879568         WDR4 HGNC:12756     -1
1870               21 42843094 42879568         WDR4 HGNC:12756     -1
1871               21 42843094 42879568         WDR4 HGNC:12756     -1
1872               21 42843094 42879568         WDR4 HGNC:12756     -1
1873               21 42843094 42879568         WDR4 HGNC:12756     -1
1874               21 42843094 42879568         WDR4 HGNC:12756     -1
1875               21 42843094 42879568         WDR4 HGNC:12756     -1
1876               21 42843094 42879568         WDR4 HGNC:12756     -1
1877               21 42843094 42879568         WDR4 HGNC:12756     -1
1878               21 42843094 42879568         WDR4 HGNC:12756     -1
1879               21 42843094 42879568         WDR4 HGNC:12756     -1
1880               21 42843094 42879568         WDR4 HGNC:12756     -1
1881               21 42843094 42879568         WDR4 HGNC:12756     -1
1882               21 42843094 42879568         WDR4 HGNC:12756     -1
1883               21 42843094 42879568         WDR4 HGNC:12756     -1
1884               21 42843094 42879568         WDR4 HGNC:12756     -1
1885               21 42843094 42879568         WDR4 HGNC:12756     -1
1886               21 42843094 42879568         WDR4 HGNC:12756     -1
1887               21 42843094 42879568         WDR4 HGNC:12756     -1
1888               21 42843094 42879568         WDR4 HGNC:12756     -1
1889               21 42843094 42879568         WDR4 HGNC:12756     -1
1890               21 42843094 42879568         WDR4 HGNC:12756     -1
1891               21 42843094 42879568         WDR4 HGNC:12756     -1
1892               21 42843094 42879568         WDR4 HGNC:12756     -1
1893               21 42843094 42879568         WDR4 HGNC:12756     -1
1894               21 42843094 42879568         WDR4 HGNC:12756     -1
1895               21 42843094 42879568         WDR4 HGNC:12756     -1
1896               21 42843094 42879568         WDR4 HGNC:12756     -1
1897               21 42843094 42879568         WDR4 HGNC:12756     -1
1898               21 42843094 42879568         WDR4 HGNC:12756     -1
1899               21 42843094 42879568         WDR4 HGNC:12756     -1
1900               21 42843094 42879568         WDR4 HGNC:12756     -1
1901               21 42843094 42879568         WDR4 HGNC:12756     -1
1902               21 42843094 42879568         WDR4 HGNC:12756     -1
1903               21 42843094 42879568         WDR4 HGNC:12756     -1
1904               21 42843094 42879568         WDR4 HGNC:12756     -1
1905               21 42843094 42879568         WDR4 HGNC:12756     -1
1906               21 42843094 42879568         WDR4 HGNC:12756     -1
1907               21 42843094 42879568         WDR4 HGNC:12756     -1
1908               21 42843094 42879568         WDR4 HGNC:12756     -1
1909               21 42843094 42879568         WDR4 HGNC:12756     -1
1910               21 42843094 42879568         WDR4 HGNC:12756     -1
1911               21 42843094 42879568         WDR4 HGNC:12756     -1
1912               21 42843094 42879568         WDR4 HGNC:12756     -1
1913               21 42843094 42879568         WDR4 HGNC:12756     -1
1914               21 42843094 42879568         WDR4 HGNC:12756     -1
1915               21 37187666 37193926     TTC3-AS1 HGNC:40595     -1
1916               21 37187666 37193926     TTC3-AS1 HGNC:40595     -1
1917               21 44250813 44251520                              1
1918               21 44250813 44251520                              1
1919               21  7626344  7627528                             -1
1920               21 44241847 44242081                              1
1921               21  6560714  6564489                              1
1922               21  6560714  6564489                              1
1923               21  6560714  6564489                              1
1924               21  6560714  6564489                              1
1925               21  6560714  6564489                              1
1926               21  6560714  6564489                              1
1927               21  6560714  6564489                              1
1928               21  6560714  6564489                              1
1929               21  6560714  6564489                              1
1930               21  6560714  6564489                              1
1931               21  6560714  6564489                              1
1932               21  6520344  6520670                             -1
1933               21 29024255 29024890                             -1
1934               21 41441056 41445708                             -1
1935               21 41441056 41445708                             -1
1936               21 41441056 41445708                             -1
1937               21 41420304 41459214          MX1  HGNC:7532      1
1938               21 41420304 41459214          MX1  HGNC:7532      1
1939               21 41420304 41459214          MX1  HGNC:7532      1
1940               21 41420304 41459214          MX1  HGNC:7532      1
1941               21 41420304 41459214          MX1  HGNC:7532      1
1942               21 41420304 41459214          MX1  HGNC:7532      1
1943               21 41420304 41459214          MX1  HGNC:7532      1
1944               21 41420304 41459214          MX1  HGNC:7532      1
1945               21 41420304 41459214          MX1  HGNC:7532      1
1946               21 41420304 41459214          MX1  HGNC:7532      1
1947               21 41420304 41459214          MX1  HGNC:7532      1
1948               21 41420304 41459214          MX1  HGNC:7532      1
1949               21 41420304 41459214          MX1  HGNC:7532      1
1950               21 41420304 41459214          MX1  HGNC:7532      1
1951               21 41420304 41459214          MX1  HGNC:7532      1
1952               21 41420304 41459214          MX1  HGNC:7532      1
1953               21 41420304 41459214          MX1  HGNC:7532      1
1954               21 41420304 41459214          MX1  HGNC:7532      1
1955               21 41420304 41459214          MX1  HGNC:7532      1
1956               21 41420304 41459214          MX1  HGNC:7532      1
1957               21 41420304 41459214          MX1  HGNC:7532      1
1958               21 41420304 41459214          MX1  HGNC:7532      1
1959               21 41420304 41459214          MX1  HGNC:7532      1
1960               21 41420304 41459214          MX1  HGNC:7532      1
1961               21 41420304 41459214          MX1  HGNC:7532      1
1962               21 41420304 41459214          MX1  HGNC:7532      1
1963               21 41420304 41459214          MX1  HGNC:7532      1
1964               21 41420304 41459214          MX1  HGNC:7532      1
1965               21 41420304 41459214          MX1  HGNC:7532      1
1966               21 41420304 41459214          MX1  HGNC:7532      1
1967               21 41420304 41459214          MX1  HGNC:7532      1
1968               21 41420304 41459214          MX1  HGNC:7532      1
1969               21 41420304 41459214          MX1  HGNC:7532      1
1970               21 41420304 41459214          MX1  HGNC:7532      1
1971               21 41420304 41459214          MX1  HGNC:7532      1
1972               21 41420304 41459214          MX1  HGNC:7532      1
1973               21 41420304 41459214          MX1  HGNC:7532      1
1974               21 41420304 41459214          MX1  HGNC:7532      1
1975               21 41420304 41459214          MX1  HGNC:7532      1
1976               21 41420304 41459214          MX1  HGNC:7532      1
1977               21 41420304 41459214          MX1  HGNC:7532      1
1978               21 41420304 41459214          MX1  HGNC:7532      1
1979               21 41420304 41459214          MX1  HGNC:7532      1
1980               21 41420304 41459214          MX1  HGNC:7532      1
1981               21 41420304 41459214          MX1  HGNC:7532      1
1982               21 41420304 41459214          MX1  HGNC:7532      1
1983               21 41420304 41459214          MX1  HGNC:7532      1
1984               21 41420304 41459214          MX1  HGNC:7532      1
1985               21 41420304 41459214          MX1  HGNC:7532      1
1986               21 41420304 41459214          MX1  HGNC:7532      1
1987               21 41420304 41459214          MX1  HGNC:7532      1
1988               21 41420304 41459214          MX1  HGNC:7532      1
1989               21 41420304 41459214          MX1  HGNC:7532      1
1990               21 41420304 41459214          MX1  HGNC:7532      1
1991               21 41420304 41459214          MX1  HGNC:7532      1
1992               21 41420304 41459214          MX1  HGNC:7532      1
1993               21 41420304 41459214          MX1  HGNC:7532      1
1994               21 41420304 41459214          MX1  HGNC:7532      1
1995               21 41420304 41459214          MX1  HGNC:7532      1
1996               21 41420304 41459214          MX1  HGNC:7532      1
1997               21 41420304 41459214          MX1  HGNC:7532      1
1998               21 41420304 41459214          MX1  HGNC:7532      1
1999               21 41420304 41459214          MX1  HGNC:7532      1
2000               21 41420304 41459214          MX1  HGNC:7532      1
2001               21 41420304 41459214          MX1  HGNC:7532      1
2002               21 41420304 41459214          MX1  HGNC:7532      1
2003               21 41420304 41459214          MX1  HGNC:7532      1
2004               21 41420304 41459214          MX1  HGNC:7532      1
2005               21 41420304 41459214          MX1  HGNC:7532      1
2006               21 41420304 41459214          MX1  HGNC:7532      1
2007               21 41420304 41459214          MX1  HGNC:7532      1
2008               21 41420304 41459214          MX1  HGNC:7532      1
2009               21 41420304 41459214          MX1  HGNC:7532      1
2010               21 41420304 41459214          MX1  HGNC:7532      1
2011               21 41420304 41459214          MX1  HGNC:7532      1
2012               21 41420304 41459214          MX1  HGNC:7532      1
2013               21 41420304 41459214          MX1  HGNC:7532      1
2014               21 41420304 41459214          MX1  HGNC:7532      1
2015               21 41420304 41459214          MX1  HGNC:7532      1
2016               21 41420304 41459214          MX1  HGNC:7532      1
2017               21 41420304 41459214          MX1  HGNC:7532      1
2018               21 41420304 41459214          MX1  HGNC:7532      1
2019               21 41420304 41459214          MX1  HGNC:7532      1
2020               21 41420304 41459214          MX1  HGNC:7532      1
2021               21 41420304 41459214          MX1  HGNC:7532      1
2022               21 41420304 41459214          MX1  HGNC:7532      1
2023               21 41420304 41459214          MX1  HGNC:7532      1
2024               21 41420304 41459214          MX1  HGNC:7532      1
2025               21 41420304 41459214          MX1  HGNC:7532      1
2026               21 41420304 41459214          MX1  HGNC:7532      1
2027               21 41420304 41459214          MX1  HGNC:7532      1
2028               21 41420304 41459214          MX1  HGNC:7532      1
2029               21 41420304 41459214          MX1  HGNC:7532      1
2030               21 41420304 41459214          MX1  HGNC:7532      1
2031               21 41420304 41459214          MX1  HGNC:7532      1
2032               21 41420304 41459214          MX1  HGNC:7532      1
2033               21 41420304 41459214          MX1  HGNC:7532      1
2034               21 41420304 41459214          MX1  HGNC:7532      1
2035               21 41420304 41459214          MX1  HGNC:7532      1
2036               21 41420304 41459214          MX1  HGNC:7532      1
2037               21 41420304 41459214          MX1  HGNC:7532      1
2038               21 41420304 41459214          MX1  HGNC:7532      1
2039               21 41420304 41459214          MX1  HGNC:7532      1
2040               21 41420304 41459214          MX1  HGNC:7532      1
2041               21 41420304 41459214          MX1  HGNC:7532      1
2042               21 41420304 41459214          MX1  HGNC:7532      1
2043               21 41420304 41459214          MX1  HGNC:7532      1
2044               21 41420304 41459214          MX1  HGNC:7532      1
2045               21 41420304 41459214          MX1  HGNC:7532      1
2046               21 41420304 41459214          MX1  HGNC:7532      1
2047               21 41420304 41459214          MX1  HGNC:7532      1
2048               21 41420304 41459214          MX1  HGNC:7532      1
2049               21 41420304 41459214          MX1  HGNC:7532      1
2050               21 41420304 41459214          MX1  HGNC:7532      1
2051               21 41420304 41459214          MX1  HGNC:7532      1
2052               21 41420304 41459214          MX1  HGNC:7532      1
2053               21 41420304 41459214          MX1  HGNC:7532      1
2054               21 41420304 41459214          MX1  HGNC:7532      1
2055               21 41420304 41459214          MX1  HGNC:7532      1
2056               21 41420304 41459214          MX1  HGNC:7532      1
2057               21 41420304 41459214          MX1  HGNC:7532      1
2058               21 41420304 41459214          MX1  HGNC:7532      1
2059               21 41420304 41459214          MX1  HGNC:7532      1
2060               21 41420304 41459214          MX1  HGNC:7532      1
2061               21 41420304 41459214          MX1  HGNC:7532      1
2062               21 41420304 41459214          MX1  HGNC:7532      1
2063               21 41420304 41459214          MX1  HGNC:7532      1
2064               21 41420304 41459214          MX1  HGNC:7532      1
2065               21 41420304 41459214          MX1  HGNC:7532      1
2066               21 41420304 41459214          MX1  HGNC:7532      1
2067               21 41420304 41459214          MX1  HGNC:7532      1
2068               21 41420304 41459214          MX1  HGNC:7532      1
2069               21 44477850 44478493                              1
2070               21 44485577 44490288                              1
2071               21 44485577 44490288                              1
2072               21 44494874 44495519                              1
2073               21 17506453 17506728    RN7SL163P HGNC:46179      1
2074               21  6365955  6366055                              1
2075               21 46220269 46225364                              1
2076               21 46220269 46225364                              1
2077               21 46220269 46225364                              1
2078               21 46220269 46225364                              1
2079               21 46220269 46225364                              1
2080               21 46220269 46225364                              1
2081               21  7788703  7793954                             -1
2082               21  7788703  7793954                             -1
2083               21  7048891  7087229                              1
2084               21  7048891  7087229                              1
2085               21  7048891  7087229                              1
2086               21  7048891  7087229                              1
2087               21  7048891  7087229                              1
2088               21  7048891  7087229                              1
2089               21  7048891  7087229                              1
2090               21  7048891  7087229                              1
2091               21  7048891  7087229                              1
2092               21  7048891  7087229                              1
2093               21  7048891  7087229                              1
2094               21  7048891  7087229                              1
2095               21  7048891  7087229                              1
2096               21  7048891  7087229                              1
2097               21  7048891  7087229                              1
2098               21  7048891  7087229                              1
2099               21  7048891  7087229                              1
2100               21  7048891  7087229                              1
2101               21  7048891  7087229                              1
2102               21 39373763 39377066       RNF6P1 HGNC:39922     -1
2103               21 39373763 39377066       RNF6P1 HGNC:39922     -1
2104               21 39373763 39377066       RNF6P1 HGNC:39922     -1
2105               21 39373763 39377066       RNF6P1 HGNC:39922     -1
2106               21 39373763 39377066       RNF6P1 HGNC:39922     -1
2107               21 46286337 46297751         YBEY  HGNC:1299      1
2108               21 46286337 46297751         YBEY  HGNC:1299      1
2109               21 46286337 46297751         YBEY  HGNC:1299      1
2110               21 46286337 46297751         YBEY  HGNC:1299      1
2111               21 46286337 46297751         YBEY  HGNC:1299      1
2112               21 46286337 46297751         YBEY  HGNC:1299      1
2113               21 46286337 46297751         YBEY  HGNC:1299      1
2114               21 46286337 46297751         YBEY  HGNC:1299      1
2115               21 46286337 46297751         YBEY  HGNC:1299      1
2116               21 46286337 46297751         YBEY  HGNC:1299      1
2117               21 46286337 46297751         YBEY  HGNC:1299      1
2118               21 46286337 46297751         YBEY  HGNC:1299      1
2119               21 46286337 46297751         YBEY  HGNC:1299      1
2120               21 46286337 46297751         YBEY  HGNC:1299      1
2121               21 46286337 46297751         YBEY  HGNC:1299      1
2122               21 46286337 46297751         YBEY  HGNC:1299      1
2123               21 46286337 46297751         YBEY  HGNC:1299      1
2124               21 46286337 46297751         YBEY  HGNC:1299      1
2125               21 46286337 46297751         YBEY  HGNC:1299      1
2126               21 46286337 46297751         YBEY  HGNC:1299      1
2127               21 46286337 46297751         YBEY  HGNC:1299      1
2128               21 46286337 46297751         YBEY  HGNC:1299      1
2129               21 46286337 46297751         YBEY  HGNC:1299      1
2130               21 46286337 46297751         YBEY  HGNC:1299      1
2131               21 46286337 46297751         YBEY  HGNC:1299      1
2132               21 46286337 46297751         YBEY  HGNC:1299      1
2133               21 46286337 46297751         YBEY  HGNC:1299      1
2134               21 46286337 46297751         YBEY  HGNC:1299      1
2135               21 46286337 46297751         YBEY  HGNC:1299      1
2136               21 46286337 46297751         YBEY  HGNC:1299      1
2137               21 46286337 46297751         YBEY  HGNC:1299      1
2138               21 46286337 46297751         YBEY  HGNC:1299      1
2139               21 46286337 46297751         YBEY  HGNC:1299      1
2140               21 46286337 46297751         YBEY  HGNC:1299      1
2141               21 42879644 42913304       NDUFV3  HGNC:7719      1
2142               21 42879644 42913304       NDUFV3  HGNC:7719      1
2143               21 42879644 42913304       NDUFV3  HGNC:7719      1
2144               21 42879644 42913304       NDUFV3  HGNC:7719      1
2145               21 42879644 42913304       NDUFV3  HGNC:7719      1
2146               21 42879644 42913304       NDUFV3  HGNC:7719      1
2147               21 42879644 42913304       NDUFV3  HGNC:7719      1
2148               21 42879644 42913304       NDUFV3  HGNC:7719      1
2149               21 42879644 42913304       NDUFV3  HGNC:7719      1
2150               21 42879644 42913304       NDUFV3  HGNC:7719      1
2151               21 42879644 42913304       NDUFV3  HGNC:7719      1
2152               21 42879644 42913304       NDUFV3  HGNC:7719      1
2153               21 42879644 42913304       NDUFV3  HGNC:7719      1
2154               21 42879644 42913304       NDUFV3  HGNC:7719      1
2155               21 42879644 42913304       NDUFV3  HGNC:7719      1
2156               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2157               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2158               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2159               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2160               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2161               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2162               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2163               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2164               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2165               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2166               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2167               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2168               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2169               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2170               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2171               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2172               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2173               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2174               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2175               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2176               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2177               21 44921051 44929678    ITGB2-AS1 HGNC:44304      1
2178               21 41739373 41741308                              1
2179               21 41739373 41741308                              1
2180               21 26917912 26966513      ADAMTS5   HGNC:221     -1
2181               21 26917912 26966513      ADAMTS5   HGNC:221     -1
2182               21 26917912 26966513      ADAMTS5   HGNC:221     -1
2183               21 26917912 26966513      ADAMTS5   HGNC:221     -1
2184               21 26917912 26966513      ADAMTS5   HGNC:221     -1
2185               21 26917912 26966513      ADAMTS5   HGNC:221     -1
2186               21 26917912 26966513      ADAMTS5   HGNC:221     -1
2187               21 26917912 26966513      ADAMTS5   HGNC:221     -1
2188               21 43115334 43115709     MRPL51P2 HGNC:29724     -1
2189               21 43140523 43141092        FRGCA HGNC:51844     -1
2190               21 43140523 43141092        FRGCA HGNC:51844     -1
2191               21 43159066 43162277                             -1
2192               21 43159066 43162277                             -1
2193               21 43159066 43162277                             -1
2194               21 43169008 43172805        CRYAA  HGNC:2388      1
2195               21 43169008 43172805        CRYAA  HGNC:2388      1
2196               21 43169008 43172805        CRYAA  HGNC:2388      1
2197               21 43169008 43172805        CRYAA  HGNC:2388      1
2198               21 43169008 43172805        CRYAA  HGNC:2388      1
2199               21 43169008 43172805        CRYAA  HGNC:2388      1
2200               21 43169008 43172805        CRYAA  HGNC:2388      1
2201               21 43169008 43172805        CRYAA  HGNC:2388      1
2202               21 43169008 43172805        CRYAA  HGNC:2388      1
2203               21 43169008 43172805        CRYAA  HGNC:2388      1
2204               21 43169008 43172805        CRYAA  HGNC:2388      1
2205               21 43169008 43172805        CRYAA  HGNC:2388      1
2206               21 43169008 43172805        CRYAA  HGNC:2388      1
2207               21 43169008 43172805        CRYAA  HGNC:2388      1
2208               21 43169008 43172805        CRYAA  HGNC:2388      1
2209               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2210               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2211               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2212               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2213               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2214               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2215               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2216               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2217               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2218               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2219               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2220               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2221               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2222               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2223               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2224               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2225               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2226               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2227               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2228               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2229               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2230               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2231               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2232               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2233               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2234               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2235               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2236               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2237               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2238               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2239               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2240               21 44849585 44873903      PTTG1IP HGNC:13524     -1
2241               21 41679181 41697336    LINC00111  HGNC:1262      1
2242               21 41679181 41697336    LINC00111  HGNC:1262      1
2243               21 41679181 41697336    LINC00111  HGNC:1262      1
2244               21 44506807 44516575   TSPEAR-AS1  HGNC:1271      1
2245               21 44506807 44516575   TSPEAR-AS1  HGNC:1271      1
2246               21 44506807 44516575   TSPEAR-AS1  HGNC:1271      1
2247               21 44506807 44516575   TSPEAR-AS1  HGNC:1271      1
2248               21 44506807 44516575   TSPEAR-AS1  HGNC:1271      1
2249               21 44506807 44516575   TSPEAR-AS1  HGNC:1271      1
2250               21 44506807 44516575   TSPEAR-AS1  HGNC:1271      1
2251               21 44506807 44516575   TSPEAR-AS1  HGNC:1271      1
2252               21 44506807 44516575   TSPEAR-AS1  HGNC:1271      1
2253               21 44637356 44638455   KRTAP10-10 HGNC:22972      1
2254               21 46251549 46254133                             -1
2255               21 46251549 46254133                             -1
2256               21 46251549 46254133                             -1
2257               21 46251549 46254133                             -1
2258               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2259               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2260               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2261               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2262               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2263               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2264               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2265               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2266               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2267               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2268               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2269               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2270               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2271               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2272               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2273               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2274               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2275               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2276               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2277               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2278               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2279               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2280               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2281               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2282               21 46229217 46259390   MCM3AP-AS1 HGNC:16417      1
2283               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2284               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2285               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2286               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2287               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2288               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2289               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2290               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2291               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2292               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2293               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2294               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2295               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2296               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2297               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2298               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2299               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2300               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2301               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2302               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2303               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2304               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2305               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2306               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2307               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2308               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2309               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2310               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2311               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2312               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2313               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2314               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2315               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2316               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2317               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2318               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2319               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2320               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2321               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2322               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2323               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2324               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2325               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2326               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2327               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2328               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2329               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2330               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2331               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2332               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2333               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2334               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2335               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2336               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2337               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2338               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2339               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2340               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2341               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2342               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2343               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2344               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2345               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2346               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2347               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2348               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2349               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2350               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2351               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2352               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2353               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2354               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2355               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2356               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2357               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2358               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2359               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2360               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2361               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2362               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2363               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2364               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2365               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2366               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2367               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2368               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2369               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2370               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2371               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2372               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2373               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2374               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2375               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2376               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2377               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2378               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2379               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2380               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2381               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2382               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2383               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2384               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2385               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2386               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2387               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2388               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2389               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2390               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2391               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2392               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2393               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2394               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2395               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2396               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2397               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2398               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2399               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2400               21 46235126 46286297       MCM3AP  HGNC:6946     -1
2401               21 42974510 43033931       PKNOX1  HGNC:9022      1
2402               21 42974510 43033931       PKNOX1  HGNC:9022      1
2403               21 42974510 43033931       PKNOX1  HGNC:9022      1
2404               21 42974510 43033931       PKNOX1  HGNC:9022      1
2405               21 42974510 43033931       PKNOX1  HGNC:9022      1
2406               21 42974510 43033931       PKNOX1  HGNC:9022      1
2407               21 42974510 43033931       PKNOX1  HGNC:9022      1
2408               21 42974510 43033931       PKNOX1  HGNC:9022      1
2409               21 42974510 43033931       PKNOX1  HGNC:9022      1
2410               21 42974510 43033931       PKNOX1  HGNC:9022      1
2411               21 42974510 43033931       PKNOX1  HGNC:9022      1
2412               21 42974510 43033931       PKNOX1  HGNC:9022      1
2413               21 42974510 43033931       PKNOX1  HGNC:9022      1
2414               21 42974510 43033931       PKNOX1  HGNC:9022      1
2415               21 42974510 43033931       PKNOX1  HGNC:9022      1
2416               21 42974510 43033931       PKNOX1  HGNC:9022      1
2417               21 42974510 43033931       PKNOX1  HGNC:9022      1
2418               21 42974510 43033931       PKNOX1  HGNC:9022      1
2419               21 42974510 43033931       PKNOX1  HGNC:9022      1
2420               21 42974510 43033931       PKNOX1  HGNC:9022      1
2421               21 42974510 43033931       PKNOX1  HGNC:9022      1
2422               21 42974510 43033931       PKNOX1  HGNC:9022      1
2423               21 42974510 43033931       PKNOX1  HGNC:9022      1
2424               21 42974510 43033931       PKNOX1  HGNC:9022      1
2425               21 42974510 43033931       PKNOX1  HGNC:9022      1
2426               21 42974510 43033931       PKNOX1  HGNC:9022      1
2427               21 42974510 43033931       PKNOX1  HGNC:9022      1
2428               21 42974510 43033931       PKNOX1  HGNC:9022      1
2429               21 42974510 43033931       PKNOX1  HGNC:9022      1
2430               21 42974510 43033931       PKNOX1  HGNC:9022      1
2431               21 42974510 43033931       PKNOX1  HGNC:9022      1
2432               21 42974510 43033931       PKNOX1  HGNC:9022      1
2433               21 42974510 43033931       PKNOX1  HGNC:9022      1
2434               21 42974510 43033931       PKNOX1  HGNC:9022      1
2435               21 42974510 43033931       PKNOX1  HGNC:9022      1
2436               21 42974510 43033931       PKNOX1  HGNC:9022      1
2437               21 42974510 43033931       PKNOX1  HGNC:9022      1
2438               21 42974510 43033931       PKNOX1  HGNC:9022      1
2439               21 42974510 43033931       PKNOX1  HGNC:9022      1
2440               21 42974510 43033931       PKNOX1  HGNC:9022      1
2441               21 42974510 43033931       PKNOX1  HGNC:9022      1
2442               21 42974510 43033931       PKNOX1  HGNC:9022      1
2443               21 42974510 43033931       PKNOX1  HGNC:9022      1
2444               21 42974510 43033931       PKNOX1  HGNC:9022      1
2445               21 42974510 43033931       PKNOX1  HGNC:9022      1
2446               21 42974510 43033931       PKNOX1  HGNC:9022      1
2447               21 42974510 43033931       PKNOX1  HGNC:9022      1
2448               21 42974510 43033931       PKNOX1  HGNC:9022      1
2449               21 42974510 43033931       PKNOX1  HGNC:9022      1
2450               21 42974510 43033931       PKNOX1  HGNC:9022      1
2451               21 42974510 43033931       PKNOX1  HGNC:9022      1
2452               21 42974510 43033931       PKNOX1  HGNC:9022      1
2453               21 42974510 43033931       PKNOX1  HGNC:9022      1
2454               21 42974510 43033931       PKNOX1  HGNC:9022      1
2455               21 42974510 43033931       PKNOX1  HGNC:9022      1
2456               21 42974510 43033931       PKNOX1  HGNC:9022      1
2457               21 42974510 43033931       PKNOX1  HGNC:9022      1
2458               21 42974510 43033931       PKNOX1  HGNC:9022      1
2459               21 42974510 43033931       PKNOX1  HGNC:9022      1
2460               21 41716436 41717580    LINC00112  HGNC:1263      1
2461               21 41716436 41717580    LINC00112  HGNC:1263      1
2462               21 41716436 41717580    LINC00112  HGNC:1263      1
2463               21 41576135 41581319                             -1
2464               21 41576135 41581319                             -1
2465               21 41559125 41562958                             -1
2466               21 41559125 41562958                             -1
2467               21 41559125 41562958                             -1
2468               21 46462471 46469306    DIP2A-IT1 HGNC:41430      1
2469               21 46462471 46469306    DIP2A-IT1 HGNC:41430      1
2470               21 46462471 46469306    DIP2A-IT1 HGNC:41430      1
2471               21 46462471 46469306    DIP2A-IT1 HGNC:41430      1
2472               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2473               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2474               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2475               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2476               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2477               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2478               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2479               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2480               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2481               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2482               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2483               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2484               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2485               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2486               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2487               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2488               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2489               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2490               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2491               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2492               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2493               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2494               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2495               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2496               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2497               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2498               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2499               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2500               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2501               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2502               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2503               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2504               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2505               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2506               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2507               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2508               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2509               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2510               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2511               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2512               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2513               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2514               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2515               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2516               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2517               21 44497892 44711580       TSPEAR  HGNC:1268     -1
2518               21 44538981 44540195    KRTAP10-1 HGNC:22966     -1
2519               21  8380665  8410645                              1
2520               21  8380665  8410645                              1
2521               21  8380665  8410645                              1
2522               21  8380665  8410645                              1
2523               21  8380665  8410645                              1
2524               21  8380665  8410645                              1
2525               21  8380665  8410645                              1
2526               21 29182027 29187795                             -1
2527               21 29182027 29187795                             -1
2528               21  6223480  6223580                             -1
2529               21 41539206 41539326                              1
2530               21 41746772 41746841      MIR6814 HGNC:50145     -1
2531               21 20356653 20356896    RN7SKP147 HGNC:45871      1
2532               21 44573724 44638284    KRTAP10-4 HGNC:20521      1
2533               21 44573724 44638284    KRTAP10-4 HGNC:20521      1
2534               21 44573724 44638284    KRTAP10-4 HGNC:20521      1
2535               21 44573724 44638284    KRTAP10-4 HGNC:20521      1
2536               21 44573724 44638284    KRTAP10-4 HGNC:20521      1
2537               21 44573724 44638284    KRTAP10-4 HGNC:20521      1
2538               21 44573724 44638284    KRTAP10-4 HGNC:20521      1
2539               21 44573724 44638284    KRTAP10-4 HGNC:20521      1
2540               21 44573724 44638284    KRTAP10-4 HGNC:20521      1
2541               21 44573724 44638284    KRTAP10-4 HGNC:20521      1
2542               21 44675868 44678086       IMMTP1  HGNC:6048     -1
2543               21 16590237 16590325     MIR125B2 HGNC:31507      1
2544               21  7663911  7664011                             -1
2545               21 29139283 29139384                             -1
2546               21 44437121 44437175                              1
2547               21 44627123 44628293    KRTAP10-9 HGNC:22971      1
2548               21 44627123 44628293    KRTAP10-9 HGNC:22971      1
2549               21 44627123 44628293    KRTAP10-9 HGNC:22971      1
2550               21 44627123 44628293    KRTAP10-9 HGNC:22971      1
2551               21 44627123 44628293    KRTAP10-9 HGNC:22971      1
2552               21 44627123 44628293    KRTAP10-9 HGNC:22971      1
2553               21 43053191 43076943          CBS  HGNC:1550     -1
2554               21 43053191 43076943          CBS  HGNC:1550     -1
2555               21 43053191 43076943          CBS  HGNC:1550     -1
2556               21 43053191 43076943          CBS  HGNC:1550     -1
2557               21 43053191 43076943          CBS  HGNC:1550     -1
2558               21 43053191 43076943          CBS  HGNC:1550     -1
2559               21 43053191 43076943          CBS  HGNC:1550     -1
2560               21 43053191 43076943          CBS  HGNC:1550     -1
2561               21 43053191 43076943          CBS  HGNC:1550     -1
2562               21 43053191 43076943          CBS  HGNC:1550     -1
2563               21 43053191 43076943          CBS  HGNC:1550     -1
2564               21 43053191 43076943          CBS  HGNC:1550     -1
2565               21 43053191 43076943          CBS  HGNC:1550     -1
2566               21 43053191 43076943          CBS  HGNC:1550     -1
2567               21 43053191 43076943          CBS  HGNC:1550     -1
2568               21 43053191 43076943          CBS  HGNC:1550     -1
2569               21 43053191 43076943          CBS  HGNC:1550     -1
2570               21 43053191 43076943          CBS  HGNC:1550     -1
2571               21 43053191 43076943          CBS  HGNC:1550     -1
2572               21 43053191 43076943          CBS  HGNC:1550     -1
2573               21 43053191 43076943          CBS  HGNC:1550     -1
2574               21 43053191 43076943          CBS  HGNC:1550     -1
2575               21 43053191 43076943          CBS  HGNC:1550     -1
2576               21 43053191 43076943          CBS  HGNC:1550     -1
2577               21 43053191 43076943          CBS  HGNC:1550     -1
2578               21 43053191 43076943          CBS  HGNC:1550     -1
2579               21 43053191 43076943          CBS  HGNC:1550     -1
2580               21 43053191 43076943          CBS  HGNC:1550     -1
2581               21 43053191 43076943          CBS  HGNC:1550     -1
2582               21 43053191 43076943          CBS  HGNC:1550     -1
2583               21 43053191 43076943          CBS  HGNC:1550     -1
2584               21 43053191 43076943          CBS  HGNC:1550     -1
2585               21 43053191 43076943          CBS  HGNC:1550     -1
2586               21 43053191 43076943          CBS  HGNC:1550     -1
2587               21 43053191 43076943          CBS  HGNC:1550     -1
2588               21 43053191 43076943          CBS  HGNC:1550     -1
2589               21 43053191 43076943          CBS  HGNC:1550     -1
2590               21 43053191 43076943          CBS  HGNC:1550     -1
2591               21 43053191 43076943          CBS  HGNC:1550     -1
2592               21 43053191 43076943          CBS  HGNC:1550     -1
2593               21 43053191 43076943          CBS  HGNC:1550     -1
2594               21 43053191 43076943          CBS  HGNC:1550     -1
2595               21 43053191 43076943          CBS  HGNC:1550     -1
2596               21 43053191 43076943          CBS  HGNC:1550     -1
2597               21 43053191 43076943          CBS  HGNC:1550     -1
2598               21 43053191 43076943          CBS  HGNC:1550     -1
2599               21 43053191 43076943          CBS  HGNC:1550     -1
2600               21 43053191 43076943          CBS  HGNC:1550     -1
2601               21 43053191 43076943          CBS  HGNC:1550     -1
2602               21 43053191 43076943          CBS  HGNC:1550     -1
2603               21 43053191 43076943          CBS  HGNC:1550     -1
2604               21 43053191 43076943          CBS  HGNC:1550     -1
2605               21 43053191 43076943          CBS  HGNC:1550     -1
2606               21 43053191 43076943          CBS  HGNC:1550     -1
2607               21 43053191 43076943          CBS  HGNC:1550     -1
2608               21 43053191 43076943          CBS  HGNC:1550     -1
2609               21 43053191 43076943          CBS  HGNC:1550     -1
2610               21 43053191 43076943          CBS  HGNC:1550     -1
2611               21 43053191 43076943          CBS  HGNC:1550     -1
2612               21 43053191 43076943          CBS  HGNC:1550     -1
2613               21 43053191 43076943          CBS  HGNC:1550     -1
2614               21 43053191 43076943          CBS  HGNC:1550     -1
2615               21 43053191 43076943          CBS  HGNC:1550     -1
2616               21 43053191 43076943          CBS  HGNC:1550     -1
2617               21 43053191 43076943          CBS  HGNC:1550     -1
2618               21 43053191 43076943          CBS  HGNC:1550     -1
2619               21 43053191 43076943          CBS  HGNC:1550     -1
2620               21 43053191 43076943          CBS  HGNC:1550     -1
2621               21 43053191 43076943          CBS  HGNC:1550     -1
2622               21 43053191 43076943          CBS  HGNC:1550     -1
2623               21 43053191 43076943          CBS  HGNC:1550     -1
2624               21 43053191 43076943          CBS  HGNC:1550     -1
2625               21 43053191 43076943          CBS  HGNC:1550     -1
2626               21 43053191 43076943          CBS  HGNC:1550     -1
2627               21 43053191 43076943          CBS  HGNC:1550     -1
2628               21 43053191 43076943          CBS  HGNC:1550     -1
2629               21 43053191 43076943          CBS  HGNC:1550     -1
2630               21 43053191 43076943          CBS  HGNC:1550     -1
2631               21 43053191 43076943          CBS  HGNC:1550     -1
2632               21 43053191 43076943          CBS  HGNC:1550     -1
2633               21 43053191 43076943          CBS  HGNC:1550     -1
2634               21 43053191 43076943          CBS  HGNC:1550     -1
2635               21 43053191 43076943          CBS  HGNC:1550     -1
2636               21 43053191 43076943          CBS  HGNC:1550     -1
2637               21 43053191 43076943          CBS  HGNC:1550     -1
2638               21 43053191 43076943          CBS  HGNC:1550     -1
2639               21 43053191 43076943          CBS  HGNC:1550     -1
2640               21 43053191 43076943          CBS  HGNC:1550     -1
2641               21 43053191 43076943          CBS  HGNC:1550     -1
2642               21 43053191 43076943          CBS  HGNC:1550     -1
2643               21 43053191 43076943          CBS  HGNC:1550     -1
2644               21 43053191 43076943          CBS  HGNC:1550     -1
2645               21 43053191 43076943          CBS  HGNC:1550     -1
2646               21 43053191 43076943          CBS  HGNC:1550     -1
2647               21 43053191 43076943          CBS  HGNC:1550     -1
2648               21 43053191 43076943          CBS  HGNC:1550     -1
2649               21 43053191 43076943          CBS  HGNC:1550     -1
2650               21 43053191 43076943          CBS  HGNC:1550     -1
2651               21 43053191 43076943          CBS  HGNC:1550     -1
2652               21 43053191 43076943          CBS  HGNC:1550     -1
2653               21 43053191 43076943          CBS  HGNC:1550     -1
2654               21 43053191 43076943          CBS  HGNC:1550     -1
2655               21 43053191 43076943          CBS  HGNC:1550     -1
2656               21 43053191 43076943          CBS  HGNC:1550     -1
2657               21 43053191 43076943          CBS  HGNC:1550     -1
2658               21 43053191 43076943          CBS  HGNC:1550     -1
2659               21 43053191 43076943          CBS  HGNC:1550     -1
2660               21 43053191 43076943          CBS  HGNC:1550     -1
2661               21 43053191 43076943          CBS  HGNC:1550     -1
2662               21 43053191 43076943          CBS  HGNC:1550     -1
2663               21 43053191 43076943          CBS  HGNC:1550     -1
2664               21 43053191 43076943          CBS  HGNC:1550     -1
2665               21 43053191 43076943          CBS  HGNC:1550     -1
2666               21 43053191 43076943          CBS  HGNC:1550     -1
2667               21 43053191 43076943          CBS  HGNC:1550     -1
2668               21 43053191 43076943          CBS  HGNC:1550     -1
2669               21 43053191 43076943          CBS  HGNC:1550     -1
2670               21 43053191 43076943          CBS  HGNC:1550     -1
2671               21 43053191 43076943          CBS  HGNC:1550     -1
2672               21 43053191 43076943          CBS  HGNC:1550     -1
2673               21 43053191 43076943          CBS  HGNC:1550     -1
2674               21 43053191 43076943          CBS  HGNC:1550     -1
2675               21 43053191 43076943          CBS  HGNC:1550     -1
2676               21 43053191 43076943          CBS  HGNC:1550     -1
2677               21 43053191 43076943          CBS  HGNC:1550     -1
2678               21 43053191 43076943          CBS  HGNC:1550     -1
2679               21 43053191 43076943          CBS  HGNC:1550     -1
2680               21 43053191 43076943          CBS  HGNC:1550     -1
2681               21 43053191 43076943          CBS  HGNC:1550     -1
2682               21 43053191 43076943          CBS  HGNC:1550     -1
2683               21 43053191 43076943          CBS  HGNC:1550     -1
2684               21 43053191 43076943          CBS  HGNC:1550     -1
2685               21 43053191 43076943          CBS  HGNC:1550     -1
2686               21 43053191 43076943          CBS  HGNC:1550     -1
2687               21 43053191 43076943          CBS  HGNC:1550     -1
2688               21 43053191 43076943          CBS  HGNC:1550     -1
2689               21 43053191 43076943          CBS  HGNC:1550     -1
2690               21 43053191 43076943          CBS  HGNC:1550     -1
2691               21 43053191 43076943          CBS  HGNC:1550     -1
2692               21 46246890 46247682                              1
2693               21 46246890 46247682                              1
2694               21 37208503 37221736        DSCR9 HGNC:16301      1
2695               21 37208503 37221736        DSCR9 HGNC:16301      1
2696               21 37208503 37221736        DSCR9 HGNC:16301      1
2697               21 37208503 37221736        DSCR9 HGNC:16301      1
2698               21 37208503 37221736        DSCR9 HGNC:16301      1
2699               21 37208503 37221736        DSCR9 HGNC:16301      1
2700               21 37208503 37221736        DSCR9 HGNC:16301      1
2701               21 37208503 37221736        DSCR9 HGNC:16301      1
2702               21 37208503 37221736        DSCR9 HGNC:16301      1
2703               21 37208503 37221736        DSCR9 HGNC:16301      1
2704               21 37208503 37221736        DSCR9 HGNC:16301      1
2705               21 37208503 37221736        DSCR9 HGNC:16301      1
2706               21 37208503 37221736        DSCR9 HGNC:16301      1
2707               21 37208503 37221736        DSCR9 HGNC:16301      1
2708               21 37208503 37221736        DSCR9 HGNC:16301      1
2709               21 37208503 37221736        DSCR9 HGNC:16301      1
2710               21 37208503 37221736        DSCR9 HGNC:16301      1
2711               21 37208503 37221736        DSCR9 HGNC:16301      1
2712               21 37208503 37221736        DSCR9 HGNC:16301      1
2713               21 37208503 37221736        DSCR9 HGNC:16301      1
2714               21 37208503 37221736        DSCR9 HGNC:16301      1
2715               21 37223420 37267919        DSCR3  HGNC:3044     -1
2716               21 37223420 37267919        DSCR3  HGNC:3044     -1
2717               21 37223420 37267919        DSCR3  HGNC:3044     -1
2718               21 37223420 37267919        DSCR3  HGNC:3044     -1
2719               21 37223420 37267919        DSCR3  HGNC:3044     -1
2720               21 37223420 37267919        DSCR3  HGNC:3044     -1
2721               21 37223420 37267919        DSCR3  HGNC:3044     -1
2722               21 37223420 37267919        DSCR3  HGNC:3044     -1
2723               21 37223420 37267919        DSCR3  HGNC:3044     -1
2724               21 37223420 37267919        DSCR3  HGNC:3044     -1
2725               21 37223420 37267919        DSCR3  HGNC:3044     -1
2726               21 37223420 37267919        DSCR3  HGNC:3044     -1
2727               21 37223420 37267919        DSCR3  HGNC:3044     -1
2728               21 37223420 37267919        DSCR3  HGNC:3044     -1
2729               21 37223420 37267919        DSCR3  HGNC:3044     -1
2730               21 37223420 37267919        DSCR3  HGNC:3044     -1
2731               21 37223420 37267919        DSCR3  HGNC:3044     -1
2732               21 37223420 37267919        DSCR3  HGNC:3044     -1
2733               21 37223420 37267919        DSCR3  HGNC:3044     -1
2734               21 37223420 37267919        DSCR3  HGNC:3044     -1
2735               21 37223420 37267919        DSCR3  HGNC:3044     -1
2736               21 37223420 37267919        DSCR3  HGNC:3044     -1
2737               21 37223420 37267919        DSCR3  HGNC:3044     -1
2738               21 37223420 37267919        DSCR3  HGNC:3044     -1
2739               21 37223420 37267919        DSCR3  HGNC:3044     -1
2740               21 37223420 37267919        DSCR3  HGNC:3044     -1
2741               21 37223420 37267919        DSCR3  HGNC:3044     -1
2742               21 37223420 37267919        DSCR3  HGNC:3044     -1
2743               21 37223420 37267919        DSCR3  HGNC:3044     -1
2744               21 37223420 37267919        DSCR3  HGNC:3044     -1
2745               21 37223420 37267919        DSCR3  HGNC:3044     -1
2746               21 37223420 37267919        DSCR3  HGNC:3044     -1
2747               21 37223420 37267919        DSCR3  HGNC:3044     -1
2748               21 37223420 37267919        DSCR3  HGNC:3044     -1
2749               21 37223420 37267919        DSCR3  HGNC:3044     -1
2750               21 37223420 37267919        DSCR3  HGNC:3044     -1
2751               21 37223420 37267919        DSCR3  HGNC:3044     -1
2752               21 37223420 37267919        DSCR3  HGNC:3044     -1
2753               21 37223420 37267919        DSCR3  HGNC:3044     -1
2754               21 37223420 37267919        DSCR3  HGNC:3044     -1
2755               21 37223420 37267919        DSCR3  HGNC:3044     -1
2756               21 37223420 37267919        DSCR3  HGNC:3044     -1
2757               21 37223420 37267919        DSCR3  HGNC:3044     -1
2758               21 37223420 37267919        DSCR3  HGNC:3044     -1
2759               21 37223420 37267919        DSCR3  HGNC:3044     -1
2760               21 37223420 37267919        DSCR3  HGNC:3044     -1
2761               21 37223420 37267919        DSCR3  HGNC:3044     -1
2762               21 37223420 37267919        DSCR3  HGNC:3044     -1
2763               21 37223420 37267919        DSCR3  HGNC:3044     -1
2764               21 37223420 37267919        DSCR3  HGNC:3044     -1
2765               21 37223420 37267919        DSCR3  HGNC:3044     -1
2766               21 37223420 37267919        DSCR3  HGNC:3044     -1
2767               21 37223420 37267919        DSCR3  HGNC:3044     -1
2768               21 37223420 37267919        DSCR3  HGNC:3044     -1
2769               21 37223420 37267919        DSCR3  HGNC:3044     -1
2770               21 37223420 37267919        DSCR3  HGNC:3044     -1
2771               21 37223420 37267919        DSCR3  HGNC:3044     -1
2772               21 37223420 37267919        DSCR3  HGNC:3044     -1
2773               21 37223420 37267919        DSCR3  HGNC:3044     -1
2774               21 37223420 37267919        DSCR3  HGNC:3044     -1
2775               21 37223420 37267919        DSCR3  HGNC:3044     -1
2776               21 37223420 37267919        DSCR3  HGNC:3044     -1
2777               21 37223420 37267919        DSCR3  HGNC:3044     -1
2778               21 37223420 37267919        DSCR3  HGNC:3044     -1
2779               21 37223420 37267919        DSCR3  HGNC:3044     -1
2780               21 34456110 34456237                             -1
2781               21  8208844  8208904    MIR3687-1 HGNC:38946      1
2782               21 45478266 45478326      MIR6815 HGNC:50225      1
2783               21 41874756 41877613                             -1
2784               21 41874756 41877613                             -1
2785               21 41874756 41877613                             -1
2786               21 44579455 44580604    KRTAP10-5 HGNC:22969     -1
2787               21 37221419 37237744                              1
2788               21 37221419 37237744                              1
2789               21 44206525 44207399                             -1
2790               21 44206525 44207399                             -1
2791               21 32841496 32841811                             -1
2792               21 20998315 21543329        NCAM2  HGNC:7657      1
2793               21 20998315 21543329        NCAM2  HGNC:7657      1
2794               21 20998315 21543329        NCAM2  HGNC:7657      1
2795               21 20998315 21543329        NCAM2  HGNC:7657      1
2796               21 20998315 21543329        NCAM2  HGNC:7657      1
2797               21 20998315 21543329        NCAM2  HGNC:7657      1
2798               21 20998315 21543329        NCAM2  HGNC:7657      1
2799               21 20998315 21543329        NCAM2  HGNC:7657      1
2800               21 20998315 21543329        NCAM2  HGNC:7657      1
2801               21 20998315 21543329        NCAM2  HGNC:7657      1
2802               21 20998315 21543329        NCAM2  HGNC:7657      1
2803               21 20998315 21543329        NCAM2  HGNC:7657      1
2804               21 20998315 21543329        NCAM2  HGNC:7657      1
2805               21 20998315 21543329        NCAM2  HGNC:7657      1
2806               21 20998315 21543329        NCAM2  HGNC:7657      1
2807               21 20998315 21543329        NCAM2  HGNC:7657      1
2808               21 20998315 21543329        NCAM2  HGNC:7657      1
2809               21 20998315 21543329        NCAM2  HGNC:7657      1
2810               21 20998315 21543329        NCAM2  HGNC:7657      1
2811               21 20998315 21543329        NCAM2  HGNC:7657      1
2812               21 20998315 21543329        NCAM2  HGNC:7657      1
2813               21 20998315 21543329        NCAM2  HGNC:7657      1
2814               21 20998315 21543329        NCAM2  HGNC:7657      1
2815               21 20998315 21543329        NCAM2  HGNC:7657      1
2816               21 20998315 21543329        NCAM2  HGNC:7657      1
2817               21 20998315 21543329        NCAM2  HGNC:7657      1
2818               21 20998315 21543329        NCAM2  HGNC:7657      1
2819               21 20998315 21543329        NCAM2  HGNC:7657      1
2820               21 20998315 21543329        NCAM2  HGNC:7657      1
2821               21 20998315 21543329        NCAM2  HGNC:7657      1
2822               21 20998315 21543329        NCAM2  HGNC:7657      1
2823               21 20998315 21543329        NCAM2  HGNC:7657      1
2824               21 20998315 21543329        NCAM2  HGNC:7657      1
2825               21 20998315 21543329        NCAM2  HGNC:7657      1
2826               21 20998315 21543329        NCAM2  HGNC:7657      1
2827               21 20998315 21543329        NCAM2  HGNC:7657      1
2828               21 20998315 21543329        NCAM2  HGNC:7657      1
2829               21 20998315 21543329        NCAM2  HGNC:7657      1
2830               21 20998315 21543329        NCAM2  HGNC:7657      1
2831               21 20998315 21543329        NCAM2  HGNC:7657      1
2832               21 20998315 21543329        NCAM2  HGNC:7657      1
2833               21 20998315 21543329        NCAM2  HGNC:7657      1
2834               21 20998315 21543329        NCAM2  HGNC:7657      1
2835               21 20998315 21543329        NCAM2  HGNC:7657      1
2836               21 20998315 21543329        NCAM2  HGNC:7657      1
2837               21 20998315 21543329        NCAM2  HGNC:7657      1
2838               21 20998315 21543329        NCAM2  HGNC:7657      1
2839               21 20998315 21543329        NCAM2  HGNC:7657      1
2840               21 36069642 36126640                             -1
2841               21 36069642 36126640                             -1
2842               21 36069642 36126640                             -1
2843               21 36069642 36126640                             -1
2844               21 36069642 36126640                             -1
2845               21 36069642 36126640                             -1
2846               21 36104881 36109690                              1
2847               21 36104881 36109690                              1
2848               21 36132450 36133032       RPS9P1 HGNC:10443      1
2849               21 39342315 39349647        HMGN1  HGNC:4984     -1
2850               21 39342315 39349647        HMGN1  HGNC:4984     -1
2851               21 39342315 39349647        HMGN1  HGNC:4984     -1
2852               21 39342315 39349647        HMGN1  HGNC:4984     -1
2853               21 39342315 39349647        HMGN1  HGNC:4984     -1
2854               21 39342315 39349647        HMGN1  HGNC:4984     -1
2855               21 39342315 39349647        HMGN1  HGNC:4984     -1
2856               21 39342315 39349647        HMGN1  HGNC:4984     -1
2857               21 39342315 39349647        HMGN1  HGNC:4984     -1
2858               21 39342315 39349647        HMGN1  HGNC:4984     -1
2859               21 39342315 39349647        HMGN1  HGNC:4984     -1
2860               21 39342315 39349647        HMGN1  HGNC:4984     -1
2861               21 39342315 39349647        HMGN1  HGNC:4984     -1
2862               21 39342315 39349647        HMGN1  HGNC:4984     -1
2863               21 39342315 39349647        HMGN1  HGNC:4984     -1
2864               21 39342315 39349647        HMGN1  HGNC:4984     -1
2865               21 39342315 39349647        HMGN1  HGNC:4984     -1
2866               21 39342315 39349647        HMGN1  HGNC:4984     -1
2867               21 39342315 39349647        HMGN1  HGNC:4984     -1
2868               21 39342315 39349647        HMGN1  HGNC:4984     -1
2869               21 39342315 39349647        HMGN1  HGNC:4984     -1
2870               21 39342315 39349647        HMGN1  HGNC:4984     -1
2871               21 39342315 39349647        HMGN1  HGNC:4984     -1
2872               21 39342315 39349647        HMGN1  HGNC:4984     -1
2873               21 39342315 39349647        HMGN1  HGNC:4984     -1
2874               21 39342315 39349647        HMGN1  HGNC:4984     -1
2875               21 39342315 39349647        HMGN1  HGNC:4984     -1
2876               21 39342315 39349647        HMGN1  HGNC:4984     -1
2877               21 39342315 39349647        HMGN1  HGNC:4984     -1
2878               21 39342315 39349647        HMGN1  HGNC:4984     -1
2879               21 39342315 39349647        HMGN1  HGNC:4984     -1
2880               21 39342315 39349647        HMGN1  HGNC:4984     -1
2881               21 39342315 39349647        HMGN1  HGNC:4984     -1
2882               21 39342315 39349647        HMGN1  HGNC:4984     -1
2883               21 39342315 39349647        HMGN1  HGNC:4984     -1
2884               21 39342315 39349647        HMGN1  HGNC:4984     -1
2885               21 39342315 39349647        HMGN1  HGNC:4984     -1
2886               21 39342315 39349647        HMGN1  HGNC:4984     -1
2887               21 39342315 39349647        HMGN1  HGNC:4984     -1
2888               21 39342315 39349647        HMGN1  HGNC:4984     -1
2889               21 39342315 39349647        HMGN1  HGNC:4984     -1
2890               21 39342315 39349647        HMGN1  HGNC:4984     -1
2891               21 39342315 39349647        HMGN1  HGNC:4984     -1
2892               21 39342315 39349647        HMGN1  HGNC:4984     -1
2893               21 39342315 39349647        HMGN1  HGNC:4984     -1
2894               21 39342315 39349647        HMGN1  HGNC:4984     -1
2895               21 39342315 39349647        HMGN1  HGNC:4984     -1
2896               21 39342315 39349647        HMGN1  HGNC:4984     -1
2897               21 39342315 39349647        HMGN1  HGNC:4984     -1
2898               21 39342315 39349647        HMGN1  HGNC:4984     -1
2899               21 39342315 39349647        HMGN1  HGNC:4984     -1
2900               21 39342315 39349647        HMGN1  HGNC:4984     -1
2901               21 39342315 39349647        HMGN1  HGNC:4984     -1
2902               21 39342315 39349647        HMGN1  HGNC:4984     -1
2903               21 39342315 39349647        HMGN1  HGNC:4984     -1
2904               21 39342315 39349647        HMGN1  HGNC:4984     -1
2905               21 39342315 39349647        HMGN1  HGNC:4984     -1
2906               21 39342315 39349647        HMGN1  HGNC:4984     -1
2907               21 39342315 39349647        HMGN1  HGNC:4984     -1
2908               21 39342315 39349647        HMGN1  HGNC:4984     -1
2909               21 39342315 39349647        HMGN1  HGNC:4984     -1
2910               21 39342315 39349647        HMGN1  HGNC:4984     -1
2911               21 39342315 39349647        HMGN1  HGNC:4984     -1
2912               21 39342315 39349647        HMGN1  HGNC:4984     -1
2913               21 39342315 39349647        HMGN1  HGNC:4984     -1
2914               21 39342315 39349647        HMGN1  HGNC:4984     -1
2915               21 39342315 39349647        HMGN1  HGNC:4984     -1
2916               21 39342315 39349647        HMGN1  HGNC:4984     -1
2917               21 39342315 39349647        HMGN1  HGNC:4984     -1
2918               21 39342315 39349647        HMGN1  HGNC:4984     -1
2919               21 39342315 39349647        HMGN1  HGNC:4984     -1
2920               21 39342315 39349647        HMGN1  HGNC:4984     -1
2921               21 39342315 39349647        HMGN1  HGNC:4984     -1
2922               21 39342315 39349647        HMGN1  HGNC:4984     -1
2923               21 39342315 39349647        HMGN1  HGNC:4984     -1
2924               21 39342315 39349647        HMGN1  HGNC:4984     -1
2925               21 39342315 39349647        HMGN1  HGNC:4984     -1
2926               21 39342315 39349647        HMGN1  HGNC:4984     -1
2927               21 39342315 39349647        HMGN1  HGNC:4984     -1
2928               21 39342315 39349647        HMGN1  HGNC:4984     -1
2929               21 39342315 39349647        HMGN1  HGNC:4984     -1
2930               21 39342315 39349647        HMGN1  HGNC:4984     -1
2931               21 39342315 39349647        HMGN1  HGNC:4984     -1
2932               21 39342315 39349647        HMGN1  HGNC:4984     -1
2933               21 39342315 39349647        HMGN1  HGNC:4984     -1
2934               21 39342315 39349647        HMGN1  HGNC:4984     -1
2935               21 39342315 39349647        HMGN1  HGNC:4984     -1
2936               21 39342315 39349647        HMGN1  HGNC:4984     -1
2937               21 39342315 39349647        HMGN1  HGNC:4984     -1
2938               21 39342315 39349647        HMGN1  HGNC:4984     -1
2939               21 39342315 39349647        HMGN1  HGNC:4984     -1
2940               21 39342315 39349647        HMGN1  HGNC:4984     -1
2941               21 39342315 39349647        HMGN1  HGNC:4984     -1
2942               21 39342315 39349647        HMGN1  HGNC:4984     -1
2943               21 39342315 39349647        HMGN1  HGNC:4984     -1
2944               21 39342315 39349647        HMGN1  HGNC:4984     -1
2945               21 39342315 39349647        HMGN1  HGNC:4984     -1
2946               21 39342315 39349647        HMGN1  HGNC:4984     -1
2947               21 39342315 39349647        HMGN1  HGNC:4984     -1
2948               21 39342315 39349647        HMGN1  HGNC:4984     -1
2949               21 39342315 39349647        HMGN1  HGNC:4984     -1
2950               21 39342315 39349647        HMGN1  HGNC:4984     -1
2951               21 39342315 39349647        HMGN1  HGNC:4984     -1
2952               21 39342315 39349647        HMGN1  HGNC:4984     -1
2953               21 39342315 39349647        HMGN1  HGNC:4984     -1
2954               21 39342315 39349647        HMGN1  HGNC:4984     -1
2955               21 39342315 39349647        HMGN1  HGNC:4984     -1
2956               21 39342315 39349647        HMGN1  HGNC:4984     -1
2957               21 39342315 39349647        HMGN1  HGNC:4984     -1
2958               21 39342315 39349647        HMGN1  HGNC:4984     -1
2959               21 39342315 39349647        HMGN1  HGNC:4984     -1
2960               21 39342315 39349647        HMGN1  HGNC:4984     -1
2961               21 39342315 39349647        HMGN1  HGNC:4984     -1
2962               21 39342315 39349647        HMGN1  HGNC:4984     -1
2963               21 39342315 39349647        HMGN1  HGNC:4984     -1
2964               21 39342315 39349647        HMGN1  HGNC:4984     -1
2965               21 39342315 39349647        HMGN1  HGNC:4984     -1
2966               21 16121310 16121644      RPS26P5 HGNC:23776     -1
2967               21 16525919 16527019                              1
2968               21 16574718 16582637                             -1
2969               21 16574718 16582637                             -1
2970               21 16417139 16419080                             -1
2971               21 16417139 16419080                             -1
2972               21 16417139 16419080                             -1
2973               21 16291791 16308133                             -1
2974               21 16291791 16308133                             -1
2975               21 16291791 16308133                             -1
2976               21 44455486 44462196        LRRC3 HGNC:14965      1
2977               21 44455486 44462196        LRRC3 HGNC:14965      1
2978               21 42916803 42925646     ERVH48-1 HGNC:17216     -1
2979               21 42916803 42925646     ERVH48-1 HGNC:17216     -1
2980               21 42916803 42925646     ERVH48-1 HGNC:17216     -1
2981               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2982               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2983               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2984               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2985               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2986               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2987               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2988               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2989               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2990               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2991               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2992               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2993               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2994               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2995               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2996               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2997               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2998               21 33589341 33643926       CRYZL1  HGNC:2420     -1
2999               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3000               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3001               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3002               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3003               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3004               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3005               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3006               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3007               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3008               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3009               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3010               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3011               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3012               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3013               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3014               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3015               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3016               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3017               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3018               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3019               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3020               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3021               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3022               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3023               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3024               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3025               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3026               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3027               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3028               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3029               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3030               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3031               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3032               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3033               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3034               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3035               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3036               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3037               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3038               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3039               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3040               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3041               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3042               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3043               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3044               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3045               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3046               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3047               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3048               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3049               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3050               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3051               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3052               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3053               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3054               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3055               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3056               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3057               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3058               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3059               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3060               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3061               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3062               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3063               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3064               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3065               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3066               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3067               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3068               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3069               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3070               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3071               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3072               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3073               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3074               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3075               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3076               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3077               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3078               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3079               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3080               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3081               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3082               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3083               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3084               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3085               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3086               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3087               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3088               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3089               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3090               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3091               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3092               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3093               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3094               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3095               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3096               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3097               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3098               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3099               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3100               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3101               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3102               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3103               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3104               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3105               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3106               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3107               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3108               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3109               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3110               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3111               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3112               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3113               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3114               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3115               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3116               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3117               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3118               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3119               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3120               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3121               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3122               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3123               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3124               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3125               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3126               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3127               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3128               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3129               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3130               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3131               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3132               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3133               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3134               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3135               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3136               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3137               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3138               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3139               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3140               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3141               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3142               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3143               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3144               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3145               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3146               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3147               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3148               21 33589341 33643926       CRYZL1  HGNC:2420     -1
3149               21 39491544 39491898      RPS26P4 HGNC:23775     -1
3150               21 29370019 29376339    BACH1-AS1 HGNC:40008     -1
3151               21 29370019 29376339    BACH1-AS1 HGNC:40008     -1
3152               21 29370019 29376339    BACH1-AS1 HGNC:40008     -1
3153               21 29370019 29376339    BACH1-AS1 HGNC:40008     -1
3154               21 33559542 33588708       DONSON  HGNC:2993     -1
3155               21 33559542 33588708       DONSON  HGNC:2993     -1
3156               21 33559542 33588708       DONSON  HGNC:2993     -1
3157               21 33559542 33588708       DONSON  HGNC:2993     -1
3158               21 33559542 33588708       DONSON  HGNC:2993     -1
3159               21 33559542 33588708       DONSON  HGNC:2993     -1
3160               21 33559542 33588708       DONSON  HGNC:2993     -1
3161               21 33559542 33588708       DONSON  HGNC:2993     -1
3162               21 33559542 33588708       DONSON  HGNC:2993     -1
3163               21 33559542 33588708       DONSON  HGNC:2993     -1
3164               21 33559542 33588708       DONSON  HGNC:2993     -1
3165               21 33559542 33588708       DONSON  HGNC:2993     -1
3166               21 33559542 33588708       DONSON  HGNC:2993     -1
3167               21 33559542 33588708       DONSON  HGNC:2993     -1
3168               21 33559542 33588708       DONSON  HGNC:2993     -1
3169               21 33559542 33588708       DONSON  HGNC:2993     -1
3170               21 33559542 33588708       DONSON  HGNC:2993     -1
3171               21 33559542 33588708       DONSON  HGNC:2993     -1
3172               21 33559542 33588708       DONSON  HGNC:2993     -1
3173               21 33559542 33588708       DONSON  HGNC:2993     -1
3174               21 33559542 33588708       DONSON  HGNC:2993     -1
3175               21 33559542 33588708       DONSON  HGNC:2993     -1
3176               21 33559542 33588708       DONSON  HGNC:2993     -1
3177               21 33559542 33588708       DONSON  HGNC:2993     -1
3178               21 33559542 33588708       DONSON  HGNC:2993     -1
3179               21 33559542 33588708       DONSON  HGNC:2993     -1
3180               21 33559542 33588708       DONSON  HGNC:2993     -1
3181               21 33559542 33588708       DONSON  HGNC:2993     -1
3182               21 33559542 33588708       DONSON  HGNC:2993     -1
3183               21 33559542 33588708       DONSON  HGNC:2993     -1
3184               21 33559542 33588708       DONSON  HGNC:2993     -1
3185               21 33559542 33588708       DONSON  HGNC:2993     -1
3186               21 33559542 33588708       DONSON  HGNC:2993     -1
3187               21 33559542 33588708       DONSON  HGNC:2993     -1
3188               21 33559542 33588708       DONSON  HGNC:2993     -1
3189               21 33559542 33588708       DONSON  HGNC:2993     -1
3190               21 33559542 33588708       DONSON  HGNC:2993     -1
3191               21 33559542 33588708       DONSON  HGNC:2993     -1
3192               21 33559542 33588708       DONSON  HGNC:2993     -1
3193               21 33559542 33588708       DONSON  HGNC:2993     -1
3194               21 33559542 33588708       DONSON  HGNC:2993     -1
3195               21 33559542 33588708       DONSON  HGNC:2993     -1
3196               21 33559542 33588708       DONSON  HGNC:2993     -1
3197               21 33559542 33588708       DONSON  HGNC:2993     -1
3198               21 33559542 33588708       DONSON  HGNC:2993     -1
3199               21 33559542 33588708       DONSON  HGNC:2993     -1
3200               21 33559542 33588708       DONSON  HGNC:2993     -1
3201               21 33559542 33588708       DONSON  HGNC:2993     -1
3202               21 33559542 33588708       DONSON  HGNC:2993     -1
3203               21 33559542 33588708       DONSON  HGNC:2993     -1
3204               21 33559542 33588708       DONSON  HGNC:2993     -1
3205               21 33559542 33588708       DONSON  HGNC:2993     -1
3206               21 33559542 33588708       DONSON  HGNC:2993     -1
3207               21 33559542 33588708       DONSON  HGNC:2993     -1
3208               21 33559542 33588708       DONSON  HGNC:2993     -1
3209               21 33559542 33588708       DONSON  HGNC:2993     -1
3210               21 33559542 33588708       DONSON  HGNC:2993     -1
3211               21 33559542 33588708       DONSON  HGNC:2993     -1
3212               21 33559542 33588708       DONSON  HGNC:2993     -1
3213               21 33559542 33588708       DONSON  HGNC:2993     -1
3214               21 33559542 33588708       DONSON  HGNC:2993     -1
3215               21 33559542 33588708       DONSON  HGNC:2993     -1
3216               21 33559542 33588708       DONSON  HGNC:2993     -1
3217               21 33559542 33588708       DONSON  HGNC:2993     -1
3218               21 33559542 33588708       DONSON  HGNC:2993     -1
3219               21 33559542 33588708       DONSON  HGNC:2993     -1
3220               21 33559542 33588708       DONSON  HGNC:2993     -1
3221               21 33559542 33588708       DONSON  HGNC:2993     -1
3222               21 33559542 33588708       DONSON  HGNC:2993     -1
3223               21 33559542 33588708       DONSON  HGNC:2993     -1
3224               21 33559542 33588708       DONSON  HGNC:2993     -1
3225               21 33559542 33588708       DONSON  HGNC:2993     -1
3226               21 33559542 33588708       DONSON  HGNC:2993     -1
3227               21 33559542 33588708       DONSON  HGNC:2993     -1
3228               21 33559542 33588708       DONSON  HGNC:2993     -1
3229               21 33559542 33588708       DONSON  HGNC:2993     -1
3230               21 33559542 33588708       DONSON  HGNC:2993     -1
3231               21 33559542 33588708       DONSON  HGNC:2993     -1
3232               21 33559542 33588708       DONSON  HGNC:2993     -1
3233               21 33559542 33588708       DONSON  HGNC:2993     -1
3234               21 33559542 33588708       DONSON  HGNC:2993     -1
3235               21 33559542 33588708       DONSON  HGNC:2993     -1
3236               21 33559542 33588708       DONSON  HGNC:2993     -1
3237               21 33559542 33588708       DONSON  HGNC:2993     -1
3238               21 33559542 33588708       DONSON  HGNC:2993     -1
3239               21 33559542 33588708       DONSON  HGNC:2993     -1
3240               21 33559542 33588708       DONSON  HGNC:2993     -1
3241               21 33559542 33588708       DONSON  HGNC:2993     -1
3242               21 33559542 33588708       DONSON  HGNC:2993     -1
3243               21 33559542 33588708       DONSON  HGNC:2993     -1
3244               21 33559542 33588708       DONSON  HGNC:2993     -1
3245               21 33559542 33588708       DONSON  HGNC:2993     -1
3246               21 33559542 33588708       DONSON  HGNC:2993     -1
3247               21 44300051 44327376         PFKL  HGNC:8876      1
3248               21 44300051 44327376         PFKL  HGNC:8876      1
3249               21 44300051 44327376         PFKL  HGNC:8876      1
3250               21 44300051 44327376         PFKL  HGNC:8876      1
3251               21 44300051 44327376         PFKL  HGNC:8876      1
3252               21 44300051 44327376         PFKL  HGNC:8876      1
3253               21 44300051 44327376         PFKL  HGNC:8876      1
3254               21 44300051 44327376         PFKL  HGNC:8876      1
3255               21 44300051 44327376         PFKL  HGNC:8876      1
3256               21 44300051 44327376         PFKL  HGNC:8876      1
3257               21 44300051 44327376         PFKL  HGNC:8876      1
3258               21 44300051 44327376         PFKL  HGNC:8876      1
3259               21 44300051 44327376         PFKL  HGNC:8876      1
3260               21 44300051 44327376         PFKL  HGNC:8876      1
3261               21 44300051 44327376         PFKL  HGNC:8876      1
3262               21 44300051 44327376         PFKL  HGNC:8876      1
3263               21 44300051 44327376         PFKL  HGNC:8876      1
3264               21 44300051 44327376         PFKL  HGNC:8876      1
3265               21 44300051 44327376         PFKL  HGNC:8876      1
3266               21 44300051 44327376         PFKL  HGNC:8876      1
3267               21 44300051 44327376         PFKL  HGNC:8876      1
3268               21 44300051 44327376         PFKL  HGNC:8876      1
3269               21 44300051 44327376         PFKL  HGNC:8876      1
3270               21 44300051 44327376         PFKL  HGNC:8876      1
3271               21 44300051 44327376         PFKL  HGNC:8876      1
3272               21 44300051 44327376         PFKL  HGNC:8876      1
3273               21 44300051 44327376         PFKL  HGNC:8876      1
3274               21 44300051 44327376         PFKL  HGNC:8876      1
3275               21 44300051 44327376         PFKL  HGNC:8876      1
3276               21 44300051 44327376         PFKL  HGNC:8876      1
3277               21 44300051 44327376         PFKL  HGNC:8876      1
3278               21 44300051 44327376         PFKL  HGNC:8876      1
3279               21 44300051 44327376         PFKL  HGNC:8876      1
3280               21 44300051 44327376         PFKL  HGNC:8876      1
3281               21 44300051 44327376         PFKL  HGNC:8876      1
3282               21 44300051 44327376         PFKL  HGNC:8876      1
3283               21 44300051 44327376         PFKL  HGNC:8876      1
3284               21 44300051 44327376         PFKL  HGNC:8876      1
3285               21 44300051 44327376         PFKL  HGNC:8876      1
3286               21 44300051 44327376         PFKL  HGNC:8876      1
3287               21 44300051 44327376         PFKL  HGNC:8876      1
3288               21 44300051 44327376         PFKL  HGNC:8876      1
3289               21 44300051 44327376         PFKL  HGNC:8876      1
3290               21 44300051 44327376         PFKL  HGNC:8876      1
3291               21 44300051 44327376         PFKL  HGNC:8876      1
3292               21 44300051 44327376         PFKL  HGNC:8876      1
3293               21 44300051 44327376         PFKL  HGNC:8876      1
3294               21 44300051 44327376         PFKL  HGNC:8876      1
3295               21 44300051 44327376         PFKL  HGNC:8876      1
3296               21 44300051 44327376         PFKL  HGNC:8876      1
3297               21 44300051 44327376         PFKL  HGNC:8876      1
3298               21 44300051 44327376         PFKL  HGNC:8876      1
3299               21 44300051 44327376         PFKL  HGNC:8876      1
3300               21 44300051 44327376         PFKL  HGNC:8876      1
3301               21 44300051 44327376         PFKL  HGNC:8876      1
3302               21 44300051 44327376         PFKL  HGNC:8876      1
3303               21 44300051 44327376         PFKL  HGNC:8876      1
3304               21 44300051 44327376         PFKL  HGNC:8876      1
3305               21 44300051 44327376         PFKL  HGNC:8876      1
3306               21 44300051 44327376         PFKL  HGNC:8876      1
3307               21 44300051 44327376         PFKL  HGNC:8876      1
3308               21 44300051 44327376         PFKL  HGNC:8876      1
3309               21 44300051 44327376         PFKL  HGNC:8876      1
3310               21 44300051 44327376         PFKL  HGNC:8876      1
3311               21 44300051 44327376         PFKL  HGNC:8876      1
3312               21 44300051 44327376         PFKL  HGNC:8876      1
3313               21 44300051 44327376         PFKL  HGNC:8876      1
3314               21 44300051 44327376         PFKL  HGNC:8876      1
3315               21 44300051 44327376         PFKL  HGNC:8876      1
3316               21 44300051 44327376         PFKL  HGNC:8876      1
3317               21 44300051 44327376         PFKL  HGNC:8876      1
3318               21 44300051 44327376         PFKL  HGNC:8876      1
3319               21 44300051 44327376         PFKL  HGNC:8876      1
3320               21 44300051 44327376         PFKL  HGNC:8876      1
3321               21 44300051 44327376         PFKL  HGNC:8876      1
3322               21 44300051 44327376         PFKL  HGNC:8876      1
3323               21 44300051 44327376         PFKL  HGNC:8876      1
3324               21 44300051 44327376         PFKL  HGNC:8876      1
3325               21 44300051 44327376         PFKL  HGNC:8876      1
3326               21 44300051 44327376         PFKL  HGNC:8876      1
3327               21 44300051 44327376         PFKL  HGNC:8876      1
3328               21 44300051 44327376         PFKL  HGNC:8876      1
3329               21 44300051 44327376         PFKL  HGNC:8876      1
3330               21 44300051 44327376         PFKL  HGNC:8876      1
3331               21 44300051 44327376         PFKL  HGNC:8876      1
3332               21 44300051 44327376         PFKL  HGNC:8876      1
3333               21 44300051 44327376         PFKL  HGNC:8876      1
3334               21 44300051 44327376         PFKL  HGNC:8876      1
3335               21 44300051 44327376         PFKL  HGNC:8876      1
3336               21 44300051 44327376         PFKL  HGNC:8876      1
3337               21 44300051 44327376         PFKL  HGNC:8876      1
3338               21 44300051 44327376         PFKL  HGNC:8876      1
3339               21 44300051 44327376         PFKL  HGNC:8876      1
3340               21 44300051 44327376         PFKL  HGNC:8876      1
3341               21 44300051 44327376         PFKL  HGNC:8876      1
3342               21 44300051 44327376         PFKL  HGNC:8876      1
3343               21 44300051 44327376         PFKL  HGNC:8876      1
3344               21 44300051 44327376         PFKL  HGNC:8876      1
3345               21 44300051 44327376         PFKL  HGNC:8876      1
3346               21 44300051 44327376         PFKL  HGNC:8876      1
3347               21 44300051 44327376         PFKL  HGNC:8876      1
3348               21 44300051 44327376         PFKL  HGNC:8876      1
3349               21 44300051 44327376         PFKL  HGNC:8876      1
3350               21 44300051 44327376         PFKL  HGNC:8876      1
3351               21 44300051 44327376         PFKL  HGNC:8876      1
3352               21 44300051 44327376         PFKL  HGNC:8876      1
3353               21 44300051 44327376         PFKL  HGNC:8876      1
3354               21 44300051 44327376         PFKL  HGNC:8876      1
3355               21 44300051 44327376         PFKL  HGNC:8876      1
3356               21 44300051 44327376         PFKL  HGNC:8876      1
3357               21 44300051 44327376         PFKL  HGNC:8876      1
3358               21 44300051 44327376         PFKL  HGNC:8876      1
3359               21 44300051 44327376         PFKL  HGNC:8876      1
3360               21 44300051 44327376         PFKL  HGNC:8876      1
3361               21 44300051 44327376         PFKL  HGNC:8876      1
3362               21 44300051 44327376         PFKL  HGNC:8876      1
3363               21 44300051 44327376         PFKL  HGNC:8876      1
3364               21 44300051 44327376         PFKL  HGNC:8876      1
3365               21 44300051 44327376         PFKL  HGNC:8876      1
3366               21 44300051 44327376         PFKL  HGNC:8876      1
3367               21 44300051 44327376         PFKL  HGNC:8876      1
3368               21 44300051 44327376         PFKL  HGNC:8876      1
3369               21 44300051 44327376         PFKL  HGNC:8876      1
3370               21 44300051 44327376         PFKL  HGNC:8876      1
3371               21 44300051 44327376         PFKL  HGNC:8876      1
3372               21 44300051 44327376         PFKL  HGNC:8876      1
3373               21 44300051 44327376         PFKL  HGNC:8876      1
3374               21 44300051 44327376         PFKL  HGNC:8876      1
3375               21 44300051 44327376         PFKL  HGNC:8876      1
3376               21 44300051 44327376         PFKL  HGNC:8876      1
3377               21 44300051 44327376         PFKL  HGNC:8876      1
3378               21 44300051 44327376         PFKL  HGNC:8876      1
3379               21 44300051 44327376         PFKL  HGNC:8876      1
3380               21 44300051 44327376         PFKL  HGNC:8876      1
3381               21 44300051 44327376         PFKL  HGNC:8876      1
3382               21 44300051 44327376         PFKL  HGNC:8876      1
3383               21 44300051 44327376         PFKL  HGNC:8876      1
3384               21  8254592  8255514                             -1
3385               21 29351634 29361894    BACH1-IT1 HGNC:40006      1
3386               21 29351634 29361894    BACH1-IT1 HGNC:40006      1
3387               21 29351634 29361894    BACH1-IT1 HGNC:40006      1
3388               21 29351634 29361894    BACH1-IT1 HGNC:40006      1
3389               21 44697172 44698044   KRTAP10-12 HGNC:20533      1
3390               21 44697172 44698044   KRTAP10-12 HGNC:20533      1
3391               21 44697172 44698044   KRTAP10-12 HGNC:20533      1
3392               21 44697172 44698044   KRTAP10-12 HGNC:20533      1
3393               21 44469929 44472516     MTCYBP21 HGNC:51977     -1
3394               21 44469929 44472516     MTCYBP21 HGNC:51977     -1
3395               21 44469929 44472516     MTCYBP21 HGNC:51977     -1
3396               21 44347767 44348295                             -1
3397               21 44328944 44330221                             -1
3398               21 44328944 44330221                             -1
3399               21 44328944 44330221                             -1
3400               21 44328944 44330221                             -1
3401               21 44328944 44330221                             -1
3402               21 29536933 29940033        GRIK1  HGNC:4579     -1
3403               21 29536933 29940033        GRIK1  HGNC:4579     -1
3404               21 29536933 29940033        GRIK1  HGNC:4579     -1
3405               21 29536933 29940033        GRIK1  HGNC:4579     -1
3406               21 29536933 29940033        GRIK1  HGNC:4579     -1
3407               21 29536933 29940033        GRIK1  HGNC:4579     -1
3408               21 29536933 29940033        GRIK1  HGNC:4579     -1
3409               21 29536933 29940033        GRIK1  HGNC:4579     -1
3410               21 29536933 29940033        GRIK1  HGNC:4579     -1
3411               21 29536933 29940033        GRIK1  HGNC:4579     -1
3412               21 29536933 29940033        GRIK1  HGNC:4579     -1
3413               21 29536933 29940033        GRIK1  HGNC:4579     -1
3414               21 29536933 29940033        GRIK1  HGNC:4579     -1
3415               21 29536933 29940033        GRIK1  HGNC:4579     -1
3416               21 29536933 29940033        GRIK1  HGNC:4579     -1
3417               21 29536933 29940033        GRIK1  HGNC:4579     -1
3418               21 29536933 29940033        GRIK1  HGNC:4579     -1
3419               21 29536933 29940033        GRIK1  HGNC:4579     -1
3420               21 29536933 29940033        GRIK1  HGNC:4579     -1
3421               21 29536933 29940033        GRIK1  HGNC:4579     -1
3422               21 29536933 29940033        GRIK1  HGNC:4579     -1
3423               21 29536933 29940033        GRIK1  HGNC:4579     -1
3424               21 29536933 29940033        GRIK1  HGNC:4579     -1
3425               21 29536933 29940033        GRIK1  HGNC:4579     -1
3426               21 29536933 29940033        GRIK1  HGNC:4579     -1
3427               21 29536933 29940033        GRIK1  HGNC:4579     -1
3428               21 29536933 29940033        GRIK1  HGNC:4579     -1
3429               21 29536933 29940033        GRIK1  HGNC:4579     -1
3430               21 29536933 29940033        GRIK1  HGNC:4579     -1
3431               21 29536933 29940033        GRIK1  HGNC:4579     -1
3432               21 29536933 29940033        GRIK1  HGNC:4579     -1
3433               21 29536933 29940033        GRIK1  HGNC:4579     -1
3434               21 29536933 29940033        GRIK1  HGNC:4579     -1
3435               21 29536933 29940033        GRIK1  HGNC:4579     -1
3436               21 29536933 29940033        GRIK1  HGNC:4579     -1
3437               21 29536933 29940033        GRIK1  HGNC:4579     -1
3438               21 29536933 29940033        GRIK1  HGNC:4579     -1
3439               21 29536933 29940033        GRIK1  HGNC:4579     -1
3440               21 29536933 29940033        GRIK1  HGNC:4579     -1
3441               21 29536933 29940033        GRIK1  HGNC:4579     -1
3442               21 29536933 29940033        GRIK1  HGNC:4579     -1
3443               21 29536933 29940033        GRIK1  HGNC:4579     -1
3444               21 29536933 29940033        GRIK1  HGNC:4579     -1
3445               21 29536933 29940033        GRIK1  HGNC:4579     -1
3446               21 29536933 29940033        GRIK1  HGNC:4579     -1
3447               21 29536933 29940033        GRIK1  HGNC:4579     -1
3448               21 29536933 29940033        GRIK1  HGNC:4579     -1
3449               21 29536933 29940033        GRIK1  HGNC:4579     -1
3450               21 29536933 29940033        GRIK1  HGNC:4579     -1
3451               21 29536933 29940033        GRIK1  HGNC:4579     -1
3452               21 29536933 29940033        GRIK1  HGNC:4579     -1
3453               21 29536933 29940033        GRIK1  HGNC:4579     -1
3454               21 29536933 29940033        GRIK1  HGNC:4579     -1
3455               21 29536933 29940033        GRIK1  HGNC:4579     -1
3456               21 29536933 29940033        GRIK1  HGNC:4579     -1
3457               21 29536933 29940033        GRIK1  HGNC:4579     -1
3458               21 29536933 29940033        GRIK1  HGNC:4579     -1
3459               21 29536933 29940033        GRIK1  HGNC:4579     -1
3460               21 29536933 29940033        GRIK1  HGNC:4579     -1
3461               21 29536933 29940033        GRIK1  HGNC:4579     -1
3462               21 29536933 29940033        GRIK1  HGNC:4579     -1
3463               21 29536933 29940033        GRIK1  HGNC:4579     -1
3464               21 29536933 29940033        GRIK1  HGNC:4579     -1
3465               21 29536933 29940033        GRIK1  HGNC:4579     -1
3466               21 29536933 29940033        GRIK1  HGNC:4579     -1
3467               21 29536933 29940033        GRIK1  HGNC:4579     -1
3468               21 29536933 29940033        GRIK1  HGNC:4579     -1
3469               21 29536933 29940033        GRIK1  HGNC:4579     -1
3470               21 29536933 29940033        GRIK1  HGNC:4579     -1
3471               21 29536933 29940033        GRIK1  HGNC:4579     -1
3472               21 29536933 29940033        GRIK1  HGNC:4579     -1
3473               21 29536933 29940033        GRIK1  HGNC:4579     -1
3474               21 29536933 29940033        GRIK1  HGNC:4579     -1
3475               21 29536933 29940033        GRIK1  HGNC:4579     -1
3476               21 29536933 29940033        GRIK1  HGNC:4579     -1
3477               21 29536933 29940033        GRIK1  HGNC:4579     -1
3478               21 29536933 29940033        GRIK1  HGNC:4579     -1
3479               21 29536933 29940033        GRIK1  HGNC:4579     -1
3480               21 29536933 29940033        GRIK1  HGNC:4579     -1
3481               21 29536933 29940033        GRIK1  HGNC:4579     -1
3482               21 29536933 29940033        GRIK1  HGNC:4579     -1
3483               21 29536933 29940033        GRIK1  HGNC:4579     -1
3484               21 29536933 29940033        GRIK1  HGNC:4579     -1
3485               21 29536933 29940033        GRIK1  HGNC:4579     -1
3486               21 29536933 29940033        GRIK1  HGNC:4579     -1
3487               21 29536933 29940033        GRIK1  HGNC:4579     -1
3488               21 29536933 29940033        GRIK1  HGNC:4579     -1
3489               21 29536933 29940033        GRIK1  HGNC:4579     -1
3490               21 29536933 29940033        GRIK1  HGNC:4579     -1
3491               21 29536933 29940033        GRIK1  HGNC:4579     -1
3492               21 29536933 29940033        GRIK1  HGNC:4579     -1
3493               21 29536933 29940033        GRIK1  HGNC:4579     -1
3494               21 29536933 29940033        GRIK1  HGNC:4579     -1
3495               21 29536933 29940033        GRIK1  HGNC:4579     -1
3496               21 29536933 29940033        GRIK1  HGNC:4579     -1
3497               21 29536933 29940033        GRIK1  HGNC:4579     -1
3498               21 29536933 29940033        GRIK1  HGNC:4579     -1
3499               21 29536933 29940033        GRIK1  HGNC:4579     -1
3500               21 29536933 29940033        GRIK1  HGNC:4579     -1
3501               21 29536933 29940033        GRIK1  HGNC:4579     -1
3502               21 29536933 29940033        GRIK1  HGNC:4579     -1
3503               21 29536933 29940033        GRIK1  HGNC:4579     -1
3504               21 29536933 29940033        GRIK1  HGNC:4579     -1
3505               21 29536933 29940033        GRIK1  HGNC:4579     -1
3506               21 29536933 29940033        GRIK1  HGNC:4579     -1
3507               21 29536933 29940033        GRIK1  HGNC:4579     -1
3508               21 29536933 29940033        GRIK1  HGNC:4579     -1
3509               21 29536933 29940033        GRIK1  HGNC:4579     -1
3510               21 29536933 29940033        GRIK1  HGNC:4579     -1
3511               21 29536933 29940033        GRIK1  HGNC:4579     -1
3512               21 29536933 29940033        GRIK1  HGNC:4579     -1
3513               21 29536933 29940033        GRIK1  HGNC:4579     -1
3514               21 29536933 29940033        GRIK1  HGNC:4579     -1
3515               21 29536933 29940033        GRIK1  HGNC:4579     -1
3516               21 29536933 29940033        GRIK1  HGNC:4579     -1
3517               21 29536933 29940033        GRIK1  HGNC:4579     -1
3518               21 29536933 29940033        GRIK1  HGNC:4579     -1
3519               21 29536933 29940033        GRIK1  HGNC:4579     -1
3520               21 29536933 29940033        GRIK1  HGNC:4579     -1
3521               21 29536933 29940033        GRIK1  HGNC:4579     -1
3522               21 29536933 29940033        GRIK1  HGNC:4579     -1
3523               21 29536933 29940033        GRIK1  HGNC:4579     -1
3524               21 29536933 29940033        GRIK1  HGNC:4579     -1
3525               21 29536933 29940033        GRIK1  HGNC:4579     -1
3526               21 29536933 29940033        GRIK1  HGNC:4579     -1
3527               21 29536933 29940033        GRIK1  HGNC:4579     -1
3528               21  7744962  7777853      SMIM11B HGNC:51846      1
3529               21  7744962  7777853      SMIM11B HGNC:51846      1
3530               21  7744962  7777853      SMIM11B HGNC:51846      1
3531               21  7744962  7777853      SMIM11B HGNC:51846      1
3532               21  7744962  7777853      SMIM11B HGNC:51846      1
3533               21  7744962  7777853      SMIM11B HGNC:51846      1
3534               21  7744962  7777853      SMIM11B HGNC:51846      1
3535               21  7744962  7777853      SMIM11B HGNC:51846      1
3536               21  7744962  7777853      SMIM11B HGNC:51846      1
3537               21  7744962  7777853      SMIM11B HGNC:51846      1
3538               21  7744962  7777853      SMIM11B HGNC:51846      1
3539               21  7744962  7777853      SMIM11B HGNC:51846      1
3540               21  7744962  7777853      SMIM11B HGNC:51846      1
3541               21  7744962  7777853      SMIM11B HGNC:51846      1
3542               21  7744962  7777853      SMIM11B HGNC:51846      1
3543               21  7744962  7777853      SMIM11B HGNC:51846      1
3544               21  7744962  7777853      SMIM11B HGNC:51846      1
3545               21  7744962  7777853      SMIM11B HGNC:51846      1
3546               21  7744962  7777853      SMIM11B HGNC:51846      1
3547               21  7744962  7777853      SMIM11B HGNC:51846      1
3548               21  7744962  7777853      SMIM11B HGNC:51846      1
3549               21  7744962  7777853      SMIM11B HGNC:51846      1
3550               21  7744962  7777853      SMIM11B HGNC:51846      1
3551               21  7744962  7777853      SMIM11B HGNC:51846      1
3552               21  7744962  7777853      SMIM11B HGNC:51846      1
3553               21  7744962  7777853      SMIM11B HGNC:51846      1
3554               21  7744962  7777853      SMIM11B HGNC:51846      1
3555               21  7421442  7425839                             -1
3556               21  7421442  7425839                             -1
3557               21  7421442  7425839                             -1
3558               21  7421442  7425839                             -1
3559               21  7421442  7425839                             -1
3560               21  7421442  7425839                             -1
3561               21  7421442  7425839                             -1
3562               21  7421442  7425839                             -1
3563               21  7421442  7425839                             -1
3564               21  7421442  7425839                             -1
3565               21 28997613 28998033      RPL23P2 HGNC:10324     -1
3566               21 46188141 46228824          LSS  HGNC:6708     -1
3567               21 46188141 46228824          LSS  HGNC:6708     -1
3568               21 46188141 46228824          LSS  HGNC:6708     -1
3569               21 46188141 46228824          LSS  HGNC:6708     -1
3570               21 46188141 46228824          LSS  HGNC:6708     -1
3571               21 46188141 46228824          LSS  HGNC:6708     -1
3572               21 46188141 46228824          LSS  HGNC:6708     -1
3573               21 46188141 46228824          LSS  HGNC:6708     -1
3574               21 46188141 46228824          LSS  HGNC:6708     -1
3575               21 46188141 46228824          LSS  HGNC:6708     -1
3576               21 46188141 46228824          LSS  HGNC:6708     -1
3577               21 46188141 46228824          LSS  HGNC:6708     -1
3578               21 46188141 46228824          LSS  HGNC:6708     -1
3579               21 46188141 46228824          LSS  HGNC:6708     -1
3580               21 46188141 46228824          LSS  HGNC:6708     -1
3581               21 46188141 46228824          LSS  HGNC:6708     -1
3582               21 46188141 46228824          LSS  HGNC:6708     -1
3583               21 46188141 46228824          LSS  HGNC:6708     -1
3584               21 46188141 46228824          LSS  HGNC:6708     -1
3585               21 46188141 46228824          LSS  HGNC:6708     -1
3586               21 46188141 46228824          LSS  HGNC:6708     -1
3587               21 46188141 46228824          LSS  HGNC:6708     -1
3588               21 46188141 46228824          LSS  HGNC:6708     -1
3589               21 46188141 46228824          LSS  HGNC:6708     -1
3590               21 46188141 46228824          LSS  HGNC:6708     -1
3591               21 46188141 46228824          LSS  HGNC:6708     -1
3592               21 46188141 46228824          LSS  HGNC:6708     -1
3593               21 46188141 46228824          LSS  HGNC:6708     -1
3594               21 46188141 46228824          LSS  HGNC:6708     -1
3595               21 46188141 46228824          LSS  HGNC:6708     -1
3596               21 46188141 46228824          LSS  HGNC:6708     -1
3597               21 46188141 46228824          LSS  HGNC:6708     -1
3598               21 46188141 46228824          LSS  HGNC:6708     -1
3599               21 46188141 46228824          LSS  HGNC:6708     -1
3600               21 46188141 46228824          LSS  HGNC:6708     -1
3601               21 46188141 46228824          LSS  HGNC:6708     -1
3602               21 46188141 46228824          LSS  HGNC:6708     -1
3603               21 46188141 46228824          LSS  HGNC:6708     -1
3604               21 46188141 46228824          LSS  HGNC:6708     -1
3605               21 46188141 46228824          LSS  HGNC:6708     -1
3606               21 46188141 46228824          LSS  HGNC:6708     -1
3607               21 46188141 46228824          LSS  HGNC:6708     -1
3608               21 46188141 46228824          LSS  HGNC:6708     -1
3609               21 46188141 46228824          LSS  HGNC:6708     -1
3610               21 46188141 46228824          LSS  HGNC:6708     -1
3611               21 46188141 46228824          LSS  HGNC:6708     -1
3612               21 46188141 46228824          LSS  HGNC:6708     -1
3613               21 46188141 46228824          LSS  HGNC:6708     -1
3614               21 46188141 46228824          LSS  HGNC:6708     -1
3615               21 46188141 46228824          LSS  HGNC:6708     -1
3616               21 46188141 46228824          LSS  HGNC:6708     -1
3617               21 46188141 46228824          LSS  HGNC:6708     -1
3618               21 46188141 46228824          LSS  HGNC:6708     -1
3619               21 46188141 46228824          LSS  HGNC:6708     -1
3620               21 46188141 46228824          LSS  HGNC:6708     -1
3621               21 46188141 46228824          LSS  HGNC:6708     -1
3622               21 46188141 46228824          LSS  HGNC:6708     -1
3623               21 46188141 46228824          LSS  HGNC:6708     -1
3624               21 46188141 46228824          LSS  HGNC:6708     -1
3625               21 46188141 46228824          LSS  HGNC:6708     -1
3626               21 46188141 46228824          LSS  HGNC:6708     -1
3627               21 46188141 46228824          LSS  HGNC:6708     -1
3628               21 46188141 46228824          LSS  HGNC:6708     -1
3629               21 46188141 46228824          LSS  HGNC:6708     -1
3630               21 46188141 46228824          LSS  HGNC:6708     -1
3631               21 46188141 46228824          LSS  HGNC:6708     -1
3632               21 46188141 46228824          LSS  HGNC:6708     -1
3633               21 46188141 46228824          LSS  HGNC:6708     -1
3634               21 46188141 46228824          LSS  HGNC:6708     -1
3635               21 46188141 46228824          LSS  HGNC:6708     -1
3636               21 46188141 46228824          LSS  HGNC:6708     -1
3637               21 46188141 46228824          LSS  HGNC:6708     -1
3638               21 46188141 46228824          LSS  HGNC:6708     -1
3639               21 46188141 46228824          LSS  HGNC:6708     -1
3640               21 46188141 46228824          LSS  HGNC:6708     -1
3641               21 46188141 46228824          LSS  HGNC:6708     -1
3642               21 46188141 46228824          LSS  HGNC:6708     -1
3643               21 46188141 46228824          LSS  HGNC:6708     -1
3644               21 46188141 46228824          LSS  HGNC:6708     -1
3645               21 46188141 46228824          LSS  HGNC:6708     -1
3646               21 46188141 46228824          LSS  HGNC:6708     -1
3647               21 46188141 46228824          LSS  HGNC:6708     -1
3648               21 46188141 46228824          LSS  HGNC:6708     -1
3649               21 46188141 46228824          LSS  HGNC:6708     -1
3650               21 46188141 46228824          LSS  HGNC:6708     -1
3651               21 46188141 46228824          LSS  HGNC:6708     -1
3652               21 46188141 46228824          LSS  HGNC:6708     -1
3653               21 46188141 46228824          LSS  HGNC:6708     -1
3654               21 46188141 46228824          LSS  HGNC:6708     -1
3655               21 46188141 46228824          LSS  HGNC:6708     -1
3656               21 46188141 46228824          LSS  HGNC:6708     -1
3657               21 46188141 46228824          LSS  HGNC:6708     -1
3658               21 46188141 46228824          LSS  HGNC:6708     -1
3659               21 46188141 46228824          LSS  HGNC:6708     -1
3660               21 46188141 46228824          LSS  HGNC:6708     -1
3661               21 46188141 46228824          LSS  HGNC:6708     -1
3662               21 46188141 46228824          LSS  HGNC:6708     -1
3663               21 46188141 46228824          LSS  HGNC:6708     -1
3664               21 46188141 46228824          LSS  HGNC:6708     -1
3665               21 46188141 46228824          LSS  HGNC:6708     -1
3666               21 46188141 46228824          LSS  HGNC:6708     -1
3667               21 46188141 46228824          LSS  HGNC:6708     -1
3668               21 46188141 46228824          LSS  HGNC:6708     -1
3669               21 46188141 46228824          LSS  HGNC:6708     -1
3670               21 46188141 46228824          LSS  HGNC:6708     -1
3671               21 46188141 46228824          LSS  HGNC:6708     -1
3672               21 46188141 46228824          LSS  HGNC:6708     -1
3673               21 46188141 46228824          LSS  HGNC:6708     -1
3674               21 46188141 46228824          LSS  HGNC:6708     -1
3675               21 46188141 46228824          LSS  HGNC:6708     -1
3676               21 46188141 46228824          LSS  HGNC:6708     -1
3677               21 46188141 46228824          LSS  HGNC:6708     -1
3678               21 46188141 46228824          LSS  HGNC:6708     -1
3679               21 46188141 46228824          LSS  HGNC:6708     -1
3680               21 46188141 46228824          LSS  HGNC:6708     -1
3681               21 41798225 41879482       PRDM15 HGNC:13999     -1
3682               21 41798225 41879482       PRDM15 HGNC:13999     -1
3683               21 41798225 41879482       PRDM15 HGNC:13999     -1
3684               21 41798225 41879482       PRDM15 HGNC:13999     -1
3685               21 41798225 41879482       PRDM15 HGNC:13999     -1
3686               21 41798225 41879482       PRDM15 HGNC:13999     -1
3687               21 41798225 41879482       PRDM15 HGNC:13999     -1
3688               21 41798225 41879482       PRDM15 HGNC:13999     -1
3689               21 41798225 41879482       PRDM15 HGNC:13999     -1
3690               21 41798225 41879482       PRDM15 HGNC:13999     -1
3691               21 41798225 41879482       PRDM15 HGNC:13999     -1
3692               21 41798225 41879482       PRDM15 HGNC:13999     -1
3693               21 41798225 41879482       PRDM15 HGNC:13999     -1
3694               21 41798225 41879482       PRDM15 HGNC:13999     -1
3695               21 41798225 41879482       PRDM15 HGNC:13999     -1
3696               21 41798225 41879482       PRDM15 HGNC:13999     -1
3697               21 41798225 41879482       PRDM15 HGNC:13999     -1
3698               21 41798225 41879482       PRDM15 HGNC:13999     -1
3699               21 41798225 41879482       PRDM15 HGNC:13999     -1
3700               21 41798225 41879482       PRDM15 HGNC:13999     -1
3701               21 41798225 41879482       PRDM15 HGNC:13999     -1
3702               21 41798225 41879482       PRDM15 HGNC:13999     -1
3703               21 41798225 41879482       PRDM15 HGNC:13999     -1
3704               21 41798225 41879482       PRDM15 HGNC:13999     -1
3705               21 41798225 41879482       PRDM15 HGNC:13999     -1
3706               21 41798225 41879482       PRDM15 HGNC:13999     -1
3707               21 41798225 41879482       PRDM15 HGNC:13999     -1
3708               21 41798225 41879482       PRDM15 HGNC:13999     -1
3709               21 41798225 41879482       PRDM15 HGNC:13999     -1
3710               21 41798225 41879482       PRDM15 HGNC:13999     -1
3711               21 41798225 41879482       PRDM15 HGNC:13999     -1
3712               21 41798225 41879482       PRDM15 HGNC:13999     -1
3713               21 41798225 41879482       PRDM15 HGNC:13999     -1
3714               21 41798225 41879482       PRDM15 HGNC:13999     -1
3715               21 41798225 41879482       PRDM15 HGNC:13999     -1
3716               21 41798225 41879482       PRDM15 HGNC:13999     -1
3717               21 41798225 41879482       PRDM15 HGNC:13999     -1
3718               21 41798225 41879482       PRDM15 HGNC:13999     -1
3719               21 41798225 41879482       PRDM15 HGNC:13999     -1
3720               21 41798225 41879482       PRDM15 HGNC:13999     -1
3721               21 41798225 41879482       PRDM15 HGNC:13999     -1
3722               21 41798225 41879482       PRDM15 HGNC:13999     -1
3723               21 41798225 41879482       PRDM15 HGNC:13999     -1
3724               21 41798225 41879482       PRDM15 HGNC:13999     -1
3725               21 41798225 41879482       PRDM15 HGNC:13999     -1
3726               21 41798225 41879482       PRDM15 HGNC:13999     -1
3727               21 41798225 41879482       PRDM15 HGNC:13999     -1
3728               21 41798225 41879482       PRDM15 HGNC:13999     -1
3729               21 41798225 41879482       PRDM15 HGNC:13999     -1
3730               21 41798225 41879482       PRDM15 HGNC:13999     -1
3731               21 41798225 41879482       PRDM15 HGNC:13999     -1
3732               21 41798225 41879482       PRDM15 HGNC:13999     -1
3733               21 41798225 41879482       PRDM15 HGNC:13999     -1
3734               21 41798225 41879482       PRDM15 HGNC:13999     -1
3735               21 41798225 41879482       PRDM15 HGNC:13999     -1
3736               21 41798225 41879482       PRDM15 HGNC:13999     -1
3737               21 41798225 41879482       PRDM15 HGNC:13999     -1
3738               21 41798225 41879482       PRDM15 HGNC:13999     -1
3739               21 41798225 41879482       PRDM15 HGNC:13999     -1
3740               21 41798225 41879482       PRDM15 HGNC:13999     -1
3741               21 41798225 41879482       PRDM15 HGNC:13999     -1
3742               21 41798225 41879482       PRDM15 HGNC:13999     -1
3743               21 41798225 41879482       PRDM15 HGNC:13999     -1
3744               21 41798225 41879482       PRDM15 HGNC:13999     -1
3745               21 41798225 41879482       PRDM15 HGNC:13999     -1
3746               21 41798225 41879482       PRDM15 HGNC:13999     -1
3747               21 41798225 41879482       PRDM15 HGNC:13999     -1
3748               21 41798225 41879482       PRDM15 HGNC:13999     -1
3749               21 41798225 41879482       PRDM15 HGNC:13999     -1
3750               21 41798225 41879482       PRDM15 HGNC:13999     -1
3751               21 41798225 41879482       PRDM15 HGNC:13999     -1
3752               21 41798225 41879482       PRDM15 HGNC:13999     -1
3753               21 41798225 41879482       PRDM15 HGNC:13999     -1
3754               21 41798225 41879482       PRDM15 HGNC:13999     -1
3755               21 41798225 41879482       PRDM15 HGNC:13999     -1
3756               21 41798225 41879482       PRDM15 HGNC:13999     -1
3757               21 41798225 41879482       PRDM15 HGNC:13999     -1
3758               21 41798225 41879482       PRDM15 HGNC:13999     -1
3759               21 41798225 41879482       PRDM15 HGNC:13999     -1
3760               21 41798225 41879482       PRDM15 HGNC:13999     -1
3761               21 41798225 41879482       PRDM15 HGNC:13999     -1
3762               21 41798225 41879482       PRDM15 HGNC:13999     -1
3763               21 41798225 41879482       PRDM15 HGNC:13999     -1
3764               21 41798225 41879482       PRDM15 HGNC:13999     -1
3765               21 41798225 41879482       PRDM15 HGNC:13999     -1
3766               21 41798225 41879482       PRDM15 HGNC:13999     -1
3767               21 41798225 41879482       PRDM15 HGNC:13999     -1
3768               21 41798225 41879482       PRDM15 HGNC:13999     -1
3769               21 41798225 41879482       PRDM15 HGNC:13999     -1
3770               21 41798225 41879482       PRDM15 HGNC:13999     -1
3771               21 41798225 41879482       PRDM15 HGNC:13999     -1
3772               21 41798225 41879482       PRDM15 HGNC:13999     -1
3773               21 41798225 41879482       PRDM15 HGNC:13999     -1
3774               21 41798225 41879482       PRDM15 HGNC:13999     -1
3775               21 41798225 41879482       PRDM15 HGNC:13999     -1
3776               21 41798225 41879482       PRDM15 HGNC:13999     -1
3777               21 41798225 41879482       PRDM15 HGNC:13999     -1
3778               21 41798225 41879482       PRDM15 HGNC:13999     -1
3779               21 41798225 41879482       PRDM15 HGNC:13999     -1
3780               21 41798225 41879482       PRDM15 HGNC:13999     -1
3781               21 41798225 41879482       PRDM15 HGNC:13999     -1
3782               21 41798225 41879482       PRDM15 HGNC:13999     -1
3783               21 41798225 41879482       PRDM15 HGNC:13999     -1
3784               21 41798225 41879482       PRDM15 HGNC:13999     -1
3785               21 41798225 41879482       PRDM15 HGNC:13999     -1
3786               21 41798225 41879482       PRDM15 HGNC:13999     -1
3787               21 41798225 41879482       PRDM15 HGNC:13999     -1
3788               21 41798225 41879482       PRDM15 HGNC:13999     -1
3789               21 41798225 41879482       PRDM15 HGNC:13999     -1
3790               21 41798225 41879482       PRDM15 HGNC:13999     -1
3791               21 41798225 41879482       PRDM15 HGNC:13999     -1
3792               21 41798225 41879482       PRDM15 HGNC:13999     -1
3793               21 41798225 41879482       PRDM15 HGNC:13999     -1
3794               21 41798225 41879482       PRDM15 HGNC:13999     -1
3795               21 41798225 41879482       PRDM15 HGNC:13999     -1
3796               21 41798225 41879482       PRDM15 HGNC:13999     -1
3797               21 41798225 41879482       PRDM15 HGNC:13999     -1
3798               21 41798225 41879482       PRDM15 HGNC:13999     -1
3799               21 41798225 41879482       PRDM15 HGNC:13999     -1
3800               21 41798225 41879482       PRDM15 HGNC:13999     -1
3801               21 41798225 41879482       PRDM15 HGNC:13999     -1
3802               21 41798225 41879482       PRDM15 HGNC:13999     -1
3803               21 41798225 41879482       PRDM15 HGNC:13999     -1
3804               21 41798225 41879482       PRDM15 HGNC:13999     -1
3805               21 41798225 41879482       PRDM15 HGNC:13999     -1
3806               21 41798225 41879482       PRDM15 HGNC:13999     -1
3807               21 41798225 41879482       PRDM15 HGNC:13999     -1
3808               21 41798225 41879482       PRDM15 HGNC:13999     -1
3809               21 41798225 41879482       PRDM15 HGNC:13999     -1
3810               21 41798225 41879482       PRDM15 HGNC:13999     -1
3811               21 41798225 41879482       PRDM15 HGNC:13999     -1
3812               21 41798225 41879482       PRDM15 HGNC:13999     -1
3813               21 41798225 41879482       PRDM15 HGNC:13999     -1
3814               21 41798225 41879482       PRDM15 HGNC:13999     -1
3815               21 41798225 41879482       PRDM15 HGNC:13999     -1
3816               21 41798225 41879482       PRDM15 HGNC:13999     -1
3817               21 41798225 41879482       PRDM15 HGNC:13999     -1
3818               21 41798225 41879482       PRDM15 HGNC:13999     -1
3819               21 41798225 41879482       PRDM15 HGNC:13999     -1
3820               21 41798225 41879482       PRDM15 HGNC:13999     -1
3821               21 41798225 41879482       PRDM15 HGNC:13999     -1
3822               21 41798225 41879482       PRDM15 HGNC:13999     -1
3823               21 41798225 41879482       PRDM15 HGNC:13999     -1
3824               21 41798225 41879482       PRDM15 HGNC:13999     -1
3825               21 41798225 41879482       PRDM15 HGNC:13999     -1
3826               21 41798225 41879482       PRDM15 HGNC:13999     -1
3827               21 41798225 41879482       PRDM15 HGNC:13999     -1
3828               21 41798225 41879482       PRDM15 HGNC:13999     -1
3829               21 41798225 41879482       PRDM15 HGNC:13999     -1
3830               21 41798225 41879482       PRDM15 HGNC:13999     -1
3831               21 41798225 41879482       PRDM15 HGNC:13999     -1
3832               21 41798225 41879482       PRDM15 HGNC:13999     -1
3833               21 41798225 41879482       PRDM15 HGNC:13999     -1
3834               21 41798225 41879482       PRDM15 HGNC:13999     -1
3835               21 41798225 41879482       PRDM15 HGNC:13999     -1
3836               21 41798225 41879482       PRDM15 HGNC:13999     -1
3837               21 41798225 41879482       PRDM15 HGNC:13999     -1
3838               21 41798225 41879482       PRDM15 HGNC:13999     -1
3839               21 41798225 41879482       PRDM15 HGNC:13999     -1
3840               21 41798225 41879482       PRDM15 HGNC:13999     -1
3841               21 41798225 41879482       PRDM15 HGNC:13999     -1
3842               21 41798225 41879482       PRDM15 HGNC:13999     -1
3843               21 41798225 41879482       PRDM15 HGNC:13999     -1
3844               21 41798225 41879482       PRDM15 HGNC:13999     -1
3845               21 41798225 41879482       PRDM15 HGNC:13999     -1
3846               21 41798225 41879482       PRDM15 HGNC:13999     -1
3847               21 41798225 41879482       PRDM15 HGNC:13999     -1
3848               21 41798225 41879482       PRDM15 HGNC:13999     -1
3849               21 41798225 41879482       PRDM15 HGNC:13999     -1
3850               21 41798225 41879482       PRDM15 HGNC:13999     -1
3851               21 41798225 41879482       PRDM15 HGNC:13999     -1
3852               21 41798225 41879482       PRDM15 HGNC:13999     -1
3853               21 41798225 41879482       PRDM15 HGNC:13999     -1
3854               21 41798225 41879482       PRDM15 HGNC:13999     -1
3855               21 41798225 41879482       PRDM15 HGNC:13999     -1
3856               21 41798225 41879482       PRDM15 HGNC:13999     -1
3857               21 41798225 41879482       PRDM15 HGNC:13999     -1
3858               21 41798225 41879482       PRDM15 HGNC:13999     -1
3859               21 41798225 41879482       PRDM15 HGNC:13999     -1
3860               21 41798225 41879482       PRDM15 HGNC:13999     -1
3861               21 41798225 41879482       PRDM15 HGNC:13999     -1
3862               21 41798225 41879482       PRDM15 HGNC:13999     -1
3863               21 41798225 41879482       PRDM15 HGNC:13999     -1
3864               21 41798225 41879482       PRDM15 HGNC:13999     -1
3865               21 41798225 41879482       PRDM15 HGNC:13999     -1
3866               21 41798225 41879482       PRDM15 HGNC:13999     -1
3867               21 41798225 41879482       PRDM15 HGNC:13999     -1
3868               21 41798225 41879482       PRDM15 HGNC:13999     -1
3869               21 41798225 41879482       PRDM15 HGNC:13999     -1
3870               21 41798225 41879482       PRDM15 HGNC:13999     -1
3871               21 41798225 41879482       PRDM15 HGNC:13999     -1
3872               21 41798225 41879482       PRDM15 HGNC:13999     -1
3873               21 41798225 41879482       PRDM15 HGNC:13999     -1
3874               21 41798225 41879482       PRDM15 HGNC:13999     -1
3875               21 41798225 41879482       PRDM15 HGNC:13999     -1
3876               21 41798225 41879482       PRDM15 HGNC:13999     -1
3877               21 41798225 41879482       PRDM15 HGNC:13999     -1
3878               21 41798225 41879482       PRDM15 HGNC:13999     -1
3879               21 41798225 41879482       PRDM15 HGNC:13999     -1
3880               21 41798225 41879482       PRDM15 HGNC:13999     -1
3881               21 41798225 41879482       PRDM15 HGNC:13999     -1
3882               21 41798225 41879482       PRDM15 HGNC:13999     -1
3883               21 41798225 41879482       PRDM15 HGNC:13999     -1
3884               21 41798225 41879482       PRDM15 HGNC:13999     -1
3885               21 41798225 41879482       PRDM15 HGNC:13999     -1
3886               21 41798225 41879482       PRDM15 HGNC:13999     -1
3887               21 41798225 41879482       PRDM15 HGNC:13999     -1
3888               21 41798225 41879482       PRDM15 HGNC:13999     -1
3889               21 41798225 41879482       PRDM15 HGNC:13999     -1
3890               21 41798225 41879482       PRDM15 HGNC:13999     -1
3891               21 41798225 41879482       PRDM15 HGNC:13999     -1
3892               21 41798225 41879482       PRDM15 HGNC:13999     -1
3893               21 41798225 41879482       PRDM15 HGNC:13999     -1
3894               21 41798225 41879482       PRDM15 HGNC:13999     -1
3895               21 41798225 41879482       PRDM15 HGNC:13999     -1
3896               21 41798225 41879482       PRDM15 HGNC:13999     -1
3897               21 41798225 41879482       PRDM15 HGNC:13999     -1
3898               21 41798225 41879482       PRDM15 HGNC:13999     -1
3899               21 41798225 41879482       PRDM15 HGNC:13999     -1
3900               21 41798225 41879482       PRDM15 HGNC:13999     -1
3901               21 41798225 41879482       PRDM15 HGNC:13999     -1
3902               21 41798225 41879482       PRDM15 HGNC:13999     -1
3903               21 41798225 41879482       PRDM15 HGNC:13999     -1
3904               21 41798225 41879482       PRDM15 HGNC:13999     -1
3905               21 41798225 41879482       PRDM15 HGNC:13999     -1
3906               21 41798225 41879482       PRDM15 HGNC:13999     -1
3907               21 41798225 41879482       PRDM15 HGNC:13999     -1
3908               21 41798225 41879482       PRDM15 HGNC:13999     -1
3909               21 41798225 41879482       PRDM15 HGNC:13999     -1
3910               21 41798225 41879482       PRDM15 HGNC:13999     -1
3911               21 41798225 41879482       PRDM15 HGNC:13999     -1
3912               21 41798225 41879482       PRDM15 HGNC:13999     -1
3913               21 41798225 41879482       PRDM15 HGNC:13999     -1
3914               21 41798225 41879482       PRDM15 HGNC:13999     -1
3915               21 41798225 41879482       PRDM15 HGNC:13999     -1
3916               21 41798225 41879482       PRDM15 HGNC:13999     -1
3917               21 41798225 41879482       PRDM15 HGNC:13999     -1
3918               21 41798225 41879482       PRDM15 HGNC:13999     -1
3919               21 41798225 41879482       PRDM15 HGNC:13999     -1
3920               21 41798225 41879482       PRDM15 HGNC:13999     -1
3921               21 41798225 41879482       PRDM15 HGNC:13999     -1
3922               21 41798225 41879482       PRDM15 HGNC:13999     -1
3923               21 41798225 41879482       PRDM15 HGNC:13999     -1
3924               21 41798225 41879482       PRDM15 HGNC:13999     -1
3925               21 41798225 41879482       PRDM15 HGNC:13999     -1
3926               21 41798225 41879482       PRDM15 HGNC:13999     -1
3927               21 41798225 41879482       PRDM15 HGNC:13999     -1
3928               21 41798225 41879482       PRDM15 HGNC:13999     -1
3929               21 41798225 41879482       PRDM15 HGNC:13999     -1
3930               21 41798225 41879482       PRDM15 HGNC:13999     -1
3931               21 41798225 41879482       PRDM15 HGNC:13999     -1
3932               21 41798225 41879482       PRDM15 HGNC:13999     -1
3933               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3934               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3935               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3936               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3937               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3938               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3939               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3940               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3941               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3942               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3943               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3944               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3945               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3946               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3947               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3948               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3949               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3950               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3951               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3952               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3953               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3954               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3955               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3956               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3957               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3958               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3959               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3960               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3961               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3962               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3963               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3964               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3965               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3966               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3967               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3968               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3969               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3970               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3971               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3972               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3973               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3974               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3975               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3976               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3977               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3978               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3979               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3980               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3981               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3982               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3983               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3984               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3985               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3986               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3987               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3988               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3989               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3990               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3991               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3992               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3993               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3994               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3995               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3996               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3997               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3998               21 29077471 29175889     MAP3K7CL HGNC:16457      1
3999               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4000               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4001               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4002               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4003               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4004               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4005               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4006               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4007               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4008               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4009               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4010               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4011               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4012               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4013               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4014               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4015               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4016               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4017               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4018               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4019               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4020               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4021               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4022               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4023               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4024               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4025               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4026               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4027               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4028               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4029               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4030               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4031               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4032               21 29077471 29175889     MAP3K7CL HGNC:16457      1
4033               21 29127701 29128188      RPL12P9 HGNC:23766     -1
4034               21  6060340  6076305    LINC01669 HGNC:52457      1
4035               21  6060340  6076305    LINC01669 HGNC:52457      1
4036               21  6060340  6076305    LINC01669 HGNC:52457      1
4037               21  6060340  6076305    LINC01669 HGNC:52457      1
4038               21  6060340  6076305    LINC01669 HGNC:52457      1
4039               21  6060340  6076305    LINC01669 HGNC:52457      1
4040               21  6060340  6076305    LINC01669 HGNC:52457      1
4041               21  6060340  6076305    LINC01669 HGNC:52457      1
4042               21  6060340  6076305    LINC01669 HGNC:52457      1
4043               21  6060340  6076305    LINC01669 HGNC:52457      1
4044               21  6060340  6076305    LINC01669 HGNC:52457      1
4045               21  6060340  6076305    LINC01669 HGNC:52457      1
4046               21  6060340  6076305    LINC01669 HGNC:52457      1
4047               21  6060340  6076305    LINC01669 HGNC:52457      1
4048               21  6060340  6076305    LINC01669 HGNC:52457      1
4049               21  5703182  5705637                             -1
4050               21  5705345  5707160                              1
4051               21  5705345  5707160                              1
4052               21 23065491 23131206                              1
4053               21 23065491 23131206                              1
4054               21 23065491 23131206                              1
4055               21 23065491 23131206                              1
4056               21 23065491 23131206                              1
4057               21 22008944 22098459    LINC01687 HGNC:52474     -1
4058               21 22008944 22098459    LINC01687 HGNC:52474     -1
4059               21 22008944 22098459    LINC01687 HGNC:52474     -1
4060               21 22008944 22098459    LINC01687 HGNC:52474     -1
4061               21 22008944 22098459    LINC01687 HGNC:52474     -1
4062               21 22008944 22098459    LINC01687 HGNC:52474     -1
4063               21 22008944 22098459    LINC01687 HGNC:52474     -1
4064               21 22008944 22098459    LINC01687 HGNC:52474     -1
4065               21 22008944 22098459    LINC01687 HGNC:52474     -1
4066               21 22008944 22098459    LINC01687 HGNC:52474     -1
4067               21 22008944 22098459    LINC01687 HGNC:52474     -1
4068               21 22008944 22098459    LINC01687 HGNC:52474     -1
4069               21 21933315 21975681                             -1
4070               21 21933315 21975681                             -1
4071               21 21933315 21975681                             -1
4072               21 36060432 36064408                              1
4073               21 36060432 36064408                              1
4074               21 36060432 36064408                              1
4075               21 19893279 19899755    LINC01683 HGNC:52471     -1
4076               21 19893279 19899755    LINC01683 HGNC:52471     -1
4077               21 19893279 19899755    LINC01683 HGNC:52471     -1
4078               21 32412006 32515397        EVA1C HGNC:13239      1
4079               21 32412006 32515397        EVA1C HGNC:13239      1
4080               21 32412006 32515397        EVA1C HGNC:13239      1
4081               21 32412006 32515397        EVA1C HGNC:13239      1
4082               21 32412006 32515397        EVA1C HGNC:13239      1
4083               21 32412006 32515397        EVA1C HGNC:13239      1
4084               21 32412006 32515397        EVA1C HGNC:13239      1
4085               21 32412006 32515397        EVA1C HGNC:13239      1
4086               21 32412006 32515397        EVA1C HGNC:13239      1
4087               21 32412006 32515397        EVA1C HGNC:13239      1
4088               21 32412006 32515397        EVA1C HGNC:13239      1
4089               21 32412006 32515397        EVA1C HGNC:13239      1
4090               21 32412006 32515397        EVA1C HGNC:13239      1
4091               21 32412006 32515397        EVA1C HGNC:13239      1
4092               21 32412006 32515397        EVA1C HGNC:13239      1
4093               21 32412006 32515397        EVA1C HGNC:13239      1
4094               21 32412006 32515397        EVA1C HGNC:13239      1
4095               21 32412006 32515397        EVA1C HGNC:13239      1
4096               21 32412006 32515397        EVA1C HGNC:13239      1
4097               21 32412006 32515397        EVA1C HGNC:13239      1
4098               21 32412006 32515397        EVA1C HGNC:13239      1
4099               21 32412006 32515397        EVA1C HGNC:13239      1
4100               21 32412006 32515397        EVA1C HGNC:13239      1
4101               21 32412006 32515397        EVA1C HGNC:13239      1
4102               21 32412006 32515397        EVA1C HGNC:13239      1
4103               21 32412006 32515397        EVA1C HGNC:13239      1
4104               21 32412006 32515397        EVA1C HGNC:13239      1
4105               21 32412006 32515397        EVA1C HGNC:13239      1
4106               21 32412006 32515397        EVA1C HGNC:13239      1
4107               21 32412006 32515397        EVA1C HGNC:13239      1
4108               21 32412006 32515397        EVA1C HGNC:13239      1
4109               21 32412006 32515397        EVA1C HGNC:13239      1
4110               21 32412006 32515397        EVA1C HGNC:13239      1
4111               21 32412006 32515397        EVA1C HGNC:13239      1
4112               21 32412006 32515397        EVA1C HGNC:13239      1
4113               21 32412006 32515397        EVA1C HGNC:13239      1
4114               21 32412006 32515397        EVA1C HGNC:13239      1
4115               21 32412006 32515397        EVA1C HGNC:13239      1
4116               21 32412006 32515397        EVA1C HGNC:13239      1
4117               21 32412006 32515397        EVA1C HGNC:13239      1
4118               21 32412006 32515397        EVA1C HGNC:13239      1
4119               21 32412006 32515397        EVA1C HGNC:13239      1
4120               21 32412006 32515397        EVA1C HGNC:13239      1
4121               21 32412006 32515397        EVA1C HGNC:13239      1
4122               21 32412006 32515397        EVA1C HGNC:13239      1
4123               21 32412006 32515397        EVA1C HGNC:13239      1
4124               21 32412006 32515397        EVA1C HGNC:13239      1
4125               21 32412006 32515397        EVA1C HGNC:13239      1
4126               21 32412006 32515397        EVA1C HGNC:13239      1
4127               21 32412006 32515397        EVA1C HGNC:13239      1
4128               21 32412006 32515397        EVA1C HGNC:13239      1
4129               21 32412006 32515397        EVA1C HGNC:13239      1
4130               21 32412006 32515397        EVA1C HGNC:13239      1
4131               21 32412006 32515397        EVA1C HGNC:13239      1
4132               21 32412006 32515397        EVA1C HGNC:13239      1
4133               21 32412006 32515397        EVA1C HGNC:13239      1
4134               21 32412006 32515397        EVA1C HGNC:13239      1
4135               21 32412006 32515397        EVA1C HGNC:13239      1
4136               21 32412006 32515397        EVA1C HGNC:13239      1
4137               21 32412006 32515397        EVA1C HGNC:13239      1
4138               21 32412006 32515397        EVA1C HGNC:13239      1
4139               21 32412006 32515397        EVA1C HGNC:13239      1
4140               21 32412006 32515397        EVA1C HGNC:13239      1
4141               21 32412006 32515397        EVA1C HGNC:13239      1
4142               21 32412006 32515397        EVA1C HGNC:13239      1
4143               21 32412006 32515397        EVA1C HGNC:13239      1
4144               21 32412006 32515397        EVA1C HGNC:13239      1
4145               21 32412006 32515397        EVA1C HGNC:13239      1
4146               21 32412006 32515397        EVA1C HGNC:13239      1
4147               21 32412006 32515397        EVA1C HGNC:13239      1
4148               21 32412006 32515397        EVA1C HGNC:13239      1
4149               21 32412006 32515397        EVA1C HGNC:13239      1
4150               21 32412006 32515397        EVA1C HGNC:13239      1
4151               21 38988707 39006153                             -1
4152               21 38988707 39006153                             -1
4153               21 38988707 39006153                             -1
4154               21 14064325 14069087  ANKRD20A18P HGNC:23756      1
4155               21 14064325 14069087  ANKRD20A18P HGNC:23756      1
4156               21 14064325 14069087  ANKRD20A18P HGNC:23756      1
4157               21 13120244 13120807                              1
4158               21 31118416 31559977        TIAM1 HGNC:11805     -1
4159               21 31118416 31559977        TIAM1 HGNC:11805     -1
4160               21 31118416 31559977        TIAM1 HGNC:11805     -1
4161               21 31118416 31559977        TIAM1 HGNC:11805     -1
4162               21 31118416 31559977        TIAM1 HGNC:11805     -1
4163               21 31118416 31559977        TIAM1 HGNC:11805     -1
4164               21 31118416 31559977        TIAM1 HGNC:11805     -1
4165               21 31118416 31559977        TIAM1 HGNC:11805     -1
4166               21 31118416 31559977        TIAM1 HGNC:11805     -1
4167               21 31118416 31559977        TIAM1 HGNC:11805     -1
4168               21 31118416 31559977        TIAM1 HGNC:11805     -1
4169               21 31118416 31559977        TIAM1 HGNC:11805     -1
4170               21 31118416 31559977        TIAM1 HGNC:11805     -1
4171               21 31118416 31559977        TIAM1 HGNC:11805     -1
4172               21 31118416 31559977        TIAM1 HGNC:11805     -1
4173               21 31118416 31559977        TIAM1 HGNC:11805     -1
4174               21 31118416 31559977        TIAM1 HGNC:11805     -1
4175               21 31118416 31559977        TIAM1 HGNC:11805     -1
4176               21 31118416 31559977        TIAM1 HGNC:11805     -1
4177               21 31118416 31559977        TIAM1 HGNC:11805     -1
4178               21 31118416 31559977        TIAM1 HGNC:11805     -1
4179               21 31118416 31559977        TIAM1 HGNC:11805     -1
4180               21 31118416 31559977        TIAM1 HGNC:11805     -1
4181               21 31118416 31559977        TIAM1 HGNC:11805     -1
4182               21 31118416 31559977        TIAM1 HGNC:11805     -1
4183               21 31118416 31559977        TIAM1 HGNC:11805     -1
4184               21 31118416 31559977        TIAM1 HGNC:11805     -1
4185               21 31118416 31559977        TIAM1 HGNC:11805     -1
4186               21 31118416 31559977        TIAM1 HGNC:11805     -1
4187               21 31118416 31559977        TIAM1 HGNC:11805     -1
4188               21 31118416 31559977        TIAM1 HGNC:11805     -1
4189               21 31118416 31559977        TIAM1 HGNC:11805     -1
4190               21 31118416 31559977        TIAM1 HGNC:11805     -1
4191               21 31118416 31559977        TIAM1 HGNC:11805     -1
4192               21 31118416 31559977        TIAM1 HGNC:11805     -1
4193               21 31118416 31559977        TIAM1 HGNC:11805     -1
4194               21 31118416 31559977        TIAM1 HGNC:11805     -1
4195               21 31118416 31559977        TIAM1 HGNC:11805     -1
4196               21 31118416 31559977        TIAM1 HGNC:11805     -1
4197               21 31118416 31559977        TIAM1 HGNC:11805     -1
4198               21 31118416 31559977        TIAM1 HGNC:11805     -1
4199               21 31118416 31559977        TIAM1 HGNC:11805     -1
4200               21 31118416 31559977        TIAM1 HGNC:11805     -1
4201               21 31118416 31559977        TIAM1 HGNC:11805     -1
4202               21 31118416 31559977        TIAM1 HGNC:11805     -1
4203               21 31118416 31559977        TIAM1 HGNC:11805     -1
4204               21 31118416 31559977        TIAM1 HGNC:11805     -1
4205               21 31118416 31559977        TIAM1 HGNC:11805     -1
4206               21 31118416 31559977        TIAM1 HGNC:11805     -1
4207               21 31118416 31559977        TIAM1 HGNC:11805     -1
4208               21 31118416 31559977        TIAM1 HGNC:11805     -1
4209               21 31118416 31559977        TIAM1 HGNC:11805     -1
4210               21 31118416 31559977        TIAM1 HGNC:11805     -1
4211               21 31118416 31559977        TIAM1 HGNC:11805     -1
4212               21 31118416 31559977        TIAM1 HGNC:11805     -1
4213               21 31118416 31559977        TIAM1 HGNC:11805     -1
4214               21 31118416 31559977        TIAM1 HGNC:11805     -1
4215               21 31118416 31559977        TIAM1 HGNC:11805     -1
4216               21 31118416 31559977        TIAM1 HGNC:11805     -1
4217               21 31118416 31559977        TIAM1 HGNC:11805     -1
4218               21 31118416 31559977        TIAM1 HGNC:11805     -1
4219               21 31118416 31559977        TIAM1 HGNC:11805     -1
4220               21 31118416 31559977        TIAM1 HGNC:11805     -1
4221               21 31118416 31559977        TIAM1 HGNC:11805     -1
4222               21 31118416 31559977        TIAM1 HGNC:11805     -1
4223               21 31118416 31559977        TIAM1 HGNC:11805     -1
4224               21 31118416 31559977        TIAM1 HGNC:11805     -1
4225               21 31118416 31559977        TIAM1 HGNC:11805     -1
4226               21 31118416 31559977        TIAM1 HGNC:11805     -1
4227               21 31118416 31559977        TIAM1 HGNC:11805     -1
4228               21 31118416 31559977        TIAM1 HGNC:11805     -1
4229               21 31118416 31559977        TIAM1 HGNC:11805     -1
4230               21 31118416 31559977        TIAM1 HGNC:11805     -1
4231               21 31118416 31559977        TIAM1 HGNC:11805     -1
4232               21 31118416 31559977        TIAM1 HGNC:11805     -1
4233               21 31118416 31559977        TIAM1 HGNC:11805     -1
4234               21 31118416 31559977        TIAM1 HGNC:11805     -1
4235               21 31118416 31559977        TIAM1 HGNC:11805     -1
4236               21 31118416 31559977        TIAM1 HGNC:11805     -1
4237               21 31118416 31559977        TIAM1 HGNC:11805     -1
4238               21 31118416 31559977        TIAM1 HGNC:11805     -1
4239               21 31118416 31559977        TIAM1 HGNC:11805     -1
4240               21 31118416 31559977        TIAM1 HGNC:11805     -1
4241               21 31118416 31559977        TIAM1 HGNC:11805     -1
4242               21 31118416 31559977        TIAM1 HGNC:11805     -1
4243               21 31118416 31559977        TIAM1 HGNC:11805     -1
4244               21 31118416 31559977        TIAM1 HGNC:11805     -1
4245               21 31118416 31559977        TIAM1 HGNC:11805     -1
4246               21 31118416 31559977        TIAM1 HGNC:11805     -1
4247               21 25639272 25717562         JAM2 HGNC:14686      1
4248               21 25639272 25717562         JAM2 HGNC:14686      1
4249               21 25639272 25717562         JAM2 HGNC:14686      1
4250               21 25639272 25717562         JAM2 HGNC:14686      1
4251               21 25639272 25717562         JAM2 HGNC:14686      1
4252               21 25639272 25717562         JAM2 HGNC:14686      1
4253               21 25639272 25717562         JAM2 HGNC:14686      1
4254               21 25639272 25717562         JAM2 HGNC:14686      1
4255               21 25639272 25717562         JAM2 HGNC:14686      1
4256               21 25639272 25717562         JAM2 HGNC:14686      1
4257               21 25639272 25717562         JAM2 HGNC:14686      1
4258               21 25639272 25717562         JAM2 HGNC:14686      1
4259               21 25639272 25717562         JAM2 HGNC:14686      1
4260               21 25639272 25717562         JAM2 HGNC:14686      1
4261               21 25639272 25717562         JAM2 HGNC:14686      1
4262               21 25639272 25717562         JAM2 HGNC:14686      1
4263               21 25639272 25717562         JAM2 HGNC:14686      1
4264               21 25639272 25717562         JAM2 HGNC:14686      1
4265               21 25639272 25717562         JAM2 HGNC:14686      1
4266               21 25639272 25717562         JAM2 HGNC:14686      1
4267               21 25639272 25717562         JAM2 HGNC:14686      1
4268               21 25639272 25717562         JAM2 HGNC:14686      1
4269               21 25639272 25717562         JAM2 HGNC:14686      1
4270               21 25639272 25717562         JAM2 HGNC:14686      1
4271               21 25639272 25717562         JAM2 HGNC:14686      1
4272               21 25639272 25717562         JAM2 HGNC:14686      1
4273               21 25639272 25717562         JAM2 HGNC:14686      1
4274               21 25639272 25717562         JAM2 HGNC:14686      1
4275               21 25639272 25717562         JAM2 HGNC:14686      1
4276               21 25639272 25717562         JAM2 HGNC:14686      1
4277               21 25639272 25717562         JAM2 HGNC:14686      1
4278               21 25639272 25717562         JAM2 HGNC:14686      1
4279               21 25639272 25717562         JAM2 HGNC:14686      1
4280               21 25639272 25717562         JAM2 HGNC:14686      1
4281               21 25639272 25717562         JAM2 HGNC:14686      1
4282               21 25639272 25717562         JAM2 HGNC:14686      1
4283               21 25639272 25717562         JAM2 HGNC:14686      1
4284               21 25639272 25717562         JAM2 HGNC:14686      1
4285               21 25639272 25717562         JAM2 HGNC:14686      1
4286               21 25639272 25717562         JAM2 HGNC:14686      1
4287               21 25639272 25717562         JAM2 HGNC:14686      1
4288               21 25639272 25717562         JAM2 HGNC:14686      1
4289               21 25639272 25717562         JAM2 HGNC:14686      1
4290               21 25639272 25717562         JAM2 HGNC:14686      1
4291               21 25639272 25717562         JAM2 HGNC:14686      1
4292               21 25639272 25717562         JAM2 HGNC:14686      1
4293               21 30501657 30502117    KRTAP19-5 HGNC:18940     -1
4294               21 44414588 44425272     TRPM2-AS HGNC:50758     -1
4295               21 44414588 44425272     TRPM2-AS HGNC:50758     -1
4296               21 44414588 44425272     TRPM2-AS HGNC:50758     -1
4297               21 44414588 44425272     TRPM2-AS HGNC:50758     -1
4298               21 44414588 44425272     TRPM2-AS HGNC:50758     -1
4299               21 44350163 44443081        TRPM2 HGNC:12339      1
4300               21 44350163 44443081        TRPM2 HGNC:12339      1
4301               21 44350163 44443081        TRPM2 HGNC:12339      1
4302               21 44350163 44443081        TRPM2 HGNC:12339      1
4303               21 44350163 44443081        TRPM2 HGNC:12339      1
4304               21 44350163 44443081        TRPM2 HGNC:12339      1
4305               21 44350163 44443081        TRPM2 HGNC:12339      1
4306               21 44350163 44443081        TRPM2 HGNC:12339      1
4307               21 44350163 44443081        TRPM2 HGNC:12339      1
4308               21 44350163 44443081        TRPM2 HGNC:12339      1
4309               21 44350163 44443081        TRPM2 HGNC:12339      1
4310               21 44350163 44443081        TRPM2 HGNC:12339      1
4311               21 44350163 44443081        TRPM2 HGNC:12339      1
4312               21 44350163 44443081        TRPM2 HGNC:12339      1
4313               21 44350163 44443081        TRPM2 HGNC:12339      1
4314               21 44350163 44443081        TRPM2 HGNC:12339      1
4315               21 44350163 44443081        TRPM2 HGNC:12339      1
4316               21 44350163 44443081        TRPM2 HGNC:12339      1
4317               21 44350163 44443081        TRPM2 HGNC:12339      1
4318               21 44350163 44443081        TRPM2 HGNC:12339      1
4319               21 44350163 44443081        TRPM2 HGNC:12339      1
4320               21 44350163 44443081        TRPM2 HGNC:12339      1
4321               21 44350163 44443081        TRPM2 HGNC:12339      1
4322               21 44350163 44443081        TRPM2 HGNC:12339      1
4323               21 44350163 44443081        TRPM2 HGNC:12339      1
4324               21 44350163 44443081        TRPM2 HGNC:12339      1
4325               21 44350163 44443081        TRPM2 HGNC:12339      1
4326               21 44350163 44443081        TRPM2 HGNC:12339      1
4327               21 44350163 44443081        TRPM2 HGNC:12339      1
4328               21 44350163 44443081        TRPM2 HGNC:12339      1
4329               21 44350163 44443081        TRPM2 HGNC:12339      1
4330               21 44350163 44443081        TRPM2 HGNC:12339      1
4331               21 44350163 44443081        TRPM2 HGNC:12339      1
4332               21 44350163 44443081        TRPM2 HGNC:12339      1
4333               21 44350163 44443081        TRPM2 HGNC:12339      1
4334               21 44350163 44443081        TRPM2 HGNC:12339      1
4335               21 44350163 44443081        TRPM2 HGNC:12339      1
4336               21 44350163 44443081        TRPM2 HGNC:12339      1
4337               21 44350163 44443081        TRPM2 HGNC:12339      1
4338               21 44350163 44443081        TRPM2 HGNC:12339      1
4339               21 44350163 44443081        TRPM2 HGNC:12339      1
4340               21 44350163 44443081        TRPM2 HGNC:12339      1
4341               21 44350163 44443081        TRPM2 HGNC:12339      1
4342               21 44350163 44443081        TRPM2 HGNC:12339      1
4343               21 44350163 44443081        TRPM2 HGNC:12339      1
4344               21 44350163 44443081        TRPM2 HGNC:12339      1
4345               21 44350163 44443081        TRPM2 HGNC:12339      1
4346               21 44350163 44443081        TRPM2 HGNC:12339      1
4347               21 44350163 44443081        TRPM2 HGNC:12339      1
4348               21 44350163 44443081        TRPM2 HGNC:12339      1
4349               21 44350163 44443081        TRPM2 HGNC:12339      1
4350               21 44350163 44443081        TRPM2 HGNC:12339      1
4351               21 44350163 44443081        TRPM2 HGNC:12339      1
4352               21 44350163 44443081        TRPM2 HGNC:12339      1
4353               21 44350163 44443081        TRPM2 HGNC:12339      1
4354               21 44350163 44443081        TRPM2 HGNC:12339      1
4355               21 44350163 44443081        TRPM2 HGNC:12339      1
4356               21 44350163 44443081        TRPM2 HGNC:12339      1
4357               21 44350163 44443081        TRPM2 HGNC:12339      1
4358               21 44350163 44443081        TRPM2 HGNC:12339      1
4359               21 44350163 44443081        TRPM2 HGNC:12339      1
4360               21 44350163 44443081        TRPM2 HGNC:12339      1
4361               21 44350163 44443081        TRPM2 HGNC:12339      1
4362               21 44350163 44443081        TRPM2 HGNC:12339      1
4363               21 44350163 44443081        TRPM2 HGNC:12339      1
4364               21 44350163 44443081        TRPM2 HGNC:12339      1
4365               21 44350163 44443081        TRPM2 HGNC:12339      1
4366               21 44350163 44443081        TRPM2 HGNC:12339      1
4367               21 44350163 44443081        TRPM2 HGNC:12339      1
4368               21 44350163 44443081        TRPM2 HGNC:12339      1
4369               21 44350163 44443081        TRPM2 HGNC:12339      1
4370               21 44350163 44443081        TRPM2 HGNC:12339      1
4371               21 44350163 44443081        TRPM2 HGNC:12339      1
4372               21 44350163 44443081        TRPM2 HGNC:12339      1
4373               21 44350163 44443081        TRPM2 HGNC:12339      1
4374               21 44350163 44443081        TRPM2 HGNC:12339      1
4375               21 44350163 44443081        TRPM2 HGNC:12339      1
4376               21 44350163 44443081        TRPM2 HGNC:12339      1
4377               21 44350163 44443081        TRPM2 HGNC:12339      1
4378               21 44350163 44443081        TRPM2 HGNC:12339      1
4379               21 44350163 44443081        TRPM2 HGNC:12339      1
4380               21 44350163 44443081        TRPM2 HGNC:12339      1
4381               21 44350163 44443081        TRPM2 HGNC:12339      1
4382               21 44350163 44443081        TRPM2 HGNC:12339      1
4383               21 44350163 44443081        TRPM2 HGNC:12339      1
4384               21 44350163 44443081        TRPM2 HGNC:12339      1
4385               21 44350163 44443081        TRPM2 HGNC:12339      1
4386               21 44350163 44443081        TRPM2 HGNC:12339      1
4387               21 44350163 44443081        TRPM2 HGNC:12339      1
4388               21 44350163 44443081        TRPM2 HGNC:12339      1
4389               21 44350163 44443081        TRPM2 HGNC:12339      1
4390               21 44350163 44443081        TRPM2 HGNC:12339      1
4391               21 44350163 44443081        TRPM2 HGNC:12339      1
4392               21 44350163 44443081        TRPM2 HGNC:12339      1
4393               21 44350163 44443081        TRPM2 HGNC:12339      1
4394               21 44350163 44443081        TRPM2 HGNC:12339      1
4395               21 44350163 44443081        TRPM2 HGNC:12339      1
4396               21 44350163 44443081        TRPM2 HGNC:12339      1
4397               21 44350163 44443081        TRPM2 HGNC:12339      1
4398               21 44350163 44443081        TRPM2 HGNC:12339      1
4399               21 44350163 44443081        TRPM2 HGNC:12339      1
4400               21 44350163 44443081        TRPM2 HGNC:12339      1
4401               21 44350163 44443081        TRPM2 HGNC:12339      1
4402               21 44350163 44443081        TRPM2 HGNC:12339      1
4403               21 44350163 44443081        TRPM2 HGNC:12339      1
4404               21 44350163 44443081        TRPM2 HGNC:12339      1
4405               21 44350163 44443081        TRPM2 HGNC:12339      1
4406               21 44350163 44443081        TRPM2 HGNC:12339      1
4407               21 44350163 44443081        TRPM2 HGNC:12339      1
4408               21 44350163 44443081        TRPM2 HGNC:12339      1
4409               21 44350163 44443081        TRPM2 HGNC:12339      1
4410               21 44350163 44443081        TRPM2 HGNC:12339      1
4411               21 44350163 44443081        TRPM2 HGNC:12339      1
4412               21 44350163 44443081        TRPM2 HGNC:12339      1
4413               21 44350163 44443081        TRPM2 HGNC:12339      1
4414               21 44350163 44443081        TRPM2 HGNC:12339      1
4415               21 44350163 44443081        TRPM2 HGNC:12339      1
4416               21 44350163 44443081        TRPM2 HGNC:12339      1
4417               21 44350163 44443081        TRPM2 HGNC:12339      1
4418               21 44350163 44443081        TRPM2 HGNC:12339      1
4419               21 44350163 44443081        TRPM2 HGNC:12339      1
4420               21 44350163 44443081        TRPM2 HGNC:12339      1
4421               21 44350163 44443081        TRPM2 HGNC:12339      1
4422               21 44350163 44443081        TRPM2 HGNC:12339      1
4423               21 44350163 44443081        TRPM2 HGNC:12339      1
4424               21 44350163 44443081        TRPM2 HGNC:12339      1
4425               21 44350163 44443081        TRPM2 HGNC:12339      1
4426               21 44350163 44443081        TRPM2 HGNC:12339      1
4427               21 44350163 44443081        TRPM2 HGNC:12339      1
4428               21 44350163 44443081        TRPM2 HGNC:12339      1
4429               21 44350163 44443081        TRPM2 HGNC:12339      1
4430               21 44350163 44443081        TRPM2 HGNC:12339      1
4431               21 44350163 44443081        TRPM2 HGNC:12339      1
4432               21 44350163 44443081        TRPM2 HGNC:12339      1
4433               21 44350163 44443081        TRPM2 HGNC:12339      1
4434               21 44350163 44443081        TRPM2 HGNC:12339      1
4435               21 44350163 44443081        TRPM2 HGNC:12339      1
4436               21 44350163 44443081        TRPM2 HGNC:12339      1
4437               21 44350163 44443081        TRPM2 HGNC:12339      1
4438               21 44350163 44443081        TRPM2 HGNC:12339      1
4439               21 44350163 44443081        TRPM2 HGNC:12339      1
4440               21 44350163 44443081        TRPM2 HGNC:12339      1
4441               21 44350163 44443081        TRPM2 HGNC:12339      1
4442               21 44350163 44443081        TRPM2 HGNC:12339      1
4443               21 44350163 44443081        TRPM2 HGNC:12339      1
4444               21 44350163 44443081        TRPM2 HGNC:12339      1
4445               21 44350163 44443081        TRPM2 HGNC:12339      1
4446               21 44350163 44443081        TRPM2 HGNC:12339      1
4447               21 44350163 44443081        TRPM2 HGNC:12339      1
4448               21 44350163 44443081        TRPM2 HGNC:12339      1
4449               21 44350163 44443081        TRPM2 HGNC:12339      1
4450               21 44350163 44443081        TRPM2 HGNC:12339      1
4451               21 44350163 44443081        TRPM2 HGNC:12339      1
4452               21 44350163 44443081        TRPM2 HGNC:12339      1
4453               21 44350163 44443081        TRPM2 HGNC:12339      1
4454               21 44350163 44443081        TRPM2 HGNC:12339      1
4455               21 44350163 44443081        TRPM2 HGNC:12339      1
4456               21 44350163 44443081        TRPM2 HGNC:12339      1
4457               21 44350163 44443081        TRPM2 HGNC:12339      1
4458               21 44350163 44443081        TRPM2 HGNC:12339      1
4459               21 44350163 44443081        TRPM2 HGNC:12339      1
4460               21 44350163 44443081        TRPM2 HGNC:12339      1
4461               21 44350163 44443081        TRPM2 HGNC:12339      1
4462               21 44350163 44443081        TRPM2 HGNC:12339      1
4463               21 44350163 44443081        TRPM2 HGNC:12339      1
4464               21 44350163 44443081        TRPM2 HGNC:12339      1
4465               21 44350163 44443081        TRPM2 HGNC:12339      1
4466               21 44350163 44443081        TRPM2 HGNC:12339      1
4467               21 44350163 44443081        TRPM2 HGNC:12339      1
4468               21 44350163 44443081        TRPM2 HGNC:12339      1
4469               21 44350163 44443081        TRPM2 HGNC:12339      1
4470               21 44350163 44443081        TRPM2 HGNC:12339      1
4471               21 44350163 44443081        TRPM2 HGNC:12339      1
4472               21 44350163 44443081        TRPM2 HGNC:12339      1
4473               21 44350163 44443081        TRPM2 HGNC:12339      1
4474               21 44350163 44443081        TRPM2 HGNC:12339      1
4475               21 44350163 44443081        TRPM2 HGNC:12339      1
4476               21 44350163 44443081        TRPM2 HGNC:12339      1
4477               21 44350163 44443081        TRPM2 HGNC:12339      1
4478               21 44350163 44443081        TRPM2 HGNC:12339      1
4479               21 46185079 46188941                              1
4480               21 46185079 46188941                              1
4481               21 40615378 40630767    DSCAM-IT1 HGNC:41327     -1
4482               21 40615378 40630767    DSCAM-IT1 HGNC:41327     -1
4483               21 40615378 40630767    DSCAM-IT1 HGNC:41327     -1
4484               21 40615378 40630767    DSCAM-IT1 HGNC:41327     -1
4485               21 40615378 40630767    DSCAM-IT1 HGNC:41327     -1
4486               21 40615378 40630767    DSCAM-IT1 HGNC:41327     -1
4487               21 40615378 40630767    DSCAM-IT1 HGNC:41327     -1
4488               21 40615378 40630767    DSCAM-IT1 HGNC:41327     -1
4489               21 39445855 39515506       SH3BGR HGNC:10822      1
4490               21 39445855 39515506       SH3BGR HGNC:10822      1
4491               21 39445855 39515506       SH3BGR HGNC:10822      1
4492               21 39445855 39515506       SH3BGR HGNC:10822      1
4493               21 39445855 39515506       SH3BGR HGNC:10822      1
4494               21 39445855 39515506       SH3BGR HGNC:10822      1
4495               21 39445855 39515506       SH3BGR HGNC:10822      1
4496               21 39445855 39515506       SH3BGR HGNC:10822      1
4497               21 39445855 39515506       SH3BGR HGNC:10822      1
4498               21 39445855 39515506       SH3BGR HGNC:10822      1
4499               21 39445855 39515506       SH3BGR HGNC:10822      1
4500               21 39445855 39515506       SH3BGR HGNC:10822      1
4501               21 39445855 39515506       SH3BGR HGNC:10822      1
4502               21 39445855 39515506       SH3BGR HGNC:10822      1
4503               21 39445855 39515506       SH3BGR HGNC:10822      1
4504               21 39445855 39515506       SH3BGR HGNC:10822      1
4505               21 39445855 39515506       SH3BGR HGNC:10822      1
4506               21 39445855 39515506       SH3BGR HGNC:10822      1
4507               21 39445855 39515506       SH3BGR HGNC:10822      1
4508               21 39445855 39515506       SH3BGR HGNC:10822      1
4509               21 39445855 39515506       SH3BGR HGNC:10822      1
4510               21 39445855 39515506       SH3BGR HGNC:10822      1
4511               21 39445855 39515506       SH3BGR HGNC:10822      1
4512               21 39445855 39515506       SH3BGR HGNC:10822      1
4513               21 39445855 39515506       SH3BGR HGNC:10822      1
4514               21 39445855 39515506       SH3BGR HGNC:10822      1
4515               21 39445855 39515506       SH3BGR HGNC:10822      1
4516               21 39445855 39515506       SH3BGR HGNC:10822      1
4517               21 39445855 39515506       SH3BGR HGNC:10822      1
4518               21 39445855 39515506       SH3BGR HGNC:10822      1
4519               21 39445855 39515506       SH3BGR HGNC:10822      1
4520               21 39445855 39515506       SH3BGR HGNC:10822      1
4521               21 39445855 39515506       SH3BGR HGNC:10822      1
4522               21 39445855 39515506       SH3BGR HGNC:10822      1
4523               21 39445855 39515506       SH3BGR HGNC:10822      1
4524               21 39445855 39515506       SH3BGR HGNC:10822      1
4525               21 39445855 39515506       SH3BGR HGNC:10822      1
4526               21 39445855 39515506       SH3BGR HGNC:10822      1
4527               21 39445855 39515506       SH3BGR HGNC:10822      1
4528               21 39445855 39515506       SH3BGR HGNC:10822      1
4529               21 39445855 39515506       SH3BGR HGNC:10822      1
4530               21 39445855 39515506       SH3BGR HGNC:10822      1
4531               21 39445855 39515506       SH3BGR HGNC:10822      1
4532               21 39445855 39515506       SH3BGR HGNC:10822      1
4533               21 39445855 39515506       SH3BGR HGNC:10822      1
4534               21 39445855 39515506       SH3BGR HGNC:10822      1
4535               21 39445855 39515506       SH3BGR HGNC:10822      1
4536               21 39445855 39515506       SH3BGR HGNC:10822      1
4537               21 39445855 39515506       SH3BGR HGNC:10822      1
4538               21 39445855 39515506       SH3BGR HGNC:10822      1
4539               21 39445855 39515506       SH3BGR HGNC:10822      1
4540               21 39445855 39515506       SH3BGR HGNC:10822      1
4541               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4542               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4543               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4544               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4545               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4546               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4547               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4548               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4549               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4550               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4551               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4552               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4553               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4554               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4555               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4556               21 29748175 29764002    GRIK1-AS1 HGNC:16458      1
4557               21 46098097 46132849       COL6A2  HGNC:2212      1
4558               21 46098097 46132849       COL6A2  HGNC:2212      1
4559               21 46098097 46132849       COL6A2  HGNC:2212      1
4560               21 46098097 46132849       COL6A2  HGNC:2212      1
4561               21 46098097 46132849       COL6A2  HGNC:2212      1
4562               21 46098097 46132849       COL6A2  HGNC:2212      1
4563               21 46098097 46132849       COL6A2  HGNC:2212      1
4564               21 46098097 46132849       COL6A2  HGNC:2212      1
4565               21 46098097 46132849       COL6A2  HGNC:2212      1
4566               21 46098097 46132849       COL6A2  HGNC:2212      1
4567               21 46098097 46132849       COL6A2  HGNC:2212      1
4568               21 46098097 46132849       COL6A2  HGNC:2212      1
4569               21 46098097 46132849       COL6A2  HGNC:2212      1
4570               21 46098097 46132849       COL6A2  HGNC:2212      1
4571               21 46098097 46132849       COL6A2  HGNC:2212      1
4572               21 46098097 46132849       COL6A2  HGNC:2212      1
4573               21 46098097 46132849       COL6A2  HGNC:2212      1
4574               21 46098097 46132849       COL6A2  HGNC:2212      1
4575               21 46098097 46132849       COL6A2  HGNC:2212      1
4576               21 46098097 46132849       COL6A2  HGNC:2212      1
4577               21 46098097 46132849       COL6A2  HGNC:2212      1
4578               21 46098097 46132849       COL6A2  HGNC:2212      1
4579               21 46098097 46132849       COL6A2  HGNC:2212      1
4580               21 46098097 46132849       COL6A2  HGNC:2212      1
4581               21 46098097 46132849       COL6A2  HGNC:2212      1
4582               21 46098097 46132849       COL6A2  HGNC:2212      1
4583               21 46098097 46132849       COL6A2  HGNC:2212      1
4584               21 46098097 46132849       COL6A2  HGNC:2212      1
4585               21 46098097 46132849       COL6A2  HGNC:2212      1
4586               21 46098097 46132849       COL6A2  HGNC:2212      1
4587               21 46098097 46132849       COL6A2  HGNC:2212      1
4588               21 46098097 46132849       COL6A2  HGNC:2212      1
4589               21 46098097 46132849       COL6A2  HGNC:2212      1
4590               21 46098097 46132849       COL6A2  HGNC:2212      1
4591               21 46098097 46132849       COL6A2  HGNC:2212      1
4592               21 46098097 46132849       COL6A2  HGNC:2212      1
4593               21 46098097 46132849       COL6A2  HGNC:2212      1
4594               21 46098097 46132849       COL6A2  HGNC:2212      1
4595               21 46098097 46132849       COL6A2  HGNC:2212      1
4596               21 46098097 46132849       COL6A2  HGNC:2212      1
4597               21 46098097 46132849       COL6A2  HGNC:2212      1
4598               21 46098097 46132849       COL6A2  HGNC:2212      1
4599               21 46098097 46132849       COL6A2  HGNC:2212      1
4600               21 46098097 46132849       COL6A2  HGNC:2212      1
4601               21 46098097 46132849       COL6A2  HGNC:2212      1
4602               21 46098097 46132849       COL6A2  HGNC:2212      1
4603               21 46098097 46132849       COL6A2  HGNC:2212      1
4604               21 46098097 46132849       COL6A2  HGNC:2212      1
4605               21 46098097 46132849       COL6A2  HGNC:2212      1
4606               21 46098097 46132849       COL6A2  HGNC:2212      1
4607               21 46098097 46132849       COL6A2  HGNC:2212      1
4608               21 46098097 46132849       COL6A2  HGNC:2212      1
4609               21 46098097 46132849       COL6A2  HGNC:2212      1
4610               21 46098097 46132849       COL6A2  HGNC:2212      1
4611               21 46098097 46132849       COL6A2  HGNC:2212      1
4612               21 46098097 46132849       COL6A2  HGNC:2212      1
4613               21 46098097 46132849       COL6A2  HGNC:2212      1
4614               21 46098097 46132849       COL6A2  HGNC:2212      1
4615               21 46098097 46132849       COL6A2  HGNC:2212      1
4616               21 46098097 46132849       COL6A2  HGNC:2212      1
4617               21 46098097 46132849       COL6A2  HGNC:2212      1
4618               21 46098097 46132849       COL6A2  HGNC:2212      1
4619               21 46098097 46132849       COL6A2  HGNC:2212      1
4620               21 46098097 46132849       COL6A2  HGNC:2212      1
4621               21 46098097 46132849       COL6A2  HGNC:2212      1
4622               21 46098097 46132849       COL6A2  HGNC:2212      1
4623               21 46098097 46132849       COL6A2  HGNC:2212      1
4624               21 46098097 46132849       COL6A2  HGNC:2212      1
4625               21 46098097 46132849       COL6A2  HGNC:2212      1
4626               21 46098097 46132849       COL6A2  HGNC:2212      1
4627               21 46098097 46132849       COL6A2  HGNC:2212      1
4628               21 46098097 46132849       COL6A2  HGNC:2212      1
4629               21 46098097 46132849       COL6A2  HGNC:2212      1
4630               21 46098097 46132849       COL6A2  HGNC:2212      1
4631               21 46098097 46132849       COL6A2  HGNC:2212      1
4632               21 46098097 46132849       COL6A2  HGNC:2212      1
4633               21 46098097 46132849       COL6A2  HGNC:2212      1
4634               21 46098097 46132849       COL6A2  HGNC:2212      1
4635               21 46098097 46132849       COL6A2  HGNC:2212      1
4636               21 46098097 46132849       COL6A2  HGNC:2212      1
4637               21 46098097 46132849       COL6A2  HGNC:2212      1
4638               21 46098097 46132849       COL6A2  HGNC:2212      1
4639               21 46098097 46132849       COL6A2  HGNC:2212      1
4640               21 46098097 46132849       COL6A2  HGNC:2212      1
4641               21 46098097 46132849       COL6A2  HGNC:2212      1
4642               21 46098097 46132849       COL6A2  HGNC:2212      1
4643               21 46098097 46132849       COL6A2  HGNC:2212      1
4644               21 46098097 46132849       COL6A2  HGNC:2212      1
4645               21 46098097 46132849       COL6A2  HGNC:2212      1
4646               21 46098097 46132849       COL6A2  HGNC:2212      1
4647               21 46098097 46132849       COL6A2  HGNC:2212      1
4648               21 46098097 46132849       COL6A2  HGNC:2212      1
4649               21 46098097 46132849       COL6A2  HGNC:2212      1
4650               21 46098097 46132849       COL6A2  HGNC:2212      1
4651               21 46098097 46132849       COL6A2  HGNC:2212      1
4652               21 46098097 46132849       COL6A2  HGNC:2212      1
4653               21 46098097 46132849       COL6A2  HGNC:2212      1
4654               21 46098097 46132849       COL6A2  HGNC:2212      1
4655               21 46098097 46132849       COL6A2  HGNC:2212      1
4656               21 46098097 46132849       COL6A2  HGNC:2212      1
4657               21 46098097 46132849       COL6A2  HGNC:2212      1
4658               21 46098097 46132849       COL6A2  HGNC:2212      1
4659               21 46098097 46132849       COL6A2  HGNC:2212      1
4660               21 46098097 46132849       COL6A2  HGNC:2212      1
4661               21 46098097 46132849       COL6A2  HGNC:2212      1
4662               21 46098097 46132849       COL6A2  HGNC:2212      1
4663               21 46098097 46132849       COL6A2  HGNC:2212      1
4664               21 46098097 46132849       COL6A2  HGNC:2212      1
4665               21 46098097 46132849       COL6A2  HGNC:2212      1
4666               21 46098097 46132849       COL6A2  HGNC:2212      1
4667               21 46098097 46132849       COL6A2  HGNC:2212      1
4668               21 46098097 46132849       COL6A2  HGNC:2212      1
4669               21 46098097 46132849       COL6A2  HGNC:2212      1
4670               21 46098097 46132849       COL6A2  HGNC:2212      1
4671               21 46098097 46132849       COL6A2  HGNC:2212      1
4672               21 46098097 46132849       COL6A2  HGNC:2212      1
4673               21 46098097 46132849       COL6A2  HGNC:2212      1
4674               21 46098097 46132849       COL6A2  HGNC:2212      1
4675               21 46098097 46132849       COL6A2  HGNC:2212      1
4676               21 46098097 46132849       COL6A2  HGNC:2212      1
4677               21 46098097 46132849       COL6A2  HGNC:2212      1
4678               21 46098097 46132849       COL6A2  HGNC:2212      1
4679               21 46098097 46132849       COL6A2  HGNC:2212      1
4680               21 46098097 46132849       COL6A2  HGNC:2212      1
4681               21 46098097 46132849       COL6A2  HGNC:2212      1
4682               21 46098097 46132849       COL6A2  HGNC:2212      1
4683               21 46098097 46132849       COL6A2  HGNC:2212      1
4684               21 46098097 46132849       COL6A2  HGNC:2212      1
4685               21 46098097 46132849       COL6A2  HGNC:2212      1
4686               21 46098097 46132849       COL6A2  HGNC:2212      1
4687               21 46098097 46132849       COL6A2  HGNC:2212      1
4688               21 46098097 46132849       COL6A2  HGNC:2212      1
4689               21 46098097 46132849       COL6A2  HGNC:2212      1
4690               21 33584687 33931607                             -1
4691               21 33584687 33931607                             -1
4692               21 33584687 33931607                             -1
4693               21 33584687 33931607                             -1
4694               21 33584687 33931607                             -1
4695               21 33584687 33931607                             -1
4696               21 33584687 33931607                             -1
4697               21 33584687 33931607                             -1
4698               21 44328944 44339402      C21orf2  HGNC:1260     -1
4699               21 44328944 44339402      C21orf2  HGNC:1260     -1
4700               21 44328944 44339402      C21orf2  HGNC:1260     -1
4701               21 44328944 44339402      C21orf2  HGNC:1260     -1
4702               21 44328944 44339402      C21orf2  HGNC:1260     -1
4703               21 44328944 44339402      C21orf2  HGNC:1260     -1
4704               21 44328944 44339402      C21orf2  HGNC:1260     -1
4705               21 44328944 44339402      C21orf2  HGNC:1260     -1
4706               21 44328944 44339402      C21orf2  HGNC:1260     -1
4707               21 44328944 44339402      C21orf2  HGNC:1260     -1
4708               21 44328944 44339402      C21orf2  HGNC:1260     -1
4709               21 44328944 44339402      C21orf2  HGNC:1260     -1
4710               21 44328944 44339402      C21orf2  HGNC:1260     -1
4711               21 44328944 44339402      C21orf2  HGNC:1260     -1
4712               21 44328944 44339402      C21orf2  HGNC:1260     -1
4713               21 44328944 44339402      C21orf2  HGNC:1260     -1
4714               21 44328944 44339402      C21orf2  HGNC:1260     -1
4715               21 44328944 44339402      C21orf2  HGNC:1260     -1
4716               21 44328944 44339402      C21orf2  HGNC:1260     -1
4717               21 44328944 44339402      C21orf2  HGNC:1260     -1
4718               21 44328944 44339402      C21orf2  HGNC:1260     -1
4719               21 44328944 44339402      C21orf2  HGNC:1260     -1
4720               21 44328944 44339402      C21orf2  HGNC:1260     -1
4721               21 44328944 44339402      C21orf2  HGNC:1260     -1
4722               21 44328944 44339402      C21orf2  HGNC:1260     -1
4723               21 44328944 44339402      C21orf2  HGNC:1260     -1
4724               21 44328944 44339402      C21orf2  HGNC:1260     -1
4725               21 44328944 44339402      C21orf2  HGNC:1260     -1
4726               21 44328944 44339402      C21orf2  HGNC:1260     -1
4727               21 44328944 44339402      C21orf2  HGNC:1260     -1
4728               21 44328944 44339402      C21orf2  HGNC:1260     -1
4729               21 44328944 44339402      C21orf2  HGNC:1260     -1
4730               21 44328944 44339402      C21orf2  HGNC:1260     -1
4731               21 44328944 44339402      C21orf2  HGNC:1260     -1
4732               21 44328944 44339402      C21orf2  HGNC:1260     -1
4733               21 44328944 44339402      C21orf2  HGNC:1260     -1
4734               21 44328944 44339402      C21orf2  HGNC:1260     -1
4735               21 44328944 44339402      C21orf2  HGNC:1260     -1
4736               21 44328944 44339402      C21orf2  HGNC:1260     -1
4737               21 44328944 44339402      C21orf2  HGNC:1260     -1
4738               21 46136262 46155567         FTCD  HGNC:3974     -1
4739               21 46136262 46155567         FTCD  HGNC:3974     -1
4740               21 46136262 46155567         FTCD  HGNC:3974     -1
4741               21 46136262 46155567         FTCD  HGNC:3974     -1
4742               21 46136262 46155567         FTCD  HGNC:3974     -1
4743               21 46136262 46155567         FTCD  HGNC:3974     -1
4744               21 46136262 46155567         FTCD  HGNC:3974     -1
4745               21 46136262 46155567         FTCD  HGNC:3974     -1
4746               21 46136262 46155567         FTCD  HGNC:3974     -1
4747               21 46136262 46155567         FTCD  HGNC:3974     -1
4748               21 46136262 46155567         FTCD  HGNC:3974     -1
4749               21 46136262 46155567         FTCD  HGNC:3974     -1
4750               21 46136262 46155567         FTCD  HGNC:3974     -1
4751               21 46136262 46155567         FTCD  HGNC:3974     -1
4752               21 46136262 46155567         FTCD  HGNC:3974     -1
4753               21 46136262 46155567         FTCD  HGNC:3974     -1
4754               21 46136262 46155567         FTCD  HGNC:3974     -1
4755               21 46136262 46155567         FTCD  HGNC:3974     -1
4756               21 46136262 46155567         FTCD  HGNC:3974     -1
4757               21 46136262 46155567         FTCD  HGNC:3974     -1
4758               21 46136262 46155567         FTCD  HGNC:3974     -1
4759               21 46136262 46155567         FTCD  HGNC:3974     -1
4760               21 46136262 46155567         FTCD  HGNC:3974     -1
4761               21 46136262 46155567         FTCD  HGNC:3974     -1
4762               21 46136262 46155567         FTCD  HGNC:3974     -1
4763               21 46136262 46155567         FTCD  HGNC:3974     -1
4764               21 46136262 46155567         FTCD  HGNC:3974     -1
4765               21 46136262 46155567         FTCD  HGNC:3974     -1
4766               21 46136262 46155567         FTCD  HGNC:3974     -1
4767               21 46136262 46155567         FTCD  HGNC:3974     -1
4768               21 46136262 46155567         FTCD  HGNC:3974     -1
4769               21 46136262 46155567         FTCD  HGNC:3974     -1
4770               21 46136262 46155567         FTCD  HGNC:3974     -1
4771               21 46136262 46155567         FTCD  HGNC:3974     -1
4772               21 46136262 46155567         FTCD  HGNC:3974     -1
4773               21 46136262 46155567         FTCD  HGNC:3974     -1
4774               21 46136262 46155567         FTCD  HGNC:3974     -1
4775               21 46136262 46155567         FTCD  HGNC:3974     -1
4776               21 46136262 46155567         FTCD  HGNC:3974     -1
4777               21 46136262 46155567         FTCD  HGNC:3974     -1
4778               21 46136262 46155567         FTCD  HGNC:3974     -1
4779               21 46136262 46155567         FTCD  HGNC:3974     -1
4780               21 46136262 46155567         FTCD  HGNC:3974     -1
4781               21 46136262 46155567         FTCD  HGNC:3974     -1
4782               21 46136262 46155567         FTCD  HGNC:3974     -1
4783               21 46136262 46155567         FTCD  HGNC:3974     -1
4784               21 46136262 46155567         FTCD  HGNC:3974     -1
4785               21 46136262 46155567         FTCD  HGNC:3974     -1
4786               21 46136262 46155567         FTCD  HGNC:3974     -1
4787               21 46136262 46155567         FTCD  HGNC:3974     -1
4788               21 46136262 46155567         FTCD  HGNC:3974     -1
4789               21 46136262 46155567         FTCD  HGNC:3974     -1
4790               21 46136262 46155567         FTCD  HGNC:3974     -1
4791               21 46136262 46155567         FTCD  HGNC:3974     -1
4792               21 46136262 46155567         FTCD  HGNC:3974     -1
4793               21 46136262 46155567         FTCD  HGNC:3974     -1
4794               21 46136262 46155567         FTCD  HGNC:3974     -1
4795               21 46136262 46155567         FTCD  HGNC:3974     -1
4796               21 46136262 46155567         FTCD  HGNC:3974     -1
4797               21 46136262 46155567         FTCD  HGNC:3974     -1
4798               21 46136262 46155567         FTCD  HGNC:3974     -1
4799               21 46136262 46155567         FTCD  HGNC:3974     -1
4800               21 46136262 46155567         FTCD  HGNC:3974     -1
4801               21 46136262 46155567         FTCD  HGNC:3974     -1
4802               21 46136262 46155567         FTCD  HGNC:3974     -1
4803               21 46136262 46155567         FTCD  HGNC:3974     -1
4804               21 46136262 46155567         FTCD  HGNC:3974     -1
4805               21 46136262 46155567         FTCD  HGNC:3974     -1
4806               21 46136262 46155567         FTCD  HGNC:3974     -1
4807               21 46136262 46155567         FTCD  HGNC:3974     -1
4808               21 46136262 46155567         FTCD  HGNC:3974     -1
4809               21 46136262 46155567         FTCD  HGNC:3974     -1
4810               21 46136262 46155567         FTCD  HGNC:3974     -1
4811               21 46136262 46155567         FTCD  HGNC:3974     -1
4812               21 46136262 46155567         FTCD  HGNC:3974     -1
4813               21 46136262 46155567         FTCD  HGNC:3974     -1
4814               21 46136262 46155567         FTCD  HGNC:3974     -1
4815               21 46136262 46155567         FTCD  HGNC:3974     -1
4816               21 46136262 46155567         FTCD  HGNC:3974     -1
4817               21 46136262 46155567         FTCD  HGNC:3974     -1
4818               21 46136262 46155567         FTCD  HGNC:3974     -1
4819               21 46136262 46155567         FTCD  HGNC:3974     -1
4820               21 46136262 46155567         FTCD  HGNC:3974     -1
4821               21 46136262 46155567         FTCD  HGNC:3974     -1
4822               21 46136262 46155567         FTCD  HGNC:3974     -1
4823               21 46136262 46155567         FTCD  HGNC:3974     -1
4824               21 46136262 46155567         FTCD  HGNC:3974     -1
4825               21 46136262 46155567         FTCD  HGNC:3974     -1
4826               21 46136262 46155567         FTCD  HGNC:3974     -1
4827               21 46136262 46155567         FTCD  HGNC:3974     -1
4828               21 46136262 46155567         FTCD  HGNC:3974     -1
4829               21 46136262 46155567         FTCD  HGNC:3974     -1
4830               21 46136262 46155567         FTCD  HGNC:3974     -1
4831               21 46136262 46155567         FTCD  HGNC:3974     -1
4832               21 46136262 46155567         FTCD  HGNC:3974     -1
4833               21 44472895 44473739     MTND6P21 HGNC:39639      1
4834               21 44472895 44473739     MTND6P21 HGNC:39639      1
4835               21 44473723 44475097      MTND5P1 HGNC:39644     -1
4836               21 41176322 41186788                             -1
4837               21 41176322 41186788                             -1
4838               21 41176322 41186788                             -1
4839               21 41176322 41186788                             -1
4840               21 41176322 41186788                             -1
4841               21 41176322 41186788                             -1
4842               21 41176322 41186788                             -1
4843               21 41176322 41186788                             -1
4844               21 41176322 41186788                             -1
4845               21 41176322 41186788                             -1
4846               21 44702221 44702791  KRTAP10-13P HGNC:34213      1
4847               21 33165470 33170649    LINC01548  HGNC:1296     -1
4848               21 33165470 33170649    LINC01548  HGNC:1296     -1
4849               21 33165470 33170649    LINC01548  HGNC:1296     -1
4850               21 33165470 33170649    LINC01548  HGNC:1296     -1
4851               21 33165470 33170649    LINC01548  HGNC:1296     -1
4852               21 33165470 33170649    LINC01548  HGNC:1296     -1
4853               21 33165470 33170649    LINC01548  HGNC:1296     -1
4854               21 33165470 33170649    LINC01548  HGNC:1296     -1
4855               21 33165470 33170649    LINC01548  HGNC:1296     -1
4856               21  6111134  6123739                              1
4857               21  6111134  6123739                              1
4858               21  6111134  6123739                              1
4859               21  6111134  6123739                              1
4860               21  6111134  6123739                              1
4861               21  6111134  6123739                              1
4862               21  6111134  6123739                              1
4863               21  6111134  6123739                              1
4864               21  6111134  6123739                              1
4865               21  6111134  6123739                              1
4866               21  6111134  6123739                              1
4867               21  6111134  6123739                              1
4868               21  6111134  6123739                              1
4869               21  6111134  6123739                              1
4870               21  6111134  6123739                              1
4871               21  6111134  6123739                              1
4872               21  6111134  6123739                              1
4873               21 22209939 22420819                              1
4874               21 22209939 22420819                              1
4875               21 22209939 22420819                              1
4876               21 22098617 22116528    LINC00308 HGNC:16023      1
4877               21 22098617 22116528    LINC00308 HGNC:16023      1
4878               21 22098617 22116528    LINC00308 HGNC:16023      1
4879               21 22098617 22116528    LINC00308 HGNC:16023      1
4880               21 22098617 22116528    LINC00308 HGNC:16023      1
4881               21 22098617 22116528    LINC00308 HGNC:16023      1
4882               21 36005338 36007838    LINC01436 HGNC:50754      1
4883               21 36005338 36007838    LINC01436 HGNC:50754      1
4884               21 42496539 42497443                              1
4885               21 42496539 42497443                              1
4886               21 42496539 42497443                              1
4887               21 17901263 18267373        CHODL HGNC:17807      1
4888               21 17901263 18267373        CHODL HGNC:17807      1
4889               21 17901263 18267373        CHODL HGNC:17807      1
4890               21 17901263 18267373        CHODL HGNC:17807      1
4891               21 17901263 18267373        CHODL HGNC:17807      1
4892               21 17901263 18267373        CHODL HGNC:17807      1
4893               21 17901263 18267373        CHODL HGNC:17807      1
4894               21 17901263 18267373        CHODL HGNC:17807      1
4895               21 17901263 18267373        CHODL HGNC:17807      1
4896               21 17901263 18267373        CHODL HGNC:17807      1
4897               21 17901263 18267373        CHODL HGNC:17807      1
4898               21 17901263 18267373        CHODL HGNC:17807      1
4899               21 17901263 18267373        CHODL HGNC:17807      1
4900               21 17901263 18267373        CHODL HGNC:17807      1
4901               21 17901263 18267373        CHODL HGNC:17807      1
4902               21 17901263 18267373        CHODL HGNC:17807      1
4903               21 17901263 18267373        CHODL HGNC:17807      1
4904               21 17901263 18267373        CHODL HGNC:17807      1
4905               21 17901263 18267373        CHODL HGNC:17807      1
4906               21 17901263 18267373        CHODL HGNC:17807      1
4907               21 17901263 18267373        CHODL HGNC:17807      1
4908               21 17901263 18267373        CHODL HGNC:17807      1
4909               21 17901263 18267373        CHODL HGNC:17807      1
4910               21 17901263 18267373        CHODL HGNC:17807      1
4911               21 17901263 18267373        CHODL HGNC:17807      1
4912               21 17901263 18267373        CHODL HGNC:17807      1
4913               21 17901263 18267373        CHODL HGNC:17807      1
4914               21 17901263 18267373        CHODL HGNC:17807      1
4915               21 17901263 18267373        CHODL HGNC:17807      1
4916               21 17901263 18267373        CHODL HGNC:17807      1
4917               21 17901263 18267373        CHODL HGNC:17807      1
4918               21 17901263 18267373        CHODL HGNC:17807      1
4919               21 17901263 18267373        CHODL HGNC:17807      1
4920               21 17901263 18267373        CHODL HGNC:17807      1
4921               21 17901263 18267373        CHODL HGNC:17807      1
4922               21 17901263 18267373        CHODL HGNC:17807      1
4923               21 17901263 18267373        CHODL HGNC:17807      1
4924               21 17901263 18267373        CHODL HGNC:17807      1
4925               21 17901263 18267373        CHODL HGNC:17807      1
4926               21 17901263 18267373        CHODL HGNC:17807      1
4927               21 17901263 18267373        CHODL HGNC:17807      1
4928               21 46093264 46097530                             -1
4929               21 46093264 46097530                             -1
4930               21  6081193  6082585                              1
4931               21  6081193  6082585                              1
4932               21 23361104 23384861                             -1
4933               21 23361104 23384861                             -1
4934               21 23361104 23384861                             -1
4935               21 23361104 23384861                             -1
4936               21 23361104 23384861                             -1
4937               21 42496008 42581440      SLC37A1 HGNC:11024      1
4938               21 42496008 42581440      SLC37A1 HGNC:11024      1
4939               21 42496008 42581440      SLC37A1 HGNC:11024      1
4940               21 42496008 42581440      SLC37A1 HGNC:11024      1
4941               21 42496008 42581440      SLC37A1 HGNC:11024      1
4942               21 42496008 42581440      SLC37A1 HGNC:11024      1
4943               21 42496008 42581440      SLC37A1 HGNC:11024      1
4944               21 42496008 42581440      SLC37A1 HGNC:11024      1
4945               21 42496008 42581440      SLC37A1 HGNC:11024      1
4946               21 42496008 42581440      SLC37A1 HGNC:11024      1
4947               21 42496008 42581440      SLC37A1 HGNC:11024      1
4948               21 42496008 42581440      SLC37A1 HGNC:11024      1
4949               21 42496008 42581440      SLC37A1 HGNC:11024      1
4950               21 42496008 42581440      SLC37A1 HGNC:11024      1
4951               21 42496008 42581440      SLC37A1 HGNC:11024      1
4952               21 42496008 42581440      SLC37A1 HGNC:11024      1
4953               21 42496008 42581440      SLC37A1 HGNC:11024      1
4954               21 42496008 42581440      SLC37A1 HGNC:11024      1
4955               21 42496008 42581440      SLC37A1 HGNC:11024      1
4956               21 42496008 42581440      SLC37A1 HGNC:11024      1
4957               21 42496008 42581440      SLC37A1 HGNC:11024      1
4958               21 42496008 42581440      SLC37A1 HGNC:11024      1
4959               21 42496008 42581440      SLC37A1 HGNC:11024      1
4960               21 42496008 42581440      SLC37A1 HGNC:11024      1
4961               21 42496008 42581440      SLC37A1 HGNC:11024      1
4962               21 42496008 42581440      SLC37A1 HGNC:11024      1
4963               21 42496008 42581440      SLC37A1 HGNC:11024      1
4964               21 42496008 42581440      SLC37A1 HGNC:11024      1
4965               21 42496008 42581440      SLC37A1 HGNC:11024      1
4966               21 42496008 42581440      SLC37A1 HGNC:11024      1
4967               21 42496008 42581440      SLC37A1 HGNC:11024      1
4968               21 42496008 42581440      SLC37A1 HGNC:11024      1
4969               21 42496008 42581440      SLC37A1 HGNC:11024      1
4970               21 42496008 42581440      SLC37A1 HGNC:11024      1
4971               21 42496008 42581440      SLC37A1 HGNC:11024      1
4972               21 42496008 42581440      SLC37A1 HGNC:11024      1
4973               21 42496008 42581440      SLC37A1 HGNC:11024      1
4974               21 42496008 42581440      SLC37A1 HGNC:11024      1
4975               21 42496008 42581440      SLC37A1 HGNC:11024      1
4976               21 42496008 42581440      SLC37A1 HGNC:11024      1
4977               21 42496008 42581440      SLC37A1 HGNC:11024      1
4978               21 42496008 42581440      SLC37A1 HGNC:11024      1
4979               21 42496008 42581440      SLC37A1 HGNC:11024      1
4980               21 42496008 42581440      SLC37A1 HGNC:11024      1
4981               21 42496008 42581440      SLC37A1 HGNC:11024      1
4982               21 42496008 42581440      SLC37A1 HGNC:11024      1
4983               21 42496008 42581440      SLC37A1 HGNC:11024      1
4984               21 42496008 42581440      SLC37A1 HGNC:11024      1
4985               21 42496008 42581440      SLC37A1 HGNC:11024      1
4986               21 42496008 42581440      SLC37A1 HGNC:11024      1
4987               21 42496008 42581440      SLC37A1 HGNC:11024      1
4988               21 42496008 42581440      SLC37A1 HGNC:11024      1
4989               21 42496008 42581440      SLC37A1 HGNC:11024      1
4990               21 42496008 42581440      SLC37A1 HGNC:11024      1
4991               21 42496008 42581440      SLC37A1 HGNC:11024      1
4992               21 42496008 42581440      SLC37A1 HGNC:11024      1
4993               21 42496008 42581440      SLC37A1 HGNC:11024      1
4994               21 42496008 42581440      SLC37A1 HGNC:11024      1
4995               21 42496008 42581440      SLC37A1 HGNC:11024      1
4996               21 42496008 42581440      SLC37A1 HGNC:11024      1
4997               21 42496008 42581440      SLC37A1 HGNC:11024      1
4998               21 42496008 42581440      SLC37A1 HGNC:11024      1
4999               21 42496008 42581440      SLC37A1 HGNC:11024      1
5000               21 45827961 45836419                             -1
5001               21 45827961 45836419                             -1
5002               21 45827961 45836419                             -1
5003               21 39217093 39219805    BRWD1-IT1 HGNC:41920     -1
5004               21 39217093 39219805    BRWD1-IT1 HGNC:41920     -1
5005               21 14774301 14775262     GAPDHP16 HGNC:23768      1
5006               21 14918534 14947096                              1
5007               21 14918534 14947096                              1
5008               21 14818843 15014430                             -1
5009               21 14818843 15014430                             -1
5010               21 14818843 15014430                             -1
5011               21 14818843 15014430                             -1
5012               21 14819699 14918552                             -1
5013               21 14819699 14918552                             -1
5014               21 14819699 14918552                             -1
5015               21 14819699 14918552                             -1
5016               21 14819699 14918552                             -1
5017               21 14819699 14918552                             -1
5018               21 14819699 14918552                             -1
5019               21 14819699 14918552                             -1
5020               21 14819699 14918552                             -1
5021               21 14819699 14918552                             -1
5022               21 14819699 14918552                             -1
5023               21 14819699 14918552                             -1
5024               21 14819699 14918552                             -1
5025               21 14819699 14918552                             -1
5026               21 14819699 14918552                             -1
5027               21 14819699 14918552                             -1
5028               21 14819699 14918552                             -1
5029               21 14819699 14918552                             -1
5030               21 14819699 14918552                             -1
5031               21 14819699 14918552                             -1
5032               21 14819699 14918552                             -1
5033               21 14819699 14918552                             -1
5034               21 14819699 14918552                             -1
5035               21 42199689 42297244        ABCG1    HGNC:73      1
5036               21 42199689 42297244        ABCG1    HGNC:73      1
5037               21 42199689 42297244        ABCG1    HGNC:73      1
5038               21 42199689 42297244        ABCG1    HGNC:73      1
5039               21 42199689 42297244        ABCG1    HGNC:73      1
5040               21 42199689 42297244        ABCG1    HGNC:73      1
5041               21 42199689 42297244        ABCG1    HGNC:73      1
5042               21 42199689 42297244        ABCG1    HGNC:73      1
5043               21 42199689 42297244        ABCG1    HGNC:73      1
5044               21 42199689 42297244        ABCG1    HGNC:73      1
5045               21 42199689 42297244        ABCG1    HGNC:73      1
5046               21 42199689 42297244        ABCG1    HGNC:73      1
5047               21 42199689 42297244        ABCG1    HGNC:73      1
5048               21 42199689 42297244        ABCG1    HGNC:73      1
5049               21 42199689 42297244        ABCG1    HGNC:73      1
5050               21 42199689 42297244        ABCG1    HGNC:73      1
5051               21 42199689 42297244        ABCG1    HGNC:73      1
5052               21 42199689 42297244        ABCG1    HGNC:73      1
5053               21 42199689 42297244        ABCG1    HGNC:73      1
5054               21 42199689 42297244        ABCG1    HGNC:73      1
5055               21 42199689 42297244        ABCG1    HGNC:73      1
5056               21 42199689 42297244        ABCG1    HGNC:73      1
5057               21 42199689 42297244        ABCG1    HGNC:73      1
5058               21 42199689 42297244        ABCG1    HGNC:73      1
5059               21 42199689 42297244        ABCG1    HGNC:73      1
5060               21 42199689 42297244        ABCG1    HGNC:73      1
5061               21 42199689 42297244        ABCG1    HGNC:73      1
5062               21 42199689 42297244        ABCG1    HGNC:73      1
5063               21 42199689 42297244        ABCG1    HGNC:73      1
5064               21 42199689 42297244        ABCG1    HGNC:73      1
5065               21 42199689 42297244        ABCG1    HGNC:73      1
5066               21 42199689 42297244        ABCG1    HGNC:73      1
5067               21 42199689 42297244        ABCG1    HGNC:73      1
5068               21 42199689 42297244        ABCG1    HGNC:73      1
5069               21 42199689 42297244        ABCG1    HGNC:73      1
5070               21 42199689 42297244        ABCG1    HGNC:73      1
5071               21 42199689 42297244        ABCG1    HGNC:73      1
5072               21 42199689 42297244        ABCG1    HGNC:73      1
5073               21 42199689 42297244        ABCG1    HGNC:73      1
5074               21 42199689 42297244        ABCG1    HGNC:73      1
5075               21 42199689 42297244        ABCG1    HGNC:73      1
5076               21 42199689 42297244        ABCG1    HGNC:73      1
5077               21 42199689 42297244        ABCG1    HGNC:73      1
5078               21 42199689 42297244        ABCG1    HGNC:73      1
5079               21 42199689 42297244        ABCG1    HGNC:73      1
5080               21 42199689 42297244        ABCG1    HGNC:73      1
5081               21 42199689 42297244        ABCG1    HGNC:73      1
5082               21 42199689 42297244        ABCG1    HGNC:73      1
5083               21 42199689 42297244        ABCG1    HGNC:73      1
5084               21 42199689 42297244        ABCG1    HGNC:73      1
5085               21 42199689 42297244        ABCG1    HGNC:73      1
5086               21 42199689 42297244        ABCG1    HGNC:73      1
5087               21 42199689 42297244        ABCG1    HGNC:73      1
5088               21 42199689 42297244        ABCG1    HGNC:73      1
5089               21 42199689 42297244        ABCG1    HGNC:73      1
5090               21 42199689 42297244        ABCG1    HGNC:73      1
5091               21 42199689 42297244        ABCG1    HGNC:73      1
5092               21 42199689 42297244        ABCG1    HGNC:73      1
5093               21 42199689 42297244        ABCG1    HGNC:73      1
5094               21 42199689 42297244        ABCG1    HGNC:73      1
5095               21 42199689 42297244        ABCG1    HGNC:73      1
5096               21 42199689 42297244        ABCG1    HGNC:73      1
5097               21 42199689 42297244        ABCG1    HGNC:73      1
5098               21 42199689 42297244        ABCG1    HGNC:73      1
5099               21 42199689 42297244        ABCG1    HGNC:73      1
5100               21 42199689 42297244        ABCG1    HGNC:73      1
5101               21 42199689 42297244        ABCG1    HGNC:73      1
5102               21 42199689 42297244        ABCG1    HGNC:73      1
5103               21 42199689 42297244        ABCG1    HGNC:73      1
5104               21 42199689 42297244        ABCG1    HGNC:73      1
5105               21 42199689 42297244        ABCG1    HGNC:73      1
5106               21 42199689 42297244        ABCG1    HGNC:73      1
5107               21 42199689 42297244        ABCG1    HGNC:73      1
5108               21 42199689 42297244        ABCG1    HGNC:73      1
5109               21 42199689 42297244        ABCG1    HGNC:73      1
5110               21 42199689 42297244        ABCG1    HGNC:73      1
5111               21 42199689 42297244        ABCG1    HGNC:73      1
5112               21 42199689 42297244        ABCG1    HGNC:73      1
5113               21 42199689 42297244        ABCG1    HGNC:73      1
5114               21 42199689 42297244        ABCG1    HGNC:73      1
5115               21 42199689 42297244        ABCG1    HGNC:73      1
5116               21 42199689 42297244        ABCG1    HGNC:73      1
5117               21 42199689 42297244        ABCG1    HGNC:73      1
5118               21 42199689 42297244        ABCG1    HGNC:73      1
5119               21 42199689 42297244        ABCG1    HGNC:73      1
5120               21 42199689 42297244        ABCG1    HGNC:73      1
5121               21 42199689 42297244        ABCG1    HGNC:73      1
5122               21 42199689 42297244        ABCG1    HGNC:73      1
5123               21 42199689 42297244        ABCG1    HGNC:73      1
5124               21 42199689 42297244        ABCG1    HGNC:73      1
5125               21 42199689 42297244        ABCG1    HGNC:73      1
5126               21 42199689 42297244        ABCG1    HGNC:73      1
5127               21 42199689 42297244        ABCG1    HGNC:73      1
5128               21 42199689 42297244        ABCG1    HGNC:73      1
5129               21 42199689 42297244        ABCG1    HGNC:73      1
5130               21 42199689 42297244        ABCG1    HGNC:73      1
5131               21 42199689 42297244        ABCG1    HGNC:73      1
5132               21 42199689 42297244        ABCG1    HGNC:73      1
5133               21 42199689 42297244        ABCG1    HGNC:73      1
5134               21 42199689 42297244        ABCG1    HGNC:73      1
5135               21 42199689 42297244        ABCG1    HGNC:73      1
5136               21 42199689 42297244        ABCG1    HGNC:73      1
5137               21 42199689 42297244        ABCG1    HGNC:73      1
5138               21 42199689 42297244        ABCG1    HGNC:73      1
5139               21 42199689 42297244        ABCG1    HGNC:73      1
5140               21 42199689 42297244        ABCG1    HGNC:73      1
5141               21 42199689 42297244        ABCG1    HGNC:73      1
5142               21 42199689 42297244        ABCG1    HGNC:73      1
5143               21 42199689 42297244        ABCG1    HGNC:73      1
5144               21 42199689 42297244        ABCG1    HGNC:73      1
5145               21 42199689 42297244        ABCG1    HGNC:73      1
5146               21 42199689 42297244        ABCG1    HGNC:73      1
5147               21 42199689 42297244        ABCG1    HGNC:73      1
5148               21 42199689 42297244        ABCG1    HGNC:73      1
5149               21 42199689 42297244        ABCG1    HGNC:73      1
5150               21 42199689 42297244        ABCG1    HGNC:73      1
5151               21 42199689 42297244        ABCG1    HGNC:73      1
5152               21 42199689 42297244        ABCG1    HGNC:73      1
5153               21 42199689 42297244        ABCG1    HGNC:73      1
5154               21 42199689 42297244        ABCG1    HGNC:73      1
5155               21 42199689 42297244        ABCG1    HGNC:73      1
5156               21 42199689 42297244        ABCG1    HGNC:73      1
5157               21 42199689 42297244        ABCG1    HGNC:73      1
5158               21 42199689 42297244        ABCG1    HGNC:73      1
5159               21 42199689 42297244        ABCG1    HGNC:73      1
5160               21 42199689 42297244        ABCG1    HGNC:73      1
5161               21 42199689 42297244        ABCG1    HGNC:73      1
5162               21 42199689 42297244        ABCG1    HGNC:73      1
5163               21 42199689 42297244        ABCG1    HGNC:73      1
5164               21 42199689 42297244        ABCG1    HGNC:73      1
5165               21 42199689 42297244        ABCG1    HGNC:73      1
5166               21 42199689 42297244        ABCG1    HGNC:73      1
5167               21 42199689 42297244        ABCG1    HGNC:73      1
5168               21 42199689 42297244        ABCG1    HGNC:73      1
5169               21 42199689 42297244        ABCG1    HGNC:73      1
5170               21 42199689 42297244        ABCG1    HGNC:73      1
5171               21 14961235 15065936        NRIP1  HGNC:8001     -1
5172               21 14961235 15065936        NRIP1  HGNC:8001     -1
5173               21 14961235 15065936        NRIP1  HGNC:8001     -1
5174               21 14961235 15065936        NRIP1  HGNC:8001     -1
5175               21 14961235 15065936        NRIP1  HGNC:8001     -1
5176               21 14961235 15065936        NRIP1  HGNC:8001     -1
5177               21 14961235 15065936        NRIP1  HGNC:8001     -1
5178               21 14961235 15065936        NRIP1  HGNC:8001     -1
5179               21 14961235 15065936        NRIP1  HGNC:8001     -1
5180               21 14961235 15065936        NRIP1  HGNC:8001     -1
5181               21 14961235 15065936        NRIP1  HGNC:8001     -1
5182               21 14961235 15065936        NRIP1  HGNC:8001     -1
5183               21 14961235 15065936        NRIP1  HGNC:8001     -1
5184               21 14961235 15065936        NRIP1  HGNC:8001     -1
5185               21 14961235 15065936        NRIP1  HGNC:8001     -1
5186               21 14961235 15065936        NRIP1  HGNC:8001     -1
5187               21 14961235 15065936        NRIP1  HGNC:8001     -1
5188               21 14961235 15065936        NRIP1  HGNC:8001     -1
5189               21 14961235 15065936        NRIP1  HGNC:8001     -1
5190               21 14961235 15065936        NRIP1  HGNC:8001     -1
5191               21 14961235 15065936        NRIP1  HGNC:8001     -1
5192               21 14961235 15065936        NRIP1  HGNC:8001     -1
5193               21 14961235 15065936        NRIP1  HGNC:8001     -1
5194               21 14829154 14829989      RBMX2P1 HGNC:39923     -1
5195               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5196               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5197               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5198               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5199               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5200               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5201               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5202               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5203               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5204               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5205               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5206               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5207               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5208               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5209               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5210               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5211               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5212               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5213               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5214               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5215               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5216               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5217               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5218               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5219               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5220               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5221               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5222               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5223               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5224               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5225               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5226               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5227               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5228               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5229               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5230               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5231               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5232               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5233               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5234               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5235               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5236               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5237               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5238               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5239               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5240               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5241               21 45493572 45544411      SLC19A1 HGNC:10937     -1
5242               21 14961309 14964233                              1
5243               21 14961309 14964233                              1
5244               21 15050189 15052379                              1
5245               21 14971470 14992854                              1
5246               21 14971470 14992854                              1
5247               21 14971470 14992854                              1
5248               21 45419716 45425070  COL18A1-AS1 HGNC:23132     -1
5249               21 45419716 45425070  COL18A1-AS1 HGNC:23132     -1
5250               21 45419716 45425070  COL18A1-AS1 HGNC:23132     -1
5251               21 45419716 45425070  COL18A1-AS1 HGNC:23132     -1
5252               21 45419716 45425070  COL18A1-AS1 HGNC:23132     -1
5253               21 45419716 45425070  COL18A1-AS1 HGNC:23132     -1
5254               21 39488327 39488760       MYL6P2 HGNC:23772      1
5255               21 46300181 46323875     C21orf58  HGNC:1300     -1
5256               21 46300181 46323875     C21orf58  HGNC:1300     -1
5257               21 46300181 46323875     C21orf58  HGNC:1300     -1
5258               21 46300181 46323875     C21orf58  HGNC:1300     -1
5259               21 46300181 46323875     C21orf58  HGNC:1300     -1
5260               21 46300181 46323875     C21orf58  HGNC:1300     -1
5261               21 46300181 46323875     C21orf58  HGNC:1300     -1
5262               21 46300181 46323875     C21orf58  HGNC:1300     -1
5263               21 46300181 46323875     C21orf58  HGNC:1300     -1
5264               21 46300181 46323875     C21orf58  HGNC:1300     -1
5265               21 46300181 46323875     C21orf58  HGNC:1300     -1
5266               21 46300181 46323875     C21orf58  HGNC:1300     -1
5267               21 46300181 46323875     C21orf58  HGNC:1300     -1
5268               21 46300181 46323875     C21orf58  HGNC:1300     -1
5269               21 46300181 46323875     C21orf58  HGNC:1300     -1
5270               21 46300181 46323875     C21orf58  HGNC:1300     -1
5271               21 46300181 46323875     C21orf58  HGNC:1300     -1
5272               21 46300181 46323875     C21orf58  HGNC:1300     -1
5273               21 46300181 46323875     C21orf58  HGNC:1300     -1
5274               21 46300181 46323875     C21orf58  HGNC:1300     -1
5275               21 46300181 46323875     C21orf58  HGNC:1300     -1
5276               21 46300181 46323875     C21orf58  HGNC:1300     -1
5277               21 46300181 46323875     C21orf58  HGNC:1300     -1
5278               21 46300181 46323875     C21orf58  HGNC:1300     -1
5279               21 46300181 46323875     C21orf58  HGNC:1300     -1
5280               21 46300181 46323875     C21orf58  HGNC:1300     -1
5281               21 46300181 46323875     C21orf58  HGNC:1300     -1
5282               21 46300181 46323875     C21orf58  HGNC:1300     -1
5283               21 46300181 46323875     C21orf58  HGNC:1300     -1
5284               21 46300181 46323875     C21orf58  HGNC:1300     -1
5285               21 46300181 46323875     C21orf58  HGNC:1300     -1
5286               21 46300181 46323875     C21orf58  HGNC:1300     -1
5287               21 46300181 46323875     C21orf58  HGNC:1300     -1
5288               21 46300181 46323875     C21orf58  HGNC:1300     -1
5289               21 46300181 46323875     C21orf58  HGNC:1300     -1
5290               21 46300181 46323875     C21orf58  HGNC:1300     -1
5291               21 46300181 46323875     C21orf58  HGNC:1300     -1
5292               21 46300181 46323875     C21orf58  HGNC:1300     -1
5293               21 46300181 46323875     C21orf58  HGNC:1300     -1
5294               21 46300181 46323875     C21orf58  HGNC:1300     -1
5295               21 46300181 46323875     C21orf58  HGNC:1300     -1
5296               21 46300181 46323875     C21orf58  HGNC:1300     -1
5297               21 46300181 46323875     C21orf58  HGNC:1300     -1
5298               21 46300181 46323875     C21orf58  HGNC:1300     -1
5299               21 46300181 46323875     C21orf58  HGNC:1300     -1
5300               21 46300181 46323875     C21orf58  HGNC:1300     -1
5301               21 46300181 46323875     C21orf58  HGNC:1300     -1
5302               21 46300181 46323875     C21orf58  HGNC:1300     -1
5303               21 46300181 46323875     C21orf58  HGNC:1300     -1
5304               21 46300181 46323875     C21orf58  HGNC:1300     -1
5305               21 46300181 46323875     C21orf58  HGNC:1300     -1
5306               21 46300181 46323875     C21orf58  HGNC:1300     -1
5307               21 46300181 46323875     C21orf58  HGNC:1300     -1
5308               21 46300181 46323875     C21orf58  HGNC:1300     -1
5309               21 46300181 46323875     C21orf58  HGNC:1300     -1
5310               21 46300181 46323875     C21orf58  HGNC:1300     -1
5311               21 46300181 46323875     C21orf58  HGNC:1300     -1
5312               21 46300181 46323875     C21orf58  HGNC:1300     -1
5313               21 46300181 46323875     C21orf58  HGNC:1300     -1
5314               21 46300181 46323875     C21orf58  HGNC:1300     -1
5315               21 46300181 46323875     C21orf58  HGNC:1300     -1
5316               21 46300181 46323875     C21orf58  HGNC:1300     -1
5317               21 46300181 46323875     C21orf58  HGNC:1300     -1
5318               21 46300181 46323875     C21orf58  HGNC:1300     -1
5319               21 46300181 46323875     C21orf58  HGNC:1300     -1
5320               21 46300181 46323875     C21orf58  HGNC:1300     -1
5321               21 46300181 46323875     C21orf58  HGNC:1300     -1
5322               21 46300181 46323875     C21orf58  HGNC:1300     -1
5323               21 46300181 46323875     C21orf58  HGNC:1300     -1
5324               21 46300181 46323875     C21orf58  HGNC:1300     -1
5325               21 41361943 41409390          MX2  HGNC:7533      1
5326               21 41361943 41409390          MX2  HGNC:7533      1
5327               21 41361943 41409390          MX2  HGNC:7533      1
5328               21 41361943 41409390          MX2  HGNC:7533      1
5329               21 41361943 41409390          MX2  HGNC:7533      1
5330               21 41361943 41409390          MX2  HGNC:7533      1
5331               21 41361943 41409390          MX2  HGNC:7533      1
5332               21 41361943 41409390          MX2  HGNC:7533      1
5333               21 41361943 41409390          MX2  HGNC:7533      1
5334               21 41361943 41409390          MX2  HGNC:7533      1
5335               21 41361943 41409390          MX2  HGNC:7533      1
5336               21 41361943 41409390          MX2  HGNC:7533      1
5337               21 41361943 41409390          MX2  HGNC:7533      1
5338               21 41361943 41409390          MX2  HGNC:7533      1
5339               21 41361943 41409390          MX2  HGNC:7533      1
5340               21 41361943 41409390          MX2  HGNC:7533      1
5341               21 41361943 41409390          MX2  HGNC:7533      1
5342               21 41361943 41409390          MX2  HGNC:7533      1
5343               21 41361943 41409390          MX2  HGNC:7533      1
5344               21 41361943 41409390          MX2  HGNC:7533      1
5345               21 41361943 41409390          MX2  HGNC:7533      1
5346               21 41361943 41409390          MX2  HGNC:7533      1
5347               21 41361943 41409390          MX2  HGNC:7533      1
5348               21 41361943 41409390          MX2  HGNC:7533      1
5349               21 41361943 41409390          MX2  HGNC:7533      1
5350               21 41361943 41409390          MX2  HGNC:7533      1
5351               21 41361943 41409390          MX2  HGNC:7533      1
5352               21 41361943 41409390          MX2  HGNC:7533      1
5353               21 41361943 41409390          MX2  HGNC:7533      1
5354               21 41361943 41409390          MX2  HGNC:7533      1
5355               21 41361943 41409390          MX2  HGNC:7533      1
5356               21 41361943 41409390          MX2  HGNC:7533      1
5357               21 41361943 41409390          MX2  HGNC:7533      1
5358               21 41361943 41409390          MX2  HGNC:7533      1
5359               21 41361943 41409390          MX2  HGNC:7533      1
5360               21 41361943 41409390          MX2  HGNC:7533      1
5361               21 41361943 41409390          MX2  HGNC:7533      1
5362               21 41361943 41409390          MX2  HGNC:7533      1
5363               21 41361943 41409390          MX2  HGNC:7533      1
5364               21 41361943 41409390          MX2  HGNC:7533      1
5365               21 41361943 41409390          MX2  HGNC:7533      1
5366               21 41361943 41409390          MX2  HGNC:7533      1
5367               21 41361943 41409390          MX2  HGNC:7533      1
5368               21 41361943 41409390          MX2  HGNC:7533      1
5369               21 41361943 41409390          MX2  HGNC:7533      1
5370               21 41361943 41409390          MX2  HGNC:7533      1
5371               21 41361943 41409390          MX2  HGNC:7533      1
5372               21 41361943 41409390          MX2  HGNC:7533      1
5373               21 41361943 41409390          MX2  HGNC:7533      1
5374               21 41361943 41409390          MX2  HGNC:7533      1
5375               21 41361943 41409390          MX2  HGNC:7533      1
5376               21 41361943 41409390          MX2  HGNC:7533      1
5377               21 41361943 41409390          MX2  HGNC:7533      1
5378               21 41361943 41409390          MX2  HGNC:7533      1
5379               21 41361943 41409390          MX2  HGNC:7533      1
5380               21 41361943 41409390          MX2  HGNC:7533      1
5381               21 41361943 41409390          MX2  HGNC:7533      1
5382               21 41361943 41409390          MX2  HGNC:7533      1
5383               21 41361943 41409390          MX2  HGNC:7533      1
5384               21 41361943 41409390          MX2  HGNC:7533      1
5385               21 41361943 41409390          MX2  HGNC:7533      1
5386               21 41361943 41409390          MX2  HGNC:7533      1
5387               21 39867317 39929397         PCP4  HGNC:8742      1
5388               21 39867317 39929397         PCP4  HGNC:8742      1
5389               21 39867317 39929397         PCP4  HGNC:8742      1
5390               21 39867317 39929397         PCP4  HGNC:8742      1
5391               21 39867317 39929397         PCP4  HGNC:8742      1
5392               21 39867317 39929397         PCP4  HGNC:8742      1
5393               21 39867317 39929397         PCP4  HGNC:8742      1
5394               21 39867317 39929397         PCP4  HGNC:8742      1
5395               21 39867317 39929397         PCP4  HGNC:8742      1
5396               21 39867317 39929397         PCP4  HGNC:8742      1
5397               21 39867317 39929397         PCP4  HGNC:8742      1
5398               21 39867317 39929397         PCP4  HGNC:8742      1
5399               21 39867317 39929397         PCP4  HGNC:8742      1
5400               21 39867317 39929397         PCP4  HGNC:8742      1
5401               21 39525583 39529855                              1
5402               21 39525583 39529855                              1
5403               21 33915534 33977691    LINC00649 HGNC:44305      1
5404               21 33915534 33977691    LINC00649 HGNC:44305      1
5405               21 33915534 33977691    LINC00649 HGNC:44305      1
5406               21 33915534 33977691    LINC00649 HGNC:44305      1
5407               21 33915534 33977691    LINC00649 HGNC:44305      1
5408               21 33915534 33977691    LINC00649 HGNC:44305      1
5409               21 33915534 33977691    LINC00649 HGNC:44305      1
5410               21 33915534 33977691    LINC00649 HGNC:44305      1
5411               21 33915534 33977691    LINC00649 HGNC:44305      1
5412               21 33915534 33977691    LINC00649 HGNC:44305      1
5413               21 33915534 33977691    LINC00649 HGNC:44305      1
5414               21 33915534 33977691    LINC00649 HGNC:44305      1
5415               21 33915534 33977691    LINC00649 HGNC:44305      1
5416               21 33915534 33977691    LINC00649 HGNC:44305      1
5417               21 33915534 33977691    LINC00649 HGNC:44305      1
5418               21 33915534 33977691    LINC00649 HGNC:44305      1
5419               21 33915534 33977691    LINC00649 HGNC:44305      1
5420               21 33915534 33977691    LINC00649 HGNC:44305      1
5421               21 33915534 33977691    LINC00649 HGNC:44305      1
5422               21 33915534 33977691    LINC00649 HGNC:44305      1
5423               21 33915534 33977691    LINC00649 HGNC:44305      1
5424               21 33915534 33977691    LINC00649 HGNC:44305      1
5425               21 33915534 33977691    LINC00649 HGNC:44305      1
5426               21 33915534 33977691    LINC00649 HGNC:44305      1
5427               21 33915534 33977691    LINC00649 HGNC:44305      1
5428               21 33915534 33977691    LINC00649 HGNC:44305      1
5429               21 33915534 33977691    LINC00649 HGNC:44305      1
5430               21 33915534 33977691    LINC00649 HGNC:44305      1
5431               21 33915534 33977691    LINC00649 HGNC:44305      1
5432               21 33915534 33977691    LINC00649 HGNC:44305      1
5433               21 33915534 33977691    LINC00649 HGNC:44305      1
5434               21 33915534 33977691    LINC00649 HGNC:44305      1
5435               21 33915534 33977691    LINC00649 HGNC:44305      1
5436               21 33915534 33977691    LINC00649 HGNC:44305      1
5437               21 33915534 33977691    LINC00649 HGNC:44305      1
5438               21 33915534 33977691    LINC00649 HGNC:44305      1
5439               21 33915534 33977691    LINC00649 HGNC:44305      1
5440               21 33915534 33977691    LINC00649 HGNC:44305      1
5441               21 33915534 33977691    LINC00649 HGNC:44305      1
5442               21 33915534 33977691    LINC00649 HGNC:44305      1
5443               21 33915534 33977691    LINC00649 HGNC:44305      1
5444               21 33915534 33977691    LINC00649 HGNC:44305      1
5445               21 33915534 33977691    LINC00649 HGNC:44305      1
5446               21 33915534 33977691    LINC00649 HGNC:44305      1
5447               21 33915534 33977691    LINC00649 HGNC:44305      1
5448               21 33915534 33977691    LINC00649 HGNC:44305      1
5449               21 33915534 33977691    LINC00649 HGNC:44305      1
5450               21 33915534 33977691    LINC00649 HGNC:44305      1
5451               21 33915534 33977691    LINC00649 HGNC:44305      1
5452               21 33915534 33977691    LINC00649 HGNC:44305      1
5453               21 33915534 33977691    LINC00649 HGNC:44305      1
5454               21 33915534 33977691    LINC00649 HGNC:44305      1
5455               21 33915534 33977691    LINC00649 HGNC:44305      1
5456               21 33915534 33977691    LINC00649 HGNC:44305      1
5457               21 33915534 33977691    LINC00649 HGNC:44305      1
5458               21 33915534 33977691    LINC00649 HGNC:44305      1
5459               21 33518610 33519108       BTF3P6 HGNC:23765     -1
5460               21 39556442 39673137      B3GALT5   HGNC:920      1
5461               21 39556442 39673137      B3GALT5   HGNC:920      1
5462               21 39556442 39673137      B3GALT5   HGNC:920      1
5463               21 39556442 39673137      B3GALT5   HGNC:920      1
5464               21 39556442 39673137      B3GALT5   HGNC:920      1
5465               21 39556442 39673137      B3GALT5   HGNC:920      1
5466               21 39556442 39673137      B3GALT5   HGNC:920      1
5467               21 39556442 39673137      B3GALT5   HGNC:920      1
5468               21 39556442 39673137      B3GALT5   HGNC:920      1
5469               21 39556442 39673137      B3GALT5   HGNC:920      1
5470               21 39556442 39673137      B3GALT5   HGNC:920      1
5471               21 39556442 39673137      B3GALT5   HGNC:920      1
5472               21 39556442 39673137      B3GALT5   HGNC:920      1
5473               21 39556442 39673137      B3GALT5   HGNC:920      1
5474               21 39556442 39673137      B3GALT5   HGNC:920      1
5475               21 39556442 39673137      B3GALT5   HGNC:920      1
5476               21 39556442 39673137      B3GALT5   HGNC:920      1
5477               21 39556442 39673137      B3GALT5   HGNC:920      1
5478               21 33542618 33577481          SON HGNC:11183      1
5479               21 33542618 33577481          SON HGNC:11183      1
5480               21 33542618 33577481          SON HGNC:11183      1
5481               21 33542618 33577481          SON HGNC:11183      1
5482               21 33542618 33577481          SON HGNC:11183      1
5483               21 33542618 33577481          SON HGNC:11183      1
5484               21 33542618 33577481          SON HGNC:11183      1
5485               21 33542618 33577481          SON HGNC:11183      1
5486               21 33542618 33577481          SON HGNC:11183      1
5487               21 33542618 33577481          SON HGNC:11183      1
5488               21 33542618 33577481          SON HGNC:11183      1
5489               21 33542618 33577481          SON HGNC:11183      1
5490               21 33542618 33577481          SON HGNC:11183      1
5491               21 33542618 33577481          SON HGNC:11183      1
5492               21 33542618 33577481          SON HGNC:11183      1
5493               21 33542618 33577481          SON HGNC:11183      1
5494               21 33542618 33577481          SON HGNC:11183      1
5495               21 33542618 33577481          SON HGNC:11183      1
5496               21 33542618 33577481          SON HGNC:11183      1
5497               21 33542618 33577481          SON HGNC:11183      1
5498               21 33542618 33577481          SON HGNC:11183      1
5499               21 33542618 33577481          SON HGNC:11183      1
5500               21 33542618 33577481          SON HGNC:11183      1
5501               21 33542618 33577481          SON HGNC:11183      1
5502               21 33542618 33577481          SON HGNC:11183      1
5503               21 33542618 33577481          SON HGNC:11183      1
5504               21 33542618 33577481          SON HGNC:11183      1
5505               21 33542618 33577481          SON HGNC:11183      1
5506               21 33542618 33577481          SON HGNC:11183      1
5507               21 33542618 33577481          SON HGNC:11183      1
5508               21 33542618 33577481          SON HGNC:11183      1
5509               21 33542618 33577481          SON HGNC:11183      1
5510               21 33542618 33577481          SON HGNC:11183      1
5511               21 33542618 33577481          SON HGNC:11183      1
5512               21 33542618 33577481          SON HGNC:11183      1
5513               21 33542618 33577481          SON HGNC:11183      1
5514               21 33542618 33577481          SON HGNC:11183      1
5515               21 33542618 33577481          SON HGNC:11183      1
5516               21 33542618 33577481          SON HGNC:11183      1
5517               21 33542618 33577481          SON HGNC:11183      1
5518               21 33542618 33577481          SON HGNC:11183      1
5519               21 33542618 33577481          SON HGNC:11183      1
5520               21 33542618 33577481          SON HGNC:11183      1
5521               21 33542618 33577481          SON HGNC:11183      1
5522               21 33542618 33577481          SON HGNC:11183      1
5523               21 33542618 33577481          SON HGNC:11183      1
5524               21 33542618 33577481          SON HGNC:11183      1
5525               21 33542618 33577481          SON HGNC:11183      1
5526               21 33542618 33577481          SON HGNC:11183      1
5527               21 33542618 33577481          SON HGNC:11183      1
5528               21 33542618 33577481          SON HGNC:11183      1
5529               21 33542618 33577481          SON HGNC:11183      1
5530               21 33542618 33577481          SON HGNC:11183      1
5531               21 33542618 33577481          SON HGNC:11183      1
5532               21 33542618 33577481          SON HGNC:11183      1
5533               21 33542618 33577481          SON HGNC:11183      1
5534               21 33542618 33577481          SON HGNC:11183      1
5535               21 33542618 33577481          SON HGNC:11183      1
5536               21 33542618 33577481          SON HGNC:11183      1
5537               21 33542618 33577481          SON HGNC:11183      1
5538               21 33542618 33577481          SON HGNC:11183      1
5539               21 33542618 33577481          SON HGNC:11183      1
5540               21 33542618 33577481          SON HGNC:11183      1
5541               21 33542618 33577481          SON HGNC:11183      1
5542               21 33542618 33577481          SON HGNC:11183      1
5543               21 33542618 33577481          SON HGNC:11183      1
5544               21 33542618 33577481          SON HGNC:11183      1
5545               21 33542618 33577481          SON HGNC:11183      1
5546               21 33542618 33577481          SON HGNC:11183      1
5547               21 33542618 33577481          SON HGNC:11183      1
5548               21 33542618 33577481          SON HGNC:11183      1
5549               21 33542618 33577481          SON HGNC:11183      1
5550               21 33542618 33577481          SON HGNC:11183      1
5551               21 33542618 33577481          SON HGNC:11183      1
5552               21 33542618 33577481          SON HGNC:11183      1
5553               21 33542618 33577481          SON HGNC:11183      1
5554               21 33542618 33577481          SON HGNC:11183      1
5555               21 33542618 33577481          SON HGNC:11183      1
5556               21 33542618 33577481          SON HGNC:11183      1
5557               21 33542618 33577481          SON HGNC:11183      1
5558               21 33542618 33577481          SON HGNC:11183      1
5559               21 33542618 33577481          SON HGNC:11183      1
5560               21 33542618 33577481          SON HGNC:11183      1
5561               21 33542618 33577481          SON HGNC:11183      1
5562               21 33542618 33577481          SON HGNC:11183      1
5563               21 33542618 33577481          SON HGNC:11183      1
5564               21 33542618 33577481          SON HGNC:11183      1
5565               21 33542618 33577481          SON HGNC:11183      1
5566               21 33542618 33577481          SON HGNC:11183      1
5567               21 33542618 33577481          SON HGNC:11183      1
5568               21 33542618 33577481          SON HGNC:11183      1
5569               21 33542618 33577481          SON HGNC:11183      1
5570               21 33542618 33577481          SON HGNC:11183      1
5571               21 33542618 33577481          SON HGNC:11183      1
5572               21 33542618 33577481          SON HGNC:11183      1
5573               21 33542618 33577481          SON HGNC:11183      1
5574               21 33542618 33577481          SON HGNC:11183      1
5575               21 33542618 33577481          SON HGNC:11183      1
5576               21 33542618 33577481          SON HGNC:11183      1
5577               21 33542618 33577481          SON HGNC:11183      1
5578               21 33542618 33577481          SON HGNC:11183      1
5579               21 33542618 33577481          SON HGNC:11183      1
5580               21 33542618 33577481          SON HGNC:11183      1
5581               21 33542618 33577481          SON HGNC:11183      1
5582               21 33542618 33577481          SON HGNC:11183      1
5583               21 33542618 33577481          SON HGNC:11183      1
5584               21 33542618 33577481          SON HGNC:11183      1
5585               21 33542618 33577481          SON HGNC:11183      1
5586               21 33542618 33577481          SON HGNC:11183      1
5587               21 33542618 33577481          SON HGNC:11183      1
5588               21 33542618 33577481          SON HGNC:11183      1
5589               21 33542618 33577481          SON HGNC:11183      1
5590               21 33542618 33577481          SON HGNC:11183      1
5591               21 33542618 33577481          SON HGNC:11183      1
5592               21 33542618 33577481          SON HGNC:11183      1
5593               21 33542618 33577481          SON HGNC:11183      1
5594               21 33542618 33577481          SON HGNC:11183      1
5595               21 33542618 33577481          SON HGNC:11183      1
5596               21 33542618 33577481          SON HGNC:11183      1
5597               21 33542618 33577481          SON HGNC:11183      1
5598               21 33542618 33577481          SON HGNC:11183      1
5599               21 33542618 33577481          SON HGNC:11183      1
5600               21 33542618 33577481          SON HGNC:11183      1
5601               21 33542618 33577481          SON HGNC:11183      1
5602               21 46151614 46152647     FTCD-AS1 HGNC:40243      1
5603               21 46151614 46152647     FTCD-AS1 HGNC:40243      1
5604               21 39630271 39726085                              1
5605               21 39630271 39726085                              1
5606               21 39630271 39726085                              1
5607               21 39597147 39612821  B3GALT5-AS1 HGNC:16424     -1
5608               21 39597147 39612821  B3GALT5-AS1 HGNC:16424     -1
5609               21 39597147 39612821  B3GALT5-AS1 HGNC:16424     -1
5610               21 39597147 39612821  B3GALT5-AS1 HGNC:16424     -1
5611               21 39597147 39612821  B3GALT5-AS1 HGNC:16424     -1
5612               21 39597147 39612821  B3GALT5-AS1 HGNC:16424     -1
5613               21 39597147 39612821  B3GALT5-AS1 HGNC:16424     -1
5614               21 39597147 39612821  B3GALT5-AS1 HGNC:16424     -1
5615               21 39597147 39612821  B3GALT5-AS1 HGNC:16424     -1
5616               21 39597147 39612821  B3GALT5-AS1 HGNC:16424     -1
5617               21 39597147 39612821  B3GALT5-AS1 HGNC:16424     -1
5618               21 39727755 39730680                              1
5619               21 39727755 39730680                              1
5620               21 39727755 39730680                              1
5621               21 39727755 39730680                              1
5622               21 39727755 39730680                              1
5623               21 39745407 39802096        IGSF5  HGNC:5952      1
5624               21 39745407 39802096        IGSF5  HGNC:5952      1
5625               21 39745407 39802096        IGSF5  HGNC:5952      1
5626               21 39745407 39802096        IGSF5  HGNC:5952      1
5627               21 39745407 39802096        IGSF5  HGNC:5952      1
5628               21 39745407 39802096        IGSF5  HGNC:5952      1
5629               21 39745407 39802096        IGSF5  HGNC:5952      1
5630               21 39745407 39802096        IGSF5  HGNC:5952      1
5631               21 39745407 39802096        IGSF5  HGNC:5952      1
5632               21 39745407 39802096        IGSF5  HGNC:5952      1
5633               21 39745407 39802096        IGSF5  HGNC:5952      1
5634               21 39745407 39802096        IGSF5  HGNC:5952      1
5635               21 39745407 39802096        IGSF5  HGNC:5952      1
5636               21 39745407 39802096        IGSF5  HGNC:5952      1
5637               21 39745407 39802096        IGSF5  HGNC:5952      1
5638               21 39745407 39802096        IGSF5  HGNC:5952      1
5639               21 39745407 39802096        IGSF5  HGNC:5952      1
5640               21 44339376 44340470                              1
5641               21 44339376 44340470                              1
5642               21 44331234 44335851                              1
5643               21 44331234 44335851                              1
5644               21 33903453 33915980        ATP5O   HGNC:850     -1
5645               21 33903453 33915980        ATP5O   HGNC:850     -1
5646               21 33903453 33915980        ATP5O   HGNC:850     -1
5647               21 33903453 33915980        ATP5O   HGNC:850     -1
5648               21 33903453 33915980        ATP5O   HGNC:850     -1
5649               21 33903453 33915980        ATP5O   HGNC:850     -1
5650               21 33903453 33915980        ATP5O   HGNC:850     -1
5651               21 33903453 33915980        ATP5O   HGNC:850     -1
5652               21 33903453 33915980        ATP5O   HGNC:850     -1
5653               21 33903453 33915980        ATP5O   HGNC:850     -1
5654               21 33903453 33915980        ATP5O   HGNC:850     -1
5655               21 33903453 33915980        ATP5O   HGNC:850     -1
5656               21 33903453 33915980        ATP5O   HGNC:850     -1
5657               21 33903453 33915980        ATP5O   HGNC:850     -1
5658               21 33903453 33915980        ATP5O   HGNC:850     -1
5659               21 33903453 33915980        ATP5O   HGNC:850     -1
5660               21 33903453 33915980        ATP5O   HGNC:850     -1
5661               21 33903453 33915980        ATP5O   HGNC:850     -1
5662               21 33903453 33915980        ATP5O   HGNC:850     -1
5663               21 33903453 33915980        ATP5O   HGNC:850     -1
5664               21 33903453 33915980        ATP5O   HGNC:850     -1
5665               21 33903453 33915980        ATP5O   HGNC:850     -1
5666               21 33903453 33915980        ATP5O   HGNC:850     -1
5667               21 33903453 33915980        ATP5O   HGNC:850     -1
5668               21 33903453 33915980        ATP5O   HGNC:850     -1
5669               21 33903453 33915980        ATP5O   HGNC:850     -1
5670               21 33903453 33915980        ATP5O   HGNC:850     -1
5671               21 33903453 33915980        ATP5O   HGNC:850     -1
5672               21 33903453 33915980        ATP5O   HGNC:850     -1
5673               21 33903453 33915980        ATP5O   HGNC:850     -1
5674               21 33903453 33915980        ATP5O   HGNC:850     -1
5675               21 33903453 33915980        ATP5O   HGNC:850     -1
5676               21 33903453 33915980        ATP5O   HGNC:850     -1
5677               21 33903453 33915980        ATP5O   HGNC:850     -1
5678               21 33903453 33915980        ATP5O   HGNC:850     -1
5679               21 33903453 33915980        ATP5O   HGNC:850     -1
5680               21 33903453 33915980        ATP5O   HGNC:850     -1
5681               21 33903453 33915980        ATP5O   HGNC:850     -1
5682               21 33903453 33915980        ATP5O   HGNC:850     -1
5683               21 33903453 33915980        ATP5O   HGNC:850     -1
5684               21 33903453 33915980        ATP5O   HGNC:850     -1
5685               21 33903453 33915980        ATP5O   HGNC:850     -1
5686               21 33903453 33915980        ATP5O   HGNC:850     -1
5687               21 33903453 33915980        ATP5O   HGNC:850     -1
5688               21 33903453 33915980        ATP5O   HGNC:850     -1
5689               21 29193480 29288205    LINC00189 HGNC:18461      1
5690               21 29193480 29288205    LINC00189 HGNC:18461      1
5691               21 29193480 29288205    LINC00189 HGNC:18461      1
5692               21 29193480 29288205    LINC00189 HGNC:18461      1
5693               21 29193480 29288205    LINC00189 HGNC:18461      1
5694               21 29193480 29288205    LINC00189 HGNC:18461      1
5695               21 29193480 29288205    LINC00189 HGNC:18461      1
5696               21 29193480 29288205    LINC00189 HGNC:18461      1
5697               21 40010999 40847139        DSCAM  HGNC:3039     -1
5698               21 40010999 40847139        DSCAM  HGNC:3039     -1
5699               21 40010999 40847139        DSCAM  HGNC:3039     -1
5700               21 40010999 40847139        DSCAM  HGNC:3039     -1
5701               21 40010999 40847139        DSCAM  HGNC:3039     -1
5702               21 40010999 40847139        DSCAM  HGNC:3039     -1
5703               21 40010999 40847139        DSCAM  HGNC:3039     -1
5704               21 40010999 40847139        DSCAM  HGNC:3039     -1
5705               21 40010999 40847139        DSCAM  HGNC:3039     -1
5706               21 40010999 40847139        DSCAM  HGNC:3039     -1
5707               21 40010999 40847139        DSCAM  HGNC:3039     -1
5708               21 40010999 40847139        DSCAM  HGNC:3039     -1
5709               21 40010999 40847139        DSCAM  HGNC:3039     -1
5710               21 40010999 40847139        DSCAM  HGNC:3039     -1
5711               21 40010999 40847139        DSCAM  HGNC:3039     -1
5712               21 40010999 40847139        DSCAM  HGNC:3039     -1
5713               21 40010999 40847139        DSCAM  HGNC:3039     -1
5714               21 40010999 40847139        DSCAM  HGNC:3039     -1
5715               21 40010999 40847139        DSCAM  HGNC:3039     -1
5716               21 40010999 40847139        DSCAM  HGNC:3039     -1
5717               21 40010999 40847139        DSCAM  HGNC:3039     -1
5718               21 40010999 40847139        DSCAM  HGNC:3039     -1
5719               21 40010999 40847139        DSCAM  HGNC:3039     -1
5720               21 40010999 40847139        DSCAM  HGNC:3039     -1
5721               21 40010999 40847139        DSCAM  HGNC:3039     -1
5722               21 40010999 40847139        DSCAM  HGNC:3039     -1
5723               21 40010999 40847139        DSCAM  HGNC:3039     -1
5724               21 40010999 40847139        DSCAM  HGNC:3039     -1
5725               21 40010999 40847139        DSCAM  HGNC:3039     -1
5726               21 40010999 40847139        DSCAM  HGNC:3039     -1
5727               21 40010999 40847139        DSCAM  HGNC:3039     -1
5728               21 40010999 40847139        DSCAM  HGNC:3039     -1
5729               21 40010999 40847139        DSCAM  HGNC:3039     -1
5730               21 40010999 40847139        DSCAM  HGNC:3039     -1
5731               21 40010999 40847139        DSCAM  HGNC:3039     -1
5732               21 40010999 40847139        DSCAM  HGNC:3039     -1
5733               21 40010999 40847139        DSCAM  HGNC:3039     -1
5734               21 40010999 40847139        DSCAM  HGNC:3039     -1
5735               21 40010999 40847139        DSCAM  HGNC:3039     -1
5736               21 40010999 40847139        DSCAM  HGNC:3039     -1
5737               21 40010999 40847139        DSCAM  HGNC:3039     -1
5738               21 40010999 40847139        DSCAM  HGNC:3039     -1
5739               21 40010999 40847139        DSCAM  HGNC:3039     -1
5740               21 40010999 40847139        DSCAM  HGNC:3039     -1
5741               21 40010999 40847139        DSCAM  HGNC:3039     -1
5742               21 40010999 40847139        DSCAM  HGNC:3039     -1
5743               21 40010999 40847139        DSCAM  HGNC:3039     -1
5744               21 40010999 40847139        DSCAM  HGNC:3039     -1
5745               21 40010999 40847139        DSCAM  HGNC:3039     -1
5746               21 40010999 40847139        DSCAM  HGNC:3039     -1
5747               21 40010999 40847139        DSCAM  HGNC:3039     -1
5748               21 40010999 40847139        DSCAM  HGNC:3039     -1
5749               21 40010999 40847139        DSCAM  HGNC:3039     -1
5750               21 40010999 40847139        DSCAM  HGNC:3039     -1
5751               21 40010999 40847139        DSCAM  HGNC:3039     -1
5752               21 40010999 40847139        DSCAM  HGNC:3039     -1
5753               21 40010999 40847139        DSCAM  HGNC:3039     -1
5754               21 40010999 40847139        DSCAM  HGNC:3039     -1
5755               21 40010999 40847139        DSCAM  HGNC:3039     -1
5756               21 40010999 40847139        DSCAM  HGNC:3039     -1
5757               21 40010999 40847139        DSCAM  HGNC:3039     -1
5758               21 40010999 40847139        DSCAM  HGNC:3039     -1
5759               21 40010999 40847139        DSCAM  HGNC:3039     -1
5760               21 40010999 40847139        DSCAM  HGNC:3039     -1
5761               21 40010999 40847139        DSCAM  HGNC:3039     -1
5762               21 40010999 40847139        DSCAM  HGNC:3039     -1
5763               21 40010999 40847139        DSCAM  HGNC:3039     -1
5764               21 40010999 40847139        DSCAM  HGNC:3039     -1
5765               21 40010999 40847139        DSCAM  HGNC:3039     -1
5766               21 40010999 40847139        DSCAM  HGNC:3039     -1
5767               21 40010999 40847139        DSCAM  HGNC:3039     -1
5768               21 40010999 40847139        DSCAM  HGNC:3039     -1
5769               21 40010999 40847139        DSCAM  HGNC:3039     -1
5770               21 40010999 40847139        DSCAM  HGNC:3039     -1
5771               21 40010999 40847139        DSCAM  HGNC:3039     -1
5772               21 40010999 40847139        DSCAM  HGNC:3039     -1
5773               21 40010999 40847139        DSCAM  HGNC:3039     -1
5774               21 40010999 40847139        DSCAM  HGNC:3039     -1
5775               21 40010999 40847139        DSCAM  HGNC:3039     -1
5776               21 40010999 40847139        DSCAM  HGNC:3039     -1
5777               21 40010999 40847139        DSCAM  HGNC:3039     -1
5778               21 40010999 40847139        DSCAM  HGNC:3039     -1
5779               21 40010999 40847139        DSCAM  HGNC:3039     -1
5780               21 40010999 40847139        DSCAM  HGNC:3039     -1
5781               21 40010999 40847139        DSCAM  HGNC:3039     -1
5782               21 40010999 40847139        DSCAM  HGNC:3039     -1
5783               21 40010999 40847139        DSCAM  HGNC:3039     -1
5784               21 40010999 40847139        DSCAM  HGNC:3039     -1
5785               21 40010999 40847139        DSCAM  HGNC:3039     -1
5786               21 40010999 40847139        DSCAM  HGNC:3039     -1
5787               21 40010999 40847139        DSCAM  HGNC:3039     -1
5788               21 40010999 40847139        DSCAM  HGNC:3039     -1
5789               21 37073226 37203112         TTC3 HGNC:12393      1
5790               21 37073226 37203112         TTC3 HGNC:12393      1
5791               21 37073226 37203112         TTC3 HGNC:12393      1
5792               21 37073226 37203112         TTC3 HGNC:12393      1
5793               21 37073226 37203112         TTC3 HGNC:12393      1
5794               21 37073226 37203112         TTC3 HGNC:12393      1
5795               21 37073226 37203112         TTC3 HGNC:12393      1
5796               21 37073226 37203112         TTC3 HGNC:12393      1
5797               21 37073226 37203112         TTC3 HGNC:12393      1
5798               21 37073226 37203112         TTC3 HGNC:12393      1
5799               21 37073226 37203112         TTC3 HGNC:12393      1
5800               21 37073226 37203112         TTC3 HGNC:12393      1
5801               21 37073226 37203112         TTC3 HGNC:12393      1
5802               21 37073226 37203112         TTC3 HGNC:12393      1
5803               21 37073226 37203112         TTC3 HGNC:12393      1
5804               21 37073226 37203112         TTC3 HGNC:12393      1
5805               21 37073226 37203112         TTC3 HGNC:12393      1
5806               21 37073226 37203112         TTC3 HGNC:12393      1
5807               21 37073226 37203112         TTC3 HGNC:12393      1
5808               21 37073226 37203112         TTC3 HGNC:12393      1
5809               21 37073226 37203112         TTC3 HGNC:12393      1
5810               21 37073226 37203112         TTC3 HGNC:12393      1
5811               21 37073226 37203112         TTC3 HGNC:12393      1
5812               21 37073226 37203112         TTC3 HGNC:12393      1
5813               21 37073226 37203112         TTC3 HGNC:12393      1
5814               21 37073226 37203112         TTC3 HGNC:12393      1
5815               21 37073226 37203112         TTC3 HGNC:12393      1
5816               21 37073226 37203112         TTC3 HGNC:12393      1
5817               21 37073226 37203112         TTC3 HGNC:12393      1
5818               21 37073226 37203112         TTC3 HGNC:12393      1
5819               21 37073226 37203112         TTC3 HGNC:12393      1
5820               21 37073226 37203112         TTC3 HGNC:12393      1
5821               21 37073226 37203112         TTC3 HGNC:12393      1
5822               21 37073226 37203112         TTC3 HGNC:12393      1
5823               21 37073226 37203112         TTC3 HGNC:12393      1
5824               21 37073226 37203112         TTC3 HGNC:12393      1
5825               21 37073226 37203112         TTC3 HGNC:12393      1
5826               21 37073226 37203112         TTC3 HGNC:12393      1
5827               21 37073226 37203112         TTC3 HGNC:12393      1
5828               21 37073226 37203112         TTC3 HGNC:12393      1
5829               21 37073226 37203112         TTC3 HGNC:12393      1
5830               21 37073226 37203112         TTC3 HGNC:12393      1
5831               21 37073226 37203112         TTC3 HGNC:12393      1
5832               21 37073226 37203112         TTC3 HGNC:12393      1
5833               21 37073226 37203112         TTC3 HGNC:12393      1
5834               21 37073226 37203112         TTC3 HGNC:12393      1
5835               21 37073226 37203112         TTC3 HGNC:12393      1
5836               21 37073226 37203112         TTC3 HGNC:12393      1
5837               21 37073226 37203112         TTC3 HGNC:12393      1
5838               21 37073226 37203112         TTC3 HGNC:12393      1
5839               21 37073226 37203112         TTC3 HGNC:12393      1
5840               21 37073226 37203112         TTC3 HGNC:12393      1
5841               21 37073226 37203112         TTC3 HGNC:12393      1
5842               21 37073226 37203112         TTC3 HGNC:12393      1
5843               21 37073226 37203112         TTC3 HGNC:12393      1
5844               21 37073226 37203112         TTC3 HGNC:12393      1
5845               21 37073226 37203112         TTC3 HGNC:12393      1
5846               21 37073226 37203112         TTC3 HGNC:12393      1
5847               21 37073226 37203112         TTC3 HGNC:12393      1
5848               21 37073226 37203112         TTC3 HGNC:12393      1
5849               21 37073226 37203112         TTC3 HGNC:12393      1
5850               21 37073226 37203112         TTC3 HGNC:12393      1
5851               21 37073226 37203112         TTC3 HGNC:12393      1
5852               21 37073226 37203112         TTC3 HGNC:12393      1
5853               21 37073226 37203112         TTC3 HGNC:12393      1
5854               21 37073226 37203112         TTC3 HGNC:12393      1
5855               21 37073226 37203112         TTC3 HGNC:12393      1
5856               21 37073226 37203112         TTC3 HGNC:12393      1
5857               21 37073226 37203112         TTC3 HGNC:12393      1
5858               21 37073226 37203112         TTC3 HGNC:12393      1
5859               21 37073226 37203112         TTC3 HGNC:12393      1
5860               21 37073226 37203112         TTC3 HGNC:12393      1
5861               21 37073226 37203112         TTC3 HGNC:12393      1
5862               21 37073226 37203112         TTC3 HGNC:12393      1
5863               21 37073226 37203112         TTC3 HGNC:12393      1
5864               21 37073226 37203112         TTC3 HGNC:12393      1
5865               21 37073226 37203112         TTC3 HGNC:12393      1
5866               21 37073226 37203112         TTC3 HGNC:12393      1
5867               21 37073226 37203112         TTC3 HGNC:12393      1
5868               21 37073226 37203112         TTC3 HGNC:12393      1
5869               21 37073226 37203112         TTC3 HGNC:12393      1
5870               21 37073226 37203112         TTC3 HGNC:12393      1
5871               21 37073226 37203112         TTC3 HGNC:12393      1
5872               21 37073226 37203112         TTC3 HGNC:12393      1
5873               21 37073226 37203112         TTC3 HGNC:12393      1
5874               21 37073226 37203112         TTC3 HGNC:12393      1
5875               21 37073226 37203112         TTC3 HGNC:12393      1
5876               21 37073226 37203112         TTC3 HGNC:12393      1
5877               21 37073226 37203112         TTC3 HGNC:12393      1
5878               21 37073226 37203112         TTC3 HGNC:12393      1
5879               21 37073226 37203112         TTC3 HGNC:12393      1
5880               21 37073226 37203112         TTC3 HGNC:12393      1
5881               21 37073226 37203112         TTC3 HGNC:12393      1
5882               21 37073226 37203112         TTC3 HGNC:12393      1
5883               21 37073226 37203112         TTC3 HGNC:12393      1
5884               21 37073226 37203112         TTC3 HGNC:12393      1
5885               21 37073226 37203112         TTC3 HGNC:12393      1
5886               21 37073226 37203112         TTC3 HGNC:12393      1
5887               21 37073226 37203112         TTC3 HGNC:12393      1
5888               21 37073226 37203112         TTC3 HGNC:12393      1
5889               21 37073226 37203112         TTC3 HGNC:12393      1
5890               21 37073226 37203112         TTC3 HGNC:12393      1
5891               21 37073226 37203112         TTC3 HGNC:12393      1
5892               21 37073226 37203112         TTC3 HGNC:12393      1
5893               21 37073226 37203112         TTC3 HGNC:12393      1
5894               21 37073226 37203112         TTC3 HGNC:12393      1
5895               21 37073226 37203112         TTC3 HGNC:12393      1
5896               21 37073226 37203112         TTC3 HGNC:12393      1
5897               21 37073226 37203112         TTC3 HGNC:12393      1
5898               21 37073226 37203112         TTC3 HGNC:12393      1
5899               21 37073226 37203112         TTC3 HGNC:12393      1
5900               21 37073226 37203112         TTC3 HGNC:12393      1
5901               21 37073226 37203112         TTC3 HGNC:12393      1
5902               21 37073226 37203112         TTC3 HGNC:12393      1
5903               21 37073226 37203112         TTC3 HGNC:12393      1
5904               21 37073226 37203112         TTC3 HGNC:12393      1
5905               21 37073226 37203112         TTC3 HGNC:12393      1
5906               21 37073226 37203112         TTC3 HGNC:12393      1
5907               21 37073226 37203112         TTC3 HGNC:12393      1
5908               21 37073226 37203112         TTC3 HGNC:12393      1
5909               21 37073226 37203112         TTC3 HGNC:12393      1
5910               21 37073226 37203112         TTC3 HGNC:12393      1
5911               21 37073226 37203112         TTC3 HGNC:12393      1
5912               21 37073226 37203112         TTC3 HGNC:12393      1
5913               21 37073226 37203112         TTC3 HGNC:12393      1
5914               21 37073226 37203112         TTC3 HGNC:12393      1
5915               21 37073226 37203112         TTC3 HGNC:12393      1
5916               21 37073226 37203112         TTC3 HGNC:12393      1
5917               21 37073226 37203112         TTC3 HGNC:12393      1
5918               21 37073226 37203112         TTC3 HGNC:12393      1
5919               21 37073226 37203112         TTC3 HGNC:12393      1
5920               21 37073226 37203112         TTC3 HGNC:12393      1
5921               21 37073226 37203112         TTC3 HGNC:12393      1
5922               21 37073226 37203112         TTC3 HGNC:12393      1
5923               21 37073226 37203112         TTC3 HGNC:12393      1
5924               21 37073226 37203112         TTC3 HGNC:12393      1
5925               21 37073226 37203112         TTC3 HGNC:12393      1
5926               21 37073226 37203112         TTC3 HGNC:12393      1
5927               21 37073226 37203112         TTC3 HGNC:12393      1
5928               21 37073226 37203112         TTC3 HGNC:12393      1
5929               21 37073226 37203112         TTC3 HGNC:12393      1
5930               21 37073226 37203112         TTC3 HGNC:12393      1
5931               21 37073226 37203112         TTC3 HGNC:12393      1
5932               21 37073226 37203112         TTC3 HGNC:12393      1
5933               21 37073226 37203112         TTC3 HGNC:12393      1
5934               21 37073226 37203112         TTC3 HGNC:12393      1
5935               21 37073226 37203112         TTC3 HGNC:12393      1
5936               21 37073226 37203112         TTC3 HGNC:12393      1
5937               21 37073226 37203112         TTC3 HGNC:12393      1
5938               21 37073226 37203112         TTC3 HGNC:12393      1
5939               21 37073226 37203112         TTC3 HGNC:12393      1
5940               21 37073226 37203112         TTC3 HGNC:12393      1
5941               21 37073226 37203112         TTC3 HGNC:12393      1
5942               21 37073226 37203112         TTC3 HGNC:12393      1
5943               21 37073226 37203112         TTC3 HGNC:12393      1
5944               21 37073226 37203112         TTC3 HGNC:12393      1
5945               21 37073226 37203112         TTC3 HGNC:12393      1
5946               21 37073226 37203112         TTC3 HGNC:12393      1
5947               21 37073226 37203112         TTC3 HGNC:12393      1
5948               21 37073226 37203112         TTC3 HGNC:12393      1
5949               21 37073226 37203112         TTC3 HGNC:12393      1
5950               21 37073226 37203112         TTC3 HGNC:12393      1
5951               21 37073226 37203112         TTC3 HGNC:12393      1
5952               21 37073226 37203112         TTC3 HGNC:12393      1
5953               21 37073226 37203112         TTC3 HGNC:12393      1
5954               21 37073226 37203112         TTC3 HGNC:12393      1
5955               21 37073226 37203112         TTC3 HGNC:12393      1
5956               21 37073226 37203112         TTC3 HGNC:12393      1
5957               21 37073226 37203112         TTC3 HGNC:12393      1
5958               21 37073226 37203112         TTC3 HGNC:12393      1
5959               21 37073226 37203112         TTC3 HGNC:12393      1
5960               21 37073226 37203112         TTC3 HGNC:12393      1
5961               21 37073226 37203112         TTC3 HGNC:12393      1
5962               21 37073226 37203112         TTC3 HGNC:12393      1
5963               21 37073226 37203112         TTC3 HGNC:12393      1
5964               21 37073226 37203112         TTC3 HGNC:12393      1
5965               21 37073226 37203112         TTC3 HGNC:12393      1
5966               21 37073226 37203112         TTC3 HGNC:12393      1
5967               21 37073226 37203112         TTC3 HGNC:12393      1
5968               21 37073226 37203112         TTC3 HGNC:12393      1
5969               21 37073226 37203112         TTC3 HGNC:12393      1
5970               21 37073226 37203112         TTC3 HGNC:12393      1
5971               21 37073226 37203112         TTC3 HGNC:12393      1
5972               21 37073226 37203112         TTC3 HGNC:12393      1
5973               21 37073226 37203112         TTC3 HGNC:12393      1
5974               21 37073226 37203112         TTC3 HGNC:12393      1
5975               21 37073226 37203112         TTC3 HGNC:12393      1
5976               21 37073226 37203112         TTC3 HGNC:12393      1
5977               21 37073226 37203112         TTC3 HGNC:12393      1
5978               21 37073226 37203112         TTC3 HGNC:12393      1
5979               21 37073226 37203112         TTC3 HGNC:12393      1
5980               21 37073226 37203112         TTC3 HGNC:12393      1
5981               21 37073226 37203112         TTC3 HGNC:12393      1
5982               21 37073226 37203112         TTC3 HGNC:12393      1
5983               21 37073226 37203112         TTC3 HGNC:12393      1
5984               21 37073226 37203112         TTC3 HGNC:12393      1
5985               21 37073226 37203112         TTC3 HGNC:12393      1
5986               21 37073226 37203112         TTC3 HGNC:12393      1
5987               21 37073226 37203112         TTC3 HGNC:12393      1
5988               21 37073226 37203112         TTC3 HGNC:12393      1
5989               21 37073226 37203112         TTC3 HGNC:12393      1
5990               21 37073226 37203112         TTC3 HGNC:12393      1
5991               21 37073226 37203112         TTC3 HGNC:12393      1
5992               21 37073226 37203112         TTC3 HGNC:12393      1
5993               21 37073226 37203112         TTC3 HGNC:12393      1
5994               21 37073226 37203112         TTC3 HGNC:12393      1
5995               21 37073226 37203112         TTC3 HGNC:12393      1
5996               21 37073226 37203112         TTC3 HGNC:12393      1
5997               21 37073226 37203112         TTC3 HGNC:12393      1
5998               21 37073226 37203112         TTC3 HGNC:12393      1
5999               21 37073226 37203112         TTC3 HGNC:12393      1
6000               21 37073226 37203112         TTC3 HGNC:12393      1
6001               21 37073226 37203112         TTC3 HGNC:12393      1
6002               21 37073226 37203112         TTC3 HGNC:12393      1
6003               21 37073226 37203112         TTC3 HGNC:12393      1
6004               21 37073226 37203112         TTC3 HGNC:12393      1
6005               21 37073226 37203112         TTC3 HGNC:12393      1
6006               21 37073226 37203112         TTC3 HGNC:12393      1
6007               21 37073226 37203112         TTC3 HGNC:12393      1
6008               21 37073226 37203112         TTC3 HGNC:12393      1
6009               21 37073226 37203112         TTC3 HGNC:12393      1
6010               21 37073226 37203112         TTC3 HGNC:12393      1
6011               21 37073226 37203112         TTC3 HGNC:12393      1
6012               21 37073226 37203112         TTC3 HGNC:12393      1
6013               21 37073226 37203112         TTC3 HGNC:12393      1
6014               21 37073226 37203112         TTC3 HGNC:12393      1
6015               21 37073226 37203112         TTC3 HGNC:12393      1
6016               21 37073226 37203112         TTC3 HGNC:12393      1
6017               21 37073226 37203112         TTC3 HGNC:12393      1
6018               21 37073226 37203112         TTC3 HGNC:12393      1
6019               21 37073226 37203112         TTC3 HGNC:12393      1
6020               21 37073226 37203112         TTC3 HGNC:12393      1
6021               21 37073226 37203112         TTC3 HGNC:12393      1
6022               21 37073226 37203112         TTC3 HGNC:12393      1
6023               21 37073226 37203112         TTC3 HGNC:12393      1
6024               21 37073226 37203112         TTC3 HGNC:12393      1
6025               21 37073226 37203112         TTC3 HGNC:12393      1
6026               21 37073226 37203112         TTC3 HGNC:12393      1
6027               21 37073226 37203112         TTC3 HGNC:12393      1
6028               21 37073226 37203112         TTC3 HGNC:12393      1
6029               21 37073226 37203112         TTC3 HGNC:12393      1
6030               21 37073226 37203112         TTC3 HGNC:12393      1
6031               21 37073226 37203112         TTC3 HGNC:12393      1
6032               21 37073226 37203112         TTC3 HGNC:12393      1
6033               21 37073226 37203112         TTC3 HGNC:12393      1
6034               21 37073226 37203112         TTC3 HGNC:12393      1
6035               21 37073226 37203112         TTC3 HGNC:12393      1
6036               21 37073226 37203112         TTC3 HGNC:12393      1
6037               21 37073226 37203112         TTC3 HGNC:12393      1
6038               21 37073226 37203112         TTC3 HGNC:12393      1
6039               21 37073226 37203112         TTC3 HGNC:12393      1
6040               21 37073226 37203112         TTC3 HGNC:12393      1
6041               21 37073226 37203112         TTC3 HGNC:12393      1
6042               21 37073226 37203112         TTC3 HGNC:12393      1
6043               21 37073226 37203112         TTC3 HGNC:12393      1
6044               21 37073226 37203112         TTC3 HGNC:12393      1
6045               21 37073226 37203112         TTC3 HGNC:12393      1
6046               21 37073226 37203112         TTC3 HGNC:12393      1
6047               21 37073226 37203112         TTC3 HGNC:12393      1
6048               21 37073226 37203112         TTC3 HGNC:12393      1
6049               21 37073226 37203112         TTC3 HGNC:12393      1
6050               21 37073226 37203112         TTC3 HGNC:12393      1
6051               21 37073226 37203112         TTC3 HGNC:12393      1
6052               21 37073226 37203112         TTC3 HGNC:12393      1
6053               21 37073226 37203112         TTC3 HGNC:12393      1
6054               21 37073226 37203112         TTC3 HGNC:12393      1
6055               21 37073226 37203112         TTC3 HGNC:12393      1
6056               21 37073226 37203112         TTC3 HGNC:12393      1
6057               21 37073226 37203112         TTC3 HGNC:12393      1
6058               21 37073226 37203112         TTC3 HGNC:12393      1
6059               21 37073226 37203112         TTC3 HGNC:12393      1
6060               21 37073226 37203112         TTC3 HGNC:12393      1
6061               21 37073226 37203112         TTC3 HGNC:12393      1
6062               21 37073226 37203112         TTC3 HGNC:12393      1
6063               21 37073226 37203112         TTC3 HGNC:12393      1
6064               21 37073226 37203112         TTC3 HGNC:12393      1
6065               21 37073226 37203112         TTC3 HGNC:12393      1
6066               21 37073226 37203112         TTC3 HGNC:12393      1
6067               21 37073226 37203112         TTC3 HGNC:12393      1
6068               21 37073226 37203112         TTC3 HGNC:12393      1
6069               21 37073226 37203112         TTC3 HGNC:12393      1
6070               21 37073226 37203112         TTC3 HGNC:12393      1
6071               21 37073226 37203112         TTC3 HGNC:12393      1
6072               21 37073226 37203112         TTC3 HGNC:12393      1
6073               21 37073226 37203112         TTC3 HGNC:12393      1
6074               21 37073226 37203112         TTC3 HGNC:12393      1
6075               21 37073226 37203112         TTC3 HGNC:12393      1
6076               21 37073226 37203112         TTC3 HGNC:12393      1
6077               21 37073226 37203112         TTC3 HGNC:12393      1
6078               21 37073226 37203112         TTC3 HGNC:12393      1
6079               21 37073226 37203112         TTC3 HGNC:12393      1
6080               21 37073226 37203112         TTC3 HGNC:12393      1
6081               21 37073226 37203112         TTC3 HGNC:12393      1
6082               21 37073226 37203112         TTC3 HGNC:12393      1
6083               21 37073226 37203112         TTC3 HGNC:12393      1
6084               21 37073226 37203112         TTC3 HGNC:12393      1
6085               21 37073226 37203112         TTC3 HGNC:12393      1
6086               21 37073226 37203112         TTC3 HGNC:12393      1
6087               21 37073226 37203112         TTC3 HGNC:12393      1
6088               21 37073226 37203112         TTC3 HGNC:12393      1
6089               21 37073226 37203112         TTC3 HGNC:12393      1
6090               21 37073226 37203112         TTC3 HGNC:12393      1
6091               21 37073226 37203112         TTC3 HGNC:12393      1
6092               21 37073226 37203112         TTC3 HGNC:12393      1
6093               21 37073226 37203112         TTC3 HGNC:12393      1
6094               21 37073226 37203112         TTC3 HGNC:12393      1
6095               21 37073226 37203112         TTC3 HGNC:12393      1
6096               21 37073226 37203112         TTC3 HGNC:12393      1
6097               21 37073226 37203112         TTC3 HGNC:12393      1
6098               21 37073226 37203112         TTC3 HGNC:12393      1
6099               21 37073226 37203112         TTC3 HGNC:12393      1
6100               21 37073226 37203112         TTC3 HGNC:12393      1
6101               21 37073226 37203112         TTC3 HGNC:12393      1
6102               21 37073226 37203112         TTC3 HGNC:12393      1
6103               21 37073226 37203112         TTC3 HGNC:12393      1
6104               21 37073226 37203112         TTC3 HGNC:12393      1
6105               21 37073226 37203112         TTC3 HGNC:12393      1
6106               21 37073226 37203112         TTC3 HGNC:12393      1
6107               21 37073226 37203112         TTC3 HGNC:12393      1
6108               21 37073226 37203112         TTC3 HGNC:12393      1
6109               21 37073226 37203112         TTC3 HGNC:12393      1
6110               21 37073226 37203112         TTC3 HGNC:12393      1
6111               21 37073226 37203112         TTC3 HGNC:12393      1
6112               21 37073226 37203112         TTC3 HGNC:12393      1
6113               21 37073226 37203112         TTC3 HGNC:12393      1
6114               21 37073226 37203112         TTC3 HGNC:12393      1
6115               21 37073226 37203112         TTC3 HGNC:12393      1
6116               21 37073226 37203112         TTC3 HGNC:12393      1
6117               21 37073226 37203112         TTC3 HGNC:12393      1
6118               21 37073226 37203112         TTC3 HGNC:12393      1
6119               21 37073226 37203112         TTC3 HGNC:12393      1
6120               21 37073226 37203112         TTC3 HGNC:12393      1
6121               21 37073226 37203112         TTC3 HGNC:12393      1
6122               21 37073226 37203112         TTC3 HGNC:12393      1
6123               21 37073226 37203112         TTC3 HGNC:12393      1
6124               21 37073226 37203112         TTC3 HGNC:12393      1
6125               21 37073226 37203112         TTC3 HGNC:12393      1
6126               21 37073226 37203112         TTC3 HGNC:12393      1
6127               21 37073226 37203112         TTC3 HGNC:12393      1
6128               21 37073226 37203112         TTC3 HGNC:12393      1
6129               21 37073226 37203112         TTC3 HGNC:12393      1
6130               21 37073226 37203112         TTC3 HGNC:12393      1
6131               21 37073226 37203112         TTC3 HGNC:12393      1
6132               21 37073226 37203112         TTC3 HGNC:12393      1
6133               21 37073226 37203112         TTC3 HGNC:12393      1
6134               21 37073226 37203112         TTC3 HGNC:12393      1
6135               21 37073226 37203112         TTC3 HGNC:12393      1
6136               21 37073226 37203112         TTC3 HGNC:12393      1
6137               21 37073226 37203112         TTC3 HGNC:12393      1
6138               21 37073226 37203112         TTC3 HGNC:12393      1
6139               21 37073226 37203112         TTC3 HGNC:12393      1
6140               21 37073226 37203112         TTC3 HGNC:12393      1
6141               21 37073226 37203112         TTC3 HGNC:12393      1
6142               21 37073226 37203112         TTC3 HGNC:12393      1
6143               21 37073226 37203112         TTC3 HGNC:12393      1
6144               21 37073226 37203112         TTC3 HGNC:12393      1
6145               21 37073226 37203112         TTC3 HGNC:12393      1
6146               21 37073226 37203112         TTC3 HGNC:12393      1
6147               21 37073226 37203112         TTC3 HGNC:12393      1
6148               21 37073226 37203112         TTC3 HGNC:12393      1
6149               21 37073226 37203112         TTC3 HGNC:12393      1
6150               21 37073226 37203112         TTC3 HGNC:12393      1
6151               21 37073226 37203112         TTC3 HGNC:12393      1
6152               21 37073226 37203112         TTC3 HGNC:12393      1
6153               21 37073226 37203112         TTC3 HGNC:12393      1
6154               21 37073226 37203112         TTC3 HGNC:12393      1
6155               21 37073226 37203112         TTC3 HGNC:12393      1
6156               21 37073226 37203112         TTC3 HGNC:12393      1
6157               21 37073226 37203112         TTC3 HGNC:12393      1
6158               21 37073226 37203112         TTC3 HGNC:12393      1
6159               21 37073226 37203112         TTC3 HGNC:12393      1
6160               21 37073226 37203112         TTC3 HGNC:12393      1
6161               21 37073226 37203112         TTC3 HGNC:12393      1
6162               21 37073226 37203112         TTC3 HGNC:12393      1
6163               21 37073226 37203112         TTC3 HGNC:12393      1
6164               21 37073226 37203112         TTC3 HGNC:12393      1
6165               21 37073226 37203112         TTC3 HGNC:12393      1
6166               21 37073226 37203112         TTC3 HGNC:12393      1
6167               21 37073226 37203112         TTC3 HGNC:12393      1
6168               21 37073226 37203112         TTC3 HGNC:12393      1
6169               21 37073226 37203112         TTC3 HGNC:12393      1
6170               21 37073226 37203112         TTC3 HGNC:12393      1
6171               21 37073226 37203112         TTC3 HGNC:12393      1
6172               21 37073226 37203112         TTC3 HGNC:12393      1
6173               21 37073226 37203112         TTC3 HGNC:12393      1
6174               21 37073226 37203112         TTC3 HGNC:12393      1
6175               21 37073226 37203112         TTC3 HGNC:12393      1
6176               21 37073226 37203112         TTC3 HGNC:12393      1
6177               21 37073226 37203112         TTC3 HGNC:12393      1
6178               21 37073226 37203112         TTC3 HGNC:12393      1
6179               21 37073226 37203112         TTC3 HGNC:12393      1
6180               21 37073226 37203112         TTC3 HGNC:12393      1
6181               21 37073226 37203112         TTC3 HGNC:12393      1
6182               21 37073226 37203112         TTC3 HGNC:12393      1
6183               21 37073226 37203112         TTC3 HGNC:12393      1
6184               21 37073226 37203112         TTC3 HGNC:12393      1
6185               21 37073226 37203112         TTC3 HGNC:12393      1
6186               21 37073226 37203112         TTC3 HGNC:12393      1
6187               21 37073226 37203112         TTC3 HGNC:12393      1
6188               21 37073226 37203112         TTC3 HGNC:12393      1
6189               21 37073226 37203112         TTC3 HGNC:12393      1
6190               21 37073226 37203112         TTC3 HGNC:12393      1
6191               21 37073226 37203112         TTC3 HGNC:12393      1
6192               21 37073226 37203112         TTC3 HGNC:12393      1
6193               21 37073226 37203112         TTC3 HGNC:12393      1
6194               21 37073226 37203112         TTC3 HGNC:12393      1
6195               21 37073226 37203112         TTC3 HGNC:12393      1
6196               21 37073226 37203112         TTC3 HGNC:12393      1
6197               21 37073226 37203112         TTC3 HGNC:12393      1
6198               21 37073226 37203112         TTC3 HGNC:12393      1
6199               21 37073226 37203112         TTC3 HGNC:12393      1
6200               21 37073226 37203112         TTC3 HGNC:12393      1
6201               21 37073226 37203112         TTC3 HGNC:12393      1
6202               21 37073226 37203112         TTC3 HGNC:12393      1
6203               21 37073226 37203112         TTC3 HGNC:12393      1
6204               21 37073226 37203112         TTC3 HGNC:12393      1
6205               21 37073226 37203112         TTC3 HGNC:12393      1
6206               21 37073226 37203112         TTC3 HGNC:12393      1
6207               21 37073226 37203112         TTC3 HGNC:12393      1
6208               21 37073226 37203112         TTC3 HGNC:12393      1
6209               21 37073226 37203112         TTC3 HGNC:12393      1
6210               21 37073226 37203112         TTC3 HGNC:12393      1
6211               21 37073226 37203112         TTC3 HGNC:12393      1
6212               21 37073226 37203112         TTC3 HGNC:12393      1
6213               21 37073226 37203112         TTC3 HGNC:12393      1
6214               21 37073226 37203112         TTC3 HGNC:12393      1
6215               21 37073226 37203112         TTC3 HGNC:12393      1
6216               21 37073226 37203112         TTC3 HGNC:12393      1
6217               21 37073226 37203112         TTC3 HGNC:12393      1
6218               21 37073226 37203112         TTC3 HGNC:12393      1
6219               21 37073226 37203112         TTC3 HGNC:12393      1
6220               21 37073226 37203112         TTC3 HGNC:12393      1
6221               21 37073226 37203112         TTC3 HGNC:12393      1
6222               21 37073226 37203112         TTC3 HGNC:12393      1
6223               21 37073226 37203112         TTC3 HGNC:12393      1
6224               21 37073226 37203112         TTC3 HGNC:12393      1
6225               21 37073226 37203112         TTC3 HGNC:12393      1
6226               21 37073226 37203112         TTC3 HGNC:12393      1
6227               21 37073226 37203112         TTC3 HGNC:12393      1
6228               21 37073226 37203112         TTC3 HGNC:12393      1
6229               21 37073226 37203112         TTC3 HGNC:12393      1
6230               21 37073226 37203112         TTC3 HGNC:12393      1
6231               21 37073226 37203112         TTC3 HGNC:12393      1
6232               21 37073226 37203112         TTC3 HGNC:12393      1
6233               21 37073226 37203112         TTC3 HGNC:12393      1
6234               21 37073226 37203112         TTC3 HGNC:12393      1
6235               21 37073226 37203112         TTC3 HGNC:12393      1
6236               21 37073226 37203112         TTC3 HGNC:12393      1
6237               21 37073226 37203112         TTC3 HGNC:12393      1
6238               21 37073226 37203112         TTC3 HGNC:12393      1
6239               21 37073226 37203112         TTC3 HGNC:12393      1
6240               21 37073226 37203112         TTC3 HGNC:12393      1
6241               21 37073226 37203112         TTC3 HGNC:12393      1
6242               21 37073226 37203112         TTC3 HGNC:12393      1
6243               21 37073226 37203112         TTC3 HGNC:12393      1
6244               21 37073226 37203112         TTC3 HGNC:12393      1
6245               21 37073226 37203112         TTC3 HGNC:12393      1
6246               21 37073226 37203112         TTC3 HGNC:12393      1
6247               21 37073226 37203112         TTC3 HGNC:12393      1
6248               21 37073226 37203112         TTC3 HGNC:12393      1
6249               21 37073226 37203112         TTC3 HGNC:12393      1
6250               21 37073226 37203112         TTC3 HGNC:12393      1
6251               21 37073226 37203112         TTC3 HGNC:12393      1
6252               21 37073226 37203112         TTC3 HGNC:12393      1
6253               21 37073226 37203112         TTC3 HGNC:12393      1
6254               21 37073226 37203112         TTC3 HGNC:12393      1
6255               21 37073226 37203112         TTC3 HGNC:12393      1
6256               21 37073226 37203112         TTC3 HGNC:12393      1
6257               21 37073226 37203112         TTC3 HGNC:12393      1
6258               21 37073226 37203112         TTC3 HGNC:12393      1
6259               21 37073226 37203112         TTC3 HGNC:12393      1
6260               21 37073226 37203112         TTC3 HGNC:12393      1
6261               21 37073226 37203112         TTC3 HGNC:12393      1
6262               21 37073226 37203112         TTC3 HGNC:12393      1
6263               21 37073226 37203112         TTC3 HGNC:12393      1
6264               21  6789592  6812297                              1
6265               21  6789592  6812297                              1
6266               21  6789592  6812297                              1
6267               21 29058073 29060095                             -1
6268               21 29058073 29060095                             -1
6269               21 29055805 29073797         CCT8  HGNC:1623     -1
6270               21 29055805 29073797         CCT8  HGNC:1623     -1
6271               21 29055805 29073797         CCT8  HGNC:1623     -1
6272               21 29055805 29073797         CCT8  HGNC:1623     -1
6273               21 29055805 29073797         CCT8  HGNC:1623     -1
6274               21 29055805 29073797         CCT8  HGNC:1623     -1
6275               21 29055805 29073797         CCT8  HGNC:1623     -1
6276               21 29055805 29073797         CCT8  HGNC:1623     -1
6277               21 29055805 29073797         CCT8  HGNC:1623     -1
6278               21 29055805 29073797         CCT8  HGNC:1623     -1
6279               21 29055805 29073797         CCT8  HGNC:1623     -1
6280               21 29055805 29073797         CCT8  HGNC:1623     -1
6281               21 29055805 29073797         CCT8  HGNC:1623     -1
6282               21 29055805 29073797         CCT8  HGNC:1623     -1
6283               21 29055805 29073797         CCT8  HGNC:1623     -1
6284               21 29055805 29073797         CCT8  HGNC:1623     -1
6285               21 29055805 29073797         CCT8  HGNC:1623     -1
6286               21 29055805 29073797         CCT8  HGNC:1623     -1
6287               21 29055805 29073797         CCT8  HGNC:1623     -1
6288               21 29055805 29073797         CCT8  HGNC:1623     -1
6289               21 29055805 29073797         CCT8  HGNC:1623     -1
6290               21 29055805 29073797         CCT8  HGNC:1623     -1
6291               21 29055805 29073797         CCT8  HGNC:1623     -1
6292               21 29055805 29073797         CCT8  HGNC:1623     -1
6293               21 29055805 29073797         CCT8  HGNC:1623     -1
6294               21 29055805 29073797         CCT8  HGNC:1623     -1
6295               21 29055805 29073797         CCT8  HGNC:1623     -1
6296               21 29055805 29073797         CCT8  HGNC:1623     -1
6297               21 29055805 29073797         CCT8  HGNC:1623     -1
6298               21 29055805 29073797         CCT8  HGNC:1623     -1
6299               21 29055805 29073797         CCT8  HGNC:1623     -1
6300               21 29055805 29073797         CCT8  HGNC:1623     -1
6301               21 29055805 29073797         CCT8  HGNC:1623     -1
6302               21 29055805 29073797         CCT8  HGNC:1623     -1
6303               21 29055805 29073797         CCT8  HGNC:1623     -1
6304               21 29055805 29073797         CCT8  HGNC:1623     -1
6305               21 29055805 29073797         CCT8  HGNC:1623     -1
6306               21 29055805 29073797         CCT8  HGNC:1623     -1
6307               21 29055805 29073797         CCT8  HGNC:1623     -1
6308               21 29055805 29073797         CCT8  HGNC:1623     -1
6309               21 29055805 29073797         CCT8  HGNC:1623     -1
6310               21 29055805 29073797         CCT8  HGNC:1623     -1
6311               21 29055805 29073797         CCT8  HGNC:1623     -1
6312               21 29055805 29073797         CCT8  HGNC:1623     -1
6313               21 29055805 29073797         CCT8  HGNC:1623     -1
6314               21 29055805 29073797         CCT8  HGNC:1623     -1
6315               21 29055805 29073797         CCT8  HGNC:1623     -1
6316               21 29055805 29073797         CCT8  HGNC:1623     -1
6317               21 29055805 29073797         CCT8  HGNC:1623     -1
6318               21 29055805 29073797         CCT8  HGNC:1623     -1
6319               21 29055805 29073797         CCT8  HGNC:1623     -1
6320               21 29055805 29073797         CCT8  HGNC:1623     -1
6321               21 29055805 29073797         CCT8  HGNC:1623     -1
6322               21 29055805 29073797         CCT8  HGNC:1623     -1
6323               21 29055805 29073797         CCT8  HGNC:1623     -1
6324               21 29055805 29073797         CCT8  HGNC:1623     -1
6325               21 29055805 29073797         CCT8  HGNC:1623     -1
6326               21 29055805 29073797         CCT8  HGNC:1623     -1
6327               21 29055805 29073797         CCT8  HGNC:1623     -1
6328               21 29055805 29073797         CCT8  HGNC:1623     -1
6329               21 29055805 29073797         CCT8  HGNC:1623     -1
6330               21 29055805 29073797         CCT8  HGNC:1623     -1
6331               21 29055805 29073797         CCT8  HGNC:1623     -1
6332               21 29055805 29073797         CCT8  HGNC:1623     -1
6333               21 29055805 29073797         CCT8  HGNC:1623     -1
6334               21 29055805 29073797         CCT8  HGNC:1623     -1
6335               21 29055805 29073797         CCT8  HGNC:1623     -1
6336               21 29055805 29073797         CCT8  HGNC:1623     -1
6337               21 29055805 29073797         CCT8  HGNC:1623     -1
6338               21 29055805 29073797         CCT8  HGNC:1623     -1
6339               21 29055805 29073797         CCT8  HGNC:1623     -1
6340               21 29055805 29073797         CCT8  HGNC:1623     -1
6341               21 29055805 29073797         CCT8  HGNC:1623     -1
6342               21 29055805 29073797         CCT8  HGNC:1623     -1
6343               21 29055805 29073797         CCT8  HGNC:1623     -1
6344               21 29055805 29073797         CCT8  HGNC:1623     -1
6345               21 29055805 29073797         CCT8  HGNC:1623     -1
6346               21 29055805 29073797         CCT8  HGNC:1623     -1
6347               21 29055805 29073797         CCT8  HGNC:1623     -1
6348               21 29055805 29073797         CCT8  HGNC:1623     -1
6349               21 29055805 29073797         CCT8  HGNC:1623     -1
6350               21 29055805 29073797         CCT8  HGNC:1623     -1
6351               21 29055805 29073797         CCT8  HGNC:1623     -1
6352               21 29055805 29073797         CCT8  HGNC:1623     -1
6353               21 29055805 29073797         CCT8  HGNC:1623     -1
6354               21 29055805 29073797         CCT8  HGNC:1623     -1
6355               21 29055805 29073797         CCT8  HGNC:1623     -1
6356               21 29055805 29073797         CCT8  HGNC:1623     -1
6357               21 29055805 29073797         CCT8  HGNC:1623     -1
6358               21 29055805 29073797         CCT8  HGNC:1623     -1
6359               21 29055805 29073797         CCT8  HGNC:1623     -1
6360               21 29055805 29073797         CCT8  HGNC:1623     -1
6361               21 29055805 29073797         CCT8  HGNC:1623     -1
6362               21 29055805 29073797         CCT8  HGNC:1623     -1
6363               21 29055805 29073797         CCT8  HGNC:1623     -1
6364               21 29055805 29073797         CCT8  HGNC:1623     -1
6365               21 29055805 29073797         CCT8  HGNC:1623     -1
6366               21 29055805 29073797         CCT8  HGNC:1623     -1
6367               21 29055805 29073797         CCT8  HGNC:1623     -1
6368               21 29055805 29073797         CCT8  HGNC:1623     -1
6369               21 29055805 29073797         CCT8  HGNC:1623     -1
6370               21 29055805 29073797         CCT8  HGNC:1623     -1
6371               21  6858539  6897263                              1
6372               21  6858539  6897263                              1
6373               21  6858539  6897263                              1
6374               21 33334571 33335096       USF1P1 HGNC:23773      1
6375               21 33324477 33359862       IFNAR1  HGNC:5432      1
6376               21 33324477 33359862       IFNAR1  HGNC:5432      1
6377               21 33324477 33359862       IFNAR1  HGNC:5432      1
6378               21 33324477 33359862       IFNAR1  HGNC:5432      1
6379               21 33324477 33359862       IFNAR1  HGNC:5432      1
6380               21 33324477 33359862       IFNAR1  HGNC:5432      1
6381               21 33324477 33359862       IFNAR1  HGNC:5432      1
6382               21 33324477 33359862       IFNAR1  HGNC:5432      1
6383               21 33324477 33359862       IFNAR1  HGNC:5432      1
6384               21 33324477 33359862       IFNAR1  HGNC:5432      1
6385               21 33324477 33359862       IFNAR1  HGNC:5432      1
6386               21 33324477 33359862       IFNAR1  HGNC:5432      1
6387               21 33324477 33359862       IFNAR1  HGNC:5432      1
6388               21 33324477 33359862       IFNAR1  HGNC:5432      1
6389               21 33324477 33359862       IFNAR1  HGNC:5432      1
6390               21 33324477 33359862       IFNAR1  HGNC:5432      1
6391               21 33324477 33359862       IFNAR1  HGNC:5432      1
6392               21  6897291  6899280                              1
6393               21  6904884  6906692                              1
6394               21  6904884  6906692                              1
6395               21  6994374  6997737                             -1
6396               21  6994374  6997737                             -1
6397               21  6994374  6997737                             -1
6398               21  6986450  6997765                             -1
6399               21  6986450  6997765                             -1
6400               21  6986450  6997765                             -1
6401               21  6986450  6997765                             -1
6402               21  6986450  6997765                             -1
6403               21  6986450  6997765                             -1
6404               21  6986450  6997765                             -1
6405               21  6986450  6997765                             -1
6406               21  6986450  6997765                             -1
6407               21  6986450  6997765                             -1
6408               21  6986450  6997765                             -1
6409               21 39405844 39445805        LCA5L  HGNC:1255     -1
6410               21 39405844 39445805        LCA5L  HGNC:1255     -1
6411               21 39405844 39445805        LCA5L  HGNC:1255     -1
6412               21 39405844 39445805        LCA5L  HGNC:1255     -1
6413               21 39405844 39445805        LCA5L  HGNC:1255     -1
6414               21 39405844 39445805        LCA5L  HGNC:1255     -1
6415               21 39405844 39445805        LCA5L  HGNC:1255     -1
6416               21 39405844 39445805        LCA5L  HGNC:1255     -1
6417               21 39405844 39445805        LCA5L  HGNC:1255     -1
6418               21 39405844 39445805        LCA5L  HGNC:1255     -1
6419               21 39405844 39445805        LCA5L  HGNC:1255     -1
6420               21 39405844 39445805        LCA5L  HGNC:1255     -1
6421               21 39405844 39445805        LCA5L  HGNC:1255     -1
6422               21 39405844 39445805        LCA5L  HGNC:1255     -1
6423               21 39405844 39445805        LCA5L  HGNC:1255     -1
6424               21 39405844 39445805        LCA5L  HGNC:1255     -1
6425               21 39405844 39445805        LCA5L  HGNC:1255     -1
6426               21 39405844 39445805        LCA5L  HGNC:1255     -1
6427               21 39405844 39445805        LCA5L  HGNC:1255     -1
6428               21 39405844 39445805        LCA5L  HGNC:1255     -1
6429               21 39405844 39445805        LCA5L  HGNC:1255     -1
6430               21 39405844 39445805        LCA5L  HGNC:1255     -1
6431               21 39405844 39445805        LCA5L  HGNC:1255     -1
6432               21 39405844 39445805        LCA5L  HGNC:1255     -1
6433               21 39405844 39445805        LCA5L  HGNC:1255     -1
6434               21 39405844 39445805        LCA5L  HGNC:1255     -1
6435               21 39405844 39445805        LCA5L  HGNC:1255     -1
6436               21 39405844 39445805        LCA5L  HGNC:1255     -1
6437               21 39405844 39445805        LCA5L  HGNC:1255     -1
6438               21 39405844 39445805        LCA5L  HGNC:1255     -1
6439               21 39405844 39445805        LCA5L  HGNC:1255     -1
6440               21 39405844 39445805        LCA5L  HGNC:1255     -1
6441               21 39405844 39445805        LCA5L  HGNC:1255     -1
6442               21 39405844 39445805        LCA5L  HGNC:1255     -1
6443               21 39405844 39445805        LCA5L  HGNC:1255     -1
6444               21 39405844 39445805        LCA5L  HGNC:1255     -1
6445               21 39405844 39445805        LCA5L  HGNC:1255     -1
6446               21 39405844 39445805        LCA5L  HGNC:1255     -1
6447               21 39405844 39445805        LCA5L  HGNC:1255     -1
6448               21 39405844 39445805        LCA5L  HGNC:1255     -1
6449               21 39405844 39445805        LCA5L  HGNC:1255     -1
6450               21 39405844 39445805        LCA5L  HGNC:1255     -1
6451               21 39405844 39445805        LCA5L  HGNC:1255     -1
6452               21 39405844 39445805        LCA5L  HGNC:1255     -1
6453               21 39405844 39445805        LCA5L  HGNC:1255     -1
6454               21 39405844 39445805        LCA5L  HGNC:1255     -1
6455               21 39405844 39445805        LCA5L  HGNC:1255     -1
6456               21 39405844 39445805        LCA5L  HGNC:1255     -1
6457               21 39405844 39445805        LCA5L  HGNC:1255     -1
6458               21 39405844 39445805        LCA5L  HGNC:1255     -1
6459               21 39405844 39445805        LCA5L  HGNC:1255     -1
6460               21 39405844 39445805        LCA5L  HGNC:1255     -1
6461               21 39405844 39445805        LCA5L  HGNC:1255     -1
6462               21 39405844 39445805        LCA5L  HGNC:1255     -1
6463               21 39405844 39445805        LCA5L  HGNC:1255     -1
6464               21 39405844 39445805        LCA5L  HGNC:1255     -1
6465               21 39405844 39445805        LCA5L  HGNC:1255     -1
6466               21 39405844 39445805        LCA5L  HGNC:1255     -1
6467               21 39405844 39445805        LCA5L  HGNC:1255     -1
6468               21 39405844 39445805        LCA5L  HGNC:1255     -1
6469               21 39405844 39445805        LCA5L  HGNC:1255     -1
6470               21 39405844 39445805        LCA5L  HGNC:1255     -1
6471               21 39405844 39445805        LCA5L  HGNC:1255     -1
6472               21 39405844 39445805        LCA5L  HGNC:1255     -1
6473               21 39405844 39445805        LCA5L  HGNC:1255     -1
6474               21 39405844 39445805        LCA5L  HGNC:1255     -1
6475               21 39405844 39445805        LCA5L  HGNC:1255     -1
6476               21 39405844 39445805        LCA5L  HGNC:1255     -1
6477               21 39405844 39445805        LCA5L  HGNC:1255     -1
6478               21 39405844 39445805        LCA5L  HGNC:1255     -1
6479               21 39405844 39445805        LCA5L  HGNC:1255     -1
6480               21 39405844 39445805        LCA5L  HGNC:1255     -1
6481               21 39405844 39445805        LCA5L  HGNC:1255     -1
6482               21 39405844 39445805        LCA5L  HGNC:1255     -1
6483               21 39405844 39445805        LCA5L  HGNC:1255     -1
6484               21 39405844 39445805        LCA5L  HGNC:1255     -1
6485               21 39405844 39445805        LCA5L  HGNC:1255     -1
6486               21 39405844 39445805        LCA5L  HGNC:1255     -1
6487               21 39405844 39445805        LCA5L  HGNC:1255     -1
6488               21 39405844 39445805        LCA5L  HGNC:1255     -1
6489               21 39405844 39445805        LCA5L  HGNC:1255     -1
6490               21 39405844 39445805        LCA5L  HGNC:1255     -1
6491               21 39405844 39445805        LCA5L  HGNC:1255     -1
6492               21 39405844 39445805        LCA5L  HGNC:1255     -1
6493               21 39405844 39445805        LCA5L  HGNC:1255     -1
6494               21 39405844 39445805        LCA5L  HGNC:1255     -1
6495               21 39405844 39445805        LCA5L  HGNC:1255     -1
6496               21 39405844 39445805        LCA5L  HGNC:1255     -1
6497               21 39405844 39445805        LCA5L  HGNC:1255     -1
6498               21 39405844 39445805        LCA5L  HGNC:1255     -1
6499               21 39405844 39445805        LCA5L  HGNC:1255     -1
6500               21 39405844 39445805        LCA5L  HGNC:1255     -1
6501               21 39405844 39445805        LCA5L  HGNC:1255     -1
6502               21 39405844 39445805        LCA5L  HGNC:1255     -1
6503               21 39405844 39445805        LCA5L  HGNC:1255     -1
6504               21 39405844 39445805        LCA5L  HGNC:1255     -1
6505               21 39405844 39445805        LCA5L  HGNC:1255     -1
6506               21 39405844 39445805        LCA5L  HGNC:1255     -1
6507               21 39405844 39445805        LCA5L  HGNC:1255     -1
6508               21 39405844 39445805        LCA5L  HGNC:1255     -1
6509               21 39405844 39445805        LCA5L  HGNC:1255     -1
6510               21 39405844 39445805        LCA5L  HGNC:1255     -1
6511               21 39405844 39445805        LCA5L  HGNC:1255     -1
6512               21 39405844 39445805        LCA5L  HGNC:1255     -1
6513               21 39405844 39445805        LCA5L  HGNC:1255     -1
6514               21 39405844 39445805        LCA5L  HGNC:1255     -1
6515               21 39405844 39445805        LCA5L  HGNC:1255     -1
6516               21 39405844 39445805        LCA5L  HGNC:1255     -1
6517               21 39405844 39445805        LCA5L  HGNC:1255     -1
6518               21 39405844 39445805        LCA5L  HGNC:1255     -1
6519               21 39405844 39445805        LCA5L  HGNC:1255     -1
6520               21 39405844 39445805        LCA5L  HGNC:1255     -1
6521               21 39405844 39445805        LCA5L  HGNC:1255     -1
6522               21 39405844 39445805        LCA5L  HGNC:1255     -1
6523               21 39405844 39445805        LCA5L  HGNC:1255     -1
6524               21 39405844 39445805        LCA5L  HGNC:1255     -1
6525               21 39405844 39445805        LCA5L  HGNC:1255     -1
6526               21  7003248  7007022                             -1
6527               21  7003248  7007022                             -1
6528               21  7003248  7007022                             -1
6529               21  7003248  7007022                             -1
6530               21  7003248  7007022                             -1
6531               21  7003248  7007022                             -1
6532               21  7003248  7007022                             -1
6533               21  7003248  7007022                             -1
6534               21  7003248  7007022                             -1
6535               21 33263873 33266260   IL10RB-AS1 HGNC:44303     -1
6536               21 33263873 33266260   IL10RB-AS1 HGNC:44303     -1
6537               21 29024629 29054488        USP16 HGNC:12614      1
6538               21 29024629 29054488        USP16 HGNC:12614      1
6539               21 29024629 29054488        USP16 HGNC:12614      1
6540               21 29024629 29054488        USP16 HGNC:12614      1
6541               21 29024629 29054488        USP16 HGNC:12614      1
6542               21 29024629 29054488        USP16 HGNC:12614      1
6543               21 29024629 29054488        USP16 HGNC:12614      1
6544               21 29024629 29054488        USP16 HGNC:12614      1
6545               21 29024629 29054488        USP16 HGNC:12614      1
6546               21 29024629 29054488        USP16 HGNC:12614      1
6547               21 29024629 29054488        USP16 HGNC:12614      1
6548               21 29024629 29054488        USP16 HGNC:12614      1
6549               21 29024629 29054488        USP16 HGNC:12614      1
6550               21 29024629 29054488        USP16 HGNC:12614      1
6551               21 29024629 29054488        USP16 HGNC:12614      1
6552               21 29024629 29054488        USP16 HGNC:12614      1
6553               21 29024629 29054488        USP16 HGNC:12614      1
6554               21 29024629 29054488        USP16 HGNC:12614      1
6555               21 29024629 29054488        USP16 HGNC:12614      1
6556               21 29024629 29054488        USP16 HGNC:12614      1
6557               21 29024629 29054488        USP16 HGNC:12614      1
6558               21 29024629 29054488        USP16 HGNC:12614      1
6559               21 29024629 29054488        USP16 HGNC:12614      1
6560               21 29024629 29054488        USP16 HGNC:12614      1
6561               21 29024629 29054488        USP16 HGNC:12614      1
6562               21 29024629 29054488        USP16 HGNC:12614      1
6563               21 29024629 29054488        USP16 HGNC:12614      1
6564               21 29024629 29054488        USP16 HGNC:12614      1
6565               21 29024629 29054488        USP16 HGNC:12614      1
6566               21 29024629 29054488        USP16 HGNC:12614      1
6567               21 29024629 29054488        USP16 HGNC:12614      1
6568               21 29024629 29054488        USP16 HGNC:12614      1
6569               21 29024629 29054488        USP16 HGNC:12614      1
6570               21 29024629 29054488        USP16 HGNC:12614      1
6571               21 29024629 29054488        USP16 HGNC:12614      1
6572               21 29024629 29054488        USP16 HGNC:12614      1
6573               21 29024629 29054488        USP16 HGNC:12614      1
6574               21 29024629 29054488        USP16 HGNC:12614      1
6575               21 29024629 29054488        USP16 HGNC:12614      1
6576               21 29024629 29054488        USP16 HGNC:12614      1
6577               21 29024629 29054488        USP16 HGNC:12614      1
6578               21 29024629 29054488        USP16 HGNC:12614      1
6579               21 29024629 29054488        USP16 HGNC:12614      1
6580               21 29024629 29054488        USP16 HGNC:12614      1
6581               21 29024629 29054488        USP16 HGNC:12614      1
6582               21 29024629 29054488        USP16 HGNC:12614      1
6583               21 29024629 29054488        USP16 HGNC:12614      1
6584               21 29024629 29054488        USP16 HGNC:12614      1
6585               21 29024629 29054488        USP16 HGNC:12614      1
6586               21 29024629 29054488        USP16 HGNC:12614      1
6587               21 29024629 29054488        USP16 HGNC:12614      1
6588               21 29024629 29054488        USP16 HGNC:12614      1
6589               21 29024629 29054488        USP16 HGNC:12614      1
6590               21 29024629 29054488        USP16 HGNC:12614      1
6591               21 29024629 29054488        USP16 HGNC:12614      1
6592               21 29024629 29054488        USP16 HGNC:12614      1
6593               21 29024629 29054488        USP16 HGNC:12614      1
6594               21 29024629 29054488        USP16 HGNC:12614      1
6595               21 29024629 29054488        USP16 HGNC:12614      1
6596               21 29024629 29054488        USP16 HGNC:12614      1
6597               21 29024629 29054488        USP16 HGNC:12614      1
6598               21 29024629 29054488        USP16 HGNC:12614      1
6599               21 29024629 29054488        USP16 HGNC:12614      1
6600               21 29024629 29054488        USP16 HGNC:12614      1
6601               21 29024629 29054488        USP16 HGNC:12614      1
6602               21 29024629 29054488        USP16 HGNC:12614      1
6603               21 29024629 29054488        USP16 HGNC:12614      1
6604               21 29024629 29054488        USP16 HGNC:12614      1
6605               21 29024629 29054488        USP16 HGNC:12614      1
6606               21 29024629 29054488        USP16 HGNC:12614      1
6607               21 29024629 29054488        USP16 HGNC:12614      1
6608               21 29024629 29054488        USP16 HGNC:12614      1
6609               21 29024629 29054488        USP16 HGNC:12614      1
6610               21 29024629 29054488        USP16 HGNC:12614      1
6611               21 29024629 29054488        USP16 HGNC:12614      1
6612               21 29024629 29054488        USP16 HGNC:12614      1
6613               21 29024629 29054488        USP16 HGNC:12614      1
6614               21 29024629 29054488        USP16 HGNC:12614      1
6615               21 29024629 29054488        USP16 HGNC:12614      1
6616               21 32793564 32813743     C21orf62  HGNC:1305     -1
6617               21 32793564 32813743     C21orf62  HGNC:1305     -1
6618               21 32793564 32813743     C21orf62  HGNC:1305     -1
6619               21 32793564 32813743     C21orf62  HGNC:1305     -1
6620               21 32793564 32813743     C21orf62  HGNC:1305     -1
6621               21 32793564 32813743     C21orf62  HGNC:1305     -1
6622               21 32793564 32813743     C21orf62  HGNC:1305     -1
6623               21 32793564 32813743     C21orf62  HGNC:1305     -1
6624               21 32793564 32813743     C21orf62  HGNC:1305     -1
6625               21 32793564 32813743     C21orf62  HGNC:1305     -1
6626               21 32793564 32813743     C21orf62  HGNC:1305     -1
6627               21 32793564 32813743     C21orf62  HGNC:1305     -1
6628               21 36485983 36487411      PSMD4P1  HGNC:9562     -1
6629               21 36485983 36487411      PSMD4P1  HGNC:9562     -1
6630               21 23090028 23091831      ZNF299P HGNC:13088     -1
6631               21 22436290 22438349     MAPK6PS2 HGNC:16756     -1
6632               21 21723293 21737319    LINC00317 HGNC:23126     -1
6633               21 21723293 21737319    LINC00317 HGNC:23126     -1
6634               21 21723293 21737319    LINC00317 HGNC:23126     -1
6635               21 44107290 44131181         PWP2  HGNC:9711      1
6636               21 44107290 44131181         PWP2  HGNC:9711      1
6637               21 44107290 44131181         PWP2  HGNC:9711      1
6638               21 44107290 44131181         PWP2  HGNC:9711      1
6639               21 44107290 44131181         PWP2  HGNC:9711      1
6640               21 44107290 44131181         PWP2  HGNC:9711      1
6641               21 44107290 44131181         PWP2  HGNC:9711      1
6642               21 44107290 44131181         PWP2  HGNC:9711      1
6643               21 44107290 44131181         PWP2  HGNC:9711      1
6644               21 44107290 44131181         PWP2  HGNC:9711      1
6645               21 44107290 44131181         PWP2  HGNC:9711      1
6646               21 44107290 44131181         PWP2  HGNC:9711      1
6647               21 44107290 44131181         PWP2  HGNC:9711      1
6648               21 44107290 44131181         PWP2  HGNC:9711      1
6649               21 44107290 44131181         PWP2  HGNC:9711      1
6650               21 44107290 44131181         PWP2  HGNC:9711      1
6651               21 44107290 44131181         PWP2  HGNC:9711      1
6652               21 44107290 44131181         PWP2  HGNC:9711      1
6653               21 44107290 44131181         PWP2  HGNC:9711      1
6654               21 44107290 44131181         PWP2  HGNC:9711      1
6655               21 44107290 44131181         PWP2  HGNC:9711      1
6656               21 44107290 44131181         PWP2  HGNC:9711      1
6657               21 44107290 44131181         PWP2  HGNC:9711      1
6658               21 44107290 44131181         PWP2  HGNC:9711      1
6659               21 44107290 44131181         PWP2  HGNC:9711      1
6660               21 44107290 44131181         PWP2  HGNC:9711      1
6661               21 44107290 44131181         PWP2  HGNC:9711      1
6662               21 44107290 44131181         PWP2  HGNC:9711      1
6663               21 44107290 44131181         PWP2  HGNC:9711      1
6664               21 44107290 44131181         PWP2  HGNC:9711      1
6665               21 44107290 44131181         PWP2  HGNC:9711      1
6666               21 44107290 44131181         PWP2  HGNC:9711      1
6667               21 44107290 44131181         PWP2  HGNC:9711      1
6668               21 44107290 44131181         PWP2  HGNC:9711      1
6669               21 44107290 44131181         PWP2  HGNC:9711      1
6670               21 44107290 44131181         PWP2  HGNC:9711      1
6671               21 44107290 44131181         PWP2  HGNC:9711      1
6672               21 44107290 44131181         PWP2  HGNC:9711      1
6673               21 44107290 44131181         PWP2  HGNC:9711      1
6674               21 44107290 44131181         PWP2  HGNC:9711      1
6675               21 44107290 44131181         PWP2  HGNC:9711      1
6676               21 44107290 44131181         PWP2  HGNC:9711      1
6677               21 44107290 44131181         PWP2  HGNC:9711      1
6678               21 44107290 44131181         PWP2  HGNC:9711      1
6679               21 44107290 44131181         PWP2  HGNC:9711      1
6680               21 44107290 44131181         PWP2  HGNC:9711      1
6681               21 19130523 19134423                              1
6682               21 19130523 19134423                              1
6683               21 19244543 19246392     SLC6A6P1 HGNC:11053      1
6684               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6685               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6686               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6687               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6688               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6689               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6690               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6691               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6692               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6693               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6694               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6695               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6696               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6697               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6698               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6699               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6700               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6701               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6702               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6703               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6704               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6705               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6706               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6707               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6708               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6709               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6710               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6711               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6712               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6713               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6714               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6715               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6716               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6717               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6718               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6719               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6720               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6721               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6722               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6723               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6724               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6725               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6726               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6727               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6728               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6729               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6730               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6731               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6732               21 33432485 33480011      TMEM50B  HGNC:1280     -1
6733               21 33070144 33072420        OLIG1 HGNC:16983      1
6734               21 33070144 33072420        OLIG1 HGNC:16983      1
6735               21 33070144 33072420        OLIG1 HGNC:16983      1
6736               21 33070144 33072420        OLIG1 HGNC:16983      1
6737               21 33070144 33072420        OLIG1 HGNC:16983      1
6738               21 32844367 32849934                             -1
6739               21 32844367 32849934                             -1
6740               21  6309161  6312948                              1
6741               21  6309161  6312948                              1
6742               21  6309161  6312948                              1
6743               21  6309161  6312948                              1
6744               21  6309161  6312948                              1
6745               21  6309161  6312948                              1
6746               21 36750888 36990236         HLCS  HGNC:4976     -1
6747               21 36750888 36990236         HLCS  HGNC:4976     -1
6748               21 36750888 36990236         HLCS  HGNC:4976     -1
6749               21 36750888 36990236         HLCS  HGNC:4976     -1
6750               21 36750888 36990236         HLCS  HGNC:4976     -1
6751               21 36750888 36990236         HLCS  HGNC:4976     -1
6752               21 36750888 36990236         HLCS  HGNC:4976     -1
6753               21 36750888 36990236         HLCS  HGNC:4976     -1
6754               21 36750888 36990236         HLCS  HGNC:4976     -1
6755               21 36750888 36990236         HLCS  HGNC:4976     -1
6756               21 36750888 36990236         HLCS  HGNC:4976     -1
6757               21 36750888 36990236         HLCS  HGNC:4976     -1
6758               21 36750888 36990236         HLCS  HGNC:4976     -1
6759               21 36750888 36990236         HLCS  HGNC:4976     -1
6760               21 36750888 36990236         HLCS  HGNC:4976     -1
6761               21 36750888 36990236         HLCS  HGNC:4976     -1
6762               21 36750888 36990236         HLCS  HGNC:4976     -1
6763               21 36750888 36990236         HLCS  HGNC:4976     -1
6764               21 36750888 36990236         HLCS  HGNC:4976     -1
6765               21 36750888 36990236         HLCS  HGNC:4976     -1
6766               21 36750888 36990236         HLCS  HGNC:4976     -1
6767               21 36750888 36990236         HLCS  HGNC:4976     -1
6768               21 36750888 36990236         HLCS  HGNC:4976     -1
6769               21 36750888 36990236         HLCS  HGNC:4976     -1
6770               21 36750888 36990236         HLCS  HGNC:4976     -1
6771               21 36750888 36990236         HLCS  HGNC:4976     -1
6772               21 36750888 36990236         HLCS  HGNC:4976     -1
6773               21 36750888 36990236         HLCS  HGNC:4976     -1
6774               21 36750888 36990236         HLCS  HGNC:4976     -1
6775               21 36750888 36990236         HLCS  HGNC:4976     -1
6776               21 36750888 36990236         HLCS  HGNC:4976     -1
6777               21 36750888 36990236         HLCS  HGNC:4976     -1
6778               21 36750888 36990236         HLCS  HGNC:4976     -1
6779               21 36750888 36990236         HLCS  HGNC:4976     -1
6780               21 36750888 36990236         HLCS  HGNC:4976     -1
6781               21 36750888 36990236         HLCS  HGNC:4976     -1
6782               21 36750888 36990236         HLCS  HGNC:4976     -1
6783               21 36750888 36990236         HLCS  HGNC:4976     -1
6784               21 36750888 36990236         HLCS  HGNC:4976     -1
6785               21 36750888 36990236         HLCS  HGNC:4976     -1
6786               21 36750888 36990236         HLCS  HGNC:4976     -1
6787               21 36750888 36990236         HLCS  HGNC:4976     -1
6788               21 36750888 36990236         HLCS  HGNC:4976     -1
6789               21 36750888 36990236         HLCS  HGNC:4976     -1
6790               21 36750888 36990236         HLCS  HGNC:4976     -1
6791               21 36750888 36990236         HLCS  HGNC:4976     -1
6792               21 36750888 36990236         HLCS  HGNC:4976     -1
6793               21 36750888 36990236         HLCS  HGNC:4976     -1
6794               21 36750888 36990236         HLCS  HGNC:4976     -1
6795               21 36750888 36990236         HLCS  HGNC:4976     -1
6796               21 36750888 36990236         HLCS  HGNC:4976     -1
6797               21 36698773 36701564                             -1
6798               21 36698773 36701564                             -1
6799               21  6008604  6008810                              1
6800               21  7020599  7025166                              1
6801               21  7020599  7025166                              1
6802               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6803               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6804               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6805               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6806               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6807               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6808               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6809               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6810               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6811               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6812               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6813               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6814               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6815               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6816               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6817               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6818               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6819               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6820               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6821               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6822               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6823               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6824               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6825               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6826               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6827               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6828               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6829               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6830               21 29004384 29019378       RWDD2B  HGNC:1302     -1
6831               21 37006150 37019659      RIPPLY3  HGNC:3047      1
6832               21 37006150 37019659      RIPPLY3  HGNC:3047      1
6833               21 37006150 37019659      RIPPLY3  HGNC:3047      1
6834               21 37006150 37019659      RIPPLY3  HGNC:3047      1
6835               21 37006150 37019659      RIPPLY3  HGNC:3047      1
6836               21 37006150 37019659      RIPPLY3  HGNC:3047      1
6837               21 37006150 37019659      RIPPLY3  HGNC:3047      1
6838               21 37006150 37019659      RIPPLY3  HGNC:3047      1
6839               21 37006150 37019659      RIPPLY3  HGNC:3047      1
6840               21 37006150 37019659      RIPPLY3  HGNC:3047      1
6841               21 37006150 37019659      RIPPLY3  HGNC:3047      1
6842               21 36699133 36749917         SIM2 HGNC:10883      1
6843               21 36699133 36749917         SIM2 HGNC:10883      1
6844               21 36699133 36749917         SIM2 HGNC:10883      1
6845               21 36699133 36749917         SIM2 HGNC:10883      1
6846               21 36699133 36749917         SIM2 HGNC:10883      1
6847               21 36699133 36749917         SIM2 HGNC:10883      1
6848               21 36699133 36749917         SIM2 HGNC:10883      1
6849               21 36699133 36749917         SIM2 HGNC:10883      1
6850               21 36699133 36749917         SIM2 HGNC:10883      1
6851               21 36699133 36749917         SIM2 HGNC:10883      1
6852               21 36699133 36749917         SIM2 HGNC:10883      1
6853               21 36699133 36749917         SIM2 HGNC:10883      1
6854               21 36699133 36749917         SIM2 HGNC:10883      1
6855               21 36699133 36749917         SIM2 HGNC:10883      1
6856               21 36699133 36749917         SIM2 HGNC:10883      1
6857               21 36699133 36749917         SIM2 HGNC:10883      1
6858               21 36699133 36749917         SIM2 HGNC:10883      1
6859               21 36699133 36749917         SIM2 HGNC:10883      1
6860               21 36699133 36749917         SIM2 HGNC:10883      1
6861               21 36699133 36749917         SIM2 HGNC:10883      1
6862               21 36699133 36749917         SIM2 HGNC:10883      1
6863               21 36699133 36749917         SIM2 HGNC:10883      1
6864               21 36699133 36749917         SIM2 HGNC:10883      1
6865               21 36699133 36749917         SIM2 HGNC:10883      1
6866               21 36699133 36749917         SIM2 HGNC:10883      1
6867               21 36699133 36749917         SIM2 HGNC:10883      1
6868               21 36699133 36749917         SIM2 HGNC:10883      1
6869               21 36699133 36749917         SIM2 HGNC:10883      1
6870               21 36699133 36749917         SIM2 HGNC:10883      1
6871               21 36699133 36749917         SIM2 HGNC:10883      1
6872               21 36699133 36749917         SIM2 HGNC:10883      1
6873               21 36699133 36749917         SIM2 HGNC:10883      1
6874               21 36699133 36749917         SIM2 HGNC:10883      1
6875               21 36699133 36749917         SIM2 HGNC:10883      1
6876               21 36699133 36749917         SIM2 HGNC:10883      1
6877               21 36632681 36637033                             -1
6878               21 36632681 36637033                             -1
6879               21  5972924  5973383                             -1
6880               21 21223295 21226829                             -1
6881               21 21223295 21226829                             -1
6882               21 19739709 19740150                              1
6883               21 19593841 19594108      RPL37P4 HGNC:17239      1
6884               21 18561265 18760003    MIR548XHG HGNC:52006     -1
6885               21 18561265 18760003    MIR548XHG HGNC:52006     -1
6886               21 18561265 18760003    MIR548XHG HGNC:52006     -1
6887               21 18561265 18760003    MIR548XHG HGNC:52006     -1
6888               21 18561265 18760003    MIR548XHG HGNC:52006     -1
6889               21 18561265 18760003    MIR548XHG HGNC:52006     -1
6890               21 18561265 18760003    MIR548XHG HGNC:52006     -1
6891               21 18561265 18760003    MIR548XHG HGNC:52006     -1
6892               21 18561265 18760003    MIR548XHG HGNC:52006     -1
6893               21 18561265 18760003    MIR548XHG HGNC:52006     -1
6894               21 18561265 18760003    MIR548XHG HGNC:52006     -1
6895               21 18561265 18760003    MIR548XHG HGNC:52006     -1
6896               21 42831040 42836477                             -1
6897               21 42831040 42836477                             -1
6898               21 42831040 42836477                             -1
6899               21 42777819 42779994    LINC01668 HGNC:52456     -1
6900               21 42777819 42779994    LINC01668 HGNC:52456     -1
6901               21 42777819 42779994    LINC01668 HGNC:52456     -1
6902               21 46161148 46184476      SPATC1L  HGNC:1298     -1
6903               21 46161148 46184476      SPATC1L  HGNC:1298     -1
6904               21 46161148 46184476      SPATC1L  HGNC:1298     -1
6905               21 46161148 46184476      SPATC1L  HGNC:1298     -1
6906               21 46161148 46184476      SPATC1L  HGNC:1298     -1
6907               21 46161148 46184476      SPATC1L  HGNC:1298     -1
6908               21 46161148 46184476      SPATC1L  HGNC:1298     -1
6909               21 46161148 46184476      SPATC1L  HGNC:1298     -1
6910               21 46161148 46184476      SPATC1L  HGNC:1298     -1
6911               21 41175231 41185239        PLAC4 HGNC:14616     -1
6912               21 41175231 41185239        PLAC4 HGNC:14616     -1
6913               21 33642400 33899861        ITSN1  HGNC:6183      1
6914               21 33642400 33899861        ITSN1  HGNC:6183      1
6915               21 33642400 33899861        ITSN1  HGNC:6183      1
6916               21 33642400 33899861        ITSN1  HGNC:6183      1
6917               21 33642400 33899861        ITSN1  HGNC:6183      1
6918               21 33642400 33899861        ITSN1  HGNC:6183      1
6919               21 33642400 33899861        ITSN1  HGNC:6183      1
6920               21 33642400 33899861        ITSN1  HGNC:6183      1
6921               21 33642400 33899861        ITSN1  HGNC:6183      1
6922               21 33642400 33899861        ITSN1  HGNC:6183      1
6923               21 33642400 33899861        ITSN1  HGNC:6183      1
6924               21 33642400 33899861        ITSN1  HGNC:6183      1
6925               21 33642400 33899861        ITSN1  HGNC:6183      1
6926               21 33642400 33899861        ITSN1  HGNC:6183      1
6927               21 33642400 33899861        ITSN1  HGNC:6183      1
6928               21 33642400 33899861        ITSN1  HGNC:6183      1
6929               21 33642400 33899861        ITSN1  HGNC:6183      1
6930               21 33642400 33899861        ITSN1  HGNC:6183      1
6931               21 33642400 33899861        ITSN1  HGNC:6183      1
6932               21 33642400 33899861        ITSN1  HGNC:6183      1
6933               21 33642400 33899861        ITSN1  HGNC:6183      1
6934               21 33642400 33899861        ITSN1  HGNC:6183      1
6935               21 33642400 33899861        ITSN1  HGNC:6183      1
6936               21 33642400 33899861        ITSN1  HGNC:6183      1
6937               21 33642400 33899861        ITSN1  HGNC:6183      1
6938               21 33642400 33899861        ITSN1  HGNC:6183      1
6939               21 33642400 33899861        ITSN1  HGNC:6183      1
6940               21 33642400 33899861        ITSN1  HGNC:6183      1
6941               21 33642400 33899861        ITSN1  HGNC:6183      1
6942               21 33642400 33899861        ITSN1  HGNC:6183      1
6943               21 33642400 33899861        ITSN1  HGNC:6183      1
6944               21 33642400 33899861        ITSN1  HGNC:6183      1
6945               21 33642400 33899861        ITSN1  HGNC:6183      1
6946               21 33642400 33899861        ITSN1  HGNC:6183      1
6947               21 33642400 33899861        ITSN1  HGNC:6183      1
6948               21 33642400 33899861        ITSN1  HGNC:6183      1
6949               21 33642400 33899861        ITSN1  HGNC:6183      1
6950               21 33642400 33899861        ITSN1  HGNC:6183      1
6951               21 33642400 33899861        ITSN1  HGNC:6183      1
6952               21 33642400 33899861        ITSN1  HGNC:6183      1
6953               21 33642400 33899861        ITSN1  HGNC:6183      1
6954               21 33642400 33899861        ITSN1  HGNC:6183      1
6955               21 33642400 33899861        ITSN1  HGNC:6183      1
6956               21 33642400 33899861        ITSN1  HGNC:6183      1
6957               21 33642400 33899861        ITSN1  HGNC:6183      1
6958               21 33642400 33899861        ITSN1  HGNC:6183      1
6959               21 33642400 33899861        ITSN1  HGNC:6183      1
6960               21 33642400 33899861        ITSN1  HGNC:6183      1
6961               21 33642400 33899861        ITSN1  HGNC:6183      1
6962               21 33642400 33899861        ITSN1  HGNC:6183      1
6963               21 33642400 33899861        ITSN1  HGNC:6183      1
6964               21 33642400 33899861        ITSN1  HGNC:6183      1
6965               21 33642400 33899861        ITSN1  HGNC:6183      1
6966               21 33642400 33899861        ITSN1  HGNC:6183      1
6967               21 33642400 33899861        ITSN1  HGNC:6183      1
6968               21 33642400 33899861        ITSN1  HGNC:6183      1
6969               21 33642400 33899861        ITSN1  HGNC:6183      1
6970               21 33642400 33899861        ITSN1  HGNC:6183      1
6971               21 33642400 33899861        ITSN1  HGNC:6183      1
6972               21 33642400 33899861        ITSN1  HGNC:6183      1
6973               21 33642400 33899861        ITSN1  HGNC:6183      1
6974               21 33642400 33899861        ITSN1  HGNC:6183      1
6975               21 33642400 33899861        ITSN1  HGNC:6183      1
6976               21 33642400 33899861        ITSN1  HGNC:6183      1
6977               21 33642400 33899861        ITSN1  HGNC:6183      1
6978               21 33642400 33899861        ITSN1  HGNC:6183      1
6979               21 33642400 33899861        ITSN1  HGNC:6183      1
6980               21 33642400 33899861        ITSN1  HGNC:6183      1
6981               21 33642400 33899861        ITSN1  HGNC:6183      1
6982               21 33642400 33899861        ITSN1  HGNC:6183      1
6983               21 33642400 33899861        ITSN1  HGNC:6183      1
6984               21 33642400 33899861        ITSN1  HGNC:6183      1
6985               21 33642400 33899861        ITSN1  HGNC:6183      1
6986               21 33642400 33899861        ITSN1  HGNC:6183      1
6987               21 33642400 33899861        ITSN1  HGNC:6183      1
6988               21 33642400 33899861        ITSN1  HGNC:6183      1
6989               21 33642400 33899861        ITSN1  HGNC:6183      1
6990               21 33642400 33899861        ITSN1  HGNC:6183      1
6991               21 33642400 33899861        ITSN1  HGNC:6183      1
6992               21 33642400 33899861        ITSN1  HGNC:6183      1
6993               21 33642400 33899861        ITSN1  HGNC:6183      1
6994               21 33642400 33899861        ITSN1  HGNC:6183      1
6995               21 33642400 33899861        ITSN1  HGNC:6183      1
6996               21 33642400 33899861        ITSN1  HGNC:6183      1
6997               21 33642400 33899861        ITSN1  HGNC:6183      1
6998               21 33642400 33899861        ITSN1  HGNC:6183      1
6999               21 33642400 33899861        ITSN1  HGNC:6183      1
7000               21 33642400 33899861        ITSN1  HGNC:6183      1
7001               21 33642400 33899861        ITSN1  HGNC:6183      1
7002               21 33642400 33899861        ITSN1  HGNC:6183      1
7003               21 33642400 33899861        ITSN1  HGNC:6183      1
7004               21 33642400 33899861        ITSN1  HGNC:6183      1
7005               21 33642400 33899861        ITSN1  HGNC:6183      1
7006               21 33642400 33899861        ITSN1  HGNC:6183      1
7007               21 33642400 33899861        ITSN1  HGNC:6183      1
7008               21 33642400 33899861        ITSN1  HGNC:6183      1
7009               21 33642400 33899861        ITSN1  HGNC:6183      1
7010               21 33642400 33899861        ITSN1  HGNC:6183      1
7011               21 33642400 33899861        ITSN1  HGNC:6183      1
7012               21 33642400 33899861        ITSN1  HGNC:6183      1
7013               21 33642400 33899861        ITSN1  HGNC:6183      1
7014               21 33642400 33899861        ITSN1  HGNC:6183      1
7015               21 33642400 33899861        ITSN1  HGNC:6183      1
7016               21 33642400 33899861        ITSN1  HGNC:6183      1
7017               21 33642400 33899861        ITSN1  HGNC:6183      1
7018               21 33642400 33899861        ITSN1  HGNC:6183      1
7019               21 33642400 33899861        ITSN1  HGNC:6183      1
7020               21 33642400 33899861        ITSN1  HGNC:6183      1
7021               21 33642400 33899861        ITSN1  HGNC:6183      1
7022               21 33642400 33899861        ITSN1  HGNC:6183      1
7023               21 33642400 33899861        ITSN1  HGNC:6183      1
7024               21 33642400 33899861        ITSN1  HGNC:6183      1
7025               21 33642400 33899861        ITSN1  HGNC:6183      1
7026               21 33642400 33899861        ITSN1  HGNC:6183      1
7027               21 33642400 33899861        ITSN1  HGNC:6183      1
7028               21 33642400 33899861        ITSN1  HGNC:6183      1
7029               21 33642400 33899861        ITSN1  HGNC:6183      1
7030               21 33642400 33899861        ITSN1  HGNC:6183      1
7031               21 33642400 33899861        ITSN1  HGNC:6183      1
7032               21 33642400 33899861        ITSN1  HGNC:6183      1
7033               21 33642400 33899861        ITSN1  HGNC:6183      1
7034               21 33642400 33899861        ITSN1  HGNC:6183      1
7035               21 33642400 33899861        ITSN1  HGNC:6183      1
7036               21 33642400 33899861        ITSN1  HGNC:6183      1
7037               21 33642400 33899861        ITSN1  HGNC:6183      1
7038               21 33642400 33899861        ITSN1  HGNC:6183      1
7039               21 33642400 33899861        ITSN1  HGNC:6183      1
7040               21 33642400 33899861        ITSN1  HGNC:6183      1
7041               21 33642400 33899861        ITSN1  HGNC:6183      1
7042               21 33642400 33899861        ITSN1  HGNC:6183      1
7043               21 33642400 33899861        ITSN1  HGNC:6183      1
7044               21 33642400 33899861        ITSN1  HGNC:6183      1
7045               21 33642400 33899861        ITSN1  HGNC:6183      1
7046               21 33642400 33899861        ITSN1  HGNC:6183      1
7047               21 33642400 33899861        ITSN1  HGNC:6183      1
7048               21 33642400 33899861        ITSN1  HGNC:6183      1
7049               21 33642400 33899861        ITSN1  HGNC:6183      1
7050               21 33642400 33899861        ITSN1  HGNC:6183      1
7051               21 33642400 33899861        ITSN1  HGNC:6183      1
7052               21 33642400 33899861        ITSN1  HGNC:6183      1
7053               21 33642400 33899861        ITSN1  HGNC:6183      1
7054               21 33642400 33899861        ITSN1  HGNC:6183      1
7055               21 33642400 33899861        ITSN1  HGNC:6183      1
7056               21 33642400 33899861        ITSN1  HGNC:6183      1
7057               21 33642400 33899861        ITSN1  HGNC:6183      1
7058               21 33642400 33899861        ITSN1  HGNC:6183      1
7059               21 33642400 33899861        ITSN1  HGNC:6183      1
7060               21 33642400 33899861        ITSN1  HGNC:6183      1
7061               21 33642400 33899861        ITSN1  HGNC:6183      1
7062               21 33642400 33899861        ITSN1  HGNC:6183      1
7063               21 33642400 33899861        ITSN1  HGNC:6183      1
7064               21 33642400 33899861        ITSN1  HGNC:6183      1
7065               21 33642400 33899861        ITSN1  HGNC:6183      1
7066               21 33642400 33899861        ITSN1  HGNC:6183      1
7067               21 33642400 33899861        ITSN1  HGNC:6183      1
7068               21 33642400 33899861        ITSN1  HGNC:6183      1
7069               21 33642400 33899861        ITSN1  HGNC:6183      1
7070               21 33642400 33899861        ITSN1  HGNC:6183      1
7071               21 33642400 33899861        ITSN1  HGNC:6183      1
7072               21 33642400 33899861        ITSN1  HGNC:6183      1
7073               21 33642400 33899861        ITSN1  HGNC:6183      1
7074               21 33642400 33899861        ITSN1  HGNC:6183      1
7075               21 33642400 33899861        ITSN1  HGNC:6183      1
7076               21 33642400 33899861        ITSN1  HGNC:6183      1
7077               21 33642400 33899861        ITSN1  HGNC:6183      1
7078               21 33642400 33899861        ITSN1  HGNC:6183      1
7079               21 33642400 33899861        ITSN1  HGNC:6183      1
7080               21 33642400 33899861        ITSN1  HGNC:6183      1
7081               21 33642400 33899861        ITSN1  HGNC:6183      1
7082               21 33642400 33899861        ITSN1  HGNC:6183      1
7083               21 33642400 33899861        ITSN1  HGNC:6183      1
7084               21 33642400 33899861        ITSN1  HGNC:6183      1
7085               21 33642400 33899861        ITSN1  HGNC:6183      1
7086               21 33642400 33899861        ITSN1  HGNC:6183      1
7087               21 33642400 33899861        ITSN1  HGNC:6183      1
7088               21 33642400 33899861        ITSN1  HGNC:6183      1
7089               21 33642400 33899861        ITSN1  HGNC:6183      1
7090               21 33642400 33899861        ITSN1  HGNC:6183      1
7091               21 33642400 33899861        ITSN1  HGNC:6183      1
7092               21 33642400 33899861        ITSN1  HGNC:6183      1
7093               21 33642400 33899861        ITSN1  HGNC:6183      1
7094               21 33642400 33899861        ITSN1  HGNC:6183      1
7095               21 33642400 33899861        ITSN1  HGNC:6183      1
7096               21 33642400 33899861        ITSN1  HGNC:6183      1
7097               21 33642400 33899861        ITSN1  HGNC:6183      1
7098               21 33642400 33899861        ITSN1  HGNC:6183      1
7099               21 33642400 33899861        ITSN1  HGNC:6183      1
7100               21 33642400 33899861        ITSN1  HGNC:6183      1
7101               21 33642400 33899861        ITSN1  HGNC:6183      1
7102               21 33642400 33899861        ITSN1  HGNC:6183      1
7103               21 33642400 33899861        ITSN1  HGNC:6183      1
7104               21 33642400 33899861        ITSN1  HGNC:6183      1
7105               21 33642400 33899861        ITSN1  HGNC:6183      1
7106               21 33642400 33899861        ITSN1  HGNC:6183      1
7107               21 33642400 33899861        ITSN1  HGNC:6183      1
7108               21 33642400 33899861        ITSN1  HGNC:6183      1
7109               21 33642400 33899861        ITSN1  HGNC:6183      1
7110               21 33642400 33899861        ITSN1  HGNC:6183      1
7111               21 33642400 33899861        ITSN1  HGNC:6183      1
7112               21 33642400 33899861        ITSN1  HGNC:6183      1
7113               21 33642400 33899861        ITSN1  HGNC:6183      1
7114               21 33642400 33899861        ITSN1  HGNC:6183      1
7115               21 33642400 33899861        ITSN1  HGNC:6183      1
7116               21 33642400 33899861        ITSN1  HGNC:6183      1
7117               21 33642400 33899861        ITSN1  HGNC:6183      1
7118               21 33642400 33899861        ITSN1  HGNC:6183      1
7119               21 33642400 33899861        ITSN1  HGNC:6183      1
7120               21 33642400 33899861        ITSN1  HGNC:6183      1
7121               21 33642400 33899861        ITSN1  HGNC:6183      1
7122               21 33642400 33899861        ITSN1  HGNC:6183      1
7123               21 33642400 33899861        ITSN1  HGNC:6183      1
7124               21 33642400 33899861        ITSN1  HGNC:6183      1
7125               21 33642400 33899861        ITSN1  HGNC:6183      1
7126               21 33642400 33899861        ITSN1  HGNC:6183      1
7127               21 33642400 33899861        ITSN1  HGNC:6183      1
7128               21 33642400 33899861        ITSN1  HGNC:6183      1
7129               21 33642400 33899861        ITSN1  HGNC:6183      1
7130               21 33642400 33899861        ITSN1  HGNC:6183      1
7131               21 33642400 33899861        ITSN1  HGNC:6183      1
7132               21 33642400 33899861        ITSN1  HGNC:6183      1
7133               21 33642400 33899861        ITSN1  HGNC:6183      1
7134               21 33642400 33899861        ITSN1  HGNC:6183      1
7135               21 33642400 33899861        ITSN1  HGNC:6183      1
7136               21 33642400 33899861        ITSN1  HGNC:6183      1
7137               21 33642400 33899861        ITSN1  HGNC:6183      1
7138               21 33642400 33899861        ITSN1  HGNC:6183      1
7139               21 33642400 33899861        ITSN1  HGNC:6183      1
7140               21 33642400 33899861        ITSN1  HGNC:6183      1
7141               21 33642400 33899861        ITSN1  HGNC:6183      1
7142               21 33642400 33899861        ITSN1  HGNC:6183      1
7143               21 33642400 33899861        ITSN1  HGNC:6183      1
7144               21 33642400 33899861        ITSN1  HGNC:6183      1
7145               21 33642400 33899861        ITSN1  HGNC:6183      1
7146               21 33642400 33899861        ITSN1  HGNC:6183      1
7147               21 33642400 33899861        ITSN1  HGNC:6183      1
7148               21 33642400 33899861        ITSN1  HGNC:6183      1
7149               21 33642400 33899861        ITSN1  HGNC:6183      1
7150               21 33642400 33899861        ITSN1  HGNC:6183      1
7151               21 33642400 33899861        ITSN1  HGNC:6183      1
7152               21 33642400 33899861        ITSN1  HGNC:6183      1
7153               21 33642400 33899861        ITSN1  HGNC:6183      1
7154               21 33642400 33899861        ITSN1  HGNC:6183      1
7155               21 33642400 33899861        ITSN1  HGNC:6183      1
7156               21 33642400 33899861        ITSN1  HGNC:6183      1
7157               21 33642400 33899861        ITSN1  HGNC:6183      1
7158               21 33642400 33899861        ITSN1  HGNC:6183      1
7159               21 33642400 33899861        ITSN1  HGNC:6183      1
7160               21 33642400 33899861        ITSN1  HGNC:6183      1
7161               21 33642400 33899861        ITSN1  HGNC:6183      1
7162               21 33642400 33899861        ITSN1  HGNC:6183      1
7163               21 33642400 33899861        ITSN1  HGNC:6183      1
7164               21 33642400 33899861        ITSN1  HGNC:6183      1
7165               21 33642400 33899861        ITSN1  HGNC:6183      1
7166               21 33642400 33899861        ITSN1  HGNC:6183      1
7167               21 33642400 33899861        ITSN1  HGNC:6183      1
7168               21 33642400 33899861        ITSN1  HGNC:6183      1
7169               21 33642400 33899861        ITSN1  HGNC:6183      1
7170               21 33642400 33899861        ITSN1  HGNC:6183      1
7171               21 33642400 33899861        ITSN1  HGNC:6183      1
7172               21 33642400 33899861        ITSN1  HGNC:6183      1
7173               21 33642400 33899861        ITSN1  HGNC:6183      1
7174               21 33642400 33899861        ITSN1  HGNC:6183      1
7175               21 33642400 33899861        ITSN1  HGNC:6183      1
7176               21 33642400 33899861        ITSN1  HGNC:6183      1
7177               21 33642400 33899861        ITSN1  HGNC:6183      1
7178               21 33642400 33899861        ITSN1  HGNC:6183      1
7179               21 33642400 33899861        ITSN1  HGNC:6183      1
7180               21 33642400 33899861        ITSN1  HGNC:6183      1
7181               21 33642400 33899861        ITSN1  HGNC:6183      1
7182               21 33642400 33899861        ITSN1  HGNC:6183      1
7183               21 33642400 33899861        ITSN1  HGNC:6183      1
7184               21 33642400 33899861        ITSN1  HGNC:6183      1
7185               21 33642400 33899861        ITSN1  HGNC:6183      1
7186               21 33642400 33899861        ITSN1  HGNC:6183      1
7187               21 33642400 33899861        ITSN1  HGNC:6183      1
7188               21 33642400 33899861        ITSN1  HGNC:6183      1
7189               21 33642400 33899861        ITSN1  HGNC:6183      1
7190               21 33642400 33899861        ITSN1  HGNC:6183      1
7191               21 33642400 33899861        ITSN1  HGNC:6183      1
7192               21 33642400 33899861        ITSN1  HGNC:6183      1
7193               21 33642400 33899861        ITSN1  HGNC:6183      1
7194               21 33642400 33899861        ITSN1  HGNC:6183      1
7195               21 33642400 33899861        ITSN1  HGNC:6183      1
7196               21 33642400 33899861        ITSN1  HGNC:6183      1
7197               21 33642400 33899861        ITSN1  HGNC:6183      1
7198               21 33642400 33899861        ITSN1  HGNC:6183      1
7199               21 33642400 33899861        ITSN1  HGNC:6183      1
7200               21 33642400 33899861        ITSN1  HGNC:6183      1
7201               21 33642400 33899861        ITSN1  HGNC:6183      1
7202               21 33642400 33899861        ITSN1  HGNC:6183      1
7203               21 33642400 33899861        ITSN1  HGNC:6183      1
7204               21 33642400 33899861        ITSN1  HGNC:6183      1
7205               21 33642400 33899861        ITSN1  HGNC:6183      1
7206               21 33642400 33899861        ITSN1  HGNC:6183      1
7207               21 33642400 33899861        ITSN1  HGNC:6183      1
7208               21 33642400 33899861        ITSN1  HGNC:6183      1
7209               21 33642400 33899861        ITSN1  HGNC:6183      1
7210               21 33642400 33899861        ITSN1  HGNC:6183      1
7211               21 33642400 33899861        ITSN1  HGNC:6183      1
7212               21 33642400 33899861        ITSN1  HGNC:6183      1
7213               21 33642400 33899861        ITSN1  HGNC:6183      1
7214               21 33642400 33899861        ITSN1  HGNC:6183      1
7215               21 33642400 33899861        ITSN1  HGNC:6183      1
7216               21 33642400 33899861        ITSN1  HGNC:6183      1
7217               21 33642400 33899861        ITSN1  HGNC:6183      1
7218               21 33642400 33899861        ITSN1  HGNC:6183      1
7219               21 33642400 33899861        ITSN1  HGNC:6183      1
7220               21 33642400 33899861        ITSN1  HGNC:6183      1
7221               21 33642400 33899861        ITSN1  HGNC:6183      1
7222               21 33642400 33899861        ITSN1  HGNC:6183      1
7223               21 33642400 33899861        ITSN1  HGNC:6183      1
7224               21 33642400 33899861        ITSN1  HGNC:6183      1
7225               21 33642400 33899861        ITSN1  HGNC:6183      1
7226               21 33642400 33899861        ITSN1  HGNC:6183      1
7227               21 33642400 33899861        ITSN1  HGNC:6183      1
7228               21 33642400 33899861        ITSN1  HGNC:6183      1
7229               21 33642400 33899861        ITSN1  HGNC:6183      1
7230               21 33642400 33899861        ITSN1  HGNC:6183      1
7231               21 33642400 33899861        ITSN1  HGNC:6183      1
7232               21 33642400 33899861        ITSN1  HGNC:6183      1
7233               21 33642400 33899861        ITSN1  HGNC:6183      1
7234               21 33642400 33899861        ITSN1  HGNC:6183      1
7235               21 33642400 33899861        ITSN1  HGNC:6183      1
7236               21 33642400 33899861        ITSN1  HGNC:6183      1
7237               21 33642400 33899861        ITSN1  HGNC:6183      1
7238               21 33642400 33899861        ITSN1  HGNC:6183      1
7239               21 33642400 33899861        ITSN1  HGNC:6183      1
7240               21 33642400 33899861        ITSN1  HGNC:6183      1
7241               21 33642400 33899861        ITSN1  HGNC:6183      1
7242               21 33642400 33899861        ITSN1  HGNC:6183      1
7243               21 33642400 33899861        ITSN1  HGNC:6183      1
7244               21 33642400 33899861        ITSN1  HGNC:6183      1
7245               21 33642400 33899861        ITSN1  HGNC:6183      1
7246               21 33642400 33899861        ITSN1  HGNC:6183      1
7247               21 33642400 33899861        ITSN1  HGNC:6183      1
7248               21 33642400 33899861        ITSN1  HGNC:6183      1
7249               21 33642400 33899861        ITSN1  HGNC:6183      1
7250               21 33642400 33899861        ITSN1  HGNC:6183      1
7251               21 33642400 33899861        ITSN1  HGNC:6183      1
7252               21 33642400 33899861        ITSN1  HGNC:6183      1
7253               21 33642400 33899861        ITSN1  HGNC:6183      1
7254               21 33642400 33899861        ITSN1  HGNC:6183      1
7255               21 33642400 33899861        ITSN1  HGNC:6183      1
7256               21 33642400 33899861        ITSN1  HGNC:6183      1
7257               21 33642400 33899861        ITSN1  HGNC:6183      1
7258               21 33642400 33899861        ITSN1  HGNC:6183      1
7259               21 33642400 33899861        ITSN1  HGNC:6183      1
7260               21 33642400 33899861        ITSN1  HGNC:6183      1
7261               21 33642400 33899861        ITSN1  HGNC:6183      1
7262               21 33642400 33899861        ITSN1  HGNC:6183      1
7263               21 33642400 33899861        ITSN1  HGNC:6183      1
7264               21 33642400 33899861        ITSN1  HGNC:6183      1
7265               21 33642400 33899861        ITSN1  HGNC:6183      1
7266               21 33642400 33899861        ITSN1  HGNC:6183      1
7267               21 33642400 33899861        ITSN1  HGNC:6183      1
7268               21 33642400 33899861        ITSN1  HGNC:6183      1
7269               21 33642400 33899861        ITSN1  HGNC:6183      1
7270               21 33642400 33899861        ITSN1  HGNC:6183      1
7271               21 33642400 33899861        ITSN1  HGNC:6183      1
7272               21 33642400 33899861        ITSN1  HGNC:6183      1
7273               21 33642400 33899861        ITSN1  HGNC:6183      1
7274               21 33642400 33899861        ITSN1  HGNC:6183      1
7275               21 33642400 33899861        ITSN1  HGNC:6183      1
7276               21 33642400 33899861        ITSN1  HGNC:6183      1
7277               21 33642400 33899861        ITSN1  HGNC:6183      1
7278               21 33642400 33899861        ITSN1  HGNC:6183      1
7279               21 33642400 33899861        ITSN1  HGNC:6183      1
7280               21 33642400 33899861        ITSN1  HGNC:6183      1
7281               21 33642400 33899861        ITSN1  HGNC:6183      1
7282               21 33642400 33899861        ITSN1  HGNC:6183      1
7283               21 33642400 33899861        ITSN1  HGNC:6183      1
7284               21 33642400 33899861        ITSN1  HGNC:6183      1
7285               21 33642400 33899861        ITSN1  HGNC:6183      1
7286               21 33642400 33899861        ITSN1  HGNC:6183      1
7287               21 33642400 33899861        ITSN1  HGNC:6183      1
7288               21 33642400 33899861        ITSN1  HGNC:6183      1
7289               21 33642400 33899861        ITSN1  HGNC:6183      1
7290               21 33642400 33899861        ITSN1  HGNC:6183      1
7291               21 33642400 33899861        ITSN1  HGNC:6183      1
7292               21 33642400 33899861        ITSN1  HGNC:6183      1
7293               21 33642400 33899861        ITSN1  HGNC:6183      1
7294               21 33642400 33899861        ITSN1  HGNC:6183      1
7295               21 33642400 33899861        ITSN1  HGNC:6183      1
7296               21 33642400 33899861        ITSN1  HGNC:6183      1
7297               21 33642400 33899861        ITSN1  HGNC:6183      1
7298               21 33642400 33899861        ITSN1  HGNC:6183      1
7299               21 33642400 33899861        ITSN1  HGNC:6183      1
7300               21 33642400 33899861        ITSN1  HGNC:6183      1
7301               21 33642400 33899861        ITSN1  HGNC:6183      1
7302               21 33642400 33899861        ITSN1  HGNC:6183      1
7303               21 33642400 33899861        ITSN1  HGNC:6183      1
7304               21 33642400 33899861        ITSN1  HGNC:6183      1
7305               21 33642400 33899861        ITSN1  HGNC:6183      1
7306               21 33642400 33899861        ITSN1  HGNC:6183      1
7307               21 33642400 33899861        ITSN1  HGNC:6183      1
7308               21 33642400 33899861        ITSN1  HGNC:6183      1
7309               21 33642400 33899861        ITSN1  HGNC:6183      1
7310               21 33642400 33899861        ITSN1  HGNC:6183      1
7311               21 33642400 33899861        ITSN1  HGNC:6183      1
7312               21 33642400 33899861        ITSN1  HGNC:6183      1
7313               21 33642400 33899861        ITSN1  HGNC:6183      1
7314               21 33642400 33899861        ITSN1  HGNC:6183      1
7315               21 33642400 33899861        ITSN1  HGNC:6183      1
7316               21 33642400 33899861        ITSN1  HGNC:6183      1
7317               21 33642400 33899861        ITSN1  HGNC:6183      1
7318               21 33642400 33899861        ITSN1  HGNC:6183      1
7319               21 33642400 33899861        ITSN1  HGNC:6183      1
7320               21 33642400 33899861        ITSN1  HGNC:6183      1
7321               21 33642400 33899861        ITSN1  HGNC:6183      1
7322               21  8101251  8103706                             -1
7323               21 43855890 43856342       MYL6P1  HGNC:7588     -1
7324               21 45759804 45763758                             -1
7325               21 45914296 45919483                              1
7326               21 45914296 45919483                              1
7327               21 45914296 45919483                              1
7328               21 26466209 26573284        CYYR1 HGNC:16274     -1
7329               21 26466209 26573284        CYYR1 HGNC:16274     -1
7330               21 26466209 26573284        CYYR1 HGNC:16274     -1
7331               21 26466209 26573284        CYYR1 HGNC:16274     -1
7332               21 26466209 26573284        CYYR1 HGNC:16274     -1
7333               21 26466209 26573284        CYYR1 HGNC:16274     -1
7334               21 26466209 26573284        CYYR1 HGNC:16274     -1
7335               21 26466209 26573284        CYYR1 HGNC:16274     -1
7336               21 26378552 26471698                              1
7337               21 26378552 26471698                              1
7338               21 26378552 26471698                              1
7339               21 26378552 26471698                              1
7340               21 26378552 26471698                              1
7341               21 26378552 26471698                              1
7342               21 26378552 26471698                              1
7343               21 26378552 26471698                              1
7344               21 26378552 26471698                              1
7345               21 26378552 26471698                              1
7346               21 26378552 26471698                              1
7347               21 26378552 26471698                              1
7348               21 26378552 26471698                              1
7349               21 26378552 26471698                              1
7350               21 14757588 14758352     POLR2CP1  HGNC:9190      1
7351               21 32020966 32021782     HUNK-AS1 HGNC:40631     -1
7352               21 32020966 32021782     HUNK-AS1 HGNC:40631     -1
7353               21 31873315 32044633         HUNK HGNC:13326      1
7354               21 31873315 32044633         HUNK HGNC:13326      1
7355               21 31873315 32044633         HUNK HGNC:13326      1
7356               21 31873315 32044633         HUNK HGNC:13326      1
7357               21 31873315 32044633         HUNK HGNC:13326      1
7358               21 31873315 32044633         HUNK HGNC:13326      1
7359               21 31873315 32044633         HUNK HGNC:13326      1
7360               21 31873315 32044633         HUNK HGNC:13326      1
7361               21 31873315 32044633         HUNK HGNC:13326      1
7362               21 31873315 32044633         HUNK HGNC:13326      1
7363               21 31873315 32044633         HUNK HGNC:13326      1
7364               21 31873315 32044633         HUNK HGNC:13326      1
7365               21 31873315 32044633         HUNK HGNC:13326      1
7366               21 31873315 32044633         HUNK HGNC:13326      1
7367               21 31873315 32044633         HUNK HGNC:13326      1
7368               21 31873315 32044633         HUNK HGNC:13326      1
7369               21 31873315 32044633         HUNK HGNC:13326      1
7370               21 31873315 32044633         HUNK HGNC:13326      1
7371               21 31873315 32044633         HUNK HGNC:13326      1
7372               21 31873315 32044633         HUNK HGNC:13326      1
7373               21 31873315 32044633         HUNK HGNC:13326      1
7374               21 31873315 32044633         HUNK HGNC:13326      1
7375               21 31873315 32044633         HUNK HGNC:13326      1
7376               21 31873315 32044633         HUNK HGNC:13326      1
7377               21 38739021 38747460    LINC00114  HGNC:1265     -1
7378               21 38739021 38747460    LINC00114  HGNC:1265     -1
7379               21 38739021 38747460    LINC00114  HGNC:1265     -1
7380               21 38739021 38747460    LINC00114  HGNC:1265     -1
7381               21 38739021 38747460    LINC00114  HGNC:1265     -1
7382               21 38739021 38747460    LINC00114  HGNC:1265     -1
7383               21 38739021 38747460    LINC00114  HGNC:1265     -1
7384               21 38739021 38747460    LINC00114  HGNC:1265     -1
7385               21 38739021 38747460    LINC00114  HGNC:1265     -1
7386               21 38739021 38747460    LINC00114  HGNC:1265     -1
7387               21 38739021 38747460    LINC00114  HGNC:1265     -1
7388               21 38739021 38747460    LINC00114  HGNC:1265     -1
7389               21 38739021 38747460    LINC00114  HGNC:1265     -1
7390               21 38739021 38747460    LINC00114  HGNC:1265     -1
7391               21 38739021 38747460    LINC00114  HGNC:1265     -1
7392               21  6550749  6553955                             -1
7393               21  6550749  6553955                             -1
7394               21  6550749  6553955                             -1
7395               21 33229901 33265675       IFNAR2  HGNC:5433      1
7396               21 33229901 33265675       IFNAR2  HGNC:5433      1
7397               21 33229901 33265675       IFNAR2  HGNC:5433      1
7398               21 33229901 33265675       IFNAR2  HGNC:5433      1
7399               21 33229901 33265675       IFNAR2  HGNC:5433      1
7400               21 33229901 33265675       IFNAR2  HGNC:5433      1
7401               21 33229901 33265675       IFNAR2  HGNC:5433      1
7402               21 33229901 33265675       IFNAR2  HGNC:5433      1
7403               21 33229901 33265675       IFNAR2  HGNC:5433      1
7404               21 33229901 33265675       IFNAR2  HGNC:5433      1
7405               21 33229901 33265675       IFNAR2  HGNC:5433      1
7406               21 33229901 33265675       IFNAR2  HGNC:5433      1
7407               21 33229901 33265675       IFNAR2  HGNC:5433      1
7408               21 33229901 33265675       IFNAR2  HGNC:5433      1
7409               21 33229901 33265675       IFNAR2  HGNC:5433      1
7410               21 33229901 33265675       IFNAR2  HGNC:5433      1
7411               21 33229901 33265675       IFNAR2  HGNC:5433      1
7412               21 33229901 33265675       IFNAR2  HGNC:5433      1
7413               21 33229901 33265675       IFNAR2  HGNC:5433      1
7414               21 33229901 33265675       IFNAR2  HGNC:5433      1
7415               21 33229901 33265675       IFNAR2  HGNC:5433      1
7416               21 33229901 33265675       IFNAR2  HGNC:5433      1
7417               21 33229901 33265675       IFNAR2  HGNC:5433      1
7418               21 33229901 33265675       IFNAR2  HGNC:5433      1
7419               21 33229901 33265675       IFNAR2  HGNC:5433      1
7420               21 33229901 33265675       IFNAR2  HGNC:5433      1
7421               21 33229901 33265675       IFNAR2  HGNC:5433      1
7422               21 33229901 33265675       IFNAR2  HGNC:5433      1
7423               21 33229901 33265675       IFNAR2  HGNC:5433      1
7424               21 33229901 33265675       IFNAR2  HGNC:5433      1
7425               21 33229901 33265675       IFNAR2  HGNC:5433      1
7426               21 33229901 33265675       IFNAR2  HGNC:5433      1
7427               21 33229901 33265675       IFNAR2  HGNC:5433      1
7428               21 33229901 33265675       IFNAR2  HGNC:5433      1
7429               21 33229901 33265675       IFNAR2  HGNC:5433      1
7430               21 33229901 33265675       IFNAR2  HGNC:5433      1
7431               21 33229901 33265675       IFNAR2  HGNC:5433      1
7432               21 33229901 33265675       IFNAR2  HGNC:5433      1
7433               21 33229901 33265675       IFNAR2  HGNC:5433      1
7434               21 33229901 33265675       IFNAR2  HGNC:5433      1
7435               21 33229901 33265675       IFNAR2  HGNC:5433      1
7436               21 33229901 33265675       IFNAR2  HGNC:5433      1
7437               21 33229901 33265675       IFNAR2  HGNC:5433      1
7438               21 33229901 33265675       IFNAR2  HGNC:5433      1
7439               21 33229901 33265675       IFNAR2  HGNC:5433      1
7440               21 33229901 33265675       IFNAR2  HGNC:5433      1
7441               21 33229901 33265675       IFNAR2  HGNC:5433      1
7442               21 33229901 33265675       IFNAR2  HGNC:5433      1
7443               21 33229901 33265675       IFNAR2  HGNC:5433      1
7444               21 33229901 33265675       IFNAR2  HGNC:5433      1
7445               21 33229901 33265675       IFNAR2  HGNC:5433      1
7446               21 33229901 33265675       IFNAR2  HGNC:5433      1
7447               21 33229901 33265675       IFNAR2  HGNC:5433      1
7448               21 33229901 33265675       IFNAR2  HGNC:5433      1
7449               21 33229901 33265675       IFNAR2  HGNC:5433      1
7450               21 33229901 33265675       IFNAR2  HGNC:5433      1
7451               21 33229901 33265675       IFNAR2  HGNC:5433      1
7452               21 33229901 33265675       IFNAR2  HGNC:5433      1
7453               21 33229901 33265675       IFNAR2  HGNC:5433      1
7454               21 33229901 33265675       IFNAR2  HGNC:5433      1
7455               21 33229901 33265675       IFNAR2  HGNC:5433      1
7456               21 33229901 33265675       IFNAR2  HGNC:5433      1
7457               21 33229901 33265675       IFNAR2  HGNC:5433      1
7458               21 33229901 33265675       IFNAR2  HGNC:5433      1
7459               21 33229901 33265675       IFNAR2  HGNC:5433      1
7460               21 33229901 33265675       IFNAR2  HGNC:5433      1
7461               21 33229901 33265675       IFNAR2  HGNC:5433      1
7462               21 33229901 33265675       IFNAR2  HGNC:5433      1
7463               21 33229901 33265675       IFNAR2  HGNC:5433      1
7464               21 33229901 33265675       IFNAR2  HGNC:5433      1
7465               21 33229901 33265675       IFNAR2  HGNC:5433      1
7466               21 33229901 33265675       IFNAR2  HGNC:5433      1
7467               21 33229901 33265675       IFNAR2  HGNC:5433      1
7468               21 44158740 44160076    LINC01678 HGNC:52466     -1
7469               21 44158740 44160076    LINC01678 HGNC:52466     -1
7470               21 44158740 44160076    LINC01678 HGNC:52466     -1
7471               21 44158740 44160076    LINC01678 HGNC:52466     -1
7472               21 44158740 44160076    LINC01678 HGNC:52466     -1
7473               21  6444869  6468040         CBSL HGNC:51829     -1
7474               21  6444869  6468040         CBSL HGNC:51829     -1
7475               21  6444869  6468040         CBSL HGNC:51829     -1
7476               21  6444869  6468040         CBSL HGNC:51829     -1
7477               21  6444869  6468040         CBSL HGNC:51829     -1
7478               21  6444869  6468040         CBSL HGNC:51829     -1
7479               21  6444869  6468040         CBSL HGNC:51829     -1
7480               21  6444869  6468040         CBSL HGNC:51829     -1
7481               21  6444869  6468040         CBSL HGNC:51829     -1
7482               21  6444869  6468040         CBSL HGNC:51829     -1
7483               21  6444869  6468040         CBSL HGNC:51829     -1
7484               21  6444869  6468040         CBSL HGNC:51829     -1
7485               21  6444869  6468040         CBSL HGNC:51829     -1
7486               21  6444869  6468040         CBSL HGNC:51829     -1
7487               21  6444869  6468040         CBSL HGNC:51829     -1
7488               21  6444869  6468040         CBSL HGNC:51829     -1
7489               21  6444869  6468040         CBSL HGNC:51829     -1
7490               21  6444869  6468040         CBSL HGNC:51829     -1
7491               21  6444869  6468040         CBSL HGNC:51829     -1
7492               21  6444869  6468040         CBSL HGNC:51829     -1
7493               21  6444869  6468040         CBSL HGNC:51829     -1
7494               21  6444869  6468040         CBSL HGNC:51829     -1
7495               21  6444869  6468040         CBSL HGNC:51829     -1
7496               21  6444869  6468040         CBSL HGNC:51829     -1
7497               21  6444869  6468040         CBSL HGNC:51829     -1
7498               21  6444869  6468040         CBSL HGNC:51829     -1
7499               21  6444869  6468040         CBSL HGNC:51829     -1
7500               21  6444869  6468040         CBSL HGNC:51829     -1
7501               21  6444869  6468040         CBSL HGNC:51829     -1
7502               21  6444869  6468040         CBSL HGNC:51829     -1
7503               21  6444869  6468040         CBSL HGNC:51829     -1
7504               21  6444869  6468040         CBSL HGNC:51829     -1
7505               21  6444869  6468040         CBSL HGNC:51829     -1
7506               21  6444869  6468040         CBSL HGNC:51829     -1
7507               21  6444869  6468040         CBSL HGNC:51829     -1
7508               21  6444869  6468040         CBSL HGNC:51829     -1
7509               21  6444869  6468040         CBSL HGNC:51829     -1
7510               21  6444869  6468040         CBSL HGNC:51829     -1
7511               21  6444869  6468040         CBSL HGNC:51829     -1
7512               21  6444869  6468040         CBSL HGNC:51829     -1
7513               21  6444869  6468040         CBSL HGNC:51829     -1
7514               21  6444869  6468040         CBSL HGNC:51829     -1
7515               21  6444869  6468040         CBSL HGNC:51829     -1
7516               21  6444869  6468040         CBSL HGNC:51829     -1
7517               21  6444869  6468040         CBSL HGNC:51829     -1
7518               21  6444869  6468040         CBSL HGNC:51829     -1
7519               21  6444869  6468040         CBSL HGNC:51829     -1
7520               21  6444869  6468040         CBSL HGNC:51829     -1
7521               21  6444869  6468040         CBSL HGNC:51829     -1
7522               21  6444869  6468040         CBSL HGNC:51829     -1
7523               21  6444869  6468040         CBSL HGNC:51829     -1
7524               21  6444869  6468040         CBSL HGNC:51829     -1
7525               21  6444869  6468040         CBSL HGNC:51829     -1
7526               21  6444869  6468040         CBSL HGNC:51829     -1
7527               21  6444869  6468040         CBSL HGNC:51829     -1
7528               21  6444869  6468040         CBSL HGNC:51829     -1
7529               21  6444869  6468040         CBSL HGNC:51829     -1
7530               21  6444869  6468040         CBSL HGNC:51829     -1
7531               21  6444869  6468040         CBSL HGNC:51829     -1
7532               21  6444869  6468040         CBSL HGNC:51829     -1
7533               21  6444869  6468040         CBSL HGNC:51829     -1
7534               21  6444869  6468040         CBSL HGNC:51829     -1
7535               21  6444869  6468040         CBSL HGNC:51829     -1
7536               21  6444869  6468040         CBSL HGNC:51829     -1
7537               21  6444869  6468040         CBSL HGNC:51829     -1
7538               21  6444869  6468040         CBSL HGNC:51829     -1
7539               21  6444869  6468040         CBSL HGNC:51829     -1
7540               21  6444869  6468040         CBSL HGNC:51829     -1
7541               21  6444869  6468040         CBSL HGNC:51829     -1
7542               21  6444869  6468040         CBSL HGNC:51829     -1
7543               21  6444869  6468040         CBSL HGNC:51829     -1
7544               21  6444869  6468040         CBSL HGNC:51829     -1
7545               21  6444869  6468040         CBSL HGNC:51829     -1
7546               21  6444869  6468040         CBSL HGNC:51829     -1
7547               21  6444869  6468040         CBSL HGNC:51829     -1
7548               21  6444869  6468040         CBSL HGNC:51829     -1
7549               21  6444869  6468040         CBSL HGNC:51829     -1
7550               21  6444869  6468040         CBSL HGNC:51829     -1
7551               21  6444869  6468040         CBSL HGNC:51829     -1
7552               21  6444869  6468040         CBSL HGNC:51829     -1
7553               21  6444869  6468040         CBSL HGNC:51829     -1
7554               21  6444869  6468040         CBSL HGNC:51829     -1
7555               21  6444869  6468040         CBSL HGNC:51829     -1
7556               21  6444869  6468040         CBSL HGNC:51829     -1
7557               21  6444869  6468040         CBSL HGNC:51829     -1
7558               21  6444869  6468040         CBSL HGNC:51829     -1
7559               21  6444869  6468040         CBSL HGNC:51829     -1
7560               21  6444869  6468040         CBSL HGNC:51829     -1
7561               21  6444869  6468040         CBSL HGNC:51829     -1
7562               21  6444869  6468040         CBSL HGNC:51829     -1
7563               21  6444869  6468040         CBSL HGNC:51829     -1
7564               21  6444869  6468040         CBSL HGNC:51829     -1
7565               21  6444869  6468040         CBSL HGNC:51829     -1
7566               21  6444869  6468040         CBSL HGNC:51829     -1
7567               21  6444869  6468040         CBSL HGNC:51829     -1
7568               21  6444869  6468040         CBSL HGNC:51829     -1
7569               21  6444869  6468040         CBSL HGNC:51829     -1
7570               21  6444869  6468040         CBSL HGNC:51829     -1
7571               21  6444869  6468040         CBSL HGNC:51829     -1
7572               21  6444869  6468040         CBSL HGNC:51829     -1
7573               21  6444869  6468040         CBSL HGNC:51829     -1
7574               21  6444869  6468040         CBSL HGNC:51829     -1
7575               21  6444869  6468040         CBSL HGNC:51829     -1
7576               21  6444869  6468040         CBSL HGNC:51829     -1
7577               21  6444869  6468040         CBSL HGNC:51829     -1
7578               21  6444869  6468040         CBSL HGNC:51829     -1
7579               21  6444869  6468040         CBSL HGNC:51829     -1
7580               21  6444869  6468040         CBSL HGNC:51829     -1
7581               21  6444869  6468040         CBSL HGNC:51829     -1
7582               21  6444869  6468040         CBSL HGNC:51829     -1
7583               21  6444869  6468040         CBSL HGNC:51829     -1
7584               21  6444869  6468040         CBSL HGNC:51829     -1
7585               21  6444869  6468040         CBSL HGNC:51829     -1
7586               21  6444869  6468040         CBSL HGNC:51829     -1
7587               21  6444869  6468040         CBSL HGNC:51829     -1
7588               21  6444869  6468040         CBSL HGNC:51829     -1
7589               21  6444869  6468040         CBSL HGNC:51829     -1
7590               21  6444869  6468040         CBSL HGNC:51829     -1
7591               21  6444869  6468040         CBSL HGNC:51829     -1
7592               21  6444869  6468040         CBSL HGNC:51829     -1
7593               21 32913649 33071104                             -1
7594               21 32913649 33071104                             -1
7595               21 36082859 36090414                              1
7596               21 36082859 36090414                              1
7597               21 42653636 42775509        PDE9A  HGNC:8795      1
7598               21 42653636 42775509        PDE9A  HGNC:8795      1
7599               21 42653636 42775509        PDE9A  HGNC:8795      1
7600               21 42653636 42775509        PDE9A  HGNC:8795      1
7601               21 42653636 42775509        PDE9A  HGNC:8795      1
7602               21 42653636 42775509        PDE9A  HGNC:8795      1
7603               21 42653636 42775509        PDE9A  HGNC:8795      1
7604               21 42653636 42775509        PDE9A  HGNC:8795      1
7605               21 42653636 42775509        PDE9A  HGNC:8795      1
7606               21 42653636 42775509        PDE9A  HGNC:8795      1
7607               21 42653636 42775509        PDE9A  HGNC:8795      1
7608               21 42653636 42775509        PDE9A  HGNC:8795      1
7609               21 42653636 42775509        PDE9A  HGNC:8795      1
7610               21 42653636 42775509        PDE9A  HGNC:8795      1
7611               21 42653636 42775509        PDE9A  HGNC:8795      1
7612               21 42653636 42775509        PDE9A  HGNC:8795      1
7613               21 42653636 42775509        PDE9A  HGNC:8795      1
7614               21 42653636 42775509        PDE9A  HGNC:8795      1
7615               21 42653636 42775509        PDE9A  HGNC:8795      1
7616               21 42653636 42775509        PDE9A  HGNC:8795      1
7617               21 42653636 42775509        PDE9A  HGNC:8795      1
7618               21 42653636 42775509        PDE9A  HGNC:8795      1
7619               21 42653636 42775509        PDE9A  HGNC:8795      1
7620               21 42653636 42775509        PDE9A  HGNC:8795      1
7621               21 42653636 42775509        PDE9A  HGNC:8795      1
7622               21 42653636 42775509        PDE9A  HGNC:8795      1
7623               21 42653636 42775509        PDE9A  HGNC:8795      1
7624               21 42653636 42775509        PDE9A  HGNC:8795      1
7625               21 42653636 42775509        PDE9A  HGNC:8795      1
7626               21 42653636 42775509        PDE9A  HGNC:8795      1
7627               21 42653636 42775509        PDE9A  HGNC:8795      1
7628               21 42653636 42775509        PDE9A  HGNC:8795      1
7629               21 42653636 42775509        PDE9A  HGNC:8795      1
7630               21 42653636 42775509        PDE9A  HGNC:8795      1
7631               21 42653636 42775509        PDE9A  HGNC:8795      1
7632               21 42653636 42775509        PDE9A  HGNC:8795      1
7633               21 42653636 42775509        PDE9A  HGNC:8795      1
7634               21 42653636 42775509        PDE9A  HGNC:8795      1
7635               21 42653636 42775509        PDE9A  HGNC:8795      1
7636               21 42653636 42775509        PDE9A  HGNC:8795      1
7637               21 42653636 42775509        PDE9A  HGNC:8795      1
7638               21 42653636 42775509        PDE9A  HGNC:8795      1
7639               21 42653636 42775509        PDE9A  HGNC:8795      1
7640               21 42653636 42775509        PDE9A  HGNC:8795      1
7641               21 42653636 42775509        PDE9A  HGNC:8795      1
7642               21 42653636 42775509        PDE9A  HGNC:8795      1
7643               21 42653636 42775509        PDE9A  HGNC:8795      1
7644               21 42653636 42775509        PDE9A  HGNC:8795      1
7645               21 42653636 42775509        PDE9A  HGNC:8795      1
7646               21 42653636 42775509        PDE9A  HGNC:8795      1
7647               21 42653636 42775509        PDE9A  HGNC:8795      1
7648               21 42653636 42775509        PDE9A  HGNC:8795      1
7649               21 42653636 42775509        PDE9A  HGNC:8795      1
7650               21 42653636 42775509        PDE9A  HGNC:8795      1
7651               21 42653636 42775509        PDE9A  HGNC:8795      1
7652               21 42653636 42775509        PDE9A  HGNC:8795      1
7653               21 42653636 42775509        PDE9A  HGNC:8795      1
7654               21 42653636 42775509        PDE9A  HGNC:8795      1
7655               21 42653636 42775509        PDE9A  HGNC:8795      1
7656               21 42653636 42775509        PDE9A  HGNC:8795      1
7657               21 42653636 42775509        PDE9A  HGNC:8795      1
7658               21 42653636 42775509        PDE9A  HGNC:8795      1
7659               21 42653636 42775509        PDE9A  HGNC:8795      1
7660               21 42653636 42775509        PDE9A  HGNC:8795      1
7661               21 42653636 42775509        PDE9A  HGNC:8795      1
7662               21 42653636 42775509        PDE9A  HGNC:8795      1
7663               21 42653636 42775509        PDE9A  HGNC:8795      1
7664               21 42653636 42775509        PDE9A  HGNC:8795      1
7665               21 42653636 42775509        PDE9A  HGNC:8795      1
7666               21 42653636 42775509        PDE9A  HGNC:8795      1
7667               21 42653636 42775509        PDE9A  HGNC:8795      1
7668               21 42653636 42775509        PDE9A  HGNC:8795      1
7669               21 42653636 42775509        PDE9A  HGNC:8795      1
7670               21 42653636 42775509        PDE9A  HGNC:8795      1
7671               21 42653636 42775509        PDE9A  HGNC:8795      1
7672               21 42653636 42775509        PDE9A  HGNC:8795      1
7673               21 42653636 42775509        PDE9A  HGNC:8795      1
7674               21 42653636 42775509        PDE9A  HGNC:8795      1
7675               21 42653636 42775509        PDE9A  HGNC:8795      1
7676               21 42653636 42775509        PDE9A  HGNC:8795      1
7677               21 42653636 42775509        PDE9A  HGNC:8795      1
7678               21 42653636 42775509        PDE9A  HGNC:8795      1
7679               21 42653636 42775509        PDE9A  HGNC:8795      1
7680               21 42653636 42775509        PDE9A  HGNC:8795      1
7681               21 42653636 42775509        PDE9A  HGNC:8795      1
7682               21 42653636 42775509        PDE9A  HGNC:8795      1
7683               21 42653636 42775509        PDE9A  HGNC:8795      1
7684               21 42653636 42775509        PDE9A  HGNC:8795      1
7685               21 42653636 42775509        PDE9A  HGNC:8795      1
7686               21 42653636 42775509        PDE9A  HGNC:8795      1
7687               21 42653636 42775509        PDE9A  HGNC:8795      1
7688               21 42653636 42775509        PDE9A  HGNC:8795      1
7689               21 42653636 42775509        PDE9A  HGNC:8795      1
7690               21 42653636 42775509        PDE9A  HGNC:8795      1
7691               21 42653636 42775509        PDE9A  HGNC:8795      1
7692               21 42653636 42775509        PDE9A  HGNC:8795      1
7693               21 42653636 42775509        PDE9A  HGNC:8795      1
7694               21 42653636 42775509        PDE9A  HGNC:8795      1
7695               21 42653636 42775509        PDE9A  HGNC:8795      1
7696               21 42653636 42775509        PDE9A  HGNC:8795      1
7697               21 42653636 42775509        PDE9A  HGNC:8795      1
7698               21 42653636 42775509        PDE9A  HGNC:8795      1
7699               21 42653636 42775509        PDE9A  HGNC:8795      1
7700               21 42653636 42775509        PDE9A  HGNC:8795      1
7701               21 42653636 42775509        PDE9A  HGNC:8795      1
7702               21 42653636 42775509        PDE9A  HGNC:8795      1
7703               21 42653636 42775509        PDE9A  HGNC:8795      1
7704               21 42653636 42775509        PDE9A  HGNC:8795      1
7705               21 42653636 42775509        PDE9A  HGNC:8795      1
7706               21 42653636 42775509        PDE9A  HGNC:8795      1
7707               21 42653636 42775509        PDE9A  HGNC:8795      1
7708               21 42653636 42775509        PDE9A  HGNC:8795      1
7709               21 42653636 42775509        PDE9A  HGNC:8795      1
7710               21 42653636 42775509        PDE9A  HGNC:8795      1
7711               21 42653636 42775509        PDE9A  HGNC:8795      1
7712               21 42653636 42775509        PDE9A  HGNC:8795      1
7713               21 42653636 42775509        PDE9A  HGNC:8795      1
7714               21 42653636 42775509        PDE9A  HGNC:8795      1
7715               21 42653636 42775509        PDE9A  HGNC:8795      1
7716               21 42653636 42775509        PDE9A  HGNC:8795      1
7717               21 42653636 42775509        PDE9A  HGNC:8795      1
7718               21 42653636 42775509        PDE9A  HGNC:8795      1
7719               21 42653636 42775509        PDE9A  HGNC:8795      1
7720               21 42653636 42775509        PDE9A  HGNC:8795      1
7721               21 42653636 42775509        PDE9A  HGNC:8795      1
7722               21 42653636 42775509        PDE9A  HGNC:8795      1
7723               21 42653636 42775509        PDE9A  HGNC:8795      1
7724               21 42653636 42775509        PDE9A  HGNC:8795      1
7725               21 42653636 42775509        PDE9A  HGNC:8795      1
7726               21 42653636 42775509        PDE9A  HGNC:8795      1
7727               21 42653636 42775509        PDE9A  HGNC:8795      1
7728               21 42653636 42775509        PDE9A  HGNC:8795      1
7729               21 42653636 42775509        PDE9A  HGNC:8795      1
7730               21 42653636 42775509        PDE9A  HGNC:8795      1
7731               21 42653636 42775509        PDE9A  HGNC:8795      1
7732               21 42653636 42775509        PDE9A  HGNC:8795      1
7733               21 42653636 42775509        PDE9A  HGNC:8795      1
7734               21 42653636 42775509        PDE9A  HGNC:8795      1
7735               21 42653636 42775509        PDE9A  HGNC:8795      1
7736               21 42653636 42775509        PDE9A  HGNC:8795      1
7737               21 42653636 42775509        PDE9A  HGNC:8795      1
7738               21 42653636 42775509        PDE9A  HGNC:8795      1
7739               21 42653636 42775509        PDE9A  HGNC:8795      1
7740               21 42653636 42775509        PDE9A  HGNC:8795      1
7741               21 42653636 42775509        PDE9A  HGNC:8795      1
7742               21 42653636 42775509        PDE9A  HGNC:8795      1
7743               21 42653636 42775509        PDE9A  HGNC:8795      1
7744               21 42653636 42775509        PDE9A  HGNC:8795      1
7745               21 42653636 42775509        PDE9A  HGNC:8795      1
7746               21 42653636 42775509        PDE9A  HGNC:8795      1
7747               21 42653636 42775509        PDE9A  HGNC:8795      1
7748               21 42653636 42775509        PDE9A  HGNC:8795      1
7749               21 42653636 42775509        PDE9A  HGNC:8795      1
7750               21 42653636 42775509        PDE9A  HGNC:8795      1
7751               21 42653636 42775509        PDE9A  HGNC:8795      1
7752               21 42653636 42775509        PDE9A  HGNC:8795      1
7753               21 42653636 42775509        PDE9A  HGNC:8795      1
7754               21 42653636 42775509        PDE9A  HGNC:8795      1
7755               21 42653636 42775509        PDE9A  HGNC:8795      1
7756               21 42653636 42775509        PDE9A  HGNC:8795      1
7757               21 42653636 42775509        PDE9A  HGNC:8795      1
7758               21 42653636 42775509        PDE9A  HGNC:8795      1
7759               21 42653636 42775509        PDE9A  HGNC:8795      1
7760               21 42653636 42775509        PDE9A  HGNC:8795      1
7761               21 42653636 42775509        PDE9A  HGNC:8795      1
7762               21 42653636 42775509        PDE9A  HGNC:8795      1
7763               21 42653636 42775509        PDE9A  HGNC:8795      1
7764               21 42653636 42775509        PDE9A  HGNC:8795      1
7765               21 42653636 42775509        PDE9A  HGNC:8795      1
7766               21 42653636 42775509        PDE9A  HGNC:8795      1
7767               21 42653636 42775509        PDE9A  HGNC:8795      1
7768               21 42653636 42775509        PDE9A  HGNC:8795      1
7769               21 42653636 42775509        PDE9A  HGNC:8795      1
7770               21 42653636 42775509        PDE9A  HGNC:8795      1
7771               21 42653636 42775509        PDE9A  HGNC:8795      1
7772               21 42653636 42775509        PDE9A  HGNC:8795      1
7773               21 42653636 42775509        PDE9A  HGNC:8795      1
7774               21 42653636 42775509        PDE9A  HGNC:8795      1
7775               21 42653636 42775509        PDE9A  HGNC:8795      1
7776               21 42653636 42775509        PDE9A  HGNC:8795      1
7777               21 42653636 42775509        PDE9A  HGNC:8795      1
7778               21 42653636 42775509        PDE9A  HGNC:8795      1
7779               21 42653636 42775509        PDE9A  HGNC:8795      1
7780               21 42653636 42775509        PDE9A  HGNC:8795      1
7781               21 42653636 42775509        PDE9A  HGNC:8795      1
7782               21 42653636 42775509        PDE9A  HGNC:8795      1
7783               21 42653636 42775509        PDE9A  HGNC:8795      1
7784               21 42653636 42775509        PDE9A  HGNC:8795      1
7785               21 42653636 42775509        PDE9A  HGNC:8795      1
7786               21 42653636 42775509        PDE9A  HGNC:8795      1
7787               21 42653636 42775509        PDE9A  HGNC:8795      1
7788               21 42653636 42775509        PDE9A  HGNC:8795      1
7789               21 42653636 42775509        PDE9A  HGNC:8795      1
7790               21 42653636 42775509        PDE9A  HGNC:8795      1
7791               21 42653636 42775509        PDE9A  HGNC:8795      1
7792               21 42653636 42775509        PDE9A  HGNC:8795      1
7793               21 42653636 42775509        PDE9A  HGNC:8795      1
7794               21 42653636 42775509        PDE9A  HGNC:8795      1
7795               21 42653636 42775509        PDE9A  HGNC:8795      1
7796               21 42653636 42775509        PDE9A  HGNC:8795      1
7797               21 42653636 42775509        PDE9A  HGNC:8795      1
7798               21 42653636 42775509        PDE9A  HGNC:8795      1
7799               21 42653636 42775509        PDE9A  HGNC:8795      1
7800               21 42653636 42775509        PDE9A  HGNC:8795      1
7801               21 42653636 42775509        PDE9A  HGNC:8795      1
7802               21 42653636 42775509        PDE9A  HGNC:8795      1
7803               21 42653636 42775509        PDE9A  HGNC:8795      1
7804               21 42653636 42775509        PDE9A  HGNC:8795      1
7805               21 42653636 42775509        PDE9A  HGNC:8795      1
7806               21 42653636 42775509        PDE9A  HGNC:8795      1
7807               21 42653636 42775509        PDE9A  HGNC:8795      1
7808               21 42653636 42775509        PDE9A  HGNC:8795      1
7809               21 42653636 42775509        PDE9A  HGNC:8795      1
7810               21 42653636 42775509        PDE9A  HGNC:8795      1
7811               21 42653636 42775509        PDE9A  HGNC:8795      1
7812               21 42653636 42775509        PDE9A  HGNC:8795      1
7813               21 42653636 42775509        PDE9A  HGNC:8795      1
7814               21 42653636 42775509        PDE9A  HGNC:8795      1
7815               21 42653636 42775509        PDE9A  HGNC:8795      1
7816               21 42653636 42775509        PDE9A  HGNC:8795      1
7817               21 42653636 42775509        PDE9A  HGNC:8795      1
7818               21 42653636 42775509        PDE9A  HGNC:8795      1
7819               21 42653636 42775509        PDE9A  HGNC:8795      1
7820               21 42653636 42775509        PDE9A  HGNC:8795      1
7821               21 42653636 42775509        PDE9A  HGNC:8795      1
7822               21 42653636 42775509        PDE9A  HGNC:8795      1
7823               21 42653636 42775509        PDE9A  HGNC:8795      1
7824               21 42653636 42775509        PDE9A  HGNC:8795      1
7825               21 42653636 42775509        PDE9A  HGNC:8795      1
7826               21 42653636 42775509        PDE9A  HGNC:8795      1
7827               21 42653636 42775509        PDE9A  HGNC:8795      1
7828               21 42653636 42775509        PDE9A  HGNC:8795      1
7829               21 42653636 42775509        PDE9A  HGNC:8795      1
7830               21 42653636 42775509        PDE9A  HGNC:8795      1
7831               21 42653636 42775509        PDE9A  HGNC:8795      1
7832               21 42653636 42775509        PDE9A  HGNC:8795      1
7833               21 42653636 42775509        PDE9A  HGNC:8795      1
7834               21 42653636 42775509        PDE9A  HGNC:8795      1
7835               21 42653636 42775509        PDE9A  HGNC:8795      1
7836               21 42653636 42775509        PDE9A  HGNC:8795      1
7837               21 42653636 42775509        PDE9A  HGNC:8795      1
7838               21 42653636 42775509        PDE9A  HGNC:8795      1
7839               21 42653636 42775509        PDE9A  HGNC:8795      1
7840               21 42653636 42775509        PDE9A  HGNC:8795      1
7841               21 42653636 42775509        PDE9A  HGNC:8795      1
7842               21 42653636 42775509        PDE9A  HGNC:8795      1
7843               21 42653636 42775509        PDE9A  HGNC:8795      1
7844               21 42653636 42775509        PDE9A  HGNC:8795      1
7845               21 42653636 42775509        PDE9A  HGNC:8795      1
7846               21 42653636 42775509        PDE9A  HGNC:8795      1
7847               21 42653636 42775509        PDE9A  HGNC:8795      1
7848               21 42653636 42775509        PDE9A  HGNC:8795      1
7849               21 42653636 42775509        PDE9A  HGNC:8795      1
7850               21 42653636 42775509        PDE9A  HGNC:8795      1
7851               21 42653636 42775509        PDE9A  HGNC:8795      1
7852               21 42653636 42775509        PDE9A  HGNC:8795      1
7853               21 42653636 42775509        PDE9A  HGNC:8795      1
7854               21 42653636 42775509        PDE9A  HGNC:8795      1
7855               21 42653636 42775509        PDE9A  HGNC:8795      1
7856               21 42653636 42775509        PDE9A  HGNC:8795      1
7857               21 42653636 42775509        PDE9A  HGNC:8795      1
7858               21 42653636 42775509        PDE9A  HGNC:8795      1
7859               21 42653636 42775509        PDE9A  HGNC:8795      1
7860               21 42653636 42775509        PDE9A  HGNC:8795      1
7861               21 42653636 42775509        PDE9A  HGNC:8795      1
7862               21 42653636 42775509        PDE9A  HGNC:8795      1
7863               21 42653636 42775509        PDE9A  HGNC:8795      1
7864               21 42653636 42775509        PDE9A  HGNC:8795      1
7865               21 42653636 42775509        PDE9A  HGNC:8795      1
7866               21 42653636 42775509        PDE9A  HGNC:8795      1
7867               21 42653636 42775509        PDE9A  HGNC:8795      1
7868               21 42653636 42775509        PDE9A  HGNC:8795      1
7869               21 42653636 42775509        PDE9A  HGNC:8795      1
7870               21 42653636 42775509        PDE9A  HGNC:8795      1
7871               21 42653636 42775509        PDE9A  HGNC:8795      1
7872               21 42653636 42775509        PDE9A  HGNC:8795      1
7873               21 42653636 42775509        PDE9A  HGNC:8795      1
7874               21 42653636 42775509        PDE9A  HGNC:8795      1
7875               21 42653636 42775509        PDE9A  HGNC:8795      1
7876               21 42653636 42775509        PDE9A  HGNC:8795      1
7877               21 42653636 42775509        PDE9A  HGNC:8795      1
7878               21 42653636 42775509        PDE9A  HGNC:8795      1
7879               21 42653636 42775509        PDE9A  HGNC:8795      1
7880               21 42653636 42775509        PDE9A  HGNC:8795      1
7881               21 42653636 42775509        PDE9A  HGNC:8795      1
7882               21 42653636 42775509        PDE9A  HGNC:8795      1
7883               21 42653636 42775509        PDE9A  HGNC:8795      1
7884               21 42653636 42775509        PDE9A  HGNC:8795      1
7885               21 42653636 42775509        PDE9A  HGNC:8795      1
7886               21 42653636 42775509        PDE9A  HGNC:8795      1
7887               21 42653636 42775509        PDE9A  HGNC:8795      1
7888               21 42653636 42775509        PDE9A  HGNC:8795      1
7889               21 42653636 42775509        PDE9A  HGNC:8795      1
7890               21 42653636 42775509        PDE9A  HGNC:8795      1
7891               21 42653636 42775509        PDE9A  HGNC:8795      1
7892               21 42653636 42775509        PDE9A  HGNC:8795      1
7893               21 42653636 42775509        PDE9A  HGNC:8795      1
7894               21 42653636 42775509        PDE9A  HGNC:8795      1
7895               21 42653636 42775509        PDE9A  HGNC:8795      1
7896               21 42653636 42775509        PDE9A  HGNC:8795      1
7897               21 42653636 42775509        PDE9A  HGNC:8795      1
7898               21 42653636 42775509        PDE9A  HGNC:8795      1
7899               21 42653636 42775509        PDE9A  HGNC:8795      1
7900               21 42653636 42775509        PDE9A  HGNC:8795      1
7901               21 42653636 42775509        PDE9A  HGNC:8795      1
7902               21 42653636 42775509        PDE9A  HGNC:8795      1
7903               21 42653636 42775509        PDE9A  HGNC:8795      1
7904               21 42653636 42775509        PDE9A  HGNC:8795      1
7905               21 42653636 42775509        PDE9A  HGNC:8795      1
7906               21 42653636 42775509        PDE9A  HGNC:8795      1
7907               21 42653636 42775509        PDE9A  HGNC:8795      1
7908               21 42653636 42775509        PDE9A  HGNC:8795      1
7909               21 42653636 42775509        PDE9A  HGNC:8795      1
7910               21 42653636 42775509        PDE9A  HGNC:8795      1
7911               21 42653636 42775509        PDE9A  HGNC:8795      1
7912               21 42653636 42775509        PDE9A  HGNC:8795      1
7913               21 42653636 42775509        PDE9A  HGNC:8795      1
7914               21 42653636 42775509        PDE9A  HGNC:8795      1
7915               21 42653636 42775509        PDE9A  HGNC:8795      1
7916               21 42653636 42775509        PDE9A  HGNC:8795      1
7917               21 42653636 42775509        PDE9A  HGNC:8795      1
7918               21 42653636 42775509        PDE9A  HGNC:8795      1
7919               21 42653636 42775509        PDE9A  HGNC:8795      1
7920               21 42653636 42775509        PDE9A  HGNC:8795      1
7921               21 42653636 42775509        PDE9A  HGNC:8795      1
7922               21 42653636 42775509        PDE9A  HGNC:8795      1
7923               21 42653636 42775509        PDE9A  HGNC:8795      1
7924               21 42653636 42775509        PDE9A  HGNC:8795      1
7925               21 42653636 42775509        PDE9A  HGNC:8795      1
7926               21 42653636 42775509        PDE9A  HGNC:8795      1
7927               21 42653636 42775509        PDE9A  HGNC:8795      1
7928               21 42653636 42775509        PDE9A  HGNC:8795      1
7929               21 42653636 42775509        PDE9A  HGNC:8795      1
7930               21 42653636 42775509        PDE9A  HGNC:8795      1
7931               21 42653636 42775509        PDE9A  HGNC:8795      1
7932               21 42653636 42775509        PDE9A  HGNC:8795      1
7933               21 42653636 42775509        PDE9A  HGNC:8795      1
7934               21 42653636 42775509        PDE9A  HGNC:8795      1
7935               21 42653636 42775509        PDE9A  HGNC:8795      1
7936               21 42653636 42775509        PDE9A  HGNC:8795      1
7937               21 42653636 42775509        PDE9A  HGNC:8795      1
7938               21 42653636 42775509        PDE9A  HGNC:8795      1
7939               21 42653636 42775509        PDE9A  HGNC:8795      1
7940               21 42653636 42775509        PDE9A  HGNC:8795      1
7941               21 42653636 42775509        PDE9A  HGNC:8795      1
7942               21 42653636 42775509        PDE9A  HGNC:8795      1
7943               21 42653636 42775509        PDE9A  HGNC:8795      1
7944               21 42653636 42775509        PDE9A  HGNC:8795      1
7945               21 42653636 42775509        PDE9A  HGNC:8795      1
7946               21 42653636 42775509        PDE9A  HGNC:8795      1
7947               21 42653636 42775509        PDE9A  HGNC:8795      1
7948               21 42653636 42775509        PDE9A  HGNC:8795      1
7949               21 42653636 42775509        PDE9A  HGNC:8795      1
7950               21 42653636 42775509        PDE9A  HGNC:8795      1
7951               21 42653636 42775509        PDE9A  HGNC:8795      1
7952               21 42653636 42775509        PDE9A  HGNC:8795      1
7953               21 42653636 42775509        PDE9A  HGNC:8795      1
7954               21 42653636 42775509        PDE9A  HGNC:8795      1
7955               21 42653636 42775509        PDE9A  HGNC:8795      1
7956               21 42653636 42775509        PDE9A  HGNC:8795      1
7957               21 42653636 42775509        PDE9A  HGNC:8795      1
7958               21 42653636 42775509        PDE9A  HGNC:8795      1
7959               21 42653636 42775509        PDE9A  HGNC:8795      1
7960               21 42653636 42775509        PDE9A  HGNC:8795      1
7961               21 42653636 42775509        PDE9A  HGNC:8795      1
7962               21 42653636 42775509        PDE9A  HGNC:8795      1
7963               21 42653636 42775509        PDE9A  HGNC:8795      1
7964               21 42653636 42775509        PDE9A  HGNC:8795      1
7965               21 42653636 42775509        PDE9A  HGNC:8795      1
7966               21 42653636 42775509        PDE9A  HGNC:8795      1
7967               21 42653636 42775509        PDE9A  HGNC:8795      1
7968               21 42653636 42775509        PDE9A  HGNC:8795      1
7969               21 42653636 42775509        PDE9A  HGNC:8795      1
7970               21 42653636 42775509        PDE9A  HGNC:8795      1
7971               21 42653636 42775509        PDE9A  HGNC:8795      1
7972               21 42653636 42775509        PDE9A  HGNC:8795      1
7973               21 42653636 42775509        PDE9A  HGNC:8795      1
7974               21 42653636 42775509        PDE9A  HGNC:8795      1
7975               21 42653636 42775509        PDE9A  HGNC:8795      1
7976               21 42653636 42775509        PDE9A  HGNC:8795      1
7977               21 42653636 42775509        PDE9A  HGNC:8795      1
7978               21 42653636 42775509        PDE9A  HGNC:8795      1
7979               21 42653636 42775509        PDE9A  HGNC:8795      1
7980               21 42653636 42775509        PDE9A  HGNC:8795      1
7981               21 42653636 42775509        PDE9A  HGNC:8795      1
7982               21 42653636 42775509        PDE9A  HGNC:8795      1
7983               21 42653636 42775509        PDE9A  HGNC:8795      1
7984               21 42653636 42775509        PDE9A  HGNC:8795      1
7985               21 42653636 42775509        PDE9A  HGNC:8795      1
7986               21 42653636 42775509        PDE9A  HGNC:8795      1
7987               21 42653636 42775509        PDE9A  HGNC:8795      1
7988               21 42653636 42775509        PDE9A  HGNC:8795      1
7989               21 42653636 42775509        PDE9A  HGNC:8795      1
7990               21 42653636 42775509        PDE9A  HGNC:8795      1
7991               21 42653636 42775509        PDE9A  HGNC:8795      1
7992               21 42653636 42775509        PDE9A  HGNC:8795      1
7993               21 42653636 42775509        PDE9A  HGNC:8795      1
7994               21 42653636 42775509        PDE9A  HGNC:8795      1
7995               21 42653636 42775509        PDE9A  HGNC:8795      1
7996               21 42653636 42775509        PDE9A  HGNC:8795      1
7997               21 42653636 42775509        PDE9A  HGNC:8795      1
7998               21 42653636 42775509        PDE9A  HGNC:8795      1
7999               21 42653636 42775509        PDE9A  HGNC:8795      1
8000               21 42653636 42775509        PDE9A  HGNC:8795      1
8001               21 42653636 42775509        PDE9A  HGNC:8795      1
8002               21 42653636 42775509        PDE9A  HGNC:8795      1
8003               21 42653636 42775509        PDE9A  HGNC:8795      1
8004               21 42653636 42775509        PDE9A  HGNC:8795      1
8005               21 42653636 42775509        PDE9A  HGNC:8795      1
8006               21 42653636 42775509        PDE9A  HGNC:8795      1
8007               21 42653636 42775509        PDE9A  HGNC:8795      1
8008               21 42653636 42775509        PDE9A  HGNC:8795      1
8009               21 42653636 42775509        PDE9A  HGNC:8795      1
8010               21 42653636 42775509        PDE9A  HGNC:8795      1
8011               21 42653636 42775509        PDE9A  HGNC:8795      1
8012               21 42653636 42775509        PDE9A  HGNC:8795      1
8013               21 42653636 42775509        PDE9A  HGNC:8795      1
8014               21 42653636 42775509        PDE9A  HGNC:8795      1
8015               21 42653636 42775509        PDE9A  HGNC:8795      1
8016               21 42653636 42775509        PDE9A  HGNC:8795      1
8017               21 42653636 42775509        PDE9A  HGNC:8795      1
8018               21 42653636 42775509        PDE9A  HGNC:8795      1
8019               21 42472486 42496354        RSPH1 HGNC:12371     -1
8020               21 42472486 42496354        RSPH1 HGNC:12371     -1
8021               21 42472486 42496354        RSPH1 HGNC:12371     -1
8022               21 42472486 42496354        RSPH1 HGNC:12371     -1
8023               21 42472486 42496354        RSPH1 HGNC:12371     -1
8024               21 42472486 42496354        RSPH1 HGNC:12371     -1
8025               21 42472486 42496354        RSPH1 HGNC:12371     -1
8026               21 42472486 42496354        RSPH1 HGNC:12371     -1
8027               21 42472486 42496354        RSPH1 HGNC:12371     -1
8028               21 42472486 42496354        RSPH1 HGNC:12371     -1
8029               21 42472486 42496354        RSPH1 HGNC:12371     -1
8030               21 42472486 42496354        RSPH1 HGNC:12371     -1
8031               21 42472486 42496354        RSPH1 HGNC:12371     -1
8032               21 42472486 42496354        RSPH1 HGNC:12371     -1
8033               21 42472486 42496354        RSPH1 HGNC:12371     -1
8034               21 42472486 42496354        RSPH1 HGNC:12371     -1
8035               21 42472486 42496354        RSPH1 HGNC:12371     -1
8036               21 42472486 42496354        RSPH1 HGNC:12371     -1
8037               21 42472486 42496354        RSPH1 HGNC:12371     -1
8038               21 42472486 42496354        RSPH1 HGNC:12371     -1
8039               21 42472486 42496354        RSPH1 HGNC:12371     -1
8040               21 42472486 42496354        RSPH1 HGNC:12371     -1
8041               21 42472486 42496354        RSPH1 HGNC:12371     -1
8042               21 42472486 42496354        RSPH1 HGNC:12371     -1
8043               21 42472486 42496354        RSPH1 HGNC:12371     -1
8044               21 35472095 35472432      RPL34P3 HGNC:10343     -1
8045               21 35724747 35725100      RPS20P1 HGNC:10408     -1
8046               21 35713139 35732942                             -1
8047               21 35713139 35732942                             -1
8048               21 34787801 36004667        RUNX1 HGNC:10471     -1
8049               21 34787801 36004667        RUNX1 HGNC:10471     -1
8050               21 34787801 36004667        RUNX1 HGNC:10471     -1
8051               21 34787801 36004667        RUNX1 HGNC:10471     -1
8052               21 34787801 36004667        RUNX1 HGNC:10471     -1
8053               21 34787801 36004667        RUNX1 HGNC:10471     -1
8054               21 34787801 36004667        RUNX1 HGNC:10471     -1
8055               21 34787801 36004667        RUNX1 HGNC:10471     -1
8056               21 34787801 36004667        RUNX1 HGNC:10471     -1
8057               21 34787801 36004667        RUNX1 HGNC:10471     -1
8058               21 34787801 36004667        RUNX1 HGNC:10471     -1
8059               21 34787801 36004667        RUNX1 HGNC:10471     -1
8060               21 34787801 36004667        RUNX1 HGNC:10471     -1
8061               21 34787801 36004667        RUNX1 HGNC:10471     -1
8062               21 34787801 36004667        RUNX1 HGNC:10471     -1
8063               21 34787801 36004667        RUNX1 HGNC:10471     -1
8064               21 34787801 36004667        RUNX1 HGNC:10471     -1
8065               21 34787801 36004667        RUNX1 HGNC:10471     -1
8066               21 34787801 36004667        RUNX1 HGNC:10471     -1
8067               21 34787801 36004667        RUNX1 HGNC:10471     -1
8068               21 34787801 36004667        RUNX1 HGNC:10471     -1
8069               21 34787801 36004667        RUNX1 HGNC:10471     -1
8070               21 34787801 36004667        RUNX1 HGNC:10471     -1
8071               21 34787801 36004667        RUNX1 HGNC:10471     -1
8072               21 34787801 36004667        RUNX1 HGNC:10471     -1
8073               21 34787801 36004667        RUNX1 HGNC:10471     -1
8074               21 34787801 36004667        RUNX1 HGNC:10471     -1
8075               21 34787801 36004667        RUNX1 HGNC:10471     -1
8076               21 34787801 36004667        RUNX1 HGNC:10471     -1
8077               21 34787801 36004667        RUNX1 HGNC:10471     -1
8078               21 34787801 36004667        RUNX1 HGNC:10471     -1
8079               21 34787801 36004667        RUNX1 HGNC:10471     -1
8080               21 34787801 36004667        RUNX1 HGNC:10471     -1
8081               21 34787801 36004667        RUNX1 HGNC:10471     -1
8082               21 34787801 36004667        RUNX1 HGNC:10471     -1
8083               21 34787801 36004667        RUNX1 HGNC:10471     -1
8084               21 34787801 36004667        RUNX1 HGNC:10471     -1
8085               21 34787801 36004667        RUNX1 HGNC:10471     -1
8086               21 34787801 36004667        RUNX1 HGNC:10471     -1
8087               21 34787801 36004667        RUNX1 HGNC:10471     -1
8088               21 34787801 36004667        RUNX1 HGNC:10471     -1
8089               21 34787801 36004667        RUNX1 HGNC:10471     -1
8090               21 34787801 36004667        RUNX1 HGNC:10471     -1
8091               21 34787801 36004667        RUNX1 HGNC:10471     -1
8092               21 34787801 36004667        RUNX1 HGNC:10471     -1
8093               21 34787801 36004667        RUNX1 HGNC:10471     -1
8094               21 34787801 36004667        RUNX1 HGNC:10471     -1
8095               21 34787801 36004667        RUNX1 HGNC:10471     -1
8096               21 34787801 36004667        RUNX1 HGNC:10471     -1
8097               21 34787801 36004667        RUNX1 HGNC:10471     -1
8098               21 34787801 36004667        RUNX1 HGNC:10471     -1
8099               21 34787801 36004667        RUNX1 HGNC:10471     -1
8100               21 34787801 36004667        RUNX1 HGNC:10471     -1
8101               21 34787801 36004667        RUNX1 HGNC:10471     -1
8102               21 34787801 36004667        RUNX1 HGNC:10471     -1
8103               21 34787801 36004667        RUNX1 HGNC:10471     -1
8104               21 34787801 36004667        RUNX1 HGNC:10471     -1
8105               21 34787801 36004667        RUNX1 HGNC:10471     -1
8106               21 34787801 36004667        RUNX1 HGNC:10471     -1
8107               21 34787801 36004667        RUNX1 HGNC:10471     -1
8108               21 34787801 36004667        RUNX1 HGNC:10471     -1
8109               21 34787801 36004667        RUNX1 HGNC:10471     -1
8110               21 34787801 36004667        RUNX1 HGNC:10471     -1
8111               21 34787801 36004667        RUNX1 HGNC:10471     -1
8112               21 34787801 36004667        RUNX1 HGNC:10471     -1
8113               21 34787801 36004667        RUNX1 HGNC:10471     -1
8114               21 34787801 36004667        RUNX1 HGNC:10471     -1
8115               21 34787801 36004667        RUNX1 HGNC:10471     -1
8116               21 34787801 36004667        RUNX1 HGNC:10471     -1
8117               21 34787801 36004667        RUNX1 HGNC:10471     -1
8118               21 34787801 36004667        RUNX1 HGNC:10471     -1
8119               21 34787801 36004667        RUNX1 HGNC:10471     -1
8120               21 34787801 36004667        RUNX1 HGNC:10471     -1
8121               21 34787801 36004667        RUNX1 HGNC:10471     -1
8122               21 34787801 36004667        RUNX1 HGNC:10471     -1
8123               21 34787801 36004667        RUNX1 HGNC:10471     -1
8124               21 34787801 36004667        RUNX1 HGNC:10471     -1
8125               21 34787801 36004667        RUNX1 HGNC:10471     -1
8126               21 34787801 36004667        RUNX1 HGNC:10471     -1
8127               21 34787801 36004667        RUNX1 HGNC:10471     -1
8128               21 34787801 36004667        RUNX1 HGNC:10471     -1
8129               21 34787801 36004667        RUNX1 HGNC:10471     -1
8130               21 34787801 36004667        RUNX1 HGNC:10471     -1
8131               21 36130489 36131376      MEMO1P1 HGNC:23274      1
8132               21 17793488 17810845                              1
8133               21 17793488 17810845                              1
8134               21 17793488 17810845                              1
8135               21 17793488 17810845                              1
8136               21 43805758 43812567        AATBC HGNC:51526     -1
8137               21 43805758 43812567        AATBC HGNC:51526     -1
8138               21 43805758 43812567        AATBC HGNC:51526     -1
8139               21 43805758 43812567        AATBC HGNC:51526     -1
8140               21 43805758 43812567        AATBC HGNC:51526     -1
8141               21 43805758 43812567        AATBC HGNC:51526     -1
8142               21 43805758 43812567        AATBC HGNC:51526     -1
8143               21 43805758 43812567        AATBC HGNC:51526     -1
8144               21 26459903 26460214                             -1
8145               21 32393130 32393960     URB1-AS1 HGNC:23128      1
8146               21 43719094 43762307         PDXK  HGNC:8819      1
8147               21 43719094 43762307         PDXK  HGNC:8819      1
8148               21 43719094 43762307         PDXK  HGNC:8819      1
8149               21 43719094 43762307         PDXK  HGNC:8819      1
8150               21 43719094 43762307         PDXK  HGNC:8819      1
8151               21 43719094 43762307         PDXK  HGNC:8819      1
8152               21 43719094 43762307         PDXK  HGNC:8819      1
8153               21 43719094 43762307         PDXK  HGNC:8819      1
8154               21 43719094 43762307         PDXK  HGNC:8819      1
8155               21 43719094 43762307         PDXK  HGNC:8819      1
8156               21 43719094 43762307         PDXK  HGNC:8819      1
8157               21 43719094 43762307         PDXK  HGNC:8819      1
8158               21 43719094 43762307         PDXK  HGNC:8819      1
8159               21 43719094 43762307         PDXK  HGNC:8819      1
8160               21 43719094 43762307         PDXK  HGNC:8819      1
8161               21 43719094 43762307         PDXK  HGNC:8819      1
8162               21 43719094 43762307         PDXK  HGNC:8819      1
8163               21 43719094 43762307         PDXK  HGNC:8819      1
8164               21 43719094 43762307         PDXK  HGNC:8819      1
8165               21 43719094 43762307         PDXK  HGNC:8819      1
8166               21 43719094 43762307         PDXK  HGNC:8819      1
8167               21 43719094 43762307         PDXK  HGNC:8819      1
8168               21 43719094 43762307         PDXK  HGNC:8819      1
8169               21 43719094 43762307         PDXK  HGNC:8819      1
8170               21 43719094 43762307         PDXK  HGNC:8819      1
8171               21 43719094 43762307         PDXK  HGNC:8819      1
8172               21 43719094 43762307         PDXK  HGNC:8819      1
8173               21 43719094 43762307         PDXK  HGNC:8819      1
8174               21 43719094 43762307         PDXK  HGNC:8819      1
8175               21 43719094 43762307         PDXK  HGNC:8819      1
8176               21 43719094 43762307         PDXK  HGNC:8819      1
8177               21 43719094 43762307         PDXK  HGNC:8819      1
8178               21 43719094 43762307         PDXK  HGNC:8819      1
8179               21 43719094 43762307         PDXK  HGNC:8819      1
8180               21 43719094 43762307         PDXK  HGNC:8819      1
8181               21 43719094 43762307         PDXK  HGNC:8819      1
8182               21 43719094 43762307         PDXK  HGNC:8819      1
8183               21 43719094 43762307         PDXK  HGNC:8819      1
8184               21 43719094 43762307         PDXK  HGNC:8819      1
8185               21 43719094 43762307         PDXK  HGNC:8819      1
8186               21 43719094 43762307         PDXK  HGNC:8819      1
8187               21 43719094 43762307         PDXK  HGNC:8819      1
8188               21 43719094 43762307         PDXK  HGNC:8819      1
8189               21 43719094 43762307         PDXK  HGNC:8819      1
8190               21 43719094 43762307         PDXK  HGNC:8819      1
8191               21 43719094 43762307         PDXK  HGNC:8819      1
8192               21 43719094 43762307         PDXK  HGNC:8819      1
8193               21 43719094 43762307         PDXK  HGNC:8819      1
8194               21 43719094 43762307         PDXK  HGNC:8819      1
8195               21 43719094 43762307         PDXK  HGNC:8819      1
8196               21 43719094 43762307         PDXK  HGNC:8819      1
8197               21 43719094 43762307         PDXK  HGNC:8819      1
8198               21 43719094 43762307         PDXK  HGNC:8819      1
8199               21 43719094 43762307         PDXK  HGNC:8819      1
8200               21 43719094 43762307         PDXK  HGNC:8819      1
8201               21 43719094 43762307         PDXK  HGNC:8819      1
8202               21 43719094 43762307         PDXK  HGNC:8819      1
8203               21 43719094 43762307         PDXK  HGNC:8819      1
8204               21 43719094 43762307         PDXK  HGNC:8819      1
8205               21 43719094 43762307         PDXK  HGNC:8819      1
8206               21 43719094 43762307         PDXK  HGNC:8819      1
8207               21 43719094 43762307         PDXK  HGNC:8819      1
8208               21 43719094 43762307         PDXK  HGNC:8819      1
8209               21 43719094 43762307         PDXK  HGNC:8819      1
8210               21 43719094 43762307         PDXK  HGNC:8819      1
8211               21 43719094 43762307         PDXK  HGNC:8819      1
8212               21 43719094 43762307         PDXK  HGNC:8819      1
8213               21 43719094 43762307         PDXK  HGNC:8819      1
8214               21 43719094 43762307         PDXK  HGNC:8819      1
8215               21 43719094 43762307         PDXK  HGNC:8819      1
8216               21 43719094 43762307         PDXK  HGNC:8819      1
8217               21 43719094 43762307         PDXK  HGNC:8819      1
8218               21 43719094 43762307         PDXK  HGNC:8819      1
8219               21 43719094 43762307         PDXK  HGNC:8819      1
8220               21 43719094 43762307         PDXK  HGNC:8819      1
8221               21 43719094 43762307         PDXK  HGNC:8819      1
8222               21 43719094 43762307         PDXK  HGNC:8819      1
8223               21 43719094 43762307         PDXK  HGNC:8819      1
8224               21 43719094 43762307         PDXK  HGNC:8819      1
8225               21 43719094 43762307         PDXK  HGNC:8819      1
8226               21 43719094 43762307         PDXK  HGNC:8819      1
8227               21 43719094 43762307         PDXK  HGNC:8819      1
8228               21 43719094 43762307         PDXK  HGNC:8819      1
8229               21 43719094 43762307         PDXK  HGNC:8819      1
8230               21 43719094 43762307         PDXK  HGNC:8819      1
8231               21 43719094 43762307         PDXK  HGNC:8819      1
8232               21 43719094 43762307         PDXK  HGNC:8819      1
8233               21 43719094 43762307         PDXK  HGNC:8819      1
8234               21 43719094 43762307         PDXK  HGNC:8819      1
8235               21 43719094 43762307         PDXK  HGNC:8819      1
8236               21 43719094 43762307         PDXK  HGNC:8819      1
8237               21 43719094 43762307         PDXK  HGNC:8819      1
8238               21 43719094 43762307         PDXK  HGNC:8819      1
8239               21 43719094 43762307         PDXK  HGNC:8819      1
8240               21 43719094 43762307         PDXK  HGNC:8819      1
8241               21 43719094 43762307         PDXK  HGNC:8819      1
8242               21 43719094 43762307         PDXK  HGNC:8819      1
8243               21 43719094 43762307         PDXK  HGNC:8819      1
8244               21 43719094 43762307         PDXK  HGNC:8819      1
8245               21 43719094 43762307         PDXK  HGNC:8819      1
8246               21 43719094 43762307         PDXK  HGNC:8819      1
8247               21 43719094 43762307         PDXK  HGNC:8819      1
8248               21 43719094 43762307         PDXK  HGNC:8819      1
8249               21 43719094 43762307         PDXK  HGNC:8819      1
8250               21 43719094 43762307         PDXK  HGNC:8819      1
8251               21 43719094 43762307         PDXK  HGNC:8819      1
8252               21 43719094 43762307         PDXK  HGNC:8819      1
8253               21 43719094 43762307         PDXK  HGNC:8819      1
8254               21 43719094 43762307         PDXK  HGNC:8819      1
8255               21 43719094 43762307         PDXK  HGNC:8819      1
8256               21 43719094 43762307         PDXK  HGNC:8819      1
8257               21 43719094 43762307         PDXK  HGNC:8819      1
8258               21 43719094 43762307         PDXK  HGNC:8819      1
8259               21 43719094 43762307         PDXK  HGNC:8819      1
8260               21 43719094 43762307         PDXK  HGNC:8819      1
8261               21 43719094 43762307         PDXK  HGNC:8819      1
8262               21 43719094 43762307         PDXK  HGNC:8819      1
8263               21 43719094 43762307         PDXK  HGNC:8819      1
8264               21 43719094 43762307         PDXK  HGNC:8819      1
8265               21 43719094 43762307         PDXK  HGNC:8819      1
8266               21 43719094 43762307         PDXK  HGNC:8819      1
8267               21 43719094 43762307         PDXK  HGNC:8819      1
8268               21 29370497 29373709    BACH1-IT2 HGNC:40007      1
8269               21 29370497 29373709    BACH1-IT2 HGNC:40007      1
8270               21 29370497 29373709    BACH1-IT2 HGNC:40007      1
8271               21 29370497 29373709    BACH1-IT2 HGNC:40007      1
8272               21 29370497 29373709    BACH1-IT2 HGNC:40007      1
8273               21 29370497 29373709    BACH1-IT2 HGNC:40007      1
8274               21 29370497 29373709    BACH1-IT2 HGNC:40007      1
8275               21 29370497 29373709    BACH1-IT2 HGNC:40007      1
8276               21  6712596  6716361                              1
8277               21  6712596  6716361                              1
8278               21  6712596  6716361                              1
8279               21  6712596  6716361                              1
8280               21  6712596  6716361                              1
8281               21  6712596  6716361                              1
8282               21  6712596  6716361                              1
8283               21  6712596  6716361                              1
8284               21  6676178  6679962                             -1
8285               21  6676178  6679962                             -1
8286               21  6676178  6679962                             -1
8287               21  6676178  6679962                             -1
8288               21  6676178  6679962                             -1
8289               21  6676178  6679962                             -1
8290               21  6676178  6679962                             -1
8291               21  6676178  6679962                             -1
8292               21  6676178  6679962                             -1
8293               21 44201290 44202696                              1
8294               21 44201290 44202696                              1
8295               21 37059170 37073170         PIGP  HGNC:3046     -1
8296               21 37059170 37073170         PIGP  HGNC:3046     -1
8297               21 37059170 37073170         PIGP  HGNC:3046     -1
8298               21 37059170 37073170         PIGP  HGNC:3046     -1
8299               21 37059170 37073170         PIGP  HGNC:3046     -1
8300               21 37059170 37073170         PIGP  HGNC:3046     -1
8301               21 37059170 37073170         PIGP  HGNC:3046     -1
8302               21 37059170 37073170         PIGP  HGNC:3046     -1
8303               21 37059170 37073170         PIGP  HGNC:3046     -1
8304               21 37059170 37073170         PIGP  HGNC:3046     -1
8305               21 37059170 37073170         PIGP  HGNC:3046     -1
8306               21 37059170 37073170         PIGP  HGNC:3046     -1
8307               21 37059170 37073170         PIGP  HGNC:3046     -1
8308               21 37059170 37073170         PIGP  HGNC:3046     -1
8309               21 37059170 37073170         PIGP  HGNC:3046     -1
8310               21 37059170 37073170         PIGP  HGNC:3046     -1
8311               21 37059170 37073170         PIGP  HGNC:3046     -1
8312               21 37059170 37073170         PIGP  HGNC:3046     -1
8313               21 37059170 37073170         PIGP  HGNC:3046     -1
8314               21 37059170 37073170         PIGP  HGNC:3046     -1
8315               21 37059170 37073170         PIGP  HGNC:3046     -1
8316               21 37059170 37073170         PIGP  HGNC:3046     -1
8317               21 37059170 37073170         PIGP  HGNC:3046     -1
8318               21 37059170 37073170         PIGP  HGNC:3046     -1
8319               21 37059170 37073170         PIGP  HGNC:3046     -1
8320               21 37059170 37073170         PIGP  HGNC:3046     -1
8321               21 37059170 37073170         PIGP  HGNC:3046     -1
8322               21 37059170 37073170         PIGP  HGNC:3046     -1
8323               21 37059170 37073170         PIGP  HGNC:3046     -1
8324               21 37059170 37073170         PIGP  HGNC:3046     -1
8325               21 37059170 37073170         PIGP  HGNC:3046     -1
8326               21 37059170 37073170         PIGP  HGNC:3046     -1
8327               21 37059170 37073170         PIGP  HGNC:3046     -1
8328               21  6084364  6091407                             -1
8329               21  6084364  6091407                             -1
8330               21  6084364  6091407                             -1
8331               21  6084364  6091407                             -1
8332               21  6084364  6091407                             -1
8333               21  6084364  6091407                             -1
8334               21  6084364  6091407                             -1
8335               21 23101223 23103074    MSANTD2P1 HGNC:39637      1
8336               21 23101223 23103074    MSANTD2P1 HGNC:39637      1
8337               21 23101223 23103074    MSANTD2P1 HGNC:39637      1
8338               21 22882582 22884000                              1
8339               21 22882582 22884000                              1
8340               21 22882582 22884000                              1
8341               21 21655038 21686329                             -1
8342               21 21655038 21686329                             -1
8343               21 21655038 21686329                             -1
8344               21 21655038 21686329                             -1
8345               21 21655038 21686329                             -1
8346               21 21566763 21615437                              1
8347               21 21566763 21615437                              1
8348               21 36034541 36079389        SETD4  HGNC:1258     -1
8349               21 36034541 36079389        SETD4  HGNC:1258     -1
8350               21 36034541 36079389        SETD4  HGNC:1258     -1
8351               21 36034541 36079389        SETD4  HGNC:1258     -1
8352               21 36034541 36079389        SETD4  HGNC:1258     -1
8353               21 36034541 36079389        SETD4  HGNC:1258     -1
8354               21 36034541 36079389        SETD4  HGNC:1258     -1
8355               21 36034541 36079389        SETD4  HGNC:1258     -1
8356               21 36034541 36079389        SETD4  HGNC:1258     -1
8357               21 36034541 36079389        SETD4  HGNC:1258     -1
8358               21 36034541 36079389        SETD4  HGNC:1258     -1
8359               21 36034541 36079389        SETD4  HGNC:1258     -1
8360               21 36034541 36079389        SETD4  HGNC:1258     -1
8361               21 36034541 36079389        SETD4  HGNC:1258     -1
8362               21 36034541 36079389        SETD4  HGNC:1258     -1
8363               21 36034541 36079389        SETD4  HGNC:1258     -1
8364               21 36034541 36079389        SETD4  HGNC:1258     -1
8365               21 36034541 36079389        SETD4  HGNC:1258     -1
8366               21 36034541 36079389        SETD4  HGNC:1258     -1
8367               21 36034541 36079389        SETD4  HGNC:1258     -1
8368               21 36034541 36079389        SETD4  HGNC:1258     -1
8369               21 36034541 36079389        SETD4  HGNC:1258     -1
8370               21 36034541 36079389        SETD4  HGNC:1258     -1
8371               21 36034541 36079389        SETD4  HGNC:1258     -1
8372               21 36034541 36079389        SETD4  HGNC:1258     -1
8373               21 36034541 36079389        SETD4  HGNC:1258     -1
8374               21 36034541 36079389        SETD4  HGNC:1258     -1
8375               21 36034541 36079389        SETD4  HGNC:1258     -1
8376               21 36034541 36079389        SETD4  HGNC:1258     -1
8377               21 36034541 36079389        SETD4  HGNC:1258     -1
8378               21 36034541 36079389        SETD4  HGNC:1258     -1
8379               21 36034541 36079389        SETD4  HGNC:1258     -1
8380               21 36034541 36079389        SETD4  HGNC:1258     -1
8381               21 36034541 36079389        SETD4  HGNC:1258     -1
8382               21 36034541 36079389        SETD4  HGNC:1258     -1
8383               21 36034541 36079389        SETD4  HGNC:1258     -1
8384               21 36034541 36079389        SETD4  HGNC:1258     -1
8385               21 36034541 36079389        SETD4  HGNC:1258     -1
8386               21 36034541 36079389        SETD4  HGNC:1258     -1
8387               21 36034541 36079389        SETD4  HGNC:1258     -1
8388               21 36034541 36079389        SETD4  HGNC:1258     -1
8389               21 36034541 36079389        SETD4  HGNC:1258     -1
8390               21 36034541 36079389        SETD4  HGNC:1258     -1
8391               21 36034541 36079389        SETD4  HGNC:1258     -1
8392               21 36034541 36079389        SETD4  HGNC:1258     -1
8393               21 36034541 36079389        SETD4  HGNC:1258     -1
8394               21 36034541 36079389        SETD4  HGNC:1258     -1
8395               21 36034541 36079389        SETD4  HGNC:1258     -1
8396               21 36034541 36079389        SETD4  HGNC:1258     -1
8397               21 36034541 36079389        SETD4  HGNC:1258     -1
8398               21 36034541 36079389        SETD4  HGNC:1258     -1
8399               21 36034541 36079389        SETD4  HGNC:1258     -1
8400               21 36034541 36079389        SETD4  HGNC:1258     -1
8401               21 36034541 36079389        SETD4  HGNC:1258     -1
8402               21 36034541 36079389        SETD4  HGNC:1258     -1
8403               21 36034541 36079389        SETD4  HGNC:1258     -1
8404               21 36034541 36079389        SETD4  HGNC:1258     -1
8405               21 36034541 36079389        SETD4  HGNC:1258     -1
8406               21 36034541 36079389        SETD4  HGNC:1258     -1
8407               21 36034541 36079389        SETD4  HGNC:1258     -1
8408               21 36034541 36079389        SETD4  HGNC:1258     -1
8409               21 36034541 36079389        SETD4  HGNC:1258     -1
8410               21 36034541 36079389        SETD4  HGNC:1258     -1
8411               21 36034541 36079389        SETD4  HGNC:1258     -1
8412               21 36034541 36079389        SETD4  HGNC:1258     -1
8413               21 36034541 36079389        SETD4  HGNC:1258     -1
8414               21 36034541 36079389        SETD4  HGNC:1258     -1
8415               21 36034541 36079389        SETD4  HGNC:1258     -1
8416               21 36034541 36079389        SETD4  HGNC:1258     -1
8417               21 36034541 36079389        SETD4  HGNC:1258     -1
8418               21 36034541 36079389        SETD4  HGNC:1258     -1
8419               21 36034541 36079389        SETD4  HGNC:1258     -1
8420               21 36034541 36079389        SETD4  HGNC:1258     -1
8421               21 36034541 36079389        SETD4  HGNC:1258     -1
8422               21 36034541 36079389        SETD4  HGNC:1258     -1
8423               21 36034541 36079389        SETD4  HGNC:1258     -1
8424               21 36034541 36079389        SETD4  HGNC:1258     -1
8425               21 36034541 36079389        SETD4  HGNC:1258     -1
8426               21 36034541 36079389        SETD4  HGNC:1258     -1
8427               21 36034541 36079389        SETD4  HGNC:1258     -1
8428               21 36034541 36079389        SETD4  HGNC:1258     -1
8429               21 36034541 36079389        SETD4  HGNC:1258     -1
8430               21 36034541 36079389        SETD4  HGNC:1258     -1
8431               21 36034541 36079389        SETD4  HGNC:1258     -1
8432               21 36034541 36079389        SETD4  HGNC:1258     -1
8433               21 36034541 36079389        SETD4  HGNC:1258     -1
8434               21 36034541 36079389        SETD4  HGNC:1258     -1
8435               21 36034541 36079389        SETD4  HGNC:1258     -1
8436               21 36034541 36079389        SETD4  HGNC:1258     -1
8437               21 36034541 36079389        SETD4  HGNC:1258     -1
8438               21 36034541 36079389        SETD4  HGNC:1258     -1
8439               21 36034541 36079389        SETD4  HGNC:1258     -1
8440               21 36034541 36079389        SETD4  HGNC:1258     -1
8441               21 36034541 36079389        SETD4  HGNC:1258     -1
8442               21 36034541 36079389        SETD4  HGNC:1258     -1
8443               21 36034541 36079389        SETD4  HGNC:1258     -1
8444               21 36034541 36079389        SETD4  HGNC:1258     -1
8445               21 36034541 36079389        SETD4  HGNC:1258     -1
8446               21 36034541 36079389        SETD4  HGNC:1258     -1
8447               21 36034541 36079389        SETD4  HGNC:1258     -1
8448               21 36034541 36079389        SETD4  HGNC:1258     -1
8449               21 36034541 36079389        SETD4  HGNC:1258     -1
8450               21 36034541 36079389        SETD4  HGNC:1258     -1
8451               21 36034541 36079389        SETD4  HGNC:1258     -1
8452               21 36034541 36079389        SETD4  HGNC:1258     -1
8453               21 36034541 36079389        SETD4  HGNC:1258     -1
8454               21 36034541 36079389        SETD4  HGNC:1258     -1
8455               21 36034541 36079389        SETD4  HGNC:1258     -1
8456               21 36034541 36079389        SETD4  HGNC:1258     -1
8457               21 36034541 36079389        SETD4  HGNC:1258     -1
8458               21 36034541 36079389        SETD4  HGNC:1258     -1
8459               21 36034541 36079389        SETD4  HGNC:1258     -1
8460               21 36034541 36079389        SETD4  HGNC:1258     -1
8461               21 36034541 36079389        SETD4  HGNC:1258     -1
8462               21 36034541 36079389        SETD4  HGNC:1258     -1
8463               21 36034541 36079389        SETD4  HGNC:1258     -1
8464               21 36034541 36079389        SETD4  HGNC:1258     -1
8465               21 36034541 36079389        SETD4  HGNC:1258     -1
8466               21 36034541 36079389        SETD4  HGNC:1258     -1
8467               21 36034541 36079389        SETD4  HGNC:1258     -1
8468               21 20597953 20598163                              1
8469               21 20430443 20430762      RPS3AP1 HGNC:10422     -1
8470               21 20424949 20426206      KRT18P2  HGNC:6435     -1
8471               21 19759359 19760128      C1QBPP1  HGNC:1244     -1
8472               21 36320189 36386148        MORC3 HGNC:23572      1
8473               21 36320189 36386148        MORC3 HGNC:23572      1
8474               21 36320189 36386148        MORC3 HGNC:23572      1
8475               21 36320189 36386148        MORC3 HGNC:23572      1
8476               21 36320189 36386148        MORC3 HGNC:23572      1
8477               21 36320189 36386148        MORC3 HGNC:23572      1
8478               21 36320189 36386148        MORC3 HGNC:23572      1
8479               21 36320189 36386148        MORC3 HGNC:23572      1
8480               21 36320189 36386148        MORC3 HGNC:23572      1
8481               21 36320189 36386148        MORC3 HGNC:23572      1
8482               21 36320189 36386148        MORC3 HGNC:23572      1
8483               21 36320189 36386148        MORC3 HGNC:23572      1
8484               21 36320189 36386148        MORC3 HGNC:23572      1
8485               21 36320189 36386148        MORC3 HGNC:23572      1
8486               21 36320189 36386148        MORC3 HGNC:23572      1
8487               21 36320189 36386148        MORC3 HGNC:23572      1
8488               21 36320189 36386148        MORC3 HGNC:23572      1
8489               21 36320189 36386148        MORC3 HGNC:23572      1
8490               21 36320189 36386148        MORC3 HGNC:23572      1
8491               21 36320189 36386148        MORC3 HGNC:23572      1
8492               21 36320189 36386148        MORC3 HGNC:23572      1
8493               21 36320189 36386148        MORC3 HGNC:23572      1
8494               21 36320189 36386148        MORC3 HGNC:23572      1
8495               21 36320189 36386148        MORC3 HGNC:23572      1
8496               21 36320189 36386148        MORC3 HGNC:23572      1
8497               21 36320189 36386148        MORC3 HGNC:23572      1
8498               21 36320189 36386148        MORC3 HGNC:23572      1
8499               21 36320189 36386148        MORC3 HGNC:23572      1
8500               21 36320189 36386148        MORC3 HGNC:23572      1
8501               21 36320189 36386148        MORC3 HGNC:23572      1
8502               21 36320189 36386148        MORC3 HGNC:23572      1
8503               21 36320189 36386148        MORC3 HGNC:23572      1
8504               21 36320189 36386148        MORC3 HGNC:23572      1
8505               21 36320189 36386148        MORC3 HGNC:23572      1
8506               21 36320189 36386148        MORC3 HGNC:23572      1
8507               21 36320189 36386148        MORC3 HGNC:23572      1
8508               21 36320189 36386148        MORC3 HGNC:23572      1
8509               21 36320189 36386148        MORC3 HGNC:23572      1
8510               21 36320189 36386148        MORC3 HGNC:23572      1
8511               21 36320189 36386148        MORC3 HGNC:23572      1
8512               21 36320189 36386148        MORC3 HGNC:23572      1
8513               21 36320189 36386148        MORC3 HGNC:23572      1
8514               21 36320189 36386148        MORC3 HGNC:23572      1
8515               21 36320189 36386148        MORC3 HGNC:23572      1
8516               21 36320189 36386148        MORC3 HGNC:23572      1
8517               21 36320189 36386148        MORC3 HGNC:23572      1
8518               21 36320189 36386148        MORC3 HGNC:23572      1
8519               21 36320189 36386148        MORC3 HGNC:23572      1
8520               21 36320189 36386148        MORC3 HGNC:23572      1
8521               21 36320189 36386148        MORC3 HGNC:23572      1
8522               21 36320189 36386148        MORC3 HGNC:23572      1
8523               21 36320189 36386148        MORC3 HGNC:23572      1
8524               21 36320189 36386148        MORC3 HGNC:23572      1
8525               21 36320189 36386148        MORC3 HGNC:23572      1
8526               21 36320189 36386148        MORC3 HGNC:23572      1
8527               21 36320189 36386148        MORC3 HGNC:23572      1
8528               21 36320189 36386148        MORC3 HGNC:23572      1
8529               21 36320189 36386148        MORC3 HGNC:23572      1
8530               21 36320189 36386148        MORC3 HGNC:23572      1
8531               21 36320189 36386148        MORC3 HGNC:23572      1
8532               21 36320189 36386148        MORC3 HGNC:23572      1
8533               21 36320189 36386148        MORC3 HGNC:23572      1
8534               21 36320189 36386148        MORC3 HGNC:23572      1
8535               21 36320189 36386148        MORC3 HGNC:23572      1
8536               21 36320189 36386148        MORC3 HGNC:23572      1
8537               21 36320189 36386148        MORC3 HGNC:23572      1
8538               21 36320189 36386148        MORC3 HGNC:23572      1
8539               21 36320189 36386148        MORC3 HGNC:23572      1
8540               21 36320189 36386148        MORC3 HGNC:23572      1
8541               21 36320189 36386148        MORC3 HGNC:23572      1
8542               21 36320189 36386148        MORC3 HGNC:23572      1
8543               21 36320189 36386148        MORC3 HGNC:23572      1
8544               21 36320189 36386148        MORC3 HGNC:23572      1
8545               21 36320189 36386148        MORC3 HGNC:23572      1
8546               21 36320189 36386148        MORC3 HGNC:23572      1
8547               21 36320189 36386148        MORC3 HGNC:23572      1
8548               21 36320189 36386148        MORC3 HGNC:23572      1
8549               21 36320189 36386148        MORC3 HGNC:23572      1
8550               21 36320189 36386148        MORC3 HGNC:23572      1
8551               21 36320189 36386148        MORC3 HGNC:23572      1
8552               21 36320189 36386148        MORC3 HGNC:23572      1
8553               21 36320189 36386148        MORC3 HGNC:23572      1
8554               21 36320189 36386148        MORC3 HGNC:23572      1
8555               21 36360630 36362040                              1
8556               21 36360630 36362040                              1
8557               21 36385378 36419015       CHAF1B  HGNC:1911      1
8558               21 36385378 36419015       CHAF1B  HGNC:1911      1
8559               21 36385378 36419015       CHAF1B  HGNC:1911      1
8560               21 36385378 36419015       CHAF1B  HGNC:1911      1
8561               21 36385378 36419015       CHAF1B  HGNC:1911      1
8562               21 36385378 36419015       CHAF1B  HGNC:1911      1
8563               21 36385378 36419015       CHAF1B  HGNC:1911      1
8564               21 36385378 36419015       CHAF1B  HGNC:1911      1
8565               21 36385378 36419015       CHAF1B  HGNC:1911      1
8566               21 36385378 36419015       CHAF1B  HGNC:1911      1
8567               21 36385378 36419015       CHAF1B  HGNC:1911      1
8568               21 36385378 36419015       CHAF1B  HGNC:1911      1
8569               21 36385378 36419015       CHAF1B  HGNC:1911      1
8570               21 36385378 36419015       CHAF1B  HGNC:1911      1
8571               21 36385378 36419015       CHAF1B  HGNC:1911      1
8572               21 36385378 36419015       CHAF1B  HGNC:1911      1
8573               21 36385378 36419015       CHAF1B  HGNC:1911      1
8574               21 36385378 36419015       CHAF1B  HGNC:1911      1
8575               21 36385378 36419015       CHAF1B  HGNC:1911      1
8576               21 36385378 36419015       CHAF1B  HGNC:1911      1
8577               21 36385378 36419015       CHAF1B  HGNC:1911      1
8578               21 36385378 36419015       CHAF1B  HGNC:1911      1
8579               21 36385378 36419015       CHAF1B  HGNC:1911      1
8580               21 36385378 36419015       CHAF1B  HGNC:1911      1
8581               21 35887195 35887807     PPP1R2P2  HGNC:9290      1
8582               21 36168970 36170180       RPL3P1 HGNC:10352     -1
8583               21 43789513 43805293         RRP1 HGNC:18785      1
8584               21 43789513 43805293         RRP1 HGNC:18785      1
8585               21 43789513 43805293         RRP1 HGNC:18785      1
8586               21 43789513 43805293         RRP1 HGNC:18785      1
8587               21 43789513 43805293         RRP1 HGNC:18785      1
8588               21 43789513 43805293         RRP1 HGNC:18785      1
8589               21 43789513 43805293         RRP1 HGNC:18785      1
8590               21 43789513 43805293         RRP1 HGNC:18785      1
8591               21 43789513 43805293         RRP1 HGNC:18785      1
8592               21 43789513 43805293         RRP1 HGNC:18785      1
8593               21 43789513 43805293         RRP1 HGNC:18785      1
8594               21 43789513 43805293         RRP1 HGNC:18785      1
8595               21 43789513 43805293         RRP1 HGNC:18785      1
8596               21 43789513 43805293         RRP1 HGNC:18785      1
8597               21 43789513 43805293         RRP1 HGNC:18785      1
8598               21 43789513 43805293         RRP1 HGNC:18785      1
8599               21 43789513 43805293         RRP1 HGNC:18785      1
8600               21 43789513 43805293         RRP1 HGNC:18785      1
8601               21 43789513 43805293         RRP1 HGNC:18785      1
8602               21 43789513 43805293         RRP1 HGNC:18785      1
8603               21 43789513 43805293         RRP1 HGNC:18785      1
8604               21 43789513 43805293         RRP1 HGNC:18785      1
8605               21 43789513 43805293         RRP1 HGNC:18785      1
8606               21 43789513 43805293         RRP1 HGNC:18785      1
8607               21 43789513 43805293         RRP1 HGNC:18785      1
8608               21 43789513 43805293         RRP1 HGNC:18785      1
8609               21 43789513 43805293         RRP1 HGNC:18785      1
8610               21 43789513 43805293         RRP1 HGNC:18785      1
8611               21 43789513 43805293         RRP1 HGNC:18785      1
8612               21 43789513 43805293         RRP1 HGNC:18785      1
8613               21 43789513 43805293         RRP1 HGNC:18785      1
8614               21 43789513 43805293         RRP1 HGNC:18785      1
8615               21 43789513 43805293         RRP1 HGNC:18785      1
8616               21 43789513 43805293         RRP1 HGNC:18785      1
8617               21 43789513 43805293         RRP1 HGNC:18785      1
8618               21 43789513 43805293         RRP1 HGNC:18785      1
8619               21 43789513 43805293         RRP1 HGNC:18785      1
8620               21 43789513 43805293         RRP1 HGNC:18785      1
8621               21 43789513 43805293         RRP1 HGNC:18785      1
8622               21 43789513 43805293         RRP1 HGNC:18785      1
8623               21 43789513 43805293         RRP1 HGNC:18785      1
8624               21 43789513 43805293         RRP1 HGNC:18785      1
8625               21 43789513 43805293         RRP1 HGNC:18785      1
8626               21 43789513 43805293         RRP1 HGNC:18785      1
8627               21 43789513 43805293         RRP1 HGNC:18785      1
8628               21 43789513 43805293         RRP1 HGNC:18785      1
8629               21 43789513 43805293         RRP1 HGNC:18785      1
8630               21 43789513 43805293         RRP1 HGNC:18785      1
8631               21 43789513 43805293         RRP1 HGNC:18785      1
8632               21 43789513 43805293         RRP1 HGNC:18785      1
8633               21 43789513 43805293         RRP1 HGNC:18785      1
8634               21 22134698 22136083                             -1
8635               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8636               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8637               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8638               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8639               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8640               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8641               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8642               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8643               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8644               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8645               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8646               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8647               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8648               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8649               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8650               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8651               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8652               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8653               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8654               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8655               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8656               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8657               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8658               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8659               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8660               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8661               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8662               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8663               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8664               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8665               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8666               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8667               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8668               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8669               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8670               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8671               21 18269116 18485879     TMPRSS15  HGNC:9490     -1
8672               21 17835016 17885608    CHODL-AS1  HGNC:1279     -1
8673               21 17835016 17885608    CHODL-AS1  HGNC:1279     -1
8674               21 17835016 17885608    CHODL-AS1  HGNC:1279     -1
8675               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8676               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8677               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8678               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8679               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8680               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8681               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8682               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8683               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8684               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8685               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8686               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8687               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8688               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8689               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8690               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8691               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8692               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8693               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8694               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8695               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8696               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8697               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8698               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8699               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8700               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8701               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8702               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8703               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8704               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8705               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8706               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8707               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8708               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8709               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8710               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8711               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8712               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8713               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8714               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8715               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8716               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8717               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8718               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8719               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8720               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8721               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8722               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8723               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8724               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8725               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8726               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8727               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8728               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8729               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8730               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8731               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8732               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8733               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8734               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8735               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8736               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8737               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8738               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8739               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8740               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8741               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8742               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8743               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8744               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8745               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8746               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8747               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8748               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8749               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8750               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8751               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8752               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8753               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8754               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8755               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8756               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8757               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8758               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8759               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8760               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8761               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8762               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8763               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8764               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8765               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8766               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8767               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8768               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8769               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8770               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8771               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8772               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8773               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8774               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8775               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8776               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8777               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8778               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8779               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8780               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8781               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8782               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8783               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8784               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8785               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8786               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8787               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8788               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8789               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8790               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8791               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8792               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8793               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8794               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8795               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8796               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8797               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8798               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8799               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8800               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8801               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8802               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8803               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8804               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8805               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8806               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8807               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8808               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8809               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8810               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8811               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8812               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8813               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8814               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8815               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8816               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8817               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8818               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8819               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8820               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8821               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8822               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8823               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8824               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8825               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8826               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8827               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8828               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8829               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8830               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8831               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8832               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8833               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8834               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8835               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8836               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8837               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8838               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8839               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8840               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8841               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8842               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8843               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8844               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8845               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8846               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8847               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8848               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8849               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8850               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8851               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8852               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8853               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8854               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8855               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8856               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8857               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8858               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8859               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8860               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8861               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8862               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8863               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8864               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8865               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8866               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8867               21 32628759 32728048        SYNJ1 HGNC:11503     -1
8868               21 39184176 39321559        BRWD1 HGNC:12760     -1
8869               21 39184176 39321559        BRWD1 HGNC:12760     -1
8870               21 39184176 39321559        BRWD1 HGNC:12760     -1
8871               21 39184176 39321559        BRWD1 HGNC:12760     -1
8872               21 39184176 39321559        BRWD1 HGNC:12760     -1
8873               21 39184176 39321559        BRWD1 HGNC:12760     -1
8874               21 39184176 39321559        BRWD1 HGNC:12760     -1
8875               21 39184176 39321559        BRWD1 HGNC:12760     -1
8876               21 39184176 39321559        BRWD1 HGNC:12760     -1
8877               21 39184176 39321559        BRWD1 HGNC:12760     -1
8878               21 39184176 39321559        BRWD1 HGNC:12760     -1
8879               21 39184176 39321559        BRWD1 HGNC:12760     -1
8880               21 39184176 39321559        BRWD1 HGNC:12760     -1
8881               21 39184176 39321559        BRWD1 HGNC:12760     -1
8882               21 39184176 39321559        BRWD1 HGNC:12760     -1
8883               21 39184176 39321559        BRWD1 HGNC:12760     -1
8884               21 39184176 39321559        BRWD1 HGNC:12760     -1
8885               21 39184176 39321559        BRWD1 HGNC:12760     -1
8886               21 39184176 39321559        BRWD1 HGNC:12760     -1
8887               21 39184176 39321559        BRWD1 HGNC:12760     -1
8888               21 39184176 39321559        BRWD1 HGNC:12760     -1
8889               21 39184176 39321559        BRWD1 HGNC:12760     -1
8890               21 39184176 39321559        BRWD1 HGNC:12760     -1
8891               21 39184176 39321559        BRWD1 HGNC:12760     -1
8892               21 39184176 39321559        BRWD1 HGNC:12760     -1
8893               21 39184176 39321559        BRWD1 HGNC:12760     -1
8894               21 39184176 39321559        BRWD1 HGNC:12760     -1
8895               21 39184176 39321559        BRWD1 HGNC:12760     -1
8896               21 39184176 39321559        BRWD1 HGNC:12760     -1
8897               21 39184176 39321559        BRWD1 HGNC:12760     -1
8898               21 39184176 39321559        BRWD1 HGNC:12760     -1
8899               21 39184176 39321559        BRWD1 HGNC:12760     -1
8900               21 39184176 39321559        BRWD1 HGNC:12760     -1
8901               21 39184176 39321559        BRWD1 HGNC:12760     -1
8902               21 39184176 39321559        BRWD1 HGNC:12760     -1
8903               21 39184176 39321559        BRWD1 HGNC:12760     -1
8904               21 39184176 39321559        BRWD1 HGNC:12760     -1
8905               21 39184176 39321559        BRWD1 HGNC:12760     -1
8906               21 39184176 39321559        BRWD1 HGNC:12760     -1
8907               21 39184176 39321559        BRWD1 HGNC:12760     -1
8908               21 39184176 39321559        BRWD1 HGNC:12760     -1
8909               21 39184176 39321559        BRWD1 HGNC:12760     -1
8910               21 39184176 39321559        BRWD1 HGNC:12760     -1
8911               21 39184176 39321559        BRWD1 HGNC:12760     -1
8912               21 39184176 39321559        BRWD1 HGNC:12760     -1
8913               21 39184176 39321559        BRWD1 HGNC:12760     -1
8914               21 39184176 39321559        BRWD1 HGNC:12760     -1
8915               21 39184176 39321559        BRWD1 HGNC:12760     -1
8916               21 39184176 39321559        BRWD1 HGNC:12760     -1
8917               21 39184176 39321559        BRWD1 HGNC:12760     -1
8918               21 39184176 39321559        BRWD1 HGNC:12760     -1
8919               21 39184176 39321559        BRWD1 HGNC:12760     -1
8920               21 39184176 39321559        BRWD1 HGNC:12760     -1
8921               21 39184176 39321559        BRWD1 HGNC:12760     -1
8922               21 39184176 39321559        BRWD1 HGNC:12760     -1
8923               21 39184176 39321559        BRWD1 HGNC:12760     -1
8924               21 39184176 39321559        BRWD1 HGNC:12760     -1
8925               21 39184176 39321559        BRWD1 HGNC:12760     -1
8926               21 39184176 39321559        BRWD1 HGNC:12760     -1
8927               21 39184176 39321559        BRWD1 HGNC:12760     -1
8928               21 39184176 39321559        BRWD1 HGNC:12760     -1
8929               21 39184176 39321559        BRWD1 HGNC:12760     -1
8930               21 39184176 39321559        BRWD1 HGNC:12760     -1
8931               21 39184176 39321559        BRWD1 HGNC:12760     -1
8932               21 39184176 39321559        BRWD1 HGNC:12760     -1
8933               21 39184176 39321559        BRWD1 HGNC:12760     -1
8934               21 39184176 39321559        BRWD1 HGNC:12760     -1
8935               21 39184176 39321559        BRWD1 HGNC:12760     -1
8936               21 39184176 39321559        BRWD1 HGNC:12760     -1
8937               21 39184176 39321559        BRWD1 HGNC:12760     -1
8938               21 39184176 39321559        BRWD1 HGNC:12760     -1
8939               21 39184176 39321559        BRWD1 HGNC:12760     -1
8940               21 39184176 39321559        BRWD1 HGNC:12760     -1
8941               21 39184176 39321559        BRWD1 HGNC:12760     -1
8942               21 39184176 39321559        BRWD1 HGNC:12760     -1
8943               21 39184176 39321559        BRWD1 HGNC:12760     -1
8944               21 39184176 39321559        BRWD1 HGNC:12760     -1
8945               21 39184176 39321559        BRWD1 HGNC:12760     -1
8946               21 39184176 39321559        BRWD1 HGNC:12760     -1
8947               21 39184176 39321559        BRWD1 HGNC:12760     -1
8948               21 39184176 39321559        BRWD1 HGNC:12760     -1
8949               21 39184176 39321559        BRWD1 HGNC:12760     -1
8950               21 39184176 39321559        BRWD1 HGNC:12760     -1
8951               21 39184176 39321559        BRWD1 HGNC:12760     -1
8952               21 39184176 39321559        BRWD1 HGNC:12760     -1
8953               21 39184176 39321559        BRWD1 HGNC:12760     -1
8954               21 39184176 39321559        BRWD1 HGNC:12760     -1
8955               21 39184176 39321559        BRWD1 HGNC:12760     -1
8956               21 39184176 39321559        BRWD1 HGNC:12760     -1
8957               21 39184176 39321559        BRWD1 HGNC:12760     -1
8958               21 39184176 39321559        BRWD1 HGNC:12760     -1
8959               21 39184176 39321559        BRWD1 HGNC:12760     -1
8960               21 39184176 39321559        BRWD1 HGNC:12760     -1
8961               21 39184176 39321559        BRWD1 HGNC:12760     -1
8962               21 39184176 39321559        BRWD1 HGNC:12760     -1
8963               21 39184176 39321559        BRWD1 HGNC:12760     -1
8964               21 39184176 39321559        BRWD1 HGNC:12760     -1
8965               21 39184176 39321559        BRWD1 HGNC:12760     -1
8966               21 39184176 39321559        BRWD1 HGNC:12760     -1
8967               21 39184176 39321559        BRWD1 HGNC:12760     -1
8968               21 39184176 39321559        BRWD1 HGNC:12760     -1
8969               21 39184176 39321559        BRWD1 HGNC:12760     -1
8970               21 39184176 39321559        BRWD1 HGNC:12760     -1
8971               21 39184176 39321559        BRWD1 HGNC:12760     -1
8972               21 39184176 39321559        BRWD1 HGNC:12760     -1
8973               21 39184176 39321559        BRWD1 HGNC:12760     -1
8974               21 39184176 39321559        BRWD1 HGNC:12760     -1
8975               21 39184176 39321559        BRWD1 HGNC:12760     -1
8976               21 39184176 39321559        BRWD1 HGNC:12760     -1
8977               21 39184176 39321559        BRWD1 HGNC:12760     -1
8978               21 39184176 39321559        BRWD1 HGNC:12760     -1
8979               21 39184176 39321559        BRWD1 HGNC:12760     -1
8980               21 39184176 39321559        BRWD1 HGNC:12760     -1
8981               21 39184176 39321559        BRWD1 HGNC:12760     -1
8982               21 39184176 39321559        BRWD1 HGNC:12760     -1
8983               21 39184176 39321559        BRWD1 HGNC:12760     -1
8984               21 39184176 39321559        BRWD1 HGNC:12760     -1
8985               21 39184176 39321559        BRWD1 HGNC:12760     -1
8986               21 39184176 39321559        BRWD1 HGNC:12760     -1
8987               21 39184176 39321559        BRWD1 HGNC:12760     -1
8988               21 39184176 39321559        BRWD1 HGNC:12760     -1
8989               21 39184176 39321559        BRWD1 HGNC:12760     -1
8990               21 39184176 39321559        BRWD1 HGNC:12760     -1
8991               21 39184176 39321559        BRWD1 HGNC:12760     -1
8992               21 39184176 39321559        BRWD1 HGNC:12760     -1
8993               21 39184176 39321559        BRWD1 HGNC:12760     -1
8994               21 39184176 39321559        BRWD1 HGNC:12760     -1
8995               21 39184176 39321559        BRWD1 HGNC:12760     -1
8996               21 39184176 39321559        BRWD1 HGNC:12760     -1
8997               21 39184176 39321559        BRWD1 HGNC:12760     -1
8998               21 39184176 39321559        BRWD1 HGNC:12760     -1
8999               21 39184176 39321559        BRWD1 HGNC:12760     -1
9000               21 39184176 39321559        BRWD1 HGNC:12760     -1
9001               21 39184176 39321559        BRWD1 HGNC:12760     -1
9002               21 39184176 39321559        BRWD1 HGNC:12760     -1
9003               21 39184176 39321559        BRWD1 HGNC:12760     -1
9004               21 39184176 39321559        BRWD1 HGNC:12760     -1
9005               21 39184176 39321559        BRWD1 HGNC:12760     -1
9006               21 39184176 39321559        BRWD1 HGNC:12760     -1
9007               21 39184176 39321559        BRWD1 HGNC:12760     -1
9008               21 39184176 39321559        BRWD1 HGNC:12760     -1
9009               21 39184176 39321559        BRWD1 HGNC:12760     -1
9010               21 39184176 39321559        BRWD1 HGNC:12760     -1
9011               21 39184176 39321559        BRWD1 HGNC:12760     -1
9012               21 39184176 39321559        BRWD1 HGNC:12760     -1
9013               21 39184176 39321559        BRWD1 HGNC:12760     -1
9014               21 39184176 39321559        BRWD1 HGNC:12760     -1
9015               21 39184176 39321559        BRWD1 HGNC:12760     -1
9016               21 39184176 39321559        BRWD1 HGNC:12760     -1
9017               21 39184176 39321559        BRWD1 HGNC:12760     -1
9018               21 39184176 39321559        BRWD1 HGNC:12760     -1
9019               21 39184176 39321559        BRWD1 HGNC:12760     -1
9020               21 39184176 39321559        BRWD1 HGNC:12760     -1
9021               21 39184176 39321559        BRWD1 HGNC:12760     -1
9022               21 39184176 39321559        BRWD1 HGNC:12760     -1
9023               21 39184176 39321559        BRWD1 HGNC:12760     -1
9024               21 39184176 39321559        BRWD1 HGNC:12760     -1
9025               21 39184176 39321559        BRWD1 HGNC:12760     -1
9026               21 39184176 39321559        BRWD1 HGNC:12760     -1
9027               21 39184176 39321559        BRWD1 HGNC:12760     -1
9028               21 39184176 39321559        BRWD1 HGNC:12760     -1
9029               21 39184176 39321559        BRWD1 HGNC:12760     -1
9030               21 39184176 39321559        BRWD1 HGNC:12760     -1
9031               21 39184176 39321559        BRWD1 HGNC:12760     -1
9032               21 39184176 39321559        BRWD1 HGNC:12760     -1
9033               21 39184176 39321559        BRWD1 HGNC:12760     -1
9034               21 39184176 39321559        BRWD1 HGNC:12760     -1
9035               21 39184176 39321559        BRWD1 HGNC:12760     -1
9036               21 39184176 39321559        BRWD1 HGNC:12760     -1
9037               21 39184176 39321559        BRWD1 HGNC:12760     -1
9038               21 39184176 39321559        BRWD1 HGNC:12760     -1
9039               21 39184176 39321559        BRWD1 HGNC:12760     -1
9040               21 39184176 39321559        BRWD1 HGNC:12760     -1
9041               21 39184176 39321559        BRWD1 HGNC:12760     -1
9042               21 39184176 39321559        BRWD1 HGNC:12760     -1
9043               21 39184176 39321559        BRWD1 HGNC:12760     -1
9044               21 39184176 39321559        BRWD1 HGNC:12760     -1
9045               21 39184176 39321559        BRWD1 HGNC:12760     -1
9046               21 39184176 39321559        BRWD1 HGNC:12760     -1
9047               21 39184176 39321559        BRWD1 HGNC:12760     -1
9048               21 39184176 39321559        BRWD1 HGNC:12760     -1
9049               21 39184176 39321559        BRWD1 HGNC:12760     -1
9050               21 39184176 39321559        BRWD1 HGNC:12760     -1
9051               21 39184176 39321559        BRWD1 HGNC:12760     -1
9052               21 39184176 39321559        BRWD1 HGNC:12760     -1
9053               21 39184176 39321559        BRWD1 HGNC:12760     -1
9054               21 39184176 39321559        BRWD1 HGNC:12760     -1
9055               21 39184176 39321559        BRWD1 HGNC:12760     -1
9056               21 39184176 39321559        BRWD1 HGNC:12760     -1
9057               21 39184176 39321559        BRWD1 HGNC:12760     -1
9058               21 39184176 39321559        BRWD1 HGNC:12760     -1
9059               21 39184176 39321559        BRWD1 HGNC:12760     -1
9060               21 39184176 39321559        BRWD1 HGNC:12760     -1
9061               21 39184176 39321559        BRWD1 HGNC:12760     -1
9062               21 39184176 39321559        BRWD1 HGNC:12760     -1
9063               21 39184176 39321559        BRWD1 HGNC:12760     -1
9064               21 39184176 39321559        BRWD1 HGNC:12760     -1
9065               21 39184176 39321559        BRWD1 HGNC:12760     -1
9066               21 39184176 39321559        BRWD1 HGNC:12760     -1
9067               21 39184176 39321559        BRWD1 HGNC:12760     -1
9068               21 39184176 39321559        BRWD1 HGNC:12760     -1
9069               21 39184176 39321559        BRWD1 HGNC:12760     -1
9070               21 39184176 39321559        BRWD1 HGNC:12760     -1
9071               21 39184176 39321559        BRWD1 HGNC:12760     -1
9072               21 39184176 39321559        BRWD1 HGNC:12760     -1
9073               21 39184176 39321559        BRWD1 HGNC:12760     -1
9074               21 39184176 39321559        BRWD1 HGNC:12760     -1
9075               21 39184176 39321559        BRWD1 HGNC:12760     -1
9076               21 39184176 39321559        BRWD1 HGNC:12760     -1
9077               21 39184176 39321559        BRWD1 HGNC:12760     -1
9078               21 39184176 39321559        BRWD1 HGNC:12760     -1
9079               21 39184176 39321559        BRWD1 HGNC:12760     -1
9080               21 39184176 39321559        BRWD1 HGNC:12760     -1
9081               21 39184176 39321559        BRWD1 HGNC:12760     -1
9082               21 39184176 39321559        BRWD1 HGNC:12760     -1
9083               21 39184176 39321559        BRWD1 HGNC:12760     -1
9084               21 39184176 39321559        BRWD1 HGNC:12760     -1
9085               21 39184176 39321559        BRWD1 HGNC:12760     -1
9086               21 39184176 39321559        BRWD1 HGNC:12760     -1
9087               21 39184176 39321559        BRWD1 HGNC:12760     -1
9088               21 39184176 39321559        BRWD1 HGNC:12760     -1
9089               21 39184176 39321559        BRWD1 HGNC:12760     -1
9090               21 39184176 39321559        BRWD1 HGNC:12760     -1
9091               21 39184176 39321559        BRWD1 HGNC:12760     -1
9092               21 39184176 39321559        BRWD1 HGNC:12760     -1
9093               21 39184176 39321559        BRWD1 HGNC:12760     -1
9094               21 39184176 39321559        BRWD1 HGNC:12760     -1
9095               21 39184176 39321559        BRWD1 HGNC:12760     -1
9096               21 39184176 39321559        BRWD1 HGNC:12760     -1
9097               21 39184176 39321559        BRWD1 HGNC:12760     -1
9098               21 39184176 39321559        BRWD1 HGNC:12760     -1
9099               21 39184176 39321559        BRWD1 HGNC:12760     -1
9100               21 39184176 39321559        BRWD1 HGNC:12760     -1
9101               21 39184176 39321559        BRWD1 HGNC:12760     -1
9102               21 39184176 39321559        BRWD1 HGNC:12760     -1
9103               21 39184176 39321559        BRWD1 HGNC:12760     -1
9104               21 39184176 39321559        BRWD1 HGNC:12760     -1
9105               21 39184176 39321559        BRWD1 HGNC:12760     -1
9106               21 39184176 39321559        BRWD1 HGNC:12760     -1
9107               21 39184176 39321559        BRWD1 HGNC:12760     -1
9108               21 39184176 39321559        BRWD1 HGNC:12760     -1
9109               21 39184176 39321559        BRWD1 HGNC:12760     -1
9110               21 39184176 39321559        BRWD1 HGNC:12760     -1
9111               21 39184176 39321559        BRWD1 HGNC:12760     -1
9112               21 39184176 39321559        BRWD1 HGNC:12760     -1
9113               21 39184176 39321559        BRWD1 HGNC:12760     -1
9114               21 39184176 39321559        BRWD1 HGNC:12760     -1
9115               21 39184176 39321559        BRWD1 HGNC:12760     -1
9116               21 39184176 39321559        BRWD1 HGNC:12760     -1
9117               21 39184176 39321559        BRWD1 HGNC:12760     -1
9118               21 39184176 39321559        BRWD1 HGNC:12760     -1
9119               21 39184176 39321559        BRWD1 HGNC:12760     -1
9120               21 39184176 39321559        BRWD1 HGNC:12760     -1
9121               21 39184176 39321559        BRWD1 HGNC:12760     -1
9122               21 39184176 39321559        BRWD1 HGNC:12760     -1
9123               21 39184176 39321559        BRWD1 HGNC:12760     -1
9124               21 39184176 39321559        BRWD1 HGNC:12760     -1
9125               21 39184176 39321559        BRWD1 HGNC:12760     -1
9126               21 39184176 39321559        BRWD1 HGNC:12760     -1
9127               21 39184176 39321559        BRWD1 HGNC:12760     -1
9128               21 39313935 39314962    BRWD1-AS2 HGNC:16423      1
9129               21 38863676 38956467                             -1
9130               21 38863676 38956467                             -1
9131               21 38863676 38956467                             -1
9132               21 38863676 38956467                             -1
9133               21 38863676 38956467                             -1
9134               21 38863676 38956467                             -1
9135               21 38863676 38956467                             -1
9136               21 38863676 38956467                             -1
9137               21 38863676 38956467                             -1
9138               21 38863676 38956467                             -1
9139               21 38863676 38956467                             -1
9140               21 38863676 38956467                             -1
9141               21 38863676 38956467                             -1
9142               21 38863676 38956467                             -1
9143               21 38863676 38956467                             -1
9144               21 38863676 38956467                             -1
9145               21 38863676 38956467                             -1
9146               21 38863676 38956467                             -1
9147               21 38863676 38956467                             -1
9148               21 38863676 38956467                             -1
9149               21 38863676 38956467                             -1
9150               21 38863676 38956467                             -1
9151               21 38863676 38956467                             -1
9152               21 38863676 38956467                             -1
9153               21 38863676 38956467                             -1
9154               21 38863676 38956467                             -1
9155               21 38863676 38956467                             -1
9156               21 38846247 38848644                              1
9157               21 38846247 38848644                              1
9158               21 14591930 14658821                             -1
9159               21 14591930 14658821                             -1
9160               21 14591930 14658821                             -1
9161               21 14591930 14658821                             -1
9162               21 14591930 14658821                             -1
9163               21 14591930 14658821                             -1
9164               21 14591930 14658821                             -1
9165               21 14591930 14658821                             -1
9166               21 14591930 14658821                             -1
9167               21 14591930 14658821                             -1
9168               21 14591930 14658821                             -1
9169               21 14591930 14658821                             -1
9170               21 14591930 14658821                             -1
9171               21 14591930 14658821                             -1
9172               21 14591930 14658821                             -1
9173               21 14591930 14658821                             -1
9174               21 14591930 14658821                             -1
9175               21 14591930 14658821                             -1
9176               21 14591930 14658821                             -1
9177               21 33481580 33482195       RPS5P3 HGNC:10427     -1
9178               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9179               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9180               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9181               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9182               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9183               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9184               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9185               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9186               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9187               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9188               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9189               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9190               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9191               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9192               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9193               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9194               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9195               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9196               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9197               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9198               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9199               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9200               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9201               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9202               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9203               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9204               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9205               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9206               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9207               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9208               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9209               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9210               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9211               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9212               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9213               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9214               21 44246339 44262216       DNMT3L  HGNC:2980     -1
9215               21 32790673 32791504                             -1
9216               21  5155499  5165472                             -1
9217               21  5155499  5165472                             -1
9218               21  5155499  5165472                             -1
9219               21  5155499  5165472                             -1
9220               21  5155499  5165472                             -1
9221               21  5155499  5165472                             -1
9222               21 15493932 15496124                             -1
9223               21 15493932 15496124                             -1
9224               21 15490530 15490767      CYCSP42  HGNC:2581     -1
9225               21 45405137 45513720      COL18A1  HGNC:2195      1
9226               21 45405137 45513720      COL18A1  HGNC:2195      1
9227               21 45405137 45513720      COL18A1  HGNC:2195      1
9228               21 45405137 45513720      COL18A1  HGNC:2195      1
9229               21 45405137 45513720      COL18A1  HGNC:2195      1
9230               21 45405137 45513720      COL18A1  HGNC:2195      1
9231               21 45405137 45513720      COL18A1  HGNC:2195      1
9232               21 45405137 45513720      COL18A1  HGNC:2195      1
9233               21 45405137 45513720      COL18A1  HGNC:2195      1
9234               21 45405137 45513720      COL18A1  HGNC:2195      1
9235               21 45405137 45513720      COL18A1  HGNC:2195      1
9236               21 45405137 45513720      COL18A1  HGNC:2195      1
9237               21 45405137 45513720      COL18A1  HGNC:2195      1
9238               21 45405137 45513720      COL18A1  HGNC:2195      1
9239               21 45405137 45513720      COL18A1  HGNC:2195      1
9240               21 45405137 45513720      COL18A1  HGNC:2195      1
9241               21 45405137 45513720      COL18A1  HGNC:2195      1
9242               21 45405137 45513720      COL18A1  HGNC:2195      1
9243               21 45405137 45513720      COL18A1  HGNC:2195      1
9244               21 45405137 45513720      COL18A1  HGNC:2195      1
9245               21 45405137 45513720      COL18A1  HGNC:2195      1
9246               21 45405137 45513720      COL18A1  HGNC:2195      1
9247               21 45405137 45513720      COL18A1  HGNC:2195      1
9248               21 45405137 45513720      COL18A1  HGNC:2195      1
9249               21 45405137 45513720      COL18A1  HGNC:2195      1
9250               21 45405137 45513720      COL18A1  HGNC:2195      1
9251               21 45405137 45513720      COL18A1  HGNC:2195      1
9252               21 45405137 45513720      COL18A1  HGNC:2195      1
9253               21 45405137 45513720      COL18A1  HGNC:2195      1
9254               21 45405137 45513720      COL18A1  HGNC:2195      1
9255               21 45405137 45513720      COL18A1  HGNC:2195      1
9256               21 45405137 45513720      COL18A1  HGNC:2195      1
9257               21 45405137 45513720      COL18A1  HGNC:2195      1
9258               21 45405137 45513720      COL18A1  HGNC:2195      1
9259               21 45405137 45513720      COL18A1  HGNC:2195      1
9260               21 45405137 45513720      COL18A1  HGNC:2195      1
9261               21 45405137 45513720      COL18A1  HGNC:2195      1
9262               21 45405137 45513720      COL18A1  HGNC:2195      1
9263               21 45405137 45513720      COL18A1  HGNC:2195      1
9264               21 45405137 45513720      COL18A1  HGNC:2195      1
9265               21 45405137 45513720      COL18A1  HGNC:2195      1
9266               21 45405137 45513720      COL18A1  HGNC:2195      1
9267               21 45405137 45513720      COL18A1  HGNC:2195      1
9268               21 45405137 45513720      COL18A1  HGNC:2195      1
9269               21 45405137 45513720      COL18A1  HGNC:2195      1
9270               21 45405137 45513720      COL18A1  HGNC:2195      1
9271               21 45405137 45513720      COL18A1  HGNC:2195      1
9272               21 45405137 45513720      COL18A1  HGNC:2195      1
9273               21 45405137 45513720      COL18A1  HGNC:2195      1
9274               21 45405137 45513720      COL18A1  HGNC:2195      1
9275               21 45405137 45513720      COL18A1  HGNC:2195      1
9276               21 45405137 45513720      COL18A1  HGNC:2195      1
9277               21 45405137 45513720      COL18A1  HGNC:2195      1
9278               21 45405137 45513720      COL18A1  HGNC:2195      1
9279               21 45405137 45513720      COL18A1  HGNC:2195      1
9280               21 45405137 45513720      COL18A1  HGNC:2195      1
9281               21 45405137 45513720      COL18A1  HGNC:2195      1
9282               21 45405137 45513720      COL18A1  HGNC:2195      1
9283               21 45405137 45513720      COL18A1  HGNC:2195      1
9284               21 45405137 45513720      COL18A1  HGNC:2195      1
9285               21 45405137 45513720      COL18A1  HGNC:2195      1
9286               21 45405137 45513720      COL18A1  HGNC:2195      1
9287               21 45405137 45513720      COL18A1  HGNC:2195      1
9288               21 45405137 45513720      COL18A1  HGNC:2195      1
9289               21 45405137 45513720      COL18A1  HGNC:2195      1
9290               21 45405137 45513720      COL18A1  HGNC:2195      1
9291               21 45405137 45513720      COL18A1  HGNC:2195      1
9292               21 45405137 45513720      COL18A1  HGNC:2195      1
9293               21 45405137 45513720      COL18A1  HGNC:2195      1
9294               21 45405137 45513720      COL18A1  HGNC:2195      1
9295               21 45405137 45513720      COL18A1  HGNC:2195      1
9296               21 45405137 45513720      COL18A1  HGNC:2195      1
9297               21 45405137 45513720      COL18A1  HGNC:2195      1
9298               21 45405137 45513720      COL18A1  HGNC:2195      1
9299               21 45405137 45513720      COL18A1  HGNC:2195      1
9300               21 45405137 45513720      COL18A1  HGNC:2195      1
9301               21 45405137 45513720      COL18A1  HGNC:2195      1
9302               21 45405137 45513720      COL18A1  HGNC:2195      1
9303               21 45405137 45513720      COL18A1  HGNC:2195      1
9304               21 45405137 45513720      COL18A1  HGNC:2195      1
9305               21 45405137 45513720      COL18A1  HGNC:2195      1
9306               21 45405137 45513720      COL18A1  HGNC:2195      1
9307               21 45405137 45513720      COL18A1  HGNC:2195      1
9308               21 45405137 45513720      COL18A1  HGNC:2195      1
9309               21 45405137 45513720      COL18A1  HGNC:2195      1
9310               21 45405137 45513720      COL18A1  HGNC:2195      1
9311               21 45405137 45513720      COL18A1  HGNC:2195      1
9312               21 45405137 45513720      COL18A1  HGNC:2195      1
9313               21 45405137 45513720      COL18A1  HGNC:2195      1
9314               21 45405137 45513720      COL18A1  HGNC:2195      1
9315               21 45405137 45513720      COL18A1  HGNC:2195      1
9316               21 45405137 45513720      COL18A1  HGNC:2195      1
9317               21 45405137 45513720      COL18A1  HGNC:2195      1
9318               21 45405137 45513720      COL18A1  HGNC:2195      1
9319               21 45405137 45513720      COL18A1  HGNC:2195      1
9320               21 45405137 45513720      COL18A1  HGNC:2195      1
9321               21 45405137 45513720      COL18A1  HGNC:2195      1
9322               21 45405137 45513720      COL18A1  HGNC:2195      1
9323               21 45405137 45513720      COL18A1  HGNC:2195      1
9324               21 45405137 45513720      COL18A1  HGNC:2195      1
9325               21 45405137 45513720      COL18A1  HGNC:2195      1
9326               21 45405137 45513720      COL18A1  HGNC:2195      1
9327               21 45405137 45513720      COL18A1  HGNC:2195      1
9328               21 45405137 45513720      COL18A1  HGNC:2195      1
9329               21 45405137 45513720      COL18A1  HGNC:2195      1
9330               21 45405137 45513720      COL18A1  HGNC:2195      1
9331               21 45405137 45513720      COL18A1  HGNC:2195      1
9332               21 45405137 45513720      COL18A1  HGNC:2195      1
9333               21 45405137 45513720      COL18A1  HGNC:2195      1
9334               21 45405137 45513720      COL18A1  HGNC:2195      1
9335               21 45405137 45513720      COL18A1  HGNC:2195      1
9336               21 45405137 45513720      COL18A1  HGNC:2195      1
9337               21 45405137 45513720      COL18A1  HGNC:2195      1
9338               21 45405137 45513720      COL18A1  HGNC:2195      1
9339               21 45405137 45513720      COL18A1  HGNC:2195      1
9340               21 45405137 45513720      COL18A1  HGNC:2195      1
9341               21 45405137 45513720      COL18A1  HGNC:2195      1
9342               21 45405137 45513720      COL18A1  HGNC:2195      1
9343               21 45405137 45513720      COL18A1  HGNC:2195      1
9344               21 45405137 45513720      COL18A1  HGNC:2195      1
9345               21 45405137 45513720      COL18A1  HGNC:2195      1
9346               21 45405137 45513720      COL18A1  HGNC:2195      1
9347               21 45405137 45513720      COL18A1  HGNC:2195      1
9348               21 45405137 45513720      COL18A1  HGNC:2195      1
9349               21 45405137 45513720      COL18A1  HGNC:2195      1
9350               21 45405137 45513720      COL18A1  HGNC:2195      1
9351               21 45405137 45513720      COL18A1  HGNC:2195      1
9352               21 45405137 45513720      COL18A1  HGNC:2195      1
9353               21 45405137 45513720      COL18A1  HGNC:2195      1
9354               21 45405137 45513720      COL18A1  HGNC:2195      1
9355               21 45405137 45513720      COL18A1  HGNC:2195      1
9356               21 45405137 45513720      COL18A1  HGNC:2195      1
9357               21 45405137 45513720      COL18A1  HGNC:2195      1
9358               21 45405137 45513720      COL18A1  HGNC:2195      1
9359               21 45405137 45513720      COL18A1  HGNC:2195      1
9360               21 45405137 45513720      COL18A1  HGNC:2195      1
9361               21 45405137 45513720      COL18A1  HGNC:2195      1
9362               21 45405137 45513720      COL18A1  HGNC:2195      1
9363               21 45405137 45513720      COL18A1  HGNC:2195      1
9364               21 45405137 45513720      COL18A1  HGNC:2195      1
9365               21 45405137 45513720      COL18A1  HGNC:2195      1
9366               21 45405137 45513720      COL18A1  HGNC:2195      1
9367               21 45405137 45513720      COL18A1  HGNC:2195      1
9368               21 45405137 45513720      COL18A1  HGNC:2195      1
9369               21 45405137 45513720      COL18A1  HGNC:2195      1
9370               21 45405137 45513720      COL18A1  HGNC:2195      1
9371               21 45405137 45513720      COL18A1  HGNC:2195      1
9372               21 45405137 45513720      COL18A1  HGNC:2195      1
9373               21 45405137 45513720      COL18A1  HGNC:2195      1
9374               21 45405137 45513720      COL18A1  HGNC:2195      1
9375               21 45405137 45513720      COL18A1  HGNC:2195      1
9376               21 45405137 45513720      COL18A1  HGNC:2195      1
9377               21 45405137 45513720      COL18A1  HGNC:2195      1
9378               21 45405137 45513720      COL18A1  HGNC:2195      1
9379               21 45405137 45513720      COL18A1  HGNC:2195      1
9380               21 45405137 45513720      COL18A1  HGNC:2195      1
9381               21 45405137 45513720      COL18A1  HGNC:2195      1
9382               21 45405137 45513720      COL18A1  HGNC:2195      1
9383               21 45405137 45513720      COL18A1  HGNC:2195      1
9384               21 45405137 45513720      COL18A1  HGNC:2195      1
9385               21 45405137 45513720      COL18A1  HGNC:2195      1
9386               21 45405137 45513720      COL18A1  HGNC:2195      1
9387               21 45405137 45513720      COL18A1  HGNC:2195      1
9388               21 45405137 45513720      COL18A1  HGNC:2195      1
9389               21 45405137 45513720      COL18A1  HGNC:2195      1
9390               21 45405137 45513720      COL18A1  HGNC:2195      1
9391               21 38974429 38977774    LINC01700 HGNC:52488     -1
9392               21 38974429 38977774    LINC01700 HGNC:52488     -1
9393               21 38974429 38977774    LINC01700 HGNC:52488     -1
9394               21 32277863 32280988   MIS18A-AS1 HGNC:40106      1
9395               21 32277863 32280988   MIS18A-AS1 HGNC:40106      1
9396               21 32277863 32280988   MIS18A-AS1 HGNC:40106      1
9397               21 43551229 43551600      RPL31P1 HGNC:10335      1
9398               21 13546033 13558461    LINC01674 HGNC:52462      1
9399               21 13546033 13558461    LINC01674 HGNC:52462      1
9400               21 13546033 13558461    LINC01674 HGNC:52462      1
9401               21 13546033 13558461    LINC01674 HGNC:52462      1
9402               21 13476371 13477263       VN1R8P  HGNC:8497      1
9403               21 13349265 13350648       FGF7P2 HGNC:17193      1
9404               21 13349265 13350648       FGF7P2 HGNC:17193      1
9405               21 45263928 45287898       POFUT2 HGNC:14683     -1
9406               21 45263928 45287898       POFUT2 HGNC:14683     -1
9407               21 45263928 45287898       POFUT2 HGNC:14683     -1
9408               21 45263928 45287898       POFUT2 HGNC:14683     -1
9409               21 45263928 45287898       POFUT2 HGNC:14683     -1
9410               21 45263928 45287898       POFUT2 HGNC:14683     -1
9411               21 45263928 45287898       POFUT2 HGNC:14683     -1
9412               21 45263928 45287898       POFUT2 HGNC:14683     -1
9413               21 45263928 45287898       POFUT2 HGNC:14683     -1
9414               21 45263928 45287898       POFUT2 HGNC:14683     -1
9415               21 45263928 45287898       POFUT2 HGNC:14683     -1
9416               21 45263928 45287898       POFUT2 HGNC:14683     -1
9417               21 45263928 45287898       POFUT2 HGNC:14683     -1
9418               21 45263928 45287898       POFUT2 HGNC:14683     -1
9419               21 45263928 45287898       POFUT2 HGNC:14683     -1
9420               21 45263928 45287898       POFUT2 HGNC:14683     -1
9421               21 45263928 45287898       POFUT2 HGNC:14683     -1
9422               21 45263928 45287898       POFUT2 HGNC:14683     -1
9423               21 45263928 45287898       POFUT2 HGNC:14683     -1
9424               21 45263928 45287898       POFUT2 HGNC:14683     -1
9425               21 45263928 45287898       POFUT2 HGNC:14683     -1
9426               21 45263928 45287898       POFUT2 HGNC:14683     -1
9427               21 45263928 45287898       POFUT2 HGNC:14683     -1
9428               21 45263928 45287898       POFUT2 HGNC:14683     -1
9429               21 45263928 45287898       POFUT2 HGNC:14683     -1
9430               21 45263928 45287898       POFUT2 HGNC:14683     -1
9431               21 45263928 45287898       POFUT2 HGNC:14683     -1
9432               21 45263928 45287898       POFUT2 HGNC:14683     -1
9433               21 45263928 45287898       POFUT2 HGNC:14683     -1
9434               21 45263928 45287898       POFUT2 HGNC:14683     -1
9435               21 45263928 45287898       POFUT2 HGNC:14683     -1
9436               21 45263928 45287898       POFUT2 HGNC:14683     -1
9437               21 45263928 45287898       POFUT2 HGNC:14683     -1
9438               21 45263928 45287898       POFUT2 HGNC:14683     -1
9439               21 45263928 45287898       POFUT2 HGNC:14683     -1
9440               21 45263928 45287898       POFUT2 HGNC:14683     -1
9441               21 45263928 45287898       POFUT2 HGNC:14683     -1
9442               21 45263928 45287898       POFUT2 HGNC:14683     -1
9443               21 45263928 45287898       POFUT2 HGNC:14683     -1
9444               21 45263928 45287898       POFUT2 HGNC:14683     -1
9445               21 45263928 45287898       POFUT2 HGNC:14683     -1
9446               21 45263928 45287898       POFUT2 HGNC:14683     -1
9447               21 45263928 45287898       POFUT2 HGNC:14683     -1
9448               21 45263928 45287898       POFUT2 HGNC:14683     -1
9449               21 45263928 45287898       POFUT2 HGNC:14683     -1
9450               21 45263928 45287898       POFUT2 HGNC:14683     -1
9451               21 45263928 45287898       POFUT2 HGNC:14683     -1
9452               21 45263928 45287898       POFUT2 HGNC:14683     -1
9453               21 45263928 45287898       POFUT2 HGNC:14683     -1
9454               21 45263928 45287898       POFUT2 HGNC:14683     -1
9455               21 45263928 45287898       POFUT2 HGNC:14683     -1
9456               21 45263928 45287898       POFUT2 HGNC:14683     -1
9457               21 45263928 45287898       POFUT2 HGNC:14683     -1
9458               21 45263928 45287898       POFUT2 HGNC:14683     -1
9459               21 45263928 45287898       POFUT2 HGNC:14683     -1
9460               21 45263928 45287898       POFUT2 HGNC:14683     -1
9461               21 45263928 45287898       POFUT2 HGNC:14683     -1
9462               21 45263928 45287898       POFUT2 HGNC:14683     -1
9463               21 45263928 45287898       POFUT2 HGNC:14683     -1
9464               21 45263928 45287898       POFUT2 HGNC:14683     -1
9465               21 45263928 45287898       POFUT2 HGNC:14683     -1
9466               21 45263928 45287898       POFUT2 HGNC:14683     -1
9467               21 45263928 45287898       POFUT2 HGNC:14683     -1
9468               21 45263928 45287898       POFUT2 HGNC:14683     -1
9469               21 45263928 45287898       POFUT2 HGNC:14683     -1
9470               21 45263928 45287898       POFUT2 HGNC:14683     -1
9471               21 45263928 45287898       POFUT2 HGNC:14683     -1
9472               21 45263928 45287898       POFUT2 HGNC:14683     -1
9473               21 45263928 45287898       POFUT2 HGNC:14683     -1
9474               21 45263928 45287898       POFUT2 HGNC:14683     -1
9475               21 45263928 45287898       POFUT2 HGNC:14683     -1
9476               21 45263928 45287898       POFUT2 HGNC:14683     -1
9477               21 45263928 45287898       POFUT2 HGNC:14683     -1
9478               21 45263928 45287898       POFUT2 HGNC:14683     -1
9479               21 45263928 45287898       POFUT2 HGNC:14683     -1
9480               21 45263928 45287898       POFUT2 HGNC:14683     -1
9481               21 45263928 45287898       POFUT2 HGNC:14683     -1
9482               21 45263928 45287898       POFUT2 HGNC:14683     -1
9483               21 45263928 45287898       POFUT2 HGNC:14683     -1
9484               21 45263928 45287898       POFUT2 HGNC:14683     -1
9485               21 45263928 45287898       POFUT2 HGNC:14683     -1
9486               21 45263928 45287898       POFUT2 HGNC:14683     -1
9487               21 45263928 45287898       POFUT2 HGNC:14683     -1
9488               21 45263928 45287898       POFUT2 HGNC:14683     -1
9489               21 10649400 10649835  IGHV1OR21-1 HGNC:38040     -1
9490               21 10649400 10649835  IGHV1OR21-1 HGNC:38040     -1
9491               21 45073853 45226560       ADARB1   HGNC:226      1
9492               21 45073853 45226560       ADARB1   HGNC:226      1
9493               21 45073853 45226560       ADARB1   HGNC:226      1
9494               21 45073853 45226560       ADARB1   HGNC:226      1
9495               21 45073853 45226560       ADARB1   HGNC:226      1
9496               21 45073853 45226560       ADARB1   HGNC:226      1
9497               21 45073853 45226560       ADARB1   HGNC:226      1
9498               21 45073853 45226560       ADARB1   HGNC:226      1
9499               21 45073853 45226560       ADARB1   HGNC:226      1
9500               21 45073853 45226560       ADARB1   HGNC:226      1
9501               21 45073853 45226560       ADARB1   HGNC:226      1
9502               21 45073853 45226560       ADARB1   HGNC:226      1
9503               21 45073853 45226560       ADARB1   HGNC:226      1
9504               21 45073853 45226560       ADARB1   HGNC:226      1
9505               21 45073853 45226560       ADARB1   HGNC:226      1
9506               21 45073853 45226560       ADARB1   HGNC:226      1
9507               21 45073853 45226560       ADARB1   HGNC:226      1
9508               21 45073853 45226560       ADARB1   HGNC:226      1
9509               21 45073853 45226560       ADARB1   HGNC:226      1
9510               21 45073853 45226560       ADARB1   HGNC:226      1
9511               21 45073853 45226560       ADARB1   HGNC:226      1
9512               21 45073853 45226560       ADARB1   HGNC:226      1
9513               21 45073853 45226560       ADARB1   HGNC:226      1
9514               21 45073853 45226560       ADARB1   HGNC:226      1
9515               21 45073853 45226560       ADARB1   HGNC:226      1
9516               21 45073853 45226560       ADARB1   HGNC:226      1
9517               21 45073853 45226560       ADARB1   HGNC:226      1
9518               21 45073853 45226560       ADARB1   HGNC:226      1
9519               21 45073853 45226560       ADARB1   HGNC:226      1
9520               21 45073853 45226560       ADARB1   HGNC:226      1
9521               21 45073853 45226560       ADARB1   HGNC:226      1
9522               21 45073853 45226560       ADARB1   HGNC:226      1
9523               21 45073853 45226560       ADARB1   HGNC:226      1
9524               21 45073853 45226560       ADARB1   HGNC:226      1
9525               21 45073853 45226560       ADARB1   HGNC:226      1
9526               21 45073853 45226560       ADARB1   HGNC:226      1
9527               21 45073853 45226560       ADARB1   HGNC:226      1
9528               21 45073853 45226560       ADARB1   HGNC:226      1
9529               21 45073853 45226560       ADARB1   HGNC:226      1
9530               21 45073853 45226560       ADARB1   HGNC:226      1
9531               21 45073853 45226560       ADARB1   HGNC:226      1
9532               21 45073853 45226560       ADARB1   HGNC:226      1
9533               21 45073853 45226560       ADARB1   HGNC:226      1
9534               21 45073853 45226560       ADARB1   HGNC:226      1
9535               21 45073853 45226560       ADARB1   HGNC:226      1
9536               21 45073853 45226560       ADARB1   HGNC:226      1
9537               21 45073853 45226560       ADARB1   HGNC:226      1
9538               21 45073853 45226560       ADARB1   HGNC:226      1
9539               21 45073853 45226560       ADARB1   HGNC:226      1
9540               21 45073853 45226560       ADARB1   HGNC:226      1
9541               21 45073853 45226560       ADARB1   HGNC:226      1
9542               21 45073853 45226560       ADARB1   HGNC:226      1
9543               21 45073853 45226560       ADARB1   HGNC:226      1
9544               21 45073853 45226560       ADARB1   HGNC:226      1
9545               21 45073853 45226560       ADARB1   HGNC:226      1
9546               21 45073853 45226560       ADARB1   HGNC:226      1
9547               21 45073853 45226560       ADARB1   HGNC:226      1
9548               21 45073853 45226560       ADARB1   HGNC:226      1
9549               21 45073853 45226560       ADARB1   HGNC:226      1
9550               21 45073853 45226560       ADARB1   HGNC:226      1
9551               21 45073853 45226560       ADARB1   HGNC:226      1
9552               21 45073853 45226560       ADARB1   HGNC:226      1
9553               21 45073853 45226560       ADARB1   HGNC:226      1
9554               21 45073853 45226560       ADARB1   HGNC:226      1
9555               21 45073853 45226560       ADARB1   HGNC:226      1
9556               21 45073853 45226560       ADARB1   HGNC:226      1
9557               21 45073853 45226560       ADARB1   HGNC:226      1
9558               21 45073853 45226560       ADARB1   HGNC:226      1
9559               21 45073853 45226560       ADARB1   HGNC:226      1
9560               21 45073853 45226560       ADARB1   HGNC:226      1
9561               21 45073853 45226560       ADARB1   HGNC:226      1
9562               21 45073853 45226560       ADARB1   HGNC:226      1
9563               21 45073853 45226560       ADARB1   HGNC:226      1
9564               21 45073853 45226560       ADARB1   HGNC:226      1
9565               21 45073853 45226560       ADARB1   HGNC:226      1
9566               21 45073853 45226560       ADARB1   HGNC:226      1
9567               21 45073853 45226560       ADARB1   HGNC:226      1
9568               21 45073853 45226560       ADARB1   HGNC:226      1
9569               21 45073853 45226560       ADARB1   HGNC:226      1
9570               21 45073853 45226560       ADARB1   HGNC:226      1
9571               21 45073853 45226560       ADARB1   HGNC:226      1
9572               21 45073853 45226560       ADARB1   HGNC:226      1
9573               21 45073853 45226560       ADARB1   HGNC:226      1
9574               21 45073853 45226560       ADARB1   HGNC:226      1
9575               21 45073853 45226560       ADARB1   HGNC:226      1
9576               21 45073853 45226560       ADARB1   HGNC:226      1
9577               21 45073853 45226560       ADARB1   HGNC:226      1
9578               21 45073853 45226560       ADARB1   HGNC:226      1
9579               21 45073853 45226560       ADARB1   HGNC:226      1
9580               21 45073853 45226560       ADARB1   HGNC:226      1
9581               21 45073853 45226560       ADARB1   HGNC:226      1
9582               21 45073853 45226560       ADARB1   HGNC:226      1
9583               21 45073853 45226560       ADARB1   HGNC:226      1
9584               21 45073853 45226560       ADARB1   HGNC:226      1
9585               21 45073853 45226560       ADARB1   HGNC:226      1
9586               21 45073853 45226560       ADARB1   HGNC:226      1
9587               21 45073853 45226560       ADARB1   HGNC:226      1
9588               21 45073853 45226560       ADARB1   HGNC:226      1
9589               21 45073853 45226560       ADARB1   HGNC:226      1
9590               21 45073853 45226560       ADARB1   HGNC:226      1
9591               21 45073853 45226560       ADARB1   HGNC:226      1
9592               21 45073853 45226560       ADARB1   HGNC:226      1
9593               21 45073853 45226560       ADARB1   HGNC:226      1
9594               21 45073853 45226560       ADARB1   HGNC:226      1
9595               21 45073853 45226560       ADARB1   HGNC:226      1
9596               21 45073853 45226560       ADARB1   HGNC:226      1
9597               21 45073853 45226560       ADARB1   HGNC:226      1
9598               21 45073853 45226560       ADARB1   HGNC:226      1
9599               21 45073853 45226560       ADARB1   HGNC:226      1
9600               21 45073853 45226560       ADARB1   HGNC:226      1
9601               21 45073853 45226560       ADARB1   HGNC:226      1
9602               21 45073853 45226560       ADARB1   HGNC:226      1
9603               21 45073853 45226560       ADARB1   HGNC:226      1
9604               21 45073853 45226560       ADARB1   HGNC:226      1
9605               21 45073853 45226560       ADARB1   HGNC:226      1
9606               21 45073853 45226560       ADARB1   HGNC:226      1
9607               21 45073853 45226560       ADARB1   HGNC:226      1
9608               21 45073853 45226560       ADARB1   HGNC:226      1
9609               21 45073853 45226560       ADARB1   HGNC:226      1
9610               21 45073853 45226560       ADARB1   HGNC:226      1
9611               21 45073853 45226560       ADARB1   HGNC:226      1
9612               21 45073853 45226560       ADARB1   HGNC:226      1
9613               21 45073853 45226560       ADARB1   HGNC:226      1
9614               21 45073853 45226560       ADARB1   HGNC:226      1
9615               21 45073853 45226560       ADARB1   HGNC:226      1
9616               21 44940010 44976989      FAM207A HGNC:15811      1
9617               21 44940010 44976989      FAM207A HGNC:15811      1
9618               21 44940010 44976989      FAM207A HGNC:15811      1
9619               21 44940010 44976989      FAM207A HGNC:15811      1
9620               21 44940010 44976989      FAM207A HGNC:15811      1
9621               21 44940010 44976989      FAM207A HGNC:15811      1
9622               21 44940010 44976989      FAM207A HGNC:15811      1
9623               21 44940010 44976989      FAM207A HGNC:15811      1
9624               21 44940010 44976989      FAM207A HGNC:15811      1
9625               21 44940010 44976989      FAM207A HGNC:15811      1
9626               21 44940010 44976989      FAM207A HGNC:15811      1
9627               21 44940010 44976989      FAM207A HGNC:15811      1
9628               21 44940010 44976989      FAM207A HGNC:15811      1
9629               21 44940010 44976989      FAM207A HGNC:15811      1
9630               21 44940010 44976989      FAM207A HGNC:15811      1
9631               21 44940010 44976989      FAM207A HGNC:15811      1
9632               21 44940010 44976989      FAM207A HGNC:15811      1
9633               21 44940010 44976989      FAM207A HGNC:15811      1
9634               21 44940010 44976989      FAM207A HGNC:15811      1
9635               21 44940010 44976989      FAM207A HGNC:15811      1
9636               21 44940010 44976989      FAM207A HGNC:15811      1
9637               21 44940010 44976989      FAM207A HGNC:15811      1
9638               21 44940010 44976989      FAM207A HGNC:15811      1
9639               21 44940010 44976989      FAM207A HGNC:15811      1
9640               21 30496824 30497133    KRTAP19-4 HGNC:18939     -1
9641               21 30487057 30487436    KRTAP19-2 HGNC:18937     -1
9642               21 33503931 33543491         GART  HGNC:4163     -1
9643               21 33503931 33543491         GART  HGNC:4163     -1
9644               21 33503931 33543491         GART  HGNC:4163     -1
9645               21 33503931 33543491         GART  HGNC:4163     -1
9646               21 33503931 33543491         GART  HGNC:4163     -1
9647               21 33503931 33543491         GART  HGNC:4163     -1
9648               21 33503931 33543491         GART  HGNC:4163     -1
9649               21 33503931 33543491         GART  HGNC:4163     -1
9650               21 33503931 33543491         GART  HGNC:4163     -1
9651               21 33503931 33543491         GART  HGNC:4163     -1
9652               21 33503931 33543491         GART  HGNC:4163     -1
9653               21 33503931 33543491         GART  HGNC:4163     -1
9654               21 33503931 33543491         GART  HGNC:4163     -1
9655               21 33503931 33543491         GART  HGNC:4163     -1
9656               21 33503931 33543491         GART  HGNC:4163     -1
9657               21 33503931 33543491         GART  HGNC:4163     -1
9658               21 33503931 33543491         GART  HGNC:4163     -1
9659               21 33503931 33543491         GART  HGNC:4163     -1
9660               21 33503931 33543491         GART  HGNC:4163     -1
9661               21 33503931 33543491         GART  HGNC:4163     -1
9662               21 33503931 33543491         GART  HGNC:4163     -1
9663               21 33503931 33543491         GART  HGNC:4163     -1
9664               21 33503931 33543491         GART  HGNC:4163     -1
9665               21 33503931 33543491         GART  HGNC:4163     -1
9666               21 33503931 33543491         GART  HGNC:4163     -1
9667               21 33503931 33543491         GART  HGNC:4163     -1
9668               21 33503931 33543491         GART  HGNC:4163     -1
9669               21 33503931 33543491         GART  HGNC:4163     -1
9670               21 33503931 33543491         GART  HGNC:4163     -1
9671               21 33503931 33543491         GART  HGNC:4163     -1
9672               21 33503931 33543491         GART  HGNC:4163     -1
9673               21 33503931 33543491         GART  HGNC:4163     -1
9674               21 33503931 33543491         GART  HGNC:4163     -1
9675               21 33503931 33543491         GART  HGNC:4163     -1
9676               21 33503931 33543491         GART  HGNC:4163     -1
9677               21 33503931 33543491         GART  HGNC:4163     -1
9678               21 33503931 33543491         GART  HGNC:4163     -1
9679               21 33503931 33543491         GART  HGNC:4163     -1
9680               21 33503931 33543491         GART  HGNC:4163     -1
9681               21 33503931 33543491         GART  HGNC:4163     -1
9682               21 33503931 33543491         GART  HGNC:4163     -1
9683               21 33503931 33543491         GART  HGNC:4163     -1
9684               21 33503931 33543491         GART  HGNC:4163     -1
9685               21 33503931 33543491         GART  HGNC:4163     -1
9686               21 33503931 33543491         GART  HGNC:4163     -1
9687               21 33503931 33543491         GART  HGNC:4163     -1
9688               21 33503931 33543491         GART  HGNC:4163     -1
9689               21 33503931 33543491         GART  HGNC:4163     -1
9690               21 33503931 33543491         GART  HGNC:4163     -1
9691               21 33503931 33543491         GART  HGNC:4163     -1
9692               21 33503931 33543491         GART  HGNC:4163     -1
9693               21 33503931 33543491         GART  HGNC:4163     -1
9694               21 33503931 33543491         GART  HGNC:4163     -1
9695               21 33503931 33543491         GART  HGNC:4163     -1
9696               21 33503931 33543491         GART  HGNC:4163     -1
9697               21 33503931 33543491         GART  HGNC:4163     -1
9698               21 33503931 33543491         GART  HGNC:4163     -1
9699               21 33503931 33543491         GART  HGNC:4163     -1
9700               21 33503931 33543491         GART  HGNC:4163     -1
9701               21 33503931 33543491         GART  HGNC:4163     -1
9702               21 33503931 33543491         GART  HGNC:4163     -1
9703               21 33503931 33543491         GART  HGNC:4163     -1
9704               21 33503931 33543491         GART  HGNC:4163     -1
9705               21 33503931 33543491         GART  HGNC:4163     -1
9706               21 33503931 33543491         GART  HGNC:4163     -1
9707               21 33503931 33543491         GART  HGNC:4163     -1
9708               21 33503931 33543491         GART  HGNC:4163     -1
9709               21 33503931 33543491         GART  HGNC:4163     -1
9710               21 33503931 33543491         GART  HGNC:4163     -1
9711               21 33503931 33543491         GART  HGNC:4163     -1
9712               21 33503931 33543491         GART  HGNC:4163     -1
9713               21 33503931 33543491         GART  HGNC:4163     -1
9714               21 33503931 33543491         GART  HGNC:4163     -1
9715               21 33503931 33543491         GART  HGNC:4163     -1
9716               21 33503931 33543491         GART  HGNC:4163     -1
9717               21 33503931 33543491         GART  HGNC:4163     -1
9718               21 33503931 33543491         GART  HGNC:4163     -1
9719               21 33503931 33543491         GART  HGNC:4163     -1
9720               21 33503931 33543491         GART  HGNC:4163     -1
9721               21 33503931 33543491         GART  HGNC:4163     -1
9722               21 33503931 33543491         GART  HGNC:4163     -1
9723               21 33503931 33543491         GART  HGNC:4163     -1
9724               21 33503931 33543491         GART  HGNC:4163     -1
9725               21 33503931 33543491         GART  HGNC:4163     -1
9726               21 33503931 33543491         GART  HGNC:4163     -1
9727               21 33503931 33543491         GART  HGNC:4163     -1
9728               21 33503931 33543491         GART  HGNC:4163     -1
9729               21 33503931 33543491         GART  HGNC:4163     -1
9730               21 33503931 33543491         GART  HGNC:4163     -1
9731               21 33503931 33543491         GART  HGNC:4163     -1
9732               21 33503931 33543491         GART  HGNC:4163     -1
9733               21 33503931 33543491         GART  HGNC:4163     -1
9734               21 33503931 33543491         GART  HGNC:4163     -1
9735               21 33503931 33543491         GART  HGNC:4163     -1
9736               21 33503931 33543491         GART  HGNC:4163     -1
9737               21 33503931 33543491         GART  HGNC:4163     -1
9738               21 33503931 33543491         GART  HGNC:4163     -1
9739               21 33503931 33543491         GART  HGNC:4163     -1
9740               21 33503931 33543491         GART  HGNC:4163     -1
9741               21 33503931 33543491         GART  HGNC:4163     -1
9742               21 33503931 33543491         GART  HGNC:4163     -1
9743               21 33503931 33543491         GART  HGNC:4163     -1
9744               21 33503931 33543491         GART  HGNC:4163     -1
9745               21 33503931 33543491         GART  HGNC:4163     -1
9746               21 33503931 33543491         GART  HGNC:4163     -1
9747               21 33503931 33543491         GART  HGNC:4163     -1
9748               21 33503931 33543491         GART  HGNC:4163     -1
9749               21 33503931 33543491         GART  HGNC:4163     -1
9750               21 33503931 33543491         GART  HGNC:4163     -1
9751               21 33503931 33543491         GART  HGNC:4163     -1
9752               21 33503931 33543491         GART  HGNC:4163     -1
9753               21 33503931 33543491         GART  HGNC:4163     -1
9754               21 33503931 33543491         GART  HGNC:4163     -1
9755               21 33503931 33543491         GART  HGNC:4163     -1
9756               21 33503931 33543491         GART  HGNC:4163     -1
9757               21 33503931 33543491         GART  HGNC:4163     -1
9758               21 33503931 33543491         GART  HGNC:4163     -1
9759               21 33503931 33543491         GART  HGNC:4163     -1
9760               21 33503931 33543491         GART  HGNC:4163     -1
9761               21 33503931 33543491         GART  HGNC:4163     -1
9762               21 33503931 33543491         GART  HGNC:4163     -1
9763               21 33503931 33543491         GART  HGNC:4163     -1
9764               21 33503931 33543491         GART  HGNC:4163     -1
9765               21 33503931 33543491         GART  HGNC:4163     -1
9766               21 33503931 33543491         GART  HGNC:4163     -1
9767               21 33503931 33543491         GART  HGNC:4163     -1
9768               21 33503931 33543491         GART  HGNC:4163     -1
9769               21 33503931 33543491         GART  HGNC:4163     -1
9770               21 33503931 33543491         GART  HGNC:4163     -1
9771               21 33503931 33543491         GART  HGNC:4163     -1
9772               21 33503931 33543491         GART  HGNC:4163     -1
9773               21 33503931 33543491         GART  HGNC:4163     -1
9774               21 33503931 33543491         GART  HGNC:4163     -1
9775               21 33503931 33543491         GART  HGNC:4163     -1
9776               21 33503931 33543491         GART  HGNC:4163     -1
9777               21 33503931 33543491         GART  HGNC:4163     -1
9778               21 33503931 33543491         GART  HGNC:4163     -1
9779               21 33503931 33543491         GART  HGNC:4163     -1
9780               21 33503931 33543491         GART  HGNC:4163     -1
9781               21 33503931 33543491         GART  HGNC:4163     -1
9782               21 33503931 33543491         GART  HGNC:4163     -1
9783               21 33503931 33543491         GART  HGNC:4163     -1
9784               21 33503931 33543491         GART  HGNC:4163     -1
9785               21 33503931 33543491         GART  HGNC:4163     -1
9786               21 33503931 33543491         GART  HGNC:4163     -1
9787               21 33503931 33543491         GART  HGNC:4163     -1
9788               21 33503931 33543491         GART  HGNC:4163     -1
9789               21 33503931 33543491         GART  HGNC:4163     -1
9790               21 33503931 33543491         GART  HGNC:4163     -1
9791               21 33503931 33543491         GART  HGNC:4163     -1
9792               21 33503931 33543491         GART  HGNC:4163     -1
9793               21 33503931 33543491         GART  HGNC:4163     -1
9794               21 33503931 33543491         GART  HGNC:4163     -1
9795               21 33503931 33543491         GART  HGNC:4163     -1
9796               21 33503931 33543491         GART  HGNC:4163     -1
9797               21 29222321 29223257     GAPDHP14  HGNC:4160      1
9798               21  7816675  7829926       KCNE1B HGNC:52280     -1
9799               21  7816675  7829926       KCNE1B HGNC:52280     -1
9800               21  7816675  7829926       KCNE1B HGNC:52280     -1
9801               21  7816675  7829926       KCNE1B HGNC:52280     -1
9802               21  7816675  7829926       KCNE1B HGNC:52280     -1
9803               21  7816675  7829926       KCNE1B HGNC:52280     -1
9804               21  7816675  7829926       KCNE1B HGNC:52280     -1
9805               21  7816675  7829926       KCNE1B HGNC:52280     -1
9806               21  7816675  7829926       KCNE1B HGNC:52280     -1
9807               21  7816675  7829926       KCNE1B HGNC:52280     -1
9808               21  7816675  7829926       KCNE1B HGNC:52280     -1
9809               21 44285838 44298648         AIRE   HGNC:360      1
9810               21 44285838 44298648         AIRE   HGNC:360      1
9811               21 44285838 44298648         AIRE   HGNC:360      1
9812               21 44285838 44298648         AIRE   HGNC:360      1
9813               21 44285838 44298648         AIRE   HGNC:360      1
9814               21 44285838 44298648         AIRE   HGNC:360      1
9815               21 44285838 44298648         AIRE   HGNC:360      1
9816               21 44285838 44298648         AIRE   HGNC:360      1
9817               21 44285838 44298648         AIRE   HGNC:360      1
9818               21 44285838 44298648         AIRE   HGNC:360      1
9819               21 44285838 44298648         AIRE   HGNC:360      1
9820               21 44285838 44298648         AIRE   HGNC:360      1
9821               21 44285838 44298648         AIRE   HGNC:360      1
9822               21 44285838 44298648         AIRE   HGNC:360      1
9823               21 44285838 44298648         AIRE   HGNC:360      1
9824               21 44285838 44298648         AIRE   HGNC:360      1
9825               21 44285838 44298648         AIRE   HGNC:360      1
9826               21 44285838 44298648         AIRE   HGNC:360      1
9827               21 44285838 44298648         AIRE   HGNC:360      1
9828               21 44285838 44298648         AIRE   HGNC:360      1
9829               21 44285838 44298648         AIRE   HGNC:360      1
9830               21 44285838 44298648         AIRE   HGNC:360      1
9831               21 44285838 44298648         AIRE   HGNC:360      1
9832               21 44285838 44298648         AIRE   HGNC:360      1
9833               21 44285838 44298648         AIRE   HGNC:360      1
9834               21 44285838 44298648         AIRE   HGNC:360      1
9835               21 44285838 44298648         AIRE   HGNC:360      1
9836               21 44285838 44298648         AIRE   HGNC:360      1
9837               21 44285838 44298648         AIRE   HGNC:360      1
9838               21 44285838 44298648         AIRE   HGNC:360      1
9839               21 44285838 44298648         AIRE   HGNC:360      1
9840               21 44285838 44298648         AIRE   HGNC:360      1
9841               21 44285838 44298648         AIRE   HGNC:360      1
9842               21 44285838 44298648         AIRE   HGNC:360      1
9843               21 44285838 44298648         AIRE   HGNC:360      1
9844               21 44285838 44298648         AIRE   HGNC:360      1
9845               21 44285838 44298648         AIRE   HGNC:360      1
9846               21 44285838 44298648         AIRE   HGNC:360      1
9847               21 44285838 44298648         AIRE   HGNC:360      1
9848               21 44285838 44298648         AIRE   HGNC:360      1
9849               21 44285838 44298648         AIRE   HGNC:360      1
9850               21 44285838 44298648         AIRE   HGNC:360      1
9851               21 44285838 44298648         AIRE   HGNC:360      1
9852               21 44285838 44298648         AIRE   HGNC:360      1
9853               21 44285838 44298648         AIRE   HGNC:360      1
9854               21 44285838 44298648         AIRE   HGNC:360      1
9855               21 44285838 44298648         AIRE   HGNC:360      1
9856               21 44285838 44298648         AIRE   HGNC:360      1
9857               21 44285838 44298648         AIRE   HGNC:360      1
9858               21 44285838 44298648         AIRE   HGNC:360      1
9859               21 44285838 44298648         AIRE   HGNC:360      1
9860               21 44285838 44298648         AIRE   HGNC:360      1
9861               21 44285838 44298648         AIRE   HGNC:360      1
9862               21 44285838 44298648         AIRE   HGNC:360      1
9863               21 44285838 44298648         AIRE   HGNC:360      1
9864               21 39380244 39428528          WRB HGNC:12790      1
9865               21 39380244 39428528          WRB HGNC:12790      1
9866               21 39380244 39428528          WRB HGNC:12790      1
9867               21 39380244 39428528          WRB HGNC:12790      1
9868               21 39380244 39428528          WRB HGNC:12790      1
9869               21 39380244 39428528          WRB HGNC:12790      1
9870               21 39380244 39428528          WRB HGNC:12790      1
9871               21 39380244 39428528          WRB HGNC:12790      1
9872               21 39380244 39428528          WRB HGNC:12790      1
9873               21 39380244 39428528          WRB HGNC:12790      1
9874               21 39380244 39428528          WRB HGNC:12790      1
9875               21 39380244 39428528          WRB HGNC:12790      1
9876               21 39380244 39428528          WRB HGNC:12790      1
9877               21 39380244 39428528          WRB HGNC:12790      1
9878               21 39380244 39428528          WRB HGNC:12790      1
9879               21 39380244 39428528          WRB HGNC:12790      1
9880               21 39380244 39428528          WRB HGNC:12790      1
9881               21 39380244 39428528          WRB HGNC:12790      1
9882               21 39380244 39428528          WRB HGNC:12790      1
9883               21 39380244 39428528          WRB HGNC:12790      1
9884               21 39380244 39428528          WRB HGNC:12790      1
9885               21 39380244 39428528          WRB HGNC:12790      1
9886               21 39380244 39428528          WRB HGNC:12790      1
9887               21 39380244 39428528          WRB HGNC:12790      1
9888               21 39380244 39428528          WRB HGNC:12790      1
9889               21 39380244 39428528          WRB HGNC:12790      1
9890               21 39380244 39428528          WRB HGNC:12790      1
9891               21 39380244 39428528          WRB HGNC:12790      1
9892               21 39380244 39428528          WRB HGNC:12790      1
9893               21 39380244 39428528          WRB HGNC:12790      1
9894               21 39380244 39428528          WRB HGNC:12790      1
9895               21 39380244 39428528          WRB HGNC:12790      1
9896               21 39380244 39428528          WRB HGNC:12790      1
9897               21 39380244 39428528          WRB HGNC:12790      1
9898               21 39380244 39428528          WRB HGNC:12790      1
9899               21 39380244 39428528          WRB HGNC:12790      1
9900               21 39380244 39428528          WRB HGNC:12790      1
9901               21 39380244 39428528          WRB HGNC:12790      1
9902               21 39380244 39428528          WRB HGNC:12790      1
9903               21 39380244 39428528          WRB HGNC:12790      1
9904               21 39380244 39428528          WRB HGNC:12790      1
9905               21 39380244 39428528          WRB HGNC:12790      1
9906               21 39380244 39428528          WRB HGNC:12790      1
9907               21 39380244 39428528          WRB HGNC:12790      1
9908               21 39380244 39428528          WRB HGNC:12790      1
9909               21 39380244 39428528          WRB HGNC:12790      1
9910               21 39380244 39428528          WRB HGNC:12790      1
9911               21 39380244 39428528          WRB HGNC:12790      1
9912               21 39380244 39428528          WRB HGNC:12790      1
9913               21 39380244 39428528          WRB HGNC:12790      1
9914               21 39380244 39428528          WRB HGNC:12790      1
9915               21  6507017  6507389                             -1
9916               21 33266358 33310187       IL10RB  HGNC:5965      1
9917               21 33266358 33310187       IL10RB  HGNC:5965      1
9918               21 33266358 33310187       IL10RB  HGNC:5965      1
9919               21 33266358 33310187       IL10RB  HGNC:5965      1
9920               21 33266358 33310187       IL10RB  HGNC:5965      1
9921               21 33266358 33310187       IL10RB  HGNC:5965      1
9922               21 33266358 33310187       IL10RB  HGNC:5965      1
9923               21 33266358 33310187       IL10RB  HGNC:5965      1
9924               21 33266358 33310187       IL10RB  HGNC:5965      1
9925               21 33266358 33310187       IL10RB  HGNC:5965      1
9926               21 33266358 33310187       IL10RB  HGNC:5965      1
9927               21 33266358 33310187       IL10RB  HGNC:5965      1
9928               21 33266358 33310187       IL10RB  HGNC:5965      1
9929               21 33266358 33310187       IL10RB  HGNC:5965      1
9930               21 33266358 33310187       IL10RB  HGNC:5965      1
9931               21 33266358 33310187       IL10RB  HGNC:5965      1
9932               21 33266358 33310187       IL10RB  HGNC:5965      1
9933               21 33266358 33310187       IL10RB  HGNC:5965      1
9934               21 33266358 33310187       IL10RB  HGNC:5965      1
9935               21 33266358 33310187       IL10RB  HGNC:5965      1
9936               21 33266358 33310187       IL10RB  HGNC:5965      1
9937               21 33266358 33310187       IL10RB  HGNC:5965      1
9938               21 33266358 33310187       IL10RB  HGNC:5965      1
9939               21 33266358 33310187       IL10RB  HGNC:5965      1
9940               21 33266358 33310187       IL10RB  HGNC:5965      1
9941               21 33266358 33310187       IL10RB  HGNC:5965      1
9942               21 33266358 33310187       IL10RB  HGNC:5965      1
9943               21 33266358 33310187       IL10RB  HGNC:5965      1
9944               21 33266358 33310187       IL10RB  HGNC:5965      1
9945               21 33266358 33310187       IL10RB  HGNC:5965      1
9946               21 33266358 33310187       IL10RB  HGNC:5965      1
9947               21 33266358 33310187       IL10RB  HGNC:5965      1
9948               21 33266358 33310187       IL10RB  HGNC:5965      1
9949               21  8393419  8394341                             -1
9950               21  8210384  8211306                             -1
9951               21  7768884  7770591                             -1
9952               21 44244545 44244993                              1
9953               21  7135334  7137789                             -1
9954               21  6272135  6276532                             -1
9955               21  6272135  6276532                             -1
9956               21  6272135  6276532                             -1
9957               21  6272135  6276532                             -1
9958               21  6272135  6276532                             -1
9959               21  6272135  6276532                             -1
9960               21  6272135  6276532                             -1
9961               21  6272135  6276532                             -1
9962               21  6272135  6276532                             -1
9963               21  6272135  6276532                             -1
9964               21 36430360 36481070                              1
9965               21 36430360 36481070                              1
9966               21 36485867 36487760                              1
9967               21 20256752 20258820                             -1
9968               21 20256752 20258820                             -1
9969               21 19620695 19621545                              1
9970               21 19046310 19047684                             -1
9971               21 19046310 19047684                             -1
9972               21 35136638 35139222                              1
9973               21 35136638 35139222                              1
9974               21 17788967 17819386     C21orf91 HGNC:16459     -1
9975               21 17788967 17819386     C21orf91 HGNC:16459     -1
9976               21 17788967 17819386     C21orf91 HGNC:16459     -1
9977               21 17788967 17819386     C21orf91 HGNC:16459     -1
9978               21 17788967 17819386     C21orf91 HGNC:16459     -1
9979               21 17788967 17819386     C21orf91 HGNC:16459     -1
9980               21 17788967 17819386     C21orf91 HGNC:16459     -1
9981               21 17788967 17819386     C21orf91 HGNC:16459     -1
9982               21 17788967 17819386     C21orf91 HGNC:16459     -1
9983               21 17788967 17819386     C21orf91 HGNC:16459     -1
9984               21 17788967 17819386     C21orf91 HGNC:16459     -1
9985               21 17788967 17819386     C21orf91 HGNC:16459     -1
9986               21 17788967 17819386     C21orf91 HGNC:16459     -1
9987               21 17788967 17819386     C21orf91 HGNC:16459     -1
9988               21 17788967 17819386     C21orf91 HGNC:16459     -1
9989               21 17788967 17819386     C21orf91 HGNC:16459     -1
9990               21 17788967 17819386     C21orf91 HGNC:16459     -1
9991               21 17788967 17819386     C21orf91 HGNC:16459     -1
9992               21 17788967 17819386     C21orf91 HGNC:16459     -1
9993               21 17788967 17819386     C21orf91 HGNC:16459     -1
9994               21 17788967 17819386     C21orf91 HGNC:16459     -1
9995               21 17788967 17819386     C21orf91 HGNC:16459     -1
9996               21 17788967 17819386     C21orf91 HGNC:16459     -1
9997               21 17788967 17819386     C21orf91 HGNC:16459     -1
9998               21 17788967 17819386     C21orf91 HGNC:16459     -1
9999               21 28439346 28674848                             -1
                            gene_biotype
1                                 snoRNA
2                               misc_RNA
3                               misc_RNA
4                               misc_RNA
5                              antisense
6                              antisense
7                         protein_coding
8                         protein_coding
9                         protein_coding
10                        protein_coding
11                        protein_coding
12                        protein_coding
13                        protein_coding
14                        protein_coding
15                        protein_coding
16                        protein_coding
17                        protein_coding
18                        protein_coding
19                        protein_coding
20                        protein_coding
21                        protein_coding
22                        protein_coding
23                        protein_coding
24                        protein_coding
25                        protein_coding
26                        protein_coding
27                        protein_coding
28                        protein_coding
29                        protein_coding
30                        protein_coding
31                        protein_coding
32                        protein_coding
33                        protein_coding
34                        protein_coding
35                        protein_coding
36                        protein_coding
37                        protein_coding
38                        protein_coding
39                        protein_coding
40                        protein_coding
41                        protein_coding
42                        protein_coding
43                        protein_coding
44                        protein_coding
45                        protein_coding
46                        protein_coding
47                        protein_coding
48                        protein_coding
49                        protein_coding
50                        protein_coding
51                        protein_coding
52                        protein_coding
53                        protein_coding
54                        protein_coding
55                        protein_coding
56                        protein_coding
57                        protein_coding
58                        protein_coding
59                        protein_coding
60                        protein_coding
61                        protein_coding
62                        protein_coding
63                        protein_coding
64                        protein_coding
65                        protein_coding
66                        protein_coding
67                        protein_coding
68                        protein_coding
69                        protein_coding
70                        protein_coding
71                        protein_coding
72                        protein_coding
73                        protein_coding
74                        protein_coding
75                        protein_coding
76                        protein_coding
77                        protein_coding
78                        protein_coding
79                        protein_coding
80                        protein_coding
81                        protein_coding
82                        protein_coding
83                        protein_coding
84                        protein_coding
85                        protein_coding
86                        protein_coding
87                        protein_coding
88                        protein_coding
89                        protein_coding
90                        protein_coding
91                        protein_coding
92                        protein_coding
93                        protein_coding
94                        protein_coding
95                        protein_coding
96                        protein_coding
97                        protein_coding
98                        protein_coding
99                        protein_coding
100                       protein_coding
101                       protein_coding
102                       protein_coding
103                       protein_coding
104                       protein_coding
105                       protein_coding
106                       protein_coding
107                       protein_coding
108                       protein_coding
109                       protein_coding
110                       protein_coding
111                       protein_coding
112                       protein_coding
113                       protein_coding
114                       protein_coding
115                       protein_coding
116                       protein_coding
117                       protein_coding
118                       protein_coding
119                       protein_coding
120                       protein_coding
121                       protein_coding
122                       protein_coding
123                       protein_coding
124                       protein_coding
125                       protein_coding
126                       protein_coding
127                       protein_coding
128                       protein_coding
129                       protein_coding
130                       protein_coding
131                       protein_coding
132                       protein_coding
133                       protein_coding
134                       protein_coding
135                       protein_coding
136                       protein_coding
137                       protein_coding
138                       protein_coding
139                       protein_coding
140                       protein_coding
141                       protein_coding
142                       protein_coding
143                       protein_coding
144                       protein_coding
145                       protein_coding
146                       protein_coding
147                       protein_coding
148                       protein_coding
149                       protein_coding
150                       protein_coding
151                       protein_coding
152                       protein_coding
153                       protein_coding
154                       protein_coding
155                       protein_coding
156                       protein_coding
157                       protein_coding
158                       protein_coding
159                       protein_coding
160                       protein_coding
161                       protein_coding
162                       protein_coding
163                       protein_coding
164                       protein_coding
165                       protein_coding
166                       protein_coding
167                       protein_coding
168                       protein_coding
169                       protein_coding
170                       protein_coding
171                       protein_coding
172                       protein_coding
173                       protein_coding
174                       protein_coding
175                       protein_coding
176                       protein_coding
177                       protein_coding
178                       protein_coding
179                       protein_coding
180                       protein_coding
181                       protein_coding
182                       protein_coding
183                       protein_coding
184                       protein_coding
185                       protein_coding
186                       protein_coding
187                       protein_coding
188                       protein_coding
189                       protein_coding
190                       protein_coding
191                       protein_coding
192                       protein_coding
193                       protein_coding
194                       protein_coding
195                       protein_coding
196                       protein_coding
197                       protein_coding
198                       protein_coding
199                       protein_coding
200                       protein_coding
201                       protein_coding
202                       protein_coding
203                                 rRNA
204                                snRNA
205                           pseudogene
206                           pseudogene
207                                miRNA
208                                snRNA
209                             misc_RNA
210                                snRNA
211                                miRNA
212                       protein_coding
213                       protein_coding
214                       protein_coding
215                       protein_coding
216                       protein_coding
217                       protein_coding
218                       protein_coding
219                       protein_coding
220                       protein_coding
221                       protein_coding
222                       protein_coding
223                       protein_coding
224                       protein_coding
225                       protein_coding
226                       protein_coding
227                       protein_coding
228                       protein_coding
229                       protein_coding
230                       protein_coding
231                       protein_coding
232                       protein_coding
233                       protein_coding
234                       protein_coding
235                       protein_coding
236                       protein_coding
237                       protein_coding
238                       protein_coding
239                       protein_coding
240                       protein_coding
241                       protein_coding
242                       protein_coding
243                       protein_coding
244                       protein_coding
245                       protein_coding
246                       protein_coding
247                       protein_coding
248                       protein_coding
249                       protein_coding
250                       protein_coding
251                       protein_coding
252                       protein_coding
253                       protein_coding
254                       protein_coding
255                       protein_coding
256                       protein_coding
257                       protein_coding
258                       protein_coding
259                       protein_coding
260                       protein_coding
261                       protein_coding
262                       protein_coding
263                       protein_coding
264                       protein_coding
265                       protein_coding
266                       protein_coding
267                       protein_coding
268                       protein_coding
269                       protein_coding
270                       protein_coding
271                       protein_coding
272                       protein_coding
273                       protein_coding
274                       protein_coding
275                       protein_coding
276                       protein_coding
277                       protein_coding
278                       protein_coding
279                       protein_coding
280                       protein_coding
281                       protein_coding
282                       protein_coding
283                       protein_coding
284                       protein_coding
285                       protein_coding
286                       protein_coding
287                       protein_coding
288                       protein_coding
289                       protein_coding
290                       protein_coding
291                       protein_coding
292                       protein_coding
293                       protein_coding
294                       protein_coding
295                       protein_coding
296                       protein_coding
297                       protein_coding
298                       protein_coding
299                       protein_coding
300                       protein_coding
301                       protein_coding
302                       protein_coding
303                       protein_coding
304                       protein_coding
305                       protein_coding
306                       protein_coding
307                       protein_coding
308                       protein_coding
309                       protein_coding
310                       protein_coding
311                       protein_coding
312                       protein_coding
313                       protein_coding
314                       protein_coding
315                       protein_coding
316                       protein_coding
317                       protein_coding
318                       protein_coding
319                       protein_coding
320                       protein_coding
321                       protein_coding
322                       protein_coding
323                       protein_coding
324                       protein_coding
325                       protein_coding
326                       protein_coding
327                       protein_coding
328                       protein_coding
329                       protein_coding
330                       protein_coding
331                       protein_coding
332                       protein_coding
333                       protein_coding
334                       protein_coding
335                       protein_coding
336                       protein_coding
337                       protein_coding
338                       protein_coding
339                       protein_coding
340                       protein_coding
341                       protein_coding
342                       protein_coding
343                       protein_coding
344                       protein_coding
345                       protein_coding
346                       protein_coding
347                       protein_coding
348                       protein_coding
349                       protein_coding
350                       protein_coding
351                       protein_coding
352                       protein_coding
353                       protein_coding
354                       protein_coding
355                       protein_coding
356                       protein_coding
357                       protein_coding
358                       protein_coding
359                       protein_coding
360                       protein_coding
361                       protein_coding
362                       protein_coding
363                       protein_coding
364                       protein_coding
365                       protein_coding
366                       protein_coding
367                       protein_coding
368                       protein_coding
369                       protein_coding
370                       protein_coding
371                       protein_coding
372                       protein_coding
373                       protein_coding
374                       protein_coding
375                       protein_coding
376                       protein_coding
377                       protein_coding
378                       protein_coding
379                       protein_coding
380                       protein_coding
381                       protein_coding
382                       protein_coding
383                       protein_coding
384                       protein_coding
385                       protein_coding
386                       protein_coding
387                       protein_coding
388                       protein_coding
389                       protein_coding
390                       protein_coding
391                       protein_coding
392                       protein_coding
393                       protein_coding
394                       protein_coding
395                       protein_coding
396                       protein_coding
397                       protein_coding
398                       protein_coding
399                       protein_coding
400                       protein_coding
401                       protein_coding
402                       protein_coding
403                       protein_coding
404                       protein_coding
405                       protein_coding
406                       protein_coding
407                       protein_coding
408                       protein_coding
409                       protein_coding
410                       protein_coding
411                       protein_coding
412                                snRNA
413                                miRNA
414                                miRNA
415                               snoRNA
416                                miRNA
417                                miRNA
418                                miRNA
419                            antisense
420                            antisense
421                       protein_coding
422                       protein_coding
423                            antisense
424                       protein_coding
425                       protein_coding
426                       protein_coding
427                       protein_coding
428                       protein_coding
429                       protein_coding
430                       protein_coding
431                       protein_coding
432                       protein_coding
433                       protein_coding
434                       protein_coding
435                       protein_coding
436                       protein_coding
437                       protein_coding
438                       protein_coding
439                       protein_coding
440                       protein_coding
441                       protein_coding
442                       protein_coding
443                       protein_coding
444                       protein_coding
445                       protein_coding
446                       protein_coding
447                       protein_coding
448                       protein_coding
449                       protein_coding
450                       protein_coding
451                       protein_coding
452                       protein_coding
453                       protein_coding
454                       protein_coding
455                       protein_coding
456                       protein_coding
457                       protein_coding
458                       protein_coding
459                       protein_coding
460                       protein_coding
461                       protein_coding
462                       protein_coding
463                       protein_coding
464                       protein_coding
465                       protein_coding
466                       protein_coding
467                       protein_coding
468                       protein_coding
469                       protein_coding
470                       protein_coding
471                       protein_coding
472                       protein_coding
473                       protein_coding
474                       protein_coding
475                       protein_coding
476                       protein_coding
477                       protein_coding
478                       protein_coding
479                       protein_coding
480                       protein_coding
481                       protein_coding
482                       protein_coding
483                       protein_coding
484                       protein_coding
485                       protein_coding
486                       protein_coding
487                       protein_coding
488                       protein_coding
489                       protein_coding
490                       protein_coding
491                       protein_coding
492                       protein_coding
493                       protein_coding
494                       protein_coding
495                       protein_coding
496                       protein_coding
497                       protein_coding
498                       protein_coding
499                       protein_coding
500                       protein_coding
501                       protein_coding
502                       protein_coding
503                       protein_coding
504                       protein_coding
505                       protein_coding
506                       protein_coding
507                       protein_coding
508                       protein_coding
509                       protein_coding
510                       protein_coding
511                       protein_coding
512                       protein_coding
513                       protein_coding
514                       protein_coding
515                       protein_coding
516                       protein_coding
517                       protein_coding
518                       protein_coding
519                       protein_coding
520                       protein_coding
521                       protein_coding
522                       protein_coding
523                       protein_coding
524                       protein_coding
525                       protein_coding
526                       protein_coding
527                       protein_coding
528                       protein_coding
529                       protein_coding
530                       protein_coding
531                       protein_coding
532                       protein_coding
533                       protein_coding
534                       protein_coding
535                       protein_coding
536                       protein_coding
537                       protein_coding
538                       protein_coding
539                       protein_coding
540                       protein_coding
541                       protein_coding
542                       protein_coding
543                       protein_coding
544                       protein_coding
545                       protein_coding
546                       protein_coding
547                       protein_coding
548                       protein_coding
549                       protein_coding
550                       protein_coding
551                       protein_coding
552                       protein_coding
553                            antisense
554                            antisense
555                            antisense
556                            antisense
557                             misc_RNA
558                             misc_RNA
559                            antisense
560                            antisense
561                              lincRNA
562                              lincRNA
563                              lincRNA
564                              lincRNA
565                              lincRNA
566                              lincRNA
567                              lincRNA
568                              lincRNA
569                              lincRNA
570                       sense_intronic
571                       sense_intronic
572                       sense_intronic
573                       protein_coding
574                       protein_coding
575                       protein_coding
576                       protein_coding
577                       protein_coding
578                       protein_coding
579                       protein_coding
580                       protein_coding
581                       protein_coding
582                       protein_coding
583                       protein_coding
584                       protein_coding
585                       protein_coding
586                       protein_coding
587                       protein_coding
588                       protein_coding
589                       protein_coding
590                       protein_coding
591                       protein_coding
592                       protein_coding
593                       protein_coding
594                       protein_coding
595                       protein_coding
596                       protein_coding
597                       protein_coding
598                       protein_coding
599                       protein_coding
600                       protein_coding
601                       protein_coding
602                       protein_coding
603                       protein_coding
604                       protein_coding
605                       protein_coding
606                       protein_coding
607                       protein_coding
608                       protein_coding
609                       protein_coding
610                       protein_coding
611                       protein_coding
612                       protein_coding
613                       protein_coding
614                       protein_coding
615                       protein_coding
616                       protein_coding
617                       protein_coding
618                       sense_intronic
619                              lincRNA
620                              lincRNA
621                              lincRNA
622                              lincRNA
623                              lincRNA
624                              lincRNA
625                              lincRNA
626                              lincRNA
627                              lincRNA
628                              lincRNA
629                              lincRNA
630                              lincRNA
631                              lincRNA
632                              lincRNA
633                              lincRNA
634                              lincRNA
635                              lincRNA
636                              lincRNA
637                              lincRNA
638                              lincRNA
639                              lincRNA
640                                 rRNA
641                             misc_RNA
642                                miRNA
643                 processed_pseudogene
644                              lincRNA
645                              lincRNA
646                              lincRNA
647                              lincRNA
648                              lincRNA
649                              lincRNA
650                              lincRNA
651                              lincRNA
652                              lincRNA
653                              lincRNA
654                              lincRNA
655                              lincRNA
656                              lincRNA
657                              lincRNA
658                              lincRNA
659                              lincRNA
660                              lincRNA
661                              lincRNA
662                              lincRNA
663                              lincRNA
664                            antisense
665                            antisense
666                            antisense
667                            antisense
668                            antisense
669                            antisense
670                            antisense
671                       protein_coding
672                               snoRNA
673                                miRNA
674                       protein_coding
675                       protein_coding
676                       protein_coding
677                       protein_coding
678                       protein_coding
679                       protein_coding
680                       protein_coding
681                       protein_coding
682                       protein_coding
683                       protein_coding
684                       protein_coding
685                       protein_coding
686                       protein_coding
687                       protein_coding
688                       protein_coding
689                       protein_coding
690                       protein_coding
691                       protein_coding
692                       protein_coding
693                       protein_coding
694                       protein_coding
695                       protein_coding
696                       protein_coding
697                       protein_coding
698                       protein_coding
699                       protein_coding
700                       protein_coding
701                       protein_coding
702                       protein_coding
703                       protein_coding
704                       protein_coding
705                       protein_coding
706                       protein_coding
707                       protein_coding
708                       protein_coding
709                       protein_coding
710                       protein_coding
711                       protein_coding
712                       protein_coding
713                       protein_coding
714                       protein_coding
715                       protein_coding
716                       protein_coding
717                       protein_coding
718                       protein_coding
719                       protein_coding
720                       protein_coding
721                       protein_coding
722                       protein_coding
723                       protein_coding
724                       protein_coding
725                       protein_coding
726                       protein_coding
727                       protein_coding
728                       protein_coding
729                       protein_coding
730                       protein_coding
731                       protein_coding
732                       protein_coding
733                       protein_coding
734                       protein_coding
735                       protein_coding
736                              lincRNA
737                              lincRNA
738                       protein_coding
739                       protein_coding
740                       protein_coding
741                       protein_coding
742                       protein_coding
743                       protein_coding
744                       protein_coding
745                       protein_coding
746                       protein_coding
747                       protein_coding
748                       protein_coding
749                       protein_coding
750                       protein_coding
751                       protein_coding
752                       protein_coding
753                       protein_coding
754                       protein_coding
755                       protein_coding
756                       protein_coding
757                       protein_coding
758                       protein_coding
759                       protein_coding
760                       protein_coding
761                       protein_coding
762                       protein_coding
763                       protein_coding
764                       protein_coding
765                       protein_coding
766                       protein_coding
767                       protein_coding
768                       protein_coding
769                       protein_coding
770                       protein_coding
771                       protein_coding
772                       protein_coding
773                       protein_coding
774                       protein_coding
775                       protein_coding
776                       protein_coding
777                       protein_coding
778                       protein_coding
779                       protein_coding
780                       protein_coding
781                       protein_coding
782                       protein_coding
783                       protein_coding
784                       protein_coding
785                       protein_coding
786                       protein_coding
787                       protein_coding
788                       protein_coding
789                       protein_coding
790                       protein_coding
791                       protein_coding
792                       protein_coding
793                       protein_coding
794                       protein_coding
795                       protein_coding
796                       protein_coding
797                       protein_coding
798                       protein_coding
799                       protein_coding
800                       protein_coding
801                       protein_coding
802                       protein_coding
803                            antisense
804                            antisense
805                            antisense
806                            antisense
807                            antisense
808                            antisense
809                            antisense
810                 processed_pseudogene
811                                snRNA
812                             misc_RNA
813                       sense_intronic
814                       protein_coding
815                       protein_coding
816                       protein_coding
817                       protein_coding
818                       protein_coding
819                       protein_coding
820                       protein_coding
821                       protein_coding
822                       protein_coding
823                       protein_coding
824                       protein_coding
825                       protein_coding
826                       protein_coding
827                       protein_coding
828                       protein_coding
829                       protein_coding
830                       protein_coding
831                       protein_coding
832                       protein_coding
833                       protein_coding
834                       protein_coding
835                       protein_coding
836                       protein_coding
837                       protein_coding
838                       protein_coding
839                       protein_coding
840                       protein_coding
841                       protein_coding
842                       protein_coding
843                       protein_coding
844                       protein_coding
845                       protein_coding
846                       protein_coding
847                       protein_coding
848                       protein_coding
849                       protein_coding
850                       protein_coding
851                       protein_coding
852                       protein_coding
853                       protein_coding
854                       protein_coding
855                       protein_coding
856                       protein_coding
857                       protein_coding
858                       protein_coding
859                       protein_coding
860                       protein_coding
861                       protein_coding
862                       protein_coding
863                       protein_coding
864                       protein_coding
865                       protein_coding
866                       protein_coding
867                       protein_coding
868                       protein_coding
869                       protein_coding
870                       protein_coding
871                       protein_coding
872                       protein_coding
873                       protein_coding
874                       protein_coding
875                       protein_coding
876                       protein_coding
877                       protein_coding
878                       protein_coding
879                       protein_coding
880                       protein_coding
881                       protein_coding
882                       protein_coding
883                       protein_coding
884                       protein_coding
885                       protein_coding
886                       protein_coding
887                       protein_coding
888                       protein_coding
889                       protein_coding
890                       protein_coding
891                       protein_coding
892                       protein_coding
893                       protein_coding
894                       protein_coding
895                       protein_coding
896                       protein_coding
897                       protein_coding
898                       protein_coding
899                       protein_coding
900                       protein_coding
901                       protein_coding
902                       protein_coding
903                       protein_coding
904                       protein_coding
905                       protein_coding
906                       protein_coding
907                       protein_coding
908                       protein_coding
909                       protein_coding
910                       protein_coding
911                       protein_coding
912                       protein_coding
913                       protein_coding
914                       protein_coding
915                       protein_coding
916                       protein_coding
917                       protein_coding
918                       protein_coding
919                       protein_coding
920                       protein_coding
921                       protein_coding
922                       protein_coding
923                       protein_coding
924                       protein_coding
925                       protein_coding
926                       protein_coding
927                       protein_coding
928                       protein_coding
929                       protein_coding
930                       protein_coding
931                       protein_coding
932                       protein_coding
933                                miRNA
934                                miRNA
935                                miRNA
936                                snRNA
937                                snRNA
938                       protein_coding
939                 processed_pseudogene
940                            antisense
941                            antisense
942                            antisense
943                            antisense
944                            antisense
945                            antisense
946                            antisense
947                            antisense
948                            antisense
949                            antisense
950                                miRNA
951                                snRNA
952                                 rRNA
953                                snRNA
954                                miRNA
955                              lincRNA
956                              lincRNA
957                              lincRNA
958                              lincRNA
959                              lincRNA
960                              lincRNA
961                              lincRNA
962                              lincRNA
963                              lincRNA
964                              lincRNA
965                              lincRNA
966                              lincRNA
967                              lincRNA
968                              lincRNA
969                              lincRNA
970                              lincRNA
971                              lincRNA
972                              lincRNA
973                              lincRNA
974                              lincRNA
975                              lincRNA
976                              lincRNA
977                              lincRNA
978                       protein_coding
979                       protein_coding
980                       protein_coding
981                       protein_coding
982                       protein_coding
983                       protein_coding
984                       protein_coding
985                       protein_coding
986                       protein_coding
987                       protein_coding
988                       protein_coding
989                       protein_coding
990                       protein_coding
991                       protein_coding
992                       protein_coding
993                       protein_coding
994                       protein_coding
995                       protein_coding
996                       protein_coding
997                       protein_coding
998                       protein_coding
999                       protein_coding
1000                      protein_coding
1001                      protein_coding
1002                      protein_coding
1003                      protein_coding
1004                      protein_coding
1005                      protein_coding
1006                      protein_coding
1007                      protein_coding
1008                      protein_coding
1009                      protein_coding
1010                      protein_coding
1011                      protein_coding
1012                      protein_coding
1013                      protein_coding
1014                      protein_coding
1015                      protein_coding
1016                      protein_coding
1017                      protein_coding
1018                      protein_coding
1019                      protein_coding
1020                      protein_coding
1021                      protein_coding
1022                      protein_coding
1023                      protein_coding
1024                      protein_coding
1025                      protein_coding
1026                      protein_coding
1027                      protein_coding
1028                      protein_coding
1029                      protein_coding
1030                      protein_coding
1031                      protein_coding
1032                      protein_coding
1033                      protein_coding
1034                      protein_coding
1035                      protein_coding
1036                      protein_coding
1037                      protein_coding
1038                      protein_coding
1039                      protein_coding
1040                      protein_coding
1041                      protein_coding
1042                      protein_coding
1043                      protein_coding
1044                      protein_coding
1045                      protein_coding
1046                      protein_coding
1047                      protein_coding
1048                      protein_coding
1049                      protein_coding
1050                processed_pseudogene
1051                      protein_coding
1052                      protein_coding
1053                      protein_coding
1054                      protein_coding
1055                      protein_coding
1056                      protein_coding
1057                      protein_coding
1058                      protein_coding
1059                      protein_coding
1060                      protein_coding
1061                      protein_coding
1062                      protein_coding
1063                      protein_coding
1064                      protein_coding
1065                      protein_coding
1066                      protein_coding
1067                      protein_coding
1068                      protein_coding
1069                      protein_coding
1070                      protein_coding
1071                      protein_coding
1072                      protein_coding
1073                      protein_coding
1074                      protein_coding
1075                      protein_coding
1076                      protein_coding
1077                      protein_coding
1078                      protein_coding
1079                      protein_coding
1080                      protein_coding
1081                      protein_coding
1082                      protein_coding
1083                      protein_coding
1084                      protein_coding
1085                      protein_coding
1086                      protein_coding
1087                      protein_coding
1088                      protein_coding
1089                      protein_coding
1090                      protein_coding
1091                      protein_coding
1092                      protein_coding
1093                      protein_coding
1094                      protein_coding
1095                      protein_coding
1096                      protein_coding
1097                      protein_coding
1098                      protein_coding
1099                      protein_coding
1100                      protein_coding
1101                      protein_coding
1102                      protein_coding
1103                      protein_coding
1104                      protein_coding
1105                      protein_coding
1106                      protein_coding
1107                      protein_coding
1108                      protein_coding
1109                      protein_coding
1110                      protein_coding
1111                      protein_coding
1112                      protein_coding
1113                      protein_coding
1114                      protein_coding
1115                      protein_coding
1116                      protein_coding
1117                      protein_coding
1118                      protein_coding
1119                      protein_coding
1120                      protein_coding
1121                      protein_coding
1122                      protein_coding
1123                             lincRNA
1124                             lincRNA
1125                             lincRNA
1126                             lincRNA
1127                             lincRNA
1128                             lincRNA
1129                             lincRNA
1130                             lincRNA
1131                      protein_coding
1132                      protein_coding
1133                      protein_coding
1134                      protein_coding
1135                      protein_coding
1136                      protein_coding
1137                      protein_coding
1138                      protein_coding
1139                      protein_coding
1140                      protein_coding
1141                      protein_coding
1142                      protein_coding
1143                      protein_coding
1144                      protein_coding
1145                      protein_coding
1146                      protein_coding
1147                      protein_coding
1148                      protein_coding
1149                      protein_coding
1150                      protein_coding
1151                      protein_coding
1152                      protein_coding
1153                      protein_coding
1154                      protein_coding
1155                      protein_coding
1156                      protein_coding
1157                      protein_coding
1158                      protein_coding
1159                      protein_coding
1160                      protein_coding
1161                      protein_coding
1162                      protein_coding
1163                      protein_coding
1164                      protein_coding
1165                      protein_coding
1166                      protein_coding
1167                      protein_coding
1168                      protein_coding
1169                      protein_coding
1170                      protein_coding
1171                      protein_coding
1172                      protein_coding
1173                      protein_coding
1174                      protein_coding
1175                      protein_coding
1176                      protein_coding
1177                      protein_coding
1178                      protein_coding
1179                      protein_coding
1180                      protein_coding
1181                      protein_coding
1182                      protein_coding
1183                      protein_coding
1184                      protein_coding
1185                      protein_coding
1186                      protein_coding
1187                      protein_coding
1188                      protein_coding
1189                      protein_coding
1190                      protein_coding
1191                      protein_coding
1192                      protein_coding
1193                      protein_coding
1194                      protein_coding
1195                      protein_coding
1196                      protein_coding
1197                      protein_coding
1198                      protein_coding
1199                      protein_coding
1200                      protein_coding
1201                      protein_coding
1202                      protein_coding
1203                      protein_coding
1204                      protein_coding
1205                      protein_coding
1206                      protein_coding
1207                      protein_coding
1208                      protein_coding
1209                      protein_coding
1210                      protein_coding
1211                      protein_coding
1212                      protein_coding
1213                      protein_coding
1214                      protein_coding
1215                      protein_coding
1216                      protein_coding
1217                      protein_coding
1218                      protein_coding
1219                      protein_coding
1220                      protein_coding
1221                      protein_coding
1222                      protein_coding
1223                      protein_coding
1224                      protein_coding
1225                      protein_coding
1226                      protein_coding
1227                      protein_coding
1228                      protein_coding
1229                      protein_coding
1230                      protein_coding
1231                      protein_coding
1232                      protein_coding
1233                      protein_coding
1234                      protein_coding
1235                      protein_coding
1236                      protein_coding
1237                      protein_coding
1238                      protein_coding
1239                      protein_coding
1240                      protein_coding
1241                      protein_coding
1242                      protein_coding
1243                      protein_coding
1244                      protein_coding
1245                      protein_coding
1246                           antisense
1247                           antisense
1248                             lincRNA
1249                      protein_coding
1250                      protein_coding
1251                      protein_coding
1252                      protein_coding
1253                      protein_coding
1254                      protein_coding
1255                      protein_coding
1256                      protein_coding
1257                      protein_coding
1258                      protein_coding
1259                      protein_coding
1260                      protein_coding
1261                      protein_coding
1262                      protein_coding
1263                      protein_coding
1264                      protein_coding
1265                      protein_coding
1266                      protein_coding
1267                      protein_coding
1268                      protein_coding
1269                      protein_coding
1270                      protein_coding
1271                      protein_coding
1272                      protein_coding
1273                      protein_coding
1274                      protein_coding
1275                      protein_coding
1276                      protein_coding
1277                      protein_coding
1278                      protein_coding
1279                      protein_coding
1280                      protein_coding
1281                      protein_coding
1282                      protein_coding
1283                      protein_coding
1284                      protein_coding
1285                      protein_coding
1286                      protein_coding
1287                      protein_coding
1288                      protein_coding
1289                      protein_coding
1290                      protein_coding
1291                      protein_coding
1292                      protein_coding
1293                      protein_coding
1294                      protein_coding
1295                      protein_coding
1296                      protein_coding
1297                      protein_coding
1298                      protein_coding
1299                      protein_coding
1300                      protein_coding
1301                      protein_coding
1302                      protein_coding
1303                      protein_coding
1304                      protein_coding
1305                      protein_coding
1306                      protein_coding
1307                      protein_coding
1308                      protein_coding
1309                      protein_coding
1310                      protein_coding
1311                      protein_coding
1312                      protein_coding
1313                      protein_coding
1314                      protein_coding
1315                      protein_coding
1316                      protein_coding
1317                      protein_coding
1318                      protein_coding
1319                      protein_coding
1320                      protein_coding
1321                      protein_coding
1322                      protein_coding
1323                      protein_coding
1324                      protein_coding
1325                      protein_coding
1326                      protein_coding
1327                      protein_coding
1328                      protein_coding
1329                      protein_coding
1330                      protein_coding
1331                      protein_coding
1332                      protein_coding
1333                      protein_coding
1334                      protein_coding
1335                      protein_coding
1336                      protein_coding
1337                      protein_coding
1338                      protein_coding
1339                      protein_coding
1340                      protein_coding
1341                      protein_coding
1342                      protein_coding
1343                      protein_coding
1344                      protein_coding
1345                      protein_coding
1346                      protein_coding
1347                      protein_coding
1348                      protein_coding
1349                      protein_coding
1350                      protein_coding
1351                      protein_coding
1352                      protein_coding
1353                      protein_coding
1354                      protein_coding
1355                      protein_coding
1356                      protein_coding
1357                      protein_coding
1358                      protein_coding
1359                      protein_coding
1360                      protein_coding
1361                      protein_coding
1362                      protein_coding
1363                      protein_coding
1364                      protein_coding
1365                      protein_coding
1366                             lincRNA
1367                      protein_coding
1368                      protein_coding
1369                             lincRNA
1370                      protein_coding
1371                      protein_coding
1372                      protein_coding
1373                      protein_coding
1374                      protein_coding
1375                      protein_coding
1376                      protein_coding
1377                      protein_coding
1378                      protein_coding
1379                      protein_coding
1380                      protein_coding
1381                      protein_coding
1382                      protein_coding
1383                      protein_coding
1384                      protein_coding
1385                      protein_coding
1386                      protein_coding
1387                      protein_coding
1388                      protein_coding
1389                      protein_coding
1390                      protein_coding
1391                      protein_coding
1392                      protein_coding
1393                      protein_coding
1394                             lincRNA
1395                             lincRNA
1396                             lincRNA
1397                             lincRNA
1398                      protein_coding
1399                      protein_coding
1400                      protein_coding
1401                      protein_coding
1402                      protein_coding
1403                      protein_coding
1404                      protein_coding
1405                      protein_coding
1406                      protein_coding
1407                      protein_coding
1408                      protein_coding
1409                      protein_coding
1410                      protein_coding
1411                      protein_coding
1412                      protein_coding
1413                      protein_coding
1414                      protein_coding
1415                      protein_coding
1416                      protein_coding
1417                      protein_coding
1418                      protein_coding
1419                      protein_coding
1420                      protein_coding
1421                      protein_coding
1422                      protein_coding
1423                      protein_coding
1424                      protein_coding
1425                      protein_coding
1426                      protein_coding
1427                      protein_coding
1428                      protein_coding
1429                      protein_coding
1430                      protein_coding
1431                      protein_coding
1432                      protein_coding
1433                      protein_coding
1434                      protein_coding
1435                      protein_coding
1436                      protein_coding
1437                      protein_coding
1438                      protein_coding
1439                      protein_coding
1440                      protein_coding
1441                      protein_coding
1442                      protein_coding
1443                      protein_coding
1444                      protein_coding
1445                      protein_coding
1446                      protein_coding
1447                      protein_coding
1448                      protein_coding
1449                      protein_coding
1450                      protein_coding
1451                      protein_coding
1452                      protein_coding
1453                      protein_coding
1454                      protein_coding
1455                      protein_coding
1456                      protein_coding
1457                      protein_coding
1458                      protein_coding
1459                      protein_coding
1460                      protein_coding
1461                      protein_coding
1462                      protein_coding
1463                      protein_coding
1464                      protein_coding
1465                      protein_coding
1466                      protein_coding
1467                      protein_coding
1468                      protein_coding
1469                      protein_coding
1470                      protein_coding
1471                      protein_coding
1472                      protein_coding
1473                      protein_coding
1474                      protein_coding
1475                      protein_coding
1476                      protein_coding
1477                      protein_coding
1478                      protein_coding
1479                      protein_coding
1480                      protein_coding
1481                      protein_coding
1482                      protein_coding
1483                      protein_coding
1484                      protein_coding
1485                      protein_coding
1486                      protein_coding
1487                processed_pseudogene
1488                processed_pseudogene
1489                             lincRNA
1490                             lincRNA
1491                             lincRNA
1492                             lincRNA
1493                             lincRNA
1494                             lincRNA
1495                             lincRNA
1496                processed_pseudogene
1497                      protein_coding
1498                      protein_coding
1499                      protein_coding
1500                      protein_coding
1501                      protein_coding
1502                      protein_coding
1503                      protein_coding
1504                      protein_coding
1505                      protein_coding
1506                      protein_coding
1507                      protein_coding
1508                      protein_coding
1509                      protein_coding
1510                      protein_coding
1511                      protein_coding
1512                      protein_coding
1513                      protein_coding
1514                      protein_coding
1515                      protein_coding
1516                      protein_coding
1517                      protein_coding
1518                      protein_coding
1519                      protein_coding
1520                      protein_coding
1521                      protein_coding
1522                      protein_coding
1523                      protein_coding
1524                      protein_coding
1525                      protein_coding
1526                      protein_coding
1527                      protein_coding
1528                      protein_coding
1529                      protein_coding
1530                      protein_coding
1531                      protein_coding
1532                      protein_coding
1533                      protein_coding
1534                      protein_coding
1535                      protein_coding
1536                      protein_coding
1537                      protein_coding
1538                      protein_coding
1539                      protein_coding
1540                      protein_coding
1541                      protein_coding
1542                      protein_coding
1543                      protein_coding
1544                      protein_coding
1545                      protein_coding
1546                      protein_coding
1547                      protein_coding
1548                      protein_coding
1549                processed_pseudogene
1550                             lincRNA
1551                             lincRNA
1552                             lincRNA
1553                             lincRNA
1554                             lincRNA
1555                             lincRNA
1556  transcribed_unprocessed_pseudogene
1557  transcribed_unprocessed_pseudogene
1558  transcribed_unprocessed_pseudogene
1559  transcribed_unprocessed_pseudogene
1560  transcribed_unprocessed_pseudogene
1561  transcribed_unprocessed_pseudogene
1562  transcribed_unprocessed_pseudogene
1563  transcribed_unprocessed_pseudogene
1564  transcribed_unprocessed_pseudogene
1565  transcribed_unprocessed_pseudogene
1566  transcribed_unprocessed_pseudogene
1567  transcribed_unprocessed_pseudogene
1568  transcribed_unprocessed_pseudogene
1569  transcribed_unprocessed_pseudogene
1570  transcribed_unprocessed_pseudogene
1571  transcribed_unprocessed_pseudogene
1572  transcribed_unprocessed_pseudogene
1573  transcribed_unprocessed_pseudogene
1574  transcribed_unprocessed_pseudogene
1575  transcribed_unprocessed_pseudogene
1576  transcribed_unprocessed_pseudogene
1577  transcribed_unprocessed_pseudogene
1578  transcribed_unprocessed_pseudogene
1579  transcribed_unprocessed_pseudogene
1580  transcribed_unprocessed_pseudogene
1581  transcribed_unprocessed_pseudogene
1582  transcribed_unprocessed_pseudogene
1583  transcribed_unprocessed_pseudogene
1584  transcribed_unprocessed_pseudogene
1585  transcribed_unprocessed_pseudogene
1586  transcribed_unprocessed_pseudogene
1587  transcribed_unprocessed_pseudogene
1588  transcribed_unprocessed_pseudogene
1589  transcribed_unprocessed_pseudogene
1590  transcribed_unprocessed_pseudogene
1591  transcribed_unprocessed_pseudogene
1592  transcribed_unprocessed_pseudogene
1593  transcribed_unprocessed_pseudogene
1594  transcribed_unprocessed_pseudogene
1595  transcribed_unprocessed_pseudogene
1596  transcribed_unprocessed_pseudogene
1597  transcribed_unprocessed_pseudogene
1598  transcribed_unprocessed_pseudogene
1599  transcribed_unprocessed_pseudogene
1600  transcribed_unprocessed_pseudogene
1601  transcribed_unprocessed_pseudogene
1602  transcribed_unprocessed_pseudogene
1603  transcribed_unprocessed_pseudogene
1604  transcribed_unprocessed_pseudogene
1605  transcribed_unprocessed_pseudogene
1606  transcribed_unprocessed_pseudogene
1607  transcribed_unprocessed_pseudogene
1608  transcribed_unprocessed_pseudogene
1609  transcribed_unprocessed_pseudogene
1610  transcribed_unprocessed_pseudogene
1611  transcribed_unprocessed_pseudogene
1612  transcribed_unprocessed_pseudogene
1613  transcribed_unprocessed_pseudogene
1614  transcribed_unprocessed_pseudogene
1615  transcribed_unprocessed_pseudogene
1616  transcribed_unprocessed_pseudogene
1617  transcribed_unprocessed_pseudogene
1618  transcribed_unprocessed_pseudogene
1619                      protein_coding
1620                      protein_coding
1621                      protein_coding
1622                      protein_coding
1623                      protein_coding
1624                      protein_coding
1625                      protein_coding
1626                      protein_coding
1627                      protein_coding
1628                      protein_coding
1629                      protein_coding
1630                      protein_coding
1631                      protein_coding
1632                      protein_coding
1633                      protein_coding
1634                      protein_coding
1635                      protein_coding
1636                      protein_coding
1637                      protein_coding
1638                      protein_coding
1639                      protein_coding
1640                      protein_coding
1641                      protein_coding
1642                      protein_coding
1643                      protein_coding
1644                      protein_coding
1645                      protein_coding
1646                      protein_coding
1647                      protein_coding
1648                      protein_coding
1649                      protein_coding
1650                      protein_coding
1651                      protein_coding
1652                      protein_coding
1653                      protein_coding
1654                      protein_coding
1655                      protein_coding
1656                      protein_coding
1657                      protein_coding
1658                      protein_coding
1659                      protein_coding
1660                      protein_coding
1661                      protein_coding
1662                      protein_coding
1663                      protein_coding
1664                      protein_coding
1665                      protein_coding
1666                      protein_coding
1667                      protein_coding
1668                processed_pseudogene
1669                      protein_coding
1670                      protein_coding
1671                      protein_coding
1672                      protein_coding
1673                      protein_coding
1674                      protein_coding
1675                      protein_coding
1676                      protein_coding
1677                      protein_coding
1678                      protein_coding
1679                      protein_coding
1680                      protein_coding
1681                      protein_coding
1682                      protein_coding
1683                      protein_coding
1684                      protein_coding
1685                      protein_coding
1686                      protein_coding
1687                      protein_coding
1688                      protein_coding
1689                processed_transcript
1690                processed_transcript
1691                processed_transcript
1692                processed_transcript
1693                           antisense
1694                           antisense
1695                           antisense
1696                           antisense
1697                           antisense
1698                           antisense
1699                           antisense
1700                           antisense
1701                           antisense
1702                      protein_coding
1703                      protein_coding
1704                      protein_coding
1705                      protein_coding
1706                      protein_coding
1707                      protein_coding
1708                      protein_coding
1709                      protein_coding
1710                      protein_coding
1711                      protein_coding
1712                      protein_coding
1713                      protein_coding
1714                      protein_coding
1715                      protein_coding
1716                      protein_coding
1717                      protein_coding
1718                      protein_coding
1719                      protein_coding
1720                      protein_coding
1721                      protein_coding
1722                      protein_coding
1723                      protein_coding
1724                      protein_coding
1725                      protein_coding
1726                      protein_coding
1727                      protein_coding
1728                      protein_coding
1729                      protein_coding
1730                      protein_coding
1731                      protein_coding
1732                      protein_coding
1733                      protein_coding
1734                      protein_coding
1735                      protein_coding
1736                      protein_coding
1737                      protein_coding
1738                      protein_coding
1739                      protein_coding
1740                      protein_coding
1741                      protein_coding
1742                      protein_coding
1743                      protein_coding
1744                      protein_coding
1745                      protein_coding
1746                      protein_coding
1747                      protein_coding
1748                      protein_coding
1749                      protein_coding
1750                      protein_coding
1751                      protein_coding
1752                      protein_coding
1753                      protein_coding
1754                      protein_coding
1755                      protein_coding
1756                      protein_coding
1757                      protein_coding
1758                      protein_coding
1759                      protein_coding
1760                      protein_coding
1761                      protein_coding
1762                      protein_coding
1763                      protein_coding
1764                      protein_coding
1765                      protein_coding
1766                      protein_coding
1767                      protein_coding
1768                      protein_coding
1769                      protein_coding
1770                      protein_coding
1771                      protein_coding
1772                      protein_coding
1773                      protein_coding
1774                      protein_coding
1775                      protein_coding
1776                      protein_coding
1777                      protein_coding
1778                      protein_coding
1779                      protein_coding
1780                      protein_coding
1781                      protein_coding
1782                      protein_coding
1783                      protein_coding
1784                      protein_coding
1785                      protein_coding
1786                      protein_coding
1787                      protein_coding
1788                      protein_coding
1789                      protein_coding
1790                      protein_coding
1791                      protein_coding
1792                      protein_coding
1793                      protein_coding
1794                      protein_coding
1795                      protein_coding
1796                               snRNA
1797                               miRNA
1798                              snoRNA
1799                                rRNA
1800                               miRNA
1801                               snRNA
1802                      protein_coding
1803                      protein_coding
1804                      protein_coding
1805                      protein_coding
1806                      protein_coding
1807                      protein_coding
1808                      protein_coding
1809                      protein_coding
1810                      protein_coding
1811                      protein_coding
1812                      protein_coding
1813                      protein_coding
1814                      protein_coding
1815                      protein_coding
1816                      protein_coding
1817                      protein_coding
1818                      protein_coding
1819                      protein_coding
1820                      protein_coding
1821                      protein_coding
1822                      protein_coding
1823                      protein_coding
1824                      protein_coding
1825                      protein_coding
1826                      protein_coding
1827                      protein_coding
1828                      protein_coding
1829                      protein_coding
1830                      protein_coding
1831                      protein_coding
1832                      protein_coding
1833                      protein_coding
1834                      protein_coding
1835                      protein_coding
1836                      protein_coding
1837                      protein_coding
1838                      protein_coding
1839                      protein_coding
1840                      protein_coding
1841                      protein_coding
1842                      protein_coding
1843                      protein_coding
1844                      protein_coding
1845                      protein_coding
1846                      protein_coding
1847                      protein_coding
1848                           antisense
1849                           antisense
1850                      protein_coding
1851                      protein_coding
1852                      protein_coding
1853                      protein_coding
1854                      protein_coding
1855                      protein_coding
1856                      protein_coding
1857                      protein_coding
1858                      protein_coding
1859                      protein_coding
1860                      protein_coding
1861                      protein_coding
1862                      protein_coding
1863                      protein_coding
1864                      protein_coding
1865                      protein_coding
1866                      protein_coding
1867                      protein_coding
1868                      protein_coding
1869                      protein_coding
1870                      protein_coding
1871                      protein_coding
1872                      protein_coding
1873                      protein_coding
1874                      protein_coding
1875                      protein_coding
1876                      protein_coding
1877                      protein_coding
1878                      protein_coding
1879                      protein_coding
1880                      protein_coding
1881                      protein_coding
1882                      protein_coding
1883                      protein_coding
1884                      protein_coding
1885                      protein_coding
1886                      protein_coding
1887                      protein_coding
1888                      protein_coding
1889                      protein_coding
1890                      protein_coding
1891                      protein_coding
1892                      protein_coding
1893                      protein_coding
1894                      protein_coding
1895                      protein_coding
1896                      protein_coding
1897                      protein_coding
1898                      protein_coding
1899                      protein_coding
1900                      protein_coding
1901                      protein_coding
1902                      protein_coding
1903                      protein_coding
1904                      protein_coding
1905                      protein_coding
1906                      protein_coding
1907                      protein_coding
1908                      protein_coding
1909                      protein_coding
1910                      protein_coding
1911                      protein_coding
1912                      protein_coding
1913                      protein_coding
1914                      protein_coding
1915                           antisense
1916                           antisense
1917                           antisense
1918                           antisense
1919                processed_pseudogene
1920                             lincRNA
1921                      protein_coding
1922                      protein_coding
1923                      protein_coding
1924                      protein_coding
1925                      protein_coding
1926                      protein_coding
1927                      protein_coding
1928                      protein_coding
1929                      protein_coding
1930                      protein_coding
1931                      protein_coding
1932                                 TEC
1933                           antisense
1934                           antisense
1935                           antisense
1936                           antisense
1937                      protein_coding
1938                      protein_coding
1939                      protein_coding
1940                      protein_coding
1941                      protein_coding
1942                      protein_coding
1943                      protein_coding
1944                      protein_coding
1945                      protein_coding
1946                      protein_coding
1947                      protein_coding
1948                      protein_coding
1949                      protein_coding
1950                      protein_coding
1951                      protein_coding
1952                      protein_coding
1953                      protein_coding
1954                      protein_coding
1955                      protein_coding
1956                      protein_coding
1957                      protein_coding
1958                      protein_coding
1959                      protein_coding
1960                      protein_coding
1961                      protein_coding
1962                      protein_coding
1963                      protein_coding
1964                      protein_coding
1965                      protein_coding
1966                      protein_coding
1967                      protein_coding
1968                      protein_coding
1969                      protein_coding
1970                      protein_coding
1971                      protein_coding
1972                      protein_coding
1973                      protein_coding
1974                      protein_coding
1975                      protein_coding
1976                      protein_coding
1977                      protein_coding
1978                      protein_coding
1979                      protein_coding
1980                      protein_coding
1981                      protein_coding
1982                      protein_coding
1983                      protein_coding
1984                      protein_coding
1985                      protein_coding
1986                      protein_coding
1987                      protein_coding
1988                      protein_coding
1989                      protein_coding
1990                      protein_coding
1991                      protein_coding
1992                      protein_coding
1993                      protein_coding
1994                      protein_coding
1995                      protein_coding
1996                      protein_coding
1997                      protein_coding
1998                      protein_coding
1999                      protein_coding
2000                      protein_coding
2001                      protein_coding
2002                      protein_coding
2003                      protein_coding
2004                      protein_coding
2005                      protein_coding
2006                      protein_coding
2007                      protein_coding
2008                      protein_coding
2009                      protein_coding
2010                      protein_coding
2011                      protein_coding
2012                      protein_coding
2013                      protein_coding
2014                      protein_coding
2015                      protein_coding
2016                      protein_coding
2017                      protein_coding
2018                      protein_coding
2019                      protein_coding
2020                      protein_coding
2021                      protein_coding
2022                      protein_coding
2023                      protein_coding
2024                      protein_coding
2025                      protein_coding
2026                      protein_coding
2027                      protein_coding
2028                      protein_coding
2029                      protein_coding
2030                      protein_coding
2031                      protein_coding
2032                      protein_coding
2033                      protein_coding
2034                      protein_coding
2035                      protein_coding
2036                      protein_coding
2037                      protein_coding
2038                      protein_coding
2039                      protein_coding
2040                      protein_coding
2041                      protein_coding
2042                      protein_coding
2043                      protein_coding
2044                      protein_coding
2045                      protein_coding
2046                      protein_coding
2047                      protein_coding
2048                      protein_coding
2049                      protein_coding
2050                      protein_coding
2051                      protein_coding
2052                      protein_coding
2053                      protein_coding
2054                      protein_coding
2055                      protein_coding
2056                      protein_coding
2057                      protein_coding
2058                      protein_coding
2059                      protein_coding
2060                      protein_coding
2061                      protein_coding
2062                      protein_coding
2063                      protein_coding
2064                      protein_coding
2065                      protein_coding
2066                      protein_coding
2067                      protein_coding
2068                      protein_coding
2069                             lincRNA
2070                             lincRNA
2071                             lincRNA
2072                             lincRNA
2073                            misc_RNA
2074                            misc_RNA
2075                           antisense
2076                           antisense
2077                           antisense
2078                           antisense
2079                           antisense
2080                           antisense
2081                      protein_coding
2082                      protein_coding
2083                             lincRNA
2084                             lincRNA
2085                             lincRNA
2086                             lincRNA
2087                             lincRNA
2088                             lincRNA
2089                             lincRNA
2090                             lincRNA
2091                             lincRNA
2092                             lincRNA
2093                             lincRNA
2094                             lincRNA
2095                             lincRNA
2096                             lincRNA
2097                             lincRNA
2098                             lincRNA
2099                             lincRNA
2100                             lincRNA
2101                             lincRNA
2102                processed_pseudogene
2103                processed_pseudogene
2104                processed_pseudogene
2105                processed_pseudogene
2106                processed_pseudogene
2107                      protein_coding
2108                      protein_coding
2109                      protein_coding
2110                      protein_coding
2111                      protein_coding
2112                      protein_coding
2113                      protein_coding
2114                      protein_coding
2115                      protein_coding
2116                      protein_coding
2117                      protein_coding
2118                      protein_coding
2119                      protein_coding
2120                      protein_coding
2121                      protein_coding
2122                      protein_coding
2123                      protein_coding
2124                      protein_coding
2125                      protein_coding
2126                      protein_coding
2127                      protein_coding
2128                      protein_coding
2129                      protein_coding
2130                      protein_coding
2131                      protein_coding
2132                      protein_coding
2133                      protein_coding
2134                      protein_coding
2135                      protein_coding
2136                      protein_coding
2137                      protein_coding
2138                      protein_coding
2139                      protein_coding
2140                      protein_coding
2141                      protein_coding
2142                      protein_coding
2143                      protein_coding
2144                      protein_coding
2145                      protein_coding
2146                      protein_coding
2147                      protein_coding
2148                      protein_coding
2149                      protein_coding
2150                      protein_coding
2151                      protein_coding
2152                      protein_coding
2153                      protein_coding
2154                      protein_coding
2155                      protein_coding
2156                           antisense
2157                           antisense
2158                           antisense
2159                           antisense
2160                           antisense
2161                           antisense
2162                           antisense
2163                           antisense
2164                           antisense
2165                           antisense
2166                           antisense
2167                           antisense
2168                           antisense
2169                           antisense
2170                           antisense
2171                           antisense
2172                           antisense
2173                           antisense
2174                           antisense
2175                           antisense
2176                           antisense
2177                           antisense
2178                           antisense
2179                           antisense
2180                      protein_coding
2181                      protein_coding
2182                      protein_coding
2183                      protein_coding
2184                      protein_coding
2185                      protein_coding
2186                      protein_coding
2187                      protein_coding
2188                processed_pseudogene
2189                           antisense
2190                           antisense
2191                             lincRNA
2192                             lincRNA
2193                             lincRNA
2194                      protein_coding
2195                      protein_coding
2196                      protein_coding
2197                      protein_coding
2198                      protein_coding
2199                      protein_coding
2200                      protein_coding
2201                      protein_coding
2202                      protein_coding
2203                      protein_coding
2204                      protein_coding
2205                      protein_coding
2206                      protein_coding
2207                      protein_coding
2208                      protein_coding
2209                      protein_coding
2210                      protein_coding
2211                      protein_coding
2212                      protein_coding
2213                      protein_coding
2214                      protein_coding
2215                      protein_coding
2216                      protein_coding
2217                      protein_coding
2218                      protein_coding
2219                      protein_coding
2220                      protein_coding
2221                      protein_coding
2222                      protein_coding
2223                      protein_coding
2224                      protein_coding
2225                      protein_coding
2226                      protein_coding
2227                      protein_coding
2228                      protein_coding
2229                      protein_coding
2230                      protein_coding
2231                      protein_coding
2232                      protein_coding
2233                      protein_coding
2234                      protein_coding
2235                      protein_coding
2236                      protein_coding
2237                      protein_coding
2238                      protein_coding
2239                      protein_coding
2240                      protein_coding
2241                             lincRNA
2242                             lincRNA
2243                             lincRNA
2244                           antisense
2245                           antisense
2246                           antisense
2247                           antisense
2248                           antisense
2249                           antisense
2250                           antisense
2251                           antisense
2252                           antisense
2253                      protein_coding
2254                           antisense
2255                           antisense
2256                           antisense
2257                           antisense
2258                           antisense
2259                           antisense
2260                           antisense
2261                           antisense
2262                           antisense
2263                           antisense
2264                           antisense
2265                           antisense
2266                           antisense
2267                           antisense
2268                           antisense
2269                           antisense
2270                           antisense
2271                           antisense
2272                           antisense
2273                           antisense
2274                           antisense
2275                           antisense
2276                           antisense
2277                           antisense
2278                           antisense
2279                           antisense
2280                           antisense
2281                           antisense
2282                           antisense
2283                      protein_coding
2284                      protein_coding
2285                      protein_coding
2286                      protein_coding
2287                      protein_coding
2288                      protein_coding
2289                      protein_coding
2290                      protein_coding
2291                      protein_coding
2292                      protein_coding
2293                      protein_coding
2294                      protein_coding
2295                      protein_coding
2296                      protein_coding
2297                      protein_coding
2298                      protein_coding
2299                      protein_coding
2300                      protein_coding
2301                      protein_coding
2302                      protein_coding
2303                      protein_coding
2304                      protein_coding
2305                      protein_coding
2306                      protein_coding
2307                      protein_coding
2308                      protein_coding
2309                      protein_coding
2310                      protein_coding
2311                      protein_coding
2312                      protein_coding
2313                      protein_coding
2314                      protein_coding
2315                      protein_coding
2316                      protein_coding
2317                      protein_coding
2318                      protein_coding
2319                      protein_coding
2320                      protein_coding
2321                      protein_coding
2322                      protein_coding
2323                      protein_coding
2324                      protein_coding
2325                      protein_coding
2326                      protein_coding
2327                      protein_coding
2328                      protein_coding
2329                      protein_coding
2330                      protein_coding
2331                      protein_coding
2332                      protein_coding
2333                      protein_coding
2334                      protein_coding
2335                      protein_coding
2336                      protein_coding
2337                      protein_coding
2338                      protein_coding
2339                      protein_coding
2340                      protein_coding
2341                      protein_coding
2342                      protein_coding
2343                      protein_coding
2344                      protein_coding
2345                      protein_coding
2346                      protein_coding
2347                      protein_coding
2348                      protein_coding
2349                      protein_coding
2350                      protein_coding
2351                      protein_coding
2352                      protein_coding
2353                      protein_coding
2354                      protein_coding
2355                      protein_coding
2356                      protein_coding
2357                      protein_coding
2358                      protein_coding
2359                      protein_coding
2360                      protein_coding
2361                      protein_coding
2362                      protein_coding
2363                      protein_coding
2364                      protein_coding
2365                      protein_coding
2366                      protein_coding
2367                      protein_coding
2368                      protein_coding
2369                      protein_coding
2370                      protein_coding
2371                      protein_coding
2372                      protein_coding
2373                      protein_coding
2374                      protein_coding
2375                      protein_coding
2376                      protein_coding
2377                      protein_coding
2378                      protein_coding
2379                      protein_coding
2380                      protein_coding
2381                      protein_coding
2382                      protein_coding
2383                      protein_coding
2384                      protein_coding
2385                      protein_coding
2386                      protein_coding
2387                      protein_coding
2388                      protein_coding
2389                      protein_coding
2390                      protein_coding
2391                      protein_coding
2392                      protein_coding
2393                      protein_coding
2394                      protein_coding
2395                      protein_coding
2396                      protein_coding
2397                      protein_coding
2398                      protein_coding
2399                      protein_coding
2400                      protein_coding
2401                      protein_coding
2402                      protein_coding
2403                      protein_coding
2404                      protein_coding
2405                      protein_coding
2406                      protein_coding
2407                      protein_coding
2408                      protein_coding
2409                      protein_coding
2410                      protein_coding
2411                      protein_coding
2412                      protein_coding
2413                      protein_coding
2414                      protein_coding
2415                      protein_coding
2416                      protein_coding
2417                      protein_coding
2418                      protein_coding
2419                      protein_coding
2420                      protein_coding
2421                      protein_coding
2422                      protein_coding
2423                      protein_coding
2424                      protein_coding
2425                      protein_coding
2426                      protein_coding
2427                      protein_coding
2428                      protein_coding
2429                      protein_coding
2430                      protein_coding
2431                      protein_coding
2432                      protein_coding
2433                      protein_coding
2434                      protein_coding
2435                      protein_coding
2436                      protein_coding
2437                      protein_coding
2438                      protein_coding
2439                      protein_coding
2440                      protein_coding
2441                      protein_coding
2442                      protein_coding
2443                      protein_coding
2444                      protein_coding
2445                      protein_coding
2446                      protein_coding
2447                      protein_coding
2448                      protein_coding
2449                      protein_coding
2450                      protein_coding
2451                      protein_coding
2452                      protein_coding
2453                      protein_coding
2454                      protein_coding
2455                      protein_coding
2456                      protein_coding
2457                      protein_coding
2458                      protein_coding
2459                      protein_coding
2460                           antisense
2461                           antisense
2462                           antisense
2463                             lincRNA
2464                             lincRNA
2465                             lincRNA
2466                             lincRNA
2467                             lincRNA
2468                      sense_intronic
2469                      sense_intronic
2470                      sense_intronic
2471                      sense_intronic
2472                      protein_coding
2473                      protein_coding
2474                      protein_coding
2475                      protein_coding
2476                      protein_coding
2477                      protein_coding
2478                      protein_coding
2479                      protein_coding
2480                      protein_coding
2481                      protein_coding
2482                      protein_coding
2483                      protein_coding
2484                      protein_coding
2485                      protein_coding
2486                      protein_coding
2487                      protein_coding
2488                      protein_coding
2489                      protein_coding
2490                      protein_coding
2491                      protein_coding
2492                      protein_coding
2493                      protein_coding
2494                      protein_coding
2495                      protein_coding
2496                      protein_coding
2497                      protein_coding
2498                      protein_coding
2499                      protein_coding
2500                      protein_coding
2501                      protein_coding
2502                      protein_coding
2503                      protein_coding
2504                      protein_coding
2505                      protein_coding
2506                      protein_coding
2507                      protein_coding
2508                      protein_coding
2509                      protein_coding
2510                      protein_coding
2511                      protein_coding
2512                      protein_coding
2513                      protein_coding
2514                      protein_coding
2515                      protein_coding
2516                      protein_coding
2517                      protein_coding
2518                      protein_coding
2519                             lincRNA
2520                             lincRNA
2521                             lincRNA
2522                             lincRNA
2523                             lincRNA
2524                             lincRNA
2525                             lincRNA
2526                           antisense
2527                           antisense
2528                            misc_RNA
2529                              snoRNA
2530                               miRNA
2531                            misc_RNA
2532                      protein_coding
2533                      protein_coding
2534                      protein_coding
2535                      protein_coding
2536                      protein_coding
2537                      protein_coding
2538                      protein_coding
2539                      protein_coding
2540                      protein_coding
2541                      protein_coding
2542                processed_pseudogene
2543                               miRNA
2544                            misc_RNA
2545                            misc_RNA
2546                              snoRNA
2547                      protein_coding
2548                      protein_coding
2549                      protein_coding
2550                      protein_coding
2551                      protein_coding
2552                      protein_coding
2553                      protein_coding
2554                      protein_coding
2555                      protein_coding
2556                      protein_coding
2557                      protein_coding
2558                      protein_coding
2559                      protein_coding
2560                      protein_coding
2561                      protein_coding
2562                      protein_coding
2563                      protein_coding
2564                      protein_coding
2565                      protein_coding
2566                      protein_coding
2567                      protein_coding
2568                      protein_coding
2569                      protein_coding
2570                      protein_coding
2571                      protein_coding
2572                      protein_coding
2573                      protein_coding
2574                      protein_coding
2575                      protein_coding
2576                      protein_coding
2577                      protein_coding
2578                      protein_coding
2579                      protein_coding
2580                      protein_coding
2581                      protein_coding
2582                      protein_coding
2583                      protein_coding
2584                      protein_coding
2585                      protein_coding
2586                      protein_coding
2587                      protein_coding
2588                      protein_coding
2589                      protein_coding
2590                      protein_coding
2591                      protein_coding
2592                      protein_coding
2593                      protein_coding
2594                      protein_coding
2595                      protein_coding
2596                      protein_coding
2597                      protein_coding
2598                      protein_coding
2599                      protein_coding
2600                      protein_coding
2601                      protein_coding
2602                      protein_coding
2603                      protein_coding
2604                      protein_coding
2605                      protein_coding
2606                      protein_coding
2607                      protein_coding
2608                      protein_coding
2609                      protein_coding
2610                      protein_coding
2611                      protein_coding
2612                      protein_coding
2613                      protein_coding
2614                      protein_coding
2615                      protein_coding
2616                      protein_coding
2617                      protein_coding
2618                      protein_coding
2619                      protein_coding
2620                      protein_coding
2621                      protein_coding
2622                      protein_coding
2623                      protein_coding
2624                      protein_coding
2625                      protein_coding
2626                      protein_coding
2627                      protein_coding
2628                      protein_coding
2629                      protein_coding
2630                      protein_coding
2631                      protein_coding
2632                      protein_coding
2633                      protein_coding
2634                      protein_coding
2635                      protein_coding
2636                      protein_coding
2637                      protein_coding
2638                      protein_coding
2639                      protein_coding
2640                      protein_coding
2641                      protein_coding
2642                      protein_coding
2643                      protein_coding
2644                      protein_coding
2645                      protein_coding
2646                      protein_coding
2647                      protein_coding
2648                      protein_coding
2649                      protein_coding
2650                      protein_coding
2651                      protein_coding
2652                      protein_coding
2653                      protein_coding
2654                      protein_coding
2655                      protein_coding
2656                      protein_coding
2657                      protein_coding
2658                      protein_coding
2659                      protein_coding
2660                      protein_coding
2661                      protein_coding
2662                      protein_coding
2663                      protein_coding
2664                      protein_coding
2665                      protein_coding
2666                      protein_coding
2667                      protein_coding
2668                      protein_coding
2669                      protein_coding
2670                      protein_coding
2671                      protein_coding
2672                      protein_coding
2673                      protein_coding
2674                      protein_coding
2675                      protein_coding
2676                      protein_coding
2677                      protein_coding
2678                      protein_coding
2679                      protein_coding
2680                      protein_coding
2681                      protein_coding
2682                      protein_coding
2683                      protein_coding
2684                      protein_coding
2685                      protein_coding
2686                      protein_coding
2687                      protein_coding
2688                      protein_coding
2689                      protein_coding
2690                      protein_coding
2691                      protein_coding
2692                           antisense
2693                           antisense
2694                             lincRNA
2695                             lincRNA
2696                             lincRNA
2697                             lincRNA
2698                             lincRNA
2699                             lincRNA
2700                             lincRNA
2701                             lincRNA
2702                             lincRNA
2703                             lincRNA
2704                             lincRNA
2705                             lincRNA
2706                             lincRNA
2707                             lincRNA
2708                             lincRNA
2709                             lincRNA
2710                             lincRNA
2711                             lincRNA
2712                             lincRNA
2713                             lincRNA
2714                             lincRNA
2715                      protein_coding
2716                      protein_coding
2717                      protein_coding
2718                      protein_coding
2719                      protein_coding
2720                      protein_coding
2721                      protein_coding
2722                      protein_coding
2723                      protein_coding
2724                      protein_coding
2725                      protein_coding
2726                      protein_coding
2727                      protein_coding
2728                      protein_coding
2729                      protein_coding
2730                      protein_coding
2731                      protein_coding
2732                      protein_coding
2733                      protein_coding
2734                      protein_coding
2735                      protein_coding
2736                      protein_coding
2737                      protein_coding
2738                      protein_coding
2739                      protein_coding
2740                      protein_coding
2741                      protein_coding
2742                      protein_coding
2743                      protein_coding
2744                      protein_coding
2745                      protein_coding
2746                      protein_coding
2747                      protein_coding
2748                      protein_coding
2749                      protein_coding
2750                      protein_coding
2751                      protein_coding
2752                      protein_coding
2753                      protein_coding
2754                      protein_coding
2755                      protein_coding
2756                      protein_coding
2757                      protein_coding
2758                      protein_coding
2759                      protein_coding
2760                      protein_coding
2761                      protein_coding
2762                      protein_coding
2763                      protein_coding
2764                      protein_coding
2765                      protein_coding
2766                      protein_coding
2767                      protein_coding
2768                      protein_coding
2769                      protein_coding
2770                      protein_coding
2771                      protein_coding
2772                      protein_coding
2773                      protein_coding
2774                      protein_coding
2775                      protein_coding
2776                      protein_coding
2777                      protein_coding
2778                      protein_coding
2779                      protein_coding
2780                              snoRNA
2781                               miRNA
2782                               miRNA
2783                      sense_intronic
2784                      sense_intronic
2785                      sense_intronic
2786                      protein_coding
2787                             lincRNA
2788                             lincRNA
2789                             lincRNA
2790                             lincRNA
2791                processed_pseudogene
2792                      protein_coding
2793                      protein_coding
2794                      protein_coding
2795                      protein_coding
2796                      protein_coding
2797                      protein_coding
2798                      protein_coding
2799                      protein_coding
2800                      protein_coding
2801                      protein_coding
2802                      protein_coding
2803                      protein_coding
2804                      protein_coding
2805                      protein_coding
2806                      protein_coding
2807                      protein_coding
2808                      protein_coding
2809                      protein_coding
2810                      protein_coding
2811                      protein_coding
2812                      protein_coding
2813                      protein_coding
2814                      protein_coding
2815                      protein_coding
2816                      protein_coding
2817                      protein_coding
2818                      protein_coding
2819                      protein_coding
2820                      protein_coding
2821                      protein_coding
2822                      protein_coding
2823                      protein_coding
2824                      protein_coding
2825                      protein_coding
2826                      protein_coding
2827                      protein_coding
2828                      protein_coding
2829                      protein_coding
2830                      protein_coding
2831                      protein_coding
2832                      protein_coding
2833                      protein_coding
2834                      protein_coding
2835                      protein_coding
2836                      protein_coding
2837                      protein_coding
2838                      protein_coding
2839                      protein_coding
2840                      sense_intronic
2841                      sense_intronic
2842                      sense_intronic
2843                      sense_intronic
2844                      sense_intronic
2845                      sense_intronic
2846                             lincRNA
2847                             lincRNA
2848                processed_pseudogene
2849                      protein_coding
2850                      protein_coding
2851                      protein_coding
2852                      protein_coding
2853                      protein_coding
2854                      protein_coding
2855                      protein_coding
2856                      protein_coding
2857                      protein_coding
2858                      protein_coding
2859                      protein_coding
2860                      protein_coding
2861                      protein_coding
2862                      protein_coding
2863                      protein_coding
2864                      protein_coding
2865                      protein_coding
2866                      protein_coding
2867                      protein_coding
2868                      protein_coding
2869                      protein_coding
2870                      protein_coding
2871                      protein_coding
2872                      protein_coding
2873                      protein_coding
2874                      protein_coding
2875                      protein_coding
2876                      protein_coding
2877                      protein_coding
2878                      protein_coding
2879                      protein_coding
2880                      protein_coding
2881                      protein_coding
2882                      protein_coding
2883                      protein_coding
2884                      protein_coding
2885                      protein_coding
2886                      protein_coding
2887                      protein_coding
2888                      protein_coding
2889                      protein_coding
2890                      protein_coding
2891                      protein_coding
2892                      protein_coding
2893                      protein_coding
2894                      protein_coding
2895                      protein_coding
2896                      protein_coding
2897                      protein_coding
2898                      protein_coding
2899                      protein_coding
2900                      protein_coding
2901                      protein_coding
2902                      protein_coding
2903                      protein_coding
2904                      protein_coding
2905                      protein_coding
2906                      protein_coding
2907                      protein_coding
2908                      protein_coding
2909                      protein_coding
2910                      protein_coding
2911                      protein_coding
2912                      protein_coding
2913                      protein_coding
2914                      protein_coding
2915                      protein_coding
2916                      protein_coding
2917                      protein_coding
2918                      protein_coding
2919                      protein_coding
2920                      protein_coding
2921                      protein_coding
2922                      protein_coding
2923                      protein_coding
2924                      protein_coding
2925                      protein_coding
2926                      protein_coding
2927                      protein_coding
2928                      protein_coding
2929                      protein_coding
2930                      protein_coding
2931                      protein_coding
2932                      protein_coding
2933                      protein_coding
2934                      protein_coding
2935                      protein_coding
2936                      protein_coding
2937                      protein_coding
2938                      protein_coding
2939                      protein_coding
2940                      protein_coding
2941                      protein_coding
2942                      protein_coding
2943                      protein_coding
2944                      protein_coding
2945                      protein_coding
2946                      protein_coding
2947                      protein_coding
2948                      protein_coding
2949                      protein_coding
2950                      protein_coding
2951                      protein_coding
2952                      protein_coding
2953                      protein_coding
2954                      protein_coding
2955                      protein_coding
2956                      protein_coding
2957                      protein_coding
2958                      protein_coding
2959                      protein_coding
2960                      protein_coding
2961                      protein_coding
2962                      protein_coding
2963                      protein_coding
2964                      protein_coding
2965                      protein_coding
2966                processed_pseudogene
2967                                 TEC
2968                             lincRNA
2969                             lincRNA
2970                             lincRNA
2971                             lincRNA
2972                             lincRNA
2973                             lincRNA
2974                             lincRNA
2975                             lincRNA
2976                      protein_coding
2977                      protein_coding
2978                             lincRNA
2979                             lincRNA
2980                             lincRNA
2981                      protein_coding
2982                      protein_coding
2983                      protein_coding
2984                      protein_coding
2985                      protein_coding
2986                      protein_coding
2987                      protein_coding
2988                      protein_coding
2989                      protein_coding
2990                      protein_coding
2991                      protein_coding
2992                      protein_coding
2993                      protein_coding
2994                      protein_coding
2995                      protein_coding
2996                      protein_coding
2997                      protein_coding
2998                      protein_coding
2999                      protein_coding
3000                      protein_coding
3001                      protein_coding
3002                      protein_coding
3003                      protein_coding
3004                      protein_coding
3005                      protein_coding
3006                      protein_coding
3007                      protein_coding
3008                      protein_coding
3009                      protein_coding
3010                      protein_coding
3011                      protein_coding
3012                      protein_coding
3013                      protein_coding
3014                      protein_coding
3015                      protein_coding
3016                      protein_coding
3017                      protein_coding
3018                      protein_coding
3019                      protein_coding
3020                      protein_coding
3021                      protein_coding
3022                      protein_coding
3023                      protein_coding
3024                      protein_coding
3025                      protein_coding
3026                      protein_coding
3027                      protein_coding
3028                      protein_coding
3029                      protein_coding
3030                      protein_coding
3031                      protein_coding
3032                      protein_coding
3033                      protein_coding
3034                      protein_coding
3035                      protein_coding
3036                      protein_coding
3037                      protein_coding
3038                      protein_coding
3039                      protein_coding
3040                      protein_coding
3041                      protein_coding
3042                      protein_coding
3043                      protein_coding
3044                      protein_coding
3045                      protein_coding
3046                      protein_coding
3047                      protein_coding
3048                      protein_coding
3049                      protein_coding
3050                      protein_coding
3051                      protein_coding
3052                      protein_coding
3053                      protein_coding
3054                      protein_coding
3055                      protein_coding
3056                      protein_coding
3057                      protein_coding
3058                      protein_coding
3059                      protein_coding
3060                      protein_coding
3061                      protein_coding
3062                      protein_coding
3063                      protein_coding
3064                      protein_coding
3065                      protein_coding
3066                      protein_coding
3067                      protein_coding
3068                      protein_coding
3069                      protein_coding
3070                      protein_coding
3071                      protein_coding
3072                      protein_coding
3073                      protein_coding
3074                      protein_coding
3075                      protein_coding
3076                      protein_coding
3077                      protein_coding
3078                      protein_coding
3079                      protein_coding
3080                      protein_coding
3081                      protein_coding
3082                      protein_coding
3083                      protein_coding
3084                      protein_coding
3085                      protein_coding
3086                      protein_coding
3087                      protein_coding
3088                      protein_coding
3089                      protein_coding
3090                      protein_coding
3091                      protein_coding
3092                      protein_coding
3093                      protein_coding
3094                      protein_coding
3095                      protein_coding
3096                      protein_coding
3097                      protein_coding
3098                      protein_coding
3099                      protein_coding
3100                      protein_coding
3101                      protein_coding
3102                      protein_coding
3103                      protein_coding
3104                      protein_coding
3105                      protein_coding
3106                      protein_coding
3107                      protein_coding
3108                      protein_coding
3109                      protein_coding
3110                      protein_coding
3111                      protein_coding
3112                      protein_coding
3113                      protein_coding
3114                      protein_coding
3115                      protein_coding
3116                      protein_coding
3117                      protein_coding
3118                      protein_coding
3119                      protein_coding
3120                      protein_coding
3121                      protein_coding
3122                      protein_coding
3123                      protein_coding
3124                      protein_coding
3125                      protein_coding
3126                      protein_coding
3127                      protein_coding
3128                      protein_coding
3129                      protein_coding
3130                      protein_coding
3131                      protein_coding
3132                      protein_coding
3133                      protein_coding
3134                      protein_coding
3135                      protein_coding
3136                      protein_coding
3137                      protein_coding
3138                      protein_coding
3139                      protein_coding
3140                      protein_coding
3141                      protein_coding
3142                      protein_coding
3143                      protein_coding
3144                      protein_coding
3145                      protein_coding
3146                      protein_coding
3147                      protein_coding
3148                      protein_coding
3149                processed_pseudogene
3150                             lincRNA
3151                             lincRNA
3152                             lincRNA
3153                             lincRNA
3154                      protein_coding
3155                      protein_coding
3156                      protein_coding
3157                      protein_coding
3158                      protein_coding
3159                      protein_coding
3160                      protein_coding
3161                      protein_coding
3162                      protein_coding
3163                      protein_coding
3164                      protein_coding
3165                      protein_coding
3166                      protein_coding
3167                      protein_coding
3168                      protein_coding
3169                      protein_coding
3170                      protein_coding
3171                      protein_coding
3172                      protein_coding
3173                      protein_coding
3174                      protein_coding
3175                      protein_coding
3176                      protein_coding
3177                      protein_coding
3178                      protein_coding
3179                      protein_coding
3180                      protein_coding
3181                      protein_coding
3182                      protein_coding
3183                      protein_coding
3184                      protein_coding
3185                      protein_coding
3186                      protein_coding
3187                      protein_coding
3188                      protein_coding
3189                      protein_coding
3190                      protein_coding
3191                      protein_coding
3192                      protein_coding
3193                      protein_coding
3194                      protein_coding
3195                      protein_coding
3196                      protein_coding
3197                      protein_coding
3198                      protein_coding
3199                      protein_coding
3200                      protein_coding
3201                      protein_coding
3202                      protein_coding
3203                      protein_coding
3204                      protein_coding
3205                      protein_coding
3206                      protein_coding
3207                      protein_coding
3208                      protein_coding
3209                      protein_coding
3210                      protein_coding
3211                      protein_coding
3212                      protein_coding
3213                      protein_coding
3214                      protein_coding
3215                      protein_coding
3216                      protein_coding
3217                      protein_coding
3218                      protein_coding
3219                      protein_coding
3220                      protein_coding
3221                      protein_coding
3222                      protein_coding
3223                      protein_coding
3224                      protein_coding
3225                      protein_coding
3226                      protein_coding
3227                      protein_coding
3228                      protein_coding
3229                      protein_coding
3230                      protein_coding
3231                      protein_coding
3232                      protein_coding
3233                      protein_coding
3234                      protein_coding
3235                      protein_coding
3236                      protein_coding
3237                      protein_coding
3238                      protein_coding
3239                      protein_coding
3240                      protein_coding
3241                      protein_coding
3242                      protein_coding
3243                      protein_coding
3244                      protein_coding
3245                      protein_coding
3246                      protein_coding
3247                      protein_coding
3248                      protein_coding
3249                      protein_coding
3250                      protein_coding
3251                      protein_coding
3252                      protein_coding
3253                      protein_coding
3254                      protein_coding
3255                      protein_coding
3256                      protein_coding
3257                      protein_coding
3258                      protein_coding
3259                      protein_coding
3260                      protein_coding
3261                      protein_coding
3262                      protein_coding
3263                      protein_coding
3264                      protein_coding
3265                      protein_coding
3266                      protein_coding
3267                      protein_coding
3268                      protein_coding
3269                      protein_coding
3270                      protein_coding
3271                      protein_coding
3272                      protein_coding
3273                      protein_coding
3274                      protein_coding
3275                      protein_coding
3276                      protein_coding
3277                      protein_coding
3278                      protein_coding
3279                      protein_coding
3280                      protein_coding
3281                      protein_coding
3282                      protein_coding
3283                      protein_coding
3284                      protein_coding
3285                      protein_coding
3286                      protein_coding
3287                      protein_coding
3288                      protein_coding
3289                      protein_coding
3290                      protein_coding
3291                      protein_coding
3292                      protein_coding
3293                      protein_coding
3294                      protein_coding
3295                      protein_coding
3296                      protein_coding
3297                      protein_coding
3298                      protein_coding
3299                      protein_coding
3300                      protein_coding
3301                      protein_coding
3302                      protein_coding
3303                      protein_coding
3304                      protein_coding
3305                      protein_coding
3306                      protein_coding
3307                      protein_coding
3308                      protein_coding
3309                      protein_coding
3310                      protein_coding
3311                      protein_coding
3312                      protein_coding
3313                      protein_coding
3314                      protein_coding
3315                      protein_coding
3316                      protein_coding
3317                      protein_coding
3318                      protein_coding
3319                      protein_coding
3320                      protein_coding
3321                      protein_coding
3322                      protein_coding
3323                      protein_coding
3324                      protein_coding
3325                      protein_coding
3326                      protein_coding
3327                      protein_coding
3328                      protein_coding
3329                      protein_coding
3330                      protein_coding
3331                      protein_coding
3332                      protein_coding
3333                      protein_coding
3334                      protein_coding
3335                      protein_coding
3336                      protein_coding
3337                      protein_coding
3338                      protein_coding
3339                      protein_coding
3340                      protein_coding
3341                      protein_coding
3342                      protein_coding
3343                      protein_coding
3344                      protein_coding
3345                      protein_coding
3346                      protein_coding
3347                      protein_coding
3348                      protein_coding
3349                      protein_coding
3350                      protein_coding
3351                      protein_coding
3352                      protein_coding
3353                      protein_coding
3354                      protein_coding
3355                      protein_coding
3356                      protein_coding
3357                      protein_coding
3358                      protein_coding
3359                      protein_coding
3360                      protein_coding
3361                      protein_coding
3362                      protein_coding
3363                      protein_coding
3364                      protein_coding
3365                      protein_coding
3366                      protein_coding
3367                      protein_coding
3368                      protein_coding
3369                      protein_coding
3370                      protein_coding
3371                      protein_coding
3372                      protein_coding
3373                      protein_coding
3374                      protein_coding
3375                      protein_coding
3376                      protein_coding
3377                      protein_coding
3378                      protein_coding
3379                      protein_coding
3380                      protein_coding
3381                      protein_coding
3382                      protein_coding
3383                      protein_coding
3384                             lincRNA
3385                      sense_intronic
3386                      sense_intronic
3387                      sense_intronic
3388                      sense_intronic
3389                      protein_coding
3390                      protein_coding
3391                      protein_coding
3392                      protein_coding
3393                processed_pseudogene
3394                processed_pseudogene
3395                processed_pseudogene
3396                             lincRNA
3397                   sense_overlapping
3398                   sense_overlapping
3399                   sense_overlapping
3400                   sense_overlapping
3401                   sense_overlapping
3402                      protein_coding
3403                      protein_coding
3404                      protein_coding
3405                      protein_coding
3406                      protein_coding
3407                      protein_coding
3408                      protein_coding
3409                      protein_coding
3410                      protein_coding
3411                      protein_coding
3412                      protein_coding
3413                      protein_coding
3414                      protein_coding
3415                      protein_coding
3416                      protein_coding
3417                      protein_coding
3418                      protein_coding
3419                      protein_coding
3420                      protein_coding
3421                      protein_coding
3422                      protein_coding
3423                      protein_coding
3424                      protein_coding
3425                      protein_coding
3426                      protein_coding
3427                      protein_coding
3428                      protein_coding
3429                      protein_coding
3430                      protein_coding
3431                      protein_coding
3432                      protein_coding
3433                      protein_coding
3434                      protein_coding
3435                      protein_coding
3436                      protein_coding
3437                      protein_coding
3438                      protein_coding
3439                      protein_coding
3440                      protein_coding
3441                      protein_coding
3442                      protein_coding
3443                      protein_coding
3444                      protein_coding
3445                      protein_coding
3446                      protein_coding
3447                      protein_coding
3448                      protein_coding
3449                      protein_coding
3450                      protein_coding
3451                      protein_coding
3452                      protein_coding
3453                      protein_coding
3454                      protein_coding
3455                      protein_coding
3456                      protein_coding
3457                      protein_coding
3458                      protein_coding
3459                      protein_coding
3460                      protein_coding
3461                      protein_coding
3462                      protein_coding
3463                      protein_coding
3464                      protein_coding
3465                      protein_coding
3466                      protein_coding
3467                      protein_coding
3468                      protein_coding
3469                      protein_coding
3470                      protein_coding
3471                      protein_coding
3472                      protein_coding
3473                      protein_coding
3474                      protein_coding
3475                      protein_coding
3476                      protein_coding
3477                      protein_coding
3478                      protein_coding
3479                      protein_coding
3480                      protein_coding
3481                      protein_coding
3482                      protein_coding
3483                      protein_coding
3484                      protein_coding
3485                      protein_coding
3486                      protein_coding
3487                      protein_coding
3488                      protein_coding
3489                      protein_coding
3490                      protein_coding
3491                      protein_coding
3492                      protein_coding
3493                      protein_coding
3494                      protein_coding
3495                      protein_coding
3496                      protein_coding
3497                      protein_coding
3498                      protein_coding
3499                      protein_coding
3500                      protein_coding
3501                      protein_coding
3502                      protein_coding
3503                      protein_coding
3504                      protein_coding
3505                      protein_coding
3506                      protein_coding
3507                      protein_coding
3508                      protein_coding
3509                      protein_coding
3510                      protein_coding
3511                      protein_coding
3512                      protein_coding
3513                      protein_coding
3514                      protein_coding
3515                      protein_coding
3516                      protein_coding
3517                      protein_coding
3518                      protein_coding
3519                      protein_coding
3520                      protein_coding
3521                      protein_coding
3522                      protein_coding
3523                      protein_coding
3524                      protein_coding
3525                      protein_coding
3526                      protein_coding
3527                      protein_coding
3528                      protein_coding
3529                      protein_coding
3530                      protein_coding
3531                      protein_coding
3532                      protein_coding
3533                      protein_coding
3534                      protein_coding
3535                      protein_coding
3536                      protein_coding
3537                      protein_coding
3538                      protein_coding
3539                      protein_coding
3540                      protein_coding
3541                      protein_coding
3542                      protein_coding
3543                      protein_coding
3544                      protein_coding
3545                      protein_coding
3546                      protein_coding
3547                      protein_coding
3548                      protein_coding
3549                      protein_coding
3550                      protein_coding
3551                      protein_coding
3552                      protein_coding
3553                      protein_coding
3554                      protein_coding
3555              unprocessed_pseudogene
3556              unprocessed_pseudogene
3557              unprocessed_pseudogene
3558              unprocessed_pseudogene
3559              unprocessed_pseudogene
3560              unprocessed_pseudogene
3561              unprocessed_pseudogene
3562              unprocessed_pseudogene
3563              unprocessed_pseudogene
3564              unprocessed_pseudogene
3565                processed_pseudogene
3566                      protein_coding
3567                      protein_coding
3568                      protein_coding
3569                      protein_coding
3570                      protein_coding
3571                      protein_coding
3572                      protein_coding
3573                      protein_coding
3574                      protein_coding
3575                      protein_coding
3576                      protein_coding
3577                      protein_coding
3578                      protein_coding
3579                      protein_coding
3580                      protein_coding
3581                      protein_coding
3582                      protein_coding
3583                      protein_coding
3584                      protein_coding
3585                      protein_coding
3586                      protein_coding
3587                      protein_coding
3588                      protein_coding
3589                      protein_coding
3590                      protein_coding
3591                      protein_coding
3592                      protein_coding
3593                      protein_coding
3594                      protein_coding
3595                      protein_coding
3596                      protein_coding
3597                      protein_coding
3598                      protein_coding
3599                      protein_coding
3600                      protein_coding
3601                      protein_coding
3602                      protein_coding
3603                      protein_coding
3604                      protein_coding
3605                      protein_coding
3606                      protein_coding
3607                      protein_coding
3608                      protein_coding
3609                      protein_coding
3610                      protein_coding
3611                      protein_coding
3612                      protein_coding
3613                      protein_coding
3614                      protein_coding
3615                      protein_coding
3616                      protein_coding
3617                      protein_coding
3618                      protein_coding
3619                      protein_coding
3620                      protein_coding
3621                      protein_coding
3622                      protein_coding
3623                      protein_coding
3624                      protein_coding
3625                      protein_coding
3626                      protein_coding
3627                      protein_coding
3628                      protein_coding
3629                      protein_coding
3630                      protein_coding
3631                      protein_coding
3632                      protein_coding
3633                      protein_coding
3634                      protein_coding
3635                      protein_coding
3636                      protein_coding
3637                      protein_coding
3638                      protein_coding
3639                      protein_coding
3640                      protein_coding
3641                      protein_coding
3642                      protein_coding
3643                      protein_coding
3644                      protein_coding
3645                      protein_coding
3646                      protein_coding
3647                      protein_coding
3648                      protein_coding
3649                      protein_coding
3650                      protein_coding
3651                      protein_coding
3652                      protein_coding
3653                      protein_coding
3654                      protein_coding
3655                      protein_coding
3656                      protein_coding
3657                      protein_coding
3658                      protein_coding
3659                      protein_coding
3660                      protein_coding
3661                      protein_coding
3662                      protein_coding
3663                      protein_coding
3664                      protein_coding
3665                      protein_coding
3666                      protein_coding
3667                      protein_coding
3668                      protein_coding
3669                      protein_coding
3670                      protein_coding
3671                      protein_coding
3672                      protein_coding
3673                      protein_coding
3674                      protein_coding
3675                      protein_coding
3676                      protein_coding
3677                      protein_coding
3678                      protein_coding
3679                      protein_coding
3680                      protein_coding
3681                      protein_coding
3682                      protein_coding
3683                      protein_coding
3684                      protein_coding
3685                      protein_coding
3686                      protein_coding
3687                      protein_coding
3688                      protein_coding
3689                      protein_coding
3690                      protein_coding
3691                      protein_coding
3692                      protein_coding
3693                      protein_coding
3694                      protein_coding
3695                      protein_coding
3696                      protein_coding
3697                      protein_coding
3698                      protein_coding
3699                      protein_coding
3700                      protein_coding
3701                      protein_coding
3702                      protein_coding
3703                      protein_coding
3704                      protein_coding
3705                      protein_coding
3706                      protein_coding
3707                      protein_coding
3708                      protein_coding
3709                      protein_coding
3710                      protein_coding
3711                      protein_coding
3712                      protein_coding
3713                      protein_coding
3714                      protein_coding
3715                      protein_coding
3716                      protein_coding
3717                      protein_coding
3718                      protein_coding
3719                      protein_coding
3720                      protein_coding
3721                      protein_coding
3722                      protein_coding
3723                      protein_coding
3724                      protein_coding
3725                      protein_coding
3726                      protein_coding
3727                      protein_coding
3728                      protein_coding
3729                      protein_coding
3730                      protein_coding
3731                      protein_coding
3732                      protein_coding
3733                      protein_coding
3734                      protein_coding
3735                      protein_coding
3736                      protein_coding
3737                      protein_coding
3738                      protein_coding
3739                      protein_coding
3740                      protein_coding
3741                      protein_coding
3742                      protein_coding
3743                      protein_coding
3744                      protein_coding
3745                      protein_coding
3746                      protein_coding
3747                      protein_coding
3748                      protein_coding
3749                      protein_coding
3750                      protein_coding
3751                      protein_coding
3752                      protein_coding
3753                      protein_coding
3754                      protein_coding
3755                      protein_coding
3756                      protein_coding
3757                      protein_coding
3758                      protein_coding
3759                      protein_coding
3760                      protein_coding
3761                      protein_coding
3762                      protein_coding
3763                      protein_coding
3764                      protein_coding
3765                      protein_coding
3766                      protein_coding
3767                      protein_coding
3768                      protein_coding
3769                      protein_coding
3770                      protein_coding
3771                      protein_coding
3772                      protein_coding
3773                      protein_coding
3774                      protein_coding
3775                      protein_coding
3776                      protein_coding
3777                      protein_coding
3778                      protein_coding
3779                      protein_coding
3780                      protein_coding
3781                      protein_coding
3782                      protein_coding
3783                      protein_coding
3784                      protein_coding
3785                      protein_coding
3786                      protein_coding
3787                      protein_coding
3788                      protein_coding
3789                      protein_coding
3790                      protein_coding
3791                      protein_coding
3792                      protein_coding
3793                      protein_coding
3794                      protein_coding
3795                      protein_coding
3796                      protein_coding
3797                      protein_coding
3798                      protein_coding
3799                      protein_coding
3800                      protein_coding
3801                      protein_coding
3802                      protein_coding
3803                      protein_coding
3804                      protein_coding
3805                      protein_coding
3806                      protein_coding
3807                      protein_coding
3808                      protein_coding
3809                      protein_coding
3810                      protein_coding
3811                      protein_coding
3812                      protein_coding
3813                      protein_coding
3814                      protein_coding
3815                      protein_coding
3816                      protein_coding
3817                      protein_coding
3818                      protein_coding
3819                      protein_coding
3820                      protein_coding
3821                      protein_coding
3822                      protein_coding
3823                      protein_coding
3824                      protein_coding
3825                      protein_coding
3826                      protein_coding
3827                      protein_coding
3828                      protein_coding
3829                      protein_coding
3830                      protein_coding
3831                      protein_coding
3832                      protein_coding
3833                      protein_coding
3834                      protein_coding
3835                      protein_coding
3836                      protein_coding
3837                      protein_coding
3838                      protein_coding
3839                      protein_coding
3840                      protein_coding
3841                      protein_coding
3842                      protein_coding
3843                      protein_coding
3844                      protein_coding
3845                      protein_coding
3846                      protein_coding
3847                      protein_coding
3848                      protein_coding
3849                      protein_coding
3850                      protein_coding
3851                      protein_coding
3852                      protein_coding
3853                      protein_coding
3854                      protein_coding
3855                      protein_coding
3856                      protein_coding
3857                      protein_coding
3858                      protein_coding
3859                      protein_coding
3860                      protein_coding
3861                      protein_coding
3862                      protein_coding
3863                      protein_coding
3864                      protein_coding
3865                      protein_coding
3866                      protein_coding
3867                      protein_coding
3868                      protein_coding
3869                      protein_coding
3870                      protein_coding
3871                      protein_coding
3872                      protein_coding
3873                      protein_coding
3874                      protein_coding
3875                      protein_coding
3876                      protein_coding
3877                      protein_coding
3878                      protein_coding
3879                      protein_coding
3880                      protein_coding
3881                      protein_coding
3882                      protein_coding
3883                      protein_coding
3884                      protein_coding
3885                      protein_coding
3886                      protein_coding
3887                      protein_coding
3888                      protein_coding
3889                      protein_coding
3890                      protein_coding
3891                      protein_coding
3892                      protein_coding
3893                      protein_coding
3894                      protein_coding
3895                      protein_coding
3896                      protein_coding
3897                      protein_coding
3898                      protein_coding
3899                      protein_coding
3900                      protein_coding
3901                      protein_coding
3902                      protein_coding
3903                      protein_coding
3904                      protein_coding
3905                      protein_coding
3906                      protein_coding
3907                      protein_coding
3908                      protein_coding
3909                      protein_coding
3910                      protein_coding
3911                      protein_coding
3912                      protein_coding
3913                      protein_coding
3914                      protein_coding
3915                      protein_coding
3916                      protein_coding
3917                      protein_coding
3918                      protein_coding
3919                      protein_coding
3920                      protein_coding
3921                      protein_coding
3922                      protein_coding
3923                      protein_coding
3924                      protein_coding
3925                      protein_coding
3926                      protein_coding
3927                      protein_coding
3928                      protein_coding
3929                      protein_coding
3930                      protein_coding
3931                      protein_coding
3932                      protein_coding
3933                      protein_coding
3934                      protein_coding
3935                      protein_coding
3936                      protein_coding
3937                      protein_coding
3938                      protein_coding
3939                      protein_coding
3940                      protein_coding
3941                      protein_coding
3942                      protein_coding
3943                      protein_coding
3944                      protein_coding
3945                      protein_coding
3946                      protein_coding
3947                      protein_coding
3948                      protein_coding
3949                      protein_coding
3950                      protein_coding
3951                      protein_coding
3952                      protein_coding
3953                      protein_coding
3954                      protein_coding
3955                      protein_coding
3956                      protein_coding
3957                      protein_coding
3958                      protein_coding
3959                      protein_coding
3960                      protein_coding
3961                      protein_coding
3962                      protein_coding
3963                      protein_coding
3964                      protein_coding
3965                      protein_coding
3966                      protein_coding
3967                      protein_coding
3968                      protein_coding
3969                      protein_coding
3970                      protein_coding
3971                      protein_coding
3972                      protein_coding
3973                      protein_coding
3974                      protein_coding
3975                      protein_coding
3976                      protein_coding
3977                      protein_coding
3978                      protein_coding
3979                      protein_coding
3980                      protein_coding
3981                      protein_coding
3982                      protein_coding
3983                      protein_coding
3984                      protein_coding
3985                      protein_coding
3986                      protein_coding
3987                      protein_coding
3988                      protein_coding
3989                      protein_coding
3990                      protein_coding
3991                      protein_coding
3992                      protein_coding
3993                      protein_coding
3994                      protein_coding
3995                      protein_coding
3996                      protein_coding
3997                      protein_coding
3998                      protein_coding
3999                      protein_coding
4000                      protein_coding
4001                      protein_coding
4002                      protein_coding
4003                      protein_coding
4004                      protein_coding
4005                      protein_coding
4006                      protein_coding
4007                      protein_coding
4008                      protein_coding
4009                      protein_coding
4010                      protein_coding
4011                      protein_coding
4012                      protein_coding
4013                      protein_coding
4014                      protein_coding
4015                      protein_coding
4016                      protein_coding
4017                      protein_coding
4018                      protein_coding
4019                      protein_coding
4020                      protein_coding
4021                      protein_coding
4022                      protein_coding
4023                      protein_coding
4024                      protein_coding
4025                      protein_coding
4026                      protein_coding
4027                      protein_coding
4028                      protein_coding
4029                      protein_coding
4030                      protein_coding
4031                      protein_coding
4032                      protein_coding
4033                processed_pseudogene
4034                             lincRNA
4035                             lincRNA
4036                             lincRNA
4037                             lincRNA
4038                             lincRNA
4039                             lincRNA
4040                             lincRNA
4041                             lincRNA
4042                             lincRNA
4043                             lincRNA
4044                             lincRNA
4045                             lincRNA
4046                             lincRNA
4047                             lincRNA
4048                             lincRNA
4049                                 TEC
4050                             lincRNA
4051                             lincRNA
4052                             lincRNA
4053                             lincRNA
4054                             lincRNA
4055                             lincRNA
4056                             lincRNA
4057                             lincRNA
4058                             lincRNA
4059                             lincRNA
4060                             lincRNA
4061                             lincRNA
4062                             lincRNA
4063                             lincRNA
4064                             lincRNA
4065                             lincRNA
4066                             lincRNA
4067                             lincRNA
4068                             lincRNA
4069                             lincRNA
4070                             lincRNA
4071                             lincRNA
4072                           antisense
4073                           antisense
4074                           antisense
4075                             lincRNA
4076                             lincRNA
4077                             lincRNA
4078                      protein_coding
4079                      protein_coding
4080                      protein_coding
4081                      protein_coding
4082                      protein_coding
4083                      protein_coding
4084                      protein_coding
4085                      protein_coding
4086                      protein_coding
4087                      protein_coding
4088                      protein_coding
4089                      protein_coding
4090                      protein_coding
4091                      protein_coding
4092                      protein_coding
4093                      protein_coding
4094                      protein_coding
4095                      protein_coding
4096                      protein_coding
4097                      protein_coding
4098                      protein_coding
4099                      protein_coding
4100                      protein_coding
4101                      protein_coding
4102                      protein_coding
4103                      protein_coding
4104                      protein_coding
4105                      protein_coding
4106                      protein_coding
4107                      protein_coding
4108                      protein_coding
4109                      protein_coding
4110                      protein_coding
4111                      protein_coding
4112                      protein_coding
4113                      protein_coding
4114                      protein_coding
4115                      protein_coding
4116                      protein_coding
4117                      protein_coding
4118                      protein_coding
4119                      protein_coding
4120                      protein_coding
4121                      protein_coding
4122                      protein_coding
4123                      protein_coding
4124                      protein_coding
4125                      protein_coding
4126                      protein_coding
4127                      protein_coding
4128                      protein_coding
4129                      protein_coding
4130                      protein_coding
4131                      protein_coding
4132                      protein_coding
4133                      protein_coding
4134                      protein_coding
4135                      protein_coding
4136                      protein_coding
4137                      protein_coding
4138                      protein_coding
4139                      protein_coding
4140                      protein_coding
4141                      protein_coding
4142                      protein_coding
4143                      protein_coding
4144                      protein_coding
4145                      protein_coding
4146                      protein_coding
4147                      protein_coding
4148                      protein_coding
4149                      protein_coding
4150                      protein_coding
4151                             lincRNA
4152                             lincRNA
4153                             lincRNA
4154              unprocessed_pseudogene
4155              unprocessed_pseudogene
4156              unprocessed_pseudogene
4157                processed_pseudogene
4158                      protein_coding
4159                      protein_coding
4160                      protein_coding
4161                      protein_coding
4162                      protein_coding
4163                      protein_coding
4164                      protein_coding
4165                      protein_coding
4166                      protein_coding
4167                      protein_coding
4168                      protein_coding
4169                      protein_coding
4170                      protein_coding
4171                      protein_coding
4172                      protein_coding
4173                      protein_coding
4174                      protein_coding
4175                      protein_coding
4176                      protein_coding
4177                      protein_coding
4178                      protein_coding
4179                      protein_coding
4180                      protein_coding
4181                      protein_coding
4182                      protein_coding
4183                      protein_coding
4184                      protein_coding
4185                      protein_coding
4186                      protein_coding
4187                      protein_coding
4188                      protein_coding
4189                      protein_coding
4190                      protein_coding
4191                      protein_coding
4192                      protein_coding
4193                      protein_coding
4194                      protein_coding
4195                      protein_coding
4196                      protein_coding
4197                      protein_coding
4198                      protein_coding
4199                      protein_coding
4200                      protein_coding
4201                      protein_coding
4202                      protein_coding
4203                      protein_coding
4204                      protein_coding
4205                      protein_coding
4206                      protein_coding
4207                      protein_coding
4208                      protein_coding
4209                      protein_coding
4210                      protein_coding
4211                      protein_coding
4212                      protein_coding
4213                      protein_coding
4214                      protein_coding
4215                      protein_coding
4216                      protein_coding
4217                      protein_coding
4218                      protein_coding
4219                      protein_coding
4220                      protein_coding
4221                      protein_coding
4222                      protein_coding
4223                      protein_coding
4224                      protein_coding
4225                      protein_coding
4226                      protein_coding
4227                      protein_coding
4228                      protein_coding
4229                      protein_coding
4230                      protein_coding
4231                      protein_coding
4232                      protein_coding
4233                      protein_coding
4234                      protein_coding
4235                      protein_coding
4236                      protein_coding
4237                      protein_coding
4238                      protein_coding
4239                      protein_coding
4240                      protein_coding
4241                      protein_coding
4242                      protein_coding
4243                      protein_coding
4244                      protein_coding
4245                      protein_coding
4246                      protein_coding
4247                      protein_coding
4248                      protein_coding
4249                      protein_coding
4250                      protein_coding
4251                      protein_coding
4252                      protein_coding
4253                      protein_coding
4254                      protein_coding
4255                      protein_coding
4256                      protein_coding
4257                      protein_coding
4258                      protein_coding
4259                      protein_coding
4260                      protein_coding
4261                      protein_coding
4262                      protein_coding
4263                      protein_coding
4264                      protein_coding
4265                      protein_coding
4266                      protein_coding
4267                      protein_coding
4268                      protein_coding
4269                      protein_coding
4270                      protein_coding
4271                      protein_coding
4272                      protein_coding
4273                      protein_coding
4274                      protein_coding
4275                      protein_coding
4276                      protein_coding
4277                      protein_coding
4278                      protein_coding
4279                      protein_coding
4280                      protein_coding
4281                      protein_coding
4282                      protein_coding
4283                      protein_coding
4284                      protein_coding
4285                      protein_coding
4286                      protein_coding
4287                      protein_coding
4288                      protein_coding
4289                      protein_coding
4290                      protein_coding
4291                      protein_coding
4292                      protein_coding
4293                      protein_coding
4294                           antisense
4295                           antisense
4296                           antisense
4297                           antisense
4298                           antisense
4299                      protein_coding
4300                      protein_coding
4301                      protein_coding
4302                      protein_coding
4303                      protein_coding
4304                      protein_coding
4305                      protein_coding
4306                      protein_coding
4307                      protein_coding
4308                      protein_coding
4309                      protein_coding
4310                      protein_coding
4311                      protein_coding
4312                      protein_coding
4313                      protein_coding
4314                      protein_coding
4315                      protein_coding
4316                      protein_coding
4317                      protein_coding
4318                      protein_coding
4319                      protein_coding
4320                      protein_coding
4321                      protein_coding
4322                      protein_coding
4323                      protein_coding
4324                      protein_coding
4325                      protein_coding
4326                      protein_coding
4327                      protein_coding
4328                      protein_coding
4329                      protein_coding
4330                      protein_coding
4331                      protein_coding
4332                      protein_coding
4333                      protein_coding
4334                      protein_coding
4335                      protein_coding
4336                      protein_coding
4337                      protein_coding
4338                      protein_coding
4339                      protein_coding
4340                      protein_coding
4341                      protein_coding
4342                      protein_coding
4343                      protein_coding
4344                      protein_coding
4345                      protein_coding
4346                      protein_coding
4347                      protein_coding
4348                      protein_coding
4349                      protein_coding
4350                      protein_coding
4351                      protein_coding
4352                      protein_coding
4353                      protein_coding
4354                      protein_coding
4355                      protein_coding
4356                      protein_coding
4357                      protein_coding
4358                      protein_coding
4359                      protein_coding
4360                      protein_coding
4361                      protein_coding
4362                      protein_coding
4363                      protein_coding
4364                      protein_coding
4365                      protein_coding
4366                      protein_coding
4367                      protein_coding
4368                      protein_coding
4369                      protein_coding
4370                      protein_coding
4371                      protein_coding
4372                      protein_coding
4373                      protein_coding
4374                      protein_coding
4375                      protein_coding
4376                      protein_coding
4377                      protein_coding
4378                      protein_coding
4379                      protein_coding
4380                      protein_coding
4381                      protein_coding
4382                      protein_coding
4383                      protein_coding
4384                      protein_coding
4385                      protein_coding
4386                      protein_coding
4387                      protein_coding
4388                      protein_coding
4389                      protein_coding
4390                      protein_coding
4391                      protein_coding
4392                      protein_coding
4393                      protein_coding
4394                      protein_coding
4395                      protein_coding
4396                      protein_coding
4397                      protein_coding
4398                      protein_coding
4399                      protein_coding
4400                      protein_coding
4401                      protein_coding
4402                      protein_coding
4403                      protein_coding
4404                      protein_coding
4405                      protein_coding
4406                      protein_coding
4407                      protein_coding
4408                      protein_coding
4409                      protein_coding
4410                      protein_coding
4411                      protein_coding
4412                      protein_coding
4413                      protein_coding
4414                      protein_coding
4415                      protein_coding
4416                      protein_coding
4417                      protein_coding
4418                      protein_coding
4419                      protein_coding
4420                      protein_coding
4421                      protein_coding
4422                      protein_coding
4423                      protein_coding
4424                      protein_coding
4425                      protein_coding
4426                      protein_coding
4427                      protein_coding
4428                      protein_coding
4429                      protein_coding
4430                      protein_coding
4431                      protein_coding
4432                      protein_coding
4433                      protein_coding
4434                      protein_coding
4435                      protein_coding
4436                      protein_coding
4437                      protein_coding
4438                      protein_coding
4439                      protein_coding
4440                      protein_coding
4441                      protein_coding
4442                      protein_coding
4443                      protein_coding
4444                      protein_coding
4445                      protein_coding
4446                      protein_coding
4447                      protein_coding
4448                      protein_coding
4449                      protein_coding
4450                      protein_coding
4451                      protein_coding
4452                      protein_coding
4453                      protein_coding
4454                      protein_coding
4455                      protein_coding
4456                      protein_coding
4457                      protein_coding
4458                      protein_coding
4459                      protein_coding
4460                      protein_coding
4461                      protein_coding
4462                      protein_coding
4463                      protein_coding
4464                      protein_coding
4465                      protein_coding
4466                      protein_coding
4467                      protein_coding
4468                      protein_coding
4469                      protein_coding
4470                      protein_coding
4471                      protein_coding
4472                      protein_coding
4473                      protein_coding
4474                      protein_coding
4475                      protein_coding
4476                      protein_coding
4477                      protein_coding
4478                      protein_coding
4479                           antisense
4480                           antisense
4481                      sense_intronic
4482                      sense_intronic
4483                      sense_intronic
4484                      sense_intronic
4485                      sense_intronic
4486                      sense_intronic
4487                      sense_intronic
4488                      sense_intronic
4489                      protein_coding
4490                      protein_coding
4491                      protein_coding
4492                      protein_coding
4493                      protein_coding
4494                      protein_coding
4495                      protein_coding
4496                      protein_coding
4497                      protein_coding
4498                      protein_coding
4499                      protein_coding
4500                      protein_coding
4501                      protein_coding
4502                      protein_coding
4503                      protein_coding
4504                      protein_coding
4505                      protein_coding
4506                      protein_coding
4507                      protein_coding
4508                      protein_coding
4509                      protein_coding
4510                      protein_coding
4511                      protein_coding
4512                      protein_coding
4513                      protein_coding
4514                      protein_coding
4515                      protein_coding
4516                      protein_coding
4517                      protein_coding
4518                      protein_coding
4519                      protein_coding
4520                      protein_coding
4521                      protein_coding
4522                      protein_coding
4523                      protein_coding
4524                      protein_coding
4525                      protein_coding
4526                      protein_coding
4527                      protein_coding
4528                      protein_coding
4529                      protein_coding
4530                      protein_coding
4531                      protein_coding
4532                      protein_coding
4533                      protein_coding
4534                      protein_coding
4535                      protein_coding
4536                      protein_coding
4537                      protein_coding
4538                      protein_coding
4539                      protein_coding
4540                      protein_coding
4541                           antisense
4542                           antisense
4543                           antisense
4544                           antisense
4545                           antisense
4546                           antisense
4547                           antisense
4548                           antisense
4549                           antisense
4550                           antisense
4551                           antisense
4552                           antisense
4553                           antisense
4554                           antisense
4555                           antisense
4556                           antisense
4557                      protein_coding
4558                      protein_coding
4559                      protein_coding
4560                      protein_coding
4561                      protein_coding
4562                      protein_coding
4563                      protein_coding
4564                      protein_coding
4565                      protein_coding
4566                      protein_coding
4567                      protein_coding
4568                      protein_coding
4569                      protein_coding
4570                      protein_coding
4571                      protein_coding
4572                      protein_coding
4573                      protein_coding
4574                      protein_coding
4575                      protein_coding
4576                      protein_coding
4577                      protein_coding
4578                      protein_coding
4579                      protein_coding
4580                      protein_coding
4581                      protein_coding
4582                      protein_coding
4583                      protein_coding
4584                      protein_coding
4585                      protein_coding
4586                      protein_coding
4587                      protein_coding
4588                      protein_coding
4589                      protein_coding
4590                      protein_coding
4591                      protein_coding
4592                      protein_coding
4593                      protein_coding
4594                      protein_coding
4595                      protein_coding
4596                      protein_coding
4597                      protein_coding
4598                      protein_coding
4599                      protein_coding
4600                      protein_coding
4601                      protein_coding
4602                      protein_coding
4603                      protein_coding
4604                      protein_coding
4605                      protein_coding
4606                      protein_coding
4607                      protein_coding
4608                      protein_coding
4609                      protein_coding
4610                      protein_coding
4611                      protein_coding
4612                      protein_coding
4613                      protein_coding
4614                      protein_coding
4615                      protein_coding
4616                      protein_coding
4617                      protein_coding
4618                      protein_coding
4619                      protein_coding
4620                      protein_coding
4621                      protein_coding
4622                      protein_coding
4623                      protein_coding
4624                      protein_coding
4625                      protein_coding
4626                      protein_coding
4627                      protein_coding
4628                      protein_coding
4629                      protein_coding
4630                      protein_coding
4631                      protein_coding
4632                      protein_coding
4633                      protein_coding
4634                      protein_coding
4635                      protein_coding
4636                      protein_coding
4637                      protein_coding
4638                      protein_coding
4639                      protein_coding
4640                      protein_coding
4641                      protein_coding
4642                      protein_coding
4643                      protein_coding
4644                      protein_coding
4645                      protein_coding
4646                      protein_coding
4647                      protein_coding
4648                      protein_coding
4649                      protein_coding
4650                      protein_coding
4651                      protein_coding
4652                      protein_coding
4653                      protein_coding
4654                      protein_coding
4655                      protein_coding
4656                      protein_coding
4657                      protein_coding
4658                      protein_coding
4659                      protein_coding
4660                      protein_coding
4661                      protein_coding
4662                      protein_coding
4663                      protein_coding
4664                      protein_coding
4665                      protein_coding
4666                      protein_coding
4667                      protein_coding
4668                      protein_coding
4669                      protein_coding
4670                      protein_coding
4671                      protein_coding
4672                      protein_coding
4673                      protein_coding
4674                      protein_coding
4675                      protein_coding
4676                      protein_coding
4677                      protein_coding
4678                      protein_coding
4679                      protein_coding
4680                      protein_coding
4681                      protein_coding
4682                      protein_coding
4683                      protein_coding
4684                      protein_coding
4685                      protein_coding
4686                      protein_coding
4687                      protein_coding
4688                      protein_coding
4689                      protein_coding
4690                      protein_coding
4691                      protein_coding
4692                      protein_coding
4693                      protein_coding
4694                      protein_coding
4695                      protein_coding
4696                      protein_coding
4697                      protein_coding
4698                      protein_coding
4699                      protein_coding
4700                      protein_coding
4701                      protein_coding
4702                      protein_coding
4703                      protein_coding
4704                      protein_coding
4705                      protein_coding
4706                      protein_coding
4707                      protein_coding
4708                      protein_coding
4709                      protein_coding
4710                      protein_coding
4711                      protein_coding
4712                      protein_coding
4713                      protein_coding
4714                      protein_coding
4715                      protein_coding
4716                      protein_coding
4717                      protein_coding
4718                      protein_coding
4719                      protein_coding
4720                      protein_coding
4721                      protein_coding
4722                      protein_coding
4723                      protein_coding
4724                      protein_coding
4725                      protein_coding
4726                      protein_coding
4727                      protein_coding
4728                      protein_coding
4729                      protein_coding
4730                      protein_coding
4731                      protein_coding
4732                      protein_coding
4733                      protein_coding
4734                      protein_coding
4735                      protein_coding
4736                      protein_coding
4737                      protein_coding
4738                      protein_coding
4739                      protein_coding
4740                      protein_coding
4741                      protein_coding
4742                      protein_coding
4743                      protein_coding
4744                      protein_coding
4745                      protein_coding
4746                      protein_coding
4747                      protein_coding
4748                      protein_coding
4749                      protein_coding
4750                      protein_coding
4751                      protein_coding
4752                      protein_coding
4753                      protein_coding
4754                      protein_coding
4755                      protein_coding
4756                      protein_coding
4757                      protein_coding
4758                      protein_coding
4759                      protein_coding
4760                      protein_coding
4761                      protein_coding
4762                      protein_coding
4763                      protein_coding
4764                      protein_coding
4765                      protein_coding
4766                      protein_coding
4767                      protein_coding
4768                      protein_coding
4769                      protein_coding
4770                      protein_coding
4771                      protein_coding
4772                      protein_coding
4773                      protein_coding
4774                      protein_coding
4775                      protein_coding
4776                      protein_coding
4777                      protein_coding
4778                      protein_coding
4779                      protein_coding
4780                      protein_coding
4781                      protein_coding
4782                      protein_coding
4783                      protein_coding
4784                      protein_coding
4785                      protein_coding
4786                      protein_coding
4787                      protein_coding
4788                      protein_coding
4789                      protein_coding
4790                      protein_coding
4791                      protein_coding
4792                      protein_coding
4793                      protein_coding
4794                      protein_coding
4795                      protein_coding
4796                      protein_coding
4797                      protein_coding
4798                      protein_coding
4799                      protein_coding
4800                      protein_coding
4801                      protein_coding
4802                      protein_coding
4803                      protein_coding
4804                      protein_coding
4805                      protein_coding
4806                      protein_coding
4807                      protein_coding
4808                      protein_coding
4809                      protein_coding
4810                      protein_coding
4811                      protein_coding
4812                      protein_coding
4813                      protein_coding
4814                      protein_coding
4815                      protein_coding
4816                      protein_coding
4817                      protein_coding
4818                      protein_coding
4819                      protein_coding
4820                      protein_coding
4821                      protein_coding
4822                      protein_coding
4823                      protein_coding
4824                      protein_coding
4825                      protein_coding
4826                      protein_coding
4827                      protein_coding
4828                      protein_coding
4829                      protein_coding
4830                      protein_coding
4831                      protein_coding
4832                      protein_coding
4833                processed_pseudogene
4834                processed_pseudogene
4835                processed_pseudogene
4836                           antisense
4837                           antisense
4838                           antisense
4839                           antisense
4840                           antisense
4841                           antisense
4842                           antisense
4843                           antisense
4844                           antisense
4845                           antisense
4846              unprocessed_pseudogene
4847                             lincRNA
4848                             lincRNA
4849                             lincRNA
4850                             lincRNA
4851                             lincRNA
4852                             lincRNA
4853                             lincRNA
4854                             lincRNA
4855                             lincRNA
4856                      protein_coding
4857                      protein_coding
4858                      protein_coding
4859                      protein_coding
4860                      protein_coding
4861                      protein_coding
4862                      protein_coding
4863                      protein_coding
4864                      protein_coding
4865                      protein_coding
4866                      protein_coding
4867                      protein_coding
4868                      protein_coding
4869                      protein_coding
4870                      protein_coding
4871                      protein_coding
4872                      protein_coding
4873                             lincRNA
4874                             lincRNA
4875                             lincRNA
4876                             lincRNA
4877                             lincRNA
4878                             lincRNA
4879                             lincRNA
4880                             lincRNA
4881                             lincRNA
4882                             lincRNA
4883                             lincRNA
4884                      sense_intronic
4885                      sense_intronic
4886                      sense_intronic
4887                      protein_coding
4888                      protein_coding
4889                      protein_coding
4890                      protein_coding
4891                      protein_coding
4892                      protein_coding
4893                      protein_coding
4894                      protein_coding
4895                      protein_coding
4896                      protein_coding
4897                      protein_coding
4898                      protein_coding
4899                      protein_coding
4900                      protein_coding
4901                      protein_coding
4902                      protein_coding
4903                      protein_coding
4904                      protein_coding
4905                      protein_coding
4906                      protein_coding
4907                      protein_coding
4908                      protein_coding
4909                      protein_coding
4910                      protein_coding
4911                      protein_coding
4912                      protein_coding
4913                      protein_coding
4914                      protein_coding
4915                      protein_coding
4916                      protein_coding
4917                      protein_coding
4918                      protein_coding
4919                      protein_coding
4920                      protein_coding
4921                      protein_coding
4922                      protein_coding
4923                      protein_coding
4924                      protein_coding
4925                      protein_coding
4926                      protein_coding
4927                      protein_coding
4928                           antisense
4929                           antisense
4930                             lincRNA
4931                             lincRNA
4932                             lincRNA
4933                             lincRNA
4934                             lincRNA
4935                             lincRNA
4936                             lincRNA
4937                      protein_coding
4938                      protein_coding
4939                      protein_coding
4940                      protein_coding
4941                      protein_coding
4942                      protein_coding
4943                      protein_coding
4944                      protein_coding
4945                      protein_coding
4946                      protein_coding
4947                      protein_coding
4948                      protein_coding
4949                      protein_coding
4950                      protein_coding
4951                      protein_coding
4952                      protein_coding
4953                      protein_coding
4954                      protein_coding
4955                      protein_coding
4956                      protein_coding
4957                      protein_coding
4958                      protein_coding
4959                      protein_coding
4960                      protein_coding
4961                      protein_coding
4962                      protein_coding
4963                      protein_coding
4964                      protein_coding
4965                      protein_coding
4966                      protein_coding
4967                      protein_coding
4968                      protein_coding
4969                      protein_coding
4970                      protein_coding
4971                      protein_coding
4972                      protein_coding
4973                      protein_coding
4974                      protein_coding
4975                      protein_coding
4976                      protein_coding
4977                      protein_coding
4978                      protein_coding
4979                      protein_coding
4980                      protein_coding
4981                      protein_coding
4982                      protein_coding
4983                      protein_coding
4984                      protein_coding
4985                      protein_coding
4986                      protein_coding
4987                      protein_coding
4988                      protein_coding
4989                      protein_coding
4990                      protein_coding
4991                      protein_coding
4992                      protein_coding
4993                      protein_coding
4994                      protein_coding
4995                      protein_coding
4996                      protein_coding
4997                      protein_coding
4998                      protein_coding
4999                      protein_coding
5000                           antisense
5001                           antisense
5002                           antisense
5003                   sense_overlapping
5004                   sense_overlapping
5005                processed_pseudogene
5006                           antisense
5007                           antisense
5008                             lincRNA
5009                             lincRNA
5010                             lincRNA
5011                             lincRNA
5012                             lincRNA
5013                             lincRNA
5014                             lincRNA
5015                             lincRNA
5016                             lincRNA
5017                             lincRNA
5018                             lincRNA
5019                             lincRNA
5020                             lincRNA
5021                             lincRNA
5022                             lincRNA
5023                             lincRNA
5024                             lincRNA
5025                             lincRNA
5026                             lincRNA
5027                             lincRNA
5028                             lincRNA
5029                             lincRNA
5030                             lincRNA
5031                             lincRNA
5032                             lincRNA
5033                             lincRNA
5034                             lincRNA
5035                      protein_coding
5036                      protein_coding
5037                      protein_coding
5038                      protein_coding
5039                      protein_coding
5040                      protein_coding
5041                      protein_coding
5042                      protein_coding
5043                      protein_coding
5044                      protein_coding
5045                      protein_coding
5046                      protein_coding
5047                      protein_coding
5048                      protein_coding
5049                      protein_coding
5050                      protein_coding
5051                      protein_coding
5052                      protein_coding
5053                      protein_coding
5054                      protein_coding
5055                      protein_coding
5056                      protein_coding
5057                      protein_coding
5058                      protein_coding
5059                      protein_coding
5060                      protein_coding
5061                      protein_coding
5062                      protein_coding
5063                      protein_coding
5064                      protein_coding
5065                      protein_coding
5066                      protein_coding
5067                      protein_coding
5068                      protein_coding
5069                      protein_coding
5070                      protein_coding
5071                      protein_coding
5072                      protein_coding
5073                      protein_coding
5074                      protein_coding
5075                      protein_coding
5076                      protein_coding
5077                      protein_coding
5078                      protein_coding
5079                      protein_coding
5080                      protein_coding
5081                      protein_coding
5082                      protein_coding
5083                      protein_coding
5084                      protein_coding
5085                      protein_coding
5086                      protein_coding
5087                      protein_coding
5088                      protein_coding
5089                      protein_coding
5090                      protein_coding
5091                      protein_coding
5092                      protein_coding
5093                      protein_coding
5094                      protein_coding
5095                      protein_coding
5096                      protein_coding
5097                      protein_coding
5098                      protein_coding
5099                      protein_coding
5100                      protein_coding
5101                      protein_coding
5102                      protein_coding
5103                      protein_coding
5104                      protein_coding
5105                      protein_coding
5106                      protein_coding
5107                      protein_coding
5108                      protein_coding
5109                      protein_coding
5110                      protein_coding
5111                      protein_coding
5112                      protein_coding
5113                      protein_coding
5114                      protein_coding
5115                      protein_coding
5116                      protein_coding
5117                      protein_coding
5118                      protein_coding
5119                      protein_coding
5120                      protein_coding
5121                      protein_coding
5122                      protein_coding
5123                      protein_coding
5124                      protein_coding
5125                      protein_coding
5126                      protein_coding
5127                      protein_coding
5128                      protein_coding
5129                      protein_coding
5130                      protein_coding
5131                      protein_coding
5132                      protein_coding
5133                      protein_coding
5134                      protein_coding
5135                      protein_coding
5136                      protein_coding
5137                      protein_coding
5138                      protein_coding
5139                      protein_coding
5140                      protein_coding
5141                      protein_coding
5142                      protein_coding
5143                      protein_coding
5144                      protein_coding
5145                      protein_coding
5146                      protein_coding
5147                      protein_coding
5148                      protein_coding
5149                      protein_coding
5150                      protein_coding
5151                      protein_coding
5152                      protein_coding
5153                      protein_coding
5154                      protein_coding
5155                      protein_coding
5156                      protein_coding
5157                      protein_coding
5158                      protein_coding
5159                      protein_coding
5160                      protein_coding
5161                      protein_coding
5162                      protein_coding
5163                      protein_coding
5164                      protein_coding
5165                      protein_coding
5166                      protein_coding
5167                      protein_coding
5168                      protein_coding
5169                      protein_coding
5170                      protein_coding
5171                      protein_coding
5172                      protein_coding
5173                      protein_coding
5174                      protein_coding
5175                      protein_coding
5176                      protein_coding
5177                      protein_coding
5178                      protein_coding
5179                      protein_coding
5180                      protein_coding
5181                      protein_coding
5182                      protein_coding
5183                      protein_coding
5184                      protein_coding
5185                      protein_coding
5186                      protein_coding
5187                      protein_coding
5188                      protein_coding
5189                      protein_coding
5190                      protein_coding
5191                      protein_coding
5192                      protein_coding
5193                      protein_coding
5194                processed_pseudogene
5195                      protein_coding
5196                      protein_coding
5197                      protein_coding
5198                      protein_coding
5199                      protein_coding
5200                      protein_coding
5201                      protein_coding
5202                      protein_coding
5203                      protein_coding
5204                      protein_coding
5205                      protein_coding
5206                      protein_coding
5207                      protein_coding
5208                      protein_coding
5209                      protein_coding
5210                      protein_coding
5211                      protein_coding
5212                      protein_coding
5213                      protein_coding
5214                      protein_coding
5215                      protein_coding
5216                      protein_coding
5217                      protein_coding
5218                      protein_coding
5219                      protein_coding
5220                      protein_coding
5221                      protein_coding
5222                      protein_coding
5223                      protein_coding
5224                      protein_coding
5225                      protein_coding
5226                      protein_coding
5227                      protein_coding
5228                      protein_coding
5229                      protein_coding
5230                      protein_coding
5231                      protein_coding
5232                      protein_coding
5233                      protein_coding
5234                      protein_coding
5235                      protein_coding
5236                      protein_coding
5237                      protein_coding
5238                      protein_coding
5239                      protein_coding
5240                      protein_coding
5241                      protein_coding
5242                           antisense
5243                           antisense
5244                                 TEC
5245                           antisense
5246                           antisense
5247                           antisense
5248                           antisense
5249                           antisense
5250                           antisense
5251                           antisense
5252                           antisense
5253                           antisense
5254                processed_pseudogene
5255                      protein_coding
5256                      protein_coding
5257                      protein_coding
5258                      protein_coding
5259                      protein_coding
5260                      protein_coding
5261                      protein_coding
5262                      protein_coding
5263                      protein_coding
5264                      protein_coding
5265                      protein_coding
5266                      protein_coding
5267                      protein_coding
5268                      protein_coding
5269                      protein_coding
5270                      protein_coding
5271                      protein_coding
5272                      protein_coding
5273                      protein_coding
5274                      protein_coding
5275                      protein_coding
5276                      protein_coding
5277                      protein_coding
5278                      protein_coding
5279                      protein_coding
5280                      protein_coding
5281                      protein_coding
5282                      protein_coding
5283                      protein_coding
5284                      protein_coding
5285                      protein_coding
5286                      protein_coding
5287                      protein_coding
5288                      protein_coding
5289                      protein_coding
5290                      protein_coding
5291                      protein_coding
5292                      protein_coding
5293                      protein_coding
5294                      protein_coding
5295                      protein_coding
5296                      protein_coding
5297                      protein_coding
5298                      protein_coding
5299                      protein_coding
5300                      protein_coding
5301                      protein_coding
5302                      protein_coding
5303                      protein_coding
5304                      protein_coding
5305                      protein_coding
5306                      protein_coding
5307                      protein_coding
5308                      protein_coding
5309                      protein_coding
5310                      protein_coding
5311                      protein_coding
5312                      protein_coding
5313                      protein_coding
5314                      protein_coding
5315                      protein_coding
5316                      protein_coding
5317                      protein_coding
5318                      protein_coding
5319                      protein_coding
5320                      protein_coding
5321                      protein_coding
5322                      protein_coding
5323                      protein_coding
5324                      protein_coding
5325                      protein_coding
5326                      protein_coding
5327                      protein_coding
5328                      protein_coding
5329                      protein_coding
5330                      protein_coding
5331                      protein_coding
5332                      protein_coding
5333                      protein_coding
5334                      protein_coding
5335                      protein_coding
5336                      protein_coding
5337                      protein_coding
5338                      protein_coding
5339                      protein_coding
5340                      protein_coding
5341                      protein_coding
5342                      protein_coding
5343                      protein_coding
5344                      protein_coding
5345                      protein_coding
5346                      protein_coding
5347                      protein_coding
5348                      protein_coding
5349                      protein_coding
5350                      protein_coding
5351                      protein_coding
5352                      protein_coding
5353                      protein_coding
5354                      protein_coding
5355                      protein_coding
5356                      protein_coding
5357                      protein_coding
5358                      protein_coding
5359                      protein_coding
5360                      protein_coding
5361                      protein_coding
5362                      protein_coding
5363                      protein_coding
5364                      protein_coding
5365                      protein_coding
5366                      protein_coding
5367                      protein_coding
5368                      protein_coding
5369                      protein_coding
5370                      protein_coding
5371                      protein_coding
5372                      protein_coding
5373                      protein_coding
5374                      protein_coding
5375                      protein_coding
5376                      protein_coding
5377                      protein_coding
5378                      protein_coding
5379                      protein_coding
5380                      protein_coding
5381                      protein_coding
5382                      protein_coding
5383                      protein_coding
5384                      protein_coding
5385                      protein_coding
5386                      protein_coding
5387                      protein_coding
5388                      protein_coding
5389                      protein_coding
5390                      protein_coding
5391                      protein_coding
5392                      protein_coding
5393                      protein_coding
5394                      protein_coding
5395                      protein_coding
5396                      protein_coding
5397                      protein_coding
5398                      protein_coding
5399                      protein_coding
5400                      protein_coding
5401                processed_pseudogene
5402                processed_pseudogene
5403                           antisense
5404                           antisense
5405                           antisense
5406                           antisense
5407                           antisense
5408                           antisense
5409                           antisense
5410                           antisense
5411                           antisense
5412                           antisense
5413                           antisense
5414                           antisense
5415                           antisense
5416                           antisense
5417                           antisense
5418                           antisense
5419                           antisense
5420                           antisense
5421                           antisense
5422                           antisense
5423                           antisense
5424                           antisense
5425                           antisense
5426                           antisense
5427                           antisense
5428                           antisense
5429                           antisense
5430                           antisense
5431                           antisense
5432                           antisense
5433                           antisense
5434                           antisense
5435                           antisense
5436                           antisense
5437                           antisense
5438                           antisense
5439                           antisense
5440                           antisense
5441                           antisense
5442                           antisense
5443                           antisense
5444                           antisense
5445                           antisense
5446                           antisense
5447                           antisense
5448                           antisense
5449                           antisense
5450                           antisense
5451                           antisense
5452                           antisense
5453                           antisense
5454                           antisense
5455                           antisense
5456                           antisense
5457                           antisense
5458                           antisense
5459                processed_pseudogene
5460                      protein_coding
5461                      protein_coding
5462                      protein_coding
5463                      protein_coding
5464                      protein_coding
5465                      protein_coding
5466                      protein_coding
5467                      protein_coding
5468                      protein_coding
5469                      protein_coding
5470                      protein_coding
5471                      protein_coding
5472                      protein_coding
5473                      protein_coding
5474                      protein_coding
5475                      protein_coding
5476                      protein_coding
5477                      protein_coding
5478                      protein_coding
5479                      protein_coding
5480                      protein_coding
5481                      protein_coding
5482                      protein_coding
5483                      protein_coding
5484                      protein_coding
5485                      protein_coding
5486                      protein_coding
5487                      protein_coding
5488                      protein_coding
5489                      protein_coding
5490                      protein_coding
5491                      protein_coding
5492                      protein_coding
5493                      protein_coding
5494                      protein_coding
5495                      protein_coding
5496                      protein_coding
5497                      protein_coding
5498                      protein_coding
5499                      protein_coding
5500                      protein_coding
5501                      protein_coding
5502                      protein_coding
5503                      protein_coding
5504                      protein_coding
5505                      protein_coding
5506                      protein_coding
5507                      protein_coding
5508                      protein_coding
5509                      protein_coding
5510                      protein_coding
5511                      protein_coding
5512                      protein_coding
5513                      protein_coding
5514                      protein_coding
5515                      protein_coding
5516                      protein_coding
5517                      protein_coding
5518                      protein_coding
5519                      protein_coding
5520                      protein_coding
5521                      protein_coding
5522                      protein_coding
5523                      protein_coding
5524                      protein_coding
5525                      protein_coding
5526                      protein_coding
5527                      protein_coding
5528                      protein_coding
5529                      protein_coding
5530                      protein_coding
5531                      protein_coding
5532                      protein_coding
5533                      protein_coding
5534                      protein_coding
5535                      protein_coding
5536                      protein_coding
5537                      protein_coding
5538                      protein_coding
5539                      protein_coding
5540                      protein_coding
5541                      protein_coding
5542                      protein_coding
5543                      protein_coding
5544                      protein_coding
5545                      protein_coding
5546                      protein_coding
5547                      protein_coding
5548                      protein_coding
5549                      protein_coding
5550                      protein_coding
5551                      protein_coding
5552                      protein_coding
5553                      protein_coding
5554                      protein_coding
5555                      protein_coding
5556                      protein_coding
5557                      protein_coding
5558                      protein_coding
5559                      protein_coding
5560                      protein_coding
5561                      protein_coding
5562                      protein_coding
5563                      protein_coding
5564                      protein_coding
5565                      protein_coding
5566                      protein_coding
5567                      protein_coding
5568                      protein_coding
5569                      protein_coding
5570                      protein_coding
5571                      protein_coding
5572                      protein_coding
5573                      protein_coding
5574                      protein_coding
5575                      protein_coding
5576                      protein_coding
5577                      protein_coding
5578                      protein_coding
5579                      protein_coding
5580                      protein_coding
5581                      protein_coding
5582                      protein_coding
5583                      protein_coding
5584                      protein_coding
5585                      protein_coding
5586                      protein_coding
5587                      protein_coding
5588                      protein_coding
5589                      protein_coding
5590                      protein_coding
5591                      protein_coding
5592                      protein_coding
5593                      protein_coding
5594                      protein_coding
5595                      protein_coding
5596                      protein_coding
5597                      protein_coding
5598                      protein_coding
5599                      protein_coding
5600                      protein_coding
5601                      protein_coding
5602                           antisense
5603                           antisense
5604                   sense_overlapping
5605                   sense_overlapping
5606                   sense_overlapping
5607                           antisense
5608                           antisense
5609                           antisense
5610                           antisense
5611                           antisense
5612                           antisense
5613                           antisense
5614                           antisense
5615                           antisense
5616                           antisense
5617                           antisense
5618                             lincRNA
5619                             lincRNA
5620                             lincRNA
5621                             lincRNA
5622                             lincRNA
5623                      protein_coding
5624                      protein_coding
5625                      protein_coding
5626                      protein_coding
5627                      protein_coding
5628                      protein_coding
5629                      protein_coding
5630                      protein_coding
5631                      protein_coding
5632                      protein_coding
5633                      protein_coding
5634                      protein_coding
5635                      protein_coding
5636                      protein_coding
5637                      protein_coding
5638                      protein_coding
5639                      protein_coding
5640                           antisense
5641                           antisense
5642                           antisense
5643                           antisense
5644                      protein_coding
5645                      protein_coding
5646                      protein_coding
5647                      protein_coding
5648                      protein_coding
5649                      protein_coding
5650                      protein_coding
5651                      protein_coding
5652                      protein_coding
5653                      protein_coding
5654                      protein_coding
5655                      protein_coding
5656                      protein_coding
5657                      protein_coding
5658                      protein_coding
5659                      protein_coding
5660                      protein_coding
5661                      protein_coding
5662                      protein_coding
5663                      protein_coding
5664                      protein_coding
5665                      protein_coding
5666                      protein_coding
5667                      protein_coding
5668                      protein_coding
5669                      protein_coding
5670                      protein_coding
5671                      protein_coding
5672                      protein_coding
5673                      protein_coding
5674                      protein_coding
5675                      protein_coding
5676                      protein_coding
5677                      protein_coding
5678                      protein_coding
5679                      protein_coding
5680                      protein_coding
5681                      protein_coding
5682                      protein_coding
5683                      protein_coding
5684                      protein_coding
5685                      protein_coding
5686                      protein_coding
5687                      protein_coding
5688                      protein_coding
5689                   sense_overlapping
5690                   sense_overlapping
5691                   sense_overlapping
5692                   sense_overlapping
5693                   sense_overlapping
5694                   sense_overlapping
5695                   sense_overlapping
5696                   sense_overlapping
5697                      protein_coding
5698                      protein_coding
5699                      protein_coding
5700                      protein_coding
5701                      protein_coding
5702                      protein_coding
5703                      protein_coding
5704                      protein_coding
5705                      protein_coding
5706                      protein_coding
5707                      protein_coding
5708                      protein_coding
5709                      protein_coding
5710                      protein_coding
5711                      protein_coding
5712                      protein_coding
5713                      protein_coding
5714                      protein_coding
5715                      protein_coding
5716                      protein_coding
5717                      protein_coding
5718                      protein_coding
5719                      protein_coding
5720                      protein_coding
5721                      protein_coding
5722                      protein_coding
5723                      protein_coding
5724                      protein_coding
5725                      protein_coding
5726                      protein_coding
5727                      protein_coding
5728                      protein_coding
5729                      protein_coding
5730                      protein_coding
5731                      protein_coding
5732                      protein_coding
5733                      protein_coding
5734                      protein_coding
5735                      protein_coding
5736                      protein_coding
5737                      protein_coding
5738                      protein_coding
5739                      protein_coding
5740                      protein_coding
5741                      protein_coding
5742                      protein_coding
5743                      protein_coding
5744                      protein_coding
5745                      protein_coding
5746                      protein_coding
5747                      protein_coding
5748                      protein_coding
5749                      protein_coding
5750                      protein_coding
5751                      protein_coding
5752                      protein_coding
5753                      protein_coding
5754                      protein_coding
5755                      protein_coding
5756                      protein_coding
5757                      protein_coding
5758                      protein_coding
5759                      protein_coding
5760                      protein_coding
5761                      protein_coding
5762                      protein_coding
5763                      protein_coding
5764                      protein_coding
5765                      protein_coding
5766                      protein_coding
5767                      protein_coding
5768                      protein_coding
5769                      protein_coding
5770                      protein_coding
5771                      protein_coding
5772                      protein_coding
5773                      protein_coding
5774                      protein_coding
5775                      protein_coding
5776                      protein_coding
5777                      protein_coding
5778                      protein_coding
5779                      protein_coding
5780                      protein_coding
5781                      protein_coding
5782                      protein_coding
5783                      protein_coding
5784                      protein_coding
5785                      protein_coding
5786                      protein_coding
5787                      protein_coding
5788                      protein_coding
5789                      protein_coding
5790                      protein_coding
5791                      protein_coding
5792                      protein_coding
5793                      protein_coding
5794                      protein_coding
5795                      protein_coding
5796                      protein_coding
5797                      protein_coding
5798                      protein_coding
5799                      protein_coding
5800                      protein_coding
5801                      protein_coding
5802                      protein_coding
5803                      protein_coding
5804                      protein_coding
5805                      protein_coding
5806                      protein_coding
5807                      protein_coding
5808                      protein_coding
5809                      protein_coding
5810                      protein_coding
5811                      protein_coding
5812                      protein_coding
5813                      protein_coding
5814                      protein_coding
5815                      protein_coding
5816                      protein_coding
5817                      protein_coding
5818                      protein_coding
5819                      protein_coding
5820                      protein_coding
5821                      protein_coding
5822                      protein_coding
5823                      protein_coding
5824                      protein_coding
5825                      protein_coding
5826                      protein_coding
5827                      protein_coding
5828                      protein_coding
5829                      protein_coding
5830                      protein_coding
5831                      protein_coding
5832                      protein_coding
5833                      protein_coding
5834                      protein_coding
5835                      protein_coding
5836                      protein_coding
5837                      protein_coding
5838                      protein_coding
5839                      protein_coding
5840                      protein_coding
5841                      protein_coding
5842                      protein_coding
5843                      protein_coding
5844                      protein_coding
5845                      protein_coding
5846                      protein_coding
5847                      protein_coding
5848                      protein_coding
5849                      protein_coding
5850                      protein_coding
5851                      protein_coding
5852                      protein_coding
5853                      protein_coding
5854                      protein_coding
5855                      protein_coding
5856                      protein_coding
5857                      protein_coding
5858                      protein_coding
5859                      protein_coding
5860                      protein_coding
5861                      protein_coding
5862                      protein_coding
5863                      protein_coding
5864                      protein_coding
5865                      protein_coding
5866                      protein_coding
5867                      protein_coding
5868                      protein_coding
5869                      protein_coding
5870                      protein_coding
5871                      protein_coding
5872                      protein_coding
5873                      protein_coding
5874                      protein_coding
5875                      protein_coding
5876                      protein_coding
5877                      protein_coding
5878                      protein_coding
5879                      protein_coding
5880                      protein_coding
5881                      protein_coding
5882                      protein_coding
5883                      protein_coding
5884                      protein_coding
5885                      protein_coding
5886                      protein_coding
5887                      protein_coding
5888                      protein_coding
5889                      protein_coding
5890                      protein_coding
5891                      protein_coding
5892                      protein_coding
5893                      protein_coding
5894                      protein_coding
5895                      protein_coding
5896                      protein_coding
5897                      protein_coding
5898                      protein_coding
5899                      protein_coding
5900                      protein_coding
5901                      protein_coding
5902                      protein_coding
5903                      protein_coding
5904                      protein_coding
5905                      protein_coding
5906                      protein_coding
5907                      protein_coding
5908                      protein_coding
5909                      protein_coding
5910                      protein_coding
5911                      protein_coding
5912                      protein_coding
5913                      protein_coding
5914                      protein_coding
5915                      protein_coding
5916                      protein_coding
5917                      protein_coding
5918                      protein_coding
5919                      protein_coding
5920                      protein_coding
5921                      protein_coding
5922                      protein_coding
5923                      protein_coding
5924                      protein_coding
5925                      protein_coding
5926                      protein_coding
5927                      protein_coding
5928                      protein_coding
5929                      protein_coding
5930                      protein_coding
5931                      protein_coding
5932                      protein_coding
5933                      protein_coding
5934                      protein_coding
5935                      protein_coding
5936                      protein_coding
5937                      protein_coding
5938                      protein_coding
5939                      protein_coding
5940                      protein_coding
5941                      protein_coding
5942                      protein_coding
5943                      protein_coding
5944                      protein_coding
5945                      protein_coding
5946                      protein_coding
5947                      protein_coding
5948                      protein_coding
5949                      protein_coding
5950                      protein_coding
5951                      protein_coding
5952                      protein_coding
5953                      protein_coding
5954                      protein_coding
5955                      protein_coding
5956                      protein_coding
5957                      protein_coding
5958                      protein_coding
5959                      protein_coding
5960                      protein_coding
5961                      protein_coding
5962                      protein_coding
5963                      protein_coding
5964                      protein_coding
5965                      protein_coding
5966                      protein_coding
5967                      protein_coding
5968                      protein_coding
5969                      protein_coding
5970                      protein_coding
5971                      protein_coding
5972                      protein_coding
5973                      protein_coding
5974                      protein_coding
5975                      protein_coding
5976                      protein_coding
5977                      protein_coding
5978                      protein_coding
5979                      protein_coding
5980                      protein_coding
5981                      protein_coding
5982                      protein_coding
5983                      protein_coding
5984                      protein_coding
5985                      protein_coding
5986                      protein_coding
5987                      protein_coding
5988                      protein_coding
5989                      protein_coding
5990                      protein_coding
5991                      protein_coding
5992                      protein_coding
5993                      protein_coding
5994                      protein_coding
5995                      protein_coding
5996                      protein_coding
5997                      protein_coding
5998                      protein_coding
5999                      protein_coding
6000                      protein_coding
6001                      protein_coding
6002                      protein_coding
6003                      protein_coding
6004                      protein_coding
6005                      protein_coding
6006                      protein_coding
6007                      protein_coding
6008                      protein_coding
6009                      protein_coding
6010                      protein_coding
6011                      protein_coding
6012                      protein_coding
6013                      protein_coding
6014                      protein_coding
6015                      protein_coding
6016                      protein_coding
6017                      protein_coding
6018                      protein_coding
6019                      protein_coding
6020                      protein_coding
6021                      protein_coding
6022                      protein_coding
6023                      protein_coding
6024                      protein_coding
6025                      protein_coding
6026                      protein_coding
6027                      protein_coding
6028                      protein_coding
6029                      protein_coding
6030                      protein_coding
6031                      protein_coding
6032                      protein_coding
6033                      protein_coding
6034                      protein_coding
6035                      protein_coding
6036                      protein_coding
6037                      protein_coding
6038                      protein_coding
6039                      protein_coding
6040                      protein_coding
6041                      protein_coding
6042                      protein_coding
6043                      protein_coding
6044                      protein_coding
6045                      protein_coding
6046                      protein_coding
6047                      protein_coding
6048                      protein_coding
6049                      protein_coding
6050                      protein_coding
6051                      protein_coding
6052                      protein_coding
6053                      protein_coding
6054                      protein_coding
6055                      protein_coding
6056                      protein_coding
6057                      protein_coding
6058                      protein_coding
6059                      protein_coding
6060                      protein_coding
6061                      protein_coding
6062                      protein_coding
6063                      protein_coding
6064                      protein_coding
6065                      protein_coding
6066                      protein_coding
6067                      protein_coding
6068                      protein_coding
6069                      protein_coding
6070                      protein_coding
6071                      protein_coding
6072                      protein_coding
6073                      protein_coding
6074                      protein_coding
6075                      protein_coding
6076                      protein_coding
6077                      protein_coding
6078                      protein_coding
6079                      protein_coding
6080                      protein_coding
6081                      protein_coding
6082                      protein_coding
6083                      protein_coding
6084                      protein_coding
6085                      protein_coding
6086                      protein_coding
6087                      protein_coding
6088                      protein_coding
6089                      protein_coding
6090                      protein_coding
6091                      protein_coding
6092                      protein_coding
6093                      protein_coding
6094                      protein_coding
6095                      protein_coding
6096                      protein_coding
6097                      protein_coding
6098                      protein_coding
6099                      protein_coding
6100                      protein_coding
6101                      protein_coding
6102                      protein_coding
6103                      protein_coding
6104                      protein_coding
6105                      protein_coding
6106                      protein_coding
6107                      protein_coding
6108                      protein_coding
6109                      protein_coding
6110                      protein_coding
6111                      protein_coding
6112                      protein_coding
6113                      protein_coding
6114                      protein_coding
6115                      protein_coding
6116                      protein_coding
6117                      protein_coding
6118                      protein_coding
6119                      protein_coding
6120                      protein_coding
6121                      protein_coding
6122                      protein_coding
6123                      protein_coding
6124                      protein_coding
6125                      protein_coding
6126                      protein_coding
6127                      protein_coding
6128                      protein_coding
6129                      protein_coding
6130                      protein_coding
6131                      protein_coding
6132                      protein_coding
6133                      protein_coding
6134                      protein_coding
6135                      protein_coding
6136                      protein_coding
6137                      protein_coding
6138                      protein_coding
6139                      protein_coding
6140                      protein_coding
6141                      protein_coding
6142                      protein_coding
6143                      protein_coding
6144                      protein_coding
6145                      protein_coding
6146                      protein_coding
6147                      protein_coding
6148                      protein_coding
6149                      protein_coding
6150                      protein_coding
6151                      protein_coding
6152                      protein_coding
6153                      protein_coding
6154                      protein_coding
6155                      protein_coding
6156                      protein_coding
6157                      protein_coding
6158                      protein_coding
6159                      protein_coding
6160                      protein_coding
6161                      protein_coding
6162                      protein_coding
6163                      protein_coding
6164                      protein_coding
6165                      protein_coding
6166                      protein_coding
6167                      protein_coding
6168                      protein_coding
6169                      protein_coding
6170                      protein_coding
6171                      protein_coding
6172                      protein_coding
6173                      protein_coding
6174                      protein_coding
6175                      protein_coding
6176                      protein_coding
6177                      protein_coding
6178                      protein_coding
6179                      protein_coding
6180                      protein_coding
6181                      protein_coding
6182                      protein_coding
6183                      protein_coding
6184                      protein_coding
6185                      protein_coding
6186                      protein_coding
6187                      protein_coding
6188                      protein_coding
6189                      protein_coding
6190                      protein_coding
6191                      protein_coding
6192                      protein_coding
6193                      protein_coding
6194                      protein_coding
6195                      protein_coding
6196                      protein_coding
6197                      protein_coding
6198                      protein_coding
6199                      protein_coding
6200                      protein_coding
6201                      protein_coding
6202                      protein_coding
6203                      protein_coding
6204                      protein_coding
6205                      protein_coding
6206                      protein_coding
6207                      protein_coding
6208                      protein_coding
6209                      protein_coding
6210                      protein_coding
6211                      protein_coding
6212                      protein_coding
6213                      protein_coding
6214                      protein_coding
6215                      protein_coding
6216                      protein_coding
6217                      protein_coding
6218                      protein_coding
6219                      protein_coding
6220                      protein_coding
6221                      protein_coding
6222                      protein_coding
6223                      protein_coding
6224                      protein_coding
6225                      protein_coding
6226                      protein_coding
6227                      protein_coding
6228                      protein_coding
6229                      protein_coding
6230                      protein_coding
6231                      protein_coding
6232                      protein_coding
6233                      protein_coding
6234                      protein_coding
6235                      protein_coding
6236                      protein_coding
6237                      protein_coding
6238                      protein_coding
6239                      protein_coding
6240                      protein_coding
6241                      protein_coding
6242                      protein_coding
6243                      protein_coding
6244                      protein_coding
6245                      protein_coding
6246                      protein_coding
6247                      protein_coding
6248                      protein_coding
6249                      protein_coding
6250                      protein_coding
6251                      protein_coding
6252                      protein_coding
6253                      protein_coding
6254                      protein_coding
6255                      protein_coding
6256                      protein_coding
6257                      protein_coding
6258                      protein_coding
6259                      protein_coding
6260                      protein_coding
6261                      protein_coding
6262                      protein_coding
6263                      protein_coding
6264                             lincRNA
6265                             lincRNA
6266                             lincRNA
6267                      sense_intronic
6268                      sense_intronic
6269                      protein_coding
6270                      protein_coding
6271                      protein_coding
6272                      protein_coding
6273                      protein_coding
6274                      protein_coding
6275                      protein_coding
6276                      protein_coding
6277                      protein_coding
6278                      protein_coding
6279                      protein_coding
6280                      protein_coding
6281                      protein_coding
6282                      protein_coding
6283                      protein_coding
6284                      protein_coding
6285                      protein_coding
6286                      protein_coding
6287                      protein_coding
6288                      protein_coding
6289                      protein_coding
6290                      protein_coding
6291                      protein_coding
6292                      protein_coding
6293                      protein_coding
6294                      protein_coding
6295                      protein_coding
6296                      protein_coding
6297                      protein_coding
6298                      protein_coding
6299                      protein_coding
6300                      protein_coding
6301                      protein_coding
6302                      protein_coding
6303                      protein_coding
6304                      protein_coding
6305                      protein_coding
6306                      protein_coding
6307                      protein_coding
6308                      protein_coding
6309                      protein_coding
6310                      protein_coding
6311                      protein_coding
6312                      protein_coding
6313                      protein_coding
6314                      protein_coding
6315                      protein_coding
6316                      protein_coding
6317                      protein_coding
6318                      protein_coding
6319                      protein_coding
6320                      protein_coding
6321                      protein_coding
6322                      protein_coding
6323                      protein_coding
6324                      protein_coding
6325                      protein_coding
6326                      protein_coding
6327                      protein_coding
6328                      protein_coding
6329                      protein_coding
6330                      protein_coding
6331                      protein_coding
6332                      protein_coding
6333                      protein_coding
6334                      protein_coding
6335                      protein_coding
6336                      protein_coding
6337                      protein_coding
6338                      protein_coding
6339                      protein_coding
6340                      protein_coding
6341                      protein_coding
6342                      protein_coding
6343                      protein_coding
6344                      protein_coding
6345                      protein_coding
6346                      protein_coding
6347                      protein_coding
6348                      protein_coding
6349                      protein_coding
6350                      protein_coding
6351                      protein_coding
6352                      protein_coding
6353                      protein_coding
6354                      protein_coding
6355                      protein_coding
6356                      protein_coding
6357                      protein_coding
6358                      protein_coding
6359                      protein_coding
6360                      protein_coding
6361                      protein_coding
6362                      protein_coding
6363                      protein_coding
6364                      protein_coding
6365                      protein_coding
6366                      protein_coding
6367                      protein_coding
6368                      protein_coding
6369                      protein_coding
6370                      protein_coding
6371                             lincRNA
6372                             lincRNA
6373                             lincRNA
6374                processed_pseudogene
6375                      protein_coding
6376                      protein_coding
6377                      protein_coding
6378                      protein_coding
6379                      protein_coding
6380                      protein_coding
6381                      protein_coding
6382                      protein_coding
6383                      protein_coding
6384                      protein_coding
6385                      protein_coding
6386                      protein_coding
6387                      protein_coding
6388                      protein_coding
6389                      protein_coding
6390                      protein_coding
6391                      protein_coding
6392                processed_pseudogene
6393                             lincRNA
6394                             lincRNA
6395                             lincRNA
6396                             lincRNA
6397                             lincRNA
6398                             lincRNA
6399                             lincRNA
6400                             lincRNA
6401                             lincRNA
6402                             lincRNA
6403                             lincRNA
6404                             lincRNA
6405                             lincRNA
6406                             lincRNA
6407                             lincRNA
6408                             lincRNA
6409                      protein_coding
6410                      protein_coding
6411                      protein_coding
6412                      protein_coding
6413                      protein_coding
6414                      protein_coding
6415                      protein_coding
6416                      protein_coding
6417                      protein_coding
6418                      protein_coding
6419                      protein_coding
6420                      protein_coding
6421                      protein_coding
6422                      protein_coding
6423                      protein_coding
6424                      protein_coding
6425                      protein_coding
6426                      protein_coding
6427                      protein_coding
6428                      protein_coding
6429                      protein_coding
6430                      protein_coding
6431                      protein_coding
6432                      protein_coding
6433                      protein_coding
6434                      protein_coding
6435                      protein_coding
6436                      protein_coding
6437                      protein_coding
6438                      protein_coding
6439                      protein_coding
6440                      protein_coding
6441                      protein_coding
6442                      protein_coding
6443                      protein_coding
6444                      protein_coding
6445                      protein_coding
6446                      protein_coding
6447                      protein_coding
6448                      protein_coding
6449                      protein_coding
6450                      protein_coding
6451                      protein_coding
6452                      protein_coding
6453                      protein_coding
6454                      protein_coding
6455                      protein_coding
6456                      protein_coding
6457                      protein_coding
6458                      protein_coding
6459                      protein_coding
6460                      protein_coding
6461                      protein_coding
6462                      protein_coding
6463                      protein_coding
6464                      protein_coding
6465                      protein_coding
6466                      protein_coding
6467                      protein_coding
6468                      protein_coding
6469                      protein_coding
6470                      protein_coding
6471                      protein_coding
6472                      protein_coding
6473                      protein_coding
6474                      protein_coding
6475                      protein_coding
6476                      protein_coding
6477                      protein_coding
6478                      protein_coding
6479                      protein_coding
6480                      protein_coding
6481                      protein_coding
6482                      protein_coding
6483                      protein_coding
6484                      protein_coding
6485                      protein_coding
6486                      protein_coding
6487                      protein_coding
6488                      protein_coding
6489                      protein_coding
6490                      protein_coding
6491                      protein_coding
6492                      protein_coding
6493                      protein_coding
6494                      protein_coding
6495                      protein_coding
6496                      protein_coding
6497                      protein_coding
6498                      protein_coding
6499                      protein_coding
6500                      protein_coding
6501                      protein_coding
6502                      protein_coding
6503                      protein_coding
6504                      protein_coding
6505                      protein_coding
6506                      protein_coding
6507                      protein_coding
6508                      protein_coding
6509                      protein_coding
6510                      protein_coding
6511                      protein_coding
6512                      protein_coding
6513                      protein_coding
6514                      protein_coding
6515                      protein_coding
6516                      protein_coding
6517                      protein_coding
6518                      protein_coding
6519                      protein_coding
6520                      protein_coding
6521                      protein_coding
6522                      protein_coding
6523                      protein_coding
6524                      protein_coding
6525                      protein_coding
6526              unprocessed_pseudogene
6527              unprocessed_pseudogene
6528              unprocessed_pseudogene
6529              unprocessed_pseudogene
6530              unprocessed_pseudogene
6531              unprocessed_pseudogene
6532              unprocessed_pseudogene
6533              unprocessed_pseudogene
6534              unprocessed_pseudogene
6535                           antisense
6536                           antisense
6537                      protein_coding
6538                      protein_coding
6539                      protein_coding
6540                      protein_coding
6541                      protein_coding
6542                      protein_coding
6543                      protein_coding
6544                      protein_coding
6545                      protein_coding
6546                      protein_coding
6547                      protein_coding
6548                      protein_coding
6549                      protein_coding
6550                      protein_coding
6551                      protein_coding
6552                      protein_coding
6553                      protein_coding
6554                      protein_coding
6555                      protein_coding
6556                      protein_coding
6557                      protein_coding
6558                      protein_coding
6559                      protein_coding
6560                      protein_coding
6561                      protein_coding
6562                      protein_coding
6563                      protein_coding
6564                      protein_coding
6565                      protein_coding
6566                      protein_coding
6567                      protein_coding
6568                      protein_coding
6569                      protein_coding
6570                      protein_coding
6571                      protein_coding
6572                      protein_coding
6573                      protein_coding
6574                      protein_coding
6575                      protein_coding
6576                      protein_coding
6577                      protein_coding
6578                      protein_coding
6579                      protein_coding
6580                      protein_coding
6581                      protein_coding
6582                      protein_coding
6583                      protein_coding
6584                      protein_coding
6585                      protein_coding
6586                      protein_coding
6587                      protein_coding
6588                      protein_coding
6589                      protein_coding
6590                      protein_coding
6591                      protein_coding
6592                      protein_coding
6593                      protein_coding
6594                      protein_coding
6595                      protein_coding
6596                      protein_coding
6597                      protein_coding
6598                      protein_coding
6599                      protein_coding
6600                      protein_coding
6601                      protein_coding
6602                      protein_coding
6603                      protein_coding
6604                      protein_coding
6605                      protein_coding
6606                      protein_coding
6607                      protein_coding
6608                      protein_coding
6609                      protein_coding
6610                      protein_coding
6611                      protein_coding
6612                      protein_coding
6613                      protein_coding
6614                      protein_coding
6615                      protein_coding
6616                      protein_coding
6617                      protein_coding
6618                      protein_coding
6619                      protein_coding
6620                      protein_coding
6621                      protein_coding
6622                      protein_coding
6623                      protein_coding
6624                      protein_coding
6625                      protein_coding
6626                      protein_coding
6627                      protein_coding
6628                processed_pseudogene
6629                processed_pseudogene
6630                processed_pseudogene
6631                processed_pseudogene
6632                             lincRNA
6633                             lincRNA
6634                             lincRNA
6635                      protein_coding
6636                      protein_coding
6637                      protein_coding
6638                      protein_coding
6639                      protein_coding
6640                      protein_coding
6641                      protein_coding
6642                      protein_coding
6643                      protein_coding
6644                      protein_coding
6645                      protein_coding
6646                      protein_coding
6647                      protein_coding
6648                      protein_coding
6649                      protein_coding
6650                      protein_coding
6651                      protein_coding
6652                      protein_coding
6653                      protein_coding
6654                      protein_coding
6655                      protein_coding
6656                      protein_coding
6657                      protein_coding
6658                      protein_coding
6659                      protein_coding
6660                      protein_coding
6661                      protein_coding
6662                      protein_coding
6663                      protein_coding
6664                      protein_coding
6665                      protein_coding
6666                      protein_coding
6667                      protein_coding
6668                      protein_coding
6669                      protein_coding
6670                      protein_coding
6671                      protein_coding
6672                      protein_coding
6673                      protein_coding
6674                      protein_coding
6675                      protein_coding
6676                      protein_coding
6677                      protein_coding
6678                      protein_coding
6679                      protein_coding
6680                      protein_coding
6681                             lincRNA
6682                             lincRNA
6683                processed_pseudogene
6684                      protein_coding
6685                      protein_coding
6686                      protein_coding
6687                      protein_coding
6688                      protein_coding
6689                      protein_coding
6690                      protein_coding
6691                      protein_coding
6692                      protein_coding
6693                      protein_coding
6694                      protein_coding
6695                      protein_coding
6696                      protein_coding
6697                      protein_coding
6698                      protein_coding
6699                      protein_coding
6700                      protein_coding
6701                      protein_coding
6702                      protein_coding
6703                      protein_coding
6704                      protein_coding
6705                      protein_coding
6706                      protein_coding
6707                      protein_coding
6708                      protein_coding
6709                      protein_coding
6710                      protein_coding
6711                      protein_coding
6712                      protein_coding
6713                      protein_coding
6714                      protein_coding
6715                      protein_coding
6716                      protein_coding
6717                      protein_coding
6718                      protein_coding
6719                      protein_coding
6720                      protein_coding
6721                      protein_coding
6722                      protein_coding
6723                      protein_coding
6724                      protein_coding
6725                      protein_coding
6726                      protein_coding
6727                      protein_coding
6728                      protein_coding
6729                      protein_coding
6730                      protein_coding
6731                      protein_coding
6732                      protein_coding
6733                      protein_coding
6734                      protein_coding
6735                      protein_coding
6736                      protein_coding
6737                      protein_coding
6738                           antisense
6739                           antisense
6740              unprocessed_pseudogene
6741              unprocessed_pseudogene
6742              unprocessed_pseudogene
6743              unprocessed_pseudogene
6744              unprocessed_pseudogene
6745              unprocessed_pseudogene
6746                      protein_coding
6747                      protein_coding
6748                      protein_coding
6749                      protein_coding
6750                      protein_coding
6751                      protein_coding
6752                      protein_coding
6753                      protein_coding
6754                      protein_coding
6755                      protein_coding
6756                      protein_coding
6757                      protein_coding
6758                      protein_coding
6759                      protein_coding
6760                      protein_coding
6761                      protein_coding
6762                      protein_coding
6763                      protein_coding
6764                      protein_coding
6765                      protein_coding
6766                      protein_coding
6767                      protein_coding
6768                      protein_coding
6769                      protein_coding
6770                      protein_coding
6771                      protein_coding
6772                      protein_coding
6773                      protein_coding
6774                      protein_coding
6775                      protein_coding
6776                      protein_coding
6777                      protein_coding
6778                      protein_coding
6779                      protein_coding
6780                      protein_coding
6781                      protein_coding
6782                      protein_coding
6783                      protein_coding
6784                      protein_coding
6785                      protein_coding
6786                      protein_coding
6787                      protein_coding
6788                      protein_coding
6789                      protein_coding
6790                      protein_coding
6791                      protein_coding
6792                      protein_coding
6793                      protein_coding
6794                      protein_coding
6795                      protein_coding
6796                      protein_coding
6797                           antisense
6798                           antisense
6799                processed_pseudogene
6800                             lincRNA
6801                             lincRNA
6802                      protein_coding
6803                      protein_coding
6804                      protein_coding
6805                      protein_coding
6806                      protein_coding
6807                      protein_coding
6808                      protein_coding
6809                      protein_coding
6810                      protein_coding
6811                      protein_coding
6812                      protein_coding
6813                      protein_coding
6814                      protein_coding
6815                      protein_coding
6816                      protein_coding
6817                      protein_coding
6818                      protein_coding
6819                      protein_coding
6820                      protein_coding
6821                      protein_coding
6822                      protein_coding
6823                      protein_coding
6824                      protein_coding
6825                      protein_coding
6826                      protein_coding
6827                      protein_coding
6828                      protein_coding
6829                      protein_coding
6830                      protein_coding
6831                      protein_coding
6832                      protein_coding
6833                      protein_coding
6834                      protein_coding
6835                      protein_coding
6836                      protein_coding
6837                      protein_coding
6838                      protein_coding
6839                      protein_coding
6840                      protein_coding
6841                      protein_coding
6842                      protein_coding
6843                      protein_coding
6844                      protein_coding
6845                      protein_coding
6846                      protein_coding
6847                      protein_coding
6848                      protein_coding
6849                      protein_coding
6850                      protein_coding
6851                      protein_coding
6852                      protein_coding
6853                      protein_coding
6854                      protein_coding
6855                      protein_coding
6856                      protein_coding
6857                      protein_coding
6858                      protein_coding
6859                      protein_coding
6860                      protein_coding
6861                      protein_coding
6862                      protein_coding
6863                      protein_coding
6864                      protein_coding
6865                      protein_coding
6866                      protein_coding
6867                      protein_coding
6868                      protein_coding
6869                      protein_coding
6870                      protein_coding
6871                      protein_coding
6872                      protein_coding
6873                      protein_coding
6874                      protein_coding
6875                      protein_coding
6876                      protein_coding
6877                             lincRNA
6878                             lincRNA
6879                      protein_coding
6880                           antisense
6881                           antisense
6882                processed_pseudogene
6883                processed_pseudogene
6884                             lincRNA
6885                             lincRNA
6886                             lincRNA
6887                             lincRNA
6888                             lincRNA
6889                             lincRNA
6890                             lincRNA
6891                             lincRNA
6892                             lincRNA
6893                             lincRNA
6894                             lincRNA
6895                             lincRNA
6896                             lincRNA
6897                             lincRNA
6898                             lincRNA
6899                             lincRNA
6900                             lincRNA
6901                             lincRNA
6902                      protein_coding
6903                      protein_coding
6904                      protein_coding
6905                      protein_coding
6906                      protein_coding
6907                      protein_coding
6908                      protein_coding
6909                      protein_coding
6910                      protein_coding
6911                                 TEC
6912                                 TEC
6913                      protein_coding
6914                      protein_coding
6915                      protein_coding
6916                      protein_coding
6917                      protein_coding
6918                      protein_coding
6919                      protein_coding
6920                      protein_coding
6921                      protein_coding
6922                      protein_coding
6923                      protein_coding
6924                      protein_coding
6925                      protein_coding
6926                      protein_coding
6927                      protein_coding
6928                      protein_coding
6929                      protein_coding
6930                      protein_coding
6931                      protein_coding
6932                      protein_coding
6933                      protein_coding
6934                      protein_coding
6935                      protein_coding
6936                      protein_coding
6937                      protein_coding
6938                      protein_coding
6939                      protein_coding
6940                      protein_coding
6941                      protein_coding
6942                      protein_coding
6943                      protein_coding
6944                      protein_coding
6945                      protein_coding
6946                      protein_coding
6947                      protein_coding
6948                      protein_coding
6949                      protein_coding
6950                      protein_coding
6951                      protein_coding
6952                      protein_coding
6953                      protein_coding
6954                      protein_coding
6955                      protein_coding
6956                      protein_coding
6957                      protein_coding
6958                      protein_coding
6959                      protein_coding
6960                      protein_coding
6961                      protein_coding
6962                      protein_coding
6963                      protein_coding
6964                      protein_coding
6965                      protein_coding
6966                      protein_coding
6967                      protein_coding
6968                      protein_coding
6969                      protein_coding
6970                      protein_coding
6971                      protein_coding
6972                      protein_coding
6973                      protein_coding
6974                      protein_coding
6975                      protein_coding
6976                      protein_coding
6977                      protein_coding
6978                      protein_coding
6979                      protein_coding
6980                      protein_coding
6981                      protein_coding
6982                      protein_coding
6983                      protein_coding
6984                      protein_coding
6985                      protein_coding
6986                      protein_coding
6987                      protein_coding
6988                      protein_coding
6989                      protein_coding
6990                      protein_coding
6991                      protein_coding
6992                      protein_coding
6993                      protein_coding
6994                      protein_coding
6995                      protein_coding
6996                      protein_coding
6997                      protein_coding
6998                      protein_coding
6999                      protein_coding
7000                      protein_coding
7001                      protein_coding
7002                      protein_coding
7003                      protein_coding
7004                      protein_coding
7005                      protein_coding
7006                      protein_coding
7007                      protein_coding
7008                      protein_coding
7009                      protein_coding
7010                      protein_coding
7011                      protein_coding
7012                      protein_coding
7013                      protein_coding
7014                      protein_coding
7015                      protein_coding
7016                      protein_coding
7017                      protein_coding
7018                      protein_coding
7019                      protein_coding
7020                      protein_coding
7021                      protein_coding
7022                      protein_coding
7023                      protein_coding
7024                      protein_coding
7025                      protein_coding
7026                      protein_coding
7027                      protein_coding
7028                      protein_coding
7029                      protein_coding
7030                      protein_coding
7031                      protein_coding
7032                      protein_coding
7033                      protein_coding
7034                      protein_coding
7035                      protein_coding
7036                      protein_coding
7037                      protein_coding
7038                      protein_coding
7039                      protein_coding
7040                      protein_coding
7041                      protein_coding
7042                      protein_coding
7043                      protein_coding
7044                      protein_coding
7045                      protein_coding
7046                      protein_coding
7047                      protein_coding
7048                      protein_coding
7049                      protein_coding
7050                      protein_coding
7051                      protein_coding
7052                      protein_coding
7053                      protein_coding
7054                      protein_coding
7055                      protein_coding
7056                      protein_coding
7057                      protein_coding
7058                      protein_coding
7059                      protein_coding
7060                      protein_coding
7061                      protein_coding
7062                      protein_coding
7063                      protein_coding
7064                      protein_coding
7065                      protein_coding
7066                      protein_coding
7067                      protein_coding
7068                      protein_coding
7069                      protein_coding
7070                      protein_coding
7071                      protein_coding
7072                      protein_coding
7073                      protein_coding
7074                      protein_coding
7075                      protein_coding
7076                      protein_coding
7077                      protein_coding
7078                      protein_coding
7079                      protein_coding
7080                      protein_coding
7081                      protein_coding
7082                      protein_coding
7083                      protein_coding
7084                      protein_coding
7085                      protein_coding
7086                      protein_coding
7087                      protein_coding
7088                      protein_coding
7089                      protein_coding
7090                      protein_coding
7091                      protein_coding
7092                      protein_coding
7093                      protein_coding
7094                      protein_coding
7095                      protein_coding
7096                      protein_coding
7097                      protein_coding
7098                      protein_coding
7099                      protein_coding
7100                      protein_coding
7101                      protein_coding
7102                      protein_coding
7103                      protein_coding
7104                      protein_coding
7105                      protein_coding
7106                      protein_coding
7107                      protein_coding
7108                      protein_coding
7109                      protein_coding
7110                      protein_coding
7111                      protein_coding
7112                      protein_coding
7113                      protein_coding
7114                      protein_coding
7115                      protein_coding
7116                      protein_coding
7117                      protein_coding
7118                      protein_coding
7119                      protein_coding
7120                      protein_coding
7121                      protein_coding
7122                      protein_coding
7123                      protein_coding
7124                      protein_coding
7125                      protein_coding
7126                      protein_coding
7127                      protein_coding
7128                      protein_coding
7129                      protein_coding
7130                      protein_coding
7131                      protein_coding
7132                      protein_coding
7133                      protein_coding
7134                      protein_coding
7135                      protein_coding
7136                      protein_coding
7137                      protein_coding
7138                      protein_coding
7139                      protein_coding
7140                      protein_coding
7141                      protein_coding
7142                      protein_coding
7143                      protein_coding
7144                      protein_coding
7145                      protein_coding
7146                      protein_coding
7147                      protein_coding
7148                      protein_coding
7149                      protein_coding
7150                      protein_coding
7151                      protein_coding
7152                      protein_coding
7153                      protein_coding
7154                      protein_coding
7155                      protein_coding
7156                      protein_coding
7157                      protein_coding
7158                      protein_coding
7159                      protein_coding
7160                      protein_coding
7161                      protein_coding
7162                      protein_coding
7163                      protein_coding
7164                      protein_coding
7165                      protein_coding
7166                      protein_coding
7167                      protein_coding
7168                      protein_coding
7169                      protein_coding
7170                      protein_coding
7171                      protein_coding
7172                      protein_coding
7173                      protein_coding
7174                      protein_coding
7175                      protein_coding
7176                      protein_coding
7177                      protein_coding
7178                      protein_coding
7179                      protein_coding
7180                      protein_coding
7181                      protein_coding
7182                      protein_coding
7183                      protein_coding
7184                      protein_coding
7185                      protein_coding
7186                      protein_coding
7187                      protein_coding
7188                      protein_coding
7189                      protein_coding
7190                      protein_coding
7191                      protein_coding
7192                      protein_coding
7193                      protein_coding
7194                      protein_coding
7195                      protein_coding
7196                      protein_coding
7197                      protein_coding
7198                      protein_coding
7199                      protein_coding
7200                      protein_coding
7201                      protein_coding
7202                      protein_coding
7203                      protein_coding
7204                      protein_coding
7205                      protein_coding
7206                      protein_coding
7207                      protein_coding
7208                      protein_coding
7209                      protein_coding
7210                      protein_coding
7211                      protein_coding
7212                      protein_coding
7213                      protein_coding
7214                      protein_coding
7215                      protein_coding
7216                      protein_coding
7217                      protein_coding
7218                      protein_coding
7219                      protein_coding
7220                      protein_coding
7221                      protein_coding
7222                      protein_coding
7223                      protein_coding
7224                      protein_coding
7225                      protein_coding
7226                      protein_coding
7227                      protein_coding
7228                      protein_coding
7229                      protein_coding
7230                      protein_coding
7231                      protein_coding
7232                      protein_coding
7233                      protein_coding
7234                      protein_coding
7235                      protein_coding
7236                      protein_coding
7237                      protein_coding
7238                      protein_coding
7239                      protein_coding
7240                      protein_coding
7241                      protein_coding
7242                      protein_coding
7243                      protein_coding
7244                      protein_coding
7245                      protein_coding
7246                      protein_coding
7247                      protein_coding
7248                      protein_coding
7249                      protein_coding
7250                      protein_coding
7251                      protein_coding
7252                      protein_coding
7253                      protein_coding
7254                      protein_coding
7255                      protein_coding
7256                      protein_coding
7257                      protein_coding
7258                      protein_coding
7259                      protein_coding
7260                      protein_coding
7261                      protein_coding
7262                      protein_coding
7263                      protein_coding
7264                      protein_coding
7265                      protein_coding
7266                      protein_coding
7267                      protein_coding
7268                      protein_coding
7269                      protein_coding
7270                      protein_coding
7271                      protein_coding
7272                      protein_coding
7273                      protein_coding
7274                      protein_coding
7275                      protein_coding
7276                      protein_coding
7277                      protein_coding
7278                      protein_coding
7279                      protein_coding
7280                      protein_coding
7281                      protein_coding
7282                      protein_coding
7283                      protein_coding
7284                      protein_coding
7285                      protein_coding
7286                      protein_coding
7287                      protein_coding
7288                      protein_coding
7289                      protein_coding
7290                      protein_coding
7291                      protein_coding
7292                      protein_coding
7293                      protein_coding
7294                      protein_coding
7295                      protein_coding
7296                      protein_coding
7297                      protein_coding
7298                      protein_coding
7299                      protein_coding
7300                      protein_coding
7301                      protein_coding
7302                      protein_coding
7303                      protein_coding
7304                      protein_coding
7305                      protein_coding
7306                      protein_coding
7307                      protein_coding
7308                      protein_coding
7309                      protein_coding
7310                      protein_coding
7311                      protein_coding
7312                      protein_coding
7313                      protein_coding
7314                      protein_coding
7315                      protein_coding
7316                      protein_coding
7317                      protein_coding
7318                      protein_coding
7319                      protein_coding
7320                      protein_coding
7321                      protein_coding
7322                                 TEC
7323                processed_pseudogene
7324                           antisense
7325                   sense_overlapping
7326                   sense_overlapping
7327                   sense_overlapping
7328                      protein_coding
7329                      protein_coding
7330                      protein_coding
7331                      protein_coding
7332                      protein_coding
7333                      protein_coding
7334                      protein_coding
7335                      protein_coding
7336                           antisense
7337                           antisense
7338                           antisense
7339                           antisense
7340                           antisense
7341                           antisense
7342                           antisense
7343                           antisense
7344                           antisense
7345                           antisense
7346                           antisense
7347                           antisense
7348                           antisense
7349                           antisense
7350                processed_pseudogene
7351                           antisense
7352                           antisense
7353                      protein_coding
7354                      protein_coding
7355                      protein_coding
7356                      protein_coding
7357                      protein_coding
7358                      protein_coding
7359                      protein_coding
7360                      protein_coding
7361                      protein_coding
7362                      protein_coding
7363                      protein_coding
7364                      protein_coding
7365                      protein_coding
7366                      protein_coding
7367                      protein_coding
7368                      protein_coding
7369                      protein_coding
7370                      protein_coding
7371                      protein_coding
7372                      protein_coding
7373                      protein_coding
7374                      protein_coding
7375                      protein_coding
7376                      protein_coding
7377                             lincRNA
7378                             lincRNA
7379                             lincRNA
7380                             lincRNA
7381                             lincRNA
7382                             lincRNA
7383                             lincRNA
7384                             lincRNA
7385                             lincRNA
7386                             lincRNA
7387                             lincRNA
7388                             lincRNA
7389                             lincRNA
7390                             lincRNA
7391                             lincRNA
7392                             lincRNA
7393                             lincRNA
7394                             lincRNA
7395                      protein_coding
7396                      protein_coding
7397                      protein_coding
7398                      protein_coding
7399                      protein_coding
7400                      protein_coding
7401                      protein_coding
7402                      protein_coding
7403                      protein_coding
7404                      protein_coding
7405                      protein_coding
7406                      protein_coding
7407                      protein_coding
7408                      protein_coding
7409                      protein_coding
7410                      protein_coding
7411                      protein_coding
7412                      protein_coding
7413                      protein_coding
7414                      protein_coding
7415                      protein_coding
7416                      protein_coding
7417                      protein_coding
7418                      protein_coding
7419                      protein_coding
7420                      protein_coding
7421                      protein_coding
7422                      protein_coding
7423                      protein_coding
7424                      protein_coding
7425                      protein_coding
7426                      protein_coding
7427                      protein_coding
7428                      protein_coding
7429                      protein_coding
7430                      protein_coding
7431                      protein_coding
7432                      protein_coding
7433                      protein_coding
7434                      protein_coding
7435                      protein_coding
7436                      protein_coding
7437                      protein_coding
7438                      protein_coding
7439                      protein_coding
7440                      protein_coding
7441                      protein_coding
7442                      protein_coding
7443                      protein_coding
7444                      protein_coding
7445                      protein_coding
7446                      protein_coding
7447                      protein_coding
7448                      protein_coding
7449                      protein_coding
7450                      protein_coding
7451                      protein_coding
7452                      protein_coding
7453                      protein_coding
7454                      protein_coding
7455                      protein_coding
7456                      protein_coding
7457                      protein_coding
7458                      protein_coding
7459                      protein_coding
7460                      protein_coding
7461                      protein_coding
7462                      protein_coding
7463                      protein_coding
7464                      protein_coding
7465                      protein_coding
7466                      protein_coding
7467                      protein_coding
7468                             lincRNA
7469                             lincRNA
7470                             lincRNA
7471                             lincRNA
7472                             lincRNA
7473                      protein_coding
7474                      protein_coding
7475                      protein_coding
7476                      protein_coding
7477                      protein_coding
7478                      protein_coding
7479                      protein_coding
7480                      protein_coding
7481                      protein_coding
7482                      protein_coding
7483                      protein_coding
7484                      protein_coding
7485                      protein_coding
7486                      protein_coding
7487                      protein_coding
7488                      protein_coding
7489                      protein_coding
7490                      protein_coding
7491                      protein_coding
7492                      protein_coding
7493                      protein_coding
7494                      protein_coding
7495                      protein_coding
7496                      protein_coding
7497                      protein_coding
7498                      protein_coding
7499                      protein_coding
7500                      protein_coding
7501                      protein_coding
7502                      protein_coding
7503                      protein_coding
7504                      protein_coding
7505                      protein_coding
7506                      protein_coding
7507                      protein_coding
7508                      protein_coding
7509                      protein_coding
7510                      protein_coding
7511                      protein_coding
7512                      protein_coding
7513                      protein_coding
7514                      protein_coding
7515                      protein_coding
7516                      protein_coding
7517                      protein_coding
7518                      protein_coding
7519                      protein_coding
7520                      protein_coding
7521                      protein_coding
7522                      protein_coding
7523                      protein_coding
7524                      protein_coding
7525                      protein_coding
7526                      protein_coding
7527                      protein_coding
7528                      protein_coding
7529                      protein_coding
7530                      protein_coding
7531                      protein_coding
7532                      protein_coding
7533                      protein_coding
7534                      protein_coding
7535                      protein_coding
7536                      protein_coding
7537                      protein_coding
7538                      protein_coding
7539                      protein_coding
7540                      protein_coding
7541                      protein_coding
7542                      protein_coding
7543                      protein_coding
7544                      protein_coding
7545                      protein_coding
7546                      protein_coding
7547                      protein_coding
7548                      protein_coding
7549                      protein_coding
7550                      protein_coding
7551                      protein_coding
7552                      protein_coding
7553                      protein_coding
7554                      protein_coding
7555                      protein_coding
7556                      protein_coding
7557                      protein_coding
7558                      protein_coding
7559                      protein_coding
7560                      protein_coding
7561                      protein_coding
7562                      protein_coding
7563                      protein_coding
7564                      protein_coding
7565                      protein_coding
7566                      protein_coding
7567                      protein_coding
7568                      protein_coding
7569                      protein_coding
7570                      protein_coding
7571                      protein_coding
7572                      protein_coding
7573                      protein_coding
7574                      protein_coding
7575                      protein_coding
7576                      protein_coding
7577                      protein_coding
7578                      protein_coding
7579                      protein_coding
7580                      protein_coding
7581                      protein_coding
7582                      protein_coding
7583                      protein_coding
7584                      protein_coding
7585                      protein_coding
7586                      protein_coding
7587                      protein_coding
7588                      protein_coding
7589                      protein_coding
7590                      protein_coding
7591                      protein_coding
7592                      protein_coding
7593                           antisense
7594                           antisense
7595                             lincRNA
7596                             lincRNA
7597                      protein_coding
7598                      protein_coding
7599                      protein_coding
7600                      protein_coding
7601                      protein_coding
7602                      protein_coding
7603                      protein_coding
7604                      protein_coding
7605                      protein_coding
7606                      protein_coding
7607                      protein_coding
7608                      protein_coding
7609                      protein_coding
7610                      protein_coding
7611                      protein_coding
7612                      protein_coding
7613                      protein_coding
7614                      protein_coding
7615                      protein_coding
7616                      protein_coding
7617                      protein_coding
7618                      protein_coding
7619                      protein_coding
7620                      protein_coding
7621                      protein_coding
7622                      protein_coding
7623                      protein_coding
7624                      protein_coding
7625                      protein_coding
7626                      protein_coding
7627                      protein_coding
7628                      protein_coding
7629                      protein_coding
7630                      protein_coding
7631                      protein_coding
7632                      protein_coding
7633                      protein_coding
7634                      protein_coding
7635                      protein_coding
7636                      protein_coding
7637                      protein_coding
7638                      protein_coding
7639                      protein_coding
7640                      protein_coding
7641                      protein_coding
7642                      protein_coding
7643                      protein_coding
7644                      protein_coding
7645                      protein_coding
7646                      protein_coding
7647                      protein_coding
7648                      protein_coding
7649                      protein_coding
7650                      protein_coding
7651                      protein_coding
7652                      protein_coding
7653                      protein_coding
7654                      protein_coding
7655                      protein_coding
7656                      protein_coding
7657                      protein_coding
7658                      protein_coding
7659                      protein_coding
7660                      protein_coding
7661                      protein_coding
7662                      protein_coding
7663                      protein_coding
7664                      protein_coding
7665                      protein_coding
7666                      protein_coding
7667                      protein_coding
7668                      protein_coding
7669                      protein_coding
7670                      protein_coding
7671                      protein_coding
7672                      protein_coding
7673                      protein_coding
7674                      protein_coding
7675                      protein_coding
7676                      protein_coding
7677                      protein_coding
7678                      protein_coding
7679                      protein_coding
7680                      protein_coding
7681                      protein_coding
7682                      protein_coding
7683                      protein_coding
7684                      protein_coding
7685                      protein_coding
7686                      protein_coding
7687                      protein_coding
7688                      protein_coding
7689                      protein_coding
7690                      protein_coding
7691                      protein_coding
7692                      protein_coding
7693                      protein_coding
7694                      protein_coding
7695                      protein_coding
7696                      protein_coding
7697                      protein_coding
7698                      protein_coding
7699                      protein_coding
7700                      protein_coding
7701                      protein_coding
7702                      protein_coding
7703                      protein_coding
7704                      protein_coding
7705                      protein_coding
7706                      protein_coding
7707                      protein_coding
7708                      protein_coding
7709                      protein_coding
7710                      protein_coding
7711                      protein_coding
7712                      protein_coding
7713                      protein_coding
7714                      protein_coding
7715                      protein_coding
7716                      protein_coding
7717                      protein_coding
7718                      protein_coding
7719                      protein_coding
7720                      protein_coding
7721                      protein_coding
7722                      protein_coding
7723                      protein_coding
7724                      protein_coding
7725                      protein_coding
7726                      protein_coding
7727                      protein_coding
7728                      protein_coding
7729                      protein_coding
7730                      protein_coding
7731                      protein_coding
7732                      protein_coding
7733                      protein_coding
7734                      protein_coding
7735                      protein_coding
7736                      protein_coding
7737                      protein_coding
7738                      protein_coding
7739                      protein_coding
7740                      protein_coding
7741                      protein_coding
7742                      protein_coding
7743                      protein_coding
7744                      protein_coding
7745                      protein_coding
7746                      protein_coding
7747                      protein_coding
7748                      protein_coding
7749                      protein_coding
7750                      protein_coding
7751                      protein_coding
7752                      protein_coding
7753                      protein_coding
7754                      protein_coding
7755                      protein_coding
7756                      protein_coding
7757                      protein_coding
7758                      protein_coding
7759                      protein_coding
7760                      protein_coding
7761                      protein_coding
7762                      protein_coding
7763                      protein_coding
7764                      protein_coding
7765                      protein_coding
7766                      protein_coding
7767                      protein_coding
7768                      protein_coding
7769                      protein_coding
7770                      protein_coding
7771                      protein_coding
7772                      protein_coding
7773                      protein_coding
7774                      protein_coding
7775                      protein_coding
7776                      protein_coding
7777                      protein_coding
7778                      protein_coding
7779                      protein_coding
7780                      protein_coding
7781                      protein_coding
7782                      protein_coding
7783                      protein_coding
7784                      protein_coding
7785                      protein_coding
7786                      protein_coding
7787                      protein_coding
7788                      protein_coding
7789                      protein_coding
7790                      protein_coding
7791                      protein_coding
7792                      protein_coding
7793                      protein_coding
7794                      protein_coding
7795                      protein_coding
7796                      protein_coding
7797                      protein_coding
7798                      protein_coding
7799                      protein_coding
7800                      protein_coding
7801                      protein_coding
7802                      protein_coding
7803                      protein_coding
7804                      protein_coding
7805                      protein_coding
7806                      protein_coding
7807                      protein_coding
7808                      protein_coding
7809                      protein_coding
7810                      protein_coding
7811                      protein_coding
7812                      protein_coding
7813                      protein_coding
7814                      protein_coding
7815                      protein_coding
7816                      protein_coding
7817                      protein_coding
7818                      protein_coding
7819                      protein_coding
7820                      protein_coding
7821                      protein_coding
7822                      protein_coding
7823                      protein_coding
7824                      protein_coding
7825                      protein_coding
7826                      protein_coding
7827                      protein_coding
7828                      protein_coding
7829                      protein_coding
7830                      protein_coding
7831                      protein_coding
7832                      protein_coding
7833                      protein_coding
7834                      protein_coding
7835                      protein_coding
7836                      protein_coding
7837                      protein_coding
7838                      protein_coding
7839                      protein_coding
7840                      protein_coding
7841                      protein_coding
7842                      protein_coding
7843                      protein_coding
7844                      protein_coding
7845                      protein_coding
7846                      protein_coding
7847                      protein_coding
7848                      protein_coding
7849                      protein_coding
7850                      protein_coding
7851                      protein_coding
7852                      protein_coding
7853                      protein_coding
7854                      protein_coding
7855                      protein_coding
7856                      protein_coding
7857                      protein_coding
7858                      protein_coding
7859                      protein_coding
7860                      protein_coding
7861                      protein_coding
7862                      protein_coding
7863                      protein_coding
7864                      protein_coding
7865                      protein_coding
7866                      protein_coding
7867                      protein_coding
7868                      protein_coding
7869                      protein_coding
7870                      protein_coding
7871                      protein_coding
7872                      protein_coding
7873                      protein_coding
7874                      protein_coding
7875                      protein_coding
7876                      protein_coding
7877                      protein_coding
7878                      protein_coding
7879                      protein_coding
7880                      protein_coding
7881                      protein_coding
7882                      protein_coding
7883                      protein_coding
7884                      protein_coding
7885                      protein_coding
7886                      protein_coding
7887                      protein_coding
7888                      protein_coding
7889                      protein_coding
7890                      protein_coding
7891                      protein_coding
7892                      protein_coding
7893                      protein_coding
7894                      protein_coding
7895                      protein_coding
7896                      protein_coding
7897                      protein_coding
7898                      protein_coding
7899                      protein_coding
7900                      protein_coding
7901                      protein_coding
7902                      protein_coding
7903                      protein_coding
7904                      protein_coding
7905                      protein_coding
7906                      protein_coding
7907                      protein_coding
7908                      protein_coding
7909                      protein_coding
7910                      protein_coding
7911                      protein_coding
7912                      protein_coding
7913                      protein_coding
7914                      protein_coding
7915                      protein_coding
7916                      protein_coding
7917                      protein_coding
7918                      protein_coding
7919                      protein_coding
7920                      protein_coding
7921                      protein_coding
7922                      protein_coding
7923                      protein_coding
7924                      protein_coding
7925                      protein_coding
7926                      protein_coding
7927                      protein_coding
7928                      protein_coding
7929                      protein_coding
7930                      protein_coding
7931                      protein_coding
7932                      protein_coding
7933                      protein_coding
7934                      protein_coding
7935                      protein_coding
7936                      protein_coding
7937                      protein_coding
7938                      protein_coding
7939                      protein_coding
7940                      protein_coding
7941                      protein_coding
7942                      protein_coding
7943                      protein_coding
7944                      protein_coding
7945                      protein_coding
7946                      protein_coding
7947                      protein_coding
7948                      protein_coding
7949                      protein_coding
7950                      protein_coding
7951                      protein_coding
7952                      protein_coding
7953                      protein_coding
7954                      protein_coding
7955                      protein_coding
7956                      protein_coding
7957                      protein_coding
7958                      protein_coding
7959                      protein_coding
7960                      protein_coding
7961                      protein_coding
7962                      protein_coding
7963                      protein_coding
7964                      protein_coding
7965                      protein_coding
7966                      protein_coding
7967                      protein_coding
7968                      protein_coding
7969                      protein_coding
7970                      protein_coding
7971                      protein_coding
7972                      protein_coding
7973                      protein_coding
7974                      protein_coding
7975                      protein_coding
7976                      protein_coding
7977                      protein_coding
7978                      protein_coding
7979                      protein_coding
7980                      protein_coding
7981                      protein_coding
7982                      protein_coding
7983                      protein_coding
7984                      protein_coding
7985                      protein_coding
7986                      protein_coding
7987                      protein_coding
7988                      protein_coding
7989                      protein_coding
7990                      protein_coding
7991                      protein_coding
7992                      protein_coding
7993                      protein_coding
7994                      protein_coding
7995                      protein_coding
7996                      protein_coding
7997                      protein_coding
7998                      protein_coding
7999                      protein_coding
8000                      protein_coding
8001                      protein_coding
8002                      protein_coding
8003                      protein_coding
8004                      protein_coding
8005                      protein_coding
8006                      protein_coding
8007                      protein_coding
8008                      protein_coding
8009                      protein_coding
8010                      protein_coding
8011                      protein_coding
8012                      protein_coding
8013                      protein_coding
8014                      protein_coding
8015                      protein_coding
8016                      protein_coding
8017                      protein_coding
8018                      protein_coding
8019                      protein_coding
8020                      protein_coding
8021                      protein_coding
8022                      protein_coding
8023                      protein_coding
8024                      protein_coding
8025                      protein_coding
8026                      protein_coding
8027                      protein_coding
8028                      protein_coding
8029                      protein_coding
8030                      protein_coding
8031                      protein_coding
8032                      protein_coding
8033                      protein_coding
8034                      protein_coding
8035                      protein_coding
8036                      protein_coding
8037                      protein_coding
8038                      protein_coding
8039                      protein_coding
8040                      protein_coding
8041                      protein_coding
8042                      protein_coding
8043                      protein_coding
8044                processed_pseudogene
8045                processed_pseudogene
8046                             lincRNA
8047                             lincRNA
8048                      protein_coding
8049                      protein_coding
8050                      protein_coding
8051                      protein_coding
8052                      protein_coding
8053                      protein_coding
8054                      protein_coding
8055                      protein_coding
8056                      protein_coding
8057                      protein_coding
8058                      protein_coding
8059                      protein_coding
8060                      protein_coding
8061                      protein_coding
8062                      protein_coding
8063                      protein_coding
8064                      protein_coding
8065                      protein_coding
8066                      protein_coding
8067                      protein_coding
8068                      protein_coding
8069                      protein_coding
8070                      protein_coding
8071                      protein_coding
8072                      protein_coding
8073                      protein_coding
8074                      protein_coding
8075                      protein_coding
8076                      protein_coding
8077                      protein_coding
8078                      protein_coding
8079                      protein_coding
8080                      protein_coding
8081                      protein_coding
8082                      protein_coding
8083                      protein_coding
8084                      protein_coding
8085                      protein_coding
8086                      protein_coding
8087                      protein_coding
8088                      protein_coding
8089                      protein_coding
8090                      protein_coding
8091                      protein_coding
8092                      protein_coding
8093                      protein_coding
8094                      protein_coding
8095                      protein_coding
8096                      protein_coding
8097                      protein_coding
8098                      protein_coding
8099                      protein_coding
8100                      protein_coding
8101                      protein_coding
8102                      protein_coding
8103                      protein_coding
8104                      protein_coding
8105                      protein_coding
8106                      protein_coding
8107                      protein_coding
8108                      protein_coding
8109                      protein_coding
8110                      protein_coding
8111                      protein_coding
8112                      protein_coding
8113                      protein_coding
8114                      protein_coding
8115                      protein_coding
8116                      protein_coding
8117                      protein_coding
8118                      protein_coding
8119                      protein_coding
8120                      protein_coding
8121                      protein_coding
8122                      protein_coding
8123                      protein_coding
8124                      protein_coding
8125                      protein_coding
8126                      protein_coding
8127                      protein_coding
8128                      protein_coding
8129                      protein_coding
8130                      protein_coding
8131                processed_pseudogene
8132                           antisense
8133                           antisense
8134                           antisense
8135                           antisense
8136                           antisense
8137                           antisense
8138                           antisense
8139                           antisense
8140                           antisense
8141                           antisense
8142                           antisense
8143                           antisense
8144                             lincRNA
8145                             lincRNA
8146                      protein_coding
8147                      protein_coding
8148                      protein_coding
8149                      protein_coding
8150                      protein_coding
8151                      protein_coding
8152                      protein_coding
8153                      protein_coding
8154                      protein_coding
8155                      protein_coding
8156                      protein_coding
8157                      protein_coding
8158                      protein_coding
8159                      protein_coding
8160                      protein_coding
8161                      protein_coding
8162                      protein_coding
8163                      protein_coding
8164                      protein_coding
8165                      protein_coding
8166                      protein_coding
8167                      protein_coding
8168                      protein_coding
8169                      protein_coding
8170                      protein_coding
8171                      protein_coding
8172                      protein_coding
8173                      protein_coding
8174                      protein_coding
8175                      protein_coding
8176                      protein_coding
8177                      protein_coding
8178                      protein_coding
8179                      protein_coding
8180                      protein_coding
8181                      protein_coding
8182                      protein_coding
8183                      protein_coding
8184                      protein_coding
8185                      protein_coding
8186                      protein_coding
8187                      protein_coding
8188                      protein_coding
8189                      protein_coding
8190                      protein_coding
8191                      protein_coding
8192                      protein_coding
8193                      protein_coding
8194                      protein_coding
8195                      protein_coding
8196                      protein_coding
8197                      protein_coding
8198                      protein_coding
8199                      protein_coding
8200                      protein_coding
8201                      protein_coding
8202                      protein_coding
8203                      protein_coding
8204                      protein_coding
8205                      protein_coding
8206                      protein_coding
8207                      protein_coding
8208                      protein_coding
8209                      protein_coding
8210                      protein_coding
8211                      protein_coding
8212                      protein_coding
8213                      protein_coding
8214                      protein_coding
8215                      protein_coding
8216                      protein_coding
8217                      protein_coding
8218                      protein_coding
8219                      protein_coding
8220                      protein_coding
8221                      protein_coding
8222                      protein_coding
8223                      protein_coding
8224                      protein_coding
8225                      protein_coding
8226                      protein_coding
8227                      protein_coding
8228                      protein_coding
8229                      protein_coding
8230                      protein_coding
8231                      protein_coding
8232                      protein_coding
8233                      protein_coding
8234                      protein_coding
8235                      protein_coding
8236                      protein_coding
8237                      protein_coding
8238                      protein_coding
8239                      protein_coding
8240                      protein_coding
8241                      protein_coding
8242                      protein_coding
8243                      protein_coding
8244                      protein_coding
8245                      protein_coding
8246                      protein_coding
8247                      protein_coding
8248                      protein_coding
8249                      protein_coding
8250                      protein_coding
8251                      protein_coding
8252                      protein_coding
8253                      protein_coding
8254                      protein_coding
8255                      protein_coding
8256                      protein_coding
8257                      protein_coding
8258                      protein_coding
8259                      protein_coding
8260                      protein_coding
8261                      protein_coding
8262                      protein_coding
8263                      protein_coding
8264                      protein_coding
8265                      protein_coding
8266                      protein_coding
8267                      protein_coding
8268                             lincRNA
8269                             lincRNA
8270                             lincRNA
8271                             lincRNA
8272                             lincRNA
8273                             lincRNA
8274                             lincRNA
8275                             lincRNA
8276              unprocessed_pseudogene
8277              unprocessed_pseudogene
8278              unprocessed_pseudogene
8279              unprocessed_pseudogene
8280              unprocessed_pseudogene
8281              unprocessed_pseudogene
8282              unprocessed_pseudogene
8283              unprocessed_pseudogene
8284              unprocessed_pseudogene
8285              unprocessed_pseudogene
8286              unprocessed_pseudogene
8287              unprocessed_pseudogene
8288              unprocessed_pseudogene
8289              unprocessed_pseudogene
8290              unprocessed_pseudogene
8291              unprocessed_pseudogene
8292              unprocessed_pseudogene
8293                           antisense
8294                           antisense
8295                      protein_coding
8296                      protein_coding
8297                      protein_coding
8298                      protein_coding
8299                      protein_coding
8300                      protein_coding
8301                      protein_coding
8302                      protein_coding
8303                      protein_coding
8304                      protein_coding
8305                      protein_coding
8306                      protein_coding
8307                      protein_coding
8308                      protein_coding
8309                      protein_coding
8310                      protein_coding
8311                      protein_coding
8312                      protein_coding
8313                      protein_coding
8314                      protein_coding
8315                      protein_coding
8316                      protein_coding
8317                      protein_coding
8318                      protein_coding
8319                      protein_coding
8320                      protein_coding
8321                      protein_coding
8322                      protein_coding
8323                      protein_coding
8324                      protein_coding
8325                      protein_coding
8326                      protein_coding
8327                      protein_coding
8328                             lincRNA
8329                             lincRNA
8330                             lincRNA
8331                             lincRNA
8332                             lincRNA
8333                             lincRNA
8334                             lincRNA
8335                processed_pseudogene
8336                processed_pseudogene
8337                processed_pseudogene
8338                processed_pseudogene
8339                processed_pseudogene
8340                processed_pseudogene
8341                             lincRNA
8342                             lincRNA
8343                             lincRNA
8344                             lincRNA
8345                             lincRNA
8346                             lincRNA
8347                             lincRNA
8348                      protein_coding
8349                      protein_coding
8350                      protein_coding
8351                      protein_coding
8352                      protein_coding
8353                      protein_coding
8354                      protein_coding
8355                      protein_coding
8356                      protein_coding
8357                      protein_coding
8358                      protein_coding
8359                      protein_coding
8360                      protein_coding
8361                      protein_coding
8362                      protein_coding
8363                      protein_coding
8364                      protein_coding
8365                      protein_coding
8366                      protein_coding
8367                      protein_coding
8368                      protein_coding
8369                      protein_coding
8370                      protein_coding
8371                      protein_coding
8372                      protein_coding
8373                      protein_coding
8374                      protein_coding
8375                      protein_coding
8376                      protein_coding
8377                      protein_coding
8378                      protein_coding
8379                      protein_coding
8380                      protein_coding
8381                      protein_coding
8382                      protein_coding
8383                      protein_coding
8384                      protein_coding
8385                      protein_coding
8386                      protein_coding
8387                      protein_coding
8388                      protein_coding
8389                      protein_coding
8390                      protein_coding
8391                      protein_coding
8392                      protein_coding
8393                      protein_coding
8394                      protein_coding
8395                      protein_coding
8396                      protein_coding
8397                      protein_coding
8398                      protein_coding
8399                      protein_coding
8400                      protein_coding
8401                      protein_coding
8402                      protein_coding
8403                      protein_coding
8404                      protein_coding
8405                      protein_coding
8406                      protein_coding
8407                      protein_coding
8408                      protein_coding
8409                      protein_coding
8410                      protein_coding
8411                      protein_coding
8412                      protein_coding
8413                      protein_coding
8414                      protein_coding
8415                      protein_coding
8416                      protein_coding
8417                      protein_coding
8418                      protein_coding
8419                      protein_coding
8420                      protein_coding
8421                      protein_coding
8422                      protein_coding
8423                      protein_coding
8424                      protein_coding
8425                      protein_coding
8426                      protein_coding
8427                      protein_coding
8428                      protein_coding
8429                      protein_coding
8430                      protein_coding
8431                      protein_coding
8432                      protein_coding
8433                      protein_coding
8434                      protein_coding
8435                      protein_coding
8436                      protein_coding
8437                      protein_coding
8438                      protein_coding
8439                      protein_coding
8440                      protein_coding
8441                      protein_coding
8442                      protein_coding
8443                      protein_coding
8444                      protein_coding
8445                      protein_coding
8446                      protein_coding
8447                      protein_coding
8448                      protein_coding
8449                      protein_coding
8450                      protein_coding
8451                      protein_coding
8452                      protein_coding
8453                      protein_coding
8454                      protein_coding
8455                      protein_coding
8456                      protein_coding
8457                      protein_coding
8458                      protein_coding
8459                      protein_coding
8460                      protein_coding
8461                      protein_coding
8462                      protein_coding
8463                      protein_coding
8464                      protein_coding
8465                      protein_coding
8466                      protein_coding
8467                      protein_coding
8468                processed_pseudogene
8469                processed_pseudogene
8470                processed_pseudogene
8471                processed_pseudogene
8472                      protein_coding
8473                      protein_coding
8474                      protein_coding
8475                      protein_coding
8476                      protein_coding
8477                      protein_coding
8478                      protein_coding
8479                      protein_coding
8480                      protein_coding
8481                      protein_coding
8482                      protein_coding
8483                      protein_coding
8484                      protein_coding
8485                      protein_coding
8486                      protein_coding
8487                      protein_coding
8488                      protein_coding
8489                      protein_coding
8490                      protein_coding
8491                      protein_coding
8492                      protein_coding
8493                      protein_coding
8494                      protein_coding
8495                      protein_coding
8496                      protein_coding
8497                      protein_coding
8498                      protein_coding
8499                      protein_coding
8500                      protein_coding
8501                      protein_coding
8502                      protein_coding
8503                      protein_coding
8504                      protein_coding
8505                      protein_coding
8506                      protein_coding
8507                      protein_coding
8508                      protein_coding
8509                      protein_coding
8510                      protein_coding
8511                      protein_coding
8512                      protein_coding
8513                      protein_coding
8514                      protein_coding
8515                      protein_coding
8516                      protein_coding
8517                      protein_coding
8518                      protein_coding
8519                      protein_coding
8520                      protein_coding
8521                      protein_coding
8522                      protein_coding
8523                      protein_coding
8524                      protein_coding
8525                      protein_coding
8526                      protein_coding
8527                      protein_coding
8528                      protein_coding
8529                      protein_coding
8530                      protein_coding
8531                      protein_coding
8532                      protein_coding
8533                      protein_coding
8534                      protein_coding
8535                      protein_coding
8536                      protein_coding
8537                      protein_coding
8538                      protein_coding
8539                      protein_coding
8540                      protein_coding
8541                      protein_coding
8542                      protein_coding
8543                      protein_coding
8544                      protein_coding
8545                      protein_coding
8546                      protein_coding
8547                      protein_coding
8548                      protein_coding
8549                      protein_coding
8550                      protein_coding
8551                      protein_coding
8552                      protein_coding
8553                      protein_coding
8554                      protein_coding
8555                   sense_overlapping
8556                   sense_overlapping
8557                      protein_coding
8558                      protein_coding
8559                      protein_coding
8560                      protein_coding
8561                      protein_coding
8562                      protein_coding
8563                      protein_coding
8564                      protein_coding
8565                      protein_coding
8566                      protein_coding
8567                      protein_coding
8568                      protein_coding
8569                      protein_coding
8570                      protein_coding
8571                      protein_coding
8572                      protein_coding
8573                      protein_coding
8574                      protein_coding
8575                      protein_coding
8576                      protein_coding
8577                      protein_coding
8578                      protein_coding
8579                      protein_coding
8580                      protein_coding
8581                processed_pseudogene
8582                processed_pseudogene
8583                      protein_coding
8584                      protein_coding
8585                      protein_coding
8586                      protein_coding
8587                      protein_coding
8588                      protein_coding
8589                      protein_coding
8590                      protein_coding
8591                      protein_coding
8592                      protein_coding
8593                      protein_coding
8594                      protein_coding
8595                      protein_coding
8596                      protein_coding
8597                      protein_coding
8598                      protein_coding
8599                      protein_coding
8600                      protein_coding
8601                      protein_coding
8602                      protein_coding
8603                      protein_coding
8604                      protein_coding
8605                      protein_coding
8606                      protein_coding
8607                      protein_coding
8608                      protein_coding
8609                      protein_coding
8610                      protein_coding
8611                      protein_coding
8612                      protein_coding
8613                      protein_coding
8614                      protein_coding
8615                      protein_coding
8616                      protein_coding
8617                      protein_coding
8618                      protein_coding
8619                      protein_coding
8620                      protein_coding
8621                      protein_coding
8622                      protein_coding
8623                      protein_coding
8624                      protein_coding
8625                      protein_coding
8626                      protein_coding
8627                      protein_coding
8628                      protein_coding
8629                      protein_coding
8630                      protein_coding
8631                      protein_coding
8632                      protein_coding
8633                      protein_coding
8634                processed_pseudogene
8635                      protein_coding
8636                      protein_coding
8637                      protein_coding
8638                      protein_coding
8639                      protein_coding
8640                      protein_coding
8641                      protein_coding
8642                      protein_coding
8643                      protein_coding
8644                      protein_coding
8645                      protein_coding
8646                      protein_coding
8647                      protein_coding
8648                      protein_coding
8649                      protein_coding
8650                      protein_coding
8651                      protein_coding
8652                      protein_coding
8653                      protein_coding
8654                      protein_coding
8655                      protein_coding
8656                      protein_coding
8657                      protein_coding
8658                      protein_coding
8659                      protein_coding
8660                      protein_coding
8661                      protein_coding
8662                      protein_coding
8663                      protein_coding
8664                      protein_coding
8665                      protein_coding
8666                      protein_coding
8667                      protein_coding
8668                      protein_coding
8669                      protein_coding
8670                      protein_coding
8671                      protein_coding
8672                             lincRNA
8673                             lincRNA
8674                             lincRNA
8675                      protein_coding
8676                      protein_coding
8677                      protein_coding
8678                      protein_coding
8679                      protein_coding
8680                      protein_coding
8681                      protein_coding
8682                      protein_coding
8683                      protein_coding
8684                      protein_coding
8685                      protein_coding
8686                      protein_coding
8687                      protein_coding
8688                      protein_coding
8689                      protein_coding
8690                      protein_coding
8691                      protein_coding
8692                      protein_coding
8693                      protein_coding
8694                      protein_coding
8695                      protein_coding
8696                      protein_coding
8697                      protein_coding
8698                      protein_coding
8699                      protein_coding
8700                      protein_coding
8701                      protein_coding
8702                      protein_coding
8703                      protein_coding
8704                      protein_coding
8705                      protein_coding
8706                      protein_coding
8707                      protein_coding
8708                      protein_coding
8709                      protein_coding
8710                      protein_coding
8711                      protein_coding
8712                      protein_coding
8713                      protein_coding
8714                      protein_coding
8715                      protein_coding
8716                      protein_coding
8717                      protein_coding
8718                      protein_coding
8719                      protein_coding
8720                      protein_coding
8721                      protein_coding
8722                      protein_coding
8723                      protein_coding
8724                      protein_coding
8725                      protein_coding
8726                      protein_coding
8727                      protein_coding
8728                      protein_coding
8729                      protein_coding
8730                      protein_coding
8731                      protein_coding
8732                      protein_coding
8733                      protein_coding
8734                      protein_coding
8735                      protein_coding
8736                      protein_coding
8737                      protein_coding
8738                      protein_coding
8739                      protein_coding
8740                      protein_coding
8741                      protein_coding
8742                      protein_coding
8743                      protein_coding
8744                      protein_coding
8745                      protein_coding
8746                      protein_coding
8747                      protein_coding
8748                      protein_coding
8749                      protein_coding
8750                      protein_coding
8751                      protein_coding
8752                      protein_coding
8753                      protein_coding
8754                      protein_coding
8755                      protein_coding
8756                      protein_coding
8757                      protein_coding
8758                      protein_coding
8759                      protein_coding
8760                      protein_coding
8761                      protein_coding
8762                      protein_coding
8763                      protein_coding
8764                      protein_coding
8765                      protein_coding
8766                      protein_coding
8767                      protein_coding
8768                      protein_coding
8769                      protein_coding
8770                      protein_coding
8771                      protein_coding
8772                      protein_coding
8773                      protein_coding
8774                      protein_coding
8775                      protein_coding
8776                      protein_coding
8777                      protein_coding
8778                      protein_coding
8779                      protein_coding
8780                      protein_coding
8781                      protein_coding
8782                      protein_coding
8783                      protein_coding
8784                      protein_coding
8785                      protein_coding
8786                      protein_coding
8787                      protein_coding
8788                      protein_coding
8789                      protein_coding
8790                      protein_coding
8791                      protein_coding
8792                      protein_coding
8793                      protein_coding
8794                      protein_coding
8795                      protein_coding
8796                      protein_coding
8797                      protein_coding
8798                      protein_coding
8799                      protein_coding
8800                      protein_coding
8801                      protein_coding
8802                      protein_coding
8803                      protein_coding
8804                      protein_coding
8805                      protein_coding
8806                      protein_coding
8807                      protein_coding
8808                      protein_coding
8809                      protein_coding
8810                      protein_coding
8811                      protein_coding
8812                      protein_coding
8813                      protein_coding
8814                      protein_coding
8815                      protein_coding
8816                      protein_coding
8817                      protein_coding
8818                      protein_coding
8819                      protein_coding
8820                      protein_coding
8821                      protein_coding
8822                      protein_coding
8823                      protein_coding
8824                      protein_coding
8825                      protein_coding
8826                      protein_coding
8827                      protein_coding
8828                      protein_coding
8829                      protein_coding
8830                      protein_coding
8831                      protein_coding
8832                      protein_coding
8833                      protein_coding
8834                      protein_coding
8835                      protein_coding
8836                      protein_coding
8837                      protein_coding
8838                      protein_coding
8839                      protein_coding
8840                      protein_coding
8841                      protein_coding
8842                      protein_coding
8843                      protein_coding
8844                      protein_coding
8845                      protein_coding
8846                      protein_coding
8847                      protein_coding
8848                      protein_coding
8849                      protein_coding
8850                      protein_coding
8851                      protein_coding
8852                      protein_coding
8853                      protein_coding
8854                      protein_coding
8855                      protein_coding
8856                      protein_coding
8857                      protein_coding
8858                      protein_coding
8859                      protein_coding
8860                      protein_coding
8861                      protein_coding
8862                      protein_coding
8863                      protein_coding
8864                      protein_coding
8865                      protein_coding
8866                      protein_coding
8867                      protein_coding
8868                      protein_coding
8869                      protein_coding
8870                      protein_coding
8871                      protein_coding
8872                      protein_coding
8873                      protein_coding
8874                      protein_coding
8875                      protein_coding
8876                      protein_coding
8877                      protein_coding
8878                      protein_coding
8879                      protein_coding
8880                      protein_coding
8881                      protein_coding
8882                      protein_coding
8883                      protein_coding
8884                      protein_coding
8885                      protein_coding
8886                      protein_coding
8887                      protein_coding
8888                      protein_coding
8889                      protein_coding
8890                      protein_coding
8891                      protein_coding
8892                      protein_coding
8893                      protein_coding
8894                      protein_coding
8895                      protein_coding
8896                      protein_coding
8897                      protein_coding
8898                      protein_coding
8899                      protein_coding
8900                      protein_coding
8901                      protein_coding
8902                      protein_coding
8903                      protein_coding
8904                      protein_coding
8905                      protein_coding
8906                      protein_coding
8907                      protein_coding
8908                      protein_coding
8909                      protein_coding
8910                      protein_coding
8911                      protein_coding
8912                      protein_coding
8913                      protein_coding
8914                      protein_coding
8915                      protein_coding
8916                      protein_coding
8917                      protein_coding
8918                      protein_coding
8919                      protein_coding
8920                      protein_coding
8921                      protein_coding
8922                      protein_coding
8923                      protein_coding
8924                      protein_coding
8925                      protein_coding
8926                      protein_coding
8927                      protein_coding
8928                      protein_coding
8929                      protein_coding
8930                      protein_coding
8931                      protein_coding
8932                      protein_coding
8933                      protein_coding
8934                      protein_coding
8935                      protein_coding
8936                      protein_coding
8937                      protein_coding
8938                      protein_coding
8939                      protein_coding
8940                      protein_coding
8941                      protein_coding
8942                      protein_coding
8943                      protein_coding
8944                      protein_coding
8945                      protein_coding
8946                      protein_coding
8947                      protein_coding
8948                      protein_coding
8949                      protein_coding
8950                      protein_coding
8951                      protein_coding
8952                      protein_coding
8953                      protein_coding
8954                      protein_coding
8955                      protein_coding
8956                      protein_coding
8957                      protein_coding
8958                      protein_coding
8959                      protein_coding
8960                      protein_coding
8961                      protein_coding
8962                      protein_coding
8963                      protein_coding
8964                      protein_coding
8965                      protein_coding
8966                      protein_coding
8967                      protein_coding
8968                      protein_coding
8969                      protein_coding
8970                      protein_coding
8971                      protein_coding
8972                      protein_coding
8973                      protein_coding
8974                      protein_coding
8975                      protein_coding
8976                      protein_coding
8977                      protein_coding
8978                      protein_coding
8979                      protein_coding
8980                      protein_coding
8981                      protein_coding
8982                      protein_coding
8983                      protein_coding
8984                      protein_coding
8985                      protein_coding
8986                      protein_coding
8987                      protein_coding
8988                      protein_coding
8989                      protein_coding
8990                      protein_coding
8991                      protein_coding
8992                      protein_coding
8993                      protein_coding
8994                      protein_coding
8995                      protein_coding
8996                      protein_coding
8997                      protein_coding
8998                      protein_coding
8999                      protein_coding
9000                      protein_coding
9001                      protein_coding
9002                      protein_coding
9003                      protein_coding
9004                      protein_coding
9005                      protein_coding
9006                      protein_coding
9007                      protein_coding
9008                      protein_coding
9009                      protein_coding
9010                      protein_coding
9011                      protein_coding
9012                      protein_coding
9013                      protein_coding
9014                      protein_coding
9015                      protein_coding
9016                      protein_coding
9017                      protein_coding
9018                      protein_coding
9019                      protein_coding
9020                      protein_coding
9021                      protein_coding
9022                      protein_coding
9023                      protein_coding
9024                      protein_coding
9025                      protein_coding
9026                      protein_coding
9027                      protein_coding
9028                      protein_coding
9029                      protein_coding
9030                      protein_coding
9031                      protein_coding
9032                      protein_coding
9033                      protein_coding
9034                      protein_coding
9035                      protein_coding
9036                      protein_coding
9037                      protein_coding
9038                      protein_coding
9039                      protein_coding
9040                      protein_coding
9041                      protein_coding
9042                      protein_coding
9043                      protein_coding
9044                      protein_coding
9045                      protein_coding
9046                      protein_coding
9047                      protein_coding
9048                      protein_coding
9049                      protein_coding
9050                      protein_coding
9051                      protein_coding
9052                      protein_coding
9053                      protein_coding
9054                      protein_coding
9055                      protein_coding
9056                      protein_coding
9057                      protein_coding
9058                      protein_coding
9059                      protein_coding
9060                      protein_coding
9061                      protein_coding
9062                      protein_coding
9063                      protein_coding
9064                      protein_coding
9065                      protein_coding
9066                      protein_coding
9067                      protein_coding
9068                      protein_coding
9069                      protein_coding
9070                      protein_coding
9071                      protein_coding
9072                      protein_coding
9073                      protein_coding
9074                      protein_coding
9075                      protein_coding
9076                      protein_coding
9077                      protein_coding
9078                      protein_coding
9079                      protein_coding
9080                      protein_coding
9081                      protein_coding
9082                      protein_coding
9083                      protein_coding
9084                      protein_coding
9085                      protein_coding
9086                      protein_coding
9087                      protein_coding
9088                      protein_coding
9089                      protein_coding
9090                      protein_coding
9091                      protein_coding
9092                      protein_coding
9093                      protein_coding
9094                      protein_coding
9095                      protein_coding
9096                      protein_coding
9097                      protein_coding
9098                      protein_coding
9099                      protein_coding
9100                      protein_coding
9101                      protein_coding
9102                      protein_coding
9103                      protein_coding
9104                      protein_coding
9105                      protein_coding
9106                      protein_coding
9107                      protein_coding
9108                      protein_coding
9109                      protein_coding
9110                      protein_coding
9111                      protein_coding
9112                      protein_coding
9113                      protein_coding
9114                      protein_coding
9115                      protein_coding
9116                      protein_coding
9117                      protein_coding
9118                      protein_coding
9119                      protein_coding
9120                      protein_coding
9121                      protein_coding
9122                      protein_coding
9123                      protein_coding
9124                      protein_coding
9125                      protein_coding
9126                      protein_coding
9127                      protein_coding
9128                           antisense
9129                             lincRNA
9130                             lincRNA
9131                             lincRNA
9132                             lincRNA
9133                             lincRNA
9134                             lincRNA
9135                             lincRNA
9136                             lincRNA
9137                             lincRNA
9138                             lincRNA
9139                             lincRNA
9140                             lincRNA
9141                             lincRNA
9142                             lincRNA
9143                             lincRNA
9144                             lincRNA
9145                             lincRNA
9146                             lincRNA
9147                             lincRNA
9148                             lincRNA
9149                             lincRNA
9150                             lincRNA
9151                             lincRNA
9152                             lincRNA
9153                             lincRNA
9154                             lincRNA
9155                             lincRNA
9156                             lincRNA
9157                             lincRNA
9158                      protein_coding
9159                      protein_coding
9160                      protein_coding
9161                      protein_coding
9162                      protein_coding
9163                      protein_coding
9164                      protein_coding
9165                      protein_coding
9166                      protein_coding
9167                      protein_coding
9168                      protein_coding
9169                      protein_coding
9170                      protein_coding
9171                      protein_coding
9172                      protein_coding
9173                      protein_coding
9174                      protein_coding
9175                      protein_coding
9176                      protein_coding
9177                processed_pseudogene
9178                      protein_coding
9179                      protein_coding
9180                      protein_coding
9181                      protein_coding
9182                      protein_coding
9183                      protein_coding
9184                      protein_coding
9185                      protein_coding
9186                      protein_coding
9187                      protein_coding
9188                      protein_coding
9189                      protein_coding
9190                      protein_coding
9191                      protein_coding
9192                      protein_coding
9193                      protein_coding
9194                      protein_coding
9195                      protein_coding
9196                      protein_coding
9197                      protein_coding
9198                      protein_coding
9199                      protein_coding
9200                      protein_coding
9201                      protein_coding
9202                      protein_coding
9203                      protein_coding
9204                      protein_coding
9205                      protein_coding
9206                      protein_coding
9207                      protein_coding
9208                      protein_coding
9209                      protein_coding
9210                      protein_coding
9211                      protein_coding
9212                      protein_coding
9213                      protein_coding
9214                      protein_coding
9215                                 TEC
9216                      protein_coding
9217                      protein_coding
9218                      protein_coding
9219                      protein_coding
9220                      protein_coding
9221                      protein_coding
9222                             lincRNA
9223                             lincRNA
9224                processed_pseudogene
9225                      protein_coding
9226                      protein_coding
9227                      protein_coding
9228                      protein_coding
9229                      protein_coding
9230                      protein_coding
9231                      protein_coding
9232                      protein_coding
9233                      protein_coding
9234                      protein_coding
9235                      protein_coding
9236                      protein_coding
9237                      protein_coding
9238                      protein_coding
9239                      protein_coding
9240                      protein_coding
9241                      protein_coding
9242                      protein_coding
9243                      protein_coding
9244                      protein_coding
9245                      protein_coding
9246                      protein_coding
9247                      protein_coding
9248                      protein_coding
9249                      protein_coding
9250                      protein_coding
9251                      protein_coding
9252                      protein_coding
9253                      protein_coding
9254                      protein_coding
9255                      protein_coding
9256                      protein_coding
9257                      protein_coding
9258                      protein_coding
9259                      protein_coding
9260                      protein_coding
9261                      protein_coding
9262                      protein_coding
9263                      protein_coding
9264                      protein_coding
9265                      protein_coding
9266                      protein_coding
9267                      protein_coding
9268                      protein_coding
9269                      protein_coding
9270                      protein_coding
9271                      protein_coding
9272                      protein_coding
9273                      protein_coding
9274                      protein_coding
9275                      protein_coding
9276                      protein_coding
9277                      protein_coding
9278                      protein_coding
9279                      protein_coding
9280                      protein_coding
9281                      protein_coding
9282                      protein_coding
9283                      protein_coding
9284                      protein_coding
9285                      protein_coding
9286                      protein_coding
9287                      protein_coding
9288                      protein_coding
9289                      protein_coding
9290                      protein_coding
9291                      protein_coding
9292                      protein_coding
9293                      protein_coding
9294                      protein_coding
9295                      protein_coding
9296                      protein_coding
9297                      protein_coding
9298                      protein_coding
9299                      protein_coding
9300                      protein_coding
9301                      protein_coding
9302                      protein_coding
9303                      protein_coding
9304                      protein_coding
9305                      protein_coding
9306                      protein_coding
9307                      protein_coding
9308                      protein_coding
9309                      protein_coding
9310                      protein_coding
9311                      protein_coding
9312                      protein_coding
9313                      protein_coding
9314                      protein_coding
9315                      protein_coding
9316                      protein_coding
9317                      protein_coding
9318                      protein_coding
9319                      protein_coding
9320                      protein_coding
9321                      protein_coding
9322                      protein_coding
9323                      protein_coding
9324                      protein_coding
9325                      protein_coding
9326                      protein_coding
9327                      protein_coding
9328                      protein_coding
9329                      protein_coding
9330                      protein_coding
9331                      protein_coding
9332                      protein_coding
9333                      protein_coding
9334                      protein_coding
9335                      protein_coding
9336                      protein_coding
9337                      protein_coding
9338                      protein_coding
9339                      protein_coding
9340                      protein_coding
9341                      protein_coding
9342                      protein_coding
9343                      protein_coding
9344                      protein_coding
9345                      protein_coding
9346                      protein_coding
9347                      protein_coding
9348                      protein_coding
9349                      protein_coding
9350                      protein_coding
9351                      protein_coding
9352                      protein_coding
9353                      protein_coding
9354                      protein_coding
9355                      protein_coding
9356                      protein_coding
9357                      protein_coding
9358                      protein_coding
9359                      protein_coding
9360                      protein_coding
9361                      protein_coding
9362                      protein_coding
9363                      protein_coding
9364                      protein_coding
9365                      protein_coding
9366                      protein_coding
9367                      protein_coding
9368                      protein_coding
9369                      protein_coding
9370                      protein_coding
9371                      protein_coding
9372                      protein_coding
9373                      protein_coding
9374                      protein_coding
9375                      protein_coding
9376                      protein_coding
9377                      protein_coding
9378                      protein_coding
9379                      protein_coding
9380                      protein_coding
9381                      protein_coding
9382                      protein_coding
9383                      protein_coding
9384                      protein_coding
9385                      protein_coding
9386                      protein_coding
9387                      protein_coding
9388                      protein_coding
9389                      protein_coding
9390                      protein_coding
9391                             lincRNA
9392                             lincRNA
9393                             lincRNA
9394                           antisense
9395                           antisense
9396                           antisense
9397                processed_pseudogene
9398                             lincRNA
9399                             lincRNA
9400                             lincRNA
9401                             lincRNA
9402                processed_pseudogene
9403              unprocessed_pseudogene
9404              unprocessed_pseudogene
9405                      protein_coding
9406                      protein_coding
9407                      protein_coding
9408                      protein_coding
9409                      protein_coding
9410                      protein_coding
9411                      protein_coding
9412                      protein_coding
9413                      protein_coding
9414                      protein_coding
9415                      protein_coding
9416                      protein_coding
9417                      protein_coding
9418                      protein_coding
9419                      protein_coding
9420                      protein_coding
9421                      protein_coding
9422                      protein_coding
9423                      protein_coding
9424                      protein_coding
9425                      protein_coding
9426                      protein_coding
9427                      protein_coding
9428                      protein_coding
9429                      protein_coding
9430                      protein_coding
9431                      protein_coding
9432                      protein_coding
9433                      protein_coding
9434                      protein_coding
9435                      protein_coding
9436                      protein_coding
9437                      protein_coding
9438                      protein_coding
9439                      protein_coding
9440                      protein_coding
9441                      protein_coding
9442                      protein_coding
9443                      protein_coding
9444                      protein_coding
9445                      protein_coding
9446                      protein_coding
9447                      protein_coding
9448                      protein_coding
9449                      protein_coding
9450                      protein_coding
9451                      protein_coding
9452                      protein_coding
9453                      protein_coding
9454                      protein_coding
9455                      protein_coding
9456                      protein_coding
9457                      protein_coding
9458                      protein_coding
9459                      protein_coding
9460                      protein_coding
9461                      protein_coding
9462                      protein_coding
9463                      protein_coding
9464                      protein_coding
9465                      protein_coding
9466                      protein_coding
9467                      protein_coding
9468                      protein_coding
9469                      protein_coding
9470                      protein_coding
9471                      protein_coding
9472                      protein_coding
9473                      protein_coding
9474                      protein_coding
9475                      protein_coding
9476                      protein_coding
9477                      protein_coding
9478                      protein_coding
9479                      protein_coding
9480                      protein_coding
9481                      protein_coding
9482                      protein_coding
9483                      protein_coding
9484                      protein_coding
9485                      protein_coding
9486                      protein_coding
9487                      protein_coding
9488                      protein_coding
9489                           IG_V_gene
9490                           IG_V_gene
9491                      protein_coding
9492                      protein_coding
9493                      protein_coding
9494                      protein_coding
9495                      protein_coding
9496                      protein_coding
9497                      protein_coding
9498                      protein_coding
9499                      protein_coding
9500                      protein_coding
9501                      protein_coding
9502                      protein_coding
9503                      protein_coding
9504                      protein_coding
9505                      protein_coding
9506                      protein_coding
9507                      protein_coding
9508                      protein_coding
9509                      protein_coding
9510                      protein_coding
9511                      protein_coding
9512                      protein_coding
9513                      protein_coding
9514                      protein_coding
9515                      protein_coding
9516                      protein_coding
9517                      protein_coding
9518                      protein_coding
9519                      protein_coding
9520                      protein_coding
9521                      protein_coding
9522                      protein_coding
9523                      protein_coding
9524                      protein_coding
9525                      protein_coding
9526                      protein_coding
9527                      protein_coding
9528                      protein_coding
9529                      protein_coding
9530                      protein_coding
9531                      protein_coding
9532                      protein_coding
9533                      protein_coding
9534                      protein_coding
9535                      protein_coding
9536                      protein_coding
9537                      protein_coding
9538                      protein_coding
9539                      protein_coding
9540                      protein_coding
9541                      protein_coding
9542                      protein_coding
9543                      protein_coding
9544                      protein_coding
9545                      protein_coding
9546                      protein_coding
9547                      protein_coding
9548                      protein_coding
9549                      protein_coding
9550                      protein_coding
9551                      protein_coding
9552                      protein_coding
9553                      protein_coding
9554                      protein_coding
9555                      protein_coding
9556                      protein_coding
9557                      protein_coding
9558                      protein_coding
9559                      protein_coding
9560                      protein_coding
9561                      protein_coding
9562                      protein_coding
9563                      protein_coding
9564                      protein_coding
9565                      protein_coding
9566                      protein_coding
9567                      protein_coding
9568                      protein_coding
9569                      protein_coding
9570                      protein_coding
9571                      protein_coding
9572                      protein_coding
9573                      protein_coding
9574                      protein_coding
9575                      protein_coding
9576                      protein_coding
9577                      protein_coding
9578                      protein_coding
9579                      protein_coding
9580                      protein_coding
9581                      protein_coding
9582                      protein_coding
9583                      protein_coding
9584                      protein_coding
9585                      protein_coding
9586                      protein_coding
9587                      protein_coding
9588                      protein_coding
9589                      protein_coding
9590                      protein_coding
9591                      protein_coding
9592                      protein_coding
9593                      protein_coding
9594                      protein_coding
9595                      protein_coding
9596                      protein_coding
9597                      protein_coding
9598                      protein_coding
9599                      protein_coding
9600                      protein_coding
9601                      protein_coding
9602                      protein_coding
9603                      protein_coding
9604                      protein_coding
9605                      protein_coding
9606                      protein_coding
9607                      protein_coding
9608                      protein_coding
9609                      protein_coding
9610                      protein_coding
9611                      protein_coding
9612                      protein_coding
9613                      protein_coding
9614                      protein_coding
9615                      protein_coding
9616                      protein_coding
9617                      protein_coding
9618                      protein_coding
9619                      protein_coding
9620                      protein_coding
9621                      protein_coding
9622                      protein_coding
9623                      protein_coding
9624                      protein_coding
9625                      protein_coding
9626                      protein_coding
9627                      protein_coding
9628                      protein_coding
9629                      protein_coding
9630                      protein_coding
9631                      protein_coding
9632                      protein_coding
9633                      protein_coding
9634                      protein_coding
9635                      protein_coding
9636                      protein_coding
9637                      protein_coding
9638                      protein_coding
9639                      protein_coding
9640                      protein_coding
9641                      protein_coding
9642                      protein_coding
9643                      protein_coding
9644                      protein_coding
9645                      protein_coding
9646                      protein_coding
9647                      protein_coding
9648                      protein_coding
9649                      protein_coding
9650                      protein_coding
9651                      protein_coding
9652                      protein_coding
9653                      protein_coding
9654                      protein_coding
9655                      protein_coding
9656                      protein_coding
9657                      protein_coding
9658                      protein_coding
9659                      protein_coding
9660                      protein_coding
9661                      protein_coding
9662                      protein_coding
9663                      protein_coding
9664                      protein_coding
9665                      protein_coding
9666                      protein_coding
9667                      protein_coding
9668                      protein_coding
9669                      protein_coding
9670                      protein_coding
9671                      protein_coding
9672                      protein_coding
9673                      protein_coding
9674                      protein_coding
9675                      protein_coding
9676                      protein_coding
9677                      protein_coding
9678                      protein_coding
9679                      protein_coding
9680                      protein_coding
9681                      protein_coding
9682                      protein_coding
9683                      protein_coding
9684                      protein_coding
9685                      protein_coding
9686                      protein_coding
9687                      protein_coding
9688                      protein_coding
9689                      protein_coding
9690                      protein_coding
9691                      protein_coding
9692                      protein_coding
9693                      protein_coding
9694                      protein_coding
9695                      protein_coding
9696                      protein_coding
9697                      protein_coding
9698                      protein_coding
9699                      protein_coding
9700                      protein_coding
9701                      protein_coding
9702                      protein_coding
9703                      protein_coding
9704                      protein_coding
9705                      protein_coding
9706                      protein_coding
9707                      protein_coding
9708                      protein_coding
9709                      protein_coding
9710                      protein_coding
9711                      protein_coding
9712                      protein_coding
9713                      protein_coding
9714                      protein_coding
9715                      protein_coding
9716                      protein_coding
9717                      protein_coding
9718                      protein_coding
9719                      protein_coding
9720                      protein_coding
9721                      protein_coding
9722                      protein_coding
9723                      protein_coding
9724                      protein_coding
9725                      protein_coding
9726                      protein_coding
9727                      protein_coding
9728                      protein_coding
9729                      protein_coding
9730                      protein_coding
9731                      protein_coding
9732                      protein_coding
9733                      protein_coding
9734                      protein_coding
9735                      protein_coding
9736                      protein_coding
9737                      protein_coding
9738                      protein_coding
9739                      protein_coding
9740                      protein_coding
9741                      protein_coding
9742                      protein_coding
9743                      protein_coding
9744                      protein_coding
9745                      protein_coding
9746                      protein_coding
9747                      protein_coding
9748                      protein_coding
9749                      protein_coding
9750                      protein_coding
9751                      protein_coding
9752                      protein_coding
9753                      protein_coding
9754                      protein_coding
9755                      protein_coding
9756                      protein_coding
9757                      protein_coding
9758                      protein_coding
9759                      protein_coding
9760                      protein_coding
9761                      protein_coding
9762                      protein_coding
9763                      protein_coding
9764                      protein_coding
9765                      protein_coding
9766                      protein_coding
9767                      protein_coding
9768                      protein_coding
9769                      protein_coding
9770                      protein_coding
9771                      protein_coding
9772                      protein_coding
9773                      protein_coding
9774                      protein_coding
9775                      protein_coding
9776                      protein_coding
9777                      protein_coding
9778                      protein_coding
9779                      protein_coding
9780                      protein_coding
9781                      protein_coding
9782                      protein_coding
9783                      protein_coding
9784                      protein_coding
9785                      protein_coding
9786                      protein_coding
9787                      protein_coding
9788                      protein_coding
9789                      protein_coding
9790                      protein_coding
9791                      protein_coding
9792                      protein_coding
9793                      protein_coding
9794                      protein_coding
9795                      protein_coding
9796                      protein_coding
9797                processed_pseudogene
9798                      protein_coding
9799                      protein_coding
9800                      protein_coding
9801                      protein_coding
9802                      protein_coding
9803                      protein_coding
9804                      protein_coding
9805                      protein_coding
9806                      protein_coding
9807                      protein_coding
9808                      protein_coding
9809                      protein_coding
9810                      protein_coding
9811                      protein_coding
9812                      protein_coding
9813                      protein_coding
9814                      protein_coding
9815                      protein_coding
9816                      protein_coding
9817                      protein_coding
9818                      protein_coding
9819                      protein_coding
9820                      protein_coding
9821                      protein_coding
9822                      protein_coding
9823                      protein_coding
9824                      protein_coding
9825                      protein_coding
9826                      protein_coding
9827                      protein_coding
9828                      protein_coding
9829                      protein_coding
9830                      protein_coding
9831                      protein_coding
9832                      protein_coding
9833                      protein_coding
9834                      protein_coding
9835                      protein_coding
9836                      protein_coding
9837                      protein_coding
9838                      protein_coding
9839                      protein_coding
9840                      protein_coding
9841                      protein_coding
9842                      protein_coding
9843                      protein_coding
9844                      protein_coding
9845                      protein_coding
9846                      protein_coding
9847                      protein_coding
9848                      protein_coding
9849                      protein_coding
9850                      protein_coding
9851                      protein_coding
9852                      protein_coding
9853                      protein_coding
9854                      protein_coding
9855                      protein_coding
9856                      protein_coding
9857                      protein_coding
9858                      protein_coding
9859                      protein_coding
9860                      protein_coding
9861                      protein_coding
9862                      protein_coding
9863                      protein_coding
9864                      protein_coding
9865                      protein_coding
9866                      protein_coding
9867                      protein_coding
9868                      protein_coding
9869                      protein_coding
9870                      protein_coding
9871                      protein_coding
9872                      protein_coding
9873                      protein_coding
9874                      protein_coding
9875                      protein_coding
9876                      protein_coding
9877                      protein_coding
9878                      protein_coding
9879                      protein_coding
9880                      protein_coding
9881                      protein_coding
9882                      protein_coding
9883                      protein_coding
9884                      protein_coding
9885                      protein_coding
9886                      protein_coding
9887                      protein_coding
9888                      protein_coding
9889                      protein_coding
9890                      protein_coding
9891                      protein_coding
9892                      protein_coding
9893                      protein_coding
9894                      protein_coding
9895                      protein_coding
9896                      protein_coding
9897                      protein_coding
9898                      protein_coding
9899                      protein_coding
9900                      protein_coding
9901                      protein_coding
9902                      protein_coding
9903                      protein_coding
9904                      protein_coding
9905                      protein_coding
9906                      protein_coding
9907                      protein_coding
9908                      protein_coding
9909                      protein_coding
9910                      protein_coding
9911                      protein_coding
9912                      protein_coding
9913                      protein_coding
9914                      protein_coding
9915                processed_pseudogene
9916                      protein_coding
9917                      protein_coding
9918                      protein_coding
9919                      protein_coding
9920                      protein_coding
9921                      protein_coding
9922                      protein_coding
9923                      protein_coding
9924                      protein_coding
9925                      protein_coding
9926                      protein_coding
9927                      protein_coding
9928                      protein_coding
9929                      protein_coding
9930                      protein_coding
9931                      protein_coding
9932                      protein_coding
9933                      protein_coding
9934                      protein_coding
9935                      protein_coding
9936                      protein_coding
9937                      protein_coding
9938                      protein_coding
9939                      protein_coding
9940                      protein_coding
9941                      protein_coding
9942                      protein_coding
9943                      protein_coding
9944                      protein_coding
9945                      protein_coding
9946                      protein_coding
9947                      protein_coding
9948                      protein_coding
9949                             lincRNA
9950                             lincRNA
9951                      protein_coding
9952                             lincRNA
9953                                 TEC
9954              unprocessed_pseudogene
9955              unprocessed_pseudogene
9956              unprocessed_pseudogene
9957              unprocessed_pseudogene
9958              unprocessed_pseudogene
9959              unprocessed_pseudogene
9960              unprocessed_pseudogene
9961              unprocessed_pseudogene
9962              unprocessed_pseudogene
9963              unprocessed_pseudogene
9964                           antisense
9965                           antisense
9966                                 TEC
9967                             lincRNA
9968                             lincRNA
9969                processed_pseudogene
9970                             lincRNA
9971                             lincRNA
9972                             lincRNA
9973                             lincRNA
9974                      protein_coding
9975                      protein_coding
9976                      protein_coding
9977                      protein_coding
9978                      protein_coding
9979                      protein_coding
9980                      protein_coding
9981                      protein_coding
9982                      protein_coding
9983                      protein_coding
9984                      protein_coding
9985                      protein_coding
9986                      protein_coding
9987                      protein_coding
9988                      protein_coding
9989                      protein_coding
9990                      protein_coding
9991                      protein_coding
9992                      protein_coding
9993                      protein_coding
9994                      protein_coding
9995                      protein_coding
9996                      protein_coding
9997                      protein_coding
9998                      protein_coding
9999                             lincRNA
 [ reached getOption("max.print") -- omitted 3979 rows ]

mutate()

Add or replace columns

Gene length

  • Note that new variables can be used right away
gene_by_exon %>%
  mutate(  length = end_position - start_position) %>% 
  dplyr::select(hgnc_symbol, length)  
       hgnc_symbol  length
1                       75
2                      100
3                       89
4                       98
5                     1421
6                     1421
7            ITGB2   46036
8            ITGB2   46036
9            ITGB2   46036
10           ITGB2   46036
11           ITGB2   46036
12           ITGB2   46036
13           ITGB2   46036
14           ITGB2   46036
15           ITGB2   46036
16           ITGB2   46036
17           ITGB2   46036
18           ITGB2   46036
19           ITGB2   46036
20           ITGB2   46036
21           ITGB2   46036
22           ITGB2   46036
23           ITGB2   46036
24           ITGB2   46036
25           ITGB2   46036
26           ITGB2   46036
27           ITGB2   46036
28           ITGB2   46036
29           ITGB2   46036
30           ITGB2   46036
31           ITGB2   46036
32           ITGB2   46036
33           ITGB2   46036
34           ITGB2   46036
35           ITGB2   46036
36           ITGB2   46036
37           ITGB2   46036
38           ITGB2   46036
39           ITGB2   46036
40           ITGB2   46036
41           ITGB2   46036
42           ITGB2   46036
43           ITGB2   46036
44           ITGB2   46036
45           ITGB2   46036
46           ITGB2   46036
47           ITGB2   46036
48           ITGB2   46036
49           ITGB2   46036
50           ITGB2   46036
51           ITGB2   46036
52           ITGB2   46036
53           ITGB2   46036
54           ITGB2   46036
55           ITGB2   46036
56           ITGB2   46036
57           ITGB2   46036
58           ITGB2   46036
59           ITGB2   46036
60           ITGB2   46036
61           ITGB2   46036
62           ITGB2   46036
63           ITGB2   46036
64           ITGB2   46036
65           ITGB2   46036
66           ITGB2   46036
67           ITGB2   46036
68           ITGB2   46036
69           ITGB2   46036
70           ITGB2   46036
71           ITGB2   46036
72           ITGB2   46036
73           ITGB2   46036
74           ITGB2   46036
75           ITGB2   46036
76           ITGB2   46036
77           ITGB2   46036
78           ITGB2   46036
79           ITGB2   46036
80           ITGB2   46036
81           ITGB2   46036
82           ITGB2   46036
83           ITGB2   46036
84           ITGB2   46036
85           ITGB2   46036
86           ITGB2   46036
87           ITGB2   46036
88           ITGB2   46036
89           ITGB2   46036
90           ITGB2   46036
91           ITGB2   46036
92           ITGB2   46036
93           ITGB2   46036
94           ITGB2   46036
95           ITGB2   46036
96           ITGB2   46036
97           ITGB2   46036
98           ITGB2   46036
99           ITGB2   46036
100          ITGB2   46036
101          ITGB2   46036
102          ITGB2   46036
103          ITGB2   46036
104          ITGB2   46036
105          ITGB2   46036
106          ITGB2   46036
107          ITGB2   46036
108          ITGB2   46036
109          ITGB2   46036
110          ITGB2   46036
111          ITGB2   46036
112          ITGB2   46036
113          ITGB2   46036
114          ITGB2   46036
115          ITGB2   46036
116          ITGB2   46036
117          ITGB2   46036
118          ITGB2   46036
119          ITGB2   46036
120          ITGB2   46036
121          ITGB2   46036
122          ITGB2   46036
123          ITGB2   46036
124          ITGB2   46036
125          ITGB2   46036
126          ITGB2   46036
127          ITGB2   46036
128          ITGB2   46036
129          ITGB2   46036
130          ITGB2   46036
131          ITGB2   46036
132          ITGB2   46036
133          ITGB2   46036
134          ITGB2   46036
135          ITGB2   46036
136          ITGB2   46036
137          ITGB2   46036
138          ITGB2   46036
139          ITGB2   46036
140          ITGB2   46036
141          ITGB2   46036
142          ITGB2   46036
143          ITGB2   46036
144          ITGB2   46036
145          ITGB2   46036
146          ITGB2   46036
147          ITGB2   46036
148          ITGB2   46036
149          ITGB2   46036
150          ITGB2   46036
151          ITGB2   46036
152          ITGB2   46036
153          ITGB2   46036
154          ITGB2   46036
155          ITGB2   46036
156          ITGB2   46036
157          ITGB2   46036
158          ITGB2   46036
159          ITGB2   46036
160          ITGB2   46036
161          ITGB2   46036
162          ITGB2   46036
163          ITGB2   46036
164          ITGB2   46036
165          ITGB2   46036
166          ITGB2   46036
167          ITGB2   46036
168          ITGB2   46036
169          ITGB2   46036
170          ITGB2   46036
171          ITGB2   46036
172          ITGB2   46036
173          ITGB2   46036
174          ITGB2   46036
175          ITGB2   46036
176          ITGB2   46036
177          ITGB2   46036
178          ITGB2   46036
179          ITGB2   46036
180          ITGB2   46036
181          ITGB2   46036
182          ITGB2   46036
183          ITGB2   46036
184          ITGB2   46036
185          ITGB2   46036
186          ITGB2   46036
187          ITGB2   46036
188          ITGB2   46036
189          ITGB2   46036
190          ITGB2   46036
191          ITGB2   46036
192          ITGB2   46036
193          ITGB2   46036
194          ITGB2   46036
195          ITGB2   46036
196          ITGB2   46036
197          ITGB2   46036
198          ITGB2   46036
199          ITGB2   46036
200          ITGB2   46036
201          ITGB2   46036
202          ITGB2   46036
203      RNA5SP489     108
204     RNU6-1149P      96
205                    103
206                    103
207         MIR802      93
208       RNU2-55P     173
209                    107
210                     83
211        MIR4760      79
212          S100B    6246
213          S100B    6246
214          S100B    6246
215          S100B    6246
216          S100B    6246
217          S100B    6246
218          S100B    6246
219          S100B    6246
220          S100B    6246
221          DIP2A  110953
222          DIP2A  110953
223          DIP2A  110953
224          DIP2A  110953
225          DIP2A  110953
226          DIP2A  110953
227          DIP2A  110953
228          DIP2A  110953
229          DIP2A  110953
230          DIP2A  110953
231          DIP2A  110953
232          DIP2A  110953
233          DIP2A  110953
234          DIP2A  110953
235          DIP2A  110953
236          DIP2A  110953
237          DIP2A  110953
238          DIP2A  110953
239          DIP2A  110953
240          DIP2A  110953
241          DIP2A  110953
242          DIP2A  110953
243          DIP2A  110953
244          DIP2A  110953
245          DIP2A  110953
246          DIP2A  110953
247          DIP2A  110953
248          DIP2A  110953
249          DIP2A  110953
250          DIP2A  110953
251          DIP2A  110953
252          DIP2A  110953
253          DIP2A  110953
254          DIP2A  110953
255          DIP2A  110953
256          DIP2A  110953
257          DIP2A  110953
258          DIP2A  110953
259          DIP2A  110953
260          DIP2A  110953
261          DIP2A  110953
262          DIP2A  110953
263          DIP2A  110953
264          DIP2A  110953
265          DIP2A  110953
266          DIP2A  110953
267          DIP2A  110953
268          DIP2A  110953
269          DIP2A  110953
270          DIP2A  110953
271          DIP2A  110953
272          DIP2A  110953
273          DIP2A  110953
274          DIP2A  110953
275          DIP2A  110953
276          DIP2A  110953
277          DIP2A  110953
278          DIP2A  110953
279          DIP2A  110953
280          DIP2A  110953
281          DIP2A  110953
282          DIP2A  110953
283          DIP2A  110953
284          DIP2A  110953
285          DIP2A  110953
286          DIP2A  110953
287          DIP2A  110953
288          DIP2A  110953
289          DIP2A  110953
290          DIP2A  110953
291          DIP2A  110953
292          DIP2A  110953
293          DIP2A  110953
294          DIP2A  110953
295          DIP2A  110953
296          DIP2A  110953
297          DIP2A  110953
298          DIP2A  110953
299          DIP2A  110953
300          DIP2A  110953
301          DIP2A  110953
302          DIP2A  110953
303          DIP2A  110953
304          DIP2A  110953
305          DIP2A  110953
306          DIP2A  110953
307          DIP2A  110953
308          DIP2A  110953
309          DIP2A  110953
310          DIP2A  110953
311          DIP2A  110953
312          DIP2A  110953
313          DIP2A  110953
314          DIP2A  110953
315          DIP2A  110953
316          DIP2A  110953
317          DIP2A  110953
318          DIP2A  110953
319          DIP2A  110953
320          DIP2A  110953
321          DIP2A  110953
322          DIP2A  110953
323          DIP2A  110953
324          DIP2A  110953
325          DIP2A  110953
326          DIP2A  110953
327          DIP2A  110953
328          DIP2A  110953
329          DIP2A  110953
330          DIP2A  110953
331          DIP2A  110953
332          DIP2A  110953
333          DIP2A  110953
334          DIP2A  110953
335          DIP2A  110953
336          DIP2A  110953
337          DIP2A  110953
338          DIP2A  110953
339          DIP2A  110953
340          DIP2A  110953
341          DIP2A  110953
342          DIP2A  110953
343          DIP2A  110953
344          DIP2A  110953
345          DIP2A  110953
346          DIP2A  110953
347          DIP2A  110953
348          DIP2A  110953
349          DIP2A  110953
350          DIP2A  110953
351          DIP2A  110953
352          DIP2A  110953
353          DIP2A  110953
354          DIP2A  110953
355          DIP2A  110953
356          DIP2A  110953
357          DIP2A  110953
358          DIP2A  110953
359          DIP2A  110953
360          DIP2A  110953
361          DIP2A  110953
362          DIP2A  110953
363          DIP2A  110953
364          DIP2A  110953
365          DIP2A  110953
366          DIP2A  110953
367          DIP2A  110953
368          DIP2A  110953
369          DIP2A  110953
370          DIP2A  110953
371          DIP2A  110953
372          DIP2A  110953
373          DIP2A  110953
374          DIP2A  110953
375          DIP2A  110953
376          DIP2A  110953
377          DIP2A  110953
378          DIP2A  110953
379          DIP2A  110953
380          DIP2A  110953
381          DIP2A  110953
382          DIP2A  110953
383          DIP2A  110953
384          DIP2A  110953
385          DIP2A  110953
386          DIP2A  110953
387          DIP2A  110953
388          DIP2A  110953
389          DIP2A  110953
390          DIP2A  110953
391          DIP2A  110953
392          DIP2A  110953
393          DIP2A  110953
394          DIP2A  110953
395          DIP2A  110953
396          DIP2A  110953
397          DIP2A  110953
398          DIP2A  110953
399          DIP2A  110953
400          DIP2A  110953
401          DIP2A  110953
402          DIP2A  110953
403          DIP2A  110953
404          DIP2A  110953
405          DIP2A  110953
406          DIP2A  110953
407          DIP2A  110953
408          DIP2A  110953
409          DIP2A  110953
410          DIP2A  110953
411          DIP2A  110953
412      RNU6-772P     104
413      MIR3648-2     179
414        MIR6501      66
415                     72
416         MIR155      64
417      MIR3118-1      75
418       MIR5692B      86
419      LINC01424    2140
420      LINC01424    2140
421      KRTAP12-2     738
422      KRTAP12-4     446
423                    713
424           PCNT  121647
425           PCNT  121647
426           PCNT  121647
427           PCNT  121647
428           PCNT  121647
429           PCNT  121647
430           PCNT  121647
431           PCNT  121647
432           PCNT  121647
433           PCNT  121647
434           PCNT  121647
435           PCNT  121647
436           PCNT  121647
437           PCNT  121647
438           PCNT  121647
439           PCNT  121647
440           PCNT  121647
441           PCNT  121647
442           PCNT  121647
443           PCNT  121647
444           PCNT  121647
445           PCNT  121647
446           PCNT  121647
447           PCNT  121647
448           PCNT  121647
449           PCNT  121647
450           PCNT  121647
451           PCNT  121647
452           PCNT  121647
453           PCNT  121647
454           PCNT  121647
455           PCNT  121647
456           PCNT  121647
457           PCNT  121647
458           PCNT  121647
459           PCNT  121647
460           PCNT  121647
461           PCNT  121647
462           PCNT  121647
463           PCNT  121647
464           PCNT  121647
465           PCNT  121647
466           PCNT  121647
467           PCNT  121647
468           PCNT  121647
469           PCNT  121647
470           PCNT  121647
471           PCNT  121647
472           PCNT  121647
473           PCNT  121647
474           PCNT  121647
475           PCNT  121647
476           PCNT  121647
477           PCNT  121647
478           PCNT  121647
479           PCNT  121647
480           PCNT  121647
481           PCNT  121647
482           PCNT  121647
483           PCNT  121647
484           PCNT  121647
485           PCNT  121647
486           PCNT  121647
487           PCNT  121647
488           PCNT  121647
489           PCNT  121647
490           PCNT  121647
491           PCNT  121647
492           PCNT  121647
493           PCNT  121647
494           PCNT  121647
495           PCNT  121647
496           PCNT  121647
497           PCNT  121647
498           PCNT  121647
499           PCNT  121647
500           PCNT  121647
501           PCNT  121647
502           PCNT  121647
503           PCNT  121647
504           PCNT  121647
505           PCNT  121647
506           PCNT  121647
507           PCNT  121647
508           PCNT  121647
509           PCNT  121647
510           PCNT  121647
511           PCNT  121647
512           PCNT  121647
513           PCNT  121647
514           PCNT  121647
515           PCNT  121647
516           PCNT  121647
517           PCNT  121647
518           PCNT  121647
519           PCNT  121647
520           PCNT  121647
521           PCNT  121647
522           PCNT  121647
523           PCNT  121647
524           PCNT  121647
525           PCNT  121647
526           PCNT  121647
527           PCNT  121647
528           PCNT  121647
529           PCNT  121647
530           PCNT  121647
531           PCNT  121647
532           PCNT  121647
533           PCNT  121647
534           PCNT  121647
535           PCNT  121647
536           PCNT  121647
537           PCNT  121647
538           PCNT  121647
539           PCNT  121647
540           PCNT  121647
541           PCNT  121647
542           PCNT  121647
543           PCNT  121647
544           PCNT  121647
545           PCNT  121647
546           PCNT  121647
547      KRTAP12-3     409
548      KRTAP10-6    1237
549      KRTAP12-1     587
550      KRTAP10-2    1148
551      KRTAP10-2    1148
552      KRTAP10-2    1148
553      LRRC3-AS1    4298
554      LRRC3-AS1    4298
555      LRRC3-AS1    4298
556      LRRC3-AS1    4298
557                     89
558                    112
559      BACE2-IT1     529
560      BACE2-IT1     529
561                   1472
562                   1472
563                  30026
564                  30026
565                  30026
566                  30026
567                  30026
568                  30026
569                  30026
570                    451
571      BACH1-IT3    4339
572      BACH1-IT3    4339
573          BACH1  436680
574          BACH1  436680
575          BACH1  436680
576          BACH1  436680
577          BACH1  436680
578          BACH1  436680
579          BACH1  436680
580          BACH1  436680
581          BACH1  436680
582          BACH1  436680
583          BACH1  436680
584          BACH1  436680
585          BACH1  436680
586          BACH1  436680
587          BACH1  436680
588          BACH1  436680
589          BACH1  436680
590          BACH1  436680
591          BACH1  436680
592          BACH1  436680
593          BACH1  436680
594          BACH1  436680
595          BACH1  436680
596          BACH1  436680
597          BACH1  436680
598          BACH1  436680
599          BACH1  436680
600          BACH1  436680
601          BACH1  436680
602          BACH1  436680
603          BACH1  436680
604          BACH1  436680
605          BACH1  436680
606          BACH1  436680
607          BACH1  436680
608          BACH1  436680
609          BACH1  436680
610          BACH1  436680
611          BACH1  436680
612          BACH1  436680
613          BACH1  436680
614          BACH1  436680
615          BACH1  436680
616          BACH1  436680
617          BACH1  436680
618                    529
619                  12345
620                  12345
621                  12345
622                  12345
623                  12345
624                  12345
625                  12345
626                  12345
627                  12345
628                  12345
629                  12345
630                  12345
631                  12345
632                  12345
633                  12345
634                  12345
635                  12345
636                  12345
637                  12345
638                  12345
639                  12345
640       RNA5-8S5     152
641                     89
642        MIR4759      82
643       RPL18AP2     481
644      LINC00479    4255
645      LINC00479    4255
646      LINC00479    4255
647      LINC00479    4255
648      LINC00479    4255
649      LINC00479    4255
650      LINC00479    4255
651      LINC00479    4255
652      LINC00479    4255
653      LINC00479    4255
654      LINC00479    4255
655      LINC00479    4255
656      LINC00479    4255
657      LINC00479    4255
658      LINC00479    4255
659      LINC00479    4255
660      LINC00479    4255
661      LINC00479    4255
662      LINC00479    4255
663      LINC00479    4255
664     TSPEAR-AS2    8736
665     TSPEAR-AS2    8736
666     TSPEAR-AS2    8736
667     TSPEAR-AS2    8736
668     TSPEAR-AS2    8736
669     TSPEAR-AS2    8736
670     TSPEAR-AS2    8736
671      KRTAP10-8     875
672                    134
673      MIR8069-1      85
674         UBE2G2   33439
675         UBE2G2   33439
676         UBE2G2   33439
677         UBE2G2   33439
678         UBE2G2   33439
679         UBE2G2   33439
680         UBE2G2   33439
681         UBE2G2   33439
682         UBE2G2   33439
683         UBE2G2   33439
684         UBE2G2   33439
685         UBE2G2   33439
686         UBE2G2   33439
687         UBE2G2   33439
688         UBE2G2   33439
689         UBE2G2   33439
690         UBE2G2   33439
691         UBE2G2   33439
692         UBE2G2   33439
693         UBE2G2   33439
694         UBE2G2   33439
695         UBE2G2   33439
696         UBE2G2   33439
697         UBE2G2   33439
698         UBE2G2   33439
699         UBE2G2   33439
700         UBE2G2   33439
701         UBE2G2   33439
702         UBE2G2   33439
703         UBE2G2   33439
704         UBE2G2   33439
705         UBE2G2   33439
706         UBE2G2   33439
707         UBE2G2   33439
708         UBE2G2   33439
709         UBE2G2   33439
710         UBE2G2   33439
711         UBE2G2   33439
712         UBE2G2   33439
713         UBE2G2   33439
714         UBE2G2   33439
715         UBE2G2   33439
716         UBE2G2   33439
717         UBE2G2   33439
718         UBE2G2   33439
719         UBE2G2   33439
720         UBE2G2   33439
721         UBE2G2   33439
722         UBE2G2   33439
723         UBE2G2   33439
724         UBE2G2   33439
725         UBE2G2   33439
726         UBE2G2   33439
727         UBE2G2   33439
728         UBE2G2   33439
729         UBE2G2   33439
730         UBE2G2   33439
731         UBE2G2   33439
732         UBE2G2   33439
733         UBE2G2   33439
734      KRTAP10-3     970
735      KRTAP10-7    1577
736                   1155
737                   1155
738          BACE2  114717
739          BACE2  114717
740          BACE2  114717
741          BACE2  114717
742          BACE2  114717
743          BACE2  114717
744          BACE2  114717
745          BACE2  114717
746          BACE2  114717
747          BACE2  114717
748          BACE2  114717
749          BACE2  114717
750          BACE2  114717
751          BACE2  114717
752          BACE2  114717
753          BACE2  114717
754          BACE2  114717
755          BACE2  114717
756          BACE2  114717
757          BACE2  114717
758          BACE2  114717
759          BACE2  114717
760          BACE2  114717
761          BACE2  114717
762          BACE2  114717
763          BACE2  114717
764          BACE2  114717
765          BACE2  114717
766          BACE2  114717
767          BACE2  114717
768          BACE2  114717
769          BACE2  114717
770          BACE2  114717
771          BACE2  114717
772          BACE2  114717
773          BACE2  114717
774          BACE2  114717
775          BACE2  114717
776          BACE2  114717
777          BACE2  114717
778          BACE2  114717
779          BACE2  114717
780          BACE2  114717
781          BACE2  114717
782          BACE2  114717
783          BACE2  114717
784          BACE2  114717
785          BACE2  114717
786          BACE2  114717
787          BACE2  114717
788          BACE2  114717
789          BACE2  114717
790          BACE2  114717
791          BACE2  114717
792          BACE2  114717
793          BACE2  114717
794          BACE2  114717
795          BACE2  114717
796          BACE2  114717
797          BACE2  114717
798          BACE2  114717
799          BACE2  114717
800          BACE2  114717
801          BACE2  114717
802          BACE2  114717
803      LINC00323    6640
804      LINC00323    6640
805      LINC00323    6640
806      LINC00323    6640
807      LINC00323    6640
808      LINC00323    6640
809      LINC00323    6640
810         YRDCP3     479
811      RNU6-286P     106
812                     89
813                    459
814          RIPK4   27737
815          RIPK4   27737
816          RIPK4   27737
817          RIPK4   27737
818          RIPK4   27737
819          RIPK4   27737
820          RIPK4   27737
821          RIPK4   27737
822          RIPK4   27737
823          RIPK4   27737
824          RIPK4   27737
825          RIPK4   27737
826          RIPK4   27737
827          RIPK4   27737
828          RIPK4   27737
829          RIPK4   27737
830          RIPK4   27737
831        TMPRSS2   66565
832        TMPRSS2   66565
833        TMPRSS2   66565
834        TMPRSS2   66565
835        TMPRSS2   66565
836        TMPRSS2   66565
837        TMPRSS2   66565
838        TMPRSS2   66565
839        TMPRSS2   66565
840        TMPRSS2   66565
841        TMPRSS2   66565
842        TMPRSS2   66565
843        TMPRSS2   66565
844        TMPRSS2   66565
845        TMPRSS2   66565
846        TMPRSS2   66565
847        TMPRSS2   66565
848        TMPRSS2   66565
849        TMPRSS2   66565
850        TMPRSS2   66565
851        TMPRSS2   66565
852        TMPRSS2   66565
853        TMPRSS2   66565
854        TMPRSS2   66565
855        TMPRSS2   66565
856        TMPRSS2   66565
857        TMPRSS2   66565
858        TMPRSS2   66565
859        TMPRSS2   66565
860        TMPRSS2   66565
861        TMPRSS2   66565
862        TMPRSS2   66565
863        TMPRSS2   66565
864        TMPRSS2   66565
865        TMPRSS2   66565
866        TMPRSS2   66565
867        TMPRSS2   66565
868        TMPRSS2   66565
869        TMPRSS2   66565
870        TMPRSS2   66565
871        TMPRSS2   66565
872        TMPRSS2   66565
873        TMPRSS2   66565
874        TMPRSS2   66565
875        TMPRSS2   66565
876        TMPRSS2   66565
877        TMPRSS2   66565
878        TMPRSS2   66565
879        TMPRSS2   66565
880        TMPRSS2   66565
881        TMPRSS2   66565
882        TMPRSS2   66565
883        TMPRSS2   66565
884        TMPRSS2   66565
885        TMPRSS2   66565
886        TMPRSS2   66565
887        TMPRSS2   66565
888        TMPRSS2   66565
889        TMPRSS2   66565
890        TMPRSS2   66565
891        TMPRSS2   66565
892        TMPRSS2   66565
893        TMPRSS2   66565
894        TMPRSS2   66565
895        TMPRSS2   66565
896        TMPRSS2   66565
897        TMPRSS2   66565
898        TMPRSS2   66565
899        TMPRSS2   66565
900        TMPRSS2   66565
901        TMPRSS2   66565
902        TMPRSS2   66565
903        TMPRSS2   66565
904        TMPRSS2   66565
905        TMPRSS2   66565
906        TMPRSS2   66565
907        TMPRSS2   66565
908        TMPRSS2   66565
909        TMPRSS2   66565
910        TMPRSS2   66565
911          SUMO3   13162
912          SUMO3   13162
913          SUMO3   13162
914          SUMO3   13162
915          SUMO3   13162
916          SUMO3   13162
917          SUMO3   13162
918          SUMO3   13162
919          SUMO3   13162
920          SUMO3   13162
921          SUMO3   13162
922          SUMO3   13162
923          SUMO3   13162
924          SUMO3   13162
925          SUMO3   13162
926          SUMO3   13162
927          SUMO3   13162
928          SUMO3   13162
929          SUMO3   13162
930          SUMO3   13162
931          SUMO3   13162
932          SUMO3   13162
933      MIR8069-2      85
934        MIR6130     108
935      MIR6724-1      91
936      RNU6-696P     106
937     RNU6-1326P     106
938     KRTAP10-11    1236
939                    271
940      DSCAM-AS1    2275
941      DSCAM-AS1    2275
942      DSCAM-AS1    2275
943      DSCAM-AS1    2275
944      DSCAM-AS1    2275
945      DSCAM-AS1    2275
946      DSCAM-AS1    2275
947      DSCAM-AS1    2275
948      DSCAM-AS1    2275
949      DSCAM-AS1    2275
950      MIR6724-4      91
951      RNU6-123P     101
952      RNA5SP492     113
953      RNU1-139P     164
954      MIR3648-1     179
955                  38351
956                  38351
957                  38351
958                  38351
959                  38351
960                  38351
961                  38351
962                  38351
963                  38351
964                  38351
965                  38351
966                  38351
967                  38351
968                  38351
969                  38351
970                  38351
971                  38351
972                  38351
973                  38351
974                  38351
975                  38351
976                   2452
977                   2452
978       C21orf33   12118
979       C21orf33   12118
980       C21orf33   12118
981       C21orf33   12118
982       C21orf33   12118
983       C21orf33   12118
984       C21orf33   12118
985       C21orf33   12118
986       C21orf33   12118
987       C21orf33   12118
988       C21orf33   12118
989       C21orf33   12118
990       C21orf33   12118
991       C21orf33   12118
992       C21orf33   12118
993       C21orf33   12118
994       C21orf33   12118
995       C21orf33   12118
996       C21orf33   12118
997       C21orf33   12118
998       C21orf33   12118
999       C21orf33   12118
1000      C21orf33   12118
1001      C21orf33   12118
1002      C21orf33   12118
1003      C21orf33   12118
1004      C21orf33   12118
1005      C21orf33   12118
1006      C21orf33   12118
1007      C21orf33   12118
1008      C21orf33   12118
1009      C21orf33   12118
1010      C21orf33   12118
1011      C21orf33   12118
1012      C21orf33   12118
1013      C21orf33   12118
1014      C21orf33   12118
1015      C21orf33   12118
1016      C21orf33   12118
1017      C21orf33   12118
1018      C21orf33   12118
1019      C21orf33   12118
1020      C21orf33   12118
1021      C21orf33   12118
1022      C21orf33   12118
1023      C21orf33   12118
1024      C21orf33   12118
1025      C21orf33   12118
1026      C21orf33   12118
1027      C21orf33   12118
1028      C21orf33   12118
1029      C21orf33   12118
1030      C21orf33   12118
1031      C21orf33   12118
1032      C21orf33   12118
1033      C21orf33   12118
1034      C21orf33   12118
1035      C21orf33   12118
1036          CBR1    3225
1037          CBR1    3225
1038          CBR1    3225
1039          CBR1    3225
1040          CBR1    3225
1041          CBR1    3225
1042          CBR1    3225
1043          CBR1    3225
1044          CBR1    3225
1045          CBR1    3225
1046          CBR1    3225
1047          CBR1    3225
1048          CBR1    3225
1049          CBR1    3225
1050      ATP5J2LP     234
1051        DOPEY2  137492
1052        DOPEY2  137492
1053        DOPEY2  137492
1054        DOPEY2  137492
1055        DOPEY2  137492
1056        DOPEY2  137492
1057        DOPEY2  137492
1058        DOPEY2  137492
1059        DOPEY2  137492
1060        DOPEY2  137492
1061        DOPEY2  137492
1062        DOPEY2  137492
1063        DOPEY2  137492
1064        DOPEY2  137492
1065        DOPEY2  137492
1066        DOPEY2  137492
1067        DOPEY2  137492
1068        DOPEY2  137492
1069        DOPEY2  137492
1070        DOPEY2  137492
1071        DOPEY2  137492
1072        DOPEY2  137492
1073        DOPEY2  137492
1074        DOPEY2  137492
1075        DOPEY2  137492
1076        DOPEY2  137492
1077        DOPEY2  137492
1078        DOPEY2  137492
1079        DOPEY2  137492
1080        DOPEY2  137492
1081        DOPEY2  137492
1082        DOPEY2  137492
1083        DOPEY2  137492
1084        DOPEY2  137492
1085        DOPEY2  137492
1086        DOPEY2  137492
1087        DOPEY2  137492
1088        DOPEY2  137492
1089        DOPEY2  137492
1090        DOPEY2  137492
1091        DOPEY2  137492
1092        DOPEY2  137492
1093        DOPEY2  137492
1094        DOPEY2  137492
1095        DOPEY2  137492
1096        DOPEY2  137492
1097        DOPEY2  137492
1098        DOPEY2  137492
1099        DOPEY2  137492
1100        DOPEY2  137492
1101        DOPEY2  137492
1102         CLIC6   48838
1103         CLIC6   48838
1104         CLIC6   48838
1105         CLIC6   48838
1106         CLIC6   48838
1107         CLIC6   48838
1108         CLIC6   48838
1109         CLIC6   48838
1110         CLIC6   48838
1111         CLIC6   48838
1112         CLIC6   48838
1113         CLIC6   48838
1114         CLIC6   48838
1115        HSPA13   12369
1116        HSPA13   12369
1117        HSPA13   12369
1118        HSPA13   12369
1119        HSPA13   12369
1120        HSPA13   12369
1121        HSPA13   12369
1122        HSPA13   12369
1123                  9856
1124                  9856
1125                  9856
1126                  9856
1127                  1536
1128                 61169
1129                 61169
1130                 61169
1131         KCNE2    7365
1132         KCNE2    7365
1133        AGPAT3  121350
1134        AGPAT3  121350
1135        AGPAT3  121350
1136        AGPAT3  121350
1137        AGPAT3  121350
1138        AGPAT3  121350
1139        AGPAT3  121350
1140        AGPAT3  121350
1141        AGPAT3  121350
1142        AGPAT3  121350
1143        AGPAT3  121350
1144        AGPAT3  121350
1145        AGPAT3  121350
1146        AGPAT3  121350
1147        AGPAT3  121350
1148        AGPAT3  121350
1149        AGPAT3  121350
1150        AGPAT3  121350
1151        AGPAT3  121350
1152        AGPAT3  121350
1153        AGPAT3  121350
1154        AGPAT3  121350
1155        AGPAT3  121350
1156        AGPAT3  121350
1157        AGPAT3  121350
1158        AGPAT3  121350
1159        AGPAT3  121350
1160        AGPAT3  121350
1161        AGPAT3  121350
1162        AGPAT3  121350
1163        AGPAT3  121350
1164        AGPAT3  121350
1165        AGPAT3  121350
1166        AGPAT3  121350
1167        AGPAT3  121350
1168        AGPAT3  121350
1169        AGPAT3  121350
1170        AGPAT3  121350
1171        AGPAT3  121350
1172        AGPAT3  121350
1173        AGPAT3  121350
1174        AGPAT3  121350
1175        AGPAT3  121350
1176        AGPAT3  121350
1177        AGPAT3  121350
1178        AGPAT3  121350
1179        AGPAT3  121350
1180        AGPAT3  121350
1181        AGPAT3  121350
1182        AGPAT3  121350
1183        AGPAT3  121350
1184        AGPAT3  121350
1185        AGPAT3  121350
1186        AGPAT3  121350
1187        AGPAT3  121350
1188        AGPAT3  121350
1189        AGPAT3  121350
1190        AGPAT3  121350
1191        AGPAT3  121350
1192        AGPAT3  121350
1193        AGPAT3  121350
1194        AGPAT3  121350
1195        AGPAT3  121350
1196        AGPAT3  121350
1197        AGPAT3  121350
1198        AGPAT3  121350
1199        AGPAT3  121350
1200        AGPAT3  121350
1201        AGPAT3  121350
1202        AGPAT3  121350
1203        AGPAT3  121350
1204        AGPAT3  121350
1205        AGPAT3  121350
1206        AGPAT3  121350
1207        AGPAT3  121350
1208        AGPAT3  121350
1209        AGPAT3  121350
1210        AGPAT3  121350
1211        AGPAT3  121350
1212        AGPAT3  121350
1213        AGPAT3  121350
1214        AGPAT3  121350
1215        AGPAT3  121350
1216        AGPAT3  121350
1217        AGPAT3  121350
1218        AGPAT3  121350
1219        AGPAT3  121350
1220        AGPAT3  121350
1221        AGPAT3  121350
1222        AGPAT3  121350
1223        AGPAT3  121350
1224        AGPAT3  121350
1225        AGPAT3  121350
1226        AGPAT3  121350
1227        AGPAT3  121350
1228        AGPAT3  121350
1229        AGPAT3  121350
1230        AGPAT3  121350
1231        AGPAT3  121350
1232        AGPAT3  121350
1233        AGPAT3  121350
1234        AGPAT3  121350
1235        AGPAT3  121350
1236        AGPAT3  121350
1237        AGPAT3  121350
1238        AGPAT3  121350
1239        AGPAT3  121350
1240        AGPAT3  121350
1241        AGPAT3  121350
1242        AGPAT3  121350
1243        AGPAT3  121350
1244        AGPAT3  121350
1245        AGPAT3  121350
1246                  4546
1247                  4546
1248                   464
1249     C21orf140     755
1250       SMIM11A   32386
1251       SMIM11A   32386
1252       SMIM11A   32386
1253       SMIM11A   32386
1254       SMIM11A   32386
1255       SMIM11A   32386
1256       SMIM11A   32386
1257       SMIM11A   32386
1258       SMIM11A   32386
1259       SMIM11A   32386
1260       SMIM11A   32386
1261       SMIM11A   32386
1262       SMIM11A   32386
1263       SMIM11A   32386
1264       SMIM11A   32386
1265       SMIM11A   32386
1266       SMIM11A   32386
1267       SMIM11A   32386
1268       SMIM11A   32386
1269       SMIM11A   32386
1270       SMIM11A   32386
1271       SMIM11A   32386
1272       SMIM11A   32386
1273       SMIM11A   32386
1274       SMIM11A   32386
1275       SMIM11A   32386
1276       SMIM11A   32386
1277       SMIM11A   32386
1278       SMIM11A   32386
1279       SMIM11A   32386
1280       UBASH3A   44234
1281       UBASH3A   44234
1282       UBASH3A   44234
1283       UBASH3A   44234
1284       UBASH3A   44234
1285       UBASH3A   44234
1286       UBASH3A   44234
1287       UBASH3A   44234
1288       UBASH3A   44234
1289       UBASH3A   44234
1290       UBASH3A   44234
1291       UBASH3A   44234
1292       UBASH3A   44234
1293       UBASH3A   44234
1294       UBASH3A   44234
1295       UBASH3A   44234
1296       UBASH3A   44234
1297       UBASH3A   44234
1298       UBASH3A   44234
1299       UBASH3A   44234
1300       UBASH3A   44234
1301       UBASH3A   44234
1302       UBASH3A   44234
1303       UBASH3A   44234
1304       UBASH3A   44234
1305       UBASH3A   44234
1306       UBASH3A   44234
1307       UBASH3A   44234
1308       UBASH3A   44234
1309       UBASH3A   44234
1310       UBASH3A   44234
1311       UBASH3A   44234
1312       UBASH3A   44234
1313       UBASH3A   44234
1314       UBASH3A   44234
1315       UBASH3A   44234
1316       UBASH3A   44234
1317       UBASH3A   44234
1318       UBASH3A   44234
1319       UBASH3A   44234
1320       UBASH3A   44234
1321       UBASH3A   44234
1322       UBASH3A   44234
1323       UBASH3A   44234
1324       UBASH3A   44234
1325       UBASH3A   44234
1326       UBASH3A   44234
1327       UBASH3A   44234
1328       UBASH3A   44234
1329       UBASH3A   44234
1330       UBASH3A   44234
1331       UBASH3A   44234
1332       UBASH3A   44234
1333       UBASH3A   44234
1334       UBASH3A   44234
1335       UBASH3A   44234
1336       UBASH3A   44234
1337       UBASH3A   44234
1338       UBASH3A   44234
1339       UBASH3A   44234
1340       UBASH3A   44234
1341       UBASH3A   44234
1342       UBASH3A   44234
1343       UBASH3A   44234
1344       UBASH3A   44234
1345       UBASH3A   44234
1346       UBASH3A   44234
1347       UBASH3A   44234
1348       UBASH3A   44234
1349       UBASH3A   44234
1350       UBASH3A   44234
1351       UBASH3A   44234
1352       UBASH3A   44234
1353       UBASH3A   44234
1354       UBASH3A   44234
1355       UBASH3A   44234
1356       UBASH3A   44234
1357       UBASH3A   44234
1358       UBASH3A   44234
1359       UBASH3A   44234
1360       UBASH3A   44234
1361       UBASH3A   44234
1362       UBASH3A   44234
1363       UBASH3A   44234
1364       UBASH3A   44234
1365       UBASH3A   44234
1366                   387
1367                  5251
1368                  5251
1369                   509
1370         RBM11   12242
1371         RBM11   12242
1372         RBM11   12242
1373         RBM11   12242
1374         RBM11   12242
1375         RBM11   12242
1376         RBM11   12242
1377         RBM11   12242
1378         RBM11   12242
1379         RBM11   12242
1380         RBM11   12242
1381         RBM11   12242
1382         RBM11   12242
1383         RBM11   12242
1384         RBM11   12242
1385         RBM11   12242
1386         RBM11   12242
1387         RBM11   12242
1388         RBM11   12242
1389         RBM11   12242
1390         RBM11   12242
1391         RBM11   12242
1392         RBM11   12242
1393         RBM11   12242
1394                 10816
1395                 10816
1396                 10816
1397                 10816
1398        COL6A1   23313
1399        COL6A1   23313
1400        COL6A1   23313
1401        COL6A1   23313
1402        COL6A1   23313
1403        COL6A1   23313
1404        COL6A1   23313
1405        COL6A1   23313
1406        COL6A1   23313
1407        COL6A1   23313
1408        COL6A1   23313
1409        COL6A1   23313
1410        COL6A1   23313
1411        COL6A1   23313
1412        COL6A1   23313
1413        COL6A1   23313
1414        COL6A1   23313
1415        COL6A1   23313
1416        COL6A1   23313
1417        COL6A1   23313
1418        COL6A1   23313
1419        COL6A1   23313
1420        COL6A1   23313
1421        COL6A1   23313
1422        COL6A1   23313
1423        COL6A1   23313
1424        COL6A1   23313
1425        COL6A1   23313
1426        COL6A1   23313
1427        COL6A1   23313
1428        COL6A1   23313
1429        COL6A1   23313
1430        COL6A1   23313
1431        COL6A1   23313
1432        COL6A1   23313
1433        COL6A1   23313
1434        COL6A1   23313
1435        COL6A1   23313
1436        COL6A1   23313
1437        COL6A1   23313
1438        COL6A1   23313
1439        COL6A1   23313
1440        COL6A1   23313
1441        COL6A1   23313
1442        COL6A1   23313
1443        COL6A1   23313
1444        COL6A1   23313
1445        COL6A1   23313
1446        COL6A1   23313
1447        COL6A1   23313
1448        COL6A1   23313
1449        COL6A1   23313
1450        COL6A1   23313
1451        COL6A1   23313
1452        COL6A1   23313
1453        COL6A1   23313
1454        COL6A1   23313
1455        COL6A1   23313
1456        COL6A1   23313
1457        COL6A1   23313
1458        COL6A1   23313
1459        COL6A1   23313
1460        COL6A1   23313
1461        COL6A1   23313
1462        COL6A1   23313
1463        COL6A1   23313
1464        COL6A1   23313
1465        COL6A1   23313
1466        COL6A1   23313
1467        COL6A1   23313
1468        COL6A1   23313
1469        COL6A1   23313
1470        COL6A1   23313
1471        COL6A1   23313
1472        COL6A1   23313
1473        COL6A1   23313
1474        COL6A1   23313
1475        COL6A1   23313
1476        COL6A1   23313
1477        COL6A1   23313
1478        COL6A1   23313
1479        COL6A1   23313
1480        COL6A1   23313
1481        COL6A1   23313
1482        COL6A1   23313
1483        COL6A1   23313
1484        COL6A1   23313
1485        COL6A1   23313
1486        COL6A1   23313
1487        NEK4P1     878
1488                   377
1489     LINC01549   10295
1490     LINC01549   10295
1491     LINC01549   10295
1492     LINC01549   10295
1493     LINC01549   10295
1494     LINC01549   10295
1495     LINC01549   10295
1496      RPL39P40     145
1497         KCNE1   65587
1498         KCNE1   65587
1499         KCNE1   65587
1500         KCNE1   65587
1501         KCNE1   65587
1502         KCNE1   65587
1503         KCNE1   65587
1504         KCNE1   65587
1505         KCNE1   65587
1506         KCNE1   65587
1507         KCNE1   65587
1508         KCNE1   65587
1509         KCNE1   65587
1510         KCNE1   65587
1511         KCNE1   65587
1512         KCNE1   65587
1513         KCNE1   65587
1514         KCNE1   65587
1515         KCNE1   65587
1516         KCNE1   65587
1517         KCNE1   65587
1518         KCNE1   65587
1519         KCNE1   65587
1520         KCNE1   65587
1521         KCNE1   65587
1522         CXADR   81197
1523         CXADR   81197
1524         CXADR   81197
1525         CXADR   81197
1526         CXADR   81197
1527         CXADR   81197
1528         CXADR   81197
1529         CXADR   81197
1530         CXADR   81197
1531         CXADR   81197
1532         CXADR   81197
1533         CXADR   81197
1534         CXADR   81197
1535         CXADR   81197
1536         CXADR   81197
1537         CXADR   81197
1538         CXADR   81197
1539         CXADR   81197
1540         CXADR   81197
1541         CXADR   81197
1542         CXADR   81197
1543         CXADR   81197
1544         CXADR   81197
1545         CXADR   81197
1546         CXADR   81197
1547         CXADR   81197
1548         CXADR   81197
1549      BTF3L4P1     467
1550                  2755
1551                  2755
1552                   509
1553                   509
1554                  1051
1555                  1051
1556        ABCC13  126548
1557        ABCC13  126548
1558        ABCC13  126548
1559        ABCC13  126548
1560        ABCC13  126548
1561        ABCC13  126548
1562        ABCC13  126548
1563        ABCC13  126548
1564        ABCC13  126548
1565        ABCC13  126548
1566        ABCC13  126548
1567        ABCC13  126548
1568        ABCC13  126548
1569        ABCC13  126548
1570        ABCC13  126548
1571        ABCC13  126548
1572        ABCC13  126548
1573        ABCC13  126548
1574        ABCC13  126548
1575        ABCC13  126548
1576        ABCC13  126548
1577        ABCC13  126548
1578        ABCC13  126548
1579        ABCC13  126548
1580        ABCC13  126548
1581        ABCC13  126548
1582        ABCC13  126548
1583        ABCC13  126548
1584        ABCC13  126548
1585        ABCC13  126548
1586        ABCC13  126548
1587        ABCC13  126548
1588        ABCC13  126548
1589        ABCC13  126548
1590        ABCC13  126548
1591        ABCC13  126548
1592        ABCC13  126548
1593        ABCC13  126548
1594        ABCC13  126548
1595        ABCC13  126548
1596        ABCC13  126548
1597        ABCC13  126548
1598        ABCC13  126548
1599        ABCC13  126548
1600        ABCC13  126548
1601        ABCC13  126548
1602        ABCC13  126548
1603        ABCC13  126548
1604        ABCC13  126548
1605        ABCC13  126548
1606        ABCC13  126548
1607        ABCC13  126548
1608        ABCC13  126548
1609        ABCC13  126548
1610        ABCC13  126548
1611        ABCC13  126548
1612        ABCC13  126548
1613        ABCC13  126548
1614        ABCC13  126548
1615        ABCC13  126548
1616        ABCC13  126548
1617        ABCC13  126548
1618        ABCC13  126548
1619         RCAN1  102000
1620         RCAN1  102000
1621         RCAN1  102000
1622         RCAN1  102000
1623         RCAN1  102000
1624         RCAN1  102000
1625         RCAN1  102000
1626         RCAN1  102000
1627         RCAN1  102000
1628         RCAN1  102000
1629         RCAN1  102000
1630         RCAN1  102000
1631         RCAN1  102000
1632         RCAN1  102000
1633         RCAN1  102000
1634         RCAN1  102000
1635         RCAN1  102000
1636         RCAN1  102000
1637         RCAN1  102000
1638         RCAN1  102000
1639         RCAN1  102000
1640         RCAN1  102000
1641         RCAN1  102000
1642         RCAN1  102000
1643         RCAN1  102000
1644         RCAN1  102000
1645         RCAN1  102000
1646         RCAN1  102000
1647         RCAN1  102000
1648         RCAN1  102000
1649         RCAN1  102000
1650         RCAN1  102000
1651         RCAN1  102000
1652         RCAN1  102000
1653         RCAN1  102000
1654         RCAN1  102000
1655         RCAN1  102000
1656         RCAN1  102000
1657         RCAN1  102000
1658         RCAN1  102000
1659         RCAN1  102000
1660         RCAN1  102000
1661         RCAN1  102000
1662         RCAN1  102000
1663         RCAN1  102000
1664         RCAN1  102000
1665         RCAN1  102000
1666         RCAN1  102000
1667         RCAN1  102000
1668       PSMA6P3     163
1669          BTG3   19294
1670          BTG3   19294
1671          BTG3   19294
1672          BTG3   19294
1673          BTG3   19294
1674          BTG3   19294
1675          BTG3   19294
1676          BTG3   19294
1677          BTG3   19294
1678          BTG3   19294
1679          BTG3   19294
1680          BTG3   19294
1681          BTG3   19294
1682          BTG3   19294
1683          BTG3   19294
1684          BTG3   19294
1685          BTG3   19294
1686          BTG3   19294
1687          BTG3   19294
1688          BTG3   19294
1689                 21455
1690                 21455
1691                 21455
1692                 21455
1693    PAXBP1-AS1   15007
1694    PAXBP1-AS1   15007
1695    PAXBP1-AS1   15007
1696    PAXBP1-AS1   15007
1697    PAXBP1-AS1   15007
1698    PAXBP1-AS1   15007
1699    PAXBP1-AS1   15007
1700    PAXBP1-AS1   15007
1701    PAXBP1-AS1   15007
1702        PAXBP1   37959
1703        PAXBP1   37959
1704        PAXBP1   37959
1705        PAXBP1   37959
1706        PAXBP1   37959
1707        PAXBP1   37959
1708        PAXBP1   37959
1709        PAXBP1   37959
1710        PAXBP1   37959
1711        PAXBP1   37959
1712        PAXBP1   37959
1713        PAXBP1   37959
1714        PAXBP1   37959
1715        PAXBP1   37959
1716        PAXBP1   37959
1717        PAXBP1   37959
1718        PAXBP1   37959
1719        PAXBP1   37959
1720        PAXBP1   37959
1721        PAXBP1   37959
1722        PAXBP1   37959
1723        PAXBP1   37959
1724        PAXBP1   37959
1725        PAXBP1   37959
1726        PAXBP1   37959
1727        PAXBP1   37959
1728        PAXBP1   37959
1729        PAXBP1   37959
1730        PAXBP1   37959
1731        PAXBP1   37959
1732        PAXBP1   37959
1733        PAXBP1   37959
1734        PAXBP1   37959
1735        PAXBP1   37959
1736        PAXBP1   37959
1737        PAXBP1   37959
1738        PAXBP1   37959
1739        PAXBP1   37959
1740        PAXBP1   37959
1741        PAXBP1   37959
1742        PAXBP1   37959
1743        PAXBP1   37959
1744        PAXBP1   37959
1745        PAXBP1   37959
1746        PAXBP1   37959
1747        PAXBP1   37959
1748        PAXBP1   37959
1749        PAXBP1   37959
1750        PAXBP1   37959
1751        PAXBP1   37959
1752        PAXBP1   37959
1753        PAXBP1   37959
1754        PAXBP1   37959
1755        PAXBP1   37959
1756        PAXBP1   37959
1757        PAXBP1   37959
1758        PAXBP1   37959
1759        PAXBP1   37959
1760        PAXBP1   37959
1761        PAXBP1   37959
1762        PAXBP1   37959
1763        PAXBP1   37959
1764        PAXBP1   37959
1765        PAXBP1   37959
1766        PAXBP1   37959
1767        PAXBP1   37959
1768        PAXBP1   37959
1769        PAXBP1   37959
1770        PAXBP1   37959
1771        PAXBP1   37959
1772        PAXBP1   37959
1773        PAXBP1   37959
1774        PAXBP1   37959
1775        PAXBP1   37959
1776        PAXBP1   37959
1777        PAXBP1   37959
1778        PAXBP1   37959
1779        PAXBP1   37959
1780        PAXBP1   37959
1781        PAXBP1   37959
1782        PAXBP1   37959
1783        PAXBP1   37959
1784        PAXBP1   37959
1785        PAXBP1   37959
1786        PAXBP1   37959
1787        PAXBP1   37959
1788        PAXBP1   37959
1789        PAXBP1   37959
1790        PAXBP1   37959
1791        PAXBP1   37959
1792        PAXBP1   37959
1793        PAXBP1   37959
1794        PAXBP1   37959
1795        PAXBP1   37959
1796      RNU1-98P     159
1797     MIR3687-2      60
1798                   127
1799     RNA5SP491     117
1800     MIR6724-2      91
1801     RNU6-426P      96
1802         FAM3B   53219
1803         FAM3B   53219
1804         FAM3B   53219
1805         FAM3B   53219
1806         FAM3B   53219
1807         FAM3B   53219
1808         FAM3B   53219
1809         FAM3B   53219
1810         FAM3B   53219
1811         FAM3B   53219
1812         FAM3B   53219
1813         FAM3B   53219
1814         FAM3B   53219
1815         FAM3B   53219
1816         FAM3B   53219
1817         FAM3B   53219
1818         FAM3B   53219
1819         FAM3B   53219
1820         FAM3B   53219
1821         FAM3B   53219
1822         FAM3B   53219
1823         FAM3B   53219
1824         FAM3B   53219
1825         FAM3B   53219
1826         FAM3B   53219
1827         FAM3B   53219
1828         FAM3B   53219
1829         FAM3B   53219
1830         FAM3B   53219
1831         FAM3B   53219
1832         FAM3B   53219
1833         FAM3B   53219
1834         FAM3B   53219
1835         FAM3B   53219
1836         FAM3B   53219
1837         FAM3B   53219
1838         FAM3B   53219
1839         FAM3B   53219
1840         FAM3B   53219
1841         FAM3B   53219
1842         FAM3B   53219
1843         FAM3B   53219
1844         FAM3B   53219
1845         FAM3B   53219
1846         FAM3B   53219
1847         FAM3B   53219
1848                   724
1849                   724
1850          WDR4   36474
1851          WDR4   36474
1852          WDR4   36474
1853          WDR4   36474
1854          WDR4   36474
1855          WDR4   36474
1856          WDR4   36474
1857          WDR4   36474
1858          WDR4   36474
1859          WDR4   36474
1860          WDR4   36474
1861          WDR4   36474
1862          WDR4   36474
1863          WDR4   36474
1864          WDR4   36474
1865          WDR4   36474
1866          WDR4   36474
1867          WDR4   36474
1868          WDR4   36474
1869          WDR4   36474
1870          WDR4   36474
1871          WDR4   36474
1872          WDR4   36474
1873          WDR4   36474
1874          WDR4   36474
1875          WDR4   36474
1876          WDR4   36474
1877          WDR4   36474
1878          WDR4   36474
1879          WDR4   36474
1880          WDR4   36474
1881          WDR4   36474
1882          WDR4   36474
1883          WDR4   36474
1884          WDR4   36474
1885          WDR4   36474
1886          WDR4   36474
1887          WDR4   36474
1888          WDR4   36474
1889          WDR4   36474
1890          WDR4   36474
1891          WDR4   36474
1892          WDR4   36474
1893          WDR4   36474
1894          WDR4   36474
1895          WDR4   36474
1896          WDR4   36474
1897          WDR4   36474
1898          WDR4   36474
1899          WDR4   36474
1900          WDR4   36474
1901          WDR4   36474
1902          WDR4   36474
1903          WDR4   36474
1904          WDR4   36474
1905          WDR4   36474
1906          WDR4   36474
1907          WDR4   36474
1908          WDR4   36474
1909          WDR4   36474
1910          WDR4   36474
1911          WDR4   36474
1912          WDR4   36474
1913          WDR4   36474
1914          WDR4   36474
1915      TTC3-AS1    6260
1916      TTC3-AS1    6260
1917                   707
1918                   707
1919                  1184
1920                   234
1921                  3775
1922                  3775
1923                  3775
1924                  3775
1925                  3775
1926                  3775
1927                  3775
1928                  3775
1929                  3775
1930                  3775
1931                  3775
1932                   326
1933                   635
1934                  4652
1935                  4652
1936                  4652
1937           MX1   38910
1938           MX1   38910
1939           MX1   38910
1940           MX1   38910
1941           MX1   38910
1942           MX1   38910
1943           MX1   38910
1944           MX1   38910
1945           MX1   38910
1946           MX1   38910
1947           MX1   38910
1948           MX1   38910
1949           MX1   38910
1950           MX1   38910
1951           MX1   38910
1952           MX1   38910
1953           MX1   38910
1954           MX1   38910
1955           MX1   38910
1956           MX1   38910
1957           MX1   38910
1958           MX1   38910
1959           MX1   38910
1960           MX1   38910
1961           MX1   38910
1962           MX1   38910
1963           MX1   38910
1964           MX1   38910
1965           MX1   38910
1966           MX1   38910
1967           MX1   38910
1968           MX1   38910
1969           MX1   38910
1970           MX1   38910
1971           MX1   38910
1972           MX1   38910
1973           MX1   38910
1974           MX1   38910
1975           MX1   38910
1976           MX1   38910
1977           MX1   38910
1978           MX1   38910
1979           MX1   38910
1980           MX1   38910
1981           MX1   38910
1982           MX1   38910
1983           MX1   38910
1984           MX1   38910
1985           MX1   38910
1986           MX1   38910
1987           MX1   38910
1988           MX1   38910
1989           MX1   38910
1990           MX1   38910
1991           MX1   38910
1992           MX1   38910
1993           MX1   38910
1994           MX1   38910
1995           MX1   38910
1996           MX1   38910
1997           MX1   38910
1998           MX1   38910
1999           MX1   38910
2000           MX1   38910
2001           MX1   38910
2002           MX1   38910
2003           MX1   38910
2004           MX1   38910
2005           MX1   38910
2006           MX1   38910
2007           MX1   38910
2008           MX1   38910
2009           MX1   38910
2010           MX1   38910
2011           MX1   38910
2012           MX1   38910
2013           MX1   38910
2014           MX1   38910
2015           MX1   38910
2016           MX1   38910
2017           MX1   38910
2018           MX1   38910
2019           MX1   38910
2020           MX1   38910
2021           MX1   38910
2022           MX1   38910
2023           MX1   38910
2024           MX1   38910
2025           MX1   38910
2026           MX1   38910
2027           MX1   38910
2028           MX1   38910
2029           MX1   38910
2030           MX1   38910
2031           MX1   38910
2032           MX1   38910
2033           MX1   38910
2034           MX1   38910
2035           MX1   38910
2036           MX1   38910
2037           MX1   38910
2038           MX1   38910
2039           MX1   38910
2040           MX1   38910
2041           MX1   38910
2042           MX1   38910
2043           MX1   38910
2044           MX1   38910
2045           MX1   38910
2046           MX1   38910
2047           MX1   38910
2048           MX1   38910
2049           MX1   38910
2050           MX1   38910
2051           MX1   38910
2052           MX1   38910
2053           MX1   38910
2054           MX1   38910
2055           MX1   38910
2056           MX1   38910
2057           MX1   38910
2058           MX1   38910
2059           MX1   38910
2060           MX1   38910
2061           MX1   38910
2062           MX1   38910
2063           MX1   38910
2064           MX1   38910
2065           MX1   38910
2066           MX1   38910
2067           MX1   38910
2068           MX1   38910
2069                   643
2070                  4711
2071                  4711
2072                   645
2073     RN7SL163P     275
2074                   100
2075                  5095
2076                  5095
2077                  5095
2078                  5095
2079                  5095
2080                  5095
2081                  5251
2082                  5251
2083                 38338
2084                 38338
2085                 38338
2086                 38338
2087                 38338
2088                 38338
2089                 38338
2090                 38338
2091                 38338
2092                 38338
2093                 38338
2094                 38338
2095                 38338
2096                 38338
2097                 38338
2098                 38338
2099                 38338
2100                 38338
2101                 38338
2102        RNF6P1    3303
2103        RNF6P1    3303
2104        RNF6P1    3303
2105        RNF6P1    3303
2106        RNF6P1    3303
2107          YBEY   11414
2108          YBEY   11414
2109          YBEY   11414
2110          YBEY   11414
2111          YBEY   11414
2112          YBEY   11414
2113          YBEY   11414
2114          YBEY   11414
2115          YBEY   11414
2116          YBEY   11414
2117          YBEY   11414
2118          YBEY   11414
2119          YBEY   11414
2120          YBEY   11414
2121          YBEY   11414
2122          YBEY   11414
2123          YBEY   11414
2124          YBEY   11414
2125          YBEY   11414
2126          YBEY   11414
2127          YBEY   11414
2128          YBEY   11414
2129          YBEY   11414
2130          YBEY   11414
2131          YBEY   11414
2132          YBEY   11414
2133          YBEY   11414
2134          YBEY   11414
2135          YBEY   11414
2136          YBEY   11414
2137          YBEY   11414
2138          YBEY   11414
2139          YBEY   11414
2140          YBEY   11414
2141        NDUFV3   33660
2142        NDUFV3   33660
2143        NDUFV3   33660
2144        NDUFV3   33660
2145        NDUFV3   33660
2146        NDUFV3   33660
2147        NDUFV3   33660
2148        NDUFV3   33660
2149        NDUFV3   33660
2150        NDUFV3   33660
2151        NDUFV3   33660
2152        NDUFV3   33660
2153        NDUFV3   33660
2154        NDUFV3   33660
2155        NDUFV3   33660
2156     ITGB2-AS1    8627
2157     ITGB2-AS1    8627
2158     ITGB2-AS1    8627
2159     ITGB2-AS1    8627
2160     ITGB2-AS1    8627
2161     ITGB2-AS1    8627
2162     ITGB2-AS1    8627
2163     ITGB2-AS1    8627
2164     ITGB2-AS1    8627
2165     ITGB2-AS1    8627
2166     ITGB2-AS1    8627
2167     ITGB2-AS1    8627
2168     ITGB2-AS1    8627
2169     ITGB2-AS1    8627
2170     ITGB2-AS1    8627
2171     ITGB2-AS1    8627
2172     ITGB2-AS1    8627
2173     ITGB2-AS1    8627
2174     ITGB2-AS1    8627
2175     ITGB2-AS1    8627
2176     ITGB2-AS1    8627
2177     ITGB2-AS1    8627
2178                  1935
2179                  1935
2180       ADAMTS5   48601
2181       ADAMTS5   48601
2182       ADAMTS5   48601
2183       ADAMTS5   48601
2184       ADAMTS5   48601
2185       ADAMTS5   48601
2186       ADAMTS5   48601
2187       ADAMTS5   48601
2188      MRPL51P2     375
2189         FRGCA     569
2190         FRGCA     569
2191                  3211
2192                  3211
2193                  3211
2194         CRYAA    3797
2195         CRYAA    3797
2196         CRYAA    3797
2197         CRYAA    3797
2198         CRYAA    3797
2199         CRYAA    3797
2200         CRYAA    3797
2201         CRYAA    3797
2202         CRYAA    3797
2203         CRYAA    3797
2204         CRYAA    3797
2205         CRYAA    3797
2206         CRYAA    3797
2207         CRYAA    3797
2208         CRYAA    3797
2209       PTTG1IP   24318
2210       PTTG1IP   24318
2211       PTTG1IP   24318
2212       PTTG1IP   24318
2213       PTTG1IP   24318
2214       PTTG1IP   24318
2215       PTTG1IP   24318
2216       PTTG1IP   24318
2217       PTTG1IP   24318
2218       PTTG1IP   24318
2219       PTTG1IP   24318
2220       PTTG1IP   24318
2221       PTTG1IP   24318
2222       PTTG1IP   24318
2223       PTTG1IP   24318
2224       PTTG1IP   24318
2225       PTTG1IP   24318
2226       PTTG1IP   24318
2227       PTTG1IP   24318
2228       PTTG1IP   24318
2229       PTTG1IP   24318
2230       PTTG1IP   24318
2231       PTTG1IP   24318
2232       PTTG1IP   24318
2233       PTTG1IP   24318
2234       PTTG1IP   24318
2235       PTTG1IP   24318
2236       PTTG1IP   24318
2237       PTTG1IP   24318
2238       PTTG1IP   24318
2239       PTTG1IP   24318
2240       PTTG1IP   24318
2241     LINC00111   18155
2242     LINC00111   18155
2243     LINC00111   18155
2244    TSPEAR-AS1    9768
2245    TSPEAR-AS1    9768
2246    TSPEAR-AS1    9768
2247    TSPEAR-AS1    9768
2248    TSPEAR-AS1    9768
2249    TSPEAR-AS1    9768
2250    TSPEAR-AS1    9768
2251    TSPEAR-AS1    9768
2252    TSPEAR-AS1    9768
2253    KRTAP10-10    1099
2254                  2584
2255                  2584
2256                  2584
2257                  2584
2258    MCM3AP-AS1   30173
2259    MCM3AP-AS1   30173
2260    MCM3AP-AS1   30173
2261    MCM3AP-AS1   30173
2262    MCM3AP-AS1   30173
2263    MCM3AP-AS1   30173
2264    MCM3AP-AS1   30173
2265    MCM3AP-AS1   30173
2266    MCM3AP-AS1   30173
2267    MCM3AP-AS1   30173
2268    MCM3AP-AS1   30173
2269    MCM3AP-AS1   30173
2270    MCM3AP-AS1   30173
2271    MCM3AP-AS1   30173
2272    MCM3AP-AS1   30173
2273    MCM3AP-AS1   30173
2274    MCM3AP-AS1   30173
2275    MCM3AP-AS1   30173
2276    MCM3AP-AS1   30173
2277    MCM3AP-AS1   30173
2278    MCM3AP-AS1   30173
2279    MCM3AP-AS1   30173
2280    MCM3AP-AS1   30173
2281    MCM3AP-AS1   30173
2282    MCM3AP-AS1   30173
2283        MCM3AP   51171
2284        MCM3AP   51171
2285        MCM3AP   51171
2286        MCM3AP   51171
2287        MCM3AP   51171
2288        MCM3AP   51171
2289        MCM3AP   51171
2290        MCM3AP   51171
2291        MCM3AP   51171
2292        MCM3AP   51171
2293        MCM3AP   51171
2294        MCM3AP   51171
2295        MCM3AP   51171
2296        MCM3AP   51171
2297        MCM3AP   51171
2298        MCM3AP   51171
2299        MCM3AP   51171
2300        MCM3AP   51171
2301        MCM3AP   51171
2302        MCM3AP   51171
2303        MCM3AP   51171
2304        MCM3AP   51171
2305        MCM3AP   51171
2306        MCM3AP   51171
2307        MCM3AP   51171
2308        MCM3AP   51171
2309        MCM3AP   51171
2310        MCM3AP   51171
2311        MCM3AP   51171
2312        MCM3AP   51171
2313        MCM3AP   51171
2314        MCM3AP   51171
2315        MCM3AP   51171
2316        MCM3AP   51171
2317        MCM3AP   51171
2318        MCM3AP   51171
2319        MCM3AP   51171
2320        MCM3AP   51171
2321        MCM3AP   51171
2322        MCM3AP   51171
2323        MCM3AP   51171
2324        MCM3AP   51171
2325        MCM3AP   51171
2326        MCM3AP   51171
2327        MCM3AP   51171
2328        MCM3AP   51171
2329        MCM3AP   51171
2330        MCM3AP   51171
2331        MCM3AP   51171
2332        MCM3AP   51171
2333        MCM3AP   51171
2334        MCM3AP   51171
2335        MCM3AP   51171
2336        MCM3AP   51171
2337        MCM3AP   51171
2338        MCM3AP   51171
2339        MCM3AP   51171
2340        MCM3AP   51171
2341        MCM3AP   51171
2342        MCM3AP   51171
2343        MCM3AP   51171
2344        MCM3AP   51171
2345        MCM3AP   51171
2346        MCM3AP   51171
2347        MCM3AP   51171
2348        MCM3AP   51171
2349        MCM3AP   51171
2350        MCM3AP   51171
2351        MCM3AP   51171
2352        MCM3AP   51171
2353        MCM3AP   51171
2354        MCM3AP   51171
2355        MCM3AP   51171
2356        MCM3AP   51171
2357        MCM3AP   51171
2358        MCM3AP   51171
2359        MCM3AP   51171
2360        MCM3AP   51171
2361        MCM3AP   51171
2362        MCM3AP   51171
2363        MCM3AP   51171
2364        MCM3AP   51171
2365        MCM3AP   51171
2366        MCM3AP   51171
2367        MCM3AP   51171
2368        MCM3AP   51171
2369        MCM3AP   51171
2370        MCM3AP   51171
2371        MCM3AP   51171
2372        MCM3AP   51171
2373        MCM3AP   51171
2374        MCM3AP   51171
2375        MCM3AP   51171
2376        MCM3AP   51171
2377        MCM3AP   51171
2378        MCM3AP   51171
2379        MCM3AP   51171
2380        MCM3AP   51171
2381        MCM3AP   51171
2382        MCM3AP   51171
2383        MCM3AP   51171
2384        MCM3AP   51171
2385        MCM3AP   51171
2386        MCM3AP   51171
2387        MCM3AP   51171
2388        MCM3AP   51171
2389        MCM3AP   51171
2390        MCM3AP   51171
2391        MCM3AP   51171
2392        MCM3AP   51171
2393        MCM3AP   51171
2394        MCM3AP   51171
2395        MCM3AP   51171
2396        MCM3AP   51171
2397        MCM3AP   51171
2398        MCM3AP   51171
2399        MCM3AP   51171
2400        MCM3AP   51171
2401        PKNOX1   59421
2402        PKNOX1   59421
2403        PKNOX1   59421
2404        PKNOX1   59421
2405        PKNOX1   59421
2406        PKNOX1   59421
2407        PKNOX1   59421
2408        PKNOX1   59421
2409        PKNOX1   59421
2410        PKNOX1   59421
2411        PKNOX1   59421
2412        PKNOX1   59421
2413        PKNOX1   59421
2414        PKNOX1   59421
2415        PKNOX1   59421
2416        PKNOX1   59421
2417        PKNOX1   59421
2418        PKNOX1   59421
2419        PKNOX1   59421
2420        PKNOX1   59421
2421        PKNOX1   59421
2422        PKNOX1   59421
2423        PKNOX1   59421
2424        PKNOX1   59421
2425        PKNOX1   59421
2426        PKNOX1   59421
2427        PKNOX1   59421
2428        PKNOX1   59421
2429        PKNOX1   59421
2430        PKNOX1   59421
2431        PKNOX1   59421
2432        PKNOX1   59421
2433        PKNOX1   59421
2434        PKNOX1   59421
2435        PKNOX1   59421
2436        PKNOX1   59421
2437        PKNOX1   59421
2438        PKNOX1   59421
2439        PKNOX1   59421
2440        PKNOX1   59421
2441        PKNOX1   59421
2442        PKNOX1   59421
2443        PKNOX1   59421
2444        PKNOX1   59421
2445        PKNOX1   59421
2446        PKNOX1   59421
2447        PKNOX1   59421
2448        PKNOX1   59421
2449        PKNOX1   59421
2450        PKNOX1   59421
2451        PKNOX1   59421
2452        PKNOX1   59421
2453        PKNOX1   59421
2454        PKNOX1   59421
2455        PKNOX1   59421
2456        PKNOX1   59421
2457        PKNOX1   59421
2458        PKNOX1   59421
2459        PKNOX1   59421
2460     LINC00112    1144
2461     LINC00112    1144
2462     LINC00112    1144
2463                  5184
2464                  5184
2465                  3833
2466                  3833
2467                  3833
2468     DIP2A-IT1    6835
2469     DIP2A-IT1    6835
2470     DIP2A-IT1    6835
2471     DIP2A-IT1    6835
2472        TSPEAR  213688
2473        TSPEAR  213688
2474        TSPEAR  213688
2475        TSPEAR  213688
2476        TSPEAR  213688
2477        TSPEAR  213688
2478        TSPEAR  213688
2479        TSPEAR  213688
2480        TSPEAR  213688
2481        TSPEAR  213688
2482        TSPEAR  213688
2483        TSPEAR  213688
2484        TSPEAR  213688
2485        TSPEAR  213688
2486        TSPEAR  213688
2487        TSPEAR  213688
2488        TSPEAR  213688
2489        TSPEAR  213688
2490        TSPEAR  213688
2491        TSPEAR  213688
2492        TSPEAR  213688
2493        TSPEAR  213688
2494        TSPEAR  213688
2495        TSPEAR  213688
2496        TSPEAR  213688
2497        TSPEAR  213688
2498        TSPEAR  213688
2499        TSPEAR  213688
2500        TSPEAR  213688
2501        TSPEAR  213688
2502        TSPEAR  213688
2503        TSPEAR  213688
2504        TSPEAR  213688
2505        TSPEAR  213688
2506        TSPEAR  213688
2507        TSPEAR  213688
2508        TSPEAR  213688
2509        TSPEAR  213688
2510        TSPEAR  213688
2511        TSPEAR  213688
2512        TSPEAR  213688
2513        TSPEAR  213688
2514        TSPEAR  213688
2515        TSPEAR  213688
2516        TSPEAR  213688
2517        TSPEAR  213688
2518     KRTAP10-1    1214
2519                 29980
2520                 29980
2521                 29980
2522                 29980
2523                 29980
2524                 29980
2525                 29980
2526                  5768
2527                  5768
2528                   100
2529                   120
2530       MIR6814      69
2531     RN7SKP147     243
2532     KRTAP10-4   64560
2533     KRTAP10-4   64560
2534     KRTAP10-4   64560
2535     KRTAP10-4   64560
2536     KRTAP10-4   64560
2537     KRTAP10-4   64560
2538     KRTAP10-4   64560
2539     KRTAP10-4   64560
2540     KRTAP10-4   64560
2541     KRTAP10-4   64560
2542        IMMTP1    2218
2543      MIR125B2      88
2544                   100
2545                   101
2546                    54
2547     KRTAP10-9    1170
2548     KRTAP10-9    1170
2549     KRTAP10-9    1170
2550     KRTAP10-9    1170
2551     KRTAP10-9    1170
2552     KRTAP10-9    1170
2553           CBS   23752
2554           CBS   23752
2555           CBS   23752
2556           CBS   23752
2557           CBS   23752
2558           CBS   23752
2559           CBS   23752
2560           CBS   23752
2561           CBS   23752
2562           CBS   23752
2563           CBS   23752
2564           CBS   23752
2565           CBS   23752
2566           CBS   23752
2567           CBS   23752
2568           CBS   23752
2569           CBS   23752
2570           CBS   23752
2571           CBS   23752
2572           CBS   23752
2573           CBS   23752
2574           CBS   23752
2575           CBS   23752
2576           CBS   23752
2577           CBS   23752
2578           CBS   23752
2579           CBS   23752
2580           CBS   23752
2581           CBS   23752
2582           CBS   23752
2583           CBS   23752
2584           CBS   23752
2585           CBS   23752
2586           CBS   23752
2587           CBS   23752
2588           CBS   23752
2589           CBS   23752
2590           CBS   23752
2591           CBS   23752
2592           CBS   23752
2593           CBS   23752
2594           CBS   23752
2595           CBS   23752
2596           CBS   23752
2597           CBS   23752
2598           CBS   23752
2599           CBS   23752
2600           CBS   23752
2601           CBS   23752
2602           CBS   23752
2603           CBS   23752
2604           CBS   23752
2605           CBS   23752
2606           CBS   23752
2607           CBS   23752
2608           CBS   23752
2609           CBS   23752
2610           CBS   23752
2611           CBS   23752
2612           CBS   23752
2613           CBS   23752
2614           CBS   23752
2615           CBS   23752
2616           CBS   23752
2617           CBS   23752
2618           CBS   23752
2619           CBS   23752
2620           CBS   23752
2621           CBS   23752
2622           CBS   23752
2623           CBS   23752
2624           CBS   23752
2625           CBS   23752
2626           CBS   23752
2627           CBS   23752
2628           CBS   23752
2629           CBS   23752
2630           CBS   23752
2631           CBS   23752
2632           CBS   23752
2633           CBS   23752
2634           CBS   23752
2635           CBS   23752
2636           CBS   23752
2637           CBS   23752
2638           CBS   23752
2639           CBS   23752
2640           CBS   23752
2641           CBS   23752
2642           CBS   23752
2643           CBS   23752
2644           CBS   23752
2645           CBS   23752
2646           CBS   23752
2647           CBS   23752
2648           CBS   23752
2649           CBS   23752
2650           CBS   23752
2651           CBS   23752
2652           CBS   23752
2653           CBS   23752
2654           CBS   23752
2655           CBS   23752
2656           CBS   23752
2657           CBS   23752
2658           CBS   23752
2659           CBS   23752
2660           CBS   23752
2661           CBS   23752
2662           CBS   23752
2663           CBS   23752
2664           CBS   23752
2665           CBS   23752
2666           CBS   23752
2667           CBS   23752
2668           CBS   23752
2669           CBS   23752
2670           CBS   23752
2671           CBS   23752
2672           CBS   23752
2673           CBS   23752
2674           CBS   23752
2675           CBS   23752
2676           CBS   23752
2677           CBS   23752
2678           CBS   23752
2679           CBS   23752
2680           CBS   23752
2681           CBS   23752
2682           CBS   23752
2683           CBS   23752
2684           CBS   23752
2685           CBS   23752
2686           CBS   23752
2687           CBS   23752
2688           CBS   23752
2689           CBS   23752
2690           CBS   23752
2691           CBS   23752
2692                   792
2693                   792
2694         DSCR9   13233
2695         DSCR9   13233
2696         DSCR9   13233
2697         DSCR9   13233
2698         DSCR9   13233
2699         DSCR9   13233
2700         DSCR9   13233
2701         DSCR9   13233
2702         DSCR9   13233
2703         DSCR9   13233
2704         DSCR9   13233
2705         DSCR9   13233
2706         DSCR9   13233
2707         DSCR9   13233
2708         DSCR9   13233
2709         DSCR9   13233
2710         DSCR9   13233
2711         DSCR9   13233
2712         DSCR9   13233
2713         DSCR9   13233
2714         DSCR9   13233
2715         DSCR3   44499
2716         DSCR3   44499
2717         DSCR3   44499
2718         DSCR3   44499
2719         DSCR3   44499
2720         DSCR3   44499
2721         DSCR3   44499
2722         DSCR3   44499
2723         DSCR3   44499
2724         DSCR3   44499
2725         DSCR3   44499
2726         DSCR3   44499
2727         DSCR3   44499
2728         DSCR3   44499
2729         DSCR3   44499
2730         DSCR3   44499
2731         DSCR3   44499
2732         DSCR3   44499
2733         DSCR3   44499
2734         DSCR3   44499
2735         DSCR3   44499
2736         DSCR3   44499
2737         DSCR3   44499
2738         DSCR3   44499
2739         DSCR3   44499
2740         DSCR3   44499
2741         DSCR3   44499
2742         DSCR3   44499
2743         DSCR3   44499
2744         DSCR3   44499
2745         DSCR3   44499
2746         DSCR3   44499
2747         DSCR3   44499
2748         DSCR3   44499
2749         DSCR3   44499
2750         DSCR3   44499
2751         DSCR3   44499
2752         DSCR3   44499
2753         DSCR3   44499
2754         DSCR3   44499
2755         DSCR3   44499
2756         DSCR3   44499
2757         DSCR3   44499
2758         DSCR3   44499
2759         DSCR3   44499
2760         DSCR3   44499
2761         DSCR3   44499
2762         DSCR3   44499
2763         DSCR3   44499
2764         DSCR3   44499
2765         DSCR3   44499
2766         DSCR3   44499
2767         DSCR3   44499
2768         DSCR3   44499
2769         DSCR3   44499
2770         DSCR3   44499
2771         DSCR3   44499
2772         DSCR3   44499
2773         DSCR3   44499
2774         DSCR3   44499
2775         DSCR3   44499
2776         DSCR3   44499
2777         DSCR3   44499
2778         DSCR3   44499
2779         DSCR3   44499
2780                   127
2781     MIR3687-1      60
2782       MIR6815      60
2783                  2857
2784                  2857
2785                  2857
2786     KRTAP10-5    1149
2787                 16325
2788                 16325
2789                   874
2790                   874
2791                   315
2792         NCAM2  545014
2793         NCAM2  545014
2794         NCAM2  545014
2795         NCAM2  545014
2796         NCAM2  545014
2797         NCAM2  545014
2798         NCAM2  545014
2799         NCAM2  545014
2800         NCAM2  545014
2801         NCAM2  545014
2802         NCAM2  545014
2803         NCAM2  545014
2804         NCAM2  545014
2805         NCAM2  545014
2806         NCAM2  545014
2807         NCAM2  545014
2808         NCAM2  545014
2809         NCAM2  545014
2810         NCAM2  545014
2811         NCAM2  545014
2812         NCAM2  545014
2813         NCAM2  545014
2814         NCAM2  545014
2815         NCAM2  545014
2816         NCAM2  545014
2817         NCAM2  545014
2818         NCAM2  545014
2819         NCAM2  545014
2820         NCAM2  545014
2821         NCAM2  545014
2822         NCAM2  545014
2823         NCAM2  545014
2824         NCAM2  545014
2825         NCAM2  545014
2826         NCAM2  545014
2827         NCAM2  545014
2828         NCAM2  545014
2829         NCAM2  545014
2830         NCAM2  545014
2831         NCAM2  545014
2832         NCAM2  545014
2833         NCAM2  545014
2834         NCAM2  545014
2835         NCAM2  545014
2836         NCAM2  545014
2837         NCAM2  545014
2838         NCAM2  545014
2839         NCAM2  545014
2840                 56998
2841                 56998
2842                 56998
2843                 56998
2844                 56998
2845                 56998
2846                  4809
2847                  4809
2848        RPS9P1     582
2849         HMGN1    7332
2850         HMGN1    7332
2851         HMGN1    7332
2852         HMGN1    7332
2853         HMGN1    7332
2854         HMGN1    7332
2855         HMGN1    7332
2856         HMGN1    7332
2857         HMGN1    7332
2858         HMGN1    7332
2859         HMGN1    7332
2860         HMGN1    7332
2861         HMGN1    7332
2862         HMGN1    7332
2863         HMGN1    7332
2864         HMGN1    7332
2865         HMGN1    7332
2866         HMGN1    7332
2867         HMGN1    7332
2868         HMGN1    7332
2869         HMGN1    7332
2870         HMGN1    7332
2871         HMGN1    7332
2872         HMGN1    7332
2873         HMGN1    7332
2874         HMGN1    7332
2875         HMGN1    7332
2876         HMGN1    7332
2877         HMGN1    7332
2878         HMGN1    7332
2879         HMGN1    7332
2880         HMGN1    7332
2881         HMGN1    7332
2882         HMGN1    7332
2883         HMGN1    7332
2884         HMGN1    7332
2885         HMGN1    7332
2886         HMGN1    7332
2887         HMGN1    7332
2888         HMGN1    7332
2889         HMGN1    7332
2890         HMGN1    7332
2891         HMGN1    7332
2892         HMGN1    7332
2893         HMGN1    7332
2894         HMGN1    7332
2895         HMGN1    7332
2896         HMGN1    7332
2897         HMGN1    7332
2898         HMGN1    7332
2899         HMGN1    7332
2900         HMGN1    7332
2901         HMGN1    7332
2902         HMGN1    7332
2903         HMGN1    7332
2904         HMGN1    7332
2905         HMGN1    7332
2906         HMGN1    7332
2907         HMGN1    7332
2908         HMGN1    7332
2909         HMGN1    7332
2910         HMGN1    7332
2911         HMGN1    7332
2912         HMGN1    7332
2913         HMGN1    7332
2914         HMGN1    7332
2915         HMGN1    7332
2916         HMGN1    7332
2917         HMGN1    7332
2918         HMGN1    7332
2919         HMGN1    7332
2920         HMGN1    7332
2921         HMGN1    7332
2922         HMGN1    7332
2923         HMGN1    7332
2924         HMGN1    7332
2925         HMGN1    7332
2926         HMGN1    7332
2927         HMGN1    7332
2928         HMGN1    7332
2929         HMGN1    7332
2930         HMGN1    7332
2931         HMGN1    7332
2932         HMGN1    7332
2933         HMGN1    7332
2934         HMGN1    7332
2935         HMGN1    7332
2936         HMGN1    7332
2937         HMGN1    7332
2938         HMGN1    7332
2939         HMGN1    7332
2940         HMGN1    7332
2941         HMGN1    7332
2942         HMGN1    7332
2943         HMGN1    7332
2944         HMGN1    7332
2945         HMGN1    7332
2946         HMGN1    7332
2947         HMGN1    7332
2948         HMGN1    7332
2949         HMGN1    7332
2950         HMGN1    7332
2951         HMGN1    7332
2952         HMGN1    7332
2953         HMGN1    7332
2954         HMGN1    7332
2955         HMGN1    7332
2956         HMGN1    7332
2957         HMGN1    7332
2958         HMGN1    7332
2959         HMGN1    7332
2960         HMGN1    7332
2961         HMGN1    7332
2962         HMGN1    7332
2963         HMGN1    7332
2964         HMGN1    7332
2965         HMGN1    7332
2966       RPS26P5     334
2967                  1100
2968                  7919
2969                  7919
2970                  1941
2971                  1941
2972                  1941
2973                 16342
2974                 16342
2975                 16342
2976         LRRC3    6710
2977         LRRC3    6710
2978      ERVH48-1    8843
2979      ERVH48-1    8843
2980      ERVH48-1    8843
2981        CRYZL1   54585
2982        CRYZL1   54585
2983        CRYZL1   54585
2984        CRYZL1   54585
2985        CRYZL1   54585
2986        CRYZL1   54585
2987        CRYZL1   54585
2988        CRYZL1   54585
2989        CRYZL1   54585
2990        CRYZL1   54585
2991        CRYZL1   54585
2992        CRYZL1   54585
2993        CRYZL1   54585
2994        CRYZL1   54585
2995        CRYZL1   54585
2996        CRYZL1   54585
2997        CRYZL1   54585
2998        CRYZL1   54585
2999        CRYZL1   54585
3000        CRYZL1   54585
3001        CRYZL1   54585
3002        CRYZL1   54585
3003        CRYZL1   54585
3004        CRYZL1   54585
3005        CRYZL1   54585
3006        CRYZL1   54585
3007        CRYZL1   54585
3008        CRYZL1   54585
3009        CRYZL1   54585
3010        CRYZL1   54585
3011        CRYZL1   54585
3012        CRYZL1   54585
3013        CRYZL1   54585
3014        CRYZL1   54585
3015        CRYZL1   54585
3016        CRYZL1   54585
3017        CRYZL1   54585
3018        CRYZL1   54585
3019        CRYZL1   54585
3020        CRYZL1   54585
3021        CRYZL1   54585
3022        CRYZL1   54585
3023        CRYZL1   54585
3024        CRYZL1   54585
3025        CRYZL1   54585
3026        CRYZL1   54585
3027        CRYZL1   54585
3028        CRYZL1   54585
3029        CRYZL1   54585
3030        CRYZL1   54585
3031        CRYZL1   54585
3032        CRYZL1   54585
3033        CRYZL1   54585
3034        CRYZL1   54585
3035        CRYZL1   54585
3036        CRYZL1   54585
3037        CRYZL1   54585
3038        CRYZL1   54585
3039        CRYZL1   54585
3040        CRYZL1   54585
3041        CRYZL1   54585
3042        CRYZL1   54585
3043        CRYZL1   54585
3044        CRYZL1   54585
3045        CRYZL1   54585
3046        CRYZL1   54585
3047        CRYZL1   54585
3048        CRYZL1   54585
3049        CRYZL1   54585
3050        CRYZL1   54585
3051        CRYZL1   54585
3052        CRYZL1   54585
3053        CRYZL1   54585
3054        CRYZL1   54585
3055        CRYZL1   54585
3056        CRYZL1   54585
3057        CRYZL1   54585
3058        CRYZL1   54585
3059        CRYZL1   54585
3060        CRYZL1   54585
3061        CRYZL1   54585
3062        CRYZL1   54585
3063        CRYZL1   54585
3064        CRYZL1   54585
3065        CRYZL1   54585
3066        CRYZL1   54585
3067        CRYZL1   54585
3068        CRYZL1   54585
3069        CRYZL1   54585
3070        CRYZL1   54585
3071        CRYZL1   54585
3072        CRYZL1   54585
3073        CRYZL1   54585
3074        CRYZL1   54585
3075        CRYZL1   54585
3076        CRYZL1   54585
3077        CRYZL1   54585
3078        CRYZL1   54585
3079        CRYZL1   54585
3080        CRYZL1   54585
3081        CRYZL1   54585
3082        CRYZL1   54585
3083        CRYZL1   54585
3084        CRYZL1   54585
3085        CRYZL1   54585
3086        CRYZL1   54585
3087        CRYZL1   54585
3088        CRYZL1   54585
3089        CRYZL1   54585
3090        CRYZL1   54585
3091        CRYZL1   54585
3092        CRYZL1   54585
3093        CRYZL1   54585
3094        CRYZL1   54585
3095        CRYZL1   54585
3096        CRYZL1   54585
3097        CRYZL1   54585
3098        CRYZL1   54585
3099        CRYZL1   54585
3100        CRYZL1   54585
3101        CRYZL1   54585
3102        CRYZL1   54585
3103        CRYZL1   54585
3104        CRYZL1   54585
3105        CRYZL1   54585
3106        CRYZL1   54585
3107        CRYZL1   54585
3108        CRYZL1   54585
3109        CRYZL1   54585
3110        CRYZL1   54585
3111        CRYZL1   54585
3112        CRYZL1   54585
3113        CRYZL1   54585
3114        CRYZL1   54585
3115        CRYZL1   54585
3116        CRYZL1   54585
3117        CRYZL1   54585
3118        CRYZL1   54585
3119        CRYZL1   54585
3120        CRYZL1   54585
3121        CRYZL1   54585
3122        CRYZL1   54585
3123        CRYZL1   54585
3124        CRYZL1   54585
3125        CRYZL1   54585
3126        CRYZL1   54585
3127        CRYZL1   54585
3128        CRYZL1   54585
3129        CRYZL1   54585
3130        CRYZL1   54585
3131        CRYZL1   54585
3132        CRYZL1   54585
3133        CRYZL1   54585
3134        CRYZL1   54585
3135        CRYZL1   54585
3136        CRYZL1   54585
3137        CRYZL1   54585
3138        CRYZL1   54585
3139        CRYZL1   54585
3140        CRYZL1   54585
3141        CRYZL1   54585
3142        CRYZL1   54585
3143        CRYZL1   54585
3144        CRYZL1   54585
3145        CRYZL1   54585
3146        CRYZL1   54585
3147        CRYZL1   54585
3148        CRYZL1   54585
3149       RPS26P4     354
3150     BACH1-AS1    6320
3151     BACH1-AS1    6320
3152     BACH1-AS1    6320
3153     BACH1-AS1    6320
3154        DONSON   29166
3155        DONSON   29166
3156        DONSON   29166
3157        DONSON   29166
3158        DONSON   29166
3159        DONSON   29166
3160        DONSON   29166
3161        DONSON   29166
3162        DONSON   29166
3163        DONSON   29166
3164        DONSON   29166
3165        DONSON   29166
3166        DONSON   29166
3167        DONSON   29166
3168        DONSON   29166
3169        DONSON   29166
3170        DONSON   29166
3171        DONSON   29166
3172        DONSON   29166
3173        DONSON   29166
3174        DONSON   29166
3175        DONSON   29166
3176        DONSON   29166
3177        DONSON   29166
3178        DONSON   29166
3179        DONSON   29166
3180        DONSON   29166
3181        DONSON   29166
3182        DONSON   29166
3183        DONSON   29166
3184        DONSON   29166
3185        DONSON   29166
3186        DONSON   29166
3187        DONSON   29166
3188        DONSON   29166
3189        DONSON   29166
3190        DONSON   29166
3191        DONSON   29166
3192        DONSON   29166
3193        DONSON   29166
3194        DONSON   29166
3195        DONSON   29166
3196        DONSON   29166
3197        DONSON   29166
3198        DONSON   29166
3199        DONSON   29166
3200        DONSON   29166
3201        DONSON   29166
3202        DONSON   29166
3203        DONSON   29166
3204        DONSON   29166
3205        DONSON   29166
3206        DONSON   29166
3207        DONSON   29166
3208        DONSON   29166
3209        DONSON   29166
3210        DONSON   29166
3211        DONSON   29166
3212        DONSON   29166
3213        DONSON   29166
3214        DONSON   29166
3215        DONSON   29166
3216        DONSON   29166
3217        DONSON   29166
3218        DONSON   29166
3219        DONSON   29166
3220        DONSON   29166
3221        DONSON   29166
3222        DONSON   29166
3223        DONSON   29166
3224        DONSON   29166
3225        DONSON   29166
3226        DONSON   29166
3227        DONSON   29166
3228        DONSON   29166
3229        DONSON   29166
3230        DONSON   29166
3231        DONSON   29166
3232        DONSON   29166
3233        DONSON   29166
3234        DONSON   29166
3235        DONSON   29166
3236        DONSON   29166
3237        DONSON   29166
3238        DONSON   29166
3239        DONSON   29166
3240        DONSON   29166
3241        DONSON   29166
3242        DONSON   29166
3243        DONSON   29166
3244        DONSON   29166
3245        DONSON   29166
3246        DONSON   29166
3247          PFKL   27325
3248          PFKL   27325
3249          PFKL   27325
3250          PFKL   27325
3251          PFKL   27325
3252          PFKL   27325
3253          PFKL   27325
3254          PFKL   27325
3255          PFKL   27325
3256          PFKL   27325
3257          PFKL   27325
3258          PFKL   27325
3259          PFKL   27325
3260          PFKL   27325
3261          PFKL   27325
3262          PFKL   27325
3263          PFKL   27325
3264          PFKL   27325
3265          PFKL   27325
3266          PFKL   27325
3267          PFKL   27325
3268          PFKL   27325
3269          PFKL   27325
3270          PFKL   27325
3271          PFKL   27325
3272          PFKL   27325
3273          PFKL   27325
3274          PFKL   27325
3275          PFKL   27325
3276          PFKL   27325
3277          PFKL   27325
3278          PFKL   27325
3279          PFKL   27325
3280          PFKL   27325
3281          PFKL   27325
3282          PFKL   27325
3283          PFKL   27325
3284          PFKL   27325
3285          PFKL   27325
3286          PFKL   27325
3287          PFKL   27325
3288          PFKL   27325
3289          PFKL   27325
3290          PFKL   27325
3291          PFKL   27325
3292          PFKL   27325
3293          PFKL   27325
3294          PFKL   27325
3295          PFKL   27325
3296          PFKL   27325
3297          PFKL   27325
3298          PFKL   27325
3299          PFKL   27325
3300          PFKL   27325
3301          PFKL   27325
3302          PFKL   27325
3303          PFKL   27325
3304          PFKL   27325
3305          PFKL   27325
3306          PFKL   27325
3307          PFKL   27325
3308          PFKL   27325
3309          PFKL   27325
3310          PFKL   27325
3311          PFKL   27325
3312          PFKL   27325
3313          PFKL   27325
3314          PFKL   27325
3315          PFKL   27325
3316          PFKL   27325
3317          PFKL   27325
3318          PFKL   27325
3319          PFKL   27325
3320          PFKL   27325
3321          PFKL   27325
3322          PFKL   27325
3323          PFKL   27325
3324          PFKL   27325
3325          PFKL   27325
3326          PFKL   27325
3327          PFKL   27325
3328          PFKL   27325
3329          PFKL   27325
3330          PFKL   27325
3331          PFKL   27325
3332          PFKL   27325
3333          PFKL   27325
3334          PFKL   27325
3335          PFKL   27325
3336          PFKL   27325
3337          PFKL   27325
3338          PFKL   27325
3339          PFKL   27325
3340          PFKL   27325
3341          PFKL   27325
3342          PFKL   27325
3343          PFKL   27325
3344          PFKL   27325
3345          PFKL   27325
3346          PFKL   27325
3347          PFKL   27325
3348          PFKL   27325
3349          PFKL   27325
3350          PFKL   27325
3351          PFKL   27325
3352          PFKL   27325
3353          PFKL   27325
3354          PFKL   27325
3355          PFKL   27325
3356          PFKL   27325
3357          PFKL   27325
3358          PFKL   27325
3359          PFKL   27325
3360          PFKL   27325
3361          PFKL   27325
3362          PFKL   27325
3363          PFKL   27325
3364          PFKL   27325
3365          PFKL   27325
3366          PFKL   27325
3367          PFKL   27325
3368          PFKL   27325
3369          PFKL   27325
3370          PFKL   27325
3371          PFKL   27325
3372          PFKL   27325
3373          PFKL   27325
3374          PFKL   27325
3375          PFKL   27325
3376          PFKL   27325
3377          PFKL   27325
3378          PFKL   27325
3379          PFKL   27325
3380          PFKL   27325
3381          PFKL   27325
3382          PFKL   27325
3383          PFKL   27325
3384                   922
3385     BACH1-IT1   10260
3386     BACH1-IT1   10260
3387     BACH1-IT1   10260
3388     BACH1-IT1   10260
3389    KRTAP10-12     872
3390    KRTAP10-12     872
3391    KRTAP10-12     872
3392    KRTAP10-12     872
3393      MTCYBP21    2587
3394      MTCYBP21    2587
3395      MTCYBP21    2587
3396                   528
3397                  1277
3398                  1277
3399                  1277
3400                  1277
3401                  1277
3402         GRIK1  403100
3403         GRIK1  403100
3404         GRIK1  403100
3405         GRIK1  403100
3406         GRIK1  403100
3407         GRIK1  403100
3408         GRIK1  403100
3409         GRIK1  403100
3410         GRIK1  403100
3411         GRIK1  403100
3412         GRIK1  403100
3413         GRIK1  403100
3414         GRIK1  403100
3415         GRIK1  403100
3416         GRIK1  403100
3417         GRIK1  403100
3418         GRIK1  403100
3419         GRIK1  403100
3420         GRIK1  403100
3421         GRIK1  403100
3422         GRIK1  403100
3423         GRIK1  403100
3424         GRIK1  403100
3425         GRIK1  403100
3426         GRIK1  403100
3427         GRIK1  403100
3428         GRIK1  403100
3429         GRIK1  403100
3430         GRIK1  403100
3431         GRIK1  403100
3432         GRIK1  403100
3433         GRIK1  403100
3434         GRIK1  403100
3435         GRIK1  403100
3436         GRIK1  403100
3437         GRIK1  403100
3438         GRIK1  403100
3439         GRIK1  403100
3440         GRIK1  403100
3441         GRIK1  403100
3442         GRIK1  403100
3443         GRIK1  403100
3444         GRIK1  403100
3445         GRIK1  403100
3446         GRIK1  403100
3447         GRIK1  403100
3448         GRIK1  403100
3449         GRIK1  403100
3450         GRIK1  403100
3451         GRIK1  403100
3452         GRIK1  403100
3453         GRIK1  403100
3454         GRIK1  403100
3455         GRIK1  403100
3456         GRIK1  403100
3457         GRIK1  403100
3458         GRIK1  403100
3459         GRIK1  403100
3460         GRIK1  403100
3461         GRIK1  403100
3462         GRIK1  403100
3463         GRIK1  403100
3464         GRIK1  403100
3465         GRIK1  403100
3466         GRIK1  403100
3467         GRIK1  403100
3468         GRIK1  403100
3469         GRIK1  403100
3470         GRIK1  403100
3471         GRIK1  403100
3472         GRIK1  403100
3473         GRIK1  403100
3474         GRIK1  403100
3475         GRIK1  403100
3476         GRIK1  403100
3477         GRIK1  403100
3478         GRIK1  403100
3479         GRIK1  403100
3480         GRIK1  403100
3481         GRIK1  403100
3482         GRIK1  403100
3483         GRIK1  403100
3484         GRIK1  403100
3485         GRIK1  403100
3486         GRIK1  403100
3487         GRIK1  403100
3488         GRIK1  403100
3489         GRIK1  403100
3490         GRIK1  403100
3491         GRIK1  403100
3492         GRIK1  403100
3493         GRIK1  403100
3494         GRIK1  403100
3495         GRIK1  403100
3496         GRIK1  403100
3497         GRIK1  403100
3498         GRIK1  403100
3499         GRIK1  403100
3500         GRIK1  403100
3501         GRIK1  403100
3502         GRIK1  403100
3503         GRIK1  403100
3504         GRIK1  403100
3505         GRIK1  403100
3506         GRIK1  403100
3507         GRIK1  403100
3508         GRIK1  403100
3509         GRIK1  403100
3510         GRIK1  403100
3511         GRIK1  403100
3512         GRIK1  403100
3513         GRIK1  403100
3514         GRIK1  403100
3515         GRIK1  403100
3516         GRIK1  403100
3517         GRIK1  403100
3518         GRIK1  403100
3519         GRIK1  403100
3520         GRIK1  403100
3521         GRIK1  403100
3522         GRIK1  403100
3523         GRIK1  403100
3524         GRIK1  403100
3525         GRIK1  403100
3526         GRIK1  403100
3527         GRIK1  403100
3528       SMIM11B   32891
3529       SMIM11B   32891
3530       SMIM11B   32891
3531       SMIM11B   32891
3532       SMIM11B   32891
3533       SMIM11B   32891
3534       SMIM11B   32891
3535       SMIM11B   32891
3536       SMIM11B   32891
3537       SMIM11B   32891
3538       SMIM11B   32891
3539       SMIM11B   32891
3540       SMIM11B   32891
3541       SMIM11B   32891
3542       SMIM11B   32891
3543       SMIM11B   32891
3544       SMIM11B   32891
3545       SMIM11B   32891
3546       SMIM11B   32891
3547       SMIM11B   32891
3548       SMIM11B   32891
3549       SMIM11B   32891
3550       SMIM11B   32891
3551       SMIM11B   32891
3552       SMIM11B   32891
3553       SMIM11B   32891
3554       SMIM11B   32891
3555                  4397
3556                  4397
3557                  4397
3558                  4397
3559                  4397
3560                  4397
3561                  4397
3562                  4397
3563                  4397
3564                  4397
3565       RPL23P2     420
3566           LSS   40683
3567           LSS   40683
3568           LSS   40683
3569           LSS   40683
3570           LSS   40683
3571           LSS   40683
3572           LSS   40683
3573           LSS   40683
3574           LSS   40683
3575           LSS   40683
3576           LSS   40683
3577           LSS   40683
3578           LSS   40683
3579           LSS   40683
3580           LSS   40683
3581           LSS   40683
3582           LSS   40683
3583           LSS   40683
3584           LSS   40683
3585           LSS   40683
3586           LSS   40683
3587           LSS   40683
3588           LSS   40683
3589           LSS   40683
3590           LSS   40683
3591           LSS   40683
3592           LSS   40683
3593           LSS   40683
3594           LSS   40683
3595           LSS   40683
3596           LSS   40683
3597           LSS   40683
3598           LSS   40683
3599           LSS   40683
3600           LSS   40683
3601           LSS   40683
3602           LSS   40683
3603           LSS   40683
3604           LSS   40683
3605           LSS   40683
3606           LSS   40683
3607           LSS   40683
3608           LSS   40683
3609           LSS   40683
3610           LSS   40683
3611           LSS   40683
3612           LSS   40683
3613           LSS   40683
3614           LSS   40683
3615           LSS   40683
3616           LSS   40683
3617           LSS   40683
3618           LSS   40683
3619           LSS   40683
3620           LSS   40683
3621           LSS   40683
3622           LSS   40683
3623           LSS   40683
3624           LSS   40683
3625           LSS   40683
3626           LSS   40683
3627           LSS   40683
3628           LSS   40683
3629           LSS   40683
3630           LSS   40683
3631           LSS   40683
3632           LSS   40683
3633           LSS   40683
3634           LSS   40683
3635           LSS   40683
3636           LSS   40683
3637           LSS   40683
3638           LSS   40683
3639           LSS   40683
3640           LSS   40683
3641           LSS   40683
3642           LSS   40683
3643           LSS   40683
3644           LSS   40683
3645           LSS   40683
3646           LSS   40683
3647           LSS   40683
3648           LSS   40683
3649           LSS   40683
3650           LSS   40683
3651           LSS   40683
3652           LSS   40683
3653           LSS   40683
3654           LSS   40683
3655           LSS   40683
3656           LSS   40683
3657           LSS   40683
3658           LSS   40683
3659           LSS   40683
3660           LSS   40683
3661           LSS   40683
3662           LSS   40683
3663           LSS   40683
3664           LSS   40683
3665           LSS   40683
3666           LSS   40683
3667           LSS   40683
3668           LSS   40683
3669           LSS   40683
3670           LSS   40683
3671           LSS   40683
3672           LSS   40683
3673           LSS   40683
3674           LSS   40683
3675           LSS   40683
3676           LSS   40683
3677           LSS   40683
3678           LSS   40683
3679           LSS   40683
3680           LSS   40683
3681        PRDM15   81257
3682        PRDM15   81257
3683        PRDM15   81257
3684        PRDM15   81257
3685        PRDM15   81257
3686        PRDM15   81257
3687        PRDM15   81257
3688        PRDM15   81257
3689        PRDM15   81257
3690        PRDM15   81257
3691        PRDM15   81257
3692        PRDM15   81257
3693        PRDM15   81257
3694        PRDM15   81257
3695        PRDM15   81257
3696        PRDM15   81257
3697        PRDM15   81257
3698        PRDM15   81257
3699        PRDM15   81257
3700        PRDM15   81257
3701        PRDM15   81257
3702        PRDM15   81257
3703        PRDM15   81257
3704        PRDM15   81257
3705        PRDM15   81257
3706        PRDM15   81257
3707        PRDM15   81257
3708        PRDM15   81257
3709        PRDM15   81257
3710        PRDM15   81257
3711        PRDM15   81257
3712        PRDM15   81257
3713        PRDM15   81257
3714        PRDM15   81257
3715        PRDM15   81257
3716        PRDM15   81257
3717        PRDM15   81257
3718        PRDM15   81257
3719        PRDM15   81257
3720        PRDM15   81257
3721        PRDM15   81257
3722        PRDM15   81257
3723        PRDM15   81257
3724        PRDM15   81257
3725        PRDM15   81257
3726        PRDM15   81257
3727        PRDM15   81257
3728        PRDM15   81257
3729        PRDM15   81257
3730        PRDM15   81257
3731        PRDM15   81257
3732        PRDM15   81257
3733        PRDM15   81257
3734        PRDM15   81257
3735        PRDM15   81257
3736        PRDM15   81257
3737        PRDM15   81257
3738        PRDM15   81257
3739        PRDM15   81257
3740        PRDM15   81257
3741        PRDM15   81257
3742        PRDM15   81257
3743        PRDM15   81257
3744        PRDM15   81257
3745        PRDM15   81257
3746        PRDM15   81257
3747        PRDM15   81257
3748        PRDM15   81257
3749        PRDM15   81257
3750        PRDM15   81257
3751        PRDM15   81257
3752        PRDM15   81257
3753        PRDM15   81257
3754        PRDM15   81257
3755        PRDM15   81257
3756        PRDM15   81257
3757        PRDM15   81257
3758        PRDM15   81257
3759        PRDM15   81257
3760        PRDM15   81257
3761        PRDM15   81257
3762        PRDM15   81257
3763        PRDM15   81257
3764        PRDM15   81257
3765        PRDM15   81257
3766        PRDM15   81257
3767        PRDM15   81257
3768        PRDM15   81257
3769        PRDM15   81257
3770        PRDM15   81257
3771        PRDM15   81257
3772        PRDM15   81257
3773        PRDM15   81257
3774        PRDM15   81257
3775        PRDM15   81257
3776        PRDM15   81257
3777        PRDM15   81257
3778        PRDM15   81257
3779        PRDM15   81257
3780        PRDM15   81257
3781        PRDM15   81257
3782        PRDM15   81257
3783        PRDM15   81257
3784        PRDM15   81257
3785        PRDM15   81257
3786        PRDM15   81257
3787        PRDM15   81257
3788        PRDM15   81257
3789        PRDM15   81257
3790        PRDM15   81257
3791        PRDM15   81257
3792        PRDM15   81257
3793        PRDM15   81257
3794        PRDM15   81257
3795        PRDM15   81257
3796        PRDM15   81257
3797        PRDM15   81257
3798        PRDM15   81257
3799        PRDM15   81257
3800        PRDM15   81257
3801        PRDM15   81257
3802        PRDM15   81257
3803        PRDM15   81257
3804        PRDM15   81257
3805        PRDM15   81257
3806        PRDM15   81257
3807        PRDM15   81257
3808        PRDM15   81257
3809        PRDM15   81257
3810        PRDM15   81257
3811        PRDM15   81257
3812        PRDM15   81257
3813        PRDM15   81257
3814        PRDM15   81257
3815        PRDM15   81257
3816        PRDM15   81257
3817        PRDM15   81257
3818        PRDM15   81257
3819        PRDM15   81257
3820        PRDM15   81257
3821        PRDM15   81257
3822        PRDM15   81257
3823        PRDM15   81257
3824        PRDM15   81257
3825        PRDM15   81257
3826        PRDM15   81257
3827        PRDM15   81257
3828        PRDM15   81257
3829        PRDM15   81257
3830        PRDM15   81257
3831        PRDM15   81257
3832        PRDM15   81257
3833        PRDM15   81257
3834        PRDM15   81257
3835        PRDM15   81257
3836        PRDM15   81257
3837        PRDM15   81257
3838        PRDM15   81257
3839        PRDM15   81257
3840        PRDM15   81257
3841        PRDM15   81257
3842        PRDM15   81257
3843        PRDM15   81257
3844        PRDM15   81257
3845        PRDM15   81257
3846        PRDM15   81257
3847        PRDM15   81257
3848        PRDM15   81257
3849        PRDM15   81257
3850        PRDM15   81257
3851        PRDM15   81257
3852        PRDM15   81257
3853        PRDM15   81257
3854        PRDM15   81257
3855        PRDM15   81257
3856        PRDM15   81257
3857        PRDM15   81257
3858        PRDM15   81257
3859        PRDM15   81257
3860        PRDM15   81257
3861        PRDM15   81257
3862        PRDM15   81257
3863        PRDM15   81257
3864        PRDM15   81257
3865        PRDM15   81257
3866        PRDM15   81257
3867        PRDM15   81257
3868        PRDM15   81257
3869        PRDM15   81257
3870        PRDM15   81257
3871        PRDM15   81257
3872        PRDM15   81257
3873        PRDM15   81257
3874        PRDM15   81257
3875        PRDM15   81257
3876        PRDM15   81257
3877        PRDM15   81257
3878        PRDM15   81257
3879        PRDM15   81257
3880        PRDM15   81257
3881        PRDM15   81257
3882        PRDM15   81257
3883        PRDM15   81257
3884        PRDM15   81257
3885        PRDM15   81257
3886        PRDM15   81257
3887        PRDM15   81257
3888        PRDM15   81257
3889        PRDM15   81257
3890        PRDM15   81257
3891        PRDM15   81257
3892        PRDM15   81257
3893        PRDM15   81257
3894        PRDM15   81257
3895        PRDM15   81257
3896        PRDM15   81257
3897        PRDM15   81257
3898        PRDM15   81257
3899        PRDM15   81257
3900        PRDM15   81257
3901        PRDM15   81257
3902        PRDM15   81257
3903        PRDM15   81257
3904        PRDM15   81257
3905        PRDM15   81257
3906        PRDM15   81257
3907        PRDM15   81257
3908        PRDM15   81257
3909        PRDM15   81257
3910        PRDM15   81257
3911        PRDM15   81257
3912        PRDM15   81257
3913        PRDM15   81257
3914        PRDM15   81257
3915        PRDM15   81257
3916        PRDM15   81257
3917        PRDM15   81257
3918        PRDM15   81257
3919        PRDM15   81257
3920        PRDM15   81257
3921        PRDM15   81257
3922        PRDM15   81257
3923        PRDM15   81257
3924        PRDM15   81257
3925        PRDM15   81257
3926        PRDM15   81257
3927        PRDM15   81257
3928        PRDM15   81257
3929        PRDM15   81257
3930        PRDM15   81257
3931        PRDM15   81257
3932        PRDM15   81257
3933      MAP3K7CL   98418
3934      MAP3K7CL   98418
3935      MAP3K7CL   98418
3936      MAP3K7CL   98418
3937      MAP3K7CL   98418
3938      MAP3K7CL   98418
3939      MAP3K7CL   98418
3940      MAP3K7CL   98418
3941      MAP3K7CL   98418
3942      MAP3K7CL   98418
3943      MAP3K7CL   98418
3944      MAP3K7CL   98418
3945      MAP3K7CL   98418
3946      MAP3K7CL   98418
3947      MAP3K7CL   98418
3948      MAP3K7CL   98418
3949      MAP3K7CL   98418
3950      MAP3K7CL   98418
3951      MAP3K7CL   98418
3952      MAP3K7CL   98418
3953      MAP3K7CL   98418
3954      MAP3K7CL   98418
3955      MAP3K7CL   98418
3956      MAP3K7CL   98418
3957      MAP3K7CL   98418
3958      MAP3K7CL   98418
3959      MAP3K7CL   98418
3960      MAP3K7CL   98418
3961      MAP3K7CL   98418
3962      MAP3K7CL   98418
3963      MAP3K7CL   98418
3964      MAP3K7CL   98418
3965      MAP3K7CL   98418
3966      MAP3K7CL   98418
3967      MAP3K7CL   98418
3968      MAP3K7CL   98418
3969      MAP3K7CL   98418
3970      MAP3K7CL   98418
3971      MAP3K7CL   98418
3972      MAP3K7CL   98418
3973      MAP3K7CL   98418
3974      MAP3K7CL   98418
3975      MAP3K7CL   98418
3976      MAP3K7CL   98418
3977      MAP3K7CL   98418
3978      MAP3K7CL   98418
3979      MAP3K7CL   98418
3980      MAP3K7CL   98418
3981      MAP3K7CL   98418
3982      MAP3K7CL   98418
3983      MAP3K7CL   98418
3984      MAP3K7CL   98418
3985      MAP3K7CL   98418
3986      MAP3K7CL   98418
3987      MAP3K7CL   98418
3988      MAP3K7CL   98418
3989      MAP3K7CL   98418
3990      MAP3K7CL   98418
3991      MAP3K7CL   98418
3992      MAP3K7CL   98418
3993      MAP3K7CL   98418
3994      MAP3K7CL   98418
3995      MAP3K7CL   98418
3996      MAP3K7CL   98418
3997      MAP3K7CL   98418
3998      MAP3K7CL   98418
3999      MAP3K7CL   98418
4000      MAP3K7CL   98418
4001      MAP3K7CL   98418
4002      MAP3K7CL   98418
4003      MAP3K7CL   98418
4004      MAP3K7CL   98418
4005      MAP3K7CL   98418
4006      MAP3K7CL   98418
4007      MAP3K7CL   98418
4008      MAP3K7CL   98418
4009      MAP3K7CL   98418
4010      MAP3K7CL   98418
4011      MAP3K7CL   98418
4012      MAP3K7CL   98418
4013      MAP3K7CL   98418
4014      MAP3K7CL   98418
4015      MAP3K7CL   98418
4016      MAP3K7CL   98418
4017      MAP3K7CL   98418
4018      MAP3K7CL   98418
4019      MAP3K7CL   98418
4020      MAP3K7CL   98418
4021      MAP3K7CL   98418
4022      MAP3K7CL   98418
4023      MAP3K7CL   98418
4024      MAP3K7CL   98418
4025      MAP3K7CL   98418
4026      MAP3K7CL   98418
4027      MAP3K7CL   98418
4028      MAP3K7CL   98418
4029      MAP3K7CL   98418
4030      MAP3K7CL   98418
4031      MAP3K7CL   98418
4032      MAP3K7CL   98418
4033       RPL12P9     487
4034     LINC01669   15965
4035     LINC01669   15965
4036     LINC01669   15965
4037     LINC01669   15965
4038     LINC01669   15965
4039     LINC01669   15965
4040     LINC01669   15965
4041     LINC01669   15965
4042     LINC01669   15965
4043     LINC01669   15965
4044     LINC01669   15965
4045     LINC01669   15965
4046     LINC01669   15965
4047     LINC01669   15965
4048     LINC01669   15965
4049                  2455
4050                  1815
4051                  1815
4052                 65715
4053                 65715
4054                 65715
4055                 65715
4056                 65715
4057     LINC01687   89515
4058     LINC01687   89515
4059     LINC01687   89515
4060     LINC01687   89515
4061     LINC01687   89515
4062     LINC01687   89515
4063     LINC01687   89515
4064     LINC01687   89515
4065     LINC01687   89515
4066     LINC01687   89515
4067     LINC01687   89515
4068     LINC01687   89515
4069                 42366
4070                 42366
4071                 42366
4072                  3976
4073                  3976
4074                  3976
4075     LINC01683    6476
4076     LINC01683    6476
4077     LINC01683    6476
4078         EVA1C  103391
4079         EVA1C  103391
4080         EVA1C  103391
4081         EVA1C  103391
4082         EVA1C  103391
4083         EVA1C  103391
4084         EVA1C  103391
4085         EVA1C  103391
4086         EVA1C  103391
4087         EVA1C  103391
4088         EVA1C  103391
4089         EVA1C  103391
4090         EVA1C  103391
4091         EVA1C  103391
4092         EVA1C  103391
4093         EVA1C  103391
4094         EVA1C  103391
4095         EVA1C  103391
4096         EVA1C  103391
4097         EVA1C  103391
4098         EVA1C  103391
4099         EVA1C  103391
4100         EVA1C  103391
4101         EVA1C  103391
4102         EVA1C  103391
4103         EVA1C  103391
4104         EVA1C  103391
4105         EVA1C  103391
4106         EVA1C  103391
4107         EVA1C  103391
4108         EVA1C  103391
4109         EVA1C  103391
4110         EVA1C  103391
4111         EVA1C  103391
4112         EVA1C  103391
4113         EVA1C  103391
4114         EVA1C  103391
4115         EVA1C  103391
4116         EVA1C  103391
4117         EVA1C  103391
4118         EVA1C  103391
4119         EVA1C  103391
4120         EVA1C  103391
4121         EVA1C  103391
4122         EVA1C  103391
4123         EVA1C  103391
4124         EVA1C  103391
4125         EVA1C  103391
4126         EVA1C  103391
4127         EVA1C  103391
4128         EVA1C  103391
4129         EVA1C  103391
4130         EVA1C  103391
4131         EVA1C  103391
4132         EVA1C  103391
4133         EVA1C  103391
4134         EVA1C  103391
4135         EVA1C  103391
4136         EVA1C  103391
4137         EVA1C  103391
4138         EVA1C  103391
4139         EVA1C  103391
4140         EVA1C  103391
4141         EVA1C  103391
4142         EVA1C  103391
4143         EVA1C  103391
4144         EVA1C  103391
4145         EVA1C  103391
4146         EVA1C  103391
4147         EVA1C  103391
4148         EVA1C  103391
4149         EVA1C  103391
4150         EVA1C  103391
4151                 17446
4152                 17446
4153                 17446
4154   ANKRD20A18P    4762
4155   ANKRD20A18P    4762
4156   ANKRD20A18P    4762
4157                   563
4158         TIAM1  441561
4159         TIAM1  441561
4160         TIAM1  441561
4161         TIAM1  441561
4162         TIAM1  441561
4163         TIAM1  441561
4164         TIAM1  441561
4165         TIAM1  441561
4166         TIAM1  441561
4167         TIAM1  441561
4168         TIAM1  441561
4169         TIAM1  441561
4170         TIAM1  441561
4171         TIAM1  441561
4172         TIAM1  441561
4173         TIAM1  441561
4174         TIAM1  441561
4175         TIAM1  441561
4176         TIAM1  441561
4177         TIAM1  441561
4178         TIAM1  441561
4179         TIAM1  441561
4180         TIAM1  441561
4181         TIAM1  441561
4182         TIAM1  441561
4183         TIAM1  441561
4184         TIAM1  441561
4185         TIAM1  441561
4186         TIAM1  441561
4187         TIAM1  441561
4188         TIAM1  441561
4189         TIAM1  441561
4190         TIAM1  441561
4191         TIAM1  441561
4192         TIAM1  441561
4193         TIAM1  441561
4194         TIAM1  441561
4195         TIAM1  441561
4196         TIAM1  441561
4197         TIAM1  441561
4198         TIAM1  441561
4199         TIAM1  441561
4200         TIAM1  441561
4201         TIAM1  441561
4202         TIAM1  441561
4203         TIAM1  441561
4204         TIAM1  441561
4205         TIAM1  441561
4206         TIAM1  441561
4207         TIAM1  441561
4208         TIAM1  441561
4209         TIAM1  441561
4210         TIAM1  441561
4211         TIAM1  441561
4212         TIAM1  441561
4213         TIAM1  441561
4214         TIAM1  441561
4215         TIAM1  441561
4216         TIAM1  441561
4217         TIAM1  441561
4218         TIAM1  441561
4219         TIAM1  441561
4220         TIAM1  441561
4221         TIAM1  441561
4222         TIAM1  441561
4223         TIAM1  441561
4224         TIAM1  441561
4225         TIAM1  441561
4226         TIAM1  441561
4227         TIAM1  441561
4228         TIAM1  441561
4229         TIAM1  441561
4230         TIAM1  441561
4231         TIAM1  441561
4232         TIAM1  441561
4233         TIAM1  441561
4234         TIAM1  441561
4235         TIAM1  441561
4236         TIAM1  441561
4237         TIAM1  441561
4238         TIAM1  441561
4239         TIAM1  441561
4240         TIAM1  441561
4241         TIAM1  441561
4242         TIAM1  441561
4243         TIAM1  441561
4244         TIAM1  441561
4245         TIAM1  441561
4246         TIAM1  441561
4247          JAM2   78290
4248          JAM2   78290
4249          JAM2   78290
4250          JAM2   78290
4251          JAM2   78290
4252          JAM2   78290
4253          JAM2   78290
4254          JAM2   78290
4255          JAM2   78290
4256          JAM2   78290
4257          JAM2   78290
4258          JAM2   78290
4259          JAM2   78290
4260          JAM2   78290
4261          JAM2   78290
4262          JAM2   78290
4263          JAM2   78290
4264          JAM2   78290
4265          JAM2   78290
4266          JAM2   78290
4267          JAM2   78290
4268          JAM2   78290
4269          JAM2   78290
4270          JAM2   78290
4271          JAM2   78290
4272          JAM2   78290
4273          JAM2   78290
4274          JAM2   78290
4275          JAM2   78290
4276          JAM2   78290
4277          JAM2   78290
4278          JAM2   78290
4279          JAM2   78290
4280          JAM2   78290
4281          JAM2   78290
4282          JAM2   78290
4283          JAM2   78290
4284          JAM2   78290
4285          JAM2   78290
4286          JAM2   78290
4287          JAM2   78290
4288          JAM2   78290
4289          JAM2   78290
4290          JAM2   78290
4291          JAM2   78290
4292          JAM2   78290
4293     KRTAP19-5     460
4294      TRPM2-AS   10684
4295      TRPM2-AS   10684
4296      TRPM2-AS   10684
4297      TRPM2-AS   10684
4298      TRPM2-AS   10684
4299         TRPM2   92918
4300         TRPM2   92918
4301         TRPM2   92918
4302         TRPM2   92918
4303         TRPM2   92918
4304         TRPM2   92918
4305         TRPM2   92918
4306         TRPM2   92918
4307         TRPM2   92918
4308         TRPM2   92918
4309         TRPM2   92918
4310         TRPM2   92918
4311         TRPM2   92918
4312         TRPM2   92918
4313         TRPM2   92918
4314         TRPM2   92918
4315         TRPM2   92918
4316         TRPM2   92918
4317         TRPM2   92918
4318         TRPM2   92918
4319         TRPM2   92918
4320         TRPM2   92918
4321         TRPM2   92918
4322         TRPM2   92918
4323         TRPM2   92918
4324         TRPM2   92918
4325         TRPM2   92918
4326         TRPM2   92918
4327         TRPM2   92918
4328         TRPM2   92918
4329         TRPM2   92918
4330         TRPM2   92918
4331         TRPM2   92918
4332         TRPM2   92918
4333         TRPM2   92918
4334         TRPM2   92918
4335         TRPM2   92918
4336         TRPM2   92918
4337         TRPM2   92918
4338         TRPM2   92918
4339         TRPM2   92918
4340         TRPM2   92918
4341         TRPM2   92918
4342         TRPM2   92918
4343         TRPM2   92918
4344         TRPM2   92918
4345         TRPM2   92918
4346         TRPM2   92918
4347         TRPM2   92918
4348         TRPM2   92918
4349         TRPM2   92918
4350         TRPM2   92918
4351         TRPM2   92918
4352         TRPM2   92918
4353         TRPM2   92918
4354         TRPM2   92918
4355         TRPM2   92918
4356         TRPM2   92918
4357         TRPM2   92918
4358         TRPM2   92918
4359         TRPM2   92918
4360         TRPM2   92918
4361         TRPM2   92918
4362         TRPM2   92918
4363         TRPM2   92918
4364         TRPM2   92918
4365         TRPM2   92918
4366         TRPM2   92918
4367         TRPM2   92918
4368         TRPM2   92918
4369         TRPM2   92918
4370         TRPM2   92918
4371         TRPM2   92918
4372         TRPM2   92918
4373         TRPM2   92918
4374         TRPM2   92918
4375         TRPM2   92918
4376         TRPM2   92918
4377         TRPM2   92918
4378         TRPM2   92918
4379         TRPM2   92918
4380         TRPM2   92918
4381         TRPM2   92918
4382         TRPM2   92918
4383         TRPM2   92918
4384         TRPM2   92918
4385         TRPM2   92918
4386         TRPM2   92918
4387         TRPM2   92918
4388         TRPM2   92918
4389         TRPM2   92918
4390         TRPM2   92918
4391         TRPM2   92918
4392         TRPM2   92918
4393         TRPM2   92918
4394         TRPM2   92918
4395         TRPM2   92918
4396         TRPM2   92918
4397         TRPM2   92918
4398         TRPM2   92918
4399         TRPM2   92918
4400         TRPM2   92918
4401         TRPM2   92918
4402         TRPM2   92918
4403         TRPM2   92918
4404         TRPM2   92918
4405         TRPM2   92918
4406         TRPM2   92918
4407         TRPM2   92918
4408         TRPM2   92918
4409         TRPM2   92918
4410         TRPM2   92918
4411         TRPM2   92918
4412         TRPM2   92918
4413         TRPM2   92918
4414         TRPM2   92918
4415         TRPM2   92918
4416         TRPM2   92918
4417         TRPM2   92918
4418         TRPM2   92918
4419         TRPM2   92918
4420         TRPM2   92918
4421         TRPM2   92918
4422         TRPM2   92918
4423         TRPM2   92918
4424         TRPM2   92918
4425         TRPM2   92918
4426         TRPM2   92918
4427         TRPM2   92918
4428         TRPM2   92918
4429         TRPM2   92918
4430         TRPM2   92918
4431         TRPM2   92918
4432         TRPM2   92918
4433         TRPM2   92918
4434         TRPM2   92918
4435         TRPM2   92918
4436         TRPM2   92918
4437         TRPM2   92918
4438         TRPM2   92918
4439         TRPM2   92918
4440         TRPM2   92918
4441         TRPM2   92918
4442         TRPM2   92918
4443         TRPM2   92918
4444         TRPM2   92918
4445         TRPM2   92918
4446         TRPM2   92918
4447         TRPM2   92918
4448         TRPM2   92918
4449         TRPM2   92918
4450         TRPM2   92918
4451         TRPM2   92918
4452         TRPM2   92918
4453         TRPM2   92918
4454         TRPM2   92918
4455         TRPM2   92918
4456         TRPM2   92918
4457         TRPM2   92918
4458         TRPM2   92918
4459         TRPM2   92918
4460         TRPM2   92918
4461         TRPM2   92918
4462         TRPM2   92918
4463         TRPM2   92918
4464         TRPM2   92918
4465         TRPM2   92918
4466         TRPM2   92918
4467         TRPM2   92918
4468         TRPM2   92918
4469         TRPM2   92918
4470         TRPM2   92918
4471         TRPM2   92918
4472         TRPM2   92918
4473         TRPM2   92918
4474         TRPM2   92918
4475         TRPM2   92918
4476         TRPM2   92918
4477         TRPM2   92918
4478         TRPM2   92918
4479                  3862
4480                  3862
4481     DSCAM-IT1   15389
4482     DSCAM-IT1   15389
4483     DSCAM-IT1   15389
4484     DSCAM-IT1   15389
4485     DSCAM-IT1   15389
4486     DSCAM-IT1   15389
4487     DSCAM-IT1   15389
4488     DSCAM-IT1   15389
4489        SH3BGR   69651
4490        SH3BGR   69651
4491        SH3BGR   69651
4492        SH3BGR   69651
4493        SH3BGR   69651
4494        SH3BGR   69651
4495        SH3BGR   69651
4496        SH3BGR   69651
4497        SH3BGR   69651
4498        SH3BGR   69651
4499        SH3BGR   69651
4500        SH3BGR   69651
4501        SH3BGR   69651
4502        SH3BGR   69651
4503        SH3BGR   69651
4504        SH3BGR   69651
4505        SH3BGR   69651
4506        SH3BGR   69651
4507        SH3BGR   69651
4508        SH3BGR   69651
4509        SH3BGR   69651
4510        SH3BGR   69651
4511        SH3BGR   69651
4512        SH3BGR   69651
4513        SH3BGR   69651
4514        SH3BGR   69651
4515        SH3BGR   69651
4516        SH3BGR   69651
4517        SH3BGR   69651
4518        SH3BGR   69651
4519        SH3BGR   69651
4520        SH3BGR   69651
4521        SH3BGR   69651
4522        SH3BGR   69651
4523        SH3BGR   69651
4524        SH3BGR   69651
4525        SH3BGR   69651
4526        SH3BGR   69651
4527        SH3BGR   69651
4528        SH3BGR   69651
4529        SH3BGR   69651
4530        SH3BGR   69651
4531        SH3BGR   69651
4532        SH3BGR   69651
4533        SH3BGR   69651
4534        SH3BGR   69651
4535        SH3BGR   69651
4536        SH3BGR   69651
4537        SH3BGR   69651
4538        SH3BGR   69651
4539        SH3BGR   69651
4540        SH3BGR   69651
4541     GRIK1-AS1   15827
4542     GRIK1-AS1   15827
4543     GRIK1-AS1   15827
4544     GRIK1-AS1   15827
4545     GRIK1-AS1   15827
4546     GRIK1-AS1   15827
4547     GRIK1-AS1   15827
4548     GRIK1-AS1   15827
4549     GRIK1-AS1   15827
4550     GRIK1-AS1   15827
4551     GRIK1-AS1   15827
4552     GRIK1-AS1   15827
4553     GRIK1-AS1   15827
4554     GRIK1-AS1   15827
4555     GRIK1-AS1   15827
4556     GRIK1-AS1   15827
4557        COL6A2   34752
4558        COL6A2   34752
4559        COL6A2   34752
4560        COL6A2   34752
4561        COL6A2   34752
4562        COL6A2   34752
4563        COL6A2   34752
4564        COL6A2   34752
4565        COL6A2   34752
4566        COL6A2   34752
4567        COL6A2   34752
4568        COL6A2   34752
4569        COL6A2   34752
4570        COL6A2   34752
4571        COL6A2   34752
4572        COL6A2   34752
4573        COL6A2   34752
4574        COL6A2   34752
4575        COL6A2   34752
4576        COL6A2   34752
4577        COL6A2   34752
4578        COL6A2   34752
4579        COL6A2   34752
4580        COL6A2   34752
4581        COL6A2   34752
4582        COL6A2   34752
4583        COL6A2   34752
4584        COL6A2   34752
4585        COL6A2   34752
4586        COL6A2   34752
4587        COL6A2   34752
4588        COL6A2   34752
4589        COL6A2   34752
4590        COL6A2   34752
4591        COL6A2   34752
4592        COL6A2   34752
4593        COL6A2   34752
4594        COL6A2   34752
4595        COL6A2   34752
4596        COL6A2   34752
4597        COL6A2   34752
4598        COL6A2   34752
4599        COL6A2   34752
4600        COL6A2   34752
4601        COL6A2   34752
4602        COL6A2   34752
4603        COL6A2   34752
4604        COL6A2   34752
4605        COL6A2   34752
4606        COL6A2   34752
4607        COL6A2   34752
4608        COL6A2   34752
4609        COL6A2   34752
4610        COL6A2   34752
4611        COL6A2   34752
4612        COL6A2   34752
4613        COL6A2   34752
4614        COL6A2   34752
4615        COL6A2   34752
4616        COL6A2   34752
4617        COL6A2   34752
4618        COL6A2   34752
4619        COL6A2   34752
4620        COL6A2   34752
4621        COL6A2   34752
4622        COL6A2   34752
4623        COL6A2   34752
4624        COL6A2   34752
4625        COL6A2   34752
4626        COL6A2   34752
4627        COL6A2   34752
4628        COL6A2   34752
4629        COL6A2   34752
4630        COL6A2   34752
4631        COL6A2   34752
4632        COL6A2   34752
4633        COL6A2   34752
4634        COL6A2   34752
4635        COL6A2   34752
4636        COL6A2   34752
4637        COL6A2   34752
4638        COL6A2   34752
4639        COL6A2   34752
4640        COL6A2   34752
4641        COL6A2   34752
4642        COL6A2   34752
4643        COL6A2   34752
4644        COL6A2   34752
4645        COL6A2   34752
4646        COL6A2   34752
4647        COL6A2   34752
4648        COL6A2   34752
4649        COL6A2   34752
4650        COL6A2   34752
4651        COL6A2   34752
4652        COL6A2   34752
4653        COL6A2   34752
4654        COL6A2   34752
4655        COL6A2   34752
4656        COL6A2   34752
4657        COL6A2   34752
4658        COL6A2   34752
4659        COL6A2   34752
4660        COL6A2   34752
4661        COL6A2   34752
4662        COL6A2   34752
4663        COL6A2   34752
4664        COL6A2   34752
4665        COL6A2   34752
4666        COL6A2   34752
4667        COL6A2   34752
4668        COL6A2   34752
4669        COL6A2   34752
4670        COL6A2   34752
4671        COL6A2   34752
4672        COL6A2   34752
4673        COL6A2   34752
4674        COL6A2   34752
4675        COL6A2   34752
4676        COL6A2   34752
4677        COL6A2   34752
4678        COL6A2   34752
4679        COL6A2   34752
4680        COL6A2   34752
4681        COL6A2   34752
4682        COL6A2   34752
4683        COL6A2   34752
4684        COL6A2   34752
4685        COL6A2   34752
4686        COL6A2   34752
4687        COL6A2   34752
4688        COL6A2   34752
4689        COL6A2   34752
4690                346920
4691                346920
4692                346920
4693                346920
4694                346920
4695                346920
4696                346920
4697                346920
4698       C21orf2   10458
4699       C21orf2   10458
4700       C21orf2   10458
4701       C21orf2   10458
4702       C21orf2   10458
4703       C21orf2   10458
4704       C21orf2   10458
4705       C21orf2   10458
4706       C21orf2   10458
4707       C21orf2   10458
4708       C21orf2   10458
4709       C21orf2   10458
4710       C21orf2   10458
4711       C21orf2   10458
4712       C21orf2   10458
4713       C21orf2   10458
4714       C21orf2   10458
4715       C21orf2   10458
4716       C21orf2   10458
4717       C21orf2   10458
4718       C21orf2   10458
4719       C21orf2   10458
4720       C21orf2   10458
4721       C21orf2   10458
4722       C21orf2   10458
4723       C21orf2   10458
4724       C21orf2   10458
4725       C21orf2   10458
4726       C21orf2   10458
4727       C21orf2   10458
4728       C21orf2   10458
4729       C21orf2   10458
4730       C21orf2   10458
4731       C21orf2   10458
4732       C21orf2   10458
4733       C21orf2   10458
4734       C21orf2   10458
4735       C21orf2   10458
4736       C21orf2   10458
4737       C21orf2   10458
4738          FTCD   19305
4739          FTCD   19305
4740          FTCD   19305
4741          FTCD   19305
4742          FTCD   19305
4743          FTCD   19305
4744          FTCD   19305
4745          FTCD   19305
4746          FTCD   19305
4747          FTCD   19305
4748          FTCD   19305
4749          FTCD   19305
4750          FTCD   19305
4751          FTCD   19305
4752          FTCD   19305
4753          FTCD   19305
4754          FTCD   19305
4755          FTCD   19305
4756          FTCD   19305
4757          FTCD   19305
4758          FTCD   19305
4759          FTCD   19305
4760          FTCD   19305
4761          FTCD   19305
4762          FTCD   19305
4763          FTCD   19305
4764          FTCD   19305
4765          FTCD   19305
4766          FTCD   19305
4767          FTCD   19305
4768          FTCD   19305
4769          FTCD   19305
4770          FTCD   19305
4771          FTCD   19305
4772          FTCD   19305
4773          FTCD   19305
4774          FTCD   19305
4775          FTCD   19305
4776          FTCD   19305
4777          FTCD   19305
4778          FTCD   19305
4779          FTCD   19305
4780          FTCD   19305
4781          FTCD   19305
4782          FTCD   19305
4783          FTCD   19305
4784          FTCD   19305
4785          FTCD   19305
4786          FTCD   19305
4787          FTCD   19305
4788          FTCD   19305
4789          FTCD   19305
4790          FTCD   19305
4791          FTCD   19305
4792          FTCD   19305
4793          FTCD   19305
4794          FTCD   19305
4795          FTCD   19305
4796          FTCD   19305
4797          FTCD   19305
4798          FTCD   19305
4799          FTCD   19305
4800          FTCD   19305
4801          FTCD   19305
4802          FTCD   19305
4803          FTCD   19305
4804          FTCD   19305
4805          FTCD   19305
4806          FTCD   19305
4807          FTCD   19305
4808          FTCD   19305
4809          FTCD   19305
4810          FTCD   19305
4811          FTCD   19305
4812          FTCD   19305
4813          FTCD   19305
4814          FTCD   19305
4815          FTCD   19305
4816          FTCD   19305
4817          FTCD   19305
4818          FTCD   19305
4819          FTCD   19305
4820          FTCD   19305
4821          FTCD   19305
4822          FTCD   19305
4823          FTCD   19305
4824          FTCD   19305
4825          FTCD   19305
4826          FTCD   19305
4827          FTCD   19305
4828          FTCD   19305
4829          FTCD   19305
4830          FTCD   19305
4831          FTCD   19305
4832          FTCD   19305
4833      MTND6P21     844
4834      MTND6P21     844
4835       MTND5P1    1374
4836                 10466
4837                 10466
4838                 10466
4839                 10466
4840                 10466
4841                 10466
4842                 10466
4843                 10466
4844                 10466
4845                 10466
4846   KRTAP10-13P     570
4847     LINC01548    5179
4848     LINC01548    5179
4849     LINC01548    5179
4850     LINC01548    5179
4851     LINC01548    5179
4852     LINC01548    5179
4853     LINC01548    5179
4854     LINC01548    5179
4855     LINC01548    5179
4856                 12605
4857                 12605
4858                 12605
4859                 12605
4860                 12605
4861                 12605
4862                 12605
4863                 12605
4864                 12605
4865                 12605
4866                 12605
4867                 12605
4868                 12605
4869                 12605
4870                 12605
4871                 12605
4872                 12605
4873                210880
4874                210880
4875                210880
4876     LINC00308   17911
4877     LINC00308   17911
4878     LINC00308   17911
4879     LINC00308   17911
4880     LINC00308   17911
4881     LINC00308   17911
4882     LINC01436    2500
4883     LINC01436    2500
4884                   904
4885                   904
4886                   904
4887         CHODL  366110
4888         CHODL  366110
4889         CHODL  366110
4890         CHODL  366110
4891         CHODL  366110
4892         CHODL  366110
4893         CHODL  366110
4894         CHODL  366110
4895         CHODL  366110
4896         CHODL  366110
4897         CHODL  366110
4898         CHODL  366110
4899         CHODL  366110
4900         CHODL  366110
4901         CHODL  366110
4902         CHODL  366110
4903         CHODL  366110
4904         CHODL  366110
4905         CHODL  366110
4906         CHODL  366110
4907         CHODL  366110
4908         CHODL  366110
4909         CHODL  366110
4910         CHODL  366110
4911         CHODL  366110
4912         CHODL  366110
4913         CHODL  366110
4914         CHODL  366110
4915         CHODL  366110
4916         CHODL  366110
4917         CHODL  366110
4918         CHODL  366110
4919         CHODL  366110
4920         CHODL  366110
4921         CHODL  366110
4922         CHODL  366110
4923         CHODL  366110
4924         CHODL  366110
4925         CHODL  366110
4926         CHODL  366110
4927         CHODL  366110
4928                  4266
4929                  4266
4930                  1392
4931                  1392
4932                 23757
4933                 23757
4934                 23757
4935                 23757
4936                 23757
4937       SLC37A1   85432
4938       SLC37A1   85432
4939       SLC37A1   85432
4940       SLC37A1   85432
4941       SLC37A1   85432
4942       SLC37A1   85432
4943       SLC37A1   85432
4944       SLC37A1   85432
4945       SLC37A1   85432
4946       SLC37A1   85432
4947       SLC37A1   85432
4948       SLC37A1   85432
4949       SLC37A1   85432
4950       SLC37A1   85432
4951       SLC37A1   85432
4952       SLC37A1   85432
4953       SLC37A1   85432
4954       SLC37A1   85432
4955       SLC37A1   85432
4956       SLC37A1   85432
4957       SLC37A1   85432
4958       SLC37A1   85432
4959       SLC37A1   85432
4960       SLC37A1   85432
4961       SLC37A1   85432
4962       SLC37A1   85432
4963       SLC37A1   85432
4964       SLC37A1   85432
4965       SLC37A1   85432
4966       SLC37A1   85432
4967       SLC37A1   85432
4968       SLC37A1   85432
4969       SLC37A1   85432
4970       SLC37A1   85432
4971       SLC37A1   85432
4972       SLC37A1   85432
4973       SLC37A1   85432
4974       SLC37A1   85432
4975       SLC37A1   85432
4976       SLC37A1   85432
4977       SLC37A1   85432
4978       SLC37A1   85432
4979       SLC37A1   85432
4980       SLC37A1   85432
4981       SLC37A1   85432
4982       SLC37A1   85432
4983       SLC37A1   85432
4984       SLC37A1   85432
4985       SLC37A1   85432
4986       SLC37A1   85432
4987       SLC37A1   85432
4988       SLC37A1   85432
4989       SLC37A1   85432
4990       SLC37A1   85432
4991       SLC37A1   85432
4992       SLC37A1   85432
4993       SLC37A1   85432
4994       SLC37A1   85432
4995       SLC37A1   85432
4996       SLC37A1   85432
4997       SLC37A1   85432
4998       SLC37A1   85432
4999       SLC37A1   85432
5000                  8458
5001                  8458
5002                  8458
5003     BRWD1-IT1    2712
5004     BRWD1-IT1    2712
5005      GAPDHP16     961
5006                 28562
5007                 28562
5008                195587
5009                195587
5010                195587
5011                195587
5012                 98853
5013                 98853
5014                 98853
5015                 98853
5016                 98853
5017                 98853
5018                 98853
5019                 98853
5020                 98853
5021                 98853
5022                 98853
5023                 98853
5024                 98853
5025                 98853
5026                 98853
5027                 98853
5028                 98853
5029                 98853
5030                 98853
5031                 98853
5032                 98853
5033                 98853
5034                 98853
5035         ABCG1   97555
5036         ABCG1   97555
5037         ABCG1   97555
5038         ABCG1   97555
5039         ABCG1   97555
5040         ABCG1   97555
5041         ABCG1   97555
5042         ABCG1   97555
5043         ABCG1   97555
5044         ABCG1   97555
5045         ABCG1   97555
5046         ABCG1   97555
5047         ABCG1   97555
5048         ABCG1   97555
5049         ABCG1   97555
5050         ABCG1   97555
5051         ABCG1   97555
5052         ABCG1   97555
5053         ABCG1   97555
5054         ABCG1   97555
5055         ABCG1   97555
5056         ABCG1   97555
5057         ABCG1   97555
5058         ABCG1   97555
5059         ABCG1   97555
5060         ABCG1   97555
5061         ABCG1   97555
5062         ABCG1   97555
5063         ABCG1   97555
5064         ABCG1   97555
5065         ABCG1   97555
5066         ABCG1   97555
5067         ABCG1   97555
5068         ABCG1   97555
5069         ABCG1   97555
5070         ABCG1   97555
5071         ABCG1   97555
5072         ABCG1   97555
5073         ABCG1   97555
5074         ABCG1   97555
5075         ABCG1   97555
5076         ABCG1   97555
5077         ABCG1   97555
5078         ABCG1   97555
5079         ABCG1   97555
5080         ABCG1   97555
5081         ABCG1   97555
5082         ABCG1   97555
5083         ABCG1   97555
5084         ABCG1   97555
5085         ABCG1   97555
5086         ABCG1   97555
5087         ABCG1   97555
5088         ABCG1   97555
5089         ABCG1   97555
5090         ABCG1   97555
5091         ABCG1   97555
5092         ABCG1   97555
5093         ABCG1   97555
5094         ABCG1   97555
5095         ABCG1   97555
5096         ABCG1   97555
5097         ABCG1   97555
5098         ABCG1   97555
5099         ABCG1   97555
5100         ABCG1   97555
5101         ABCG1   97555
5102         ABCG1   97555
5103         ABCG1   97555
5104         ABCG1   97555
5105         ABCG1   97555
5106         ABCG1   97555
5107         ABCG1   97555
5108         ABCG1   97555
5109         ABCG1   97555
5110         ABCG1   97555
5111         ABCG1   97555
5112         ABCG1   97555
5113         ABCG1   97555
5114         ABCG1   97555
5115         ABCG1   97555
5116         ABCG1   97555
5117         ABCG1   97555
5118         ABCG1   97555
5119         ABCG1   97555
5120         ABCG1   97555
5121         ABCG1   97555
5122         ABCG1   97555
5123         ABCG1   97555
5124         ABCG1   97555
5125         ABCG1   97555
5126         ABCG1   97555
5127         ABCG1   97555
5128         ABCG1   97555
5129         ABCG1   97555
5130         ABCG1   97555
5131         ABCG1   97555
5132         ABCG1   97555
5133         ABCG1   97555
5134         ABCG1   97555
5135         ABCG1   97555
5136         ABCG1   97555
5137         ABCG1   97555
5138         ABCG1   97555
5139         ABCG1   97555
5140         ABCG1   97555
5141         ABCG1   97555
5142         ABCG1   97555
5143         ABCG1   97555
5144         ABCG1   97555
5145         ABCG1   97555
5146         ABCG1   97555
5147         ABCG1   97555
5148         ABCG1   97555
5149         ABCG1   97555
5150         ABCG1   97555
5151         ABCG1   97555
5152         ABCG1   97555
5153         ABCG1   97555
5154         ABCG1   97555
5155         ABCG1   97555
5156         ABCG1   97555
5157         ABCG1   97555
5158         ABCG1   97555
5159         ABCG1   97555
5160         ABCG1   97555
5161         ABCG1   97555
5162         ABCG1   97555
5163         ABCG1   97555
5164         ABCG1   97555
5165         ABCG1   97555
5166         ABCG1   97555
5167         ABCG1   97555
5168         ABCG1   97555
5169         ABCG1   97555
5170         ABCG1   97555
5171         NRIP1  104701
5172         NRIP1  104701
5173         NRIP1  104701
5174         NRIP1  104701
5175         NRIP1  104701
5176         NRIP1  104701
5177         NRIP1  104701
5178         NRIP1  104701
5179         NRIP1  104701
5180         NRIP1  104701
5181         NRIP1  104701
5182         NRIP1  104701
5183         NRIP1  104701
5184         NRIP1  104701
5185         NRIP1  104701
5186         NRIP1  104701
5187         NRIP1  104701
5188         NRIP1  104701
5189         NRIP1  104701
5190         NRIP1  104701
5191         NRIP1  104701
5192         NRIP1  104701
5193         NRIP1  104701
5194       RBMX2P1     835
5195       SLC19A1   50839
5196       SLC19A1   50839
5197       SLC19A1   50839
5198       SLC19A1   50839
5199       SLC19A1   50839
5200       SLC19A1   50839
5201       SLC19A1   50839
5202       SLC19A1   50839
5203       SLC19A1   50839
5204       SLC19A1   50839
5205       SLC19A1   50839
5206       SLC19A1   50839
5207       SLC19A1   50839
5208       SLC19A1   50839
5209       SLC19A1   50839
5210       SLC19A1   50839
5211       SLC19A1   50839
5212       SLC19A1   50839
5213       SLC19A1   50839
5214       SLC19A1   50839
5215       SLC19A1   50839
5216       SLC19A1   50839
5217       SLC19A1   50839
5218       SLC19A1   50839
5219       SLC19A1   50839
5220       SLC19A1   50839
5221       SLC19A1   50839
5222       SLC19A1   50839
5223       SLC19A1   50839
5224       SLC19A1   50839
5225       SLC19A1   50839
5226       SLC19A1   50839
5227       SLC19A1   50839
5228       SLC19A1   50839
5229       SLC19A1   50839
5230       SLC19A1   50839
5231       SLC19A1   50839
5232       SLC19A1   50839
5233       SLC19A1   50839
5234       SLC19A1   50839
5235       SLC19A1   50839
5236       SLC19A1   50839
5237       SLC19A1   50839
5238       SLC19A1   50839
5239       SLC19A1   50839
5240       SLC19A1   50839
5241       SLC19A1   50839
5242                  2924
5243                  2924
5244                  2190
5245                 21384
5246                 21384
5247                 21384
5248   COL18A1-AS1    5354
5249   COL18A1-AS1    5354
5250   COL18A1-AS1    5354
5251   COL18A1-AS1    5354
5252   COL18A1-AS1    5354
5253   COL18A1-AS1    5354
5254        MYL6P2     433
5255      C21orf58   23694
5256      C21orf58   23694
5257      C21orf58   23694
5258      C21orf58   23694
5259      C21orf58   23694
5260      C21orf58   23694
5261      C21orf58   23694
5262      C21orf58   23694
5263      C21orf58   23694
5264      C21orf58   23694
5265      C21orf58   23694
5266      C21orf58   23694
5267      C21orf58   23694
5268      C21orf58   23694
5269      C21orf58   23694
5270      C21orf58   23694
5271      C21orf58   23694
5272      C21orf58   23694
5273      C21orf58   23694
5274      C21orf58   23694
5275      C21orf58   23694
5276      C21orf58   23694
5277      C21orf58   23694
5278      C21orf58   23694
5279      C21orf58   23694
5280      C21orf58   23694
5281      C21orf58   23694
5282      C21orf58   23694
5283      C21orf58   23694
5284      C21orf58   23694
5285      C21orf58   23694
5286      C21orf58   23694
5287      C21orf58   23694
5288      C21orf58   23694
5289      C21orf58   23694
5290      C21orf58   23694
5291      C21orf58   23694
5292      C21orf58   23694
5293      C21orf58   23694
5294      C21orf58   23694
5295      C21orf58   23694
5296      C21orf58   23694
5297      C21orf58   23694
5298      C21orf58   23694
5299      C21orf58   23694
5300      C21orf58   23694
5301      C21orf58   23694
5302      C21orf58   23694
5303      C21orf58   23694
5304      C21orf58   23694
5305      C21orf58   23694
5306      C21orf58   23694
5307      C21orf58   23694
5308      C21orf58   23694
5309      C21orf58   23694
5310      C21orf58   23694
5311      C21orf58   23694
5312      C21orf58   23694
5313      C21orf58   23694
5314      C21orf58   23694
5315      C21orf58   23694
5316      C21orf58   23694
5317      C21orf58   23694
5318      C21orf58   23694
5319      C21orf58   23694
5320      C21orf58   23694
5321      C21orf58   23694
5322      C21orf58   23694
5323      C21orf58   23694
5324      C21orf58   23694
5325           MX2   47447
5326           MX2   47447
5327           MX2   47447
5328           MX2   47447
5329           MX2   47447
5330           MX2   47447
5331           MX2   47447
5332           MX2   47447
5333           MX2   47447
5334           MX2   47447
5335           MX2   47447
5336           MX2   47447
5337           MX2   47447
5338           MX2   47447
5339           MX2   47447
5340           MX2   47447
5341           MX2   47447
5342           MX2   47447
5343           MX2   47447
5344           MX2   47447
5345           MX2   47447
5346           MX2   47447
5347           MX2   47447
5348           MX2   47447
5349           MX2   47447
5350           MX2   47447
5351           MX2   47447
5352           MX2   47447
5353           MX2   47447
5354           MX2   47447
5355           MX2   47447
5356           MX2   47447
5357           MX2   47447
5358           MX2   47447
5359           MX2   47447
5360           MX2   47447
5361           MX2   47447
5362           MX2   47447
5363           MX2   47447
5364           MX2   47447
5365           MX2   47447
5366           MX2   47447
5367           MX2   47447
5368           MX2   47447
5369           MX2   47447
5370           MX2   47447
5371           MX2   47447
5372           MX2   47447
5373           MX2   47447
5374           MX2   47447
5375           MX2   47447
5376           MX2   47447
5377           MX2   47447
5378           MX2   47447
5379           MX2   47447
5380           MX2   47447
5381           MX2   47447
5382           MX2   47447
5383           MX2   47447
5384           MX2   47447
5385           MX2   47447
5386           MX2   47447
5387          PCP4   62080
5388          PCP4   62080
5389          PCP4   62080
5390          PCP4   62080
5391          PCP4   62080
5392          PCP4   62080
5393          PCP4   62080
5394          PCP4   62080
5395          PCP4   62080
5396          PCP4   62080
5397          PCP4   62080
5398          PCP4   62080
5399          PCP4   62080
5400          PCP4   62080
5401                  4272
5402                  4272
5403     LINC00649   62157
5404     LINC00649   62157
5405     LINC00649   62157
5406     LINC00649   62157
5407     LINC00649   62157
5408     LINC00649   62157
5409     LINC00649   62157
5410     LINC00649   62157
5411     LINC00649   62157
5412     LINC00649   62157
5413     LINC00649   62157
5414     LINC00649   62157
5415     LINC00649   62157
5416     LINC00649   62157
5417     LINC00649   62157
5418     LINC00649   62157
5419     LINC00649   62157
5420     LINC00649   62157
5421     LINC00649   62157
5422     LINC00649   62157
5423     LINC00649   62157
5424     LINC00649   62157
5425     LINC00649   62157
5426     LINC00649   62157
5427     LINC00649   62157
5428     LINC00649   62157
5429     LINC00649   62157
5430     LINC00649   62157
5431     LINC00649   62157
5432     LINC00649   62157
5433     LINC00649   62157
5434     LINC00649   62157
5435     LINC00649   62157
5436     LINC00649   62157
5437     LINC00649   62157
5438     LINC00649   62157
5439     LINC00649   62157
5440     LINC00649   62157
5441     LINC00649   62157
5442     LINC00649   62157
5443     LINC00649   62157
5444     LINC00649   62157
5445     LINC00649   62157
5446     LINC00649   62157
5447     LINC00649   62157
5448     LINC00649   62157
5449     LINC00649   62157
5450     LINC00649   62157
5451     LINC00649   62157
5452     LINC00649   62157
5453     LINC00649   62157
5454     LINC00649   62157
5455     LINC00649   62157
5456     LINC00649   62157
5457     LINC00649   62157
5458     LINC00649   62157
5459        BTF3P6     498
5460       B3GALT5  116695
5461       B3GALT5  116695
5462       B3GALT5  116695
5463       B3GALT5  116695
5464       B3GALT5  116695
5465       B3GALT5  116695
5466       B3GALT5  116695
5467       B3GALT5  116695
5468       B3GALT5  116695
5469       B3GALT5  116695
5470       B3GALT5  116695
5471       B3GALT5  116695
5472       B3GALT5  116695
5473       B3GALT5  116695
5474       B3GALT5  116695
5475       B3GALT5  116695
5476       B3GALT5  116695
5477       B3GALT5  116695
5478           SON   34863
5479           SON   34863
5480           SON   34863
5481           SON   34863
5482           SON   34863
5483           SON   34863
5484           SON   34863
5485           SON   34863
5486           SON   34863
5487           SON   34863
5488           SON   34863
5489           SON   34863
5490           SON   34863
5491           SON   34863
5492           SON   34863
5493           SON   34863
5494           SON   34863
5495           SON   34863
5496           SON   34863
5497           SON   34863
5498           SON   34863
5499           SON   34863
5500           SON   34863
5501           SON   34863
5502           SON   34863
5503           SON   34863
5504           SON   34863
5505           SON   34863
5506           SON   34863
5507           SON   34863
5508           SON   34863
5509           SON   34863
5510           SON   34863
5511           SON   34863
5512           SON   34863
5513           SON   34863
5514           SON   34863
5515           SON   34863
5516           SON   34863
5517           SON   34863
5518           SON   34863
5519           SON   34863
5520           SON   34863
5521           SON   34863
5522           SON   34863
5523           SON   34863
5524           SON   34863
5525           SON   34863
5526           SON   34863
5527           SON   34863
5528           SON   34863
5529           SON   34863
5530           SON   34863
5531           SON   34863
5532           SON   34863
5533           SON   34863
5534           SON   34863
5535           SON   34863
5536           SON   34863
5537           SON   34863
5538           SON   34863
5539           SON   34863
5540           SON   34863
5541           SON   34863
5542           SON   34863
5543           SON   34863
5544           SON   34863
5545           SON   34863
5546           SON   34863
5547           SON   34863
5548           SON   34863
5549           SON   34863
5550           SON   34863
5551           SON   34863
5552           SON   34863
5553           SON   34863
5554           SON   34863
5555           SON   34863
5556           SON   34863
5557           SON   34863
5558           SON   34863
5559           SON   34863
5560           SON   34863
5561           SON   34863
5562           SON   34863
5563           SON   34863
5564           SON   34863
5565           SON   34863
5566           SON   34863
5567           SON   34863
5568           SON   34863
5569           SON   34863
5570           SON   34863
5571           SON   34863
5572           SON   34863
5573           SON   34863
5574           SON   34863
5575           SON   34863
5576           SON   34863
5577           SON   34863
5578           SON   34863
5579           SON   34863
5580           SON   34863
5581           SON   34863
5582           SON   34863
5583           SON   34863
5584           SON   34863
5585           SON   34863
5586           SON   34863
5587           SON   34863
5588           SON   34863
5589           SON   34863
5590           SON   34863
5591           SON   34863
5592           SON   34863
5593           SON   34863
5594           SON   34863
5595           SON   34863
5596           SON   34863
5597           SON   34863
5598           SON   34863
5599           SON   34863
5600           SON   34863
5601           SON   34863
5602      FTCD-AS1    1033
5603      FTCD-AS1    1033
5604                 95814
5605                 95814
5606                 95814
5607   B3GALT5-AS1   15674
5608   B3GALT5-AS1   15674
5609   B3GALT5-AS1   15674
5610   B3GALT5-AS1   15674
5611   B3GALT5-AS1   15674
5612   B3GALT5-AS1   15674
5613   B3GALT5-AS1   15674
5614   B3GALT5-AS1   15674
5615   B3GALT5-AS1   15674
5616   B3GALT5-AS1   15674
5617   B3GALT5-AS1   15674
5618                  2925
5619                  2925
5620                  2925
5621                  2925
5622                  2925
5623         IGSF5   56689
5624         IGSF5   56689
5625         IGSF5   56689
5626         IGSF5   56689
5627         IGSF5   56689
5628         IGSF5   56689
5629         IGSF5   56689
5630         IGSF5   56689
5631         IGSF5   56689
5632         IGSF5   56689
5633         IGSF5   56689
5634         IGSF5   56689
5635         IGSF5   56689
5636         IGSF5   56689
5637         IGSF5   56689
5638         IGSF5   56689
5639         IGSF5   56689
5640                  1094
5641                  1094
5642                  4617
5643                  4617
5644         ATP5O   12527
5645         ATP5O   12527
5646         ATP5O   12527
5647         ATP5O   12527
5648         ATP5O   12527
5649         ATP5O   12527
5650         ATP5O   12527
5651         ATP5O   12527
5652         ATP5O   12527
5653         ATP5O   12527
5654         ATP5O   12527
5655         ATP5O   12527
5656         ATP5O   12527
5657         ATP5O   12527
5658         ATP5O   12527
5659         ATP5O   12527
5660         ATP5O   12527
5661         ATP5O   12527
5662         ATP5O   12527
5663         ATP5O   12527
5664         ATP5O   12527
5665         ATP5O   12527
5666         ATP5O   12527
5667         ATP5O   12527
5668         ATP5O   12527
5669         ATP5O   12527
5670         ATP5O   12527
5671         ATP5O   12527
5672         ATP5O   12527
5673         ATP5O   12527
5674         ATP5O   12527
5675         ATP5O   12527
5676         ATP5O   12527
5677         ATP5O   12527
5678         ATP5O   12527
5679         ATP5O   12527
5680         ATP5O   12527
5681         ATP5O   12527
5682         ATP5O   12527
5683         ATP5O   12527
5684         ATP5O   12527
5685         ATP5O   12527
5686         ATP5O   12527
5687         ATP5O   12527
5688         ATP5O   12527
5689     LINC00189   94725
5690     LINC00189   94725
5691     LINC00189   94725
5692     LINC00189   94725
5693     LINC00189   94725
5694     LINC00189   94725
5695     LINC00189   94725
5696     LINC00189   94725
5697         DSCAM  836140
5698         DSCAM  836140
5699         DSCAM  836140
5700         DSCAM  836140
5701         DSCAM  836140
5702         DSCAM  836140
5703         DSCAM  836140
5704         DSCAM  836140
5705         DSCAM  836140
5706         DSCAM  836140
5707         DSCAM  836140
5708         DSCAM  836140
5709         DSCAM  836140
5710         DSCAM  836140
5711         DSCAM  836140
5712         DSCAM  836140
5713         DSCAM  836140
5714         DSCAM  836140
5715         DSCAM  836140
5716         DSCAM  836140
5717         DSCAM  836140
5718         DSCAM  836140
5719         DSCAM  836140
5720         DSCAM  836140
5721         DSCAM  836140
5722         DSCAM  836140
5723         DSCAM  836140
5724         DSCAM  836140
5725         DSCAM  836140
5726         DSCAM  836140
5727         DSCAM  836140
5728         DSCAM  836140
5729         DSCAM  836140
5730         DSCAM  836140
5731         DSCAM  836140
5732         DSCAM  836140
5733         DSCAM  836140
5734         DSCAM  836140
5735         DSCAM  836140
5736         DSCAM  836140
5737         DSCAM  836140
5738         DSCAM  836140
5739         DSCAM  836140
5740         DSCAM  836140
5741         DSCAM  836140
5742         DSCAM  836140
5743         DSCAM  836140
5744         DSCAM  836140
5745         DSCAM  836140
5746         DSCAM  836140
5747         DSCAM  836140
5748         DSCAM  836140
5749         DSCAM  836140
5750         DSCAM  836140
5751         DSCAM  836140
5752         DSCAM  836140
5753         DSCAM  836140
5754         DSCAM  836140
5755         DSCAM  836140
5756         DSCAM  836140
5757         DSCAM  836140
5758         DSCAM  836140
5759         DSCAM  836140
5760         DSCAM  836140
5761         DSCAM  836140
5762         DSCAM  836140
5763         DSCAM  836140
5764         DSCAM  836140
5765         DSCAM  836140
5766         DSCAM  836140
5767         DSCAM  836140
5768         DSCAM  836140
5769         DSCAM  836140
5770         DSCAM  836140
5771         DSCAM  836140
5772         DSCAM  836140
5773         DSCAM  836140
5774         DSCAM  836140
5775         DSCAM  836140
5776         DSCAM  836140
5777         DSCAM  836140
5778         DSCAM  836140
5779         DSCAM  836140
5780         DSCAM  836140
5781         DSCAM  836140
5782         DSCAM  836140
5783         DSCAM  836140
5784         DSCAM  836140
5785         DSCAM  836140
5786         DSCAM  836140
5787         DSCAM  836140
5788         DSCAM  836140
5789          TTC3  129886
5790          TTC3  129886
5791          TTC3  129886
5792          TTC3  129886
5793          TTC3  129886
5794          TTC3  129886
5795          TTC3  129886
5796          TTC3  129886
5797          TTC3  129886
5798          TTC3  129886
5799          TTC3  129886
5800          TTC3  129886
5801          TTC3  129886
5802          TTC3  129886
5803          TTC3  129886
5804          TTC3  129886
5805          TTC3  129886
5806          TTC3  129886
5807          TTC3  129886
5808          TTC3  129886
5809          TTC3  129886
5810          TTC3  129886
5811          TTC3  129886
5812          TTC3  129886
5813          TTC3  129886
5814          TTC3  129886
5815          TTC3  129886
5816          TTC3  129886
5817          TTC3  129886
5818          TTC3  129886
5819          TTC3  129886
5820          TTC3  129886
5821          TTC3  129886
5822          TTC3  129886
5823          TTC3  129886
5824          TTC3  129886
5825          TTC3  129886
5826          TTC3  129886
5827          TTC3  129886
5828          TTC3  129886
5829          TTC3  129886
5830          TTC3  129886
5831          TTC3  129886
5832          TTC3  129886
5833          TTC3  129886
5834          TTC3  129886
5835          TTC3  129886
5836          TTC3  129886
5837          TTC3  129886
5838          TTC3  129886
5839          TTC3  129886
5840          TTC3  129886
5841          TTC3  129886
5842          TTC3  129886
5843          TTC3  129886
5844          TTC3  129886
5845          TTC3  129886
5846          TTC3  129886
5847          TTC3  129886
5848          TTC3  129886
5849          TTC3  129886
5850          TTC3  129886
5851          TTC3  129886
5852          TTC3  129886
5853          TTC3  129886
5854          TTC3  129886
5855          TTC3  129886
5856          TTC3  129886
5857          TTC3  129886
5858          TTC3  129886
5859          TTC3  129886
5860          TTC3  129886
5861          TTC3  129886
5862          TTC3  129886
5863          TTC3  129886
5864          TTC3  129886
5865          TTC3  129886
5866          TTC3  129886
5867          TTC3  129886
5868          TTC3  129886
5869          TTC3  129886
5870          TTC3  129886
5871          TTC3  129886
5872          TTC3  129886
5873          TTC3  129886
5874          TTC3  129886
5875          TTC3  129886
5876          TTC3  129886
5877          TTC3  129886
5878          TTC3  129886
5879          TTC3  129886
5880          TTC3  129886
5881          TTC3  129886
5882          TTC3  129886
5883          TTC3  129886
5884          TTC3  129886
5885          TTC3  129886
5886          TTC3  129886
5887          TTC3  129886
5888          TTC3  129886
5889          TTC3  129886
5890          TTC3  129886
5891          TTC3  129886
5892          TTC3  129886
5893          TTC3  129886
5894          TTC3  129886
5895          TTC3  129886
5896          TTC3  129886
5897          TTC3  129886
5898          TTC3  129886
5899          TTC3  129886
5900          TTC3  129886
5901          TTC3  129886
5902          TTC3  129886
5903          TTC3  129886
5904          TTC3  129886
5905          TTC3  129886
5906          TTC3  129886
5907          TTC3  129886
5908          TTC3  129886
5909          TTC3  129886
5910          TTC3  129886
5911          TTC3  129886
5912          TTC3  129886
5913          TTC3  129886
5914          TTC3  129886
5915          TTC3  129886
5916          TTC3  129886
5917          TTC3  129886
5918          TTC3  129886
5919          TTC3  129886
5920          TTC3  129886
5921          TTC3  129886
5922          TTC3  129886
5923          TTC3  129886
5924          TTC3  129886
5925          TTC3  129886
5926          TTC3  129886
5927          TTC3  129886
5928          TTC3  129886
5929          TTC3  129886
5930          TTC3  129886
5931          TTC3  129886
5932          TTC3  129886
5933          TTC3  129886
5934          TTC3  129886
5935          TTC3  129886
5936          TTC3  129886
5937          TTC3  129886
5938          TTC3  129886
5939          TTC3  129886
5940          TTC3  129886
5941          TTC3  129886
5942          TTC3  129886
5943          TTC3  129886
5944          TTC3  129886
5945          TTC3  129886
5946          TTC3  129886
5947          TTC3  129886
5948          TTC3  129886
5949          TTC3  129886
5950          TTC3  129886
5951          TTC3  129886
5952          TTC3  129886
5953          TTC3  129886
5954          TTC3  129886
5955          TTC3  129886
5956          TTC3  129886
5957          TTC3  129886
5958          TTC3  129886
5959          TTC3  129886
5960          TTC3  129886
5961          TTC3  129886
5962          TTC3  129886
5963          TTC3  129886
5964          TTC3  129886
5965          TTC3  129886
5966          TTC3  129886
5967          TTC3  129886
5968          TTC3  129886
5969          TTC3  129886
5970          TTC3  129886
5971          TTC3  129886
5972          TTC3  129886
5973          TTC3  129886
5974          TTC3  129886
5975          TTC3  129886
5976          TTC3  129886
5977          TTC3  129886
5978          TTC3  129886
5979          TTC3  129886
5980          TTC3  129886
5981          TTC3  129886
5982          TTC3  129886
5983          TTC3  129886
5984          TTC3  129886
5985          TTC3  129886
5986          TTC3  129886
5987          TTC3  129886
5988          TTC3  129886
5989          TTC3  129886
5990          TTC3  129886
5991          TTC3  129886
5992          TTC3  129886
5993          TTC3  129886
5994          TTC3  129886
5995          TTC3  129886
5996          TTC3  129886
5997          TTC3  129886
5998          TTC3  129886
5999          TTC3  129886
6000          TTC3  129886
6001          TTC3  129886
6002          TTC3  129886
6003          TTC3  129886
6004          TTC3  129886
6005          TTC3  129886
6006          TTC3  129886
6007          TTC3  129886
6008          TTC3  129886
6009          TTC3  129886
6010          TTC3  129886
6011          TTC3  129886
6012          TTC3  129886
6013          TTC3  129886
6014          TTC3  129886
6015          TTC3  129886
6016          TTC3  129886
6017          TTC3  129886
6018          TTC3  129886
6019          TTC3  129886
6020          TTC3  129886
6021          TTC3  129886
6022          TTC3  129886
6023          TTC3  129886
6024          TTC3  129886
6025          TTC3  129886
6026          TTC3  129886
6027          TTC3  129886
6028          TTC3  129886
6029          TTC3  129886
6030          TTC3  129886
6031          TTC3  129886
6032          TTC3  129886
6033          TTC3  129886
6034          TTC3  129886
6035          TTC3  129886
6036          TTC3  129886
6037          TTC3  129886
6038          TTC3  129886
6039          TTC3  129886
6040          TTC3  129886
6041          TTC3  129886
6042          TTC3  129886
6043          TTC3  129886
6044          TTC3  129886
6045          TTC3  129886
6046          TTC3  129886
6047          TTC3  129886
6048          TTC3  129886
6049          TTC3  129886
6050          TTC3  129886
6051          TTC3  129886
6052          TTC3  129886
6053          TTC3  129886
6054          TTC3  129886
6055          TTC3  129886
6056          TTC3  129886
6057          TTC3  129886
6058          TTC3  129886
6059          TTC3  129886
6060          TTC3  129886
6061          TTC3  129886
6062          TTC3  129886
6063          TTC3  129886
6064          TTC3  129886
6065          TTC3  129886
6066          TTC3  129886
6067          TTC3  129886
6068          TTC3  129886
6069          TTC3  129886
6070          TTC3  129886
6071          TTC3  129886
6072          TTC3  129886
6073          TTC3  129886
6074          TTC3  129886
6075          TTC3  129886
6076          TTC3  129886
6077          TTC3  129886
6078          TTC3  129886
6079          TTC3  129886
6080          TTC3  129886
6081          TTC3  129886
6082          TTC3  129886
6083          TTC3  129886
6084          TTC3  129886
6085          TTC3  129886
6086          TTC3  129886
6087          TTC3  129886
6088          TTC3  129886
6089          TTC3  129886
6090          TTC3  129886
6091          TTC3  129886
6092          TTC3  129886
6093          TTC3  129886
6094          TTC3  129886
6095          TTC3  129886
6096          TTC3  129886
6097          TTC3  129886
6098          TTC3  129886
6099          TTC3  129886
6100          TTC3  129886
6101          TTC3  129886
6102          TTC3  129886
6103          TTC3  129886
6104          TTC3  129886
6105          TTC3  129886
6106          TTC3  129886
6107          TTC3  129886
6108          TTC3  129886
6109          TTC3  129886
6110          TTC3  129886
6111          TTC3  129886
6112          TTC3  129886
6113          TTC3  129886
6114          TTC3  129886
6115          TTC3  129886
6116          TTC3  129886
6117          TTC3  129886
6118          TTC3  129886
6119          TTC3  129886
6120          TTC3  129886
6121          TTC3  129886
6122          TTC3  129886
6123          TTC3  129886
6124          TTC3  129886
6125          TTC3  129886
6126          TTC3  129886
6127          TTC3  129886
6128          TTC3  129886
6129          TTC3  129886
6130          TTC3  129886
6131          TTC3  129886
6132          TTC3  129886
6133          TTC3  129886
6134          TTC3  129886
6135          TTC3  129886
6136          TTC3  129886
6137          TTC3  129886
6138          TTC3  129886
6139          TTC3  129886
6140          TTC3  129886
6141          TTC3  129886
6142          TTC3  129886
6143          TTC3  129886
6144          TTC3  129886
6145          TTC3  129886
6146          TTC3  129886
6147          TTC3  129886
6148          TTC3  129886
6149          TTC3  129886
6150          TTC3  129886
6151          TTC3  129886
6152          TTC3  129886
6153          TTC3  129886
6154          TTC3  129886
6155          TTC3  129886
6156          TTC3  129886
6157          TTC3  129886
6158          TTC3  129886
6159          TTC3  129886
6160          TTC3  129886
6161          TTC3  129886
6162          TTC3  129886
6163          TTC3  129886
6164          TTC3  129886
6165          TTC3  129886
6166          TTC3  129886
6167          TTC3  129886
6168          TTC3  129886
6169          TTC3  129886
6170          TTC3  129886
6171          TTC3  129886
6172          TTC3  129886
6173          TTC3  129886
6174          TTC3  129886
6175          TTC3  129886
6176          TTC3  129886
6177          TTC3  129886
6178          TTC3  129886
6179          TTC3  129886
6180          TTC3  129886
6181          TTC3  129886
6182          TTC3  129886
6183          TTC3  129886
6184          TTC3  129886
6185          TTC3  129886
6186          TTC3  129886
6187          TTC3  129886
6188          TTC3  129886
6189          TTC3  129886
6190          TTC3  129886
6191          TTC3  129886
6192          TTC3  129886
6193          TTC3  129886
6194          TTC3  129886
6195          TTC3  129886
6196          TTC3  129886
6197          TTC3  129886
6198          TTC3  129886
6199          TTC3  129886
6200          TTC3  129886
6201          TTC3  129886
6202          TTC3  129886
6203          TTC3  129886
6204          TTC3  129886
6205          TTC3  129886
6206          TTC3  129886
6207          TTC3  129886
6208          TTC3  129886
6209          TTC3  129886
6210          TTC3  129886
6211          TTC3  129886
6212          TTC3  129886
6213          TTC3  129886
6214          TTC3  129886
6215          TTC3  129886
6216          TTC3  129886
6217          TTC3  129886
6218          TTC3  129886
6219          TTC3  129886
6220          TTC3  129886
6221          TTC3  129886
6222          TTC3  129886
6223          TTC3  129886
6224          TTC3  129886
6225          TTC3  129886
6226          TTC3  129886
6227          TTC3  129886
6228          TTC3  129886
6229          TTC3  129886
6230          TTC3  129886
6231          TTC3  129886
6232          TTC3  129886
6233          TTC3  129886
6234          TTC3  129886
6235          TTC3  129886
6236          TTC3  129886
6237          TTC3  129886
6238          TTC3  129886
6239          TTC3  129886
6240          TTC3  129886
6241          TTC3  129886
6242          TTC3  129886
6243          TTC3  129886
6244          TTC3  129886
6245          TTC3  129886
6246          TTC3  129886
6247          TTC3  129886
6248          TTC3  129886
6249          TTC3  129886
6250          TTC3  129886
6251          TTC3  129886
6252          TTC3  129886
6253          TTC3  129886
6254          TTC3  129886
6255          TTC3  129886
6256          TTC3  129886
6257          TTC3  129886
6258          TTC3  129886
6259          TTC3  129886
6260          TTC3  129886
6261          TTC3  129886
6262          TTC3  129886
6263          TTC3  129886
6264                 22705
6265                 22705
6266                 22705
6267                  2022
6268                  2022
6269          CCT8   17992
6270          CCT8   17992
6271          CCT8   17992
6272          CCT8   17992
6273          CCT8   17992
6274          CCT8   17992
6275          CCT8   17992
6276          CCT8   17992
6277          CCT8   17992
6278          CCT8   17992
6279          CCT8   17992
6280          CCT8   17992
6281          CCT8   17992
6282          CCT8   17992
6283          CCT8   17992
6284          CCT8   17992
6285          CCT8   17992
6286          CCT8   17992
6287          CCT8   17992
6288          CCT8   17992
6289          CCT8   17992
6290          CCT8   17992
6291          CCT8   17992
6292          CCT8   17992
6293          CCT8   17992
6294          CCT8   17992
6295          CCT8   17992
6296          CCT8   17992
6297          CCT8   17992
6298          CCT8   17992
6299          CCT8   17992
6300          CCT8   17992
6301          CCT8   17992
6302          CCT8   17992
6303          CCT8   17992
6304          CCT8   17992
6305          CCT8   17992
6306          CCT8   17992
6307          CCT8   17992
6308          CCT8   17992
6309          CCT8   17992
6310          CCT8   17992
6311          CCT8   17992
6312          CCT8   17992
6313          CCT8   17992
6314          CCT8   17992
6315          CCT8   17992
6316          CCT8   17992
6317          CCT8   17992
6318          CCT8   17992
6319          CCT8   17992
6320          CCT8   17992
6321          CCT8   17992
6322          CCT8   17992
6323          CCT8   17992
6324          CCT8   17992
6325          CCT8   17992
6326          CCT8   17992
6327          CCT8   17992
6328          CCT8   17992
6329          CCT8   17992
6330          CCT8   17992
6331          CCT8   17992
6332          CCT8   17992
6333          CCT8   17992
6334          CCT8   17992
6335          CCT8   17992
6336          CCT8   17992
6337          CCT8   17992
6338          CCT8   17992
6339          CCT8   17992
6340          CCT8   17992
6341          CCT8   17992
6342          CCT8   17992
6343          CCT8   17992
6344          CCT8   17992
6345          CCT8   17992
6346          CCT8   17992
6347          CCT8   17992
6348          CCT8   17992
6349          CCT8   17992
6350          CCT8   17992
6351          CCT8   17992
6352          CCT8   17992
6353          CCT8   17992
6354          CCT8   17992
6355          CCT8   17992
6356          CCT8   17992
6357          CCT8   17992
6358          CCT8   17992
6359          CCT8   17992
6360          CCT8   17992
6361          CCT8   17992
6362          CCT8   17992
6363          CCT8   17992
6364          CCT8   17992
6365          CCT8   17992
6366          CCT8   17992
6367          CCT8   17992
6368          CCT8   17992
6369          CCT8   17992
6370          CCT8   17992
6371                 38724
6372                 38724
6373                 38724
6374        USF1P1     525
6375        IFNAR1   35385
6376        IFNAR1   35385
6377        IFNAR1   35385
6378        IFNAR1   35385
6379        IFNAR1   35385
6380        IFNAR1   35385
6381        IFNAR1   35385
6382        IFNAR1   35385
6383        IFNAR1   35385
6384        IFNAR1   35385
6385        IFNAR1   35385
6386        IFNAR1   35385
6387        IFNAR1   35385
6388        IFNAR1   35385
6389        IFNAR1   35385
6390        IFNAR1   35385
6391        IFNAR1   35385
6392                  1989
6393                  1808
6394                  1808
6395                  3363
6396                  3363
6397                  3363
6398                 11315
6399                 11315
6400                 11315
6401                 11315
6402                 11315
6403                 11315
6404                 11315
6405                 11315
6406                 11315
6407                 11315
6408                 11315
6409         LCA5L   39961
6410         LCA5L   39961
6411         LCA5L   39961
6412         LCA5L   39961
6413         LCA5L   39961
6414         LCA5L   39961
6415         LCA5L   39961
6416         LCA5L   39961
6417         LCA5L   39961
6418         LCA5L   39961
6419         LCA5L   39961
6420         LCA5L   39961
6421         LCA5L   39961
6422         LCA5L   39961
6423         LCA5L   39961
6424         LCA5L   39961
6425         LCA5L   39961
6426         LCA5L   39961
6427         LCA5L   39961
6428         LCA5L   39961
6429         LCA5L   39961
6430         LCA5L   39961
6431         LCA5L   39961
6432         LCA5L   39961
6433         LCA5L   39961
6434         LCA5L   39961
6435         LCA5L   39961
6436         LCA5L   39961
6437         LCA5L   39961
6438         LCA5L   39961
6439         LCA5L   39961
6440         LCA5L   39961
6441         LCA5L   39961
6442         LCA5L   39961
6443         LCA5L   39961
6444         LCA5L   39961
6445         LCA5L   39961
6446         LCA5L   39961
6447         LCA5L   39961
6448         LCA5L   39961
6449         LCA5L   39961
6450         LCA5L   39961
6451         LCA5L   39961
6452         LCA5L   39961
6453         LCA5L   39961
6454         LCA5L   39961
6455         LCA5L   39961
6456         LCA5L   39961
6457         LCA5L   39961
6458         LCA5L   39961
6459         LCA5L   39961
6460         LCA5L   39961
6461         LCA5L   39961
6462         LCA5L   39961
6463         LCA5L   39961
6464         LCA5L   39961
6465         LCA5L   39961
6466         LCA5L   39961
6467         LCA5L   39961
6468         LCA5L   39961
6469         LCA5L   39961
6470         LCA5L   39961
6471         LCA5L   39961
6472         LCA5L   39961
6473         LCA5L   39961
6474         LCA5L   39961
6475         LCA5L   39961
6476         LCA5L   39961
6477         LCA5L   39961
6478         LCA5L   39961
6479         LCA5L   39961
6480         LCA5L   39961
6481         LCA5L   39961
6482         LCA5L   39961
6483         LCA5L   39961
6484         LCA5L   39961
6485         LCA5L   39961
6486         LCA5L   39961
6487         LCA5L   39961
6488         LCA5L   39961
6489         LCA5L   39961
6490         LCA5L   39961
6491         LCA5L   39961
6492         LCA5L   39961
6493         LCA5L   39961
6494         LCA5L   39961
6495         LCA5L   39961
6496         LCA5L   39961
6497         LCA5L   39961
6498         LCA5L   39961
6499         LCA5L   39961
6500         LCA5L   39961
6501         LCA5L   39961
6502         LCA5L   39961
6503         LCA5L   39961
6504         LCA5L   39961
6505         LCA5L   39961
6506         LCA5L   39961
6507         LCA5L   39961
6508         LCA5L   39961
6509         LCA5L   39961
6510         LCA5L   39961
6511         LCA5L   39961
6512         LCA5L   39961
6513         LCA5L   39961
6514         LCA5L   39961
6515         LCA5L   39961
6516         LCA5L   39961
6517         LCA5L   39961
6518         LCA5L   39961
6519         LCA5L   39961
6520         LCA5L   39961
6521         LCA5L   39961
6522         LCA5L   39961
6523         LCA5L   39961
6524         LCA5L   39961
6525         LCA5L   39961
6526                  3774
6527                  3774
6528                  3774
6529                  3774
6530                  3774
6531                  3774
6532                  3774
6533                  3774
6534                  3774
6535    IL10RB-AS1    2387
6536    IL10RB-AS1    2387
6537         USP16   29859
6538         USP16   29859
6539         USP16   29859
6540         USP16   29859
6541         USP16   29859
6542         USP16   29859
6543         USP16   29859
6544         USP16   29859
6545         USP16   29859
6546         USP16   29859
6547         USP16   29859
6548         USP16   29859
6549         USP16   29859
6550         USP16   29859
6551         USP16   29859
6552         USP16   29859
6553         USP16   29859
6554         USP16   29859
6555         USP16   29859
6556         USP16   29859
6557         USP16   29859
6558         USP16   29859
6559         USP16   29859
6560         USP16   29859
6561         USP16   29859
6562         USP16   29859
6563         USP16   29859
6564         USP16   29859
6565         USP16   29859
6566         USP16   29859
6567         USP16   29859
6568         USP16   29859
6569         USP16   29859
6570         USP16   29859
6571         USP16   29859
6572         USP16   29859
6573         USP16   29859
6574         USP16   29859
6575         USP16   29859
6576         USP16   29859
6577         USP16   29859
6578         USP16   29859
6579         USP16   29859
6580         USP16   29859
6581         USP16   29859
6582         USP16   29859
6583         USP16   29859
6584         USP16   29859
6585         USP16   29859
6586         USP16   29859
6587         USP16   29859
6588         USP16   29859
6589         USP16   29859
6590         USP16   29859
6591         USP16   29859
6592         USP16   29859
6593         USP16   29859
6594         USP16   29859
6595         USP16   29859
6596         USP16   29859
6597         USP16   29859
6598         USP16   29859
6599         USP16   29859
6600         USP16   29859
6601         USP16   29859
6602         USP16   29859
6603         USP16   29859
6604         USP16   29859
6605         USP16   29859
6606         USP16   29859
6607         USP16   29859
6608         USP16   29859
6609         USP16   29859
6610         USP16   29859
6611         USP16   29859
6612         USP16   29859
6613         USP16   29859
6614         USP16   29859
6615         USP16   29859
6616      C21orf62   20179
6617      C21orf62   20179
6618      C21orf62   20179
6619      C21orf62   20179
6620      C21orf62   20179
6621      C21orf62   20179
6622      C21orf62   20179
6623      C21orf62   20179
6624      C21orf62   20179
6625      C21orf62   20179
6626      C21orf62   20179
6627      C21orf62   20179
6628       PSMD4P1    1428
6629       PSMD4P1    1428
6630       ZNF299P    1803
6631      MAPK6PS2    2059
6632     LINC00317   14026
6633     LINC00317   14026
6634     LINC00317   14026
6635          PWP2   23891
6636          PWP2   23891
6637          PWP2   23891
6638          PWP2   23891
6639          PWP2   23891
6640          PWP2   23891
6641          PWP2   23891
6642          PWP2   23891
6643          PWP2   23891
6644          PWP2   23891
6645          PWP2   23891
6646          PWP2   23891
6647          PWP2   23891
6648          PWP2   23891
6649          PWP2   23891
6650          PWP2   23891
6651          PWP2   23891
6652          PWP2   23891
6653          PWP2   23891
6654          PWP2   23891
6655          PWP2   23891
6656          PWP2   23891
6657          PWP2   23891
6658          PWP2   23891
6659          PWP2   23891
6660          PWP2   23891
6661          PWP2   23891
6662          PWP2   23891
6663          PWP2   23891
6664          PWP2   23891
6665          PWP2   23891
6666          PWP2   23891
6667          PWP2   23891
6668          PWP2   23891
6669          PWP2   23891
6670          PWP2   23891
6671          PWP2   23891
6672          PWP2   23891
6673          PWP2   23891
6674          PWP2   23891
6675          PWP2   23891
6676          PWP2   23891
6677          PWP2   23891
6678          PWP2   23891
6679          PWP2   23891
6680          PWP2   23891
6681                  3900
6682                  3900
6683      SLC6A6P1    1849
6684       TMEM50B   47526
6685       TMEM50B   47526
6686       TMEM50B   47526
6687       TMEM50B   47526
6688       TMEM50B   47526
6689       TMEM50B   47526
6690       TMEM50B   47526
6691       TMEM50B   47526
6692       TMEM50B   47526
6693       TMEM50B   47526
6694       TMEM50B   47526
6695       TMEM50B   47526
6696       TMEM50B   47526
6697       TMEM50B   47526
6698       TMEM50B   47526
6699       TMEM50B   47526
6700       TMEM50B   47526
6701       TMEM50B   47526
6702       TMEM50B   47526
6703       TMEM50B   47526
6704       TMEM50B   47526
6705       TMEM50B   47526
6706       TMEM50B   47526
6707       TMEM50B   47526
6708       TMEM50B   47526
6709       TMEM50B   47526
6710       TMEM50B   47526
6711       TMEM50B   47526
6712       TMEM50B   47526
6713       TMEM50B   47526
6714       TMEM50B   47526
6715       TMEM50B   47526
6716       TMEM50B   47526
6717       TMEM50B   47526
6718       TMEM50B   47526
6719       TMEM50B   47526
6720       TMEM50B   47526
6721       TMEM50B   47526
6722       TMEM50B   47526
6723       TMEM50B   47526
6724       TMEM50B   47526
6725       TMEM50B   47526
6726       TMEM50B   47526
6727       TMEM50B   47526
6728       TMEM50B   47526
6729       TMEM50B   47526
6730       TMEM50B   47526
6731       TMEM50B   47526
6732       TMEM50B   47526
6733         OLIG1    2276
6734         OLIG1    2276
6735         OLIG1    2276
6736         OLIG1    2276
6737         OLIG1    2276
6738                  5567
6739                  5567
6740                  3787
6741                  3787
6742                  3787
6743                  3787
6744                  3787
6745                  3787
6746          HLCS  239348
6747          HLCS  239348
6748          HLCS  239348
6749          HLCS  239348
6750          HLCS  239348
6751          HLCS  239348
6752          HLCS  239348
6753          HLCS  239348
6754          HLCS  239348
6755          HLCS  239348
6756          HLCS  239348
6757          HLCS  239348
6758          HLCS  239348
6759          HLCS  239348
6760          HLCS  239348
6761          HLCS  239348
6762          HLCS  239348
6763          HLCS  239348
6764          HLCS  239348
6765          HLCS  239348
6766          HLCS  239348
6767          HLCS  239348
6768          HLCS  239348
6769          HLCS  239348
6770          HLCS  239348
6771          HLCS  239348
6772          HLCS  239348
6773          HLCS  239348
6774          HLCS  239348
6775          HLCS  239348
6776          HLCS  239348
6777          HLCS  239348
6778          HLCS  239348
6779          HLCS  239348
6780          HLCS  239348
6781          HLCS  239348
6782          HLCS  239348
6783          HLCS  239348
6784          HLCS  239348
6785          HLCS  239348
6786          HLCS  239348
6787          HLCS  239348
6788          HLCS  239348
6789          HLCS  239348
6790          HLCS  239348
6791          HLCS  239348
6792          HLCS  239348
6793          HLCS  239348
6794          HLCS  239348
6795          HLCS  239348
6796          HLCS  239348
6797                  2791
6798                  2791
6799                   206
6800                  4567
6801                  4567
6802        RWDD2B   14994
6803        RWDD2B   14994
6804        RWDD2B   14994
6805        RWDD2B   14994
6806        RWDD2B   14994
6807        RWDD2B   14994
6808        RWDD2B   14994
6809        RWDD2B   14994
6810        RWDD2B   14994
6811        RWDD2B   14994
6812        RWDD2B   14994
6813        RWDD2B   14994
6814        RWDD2B   14994
6815        RWDD2B   14994
6816        RWDD2B   14994
6817        RWDD2B   14994
6818        RWDD2B   14994
6819        RWDD2B   14994
6820        RWDD2B   14994
6821        RWDD2B   14994
6822        RWDD2B   14994
6823        RWDD2B   14994
6824        RWDD2B   14994
6825        RWDD2B   14994
6826        RWDD2B   14994
6827        RWDD2B   14994
6828        RWDD2B   14994
6829        RWDD2B   14994
6830        RWDD2B   14994
6831       RIPPLY3   13509
6832       RIPPLY3   13509
6833       RIPPLY3   13509
6834       RIPPLY3   13509
6835       RIPPLY3   13509
6836       RIPPLY3   13509
6837       RIPPLY3   13509
6838       RIPPLY3   13509
6839       RIPPLY3   13509
6840       RIPPLY3   13509
6841       RIPPLY3   13509
6842          SIM2   50784
6843          SIM2   50784
6844          SIM2   50784
6845          SIM2   50784
6846          SIM2   50784
6847          SIM2   50784
6848          SIM2   50784
6849          SIM2   50784
6850          SIM2   50784
6851          SIM2   50784
6852          SIM2   50784
6853          SIM2   50784
6854          SIM2   50784
6855          SIM2   50784
6856          SIM2   50784
6857          SIM2   50784
6858          SIM2   50784
6859          SIM2   50784
6860          SIM2   50784
6861          SIM2   50784
6862          SIM2   50784
6863          SIM2   50784
6864          SIM2   50784
6865          SIM2   50784
6866          SIM2   50784
6867          SIM2   50784
6868          SIM2   50784
6869          SIM2   50784
6870          SIM2   50784
6871          SIM2   50784
6872          SIM2   50784
6873          SIM2   50784
6874          SIM2   50784
6875          SIM2   50784
6876          SIM2   50784
6877                  4352
6878                  4352
6879                   459
6880                  3534
6881                  3534
6882                   441
6883       RPL37P4     267
6884     MIR548XHG  198738
6885     MIR548XHG  198738
6886     MIR548XHG  198738
6887     MIR548XHG  198738
6888     MIR548XHG  198738
6889     MIR548XHG  198738
6890     MIR548XHG  198738
6891     MIR548XHG  198738
6892     MIR548XHG  198738
6893     MIR548XHG  198738
6894     MIR548XHG  198738
6895     MIR548XHG  198738
6896                  5437
6897                  5437
6898                  5437
6899     LINC01668    2175
6900     LINC01668    2175
6901     LINC01668    2175
6902       SPATC1L   23328
6903       SPATC1L   23328
6904       SPATC1L   23328
6905       SPATC1L   23328
6906       SPATC1L   23328
6907       SPATC1L   23328
6908       SPATC1L   23328
6909       SPATC1L   23328
6910       SPATC1L   23328
6911         PLAC4   10008
6912         PLAC4   10008
6913         ITSN1  257461
6914         ITSN1  257461
6915         ITSN1  257461
6916         ITSN1  257461
6917         ITSN1  257461
6918         ITSN1  257461
6919         ITSN1  257461
6920         ITSN1  257461
6921         ITSN1  257461
6922         ITSN1  257461
6923         ITSN1  257461
6924         ITSN1  257461
6925         ITSN1  257461
6926         ITSN1  257461
6927         ITSN1  257461
6928         ITSN1  257461
6929         ITSN1  257461
6930         ITSN1  257461
6931         ITSN1  257461
6932         ITSN1  257461
6933         ITSN1  257461
6934         ITSN1  257461
6935         ITSN1  257461
6936         ITSN1  257461
6937         ITSN1  257461
6938         ITSN1  257461
6939         ITSN1  257461
6940         ITSN1  257461
6941         ITSN1  257461
6942         ITSN1  257461
6943         ITSN1  257461
6944         ITSN1  257461
6945         ITSN1  257461
6946         ITSN1  257461
6947         ITSN1  257461
6948         ITSN1  257461
6949         ITSN1  257461
6950         ITSN1  257461
6951         ITSN1  257461
6952         ITSN1  257461
6953         ITSN1  257461
6954         ITSN1  257461
6955         ITSN1  257461
6956         ITSN1  257461
6957         ITSN1  257461
6958         ITSN1  257461
6959         ITSN1  257461
6960         ITSN1  257461
6961         ITSN1  257461
6962         ITSN1  257461
6963         ITSN1  257461
6964         ITSN1  257461
6965         ITSN1  257461
6966         ITSN1  257461
6967         ITSN1  257461
6968         ITSN1  257461
6969         ITSN1  257461
6970         ITSN1  257461
6971         ITSN1  257461
6972         ITSN1  257461
6973         ITSN1  257461
6974         ITSN1  257461
6975         ITSN1  257461
6976         ITSN1  257461
6977         ITSN1  257461
6978         ITSN1  257461
6979         ITSN1  257461
6980         ITSN1  257461
6981         ITSN1  257461
6982         ITSN1  257461
6983         ITSN1  257461
6984         ITSN1  257461
6985         ITSN1  257461
6986         ITSN1  257461
6987         ITSN1  257461
6988         ITSN1  257461
6989         ITSN1  257461
6990         ITSN1  257461
6991         ITSN1  257461
6992         ITSN1  257461
6993         ITSN1  257461
6994         ITSN1  257461
6995         ITSN1  257461
6996         ITSN1  257461
6997         ITSN1  257461
6998         ITSN1  257461
6999         ITSN1  257461
7000         ITSN1  257461
7001         ITSN1  257461
7002         ITSN1  257461
7003         ITSN1  257461
7004         ITSN1  257461
7005         ITSN1  257461
7006         ITSN1  257461
7007         ITSN1  257461
7008         ITSN1  257461
7009         ITSN1  257461
7010         ITSN1  257461
7011         ITSN1  257461
7012         ITSN1  257461
7013         ITSN1  257461
7014         ITSN1  257461
7015         ITSN1  257461
7016         ITSN1  257461
7017         ITSN1  257461
7018         ITSN1  257461
7019         ITSN1  257461
7020         ITSN1  257461
7021         ITSN1  257461
7022         ITSN1  257461
7023         ITSN1  257461
7024         ITSN1  257461
7025         ITSN1  257461
7026         ITSN1  257461
7027         ITSN1  257461
7028         ITSN1  257461
7029         ITSN1  257461
7030         ITSN1  257461
7031         ITSN1  257461
7032         ITSN1  257461
7033         ITSN1  257461
7034         ITSN1  257461
7035         ITSN1  257461
7036         ITSN1  257461
7037         ITSN1  257461
7038         ITSN1  257461
7039         ITSN1  257461
7040         ITSN1  257461
7041         ITSN1  257461
7042         ITSN1  257461
7043         ITSN1  257461
7044         ITSN1  257461
7045         ITSN1  257461
7046         ITSN1  257461
7047         ITSN1  257461
7048         ITSN1  257461
7049         ITSN1  257461
7050         ITSN1  257461
7051         ITSN1  257461
7052         ITSN1  257461
7053         ITSN1  257461
7054         ITSN1  257461
7055         ITSN1  257461
7056         ITSN1  257461
7057         ITSN1  257461
7058         ITSN1  257461
7059         ITSN1  257461
7060         ITSN1  257461
7061         ITSN1  257461
7062         ITSN1  257461
7063         ITSN1  257461
7064         ITSN1  257461
7065         ITSN1  257461
7066         ITSN1  257461
7067         ITSN1  257461
7068         ITSN1  257461
7069         ITSN1  257461
7070         ITSN1  257461
7071         ITSN1  257461
7072         ITSN1  257461
7073         ITSN1  257461
7074         ITSN1  257461
7075         ITSN1  257461
7076         ITSN1  257461
7077         ITSN1  257461
7078         ITSN1  257461
7079         ITSN1  257461
7080         ITSN1  257461
7081         ITSN1  257461
7082         ITSN1  257461
7083         ITSN1  257461
7084         ITSN1  257461
7085         ITSN1  257461
7086         ITSN1  257461
7087         ITSN1  257461
7088         ITSN1  257461
7089         ITSN1  257461
7090         ITSN1  257461
7091         ITSN1  257461
7092         ITSN1  257461
7093         ITSN1  257461
7094         ITSN1  257461
7095         ITSN1  257461
7096         ITSN1  257461
7097         ITSN1  257461
7098         ITSN1  257461
7099         ITSN1  257461
7100         ITSN1  257461
7101         ITSN1  257461
7102         ITSN1  257461
7103         ITSN1  257461
7104         ITSN1  257461
7105         ITSN1  257461
7106         ITSN1  257461
7107         ITSN1  257461
7108         ITSN1  257461
7109         ITSN1  257461
7110         ITSN1  257461
7111         ITSN1  257461
7112         ITSN1  257461
7113         ITSN1  257461
7114         ITSN1  257461
7115         ITSN1  257461
7116         ITSN1  257461
7117         ITSN1  257461
7118         ITSN1  257461
7119         ITSN1  257461
7120         ITSN1  257461
7121         ITSN1  257461
7122         ITSN1  257461
7123         ITSN1  257461
7124         ITSN1  257461
7125         ITSN1  257461
7126         ITSN1  257461
7127         ITSN1  257461
7128         ITSN1  257461
7129         ITSN1  257461
7130         ITSN1  257461
7131         ITSN1  257461
7132         ITSN1  257461
7133         ITSN1  257461
7134         ITSN1  257461
7135         ITSN1  257461
7136         ITSN1  257461
7137         ITSN1  257461
7138         ITSN1  257461
7139         ITSN1  257461
7140         ITSN1  257461
7141         ITSN1  257461
7142         ITSN1  257461
7143         ITSN1  257461
7144         ITSN1  257461
7145         ITSN1  257461
7146         ITSN1  257461
7147         ITSN1  257461
7148         ITSN1  257461
7149         ITSN1  257461
7150         ITSN1  257461
7151         ITSN1  257461
7152         ITSN1  257461
7153         ITSN1  257461
7154         ITSN1  257461
7155         ITSN1  257461
7156         ITSN1  257461
7157         ITSN1  257461
7158         ITSN1  257461
7159         ITSN1  257461
7160         ITSN1  257461
7161         ITSN1  257461
7162         ITSN1  257461
7163         ITSN1  257461
7164         ITSN1  257461
7165         ITSN1  257461
7166         ITSN1  257461
7167         ITSN1  257461
7168         ITSN1  257461
7169         ITSN1  257461
7170         ITSN1  257461
7171         ITSN1  257461
7172         ITSN1  257461
7173         ITSN1  257461
7174         ITSN1  257461
7175         ITSN1  257461
7176         ITSN1  257461
7177         ITSN1  257461
7178         ITSN1  257461
7179         ITSN1  257461
7180         ITSN1  257461
7181         ITSN1  257461
7182         ITSN1  257461
7183         ITSN1  257461
7184         ITSN1  257461
7185         ITSN1  257461
7186         ITSN1  257461
7187         ITSN1  257461
7188         ITSN1  257461
7189         ITSN1  257461
7190         ITSN1  257461
7191         ITSN1  257461
7192         ITSN1  257461
7193         ITSN1  257461
7194         ITSN1  257461
7195         ITSN1  257461
7196         ITSN1  257461
7197         ITSN1  257461
7198         ITSN1  257461
7199         ITSN1  257461
7200         ITSN1  257461
7201         ITSN1  257461
7202         ITSN1  257461
7203         ITSN1  257461
7204         ITSN1  257461
7205         ITSN1  257461
7206         ITSN1  257461
7207         ITSN1  257461
7208         ITSN1  257461
7209         ITSN1  257461
7210         ITSN1  257461
7211         ITSN1  257461
7212         ITSN1  257461
7213         ITSN1  257461
7214         ITSN1  257461
7215         ITSN1  257461
7216         ITSN1  257461
7217         ITSN1  257461
7218         ITSN1  257461
7219         ITSN1  257461
7220         ITSN1  257461
7221         ITSN1  257461
7222         ITSN1  257461
7223         ITSN1  257461
7224         ITSN1  257461
7225         ITSN1  257461
7226         ITSN1  257461
7227         ITSN1  257461
7228         ITSN1  257461
7229         ITSN1  257461
7230         ITSN1  257461
7231         ITSN1  257461
7232         ITSN1  257461
7233         ITSN1  257461
7234         ITSN1  257461
7235         ITSN1  257461
7236         ITSN1  257461
7237         ITSN1  257461
7238         ITSN1  257461
7239         ITSN1  257461
7240         ITSN1  257461
7241         ITSN1  257461
7242         ITSN1  257461
7243         ITSN1  257461
7244         ITSN1  257461
7245         ITSN1  257461
7246         ITSN1  257461
7247         ITSN1  257461
7248         ITSN1  257461
7249         ITSN1  257461
7250         ITSN1  257461
7251         ITSN1  257461
7252         ITSN1  257461
7253         ITSN1  257461
7254         ITSN1  257461
7255         ITSN1  257461
7256         ITSN1  257461
7257         ITSN1  257461
7258         ITSN1  257461
7259         ITSN1  257461
7260         ITSN1  257461
7261         ITSN1  257461
7262         ITSN1  257461
7263         ITSN1  257461
7264         ITSN1  257461
7265         ITSN1  257461
7266         ITSN1  257461
7267         ITSN1  257461
7268         ITSN1  257461
7269         ITSN1  257461
7270         ITSN1  257461
7271         ITSN1  257461
7272         ITSN1  257461
7273         ITSN1  257461
7274         ITSN1  257461
7275         ITSN1  257461
7276         ITSN1  257461
7277         ITSN1  257461
7278         ITSN1  257461
7279         ITSN1  257461
7280         ITSN1  257461
7281         ITSN1  257461
7282         ITSN1  257461
7283         ITSN1  257461
7284         ITSN1  257461
7285         ITSN1  257461
7286         ITSN1  257461
7287         ITSN1  257461
7288         ITSN1  257461
7289         ITSN1  257461
7290         ITSN1  257461
7291         ITSN1  257461
7292         ITSN1  257461
7293         ITSN1  257461
7294         ITSN1  257461
7295         ITSN1  257461
7296         ITSN1  257461
7297         ITSN1  257461
7298         ITSN1  257461
7299         ITSN1  257461
7300         ITSN1  257461
7301         ITSN1  257461
7302         ITSN1  257461
7303         ITSN1  257461
7304         ITSN1  257461
7305         ITSN1  257461
7306         ITSN1  257461
7307         ITSN1  257461
7308         ITSN1  257461
7309         ITSN1  257461
7310         ITSN1  257461
7311         ITSN1  257461
7312         ITSN1  257461
7313         ITSN1  257461
7314         ITSN1  257461
7315         ITSN1  257461
7316         ITSN1  257461
7317         ITSN1  257461
7318         ITSN1  257461
7319         ITSN1  257461
7320         ITSN1  257461
7321         ITSN1  257461
7322                  2455
7323        MYL6P1     452
7324                  3954
7325                  5187
7326                  5187
7327                  5187
7328         CYYR1  107075
7329         CYYR1  107075
7330         CYYR1  107075
7331         CYYR1  107075
7332         CYYR1  107075
7333         CYYR1  107075
7334         CYYR1  107075
7335         CYYR1  107075
7336                 93146
7337                 93146
7338                 93146
7339                 93146
7340                 93146
7341                 93146
7342                 93146
7343                 93146
7344                 93146
7345                 93146
7346                 93146
7347                 93146
7348                 93146
7349                 93146
7350      POLR2CP1     764
7351      HUNK-AS1     816
7352      HUNK-AS1     816
7353          HUNK  171318
7354          HUNK  171318
7355          HUNK  171318
7356          HUNK  171318
7357          HUNK  171318
7358          HUNK  171318
7359          HUNK  171318
7360          HUNK  171318
7361          HUNK  171318
7362          HUNK  171318
7363          HUNK  171318
7364          HUNK  171318
7365          HUNK  171318
7366          HUNK  171318
7367          HUNK  171318
7368          HUNK  171318
7369          HUNK  171318
7370          HUNK  171318
7371          HUNK  171318
7372          HUNK  171318
7373          HUNK  171318
7374          HUNK  171318
7375          HUNK  171318
7376          HUNK  171318
7377     LINC00114    8439
7378     LINC00114    8439
7379     LINC00114    8439
7380     LINC00114    8439
7381     LINC00114    8439
7382     LINC00114    8439
7383     LINC00114    8439
7384     LINC00114    8439
7385     LINC00114    8439
7386     LINC00114    8439
7387     LINC00114    8439
7388     LINC00114    8439
7389     LINC00114    8439
7390     LINC00114    8439
7391     LINC00114    8439
7392                  3206
7393                  3206
7394                  3206
7395        IFNAR2   35774
7396        IFNAR2   35774
7397        IFNAR2   35774
7398        IFNAR2   35774
7399        IFNAR2   35774
7400        IFNAR2   35774
7401        IFNAR2   35774
7402        IFNAR2   35774
7403        IFNAR2   35774
7404        IFNAR2   35774
7405        IFNAR2   35774
7406        IFNAR2   35774
7407        IFNAR2   35774
7408        IFNAR2   35774
7409        IFNAR2   35774
7410        IFNAR2   35774
7411        IFNAR2   35774
7412        IFNAR2   35774
7413        IFNAR2   35774
7414        IFNAR2   35774
7415        IFNAR2   35774
7416        IFNAR2   35774
7417        IFNAR2   35774
7418        IFNAR2   35774
7419        IFNAR2   35774
7420        IFNAR2   35774
7421        IFNAR2   35774
7422        IFNAR2   35774
7423        IFNAR2   35774
7424        IFNAR2   35774
7425        IFNAR2   35774
7426        IFNAR2   35774
7427        IFNAR2   35774
7428        IFNAR2   35774
7429        IFNAR2   35774
7430        IFNAR2   35774
7431        IFNAR2   35774
7432        IFNAR2   35774
7433        IFNAR2   35774
7434        IFNAR2   35774
7435        IFNAR2   35774
7436        IFNAR2   35774
7437        IFNAR2   35774
7438        IFNAR2   35774
7439        IFNAR2   35774
7440        IFNAR2   35774
7441        IFNAR2   35774
7442        IFNAR2   35774
7443        IFNAR2   35774
7444        IFNAR2   35774
7445        IFNAR2   35774
7446        IFNAR2   35774
7447        IFNAR2   35774
7448        IFNAR2   35774
7449        IFNAR2   35774
7450        IFNAR2   35774
7451        IFNAR2   35774
7452        IFNAR2   35774
7453        IFNAR2   35774
7454        IFNAR2   35774
7455        IFNAR2   35774
7456        IFNAR2   35774
7457        IFNAR2   35774
7458        IFNAR2   35774
7459        IFNAR2   35774
7460        IFNAR2   35774
7461        IFNAR2   35774
7462        IFNAR2   35774
7463        IFNAR2   35774
7464        IFNAR2   35774
7465        IFNAR2   35774
7466        IFNAR2   35774
7467        IFNAR2   35774
7468     LINC01678    1336
7469     LINC01678    1336
7470     LINC01678    1336
7471     LINC01678    1336
7472     LINC01678    1336
7473          CBSL   23171
7474          CBSL   23171
7475          CBSL   23171
7476          CBSL   23171
7477          CBSL   23171
7478          CBSL   23171
7479          CBSL   23171
7480          CBSL   23171
7481          CBSL   23171
7482          CBSL   23171
7483          CBSL   23171
7484          CBSL   23171
7485          CBSL   23171
7486          CBSL   23171
7487          CBSL   23171
7488          CBSL   23171
7489          CBSL   23171
7490          CBSL   23171
7491          CBSL   23171
7492          CBSL   23171
7493          CBSL   23171
7494          CBSL   23171
7495          CBSL   23171
7496          CBSL   23171
7497          CBSL   23171
7498          CBSL   23171
7499          CBSL   23171
7500          CBSL   23171
7501          CBSL   23171
7502          CBSL   23171
7503          CBSL   23171
7504          CBSL   23171
7505          CBSL   23171
7506          CBSL   23171
7507          CBSL   23171
7508          CBSL   23171
7509          CBSL   23171
7510          CBSL   23171
7511          CBSL   23171
7512          CBSL   23171
7513          CBSL   23171
7514          CBSL   23171
7515          CBSL   23171
7516          CBSL   23171
7517          CBSL   23171
7518          CBSL   23171
7519          CBSL   23171
7520          CBSL   23171
7521          CBSL   23171
7522          CBSL   23171
7523          CBSL   23171
7524          CBSL   23171
7525          CBSL   23171
7526          CBSL   23171
7527          CBSL   23171
7528          CBSL   23171
7529          CBSL   23171
7530          CBSL   23171
7531          CBSL   23171
7532          CBSL   23171
7533          CBSL   23171
7534          CBSL   23171
7535          CBSL   23171
7536          CBSL   23171
7537          CBSL   23171
7538          CBSL   23171
7539          CBSL   23171
7540          CBSL   23171
7541          CBSL   23171
7542          CBSL   23171
7543          CBSL   23171
7544          CBSL   23171
7545          CBSL   23171
7546          CBSL   23171
7547          CBSL   23171
7548          CBSL   23171
7549          CBSL   23171
7550          CBSL   23171
7551          CBSL   23171
7552          CBSL   23171
7553          CBSL   23171
7554          CBSL   23171
7555          CBSL   23171
7556          CBSL   23171
7557          CBSL   23171
7558          CBSL   23171
7559          CBSL   23171
7560          CBSL   23171
7561          CBSL   23171
7562          CBSL   23171
7563          CBSL   23171
7564          CBSL   23171
7565          CBSL   23171
7566          CBSL   23171
7567          CBSL   23171
7568          CBSL   23171
7569          CBSL   23171
7570          CBSL   23171
7571          CBSL   23171
7572          CBSL   23171
7573          CBSL   23171
7574          CBSL   23171
7575          CBSL   23171
7576          CBSL   23171
7577          CBSL   23171
7578          CBSL   23171
7579          CBSL   23171
7580          CBSL   23171
7581          CBSL   23171
7582          CBSL   23171
7583          CBSL   23171
7584          CBSL   23171
7585          CBSL   23171
7586          CBSL   23171
7587          CBSL   23171
7588          CBSL   23171
7589          CBSL   23171
7590          CBSL   23171
7591          CBSL   23171
7592          CBSL   23171
7593                157455
7594                157455
7595                  7555
7596                  7555
7597         PDE9A  121873
7598         PDE9A  121873
7599         PDE9A  121873
7600         PDE9A  121873
7601         PDE9A  121873
7602         PDE9A  121873
7603         PDE9A  121873
7604         PDE9A  121873
7605         PDE9A  121873
7606         PDE9A  121873
7607         PDE9A  121873
7608         PDE9A  121873
7609         PDE9A  121873
7610         PDE9A  121873
7611         PDE9A  121873
7612         PDE9A  121873
7613         PDE9A  121873
7614         PDE9A  121873
7615         PDE9A  121873
7616         PDE9A  121873
7617         PDE9A  121873
7618         PDE9A  121873
7619         PDE9A  121873
7620         PDE9A  121873
7621         PDE9A  121873
7622         PDE9A  121873
7623         PDE9A  121873
7624         PDE9A  121873
7625         PDE9A  121873
7626         PDE9A  121873
7627         PDE9A  121873
7628         PDE9A  121873
7629         PDE9A  121873
7630         PDE9A  121873
7631         PDE9A  121873
7632         PDE9A  121873
7633         PDE9A  121873
7634         PDE9A  121873
7635         PDE9A  121873
7636         PDE9A  121873
7637         PDE9A  121873
7638         PDE9A  121873
7639         PDE9A  121873
7640         PDE9A  121873
7641         PDE9A  121873
7642         PDE9A  121873
7643         PDE9A  121873
7644         PDE9A  121873
7645         PDE9A  121873
7646         PDE9A  121873
7647         PDE9A  121873
7648         PDE9A  121873
7649         PDE9A  121873
7650         PDE9A  121873
7651         PDE9A  121873
7652         PDE9A  121873
7653         PDE9A  121873
7654         PDE9A  121873
7655         PDE9A  121873
7656         PDE9A  121873
7657         PDE9A  121873
7658         PDE9A  121873
7659         PDE9A  121873
7660         PDE9A  121873
7661         PDE9A  121873
7662         PDE9A  121873
7663         PDE9A  121873
7664         PDE9A  121873
7665         PDE9A  121873
7666         PDE9A  121873
7667         PDE9A  121873
7668         PDE9A  121873
7669         PDE9A  121873
7670         PDE9A  121873
7671         PDE9A  121873
7672         PDE9A  121873
7673         PDE9A  121873
7674         PDE9A  121873
7675         PDE9A  121873
7676         PDE9A  121873
7677         PDE9A  121873
7678         PDE9A  121873
7679         PDE9A  121873
7680         PDE9A  121873
7681         PDE9A  121873
7682         PDE9A  121873
7683         PDE9A  121873
7684         PDE9A  121873
7685         PDE9A  121873
7686         PDE9A  121873
7687         PDE9A  121873
7688         PDE9A  121873
7689         PDE9A  121873
7690         PDE9A  121873
7691         PDE9A  121873
7692         PDE9A  121873
7693         PDE9A  121873
7694         PDE9A  121873
7695         PDE9A  121873
7696         PDE9A  121873
7697         PDE9A  121873
7698         PDE9A  121873
7699         PDE9A  121873
7700         PDE9A  121873
7701         PDE9A  121873
7702         PDE9A  121873
7703         PDE9A  121873
7704         PDE9A  121873
7705         PDE9A  121873
7706         PDE9A  121873
7707         PDE9A  121873
7708         PDE9A  121873
7709         PDE9A  121873
7710         PDE9A  121873
7711         PDE9A  121873
7712         PDE9A  121873
7713         PDE9A  121873
7714         PDE9A  121873
7715         PDE9A  121873
7716         PDE9A  121873
7717         PDE9A  121873
7718         PDE9A  121873
7719         PDE9A  121873
7720         PDE9A  121873
7721         PDE9A  121873
7722         PDE9A  121873
7723         PDE9A  121873
7724         PDE9A  121873
7725         PDE9A  121873
7726         PDE9A  121873
7727         PDE9A  121873
7728         PDE9A  121873
7729         PDE9A  121873
7730         PDE9A  121873
7731         PDE9A  121873
7732         PDE9A  121873
7733         PDE9A  121873
7734         PDE9A  121873
7735         PDE9A  121873
7736         PDE9A  121873
7737         PDE9A  121873
7738         PDE9A  121873
7739         PDE9A  121873
7740         PDE9A  121873
7741         PDE9A  121873
7742         PDE9A  121873
7743         PDE9A  121873
7744         PDE9A  121873
7745         PDE9A  121873
7746         PDE9A  121873
7747         PDE9A  121873
7748         PDE9A  121873
7749         PDE9A  121873
7750         PDE9A  121873
7751         PDE9A  121873
7752         PDE9A  121873
7753         PDE9A  121873
7754         PDE9A  121873
7755         PDE9A  121873
7756         PDE9A  121873
7757         PDE9A  121873
7758         PDE9A  121873
7759         PDE9A  121873
7760         PDE9A  121873
7761         PDE9A  121873
7762         PDE9A  121873
7763         PDE9A  121873
7764         PDE9A  121873
7765         PDE9A  121873
7766         PDE9A  121873
7767         PDE9A  121873
7768         PDE9A  121873
7769         PDE9A  121873
7770         PDE9A  121873
7771         PDE9A  121873
7772         PDE9A  121873
7773         PDE9A  121873
7774         PDE9A  121873
7775         PDE9A  121873
7776         PDE9A  121873
7777         PDE9A  121873
7778         PDE9A  121873
7779         PDE9A  121873
7780         PDE9A  121873
7781         PDE9A  121873
7782         PDE9A  121873
7783         PDE9A  121873
7784         PDE9A  121873
7785         PDE9A  121873
7786         PDE9A  121873
7787         PDE9A  121873
7788         PDE9A  121873
7789         PDE9A  121873
7790         PDE9A  121873
7791         PDE9A  121873
7792         PDE9A  121873
7793         PDE9A  121873
7794         PDE9A  121873
7795         PDE9A  121873
7796         PDE9A  121873
7797         PDE9A  121873
7798         PDE9A  121873
7799         PDE9A  121873
7800         PDE9A  121873
7801         PDE9A  121873
7802         PDE9A  121873
7803         PDE9A  121873
7804         PDE9A  121873
7805         PDE9A  121873
7806         PDE9A  121873
7807         PDE9A  121873
7808         PDE9A  121873
7809         PDE9A  121873
7810         PDE9A  121873
7811         PDE9A  121873
7812         PDE9A  121873
7813         PDE9A  121873
7814         PDE9A  121873
7815         PDE9A  121873
7816         PDE9A  121873
7817         PDE9A  121873
7818         PDE9A  121873
7819         PDE9A  121873
7820         PDE9A  121873
7821         PDE9A  121873
7822         PDE9A  121873
7823         PDE9A  121873
7824         PDE9A  121873
7825         PDE9A  121873
7826         PDE9A  121873
7827         PDE9A  121873
7828         PDE9A  121873
7829         PDE9A  121873
7830         PDE9A  121873
7831         PDE9A  121873
7832         PDE9A  121873
7833         PDE9A  121873
7834         PDE9A  121873
7835         PDE9A  121873
7836         PDE9A  121873
7837         PDE9A  121873
7838         PDE9A  121873
7839         PDE9A  121873
7840         PDE9A  121873
7841         PDE9A  121873
7842         PDE9A  121873
7843         PDE9A  121873
7844         PDE9A  121873
7845         PDE9A  121873
7846         PDE9A  121873
7847         PDE9A  121873
7848         PDE9A  121873
7849         PDE9A  121873
7850         PDE9A  121873
7851         PDE9A  121873
7852         PDE9A  121873
7853         PDE9A  121873
7854         PDE9A  121873
7855         PDE9A  121873
7856         PDE9A  121873
7857         PDE9A  121873
7858         PDE9A  121873
7859         PDE9A  121873
7860         PDE9A  121873
7861         PDE9A  121873
7862         PDE9A  121873
7863         PDE9A  121873
7864         PDE9A  121873
7865         PDE9A  121873
7866         PDE9A  121873
7867         PDE9A  121873
7868         PDE9A  121873
7869         PDE9A  121873
7870         PDE9A  121873
7871         PDE9A  121873
7872         PDE9A  121873
7873         PDE9A  121873
7874         PDE9A  121873
7875         PDE9A  121873
7876         PDE9A  121873
7877         PDE9A  121873
7878         PDE9A  121873
7879         PDE9A  121873
7880         PDE9A  121873
7881         PDE9A  121873
7882         PDE9A  121873
7883         PDE9A  121873
7884         PDE9A  121873
7885         PDE9A  121873
7886         PDE9A  121873
7887         PDE9A  121873
7888         PDE9A  121873
7889         PDE9A  121873
7890         PDE9A  121873
7891         PDE9A  121873
7892         PDE9A  121873
7893         PDE9A  121873
7894         PDE9A  121873
7895         PDE9A  121873
7896         PDE9A  121873
7897         PDE9A  121873
7898         PDE9A  121873
7899         PDE9A  121873
7900         PDE9A  121873
7901         PDE9A  121873
7902         PDE9A  121873
7903         PDE9A  121873
7904         PDE9A  121873
7905         PDE9A  121873
7906         PDE9A  121873
7907         PDE9A  121873
7908         PDE9A  121873
7909         PDE9A  121873
7910         PDE9A  121873
7911         PDE9A  121873
7912         PDE9A  121873
7913         PDE9A  121873
7914         PDE9A  121873
7915         PDE9A  121873
7916         PDE9A  121873
7917         PDE9A  121873
7918         PDE9A  121873
7919         PDE9A  121873
7920         PDE9A  121873
7921         PDE9A  121873
7922         PDE9A  121873
7923         PDE9A  121873
7924         PDE9A  121873
7925         PDE9A  121873
7926         PDE9A  121873
7927         PDE9A  121873
7928         PDE9A  121873
7929         PDE9A  121873
7930         PDE9A  121873
7931         PDE9A  121873
7932         PDE9A  121873
7933         PDE9A  121873
7934         PDE9A  121873
7935         PDE9A  121873
7936         PDE9A  121873
7937         PDE9A  121873
7938         PDE9A  121873
7939         PDE9A  121873
7940         PDE9A  121873
7941         PDE9A  121873
7942         PDE9A  121873
7943         PDE9A  121873
7944         PDE9A  121873
7945         PDE9A  121873
7946         PDE9A  121873
7947         PDE9A  121873
7948         PDE9A  121873
7949         PDE9A  121873
7950         PDE9A  121873
7951         PDE9A  121873
7952         PDE9A  121873
7953         PDE9A  121873
7954         PDE9A  121873
7955         PDE9A  121873
7956         PDE9A  121873
7957         PDE9A  121873
7958         PDE9A  121873
7959         PDE9A  121873
7960         PDE9A  121873
7961         PDE9A  121873
7962         PDE9A  121873
7963         PDE9A  121873
7964         PDE9A  121873
7965         PDE9A  121873
7966         PDE9A  121873
7967         PDE9A  121873
7968         PDE9A  121873
7969         PDE9A  121873
7970         PDE9A  121873
7971         PDE9A  121873
7972         PDE9A  121873
7973         PDE9A  121873
7974         PDE9A  121873
7975         PDE9A  121873
7976         PDE9A  121873
7977         PDE9A  121873
7978         PDE9A  121873
7979         PDE9A  121873
7980         PDE9A  121873
7981         PDE9A  121873
7982         PDE9A  121873
7983         PDE9A  121873
7984         PDE9A  121873
7985         PDE9A  121873
7986         PDE9A  121873
7987         PDE9A  121873
7988         PDE9A  121873
7989         PDE9A  121873
7990         PDE9A  121873
7991         PDE9A  121873
7992         PDE9A  121873
7993         PDE9A  121873
7994         PDE9A  121873
7995         PDE9A  121873
7996         PDE9A  121873
7997         PDE9A  121873
7998         PDE9A  121873
7999         PDE9A  121873
8000         PDE9A  121873
8001         PDE9A  121873
8002         PDE9A  121873
8003         PDE9A  121873
8004         PDE9A  121873
8005         PDE9A  121873
8006         PDE9A  121873
8007         PDE9A  121873
8008         PDE9A  121873
8009         PDE9A  121873
8010         PDE9A  121873
8011         PDE9A  121873
8012         PDE9A  121873
8013         PDE9A  121873
8014         PDE9A  121873
8015         PDE9A  121873
8016         PDE9A  121873
8017         PDE9A  121873
8018         PDE9A  121873
8019         RSPH1   23868
8020         RSPH1   23868
8021         RSPH1   23868
8022         RSPH1   23868
8023         RSPH1   23868
8024         RSPH1   23868
8025         RSPH1   23868
8026         RSPH1   23868
8027         RSPH1   23868
8028         RSPH1   23868
8029         RSPH1   23868
8030         RSPH1   23868
8031         RSPH1   23868
8032         RSPH1   23868
8033         RSPH1   23868
8034         RSPH1   23868
8035         RSPH1   23868
8036         RSPH1   23868
8037         RSPH1   23868
8038         RSPH1   23868
8039         RSPH1   23868
8040         RSPH1   23868
8041         RSPH1   23868
8042         RSPH1   23868
8043         RSPH1   23868
8044       RPL34P3     337
8045       RPS20P1     353
8046                 19803
8047                 19803
8048         RUNX1 1216866
8049         RUNX1 1216866
8050         RUNX1 1216866
8051         RUNX1 1216866
8052         RUNX1 1216866
8053         RUNX1 1216866
8054         RUNX1 1216866
8055         RUNX1 1216866
8056         RUNX1 1216866
8057         RUNX1 1216866
8058         RUNX1 1216866
8059         RUNX1 1216866
8060         RUNX1 1216866
8061         RUNX1 1216866
8062         RUNX1 1216866
8063         RUNX1 1216866
8064         RUNX1 1216866
8065         RUNX1 1216866
8066         RUNX1 1216866
8067         RUNX1 1216866
8068         RUNX1 1216866
8069         RUNX1 1216866
8070         RUNX1 1216866
8071         RUNX1 1216866
8072         RUNX1 1216866
8073         RUNX1 1216866
8074         RUNX1 1216866
8075         RUNX1 1216866
8076         RUNX1 1216866
8077         RUNX1 1216866
8078         RUNX1 1216866
8079         RUNX1 1216866
8080         RUNX1 1216866
8081         RUNX1 1216866
8082         RUNX1 1216866
8083         RUNX1 1216866
8084         RUNX1 1216866
8085         RUNX1 1216866
8086         RUNX1 1216866
8087         RUNX1 1216866
8088         RUNX1 1216866
8089         RUNX1 1216866
8090         RUNX1 1216866
8091         RUNX1 1216866
8092         RUNX1 1216866
8093         RUNX1 1216866
8094         RUNX1 1216866
8095         RUNX1 1216866
8096         RUNX1 1216866
8097         RUNX1 1216866
8098         RUNX1 1216866
8099         RUNX1 1216866
8100         RUNX1 1216866
8101         RUNX1 1216866
8102         RUNX1 1216866
8103         RUNX1 1216866
8104         RUNX1 1216866
8105         RUNX1 1216866
8106         RUNX1 1216866
8107         RUNX1 1216866
8108         RUNX1 1216866
8109         RUNX1 1216866
8110         RUNX1 1216866
8111         RUNX1 1216866
8112         RUNX1 1216866
8113         RUNX1 1216866
8114         RUNX1 1216866
8115         RUNX1 1216866
8116         RUNX1 1216866
8117         RUNX1 1216866
8118         RUNX1 1216866
8119         RUNX1 1216866
8120         RUNX1 1216866
8121         RUNX1 1216866
8122         RUNX1 1216866
8123         RUNX1 1216866
8124         RUNX1 1216866
8125         RUNX1 1216866
8126         RUNX1 1216866
8127         RUNX1 1216866
8128         RUNX1 1216866
8129         RUNX1 1216866
8130         RUNX1 1216866
8131       MEMO1P1     887
8132                 17357
8133                 17357
8134                 17357
8135                 17357
8136         AATBC    6809
8137         AATBC    6809
8138         AATBC    6809
8139         AATBC    6809
8140         AATBC    6809
8141         AATBC    6809
8142         AATBC    6809
8143         AATBC    6809
8144                   311
8145      URB1-AS1     830
8146          PDXK   43213
8147          PDXK   43213
8148          PDXK   43213
8149          PDXK   43213
8150          PDXK   43213
8151          PDXK   43213
8152          PDXK   43213
8153          PDXK   43213
8154          PDXK   43213
8155          PDXK   43213
8156          PDXK   43213
8157          PDXK   43213
8158          PDXK   43213
8159          PDXK   43213
8160          PDXK   43213
8161          PDXK   43213
8162          PDXK   43213
8163          PDXK   43213
8164          PDXK   43213
8165          PDXK   43213
8166          PDXK   43213
8167          PDXK   43213
8168          PDXK   43213
8169          PDXK   43213
8170          PDXK   43213
8171          PDXK   43213
8172          PDXK   43213
8173          PDXK   43213
8174          PDXK   43213
8175          PDXK   43213
8176          PDXK   43213
8177          PDXK   43213
8178          PDXK   43213
8179          PDXK   43213
8180          PDXK   43213
8181          PDXK   43213
8182          PDXK   43213
8183          PDXK   43213
8184          PDXK   43213
8185          PDXK   43213
8186          PDXK   43213
8187          PDXK   43213
8188          PDXK   43213
8189          PDXK   43213
8190          PDXK   43213
8191          PDXK   43213
8192          PDXK   43213
8193          PDXK   43213
8194          PDXK   43213
8195          PDXK   43213
8196          PDXK   43213
8197          PDXK   43213
8198          PDXK   43213
8199          PDXK   43213
8200          PDXK   43213
8201          PDXK   43213
8202          PDXK   43213
8203          PDXK   43213
8204          PDXK   43213
8205          PDXK   43213
8206          PDXK   43213
8207          PDXK   43213
8208          PDXK   43213
8209          PDXK   43213
8210          PDXK   43213
8211          PDXK   43213
8212          PDXK   43213
8213          PDXK   43213
8214          PDXK   43213
8215          PDXK   43213
8216          PDXK   43213
8217          PDXK   43213
8218          PDXK   43213
8219          PDXK   43213
8220          PDXK   43213
8221          PDXK   43213
8222          PDXK   43213
8223          PDXK   43213
8224          PDXK   43213
8225          PDXK   43213
8226          PDXK   43213
8227          PDXK   43213
8228          PDXK   43213
8229          PDXK   43213
8230          PDXK   43213
8231          PDXK   43213
8232          PDXK   43213
8233          PDXK   43213
8234          PDXK   43213
8235          PDXK   43213
8236          PDXK   43213
8237          PDXK   43213
8238          PDXK   43213
8239          PDXK   43213
8240          PDXK   43213
8241          PDXK   43213
8242          PDXK   43213
8243          PDXK   43213
8244          PDXK   43213
8245          PDXK   43213
8246          PDXK   43213
8247          PDXK   43213
8248          PDXK   43213
8249          PDXK   43213
8250          PDXK   43213
8251          PDXK   43213
8252          PDXK   43213
8253          PDXK   43213
8254          PDXK   43213
8255          PDXK   43213
8256          PDXK   43213
8257          PDXK   43213
8258          PDXK   43213
8259          PDXK   43213
8260          PDXK   43213
8261          PDXK   43213
8262          PDXK   43213
8263          PDXK   43213
8264          PDXK   43213
8265          PDXK   43213
8266          PDXK   43213
8267          PDXK   43213
8268     BACH1-IT2    3212
8269     BACH1-IT2    3212
8270     BACH1-IT2    3212
8271     BACH1-IT2    3212
8272     BACH1-IT2    3212
8273     BACH1-IT2    3212
8274     BACH1-IT2    3212
8275     BACH1-IT2    3212
8276                  3765
8277                  3765
8278                  3765
8279                  3765
8280                  3765
8281                  3765
8282                  3765
8283                  3765
8284                  3784
8285                  3784
8286                  3784
8287                  3784
8288                  3784
8289                  3784
8290                  3784
8291                  3784
8292                  3784
8293                  1406
8294                  1406
8295          PIGP   14000
8296          PIGP   14000
8297          PIGP   14000
8298          PIGP   14000
8299          PIGP   14000
8300          PIGP   14000
8301          PIGP   14000
8302          PIGP   14000
8303          PIGP   14000
8304          PIGP   14000
8305          PIGP   14000
8306          PIGP   14000
8307          PIGP   14000
8308          PIGP   14000
8309          PIGP   14000
8310          PIGP   14000
8311          PIGP   14000
8312          PIGP   14000
8313          PIGP   14000
8314          PIGP   14000
8315          PIGP   14000
8316          PIGP   14000
8317          PIGP   14000
8318          PIGP   14000
8319          PIGP   14000
8320          PIGP   14000
8321          PIGP   14000
8322          PIGP   14000
8323          PIGP   14000
8324          PIGP   14000
8325          PIGP   14000
8326          PIGP   14000
8327          PIGP   14000
8328                  7043
8329                  7043
8330                  7043
8331                  7043
8332                  7043
8333                  7043
8334                  7043
8335     MSANTD2P1    1851
8336     MSANTD2P1    1851
8337     MSANTD2P1    1851
8338                  1418
8339                  1418
8340                  1418
8341                 31291
8342                 31291
8343                 31291
8344                 31291
8345                 31291
8346                 48674
8347                 48674
8348         SETD4   44848
8349         SETD4   44848
8350         SETD4   44848
8351         SETD4   44848
8352         SETD4   44848
8353         SETD4   44848
8354         SETD4   44848
8355         SETD4   44848
8356         SETD4   44848
8357         SETD4   44848
8358         SETD4   44848
8359         SETD4   44848
8360         SETD4   44848
8361         SETD4   44848
8362         SETD4   44848
8363         SETD4   44848
8364         SETD4   44848
8365         SETD4   44848
8366         SETD4   44848
8367         SETD4   44848
8368         SETD4   44848
8369         SETD4   44848
8370         SETD4   44848
8371         SETD4   44848
8372         SETD4   44848
8373         SETD4   44848
8374         SETD4   44848
8375         SETD4   44848
8376         SETD4   44848
8377         SETD4   44848
8378         SETD4   44848
8379         SETD4   44848
8380         SETD4   44848
8381         SETD4   44848
8382         SETD4   44848
8383         SETD4   44848
8384         SETD4   44848
8385         SETD4   44848
8386         SETD4   44848
8387         SETD4   44848
8388         SETD4   44848
8389         SETD4   44848
8390         SETD4   44848
8391         SETD4   44848
8392         SETD4   44848
8393         SETD4   44848
8394         SETD4   44848
8395         SETD4   44848
8396         SETD4   44848
8397         SETD4   44848
8398         SETD4   44848
8399         SETD4   44848
8400         SETD4   44848
8401         SETD4   44848
8402         SETD4   44848
8403         SETD4   44848
8404         SETD4   44848
8405         SETD4   44848
8406         SETD4   44848
8407         SETD4   44848
8408         SETD4   44848
8409         SETD4   44848
8410         SETD4   44848
8411         SETD4   44848
8412         SETD4   44848
8413         SETD4   44848
8414         SETD4   44848
8415         SETD4   44848
8416         SETD4   44848
8417         SETD4   44848
8418         SETD4   44848
8419         SETD4   44848
8420         SETD4   44848
8421         SETD4   44848
8422         SETD4   44848
8423         SETD4   44848
8424         SETD4   44848
8425         SETD4   44848
8426         SETD4   44848
8427         SETD4   44848
8428         SETD4   44848
8429         SETD4   44848
8430         SETD4   44848
8431         SETD4   44848
8432         SETD4   44848
8433         SETD4   44848
8434         SETD4   44848
8435         SETD4   44848
8436         SETD4   44848
8437         SETD4   44848
8438         SETD4   44848
8439         SETD4   44848
8440         SETD4   44848
8441         SETD4   44848
8442         SETD4   44848
8443         SETD4   44848
8444         SETD4   44848
8445         SETD4   44848
8446         SETD4   44848
8447         SETD4   44848
8448         SETD4   44848
8449         SETD4   44848
8450         SETD4   44848
8451         SETD4   44848
8452         SETD4   44848
8453         SETD4   44848
8454         SETD4   44848
8455         SETD4   44848
8456         SETD4   44848
8457         SETD4   44848
8458         SETD4   44848
8459         SETD4   44848
8460         SETD4   44848
8461         SETD4   44848
8462         SETD4   44848
8463         SETD4   44848
8464         SETD4   44848
8465         SETD4   44848
8466         SETD4   44848
8467         SETD4   44848
8468                   210
8469       RPS3AP1     319
8470       KRT18P2    1257
8471       C1QBPP1     769
8472         MORC3   65959
8473         MORC3   65959
8474         MORC3   65959
8475         MORC3   65959
8476         MORC3   65959
8477         MORC3   65959
8478         MORC3   65959
8479         MORC3   65959
8480         MORC3   65959
8481         MORC3   65959
8482         MORC3   65959
8483         MORC3   65959
8484         MORC3   65959
8485         MORC3   65959
8486         MORC3   65959
8487         MORC3   65959
8488         MORC3   65959
8489         MORC3   65959
8490         MORC3   65959
8491         MORC3   65959
8492         MORC3   65959
8493         MORC3   65959
8494         MORC3   65959
8495         MORC3   65959
8496         MORC3   65959
8497         MORC3   65959
8498         MORC3   65959
8499         MORC3   65959
8500         MORC3   65959
8501         MORC3   65959
8502         MORC3   65959
8503         MORC3   65959
8504         MORC3   65959
8505         MORC3   65959
8506         MORC3   65959
8507         MORC3   65959
8508         MORC3   65959
8509         MORC3   65959
8510         MORC3   65959
8511         MORC3   65959
8512         MORC3   65959
8513         MORC3   65959
8514         MORC3   65959
8515         MORC3   65959
8516         MORC3   65959
8517         MORC3   65959
8518         MORC3   65959
8519         MORC3   65959
8520         MORC3   65959
8521         MORC3   65959
8522         MORC3   65959
8523         MORC3   65959
8524         MORC3   65959
8525         MORC3   65959
8526         MORC3   65959
8527         MORC3   65959
8528         MORC3   65959
8529         MORC3   65959
8530         MORC3   65959
8531         MORC3   65959
8532         MORC3   65959
8533         MORC3   65959
8534         MORC3   65959
8535         MORC3   65959
8536         MORC3   65959
8537         MORC3   65959
8538         MORC3   65959
8539         MORC3   65959
8540         MORC3   65959
8541         MORC3   65959
8542         MORC3   65959
8543         MORC3   65959
8544         MORC3   65959
8545         MORC3   65959
8546         MORC3   65959
8547         MORC3   65959
8548         MORC3   65959
8549         MORC3   65959
8550         MORC3   65959
8551         MORC3   65959
8552         MORC3   65959
8553         MORC3   65959
8554         MORC3   65959
8555                  1410
8556                  1410
8557        CHAF1B   33637
8558        CHAF1B   33637
8559        CHAF1B   33637
8560        CHAF1B   33637
8561        CHAF1B   33637
8562        CHAF1B   33637
8563        CHAF1B   33637
8564        CHAF1B   33637
8565        CHAF1B   33637
8566        CHAF1B   33637
8567        CHAF1B   33637
8568        CHAF1B   33637
8569        CHAF1B   33637
8570        CHAF1B   33637
8571        CHAF1B   33637
8572        CHAF1B   33637
8573        CHAF1B   33637
8574        CHAF1B   33637
8575        CHAF1B   33637
8576        CHAF1B   33637
8577        CHAF1B   33637
8578        CHAF1B   33637
8579        CHAF1B   33637
8580        CHAF1B   33637
8581      PPP1R2P2     612
8582        RPL3P1    1210
8583          RRP1   15780
8584          RRP1   15780
8585          RRP1   15780
8586          RRP1   15780
8587          RRP1   15780
8588          RRP1   15780
8589          RRP1   15780
8590          RRP1   15780
8591          RRP1   15780
8592          RRP1   15780
8593          RRP1   15780
8594          RRP1   15780
8595          RRP1   15780
8596          RRP1   15780
8597          RRP1   15780
8598          RRP1   15780
8599          RRP1   15780
8600          RRP1   15780
8601          RRP1   15780
8602          RRP1   15780
8603          RRP1   15780
8604          RRP1   15780
8605          RRP1   15780
8606          RRP1   15780
8607          RRP1   15780
8608          RRP1   15780
8609          RRP1   15780
8610          RRP1   15780
8611          RRP1   15780
8612          RRP1   15780
8613          RRP1   15780
8614          RRP1   15780
8615          RRP1   15780
8616          RRP1   15780
8617          RRP1   15780
8618          RRP1   15780
8619          RRP1   15780
8620          RRP1   15780
8621          RRP1   15780
8622          RRP1   15780
8623          RRP1   15780
8624          RRP1   15780
8625          RRP1   15780
8626          RRP1   15780
8627          RRP1   15780
8628          RRP1   15780
8629          RRP1   15780
8630          RRP1   15780
8631          RRP1   15780
8632          RRP1   15780
8633          RRP1   15780
8634                  1385
8635      TMPRSS15  216763
8636      TMPRSS15  216763
8637      TMPRSS15  216763
8638      TMPRSS15  216763
8639      TMPRSS15  216763
8640      TMPRSS15  216763
8641      TMPRSS15  216763
8642      TMPRSS15  216763
8643      TMPRSS15  216763
8644      TMPRSS15  216763
8645      TMPRSS15  216763
8646      TMPRSS15  216763
8647      TMPRSS15  216763
8648      TMPRSS15  216763
8649      TMPRSS15  216763
8650      TMPRSS15  216763
8651      TMPRSS15  216763
8652      TMPRSS15  216763
8653      TMPRSS15  216763
8654      TMPRSS15  216763
8655      TMPRSS15  216763
8656      TMPRSS15  216763
8657      TMPRSS15  216763
8658      TMPRSS15  216763
8659      TMPRSS15  216763
8660      TMPRSS15  216763
8661      TMPRSS15  216763
8662      TMPRSS15  216763
8663      TMPRSS15  216763
8664      TMPRSS15  216763
8665      TMPRSS15  216763
8666      TMPRSS15  216763
8667      TMPRSS15  216763
8668      TMPRSS15  216763
8669      TMPRSS15  216763
8670      TMPRSS15  216763
8671      TMPRSS15  216763
8672     CHODL-AS1   50592
8673     CHODL-AS1   50592
8674     CHODL-AS1   50592
8675         SYNJ1   99289
8676         SYNJ1   99289
8677         SYNJ1   99289
8678         SYNJ1   99289
8679         SYNJ1   99289
8680         SYNJ1   99289
8681         SYNJ1   99289
8682         SYNJ1   99289
8683         SYNJ1   99289
8684         SYNJ1   99289
8685         SYNJ1   99289
8686         SYNJ1   99289
8687         SYNJ1   99289
8688         SYNJ1   99289
8689         SYNJ1   99289
8690         SYNJ1   99289
8691         SYNJ1   99289
8692         SYNJ1   99289
8693         SYNJ1   99289
8694         SYNJ1   99289
8695         SYNJ1   99289
8696         SYNJ1   99289
8697         SYNJ1   99289
8698         SYNJ1   99289
8699         SYNJ1   99289
8700         SYNJ1   99289
8701         SYNJ1   99289
8702         SYNJ1   99289
8703         SYNJ1   99289
8704         SYNJ1   99289
8705         SYNJ1   99289
8706         SYNJ1   99289
8707         SYNJ1   99289
8708         SYNJ1   99289
8709         SYNJ1   99289
8710         SYNJ1   99289
8711         SYNJ1   99289
8712         SYNJ1   99289
8713         SYNJ1   99289
8714         SYNJ1   99289
8715         SYNJ1   99289
8716         SYNJ1   99289
8717         SYNJ1   99289
8718         SYNJ1   99289
8719         SYNJ1   99289
8720         SYNJ1   99289
8721         SYNJ1   99289
8722         SYNJ1   99289
8723         SYNJ1   99289
8724         SYNJ1   99289
8725         SYNJ1   99289
8726         SYNJ1   99289
8727         SYNJ1   99289
8728         SYNJ1   99289
8729         SYNJ1   99289
8730         SYNJ1   99289
8731         SYNJ1   99289
8732         SYNJ1   99289
8733         SYNJ1   99289
8734         SYNJ1   99289
8735         SYNJ1   99289
8736         SYNJ1   99289
8737         SYNJ1   99289
8738         SYNJ1   99289
8739         SYNJ1   99289
8740         SYNJ1   99289
8741         SYNJ1   99289
8742         SYNJ1   99289
8743         SYNJ1   99289
8744         SYNJ1   99289
8745         SYNJ1   99289
8746         SYNJ1   99289
8747         SYNJ1   99289
8748         SYNJ1   99289
8749         SYNJ1   99289
8750         SYNJ1   99289
8751         SYNJ1   99289
8752         SYNJ1   99289
8753         SYNJ1   99289
8754         SYNJ1   99289
8755         SYNJ1   99289
8756         SYNJ1   99289
8757         SYNJ1   99289
8758         SYNJ1   99289
8759         SYNJ1   99289
8760         SYNJ1   99289
8761         SYNJ1   99289
8762         SYNJ1   99289
8763         SYNJ1   99289
8764         SYNJ1   99289
8765         SYNJ1   99289
8766         SYNJ1   99289
8767         SYNJ1   99289
8768         SYNJ1   99289
8769         SYNJ1   99289
8770         SYNJ1   99289
8771         SYNJ1   99289
8772         SYNJ1   99289
8773         SYNJ1   99289
8774         SYNJ1   99289
8775         SYNJ1   99289
8776         SYNJ1   99289
8777         SYNJ1   99289
8778         SYNJ1   99289
8779         SYNJ1   99289
8780         SYNJ1   99289
8781         SYNJ1   99289
8782         SYNJ1   99289
8783         SYNJ1   99289
8784         SYNJ1   99289
8785         SYNJ1   99289
8786         SYNJ1   99289
8787         SYNJ1   99289
8788         SYNJ1   99289
8789         SYNJ1   99289
8790         SYNJ1   99289
8791         SYNJ1   99289
8792         SYNJ1   99289
8793         SYNJ1   99289
8794         SYNJ1   99289
8795         SYNJ1   99289
8796         SYNJ1   99289
8797         SYNJ1   99289
8798         SYNJ1   99289
8799         SYNJ1   99289
8800         SYNJ1   99289
8801         SYNJ1   99289
8802         SYNJ1   99289
8803         SYNJ1   99289
8804         SYNJ1   99289
8805         SYNJ1   99289
8806         SYNJ1   99289
8807         SYNJ1   99289
8808         SYNJ1   99289
8809         SYNJ1   99289
8810         SYNJ1   99289
8811         SYNJ1   99289
8812         SYNJ1   99289
8813         SYNJ1   99289
8814         SYNJ1   99289
8815         SYNJ1   99289
8816         SYNJ1   99289
8817         SYNJ1   99289
8818         SYNJ1   99289
8819         SYNJ1   99289
8820         SYNJ1   99289
8821         SYNJ1   99289
8822         SYNJ1   99289
8823         SYNJ1   99289
8824         SYNJ1   99289
8825         SYNJ1   99289
8826         SYNJ1   99289
8827         SYNJ1   99289
8828         SYNJ1   99289
8829         SYNJ1   99289
8830         SYNJ1   99289
8831         SYNJ1   99289
8832         SYNJ1   99289
8833         SYNJ1   99289
8834         SYNJ1   99289
8835         SYNJ1   99289
8836         SYNJ1   99289
8837         SYNJ1   99289
8838         SYNJ1   99289
8839         SYNJ1   99289
8840         SYNJ1   99289
8841         SYNJ1   99289
8842         SYNJ1   99289
8843         SYNJ1   99289
8844         SYNJ1   99289
8845         SYNJ1   99289
8846         SYNJ1   99289
8847         SYNJ1   99289
8848         SYNJ1   99289
8849         SYNJ1   99289
8850         SYNJ1   99289
8851         SYNJ1   99289
8852         SYNJ1   99289
8853         SYNJ1   99289
8854         SYNJ1   99289
8855         SYNJ1   99289
8856         SYNJ1   99289
8857         SYNJ1   99289
8858         SYNJ1   99289
8859         SYNJ1   99289
8860         SYNJ1   99289
8861         SYNJ1   99289
8862         SYNJ1   99289
8863         SYNJ1   99289
8864         SYNJ1   99289
8865         SYNJ1   99289
8866         SYNJ1   99289
8867         SYNJ1   99289
8868         BRWD1  137383
8869         BRWD1  137383
8870         BRWD1  137383
8871         BRWD1  137383
8872         BRWD1  137383
8873         BRWD1  137383
8874         BRWD1  137383
8875         BRWD1  137383
8876         BRWD1  137383
8877         BRWD1  137383
8878         BRWD1  137383
8879         BRWD1  137383
8880         BRWD1  137383
8881         BRWD1  137383
8882         BRWD1  137383
8883         BRWD1  137383
8884         BRWD1  137383
8885         BRWD1  137383
8886         BRWD1  137383
8887         BRWD1  137383
8888         BRWD1  137383
8889         BRWD1  137383
8890         BRWD1  137383
8891         BRWD1  137383
8892         BRWD1  137383
8893         BRWD1  137383
8894         BRWD1  137383
8895         BRWD1  137383
8896         BRWD1  137383
8897         BRWD1  137383
8898         BRWD1  137383
8899         BRWD1  137383
8900         BRWD1  137383
8901         BRWD1  137383
8902         BRWD1  137383
8903         BRWD1  137383
8904         BRWD1  137383
8905         BRWD1  137383
8906         BRWD1  137383
8907         BRWD1  137383
8908         BRWD1  137383
8909         BRWD1  137383
8910         BRWD1  137383
8911         BRWD1  137383
8912         BRWD1  137383
8913         BRWD1  137383
8914         BRWD1  137383
8915         BRWD1  137383
8916         BRWD1  137383
8917         BRWD1  137383
8918         BRWD1  137383
8919         BRWD1  137383
8920         BRWD1  137383
8921         BRWD1  137383
8922         BRWD1  137383
8923         BRWD1  137383
8924         BRWD1  137383
8925         BRWD1  137383
8926         BRWD1  137383
8927         BRWD1  137383
8928         BRWD1  137383
8929         BRWD1  137383
8930         BRWD1  137383
8931         BRWD1  137383
8932         BRWD1  137383
8933         BRWD1  137383
8934         BRWD1  137383
8935         BRWD1  137383
8936         BRWD1  137383
8937         BRWD1  137383
8938         BRWD1  137383
8939         BRWD1  137383
8940         BRWD1  137383
8941         BRWD1  137383
8942         BRWD1  137383
8943         BRWD1  137383
8944         BRWD1  137383
8945         BRWD1  137383
8946         BRWD1  137383
8947         BRWD1  137383
8948         BRWD1  137383
8949         BRWD1  137383
8950         BRWD1  137383
8951         BRWD1  137383
8952         BRWD1  137383
8953         BRWD1  137383
8954         BRWD1  137383
8955         BRWD1  137383
8956         BRWD1  137383
8957         BRWD1  137383
8958         BRWD1  137383
8959         BRWD1  137383
8960         BRWD1  137383
8961         BRWD1  137383
8962         BRWD1  137383
8963         BRWD1  137383
8964         BRWD1  137383
8965         BRWD1  137383
8966         BRWD1  137383
8967         BRWD1  137383
8968         BRWD1  137383
8969         BRWD1  137383
8970         BRWD1  137383
8971         BRWD1  137383
8972         BRWD1  137383
8973         BRWD1  137383
8974         BRWD1  137383
8975         BRWD1  137383
8976         BRWD1  137383
8977         BRWD1  137383
8978         BRWD1  137383
8979         BRWD1  137383
8980         BRWD1  137383
8981         BRWD1  137383
8982         BRWD1  137383
8983         BRWD1  137383
8984         BRWD1  137383
8985         BRWD1  137383
8986         BRWD1  137383
8987         BRWD1  137383
8988         BRWD1  137383
8989         BRWD1  137383
8990         BRWD1  137383
8991         BRWD1  137383
8992         BRWD1  137383
8993         BRWD1  137383
8994         BRWD1  137383
8995         BRWD1  137383
8996         BRWD1  137383
8997         BRWD1  137383
8998         BRWD1  137383
8999         BRWD1  137383
9000         BRWD1  137383
9001         BRWD1  137383
9002         BRWD1  137383
9003         BRWD1  137383
9004         BRWD1  137383
9005         BRWD1  137383
9006         BRWD1  137383
9007         BRWD1  137383
9008         BRWD1  137383
9009         BRWD1  137383
9010         BRWD1  137383
9011         BRWD1  137383
9012         BRWD1  137383
9013         BRWD1  137383
9014         BRWD1  137383
9015         BRWD1  137383
9016         BRWD1  137383
9017         BRWD1  137383
9018         BRWD1  137383
9019         BRWD1  137383
9020         BRWD1  137383
9021         BRWD1  137383
9022         BRWD1  137383
9023         BRWD1  137383
9024         BRWD1  137383
9025         BRWD1  137383
9026         BRWD1  137383
9027         BRWD1  137383
9028         BRWD1  137383
9029         BRWD1  137383
9030         BRWD1  137383
9031         BRWD1  137383
9032         BRWD1  137383
9033         BRWD1  137383
9034         BRWD1  137383
9035         BRWD1  137383
9036         BRWD1  137383
9037         BRWD1  137383
9038         BRWD1  137383
9039         BRWD1  137383
9040         BRWD1  137383
9041         BRWD1  137383
9042         BRWD1  137383
9043         BRWD1  137383
9044         BRWD1  137383
9045         BRWD1  137383
9046         BRWD1  137383
9047         BRWD1  137383
9048         BRWD1  137383
9049         BRWD1  137383
9050         BRWD1  137383
9051         BRWD1  137383
9052         BRWD1  137383
9053         BRWD1  137383
9054         BRWD1  137383
9055         BRWD1  137383
9056         BRWD1  137383
9057         BRWD1  137383
9058         BRWD1  137383
9059         BRWD1  137383
9060         BRWD1  137383
9061         BRWD1  137383
9062         BRWD1  137383
9063         BRWD1  137383
9064         BRWD1  137383
9065         BRWD1  137383
9066         BRWD1  137383
9067         BRWD1  137383
9068         BRWD1  137383
9069         BRWD1  137383
9070         BRWD1  137383
9071         BRWD1  137383
9072         BRWD1  137383
9073         BRWD1  137383
9074         BRWD1  137383
9075         BRWD1  137383
9076         BRWD1  137383
9077         BRWD1  137383
9078         BRWD1  137383
9079         BRWD1  137383
9080         BRWD1  137383
9081         BRWD1  137383
9082         BRWD1  137383
9083         BRWD1  137383
9084         BRWD1  137383
9085         BRWD1  137383
9086         BRWD1  137383
9087         BRWD1  137383
9088         BRWD1  137383
9089         BRWD1  137383
9090         BRWD1  137383
9091         BRWD1  137383
9092         BRWD1  137383
9093         BRWD1  137383
9094         BRWD1  137383
9095         BRWD1  137383
9096         BRWD1  137383
9097         BRWD1  137383
9098         BRWD1  137383
9099         BRWD1  137383
9100         BRWD1  137383
9101         BRWD1  137383
9102         BRWD1  137383
9103         BRWD1  137383
9104         BRWD1  137383
9105         BRWD1  137383
9106         BRWD1  137383
9107         BRWD1  137383
9108         BRWD1  137383
9109         BRWD1  137383
9110         BRWD1  137383
9111         BRWD1  137383
9112         BRWD1  137383
9113         BRWD1  137383
9114         BRWD1  137383
9115         BRWD1  137383
9116         BRWD1  137383
9117         BRWD1  137383
9118         BRWD1  137383
9119         BRWD1  137383
9120         BRWD1  137383
9121         BRWD1  137383
9122         BRWD1  137383
9123         BRWD1  137383
9124         BRWD1  137383
9125         BRWD1  137383
9126         BRWD1  137383
9127         BRWD1  137383
9128     BRWD1-AS2    1027
9129                 92791
9130                 92791
9131                 92791
9132                 92791
9133                 92791
9134                 92791
9135                 92791
9136                 92791
9137                 92791
9138                 92791
9139                 92791
9140                 92791
9141                 92791
9142                 92791
9143                 92791
9144                 92791
9145                 92791
9146                 92791
9147                 92791
9148                 92791
9149                 92791
9150                 92791
9151                 92791
9152                 92791
9153                 92791
9154                 92791
9155                 92791
9156                  2397
9157                  2397
9158                 66891
9159                 66891
9160                 66891
9161                 66891
9162                 66891
9163                 66891
9164                 66891
9165                 66891
9166                 66891
9167                 66891
9168                 66891
9169                 66891
9170                 66891
9171                 66891
9172                 66891
9173                 66891
9174                 66891
9175                 66891
9176                 66891
9177        RPS5P3     615
9178        DNMT3L   15877
9179        DNMT3L   15877
9180        DNMT3L   15877
9181        DNMT3L   15877
9182        DNMT3L   15877
9183        DNMT3L   15877
9184        DNMT3L   15877
9185        DNMT3L   15877
9186        DNMT3L   15877
9187        DNMT3L   15877
9188        DNMT3L   15877
9189        DNMT3L   15877
9190        DNMT3L   15877
9191        DNMT3L   15877
9192        DNMT3L   15877
9193        DNMT3L   15877
9194        DNMT3L   15877
9195        DNMT3L   15877
9196        DNMT3L   15877
9197        DNMT3L   15877
9198        DNMT3L   15877
9199        DNMT3L   15877
9200        DNMT3L   15877
9201        DNMT3L   15877
9202        DNMT3L   15877
9203        DNMT3L   15877
9204        DNMT3L   15877
9205        DNMT3L   15877
9206        DNMT3L   15877
9207        DNMT3L   15877
9208        DNMT3L   15877
9209        DNMT3L   15877
9210        DNMT3L   15877
9211        DNMT3L   15877
9212        DNMT3L   15877
9213        DNMT3L   15877
9214        DNMT3L   15877
9215                   831
9216                  9973
9217                  9973
9218                  9973
9219                  9973
9220                  9973
9221                  9973
9222                  2192
9223                  2192
9224       CYCSP42     237
9225       COL18A1  108583
9226       COL18A1  108583
9227       COL18A1  108583
9228       COL18A1  108583
9229       COL18A1  108583
9230       COL18A1  108583
9231       COL18A1  108583
9232       COL18A1  108583
9233       COL18A1  108583
9234       COL18A1  108583
9235       COL18A1  108583
9236       COL18A1  108583
9237       COL18A1  108583
9238       COL18A1  108583
9239       COL18A1  108583
9240       COL18A1  108583
9241       COL18A1  108583
9242       COL18A1  108583
9243       COL18A1  108583
9244       COL18A1  108583
9245       COL18A1  108583
9246       COL18A1  108583
9247       COL18A1  108583
9248       COL18A1  108583
9249       COL18A1  108583
9250       COL18A1  108583
9251       COL18A1  108583
9252       COL18A1  108583
9253       COL18A1  108583
9254       COL18A1  108583
9255       COL18A1  108583
9256       COL18A1  108583
9257       COL18A1  108583
9258       COL18A1  108583
9259       COL18A1  108583
9260       COL18A1  108583
9261       COL18A1  108583
9262       COL18A1  108583
9263       COL18A1  108583
9264       COL18A1  108583
9265       COL18A1  108583
9266       COL18A1  108583
9267       COL18A1  108583
9268       COL18A1  108583
9269       COL18A1  108583
9270       COL18A1  108583
9271       COL18A1  108583
9272       COL18A1  108583
9273       COL18A1  108583
9274       COL18A1  108583
9275       COL18A1  108583
9276       COL18A1  108583
9277       COL18A1  108583
9278       COL18A1  108583
9279       COL18A1  108583
9280       COL18A1  108583
9281       COL18A1  108583
9282       COL18A1  108583
9283       COL18A1  108583
9284       COL18A1  108583
9285       COL18A1  108583
9286       COL18A1  108583
9287       COL18A1  108583
9288       COL18A1  108583
9289       COL18A1  108583
9290       COL18A1  108583
9291       COL18A1  108583
9292       COL18A1  108583
9293       COL18A1  108583
9294       COL18A1  108583
9295       COL18A1  108583
9296       COL18A1  108583
9297       COL18A1  108583
9298       COL18A1  108583
9299       COL18A1  108583
9300       COL18A1  108583
9301       COL18A1  108583
9302       COL18A1  108583
9303       COL18A1  108583
9304       COL18A1  108583
9305       COL18A1  108583
9306       COL18A1  108583
9307       COL18A1  108583
9308       COL18A1  108583
9309       COL18A1  108583
9310       COL18A1  108583
9311       COL18A1  108583
9312       COL18A1  108583
9313       COL18A1  108583
9314       COL18A1  108583
9315       COL18A1  108583
9316       COL18A1  108583
9317       COL18A1  108583
9318       COL18A1  108583
9319       COL18A1  108583
9320       COL18A1  108583
9321       COL18A1  108583
9322       COL18A1  108583
9323       COL18A1  108583
9324       COL18A1  108583
9325       COL18A1  108583
9326       COL18A1  108583
9327       COL18A1  108583
9328       COL18A1  108583
9329       COL18A1  108583
9330       COL18A1  108583
9331       COL18A1  108583
9332       COL18A1  108583
9333       COL18A1  108583
9334       COL18A1  108583
9335       COL18A1  108583
9336       COL18A1  108583
9337       COL18A1  108583
9338       COL18A1  108583
9339       COL18A1  108583
9340       COL18A1  108583
9341       COL18A1  108583
9342       COL18A1  108583
9343       COL18A1  108583
9344       COL18A1  108583
9345       COL18A1  108583
9346       COL18A1  108583
9347       COL18A1  108583
9348       COL18A1  108583
9349       COL18A1  108583
9350       COL18A1  108583
9351       COL18A1  108583
9352       COL18A1  108583
9353       COL18A1  108583
9354       COL18A1  108583
9355       COL18A1  108583
9356       COL18A1  108583
9357       COL18A1  108583
9358       COL18A1  108583
9359       COL18A1  108583
9360       COL18A1  108583
9361       COL18A1  108583
9362       COL18A1  108583
9363       COL18A1  108583
9364       COL18A1  108583
9365       COL18A1  108583
9366       COL18A1  108583
9367       COL18A1  108583
9368       COL18A1  108583
9369       COL18A1  108583
9370       COL18A1  108583
9371       COL18A1  108583
9372       COL18A1  108583
9373       COL18A1  108583
9374       COL18A1  108583
9375       COL18A1  108583
9376       COL18A1  108583
9377       COL18A1  108583
9378       COL18A1  108583
9379       COL18A1  108583
9380       COL18A1  108583
9381       COL18A1  108583
9382       COL18A1  108583
9383       COL18A1  108583
9384       COL18A1  108583
9385       COL18A1  108583
9386       COL18A1  108583
9387       COL18A1  108583
9388       COL18A1  108583
9389       COL18A1  108583
9390       COL18A1  108583
9391     LINC01700    3345
9392     LINC01700    3345
9393     LINC01700    3345
9394    MIS18A-AS1    3125
9395    MIS18A-AS1    3125
9396    MIS18A-AS1    3125
9397       RPL31P1     371
9398     LINC01674   12428
9399     LINC01674   12428
9400     LINC01674   12428
9401     LINC01674   12428
9402        VN1R8P     892
9403        FGF7P2    1383
9404        FGF7P2    1383
9405        POFUT2   23970
9406        POFUT2   23970
9407        POFUT2   23970
9408        POFUT2   23970
9409        POFUT2   23970
9410        POFUT2   23970
9411        POFUT2   23970
9412        POFUT2   23970
9413        POFUT2   23970
9414        POFUT2   23970
9415        POFUT2   23970
9416        POFUT2   23970
9417        POFUT2   23970
9418        POFUT2   23970
9419        POFUT2   23970
9420        POFUT2   23970
9421        POFUT2   23970
9422        POFUT2   23970
9423        POFUT2   23970
9424        POFUT2   23970
9425        POFUT2   23970
9426        POFUT2   23970
9427        POFUT2   23970
9428        POFUT2   23970
9429        POFUT2   23970
9430        POFUT2   23970
9431        POFUT2   23970
9432        POFUT2   23970
9433        POFUT2   23970
9434        POFUT2   23970
9435        POFUT2   23970
9436        POFUT2   23970
9437        POFUT2   23970
9438        POFUT2   23970
9439        POFUT2   23970
9440        POFUT2   23970
9441        POFUT2   23970
9442        POFUT2   23970
9443        POFUT2   23970
9444        POFUT2   23970
9445        POFUT2   23970
9446        POFUT2   23970
9447        POFUT2   23970
9448        POFUT2   23970
9449        POFUT2   23970
9450        POFUT2   23970
9451        POFUT2   23970
9452        POFUT2   23970
9453        POFUT2   23970
9454        POFUT2   23970
9455        POFUT2   23970
9456        POFUT2   23970
9457        POFUT2   23970
9458        POFUT2   23970
9459        POFUT2   23970
9460        POFUT2   23970
9461        POFUT2   23970
9462        POFUT2   23970
9463        POFUT2   23970
9464        POFUT2   23970
9465        POFUT2   23970
9466        POFUT2   23970
9467        POFUT2   23970
9468        POFUT2   23970
9469        POFUT2   23970
9470        POFUT2   23970
9471        POFUT2   23970
9472        POFUT2   23970
9473        POFUT2   23970
9474        POFUT2   23970
9475        POFUT2   23970
9476        POFUT2   23970
9477        POFUT2   23970
9478        POFUT2   23970
9479        POFUT2   23970
9480        POFUT2   23970
9481        POFUT2   23970
9482        POFUT2   23970
9483        POFUT2   23970
9484        POFUT2   23970
9485        POFUT2   23970
9486        POFUT2   23970
9487        POFUT2   23970
9488        POFUT2   23970
9489   IGHV1OR21-1     435
9490   IGHV1OR21-1     435
9491        ADARB1  152707
9492        ADARB1  152707
9493        ADARB1  152707
9494        ADARB1  152707
9495        ADARB1  152707
9496        ADARB1  152707
9497        ADARB1  152707
9498        ADARB1  152707
9499        ADARB1  152707
9500        ADARB1  152707
9501        ADARB1  152707
9502        ADARB1  152707
9503        ADARB1  152707
9504        ADARB1  152707
9505        ADARB1  152707
9506        ADARB1  152707
9507        ADARB1  152707
9508        ADARB1  152707
9509        ADARB1  152707
9510        ADARB1  152707
9511        ADARB1  152707
9512        ADARB1  152707
9513        ADARB1  152707
9514        ADARB1  152707
9515        ADARB1  152707
9516        ADARB1  152707
9517        ADARB1  152707
9518        ADARB1  152707
9519        ADARB1  152707
9520        ADARB1  152707
9521        ADARB1  152707
9522        ADARB1  152707
9523        ADARB1  152707
9524        ADARB1  152707
9525        ADARB1  152707
9526        ADARB1  152707
9527        ADARB1  152707
9528        ADARB1  152707
9529        ADARB1  152707
9530        ADARB1  152707
9531        ADARB1  152707
9532        ADARB1  152707
9533        ADARB1  152707
9534        ADARB1  152707
9535        ADARB1  152707
9536        ADARB1  152707
9537        ADARB1  152707
9538        ADARB1  152707
9539        ADARB1  152707
9540        ADARB1  152707
9541        ADARB1  152707
9542        ADARB1  152707
9543        ADARB1  152707
9544        ADARB1  152707
9545        ADARB1  152707
9546        ADARB1  152707
9547        ADARB1  152707
9548        ADARB1  152707
9549        ADARB1  152707
9550        ADARB1  152707
9551        ADARB1  152707
9552        ADARB1  152707
9553        ADARB1  152707
9554        ADARB1  152707
9555        ADARB1  152707
9556        ADARB1  152707
9557        ADARB1  152707
9558        ADARB1  152707
9559        ADARB1  152707
9560        ADARB1  152707
9561        ADARB1  152707
9562        ADARB1  152707
9563        ADARB1  152707
9564        ADARB1  152707
9565        ADARB1  152707
9566        ADARB1  152707
9567        ADARB1  152707
9568        ADARB1  152707
9569        ADARB1  152707
9570        ADARB1  152707
9571        ADARB1  152707
9572        ADARB1  152707
9573        ADARB1  152707
9574        ADARB1  152707
9575        ADARB1  152707
9576        ADARB1  152707
9577        ADARB1  152707
9578        ADARB1  152707
9579        ADARB1  152707
9580        ADARB1  152707
9581        ADARB1  152707
9582        ADARB1  152707
9583        ADARB1  152707
9584        ADARB1  152707
9585        ADARB1  152707
9586        ADARB1  152707
9587        ADARB1  152707
9588        ADARB1  152707
9589        ADARB1  152707
9590        ADARB1  152707
9591        ADARB1  152707
9592        ADARB1  152707
9593        ADARB1  152707
9594        ADARB1  152707
9595        ADARB1  152707
9596        ADARB1  152707
9597        ADARB1  152707
9598        ADARB1  152707
9599        ADARB1  152707
9600        ADARB1  152707
9601        ADARB1  152707
9602        ADARB1  152707
9603        ADARB1  152707
9604        ADARB1  152707
9605        ADARB1  152707
9606        ADARB1  152707
9607        ADARB1  152707
9608        ADARB1  152707
9609        ADARB1  152707
9610        ADARB1  152707
9611        ADARB1  152707
9612        ADARB1  152707
9613        ADARB1  152707
9614        ADARB1  152707
9615        ADARB1  152707
9616       FAM207A   36979
9617       FAM207A   36979
9618       FAM207A   36979
9619       FAM207A   36979
9620       FAM207A   36979
9621       FAM207A   36979
9622       FAM207A   36979
9623       FAM207A   36979
9624       FAM207A   36979
9625       FAM207A   36979
9626       FAM207A   36979
9627       FAM207A   36979
9628       FAM207A   36979
9629       FAM207A   36979
9630       FAM207A   36979
9631       FAM207A   36979
9632       FAM207A   36979
9633       FAM207A   36979
9634       FAM207A   36979
9635       FAM207A   36979
9636       FAM207A   36979
9637       FAM207A   36979
9638       FAM207A   36979
9639       FAM207A   36979
9640     KRTAP19-4     309
9641     KRTAP19-2     379
9642          GART   39560
9643          GART   39560
9644          GART   39560
9645          GART   39560
9646          GART   39560
9647          GART   39560
9648          GART   39560
9649          GART   39560
9650          GART   39560
9651          GART   39560
9652          GART   39560
9653          GART   39560
9654          GART   39560
9655          GART   39560
9656          GART   39560
9657          GART   39560
9658          GART   39560
9659          GART   39560
9660          GART   39560
9661          GART   39560
9662          GART   39560
9663          GART   39560
9664          GART   39560
9665          GART   39560
9666          GART   39560
9667          GART   39560
9668          GART   39560
9669          GART   39560
9670          GART   39560
9671          GART   39560
9672          GART   39560
9673          GART   39560
9674          GART   39560
9675          GART   39560
9676          GART   39560
9677          GART   39560
9678          GART   39560
9679          GART   39560
9680          GART   39560
9681          GART   39560
9682          GART   39560
9683          GART   39560
9684          GART   39560
9685          GART   39560
9686          GART   39560
9687          GART   39560
9688          GART   39560
9689          GART   39560
9690          GART   39560
9691          GART   39560
9692          GART   39560
9693          GART   39560
9694          GART   39560
9695          GART   39560
9696          GART   39560
9697          GART   39560
9698          GART   39560
9699          GART   39560
9700          GART   39560
9701          GART   39560
9702          GART   39560
9703          GART   39560
9704          GART   39560
9705          GART   39560
9706          GART   39560
9707          GART   39560
9708          GART   39560
9709          GART   39560
9710          GART   39560
9711          GART   39560
9712          GART   39560
9713          GART   39560
9714          GART   39560
9715          GART   39560
9716          GART   39560
9717          GART   39560
9718          GART   39560
9719          GART   39560
9720          GART   39560
9721          GART   39560
9722          GART   39560
9723          GART   39560
9724          GART   39560
9725          GART   39560
9726          GART   39560
9727          GART   39560
9728          GART   39560
9729          GART   39560
9730          GART   39560
9731          GART   39560
9732          GART   39560
9733          GART   39560
9734          GART   39560
9735          GART   39560
9736          GART   39560
9737          GART   39560
9738          GART   39560
9739          GART   39560
9740          GART   39560
9741          GART   39560
9742          GART   39560
9743          GART   39560
9744          GART   39560
9745          GART   39560
9746          GART   39560
9747          GART   39560
9748          GART   39560
9749          GART   39560
9750          GART   39560
9751          GART   39560
9752          GART   39560
9753          GART   39560
9754          GART   39560
9755          GART   39560
9756          GART   39560
9757          GART   39560
9758          GART   39560
9759          GART   39560
9760          GART   39560
9761          GART   39560
9762          GART   39560
9763          GART   39560
9764          GART   39560
9765          GART   39560
9766          GART   39560
9767          GART   39560
9768          GART   39560
9769          GART   39560
9770          GART   39560
9771          GART   39560
9772          GART   39560
9773          GART   39560
9774          GART   39560
9775          GART   39560
9776          GART   39560
9777          GART   39560
9778          GART   39560
9779          GART   39560
9780          GART   39560
9781          GART   39560
9782          GART   39560
9783          GART   39560
9784          GART   39560
9785          GART   39560
9786          GART   39560
9787          GART   39560
9788          GART   39560
9789          GART   39560
9790          GART   39560
9791          GART   39560
9792          GART   39560
9793          GART   39560
9794          GART   39560
9795          GART   39560
9796          GART   39560
9797      GAPDHP14     936
9798        KCNE1B   13251
9799        KCNE1B   13251
9800        KCNE1B   13251
9801        KCNE1B   13251
9802        KCNE1B   13251
9803        KCNE1B   13251
9804        KCNE1B   13251
9805        KCNE1B   13251
9806        KCNE1B   13251
9807        KCNE1B   13251
9808        KCNE1B   13251
9809          AIRE   12810
9810          AIRE   12810
9811          AIRE   12810
9812          AIRE   12810
9813          AIRE   12810
9814          AIRE   12810
9815          AIRE   12810
9816          AIRE   12810
9817          AIRE   12810
9818          AIRE   12810
9819          AIRE   12810
9820          AIRE   12810
9821          AIRE   12810
9822          AIRE   12810
9823          AIRE   12810
9824          AIRE   12810
9825          AIRE   12810
9826          AIRE   12810
9827          AIRE   12810
9828          AIRE   12810
9829          AIRE   12810
9830          AIRE   12810
9831          AIRE   12810
9832          AIRE   12810
9833          AIRE   12810
9834          AIRE   12810
9835          AIRE   12810
9836          AIRE   12810
9837          AIRE   12810
9838          AIRE   12810
9839          AIRE   12810
9840          AIRE   12810
9841          AIRE   12810
9842          AIRE   12810
9843          AIRE   12810
9844          AIRE   12810
9845          AIRE   12810
9846          AIRE   12810
9847          AIRE   12810
9848          AIRE   12810
9849          AIRE   12810
9850          AIRE   12810
9851          AIRE   12810
9852          AIRE   12810
9853          AIRE   12810
9854          AIRE   12810
9855          AIRE   12810
9856          AIRE   12810
9857          AIRE   12810
9858          AIRE   12810
9859          AIRE   12810
9860          AIRE   12810
9861          AIRE   12810
9862          AIRE   12810
9863          AIRE   12810
9864           WRB   48284
9865           WRB   48284
9866           WRB   48284
9867           WRB   48284
9868           WRB   48284
9869           WRB   48284
9870           WRB   48284
9871           WRB   48284
9872           WRB   48284
9873           WRB   48284
9874           WRB   48284
9875           WRB   48284
9876           WRB   48284
9877           WRB   48284
9878           WRB   48284
9879           WRB   48284
9880           WRB   48284
9881           WRB   48284
9882           WRB   48284
9883           WRB   48284
9884           WRB   48284
9885           WRB   48284
9886           WRB   48284
9887           WRB   48284
9888           WRB   48284
9889           WRB   48284
9890           WRB   48284
9891           WRB   48284
9892           WRB   48284
9893           WRB   48284
9894           WRB   48284
9895           WRB   48284
9896           WRB   48284
9897           WRB   48284
9898           WRB   48284
9899           WRB   48284
9900           WRB   48284
9901           WRB   48284
9902           WRB   48284
9903           WRB   48284
9904           WRB   48284
9905           WRB   48284
9906           WRB   48284
9907           WRB   48284
9908           WRB   48284
9909           WRB   48284
9910           WRB   48284
9911           WRB   48284
9912           WRB   48284
9913           WRB   48284
9914           WRB   48284
9915                   372
9916        IL10RB   43829
9917        IL10RB   43829
9918        IL10RB   43829
9919        IL10RB   43829
9920        IL10RB   43829
9921        IL10RB   43829
9922        IL10RB   43829
9923        IL10RB   43829
9924        IL10RB   43829
9925        IL10RB   43829
9926        IL10RB   43829
9927        IL10RB   43829
9928        IL10RB   43829
9929        IL10RB   43829
9930        IL10RB   43829
9931        IL10RB   43829
9932        IL10RB   43829
9933        IL10RB   43829
9934        IL10RB   43829
9935        IL10RB   43829
9936        IL10RB   43829
9937        IL10RB   43829
9938        IL10RB   43829
9939        IL10RB   43829
9940        IL10RB   43829
9941        IL10RB   43829
9942        IL10RB   43829
9943        IL10RB   43829
9944        IL10RB   43829
9945        IL10RB   43829
9946        IL10RB   43829
9947        IL10RB   43829
9948        IL10RB   43829
9949                   922
9950                   922
9951                  1707
9952                   448
9953                  2455
9954                  4397
9955                  4397
9956                  4397
9957                  4397
9958                  4397
9959                  4397
9960                  4397
9961                  4397
9962                  4397
9963                  4397
9964                 50710
9965                 50710
9966                  1893
9967                  2068
9968                  2068
9969                   850
9970                  1374
9971                  1374
9972                  2584
9973                  2584
9974      C21orf91   30419
9975      C21orf91   30419
9976      C21orf91   30419
9977      C21orf91   30419
9978      C21orf91   30419
9979      C21orf91   30419
9980      C21orf91   30419
9981      C21orf91   30419
9982      C21orf91   30419
9983      C21orf91   30419
9984      C21orf91   30419
9985      C21orf91   30419
9986      C21orf91   30419
9987      C21orf91   30419
9988      C21orf91   30419
9989      C21orf91   30419
9990      C21orf91   30419
9991      C21orf91   30419
9992      C21orf91   30419
9993      C21orf91   30419
9994      C21orf91   30419
9995      C21orf91   30419
9996      C21orf91   30419
9997      C21orf91   30419
9998      C21orf91   30419
9999                235502
10000               235502
10001               235502
10002               235502
10003               235502
10004               235502
10005               235502
10006               235502
10007               235502
10008               235502
10009               235502
10010               235502
10011    LINC00161    1037
10012    LINC00161    1037
10013    LINC00161    1037
10014    LINC00161    1037
10015               119979
10016               119979
10017               119979
10018               119979
10019               119979
10020               286441
10021               286441
10022               286441
10023               286441
10024               286441
10025               286441
10026    LINC00310   32520
10027    LINC00310   32520
10028    LINC00310   32520
10029    LINC00310   32520
10030    LINC00310   32520
10031    LINC00310   32520
10032    LINC00310   32520
10033    LINC00310   32520
10034    LINC00310   32520
10035    LINC00310   32520
10036    LINC00310   32520
10037    LINC00310   32520
10038    LINC00310   32520
10039    LINC00310   32520
10040    LINC00310   32520
10041    LINC00310   32520
10042    LINC00310   32520
10043    LINC00310   32520
10044    LINC00310   32520
10045    LINC00310   32520
10046    LINC00310   32520
10047        MRPS6   69810
10048        MRPS6   69810
10049        MRPS6   69810
10050        MRPS6   69810
10051        MRPS6   69810
10052        MRPS6   69810
10053        MRPS6   69810
10054        MRPS6   69810
10055        MRPS6   69810
10056        MRPS6   69810
10057        MRPS6   69810
10058        MRPS6   69810
10059        MRPS6   69810
10060        MRPS6   69810
10061        MRPS6   69810
10062        MRPS6   69810
10063        MRPS6   69810
10064        MRPS6   69810
10065                 1184
10066                 3397
10067                 3397
10068                 3397
10069                40513
10070                40513
10071                40513
10072                40513
10073                40513
10074                40513
10075                40513
10076                40513
10077                40513
10078                40513
10079                40513
10080                40513
10081                40513
10082                40513
10083                40513
10084                40513
10085                40513
10086                40513
10087                40513
10088                40513
10089                40513
10090                40513
10091                40513
10092                40513
10093                40513
10094       FDPSP6     511
10095                 1108
10096                 1108
10097       RPS5P2     639
10098       SLC5A3   32692
10099       SLC5A3   32692
10100         TFF1    4312
10101         TFF1    4312
10102         TFF1    4312
10103      RPL10P1     643
10104       GPX1P2     605
10105         TFF3    3984
10106         TFF3    3984
10107         TFF3    3984
10108         TFF3    3984
10109         TFF3    3984
10110         TFF3    3984
10111         TFF3    3984
10112         TFF3    3984
10113         TFF3    3984
10114         TFF3    3984
10115         TFF3    3984
10116         TFF3    3984
10117     ERLEC1P1     577
10118         LIPI  102078
10119         LIPI  102078
10120         LIPI  102078
10121         LIPI  102078
10122         LIPI  102078
10123         LIPI  102078
10124         LIPI  102078
10125         LIPI  102078
10126         LIPI  102078
10127         LIPI  102078
10128         LIPI  102078
10129         LIPI  102078
10130         LIPI  102078
10131         LIPI  102078
10132         LIPI  102078
10133         LIPI  102078
10134         LIPI  102078
10135         LIPI  102078
10136         LIPI  102078
10137         LIPI  102078
10138         LIPI  102078
10139         LIPI  102078
10140         LIPI  102078
10141         LIPI  102078
10142         LIPI  102078
10143         LIPI  102078
10144         LIPI  102078
10145         LIPI  102078
10146         LIPI  102078
10147         LIPI  102078
10148         LIPI  102078
10149         LIPI  102078
10150         LIPI  102078
10151                 5907
10152                 5907
10153                 5907
10154      OR4K12P     960
10155      ZNF355P   18485
10156      ZNF355P   18485
10157      ZNF355P   18485
10158                17016
10159                17016
10160        DSCR8   66565
10161        DSCR8   66565
10162        DSCR8   66565
10163        DSCR8   66565
10164        DSCR8   66565
10165        DSCR8   66565
10166        DSCR8   66565
10167        DSCR8   66565
10168        DSCR8   66565
10169        DSCR8   66565
10170        DSCR8   66565
10171        DSCR8   66565
10172        DSCR8   66565
10173        DSCR8   66565
10174        DSCR8   66565
10175        DSCR8   66565
10176        DSCR8   66565
10177        DSCR8   66565
10178        DSCR8   66565
10179        DSCR8   66565
10180        DSCR8   66565
10181        DSCR8   66565
10182        DSCR8   66565
10183        DSCR8   66565
10184        DSCR8   66565
10185        DSCR8   66565
10186        DSCR8   66565
10187        DSCR8   66565
10188        DSCR8   66565
10189        DSCR8   66565
10190    KRTAP19-8     317
10191      UBE3AP2    2568
10192      UBE3AP2    2568
10193      RNGTTP1     727
10194        ATP5J   19170
10195        ATP5J   19170
10196        ATP5J   19170
10197        ATP5J   19170
10198        ATP5J   19170
10199        ATP5J   19170
10200        ATP5J   19170
10201        ATP5J   19170
10202        ATP5J   19170
10203        ATP5J   19170
10204        ATP5J   19170
10205        ATP5J   19170
10206        ATP5J   19170
10207        ATP5J   19170
10208        ATP5J   19170
10209        ATP5J   19170
10210        ATP5J   19170
10211        ATP5J   19170
10212        ATP5J   19170
10213        ATP5J   19170
10214        ATP5J   19170
10215        ATP5J   19170
10216        ATP5J   19170
10217        ATP5J   19170
10218        ATP5J   19170
10219        ATP5J   19170
10220        ATP5J   19170
10221        ATP5J   19170
10222        ATP5J   19170
10223        ATP5J   19170
10224        ATP5J   19170
10225        ATP5J   19170
10226        ATP5J   19170
10227       FDX1P2     374
10228        GABPA   37890
10229        GABPA   37890
10230        GABPA   37890
10231        GABPA   37890
10232        GABPA   37890
10233        GABPA   37890
10234        GABPA   37890
10235        GABPA   37890
10236        GABPA   37890
10237        GABPA   37890
10238        GABPA   37890
10239        GABPA   37890
10240        GABPA   37890
10241        GABPA   37890
10242        GABPA   37890
10243        GABPA   37890
10244        GABPA   37890
10245        GABPA   37890
10246        GABPA   37890
10247        GABPA   37890
10248        GABPA   37890
10249        GABPA   37890
10250        GABPA   37890
10251        GABPA   37890
10252    LINC01679    4202
10253    LINC01679    4202
10254       LLPHP2     395
10255                  607
10256    KRTAP8-3P     187
10257    KRTAP21-1     598
10258    KRTAP21-2     439
10259        DSCR4  169935
10260        DSCR4  169935
10261        DSCR4  169935
10262        DSCR4  169935
10263        DSCR4  169935
10264        DSCR4  169935
10265        DSCR4  169935
10266        DSCR4  169935
10267        DSCR4  169935
10268        DSCR4  169935
10269        DSCR4  169935
10270        DSCR4  169935
10271        DSCR4  169935
10272    DSCR4-IT1    4074
10273    DSCR4-IT1    4074
10274        U2AF1   14631
10275        U2AF1   14631
10276        U2AF1   14631
10277        U2AF1   14631
10278        U2AF1   14631
10279        U2AF1   14631
10280        U2AF1   14631
10281        U2AF1   14631
10282        U2AF1   14631
10283        U2AF1   14631
10284        U2AF1   14631
10285        U2AF1   14631
10286        U2AF1   14631
10287        U2AF1   14631
10288        U2AF1   14631
10289        U2AF1   14631
10290        U2AF1   14631
10291        U2AF1   14631
10292        U2AF1   14631
10293        U2AF1   14631
10294        U2AF1   14631
10295        U2AF1   14631
10296        U2AF1   14631
10297        U2AF1   14631
10298        U2AF1   14631
10299        U2AF1   14631
10300        U2AF1   14631
10301        U2AF1   14631
10302        U2AF1   14631
10303        U2AF1   14631
10304        U2AF1   14631
10305        U2AF1   14631
10306        U2AF1   14631
10307        U2AF1   14631
10308        U2AF1   14631
10309        U2AF1   14631
10310        U2AF1   14631
10311        U2AF1   14631
10312        U2AF1   14631
10313        U2AF1   14631
10314        U2AF1   14631
10315        U2AF1   14631
10316        U2AF1   14631
10317        U2AF1   14631
10318        U2AF1   14631
10319        U2AF1   14631
10320        U2AF1   14631
10321        U2AF1   14631
10322        U2AF1   14631
10323        U2AF1   14631
10324        U2AF1   14631
10325        U2AF1   14631
10326        U2AF1   14631
10327        U2AF1   14631
10328        U2AF1   14631
10329        U2AF1   14631
10330        U2AF1   14631
10331        U2AF1   14631
10332        U2AF1   14631
10333        U2AF1   14631
10334        U2AF1   14631
10335        U2AF1   14631
10336        U2AF1   14631
10337        U2AF1   14631
10338        U2AF1   14631
10339        U2AF1   14631
10340        U2AF1   14631
10341        U2AF1   14631
10342        U2AF1   14631
10343        U2AF1   14631
10344     MRPL20P1     432
10345                41981
10346                41981
10347                41981
10348                41981
10349                41981
10350                41981
10351                41981
10352                41981
10353                41981
10354                41981
10355                41981
10356                41981
10357                41981
10358                41981
10359                41981
10360                41981
10361                41981
10362                41981
10363       DPRXP5     858
10364       DPRXP5     858
10365     HLCS-IT1    2300
10366     HLCS-IT1    2300
10367    THUMPD1P1    1918
10368    THUMPD1P1    1918
10369    THUMPD1P1    1918
10370    LINC01425   50442
10371    LINC01425   50442
10372    LINC01425   50442
10373    LINC01425   50442
10374    LINC01425   50442
10375    LINC01425   50442
10376    LINC01425   50442
10377    LINC01425   50442
10378    LINC01425   50442
10379       PPIAP1     495
10380                 1560
10381                 1560
10382     EXOSC3P1     499
10383                 1434
10384                 1434
10385                 1434
10386                 1434
10387                  560
10388       HSF2BP  130301
10389       HSF2BP  130301
10390       HSF2BP  130301
10391       HSF2BP  130301
10392       HSF2BP  130301
10393       HSF2BP  130301
10394       HSF2BP  130301
10395       HSF2BP  130301
10396       HSF2BP  130301
10397       HSF2BP  130301
10398       HSF2BP  130301
10399       HSF2BP  130301
10400       HSF2BP  130301
10401       HSF2BP  130301
10402       HSF2BP  130301
10403       HSF2BP  130301
10404      OR4K11P     903
10405       DSCR10    2488
10406       DSCR10    2488
10407       DSCR10    2488
10408                  425
10409      DNAJC28    6190
10410      DNAJC28    6190
10411      DNAJC28    6190
10412      DNAJC28    6190
10413      DNAJC28    6190
10414      DNAJC28    6190
10415      DNAJC28    6190
10416      DNAJC28    6190
10417      DNAJC28    6190
10418                 1759
10419                 1759
10420                 1759
10421                 3741
10422                 3741
10423                 3741
10424                 3741
10425                 3741
10426                 3741
10427                 3741
10428                 3741
10429                 3741
10430       IFNGR2   76452
10431       IFNGR2   76452
10432       IFNGR2   76452
10433       IFNGR2   76452
10434       IFNGR2   76452
10435       IFNGR2   76452
10436       IFNGR2   76452
10437       IFNGR2   76452
10438       IFNGR2   76452
10439       IFNGR2   76452
10440       IFNGR2   76452
10441       IFNGR2   76452
10442       IFNGR2   76452
10443       IFNGR2   76452
10444       IFNGR2   76452
10445       IFNGR2   76452
10446       IFNGR2   76452
10447       IFNGR2   76452
10448       IFNGR2   76452
10449       IFNGR2   76452
10450       IFNGR2   76452
10451       IFNGR2   76452
10452       IFNGR2   76452
10453       IFNGR2   76452
10454       IFNGR2   76452
10455       IFNGR2   76452
10456       IFNGR2   76452
10457       IFNGR2   76452
10458       IFNGR2   76452
10459       IFNGR2   76452
10460       IFNGR2   76452
10461       IFNGR2   76452
10462       IFNGR2   76452
10463       IFNGR2   76452
10464       IFNGR2   76452
10465       IFNGR2   76452
10466       IFNGR2   76452
10467       IFNGR2   76452
10468       IFNGR2   76452
10469      U2AF1L5   14638
10470      U2AF1L5   14638
10471      U2AF1L5   14638
10472      U2AF1L5   14638
10473      U2AF1L5   14638
10474      U2AF1L5   14638
10475      U2AF1L5   14638
10476      U2AF1L5   14638
10477      U2AF1L5   14638
10478      U2AF1L5   14638
10479      U2AF1L5   14638
10480      U2AF1L5   14638
10481      U2AF1L5   14638
10482      U2AF1L5   14638
10483      U2AF1L5   14638
10484      U2AF1L5   14638
10485      U2AF1L5   14638
10486      U2AF1L5   14638
10487      U2AF1L5   14638
10488      U2AF1L5   14638
10489      U2AF1L5   14638
10490      U2AF1L5   14638
10491      U2AF1L5   14638
10492      U2AF1L5   14638
10493      U2AF1L5   14638
10494      U2AF1L5   14638
10495      U2AF1L5   14638
10496      U2AF1L5   14638
10497      U2AF1L5   14638
10498      U2AF1L5   14638
10499      U2AF1L5   14638
10500      U2AF1L5   14638
10501      U2AF1L5   14638
10502      U2AF1L5   14638
10503      U2AF1L5   14638
10504      U2AF1L5   14638
10505      U2AF1L5   14638
10506      U2AF1L5   14638
10507      U2AF1L5   14638
10508      U2AF1L5   14638
10509      U2AF1L5   14638
10510      U2AF1L5   14638
10511      U2AF1L5   14638
10512      U2AF1L5   14638
10513      U2AF1L5   14638
10514      U2AF1L5   14638
10515      U2AF1L5   14638
10516      U2AF1L5   14638
10517      U2AF1L5   14638
10518      U2AF1L5   14638
10519      U2AF1L5   14638
10520      U2AF1L5   14638
10521      U2AF1L5   14638
10522      U2AF1L5   14638
10523      U2AF1L5   14638
10524      U2AF1L5   14638
10525      U2AF1L5   14638
10526      U2AF1L5   14638
10527      U2AF1L5   14638
10528      U2AF1L5   14638
10529      U2AF1L5   14638
10530      U2AF1L5   14638
10531      U2AF1L5   14638
10532      U2AF1L5   14638
10533      U2AF1L5   14638
10534      U2AF1L5   14638
10535      U2AF1L5   14638
10536      U2AF1L5   14638
10537      U2AF1L5   14638
10538      U2AF1L5   14638
10539                  964
10540                  964
10541                36438
10542                36438
10543                36438
10544                36438
10545                36438
10546                36438
10547                36438
10548                36438
10549                36438
10550                36438
10551                36438
10552                36438
10553       CLDN14  115948
10554       CLDN14  115948
10555       CLDN14  115948
10556       CLDN14  115948
10557       CLDN14  115948
10558       CLDN14  115948
10559       CLDN14  115948
10560       CLDN14  115948
10561       CLDN14  115948
10562       CLDN14  115948
10563       CLDN14  115948
10564       CLDN14  115948
10565       CLDN14  115948
10566       CLDN14  115948
10567       CLDN14  115948
10568 C21orf91-OT1   29208
10569 C21orf91-OT1   29208
10570 C21orf91-OT1   29208
10571 C21orf91-OT1   29208
10572 C21orf91-OT1   29208
10573 C21orf91-OT1   29208
10574 C21orf91-OT1   29208
10575 C21orf91-OT1   29208
10576 C21orf91-OT1   29208
10577 C21orf91-OT1   29208
10578 C21orf91-OT1   29208
10579 C21orf91-OT1   29208
10580      TMPRSS3   24956
10581      TMPRSS3   24956
10582      TMPRSS3   24956
10583      TMPRSS3   24956
10584      TMPRSS3   24956
10585      TMPRSS3   24956
10586      TMPRSS3   24956
10587      TMPRSS3   24956
10588      TMPRSS3   24956
10589      TMPRSS3   24956
10590      TMPRSS3   24956
10591      TMPRSS3   24956
10592      TMPRSS3   24956
10593      TMPRSS3   24956
10594      TMPRSS3   24956
10595      TMPRSS3   24956
10596      TMPRSS3   24956
10597      TMPRSS3   24956
10598      TMPRSS3   24956
10599      TMPRSS3   24956
10600      TMPRSS3   24956
10601      TMPRSS3   24956
10602      TMPRSS3   24956
10603      TMPRSS3   24956
10604      TMPRSS3   24956
10605      TMPRSS3   24956
10606      TMPRSS3   24956
10607      TMPRSS3   24956
10608      TMPRSS3   24956
10609      TMPRSS3   24956
10610      TMPRSS3   24956
10611      TMPRSS3   24956
10612      TMPRSS3   24956
10613      TMPRSS3   24956
10614      TMPRSS3   24956
10615      TMPRSS3   24956
10616      TMPRSS3   24956
10617      TMPRSS3   24956
10618      TMPRSS3   24956
10619      TMPRSS3   24956
10620      TMPRSS3   24956
10621      TMPRSS3   24956
10622      TMPRSS3   24956
10623      TMPRSS3   24956
10624      TMPRSS3   24956
10625      TMPRSS3   24956
10626      TMPRSS3   24956
10627      TMPRSS3   24956
10628      TMPRSS3   24956
10629      TMPRSS3   24956
10630      TMPRSS3   24956
10631      TMPRSS3   24956
10632      TMPRSS3   24956
10633      TMPRSS3   24956
10634      TMPRSS3   24956
10635      TMPRSS3   24956
10636      TMPRSS3   24956
10637      TMPRSS3   24956
10638      TMPRSS3   24956
10639      TMPRSS3   24956
10640      TMPRSS3   24956
10641      TMPRSS3   24956
10642      TMPRSS3   24956
10643      TMPRSS3   24956
10644      TMPRSS3   24956
10645      TMPRSS3   24956
10646      TMPRSS3   24956
10647      TMPRSS3   24956
10648      TMPRSS3   24956
10649      TMPRSS3   24956
10650      TMPRSS3   24956
10651      TMPRSS3   24956
10652      TMPRSS3   24956
10653      TMPRSS3   24956
10654      TMPRSS3   24956
10655    LINC01673   14798
10656    LINC01673   14798
10657    LINC01673   14798
10658                38348
10659                38348
10660                38348
10661                38348
10662                38348
10663                38348
10664                38348
10665                38348
10666                38348
10667                38348
10668                38348
10669                38348
10670                38348
10671                38348
10672                38348
10673                38348
10674                38348
10675                38348
10676                38348
10677                38348
10678                38348
10679                38348
10680                38348
10681       ICOSLG   17975
10682       ICOSLG   17975
10683       ICOSLG   17975
10684       ICOSLG   17975
10685       ICOSLG   17975
10686       ICOSLG   17975
10687       ICOSLG   17975
10688       ICOSLG   17975
10689       ICOSLG   17975
10690       ICOSLG   17975
10691       ICOSLG   17975
10692       ICOSLG   17975
10693       ICOSLG   17975
10694       ICOSLG   17975
10695       ICOSLG   17975
10696       ICOSLG   17975
10697       ICOSLG   17975
10698       ICOSLG   17975
10699       ICOSLG   17975
10700       ICOSLG   17975
10701       ICOSLG   17975
10702       ICOSLG   17975
10703       ICOSLG   17975
10704       ICOSLG   17975
10705       ICOSLG   17975
10706       ICOSLG   17975
10707                 2478
10708                 2478
10709                12004
10710                12004
10711                12004
10712        OLIG2    3351
10713        OLIG2    3351
10714        OLIG2    3351
10715        OLIG2    3351
10716        OLIG2    3351
10717    LINC00945    7154
10718    LINC00945    7154
10719    LINC00945    7154
10720    LINC00945    7154
10721    LINC00945    7154
10722                 1678
10723                 1678
10724                 1403
10725                11165
10726                11165
10727    LINC01670    3391
10728    LINC01670    3391
10729    LINC01670    3391
10730    LINC01670    3391
10731    LINC01670    3391
10732    LINC01670    3391
10733    LINC01670    3391
10734    LINC01670    3391
10735                 8672
10736                 8672
10737                 8672
10738                 8672
10739                 8672
10740                 8672
10741                 8672
10742                 8672
10743                61243
10744                61243
10745                61243
10746                61243
10747                61243
10748                61243
10749                61243
10750                61243
10751                61243
10752                61243
10753                61243
10754                61243
10755                61243
10756                61243
10757                61243
10758                61243
10759                61243
10760                61243
10761                61243
10762                61243
10763                61243
10764                61243
10765                61243
10766                61243
10767                61243
10768                61243
10769                61243
10770                61243
10771                61243
10772                61243
10773                61243
10774                61243
10775                61243
10776                61243
10777                61243
10778                61243
10779                61243
10780                61243
10781                61243
10782                61243
10783    LINC00320   60626
10784    LINC00320   60626
10785    LINC00320   60626
10786    LINC00320   60626
10787    LINC00320   60626
10788    LINC00320   60626
10789    LINC00320   60626
10790    LINC00320   60626
10791    LINC00320   60626
10792    LINC00320   60626
10793    LINC00320   60626
10794    LINC00320   60626
10795    LINC00320   60626
10796    LINC00320   60626
10797    LINC00320   60626
10798    LINC00320   60626
10799    LINC00320   60626
10800    LINC00320   60626
10801    LINC00320   60626
10802    LINC00320   60626
10803    LINC00320   60626
10804    LINC00320   60626
10805    LINC00320   60626
10806    LINC00320   60626
10807    LINC00320   60626
10808    LINC00320   60626
10809    LINC00320   60626
10810    LINC00320   60626
10811    LINC00320   60626
10812    LINC00320   60626
10813    LINC00320   60626
10814    LINC00320   60626
10815    LINC00320   60626
10816    LINC00320   60626
10817    LINC00320   60626
10818    LINC00320   60626
10819    LINC00320   60626
10820                 2126
10821                 2126
10822                35929
10823                35929
10824                35929
10825                 3363
10826                 3363
10827                 3363
10828                 3363
10829                 3363
10830 C21orf62-AS1  121635
10831 C21orf62-AS1  121635
10832 C21orf62-AS1  121635
10833 C21orf62-AS1  121635
10834 C21orf62-AS1  121635
10835 C21orf62-AS1  121635
10836 C21orf62-AS1  121635
10837 C21orf62-AS1  121635
10838 C21orf62-AS1  121635
10839 C21orf62-AS1  121635
10840 C21orf62-AS1  121635
10841 C21orf62-AS1  121635
10842 C21orf62-AS1  121635
10843 C21orf62-AS1  121635
10844 C21orf62-AS1  121635
10845 C21orf62-AS1  121635
10846 C21orf62-AS1  121635
10847 C21orf62-AS1  121635
10848 C21orf62-AS1  121635
10849 C21orf62-AS1  121635
10850 C21orf62-AS1  121635
10851 C21orf62-AS1  121635
10852 C21orf62-AS1  121635
10853         LTN1   64812
10854         LTN1   64812
10855         LTN1   64812
10856         LTN1   64812
10857         LTN1   64812
10858         LTN1   64812
10859         LTN1   64812
10860         LTN1   64812
10861         LTN1   64812
10862         LTN1   64812
10863         LTN1   64812
10864         LTN1   64812
10865         LTN1   64812
10866         LTN1   64812
10867         LTN1   64812
10868         LTN1   64812
10869         LTN1   64812
10870         LTN1   64812
10871         LTN1   64812
10872         LTN1   64812
10873         LTN1   64812
10874         LTN1   64812
10875         LTN1   64812
10876         LTN1   64812
10877         LTN1   64812
10878         LTN1   64812
10879         LTN1   64812
10880         LTN1   64812
10881         LTN1   64812
10882         LTN1   64812
10883         LTN1   64812
10884         LTN1   64812
10885         LTN1   64812
10886         LTN1   64812
10887         LTN1   64812
10888         LTN1   64812
10889         LTN1   64812
10890         LTN1   64812
10891         LTN1   64812
10892         LTN1   64812
10893         LTN1   64812
10894         LTN1   64812
10895         LTN1   64812
10896         LTN1   64812
10897         LTN1   64812
10898         LTN1   64812
10899         LTN1   64812
10900         LTN1   64812
10901         LTN1   64812
10902         LTN1   64812
10903         LTN1   64812
10904         LTN1   64812
10905         LTN1   64812
10906         LTN1   64812
10907         LTN1   64812
10908         LTN1   64812
10909         LTN1   64812
10910         LTN1   64812
10911         LTN1   64812
10912         LTN1   64812
10913         LTN1   64812
10914         LTN1   64812
10915         LTN1   64812
10916         LTN1   64812
10917         LTN1   64812
10918         LTN1   64812
10919         LTN1   64812
10920         LTN1   64812
10921         LTN1   64812
10922         LTN1   64812
10923         LTN1   64812
10924         LTN1   64812
10925         LTN1   64812
10926         LTN1   64812
10927         LTN1   64812
10928         LTN1   64812
10929         LTN1   64812
10930         LTN1   64812
10931         LTN1   64812
10932         LTN1   64812
10933         LTN1   64812
10934         LTN1   64812
10935         LTN1   64812
10936         LTN1   64812
10937         LTN1   64812
10938         LTN1   64812
10939         LTN1   64812
10940         LTN1   64812
10941         LTN1   64812
10942         LTN1   64812
10943         LTN1   64812
10944         LTN1   64812
10945         LTN1   64812
10946         LTN1   64812
10947         LTN1   64812
10948         LTN1   64812
10949         LTN1   64812
10950         LTN1   64812
10951         LTN1   64812
10952         LTN1   64812
10953         LTN1   64812
10954         LTN1   64812
10955         LTN1   64812
10956         LTN1   64812
10957         LTN1   64812
10958         LTN1   64812
10959         LTN1   64812
10960         LTN1   64812
10961         LTN1   64812
10962         LTN1   64812
10963         LTN1   64812
10964         LTN1   64812
10965         LTN1   64812
10966         LTN1   64812
10967         LTN1   64812
10968         LTN1   64812
10969         LTN1   64812
10970         LTN1   64812
10971      HSPD1P7    1992
10972      HSPD1P7    1992
10973       N6AMT1   13180
10974       N6AMT1   13180
10975       N6AMT1   13180
10976       N6AMT1   13180
10977       N6AMT1   13180
10978       N6AMT1   13180
10979       N6AMT1   13180
10980       N6AMT1   13180
10981       N6AMT1   13180
10982       N6AMT1   13180
10983       N6AMT1   13180
10984       N6AMT1   13180
10985       N6AMT1   13180
10986       N6AMT1   13180
10987       N6AMT1   13180
10988       N6AMT1   13180
10989       N6AMT1   13180
10990       N6AMT1   13180
10991       EZH2P1     290
10992      VDAC2P1     957
10993    LINC01697   89207
10994    LINC01697   89207
10995    LINC01697   89207
10996    LINC01697   89207
10997    LINC01697   89207
10998    LINC01697   89207
10999    LINC01697   89207
11000    LINC01697   89207
11001    LINC01697   89207
11002    LINC01697   89207
11003    LINC01697   89207
11004    LINC01697   89207
11005    LINC01697   89207
11006    LINC01697   89207
11007    LINC01697   89207
11008    LINC01697   89207
11009    LINC01697   89207
11010    LINC01697   89207
11011    LINC01697   89207
11012    LINC01697   89207
11013                30373
11014                30373
11015                30373
11016                89694
11017                89694
11018                89694
11019                89694
11020                33459
11021                33459
11022                33459
11023                33459
11024                33459
11025                33459
11026                33459
11027                33459
11028                33459
11029                33459
11030                33459
11031                33459
11032                33459
11033                33459
11034                33459
11035       TPT1P1     517
11036   UMODL1-AS1    6400
11037   UMODL1-AS1    6400
11038               117047
11039               117047
11040               117047
11041               117047
11042               117047
11043               117047
11044               117047
11045               117047
11046               117047
11047      HMGN1P2     309
11048  ANKRD20A11P   70863
11049  ANKRD20A11P   70863
11050  ANKRD20A11P   70863
11051  ANKRD20A11P   70863
11052  ANKRD20A11P   70863
11053  ANKRD20A11P   70863
11054  ANKRD20A11P   70863
11055  ANKRD20A11P   70863
11056  ANKRD20A11P   70863
11057  ANKRD20A11P   70863
11058  ANKRD20A11P   70863
11059  ANKRD20A11P   70863
11060  ANKRD20A11P   70863
11061  ANKRD20A11P   70863
11062  ANKRD20A11P   70863
11063  ANKRD20A11P   70863
11064  ANKRD20A11P   70863
11065  ANKRD20A11P   70863
11066  ANKRD20A11P   70863
11067  ANKRD20A11P   70863
11068  ANKRD20A11P   70863
11069  ANKRD20A11P   70863
11070  ANKRD20A11P   70863
11071  ANKRD20A11P   70863
11072  ANKRD20A11P   70863
11073  ANKRD20A11P   70863
11074  ANKRD20A11P   70863
11075  ANKRD20A11P   70863
11076  ANKRD20A11P   70863
11077  ANKRD20A11P   70863
11078  ANKRD20A11P   70863
11079  ANKRD20A11P   70863
11080  ANKRD20A11P   70863
11081  ANKRD20A11P   70863
11082  ANKRD20A11P   70863
11083  ANKRD20A11P   70863
11084  ANKRD20A11P   70863
11085  ANKRD20A11P   70863
11086  ANKRD20A11P   70863
11087  ANKRD20A11P   70863
11088  ANKRD20A11P   70863
11089  ANKRD20A11P   70863
11090  ANKRD20A11P   70863
11091  ANKRD20A11P   70863
11092  ANKRD20A11P   70863
11093  ANKRD20A11P   70863
11094  ANKRD20A11P   70863
11095  ANKRD20A11P   70863
11096  ANKRD20A11P   70863
11097  ANKRD20A11P   70863
11098  ANKRD20A11P   70863
11099  ANKRD20A11P   70863
11100  ANKRD20A11P   70863
11101  ANKRD20A11P   70863
11102  ANKRD20A11P   70863
11103  ANKRD20A11P   70863
11104  ANKRD20A11P   70863
11105  ANKRD20A11P   70863
11106  ANKRD20A11P   70863
11107                 1242
11108                 1242
11109     KRTAP7-1     720
11110    KRTAP20-3     272
11111                  455
11112       DYRK1A  151660
11113       DYRK1A  151660
11114       DYRK1A  151660
11115       DYRK1A  151660
11116       DYRK1A  151660
11117       DYRK1A  151660
11118       DYRK1A  151660
11119       DYRK1A  151660
11120       DYRK1A  151660
11121       DYRK1A  151660
11122       DYRK1A  151660
11123       DYRK1A  151660
11124       DYRK1A  151660
11125       DYRK1A  151660
11126       DYRK1A  151660
11127       DYRK1A  151660
11128       DYRK1A  151660
11129       DYRK1A  151660
11130       DYRK1A  151660
11131       DYRK1A  151660
11132       DYRK1A  151660
11133       DYRK1A  151660
11134       DYRK1A  151660
11135       DYRK1A  151660
11136       DYRK1A  151660
11137       DYRK1A  151660
11138       DYRK1A  151660
11139       DYRK1A  151660
11140       DYRK1A  151660
11141       DYRK1A  151660
11142       DYRK1A  151660
11143       DYRK1A  151660
11144       DYRK1A  151660
11145       DYRK1A  151660
11146       DYRK1A  151660
11147       DYRK1A  151660
11148       DYRK1A  151660
11149       DYRK1A  151660
11150       DYRK1A  151660
11151       DYRK1A  151660
11152       DYRK1A  151660
11153       DYRK1A  151660
11154       DYRK1A  151660
11155       DYRK1A  151660
11156       DYRK1A  151660
11157       DYRK1A  151660
11158       DYRK1A  151660
11159       DYRK1A  151660
11160       DYRK1A  151660
11161       DYRK1A  151660
11162       DYRK1A  151660
11163       DYRK1A  151660
11164       DYRK1A  151660
11165       DYRK1A  151660
11166       DYRK1A  151660
11167       DYRK1A  151660
11168       DYRK1A  151660
11169       DYRK1A  151660
11170       DYRK1A  151660
11171       DYRK1A  151660
11172       DYRK1A  151660
11173       DYRK1A  151660
11174       DYRK1A  151660
11175       DYRK1A  151660
11176       RPL8P2     501
11177       DSTNP1     464
11178        PRMT2   29957
11179        PRMT2   29957
11180        PRMT2   29957
11181        PRMT2   29957
11182        PRMT2   29957
11183        PRMT2   29957
11184        PRMT2   29957
11185        PRMT2   29957
11186        PRMT2   29957
11187        PRMT2   29957
11188        PRMT2   29957
11189        PRMT2   29957
11190        PRMT2   29957
11191        PRMT2   29957
11192        PRMT2   29957
11193        PRMT2   29957
11194        PRMT2   29957
11195        PRMT2   29957
11196        PRMT2   29957
11197        PRMT2   29957
11198        PRMT2   29957
11199        PRMT2   29957
11200        PRMT2   29957
11201        PRMT2   29957
11202        PRMT2   29957
11203        PRMT2   29957
11204        PRMT2   29957
11205        PRMT2   29957
11206        PRMT2   29957
11207        PRMT2   29957
11208        PRMT2   29957
11209        PRMT2   29957
11210        PRMT2   29957
11211        PRMT2   29957
11212        PRMT2   29957
11213        PRMT2   29957
11214        PRMT2   29957
11215        PRMT2   29957
11216        PRMT2   29957
11217        PRMT2   29957
11218        PRMT2   29957
11219        PRMT2   29957
11220        PRMT2   29957
11221        PRMT2   29957
11222        PRMT2   29957
11223        PRMT2   29957
11224        PRMT2   29957
11225        PRMT2   29957
11226        PRMT2   29957
11227        PRMT2   29957
11228        PRMT2   29957
11229        PRMT2   29957
11230        PRMT2   29957
11231        PRMT2   29957
11232        PRMT2   29957
11233        PRMT2   29957
11234        PRMT2   29957
11235        PRMT2   29957
11236        PRMT2   29957
11237        PRMT2   29957
11238        PRMT2   29957
11239        PRMT2   29957
11240        PRMT2   29957
11241        PRMT2   29957
11242        PRMT2   29957
11243        PRMT2   29957
11244        PRMT2   29957
11245        PRMT2   29957
11246        PRMT2   29957
11247        PRMT2   29957
11248        PRMT2   29957
11249        PRMT2   29957
11250        PRMT2   29957
11251        PRMT2   29957
11252        PRMT2   29957
11253        PRMT2   29957
11254        PRMT2   29957
11255        PRMT2   29957
11256        PRMT2   29957
11257        PRMT2   29957
11258        PRMT2   29957
11259        PRMT2   29957
11260        PRMT2   29957
11261        PRMT2   29957
11262        PRMT2   29957
11263        PRMT2   29957
11264        PRMT2   29957
11265        PRMT2   29957
11266        PRMT2   29957
11267        PRMT2   29957
11268        PRMT2   29957
11269        PRMT2   29957
11270        PRMT2   29957
11271        PRMT2   29957
11272        PRMT2   29957
11273        PRMT2   29957
11274        PRMT2   29957
11275        PRMT2   29957
11276        PRMT2   29957
11277        PRMT2   29957
11278        PRMT2   29957
11279        PRMT2   29957
11280        PRMT2   29957
11281        PRMT2   29957
11282        PRMT2   29957
11283        PRMT2   29957
11284        PRMT2   29957
11285        PRMT2   29957
11286        PRMT2   29957
11287    KRTAP24-1    1649
11288    KRTAP25-1     369
11289    KRTAP26-1    1192
11290    KRTAP27-1     681
11291    KRTAP23-1     210
11292   KRTAP13-6P     370
11293    KRTAP13-2     866
11294    KRTAP13-1     748
11295    KRTAP13-3     703
11296    KRTAP13-4     796
11297    LINC00314    9870
11298    LINC00314    9870
11299      RBPMSLP    1076
11300      RBPMSLP    1076
11301       SAMSN1   98174
11302       SAMSN1   98174
11303       SAMSN1   98174
11304       SAMSN1   98174
11305       SAMSN1   98174
11306       SAMSN1   98174
11307       SAMSN1   98174
11308       SAMSN1   98174
11309       SAMSN1   98174
11310       SAMSN1   98174
11311       SAMSN1   98174
11312       SAMSN1   98174
11313       SAMSN1   98174
11314       SAMSN1   98174
11315       SAMSN1   98174
11316       SAMSN1   98174
11317       SAMSN1   98174
11318       SAMSN1   98174
11319       SAMSN1   98174
11320       SAMSN1   98174
11321       SAMSN1   98174
11322       SAMSN1   98174
11323       SAMSN1   98174
11324       SAMSN1   98174
11325       SAMSN1   98174
11326       SAMSN1   98174
11327       SAMSN1   98174
11328       SAMSN1   98174
11329       SAMSN1   98174
11330       SAMSN1   98174
11331       SAMSN1   98174
11332       SAMSN1   98174
11333       SAMSN1   98174
11334       SAMSN1   98174
11335       SAMSN1   98174
11336       SAMSN1   98174
11337    LINC00159  117497
11338    LINC00159  117497
11339    LINC00159  117497
11340    LINC00159  117497
11341    LINC00159  117497
11342    LINC00159  117497
11343    LINC00159  117497
11344                14409
11345                14409
11346    LINC01423    9786
11347    LINC01423    9786
11348    LINC01423    9786
11349    LINC01423    9786
11350    LINC01423    9786
11351    LINC01423    9786
11352    LINC01423    9786
11353    LINC01423    9786
11354    LINC01423    9786
11355     FBXW11P1    1473
11356    LINC00322    9622
11357    LINC00322    9622
11358    LINC00322    9622
11359    SPATA20P1     437
11360                  200
11361    KRTAP19-3     521
11362    KRTAP15-1     670
11363        BAGE2  102954
11364        BAGE2  102954
11365        BAGE2  102954
11366        BAGE2  102954
11367        BAGE2  102954
11368        BAGE2  102954
11369        BAGE2  102954
11370        BAGE2  102954
11371        BAGE2  102954
11372        BAGE2  102954
11373        BAGE2  102954
11374        BAGE2  102954
11375        BAGE2  102954
11376        BAGE2  102954
11377        BAGE2  102954
11378        BAGE2  102954
11379        BAGE2  102954
11380        BAGE2  102954
11381        BAGE2  102954
11382        BAGE2  102954
11383        BAGE2  102954
11384        BAGE2  102954
11385        BAGE2  102954
11386        BAGE2  102954
11387        BAGE2  102954
11388        BAGE2  102954
11389        BAGE2  102954
11390        BAGE2  102954
11391               122978
11392               122978
11393               122978
11394               122978
11395               122978
11396               122978
11397               122978
11398               122978
11399               122978
11400               122978
11401               122978
11402               122978
11403               122978
11404               122978
11405               122978
11406               122978
11407               122978
11408               122978
11409               122978
11410               122978
11411               122978
11412               122978
11413               122978
11414               122978
11415               122978
11416               122978
11417               122978
11418               122978
11419               122978
11420               122978
11421               122978
11422               122978
11423                 9241
11424                 9241
11425     MIR99AHG  699101
11426     MIR99AHG  699101
11427     MIR99AHG  699101
11428     MIR99AHG  699101
11429     MIR99AHG  699101
11430     MIR99AHG  699101
11431     MIR99AHG  699101
11432     MIR99AHG  699101
11433     MIR99AHG  699101
11434     MIR99AHG  699101
11435     MIR99AHG  699101
11436     MIR99AHG  699101
11437     MIR99AHG  699101
11438     MIR99AHG  699101
11439     MIR99AHG  699101
11440     MIR99AHG  699101
11441     MIR99AHG  699101
11442     MIR99AHG  699101
11443     MIR99AHG  699101
11444     MIR99AHG  699101
11445     MIR99AHG  699101
11446     MIR99AHG  699101
11447     MIR99AHG  699101
11448     MIR99AHG  699101
11449     MIR99AHG  699101
11450     MIR99AHG  699101
11451     MIR99AHG  699101
11452     MIR99AHG  699101
11453     MIR99AHG  699101
11454     MIR99AHG  699101
11455     MIR99AHG  699101
11456     MIR99AHG  699101
11457     MIR99AHG  699101
11458     MIR99AHG  699101
11459     MIR99AHG  699101
11460     MIR99AHG  699101
11461     MIR99AHG  699101
11462     MIR99AHG  699101
11463     MIR99AHG  699101
11464     MIR99AHG  699101
11465     MIR99AHG  699101
11466     MIR99AHG  699101
11467     MIR99AHG  699101
11468     MIR99AHG  699101
11469     MIR99AHG  699101
11470     MIR99AHG  699101
11471     MIR99AHG  699101
11472     MIR99AHG  699101
11473     MIR99AHG  699101
11474     MIR99AHG  699101
11475     MIR99AHG  699101
11476     MIR99AHG  699101
11477     MIR99AHG  699101
11478     MIR99AHG  699101
11479     MIR99AHG  699101
11480     MIR99AHG  699101
11481     MIR99AHG  699101
11482     MIR99AHG  699101
11483     MIR99AHG  699101
11484     MIR99AHG  699101
11485     MIR99AHG  699101
11486     MIR99AHG  699101
11487     MIR99AHG  699101
11488     MIR99AHG  699101
11489     MIR99AHG  699101
11490     MIR99AHG  699101
11491     MIR99AHG  699101
11492     MIR99AHG  699101
11493     MIR99AHG  699101
11494     MIR99AHG  699101
11495     MIR99AHG  699101
11496     MIR99AHG  699101
11497     MIR99AHG  699101
11498     MIR99AHG  699101
11499     MIR99AHG  699101
11500     MIR99AHG  699101
11501     MIR99AHG  699101
11502     MIR99AHG  699101
11503     MIR99AHG  699101
11504     MIR99AHG  699101
11505     MIR99AHG  699101
11506     MIR99AHG  699101
11507     MIR99AHG  699101
11508     MIR99AHG  699101
11509     MIR99AHG  699101
11510     MIR99AHG  699101
11511     MIR99AHG  699101
11512     MIR99AHG  699101
11513     MIR99AHG  699101
11514     MIR99AHG  699101
11515     MIR99AHG  699101
11516     MIR99AHG  699101
11517     MIR99AHG  699101
11518     MIR99AHG  699101
11519     MIR99AHG  699101
11520     MIR99AHG  699101
11521     MIR99AHG  699101
11522     MIR99AHG  699101
11523     MIR99AHG  699101
11524     MIR99AHG  699101
11525     MIR99AHG  699101
11526                  680
11527                  680
11528     EIF4A1P1     933
11529                  430
11530    BRWD1-AS1    7511
11531    BRWD1-AS1    7511
11532    BRWD1-AS1    7511
11533      PCBP2P1     976
11534                46510
11535                46510
11536                46510
11537                46510
11538                46510
11539                46510
11540                46510
11541          APP  290578
11542          APP  290578
11543          APP  290578
11544          APP  290578
11545          APP  290578
11546          APP  290578
11547          APP  290578
11548          APP  290578
11549          APP  290578
11550          APP  290578
11551          APP  290578
11552          APP  290578
11553          APP  290578
11554          APP  290578
11555          APP  290578
11556          APP  290578
11557          APP  290578
11558          APP  290578
11559          APP  290578
11560          APP  290578
11561          APP  290578
11562          APP  290578
11563          APP  290578
11564          APP  290578
11565          APP  290578
11566          APP  290578
11567          APP  290578
11568          APP  290578
11569          APP  290578
11570          APP  290578
11571          APP  290578
11572          APP  290578
11573          APP  290578
11574          APP  290578
11575          APP  290578
11576          APP  290578
11577          APP  290578
11578          APP  290578
11579          APP  290578
11580          APP  290578
11581          APP  290578
11582          APP  290578
11583          APP  290578
11584          APP  290578
11585          APP  290578
11586          APP  290578
11587          APP  290578
11588          APP  290578
11589          APP  290578
11590          APP  290578
11591          APP  290578
11592          APP  290578
11593          APP  290578
11594          APP  290578
11595          APP  290578
11596          APP  290578
11597          APP  290578
11598          APP  290578
11599          APP  290578
11600          APP  290578
11601          APP  290578
11602          APP  290578
11603          APP  290578
11604          APP  290578
11605          APP  290578
11606          APP  290578
11607          APP  290578
11608          APP  290578
11609          APP  290578
11610          APP  290578
11611          APP  290578
11612          APP  290578
11613          APP  290578
11614          APP  290578
11615          APP  290578
11616          APP  290578
11617          APP  290578
11618          APP  290578
11619          APP  290578
11620          APP  290578
11621          APP  290578
11622          APP  290578
11623          APP  290578
11624          APP  290578
11625          APP  290578
11626          APP  290578
11627          APP  290578
11628          APP  290578
11629          APP  290578
11630          APP  290578
11631          APP  290578
11632          APP  290578
11633          APP  290578
11634          APP  290578
11635          APP  290578
11636          APP  290578
11637          APP  290578
11638          APP  290578
11639          APP  290578
11640          APP  290578
11641          APP  290578
11642          APP  290578
11643          APP  290578
11644          APP  290578
11645          APP  290578
11646          APP  290578
11647          APP  290578
11648          APP  290578
11649          APP  290578
11650          APP  290578
11651          APP  290578
11652          APP  290578
11653          APP  290578
11654          APP  290578
11655          APP  290578
11656          APP  290578
11657          APP  290578
11658          APP  290578
11659          APP  290578
11660          APP  290578
11661          APP  290578
11662          APP  290578
11663          APP  290578
11664          APP  290578
11665          APP  290578
11666          APP  290578
11667          APP  290578
11668          APP  290578
11669          APP  290578
11670          APP  290578
11671          APP  290578
11672          APP  290578
11673          APP  290578
11674          APP  290578
11675          APP  290578
11676          APP  290578
11677          APP  290578
11678          APP  290578
11679          APP  290578
11680          APP  290578
11681          APP  290578
11682          APP  290578
11683          APP  290578
11684          APP  290578
11685          APP  290578
11686          APP  290578
11687          APP  290578
11688          APP  290578
11689          APP  290578
11690          APP  290578
11691          APP  290578
11692          APP  290578
11693          APP  290578
11694          APP  290578
11695          APP  290578
11696          APP  290578
11697          APP  290578
11698          APP  290578
11699          APP  290578
11700          APP  290578
11701          APP  290578
11702          APP  290578
11703          APP  290578
11704          APP  290578
11705          APP  290578
11706          APP  290578
11707          APP  290578
11708          APP  290578
11709          APP  290578
11710          APP  290578
11711          APP  290578
11712          APP  290578
11713          APP  290578
11714          APP  290578
11715    LINC01695  112573
11716    LINC01695  112573
11717    LINC01695  112573
11718    LINC01695  112573
11719    LINC01695  112573
11720    LINC01695  112573
11721    LINC01695  112573
11722    LINC01695  112573
11723    LINC01695  112573
11724    LINC01695  112573
11725    LINC01695  112573
11726    LINC01695  112573
11727    LINC01695  112573
11728    LINC01694    9402
11729    LINC01694    9402
11730    LINC01694    9402
11731    LINC01694    9402
11732    LINC01694    9402
11733    LINC00316    3400
11734    LINC00316    3400
11735                 1958
11736                 1958
11737    LINC00315    5012
11738    LINC00315    5012
11739    LINC00315    5012
11740    LINC00205    4069
11741    LINC00205    4069
11742         URB1   82008
11743         URB1   82008
11744         URB1   82008
11745         URB1   82008
11746         URB1   82008
11747         URB1   82008
11748         URB1   82008
11749         URB1   82008
11750         URB1   82008
11751         URB1   82008
11752         URB1   82008
11753         URB1   82008
11754         URB1   82008
11755         URB1   82008
11756         URB1   82008
11757         URB1   82008
11758         URB1   82008
11759         URB1   82008
11760         URB1   82008
11761         URB1   82008
11762         URB1   82008
11763         URB1   82008
11764         URB1   82008
11765         URB1   82008
11766         URB1   82008
11767         URB1   82008
11768         URB1   82008
11769         URB1   82008
11770         URB1   82008
11771         URB1   82008
11772         URB1   82008
11773         URB1   82008
11774         URB1   82008
11775         URB1   82008
11776         URB1   82008
11777         URB1   82008
11778         URB1   82008
11779         URB1   82008
11780         URB1   82008
11781         URB1   82008
11782         URB1   82008
11783         URB1   82008
11784         URB1   82008
11785      NCSTNP1     143
11786                50366
11787                50366
11788                50366
11789                  854
11790                  854
11791   METTL21AP1     634
11792        POTED   31727
11793        POTED   31727
11794        POTED   31727
11795        POTED   31727
11796        POTED   31727
11797        POTED   31727
11798        POTED   31727
11799        POTED   31727
11800        POTED   31727
11801        POTED   31727
11802        POTED   31727
11803        POTED   31727
11804        POTED   31727
11805        POTED   31727
11806        POTED   31727
11807        POTED   31727
11808        POTED   31727
11809        POTED   31727
11810        POTED   31727
11811                  519
11812         SOD1    9309
11813         SOD1    9309
11814         SOD1    9309
11815         SOD1    9309
11816         SOD1    9309
11817         SOD1    9309
11818         SOD1    9309
11819         SOD1    9309
11820         SOD1    9309
11821         SOD1    9309
11822         SOD1    9309
11823         SOD1    9309
11824         SOD1    9309
11825         SOD1    9309
11826         SOD1    9309
11827         SOD1    9309
11828         SOD1    9309
11829         SOD1    9309
11830         SOD1    9309
11831         SOD1    9309
11832    LINC00319    7292
11833    LINC00319    7292
11834    LINC00319    7292
11835    LINC00319    7292
11836    LINC00319    7292
11837    LINC00319    7292
11838    LINC00319    7292
11839                 1989
11840                 1989
11841    LINC00313   17440
11842    LINC00313   17440
11843    LINC00313   17440
11844    LINC00313   17440
11845    LINC00313   17440
11846    LINC00313   17440
11847    LINC00313   17440
11848    LINC00313   17440
11849    LINC00313   17440
11850    LINC00313   17440
11851    LINC00313   17440
11852    LINC00313   17440
11853    LINC00313   17440
11854    LINC00313   17440
11855    LINC00313   17440
11856    LINC00313   17440
11857    LINC00313   17440
11858    LINC00313   17440
11859    LINC00313   17440
11860    LINC00313   17440
11861    LINC00313   17440
11862    LINC00313   17440
11863                  283
11864     GRAMD4P1    1678
11865     GRAMD4P1    1678
11866      CXADRP1    1094
11867                 1838
11868                  665
11869      FEM1AP1    1994
11870                 1808
11871                 1808
11872      TERF1P1    1180
11873       ZBTB21   23556
11874       ZBTB21   23556
11875       ZBTB21   23556
11876       ZBTB21   23556
11877       ZBTB21   23556
11878       ZBTB21   23556
11879       ZBTB21   23556
11880       ZBTB21   23556
11881       ZBTB21   23556
11882       ZBTB21   23556
11883       ZBTB21   23556
11884       ZBTB21   23556
11885       ZBTB21   23556
11886       ZBTB21   23556
11887       ZBTB21   23556
11888       ZBTB21   23556
11889       ZBTB21   23556
11890       ZBTB21   23556
11891       ZBTB21   23556
11892       ZBTB21   23556
11893       ZBTB21   23556
11894       ZBTB21   23556
11895       ZBTB21   23556
11896       ZBTB21   23556
11897       ZBTB21   23556
11898       ZBTB21   23556
11899   ZNF295-AS1   15730
11900   ZNF295-AS1   15730
11901   ZNF295-AS1   15730
11902   ZNF295-AS1   15730
11903   ZNF295-AS1   15730
11904   ZNF295-AS1   15730
11905     FAM207CP     506
11906     GXYLT1P2    1229
11907       CNN2P7     931
11908     ZNF114P1     291
11909     CYP4F29P    5231
11910     CYP4F29P    5231
11911     CYP4F29P    5231
11912     CYP4F29P    5231
11913     CYP4F29P    5231
11914     CYP4F29P    5231
11915     CYP4F29P    5231
11916     CYP4F29P    5231
11917     CYP4F29P    5231
11918     CYP4F29P    5231
11919     CYP4F29P    5231
11920     CYP4F29P    5231
11921     SNX18P13     528
11922          ERG  281753
11923          ERG  281753
11924          ERG  281753
11925          ERG  281753
11926          ERG  281753
11927          ERG  281753
11928          ERG  281753
11929          ERG  281753
11930          ERG  281753
11931          ERG  281753
11932          ERG  281753
11933          ERG  281753
11934          ERG  281753
11935          ERG  281753
11936          ERG  281753
11937          ERG  281753
11938          ERG  281753
11939          ERG  281753
11940          ERG  281753
11941          ERG  281753
11942          ERG  281753
11943          ERG  281753
11944          ERG  281753
11945          ERG  281753
11946          ERG  281753
11947          ERG  281753
11948          ERG  281753
11949          ERG  281753
11950          ERG  281753
11951          ERG  281753
11952          ERG  281753
11953          ERG  281753
11954          ERG  281753
11955          ERG  281753
11956          ERG  281753
11957          ERG  281753
11958          ERG  281753
11959          ERG  281753
11960          ERG  281753
11961          ERG  281753
11962          ERG  281753
11963          ERG  281753
11964          ERG  281753
11965          ERG  281753
11966          ERG  281753
11967          ERG  281753
11968          ERG  281753
11969          ERG  281753
11970          ERG  281753
11971          ERG  281753
11972          ERG  281753
11973          ERG  281753
11974          ERG  281753
11975          ERG  281753
11976          ERG  281753
11977          ERG  281753
11978          ERG  281753
11979          ERG  281753
11980          ERG  281753
11981          ERG  281753
11982          ERG  281753
11983          ERG  281753
11984          ERG  281753
11985          ERG  281753
11986          ERG  281753
11987          ERG  281753
11988          ERG  281753
11989          ERG  281753
11990          ERG  281753
11991          ERG  281753
11992          ERG  281753
11993          ERG  281753
11994          ERG  281753
11995          ERG  281753
11996          ERG  281753
11997          ERG  281753
11998          ERG  281753
11999          ERG  281753
12000          ERG  281753
12001          ERG  281753
12002          ERG  281753
12003          ERG  281753
12004          ERG  281753
12005          ERG  281753
12006          ERG  281753
12007          ERG  281753
12008          ERG  281753
12009          ERG  281753
12010          ERG  281753
12011          ERG  281753
12012          ERG  281753
12013          ERG  281753
12014          ERG  281753
12015          ERG  281753
12016          ERG  281753
12017          ERG  281753
12018          ERG  281753
12019          ERG  281753
12020          ERG  281753
12021          ERG  281753
12022          ERG  281753
12023          ERG  281753
12024          ERG  281753
12025          ERG  281753
12026          ERG  281753
12027          ERG  281753
12028          ERG  281753
12029          ERG  281753
12030          ERG  281753
12031          ERG  281753
12032          ERG  281753
12033          ERG  281753
12034          ERG  281753
12035          ERG  281753
12036          ERG  281753
12037          ERG  281753
12038          ERG  281753
12039          ERG  281753
12040          ERG  281753
12041          ERG  281753
12042          ERG  281753
12043          ERG  281753
12044          ERG  281753
12045          ERG  281753
12046          ERG  281753
12047          ERG  281753
12048          ERG  281753
12049          ERG  281753
12050          ERG  281753
12051          ERG  281753
12052          ERG  281753
12053          ERG  281753
12054          ERG  281753
12055          ERG  281753
12056          ERG  281753
12057          ERG  281753
12058          ERG  281753
12059          ERG  281753
12060          ERG  281753
12061          ERG  281753
12062          ERG  281753
12063          ERG  281753
12064      GTF2IP2   45803
12065      GTF2IP2   45803
12066      GTF2IP2   45803
12067      GTF2IP2   45803
12068      GTF2IP2   45803
12069      GTF2IP2   45803
12070    KRTAP20-2     383
12071                  592
12072                  592
12073                  675
12074   ANKRD30BP1   43524
12075   ANKRD30BP1   43524
12076   ANKRD30BP1   43524
12077   ANKRD30BP1   43524
12078   ANKRD30BP1   43524
12079   ANKRD30BP1   43524
12080   ANKRD30BP1   43524
12081   ANKRD30BP1   43524
12082   ANKRD30BP1   43524
12083   ANKRD30BP1   43524
12084   ANKRD30BP1   43524
12085   ANKRD30BP1   43524
12086   ANKRD30BP1   43524
12087   ANKRD30BP1   43524
12088   ANKRD30BP1   43524
12089   ANKRD30BP1   43524
12090   ANKRD30BP1   43524
12091   ANKRD30BP1   43524
12092    KRTAP19-6     329
12093     RPL23AP3     467
12094                  878
12095      H2AFZP1     694
12096      H2AFZP1     694
12097      RPL37P3     292
12098         TFF2    4771
12099         TFF2    4771
12100         TFF2    4771
12101         TFF2    4771
12102         TFF2    4771
12103         TFF2    4771
12104         TFF2    4771
12105         TFF2    4771
12106         TFF2    4771
12107         TFF2    4771
12108         TFF2    4771
12109         TFF2    4771
12110         TFF2    4771
12111      RHOT1P2     332
12112                 3234
12113                 3234
12114    KRTAP8-2P     185
12115    KRTAP21-3     252
12116                  651
12117    KRTAP19-7     439
12118        CLDN8    2067
12119                  134
12120                14326
12121                14326
12122                14326
12123                14326
12124                14326
12125                14326
12126                  585
12127                 2865
12128                 2865
12129    LINC00158   45881
12130    LINC00158   45881
12131    LINC00158   45881
12132    LINC00158   45881
12133    LINC00158   45881
12134    LINC00158   45881
12135    LINC00158   45881
12136    LINC00158   45881
12137    LINC00158   45881
12138    LINC00158   45881
12139    LINC00158   45881
12140    LINC00158   45881
12141    LINC00158   45881
12142    LINC00158   45881
12143    LINC00158   45881
12144    LINC00158   45881
12145                  216
12146     RPL13AP7     610
12147    LINC01667   32091
12148    LINC01667   32091
12149    LINC01667   32091
12150    LINC01667   32091
12151    LINC01667   32091
12152    LINC01667   32091
12153    LINC01667   32091
12154    LINC01667   32091
12155    LINC01667   32091
12156    LINC01667   32091
12157    LINC01667   32091
12158    LINC01667   32091
12159    LINC01667   32091
12160    LINC01667   32091
12161                  122
12162                  391
12163                  185
12164     SNX18P12     758
12165               164394
12166               164394
12167               164394
12168               164394
12169                 7778
12170                 7778
12171                 7778
12172                 7778
12173                 8648
12174                 8648
12175                 8648
12176                 8648
12177                 8648
12178                 8648
12179                16080
12180                16080
12181    LINC01692  217196
12182    LINC01692  217196
12183    LINC01692  217196
12184    LINC01692  217196
12185                54386
12186                54386
12187                54386
12188                54386
12189                54386
12190                54386
12191    LINC01684  119202
12192    LINC01684  119202
12193    LINC01684  119202
12194    LINC01684  119202
12195    LINC01684  119202
12196    LINC01684  119202
12197    LINC01684  119202
12198    LINC01684  119202
12199    LINC01684  119202
12200    LINC01684  119202
12201    LINC01684  119202
12202    LINC01684  119202
12203                 7029
12204                 7029
12205                 7029
12206                 7029
12207                 6368
12208                 6368
12209                  500
12210                13083
12211                13083
12212                22174
12213                22174
12214        TUBAP    1470
12215        TUBAP    1470
12216     RIMKLBP1    1163
12217         CBR3   11654
12218         CBR3   11654
12219         CBR3   11654
12220     TRAPPC10   94233
12221     TRAPPC10   94233
12222     TRAPPC10   94233
12223     TRAPPC10   94233
12224     TRAPPC10   94233
12225     TRAPPC10   94233
12226     TRAPPC10   94233
12227     TRAPPC10   94233
12228     TRAPPC10   94233
12229     TRAPPC10   94233
12230     TRAPPC10   94233
12231     TRAPPC10   94233
12232     TRAPPC10   94233
12233     TRAPPC10   94233
12234     TRAPPC10   94233
12235     TRAPPC10   94233
12236     TRAPPC10   94233
12237     TRAPPC10   94233
12238     TRAPPC10   94233
12239     TRAPPC10   94233
12240     TRAPPC10   94233
12241     TRAPPC10   94233
12242     TRAPPC10   94233
12243     TRAPPC10   94233
12244     TRAPPC10   94233
12245     TRAPPC10   94233
12246     TRAPPC10   94233
12247     TRAPPC10   94233
12248     TRAPPC10   94233
12249     TRAPPC10   94233
12250     TRAPPC10   94233
12251     TRAPPC10   94233
12252     TRAPPC10   94233
12253     TRAPPC10   94233
12254     TRAPPC10   94233
12255     TRAPPC10   94233
12256     TRAPPC10   94233
12257     TRAPPC10   94233
12258     TRAPPC10   94233
12259     TRAPPC10   94233
12260     TRAPPC10   94233
12261     TRAPPC10   94233
12262     TRAPPC10   94233
12263     TRAPPC10   94233
12264     TRAPPC10   94233
12265     TRAPPC10   94233
12266     TRAPPC10   94233
12267     TRAPPC10   94233
12268     TRAPPC10   94233
12269     TRAPPC10   94233
12270     TRAPPC10   94233
12271     TRAPPC10   94233
12272     TRAPPC10   94233
12273     TRAPPC10   94233
12274     TRAPPC10   94233
12275     TRAPPC10   94233
12276     TRAPPC10   94233
12277     TRAPPC10   94233
12278     TRAPPC10   94233
12279     TRAPPC10   94233
12280     TRAPPC10   94233
12281     TRAPPC10   94233
12282     TRAPPC10   94233
12283     TRAPPC10   94233
12284     TRAPPC10   94233
12285     TRAPPC10   94233
12286     TRAPPC10   94233
12287     TRAPPC10   94233
12288     TRAPPC10   94233
12289     TRAPPC10   94233
12290     TRAPPC10   94233
12291     TRAPPC10   94233
12292     TRAPPC10   94233
12293     TRAPPC10   94233
12294     TRAPPC10   94233
12295     TRAPPC10   94233
12296     TRAPPC10   94233
12297     TRAPPC10   94233
12298     TRAPPC10   94233
12299     TRAPPC10   94233
12300     TRAPPC10   94233
12301     TRAPPC10   94233
12302     TRAPPC10   94233
12303     TRAPPC10   94233
12304     TRAPPC10   94233
12305     TRAPPC10   94233
12306     TRAPPC10   94233
12307     TRAPPC10   94233
12308     TRAPPC10   94233
12309     TRAPPC10   94233
12310     TRAPPC10   94233
12311        PCBP3  298760
12312        PCBP3  298760
12313        PCBP3  298760
12314        PCBP3  298760
12315        PCBP3  298760
12316        PCBP3  298760
12317        PCBP3  298760
12318        PCBP3  298760
12319        PCBP3  298760
12320        PCBP3  298760
12321        PCBP3  298760
12322        PCBP3  298760
12323        PCBP3  298760
12324        PCBP3  298760
12325        PCBP3  298760
12326        PCBP3  298760
12327        PCBP3  298760
12328        PCBP3  298760
12329        PCBP3  298760
12330        PCBP3  298760
12331        PCBP3  298760
12332        PCBP3  298760
12333        PCBP3  298760
12334        PCBP3  298760
12335        PCBP3  298760
12336        PCBP3  298760
12337        PCBP3  298760
12338        PCBP3  298760
12339        PCBP3  298760
12340        PCBP3  298760
12341        PCBP3  298760
12342        PCBP3  298760
12343        PCBP3  298760
12344        PCBP3  298760
12345        PCBP3  298760
12346        PCBP3  298760
12347        PCBP3  298760
12348        PCBP3  298760
12349        PCBP3  298760
12350        PCBP3  298760
12351        PCBP3  298760
12352        PCBP3  298760
12353        PCBP3  298760
12354        PCBP3  298760
12355        PCBP3  298760
12356        PCBP3  298760
12357        PCBP3  298760
12358        PCBP3  298760
12359        PCBP3  298760
12360        PCBP3  298760
12361        PCBP3  298760
12362        PCBP3  298760
12363        PCBP3  298760
12364        PCBP3  298760
12365        PCBP3  298760
12366        PCBP3  298760
12367        PCBP3  298760
12368        PCBP3  298760
12369        PCBP3  298760
12370        PCBP3  298760
12371        PCBP3  298760
12372        PCBP3  298760
12373        PCBP3  298760
12374        PCBP3  298760
12375        PCBP3  298760
12376        PCBP3  298760
12377        PCBP3  298760
12378        PCBP3  298760
12379        PCBP3  298760
12380        PCBP3  298760
12381        PCBP3  298760
12382        PCBP3  298760
12383        PCBP3  298760
12384        PCBP3  298760
12385        PCBP3  298760
12386        PCBP3  298760
12387        PCBP3  298760
12388        PCBP3  298760
12389        PCBP3  298760
12390        PCBP3  298760
12391        PCBP3  298760
12392        PCBP3  298760
12393        PCBP3  298760
12394        PCBP3  298760
12395        PCBP3  298760
12396        PCBP3  298760
12397        PCBP3  298760
12398        PCBP3  298760
12399        PCBP3  298760
12400        PCBP3  298760
12401        PCBP3  298760
12402        PCBP3  298760
12403        PCBP3  298760
12404        PCBP3  298760
12405        PCBP3  298760
12406        PCBP3  298760
12407        PCBP3  298760
12408        PCBP3  298760
12409        PCBP3  298760
12410        PCBP3  298760
12411        PCBP3  298760
12412        PCBP3  298760
12413        PCBP3  298760
12414        PCBP3  298760
12415        PCBP3  298760
12416        PCBP3  298760
12417        PCBP3  298760
12418        PCBP3  298760
12419        PCBP3  298760
12420        PCBP3  298760
12421        PCBP3  298760
12422        PCBP3  298760
12423        PCBP3  298760
12424        PCBP3  298760
12425        PCBP3  298760
12426        PCBP3  298760
12427        PCBP3  298760
12428        PCBP3  298760
12429        PCBP3  298760
12430        PCBP3  298760
12431        PCBP3  298760
12432        PCBP3  298760
12433        PCBP3  298760
12434        PCBP3  298760
12435        PCBP3  298760
12436        PCBP3  298760
12437        PCBP3  298760
12438        PCBP3  298760
12439        PCBP3  298760
12440        PCBP3  298760
12441        PCBP3  298760
12442        PCBP3  298760
12443        PCBP3  298760
12444        PCBP3  298760
12445        PCBP3  298760
12446        PCBP3  298760
12447        PCBP3  298760
12448        PCBP3  298760
12449        PCBP3  298760
12450        PCBP3  298760
12451        PCBP3  298760
12452        PCBP3  298760
12453        PCBP3  298760
12454        PCBP3  298760
12455        PCBP3  298760
12456        PCBP3  298760
12457        PCBP3  298760
12458        PCBP3  298760
12459        PCBP3  298760
12460        PCBP3  298760
12461        PCBP3  298760
12462         CSTB    3934
12463         CSTB    3934
12464         CSTB    3934
12465         CSTB    3934
12466         CSTB    3934
12467         CSTB    3934
12468         CSTB    3934
12469         CSTB    3934
12470        USP25  150044
12471        USP25  150044
12472        USP25  150044
12473        USP25  150044
12474        USP25  150044
12475        USP25  150044
12476        USP25  150044
12477        USP25  150044
12478        USP25  150044
12479        USP25  150044
12480        USP25  150044
12481        USP25  150044
12482        USP25  150044
12483        USP25  150044
12484        USP25  150044
12485        USP25  150044
12486        USP25  150044
12487        USP25  150044
12488        USP25  150044
12489        USP25  150044
12490        USP25  150044
12491        USP25  150044
12492        USP25  150044
12493        USP25  150044
12494        USP25  150044
12495        USP25  150044
12496        USP25  150044
12497        USP25  150044
12498        USP25  150044
12499        USP25  150044
12500        USP25  150044
12501        USP25  150044
12502        USP25  150044
12503        USP25  150044
12504        USP25  150044
12505        USP25  150044
12506        USP25  150044
12507        USP25  150044
12508        USP25  150044
12509        USP25  150044
12510        USP25  150044
12511        USP25  150044
12512        USP25  150044
12513        USP25  150044
12514        USP25  150044
12515        USP25  150044
12516        USP25  150044
12517        USP25  150044
12518        USP25  150044
12519        USP25  150044
12520        USP25  150044
12521        USP25  150044
12522        USP25  150044
12523        USP25  150044
12524        USP25  150044
12525        USP25  150044
12526        USP25  150044
12527        USP25  150044
12528        USP25  150044
12529        USP25  150044
12530        USP25  150044
12531        USP25  150044
12532        USP25  150044
12533        USP25  150044
12534        USP25  150044
12535        USP25  150044
12536        USP25  150044
12537        USP25  150044
12538        USP25  150044
12539        USP25  150044
12540        USP25  150044
12541        USP25  150044
12542        USP25  150044
12543        USP25  150044
12544        USP25  150044
12545        USP25  150044
12546        USP25  150044
12547        USP25  150044
12548        USP25  150044
12549        USP25  150044
12550        USP25  150044
12551        USP25  150044
12552        USP25  150044
12553        USP25  150044
12554        USP25  150044
12555        USP25  150044
12556        USP25  150044
12557        USP25  150044
12558        USP25  150044
12559        USP25  150044
12560        USP25  150044
12561        USP25  150044
12562        USP25  150044
12563        USP25  150044
12564        USP25  150044
12565        USP25  150044
12566        USP25  150044
12567        USP25  150044
12568        USP25  150044
12569        USP25  150044
12570        USP25  150044
12571        USP25  150044
12572        USP25  150044
12573        USP25  150044
12574        USP25  150044
12575        USP25  150044
12576        USP25  150044
12577        USP25  150044
12578        USP25  150044
12579        USP25  150044
12580        USP25  150044
12581        USP25  150044
12582        USP25  150044
12583        USP25  150044
12584        USP25  150044
12585        USP25  150044
12586        PSMG1    9082
12587        PSMG1    9082
12588        PSMG1    9082
12589        PSMG1    9082
12590        PSMG1    9082
12591        PSMG1    9082
12592        PSMG1    9082
12593        PSMG1    9082
12594        PSMG1    9082
12595        PSMG1    9082
12596        PSMG1    9082
12597        PSMG1    9082
12598        PSMG1    9082
12599        PSMG1    9082
12600        PSMG1    9082
12601        PSMG1    9082
12602        PSMG1    9082
12603        PSMG1    9082
12604        PSMG1    9082
12605        PSMG1    9082
12606        PSMG1    9082
12607        PSMG1    9082
12608        PSMG1    9082
12609        PSMG1    9082
12610        PSMG1    9082
12611        PSMG1    9082
12612        PSMG1    9082
12613        PSMG1    9082
12614        PSMG1    9082
12615                 3686
12616                 3686
12617                 3686
12618                 3686
12619                 3686
12620                 3686
12621    RPL23AP12     472
12622        NF1P3    4352
12623        NF1P3    4352
12624        NF1P3    4352
12625        NF1P3    4352
12626                 5346
12627                 5346
12628                 5346
12629                 5346
12630      SNX19P1    2980
12631         SIK1   12613
12632         SIK1   12613
12633         SIK1   12613
12634         SIK1   12613
12635         SIK1   12613
12636         SIK1   12613
12637         SIK1   12613
12638         SIK1   12613
12639         SIK1   12613
12640         SIK1   12613
12641         SIK1   12613
12642         SIK1   12613
12643         SIK1   12613
12644         SIK1   12613
12645         SIK1   12613
12646         SIK1   12613
12647         SIK1   12613
12648                 9792
12649                 9792
12650    LINC00334   30208
12651    LINC00334   30208
12652    LINC00334   30208
12653    LINC00334   30208
12654    LINC00334   30208
12655    LINC00334   30208
12656    LINC00334   30208
12657    LINC00334   30208
12658    LINC00334   30208
12659    LINC00334   30208
12660       KCNJ15  150323
12661       KCNJ15  150323
12662       KCNJ15  150323
12663       KCNJ15  150323
12664       KCNJ15  150323
12665       KCNJ15  150323
12666       KCNJ15  150323
12667       KCNJ15  150323
12668       KCNJ15  150323
12669       KCNJ15  150323
12670       KCNJ15  150323
12671       KCNJ15  150323
12672       KCNJ15  150323
12673       KCNJ15  150323
12674       KCNJ15  150323
12675       KCNJ15  150323
12676       KCNJ15  150323
12677       KCNJ15  150323
12678       KCNJ15  150323
12679       KCNJ15  150323
12680       KCNJ15  150323
12681       KCNJ15  150323
12682       KCNJ15  150323
12683       KCNJ15  150323
12684       KCNJ15  150323
12685       KCNJ15  150323
12686       KCNJ15  150323
12687       KCNJ15  150323
12688       KCNJ15  150323
12689       KCNJ15  150323
12690       KCNJ15  150323
12691       KCNJ15  150323
12692       KCNJ15  150323
12693       KCNJ15  150323
12694       KCNJ15  150323
12695       KCNJ15  150323
12696       KCNJ15  150323
12697       KCNJ15  150323
12698       KCNJ15  150323
12699       KCNJ15  150323
12700       KCNJ15  150323
12701       KCNJ15  150323
12702       KCNJ15  150323
12703       KCNJ15  150323
12704       KCNJ15  150323
12705       KCNJ15  150323
12706       KCNJ15  150323
12707       KCNJ15  150323
12708       KCNJ15  150323
12709       KCNJ15  150323
12710       KCNJ15  150323
12711       KCNJ15  150323
12712       KCNJ15  150323
12713       KCNJ15  150323
12714       KCNJ15  150323
12715       KCNJ15  150323
12716       KCNJ15  150323
12717       KCNJ15  150323
12718       KCNJ15  150323
12719       KCNJ15  150323
12720       KCNJ15  150323
12721       KCNJ15  150323
12722       KCNJ15  150323
12723       KCNJ15  150323
12724       KCNJ15  150323
12725       KCNJ15  150323
12726       KCNJ15  150323
12727       KCNJ15  150323
12728       KCNJ15  150323
12729       KCNJ15  150323
12730       KCNJ15  150323
12731       KCNJ15  150323
12732       KCNJ15  150323
12733       KCNJ15  150323
12734       KCNJ15  150323
12735       KCNJ15  150323
12736       KCNJ15  150323
12737       KCNJ15  150323
12738       KCNJ15  150323
12739       KCNJ15  150323
12740       KCNJ15  150323
12741       KCNJ15  150323
12742       KCNJ15  150323
12743       KCNJ15  150323
12744       KCNJ15  150323
12745       KCNJ15  150323
12746       KCNJ15  150323
12747       KCNJ15  150323
12748       KCNJ15  150323
12749       KCNJ15  150323
12750                  984
12751                  984
12752    LINC01547    7099
12753    LINC01547    7099
12754    LINC01547    7099
12755    LINC01547    7099
12756    LINC01547    7099
12757    LINC01547    7099
12758    LINC01547    7099
12759    LINC01547    7099
12760    LINC01547    7099
12761    LINC01547    7099
12762                  155
12763  KRTAP19-10P     186
12764   KRTAP19-9P     190
12765                 8119
12766                 8119
12767                  216
12768      PPIAP22     497
12769                 2973
12770                 2973
12771      ADAMTS1    9662
12772      ADAMTS1    9662
12773      ADAMTS1    9662
12774      ADAMTS1    9662
12775      ADAMTS1    9662
12776      ADAMTS1    9662
12777      ADAMTS1    9662
12778      ADAMTS1    9662
12779      ADAMTS1    9662
12780      ADAMTS1    9662
12781      ADAMTS1    9662
12782      ADAMTS1    9662
12783      ADAMTS1    9662
12784      ADAMTS1    9662
12785      ADAMTS1    9662
12786      ADAMTS1    9662
12787      ADAMTS1    9662
12788      ADAMTS1    9662
12789      ADAMTS1    9662
12790      ADAMTS1    9662
12791      ADAMTS1    9662
12792      ADAMTS1    9662
12793      ADAMTS1    9662
12794      ADAMTS1    9662
12795      ADAMTS1    9662
12796      ADAMTS1    9662
12797      ADAMTS1    9662
12798      ADAMTS1    9662
12799      TIMM9P2     882
12800      TIMM9P2     882
12801       TCP10L   12532
12802       TCP10L   12532
12803       TCP10L   12532
12804       TCP10L   12532
12805       TCP10L   12532
12806       TCP10L   12532
12807       TCP10L   12532
12808       TCP10L   12532
12809       TCP10L   12532
12810       TCP10L   12532
12811       TCP10L   12532
12812       TCP10L   12532
12813       TCP10L   12532
12814       TCP10L   12532
12815       TCP10L   12532
12816       TCP10L   12532
12817       TCP10L   12532
12818       TCP10L   12532
12819    LINC00846    3643
12820    LINC00846    3643
12821    LINC00846    3643
12822    LINC00846    3643
12823                13932
12824                13932
12825                13932
12826                13932
12827                13932
12828                13932
12829                13932
12830                13932
12831                13932
12832                13932
12833                13932
12834                13932
12835                13932
12836                13932
12837                13932
12838                13932
12839       MIS18A   10850
12840       MIS18A   10850
12841       MIS18A   10850
12842       MIS18A   10850
12843       MIS18A   10850
12844       MIS18A   10850
12845       MIS18A   10850
12846      RPSAP64     335
12847    LINC00113   28854
12848    LINC00113   28854
12849    LINC00113   28854
12850    LINC00113   28854
12851    LINC00113   28854
12852    LINC00113   28854
12853    LINC00113   28854
12854    LINC00113   28854
12855    LINC00113   28854
12856    LINC00113   28854
12857    LINC00113   28854
12858    LINC00113   28854
12859                34623
12860                34623
12861                34623
12862                34623
12863                34623
12864                 7101
12865                 7101
12866                 7101
12867                 7101
12868                 7101
12869                 7101
12870                15133
12871                15133
12872        H2BFS     459
12873   SLC25A15P4     924
12874   SLC25A15P4     924
12875    LINC00160   13374
12876    LINC00160   13374
12877    LINC00160   13374
12878    LINC00160   13374
12879    LINC00160   13374
12880    LINC00160   13374
12881     C21orf59   20787
12882     C21orf59   20787
12883     C21orf59   20787
12884     C21orf59   20787
12885     C21orf59   20787
12886     C21orf59   20787
12887     C21orf59   20787
12888     C21orf59   20787
12889     C21orf59   20787
12890     C21orf59   20787
12891     C21orf59   20787
12892     C21orf59   20787
12893     C21orf59   20787
12894     C21orf59   20787
12895     C21orf59   20787
12896     C21orf59   20787
12897     C21orf59   20787
12898     C21orf59   20787
12899     C21orf59   20787
12900     C21orf59   20787
12901     C21orf59   20787
12902     C21orf59   20787
12903     C21orf59   20787
12904     C21orf59   20787
12905     C21orf59   20787
12906     C21orf59   20787
12907     C21orf59   20787
12908     C21orf59   20787
12909     C21orf59   20787
12910     C21orf59   20787
12911     C21orf59   20787
12912     C21orf59   20787
12913     C21orf59   20787
12914     C21orf59   20787
12915     C21orf59   20787
12916     C21orf59   20787
12917                17733
12918                17733
12919                86677
12920                86677
12921                86677
12922                86677
12923                19454
12924                19454
12925                19454
12926                  349
12927                17925
12928                17925
12929                 8164
12930                 8164
12931      SRSF9P1     529
12932                92534
12933                92534
12934                92534
12935                92534
12936                92534
12937     CBR3-AS1   44048
12938     CBR3-AS1   44048
12939     CBR3-AS1   44048
12940     CBR3-AS1   44048
12941     CBR3-AS1   44048
12942     CBR3-AS1   44048
12943     CBR3-AS1   44048
12944     CBR3-AS1   44048
12945     CBR3-AS1   44048
12946     CBR3-AS1   44048
12947     CBR3-AS1   44048
12948     CBR3-AS1   44048
12949     CBR3-AS1   44048
12950     CBR3-AS1   44048
12951     CBR3-AS1   44048
12952     CBR3-AS1   44048
12953     CBR3-AS1   44048
12954     CBR3-AS1   44048
12955     CBR3-AS1   44048
12956     CBR3-AS1   44048
12957     CBR3-AS1   44048
12958     CBR3-AS1   44048
12959     CBR3-AS1   44048
12960     CBR3-AS1   44048
12961     CBR3-AS1   44048
12962     CBR3-AS1   44048
12963     CBR3-AS1   44048
12964     CBR3-AS1   44048
12965     CBR3-AS1   44048
12966     CBR3-AS1   44048
12967     CBR3-AS1   44048
12968     CBR3-AS1   44048
12969     CBR3-AS1   44048
12970     CBR3-AS1   44048
12971     CBR3-AS1   44048
12972     CBR3-AS1   44048
12973     CBR3-AS1   44048
12974     CBR3-AS1   44048
12975     CBR3-AS1   44048
12976     CBR3-AS1   44048
12977     CBR3-AS1   44048
12978     CBR3-AS1   44048
12979     CBR3-AS1   44048
12980     CBR3-AS1   44048
12981     CBR3-AS1   44048
12982     CBR3-AS1   44048
12983     CBR3-AS1   44048
12984     CBR3-AS1   44048
12985     CBR3-AS1   44048
12986     CBR3-AS1   44048
12987     CBR3-AS1   44048
12988     CBR3-AS1   44048
12989     CBR3-AS1   44048
12990     CBR3-AS1   44048
12991     CBR3-AS1   44048
12992     CBR3-AS1   44048
12993     CBR3-AS1   44048
12994                 2047
12995      OR7E23P    1047
12996                   86
12997        RRP1B   36531
12998        RRP1B   36531
12999        RRP1B   36531
13000        RRP1B   36531
13001        RRP1B   36531
13002        RRP1B   36531
13003        RRP1B   36531
13004        RRP1B   36531
13005        RRP1B   36531
13006        RRP1B   36531
13007        RRP1B   36531
13008        RRP1B   36531
13009        RRP1B   36531
13010        RRP1B   36531
13011        RRP1B   36531
13012        RRP1B   36531
13013        RRP1B   36531
13014        RRP1B   36531
13015        RRP1B   36531
13016        RRP1B   36531
13017        RRP1B   36531
13018                17462
13019                17462
13020                17462
13021                17462
13022                17462
13023                17462
13024                17462
13025        SCAF4   61042
13026        SCAF4   61042
13027        SCAF4   61042
13028        SCAF4   61042
13029        SCAF4   61042
13030        SCAF4   61042
13031        SCAF4   61042
13032        SCAF4   61042
13033        SCAF4   61042
13034        SCAF4   61042
13035        SCAF4   61042
13036        SCAF4   61042
13037        SCAF4   61042
13038        SCAF4   61042
13039        SCAF4   61042
13040        SCAF4   61042
13041        SCAF4   61042
13042        SCAF4   61042
13043        SCAF4   61042
13044        SCAF4   61042
13045        SCAF4   61042
13046        SCAF4   61042
13047        SCAF4   61042
13048        SCAF4   61042
13049        SCAF4   61042
13050        SCAF4   61042
13051        SCAF4   61042
13052        SCAF4   61042
13053        SCAF4   61042
13054        SCAF4   61042
13055        SCAF4   61042
13056        SCAF4   61042
13057        SCAF4   61042
13058        SCAF4   61042
13059        SCAF4   61042
13060        SCAF4   61042
13061        SCAF4   61042
13062        SCAF4   61042
13063        SCAF4   61042
13064        SCAF4   61042
13065        SCAF4   61042
13066        SCAF4   61042
13067        SCAF4   61042
13068        SCAF4   61042
13069        SCAF4   61042
13070        SCAF4   61042
13071        SCAF4   61042
13072        SCAF4   61042
13073        SCAF4   61042
13074        SCAF4   61042
13075        SCAF4   61042
13076        SCAF4   61042
13077        SCAF4   61042
13078        SCAF4   61042
13079        SCAF4   61042
13080        SCAF4   61042
13081        SCAF4   61042
13082        SCAF4   61042
13083        SCAF4   61042
13084        SCAF4   61042
13085        SCAF4   61042
13086        SCAF4   61042
13087        SCAF4   61042
13088        SCAF4   61042
13089        SCAF4   61042
13090        SCAF4   61042
13091        SCAF4   61042
13092        SCAF4   61042
13093        SCAF4   61042
13094        SCAF4   61042
13095        SCAF4   61042
13096        SCAF4   61042
13097        SCAF4   61042
13098        SCAF4   61042
13099        SCAF4   61042
13100        SCAF4   61042
13101        SCAF4   61042
13102        SCAF4   61042
13103        SCAF4   61042
13104        SCAF4   61042
13105        SCAF4   61042
13106        SCAF4   61042
13107        SCAF4   61042
13108        C2CD2   68778
13109        C2CD2   68778
13110        C2CD2   68778
13111        C2CD2   68778
13112        C2CD2   68778
13113        C2CD2   68778
13114        C2CD2   68778
13115        C2CD2   68778
13116        C2CD2   68778
13117        C2CD2   68778
13118        C2CD2   68778
13119        C2CD2   68778
13120        C2CD2   68778
13121        C2CD2   68778
13122        C2CD2   68778
13123        C2CD2   68778
13124        C2CD2   68778
13125        C2CD2   68778
13126        C2CD2   68778
13127        C2CD2   68778
13128        C2CD2   68778
13129        C2CD2   68778
13130        C2CD2   68778
13131        C2CD2   68778
13132        C2CD2   68778
13133        C2CD2   68778
13134        C2CD2   68778
13135        C2CD2   68778
13136        C2CD2   68778
13137        C2CD2   68778
13138        C2CD2   68778
13139        C2CD2   68778
13140        C2CD2   68778
13141        C2CD2   68778
13142        C2CD2   68778
13143        C2CD2   68778
13144        C2CD2   68778
13145        C2CD2   68778
13146        C2CD2   68778
13147        C2CD2   68778
13148        C2CD2   68778
13149        C2CD2   68778
13150        C2CD2   68778
13151        C2CD2   68778
13152        C2CD2   68778
13153        C2CD2   68778
13154        C2CD2   68778
13155        C2CD2   68778
13156        C2CD2   68778
13157        C2CD2   68778
13158        C2CD2   68778
13159        C2CD2   68778
13160        C2CD2   68778
13161        C2CD2   68778
13162        C2CD2   68778
13163        C2CD2   68778
13164        C2CD2   68778
13165        C2CD2   68778
13166        C2CD2   68778
13167        C2CD2   68778
13168        C2CD2   68778
13169        C2CD2   68778
13170        C2CD2   68778
13171        C2CD2   68778
13172        C2CD2   68778
13173        C2CD2   68778
13174    LINC01426   39129
13175    LINC01426   39129
13176    LINC01426   39129
13177    LINC01426   39129
13178    LINC01426   39129
13179         MRAP   22971
13180         MRAP   22971
13181         MRAP   22971
13182         MRAP   22971
13183         MRAP   22971
13184         MRAP   22971
13185         MRAP   22971
13186         MRAP   22971
13187         MRAP   22971
13188         MRAP   22971
13189         MRAP   22971
13190         MRAP   22971
13191         MRAP   22971
13192         MRAP   22971
13193         MRAP   22971
13194       FRG2MP    1665
13195       FRG2MP    1665
13196       FRG2MP    1665
13197       FRG2MP    1665
13198                18173
13199                18173
13200                18173
13201                18173
13202                18173
13203                18173
13204                18173
13205                18173
13206                18173
13207                18173
13208                18173
13209                18173
13210                18173
13211                18173
13212                18173
13213                18173
13214                18173
13215                18173
13216                18173
13217                18173
13218                18173
13219                18173
13220                18173
13221                18173
13222                18173
13223                18173
13224                18173
13225                18173
13226                18173
13227                18173
13228                18173
13229                18173
13230                18173
13231     SNRPGP13     176
13232                13794
13233                13794
13234                 1037
13235                 1037
13236                 1037
13237                 1037
13238                 2491
13239     TMEM97P1     450
13240               256842
13241               256842
13242               256842
13243               256842
13244               256842
13245               256842
13246               256842
13247               256842
13248               256842
13249               256842
13250               256842
13251               256842
13252               256842
13253               256842
13254               256842
13255               256842
13256               256842
13257               256842
13258               256842
13259               256842
13260               256842
13261               256842
13262               256842
13263               256842
13264               256842
13265               256842
13266               256842
13267               256842
13268               256842
13269               256842
13270               256842
13271               256842
13272               256842
13273               256842
13274               256842
13275               256842
13276               256842
13277               256842
13278               256842
13279               256842
13280               256842
13281               256842
13282               256842
13283               256842
13284               256842
13285               256842
13286               256842
13287               256842
13288               256842
13289               256842
13290               256842
13291               256842
13292               256842
13293               256842
13294               256842
13295               256842
13296               256842
13297               256842
13298               256842
13299               256842
13300               256842
13301               256842
13302               256842
13303               256842
13304               256842
13305               256842
13306               256842
13307               256842
13308               256842
13309               256842
13310               256842
13311  COL18A1-AS2    2679
13312  COL18A1-AS2    2679
13313  COL18A1-AS2    2679
13314  COL18A1-AS2    2679
13315                 1380
13316                 1380
13317   SAMSN1-AS1   16101
13318   SAMSN1-AS1   16101
13319   SAMSN1-AS1   16101
13320   SAMSN1-AS1   16101
13321   SAMSN1-AS1   16101
13322    KRTAP19-1     645
13323   KRTAP13-5P     498
13324      CYCSP41     295
13325         TPTE   84587
13326         TPTE   84587
13327         TPTE   84587
13328         TPTE   84587
13329         TPTE   84587
13330         TPTE   84587
13331         TPTE   84587
13332         TPTE   84587
13333         TPTE   84587
13334         TPTE   84587
13335         TPTE   84587
13336         TPTE   84587
13337         TPTE   84587
13338         TPTE   84587
13339         TPTE   84587
13340         TPTE   84587
13341         TPTE   84587
13342         TPTE   84587
13343         TPTE   84587
13344         TPTE   84587
13345         TPTE   84587
13346         TPTE   84587
13347         TPTE   84587
13348         TPTE   84587
13349         TPTE   84587
13350         TPTE   84587
13351         TPTE   84587
13352         TPTE   84587
13353         TPTE   84587
13354         TPTE   84587
13355         TPTE   84587
13356         TPTE   84587
13357         TPTE   84587
13358         TPTE   84587
13359         TPTE   84587
13360         TPTE   84587
13361         TPTE   84587
13362         TPTE   84587
13363         TPTE   84587
13364         TPTE   84587
13365         TPTE   84587
13366         TPTE   84587
13367         TPTE   84587
13368         TPTE   84587
13369         TPTE   84587
13370         TPTE   84587
13371         TPTE   84587
13372         TPTE   84587
13373         TPTE   84587
13374         TPTE   84587
13375         TPTE   84587
13376         TPTE   84587
13377         TPTE   84587
13378         TPTE   84587
13379         TPTE   84587
13380         TPTE   84587
13381         TPTE   84587
13382         TPTE   84587
13383         TPTE   84587
13384         TPTE   84587
13385         TPTE   84587
13386         TPTE   84587
13387         TPTE   84587
13388         TPTE   84587
13389         TPTE   84587
13390         TPTE   84587
13391         TPTE   84587
13392         TPTE   84587
13393         TPTE   84587
13394         TPTE   84587
13395         TPTE   84587
13396         TPTE   84587
13397         TPTE   84587
13398         TPTE   84587
13399         TPTE   84587
13400         TPTE   84587
13401         TPTE   84587
13402         TPTE   84587
13403         TPTE   84587
13404         TPTE   84587
13405         TPTE   84587
13406         TPTE   84587
13407         TPTE   84587
13408         TPTE   84587
13409         TPTE   84587
13410         TPTE   84587
13411         TPTE   84587
13412         TPTE   84587
13413         TPTE   84587
13414         TPTE   84587
13415         TPTE   84587
13416         TPTE   84587
13417         TPTE   84587
13418         TPTE   84587
13419         TPTE   84587
13420         TPTE   84587
13421         TPTE   84587
13422         TPTE   84587
13423    LINC01689   16827
13424    LINC01689   16827
13425    LINC01689   16827
13426    LINC01689   16827
13427                 1743
13428                 1743
13429                 1743
13430      TEKT4P2   61391
13431      TEKT4P2   61391
13432      TEKT4P2   61391
13433      TEKT4P2   61391
13434      TEKT4P2   61391
13435      TEKT4P2   61391
13436      TEKT4P2   61391
13437      TEKT4P2   61391
13438      TEKT4P2   61391
13439      TEKT4P2   61391
13440                 5938
13441                 5938
13442     EEF1A1P1     738
13443                23716
13444                23716
13445                23716
13446                23716
13447                23716
13448                23716
13449                23716
13450                23716
13451                23716
13452                  757
13453    LINC00307    2632
13454    LINC00307    2632
13455    LINC00307    2632
13456       CLDN17    1192
13457       VN1R7P    1220
13458       VN1R7P    1220
13459                  556
13460      EIF3FP1     805
13461                  347
13462                 7360
13463                 7360
13464                 7360
13465                 7360
13466                43762
13467                43762
13468                43762
13469                43762
13470                43762
13471                43762
13472                43762
13473                43762
13474                43762
13475                43762
13476                43762
13477                43762
13478                43762
13479                43762
13480                43762
13481                43762
13482                43762
13483                43762
13484                43762
13485                43762
13486                14371
13487                14371
13488                14371
13489                14371
13490                  524
13491                33172
13492                33172
13493                33172
13494                  203
13495                  508
13496      MTCO1P1    1080
13497     SNX18P10     518
13498    LINC01666    2258
13499    LINC01666    2258
13500    LINC01666    2258
13501    LINC01666    2258
13502                  101
13503                  396
13504      RPSAP68     437
13505                  922
13506     PPP6R2P1    7746
13507     PPP6R2P1    7746
13508     PPP6R2P1    7746
13509     PPP6R2P1    7746
13510     PPP6R2P1    7746
13511     PPP6R2P1    7746
13512     PPP6R2P1    7746
13513     PPP6R2P1    7746
13514     PPP6R2P1    7746
13515     PPP6R2P1    7746
13516     PPP6R2P1    7746
13517  KRTAP19-11P     103
13518       MRPL39   21861
13519       MRPL39   21861
13520       MRPL39   21861
13521       MRPL39   21861
13522       MRPL39   21861
13523       MRPL39   21861
13524       MRPL39   21861
13525       MRPL39   21861
13526       MRPL39   21861
13527       MRPL39   21861
13528       MRPL39   21861
13529       MRPL39   21861
13530       MRPL39   21861
13531       MRPL39   21861
13532       MRPL39   21861
13533       MRPL39   21861
13534       MRPL39   21861
13535       MRPL39   21861
13536       MRPL39   21861
13537       MRPL39   21861
13538       MRPL39   21861
13539       MRPL39   21861
13540       MRPL39   21861
13541       MRPL39   21861
13542       MRPL39   21861
13543       MRPL39   21861
13544       MRPL39   21861
13545       MRPL39   21861
13546       MRPL39   21861
13547     MIR155HG   13259
13548     MIR155HG   13259
13549     MIR155HG   13259
13550     MIR155HG   13259
13551                 1729
13552                 1729
13553                 1729
13554                 1729
13555                 1729
13556               144292
13557               144292
13558               144292
13559               144292
13560               144292
13561               144292
13562               144292
13563               144292
13564               144292
13565               144292
13566               144292
13567               144292
13568                 1494
13569                 6756
13570                 6756
13571    LINC01671   15778
13572    LINC01671   15778
13573    CYYR1-AS1  175617
13574    CYYR1-AS1  175617
13575    CYYR1-AS1  175617
13576    CYYR1-AS1  175617
13577    CYYR1-AS1  175617
13578    CYYR1-AS1  175617
13579    CYYR1-AS1  175617
13580    CYYR1-AS1  175617
13581     RAD23BLP    2281
13582     RAD23BLP    2281
13583                  767
13584                  767
13585      MTCO1P3     191
13586                 2273
13587                 2273
13588                 4681
13589                 4681
13590                 4681
13591                 1781
13592         ETS2   19648
13593         ETS2   19648
13594         ETS2   19648
13595         ETS2   19648
13596         ETS2   19648
13597         ETS2   19648
13598         ETS2   19648
13599         ETS2   19648
13600         ETS2   19648
13601         ETS2   19648
13602         ETS2   19648
13603         ETS2   19648
13604         ETS2   19648
13605         ETS2   19648
13606         ETS2   19648
13607         ETS2   19648
13608         ETS2   19648
13609         ETS2   19648
13610         ETS2   19648
13611         ETS2   19648
13612         ETS2   19648
13613         ETS2   19648
13614         ETS2   19648
13615         ETS2   19648
13616         ETS2   19648
13617         ETS2   19648
13618         ETS2   19648
13619         ETS2   19648
13620         ETS2   19648
13621         ETS2   19648
13622         ETS2   19648
13623         ETS2   19648
13624         ETS2   19648
13625         ETS2   19648
13626       UMODL1   80494
13627       UMODL1   80494
13628       UMODL1   80494
13629       UMODL1   80494
13630       UMODL1   80494
13631       UMODL1   80494
13632       UMODL1   80494
13633       UMODL1   80494
13634       UMODL1   80494
13635       UMODL1   80494
13636       UMODL1   80494
13637       UMODL1   80494
13638       UMODL1   80494
13639       UMODL1   80494
13640       UMODL1   80494
13641       UMODL1   80494
13642       UMODL1   80494
13643       UMODL1   80494
13644       UMODL1   80494
13645       UMODL1   80494
13646       UMODL1   80494
13647       UMODL1   80494
13648       UMODL1   80494
13649       UMODL1   80494
13650       UMODL1   80494
13651       UMODL1   80494
13652       UMODL1   80494
13653       UMODL1   80494
13654       UMODL1   80494
13655       UMODL1   80494
13656       UMODL1   80494
13657       UMODL1   80494
13658       UMODL1   80494
13659       UMODL1   80494
13660       UMODL1   80494
13661       UMODL1   80494
13662       UMODL1   80494
13663       UMODL1   80494
13664       UMODL1   80494
13665       UMODL1   80494
13666       UMODL1   80494
13667       UMODL1   80494
13668       UMODL1   80494
13669       UMODL1   80494
13670       UMODL1   80494
13671       UMODL1   80494
13672       UMODL1   80494
13673       UMODL1   80494
13674       UMODL1   80494
13675       UMODL1   80494
13676       UMODL1   80494
13677       UMODL1   80494
13678       UMODL1   80494
13679       UMODL1   80494
13680       UMODL1   80494
13681       UMODL1   80494
13682       UMODL1   80494
13683       UMODL1   80494
13684       UMODL1   80494
13685       UMODL1   80494
13686       UMODL1   80494
13687       UMODL1   80494
13688       UMODL1   80494
13689       UMODL1   80494
13690       UMODL1   80494
13691       UMODL1   80494
13692       UMODL1   80494
13693       UMODL1   80494
13694       UMODL1   80494
13695       UMODL1   80494
13696       UMODL1   80494
13697       UMODL1   80494
13698       UMODL1   80494
13699       UMODL1   80494
13700       UMODL1   80494
13701       UMODL1   80494
13702       UMODL1   80494
13703       UMODL1   80494
13704       UMODL1   80494
13705       UMODL1   80494
13706       UMODL1   80494
13707       UMODL1   80494
13708       UMODL1   80494
13709       UMODL1   80494
13710       UMODL1   80494
13711       UMODL1   80494
13712       UMODL1   80494
13713       UMODL1   80494
13714       UMODL1   80494
13715       UMODL1   80494
13716       UMODL1   80494
13717       UMODL1   80494
13718       UMODL1   80494
13719       UMODL1   80494
13720       UMODL1   80494
13721       UMODL1   80494
13722       UMODL1   80494
13723       UMODL1   80494
13724       UMODL1   80494
13725       UMODL1   80494
13726       UMODL1   80494
13727       UMODL1   80494
13728       UMODL1   80494
13729       UMODL1   80494
13730       UMODL1   80494
13731       UMODL1   80494
13732       UMODL1   80494
13733       UMODL1   80494
13734       UMODL1   80494
13735       UMODL1   80494
13736       UMODL1   80494
13737       UMODL1   80494
13738       UMODL1   80494
13739       UMODL1   80494
13740       UMODL1   80494
13741       UMODL1   80494
13742       UMODL1   80494
13743       UMODL1   80494
13744       UMODL1   80494
13745       UMODL1   80494
13746       UMODL1   80494
13747       UMODL1   80494
13748       UMODL1   80494
13749       UMODL1   80494
13750       UMODL1   80494
13751       UMODL1   80494
13752       UMODL1   80494
13753       UMODL1   80494
13754       UMODL1   80494
13755       UMODL1   80494
13756       UMODL1   80494
13757       UMODL1   80494
13758       UMODL1   80494
13759       UMODL1   80494
13760       UMODL1   80494
13761       UMODL1   80494
13762       UMODL1   80494
13763       UMODL1   80494
13764       UMODL1   80494
13765       UMODL1   80494
13766       UMODL1   80494
13767       UMODL1   80494
13768       UMODL1   80494
13769       UMODL1   80494
13770       UMODL1   80494
13771       UMODL1   80494
13772       UMODL1   80494
13773       UMODL1   80494
13774       UMODL1   80494
13775       UMODL1   80494
13776       UMODL1   80494
13777                23863
13778                23863
13779                23863
13780                23863
13781                23863
13782                23863
13783                23863
13784                23863
13785                23863
13786                23863
13787                23863
13788                23863
13789                23863
13790                23863
13791                23863
13792                23863
13793                23863
13794                23863
13795                23863
13796                23863
13797                23863
13798                23863
13799                23863
13800                23863
13801                23863
13802                23863
13803                23863
13804                23863
13805                23863
13806                23863
13807                23863
13808                23863
13809                23863
13810                23863
13811                23863
13812                23863
13813                23863
13814                23863
13815                23863
13816                23863
13817                23863
13818                23863
13819                23863
13820                23863
13821                23863
13822                23863
13823                23863
13824                23863
13825                23863
13826                23863
13827                23863
13828                49131
13829                49131
13830                49131
13831                49131
13832                49131
13833                49131
13834                49131
13835                49131
13836                49131
13837                49131
13838                49131
13839                49131
13840                49131
13841                49131
13842                49131
13843                49131
13844                49131
13845                49131
13846                49131
13847                49131
13848                49131
13849                49131
13850                49131
13851                49131
13852                49131
13853                49131
13854                49131
13855                49131
13856                49131
13857                49131
13858                49131
13859                49131
13860                49131
13861                49131
13862                49131
13863                49131
13864                49131
13865                49131
13866                49131
13867                49131
13868                49131
13869                49131
13870                49131
13871                49131
13872                49131
13873                49131
13874                49131
13875                49131
13876                49131
13877                49131
13878                49131
13879                49131
13880                49131
13881                49131
13882                49131
13883   ANKRD30BP2   28873
13884   ANKRD30BP2   28873
13885   ANKRD30BP2   28873
13886   ANKRD30BP2   28873
13887   ANKRD30BP2   28873
13888   ANKRD30BP2   28873
13889   ANKRD30BP2   28873
13890   ANKRD30BP2   28873
13891   ANKRD30BP2   28873
13892   ANKRD30BP2   28873
13893   ANKRD30BP2   28873
13894   ANKRD30BP2   28873
13895   ANKRD30BP2   28873
13896   ANKRD30BP2   28873
13897   ANKRD30BP2   28873
13898   ANKRD30BP2   28873
13899   ANKRD30BP2   28873
13900   ANKRD30BP2   28873
13901   ANKRD30BP2   28873
13902   ANKRD30BP2   28873
13903   ANKRD30BP2   28873
13904   ANKRD30BP2   28873
13905                  310
13906                 1939
13907                 1939
13908    KRTAP11-1     911
13909     KRTAP8-1     555
13910   KRTAP21-4P     815
13911        KCNJ6  309070
13912        KCNJ6  309070
13913        KCNJ6  309070
13914        KCNJ6  309070
13915    KCNJ6-AS1    2467
13916    KCNJ6-AS1    2467
13917    KRTAP22-2     292
13918     KRTAP6-3     635
13919     RPL23AP4     462
13920     KRTAP6-2     312
13921    KRTAP22-1     295
13922     KRTAP6-1     499
13923    KRTAP20-1     274
13924    KRTAP20-4     223
13925                  442
13926    LINC00163    4222
13927    LINC00163    4222
13928    LINC00163    4222
13929    LINC00163    4222
13930    LINC00165     823
13931       PICSAR    5519
13932       PICSAR    5519
13933       SSR4P1    3213
13934       SSR4P1    3213
13935       SSR4P1    3213
13936       SSR4P1    3213
13937   RNU6-1150P      98
13938                  101
13939                  100
13940                  100
13941    RNU6-614P     106
13942     MIRLET7C      83
13943    RN7SKP236     283
13944    RN7SL740P     343
13945    RNU6-992P     107
13946                  176
13947    RNU6-859P     106
13948    RNA5SP490     135
13949      MIR4327      84
13950                   91
13951    RNU6-926P     106
13952    RNU6-113P     100
13953                  175
13954      MIR3197      72
13955                  135
13956       MIR99A      80
13957      MIR6070     102
13958    MIR6724-3      91
13959                   88
13960                   95
13961                   82
13962     RNA5-8S5     152
13963     RN7SL52P     283
13964      MIR6508      59
13965                   94
13966    MIR3156-3      76
13967     SNORA80A     135
13968                  214
13969    RNA5SP488     115
13970                  135
13971      MIR548X      74
13972     RNU4-45P     140
13973    RNU6-954P     106
13974    RN7SL678P     298
13975     RNA5-8S5     152
13976     RNA5-8S5     152
13977                  108
13978    RNU6-396P     104

distinct()

Unique rows

This is not a gene set for statistics

gene_by_exon %>%
  filter(gene_biotype =="protein_coding") %>% 
  mutate(  length = end_position - start_position) %>% 
  dplyr::select(hgnc_symbol, length) %>% 
  distinct()
    hgnc_symbol  length
1         ITGB2   46036
2         S100B    6246
3         DIP2A  110953
4     KRTAP12-2     738
5     KRTAP12-4     446
6          PCNT  121647
7     KRTAP12-3     409
8     KRTAP10-6    1237
9     KRTAP12-1     587
10    KRTAP10-2    1148
11        BACH1  436680
12    KRTAP10-8     875
13       UBE2G2   33439
14    KRTAP10-3     970
15    KRTAP10-7    1577
16        BACE2  114717
17        RIPK4   27737
18      TMPRSS2   66565
19        SUMO3   13162
20   KRTAP10-11    1236
21     C21orf33   12118
22         CBR1    3225
23       DOPEY2  137492
24        CLIC6   48838
25       HSPA13   12369
26        KCNE2    7365
27       AGPAT3  121350
28    C21orf140     755
29      SMIM11A   32386
30      UBASH3A   44234
31                 5251
32        RBM11   12242
33       COL6A1   23313
34        KCNE1   65587
35        CXADR   81197
36        RCAN1  102000
37         BTG3   19294
38       PAXBP1   37959
39        FAM3B   53219
40         WDR4   36474
41                 3775
42          MX1   38910
43         YBEY   11414
44       NDUFV3   33660
45      ADAMTS5   48601
46        CRYAA    3797
47      PTTG1IP   24318
48   KRTAP10-10    1099
49       MCM3AP   51171
50       PKNOX1   59421
51       TSPEAR  213688
52    KRTAP10-1    1214
53    KRTAP10-4   64560
54    KRTAP10-9    1170
55          CBS   23752
56        DSCR3   44499
57    KRTAP10-5    1149
58        NCAM2  545014
59        HMGN1    7332
60        LRRC3    6710
61       CRYZL1   54585
62       DONSON   29166
63         PFKL   27325
64   KRTAP10-12     872
65        GRIK1  403100
66      SMIM11B   32891
67          LSS   40683
68       PRDM15   81257
69     MAP3K7CL   98418
70        EVA1C  103391
71        TIAM1  441561
72         JAM2   78290
73    KRTAP19-5     460
74        TRPM2   92918
75       SH3BGR   69651
76       COL6A2   34752
77               346920
78      C21orf2   10458
79         FTCD   19305
80                12605
81        CHODL  366110
82      SLC37A1   85432
83        ABCG1   97555
84        NRIP1  104701
85      SLC19A1   50839
86     C21orf58   23694
87          MX2   47447
88         PCP4   62080
89      B3GALT5  116695
90          SON   34863
91        IGSF5   56689
92        ATP5O   12527
93        DSCAM  836140
94         TTC3  129886
95         CCT8   17992
96       IFNAR1   35385
97        LCA5L   39961
98        USP16   29859
99     C21orf62   20179
100        PWP2   23891
101     TMEM50B   47526
102       OLIG1    2276
103        HLCS  239348
104      RWDD2B   14994
105     RIPPLY3   13509
106        SIM2   50784
107                 459
108     SPATC1L   23328
109       ITSN1  257461
110       CYYR1  107075
111        HUNK  171318
112      IFNAR2   35774
113        CBSL   23171
114       PDE9A  121873
115       RSPH1   23868
116       RUNX1 1216866
117        PDXK   43213
118        PIGP   14000
119       SETD4   44848
120       MORC3   65959
121      CHAF1B   33637
122        RRP1   15780
123    TMPRSS15  216763
124       SYNJ1   99289
125       BRWD1  137383
126               66891
127      DNMT3L   15877
128                9973
129     COL18A1  108583
130      POFUT2   23970
131      ADARB1  152707
132     FAM207A   36979
133   KRTAP19-4     309
134   KRTAP19-2     379
135        GART   39560
136      KCNE1B   13251
137        AIRE   12810
138         WRB   48284
139      IL10RB   43829
140                1707
141    C21orf91   30419
142       MRPS6   69810
143      SLC5A3   32692
144        TFF1    4312
145        TFF3    3984
146        LIPI  102078
147       DSCR8   66565
148   KRTAP19-8     317
149       ATP5J   19170
150       GABPA   37890
151   KRTAP21-1     598
152   KRTAP21-2     439
153       DSCR4  169935
154       U2AF1   14631
155      HSF2BP  130301
156     DNAJC28    6190
157      IFNGR2   76452
158     U2AF1L5   14638
159               36438
160      CLDN14  115948
161     TMPRSS3   24956
162      ICOSLG   17975
163       OLIG2    3351
164        LTN1   64812
165      N6AMT1   13180
166               33459
167    KRTAP7-1     720
168   KRTAP20-3     272
169      DYRK1A  151660
170       PRMT2   29957
171   KRTAP24-1    1649
172   KRTAP25-1     369
173   KRTAP26-1    1192
174   KRTAP27-1     681
175   KRTAP23-1     210
176   KRTAP13-2     866
177   KRTAP13-1     748
178   KRTAP13-3     703
179   KRTAP13-4     796
180      SAMSN1   98174
181   KRTAP19-3     521
182   KRTAP15-1     670
183         APP  290578
184        URB1   82008
185       POTED   31727
186        SOD1    9309
187      ZBTB21   23556
188         ERG  281753
189   KRTAP20-2     383
190   KRTAP19-6     329
191        TFF2    4771
192   KRTAP21-3     252
193   KRTAP19-7     439
194       CLDN8    2067
195        CBR3   11654
196    TRAPPC10   94233
197       PCBP3  298760
198        CSTB    3934
199       USP25  150044
200       PSMG1    9082
201                5346
202        SIK1   12613
203      KCNJ15  150323
204     ADAMTS1    9662
205      TCP10L   12532
206      MIS18A   10850
207       H2BFS     459
208    C21orf59   20787
209       RRP1B   36531
210               17462
211       SCAF4   61042
212       C2CD2   68778
213        MRAP   22971
214               18173
215   KRTAP19-1     645
216        TPTE   84587
217      CLDN17    1192
218      MRPL39   21861
219        ETS2   19648
220      UMODL1   80494
221               23863
222               49131
223   KRTAP11-1     911
224    KRTAP8-1     555
225       KCNJ6  309070
226   KRTAP22-2     292
227    KRTAP6-3     635
228    KRTAP6-2     312
229   KRTAP22-1     295
230    KRTAP6-1     499
231   KRTAP20-1     274
232   KRTAP20-4     223
gene_by_exon %>%
  group_by(gene_biotype) %>%
   mutate(  length = end_position - start_position) %>% 
    #Some values are missing, thus tell `mean` to remove them from the calculation.
  summarise(by_type_length = floor(mean(length, na.rm = TRUE))) %>% 
  arrange(desc(by_type_length))
# A tibble: 19 × 2
                         gene_biotype by_type_length
                                <chr>          <dbl>
1                      protein_coding         109532
2                             lincRNA         105951
3    transcribed_processed_pseudogene          97124
4  transcribed_unprocessed_pseudogene          84268
5                processed_transcript          72905
6                   sense_overlapping          40989
7                           antisense          34382
8              unprocessed_pseudogene          12495
9                      sense_intronic          12055
10           3prime_overlapping_ncRNA           3643
11                                TEC           2413
12               processed_pseudogene           1006
13                          IG_V_gene            435
14                           misc_RNA            145
15                               rRNA            132
16                             snoRNA            118
17                              snRNA            116
18                         pseudogene            103
19                              miRNA             86

mutate_at(), mutate_all(), mutate_if()

Changing many columns

Usage

  • Use the select helpers with mutate_at()
  • Use column conditions for mutate_if()
  • vars() to wrap variables and funs() to wrap functions

Coordinate conversion

gene_by_exon %>% 
  mutate_at(vars(contains("position")), funs(. +1))

Coordinate conversion

gene_by_exon %>% 
  mutate_if(is.numeric, funs(. +1))
      ensembl_gene_id ensembl_transcript_id ensembl_exon_id
1     ENSG00000264452       ENST00000583496 ENSE00002709519
2     ENSG00000274046       ENST00000617336 ENSE00003722332
3     ENSG00000278775       ENST00000619112 ENSE00003751812
4     ENSG00000276873       ENST00000616808 ENSE00003730872
5     ENSG00000236545       ENST00000458654 ENSE00001729372
6     ENSG00000236545       ENST00000458654 ENSE00001673061
7     ENSG00000160255       ENST00000302347 ENSE00003791070
8     ENSG00000160255       ENST00000302347 ENSE00003688153
9     ENSG00000160255       ENST00000302347 ENSE00003784896
10    ENSG00000160255       ENST00000302347 ENSE00003569344
11    ENSG00000160255       ENST00000302347 ENSE00003648854
12    ENSG00000160255       ENST00000302347 ENSE00003786943
13    ENSG00000160255       ENST00000302347 ENSE00003692776
14    ENSG00000160255       ENST00000302347 ENSE00003596110
15    ENSG00000160255       ENST00000302347 ENSE00003676989
16    ENSG00000160255       ENST00000302347 ENSE00003610443
17    ENSG00000160255       ENST00000302347 ENSE00003474058
18    ENSG00000160255       ENST00000302347 ENSE00003538737
19    ENSG00000160255       ENST00000302347 ENSE00003608831
20    ENSG00000160255       ENST00000302347 ENSE00003634407
21    ENSG00000160255       ENST00000302347 ENSE00001530484
22    ENSG00000160255       ENST00000302347 ENSE00003654080
23    ENSG00000160255       ENST00000518033 ENSE00002121803
24    ENSG00000160255       ENST00000518033 ENSE00002135361
25    ENSG00000160255       ENST00000523126 ENSE00002119259
26    ENSG00000160255       ENST00000523126 ENSE00002100821
27    ENSG00000160255       ENST00000521995 ENSE00003791070
28    ENSG00000160255       ENST00000521995 ENSE00003634407
29    ENSG00000160255       ENST00000521995 ENSE00001530484
30    ENSG00000160255       ENST00000521995 ENSE00002118353
31    ENSG00000160255       ENST00000397846 ENSE00003791070
32    ENSG00000160255       ENST00000397846 ENSE00003634407
33    ENSG00000160255       ENST00000397846 ENSE00001854101
34    ENSG00000160255       ENST00000397846 ENSE00003532481
35    ENSG00000160255       ENST00000479849 ENSE00003476552
36    ENSG00000160255       ENST00000479849 ENSE00001858561
37    ENSG00000160255       ENST00000479849 ENSE00003542143
38    ENSG00000160255       ENST00000517819 ENSE00003791070
39    ENSG00000160255       ENST00000517819 ENSE00003634407
40    ENSG00000160255       ENST00000517819 ENSE00002110944
41    ENSG00000160255       ENST00000517819 ENSE00002093217
42    ENSG00000160255       ENST00000524251 ENSE00002104346
43    ENSG00000160255       ENST00000524251 ENSE00002135256
44    ENSG00000160255       ENST00000524251 ENSE00003650963
45    ENSG00000160255       ENST00000524251 ENSE00002125359
46    ENSG00000160255       ENST00000520389 ENSE00003791070
47    ENSG00000160255       ENST00000520389 ENSE00003634407
48    ENSG00000160255       ENST00000520389 ENSE00003607150
49    ENSG00000160255       ENST00000520389 ENSE00002121803
50    ENSG00000160255       ENST00000520389 ENSE00002103133
51    ENSG00000160255       ENST00000520389 ENSE00002090699
52    ENSG00000160255       ENST00000522688 ENSE00003476552
53    ENSG00000160255       ENST00000522688 ENSE00002089808
54    ENSG00000160255       ENST00000522688 ENSE00002104346
55    ENSG00000160255       ENST00000522688 ENSE00003480328
56    ENSG00000160255       ENST00000522688 ENSE00002140166
57    ENSG00000160255       ENST00000517563 ENSE00003791070
58    ENSG00000160255       ENST00000517563 ENSE00003688153
59    ENSG00000160255       ENST00000517563 ENSE00003634407
60    ENSG00000160255       ENST00000517563 ENSE00001530485
61    ENSG00000160255       ENST00000517563 ENSE00002135901
62    ENSG00000160255       ENST00000517563 ENSE00002137412
63    ENSG00000160255       ENST00000320216 ENSE00003791070
64    ENSG00000160255       ENST00000320216 ENSE00003688153
65    ENSG00000160255       ENST00000320216 ENSE00003784896
66    ENSG00000160255       ENST00000320216 ENSE00003569344
67    ENSG00000160255       ENST00000320216 ENSE00003648854
68    ENSG00000160255       ENST00000320216 ENSE00003786943
69    ENSG00000160255       ENST00000320216 ENSE00001760685
70    ENSG00000160255       ENST00000521987 ENSE00003639138
71    ENSG00000160255       ENST00000521987 ENSE00002129948
72    ENSG00000160255       ENST00000521987 ENSE00002100250
73    ENSG00000160255       ENST00000523663 ENSE00003791070
74    ENSG00000160255       ENST00000523663 ENSE00003688153
75    ENSG00000160255       ENST00000523663 ENSE00003784896
76    ENSG00000160255       ENST00000523663 ENSE00003634407
77    ENSG00000160255       ENST00000523663 ENSE00002137392
78    ENSG00000160255       ENST00000522931 ENSE00003791070
79    ENSG00000160255       ENST00000522931 ENSE00003688153
80    ENSG00000160255       ENST00000522931 ENSE00003634407
81    ENSG00000160255       ENST00000522931 ENSE00002113067
82    ENSG00000160255       ENST00000522931 ENSE00002121804
83    ENSG00000160255       ENST00000479202 ENSE00003475946
84    ENSG00000160255       ENST00000479202 ENSE00001841395
85    ENSG00000160255       ENST00000479202 ENSE00001846827
86    ENSG00000160255       ENST00000523323 ENSE00003562837
87    ENSG00000160255       ENST00000523323 ENSE00003470757
88    ENSG00000160255       ENST00000523323 ENSE00003621554
89    ENSG00000160255       ENST00000523323 ENSE00003610265
90    ENSG00000160255       ENST00000523323 ENSE00003475946
91    ENSG00000160255       ENST00000523323 ENSE00003634407
92    ENSG00000160255       ENST00000523323 ENSE00003639138
93    ENSG00000160255       ENST00000523323 ENSE00003474596
94    ENSG00000160255       ENST00000523323 ENSE00003573867
95    ENSG00000160255       ENST00000523323 ENSE00003583970
96    ENSG00000160255       ENST00000523323 ENSE00002122904
97    ENSG00000160255       ENST00000523323 ENSE00003658064
98    ENSG00000160255       ENST00000523323 ENSE00003607150
99    ENSG00000160255       ENST00000523323 ENSE00003587147
100   ENSG00000160255       ENST00000523323 ENSE00003484049
101   ENSG00000160255       ENST00000523323 ENSE00003477398
102   ENSG00000160255       ENST00000397850 ENSE00003791070
103   ENSG00000160255       ENST00000397850 ENSE00003688153
104   ENSG00000160255       ENST00000397850 ENSE00003784896
105   ENSG00000160255       ENST00000397850 ENSE00003569344
106   ENSG00000160255       ENST00000397850 ENSE00003648854
107   ENSG00000160255       ENST00000397850 ENSE00003786943
108   ENSG00000160255       ENST00000397850 ENSE00003692776
109   ENSG00000160255       ENST00000397850 ENSE00003596110
110   ENSG00000160255       ENST00000397850 ENSE00003676989
111   ENSG00000160255       ENST00000397850 ENSE00003610443
112   ENSG00000160255       ENST00000397850 ENSE00003474058
113   ENSG00000160255       ENST00000397850 ENSE00003538737
114   ENSG00000160255       ENST00000397850 ENSE00003608831
115   ENSG00000160255       ENST00000397850 ENSE00003564872
116   ENSG00000160255       ENST00000397850 ENSE00003634407
117   ENSG00000160255       ENST00000397850 ENSE00002097953
118   ENSG00000160255       ENST00000397850 ENSE00001530484
119   ENSG00000160255       ENST00000355153 ENSE00003791070
120   ENSG00000160255       ENST00000355153 ENSE00003688153
121   ENSG00000160255       ENST00000355153 ENSE00003784896
122   ENSG00000160255       ENST00000355153 ENSE00003569344
123   ENSG00000160255       ENST00000355153 ENSE00003648854
124   ENSG00000160255       ENST00000355153 ENSE00003786943
125   ENSG00000160255       ENST00000355153 ENSE00003692776
126   ENSG00000160255       ENST00000355153 ENSE00003596110
127   ENSG00000160255       ENST00000355153 ENSE00003676989
128   ENSG00000160255       ENST00000355153 ENSE00003610443
129   ENSG00000160255       ENST00000355153 ENSE00003474058
130   ENSG00000160255       ENST00000355153 ENSE00003538737
131   ENSG00000160255       ENST00000355153 ENSE00003608831
132   ENSG00000160255       ENST00000355153 ENSE00003564872
133   ENSG00000160255       ENST00000355153 ENSE00003634407
134   ENSG00000160255       ENST00000355153 ENSE00001430780
135   ENSG00000160255       ENST00000498666 ENSE00003562837
136   ENSG00000160255       ENST00000498666 ENSE00003470757
137   ENSG00000160255       ENST00000498666 ENSE00003621554
138   ENSG00000160255       ENST00000498666 ENSE00003610265
139   ENSG00000160255       ENST00000498666 ENSE00003475946
140   ENSG00000160255       ENST00000498666 ENSE00003491446
141   ENSG00000160255       ENST00000498666 ENSE00001905428
142   ENSG00000160255       ENST00000498666 ENSE00003583278
143   ENSG00000160255       ENST00000498666 ENSE00003476552
144   ENSG00000160255       ENST00000498666 ENSE00003602491
145   ENSG00000160255       ENST00000498666 ENSE00003639138
146   ENSG00000160255       ENST00000498666 ENSE00003474596
147   ENSG00000160255       ENST00000498666 ENSE00003573867
148   ENSG00000160255       ENST00000498666 ENSE00003583970
149   ENSG00000160255       ENST00000498666 ENSE00001949282
150   ENSG00000160255       ENST00000397857 ENSE00003791070
151   ENSG00000160255       ENST00000397857 ENSE00003688153
152   ENSG00000160255       ENST00000397857 ENSE00003784896
153   ENSG00000160255       ENST00000397857 ENSE00003569344
154   ENSG00000160255       ENST00000397857 ENSE00003648854
155   ENSG00000160255       ENST00000397857 ENSE00003786943
156   ENSG00000160255       ENST00000397857 ENSE00003692776
157   ENSG00000160255       ENST00000397857 ENSE00003596110
158   ENSG00000160255       ENST00000397857 ENSE00003676989
159   ENSG00000160255       ENST00000397857 ENSE00003610443
160   ENSG00000160255       ENST00000397857 ENSE00003474058
161   ENSG00000160255       ENST00000397857 ENSE00003538737
162   ENSG00000160255       ENST00000397857 ENSE00003608831
163   ENSG00000160255       ENST00000397857 ENSE00003564872
164   ENSG00000160255       ENST00000397857 ENSE00001530495
165   ENSG00000160255       ENST00000397857 ENSE00003634407
166   ENSG00000160255       ENST00000397854 ENSE00003791070
167   ENSG00000160255       ENST00000397854 ENSE00003688153
168   ENSG00000160255       ENST00000397854 ENSE00003569344
169   ENSG00000160255       ENST00000397854 ENSE00003648854
170   ENSG00000160255       ENST00000397854 ENSE00003786943
171   ENSG00000160255       ENST00000397854 ENSE00003692776
172   ENSG00000160255       ENST00000397854 ENSE00003596110
173   ENSG00000160255       ENST00000397854 ENSE00003676989
174   ENSG00000160255       ENST00000397854 ENSE00003610443
175   ENSG00000160255       ENST00000397854 ENSE00003474058
176   ENSG00000160255       ENST00000397854 ENSE00003538737
177   ENSG00000160255       ENST00000397854 ENSE00003608831
178   ENSG00000160255       ENST00000397854 ENSE00003564872
179   ENSG00000160255       ENST00000397854 ENSE00003634407
180   ENSG00000160255       ENST00000397854 ENSE00001948527
181   ENSG00000160255       ENST00000475170 ENSE00001892842
182   ENSG00000160255       ENST00000475170 ENSE00003562837
183   ENSG00000160255       ENST00000475170 ENSE00003470757
184   ENSG00000160255       ENST00000475170 ENSE00003621554
185   ENSG00000160255       ENST00000475170 ENSE00003610265
186   ENSG00000160255       ENST00000475170 ENSE00003475946
187   ENSG00000160255       ENST00000475170 ENSE00003491446
188   ENSG00000160255       ENST00000397852 ENSE00001483672
189   ENSG00000160255       ENST00000397852 ENSE00003791070
190   ENSG00000160255       ENST00000397852 ENSE00003688153
191   ENSG00000160255       ENST00000397852 ENSE00003784896
192   ENSG00000160255       ENST00000397852 ENSE00003569344
193   ENSG00000160255       ENST00000397852 ENSE00003648854
194   ENSG00000160255       ENST00000397852 ENSE00003786943
195   ENSG00000160255       ENST00000397852 ENSE00003692776
196   ENSG00000160255       ENST00000397852 ENSE00003596110
197   ENSG00000160255       ENST00000397852 ENSE00003676989
198   ENSG00000160255       ENST00000397852 ENSE00003610443
199   ENSG00000160255       ENST00000397852 ENSE00003474058
200   ENSG00000160255       ENST00000397852 ENSE00003538737
201   ENSG00000160255       ENST00000397852 ENSE00003608831
202   ENSG00000160255       ENST00000397852 ENSE00003564872
203   ENSG00000238627       ENST00000410986 ENSE00001807022
204   ENSG00000252619       ENST00000516810 ENSE00002089087
205   ENSG00000281420       ENST00000626421 ENSE00003764467
206   ENSG00000281420       ENST00000626421 ENSE00003762175
207   ENSG00000211590       ENST00000390235 ENSE00001507662
208   ENSG00000223078       ENST00000411146 ENSE00001590964
209   ENSG00000200754       ENST00000363884 ENSE00001808378
210   ENSG00000283300       ENST00000637157 ENSE00003800948
211   ENSG00000263973       ENST00000585040 ENSE00002707623
212   ENSG00000160307       ENST00000291700 ENSE00001051348
213   ENSG00000160307       ENST00000291700 ENSE00001051347
214   ENSG00000160307       ENST00000291700 ENSE00003554900
215   ENSG00000160307       ENST00000367071 ENSE00001051348
216   ENSG00000160307       ENST00000367071 ENSE00001051347
217   ENSG00000160307       ENST00000367071 ENSE00001443411
218   ENSG00000160307       ENST00000367071 ENSE00003463155
219   ENSG00000160307       ENST00000397648 ENSE00001529559
220   ENSG00000160307       ENST00000397648 ENSE00001529558
221   ENSG00000160305       ENST00000400274 ENSE00001542216
222   ENSG00000160305       ENST00000400274 ENSE00002347315
223   ENSG00000160305       ENST00000400274 ENSE00002324363
224   ENSG00000160305       ENST00000400274 ENSE00002319629
225   ENSG00000160305       ENST00000400274 ENSE00002218277
226   ENSG00000160305       ENST00000400274 ENSE00002276427
227   ENSG00000160305       ENST00000400274 ENSE00003471299
228   ENSG00000160305       ENST00000400274 ENSE00001542215
229   ENSG00000160305       ENST00000400274 ENSE00003546587
230   ENSG00000160305       ENST00000400274 ENSE00003683586
231   ENSG00000160305       ENST00000400274 ENSE00003494381
232   ENSG00000160305       ENST00000400274 ENSE00003672705
233   ENSG00000160305       ENST00000400274 ENSE00003533110
234   ENSG00000160305       ENST00000400274 ENSE00003466019
235   ENSG00000160305       ENST00000400274 ENSE00003623916
236   ENSG00000160305       ENST00000400274 ENSE00003546483
237   ENSG00000160305       ENST00000400274 ENSE00003535268
238   ENSG00000160305       ENST00000400274 ENSE00003474907
239   ENSG00000160305       ENST00000400274 ENSE00003641160
240   ENSG00000160305       ENST00000400274 ENSE00003562990
241   ENSG00000160305       ENST00000400274 ENSE00002685752
242   ENSG00000160305       ENST00000400274 ENSE00002444500
243   ENSG00000160305       ENST00000400274 ENSE00002499829
244   ENSG00000160305       ENST00000400274 ENSE00002476417
245   ENSG00000160305       ENST00000400274 ENSE00002513022
246   ENSG00000160305       ENST00000400274 ENSE00002533498
247   ENSG00000160305       ENST00000400274 ENSE00003662615
248   ENSG00000160305       ENST00000400274 ENSE00003590044
249   ENSG00000160305       ENST00000400274 ENSE00003495758
250   ENSG00000160305       ENST00000400274 ENSE00003559256
251   ENSG00000160305       ENST00000400274 ENSE00003545429
252   ENSG00000160305       ENST00000400274 ENSE00002444706
253   ENSG00000160305       ENST00000400274 ENSE00002517274
254   ENSG00000160305       ENST00000400274 ENSE00002499891
255   ENSG00000160305       ENST00000400274 ENSE00003560718
256   ENSG00000160305       ENST00000400274 ENSE00003514252
257   ENSG00000160305       ENST00000400274 ENSE00003516999
258   ENSG00000160305       ENST00000400274 ENSE00003575495
259   ENSG00000160305       ENST00000457905 ENSE00002347315
260   ENSG00000160305       ENST00000457905 ENSE00002324363
261   ENSG00000160305       ENST00000457905 ENSE00002319629
262   ENSG00000160305       ENST00000457905 ENSE00002218277
263   ENSG00000160305       ENST00000457905 ENSE00002276427
264   ENSG00000160305       ENST00000457905 ENSE00003471299
265   ENSG00000160305       ENST00000457905 ENSE00003546587
266   ENSG00000160305       ENST00000457905 ENSE00003683586
267   ENSG00000160305       ENST00000457905 ENSE00003494381
268   ENSG00000160305       ENST00000457905 ENSE00003672705
269   ENSG00000160305       ENST00000457905 ENSE00003533110
270   ENSG00000160305       ENST00000457905 ENSE00003466019
271   ENSG00000160305       ENST00000457905 ENSE00003623916
272   ENSG00000160305       ENST00000457905 ENSE00003546483
273   ENSG00000160305       ENST00000457905 ENSE00003535268
274   ENSG00000160305       ENST00000457905 ENSE00003474907
275   ENSG00000160305       ENST00000457905 ENSE00003641160
276   ENSG00000160305       ENST00000457905 ENSE00003562990
277   ENSG00000160305       ENST00000457905 ENSE00002685752
278   ENSG00000160305       ENST00000457905 ENSE00001895397
279   ENSG00000160305       ENST00000457905 ENSE00003480214
280   ENSG00000160305       ENST00000457905 ENSE00001863984
281   ENSG00000160305       ENST00000466639 ENSE00002347315
282   ENSG00000160305       ENST00000466639 ENSE00002324363
283   ENSG00000160305       ENST00000466639 ENSE00002319629
284   ENSG00000160305       ENST00000466639 ENSE00002218277
285   ENSG00000160305       ENST00000466639 ENSE00003471299
286   ENSG00000160305       ENST00000466639 ENSE00003546587
287   ENSG00000160305       ENST00000466639 ENSE00003683586
288   ENSG00000160305       ENST00000466639 ENSE00003494381
289   ENSG00000160305       ENST00000466639 ENSE00003672705
290   ENSG00000160305       ENST00000466639 ENSE00003533110
291   ENSG00000160305       ENST00000466639 ENSE00003466019
292   ENSG00000160305       ENST00000466639 ENSE00003623916
293   ENSG00000160305       ENST00000466639 ENSE00003546483
294   ENSG00000160305       ENST00000466639 ENSE00003535268
295   ENSG00000160305       ENST00000466639 ENSE00003474907
296   ENSG00000160305       ENST00000466639 ENSE00003641160
297   ENSG00000160305       ENST00000466639 ENSE00003562990
298   ENSG00000160305       ENST00000466639 ENSE00003480214
299   ENSG00000160305       ENST00000466639 ENSE00002254995
300   ENSG00000160305       ENST00000466639 ENSE00003558519
301   ENSG00000160305       ENST00000435722 ENSE00002347315
302   ENSG00000160305       ENST00000435722 ENSE00002324363
303   ENSG00000160305       ENST00000435722 ENSE00002319629
304   ENSG00000160305       ENST00000435722 ENSE00002218277
305   ENSG00000160305       ENST00000435722 ENSE00002276427
306   ENSG00000160305       ENST00000435722 ENSE00003471299
307   ENSG00000160305       ENST00000435722 ENSE00003546587
308   ENSG00000160305       ENST00000435722 ENSE00003683586
309   ENSG00000160305       ENST00000435722 ENSE00003494381
310   ENSG00000160305       ENST00000435722 ENSE00003672705
311   ENSG00000160305       ENST00000435722 ENSE00003533110
312   ENSG00000160305       ENST00000435722 ENSE00003466019
313   ENSG00000160305       ENST00000435722 ENSE00003623916
314   ENSG00000160305       ENST00000435722 ENSE00003546483
315   ENSG00000160305       ENST00000435722 ENSE00003535268
316   ENSG00000160305       ENST00000435722 ENSE00003474907
317   ENSG00000160305       ENST00000435722 ENSE00003641160
318   ENSG00000160305       ENST00000435722 ENSE00003562990
319   ENSG00000160305       ENST00000435722 ENSE00003480214
320   ENSG00000160305       ENST00000435722 ENSE00003558519
321   ENSG00000160305       ENST00000435722 ENSE00001831129
322   ENSG00000160305       ENST00000417564 ENSE00002347315
323   ENSG00000160305       ENST00000417564 ENSE00002324363
324   ENSG00000160305       ENST00000417564 ENSE00002319629
325   ENSG00000160305       ENST00000417564 ENSE00002218277
326   ENSG00000160305       ENST00000417564 ENSE00002276427
327   ENSG00000160305       ENST00000417564 ENSE00003471299
328   ENSG00000160305       ENST00000417564 ENSE00003546587
329   ENSG00000160305       ENST00000417564 ENSE00003683586
330   ENSG00000160305       ENST00000417564 ENSE00003494381
331   ENSG00000160305       ENST00000417564 ENSE00003672705
332   ENSG00000160305       ENST00000417564 ENSE00003533110
333   ENSG00000160305       ENST00000417564 ENSE00003466019
334   ENSG00000160305       ENST00000417564 ENSE00003623916
335   ENSG00000160305       ENST00000417564 ENSE00003546483
336   ENSG00000160305       ENST00000417564 ENSE00003535268
337   ENSG00000160305       ENST00000417564 ENSE00003474907
338   ENSG00000160305       ENST00000417564 ENSE00003641160
339   ENSG00000160305       ENST00000417564 ENSE00003562990
340   ENSG00000160305       ENST00000417564 ENSE00002685752
341   ENSG00000160305       ENST00000417564 ENSE00002444500
342   ENSG00000160305       ENST00000417564 ENSE00002499829
343   ENSG00000160305       ENST00000417564 ENSE00002476417
344   ENSG00000160305       ENST00000417564 ENSE00002513022
345   ENSG00000160305       ENST00000417564 ENSE00002533498
346   ENSG00000160305       ENST00000417564 ENSE00003662615
347   ENSG00000160305       ENST00000417564 ENSE00003590044
348   ENSG00000160305       ENST00000417564 ENSE00003495758
349   ENSG00000160305       ENST00000417564 ENSE00003559256
350   ENSG00000160305       ENST00000417564 ENSE00003545429
351   ENSG00000160305       ENST00000417564 ENSE00002444706
352   ENSG00000160305       ENST00000417564 ENSE00002517274
353   ENSG00000160305       ENST00000417564 ENSE00002499891
354   ENSG00000160305       ENST00000417564 ENSE00003560718
355   ENSG00000160305       ENST00000417564 ENSE00003514252
356   ENSG00000160305       ENST00000417564 ENSE00003516999
357   ENSG00000160305       ENST00000417564 ENSE00003480214
358   ENSG00000160305       ENST00000417564 ENSE00002096758
359   ENSG00000160305       ENST00000417564 ENSE00002109859
360   ENSG00000160305       ENST00000473752 ENSE00001893033
361   ENSG00000160305       ENST00000473752 ENSE00003624236
362   ENSG00000160305       ENST00000473752 ENSE00003609621
363   ENSG00000160305       ENST00000473752 ENSE00003658351
364   ENSG00000160305       ENST00000473752 ENSE00003548383
365   ENSG00000160305       ENST00000473752 ENSE00003466194
366   ENSG00000160305       ENST00000473752 ENSE00003560854
367   ENSG00000160305       ENST00000473752 ENSE00003532045
368   ENSG00000160305       ENST00000473752 ENSE00003548730
369   ENSG00000160305       ENST00000473752 ENSE00003682634
370   ENSG00000160305       ENST00000473752 ENSE00003477663
371   ENSG00000160305       ENST00000473752 ENSE00003491118
372   ENSG00000160305       ENST00000473752 ENSE00003531194
373   ENSG00000160305       ENST00000473752 ENSE00001845804
374   ENSG00000160305       ENST00000494435 ENSE00003624236
375   ENSG00000160305       ENST00000494435 ENSE00003609621
376   ENSG00000160305       ENST00000494435 ENSE00003658351
377   ENSG00000160305       ENST00000494435 ENSE00003548383
378   ENSG00000160305       ENST00000494435 ENSE00003466194
379   ENSG00000160305       ENST00000494435 ENSE00003560854
380   ENSG00000160305       ENST00000494435 ENSE00003532045
381   ENSG00000160305       ENST00000494435 ENSE00003548730
382   ENSG00000160305       ENST00000494435 ENSE00003682634
383   ENSG00000160305       ENST00000494435 ENSE00003477663
384   ENSG00000160305       ENST00000494435 ENSE00003491118
385   ENSG00000160305       ENST00000494435 ENSE00003531194
386   ENSG00000160305       ENST00000494435 ENSE00001832505
387   ENSG00000160305       ENST00000494435 ENSE00003631174
388   ENSG00000160305       ENST00000494435 ENSE00001943172
389   ENSG00000160305       ENST00000480553 ENSE00003531194
390   ENSG00000160305       ENST00000480553 ENSE00003631174
391   ENSG00000160305       ENST00000480553 ENSE00001819473
392   ENSG00000160305       ENST00000480553 ENSE00003563295
393   ENSG00000160305       ENST00000480553 ENSE00003468850
394   ENSG00000160305       ENST00000472364 ENSE00001940869
395   ENSG00000160305       ENST00000472364 ENSE00003614249
396   ENSG00000160305       ENST00000472364 ENSE00003628901
397   ENSG00000160305       ENST00000472364 ENSE00003633613
398   ENSG00000160305       ENST00000472364 ENSE00003646220
399   ENSG00000160305       ENST00000472364 ENSE00003482678
400   ENSG00000160305       ENST00000472364 ENSE00001863731
401   ENSG00000160305       ENST00000481883 ENSE00001916374
402   ENSG00000160305       ENST00000481883 ENSE00001912450
403   ENSG00000160305       ENST00000478105 ENSE00001814111
404   ENSG00000160305       ENST00000478105 ENSE00003639290
405   ENSG00000160305       ENST00000478105 ENSE00003479836
406   ENSG00000160305       ENST00000478105 ENSE00003657555
407   ENSG00000160305       ENST00000478105 ENSE00003504998
408   ENSG00000160305       ENST00000479654 ENSE00003479836
409   ENSG00000160305       ENST00000479654 ENSE00003657555
410   ENSG00000160305       ENST00000479654 ENSE00003504998
411   ENSG00000160305       ENST00000479654 ENSE00001864214
412   ENSG00000251851       ENST00000516042 ENSE00002088319
413   ENSG00000264462       ENST00000581792 ENSE00002687018
414   ENSG00000284448       ENST00000290239 ENSE00003729123
415   ENSG00000201025       ENST00000364155 ENSE00001438918
416   ENSG00000283904       ENST00000385060 ENSE00001500066
417   ENSG00000266299       ENST00000581787 ENSE00002688762
418   ENSG00000264580       ENST00000579137 ENSE00002701278
419   ENSG00000236519       ENST00000417820 ENSE00001654036
420   ENSG00000236519       ENST00000417820 ENSE00001648916
421   ENSG00000221864       ENST00000360770 ENSE00001406200
422   ENSG00000212933       ENST00000391618 ENSE00001509396
423   ENSG00000272948       ENST00000608405 ENSE00003705623
424   ENSG00000160299       ENST00000359568 ENSE00001740168
425   ENSG00000160299       ENST00000359568 ENSE00003693207
426   ENSG00000160299       ENST00000359568 ENSE00003471660
427   ENSG00000160299       ENST00000359568 ENSE00003614602
428   ENSG00000160299       ENST00000359568 ENSE00003653302
429   ENSG00000160299       ENST00000359568 ENSE00003669717
430   ENSG00000160299       ENST00000359568 ENSE00003461020
431   ENSG00000160299       ENST00000359568 ENSE00003679886
432   ENSG00000160299       ENST00000359568 ENSE00003636169
433   ENSG00000160299       ENST00000359568 ENSE00003634961
434   ENSG00000160299       ENST00000359568 ENSE00003613496
435   ENSG00000160299       ENST00000359568 ENSE00003595154
436   ENSG00000160299       ENST00000359568 ENSE00003505517
437   ENSG00000160299       ENST00000359568 ENSE00003581236
438   ENSG00000160299       ENST00000359568 ENSE00003484112
439   ENSG00000160299       ENST00000359568 ENSE00003464323
440   ENSG00000160299       ENST00000359568 ENSE00003678564
441   ENSG00000160299       ENST00000359568 ENSE00003460972
442   ENSG00000160299       ENST00000359568 ENSE00003625307
443   ENSG00000160299       ENST00000359568 ENSE00003655962
444   ENSG00000160299       ENST00000359568 ENSE00003582881
445   ENSG00000160299       ENST00000359568 ENSE00003536588
446   ENSG00000160299       ENST00000359568 ENSE00003618058
447   ENSG00000160299       ENST00000359568 ENSE00003541937
448   ENSG00000160299       ENST00000359568 ENSE00003551868
449   ENSG00000160299       ENST00000359568 ENSE00003675280
450   ENSG00000160299       ENST00000359568 ENSE00003615973
451   ENSG00000160299       ENST00000359568 ENSE00003566596
452   ENSG00000160299       ENST00000359568 ENSE00003499600
453   ENSG00000160299       ENST00000359568 ENSE00003605610
454   ENSG00000160299       ENST00000359568 ENSE00003634932
455   ENSG00000160299       ENST00000359568 ENSE00003634727
456   ENSG00000160299       ENST00000359568 ENSE00003668725
457   ENSG00000160299       ENST00000359568 ENSE00003680909
458   ENSG00000160299       ENST00000359568 ENSE00003622344
459   ENSG00000160299       ENST00000359568 ENSE00003517344
460   ENSG00000160299       ENST00000359568 ENSE00003526928
461   ENSG00000160299       ENST00000359568 ENSE00001591369
462   ENSG00000160299       ENST00000359568 ENSE00003482441
463   ENSG00000160299       ENST00000359568 ENSE00003499558
464   ENSG00000160299       ENST00000359568 ENSE00003498357
465   ENSG00000160299       ENST00000359568 ENSE00003637382
466   ENSG00000160299       ENST00000359568 ENSE00003675210
467   ENSG00000160299       ENST00000359568 ENSE00003507941
468   ENSG00000160299       ENST00000359568 ENSE00003518479
469   ENSG00000160299       ENST00000359568 ENSE00003608595
470   ENSG00000160299       ENST00000359568 ENSE00003625234
471   ENSG00000160299       ENST00000490468 ENSE00001830035
472   ENSG00000160299       ENST00000490468 ENSE00003486596
473   ENSG00000160299       ENST00000490468 ENSE00003656784
474   ENSG00000160299       ENST00000490468 ENSE00003615418
475   ENSG00000160299       ENST00000490468 ENSE00001838703
476   ENSG00000160299       ENST00000490468 ENSE00003689424
477   ENSG00000160299       ENST00000490468 ENSE00003613544
478   ENSG00000160299       ENST00000490468 ENSE00001872238
479   ENSG00000160299       ENST00000480896 ENSE00003486596
480   ENSG00000160299       ENST00000480896 ENSE00003656784
481   ENSG00000160299       ENST00000480896 ENSE00003615418
482   ENSG00000160299       ENST00000480896 ENSE00003689424
483   ENSG00000160299       ENST00000480896 ENSE00003613544
484   ENSG00000160299       ENST00000480896 ENSE00001865596
485   ENSG00000160299       ENST00000480896 ENSE00003627023
486   ENSG00000160299       ENST00000480896 ENSE00003570581
487   ENSG00000160299       ENST00000480896 ENSE00003692728
488   ENSG00000160299       ENST00000480896 ENSE00003614830
489   ENSG00000160299       ENST00000480896 ENSE00003685925
490   ENSG00000160299       ENST00000480896 ENSE00003458946
491   ENSG00000160299       ENST00000480896 ENSE00003651724
492   ENSG00000160299       ENST00000480896 ENSE00003476210
493   ENSG00000160299       ENST00000480896 ENSE00003490601
494   ENSG00000160299       ENST00000480896 ENSE00003595417
495   ENSG00000160299       ENST00000480896 ENSE00003472692
496   ENSG00000160299       ENST00000480896 ENSE00003510656
497   ENSG00000160299       ENST00000480896 ENSE00003681544
498   ENSG00000160299       ENST00000480896 ENSE00003617233
499   ENSG00000160299       ENST00000480896 ENSE00003520873
500   ENSG00000160299       ENST00000480896 ENSE00003596567
501   ENSG00000160299       ENST00000480896 ENSE00003686338
502   ENSG00000160299       ENST00000480896 ENSE00003576652
503   ENSG00000160299       ENST00000480896 ENSE00003671216
504   ENSG00000160299       ENST00000480896 ENSE00003535844
505   ENSG00000160299       ENST00000480896 ENSE00003459531
506   ENSG00000160299       ENST00000480896 ENSE00003620841
507   ENSG00000160299       ENST00000480896 ENSE00003656599
508   ENSG00000160299       ENST00000480896 ENSE00003529904
509   ENSG00000160299       ENST00000480896 ENSE00003655674
510   ENSG00000160299       ENST00000480896 ENSE00003479687
511   ENSG00000160299       ENST00000480896 ENSE00003513445
512   ENSG00000160299       ENST00000480896 ENSE00003507274
513   ENSG00000160299       ENST00000480896 ENSE00003472119
514   ENSG00000160299       ENST00000480896 ENSE00003561276
515   ENSG00000160299       ENST00000480896 ENSE00003597401
516   ENSG00000160299       ENST00000480896 ENSE00001908254
517   ENSG00000160299       ENST00000480896 ENSE00003694509
518   ENSG00000160299       ENST00000480896 ENSE00003615562
519   ENSG00000160299       ENST00000480896 ENSE00003544978
520   ENSG00000160299       ENST00000480896 ENSE00003560159
521   ENSG00000160299       ENST00000480896 ENSE00003627521
522   ENSG00000160299       ENST00000480896 ENSE00003674484
523   ENSG00000160299       ENST00000480896 ENSE00003562761
524   ENSG00000160299       ENST00000480896 ENSE00003494030
525   ENSG00000160299       ENST00000480896 ENSE00003673280
526   ENSG00000160299       ENST00000466474 ENSE00003689424
527   ENSG00000160299       ENST00000466474 ENSE00003613544
528   ENSG00000160299       ENST00000466474 ENSE00003627023
529   ENSG00000160299       ENST00000466474 ENSE00003570581
530   ENSG00000160299       ENST00000466474 ENSE00001851890
531   ENSG00000160299       ENST00000466474 ENSE00001821537
532   ENSG00000160299       ENST00000483844 ENSE00003613544
533   ENSG00000160299       ENST00000483844 ENSE00003570581
534   ENSG00000160299       ENST00000483844 ENSE00003692728
535   ENSG00000160299       ENST00000483844 ENSE00003614830
536   ENSG00000160299       ENST00000483844 ENSE00001895119
537   ENSG00000160299       ENST00000482575 ENSE00001815960
538   ENSG00000160299       ENST00000482575 ENSE00001921539
539   ENSG00000160299       ENST00000418394 ENSE00003498357
540   ENSG00000160299       ENST00000418394 ENSE00003637382
541   ENSG00000160299       ENST00000418394 ENSE00003675210
542   ENSG00000160299       ENST00000418394 ENSE00003507941
543   ENSG00000160299       ENST00000418394 ENSE00001624393
544   ENSG00000160299       ENST00000418394 ENSE00001767577
545   ENSG00000160299       ENST00000465356 ENSE00001949582
546   ENSG00000160299       ENST00000465356 ENSE00001843651
547   ENSG00000205439       ENST00000397907 ENSE00001370311
548   ENSG00000188155       ENST00000400368 ENSE00001542615
549   ENSG00000187175       ENST00000391617 ENSE00001382580
550   ENSG00000205445       ENST00000391621 ENSE00001509399
551   ENSG00000205445       ENST00000498210 ENSE00001917994
552   ENSG00000205445       ENST00000498210 ENSE00001878737
553   ENSG00000229356       ENST00000426578 ENSE00001789377
554   ENSG00000229356       ENST00000426578 ENSE00001745110
555   ENSG00000229356       ENST00000426578 ENSE00001630947
556   ENSG00000229356       ENST00000426578 ENSE00001594641
557   ENSG00000274868       ENST00000612139 ENSE00003747157
558   ENSG00000207416       ENST00000384685 ENSE00001499693
559   ENSG00000224388       ENST00000433378 ENSE00001788165
560   ENSG00000224388       ENST00000433378 ENSE00001752650
561   ENSG00000273102       ENST00000607953 ENSE00003707731
562   ENSG00000273102       ENST00000607953 ENSE00003706509
563   ENSG00000278996       ENST00000623664 ENSE00003755016
564   ENSG00000278996       ENST00000623664 ENSE00003756341
565   ENSG00000278996       ENST00000623664 ENSE00003759596
566   ENSG00000278996       ENST00000623664 ENSE00003754954
567   ENSG00000278996       ENST00000623664 ENSE00003759620
568   ENSG00000278996       ENST00000623664 ENSE00003758298
569   ENSG00000278996       ENST00000623664 ENSE00003757619
570   ENSG00000273017       ENST00000609910 ENSE00003709418
571   ENSG00000234293       ENST00000429843 ENSE00001637321
572   ENSG00000234293       ENST00000429843 ENSE00001669398
573   ENSG00000156273       ENST00000548219 ENSE00002371519
574   ENSG00000156273       ENST00000548219 ENSE00002367409
575   ENSG00000156273       ENST00000550131 ENSE00002367409
576   ENSG00000156273       ENST00000550131 ENSE00002344168
577   ENSG00000156273       ENST00000550131 ENSE00002371634
578   ENSG00000156273       ENST00000547141 ENSE00002367409
579   ENSG00000156273       ENST00000547141 ENSE00002344168
580   ENSG00000156273       ENST00000547141 ENSE00002417182
581   ENSG00000156273       ENST00000546469 ENSE00002367409
582   ENSG00000156273       ENST00000546469 ENSE00002344168
583   ENSG00000156273       ENST00000546469 ENSE00002425143
584   ENSG00000156273       ENST00000546469 ENSE00002363553
585   ENSG00000156273       ENST00000286800 ENSE00001376331
586   ENSG00000156273       ENST00000286800 ENSE00001025546
587   ENSG00000156273       ENST00000286800 ENSE00001025548
588   ENSG00000156273       ENST00000286800 ENSE00003204163
589   ENSG00000156273       ENST00000286800 ENSE00001192071
590   ENSG00000156273       ENST00000399921 ENSE00001025546
591   ENSG00000156273       ENST00000399921 ENSE00001025548
592   ENSG00000156273       ENST00000399921 ENSE00003204163
593   ENSG00000156273       ENST00000399921 ENSE00001192071
594   ENSG00000156273       ENST00000399921 ENSE00001540806
595   ENSG00000156273       ENST00000548467 ENSE00002367409
596   ENSG00000156273       ENST00000548467 ENSE00002357516
597   ENSG00000156273       ENST00000451655 ENSE00001025546
598   ENSG00000156273       ENST00000451655 ENSE00001661027
599   ENSG00000156273       ENST00000451655 ENSE00001705868
600   ENSG00000156273       ENST00000447177 ENSE00001025546
601   ENSG00000156273       ENST00000447177 ENSE00001797717
602   ENSG00000156273       ENST00000447177 ENSE00001643254
603   ENSG00000156273       ENST00000435072 ENSE00001025546
604   ENSG00000156273       ENST00000435072 ENSE00001649814
605   ENSG00000156273       ENST00000435072 ENSE00001728422
606   ENSG00000156273       ENST00000422809 ENSE00003204163
607   ENSG00000156273       ENST00000422809 ENSE00001644051
608   ENSG00000156273       ENST00000422809 ENSE00001662834
609   ENSG00000156273       ENST00000422809 ENSE00003499536
610   ENSG00000156273       ENST00000422809 ENSE00003586991
611   ENSG00000156273       ENST00000468059 ENSE00003204163
612   ENSG00000156273       ENST00000468059 ENSE00001890232
613   ENSG00000156273       ENST00000468059 ENSE00003567462
614   ENSG00000156273       ENST00000468059 ENSE00003583559
615   ENSG00000156273       ENST00000462262 ENSE00003542569
616   ENSG00000156273       ENST00000462262 ENSE00003621620
617   ENSG00000156273       ENST00000462262 ENSE00003530973
618   ENSG00000270116       ENST00000602568 ENSE00003455069
619   ENSG00000277991       ENST00000623374 ENSE00003759286
620   ENSG00000277991       ENST00000623374 ENSE00003758559
621   ENSG00000277991       ENST00000624633 ENSE00003758521
622   ENSG00000277991       ENST00000624633 ENSE00003756225
623   ENSG00000277991       ENST00000624633 ENSE00003756579
624   ENSG00000277991       ENST00000623190 ENSE00003751082
625   ENSG00000277991       ENST00000623190 ENSE00003759947
626   ENSG00000277991       ENST00000623637 ENSE00003757494
627   ENSG00000277991       ENST00000623637 ENSE00003757831
628   ENSG00000277991       ENST00000623783 ENSE00003756063
629   ENSG00000277991       ENST00000623783 ENSE00003756532
630   ENSG00000277991       ENST00000625005 ENSE00003756225
631   ENSG00000277991       ENST00000625005 ENSE00003759056
632   ENSG00000277991       ENST00000625005 ENSE00003758752
633   ENSG00000277991       ENST00000625005 ENSE00003756544
634   ENSG00000277991       ENST00000623797 ENSE00003756225
635   ENSG00000277991       ENST00000623797 ENSE00003758872
636   ENSG00000277991       ENST00000623797 ENSE00003759857
637   ENSG00000277991       ENST00000623643 ENSE00003756225
638   ENSG00000277991       ENST00000623643 ENSE00003757556
639   ENSG00000277991       ENST00000623643 ENSE00003755671
640   ENSG00000277739       ENST00000610460 ENSE00003746458
641   ENSG00000275664       ENST00000610482 ENSE00003750218
642   ENSG00000266133       ENST00000584048 ENSE00002722960
643   ENSG00000225043       ENST00000450007 ENSE00001666267
644   ENSG00000236384       ENST00000412102 ENSE00001757480
645   ENSG00000236384       ENST00000412102 ENSE00001630053
646   ENSG00000236384       ENST00000412102 ENSE00002070273
647   ENSG00000236384       ENST00000412102 ENSE00001746656
648   ENSG00000236384       ENST00000412102 ENSE00001723122
649   ENSG00000236384       ENST00000412102 ENSE00001789833
650   ENSG00000236384       ENST00000457881 ENSE00001723122
651   ENSG00000236384       ENST00000457881 ENSE00001601971
652   ENSG00000236384       ENST00000457881 ENSE00001615174
653   ENSG00000236384       ENST00000457881 ENSE00001747672
654   ENSG00000236384       ENST00000586552 ENSE00001630053
655   ENSG00000236384       ENST00000586552 ENSE00002887471
656   ENSG00000236384       ENST00000586552 ENSE00002878102
657   ENSG00000236384       ENST00000589300 ENSE00001630053
658   ENSG00000236384       ENST00000589300 ENSE00001746656
659   ENSG00000236384       ENST00000589300 ENSE00001723122
660   ENSG00000236384       ENST00000589300 ENSE00002887471
661   ENSG00000236384       ENST00000589300 ENSE00002910569
662   ENSG00000236384       ENST00000589300 ENSE00002906467
663   ENSG00000236384       ENST00000589300 ENSE00002966689
664   ENSG00000182912       ENST00000330490 ENSE00001327329
665   ENSG00000182912       ENST00000330490 ENSE00001310393
666   ENSG00000182912       ENST00000330490 ENSE00001623177
667   ENSG00000182912       ENST00000354333 ENSE00001841204
668   ENSG00000182912       ENST00000354333 ENSE00001701009
669   ENSG00000182912       ENST00000465978 ENSE00001887580
670   ENSG00000182912       ENST00000465978 ENSE00001948009
671   ENSG00000187766       ENST00000334662 ENSE00001332752
672   ENSG00000207098       ENST00000384370 ENSE00001808734
673   ENSG00000284550       ENST00000616627 ENSE00003733446
674   ENSG00000184787       ENST00000345496 ENSE00001810483
675   ENSG00000184787       ENST00000345496 ENSE00003461738
676   ENSG00000184787       ENST00000345496 ENSE00003545838
677   ENSG00000184787       ENST00000345496 ENSE00003513720
678   ENSG00000184787       ENST00000345496 ENSE00003611843
679   ENSG00000184787       ENST00000345496 ENSE00003540326
680   ENSG00000184787       ENST00000481546 ENSE00001872412
681   ENSG00000184787       ENST00000481546 ENSE00003471255
682   ENSG00000184787       ENST00000497630 ENSE00001872150
683   ENSG00000184787       ENST00000497630 ENSE00003508865
684   ENSG00000184787       ENST00000497630 ENSE00003551927
685   ENSG00000184787       ENST00000497630 ENSE00001887954
686   ENSG00000184787       ENST00000477954 ENSE00003508865
687   ENSG00000184787       ENST00000477954 ENSE00003551927
688   ENSG00000184787       ENST00000477954 ENSE00001814551
689   ENSG00000184787       ENST00000477954 ENSE00003526014
690   ENSG00000184787       ENST00000477954 ENSE00003530492
691   ENSG00000184787       ENST00000477954 ENSE00001944638
692   ENSG00000184787       ENST00000477954 ENSE00001884911
693   ENSG00000184787       ENST00000491513 ENSE00003461738
694   ENSG00000184787       ENST00000491513 ENSE00003545838
695   ENSG00000184787       ENST00000491513 ENSE00003508865
696   ENSG00000184787       ENST00000491513 ENSE00003551927
697   ENSG00000184787       ENST00000491513 ENSE00002216085
698   ENSG00000184787       ENST00000491513 ENSE00001929225
699   ENSG00000184787       ENST00000491513 ENSE00001915495
700   ENSG00000184787       ENST00000330942 ENSE00003513720
701   ENSG00000184787       ENST00000330942 ENSE00003611843
702   ENSG00000184787       ENST00000330942 ENSE00003526014
703   ENSG00000184787       ENST00000330942 ENSE00001853287
704   ENSG00000184787       ENST00000330942 ENSE00001336667
705   ENSG00000184787       ENST00000330942 ENSE00003549866
706   ENSG00000184787       ENST00000330942 ENSE00001859493
707   ENSG00000184787       ENST00000478200 ENSE00003461738
708   ENSG00000184787       ENST00000478200 ENSE00003545838
709   ENSG00000184787       ENST00000478200 ENSE00003513720
710   ENSG00000184787       ENST00000478200 ENSE00001835597
711   ENSG00000184787       ENST00000478200 ENSE00001876928
712   ENSG00000184787       ENST00000478200 ENSE00001932562
713   ENSG00000184787       ENST00000497664 ENSE00003508865
714   ENSG00000184787       ENST00000497664 ENSE00003526014
715   ENSG00000184787       ENST00000497664 ENSE00003530492
716   ENSG00000184787       ENST00000497664 ENSE00001814908
717   ENSG00000184787       ENST00000497664 ENSE00001943360
718   ENSG00000184787       ENST00000462569 ENSE00003526014
719   ENSG00000184787       ENST00000462569 ENSE00003530492
720   ENSG00000184787       ENST00000462569 ENSE00001816447
721   ENSG00000184787       ENST00000462569 ENSE00001946578
722   ENSG00000184787       ENST00000490450 ENSE00003526014
723   ENSG00000184787       ENST00000490450 ENSE00003530492
724   ENSG00000184787       ENST00000490450 ENSE00001336667
725   ENSG00000184787       ENST00000490450 ENSE00001816312
726   ENSG00000184787       ENST00000490450 ENSE00001840940
727   ENSG00000184787       ENST00000496395 ENSE00003526014
728   ENSG00000184787       ENST00000496395 ENSE00003530492
729   ENSG00000184787       ENST00000496395 ENSE00001895465
730   ENSG00000184787       ENST00000496395 ENSE00001882636
731   ENSG00000184787       ENST00000496395 ENSE00002260764
732   ENSG00000184787       ENST00000490091 ENSE00001931750
733   ENSG00000184787       ENST00000490091 ENSE00001908272
734   ENSG00000212935       ENST00000391620 ENSE00001509398
735   ENSG00000272804       ENST00000609664 ENSE00003707050
736   ENSG00000233754       ENST00000420273 ENSE00001656886
737   ENSG00000233754       ENST00000420273 ENSE00001724127
738   ENSG00000182240       ENST00000330333 ENSE00001304779
739   ENSG00000182240       ENST00000330333 ENSE00003469846
740   ENSG00000182240       ENST00000330333 ENSE00003645299
741   ENSG00000182240       ENST00000330333 ENSE00003571071
742   ENSG00000182240       ENST00000330333 ENSE00003499814
743   ENSG00000182240       ENST00000330333 ENSE00003680958
744   ENSG00000182240       ENST00000330333 ENSE00003650610
745   ENSG00000182240       ENST00000330333 ENSE00003625781
746   ENSG00000182240       ENST00000330333 ENSE00003637712
747   ENSG00000182240       ENST00000328735 ENSE00001304779
748   ENSG00000182240       ENST00000328735 ENSE00003469846
749   ENSG00000182240       ENST00000328735 ENSE00003645299
750   ENSG00000182240       ENST00000328735 ENSE00003571071
751   ENSG00000182240       ENST00000328735 ENSE00003499814
752   ENSG00000182240       ENST00000328735 ENSE00003680958
753   ENSG00000182240       ENST00000328735 ENSE00003650610
754   ENSG00000182240       ENST00000328735 ENSE00003625685
755   ENSG00000182240       ENST00000347667 ENSE00001304779
756   ENSG00000182240       ENST00000347667 ENSE00003469846
757   ENSG00000182240       ENST00000347667 ENSE00003645299
758   ENSG00000182240       ENST00000347667 ENSE00003571071
759   ENSG00000182240       ENST00000347667 ENSE00003499814
760   ENSG00000182240       ENST00000347667 ENSE00003680958
761   ENSG00000182240       ENST00000347667 ENSE00003625781
762   ENSG00000182240       ENST00000347667 ENSE00003704949
763   ENSG00000182240       ENST00000470864 ENSE00001817363
764   ENSG00000182240       ENST00000470864 ENSE00003544662
765   ENSG00000182240       ENST00000470864 ENSE00003610690
766   ENSG00000182240       ENST00000470864 ENSE00001861522
767   ENSG00000182240       ENST00000487994 ENSE00003544662
768   ENSG00000182240       ENST00000487994 ENSE00003610690
769   ENSG00000182240       ENST00000487994 ENSE00001845787
770   ENSG00000182240       ENST00000487994 ENSE00003463382
771   ENSG00000182240       ENST00000487994 ENSE00003554135
772   ENSG00000182240       ENST00000487994 ENSE00003491406
773   ENSG00000182240       ENST00000487994 ENSE00003542620
774   ENSG00000182240       ENST00000487994 ENSE00002455890
775   ENSG00000182240       ENST00000491838 ENSE00003610690
776   ENSG00000182240       ENST00000491838 ENSE00003463382
777   ENSG00000182240       ENST00000491838 ENSE00001838045
778   ENSG00000182240       ENST00000491838 ENSE00003506120
779   ENSG00000182240       ENST00000491838 ENSE00001831325
780   ENSG00000182240       ENST00000466122 ENSE00003610690
781   ENSG00000182240       ENST00000466122 ENSE00003463382
782   ENSG00000182240       ENST00000466122 ENSE00003554135
783   ENSG00000182240       ENST00000466122 ENSE00003491406
784   ENSG00000182240       ENST00000466122 ENSE00003542620
785   ENSG00000182240       ENST00000466122 ENSE00003506120
786   ENSG00000182240       ENST00000466122 ENSE00001833992
787   ENSG00000182240       ENST00000466122 ENSE00003634739
788   ENSG00000182240       ENST00000465326 ENSE00003610690
789   ENSG00000182240       ENST00000465326 ENSE00003463382
790   ENSG00000182240       ENST00000465326 ENSE00003554135
791   ENSG00000182240       ENST00000465326 ENSE00003491406
792   ENSG00000182240       ENST00000465326 ENSE00003542620
793   ENSG00000182240       ENST00000465326 ENSE00003506120
794   ENSG00000182240       ENST00000465326 ENSE00001850438
795   ENSG00000182240       ENST00000463674 ENSE00003463382
796   ENSG00000182240       ENST00000463674 ENSE00003554135
797   ENSG00000182240       ENST00000463674 ENSE00003491406
798   ENSG00000182240       ENST00000463674 ENSE00003542620
799   ENSG00000182240       ENST00000463674 ENSE00001893797
800   ENSG00000182240       ENST00000463674 ENSE00001953820
801   ENSG00000182240       ENST00000475618 ENSE00003542620
802   ENSG00000182240       ENST00000475618 ENSE00001930291
803   ENSG00000226496       ENST00000441268 ENSE00001756775
804   ENSG00000226496       ENST00000441268 ENSE00001805493
805   ENSG00000226496       ENST00000435493 ENSE00001658161
806   ENSG00000226496       ENST00000435493 ENSE00001754320
807   ENSG00000226496       ENST00000446910 ENSE00001730495
808   ENSG00000226496       ENST00000446910 ENSE00001779579
809   ENSG00000226496       ENST00000446910 ENSE00001594800
810   ENSG00000230859       ENST00000456507 ENSE00001729497
811   ENSG00000207476       ENST00000384745 ENSE00001807519
812   ENSG00000277671       ENST00000618423 ENSE00003724872
813   ENSG00000273027       ENST00000609461 ENSE00003708573
814   ENSG00000183421       ENST00000332512 ENSE00002730798
815   ENSG00000183421       ENST00000332512 ENSE00003507261
816   ENSG00000183421       ENST00000332512 ENSE00002506003
817   ENSG00000183421       ENST00000332512 ENSE00002514017
818   ENSG00000183421       ENST00000332512 ENSE00002459022
819   ENSG00000183421       ENST00000332512 ENSE00001314637
820   ENSG00000183421       ENST00000332512 ENSE00001293079
821   ENSG00000183421       ENST00000332512 ENSE00001813443
822   ENSG00000183421       ENST00000352483 ENSE00003507261
823   ENSG00000183421       ENST00000352483 ENSE00002506003
824   ENSG00000183421       ENST00000352483 ENSE00002514017
825   ENSG00000183421       ENST00000352483 ENSE00002459022
826   ENSG00000183421       ENST00000352483 ENSE00001293079
827   ENSG00000183421       ENST00000352483 ENSE00001813443
828   ENSG00000183421       ENST00000352483 ENSE00003712753
829   ENSG00000183421       ENST00000352483 ENSE00001312280
830   ENSG00000183421       ENST00000352483 ENSE00001290290
831   ENSG00000184012       ENST00000332149 ENSE00001881208
832   ENSG00000184012       ENST00000332149 ENSE00003502036
833   ENSG00000184012       ENST00000332149 ENSE00003788834
834   ENSG00000184012       ENST00000332149 ENSE00003500399
835   ENSG00000184012       ENST00000332149 ENSE00001308618
836   ENSG00000184012       ENST00000332149 ENSE00001328752
837   ENSG00000184012       ENST00000332149 ENSE00001296879
838   ENSG00000184012       ENST00000332149 ENSE00001319118
839   ENSG00000184012       ENST00000332149 ENSE00001291248
840   ENSG00000184012       ENST00000332149 ENSE00001310536
841   ENSG00000184012       ENST00000332149 ENSE00001309041
842   ENSG00000184012       ENST00000332149 ENSE00001324661
843   ENSG00000184012       ENST00000332149 ENSE00003786558
844   ENSG00000184012       ENST00000332149 ENSE00001919654
845   ENSG00000184012       ENST00000488556 ENSE00001893309
846   ENSG00000184012       ENST00000488556 ENSE00001872432
847   ENSG00000184012       ENST00000458356 ENSE00003502036
848   ENSG00000184012       ENST00000458356 ENSE00003788834
849   ENSG00000184012       ENST00000458356 ENSE00003500399
850   ENSG00000184012       ENST00000458356 ENSE00001308618
851   ENSG00000184012       ENST00000458356 ENSE00001328752
852   ENSG00000184012       ENST00000458356 ENSE00001296879
853   ENSG00000184012       ENST00000458356 ENSE00001319118
854   ENSG00000184012       ENST00000458356 ENSE00001291248
855   ENSG00000184012       ENST00000458356 ENSE00001310536
856   ENSG00000184012       ENST00000458356 ENSE00001309041
857   ENSG00000184012       ENST00000458356 ENSE00001324661
858   ENSG00000184012       ENST00000458356 ENSE00003786558
859   ENSG00000184012       ENST00000458356 ENSE00001710402
860   ENSG00000184012       ENST00000458356 ENSE00001651579
861   ENSG00000184012       ENST00000454499 ENSE00003502036
862   ENSG00000184012       ENST00000454499 ENSE00003788834
863   ENSG00000184012       ENST00000454499 ENSE00003500399
864   ENSG00000184012       ENST00000454499 ENSE00001308618
865   ENSG00000184012       ENST00000454499 ENSE00001328752
866   ENSG00000184012       ENST00000454499 ENSE00001296879
867   ENSG00000184012       ENST00000454499 ENSE00001319118
868   ENSG00000184012       ENST00000454499 ENSE00001291248
869   ENSG00000184012       ENST00000454499 ENSE00001310536
870   ENSG00000184012       ENST00000454499 ENSE00001309041
871   ENSG00000184012       ENST00000454499 ENSE00001324661
872   ENSG00000184012       ENST00000454499 ENSE00003786558
873   ENSG00000184012       ENST00000454499 ENSE00001620762
874   ENSG00000184012       ENST00000454499 ENSE00001620678
875   ENSG00000184012       ENST00000469395 ENSE00001909048
876   ENSG00000184012       ENST00000469395 ENSE00001950249
877   ENSG00000184012       ENST00000424093 ENSE00003502036
878   ENSG00000184012       ENST00000424093 ENSE00003788834
879   ENSG00000184012       ENST00000424093 ENSE00003500399
880   ENSG00000184012       ENST00000424093 ENSE00001328752
881   ENSG00000184012       ENST00000424093 ENSE00001296879
882   ENSG00000184012       ENST00000424093 ENSE00001319118
883   ENSG00000184012       ENST00000424093 ENSE00002442487
884   ENSG00000184012       ENST00000424093 ENSE00001665763
885   ENSG00000184012       ENST00000497881 ENSE00001296629
886   ENSG00000184012       ENST00000497881 ENSE00003609166
887   ENSG00000184012       ENST00000497881 ENSE00001846183
888   ENSG00000184012       ENST00000463138 ENSE00003609166
889   ENSG00000184012       ENST00000463138 ENSE00001876229
890   ENSG00000184012       ENST00000463138 ENSE00003467838
891   ENSG00000184012       ENST00000463138 ENSE00001843326
892   ENSG00000184012       ENST00000455813 ENSE00003502036
893   ENSG00000184012       ENST00000455813 ENSE00003788834
894   ENSG00000184012       ENST00000455813 ENSE00001686361
895   ENSG00000184012       ENST00000489201 ENSE00001838338
896   ENSG00000184012       ENST00000489201 ENSE00001948395
897   ENSG00000184012       ENST00000398585 ENSE00003788834
898   ENSG00000184012       ENST00000398585 ENSE00003500399
899   ENSG00000184012       ENST00000398585 ENSE00001308618
900   ENSG00000184012       ENST00000398585 ENSE00001328752
901   ENSG00000184012       ENST00000398585 ENSE00001296879
902   ENSG00000184012       ENST00000398585 ENSE00001319118
903   ENSG00000184012       ENST00000398585 ENSE00001291248
904   ENSG00000184012       ENST00000398585 ENSE00001310536
905   ENSG00000184012       ENST00000398585 ENSE00001309041
906   ENSG00000184012       ENST00000398585 ENSE00001324661
907   ENSG00000184012       ENST00000398585 ENSE00003786558
908   ENSG00000184012       ENST00000398585 ENSE00001894632
909   ENSG00000184012       ENST00000398585 ENSE00003523611
910   ENSG00000184012       ENST00000398585 ENSE00001485252
911   ENSG00000184900       ENST00000397898 ENSE00001530662
912   ENSG00000184900       ENST00000397898 ENSE00003489741
913   ENSG00000184900       ENST00000397898 ENSE00001530648
914   ENSG00000184900       ENST00000397898 ENSE00003479904
915   ENSG00000184900       ENST00000332859 ENSE00003489741
916   ENSG00000184900       ENST00000332859 ENSE00001315520
917   ENSG00000184900       ENST00000332859 ENSE00003660434
918   ENSG00000184900       ENST00000332859 ENSE00003627960
919   ENSG00000184900       ENST00000479153 ENSE00001845480
920   ENSG00000184900       ENST00000479153 ENSE00003543157
921   ENSG00000184900       ENST00000479153 ENSE00003558790
922   ENSG00000184900       ENST00000479153 ENSE00003536698
923   ENSG00000184900       ENST00000397893 ENSE00003489741
924   ENSG00000184900       ENST00000397893 ENSE00003660434
925   ENSG00000184900       ENST00000397893 ENSE00001956379
926   ENSG00000184900       ENST00000397893 ENSE00001530624
927   ENSG00000184900       ENST00000466861 ENSE00001924051
928   ENSG00000184900       ENST00000466861 ENSE00001844436
929   ENSG00000184900       ENST00000411651 ENSE00001315520
930   ENSG00000184900       ENST00000411651 ENSE00003660434
931   ENSG00000184900       ENST00000411651 ENSE00003627960
932   ENSG00000184900       ENST00000411651 ENSE00001636287
933   ENSG00000278618       ENST00000621412 ENSE00003716433
934   ENSG00000275469       ENST00000619419 ENSE00003741747
935   ENSG00000275950       ENST00000616420 ENSE00003733866
936   ENSG00000212136       ENST00000390834 ENSE00001508618
937   ENSG00000212564       ENST00000391262 ENSE00001808578
938   ENSG00000243489       ENST00000334670 ENSE00001433049
939   ENSG00000276647       ENST00000617417 ENSE00003754561
940   ENSG00000235123       ENST00000444046 ENSE00001615334
941   ENSG00000235123       ENST00000444046 ENSE00001795643
942   ENSG00000235123       ENST00000455354 ENSE00001795643
943   ENSG00000235123       ENST00000455354 ENSE00001661261
944   ENSG00000235123       ENST00000422749 ENSE00001795643
945   ENSG00000235123       ENST00000422749 ENSE00001684754
946   ENSG00000235123       ENST00000422749 ENSE00001602383
947   ENSG00000235123       ENST00000427451 ENSE00001615334
948   ENSG00000235123       ENST00000427451 ENSE00001666308
949   ENSG00000235123       ENST00000427451 ENSE00001795643
950   ENSG00000275692       ENST00000617390 ENSE00003749461
951   ENSG00000251972       ENST00000516163 ENSE00002088440
952   ENSG00000223262       ENST00000411330 ENSE00001591148
953   ENSG00000212609       ENST00000391307 ENSE00001509091
954   ENSG00000275708       ENST00000615959 ENSE00003739698
955   ENSG00000275496       ENST00000621924 ENSE00003755171
956   ENSG00000275496       ENST00000621924 ENSE00003757852
957   ENSG00000275496       ENST00000621924 ENSE00003737671
958   ENSG00000275496       ENST00000621924 ENSE00003742977
959   ENSG00000275496       ENST00000617746 ENSE00003737671
960   ENSG00000275496       ENST00000617746 ENSE00003748268
961   ENSG00000275496       ENST00000617746 ENSE00003755479
962   ENSG00000275496       ENST00000624446 ENSE00003760365
963   ENSG00000275496       ENST00000624446 ENSE00003756748
964   ENSG00000275496       ENST00000623405 ENSE00003758844
965   ENSG00000275496       ENST00000623405 ENSE00003759109
966   ENSG00000275496       ENST00000623405 ENSE00003755640
967   ENSG00000275496       ENST00000623575 ENSE00003737671
968   ENSG00000275496       ENST00000623575 ENSE00003758900
969   ENSG00000275496       ENST00000623575 ENSE00003758450
970   ENSG00000275496       ENST00000623506 ENSE00003737671
971   ENSG00000275496       ENST00000623506 ENSE00003759109
972   ENSG00000275496       ENST00000623506 ENSE00003756171
973   ENSG00000275496       ENST00000623506 ENSE00003757693
974   ENSG00000275496       ENST00000619488 ENSE00003725671
975   ENSG00000275496       ENST00000619488 ENSE00003721031
976   ENSG00000279064       ENST00000623723 ENSE00003758212
977   ENSG00000279064       ENST00000623723 ENSE00003756092
978   ENSG00000160221       ENST00000291577 ENSE00001822596
979   ENSG00000160221       ENST00000291577 ENSE00003673943
980   ENSG00000160221       ENST00000291577 ENSE00003570914
981   ENSG00000160221       ENST00000291577 ENSE00003619394
982   ENSG00000160221       ENST00000291577 ENSE00003482790
983   ENSG00000160221       ENST00000291577 ENSE00003667692
984   ENSG00000160221       ENST00000291577 ENSE00001506660
985   ENSG00000160221       ENST00000495007 ENSE00001849368
986   ENSG00000160221       ENST00000495007 ENSE00003580779
987   ENSG00000160221       ENST00000495007 ENSE00003672906
988   ENSG00000160221       ENST00000495007 ENSE00003665668
989   ENSG00000160221       ENST00000495007 ENSE00003676797
990   ENSG00000160221       ENST00000495007 ENSE00001853546
991   ENSG00000160221       ENST00000427803 ENSE00003673943
992   ENSG00000160221       ENST00000427803 ENSE00003570914
993   ENSG00000160221       ENST00000427803 ENSE00003619394
994   ENSG00000160221       ENST00000427803 ENSE00003482790
995   ENSG00000160221       ENST00000427803 ENSE00001876352
996   ENSG00000160221       ENST00000427803 ENSE00001613924
997   ENSG00000160221       ENST00000493883 ENSE00003580779
998   ENSG00000160221       ENST00000493883 ENSE00003672906
999   ENSG00000160221       ENST00000493883 ENSE00003665668
1000  ENSG00000160221       ENST00000493883 ENSE00001845946
1001  ENSG00000160221       ENST00000493883 ENSE00003474302
1002  ENSG00000160221       ENST00000480786 ENSE00003580779
1003  ENSG00000160221       ENST00000480786 ENSE00003672906
1004  ENSG00000160221       ENST00000480786 ENSE00001937614
1005  ENSG00000160221       ENST00000480786 ENSE00003566481
1006  ENSG00000160221       ENST00000480786 ENSE00001882951
1007  ENSG00000160221       ENST00000348499 ENSE00003673943
1008  ENSG00000160221       ENST00000348499 ENSE00003570914
1009  ENSG00000160221       ENST00000348499 ENSE00003619394
1010  ENSG00000160221       ENST00000348499 ENSE00003667692
1011  ENSG00000160221       ENST00000348499 ENSE00001506660
1012  ENSG00000160221       ENST00000348499 ENSE00001857588
1013  ENSG00000160221       ENST00000389690 ENSE00003673943
1014  ENSG00000160221       ENST00000389690 ENSE00003570914
1015  ENSG00000160221       ENST00000389690 ENSE00003619394
1016  ENSG00000160221       ENST00000389690 ENSE00003482790
1017  ENSG00000160221       ENST00000389690 ENSE00001603625
1018  ENSG00000160221       ENST00000389690 ENSE00003626079
1019  ENSG00000160221       ENST00000449622 ENSE00003673943
1020  ENSG00000160221       ENST00000449622 ENSE00003570914
1021  ENSG00000160221       ENST00000449622 ENSE00003482790
1022  ENSG00000160221       ENST00000449622 ENSE00003667692
1023  ENSG00000160221       ENST00000449622 ENSE00001506660
1024  ENSG00000160221       ENST00000449622 ENSE00001612727
1025  ENSG00000160221       ENST00000449622 ENSE00001804088
1026  ENSG00000160221       ENST00000488392 ENSE00001953904
1027  ENSG00000160221       ENST00000488392 ENSE00001927142
1028  ENSG00000160221       ENST00000419699 ENSE00003619394
1029  ENSG00000160221       ENST00000419699 ENSE00003482790
1030  ENSG00000160221       ENST00000419699 ENSE00003667692
1031  ENSG00000160221       ENST00000419699 ENSE00001754071
1032  ENSG00000160221       ENST00000419699 ENSE00001638299
1033  ENSG00000160221       ENST00000419699 ENSE00001675777
1034  ENSG00000160221       ENST00000470545 ENSE00001828535
1035  ENSG00000160221       ENST00000470545 ENSE00001901011
1036  ENSG00000159228       ENST00000466328 ENSE00003566185
1037  ENSG00000159228       ENST00000466328 ENSE00003559746
1038  ENSG00000159228       ENST00000466328 ENSE00002154026
1039  ENSG00000159228       ENST00000530908 ENSE00003512897
1040  ENSG00000159228       ENST00000530908 ENSE00003643969
1041  ENSG00000159228       ENST00000530908 ENSE00001734805
1042  ENSG00000159228       ENST00000290349 ENSE00003512897
1043  ENSG00000159228       ENST00000290349 ENSE00003643969
1044  ENSG00000159228       ENST00000290349 ENSE00001044162
1045  ENSG00000159228       ENST00000439427 ENSE00001919847
1046  ENSG00000159228       ENST00000439427 ENSE00002152862
1047  ENSG00000159228       ENST00000399191 ENSE00003643969
1048  ENSG00000159228       ENST00000399191 ENSE00001891664
1049  ENSG00000159228       ENST00000399191 ENSE00001536887
1050  ENSG00000224421       ENST00000444161 ENSE00001758681
1051  ENSG00000142197       ENST00000270190 ENSE00001709988
1052  ENSG00000142197       ENST00000270190 ENSE00001044194
1053  ENSG00000142197       ENST00000270190 ENSE00001044279
1054  ENSG00000142197       ENST00000270190 ENSE00001599264
1055  ENSG00000142197       ENST00000399151 ENSE00001044194
1056  ENSG00000142197       ENST00000399151 ENSE00001044279
1057  ENSG00000142197       ENST00000399151 ENSE00001536697
1058  ENSG00000142197       ENST00000399151 ENSE00001044238
1059  ENSG00000142197       ENST00000399151 ENSE00003641468
1060  ENSG00000142197       ENST00000399151 ENSE00003500617
1061  ENSG00000142197       ENST00000399151 ENSE00001044233
1062  ENSG00000142197       ENST00000399151 ENSE00001044212
1063  ENSG00000142197       ENST00000399151 ENSE00001044187
1064  ENSG00000142197       ENST00000399151 ENSE00000952867
1065  ENSG00000142197       ENST00000399151 ENSE00000952868
1066  ENSG00000142197       ENST00000399151 ENSE00000952869
1067  ENSG00000142197       ENST00000399151 ENSE00000952870
1068  ENSG00000142197       ENST00000399151 ENSE00000952871
1069  ENSG00000142197       ENST00000399151 ENSE00000952872
1070  ENSG00000142197       ENST00000399151 ENSE00000952873
1071  ENSG00000142197       ENST00000399151 ENSE00000952874
1072  ENSG00000142197       ENST00000399151 ENSE00000952875
1073  ENSG00000142197       ENST00000399151 ENSE00001044199
1074  ENSG00000142197       ENST00000399151 ENSE00003664197
1075  ENSG00000142197       ENST00000399151 ENSE00003504893
1076  ENSG00000142197       ENST00000399151 ENSE00003649664
1077  ENSG00000142197       ENST00000399151 ENSE00003464096
1078  ENSG00000142197       ENST00000399151 ENSE00001044228
1079  ENSG00000142197       ENST00000399151 ENSE00001044202
1080  ENSG00000142197       ENST00000399151 ENSE00001044179
1081  ENSG00000142197       ENST00000399151 ENSE00001238145
1082  ENSG00000142197       ENST00000399151 ENSE00001044224
1083  ENSG00000142197       ENST00000399151 ENSE00001044263
1084  ENSG00000142197       ENST00000399151 ENSE00001044258
1085  ENSG00000142197       ENST00000399151 ENSE00001044208
1086  ENSG00000142197       ENST00000399151 ENSE00001044198
1087  ENSG00000142197       ENST00000399151 ENSE00001044241
1088  ENSG00000142197       ENST00000399151 ENSE00001044254
1089  ENSG00000142197       ENST00000399151 ENSE00001044242
1090  ENSG00000142197       ENST00000399151 ENSE00001044260
1091  ENSG00000142197       ENST00000399151 ENSE00001238304
1092  ENSG00000142197       ENST00000492760 ENSE00001935111
1093  ENSG00000142197       ENST00000492760 ENSE00003535798
1094  ENSG00000142197       ENST00000492760 ENSE00003617926
1095  ENSG00000142197       ENST00000492760 ENSE00001862064
1096  ENSG00000142197       ENST00000463668 ENSE00001819883
1097  ENSG00000142197       ENST00000463668 ENSE00003645318
1098  ENSG00000142197       ENST00000463668 ENSE00003580486
1099  ENSG00000142197       ENST00000463668 ENSE00003476245
1100  ENSG00000142197       ENST00000463668 ENSE00003570770
1101  ENSG00000142197       ENST00000463668 ENSE00001954890
1102  ENSG00000159212       ENST00000360731 ENSE00001635328
1103  ENSG00000159212       ENST00000360731 ENSE00001487601
1104  ENSG00000159212       ENST00000360731 ENSE00002449170
1105  ENSG00000159212       ENST00000360731 ENSE00001044048
1106  ENSG00000159212       ENST00000360731 ENSE00001044021
1107  ENSG00000159212       ENST00000360731 ENSE00001044034
1108  ENSG00000159212       ENST00000360731 ENSE00001325100
1109  ENSG00000159212       ENST00000349499 ENSE00001635328
1110  ENSG00000159212       ENST00000349499 ENSE00002449170
1111  ENSG00000159212       ENST00000349499 ENSE00001044048
1112  ENSG00000159212       ENST00000349499 ENSE00001044021
1113  ENSG00000159212       ENST00000349499 ENSE00001044034
1114  ENSG00000159212       ENST00000349499 ENSE00001325100
1115  ENSG00000155304       ENST00000285667 ENSE00001020226
1116  ENSG00000155304       ENST00000285667 ENSE00003608679
1117  ENSG00000155304       ENST00000285667 ENSE00001020231
1118  ENSG00000155304       ENST00000285667 ENSE00003578743
1119  ENSG00000155304       ENST00000285667 ENSE00001280391
1120  ENSG00000155304       ENST00000478035 ENSE00001847212
1121  ENSG00000155304       ENST00000478035 ENSE00003691864
1122  ENSG00000155304       ENST00000478035 ENSE00001890168
1123  ENSG00000228798       ENST00000413645 ENSE00001665029
1124  ENSG00000228798       ENST00000413645 ENSE00001597851
1125  ENSG00000228798       ENST00000438762 ENSE00001804332
1126  ENSG00000228798       ENST00000438762 ENSE00001712871
1127  ENSG00000270093       ENST00000602659 ENSE00003298469
1128  ENSG00000237735       ENST00000444868 ENSE00001602968
1129  ENSG00000237735       ENST00000444868 ENSE00001745431
1130  ENSG00000237735       ENST00000444868 ENSE00001776707
1131  ENSG00000159197       ENST00000290310 ENSE00001043935
1132  ENSG00000159197       ENST00000290310 ENSE00001043939
1133  ENSG00000160216       ENST00000291572 ENSE00001950544
1134  ENSG00000160216       ENST00000291572 ENSE00001137610
1135  ENSG00000160216       ENST00000291572 ENSE00001414183
1136  ENSG00000160216       ENST00000291572 ENSE00003532414
1137  ENSG00000160216       ENST00000291572 ENSE00003635589
1138  ENSG00000160216       ENST00000291572 ENSE00003620755
1139  ENSG00000160216       ENST00000291572 ENSE00003790142
1140  ENSG00000160216       ENST00000291572 ENSE00003500378
1141  ENSG00000160216       ENST00000291572 ENSE00003671315
1142  ENSG00000160216       ENST00000291572 ENSE00001420549
1143  ENSG00000160216       ENST00000474735 ENSE00001892144
1144  ENSG00000160216       ENST00000474735 ENSE00001896051
1145  ENSG00000160216       ENST00000474735 ENSE00001946709
1146  ENSG00000160216       ENST00000474735 ENSE00001957413
1147  ENSG00000160216       ENST00000448287 ENSE00001137610
1148  ENSG00000160216       ENST00000448287 ENSE00001414183
1149  ENSG00000160216       ENST00000448287 ENSE00001769988
1150  ENSG00000160216       ENST00000448287 ENSE00001753604
1151  ENSG00000160216       ENST00000398061 ENSE00001137610
1152  ENSG00000160216       ENST00000398061 ENSE00001414183
1153  ENSG00000160216       ENST00000398061 ENSE00003532414
1154  ENSG00000160216       ENST00000398061 ENSE00003635589
1155  ENSG00000160216       ENST00000398061 ENSE00003620755
1156  ENSG00000160216       ENST00000398061 ENSE00003790142
1157  ENSG00000160216       ENST00000398061 ENSE00003500378
1158  ENSG00000160216       ENST00000398061 ENSE00003671315
1159  ENSG00000160216       ENST00000398061 ENSE00001531383
1160  ENSG00000160216       ENST00000398061 ENSE00001321560
1161  ENSG00000160216       ENST00000327505 ENSE00001414183
1162  ENSG00000160216       ENST00000327505 ENSE00003532414
1163  ENSG00000160216       ENST00000327505 ENSE00003635589
1164  ENSG00000160216       ENST00000327505 ENSE00003620755
1165  ENSG00000160216       ENST00000327505 ENSE00003790142
1166  ENSG00000160216       ENST00000327505 ENSE00003500378
1167  ENSG00000160216       ENST00000327505 ENSE00003671315
1168  ENSG00000160216       ENST00000327505 ENSE00001321560
1169  ENSG00000160216       ENST00000327505 ENSE00001531366
1170  ENSG00000160216       ENST00000445582 ENSE00001414183
1171  ENSG00000160216       ENST00000445582 ENSE00003532414
1172  ENSG00000160216       ENST00000445582 ENSE00001793970
1173  ENSG00000160216       ENST00000445582 ENSE00001768657
1174  ENSG00000160216       ENST00000398063 ENSE00001414183
1175  ENSG00000160216       ENST00000398063 ENSE00003532414
1176  ENSG00000160216       ENST00000398063 ENSE00003635589
1177  ENSG00000160216       ENST00000398063 ENSE00003620755
1178  ENSG00000160216       ENST00000398063 ENSE00003790142
1179  ENSG00000160216       ENST00000398063 ENSE00003500378
1180  ENSG00000160216       ENST00000398063 ENSE00003671315
1181  ENSG00000160216       ENST00000398063 ENSE00001420549
1182  ENSG00000160216       ENST00000398063 ENSE00001531391
1183  ENSG00000160216       ENST00000398058 ENSE00001414183
1184  ENSG00000160216       ENST00000398058 ENSE00003532414
1185  ENSG00000160216       ENST00000398058 ENSE00003635589
1186  ENSG00000160216       ENST00000398058 ENSE00003620755
1187  ENSG00000160216       ENST00000398058 ENSE00003790142
1188  ENSG00000160216       ENST00000398058 ENSE00003500378
1189  ENSG00000160216       ENST00000398058 ENSE00003671315
1190  ENSG00000160216       ENST00000398058 ENSE00001321560
1191  ENSG00000160216       ENST00000398058 ENSE00001531361
1192  ENSG00000160216       ENST00000398058 ENSE00001531359
1193  ENSG00000160216       ENST00000398058 ENSE00001531358
1194  ENSG00000160216       ENST00000457068 ENSE00001414183
1195  ENSG00000160216       ENST00000457068 ENSE00003532414
1196  ENSG00000160216       ENST00000457068 ENSE00003635589
1197  ENSG00000160216       ENST00000457068 ENSE00003620755
1198  ENSG00000160216       ENST00000457068 ENSE00003790142
1199  ENSG00000160216       ENST00000457068 ENSE00001641882
1200  ENSG00000160216       ENST00000448845 ENSE00001600918
1201  ENSG00000160216       ENST00000448845 ENSE00001619416
1202  ENSG00000160216       ENST00000448845 ENSE00001599763
1203  ENSG00000160216       ENST00000498670 ENSE00001931929
1204  ENSG00000160216       ENST00000498670 ENSE00001864296
1205  ENSG00000160216       ENST00000498670 ENSE00001842203
1206  ENSG00000160216       ENST00000422850 ENSE00001414183
1207  ENSG00000160216       ENST00000422850 ENSE00003532414
1208  ENSG00000160216       ENST00000422850 ENSE00003635589
1209  ENSG00000160216       ENST00000422850 ENSE00003620755
1210  ENSG00000160216       ENST00000422850 ENSE00003790142
1211  ENSG00000160216       ENST00000422850 ENSE00001653194
1212  ENSG00000160216       ENST00000497909 ENSE00001926499
1213  ENSG00000160216       ENST00000497909 ENSE00001910758
1214  ENSG00000160216       ENST00000479117 ENSE00001874093
1215  ENSG00000160216       ENST00000479117 ENSE00001925147
1216  ENSG00000160216       ENST00000479117 ENSE00003631068
1217  ENSG00000160216       ENST00000479117 ENSE00003645537
1218  ENSG00000160216       ENST00000479117 ENSE00003636375
1219  ENSG00000160216       ENST00000479117 ENSE00003670715
1220  ENSG00000160216       ENST00000479117 ENSE00003599240
1221  ENSG00000160216       ENST00000479117 ENSE00003557357
1222  ENSG00000160216       ENST00000479117 ENSE00001928991
1223  ENSG00000160216       ENST00000481319 ENSE00001925147
1224  ENSG00000160216       ENST00000481319 ENSE00001838730
1225  ENSG00000160216       ENST00000481319 ENSE00001838240
1226  ENSG00000160216       ENST00000481319 ENSE00001833458
1227  ENSG00000160216       ENST00000467358 ENSE00003645537
1228  ENSG00000160216       ENST00000467358 ENSE00003636375
1229  ENSG00000160216       ENST00000467358 ENSE00003670715
1230  ENSG00000160216       ENST00000467358 ENSE00003599240
1231  ENSG00000160216       ENST00000467358 ENSE00003557357
1232  ENSG00000160216       ENST00000467358 ENSE00001848324
1233  ENSG00000160216       ENST00000467358 ENSE00001869981
1234  ENSG00000160216       ENST00000484865 ENSE00003599240
1235  ENSG00000160216       ENST00000484865 ENSE00001932028
1236  ENSG00000160216       ENST00000484865 ENSE00001896463
1237  ENSG00000160216       ENST00000546158 ENSE00001414183
1238  ENSG00000160216       ENST00000546158 ENSE00003532414
1239  ENSG00000160216       ENST00000546158 ENSE00003635589
1240  ENSG00000160216       ENST00000546158 ENSE00003620755
1241  ENSG00000160216       ENST00000546158 ENSE00003790142
1242  ENSG00000160216       ENST00000546158 ENSE00003500378
1243  ENSG00000160216       ENST00000546158 ENSE00003671315
1244  ENSG00000160216       ENST00000546158 ENSE00002217841
1245  ENSG00000160216       ENST00000546158 ENSE00002251004
1246  ENSG00000225555       ENST00000440403 ENSE00001655354
1247  ENSG00000225555       ENST00000440403 ENSE00001790510
1248  ENSG00000274248       ENST00000621707 ENSE00003725750
1249  ENSG00000222018       ENST00000410005 ENSE00001579649
1250  ENSG00000205670       ENST00000481710 ENSE00001556393
1251  ENSG00000205670       ENST00000481710 ENSE00003482155
1252  ENSG00000205670       ENST00000481710 ENSE00003551852
1253  ENSG00000205670       ENST00000481710 ENSE00003543986
1254  ENSG00000205670       ENST00000481710 ENSE00003609660
1255  ENSG00000205670       ENST00000399292 ENSE00001487632
1256  ENSG00000205670       ENST00000399292 ENSE00003674919
1257  ENSG00000205670       ENST00000399292 ENSE00003525225
1258  ENSG00000205670       ENST00000399292 ENSE00001537374
1259  ENSG00000205670       ENST00000399299 ENSE00001487632
1260  ENSG00000205670       ENST00000399299 ENSE00003674919
1261  ENSG00000205670       ENST00000399299 ENSE00003644005
1262  ENSG00000205670       ENST00000399299 ENSE00003581207
1263  ENSG00000205670       ENST00000489469 ENSE00003482155
1264  ENSG00000205670       ENST00000489469 ENSE00003551852
1265  ENSG00000205670       ENST00000489469 ENSE00001879241
1266  ENSG00000205670       ENST00000489469 ENSE00001945592
1267  ENSG00000205670       ENST00000495363 ENSE00003482155
1268  ENSG00000205670       ENST00000495363 ENSE00003551852
1269  ENSG00000205670       ENST00000495363 ENSE00003543986
1270  ENSG00000205670       ENST00000495363 ENSE00002445885
1271  ENSG00000205670       ENST00000495363 ENSE00001901127
1272  ENSG00000205670       ENST00000495363 ENSE00001845984
1273  ENSG00000205670       ENST00000474455 ENSE00003482155
1274  ENSG00000205670       ENST00000474455 ENSE00001856243
1275  ENSG00000205670       ENST00000474455 ENSE00001937886
1276  ENSG00000205670       ENST00000399295 ENSE00003674919
1277  ENSG00000205670       ENST00000399295 ENSE00003525225
1278  ENSG00000205670       ENST00000399295 ENSE00001537376
1279  ENSG00000205670       ENST00000399295 ENSE00001537370
1280  ENSG00000160185       ENST00000635189 ENSE00003787837
1281  ENSG00000160185       ENST00000635189 ENSE00003693107
1282  ENSG00000160185       ENST00000635189 ENSE00003583784
1283  ENSG00000160185       ENST00000635189 ENSE00003588403
1284  ENSG00000160185       ENST00000635189 ENSE00003785860
1285  ENSG00000160185       ENST00000291535 ENSE00003583784
1286  ENSG00000160185       ENST00000291535 ENSE00003588403
1287  ENSG00000160185       ENST00000291535 ENSE00003787320
1288  ENSG00000160185       ENST00000291535 ENSE00003658789
1289  ENSG00000160185       ENST00000291535 ENSE00003563179
1290  ENSG00000160185       ENST00000291535 ENSE00003689328
1291  ENSG00000160185       ENST00000291535 ENSE00003601029
1292  ENSG00000160185       ENST00000291535 ENSE00003568239
1293  ENSG00000160185       ENST00000291535 ENSE00001259628
1294  ENSG00000160185       ENST00000291535 ENSE00001050381
1295  ENSG00000160185       ENST00000291535 ENSE00003471164
1296  ENSG00000160185       ENST00000291535 ENSE00003593464
1297  ENSG00000160185       ENST00000291535 ENSE00003665179
1298  ENSG00000160185       ENST00000291535 ENSE00003464292
1299  ENSG00000160185       ENST00000635108 ENSE00003583784
1300  ENSG00000160185       ENST00000635108 ENSE00003789992
1301  ENSG00000160185       ENST00000635108 ENSE00003784332
1302  ENSG00000160185       ENST00000635108 ENSE00003790547
1303  ENSG00000160185       ENST00000635325 ENSE00003583784
1304  ENSG00000160185       ENST00000635325 ENSE00003588403
1305  ENSG00000160185       ENST00000635325 ENSE00003658789
1306  ENSG00000160185       ENST00000635325 ENSE00003563179
1307  ENSG00000160185       ENST00000635325 ENSE00003689328
1308  ENSG00000160185       ENST00000635325 ENSE00003601029
1309  ENSG00000160185       ENST00000635325 ENSE00003568239
1310  ENSG00000160185       ENST00000635325 ENSE00001259628
1311  ENSG00000160185       ENST00000635325 ENSE00001050381
1312  ENSG00000160185       ENST00000635325 ENSE00003471164
1313  ENSG00000160185       ENST00000635325 ENSE00003789992
1314  ENSG00000160185       ENST00000635325 ENSE00003785493
1315  ENSG00000160185       ENST00000635325 ENSE00003490390
1316  ENSG00000160185       ENST00000635325 ENSE00003788035
1317  ENSG00000160185       ENST00000634453 ENSE00001891722
1318  ENSG00000160185       ENST00000634453 ENSE00003557340
1319  ENSG00000160185       ENST00000634453 ENSE00003507328
1320  ENSG00000160185       ENST00000634453 ENSE00003791291
1321  ENSG00000160185       ENST00000634718 ENSE00003557340
1322  ENSG00000160185       ENST00000634718 ENSE00003507328
1323  ENSG00000160185       ENST00000634718 ENSE00003784549
1324  ENSG00000160185       ENST00000634718 ENSE00003791328
1325  ENSG00000160185       ENST00000319294 ENSE00003583784
1326  ENSG00000160185       ENST00000319294 ENSE00003588403
1327  ENSG00000160185       ENST00000319294 ENSE00003658789
1328  ENSG00000160185       ENST00000319294 ENSE00003563179
1329  ENSG00000160185       ENST00000319294 ENSE00003689328
1330  ENSG00000160185       ENST00000319294 ENSE00003601029
1331  ENSG00000160185       ENST00000319294 ENSE00003568239
1332  ENSG00000160185       ENST00000319294 ENSE00001259628
1333  ENSG00000160185       ENST00000319294 ENSE00001050381
1334  ENSG00000160185       ENST00000319294 ENSE00003471164
1335  ENSG00000160185       ENST00000319294 ENSE00003593464
1336  ENSG00000160185       ENST00000319294 ENSE00003665179
1337  ENSG00000160185       ENST00000319294 ENSE00001884887
1338  ENSG00000160185       ENST00000319294 ENSE00001050389
1339  ENSG00000160185       ENST00000319294 ENSE00001259600
1340  ENSG00000160185       ENST00000398367 ENSE00003583784
1341  ENSG00000160185       ENST00000398367 ENSE00003588403
1342  ENSG00000160185       ENST00000398367 ENSE00003658789
1343  ENSG00000160185       ENST00000398367 ENSE00003563179
1344  ENSG00000160185       ENST00000398367 ENSE00003689328
1345  ENSG00000160185       ENST00000398367 ENSE00003601029
1346  ENSG00000160185       ENST00000398367 ENSE00003568239
1347  ENSG00000160185       ENST00000398367 ENSE00001259628
1348  ENSG00000160185       ENST00000398367 ENSE00001050381
1349  ENSG00000160185       ENST00000398367 ENSE00003471164
1350  ENSG00000160185       ENST00000398367 ENSE00003694724
1351  ENSG00000160185       ENST00000398367 ENSE00003631571
1352  ENSG00000160185       ENST00000473381 ENSE00003583784
1353  ENSG00000160185       ENST00000473381 ENSE00003588403
1354  ENSG00000160185       ENST00000473381 ENSE00003658789
1355  ENSG00000160185       ENST00000473381 ENSE00003563179
1356  ENSG00000160185       ENST00000473381 ENSE00003689328
1357  ENSG00000160185       ENST00000473381 ENSE00003601029
1358  ENSG00000160185       ENST00000473381 ENSE00003568239
1359  ENSG00000160185       ENST00000473381 ENSE00003490390
1360  ENSG00000160185       ENST00000473381 ENSE00003694724
1361  ENSG00000160185       ENST00000473381 ENSE00001881260
1362  ENSG00000160185       ENST00000473381 ENSE00001858826
1363  ENSG00000160185       ENST00000473381 ENSE00003674107
1364  ENSG00000160185       ENST00000473381 ENSE00003562002
1365  ENSG00000160185       ENST00000473381 ENSE00001860921
1366  ENSG00000273104       ENST00000608665 ENSE00003706100
1367  ENSG00000243627       ENST00000450895 ENSE00001721013
1368  ENSG00000243627       ENST00000450895 ENSE00001791276
1369  ENSG00000272958       ENST00000608289 ENSE00003707178
1370  ENSG00000185272       ENST00000468643 ENSE00001845775
1371  ENSG00000185272       ENST00000468643 ENSE00001926508
1372  ENSG00000185272       ENST00000468643 ENSE00003601318
1373  ENSG00000185272       ENST00000468643 ENSE00003592279
1374  ENSG00000185272       ENST00000468643 ENSE00003473282
1375  ENSG00000185272       ENST00000468788 ENSE00001926508
1376  ENSG00000185272       ENST00000468788 ENSE00003601318
1377  ENSG00000185272       ENST00000468788 ENSE00003592279
1378  ENSG00000185272       ENST00000468788 ENSE00002210130
1379  ENSG00000185272       ENST00000468788 ENSE00001837415
1380  ENSG00000185272       ENST00000495055 ENSE00003601318
1381  ENSG00000185272       ENST00000495055 ENSE00003592279
1382  ENSG00000185272       ENST00000495055 ENSE00001901873
1383  ENSG00000185272       ENST00000495055 ENSE00001855722
1384  ENSG00000185272       ENST00000461088 ENSE00001839054
1385  ENSG00000185272       ENST00000461088 ENSE00003574247
1386  ENSG00000185272       ENST00000461088 ENSE00001949402
1387  ENSG00000185272       ENST00000400577 ENSE00001939246
1388  ENSG00000185272       ENST00000400577 ENSE00003546298
1389  ENSG00000185272       ENST00000400577 ENSE00003560060
1390  ENSG00000185272       ENST00000400577 ENSE00003485052
1391  ENSG00000185272       ENST00000400577 ENSE00003529564
1392  ENSG00000185272       ENST00000475864 ENSE00001865382
1393  ENSG00000185272       ENST00000475864 ENSE00001847712
1394  ENSG00000232886       ENST00000430064 ENSE00001605591
1395  ENSG00000232886       ENST00000430064 ENSE00001803577
1396  ENSG00000232886       ENST00000430064 ENSE00001711567
1397  ENSG00000232886       ENST00000430064 ENSE00001638800
1398  ENSG00000142156       ENST00000361866 ENSE00001436541
1399  ENSG00000142156       ENST00000361866 ENSE00000952543
1400  ENSG00000142156       ENST00000361866 ENSE00002693513
1401  ENSG00000142156       ENST00000361866 ENSE00002468227
1402  ENSG00000142156       ENST00000361866 ENSE00002430903
1403  ENSG00000142156       ENST00000361866 ENSE00002444369
1404  ENSG00000142156       ENST00000361866 ENSE00002457874
1405  ENSG00000142156       ENST00000361866 ENSE00002517632
1406  ENSG00000142156       ENST00000361866 ENSE00002473380
1407  ENSG00000142156       ENST00000361866 ENSE00002442314
1408  ENSG00000142156       ENST00000361866 ENSE00002514254
1409  ENSG00000142156       ENST00000361866 ENSE00002446605
1410  ENSG00000142156       ENST00000361866 ENSE00002492838
1411  ENSG00000142156       ENST00000361866 ENSE00002477756
1412  ENSG00000142156       ENST00000361866 ENSE00002450819
1413  ENSG00000142156       ENST00000361866 ENSE00002494313
1414  ENSG00000142156       ENST00000361866 ENSE00002468467
1415  ENSG00000142156       ENST00000361866 ENSE00002500444
1416  ENSG00000142156       ENST00000361866 ENSE00002449732
1417  ENSG00000142156       ENST00000361866 ENSE00002470662
1418  ENSG00000142156       ENST00000361866 ENSE00002459279
1419  ENSG00000142156       ENST00000361866 ENSE00002465494
1420  ENSG00000142156       ENST00000361866 ENSE00002478448
1421  ENSG00000142156       ENST00000361866 ENSE00002505064
1422  ENSG00000142156       ENST00000361866 ENSE00002525270
1423  ENSG00000142156       ENST00000361866 ENSE00002519552
1424  ENSG00000142156       ENST00000361866 ENSE00002495880
1425  ENSG00000142156       ENST00000361866 ENSE00003466321
1426  ENSG00000142156       ENST00000361866 ENSE00002483667
1427  ENSG00000142156       ENST00000361866 ENSE00003665865
1428  ENSG00000142156       ENST00000361866 ENSE00003672421
1429  ENSG00000142156       ENST00000361866 ENSE00003587026
1430  ENSG00000142156       ENST00000361866 ENSE00003560168
1431  ENSG00000142156       ENST00000361866 ENSE00003615014
1432  ENSG00000142156       ENST00000361866 ENSE00003606957
1433  ENSG00000142156       ENST00000492851 ENSE00001903439
1434  ENSG00000142156       ENST00000492851 ENSE00001952397
1435  ENSG00000142156       ENST00000466285 ENSE00001922911
1436  ENSG00000142156       ENST00000466285 ENSE00003624032
1437  ENSG00000142156       ENST00000466285 ENSE00001917616
1438  ENSG00000142156       ENST00000463060 ENSE00001893250
1439  ENSG00000142156       ENST00000463060 ENSE00003630961
1440  ENSG00000142156       ENST00000463060 ENSE00003582235
1441  ENSG00000142156       ENST00000463060 ENSE00003677365
1442  ENSG00000142156       ENST00000463060 ENSE00003547340
1443  ENSG00000142156       ENST00000463060 ENSE00003668198
1444  ENSG00000142156       ENST00000498614 ENSE00003582235
1445  ENSG00000142156       ENST00000498614 ENSE00003677365
1446  ENSG00000142156       ENST00000498614 ENSE00003547340
1447  ENSG00000142156       ENST00000498614 ENSE00003668198
1448  ENSG00000142156       ENST00000498614 ENSE00001858383
1449  ENSG00000142156       ENST00000498614 ENSE00003632905
1450  ENSG00000142156       ENST00000486023 ENSE00003668198
1451  ENSG00000142156       ENST00000486023 ENSE00001856981
1452  ENSG00000142156       ENST00000486023 ENSE00001901960
1453  ENSG00000142156       ENST00000612273 ENSE00000952543
1454  ENSG00000142156       ENST00000612273 ENSE00002693513
1455  ENSG00000142156       ENST00000612273 ENSE00002468227
1456  ENSG00000142156       ENST00000612273 ENSE00002430903
1457  ENSG00000142156       ENST00000612273 ENSE00002444369
1458  ENSG00000142156       ENST00000612273 ENSE00002457874
1459  ENSG00000142156       ENST00000612273 ENSE00002517632
1460  ENSG00000142156       ENST00000612273 ENSE00002473380
1461  ENSG00000142156       ENST00000612273 ENSE00002442314
1462  ENSG00000142156       ENST00000612273 ENSE00002514254
1463  ENSG00000142156       ENST00000612273 ENSE00002446605
1464  ENSG00000142156       ENST00000612273 ENSE00002492838
1465  ENSG00000142156       ENST00000612273 ENSE00002477756
1466  ENSG00000142156       ENST00000612273 ENSE00002450819
1467  ENSG00000142156       ENST00000612273 ENSE00002494313
1468  ENSG00000142156       ENST00000612273 ENSE00002468467
1469  ENSG00000142156       ENST00000612273 ENSE00002500444
1470  ENSG00000142156       ENST00000612273 ENSE00002449732
1471  ENSG00000142156       ENST00000612273 ENSE00002470662
1472  ENSG00000142156       ENST00000612273 ENSE00002459279
1473  ENSG00000142156       ENST00000612273 ENSE00002465494
1474  ENSG00000142156       ENST00000612273 ENSE00002478448
1475  ENSG00000142156       ENST00000612273 ENSE00002505064
1476  ENSG00000142156       ENST00000612273 ENSE00002525270
1477  ENSG00000142156       ENST00000612273 ENSE00002519552
1478  ENSG00000142156       ENST00000612273 ENSE00002495880
1479  ENSG00000142156       ENST00000612273 ENSE00003665865
1480  ENSG00000142156       ENST00000612273 ENSE00003672421
1481  ENSG00000142156       ENST00000612273 ENSE00003587026
1482  ENSG00000142156       ENST00000612273 ENSE00003560168
1483  ENSG00000142156       ENST00000612273 ENSE00003615014
1484  ENSG00000142156       ENST00000612273 ENSE00003742428
1485  ENSG00000142156       ENST00000612273 ENSE00003752431
1486  ENSG00000142156       ENST00000612273 ENSE00003753322
1487  ENSG00000225735       ENST00000433383 ENSE00001719980
1488  ENSG00000278181       ENST00000620221 ENSE00003748822
1489  ENSG00000232560       ENST00000440664 ENSE00001788379
1490  ENSG00000232560       ENST00000440664 ENSE00001712270
1491  ENSG00000232560       ENST00000440664 ENSE00001679869
1492  ENSG00000232560       ENST00000440664 ENSE00001713465
1493  ENSG00000232560       ENST00000613691 ENSE00001679869
1494  ENSG00000232560       ENST00000613691 ENSE00003733945
1495  ENSG00000232560       ENST00000613691 ENSE00003744295
1496  ENSG00000226580       ENST00000445481 ENSE00001702562
1497  ENSG00000180509       ENST00000399289 ENSE00001537358
1498  ENSG00000180509       ENST00000399289 ENSE00001537356
1499  ENSG00000180509       ENST00000399289 ENSE00001954035
1500  ENSG00000180509       ENST00000399286 ENSE00001340756
1501  ENSG00000180509       ENST00000399286 ENSE00001340749
1502  ENSG00000180509       ENST00000399286 ENSE00001340746
1503  ENSG00000180509       ENST00000399286 ENSE00001787865
1504  ENSG00000180509       ENST00000416357 ENSE00001537344
1505  ENSG00000180509       ENST00000416357 ENSE00001537342
1506  ENSG00000180509       ENST00000399284 ENSE00001537356
1507  ENSG00000180509       ENST00000399284 ENSE00001537342
1508  ENSG00000180509       ENST00000399284 ENSE00001537339
1509  ENSG00000180509       ENST00000489175 ENSE00001811534
1510  ENSG00000180509       ENST00000489175 ENSE00001859709
1511  ENSG00000180509       ENST00000432085 ENSE00001537358
1512  ENSG00000180509       ENST00000432085 ENSE00001340746
1513  ENSG00000180509       ENST00000432085 ENSE00003743338
1514  ENSG00000180509       ENST00000621601 ENSE00001340746
1515  ENSG00000180509       ENST00000621601 ENSE00003743338
1516  ENSG00000180509       ENST00000621601 ENSE00003711662
1517  ENSG00000180509       ENST00000337385 ENSE00001340746
1518  ENSG00000180509       ENST00000337385 ENSE00003722111
1519  ENSG00000180509       ENST00000337385 ENSE00003729051
1520  ENSG00000180509       ENST00000611936 ENSE00003743338
1521  ENSG00000180509       ENST00000611936 ENSE00003742486
1522  ENSG00000154639       ENST00000284878 ENSE00001356018
1523  ENSG00000154639       ENST00000284878 ENSE00001370254
1524  ENSG00000154639       ENST00000284878 ENSE00001016957
1525  ENSG00000154639       ENST00000284878 ENSE00001016954
1526  ENSG00000154639       ENST00000284878 ENSE00001016953
1527  ENSG00000154639       ENST00000284878 ENSE00001016956
1528  ENSG00000154639       ENST00000284878 ENSE00001918181
1529  ENSG00000154639       ENST00000400166 ENSE00001370254
1530  ENSG00000154639       ENST00000400166 ENSE00001016957
1531  ENSG00000154639       ENST00000400166 ENSE00001016954
1532  ENSG00000154639       ENST00000400166 ENSE00001541826
1533  ENSG00000154639       ENST00000400166 ENSE00001541825
1534  ENSG00000154639       ENST00000356275 ENSE00001370254
1535  ENSG00000154639       ENST00000356275 ENSE00001541853
1536  ENSG00000154639       ENST00000356275 ENSE00001531599
1537  ENSG00000154639       ENST00000400165 ENSE00001370254
1538  ENSG00000154639       ENST00000400165 ENSE00001016957
1539  ENSG00000154639       ENST00000400165 ENSE00001541853
1540  ENSG00000154639       ENST00000400165 ENSE00001541821
1541  ENSG00000154639       ENST00000400169 ENSE00001370254
1542  ENSG00000154639       ENST00000400169 ENSE00001016957
1543  ENSG00000154639       ENST00000400169 ENSE00001016954
1544  ENSG00000154639       ENST00000400169 ENSE00001016953
1545  ENSG00000154639       ENST00000400169 ENSE00001016956
1546  ENSG00000154639       ENST00000400169 ENSE00001541853
1547  ENSG00000154639       ENST00000400169 ENSE00001541834
1548  ENSG00000154639       ENST00000400169 ENSE00001541833
1549  ENSG00000232260       ENST00000413813 ENSE00001673021
1550  ENSG00000224413       ENST00000451618 ENSE00001746523
1551  ENSG00000224413       ENST00000451618 ENSE00001806459
1552  ENSG00000228235       ENST00000429512 ENSE00001613855
1553  ENSG00000228235       ENST00000429512 ENSE00001801618
1554  ENSG00000226115       ENST00000435738 ENSE00001648638
1555  ENSG00000226115       ENST00000435738 ENSE00001764024
1556  ENSG00000243064       ENST00000429114 ENSE00001602011
1557  ENSG00000243064       ENST00000429114 ENSE00001685786
1558  ENSG00000243064       ENST00000429114 ENSE00001749100
1559  ENSG00000243064       ENST00000429114 ENSE00001595237
1560  ENSG00000243064       ENST00000429114 ENSE00003548683
1561  ENSG00000243064       ENST00000482980 ENSE00003548683
1562  ENSG00000243064       ENST00000482980 ENSE00003486510
1563  ENSG00000243064       ENST00000482980 ENSE00003655188
1564  ENSG00000243064       ENST00000482980 ENSE00003668380
1565  ENSG00000243064       ENST00000482980 ENSE00003465925
1566  ENSG00000243064       ENST00000482980 ENSE00003654218
1567  ENSG00000243064       ENST00000482980 ENSE00003494827
1568  ENSG00000243064       ENST00000482980 ENSE00003518649
1569  ENSG00000243064       ENST00000482980 ENSE00001861485
1570  ENSG00000243064       ENST00000482980 ENSE00001851664
1571  ENSG00000243064       ENST00000482980 ENSE00001941127
1572  ENSG00000243064       ENST00000482980 ENSE00001862267
1573  ENSG00000243064       ENST00000482980 ENSE00001868303
1574  ENSG00000243064       ENST00000482980 ENSE00001809374
1575  ENSG00000243064       ENST00000481582 ENSE00003548683
1576  ENSG00000243064       ENST00000481582 ENSE00003655188
1577  ENSG00000243064       ENST00000481582 ENSE00001860371
1578  ENSG00000243064       ENST00000481582 ENSE00001852478
1579  ENSG00000243064       ENST00000481582 ENSE00001833363
1580  ENSG00000243064       ENST00000467409 ENSE00003548683
1581  ENSG00000243064       ENST00000467409 ENSE00003655188
1582  ENSG00000243064       ENST00000467409 ENSE00003668380
1583  ENSG00000243064       ENST00000467409 ENSE00003465925
1584  ENSG00000243064       ENST00000467409 ENSE00001888386
1585  ENSG00000243064       ENST00000467409 ENSE00001809825
1586  ENSG00000243064       ENST00000471902 ENSE00003548683
1587  ENSG00000243064       ENST00000471902 ENSE00003655188
1588  ENSG00000243064       ENST00000471902 ENSE00003668380
1589  ENSG00000243064       ENST00000471902 ENSE00001882870
1590  ENSG00000243064       ENST00000471902 ENSE00001925104
1591  ENSG00000243064       ENST00000463099 ENSE00003548683
1592  ENSG00000243064       ENST00000463099 ENSE00003655188
1593  ENSG00000243064       ENST00000463099 ENSE00003668380
1594  ENSG00000243064       ENST00000463099 ENSE00003465925
1595  ENSG00000243064       ENST00000463099 ENSE00003654218
1596  ENSG00000243064       ENST00000463099 ENSE00003494827
1597  ENSG00000243064       ENST00000463099 ENSE00003518649
1598  ENSG00000243064       ENST00000463099 ENSE00001941127
1599  ENSG00000243064       ENST00000463099 ENSE00001868303
1600  ENSG00000243064       ENST00000463099 ENSE00001856952
1601  ENSG00000243064       ENST00000463099 ENSE00001880249
1602  ENSG00000243064       ENST00000463099 ENSE00001889039
1603  ENSG00000243064       ENST00000463099 ENSE00001844190
1604  ENSG00000243064       ENST00000463099 ENSE00001857549
1605  ENSG00000243064       ENST00000463099 ENSE00001845742
1606  ENSG00000243064       ENST00000463099 ENSE00001913535
1607  ENSG00000243064       ENST00000463099 ENSE00001882947
1608  ENSG00000243064       ENST00000463099 ENSE00001907632
1609  ENSG00000243064       ENST00000463099 ENSE00001854008
1610  ENSG00000243064       ENST00000463099 ENSE00001881574
1611  ENSG00000243064       ENST00000463099 ENSE00001914404
1612  ENSG00000243064       ENST00000463099 ENSE00001957758
1613  ENSG00000243064       ENST00000463099 ENSE00001860265
1614  ENSG00000243064       ENST00000463099 ENSE00001946890
1615  ENSG00000243064       ENST00000463099 ENSE00001927536
1616  ENSG00000243064       ENST00000463099 ENSE00001870240
1617  ENSG00000243064       ENST00000463099 ENSE00001856887
1618  ENSG00000243064       ENST00000463099 ENSE00001916507
1619  ENSG00000159200       ENST00000487434 ENSE00001871208
1620  ENSG00000159200       ENST00000487434 ENSE00001866275
1621  ENSG00000159200       ENST00000482533 ENSE00001891602
1622  ENSG00000159200       ENST00000482533 ENSE00003659681
1623  ENSG00000159200       ENST00000482533 ENSE00003652771
1624  ENSG00000159200       ENST00000481448 ENSE00003659681
1625  ENSG00000159200       ENST00000481448 ENSE00003652771
1626  ENSG00000159200       ENST00000481448 ENSE00001883414
1627  ENSG00000159200       ENST00000481448 ENSE00001869588
1628  ENSG00000159200       ENST00000481448 ENSE00003708710
1629  ENSG00000159200       ENST00000381132 ENSE00003659681
1630  ENSG00000159200       ENST00000381132 ENSE00003652771
1631  ENSG00000159200       ENST00000381132 ENSE00003708710
1632  ENSG00000159200       ENST00000381132 ENSE00001487609
1633  ENSG00000159200       ENST00000487990 ENSE00003659681
1634  ENSG00000159200       ENST00000487990 ENSE00003652771
1635  ENSG00000159200       ENST00000487990 ENSE00001826052
1636  ENSG00000159200       ENST00000487990 ENSE00003524250
1637  ENSG00000159200       ENST00000399272 ENSE00003659681
1638  ENSG00000159200       ENST00000399272 ENSE00003652771
1639  ENSG00000159200       ENST00000399272 ENSE00003708710
1640  ENSG00000159200       ENST00000399272 ENSE00001537287
1641  ENSG00000159200       ENST00000489903 ENSE00001537265
1642  ENSG00000159200       ENST00000489903 ENSE00003707676
1643  ENSG00000159200       ENST00000489903 ENSE00003485644
1644  ENSG00000159200       ENST00000489903 ENSE00003498425
1645  ENSG00000159200       ENST00000313806 ENSE00003659681
1646  ENSG00000159200       ENST00000313806 ENSE00003652771
1647  ENSG00000159200       ENST00000313806 ENSE00003708710
1648  ENSG00000159200       ENST00000313806 ENSE00001869771
1649  ENSG00000159200       ENST00000492600 ENSE00003708710
1650  ENSG00000159200       ENST00000492600 ENSE00001957975
1651  ENSG00000159200       ENST00000492600 ENSE00001899157
1652  ENSG00000159200       ENST00000609325 ENSE00003708809
1653  ENSG00000159200       ENST00000463276 ENSE00001886756
1654  ENSG00000159200       ENST00000463276 ENSE00001893756
1655  ENSG00000159200       ENST00000463276 ENSE00001952788
1656  ENSG00000159200       ENST00000443408 ENSE00003659681
1657  ENSG00000159200       ENST00000443408 ENSE00003524250
1658  ENSG00000159200       ENST00000443408 ENSE00001537265
1659  ENSG00000159200       ENST00000443408 ENSE00003736651
1660  ENSG00000159200       ENST00000381135 ENSE00003659681
1661  ENSG00000159200       ENST00000381135 ENSE00003708710
1662  ENSG00000159200       ENST00000381135 ENSE00003736651
1663  ENSG00000159200       ENST00000381135 ENSE00001487624
1664  ENSG00000159200       ENST00000620920 ENSE00003659681
1665  ENSG00000159200       ENST00000620920 ENSE00003524250
1666  ENSG00000159200       ENST00000620920 ENSE00003736651
1667  ENSG00000159200       ENST00000620920 ENSE00003753426
1668  ENSG00000233767       ENST00000428242 ENSE00001594272
1669  ENSG00000154640       ENST00000339775 ENSE00001897245
1670  ENSG00000154640       ENST00000339775 ENSE00001016965
1671  ENSG00000154640       ENST00000339775 ENSE00001016961
1672  ENSG00000154640       ENST00000339775 ENSE00001372820
1673  ENSG00000154640       ENST00000339775 ENSE00001016967
1674  ENSG00000154640       ENST00000339775 ENSE00001016968
1675  ENSG00000154640       ENST00000348354 ENSE00001016965
1676  ENSG00000154640       ENST00000348354 ENSE00001016961
1677  ENSG00000154640       ENST00000348354 ENSE00001016967
1678  ENSG00000154640       ENST00000348354 ENSE00001016968
1679  ENSG00000154640       ENST00000348354 ENSE00001597441
1680  ENSG00000154640       ENST00000471860 ENSE00001898890
1681  ENSG00000154640       ENST00000471860 ENSE00001854422
1682  ENSG00000154640       ENST00000496601 ENSE00001915391
1683  ENSG00000154640       ENST00000496601 ENSE00001878176
1684  ENSG00000154640       ENST00000464058 ENSE00001945420
1685  ENSG00000154640       ENST00000464058 ENSE00001924316
1686  ENSG00000154640       ENST00000457956 ENSE00001493981
1687  ENSG00000154640       ENST00000457956 ENSE00001719551
1688  ENSG00000154640       ENST00000457956 ENSE00001654853
1689  ENSG00000280594       ENST00000626994 ENSE00003773795
1690  ENSG00000280594       ENST00000626994 ENSE00003773426
1691  ENSG00000280594       ENST00000626994 ENSE00003774205
1692  ENSG00000280594       ENST00000630155 ENSE00003761532
1693  ENSG00000238197       ENST00000458479 ENSE00001724672
1694  ENSG00000238197       ENST00000458479 ENSE00001729889
1695  ENSG00000238197       ENST00000440052 ENSE00001637352
1696  ENSG00000238197       ENST00000440052 ENSE00001758586
1697  ENSG00000238197       ENST00000440052 ENSE00001710895
1698  ENSG00000238197       ENST00000440052 ENSE00001755988
1699  ENSG00000238197       ENST00000455170 ENSE00001758586
1700  ENSG00000238197       ENST00000455170 ENSE00001621594
1701  ENSG00000238197       ENST00000455170 ENSE00001672645
1702  ENSG00000159086       ENST00000331923 ENSE00001418055
1703  ENSG00000159086       ENST00000331923 ENSE00003586691
1704  ENSG00000159086       ENST00000331923 ENSE00003689070
1705  ENSG00000159086       ENST00000331923 ENSE00003475039
1706  ENSG00000159086       ENST00000331923 ENSE00003619321
1707  ENSG00000159086       ENST00000331923 ENSE00003576082
1708  ENSG00000159086       ENST00000331923 ENSE00003600861
1709  ENSG00000159086       ENST00000331923 ENSE00001043135
1710  ENSG00000159086       ENST00000331923 ENSE00003479846
1711  ENSG00000159086       ENST00000331923 ENSE00003659463
1712  ENSG00000159086       ENST00000331923 ENSE00003514300
1713  ENSG00000159086       ENST00000331923 ENSE00003531041
1714  ENSG00000159086       ENST00000331923 ENSE00003564031
1715  ENSG00000159086       ENST00000331923 ENSE00003491166
1716  ENSG00000159086       ENST00000331923 ENSE00003613165
1717  ENSG00000159086       ENST00000331923 ENSE00003485802
1718  ENSG00000159086       ENST00000331923 ENSE00003693611
1719  ENSG00000159086       ENST00000331923 ENSE00001888460
1720  ENSG00000159086       ENST00000466846 ENSE00001932194
1721  ENSG00000159086       ENST00000466846 ENSE00003577622
1722  ENSG00000159086       ENST00000466846 ENSE00003591604
1723  ENSG00000159086       ENST00000466846 ENSE00003663813
1724  ENSG00000159086       ENST00000466846 ENSE00003660643
1725  ENSG00000159086       ENST00000466846 ENSE00003620897
1726  ENSG00000159086       ENST00000466846 ENSE00003585458
1727  ENSG00000159086       ENST00000466846 ENSE00003626527
1728  ENSG00000159086       ENST00000466846 ENSE00003626262
1729  ENSG00000159086       ENST00000466846 ENSE00003634643
1730  ENSG00000159086       ENST00000466846 ENSE00001861849
1731  ENSG00000159086       ENST00000443785 ENSE00003586691
1732  ENSG00000159086       ENST00000443785 ENSE00003689070
1733  ENSG00000159086       ENST00000443785 ENSE00003475039
1734  ENSG00000159086       ENST00000443785 ENSE00003619321
1735  ENSG00000159086       ENST00000443785 ENSE00003576082
1736  ENSG00000159086       ENST00000443785 ENSE00003600861
1737  ENSG00000159086       ENST00000443785 ENSE00003591604
1738  ENSG00000159086       ENST00000443785 ENSE00003663813
1739  ENSG00000159086       ENST00000443785 ENSE00003660643
1740  ENSG00000159086       ENST00000443785 ENSE00003620897
1741  ENSG00000159086       ENST00000443785 ENSE00003585458
1742  ENSG00000159086       ENST00000443785 ENSE00003626527
1743  ENSG00000159086       ENST00000443785 ENSE00003626262
1744  ENSG00000159086       ENST00000443785 ENSE00003634643
1745  ENSG00000159086       ENST00000443785 ENSE00001669669
1746  ENSG00000159086       ENST00000443785 ENSE00001662090
1747  ENSG00000159086       ENST00000443785 ENSE00003626702
1748  ENSG00000159086       ENST00000443785 ENSE00001616809
1749  ENSG00000159086       ENST00000497873 ENSE00003591604
1750  ENSG00000159086       ENST00000497873 ENSE00003663813
1751  ENSG00000159086       ENST00000497873 ENSE00003660643
1752  ENSG00000159086       ENST00000497873 ENSE00003620897
1753  ENSG00000159086       ENST00000497873 ENSE00003585458
1754  ENSG00000159086       ENST00000497873 ENSE00003626527
1755  ENSG00000159086       ENST00000497873 ENSE00003626262
1756  ENSG00000159086       ENST00000497873 ENSE00003634643
1757  ENSG00000159086       ENST00000497873 ENSE00001910821
1758  ENSG00000159086       ENST00000497873 ENSE00001824171
1759  ENSG00000159086       ENST00000290178 ENSE00003586691
1760  ENSG00000159086       ENST00000290178 ENSE00003689070
1761  ENSG00000159086       ENST00000290178 ENSE00003475039
1762  ENSG00000159086       ENST00000290178 ENSE00003619321
1763  ENSG00000159086       ENST00000290178 ENSE00003576082
1764  ENSG00000159086       ENST00000290178 ENSE00003600861
1765  ENSG00000159086       ENST00000290178 ENSE00001043135
1766  ENSG00000159086       ENST00000290178 ENSE00003479846
1767  ENSG00000159086       ENST00000290178 ENSE00003659463
1768  ENSG00000159086       ENST00000290178 ENSE00003514300
1769  ENSG00000159086       ENST00000290178 ENSE00003531041
1770  ENSG00000159086       ENST00000290178 ENSE00003564031
1771  ENSG00000159086       ENST00000290178 ENSE00003491166
1772  ENSG00000159086       ENST00000290178 ENSE00003613165
1773  ENSG00000159086       ENST00000290178 ENSE00003582198
1774  ENSG00000159086       ENST00000290178 ENSE00001326257
1775  ENSG00000159086       ENST00000445049 ENSE00001606735
1776  ENSG00000159086       ENST00000445049 ENSE00001713074
1777  ENSG00000159086       ENST00000445049 ENSE00001648431
1778  ENSG00000159086       ENST00000445049 ENSE00001752495
1779  ENSG00000159086       ENST00000421049 ENSE00003626702
1780  ENSG00000159086       ENST00000421049 ENSE00001593977
1781  ENSG00000159086       ENST00000421049 ENSE00001603347
1782  ENSG00000159086       ENST00000472588 ENSE00003594198
1783  ENSG00000159086       ENST00000472588 ENSE00003640180
1784  ENSG00000159086       ENST00000472588 ENSE00003615127
1785  ENSG00000159086       ENST00000472588 ENSE00003539172
1786  ENSG00000159086       ENST00000472588 ENSE00003523209
1787  ENSG00000159086       ENST00000472588 ENSE00003576093
1788  ENSG00000159086       ENST00000472588 ENSE00003539511
1789  ENSG00000159086       ENST00000472588 ENSE00001845379
1790  ENSG00000159086       ENST00000464256 ENSE00003640180
1791  ENSG00000159086       ENST00000464256 ENSE00003615127
1792  ENSG00000159086       ENST00000464256 ENSE00003539172
1793  ENSG00000159086       ENST00000464256 ENSE00003523209
1794  ENSG00000159086       ENST00000464256 ENSE00001857609
1795  ENSG00000159086       ENST00000464256 ENSE00001869099
1796  ENSG00000239023       ENST00000458992 ENSE00001807640
1797  ENSG00000264063       ENST00000577708 ENSE00002724720
1798  ENSG00000273614       ENST00000619030 ENSE00003736182
1799  ENSG00000199806       ENST00000362936 ENSE00001437699
1800  ENSG00000274060       ENST00000616483 ENSE00003726608
1801  ENSG00000252273       ENST00000516464 ENSE00002088741
1802  ENSG00000183844       ENST00000479810 ENSE00002101425
1803  ENSG00000183844       ENST00000479810 ENSE00001950129
1804  ENSG00000183844       ENST00000479810 ENSE00003534003
1805  ENSG00000183844       ENST00000479810 ENSE00003506040
1806  ENSG00000183844       ENST00000479810 ENSE00003486755
1807  ENSG00000183844       ENST00000479810 ENSE00003664877
1808  ENSG00000183844       ENST00000479810 ENSE00001879922
1809  ENSG00000183844       ENST00000479810 ENSE00003664777
1810  ENSG00000183844       ENST00000479810 ENSE00003644982
1811  ENSG00000183844       ENST00000479810 ENSE00003488124
1812  ENSG00000183844       ENST00000518236 ENSE00003534003
1813  ENSG00000183844       ENST00000518236 ENSE00003506040
1814  ENSG00000183844       ENST00000518236 ENSE00003486755
1815  ENSG00000183844       ENST00000518236 ENSE00001890535
1816  ENSG00000183844       ENST00000518236 ENSE00002115910
1817  ENSG00000183844       ENST00000357985 ENSE00001416667
1818  ENSG00000183844       ENST00000357985 ENSE00003691429
1819  ENSG00000183844       ENST00000357985 ENSE00003569115
1820  ENSG00000183844       ENST00000357985 ENSE00003640536
1821  ENSG00000183844       ENST00000357985 ENSE00003578761
1822  ENSG00000183844       ENST00000357985 ENSE00003481681
1823  ENSG00000183844       ENST00000357985 ENSE00003669104
1824  ENSG00000183844       ENST00000357985 ENSE00003555613
1825  ENSG00000183844       ENST00000398652 ENSE00003691429
1826  ENSG00000183844       ENST00000398652 ENSE00003569115
1827  ENSG00000183844       ENST00000398652 ENSE00003640536
1828  ENSG00000183844       ENST00000398652 ENSE00003578761
1829  ENSG00000183844       ENST00000398652 ENSE00003481681
1830  ENSG00000183844       ENST00000398652 ENSE00003669104
1831  ENSG00000183844       ENST00000398652 ENSE00003555613
1832  ENSG00000183844       ENST00000398652 ENSE00001954950
1833  ENSG00000183844       ENST00000398652 ENSE00001311260
1834  ENSG00000183844       ENST00000398647 ENSE00003569115
1835  ENSG00000183844       ENST00000398647 ENSE00003640536
1836  ENSG00000183844       ENST00000398647 ENSE00003578761
1837  ENSG00000183844       ENST00000398647 ENSE00003481681
1838  ENSG00000183844       ENST00000398647 ENSE00003669104
1839  ENSG00000183844       ENST00000398647 ENSE00003555613
1840  ENSG00000183844       ENST00000398647 ENSE00001954950
1841  ENSG00000183844       ENST00000398646 ENSE00003569115
1842  ENSG00000183844       ENST00000398646 ENSE00003640536
1843  ENSG00000183844       ENST00000398646 ENSE00003578761
1844  ENSG00000183844       ENST00000398646 ENSE00003481681
1845  ENSG00000183844       ENST00000398646 ENSE00003669104
1846  ENSG00000183844       ENST00000398646 ENSE00003555613
1847  ENSG00000183844       ENST00000398646 ENSE00001534120
1848  ENSG00000224100       ENST00000428410 ENSE00001701367
1849  ENSG00000224100       ENST00000428410 ENSE00001759374
1850  ENSG00000160193       ENST00000330317 ENSE00001889621
1851  ENSG00000160193       ENST00000330317 ENSE00003690805
1852  ENSG00000160193       ENST00000330317 ENSE00003486103
1853  ENSG00000160193       ENST00000330317 ENSE00003641564
1854  ENSG00000160193       ENST00000330317 ENSE00003599130
1855  ENSG00000160193       ENST00000330317 ENSE00003694162
1856  ENSG00000160193       ENST00000330317 ENSE00003511519
1857  ENSG00000160193       ENST00000330317 ENSE00003606199
1858  ENSG00000160193       ENST00000330317 ENSE00003570160
1859  ENSG00000160193       ENST00000330317 ENSE00003540633
1860  ENSG00000160193       ENST00000330317 ENSE00001313461
1861  ENSG00000160193       ENST00000330317 ENSE00001283844
1862  ENSG00000160193       ENST00000492742 ENSE00001863152
1863  ENSG00000160193       ENST00000492742 ENSE00003643979
1864  ENSG00000160193       ENST00000492742 ENSE00001937024
1865  ENSG00000160193       ENST00000492742 ENSE00003494390
1866  ENSG00000160193       ENST00000492742 ENSE00003500552
1867  ENSG00000160193       ENST00000492742 ENSE00003616698
1868  ENSG00000160193       ENST00000492742 ENSE00003500418
1869  ENSG00000160193       ENST00000492742 ENSE00003568755
1870  ENSG00000160193       ENST00000492742 ENSE00003678235
1871  ENSG00000160193       ENST00000492742 ENSE00003524987
1872  ENSG00000160193       ENST00000492742 ENSE00003557317
1873  ENSG00000160193       ENST00000398208 ENSE00003690805
1874  ENSG00000160193       ENST00000398208 ENSE00003486103
1875  ENSG00000160193       ENST00000398208 ENSE00003641564
1876  ENSG00000160193       ENST00000398208 ENSE00003599130
1877  ENSG00000160193       ENST00000398208 ENSE00003694162
1878  ENSG00000160193       ENST00000398208 ENSE00003511519
1879  ENSG00000160193       ENST00000398208 ENSE00003606199
1880  ENSG00000160193       ENST00000398208 ENSE00003570160
1881  ENSG00000160193       ENST00000398208 ENSE00003540633
1882  ENSG00000160193       ENST00000398208 ENSE00001138597
1883  ENSG00000160193       ENST00000398208 ENSE00003552431
1884  ENSG00000160193       ENST00000476326 ENSE00003643979
1885  ENSG00000160193       ENST00000476326 ENSE00001937024
1886  ENSG00000160193       ENST00000476326 ENSE00003494390
1887  ENSG00000160193       ENST00000476326 ENSE00003500552
1888  ENSG00000160193       ENST00000476326 ENSE00003616698
1889  ENSG00000160193       ENST00000476326 ENSE00003500418
1890  ENSG00000160193       ENST00000476326 ENSE00003568755
1891  ENSG00000160193       ENST00000476326 ENSE00003678235
1892  ENSG00000160193       ENST00000476326 ENSE00003524987
1893  ENSG00000160193       ENST00000476326 ENSE00003557317
1894  ENSG00000160193       ENST00000476326 ENSE00001857786
1895  ENSG00000160193       ENST00000479429 ENSE00003643979
1896  ENSG00000160193       ENST00000479429 ENSE00001937024
1897  ENSG00000160193       ENST00000479429 ENSE00003494390
1898  ENSG00000160193       ENST00000479429 ENSE00003500552
1899  ENSG00000160193       ENST00000479429 ENSE00003616698
1900  ENSG00000160193       ENST00000479429 ENSE00003500418
1901  ENSG00000160193       ENST00000479429 ENSE00003568755
1902  ENSG00000160193       ENST00000479429 ENSE00001902257
1903  ENSG00000160193       ENST00000463902 ENSE00003643979
1904  ENSG00000160193       ENST00000463902 ENSE00001937024
1905  ENSG00000160193       ENST00000463902 ENSE00003494390
1906  ENSG00000160193       ENST00000463902 ENSE00003500552
1907  ENSG00000160193       ENST00000463902 ENSE00003616698
1908  ENSG00000160193       ENST00000463902 ENSE00001898146
1909  ENSG00000160193       ENST00000463902 ENSE00001928743
1910  ENSG00000160193       ENST00000470658 ENSE00003643979
1911  ENSG00000160193       ENST00000470658 ENSE00003494390
1912  ENSG00000160193       ENST00000470658 ENSE00003500552
1913  ENSG00000160193       ENST00000470658 ENSE00001947837
1914  ENSG00000160193       ENST00000470658 ENSE00003517811
1915  ENSG00000228677       ENST00000424733 ENSE00001619558
1916  ENSG00000228677       ENST00000424733 ENSE00001652211
1917  ENSG00000232010       ENST00000442785 ENSE00001615938
1918  ENSG00000232010       ENST00000442785 ENSE00001605285
1919  ENSG00000279177       ENST00000624906 ENSE00003756514
1920  ENSG00000278158       ENST00000619053 ENSE00003728435
1921  ENSG00000276076       ENST00000619537 ENSE00003716393
1922  ENSG00000276076       ENST00000619537 ENSE00003745946
1923  ENSG00000276076       ENST00000619537 ENSE00003751475
1924  ENSG00000276076       ENST00000624019 ENSE00003745946
1925  ENSG00000276076       ENST00000624019 ENSE00003758215
1926  ENSG00000276076       ENST00000624019 ENSE00003757854
1927  ENSG00000276076       ENST00000624901 ENSE00003755715
1928  ENSG00000276076       ENST00000624901 ENSE00003755354
1929  ENSG00000276076       ENST00000624932 ENSE00003745946
1930  ENSG00000276076       ENST00000624932 ENSE00003755371
1931  ENSG00000276076       ENST00000624932 ENSE00003757511
1932  ENSG00000279226       ENST00000623061 ENSE00003756704
1933  ENSG00000273254       ENST00000608809 ENSE00003703315
1934  ENSG00000228318       ENST00000411427 ENSE00003718873
1935  ENSG00000228318       ENST00000411427 ENSE00001774186
1936  ENSG00000228318       ENST00000411427 ENSE00001786815
1937  ENSG00000157601       ENST00000490220 ENSE00001942734
1938  ENSG00000157601       ENST00000490220 ENSE00001534043
1939  ENSG00000157601       ENST00000490220 ENSE00001534041
1940  ENSG00000157601       ENST00000490220 ENSE00001534040
1941  ENSG00000157601       ENST00000490220 ENSE00001534038
1942  ENSG00000157601       ENST00000468506 ENSE00001952105
1943  ENSG00000157601       ENST00000468506 ENSE00001715229
1944  ENSG00000157601       ENST00000468506 ENSE00001776947
1945  ENSG00000157601       ENST00000468506 ENSE00001943029
1946  ENSG00000157601       ENST00000398600 ENSE00001534043
1947  ENSG00000157601       ENST00000398600 ENSE00001534041
1948  ENSG00000157601       ENST00000398600 ENSE00001534040
1949  ENSG00000157601       ENST00000398600 ENSE00001534038
1950  ENSG00000157601       ENST00000398600 ENSE00001534045
1951  ENSG00000157601       ENST00000398600 ENSE00001534036
1952  ENSG00000157601       ENST00000398600 ENSE00003795097
1953  ENSG00000157601       ENST00000398600 ENSE00002459117
1954  ENSG00000157601       ENST00000398600 ENSE00001033794
1955  ENSG00000157601       ENST00000398600 ENSE00003785790
1956  ENSG00000157601       ENST00000398600 ENSE00002440210
1957  ENSG00000157601       ENST00000398600 ENSE00001033785
1958  ENSG00000157601       ENST00000398600 ENSE00001033788
1959  ENSG00000157601       ENST00000398600 ENSE00001033793
1960  ENSG00000157601       ENST00000398600 ENSE00003640572
1961  ENSG00000157601       ENST00000398600 ENSE00001033780
1962  ENSG00000157601       ENST00000398600 ENSE00001225085
1963  ENSG00000157601       ENST00000398600 ENSE00001033791
1964  ENSG00000157601       ENST00000398600 ENSE00001533818
1965  ENSG00000157601       ENST00000413778 ENSE00001534041
1966  ENSG00000157601       ENST00000413778 ENSE00001534040
1967  ENSG00000157601       ENST00000413778 ENSE00001534038
1968  ENSG00000157601       ENST00000413778 ENSE00001715229
1969  ENSG00000157601       ENST00000413778 ENSE00001776947
1970  ENSG00000157601       ENST00000413778 ENSE00001534036
1971  ENSG00000157601       ENST00000413778 ENSE00001765492
1972  ENSG00000157601       ENST00000413778 ENSE00001752508
1973  ENSG00000157601       ENST00000413778 ENSE00001634889
1974  ENSG00000157601       ENST00000419044 ENSE00001534040
1975  ENSG00000157601       ENST00000419044 ENSE00001534038
1976  ENSG00000157601       ENST00000419044 ENSE00001534036
1977  ENSG00000157601       ENST00000419044 ENSE00001595799
1978  ENSG00000157601       ENST00000419044 ENSE00001724986
1979  ENSG00000157601       ENST00000398598 ENSE00001534040
1980  ENSG00000157601       ENST00000398598 ENSE00001534038
1981  ENSG00000157601       ENST00000398598 ENSE00001534036
1982  ENSG00000157601       ENST00000398598 ENSE00003795097
1983  ENSG00000157601       ENST00000398598 ENSE00002459117
1984  ENSG00000157601       ENST00000398598 ENSE00001033794
1985  ENSG00000157601       ENST00000398598 ENSE00003785790
1986  ENSG00000157601       ENST00000398598 ENSE00002440210
1987  ENSG00000157601       ENST00000398598 ENSE00001033785
1988  ENSG00000157601       ENST00000398598 ENSE00001033788
1989  ENSG00000157601       ENST00000398598 ENSE00001033793
1990  ENSG00000157601       ENST00000398598 ENSE00003640572
1991  ENSG00000157601       ENST00000398598 ENSE00001033780
1992  ENSG00000157601       ENST00000398598 ENSE00001225085
1993  ENSG00000157601       ENST00000398598 ENSE00001033791
1994  ENSG00000157601       ENST00000398598 ENSE00001533818
1995  ENSG00000157601       ENST00000398598 ENSE00001784904
1996  ENSG00000157601       ENST00000424365 ENSE00001534038
1997  ENSG00000157601       ENST00000424365 ENSE00001534036
1998  ENSG00000157601       ENST00000424365 ENSE00002459117
1999  ENSG00000157601       ENST00000424365 ENSE00001033794
2000  ENSG00000157601       ENST00000424365 ENSE00003785790
2001  ENSG00000157601       ENST00000424365 ENSE00001752508
2002  ENSG00000157601       ENST00000424365 ENSE00001689686
2003  ENSG00000157601       ENST00000484465 ENSE00001930931
2004  ENSG00000157601       ENST00000484465 ENSE00001948624
2005  ENSG00000157601       ENST00000417963 ENSE00001534038
2006  ENSG00000157601       ENST00000417963 ENSE00001534036
2007  ENSG00000157601       ENST00000417963 ENSE00003795097
2008  ENSG00000157601       ENST00000417963 ENSE00002459117
2009  ENSG00000157601       ENST00000417963 ENSE00001033794
2010  ENSG00000157601       ENST00000417963 ENSE00003785790
2011  ENSG00000157601       ENST00000417963 ENSE00001663814
2012  ENSG00000157601       ENST00000417963 ENSE00002480631
2013  ENSG00000157601       ENST00000441677 ENSE00001534040
2014  ENSG00000157601       ENST00000441677 ENSE00001534038
2015  ENSG00000157601       ENST00000441677 ENSE00001534036
2016  ENSG00000157601       ENST00000441677 ENSE00001752508
2017  ENSG00000157601       ENST00000441677 ENSE00001746505
2018  ENSG00000157601       ENST00000441677 ENSE00002494256
2019  ENSG00000157601       ENST00000478268 ENSE00001906621
2020  ENSG00000157601       ENST00000478268 ENSE00001843747
2021  ENSG00000157601       ENST00000427464 ENSE00001534036
2022  ENSG00000157601       ENST00000427464 ENSE00003795097
2023  ENSG00000157601       ENST00000427464 ENSE00001788494
2024  ENSG00000157601       ENST00000288383 ENSE00001033794
2025  ENSG00000157601       ENST00000288383 ENSE00003785790
2026  ENSG00000157601       ENST00000288383 ENSE00002440210
2027  ENSG00000157601       ENST00000288383 ENSE00001033785
2028  ENSG00000157601       ENST00000288383 ENSE00001033788
2029  ENSG00000157601       ENST00000288383 ENSE00001033793
2030  ENSG00000157601       ENST00000288383 ENSE00003640572
2031  ENSG00000157601       ENST00000288383 ENSE00001033780
2032  ENSG00000157601       ENST00000288383 ENSE00001225085
2033  ENSG00000157601       ENST00000288383 ENSE00001033791
2034  ENSG00000157601       ENST00000288383 ENSE00001533818
2035  ENSG00000157601       ENST00000288383 ENSE00001533821
2036  ENSG00000157601       ENST00000288383 ENSE00001533820
2037  ENSG00000157601       ENST00000467510 ENSE00001930325
2038  ENSG00000157601       ENST00000467510 ENSE00001892183
2039  ENSG00000157601       ENST00000486275 ENSE00001926086
2040  ENSG00000157601       ENST00000486275 ENSE00003691836
2041  ENSG00000157601       ENST00000486275 ENSE00001928216
2042  ENSG00000157601       ENST00000491110 ENSE00001821897
2043  ENSG00000157601       ENST00000491110 ENSE00001931053
2044  ENSG00000157601       ENST00000455164 ENSE00001534038
2045  ENSG00000157601       ENST00000455164 ENSE00003795097
2046  ENSG00000157601       ENST00000455164 ENSE00002459117
2047  ENSG00000157601       ENST00000455164 ENSE00001033794
2048  ENSG00000157601       ENST00000455164 ENSE00003785790
2049  ENSG00000157601       ENST00000455164 ENSE00002440210
2050  ENSG00000157601       ENST00000455164 ENSE00001033785
2051  ENSG00000157601       ENST00000455164 ENSE00001033788
2052  ENSG00000157601       ENST00000455164 ENSE00001033793
2053  ENSG00000157601       ENST00000455164 ENSE00003640572
2054  ENSG00000157601       ENST00000455164 ENSE00001033780
2055  ENSG00000157601       ENST00000455164 ENSE00001225085
2056  ENSG00000157601       ENST00000455164 ENSE00001033791
2057  ENSG00000157601       ENST00000455164 ENSE00002290682
2058  ENSG00000157601       ENST00000455164 ENSE00001292698
2059  ENSG00000157601       ENST00000619682 ENSE00003795097
2060  ENSG00000157601       ENST00000619682 ENSE00002459117
2061  ENSG00000157601       ENST00000619682 ENSE00001033794
2062  ENSG00000157601       ENST00000619682 ENSE00003785790
2063  ENSG00000157601       ENST00000619682 ENSE00002440210
2064  ENSG00000157601       ENST00000619682 ENSE00001033785
2065  ENSG00000157601       ENST00000619682 ENSE00001033788
2066  ENSG00000157601       ENST00000619682 ENSE00001033793
2067  ENSG00000157601       ENST00000619682 ENSE00003640572
2068  ENSG00000157601       ENST00000619682 ENSE00003754697
2069  ENSG00000274225       ENST00000617205 ENSE00003731552
2070  ENSG00000228709       ENST00000449713 ENSE00001752545
2071  ENSG00000228709       ENST00000449713 ENSE00001681181
2072  ENSG00000277352       ENST00000622854 ENSE00003747804
2073  ENSG00000266195       ENST00000583100 ENSE00002702021
2074  ENSG00000276902       ENST00000615262 ENSE00003749199
2075  ENSG00000223901       ENST00000418029 ENSE00001619066
2076  ENSG00000223901       ENST00000418029 ENSE00003773090
2077  ENSG00000223901       ENST00000626933 ENSE00003770624
2078  ENSG00000223901       ENST00000626933 ENSE00001656573
2079  ENSG00000223901       ENST00000626933 ENSE00003767484
2080  ENSG00000223901       ENST00000626933 ENSE00003760665
2081  ENSG00000278961       ENST00000624951 ENSE00003759970
2082  ENSG00000278961       ENST00000624951 ENSE00003755793
2083  ENSG00000277067       ENST00000623095 ENSE00003755511
2084  ENSG00000277067       ENST00000623095 ENSE00003756819
2085  ENSG00000277067       ENST00000623095 ENSE00003744303
2086  ENSG00000277067       ENST00000623095 ENSE00003757948
2087  ENSG00000277067       ENST00000622911 ENSE00003758925
2088  ENSG00000277067       ENST00000622911 ENSE00003759116
2089  ENSG00000277067       ENST00000622911 ENSE00003755901
2090  ENSG00000277067       ENST00000621909 ENSE00003744303
2091  ENSG00000277067       ENST00000621909 ENSE00003728829
2092  ENSG00000277067       ENST00000621909 ENSE00003757247
2093  ENSG00000277067       ENST00000623394 ENSE00003744303
2094  ENSG00000277067       ENST00000623394 ENSE00003759476
2095  ENSG00000277067       ENST00000623394 ENSE00003757804
2096  ENSG00000277067       ENST00000623394 ENSE00003760366
2097  ENSG00000277067       ENST00000624310 ENSE00003744303
2098  ENSG00000277067       ENST00000624310 ENSE00003755219
2099  ENSG00000277067       ENST00000624310 ENSE00003758184
2100  ENSG00000277067       ENST00000615804 ENSE00003751287
2101  ENSG00000277067       ENST00000615804 ENSE00003734211
2102  ENSG00000227406       ENST00000444889 ENSE00001765685
2103  ENSG00000227406       ENST00000444889 ENSE00001728994
2104  ENSG00000227406       ENST00000444889 ENSE00001764217
2105  ENSG00000227406       ENST00000444889 ENSE00001631951
2106  ENSG00000227406       ENST00000444889 ENSE00001638845
2107  ENSG00000182362       ENST00000397691 ENSE00003566287
2108  ENSG00000182362       ENST00000397691 ENSE00001302401
2109  ENSG00000182362       ENST00000397691 ENSE00001322578
2110  ENSG00000182362       ENST00000397691 ENSE00001529749
2111  ENSG00000182362       ENST00000397691 ENSE00001529733
2112  ENSG00000182362       ENST00000492864 ENSE00003679893
2113  ENSG00000182362       ENST00000492864 ENSE00001300525
2114  ENSG00000182362       ENST00000492864 ENSE00001884057
2115  ENSG00000182362       ENST00000397692 ENSE00001322578
2116  ENSG00000182362       ENST00000397692 ENSE00001529749
2117  ENSG00000182362       ENST00000397692 ENSE00001529738
2118  ENSG00000182362       ENST00000397692 ENSE00001529737
2119  ENSG00000182362       ENST00000339195 ENSE00003566287
2120  ENSG00000182362       ENST00000339195 ENSE00001322578
2121  ENSG00000182362       ENST00000339195 ENSE00001529749
2122  ENSG00000182362       ENST00000339195 ENSE00001529753
2123  ENSG00000182362       ENST00000329319 ENSE00003566287
2124  ENSG00000182362       ENST00000329319 ENSE00001302401
2125  ENSG00000182362       ENST00000329319 ENSE00001322578
2126  ENSG00000182362       ENST00000329319 ENSE00001529749
2127  ENSG00000182362       ENST00000329319 ENSE00001529753
2128  ENSG00000182362       ENST00000397694 ENSE00001302401
2129  ENSG00000182362       ENST00000397694 ENSE00001322578
2130  ENSG00000182362       ENST00000397694 ENSE00001529738
2131  ENSG00000182362       ENST00000397694 ENSE00001529737
2132  ENSG00000182362       ENST00000397694 ENSE00001529735
2133  ENSG00000182362       ENST00000468924 ENSE00001890878
2134  ENSG00000182362       ENST00000468924 ENSE00003679893
2135  ENSG00000182362       ENST00000468924 ENSE00001879604
2136  ENSG00000182362       ENST00000397701 ENSE00001820637
2137  ENSG00000182362       ENST00000397701 ENSE00003566287
2138  ENSG00000182362       ENST00000397701 ENSE00001302401
2139  ENSG00000182362       ENST00000397701 ENSE00001322578
2140  ENSG00000182362       ENST00000397701 ENSE00001529749
2141  ENSG00000160194       ENST00000460259 ENSE00001933035
2142  ENSG00000160194       ENST00000460259 ENSE00001890968
2143  ENSG00000160194       ENST00000460259 ENSE00001865986
2144  ENSG00000160194       ENST00000460259 ENSE00003654774
2145  ENSG00000160194       ENST00000460259 ENSE00003507608
2146  ENSG00000160194       ENST00000460259 ENSE00003680556
2147  ENSG00000160194       ENST00000354250 ENSE00001947597
2148  ENSG00000160194       ENST00000354250 ENSE00003679113
2149  ENSG00000160194       ENST00000354250 ENSE00003589387
2150  ENSG00000160194       ENST00000354250 ENSE00003614580
2151  ENSG00000160194       ENST00000340344 ENSE00003679113
2152  ENSG00000160194       ENST00000340344 ENSE00001436763
2153  ENSG00000160194       ENST00000340344 ENSE00001352095
2154  ENSG00000160194       ENST00000460740 ENSE00001885628
2155  ENSG00000160194       ENST00000460740 ENSE00001951615
2156  ENSG00000227039       ENST00000609592 ENSE00003710239
2157  ENSG00000227039       ENST00000609592 ENSE00003710484
2158  ENSG00000227039       ENST00000609592 ENSE00003705562
2159  ENSG00000227039       ENST00000610063 ENSE00001617442
2160  ENSG00000227039       ENST00000610063 ENSE00003707190
2161  ENSG00000227039       ENST00000610063 ENSE00003708738
2162  ENSG00000227039       ENST00000608043 ENSE00001617442
2163  ENSG00000227039       ENST00000608043 ENSE00003710787
2164  ENSG00000227039       ENST00000608043 ENSE00003707190
2165  ENSG00000227039       ENST00000608043 ENSE00003705201
2166  ENSG00000227039       ENST00000429132 ENSE00001617442
2167  ENSG00000227039       ENST00000429132 ENSE00001640376
2168  ENSG00000227039       ENST00000429132 ENSE00001598901
2169  ENSG00000227039       ENST00000609694 ENSE00001617442
2170  ENSG00000227039       ENST00000609694 ENSE00001704328
2171  ENSG00000227039       ENST00000609694 ENSE00003702969
2172  ENSG00000227039       ENST00000609694 ENSE00003710787
2173  ENSG00000227039       ENST00000609694 ENSE00003710887
2174  ENSG00000227039       ENST00000441379 ENSE00001790658
2175  ENSG00000227039       ENST00000441379 ENSE00001617442
2176  ENSG00000227039       ENST00000441379 ENSE00001704328
2177  ENSG00000227039       ENST00000441379 ENSE00001605959
2178  ENSG00000236883       ENST00000423276 ENSE00001804657
2179  ENSG00000236883       ENST00000423276 ENSE00001669381
2180  ENSG00000154736       ENST00000284987 ENSE00001017391
2181  ENSG00000154736       ENST00000284987 ENSE00001017390
2182  ENSG00000154736       ENST00000284987 ENSE00001017386
2183  ENSG00000154736       ENST00000284987 ENSE00001017392
2184  ENSG00000154736       ENST00000284987 ENSE00001017389
2185  ENSG00000154736       ENST00000284987 ENSE00001017388
2186  ENSG00000154736       ENST00000284987 ENSE00001017393
2187  ENSG00000154736       ENST00000284987 ENSE00001017387
2188  ENSG00000232777       ENST00000450190 ENSE00001685797
2189  ENSG00000236663       ENST00000424933 ENSE00001715893
2190  ENSG00000236663       ENST00000424933 ENSE00001602659
2191  ENSG00000228120       ENST00000433840 ENSE00001606520
2192  ENSG00000228120       ENST00000433840 ENSE00002229482
2193  ENSG00000228120       ENST00000433840 ENSE00001622616
2194  ENSG00000160202       ENST00000291554 ENSE00001050530
2195  ENSG00000160202       ENST00000291554 ENSE00003509055
2196  ENSG00000160202       ENST00000291554 ENSE00003462823
2197  ENSG00000160202       ENST00000482775 ENSE00001944360
2198  ENSG00000160202       ENST00000482775 ENSE00001890817
2199  ENSG00000160202       ENST00000482775 ENSE00003636164
2200  ENSG00000160202       ENST00000482775 ENSE00003585847
2201  ENSG00000160202       ENST00000398133 ENSE00003509055
2202  ENSG00000160202       ENST00000398133 ENSE00001531761
2203  ENSG00000160202       ENST00000398133 ENSE00001531760
2204  ENSG00000160202       ENST00000398132 ENSE00003509055
2205  ENSG00000160202       ENST00000398132 ENSE00001531759
2206  ENSG00000160202       ENST00000398132 ENSE00001531758
2207  ENSG00000160202       ENST00000468016 ENSE00001809860
2208  ENSG00000160202       ENST00000468016 ENSE00001864083
2209  ENSG00000183255       ENST00000330938 ENSE00003464385
2210  ENSG00000183255       ENST00000330938 ENSE00003589141
2211  ENSG00000183255       ENST00000330938 ENSE00001315456
2212  ENSG00000183255       ENST00000330938 ENSE00001303620
2213  ENSG00000183255       ENST00000330938 ENSE00003496468
2214  ENSG00000183255       ENST00000330938 ENSE00001291155
2215  ENSG00000183255       ENST00000397886 ENSE00003589141
2216  ENSG00000183255       ENST00000397886 ENSE00003496468
2217  ENSG00000183255       ENST00000397886 ENSE00001291155
2218  ENSG00000183255       ENST00000397886 ENSE00001530589
2219  ENSG00000183255       ENST00000397886 ENSE00001932137
2220  ENSG00000183255       ENST00000474737 ENSE00001822465
2221  ENSG00000183255       ENST00000474737 ENSE00003546676
2222  ENSG00000183255       ENST00000474737 ENSE00003679044
2223  ENSG00000183255       ENST00000474737 ENSE00001950421
2224  ENSG00000183255       ENST00000494690 ENSE00003546676
2225  ENSG00000183255       ENST00000494690 ENSE00003679044
2226  ENSG00000183255       ENST00000494690 ENSE00001953116
2227  ENSG00000183255       ENST00000494690 ENSE00001927838
2228  ENSG00000183255       ENST00000494690 ENSE00003531203
2229  ENSG00000183255       ENST00000494690 ENSE00002455661
2230  ENSG00000183255       ENST00000480234 ENSE00003546676
2231  ENSG00000183255       ENST00000480234 ENSE00001927838
2232  ENSG00000183255       ENST00000480234 ENSE00001906465
2233  ENSG00000183255       ENST00000480234 ENSE00001948521
2234  ENSG00000183255       ENST00000445724 ENSE00003464385
2235  ENSG00000183255       ENST00000445724 ENSE00001530597
2236  ENSG00000183255       ENST00000445724 ENSE00002263448
2237  ENSG00000183255       ENST00000397887 ENSE00001924408
2238  ENSG00000183255       ENST00000397887 ENSE00003464385
2239  ENSG00000183255       ENST00000397887 ENSE00003589141
2240  ENSG00000183255       ENST00000397887 ENSE00001315456
2241  ENSG00000227702       ENST00000413718 ENSE00001672060
2242  ENSG00000227702       ENST00000413718 ENSE00001747712
2243  ENSG00000227702       ENST00000413718 ENSE00001704971
2244  ENSG00000235890       ENST00000451035 ENSE00001782279
2245  ENSG00000235890       ENST00000451035 ENSE00001657960
2246  ENSG00000235890       ENST00000451035 ENSE00001762813
2247  ENSG00000235890       ENST00000451035 ENSE00001595085
2248  ENSG00000235890       ENST00000451035 ENSE00001788976
2249  ENSG00000235890       ENST00000451035 ENSE00001789177
2250  ENSG00000235890       ENST00000430181 ENSE00001665245
2251  ENSG00000235890       ENST00000430181 ENSE00001765454
2252  ENSG00000235890       ENST00000430181 ENSE00001595553
2253  ENSG00000221859       ENST00000380095 ENSE00001483712
2254  ENSG00000239415       ENST00000447037 ENSE00001750338
2255  ENSG00000239415       ENST00000447037 ENSE00001666775
2256  ENSG00000239415       ENST00000430259 ENSE00001774125
2257  ENSG00000239415       ENST00000430259 ENSE00001700485
2258  ENSG00000215424       ENST00000590829 ENSE00002823050
2259  ENSG00000215424       ENST00000590829 ENSE00001312905
2260  ENSG00000215424       ENST00000590829 ENSE00002773042
2261  ENSG00000215424       ENST00000591223 ENSE00001312905
2262  ENSG00000215424       ENST00000591223 ENSE00002920131
2263  ENSG00000215424       ENST00000591223 ENSE00002855596
2264  ENSG00000215424       ENST00000414659 ENSE00001312905
2265  ENSG00000215424       ENST00000414659 ENSE00001344241
2266  ENSG00000215424       ENST00000414659 ENSE00001483121
2267  ENSG00000215424       ENST00000414659 ENSE00001667261
2268  ENSG00000215424       ENST00000432735 ENSE00001305889
2269  ENSG00000215424       ENST00000432735 ENSE00001419892
2270  ENSG00000215424       ENST00000432735 ENSE00001793841
2271  ENSG00000215424       ENST00000444998 ENSE00001793841
2272  ENSG00000215424       ENST00000444998 ENSE00001612115
2273  ENSG00000215424       ENST00000455567 ENSE00001312905
2274  ENSG00000215424       ENST00000455567 ENSE00001667261
2275  ENSG00000215424       ENST00000455567 ENSE00001764670
2276  ENSG00000215424       ENST00000421927 ENSE00001631322
2277  ENSG00000215424       ENST00000421927 ENSE00001760389
2278  ENSG00000215424       ENST00000588753 ENSE00002915067
2279  ENSG00000215424       ENST00000588753 ENSE00002781108
2280  ENSG00000215424       ENST00000588753 ENSE00002858811
2281  ENSG00000215424       ENST00000420074 ENSE00001638204
2282  ENSG00000215424       ENST00000420074 ENSE00001608729
2283  ENSG00000160294       ENST00000467026 ENSE00001956545
2284  ENSG00000160294       ENST00000467026 ENSE00003643410
2285  ENSG00000160294       ENST00000467026 ENSE00003688476
2286  ENSG00000160294       ENST00000467026 ENSE00003484738
2287  ENSG00000160294       ENST00000467026 ENSE00003581188
2288  ENSG00000160294       ENST00000467026 ENSE00003526095
2289  ENSG00000160294       ENST00000467026 ENSE00003597990
2290  ENSG00000160294       ENST00000467026 ENSE00003500518
2291  ENSG00000160294       ENST00000467026 ENSE00003482097
2292  ENSG00000160294       ENST00000467026 ENSE00003603723
2293  ENSG00000160294       ENST00000467026 ENSE00003533166
2294  ENSG00000160294       ENST00000467026 ENSE00003463408
2295  ENSG00000160294       ENST00000467026 ENSE00003633023
2296  ENSG00000160294       ENST00000496607 ENSE00003643410
2297  ENSG00000160294       ENST00000496607 ENSE00003688476
2298  ENSG00000160294       ENST00000496607 ENSE00003484738
2299  ENSG00000160294       ENST00000496607 ENSE00003581188
2300  ENSG00000160294       ENST00000496607 ENSE00003526095
2301  ENSG00000160294       ENST00000496607 ENSE00003597990
2302  ENSG00000160294       ENST00000496607 ENSE00003500518
2303  ENSG00000160294       ENST00000496607 ENSE00003482097
2304  ENSG00000160294       ENST00000496607 ENSE00003603723
2305  ENSG00000160294       ENST00000496607 ENSE00003533166
2306  ENSG00000160294       ENST00000496607 ENSE00003463408
2307  ENSG00000160294       ENST00000496607 ENSE00003633023
2308  ENSG00000160294       ENST00000496607 ENSE00001815486
2309  ENSG00000160294       ENST00000496607 ENSE00003634959
2310  ENSG00000160294       ENST00000496607 ENSE00003620264
2311  ENSG00000160294       ENST00000496607 ENSE00003647431
2312  ENSG00000160294       ENST00000496607 ENSE00003667275
2313  ENSG00000160294       ENST00000496607 ENSE00003673707
2314  ENSG00000160294       ENST00000486937 ENSE00003643410
2315  ENSG00000160294       ENST00000486937 ENSE00003688476
2316  ENSG00000160294       ENST00000486937 ENSE00003484738
2317  ENSG00000160294       ENST00000486937 ENSE00003581188
2318  ENSG00000160294       ENST00000486937 ENSE00003500518
2319  ENSG00000160294       ENST00000486937 ENSE00003482097
2320  ENSG00000160294       ENST00000486937 ENSE00003603723
2321  ENSG00000160294       ENST00000486937 ENSE00003533166
2322  ENSG00000160294       ENST00000486937 ENSE00003463408
2323  ENSG00000160294       ENST00000486937 ENSE00003633023
2324  ENSG00000160294       ENST00000486937 ENSE00003634959
2325  ENSG00000160294       ENST00000486937 ENSE00003620264
2326  ENSG00000160294       ENST00000486937 ENSE00003647431
2327  ENSG00000160294       ENST00000486937 ENSE00003667275
2328  ENSG00000160294       ENST00000486937 ENSE00003673707
2329  ENSG00000160294       ENST00000486937 ENSE00001822948
2330  ENSG00000160294       ENST00000486937 ENSE00003561146
2331  ENSG00000160294       ENST00000486937 ENSE00001878149
2332  ENSG00000160294       ENST00000397708 ENSE00001529813
2333  ENSG00000160294       ENST00000397708 ENSE00001529811
2334  ENSG00000160294       ENST00000397708 ENSE00001051219
2335  ENSG00000160294       ENST00000397708 ENSE00001051212
2336  ENSG00000160294       ENST00000397708 ENSE00001051213
2337  ENSG00000160294       ENST00000397708 ENSE00001051232
2338  ENSG00000160294       ENST00000397708 ENSE00001051216
2339  ENSG00000160294       ENST00000397708 ENSE00001051206
2340  ENSG00000160294       ENST00000397708 ENSE00001051226
2341  ENSG00000160294       ENST00000397708 ENSE00001051240
2342  ENSG00000160294       ENST00000397708 ENSE00001051215
2343  ENSG00000160294       ENST00000397708 ENSE00003461146
2344  ENSG00000160294       ENST00000397708 ENSE00003532634
2345  ENSG00000160294       ENST00000397708 ENSE00003620301
2346  ENSG00000160294       ENST00000397708 ENSE00003486931
2347  ENSG00000160294       ENST00000397708 ENSE00003675693
2348  ENSG00000160294       ENST00000397708 ENSE00003458431
2349  ENSG00000160294       ENST00000397708 ENSE00003599023
2350  ENSG00000160294       ENST00000397708 ENSE00003566979
2351  ENSG00000160294       ENST00000397708 ENSE00003506114
2352  ENSG00000160294       ENST00000397708 ENSE00003487436
2353  ENSG00000160294       ENST00000397708 ENSE00003553058
2354  ENSG00000160294       ENST00000397708 ENSE00003572625
2355  ENSG00000160294       ENST00000397708 ENSE00003482081
2356  ENSG00000160294       ENST00000397708 ENSE00003630073
2357  ENSG00000160294       ENST00000397708 ENSE00003459748
2358  ENSG00000160294       ENST00000397708 ENSE00003606597
2359  ENSG00000160294       ENST00000397708 ENSE00003485376
2360  ENSG00000160294       ENST00000397708 ENSE00003650730
2361  ENSG00000160294       ENST00000481113 ENSE00003643410
2362  ENSG00000160294       ENST00000481113 ENSE00003688476
2363  ENSG00000160294       ENST00000481113 ENSE00003484738
2364  ENSG00000160294       ENST00000481113 ENSE00001872826
2365  ENSG00000160294       ENST00000494755 ENSE00001823878
2366  ENSG00000160294       ENST00000494755 ENSE00001843870
2367  ENSG00000160294       ENST00000479557 ENSE00001910988
2368  ENSG00000160294       ENST00000479557 ENSE00001889901
2369  ENSG00000160294       ENST00000426537 ENSE00001615976
2370  ENSG00000160294       ENST00000426537 ENSE00001662047
2371  ENSG00000160294       ENST00000495475 ENSE00001937494
2372  ENSG00000160294       ENST00000495475 ENSE00001879980
2373  ENSG00000160294       ENST00000291688 ENSE00001529811
2374  ENSG00000160294       ENST00000291688 ENSE00001051219
2375  ENSG00000160294       ENST00000291688 ENSE00001051212
2376  ENSG00000160294       ENST00000291688 ENSE00001051213
2377  ENSG00000160294       ENST00000291688 ENSE00001051232
2378  ENSG00000160294       ENST00000291688 ENSE00001051216
2379  ENSG00000160294       ENST00000291688 ENSE00001051206
2380  ENSG00000160294       ENST00000291688 ENSE00001051226
2381  ENSG00000160294       ENST00000291688 ENSE00001051240
2382  ENSG00000160294       ENST00000291688 ENSE00001051215
2383  ENSG00000160294       ENST00000291688 ENSE00003461146
2384  ENSG00000160294       ENST00000291688 ENSE00003532634
2385  ENSG00000160294       ENST00000291688 ENSE00003620301
2386  ENSG00000160294       ENST00000291688 ENSE00003486931
2387  ENSG00000160294       ENST00000291688 ENSE00003675693
2388  ENSG00000160294       ENST00000291688 ENSE00003458431
2389  ENSG00000160294       ENST00000291688 ENSE00003599023
2390  ENSG00000160294       ENST00000291688 ENSE00003566979
2391  ENSG00000160294       ENST00000291688 ENSE00003506114
2392  ENSG00000160294       ENST00000291688 ENSE00003487436
2393  ENSG00000160294       ENST00000291688 ENSE00003553058
2394  ENSG00000160294       ENST00000291688 ENSE00003572625
2395  ENSG00000160294       ENST00000291688 ENSE00003482081
2396  ENSG00000160294       ENST00000291688 ENSE00003630073
2397  ENSG00000160294       ENST00000291688 ENSE00003459748
2398  ENSG00000160294       ENST00000291688 ENSE00003606597
2399  ENSG00000160294       ENST00000291688 ENSE00003485376
2400  ENSG00000160294       ENST00000291688 ENSE00001051222
2401  ENSG00000160199       ENST00000291547 ENSE00001860427
2402  ENSG00000160199       ENST00000291547 ENSE00003491838
2403  ENSG00000160199       ENST00000291547 ENSE00003627186
2404  ENSG00000160199       ENST00000291547 ENSE00003513802
2405  ENSG00000160199       ENST00000291547 ENSE00003738221
2406  ENSG00000160199       ENST00000291547 ENSE00003551171
2407  ENSG00000160199       ENST00000291547 ENSE00003597493
2408  ENSG00000160199       ENST00000291547 ENSE00003520581
2409  ENSG00000160199       ENST00000291547 ENSE00003699223
2410  ENSG00000160199       ENST00000291547 ENSE00003700349
2411  ENSG00000160199       ENST00000291547 ENSE00001050477
2412  ENSG00000160199       ENST00000418336 ENSE00003462056
2413  ENSG00000160199       ENST00000418336 ENSE00002563670
2414  ENSG00000160199       ENST00000418336 ENSE00002537972
2415  ENSG00000160199       ENST00000480179 ENSE00003462056
2416  ENSG00000160199       ENST00000480179 ENSE00003637651
2417  ENSG00000160199       ENST00000480179 ENSE00003576614
2418  ENSG00000160199       ENST00000480179 ENSE00003624412
2419  ENSG00000160199       ENST00000480179 ENSE00002508807
2420  ENSG00000160199       ENST00000480179 ENSE00001951813
2421  ENSG00000160199       ENST00000456957 ENSE00002553706
2422  ENSG00000160199       ENST00000456957 ENSE00002565116
2423  ENSG00000160199       ENST00000560448 ENSE00003627186
2424  ENSG00000160199       ENST00000560448 ENSE00003601994
2425  ENSG00000160199       ENST00000560448 ENSE00003566766
2426  ENSG00000160199       ENST00000560448 ENSE00003701920
2427  ENSG00000160199       ENST00000560448 ENSE00003698867
2428  ENSG00000160199       ENST00000560448 ENSE00002562979
2429  ENSG00000160199       ENST00000560448 ENSE00003521625
2430  ENSG00000160199       ENST00000560448 ENSE00003695650
2431  ENSG00000160199       ENST00000560448 ENSE00003549078
2432  ENSG00000160199       ENST00000607049 ENSE00003701920
2433  ENSG00000160199       ENST00000607049 ENSE00003701093
2434  ENSG00000160199       ENST00000607049 ENSE00003699704
2435  ENSG00000160199       ENST00000607049 ENSE00002537572
2436  ENSG00000160199       ENST00000557820 ENSE00003701920
2437  ENSG00000160199       ENST00000557820 ENSE00003698867
2438  ENSG00000160199       ENST00000557820 ENSE00003695650
2439  ENSG00000160199       ENST00000557820 ENSE00002540015
2440  ENSG00000160199       ENST00000557820 ENSE00002539137
2441  ENSG00000160199       ENST00000474336 ENSE00003698867
2442  ENSG00000160199       ENST00000474336 ENSE00001887167
2443  ENSG00000160199       ENST00000474336 ENSE00001931642
2444  ENSG00000160199       ENST00000607150 ENSE00003698867
2445  ENSG00000160199       ENST00000607150 ENSE00003697340
2446  ENSG00000160199       ENST00000607150 ENSE00003695687
2447  ENSG00000160199       ENST00000558955 ENSE00003695650
2448  ENSG00000160199       ENST00000558955 ENSE00002563068
2449  ENSG00000160199       ENST00000558955 ENSE00003699728
2450  ENSG00000160199       ENST00000432907 ENSE00001860427
2451  ENSG00000160199       ENST00000432907 ENSE00003551171
2452  ENSG00000160199       ENST00000432907 ENSE00003597493
2453  ENSG00000160199       ENST00000432907 ENSE00003520581
2454  ENSG00000160199       ENST00000432907 ENSE00003699223
2455  ENSG00000160199       ENST00000432907 ENSE00003700349
2456  ENSG00000160199       ENST00000432907 ENSE00003462056
2457  ENSG00000160199       ENST00000432907 ENSE00003637651
2458  ENSG00000160199       ENST00000432907 ENSE00003738006
2459  ENSG00000160199       ENST00000432907 ENSE00003572037
2460  ENSG00000232401       ENST00000432830 ENSE00001777924
2461  ENSG00000232401       ENST00000432830 ENSE00001623179
2462  ENSG00000232401       ENST00000432830 ENSE00001768569
2463  ENSG00000223400       ENST00000418874 ENSE00001613842
2464  ENSG00000223400       ENST00000418874 ENSE00001647667
2465  ENSG00000232806       ENST00000415820 ENSE00001720802
2466  ENSG00000232806       ENST00000415820 ENSE00001665375
2467  ENSG00000232806       ENST00000415820 ENSE00001653250
2468  ENSG00000223692       ENST00000442434 ENSE00001740202
2469  ENSG00000223692       ENST00000442434 ENSE00001790677
2470  ENSG00000223692       ENST00000442434 ENSE00001765964
2471  ENSG00000223692       ENST00000442434 ENSE00001681675
2472  ENSG00000175894       ENST00000323084 ENSE00001423221
2473  ENSG00000175894       ENST00000323084 ENSE00003535905
2474  ENSG00000175894       ENST00000323084 ENSE00001284021
2475  ENSG00000175894       ENST00000323084 ENSE00001283963
2476  ENSG00000175894       ENST00000323084 ENSE00001284011
2477  ENSG00000175894       ENST00000323084 ENSE00001284001
2478  ENSG00000175894       ENST00000323084 ENSE00001283993
2479  ENSG00000175894       ENST00000323084 ENSE00001283944
2480  ENSG00000175894       ENST00000323084 ENSE00001283979
2481  ENSG00000175894       ENST00000323084 ENSE00001284037
2482  ENSG00000175894       ENST00000323084 ENSE00001283969
2483  ENSG00000175894       ENST00000323084 ENSE00001837326
2484  ENSG00000175894       ENST00000397916 ENSE00001284021
2485  ENSG00000175894       ENST00000397916 ENSE00001283963
2486  ENSG00000175894       ENST00000397916 ENSE00001284011
2487  ENSG00000175894       ENST00000397916 ENSE00001284001
2488  ENSG00000175894       ENST00000397916 ENSE00001283993
2489  ENSG00000175894       ENST00000397916 ENSE00001283944
2490  ENSG00000175894       ENST00000397916 ENSE00001283979
2491  ENSG00000175894       ENST00000397916 ENSE00001284037
2492  ENSG00000175894       ENST00000397916 ENSE00001530728
2493  ENSG00000175894       ENST00000397916 ENSE00003694712
2494  ENSG00000175894       ENST00000397916 ENSE00001530723
2495  ENSG00000175894       ENST00000614657 ENSE00001284021
2496  ENSG00000175894       ENST00000614657 ENSE00001283963
2497  ENSG00000175894       ENST00000614657 ENSE00001284011
2498  ENSG00000175894       ENST00000614657 ENSE00001284001
2499  ENSG00000175894       ENST00000614657 ENSE00001283993
2500  ENSG00000175894       ENST00000614657 ENSE00001283944
2501  ENSG00000175894       ENST00000614657 ENSE00001283979
2502  ENSG00000175894       ENST00000614657 ENSE00001284037
2503  ENSG00000175894       ENST00000614657 ENSE00001283969
2504  ENSG00000175894       ENST00000614657 ENSE00003694712
2505  ENSG00000175894       ENST00000614657 ENSE00003738390
2506  ENSG00000175894       ENST00000614657 ENSE00003718568
2507  ENSG00000175894       ENST00000614657 ENSE00003727284
2508  ENSG00000175894       ENST00000613245 ENSE00001423221
2509  ENSG00000175894       ENST00000613245 ENSE00003535905
2510  ENSG00000175894       ENST00000613245 ENSE00001283993
2511  ENSG00000175894       ENST00000613245 ENSE00001283944
2512  ENSG00000175894       ENST00000613245 ENSE00001283979
2513  ENSG00000175894       ENST00000613245 ENSE00001284037
2514  ENSG00000175894       ENST00000613245 ENSE00001283969
2515  ENSG00000175894       ENST00000613245 ENSE00003727284
2516  ENSG00000175894       ENST00000613245 ENSE00003718356
2517  ENSG00000175894       ENST00000613245 ENSE00003732571
2518  ENSG00000215455       ENST00000400375 ENSE00001542634
2519  ENSG00000280441       ENST00000623860 ENSE00003778050
2520  ENSG00000280441       ENST00000623860 ENSE00003757769
2521  ENSG00000280441       ENST00000623860 ENSE00003756013
2522  ENSG00000280441       ENST00000623860 ENSE00003755168
2523  ENSG00000280441       ENST00000623860 ENSE00003757460
2524  ENSG00000280441       ENST00000623860 ENSE00003755829
2525  ENSG00000280441       ENST00000623860 ENSE00003755242
2526  ENSG00000224649       ENST00000430001 ENSE00001612552
2527  ENSG00000224649       ENST00000430001 ENSE00001626475
2528  ENSG00000274790       ENST00000616522 ENSE00003748067
2529  ENSG00000207503       ENST00000384772 ENSE00001807952
2530  ENSG00000275166       ENST00000622292 ENSE00003738277
2531  ENSG00000252963       ENST00000517154 ENSE00002089431
2532  ENSG00000215454       ENST00000400374 ENSE00001542630
2533  ENSG00000215454       ENST00000622352 ENSE00003731192
2534  ENSG00000215454       ENST00000622352 ENSE00003802553
2535  ENSG00000215454       ENST00000622352 ENSE00003751886
2536  ENSG00000215454       ENST00000622352 ENSE00003811422
2537  ENSG00000215454       ENST00000622352 ENSE00003739004
2538  ENSG00000215454       ENST00000616689 ENSE00003803406
2539  ENSG00000215454       ENST00000616689 ENSE00003801807
2540  ENSG00000215454       ENST00000616689 ENSE00003714391
2541  ENSG00000215454       ENST00000616689 ENSE00003742381
2542  ENSG00000229880       ENST00000435590 ENSE00000768001
2543  ENSG00000207863       ENST00000385128 ENSE00001500134
2544  ENSG00000276546       ENST00000619005 ENSE00003732689
2545  ENSG00000201984       ENST00000365114 ENSE00001807733
2546  ENSG00000266692       ENST00000581669 ENSE00002724833
2547  ENSG00000221837       ENST00000397911 ENSE00001530698
2548  ENSG00000221837       ENST00000484861 ENSE00001912554
2549  ENSG00000221837       ENST00000484861 ENSE00001891028
2550  ENSG00000221837       ENST00000616529 ENSE00003737172
2551  ENSG00000221837       ENST00000616529 ENSE00003712036
2552  ENSG00000221837       ENST00000616529 ENSE00003726178
2553  ENSG00000160200       ENST00000461686 ENSE00001908507
2554  ENSG00000160200       ENST00000461686 ENSE00003469164
2555  ENSG00000160200       ENST00000461686 ENSE00003525847
2556  ENSG00000160200       ENST00000461686 ENSE00003615145
2557  ENSG00000160200       ENST00000461686 ENSE00003607098
2558  ENSG00000160200       ENST00000461686 ENSE00003667754
2559  ENSG00000160200       ENST00000461686 ENSE00003680209
2560  ENSG00000160200       ENST00000461686 ENSE00003459939
2561  ENSG00000160200       ENST00000461686 ENSE00003561958
2562  ENSG00000160200       ENST00000461686 ENSE00003666289
2563  ENSG00000160200       ENST00000461686 ENSE00003616603
2564  ENSG00000160200       ENST00000461686 ENSE00003497276
2565  ENSG00000160200       ENST00000461686 ENSE00003566190
2566  ENSG00000160200       ENST00000461686 ENSE00003609272
2567  ENSG00000160200       ENST00000398158 ENSE00001531894
2568  ENSG00000160200       ENST00000398158 ENSE00001531893
2569  ENSG00000160200       ENST00000398158 ENSE00003478977
2570  ENSG00000160200       ENST00000398158 ENSE00003589198
2571  ENSG00000160200       ENST00000398158 ENSE00003692007
2572  ENSG00000160200       ENST00000398158 ENSE00003790203
2573  ENSG00000160200       ENST00000398158 ENSE00003666431
2574  ENSG00000160200       ENST00000398158 ENSE00003566517
2575  ENSG00000160200       ENST00000398158 ENSE00003498748
2576  ENSG00000160200       ENST00000398158 ENSE00003462667
2577  ENSG00000160200       ENST00000398158 ENSE00003646251
2578  ENSG00000160200       ENST00000398158 ENSE00003525308
2579  ENSG00000160200       ENST00000398158 ENSE00003682750
2580  ENSG00000160200       ENST00000398158 ENSE00003646800
2581  ENSG00000160200       ENST00000398158 ENSE00003601456
2582  ENSG00000160200       ENST00000398158 ENSE00003643599
2583  ENSG00000160200       ENST00000398158 ENSE00003511439
2584  ENSG00000160200       ENST00000398165 ENSE00003478977
2585  ENSG00000160200       ENST00000398165 ENSE00003589198
2586  ENSG00000160200       ENST00000398165 ENSE00003692007
2587  ENSG00000160200       ENST00000398165 ENSE00003790203
2588  ENSG00000160200       ENST00000398165 ENSE00003666431
2589  ENSG00000160200       ENST00000398165 ENSE00003566517
2590  ENSG00000160200       ENST00000398165 ENSE00003498748
2591  ENSG00000160200       ENST00000398165 ENSE00003462667
2592  ENSG00000160200       ENST00000398165 ENSE00003646251
2593  ENSG00000160200       ENST00000398165 ENSE00003525308
2594  ENSG00000160200       ENST00000398165 ENSE00003682750
2595  ENSG00000160200       ENST00000398165 ENSE00003646800
2596  ENSG00000160200       ENST00000398165 ENSE00003601456
2597  ENSG00000160200       ENST00000398165 ENSE00003643599
2598  ENSG00000160200       ENST00000398165 ENSE00003511439
2599  ENSG00000160200       ENST00000398165 ENSE00001702250
2600  ENSG00000160200       ENST00000398165 ENSE00001270928
2601  ENSG00000160200       ENST00000359624 ENSE00003478977
2602  ENSG00000160200       ENST00000359624 ENSE00003589198
2603  ENSG00000160200       ENST00000359624 ENSE00003692007
2604  ENSG00000160200       ENST00000359624 ENSE00003790203
2605  ENSG00000160200       ENST00000359624 ENSE00003666431
2606  ENSG00000160200       ENST00000359624 ENSE00003566517
2607  ENSG00000160200       ENST00000359624 ENSE00003498748
2608  ENSG00000160200       ENST00000359624 ENSE00003462667
2609  ENSG00000160200       ENST00000359624 ENSE00003646251
2610  ENSG00000160200       ENST00000359624 ENSE00003525308
2611  ENSG00000160200       ENST00000359624 ENSE00003682750
2612  ENSG00000160200       ENST00000359624 ENSE00003646800
2613  ENSG00000160200       ENST00000359624 ENSE00003601456
2614  ENSG00000160200       ENST00000359624 ENSE00003643599
2615  ENSG00000160200       ENST00000359624 ENSE00001270928
2616  ENSG00000160200       ENST00000359624 ENSE00001413822
2617  ENSG00000160200       ENST00000359624 ENSE00001050504
2618  ENSG00000160200       ENST00000359624 ENSE00001424612
2619  ENSG00000160200       ENST00000352178 ENSE00003478977
2620  ENSG00000160200       ENST00000352178 ENSE00003589198
2621  ENSG00000160200       ENST00000352178 ENSE00003692007
2622  ENSG00000160200       ENST00000352178 ENSE00003790203
2623  ENSG00000160200       ENST00000352178 ENSE00003666431
2624  ENSG00000160200       ENST00000352178 ENSE00003566517
2625  ENSG00000160200       ENST00000352178 ENSE00003498748
2626  ENSG00000160200       ENST00000352178 ENSE00003462667
2627  ENSG00000160200       ENST00000352178 ENSE00003646251
2628  ENSG00000160200       ENST00000352178 ENSE00003525308
2629  ENSG00000160200       ENST00000352178 ENSE00003682750
2630  ENSG00000160200       ENST00000352178 ENSE00003646800
2631  ENSG00000160200       ENST00000352178 ENSE00003601456
2632  ENSG00000160200       ENST00000352178 ENSE00003643599
2633  ENSG00000160200       ENST00000352178 ENSE00003511439
2634  ENSG00000160200       ENST00000352178 ENSE00001270928
2635  ENSG00000160200       ENST00000352178 ENSE00001531915
2636  ENSG00000160200       ENST00000451248 ENSE00003601456
2637  ENSG00000160200       ENST00000451248 ENSE00003643599
2638  ENSG00000160200       ENST00000451248 ENSE00001596615
2639  ENSG00000160200       ENST00000451248 ENSE00001367761
2640  ENSG00000160200       ENST00000451248 ENSE00001611563
2641  ENSG00000160200       ENST00000462349 ENSE00003616603
2642  ENSG00000160200       ENST00000462349 ENSE00003497276
2643  ENSG00000160200       ENST00000462349 ENSE00003566190
2644  ENSG00000160200       ENST00000462349 ENSE00001863234
2645  ENSG00000160200       ENST00000462349 ENSE00001896483
2646  ENSG00000160200       ENST00000491776 ENSE00003666289
2647  ENSG00000160200       ENST00000491776 ENSE00003616603
2648  ENSG00000160200       ENST00000491776 ENSE00003497276
2649  ENSG00000160200       ENST00000491776 ENSE00003566190
2650  ENSG00000160200       ENST00000491776 ENSE00001826173
2651  ENSG00000160200       ENST00000491776 ENSE00001924222
2652  ENSG00000160200       ENST00000458223 ENSE00003601456
2653  ENSG00000160200       ENST00000458223 ENSE00003643599
2654  ENSG00000160200       ENST00000458223 ENSE00001367761
2655  ENSG00000160200       ENST00000458223 ENSE00001628373
2656  ENSG00000160200       ENST00000458223 ENSE00001630945
2657  ENSG00000160200       ENST00000430013 ENSE00003525308
2658  ENSG00000160200       ENST00000430013 ENSE00003682750
2659  ENSG00000160200       ENST00000430013 ENSE00003646800
2660  ENSG00000160200       ENST00000430013 ENSE00003601456
2661  ENSG00000160200       ENST00000430013 ENSE00003643599
2662  ENSG00000160200       ENST00000430013 ENSE00001367761
2663  ENSG00000160200       ENST00000430013 ENSE00001772125
2664  ENSG00000160200       ENST00000496485 ENSE00003680209
2665  ENSG00000160200       ENST00000496485 ENSE00003459939
2666  ENSG00000160200       ENST00000496485 ENSE00003561958
2667  ENSG00000160200       ENST00000496485 ENSE00001949697
2668  ENSG00000160200       ENST00000496485 ENSE00001946945
2669  ENSG00000160200       ENST00000486098 ENSE00001842478
2670  ENSG00000160200       ENST00000486098 ENSE00001905316
2671  ENSG00000160200       ENST00000441030 ENSE00003478977
2672  ENSG00000160200       ENST00000441030 ENSE00003589198
2673  ENSG00000160200       ENST00000441030 ENSE00003692007
2674  ENSG00000160200       ENST00000441030 ENSE00003790203
2675  ENSG00000160200       ENST00000441030 ENSE00001270928
2676  ENSG00000160200       ENST00000441030 ENSE00001744053
2677  ENSG00000160200       ENST00000470912 ENSE00003469164
2678  ENSG00000160200       ENST00000470912 ENSE00001702250
2679  ENSG00000160200       ENST00000470912 ENSE00001270928
2680  ENSG00000160200       ENST00000470912 ENSE00003669131
2681  ENSG00000160200       ENST00000470912 ENSE00003594354
2682  ENSG00000160200       ENST00000470912 ENSE00001942914
2683  ENSG00000160200       ENST00000465732 ENSE00001270928
2684  ENSG00000160200       ENST00000465732 ENSE00003669131
2685  ENSG00000160200       ENST00000465732 ENSE00001826787
2686  ENSG00000160200       ENST00000465732 ENSE00001889312
2687  ENSG00000160200       ENST00000488526 ENSE00003669131
2688  ENSG00000160200       ENST00000488526 ENSE00001953424
2689  ENSG00000160200       ENST00000488526 ENSE00001822201
2690  ENSG00000160200       ENST00000478709 ENSE00001879838
2691  ENSG00000160200       ENST00000478709 ENSE00001946214
2692  ENSG00000228137       ENST00000444966 ENSE00001791667
2693  ENSG00000228137       ENST00000444966 ENSE00001740737
2694  ENSG00000230366       ENST00000581640 ENSE00001725341
2695  ENSG00000230366       ENST00000581640 ENSE00001775785
2696  ENSG00000230366       ENST00000581640 ENSE00002721013
2697  ENSG00000230366       ENST00000581640 ENSE00002730956
2698  ENSG00000230366       ENST00000581640 ENSE00002712199
2699  ENSG00000230366       ENST00000578829 ENSE00001725341
2700  ENSG00000230366       ENST00000578829 ENSE00001775785
2701  ENSG00000230366       ENST00000578829 ENSE00002693074
2702  ENSG00000230366       ENST00000578829 ENSE00002698248
2703  ENSG00000230366       ENST00000585273 ENSE00001725341
2704  ENSG00000230366       ENST00000585273 ENSE00001775785
2705  ENSG00000230366       ENST00000585273 ENSE00002730956
2706  ENSG00000230366       ENST00000585273 ENSE00002693074
2707  ENSG00000230366       ENST00000585273 ENSE00002723329
2708  ENSG00000230366       ENST00000584840 ENSE00001725341
2709  ENSG00000230366       ENST00000584840 ENSE00001775785
2710  ENSG00000230366       ENST00000584840 ENSE00002730956
2711  ENSG00000230366       ENST00000584840 ENSE00002685409
2712  ENSG00000230366       ENST00000454482 ENSE00001725341
2713  ENSG00000230366       ENST00000454482 ENSE00001775785
2714  ENSG00000230366       ENST00000454482 ENSE00001786499
2715  ENSG00000157538       ENST00000497493 ENSE00001863158
2716  ENSG00000157538       ENST00000497493 ENSE00001838101
2717  ENSG00000157538       ENST00000309117 ENSE00001535907
2718  ENSG00000157538       ENST00000309117 ENSE00003523339
2719  ENSG00000157538       ENST00000309117 ENSE00003458727
2720  ENSG00000157538       ENST00000309117 ENSE00003520824
2721  ENSG00000157538       ENST00000309117 ENSE00003505095
2722  ENSG00000157538       ENST00000309117 ENSE00003615492
2723  ENSG00000157538       ENST00000309117 ENSE00003635629
2724  ENSG00000157538       ENST00000309117 ENSE00003490386
2725  ENSG00000157538       ENST00000399000 ENSE00001814007
2726  ENSG00000157538       ENST00000399000 ENSE00003679523
2727  ENSG00000157538       ENST00000399000 ENSE00003569704
2728  ENSG00000157538       ENST00000399000 ENSE00003609994
2729  ENSG00000157538       ENST00000399000 ENSE00001851352
2730  ENSG00000157538       ENST00000399000 ENSE00001825203
2731  ENSG00000157538       ENST00000399000 ENSE00001847806
2732  ENSG00000157538       ENST00000399000 ENSE00003690629
2733  ENSG00000157538       ENST00000399000 ENSE00003642305
2734  ENSG00000157538       ENST00000399000 ENSE00003619075
2735  ENSG00000157538       ENST00000399001 ENSE00003505095
2736  ENSG00000157538       ENST00000399001 ENSE00003615492
2737  ENSG00000157538       ENST00000399001 ENSE00003635629
2738  ENSG00000157538       ENST00000399001 ENSE00001535918
2739  ENSG00000157538       ENST00000399001 ENSE00001535917
2740  ENSG00000157538       ENST00000476950 ENSE00003523339
2741  ENSG00000157538       ENST00000476950 ENSE00003458727
2742  ENSG00000157538       ENST00000476950 ENSE00003505095
2743  ENSG00000157538       ENST00000476950 ENSE00003615492
2744  ENSG00000157538       ENST00000476950 ENSE00003635629
2745  ENSG00000157538       ENST00000476950 ENSE00001870537
2746  ENSG00000157538       ENST00000476950 ENSE00001930684
2747  ENSG00000157538       ENST00000488368 ENSE00003679523
2748  ENSG00000157538       ENST00000488368 ENSE00003569704
2749  ENSG00000157538       ENST00000488368 ENSE00003609994
2750  ENSG00000157538       ENST00000488368 ENSE00003690629
2751  ENSG00000157538       ENST00000488368 ENSE00003642305
2752  ENSG00000157538       ENST00000488368 ENSE00001879923
2753  ENSG00000157538       ENST00000488368 ENSE00001901807
2754  ENSG00000157538       ENST00000488368 ENSE00003590920
2755  ENSG00000157538       ENST00000488368 ENSE00001919170
2756  ENSG00000157538       ENST00000398998 ENSE00001535907
2757  ENSG00000157538       ENST00000398998 ENSE00003458727
2758  ENSG00000157538       ENST00000398998 ENSE00003520824
2759  ENSG00000157538       ENST00000398998 ENSE00003505095
2760  ENSG00000157538       ENST00000398998 ENSE00003615492
2761  ENSG00000157538       ENST00000398998 ENSE00003635629
2762  ENSG00000157538       ENST00000398998 ENSE00001535905
2763  ENSG00000157538       ENST00000495858 ENSE00003609994
2764  ENSG00000157538       ENST00000495858 ENSE00003590920
2765  ENSG00000157538       ENST00000495858 ENSE00001889967
2766  ENSG00000157538       ENST00000495858 ENSE00001952028
2767  ENSG00000157538       ENST00000480452 ENSE00003679523
2768  ENSG00000157538       ENST00000480452 ENSE00003569704
2769  ENSG00000157538       ENST00000480452 ENSE00001823421
2770  ENSG00000157538       ENST00000480452 ENSE00001922878
2771  ENSG00000157538       ENST00000475009 ENSE00003679523
2772  ENSG00000157538       ENST00000475009 ENSE00001948394
2773  ENSG00000157538       ENST00000475009 ENSE00001921742
2774  ENSG00000157538       ENST00000492514 ENSE00001903216
2775  ENSG00000157538       ENST00000492514 ENSE00001843513
2776  ENSG00000157538       ENST00000462467 ENSE00001837948
2777  ENSG00000157538       ENST00000462467 ENSE00001892436
2778  ENSG00000157538       ENST00000498789 ENSE00001892436
2779  ENSG00000157538       ENST00000498789 ENSE00001897034
2780  ENSG00000221398       ENST00000408471 ENSE00001565106
2781  ENSG00000277437       ENST00000614492 ENSE00003754026
2782  ENSG00000275167       ENST00000611994 ENSE00003717901
2783  ENSG00000227698       ENST00000432411 ENSE00001721524
2784  ENSG00000227698       ENST00000432411 ENSE00001797065
2785  ENSG00000227698       ENST00000432411 ENSE00001739053
2786  ENSG00000241123       ENST00000400372 ENSE00001542625
2787  ENSG00000242553       ENST00000440629 ENSE00001611756
2788  ENSG00000242553       ENST00000440629 ENSE00001775751
2789  ENSG00000232698       ENST00000423967 ENSE00001685278
2790  ENSG00000232698       ENST00000423967 ENSE00001758001
2791  ENSG00000224427       ENST00000444036 ENSE00001800916
2792  ENSG00000154654       ENST00000400546 ENSE00001543472
2793  ENSG00000154654       ENST00000400546 ENSE00003496361
2794  ENSG00000154654       ENST00000400546 ENSE00003691834
2795  ENSG00000154654       ENST00000400546 ENSE00003484151
2796  ENSG00000154654       ENST00000400546 ENSE00003667449
2797  ENSG00000154654       ENST00000400546 ENSE00003570848
2798  ENSG00000154654       ENST00000400546 ENSE00003633427
2799  ENSG00000154654       ENST00000400546 ENSE00001017033
2800  ENSG00000154654       ENST00000400546 ENSE00001017041
2801  ENSG00000154654       ENST00000400546 ENSE00001017045
2802  ENSG00000154654       ENST00000400546 ENSE00001017052
2803  ENSG00000154654       ENST00000400546 ENSE00001017031
2804  ENSG00000154654       ENST00000400546 ENSE00003566319
2805  ENSG00000154654       ENST00000400546 ENSE00003613335
2806  ENSG00000154654       ENST00000400546 ENSE00001017035
2807  ENSG00000154654       ENST00000400546 ENSE00001017048
2808  ENSG00000154654       ENST00000400546 ENSE00001017044
2809  ENSG00000154654       ENST00000400546 ENSE00001543443
2810  ENSG00000154654       ENST00000486367 ENSE00001889667
2811  ENSG00000154654       ENST00000486367 ENSE00003486515
2812  ENSG00000154654       ENST00000486367 ENSE00003459285
2813  ENSG00000154654       ENST00000486367 ENSE00003462661
2814  ENSG00000154654       ENST00000486367 ENSE00001932067
2815  ENSG00000154654       ENST00000461281 ENSE00001957208
2816  ENSG00000154654       ENST00000461281 ENSE00003471779
2817  ENSG00000154654       ENST00000461281 ENSE00003613854
2818  ENSG00000154654       ENST00000461281 ENSE00003577791
2819  ENSG00000154654       ENST00000461281 ENSE00001839401
2820  ENSG00000154654       ENST00000484983 ENSE00001828379
2821  ENSG00000154654       ENST00000484983 ENSE00003546575
2822  ENSG00000154654       ENST00000484983 ENSE00003567949
2823  ENSG00000154654       ENST00000284894 ENSE00003691834
2824  ENSG00000154654       ENST00000284894 ENSE00003484151
2825  ENSG00000154654       ENST00000284894 ENSE00003667449
2826  ENSG00000154654       ENST00000284894 ENSE00003570848
2827  ENSG00000154654       ENST00000284894 ENSE00003633427
2828  ENSG00000154654       ENST00000284894 ENSE00001017033
2829  ENSG00000154654       ENST00000284894 ENSE00001017041
2830  ENSG00000154654       ENST00000284894 ENSE00001017045
2831  ENSG00000154654       ENST00000284894 ENSE00001017052
2832  ENSG00000154654       ENST00000284894 ENSE00001017031
2833  ENSG00000154654       ENST00000284894 ENSE00003566319
2834  ENSG00000154654       ENST00000284894 ENSE00003613335
2835  ENSG00000154654       ENST00000284894 ENSE00001017035
2836  ENSG00000154654       ENST00000284894 ENSE00001017048
2837  ENSG00000154654       ENST00000284894 ENSE00001017044
2838  ENSG00000154654       ENST00000284894 ENSE00003749383
2839  ENSG00000154654       ENST00000284894 ENSE00001315726
2840  ENSG00000230212       ENST00000535199 ENSE00002324295
2841  ENSG00000230212       ENST00000535199 ENSE00002234089
2842  ENSG00000230212       ENST00000535199 ENSE00002675369
2843  ENSG00000230212       ENST00000535199 ENSE00002205771
2844  ENSG00000230212       ENST00000415147 ENSE00002675369
2845  ENSG00000230212       ENST00000415147 ENSE00001597545
2846  ENSG00000233393       ENST00000422473 ENSE00001713087
2847  ENSG00000233393       ENST00000422473 ENSE00001723606
2848  ENSG00000214889       ENST00000419943 ENSE00001795815
2849  ENSG00000205581       ENST00000288344 ENSE00001705853
2850  ENSG00000205581       ENST00000288344 ENSE00003552745
2851  ENSG00000205581       ENST00000288344 ENSE00003585321
2852  ENSG00000205581       ENST00000288344 ENSE00003605975
2853  ENSG00000205581       ENST00000288344 ENSE00003676815
2854  ENSG00000205581       ENST00000288344 ENSE00003601648
2855  ENSG00000205581       ENST00000288344 ENSE00003686823
2856  ENSG00000205581       ENST00000486741 ENSE00003686823
2857  ENSG00000205581       ENST00000486741 ENSE00001643983
2858  ENSG00000205581       ENST00000486741 ENSE00003669232
2859  ENSG00000205581       ENST00000486741 ENSE00003627640
2860  ENSG00000205581       ENST00000486741 ENSE00001898923
2861  ENSG00000205581       ENST00000431390 ENSE00003552745
2862  ENSG00000205581       ENST00000431390 ENSE00003585321
2863  ENSG00000205581       ENST00000431390 ENSE00003605975
2864  ENSG00000205581       ENST00000431390 ENSE00003601648
2865  ENSG00000205581       ENST00000431390 ENSE00003686823
2866  ENSG00000205581       ENST00000431390 ENSE00001659207
2867  ENSG00000205581       ENST00000431390 ENSE00001642656
2868  ENSG00000205581       ENST00000431390 ENSE00003493302
2869  ENSG00000205581       ENST00000380749 ENSE00003552745
2870  ENSG00000205581       ENST00000380749 ENSE00003585321
2871  ENSG00000205581       ENST00000380749 ENSE00003605975
2872  ENSG00000205581       ENST00000380749 ENSE00001942039
2873  ENSG00000205581       ENST00000380749 ENSE00003532954
2874  ENSG00000205581       ENST00000380749 ENSE00003659677
2875  ENSG00000205581       ENST00000492280 ENSE00003601648
2876  ENSG00000205581       ENST00000492280 ENSE00003686823
2877  ENSG00000205581       ENST00000492280 ENSE00003669232
2878  ENSG00000205581       ENST00000492280 ENSE00003627640
2879  ENSG00000205581       ENST00000492280 ENSE00001942976
2880  ENSG00000205581       ENST00000492280 ENSE00003613784
2881  ENSG00000205581       ENST00000492280 ENSE00003485728
2882  ENSG00000205581       ENST00000492280 ENSE00001930581
2883  ENSG00000205581       ENST00000436324 ENSE00003552745
2884  ENSG00000205581       ENST00000436324 ENSE00003585321
2885  ENSG00000205581       ENST00000436324 ENSE00003605975
2886  ENSG00000205581       ENST00000436324 ENSE00003601648
2887  ENSG00000205581       ENST00000436324 ENSE00001599611
2888  ENSG00000205581       ENST00000436324 ENSE00003550272
2889  ENSG00000205581       ENST00000436324 ENSE00001726652
2890  ENSG00000205581       ENST00000380748 ENSE00003552745
2891  ENSG00000205581       ENST00000380748 ENSE00003605975
2892  ENSG00000205581       ENST00000380748 ENSE00003532954
2893  ENSG00000205581       ENST00000380748 ENSE00001486104
2894  ENSG00000205581       ENST00000380748 ENSE00001486102
2895  ENSG00000205581       ENST00000419378 ENSE00003552745
2896  ENSG00000205581       ENST00000419378 ENSE00003585321
2897  ENSG00000205581       ENST00000419378 ENSE00003605975
2898  ENSG00000205581       ENST00000419378 ENSE00003601648
2899  ENSG00000205581       ENST00000419378 ENSE00001642656
2900  ENSG00000205581       ENST00000419378 ENSE00001667562
2901  ENSG00000205581       ENST00000419378 ENSE00001740454
2902  ENSG00000205581       ENST00000489072 ENSE00003601648
2903  ENSG00000205581       ENST00000489072 ENSE00003627640
2904  ENSG00000205581       ENST00000489072 ENSE00003493302
2905  ENSG00000205581       ENST00000489072 ENSE00003613784
2906  ENSG00000205581       ENST00000489072 ENSE00001884218
2907  ENSG00000205581       ENST00000489072 ENSE00001820349
2908  ENSG00000205581       ENST00000482192 ENSE00003601648
2909  ENSG00000205581       ENST00000482192 ENSE00003627640
2910  ENSG00000205581       ENST00000482192 ENSE00003613784
2911  ENSG00000205581       ENST00000482192 ENSE00003485728
2912  ENSG00000205581       ENST00000482192 ENSE00001875720
2913  ENSG00000205581       ENST00000482192 ENSE00001699401
2914  ENSG00000205581       ENST00000482192 ENSE00001895283
2915  ENSG00000205581       ENST00000380747 ENSE00003552745
2916  ENSG00000205581       ENST00000380747 ENSE00003585321
2917  ENSG00000205581       ENST00000380747 ENSE00003605975
2918  ENSG00000205581       ENST00000380747 ENSE00003532954
2919  ENSG00000205581       ENST00000380747 ENSE00001486098
2920  ENSG00000205581       ENST00000380747 ENSE00001220166
2921  ENSG00000205581       ENST00000485550 ENSE00003601648
2922  ENSG00000205581       ENST00000485550 ENSE00003627640
2923  ENSG00000205581       ENST00000485550 ENSE00003493302
2924  ENSG00000205581       ENST00000485550 ENSE00003613784
2925  ENSG00000205581       ENST00000485550 ENSE00003485728
2926  ENSG00000205581       ENST00000485550 ENSE00001850231
2927  ENSG00000205581       ENST00000485550 ENSE00001948699
2928  ENSG00000205581       ENST00000490032 ENSE00003601648
2929  ENSG00000205581       ENST00000490032 ENSE00003613784
2930  ENSG00000205581       ENST00000490032 ENSE00001699401
2931  ENSG00000205581       ENST00000490032 ENSE00001900021
2932  ENSG00000205581       ENST00000443046 ENSE00003552745
2933  ENSG00000205581       ENST00000443046 ENSE00003585321
2934  ENSG00000205581       ENST00000443046 ENSE00003605975
2935  ENSG00000205581       ENST00000443046 ENSE00003601648
2936  ENSG00000205581       ENST00000443046 ENSE00003493302
2937  ENSG00000205581       ENST00000443046 ENSE00003550272
2938  ENSG00000205581       ENST00000443046 ENSE00001699401
2939  ENSG00000205581       ENST00000443046 ENSE00003573173
2940  ENSG00000205581       ENST00000443046 ENSE00001732770
2941  ENSG00000205581       ENST00000464078 ENSE00003601648
2942  ENSG00000205581       ENST00000464078 ENSE00003613784
2943  ENSG00000205581       ENST00000464078 ENSE00003692123
2944  ENSG00000205581       ENST00000464078 ENSE00001893135
2945  ENSG00000205581       ENST00000464078 ENSE00001951514
2946  ENSG00000205581       ENST00000491183 ENSE00003669232
2947  ENSG00000205581       ENST00000491183 ENSE00003627640
2948  ENSG00000205581       ENST00000491183 ENSE00003613784
2949  ENSG00000205581       ENST00000491183 ENSE00003485728
2950  ENSG00000205581       ENST00000491183 ENSE00001850965
2951  ENSG00000205581       ENST00000491183 ENSE00001913220
2952  ENSG00000205581       ENST00000479586 ENSE00003669232
2953  ENSG00000205581       ENST00000479586 ENSE00003627640
2954  ENSG00000205581       ENST00000479586 ENSE00003613784
2955  ENSG00000205581       ENST00000479586 ENSE00001812091
2956  ENSG00000205581       ENST00000479586 ENSE00001890035
2957  ENSG00000205581       ENST00000471260 ENSE00003627640
2958  ENSG00000205581       ENST00000471260 ENSE00003613784
2959  ENSG00000205581       ENST00000471260 ENSE00001902671
2960  ENSG00000205581       ENST00000471260 ENSE00001952974
2961  ENSG00000205581       ENST00000482733 ENSE00001852835
2962  ENSG00000205581       ENST00000482733 ENSE00001840952
2963  ENSG00000205581       ENST00000463631 ENSE00003692123
2964  ENSG00000205581       ENST00000463631 ENSE00001893135
2965  ENSG00000205581       ENST00000463631 ENSE00001888057
2966  ENSG00000224602       ENST00000418544 ENSE00001783908
2967  ENSG00000280432       ENST00000624971 ENSE00003757355
2968  ENSG00000269950       ENST00000602654 ENSE00003340104
2969  ENSG00000269950       ENST00000602654 ENSE00003317403
2970  ENSG00000270139       ENST00000602454 ENSE00003308634
2971  ENSG00000270139       ENST00000602454 ENSE00003315556
2972  ENSG00000270139       ENST00000602454 ENSE00003259208
2973  ENSG00000270071       ENST00000602921 ENSE00003431949
2974  ENSG00000270071       ENST00000602921 ENSE00003279300
2975  ENSG00000270071       ENST00000602921 ENSE00003354180
2976  ENSG00000160233       ENST00000291592 ENSE00001838176
2977  ENSG00000160233       ENST00000291592 ENSE00001050784
2978  ENSG00000233056       ENST00000447535 ENSE00001619093
2979  ENSG00000233056       ENST00000447535 ENSE00001612295
2980  ENSG00000233056       ENST00000617971 ENSE00003740042
2981  ENSG00000205758       ENST00000488167 ENSE00001878345
2982  ENSG00000205758       ENST00000488167 ENSE00003613982
2983  ENSG00000205758       ENST00000488167 ENSE00003624943
2984  ENSG00000205758       ENST00000488167 ENSE00002530970
2985  ENSG00000205758       ENST00000417979 ENSE00003635139
2986  ENSG00000205758       ENST00000417979 ENSE00003502265
2987  ENSG00000205758       ENST00000417979 ENSE00003547975
2988  ENSG00000205758       ENST00000417979 ENSE00001538343
2989  ENSG00000205758       ENST00000417979 ENSE00003545673
2990  ENSG00000205758       ENST00000417979 ENSE00003567629
2991  ENSG00000205758       ENST00000417979 ENSE00001596721
2992  ENSG00000205758       ENST00000417979 ENSE00002448451
2993  ENSG00000205758       ENST00000490714 ENSE00003545673
2994  ENSG00000205758       ENST00000490714 ENSE00003613982
2995  ENSG00000205758       ENST00000490714 ENSE00001899745
2996  ENSG00000205758       ENST00000490714 ENSE00003552865
2997  ENSG00000205758       ENST00000490714 ENSE00003690988
2998  ENSG00000205758       ENST00000490714 ENSE00003483827
2999  ENSG00000205758       ENST00000490714 ENSE00001833797
3000  ENSG00000205758       ENST00000413017 ENSE00003642759
3001  ENSG00000205758       ENST00000413017 ENSE00003528796
3002  ENSG00000205758       ENST00000413017 ENSE00003683733
3003  ENSG00000205758       ENST00000413017 ENSE00003635139
3004  ENSG00000205758       ENST00000413017 ENSE00001812915
3005  ENSG00000205758       ENST00000413017 ENSE00001655845
3006  ENSG00000205758       ENST00000438788 ENSE00001711363
3007  ENSG00000205758       ENST00000438788 ENSE00001780713
3008  ENSG00000205758       ENST00000431177 ENSE00003642759
3009  ENSG00000205758       ENST00000431177 ENSE00003528796
3010  ENSG00000205758       ENST00000431177 ENSE00003683733
3011  ENSG00000205758       ENST00000431177 ENSE00003635139
3012  ENSG00000205758       ENST00000431177 ENSE00003502265
3013  ENSG00000205758       ENST00000431177 ENSE00003547975
3014  ENSG00000205758       ENST00000431177 ENSE00001680487
3015  ENSG00000205758       ENST00000431177 ENSE00001669850
3016  ENSG00000205758       ENST00000479964 ENSE00003516588
3017  ENSG00000205758       ENST00000479964 ENSE00001937306
3018  ENSG00000205758       ENST00000479964 ENSE00003688771
3019  ENSG00000205758       ENST00000479964 ENSE00001813881
3020  ENSG00000205758       ENST00000440526 ENSE00003635139
3021  ENSG00000205758       ENST00000440526 ENSE00003502265
3022  ENSG00000205758       ENST00000440526 ENSE00003547975
3023  ENSG00000205758       ENST00000440526 ENSE00001387385
3024  ENSG00000205758       ENST00000440526 ENSE00003493157
3025  ENSG00000205758       ENST00000440526 ENSE00003596663
3026  ENSG00000205758       ENST00000440526 ENSE00001805410
3027  ENSG00000205758       ENST00000440526 ENSE00001739270
3028  ENSG00000205758       ENST00000437996 ENSE00001770207
3029  ENSG00000205758       ENST00000437996 ENSE00003582597
3030  ENSG00000205758       ENST00000437996 ENSE00003516588
3031  ENSG00000205758       ENST00000437996 ENSE00001747269
3032  ENSG00000205758       ENST00000437996 ENSE00003520702
3033  ENSG00000205758       ENST00000437996 ENSE00001644442
3034  ENSG00000205758       ENST00000445393 ENSE00003642759
3035  ENSG00000205758       ENST00000445393 ENSE00003528796
3036  ENSG00000205758       ENST00000445393 ENSE00003683733
3037  ENSG00000205758       ENST00000445393 ENSE00003547975
3038  ENSG00000205758       ENST00000445393 ENSE00001387385
3039  ENSG00000205758       ENST00000445393 ENSE00001538343
3040  ENSG00000205758       ENST00000445393 ENSE00001717080
3041  ENSG00000205758       ENST00000480893 ENSE00003516588
3042  ENSG00000205758       ENST00000480893 ENSE00001879733
3043  ENSG00000205758       ENST00000480893 ENSE00001935720
3044  ENSG00000205758       ENST00000480893 ENSE00001861758
3045  ENSG00000205758       ENST00000381554 ENSE00001883826
3046  ENSG00000205758       ENST00000381554 ENSE00003642759
3047  ENSG00000205758       ENST00000381554 ENSE00003528796
3048  ENSG00000205758       ENST00000381554 ENSE00003683733
3049  ENSG00000205758       ENST00000381554 ENSE00003635139
3050  ENSG00000205758       ENST00000381554 ENSE00003502265
3051  ENSG00000205758       ENST00000381554 ENSE00003547975
3052  ENSG00000205758       ENST00000381554 ENSE00001387385
3053  ENSG00000205758       ENST00000381554 ENSE00003493157
3054  ENSG00000205758       ENST00000381554 ENSE00003596663
3055  ENSG00000205758       ENST00000381554 ENSE00003499413
3056  ENSG00000205758       ENST00000381554 ENSE00003635551
3057  ENSG00000205758       ENST00000381554 ENSE00001603968
3058  ENSG00000205758       ENST00000399442 ENSE00001538349
3059  ENSG00000205758       ENST00000399442 ENSE00001538341
3060  ENSG00000205758       ENST00000399442 ENSE00001538339
3061  ENSG00000205758       ENST00000426935 ENSE00003635139
3062  ENSG00000205758       ENST00000426935 ENSE00003502265
3063  ENSG00000205758       ENST00000426935 ENSE00003547975
3064  ENSG00000205758       ENST00000426935 ENSE00001387385
3065  ENSG00000205758       ENST00000426935 ENSE00001489060
3066  ENSG00000205758       ENST00000426935 ENSE00003545673
3067  ENSG00000205758       ENST00000426935 ENSE00003567629
3068  ENSG00000205758       ENST00000426935 ENSE00001787834
3069  ENSG00000205758       ENST00000414079 ENSE00001387385
3070  ENSG00000205758       ENST00000414079 ENSE00003493157
3071  ENSG00000205758       ENST00000414079 ENSE00001598386
3072  ENSG00000205758       ENST00000414079 ENSE00001592679
3073  ENSG00000205758       ENST00000420072 ENSE00003642759
3074  ENSG00000205758       ENST00000420072 ENSE00003528796
3075  ENSG00000205758       ENST00000420072 ENSE00003683733
3076  ENSG00000205758       ENST00000420072 ENSE00003635139
3077  ENSG00000205758       ENST00000420072 ENSE00003502265
3078  ENSG00000205758       ENST00000420072 ENSE00003547975
3079  ENSG00000205758       ENST00000420072 ENSE00001387385
3080  ENSG00000205758       ENST00000420072 ENSE00001770207
3081  ENSG00000205758       ENST00000420072 ENSE00003582597
3082  ENSG00000205758       ENST00000420072 ENSE00003516588
3083  ENSG00000205758       ENST00000420072 ENSE00001404762
3084  ENSG00000205758       ENST00000420072 ENSE00001690724
3085  ENSG00000205758       ENST00000429827 ENSE00003642759
3086  ENSG00000205758       ENST00000429827 ENSE00003528796
3087  ENSG00000205758       ENST00000429827 ENSE00003683733
3088  ENSG00000205758       ENST00000429827 ENSE00003502265
3089  ENSG00000205758       ENST00000429827 ENSE00003547975
3090  ENSG00000205758       ENST00000429827 ENSE00001387385
3091  ENSG00000205758       ENST00000429827 ENSE00001770207
3092  ENSG00000205758       ENST00000429827 ENSE00003582597
3093  ENSG00000205758       ENST00000429827 ENSE00003516588
3094  ENSG00000205758       ENST00000429827 ENSE00001722894
3095  ENSG00000205758       ENST00000429827 ENSE00001667525
3096  ENSG00000205758       ENST00000361534 ENSE00003528796
3097  ENSG00000205758       ENST00000361534 ENSE00003683733
3098  ENSG00000205758       ENST00000361534 ENSE00003635139
3099  ENSG00000205758       ENST00000361534 ENSE00003502265
3100  ENSG00000205758       ENST00000361534 ENSE00003547975
3101  ENSG00000205758       ENST00000361534 ENSE00001387385
3102  ENSG00000205758       ENST00000361534 ENSE00003493157
3103  ENSG00000205758       ENST00000361534 ENSE00003596663
3104  ENSG00000205758       ENST00000361534 ENSE00003499413
3105  ENSG00000205758       ENST00000361534 ENSE00001432491
3106  ENSG00000205758       ENST00000361534 ENSE00001538349
3107  ENSG00000205758       ENST00000361534 ENSE00003486782
3108  ENSG00000205758       ENST00000361534 ENSE00001436391
3109  ENSG00000205758       ENST00000452420 ENSE00003547975
3110  ENSG00000205758       ENST00000452420 ENSE00001387385
3111  ENSG00000205758       ENST00000452420 ENSE00001632301
3112  ENSG00000205758       ENST00000452420 ENSE00001770207
3113  ENSG00000205758       ENST00000452420 ENSE00003582597
3114  ENSG00000205758       ENST00000452420 ENSE00003516588
3115  ENSG00000205758       ENST00000452420 ENSE00001643192
3116  ENSG00000205758       ENST00000452420 ENSE00001655452
3117  ENSG00000205758       ENST00000452420 ENSE00001177939
3118  ENSG00000205758       ENST00000381540 ENSE00003642759
3119  ENSG00000205758       ENST00000381540 ENSE00003528796
3120  ENSG00000205758       ENST00000381540 ENSE00003683733
3121  ENSG00000205758       ENST00000381540 ENSE00003635139
3122  ENSG00000205758       ENST00000381540 ENSE00003502265
3123  ENSG00000205758       ENST00000381540 ENSE00003547975
3124  ENSG00000205758       ENST00000381540 ENSE00001387385
3125  ENSG00000205758       ENST00000381540 ENSE00003493157
3126  ENSG00000205758       ENST00000381540 ENSE00003596663
3127  ENSG00000205758       ENST00000381540 ENSE00003499413
3128  ENSG00000205758       ENST00000381540 ENSE00001850083
3129  ENSG00000205758       ENST00000381540 ENSE00001489057
3130  ENSG00000205758       ENST00000381540 ENSE00001953102
3131  ENSG00000205758       ENST00000468349 ENSE00001881951
3132  ENSG00000205758       ENST00000468349 ENSE00001926168
3133  ENSG00000205758       ENST00000290244 ENSE00003642759
3134  ENSG00000205758       ENST00000290244 ENSE00003528796
3135  ENSG00000205758       ENST00000290244 ENSE00003683733
3136  ENSG00000205758       ENST00000290244 ENSE00003502265
3137  ENSG00000205758       ENST00000290244 ENSE00003547975
3138  ENSG00000205758       ENST00000290244 ENSE00001387385
3139  ENSG00000205758       ENST00000290244 ENSE00003493157
3140  ENSG00000205758       ENST00000290244 ENSE00003596663
3141  ENSG00000205758       ENST00000290244 ENSE00003499413
3142  ENSG00000205758       ENST00000290244 ENSE00003635551
3143  ENSG00000205758       ENST00000290244 ENSE00001903909
3144  ENSG00000205758       ENST00000290244 ENSE00001860221
3145  ENSG00000205758       ENST00000441940 ENSE00003596663
3146  ENSG00000205758       ENST00000441940 ENSE00003499413
3147  ENSG00000205758       ENST00000441940 ENSE00003635551
3148  ENSG00000205758       ENST00000441940 ENSE00001779760
3149  ENSG00000228349       ENST00000431743 ENSE00001693107
3150  ENSG00000232118       ENST00000449923 ENSE00001743205
3151  ENSG00000232118       ENST00000449923 ENSE00001657359
3152  ENSG00000232118       ENST00000615718 ENSE00003736747
3153  ENSG00000232118       ENST00000615718 ENSE00003754459
3154  ENSG00000159147       ENST00000439593 ENSE00001675773
3155  ENSG00000159147       ENST00000439593 ENSE00001786948
3156  ENSG00000159147       ENST00000439593 ENSE00001728787
3157  ENSG00000159147       ENST00000439593 ENSE00001651561
3158  ENSG00000159147       ENST00000303113 ENSE00001422868
3159  ENSG00000159147       ENST00000303113 ENSE00001237873
3160  ENSG00000159147       ENST00000303113 ENSE00003539477
3161  ENSG00000159147       ENST00000303113 ENSE00001489382
3162  ENSG00000159147       ENST00000303113 ENSE00003588206
3163  ENSG00000159147       ENST00000303113 ENSE00003561968
3164  ENSG00000159147       ENST00000303113 ENSE00003571961
3165  ENSG00000159147       ENST00000303113 ENSE00003597599
3166  ENSG00000159147       ENST00000303113 ENSE00003660298
3167  ENSG00000159147       ENST00000303113 ENSE00001489351
3168  ENSG00000159147       ENST00000303113 ENSE00001489349
3169  ENSG00000159147       ENST00000453626 ENSE00001237873
3170  ENSG00000159147       ENST00000453626 ENSE00003539477
3171  ENSG00000159147       ENST00000453626 ENSE00003588206
3172  ENSG00000159147       ENST00000453626 ENSE00003561968
3173  ENSG00000159147       ENST00000453626 ENSE00003571961
3174  ENSG00000159147       ENST00000453626 ENSE00003597599
3175  ENSG00000159147       ENST00000453626 ENSE00001592067
3176  ENSG00000159147       ENST00000453626 ENSE00003563368
3177  ENSG00000159147       ENST00000453626 ENSE00001646634
3178  ENSG00000159147       ENST00000453626 ENSE00001747838
3179  ENSG00000159147       ENST00000457359 ENSE00001237873
3180  ENSG00000159147       ENST00000457359 ENSE00003539477
3181  ENSG00000159147       ENST00000457359 ENSE00001592067
3182  ENSG00000159147       ENST00000457359 ENSE00003626477
3183  ENSG00000159147       ENST00000457359 ENSE00003539393
3184  ENSG00000159147       ENST00000457359 ENSE00003548859
3185  ENSG00000159147       ENST00000457359 ENSE00003656557
3186  ENSG00000159147       ENST00000457359 ENSE00003610877
3187  ENSG00000159147       ENST00000457359 ENSE00001713755
3188  ENSG00000159147       ENST00000303071 ENSE00001237873
3189  ENSG00000159147       ENST00000303071 ENSE00003539477
3190  ENSG00000159147       ENST00000303071 ENSE00003588206
3191  ENSG00000159147       ENST00000303071 ENSE00003561968
3192  ENSG00000159147       ENST00000303071 ENSE00003571961
3193  ENSG00000159147       ENST00000303071 ENSE00003597599
3194  ENSG00000159147       ENST00000303071 ENSE00003660298
3195  ENSG00000159147       ENST00000303071 ENSE00003563368
3196  ENSG00000159147       ENST00000303071 ENSE00001363177
3197  ENSG00000159147       ENST00000303071 ENSE00001363113
3198  ENSG00000159147       ENST00000417871 ENSE00001422868
3199  ENSG00000159147       ENST00000417871 ENSE00001237873
3200  ENSG00000159147       ENST00000417871 ENSE00003539393
3201  ENSG00000159147       ENST00000417871 ENSE00003548859
3202  ENSG00000159147       ENST00000417871 ENSE00003656557
3203  ENSG00000159147       ENST00000417871 ENSE00003610877
3204  ENSG00000159147       ENST00000417871 ENSE00001696559
3205  ENSG00000159147       ENST00000417871 ENSE00003558274
3206  ENSG00000159147       ENST00000417871 ENSE00001736545
3207  ENSG00000159147       ENST00000460557 ENSE00001928466
3208  ENSG00000159147       ENST00000460557 ENSE00001910947
3209  ENSG00000159147       ENST00000444517 ENSE00001237873
3210  ENSG00000159147       ENST00000444517 ENSE00003539477
3211  ENSG00000159147       ENST00000444517 ENSE00003563368
3212  ENSG00000159147       ENST00000444517 ENSE00003532468
3213  ENSG00000159147       ENST00000444517 ENSE00001664485
3214  ENSG00000159147       ENST00000442660 ENSE00001237873
3215  ENSG00000159147       ENST00000442660 ENSE00003539477
3216  ENSG00000159147       ENST00000442660 ENSE00003563368
3217  ENSG00000159147       ENST00000442660 ENSE00003548859
3218  ENSG00000159147       ENST00000442660 ENSE00003656557
3219  ENSG00000159147       ENST00000442660 ENSE00003610877
3220  ENSG00000159147       ENST00000442660 ENSE00001664485
3221  ENSG00000159147       ENST00000442660 ENSE00003467816
3222  ENSG00000159147       ENST00000437395 ENSE00003539477
3223  ENSG00000159147       ENST00000437395 ENSE00003588206
3224  ENSG00000159147       ENST00000437395 ENSE00003561968
3225  ENSG00000159147       ENST00000437395 ENSE00003571961
3226  ENSG00000159147       ENST00000437395 ENSE00003597599
3227  ENSG00000159147       ENST00000437395 ENSE00003660298
3228  ENSG00000159147       ENST00000437395 ENSE00003563368
3229  ENSG00000159147       ENST00000437395 ENSE00001703448
3230  ENSG00000159147       ENST00000437395 ENSE00001775066
3231  ENSG00000159147       ENST00000432378 ENSE00001237873
3232  ENSG00000159147       ENST00000432378 ENSE00003539477
3233  ENSG00000159147       ENST00000432378 ENSE00003588206
3234  ENSG00000159147       ENST00000432378 ENSE00003561968
3235  ENSG00000159147       ENST00000432378 ENSE00003571961
3236  ENSG00000159147       ENST00000432378 ENSE00003597599
3237  ENSG00000159147       ENST00000432378 ENSE00003563368
3238  ENSG00000159147       ENST00000432378 ENSE00001787922
3239  ENSG00000159147       ENST00000432378 ENSE00001751333
3240  ENSG00000159147       ENST00000440810 ENSE00003571961
3241  ENSG00000159147       ENST00000440810 ENSE00003597599
3242  ENSG00000159147       ENST00000440810 ENSE00003563368
3243  ENSG00000159147       ENST00000440810 ENSE00001608266
3244  ENSG00000159147       ENST00000440810 ENSE00001618006
3245  ENSG00000159147       ENST00000462566 ENSE00001863437
3246  ENSG00000159147       ENST00000462566 ENSE00001818548
3247  ENSG00000141959       ENST00000349048 ENSE00001560222
3248  ENSG00000141959       ENST00000349048 ENSE00003556813
3249  ENSG00000141959       ENST00000349048 ENSE00003468441
3250  ENSG00000141959       ENST00000349048 ENSE00003468758
3251  ENSG00000141959       ENST00000349048 ENSE00003620819
3252  ENSG00000141959       ENST00000349048 ENSE00003487259
3253  ENSG00000141959       ENST00000349048 ENSE00003482974
3254  ENSG00000141959       ENST00000349048 ENSE00003610456
3255  ENSG00000141959       ENST00000349048 ENSE00003668706
3256  ENSG00000141959       ENST00000349048 ENSE00003572167
3257  ENSG00000141959       ENST00000349048 ENSE00003470814
3258  ENSG00000141959       ENST00000349048 ENSE00003669897
3259  ENSG00000141959       ENST00000349048 ENSE00003682480
3260  ENSG00000141959       ENST00000349048 ENSE00003688681
3261  ENSG00000141959       ENST00000349048 ENSE00003543348
3262  ENSG00000141959       ENST00000349048 ENSE00003650066
3263  ENSG00000141959       ENST00000349048 ENSE00003492099
3264  ENSG00000141959       ENST00000349048 ENSE00003615543
3265  ENSG00000141959       ENST00000349048 ENSE00003538638
3266  ENSG00000141959       ENST00000349048 ENSE00003533809
3267  ENSG00000141959       ENST00000349048 ENSE00003458220
3268  ENSG00000141959       ENST00000349048 ENSE00003483524
3269  ENSG00000141959       ENST00000397961 ENSE00001560222
3270  ENSG00000141959       ENST00000397961 ENSE00003586588
3271  ENSG00000141959       ENST00000397961 ENSE00002714710
3272  ENSG00000141959       ENST00000397961 ENSE00003520125
3273  ENSG00000141959       ENST00000397961 ENSE00003589820
3274  ENSG00000141959       ENST00000397961 ENSE00003557725
3275  ENSG00000141959       ENST00000397961 ENSE00003520020
3276  ENSG00000141959       ENST00000397961 ENSE00003605052
3277  ENSG00000141959       ENST00000397961 ENSE00003574149
3278  ENSG00000141959       ENST00000397961 ENSE00003537097
3279  ENSG00000141959       ENST00000397961 ENSE00003678527
3280  ENSG00000141959       ENST00000397961 ENSE00003512653
3281  ENSG00000141959       ENST00000397961 ENSE00003571406
3282  ENSG00000141959       ENST00000397961 ENSE00003482524
3283  ENSG00000141959       ENST00000397961 ENSE00003459127
3284  ENSG00000141959       ENST00000397961 ENSE00003536916
3285  ENSG00000141959       ENST00000397961 ENSE00003538062
3286  ENSG00000141959       ENST00000397961 ENSE00003665414
3287  ENSG00000141959       ENST00000397961 ENSE00003547726
3288  ENSG00000141959       ENST00000397961 ENSE00003677022
3289  ENSG00000141959       ENST00000397961 ENSE00003635521
3290  ENSG00000141959       ENST00000397961 ENSE00003594641
3291  ENSG00000141959       ENST00000397961 ENSE00003582240
3292  ENSG00000141959       ENST00000397961 ENSE00003573803
3293  ENSG00000141959       ENST00000397961 ENSE00003625182
3294  ENSG00000141959       ENST00000496824 ENSE00003589820
3295  ENSG00000141959       ENST00000496824 ENSE00003557725
3296  ENSG00000141959       ENST00000496824 ENSE00003520020
3297  ENSG00000141959       ENST00000496824 ENSE00003605052
3298  ENSG00000141959       ENST00000496824 ENSE00003574149
3299  ENSG00000141959       ENST00000496824 ENSE00003537097
3300  ENSG00000141959       ENST00000496824 ENSE00003678527
3301  ENSG00000141959       ENST00000496824 ENSE00001611910
3302  ENSG00000141959       ENST00000496824 ENSE00003679758
3303  ENSG00000141959       ENST00000466134 ENSE00003589820
3304  ENSG00000141959       ENST00000466134 ENSE00003557725
3305  ENSG00000141959       ENST00000466134 ENSE00003520020
3306  ENSG00000141959       ENST00000466134 ENSE00003605052
3307  ENSG00000141959       ENST00000466134 ENSE00003574149
3308  ENSG00000141959       ENST00000466134 ENSE00003512653
3309  ENSG00000141959       ENST00000466134 ENSE00003571406
3310  ENSG00000141959       ENST00000466134 ENSE00003536916
3311  ENSG00000141959       ENST00000466134 ENSE00003538062
3312  ENSG00000141959       ENST00000466134 ENSE00003665414
3313  ENSG00000141959       ENST00000466134 ENSE00003547726
3314  ENSG00000141959       ENST00000466134 ENSE00003677022
3315  ENSG00000141959       ENST00000466134 ENSE00003635521
3316  ENSG00000141959       ENST00000466134 ENSE00003594641
3317  ENSG00000141959       ENST00000466134 ENSE00003573803
3318  ENSG00000141959       ENST00000466134 ENSE00003625182
3319  ENSG00000141959       ENST00000466134 ENSE00001834602
3320  ENSG00000141959       ENST00000466134 ENSE00001819263
3321  ENSG00000141959       ENST00000466134 ENSE00001847043
3322  ENSG00000141959       ENST00000466134 ENSE00001854527
3323  ENSG00000141959       ENST00000491298 ENSE00003589820
3324  ENSG00000141959       ENST00000491298 ENSE00003557725
3325  ENSG00000141959       ENST00000491298 ENSE00003520020
3326  ENSG00000141959       ENST00000491298 ENSE00003605052
3327  ENSG00000141959       ENST00000491298 ENSE00003574149
3328  ENSG00000141959       ENST00000491298 ENSE00001892739
3329  ENSG00000141959       ENST00000491298 ENSE00001866194
3330  ENSG00000141959       ENST00000474114 ENSE00003512653
3331  ENSG00000141959       ENST00000474114 ENSE00003571406
3332  ENSG00000141959       ENST00000474114 ENSE00003538062
3333  ENSG00000141959       ENST00000474114 ENSE00003665414
3334  ENSG00000141959       ENST00000474114 ENSE00003547726
3335  ENSG00000141959       ENST00000474114 ENSE00003677022
3336  ENSG00000141959       ENST00000474114 ENSE00003573803
3337  ENSG00000141959       ENST00000474114 ENSE00003625182
3338  ENSG00000141959       ENST00000474114 ENSE00001840062
3339  ENSG00000141959       ENST00000474114 ENSE00001936818
3340  ENSG00000141959       ENST00000474114 ENSE00001938426
3341  ENSG00000141959       ENST00000498841 ENSE00003536916
3342  ENSG00000141959       ENST00000498841 ENSE00003538062
3343  ENSG00000141959       ENST00000498841 ENSE00003665414
3344  ENSG00000141959       ENST00000498841 ENSE00003547726
3345  ENSG00000141959       ENST00000498841 ENSE00003677022
3346  ENSG00000141959       ENST00000498841 ENSE00003573803
3347  ENSG00000141959       ENST00000498841 ENSE00003625182
3348  ENSG00000141959       ENST00000498841 ENSE00001938426
3349  ENSG00000141959       ENST00000498841 ENSE00001847152
3350  ENSG00000141959       ENST00000460020 ENSE00003536916
3351  ENSG00000141959       ENST00000460020 ENSE00003538062
3352  ENSG00000141959       ENST00000460020 ENSE00003665414
3353  ENSG00000141959       ENST00000460020 ENSE00003547726
3354  ENSG00000141959       ENST00000460020 ENSE00001885464
3355  ENSG00000141959       ENST00000460020 ENSE00001943900
3356  ENSG00000141959       ENST00000467315 ENSE00003536916
3357  ENSG00000141959       ENST00000467315 ENSE00003538062
3358  ENSG00000141959       ENST00000467315 ENSE00003665414
3359  ENSG00000141959       ENST00000467315 ENSE00003547726
3360  ENSG00000141959       ENST00000467315 ENSE00003677022
3361  ENSG00000141959       ENST00000467315 ENSE00003635521
3362  ENSG00000141959       ENST00000467315 ENSE00003594641
3363  ENSG00000141959       ENST00000467315 ENSE00003582240
3364  ENSG00000141959       ENST00000467315 ENSE00003573803
3365  ENSG00000141959       ENST00000467315 ENSE00003625182
3366  ENSG00000141959       ENST00000467315 ENSE00001856420
3367  ENSG00000141959       ENST00000460521 ENSE00003538062
3368  ENSG00000141959       ENST00000460521 ENSE00003665414
3369  ENSG00000141959       ENST00000460521 ENSE00003547726
3370  ENSG00000141959       ENST00000460521 ENSE00003677022
3371  ENSG00000141959       ENST00000460521 ENSE00003635521
3372  ENSG00000141959       ENST00000460521 ENSE00003594641
3373  ENSG00000141959       ENST00000460521 ENSE00003582240
3374  ENSG00000141959       ENST00000460521 ENSE00003573803
3375  ENSG00000141959       ENST00000460521 ENSE00003625182
3376  ENSG00000141959       ENST00000460521 ENSE00001897458
3377  ENSG00000141959       ENST00000495274 ENSE00003665414
3378  ENSG00000141959       ENST00000495274 ENSE00003547726
3379  ENSG00000141959       ENST00000495274 ENSE00003677022
3380  ENSG00000141959       ENST00000495274 ENSE00003635521
3381  ENSG00000141959       ENST00000495274 ENSE00001819579
3382  ENSG00000141959       ENST00000628044 ENSE00003775335
3383  ENSG00000141959       ENST00000628044 ENSE00003764175
3384  ENSG00000281383       ENST00000629969 ENSE00003768347
3385  ENSG00000248476       ENST00000504298 ENSE00002057091
3386  ENSG00000248476       ENST00000504298 ENSE00002028160
3387  ENSG00000248476       ENST00000504298 ENSE00002047876
3388  ENSG00000248476       ENST00000504298 ENSE00002020319
3389  ENSG00000189169       ENST00000400365 ENSE00001542603
3390  ENSG00000189169       ENST00000618832 ENSE00003714599
3391  ENSG00000189169       ENST00000618832 ENSE00003740231
3392  ENSG00000189169       ENST00000618832 ENSE00003731665
3393  ENSG00000224747       ENST00000443300 ENSE00001774227
3394  ENSG00000224747       ENST00000443300 ENSE00001716424
3395  ENSG00000224747       ENST00000443300 ENSE00001607690
3396  ENSG00000260256       ENST00000568332 ENSE00002602902
3397  ENSG00000241728       ENST00000444409 ENSE00001610727
3398  ENSG00000241728       ENST00000444409 ENSE00001601990
3399  ENSG00000241728       ENST00000444409 ENSE00001778009
3400  ENSG00000241728       ENST00000422357 ENSE00001736116
3401  ENSG00000241728       ENST00000422357 ENSE00001610727
3402  ENSG00000171189       ENST00000327783 ENSE00001540737
3403  ENSG00000171189       ENST00000327783 ENSE00003604433
3404  ENSG00000171189       ENST00000327783 ENSE00003680741
3405  ENSG00000171189       ENST00000327783 ENSE00003468156
3406  ENSG00000171189       ENST00000327783 ENSE00003504657
3407  ENSG00000171189       ENST00000327783 ENSE00003478056
3408  ENSG00000171189       ENST00000327783 ENSE00003680298
3409  ENSG00000171189       ENST00000327783 ENSE00001137266
3410  ENSG00000171189       ENST00000327783 ENSE00001313812
3411  ENSG00000171189       ENST00000327783 ENSE00001143398
3412  ENSG00000171189       ENST00000327783 ENSE00001143391
3413  ENSG00000171189       ENST00000327783 ENSE00001640609
3414  ENSG00000171189       ENST00000327783 ENSE00001625731
3415  ENSG00000171189       ENST00000327783 ENSE00001778184
3416  ENSG00000171189       ENST00000327783 ENSE00001143363
3417  ENSG00000171189       ENST00000327783 ENSE00001192027
3418  ENSG00000171189       ENST00000327783 ENSE00001540755
3419  ENSG00000171189       ENST00000327783 ENSE00001540750
3420  ENSG00000171189       ENST00000389125 ENSE00003604433
3421  ENSG00000171189       ENST00000389125 ENSE00003680741
3422  ENSG00000171189       ENST00000389125 ENSE00003468156
3423  ENSG00000171189       ENST00000389125 ENSE00003504657
3424  ENSG00000171189       ENST00000389125 ENSE00003478056
3425  ENSG00000171189       ENST00000389125 ENSE00003680298
3426  ENSG00000171189       ENST00000389125 ENSE00001137266
3427  ENSG00000171189       ENST00000389125 ENSE00001143398
3428  ENSG00000171189       ENST00000389125 ENSE00001143391
3429  ENSG00000171189       ENST00000389125 ENSE00001640609
3430  ENSG00000171189       ENST00000389125 ENSE00001625731
3431  ENSG00000171189       ENST00000389125 ENSE00001778184
3432  ENSG00000171189       ENST00000389125 ENSE00001143363
3433  ENSG00000171189       ENST00000389125 ENSE00001192027
3434  ENSG00000171189       ENST00000389125 ENSE00001540750
3435  ENSG00000171189       ENST00000389125 ENSE00001303364
3436  ENSG00000171189       ENST00000399913 ENSE00003604433
3437  ENSG00000171189       ENST00000399913 ENSE00003680741
3438  ENSG00000171189       ENST00000399913 ENSE00003468156
3439  ENSG00000171189       ENST00000399913 ENSE00003504657
3440  ENSG00000171189       ENST00000399913 ENSE00003478056
3441  ENSG00000171189       ENST00000399913 ENSE00003680298
3442  ENSG00000171189       ENST00000399913 ENSE00001137266
3443  ENSG00000171189       ENST00000399913 ENSE00001313812
3444  ENSG00000171189       ENST00000399913 ENSE00001143398
3445  ENSG00000171189       ENST00000399913 ENSE00001143391
3446  ENSG00000171189       ENST00000399913 ENSE00001640609
3447  ENSG00000171189       ENST00000399913 ENSE00001625731
3448  ENSG00000171189       ENST00000399913 ENSE00001778184
3449  ENSG00000171189       ENST00000399913 ENSE00001143363
3450  ENSG00000171189       ENST00000399913 ENSE00001192027
3451  ENSG00000171189       ENST00000399913 ENSE00001540750
3452  ENSG00000171189       ENST00000399913 ENSE00001540742
3453  ENSG00000171189       ENST00000399914 ENSE00003604433
3454  ENSG00000171189       ENST00000399914 ENSE00003680741
3455  ENSG00000171189       ENST00000399914 ENSE00003468156
3456  ENSG00000171189       ENST00000399914 ENSE00003504657
3457  ENSG00000171189       ENST00000399914 ENSE00003478056
3458  ENSG00000171189       ENST00000399914 ENSE00003680298
3459  ENSG00000171189       ENST00000399914 ENSE00001137266
3460  ENSG00000171189       ENST00000399914 ENSE00001143398
3461  ENSG00000171189       ENST00000399914 ENSE00001143391
3462  ENSG00000171189       ENST00000399914 ENSE00001640609
3463  ENSG00000171189       ENST00000399914 ENSE00001625731
3464  ENSG00000171189       ENST00000399914 ENSE00001778184
3465  ENSG00000171189       ENST00000399914 ENSE00001143363
3466  ENSG00000171189       ENST00000399914 ENSE00001192027
3467  ENSG00000171189       ENST00000399914 ENSE00001540755
3468  ENSG00000171189       ENST00000399914 ENSE00001540750
3469  ENSG00000171189       ENST00000399914 ENSE00001540756
3470  ENSG00000171189       ENST00000389124 ENSE00001540737
3471  ENSG00000171189       ENST00000389124 ENSE00003604433
3472  ENSG00000171189       ENST00000389124 ENSE00003680741
3473  ENSG00000171189       ENST00000389124 ENSE00003468156
3474  ENSG00000171189       ENST00000389124 ENSE00003504657
3475  ENSG00000171189       ENST00000389124 ENSE00003478056
3476  ENSG00000171189       ENST00000389124 ENSE00003680298
3477  ENSG00000171189       ENST00000389124 ENSE00001137266
3478  ENSG00000171189       ENST00000389124 ENSE00001313812
3479  ENSG00000171189       ENST00000389124 ENSE00001143398
3480  ENSG00000171189       ENST00000389124 ENSE00001143391
3481  ENSG00000171189       ENST00000389124 ENSE00001640609
3482  ENSG00000171189       ENST00000389124 ENSE00001625731
3483  ENSG00000171189       ENST00000389124 ENSE00001778184
3484  ENSG00000171189       ENST00000389124 ENSE00001143363
3485  ENSG00000171189       ENST00000389124 ENSE00001192027
3486  ENSG00000171189       ENST00000389124 ENSE00001540732
3487  ENSG00000171189       ENST00000399907 ENSE00003604433
3488  ENSG00000171189       ENST00000399907 ENSE00003680741
3489  ENSG00000171189       ENST00000399907 ENSE00003468156
3490  ENSG00000171189       ENST00000399907 ENSE00003504657
3491  ENSG00000171189       ENST00000399907 ENSE00003478056
3492  ENSG00000171189       ENST00000399907 ENSE00003680298
3493  ENSG00000171189       ENST00000399907 ENSE00001137266
3494  ENSG00000171189       ENST00000399907 ENSE00001313812
3495  ENSG00000171189       ENST00000399907 ENSE00001143398
3496  ENSG00000171189       ENST00000399907 ENSE00001143391
3497  ENSG00000171189       ENST00000399907 ENSE00001640609
3498  ENSG00000171189       ENST00000399907 ENSE00001625731
3499  ENSG00000171189       ENST00000399907 ENSE00001778184
3500  ENSG00000171189       ENST00000399907 ENSE00001143363
3501  ENSG00000171189       ENST00000399907 ENSE00001192027
3502  ENSG00000171189       ENST00000399907 ENSE00001540722
3503  ENSG00000171189       ENST00000399907 ENSE00001540719
3504  ENSG00000171189       ENST00000399909 ENSE00003604433
3505  ENSG00000171189       ENST00000399909 ENSE00003680741
3506  ENSG00000171189       ENST00000399909 ENSE00003468156
3507  ENSG00000171189       ENST00000399909 ENSE00003504657
3508  ENSG00000171189       ENST00000399909 ENSE00003478056
3509  ENSG00000171189       ENST00000399909 ENSE00003680298
3510  ENSG00000171189       ENST00000399909 ENSE00001137266
3511  ENSG00000171189       ENST00000399909 ENSE00001143398
3512  ENSG00000171189       ENST00000399909 ENSE00001143391
3513  ENSG00000171189       ENST00000399909 ENSE00001640609
3514  ENSG00000171189       ENST00000399909 ENSE00001625731
3515  ENSG00000171189       ENST00000399909 ENSE00001778184
3516  ENSG00000171189       ENST00000399909 ENSE00001143363
3517  ENSG00000171189       ENST00000399909 ENSE00001192027
3518  ENSG00000171189       ENST00000399909 ENSE00001540722
3519  ENSG00000171189       ENST00000399909 ENSE00001540719
3520  ENSG00000171189       ENST00000472429 ENSE00001843989
3521  ENSG00000171189       ENST00000472429 ENSE00003632601
3522  ENSG00000171189       ENST00000472429 ENSE00003487025
3523  ENSG00000171189       ENST00000472429 ENSE00003572399
3524  ENSG00000171189       ENST00000472429 ENSE00003477933
3525  ENSG00000171189       ENST00000472429 ENSE00003637099
3526  ENSG00000171189       ENST00000472429 ENSE00003572934
3527  ENSG00000171189       ENST00000472429 ENSE00001899617
3528  ENSG00000273590       ENST00000624534 ENSE00003722423
3529  ENSG00000273590       ENST00000624534 ENSE00003756999
3530  ENSG00000273590       ENST00000622934 ENSE00003713618
3531  ENSG00000273590       ENST00000622934 ENSE00003718280
3532  ENSG00000273590       ENST00000622934 ENSE00003716325
3533  ENSG00000273590       ENST00000622934 ENSE00003755942
3534  ENSG00000273590       ENST00000622934 ENSE00003739023
3535  ENSG00000273590       ENST00000619874 ENSE00003718280
3536  ENSG00000273590       ENST00000619874 ENSE00003716325
3537  ENSG00000273590       ENST00000619874 ENSE00003756294
3538  ENSG00000273590       ENST00000619874 ENSE00003723301
3539  ENSG00000273590       ENST00000612624 ENSE00003718280
3540  ENSG00000273590       ENST00000612624 ENSE00003758020
3541  ENSG00000273590       ENST00000612624 ENSE00003753303
3542  ENSG00000273590       ENST00000612624 ENSE00003756026
3543  ENSG00000273590       ENST00000624304 ENSE00003718280
3544  ENSG00000273590       ENST00000624304 ENSE00003757947
3545  ENSG00000273590       ENST00000624304 ENSE00003755655
3546  ENSG00000273590       ENST00000624758 ENSE00003718280
3547  ENSG00000273590       ENST00000624758 ENSE00003716325
3548  ENSG00000273590       ENST00000624758 ENSE00003759572
3549  ENSG00000273590       ENST00000624758 ENSE00003757322
3550  ENSG00000273590       ENST00000623661 ENSE00003718280
3551  ENSG00000273590       ENST00000623661 ENSE00003716325
3552  ENSG00000273590       ENST00000623661 ENSE00003755942
3553  ENSG00000273590       ENST00000623661 ENSE00003756787
3554  ENSG00000273590       ENST00000623661 ENSE00003756749
3555  ENSG00000279895       ENST00000624042 ENSE00003756446
3556  ENSG00000279895       ENST00000624042 ENSE00003755060
3557  ENSG00000279895       ENST00000624042 ENSE00003759023
3558  ENSG00000279895       ENST00000624042 ENSE00003755612
3559  ENSG00000279895       ENST00000624042 ENSE00003756572
3560  ENSG00000279895       ENST00000624042 ENSE00003758063
3561  ENSG00000279895       ENST00000624042 ENSE00003757344
3562  ENSG00000279895       ENST00000624042 ENSE00003758582
3563  ENSG00000279895       ENST00000624042 ENSE00003760305
3564  ENSG00000279895       ENST00000624042 ENSE00003756621
3565  ENSG00000176054       ENST00000320371 ENSE00001764304
3566  ENSG00000160285       ENST00000356396 ENSE00001894078
3567  ENSG00000160285       ENST00000356396 ENSE00003470036
3568  ENSG00000160285       ENST00000356396 ENSE00003581204
3569  ENSG00000160285       ENST00000356396 ENSE00003491878
3570  ENSG00000160285       ENST00000356396 ENSE00003532484
3571  ENSG00000160285       ENST00000356396 ENSE00003525946
3572  ENSG00000160285       ENST00000356396 ENSE00003784869
3573  ENSG00000160285       ENST00000356396 ENSE00003500657
3574  ENSG00000160285       ENST00000356396 ENSE00001051158
3575  ENSG00000160285       ENST00000356396 ENSE00001051181
3576  ENSG00000160285       ENST00000356396 ENSE00001296974
3577  ENSG00000160285       ENST00000356396 ENSE00001051175
3578  ENSG00000160285       ENST00000356396 ENSE00001051174
3579  ENSG00000160285       ENST00000356396 ENSE00001051179
3580  ENSG00000160285       ENST00000356396 ENSE00001285727
3581  ENSG00000160285       ENST00000356396 ENSE00001051185
3582  ENSG00000160285       ENST00000356396 ENSE00001051152
3583  ENSG00000160285       ENST00000356396 ENSE00001051183
3584  ENSG00000160285       ENST00000356396 ENSE00003493443
3585  ENSG00000160285       ENST00000356396 ENSE00001051167
3586  ENSG00000160285       ENST00000356396 ENSE00001051182
3587  ENSG00000160285       ENST00000356396 ENSE00001415142
3588  ENSG00000160285       ENST00000356396 ENSE00003536777
3589  ENSG00000160285       ENST00000491729 ENSE00001936292
3590  ENSG00000160285       ENST00000491729 ENSE00001904479
3591  ENSG00000160285       ENST00000491729 ENSE00001414492
3592  ENSG00000160285       ENST00000397728 ENSE00003470036
3593  ENSG00000160285       ENST00000397728 ENSE00003581204
3594  ENSG00000160285       ENST00000397728 ENSE00003491878
3595  ENSG00000160285       ENST00000397728 ENSE00003532484
3596  ENSG00000160285       ENST00000397728 ENSE00003525946
3597  ENSG00000160285       ENST00000397728 ENSE00003784869
3598  ENSG00000160285       ENST00000397728 ENSE00003500657
3599  ENSG00000160285       ENST00000397728 ENSE00001051158
3600  ENSG00000160285       ENST00000397728 ENSE00001051181
3601  ENSG00000160285       ENST00000397728 ENSE00001296974
3602  ENSG00000160285       ENST00000397728 ENSE00001051175
3603  ENSG00000160285       ENST00000397728 ENSE00001051174
3604  ENSG00000160285       ENST00000397728 ENSE00001051179
3605  ENSG00000160285       ENST00000397728 ENSE00001285727
3606  ENSG00000160285       ENST00000397728 ENSE00001051185
3607  ENSG00000160285       ENST00000397728 ENSE00001051152
3608  ENSG00000160285       ENST00000397728 ENSE00001051183
3609  ENSG00000160285       ENST00000397728 ENSE00003493443
3610  ENSG00000160285       ENST00000397728 ENSE00001051167
3611  ENSG00000160285       ENST00000397728 ENSE00001051182
3612  ENSG00000160285       ENST00000397728 ENSE00003648196
3613  ENSG00000160285       ENST00000397728 ENSE00003493068
3614  ENSG00000160285       ENST00000419093 ENSE00001051182
3615  ENSG00000160285       ENST00000419093 ENSE00001660756
3616  ENSG00000160285       ENST00000419093 ENSE00001620839
3617  ENSG00000160285       ENST00000474319 ENSE00001842859
3618  ENSG00000160285       ENST00000474319 ENSE00003604982
3619  ENSG00000160285       ENST00000522411 ENSE00003470036
3620  ENSG00000160285       ENST00000522411 ENSE00003581204
3621  ENSG00000160285       ENST00000522411 ENSE00003532484
3622  ENSG00000160285       ENST00000522411 ENSE00003525946
3623  ENSG00000160285       ENST00000522411 ENSE00003784869
3624  ENSG00000160285       ENST00000522411 ENSE00003500657
3625  ENSG00000160285       ENST00000522411 ENSE00001051158
3626  ENSG00000160285       ENST00000522411 ENSE00001051181
3627  ENSG00000160285       ENST00000522411 ENSE00001296974
3628  ENSG00000160285       ENST00000522411 ENSE00001051175
3629  ENSG00000160285       ENST00000522411 ENSE00001051174
3630  ENSG00000160285       ENST00000522411 ENSE00001051179
3631  ENSG00000160285       ENST00000522411 ENSE00001285727
3632  ENSG00000160285       ENST00000522411 ENSE00001051185
3633  ENSG00000160285       ENST00000522411 ENSE00001051152
3634  ENSG00000160285       ENST00000522411 ENSE00001051183
3635  ENSG00000160285       ENST00000522411 ENSE00003493443
3636  ENSG00000160285       ENST00000522411 ENSE00001051167
3637  ENSG00000160285       ENST00000522411 ENSE00001051182
3638  ENSG00000160285       ENST00000522411 ENSE00002125527
3639  ENSG00000160285       ENST00000522411 ENSE00001643951
3640  ENSG00000160285       ENST00000522411 ENSE00002137517
3641  ENSG00000160285       ENST00000484808 ENSE00001842323
3642  ENSG00000160285       ENST00000484808 ENSE00003677959
3643  ENSG00000160285       ENST00000464357 ENSE00001881795
3644  ENSG00000160285       ENST00000464357 ENSE00003538704
3645  ENSG00000160285       ENST00000464357 ENSE00003622265
3646  ENSG00000160285       ENST00000464357 ENSE00003500120
3647  ENSG00000160285       ENST00000464357 ENSE00003564674
3648  ENSG00000160285       ENST00000464357 ENSE00003527897
3649  ENSG00000160285       ENST00000464357 ENSE00003493703
3650  ENSG00000160285       ENST00000450351 ENSE00003470036
3651  ENSG00000160285       ENST00000450351 ENSE00003581204
3652  ENSG00000160285       ENST00000450351 ENSE00003491878
3653  ENSG00000160285       ENST00000450351 ENSE00003532484
3654  ENSG00000160285       ENST00000450351 ENSE00003525946
3655  ENSG00000160285       ENST00000450351 ENSE00003784869
3656  ENSG00000160285       ENST00000450351 ENSE00001717484
3657  ENSG00000160285       ENST00000472272 ENSE00001344217
3658  ENSG00000160285       ENST00000472272 ENSE00003629865
3659  ENSG00000160285       ENST00000472272 ENSE00001819912
3660  ENSG00000160285       ENST00000457828 ENSE00003491878
3661  ENSG00000160285       ENST00000457828 ENSE00003532484
3662  ENSG00000160285       ENST00000457828 ENSE00003525946
3663  ENSG00000160285       ENST00000457828 ENSE00003784869
3664  ENSG00000160285       ENST00000457828 ENSE00003500657
3665  ENSG00000160285       ENST00000457828 ENSE00001051158
3666  ENSG00000160285       ENST00000457828 ENSE00001051181
3667  ENSG00000160285       ENST00000457828 ENSE00001296974
3668  ENSG00000160285       ENST00000457828 ENSE00001051175
3669  ENSG00000160285       ENST00000457828 ENSE00001051174
3670  ENSG00000160285       ENST00000457828 ENSE00001051179
3671  ENSG00000160285       ENST00000457828 ENSE00001285727
3672  ENSG00000160285       ENST00000457828 ENSE00001051185
3673  ENSG00000160285       ENST00000457828 ENSE00001051152
3674  ENSG00000160285       ENST00000457828 ENSE00001051183
3675  ENSG00000160285       ENST00000457828 ENSE00003493443
3676  ENSG00000160285       ENST00000457828 ENSE00001051167
3677  ENSG00000160285       ENST00000457828 ENSE00001051182
3678  ENSG00000160285       ENST00000457828 ENSE00002282628
3679  ENSG00000160285       ENST00000457828 ENSE00003556063
3680  ENSG00000160285       ENST00000457828 ENSE00002209641
3681  ENSG00000141956       ENST00000486812 ENSE00003475242
3682  ENSG00000141956       ENST00000486812 ENSE00003462670
3683  ENSG00000141956       ENST00000486812 ENSE00002371444
3684  ENSG00000141956       ENST00000486812 ENSE00001776279
3685  ENSG00000141956       ENST00000486812 ENSE00001876184
3686  ENSG00000141956       ENST00000486812 ENSE00003626137
3687  ENSG00000141956       ENST00000470586 ENSE00001875391
3688  ENSG00000141956       ENST00000470586 ENSE00003475242
3689  ENSG00000141956       ENST00000470586 ENSE00003462670
3690  ENSG00000141956       ENST00000470586 ENSE00002416115
3691  ENSG00000141956       ENST00000470586 ENSE00002397078
3692  ENSG00000141956       ENST00000470586 ENSE00002371444
3693  ENSG00000141956       ENST00000470586 ENSE00001776279
3694  ENSG00000141956       ENST00000447016 ENSE00002371444
3695  ENSG00000141956       ENST00000447016 ENSE00001776279
3696  ENSG00000141956       ENST00000447016 ENSE00001949076
3697  ENSG00000141956       ENST00000447016 ENSE00003594386
3698  ENSG00000141956       ENST00000447016 ENSE00001327189
3699  ENSG00000141956       ENST00000447016 ENSE00001320360
3700  ENSG00000141956       ENST00000447016 ENSE00000951413
3701  ENSG00000141956       ENST00000447016 ENSE00000951414
3702  ENSG00000141956       ENST00000447016 ENSE00000951415
3703  ENSG00000141956       ENST00000447016 ENSE00000951416
3704  ENSG00000141956       ENST00000447016 ENSE00003504505
3705  ENSG00000141956       ENST00000447016 ENSE00003509158
3706  ENSG00000141956       ENST00000447016 ENSE00003686098
3707  ENSG00000141956       ENST00000447016 ENSE00003676963
3708  ENSG00000141956       ENST00000447016 ENSE00003565640
3709  ENSG00000141956       ENST00000447016 ENSE00003461883
3710  ENSG00000141956       ENST00000447016 ENSE00003585719
3711  ENSG00000141956       ENST00000447016 ENSE00003638827
3712  ENSG00000141956       ENST00000447016 ENSE00003564993
3713  ENSG00000141956       ENST00000447016 ENSE00003542838
3714  ENSG00000141956       ENST00000447016 ENSE00003511333
3715  ENSG00000141956       ENST00000447016 ENSE00003580708
3716  ENSG00000141956       ENST00000447016 ENSE00003594566
3717  ENSG00000141956       ENST00000447016 ENSE00003667541
3718  ENSG00000141956       ENST00000447016 ENSE00003561259
3719  ENSG00000141956       ENST00000447016 ENSE00003557617
3720  ENSG00000141956       ENST00000422911 ENSE00001327189
3721  ENSG00000141956       ENST00000422911 ENSE00001320360
3722  ENSG00000141956       ENST00000422911 ENSE00000951413
3723  ENSG00000141956       ENST00000422911 ENSE00000951414
3724  ENSG00000141956       ENST00000422911 ENSE00000951415
3725  ENSG00000141956       ENST00000422911 ENSE00000951416
3726  ENSG00000141956       ENST00000422911 ENSE00003504505
3727  ENSG00000141956       ENST00000422911 ENSE00003509158
3728  ENSG00000141956       ENST00000422911 ENSE00003686098
3729  ENSG00000141956       ENST00000422911 ENSE00003676963
3730  ENSG00000141956       ENST00000422911 ENSE00003565640
3731  ENSG00000141956       ENST00000422911 ENSE00003461883
3732  ENSG00000141956       ENST00000422911 ENSE00003585719
3733  ENSG00000141956       ENST00000422911 ENSE00003638827
3734  ENSG00000141956       ENST00000422911 ENSE00003564993
3735  ENSG00000141956       ENST00000422911 ENSE00003542838
3736  ENSG00000141956       ENST00000422911 ENSE00003511333
3737  ENSG00000141956       ENST00000422911 ENSE00003580708
3738  ENSG00000141956       ENST00000422911 ENSE00003594566
3739  ENSG00000141956       ENST00000422911 ENSE00003667541
3740  ENSG00000141956       ENST00000422911 ENSE00003561259
3741  ENSG00000141956       ENST00000422911 ENSE00003635598
3742  ENSG00000141956       ENST00000422911 ENSE00003559079
3743  ENSG00000141956       ENST00000422911 ENSE00001485163
3744  ENSG00000141956       ENST00000422911 ENSE00003573987
3745  ENSG00000141956       ENST00000441787 ENSE00003475242
3746  ENSG00000141956       ENST00000441787 ENSE00003462670
3747  ENSG00000141956       ENST00000441787 ENSE00003594386
3748  ENSG00000141956       ENST00000441787 ENSE00001327189
3749  ENSG00000141956       ENST00000441787 ENSE00001320360
3750  ENSG00000141956       ENST00000441787 ENSE00000951413
3751  ENSG00000141956       ENST00000441787 ENSE00000951414
3752  ENSG00000141956       ENST00000441787 ENSE00000951415
3753  ENSG00000141956       ENST00000441787 ENSE00000951416
3754  ENSG00000141956       ENST00000441787 ENSE00003509158
3755  ENSG00000141956       ENST00000441787 ENSE00003686098
3756  ENSG00000141956       ENST00000441787 ENSE00003650421
3757  ENSG00000141956       ENST00000441787 ENSE00001616145
3758  ENSG00000141956       ENST00000441787 ENSE00001485162
3759  ENSG00000141956       ENST00000441787 ENSE00003460271
3760  ENSG00000141956       ENST00000441787 ENSE00003663073
3761  ENSG00000141956       ENST00000441787 ENSE00003643230
3762  ENSG00000141956       ENST00000441787 ENSE00003621160
3763  ENSG00000141956       ENST00000441787 ENSE00003667572
3764  ENSG00000141956       ENST00000441787 ENSE00003559252
3765  ENSG00000141956       ENST00000441787 ENSE00003528992
3766  ENSG00000141956       ENST00000441787 ENSE00003593338
3767  ENSG00000141956       ENST00000441787 ENSE00003559241
3768  ENSG00000141956       ENST00000441787 ENSE00003666999
3769  ENSG00000141956       ENST00000449395 ENSE00003475242
3770  ENSG00000141956       ENST00000449395 ENSE00003462670
3771  ENSG00000141956       ENST00000449395 ENSE00001327189
3772  ENSG00000141956       ENST00000449395 ENSE00001320360
3773  ENSG00000141956       ENST00000449395 ENSE00000951413
3774  ENSG00000141956       ENST00000449395 ENSE00000951414
3775  ENSG00000141956       ENST00000449395 ENSE00000951415
3776  ENSG00000141956       ENST00000449395 ENSE00000951416
3777  ENSG00000141956       ENST00000449395 ENSE00003504505
3778  ENSG00000141956       ENST00000449395 ENSE00003509158
3779  ENSG00000141956       ENST00000449395 ENSE00003686098
3780  ENSG00000141956       ENST00000449395 ENSE00003635598
3781  ENSG00000141956       ENST00000449395 ENSE00003559079
3782  ENSG00000141956       ENST00000449395 ENSE00001485163
3783  ENSG00000141956       ENST00000449395 ENSE00001485162
3784  ENSG00000141956       ENST00000449395 ENSE00003460271
3785  ENSG00000141956       ENST00000449395 ENSE00003663073
3786  ENSG00000141956       ENST00000449395 ENSE00003643230
3787  ENSG00000141956       ENST00000449395 ENSE00003621160
3788  ENSG00000141956       ENST00000449395 ENSE00003667572
3789  ENSG00000141956       ENST00000449395 ENSE00003559252
3790  ENSG00000141956       ENST00000449395 ENSE00003528992
3791  ENSG00000141956       ENST00000449395 ENSE00003593338
3792  ENSG00000141956       ENST00000449395 ENSE00003559241
3793  ENSG00000141956       ENST00000449395 ENSE00003666999
3794  ENSG00000141956       ENST00000398548 ENSE00001327189
3795  ENSG00000141956       ENST00000398548 ENSE00001320360
3796  ENSG00000141956       ENST00000398548 ENSE00000951413
3797  ENSG00000141956       ENST00000398548 ENSE00000951414
3798  ENSG00000141956       ENST00000398548 ENSE00000951415
3799  ENSG00000141956       ENST00000398548 ENSE00000951416
3800  ENSG00000141956       ENST00000398548 ENSE00003504505
3801  ENSG00000141956       ENST00000398548 ENSE00003509158
3802  ENSG00000141956       ENST00000398548 ENSE00003686098
3803  ENSG00000141956       ENST00000398548 ENSE00003676963
3804  ENSG00000141956       ENST00000398548 ENSE00003565640
3805  ENSG00000141956       ENST00000398548 ENSE00003461883
3806  ENSG00000141956       ENST00000398548 ENSE00003585719
3807  ENSG00000141956       ENST00000398548 ENSE00003638827
3808  ENSG00000141956       ENST00000398548 ENSE00003564993
3809  ENSG00000141956       ENST00000398548 ENSE00003542838
3810  ENSG00000141956       ENST00000398548 ENSE00003511333
3811  ENSG00000141956       ENST00000398548 ENSE00003580708
3812  ENSG00000141956       ENST00000398548 ENSE00003594566
3813  ENSG00000141956       ENST00000398548 ENSE00003667541
3814  ENSG00000141956       ENST00000398548 ENSE00003561259
3815  ENSG00000141956       ENST00000398548 ENSE00003635598
3816  ENSG00000141956       ENST00000398548 ENSE00003559079
3817  ENSG00000141956       ENST00000398548 ENSE00003573987
3818  ENSG00000141956       ENST00000433067 ENSE00002371444
3819  ENSG00000141956       ENST00000433067 ENSE00001776279
3820  ENSG00000141956       ENST00000433067 ENSE00001327189
3821  ENSG00000141956       ENST00000433067 ENSE00001320360
3822  ENSG00000141956       ENST00000433067 ENSE00000951413
3823  ENSG00000141956       ENST00000433067 ENSE00000951414
3824  ENSG00000141956       ENST00000433067 ENSE00000951415
3825  ENSG00000141956       ENST00000433067 ENSE00000951416
3826  ENSG00000141956       ENST00000433067 ENSE00003504505
3827  ENSG00000141956       ENST00000433067 ENSE00003509158
3828  ENSG00000141956       ENST00000433067 ENSE00003686098
3829  ENSG00000141956       ENST00000433067 ENSE00003676963
3830  ENSG00000141956       ENST00000433067 ENSE00003565640
3831  ENSG00000141956       ENST00000433067 ENSE00003461883
3832  ENSG00000141956       ENST00000433067 ENSE00003585719
3833  ENSG00000141956       ENST00000433067 ENSE00003638827
3834  ENSG00000141956       ENST00000433067 ENSE00003564993
3835  ENSG00000141956       ENST00000433067 ENSE00003542838
3836  ENSG00000141956       ENST00000433067 ENSE00003511333
3837  ENSG00000141956       ENST00000433067 ENSE00003580708
3838  ENSG00000141956       ENST00000433067 ENSE00003594566
3839  ENSG00000141956       ENST00000433067 ENSE00003667541
3840  ENSG00000141956       ENST00000433067 ENSE00003561259
3841  ENSG00000141956       ENST00000433067 ENSE00003557617
3842  ENSG00000141956       ENST00000433067 ENSE00003559079
3843  ENSG00000141956       ENST00000433067 ENSE00002728515
3844  ENSG00000141956       ENST00000433067 ENSE00002450021
3845  ENSG00000141956       ENST00000433067 ENSE00002535944
3846  ENSG00000141956       ENST00000433067 ENSE00002483656
3847  ENSG00000141956       ENST00000433067 ENSE00002523713
3848  ENSG00000141956       ENST00000433067 ENSE00002495427
3849  ENSG00000141956       ENST00000433067 ENSE00002471300
3850  ENSG00000141956       ENST00000433067 ENSE00001304247
3851  ENSG00000141956       ENST00000465955 ENSE00001898745
3852  ENSG00000141956       ENST00000465955 ENSE00001937389
3853  ENSG00000141956       ENST00000477633 ENSE00003462670
3854  ENSG00000141956       ENST00000477633 ENSE00001692014
3855  ENSG00000141956       ENST00000477633 ENSE00001954341
3856  ENSG00000141956       ENST00000495217 ENSE00003475242
3857  ENSG00000141956       ENST00000495217 ENSE00003528992
3858  ENSG00000141956       ENST00000495217 ENSE00003593338
3859  ENSG00000141956       ENST00000495217 ENSE00003559241
3860  ENSG00000141956       ENST00000495217 ENSE00001918204
3861  ENSG00000141956       ENST00000495217 ENSE00001862885
3862  ENSG00000141956       ENST00000491486 ENSE00003643230
3863  ENSG00000141956       ENST00000491486 ENSE00001934687
3864  ENSG00000141956       ENST00000491486 ENSE00003489919
3865  ENSG00000141956       ENST00000491486 ENSE00003525145
3866  ENSG00000141956       ENST00000491486 ENSE00001868807
3867  ENSG00000141956       ENST00000489661 ENSE00003489919
3868  ENSG00000141956       ENST00000489661 ENSE00001904962
3869  ENSG00000141956       ENST00000489661 ENSE00003599212
3870  ENSG00000141956       ENST00000489661 ENSE00003614758
3871  ENSG00000141956       ENST00000489661 ENSE00001956232
3872  ENSG00000141956       ENST00000496124 ENSE00003599212
3873  ENSG00000141956       ENST00000496124 ENSE00003614758
3874  ENSG00000141956       ENST00000496124 ENSE00001920832
3875  ENSG00000141956       ENST00000496124 ENSE00003629930
3876  ENSG00000141956       ENST00000496124 ENSE00002467731
3877  ENSG00000141956       ENST00000269844 ENSE00001327189
3878  ENSG00000141956       ENST00000269844 ENSE00001320360
3879  ENSG00000141956       ENST00000269844 ENSE00000951413
3880  ENSG00000141956       ENST00000269844 ENSE00000951414
3881  ENSG00000141956       ENST00000269844 ENSE00000951415
3882  ENSG00000141956       ENST00000269844 ENSE00000951416
3883  ENSG00000141956       ENST00000269844 ENSE00003504505
3884  ENSG00000141956       ENST00000269844 ENSE00003509158
3885  ENSG00000141956       ENST00000269844 ENSE00003686098
3886  ENSG00000141956       ENST00000269844 ENSE00003676963
3887  ENSG00000141956       ENST00000269844 ENSE00003565640
3888  ENSG00000141956       ENST00000269844 ENSE00003461883
3889  ENSG00000141956       ENST00000269844 ENSE00003585719
3890  ENSG00000141956       ENST00000269844 ENSE00003638827
3891  ENSG00000141956       ENST00000269844 ENSE00003564993
3892  ENSG00000141956       ENST00000269844 ENSE00003542838
3893  ENSG00000141956       ENST00000269844 ENSE00003511333
3894  ENSG00000141956       ENST00000269844 ENSE00003580708
3895  ENSG00000141956       ENST00000269844 ENSE00003594566
3896  ENSG00000141956       ENST00000269844 ENSE00003667541
3897  ENSG00000141956       ENST00000269844 ENSE00003561259
3898  ENSG00000141956       ENST00000269844 ENSE00003559079
3899  ENSG00000141956       ENST00000269844 ENSE00002728515
3900  ENSG00000141956       ENST00000269844 ENSE00002450021
3901  ENSG00000141956       ENST00000269844 ENSE00002535944
3902  ENSG00000141956       ENST00000269844 ENSE00002483656
3903  ENSG00000141956       ENST00000269844 ENSE00002523713
3904  ENSG00000141956       ENST00000269844 ENSE00002495427
3905  ENSG00000141956       ENST00000269844 ENSE00002471300
3906  ENSG00000141956       ENST00000269844 ENSE00001304247
3907  ENSG00000141956       ENST00000269844 ENSE00002312361
3908  ENSG00000141956       ENST00000447207 ENSE00002371444
3909  ENSG00000141956       ENST00000447207 ENSE00001327189
3910  ENSG00000141956       ENST00000447207 ENSE00001320360
3911  ENSG00000141956       ENST00000447207 ENSE00000951413
3912  ENSG00000141956       ENST00000447207 ENSE00000951414
3913  ENSG00000141956       ENST00000447207 ENSE00000951415
3914  ENSG00000141956       ENST00000447207 ENSE00000951416
3915  ENSG00000141956       ENST00000447207 ENSE00003504505
3916  ENSG00000141956       ENST00000447207 ENSE00003509158
3917  ENSG00000141956       ENST00000447207 ENSE00003686098
3918  ENSG00000141956       ENST00000447207 ENSE00003676963
3919  ENSG00000141956       ENST00000447207 ENSE00003565640
3920  ENSG00000141956       ENST00000447207 ENSE00003461883
3921  ENSG00000141956       ENST00000447207 ENSE00003585719
3922  ENSG00000141956       ENST00000447207 ENSE00003638827
3923  ENSG00000141956       ENST00000447207 ENSE00003564993
3924  ENSG00000141956       ENST00000447207 ENSE00003542838
3925  ENSG00000141956       ENST00000447207 ENSE00003511333
3926  ENSG00000141956       ENST00000447207 ENSE00003580708
3927  ENSG00000141956       ENST00000447207 ENSE00003594566
3928  ENSG00000141956       ENST00000447207 ENSE00003667541
3929  ENSG00000141956       ENST00000447207 ENSE00003561259
3930  ENSG00000141956       ENST00000447207 ENSE00003557617
3931  ENSG00000141956       ENST00000447207 ENSE00002243056
3932  ENSG00000141956       ENST00000447207 ENSE00002344156
3933  ENSG00000156265       ENST00000496779 ENSE00001932051
3934  ENSG00000156265       ENST00000496779 ENSE00001540907
3935  ENSG00000156265       ENST00000496779 ENSE00003637621
3936  ENSG00000156265       ENST00000496779 ENSE00003506187
3937  ENSG00000156265       ENST00000496779 ENSE00003692591
3938  ENSG00000156265       ENST00000496779 ENSE00003592989
3939  ENSG00000156265       ENST00000496779 ENSE00001830924
3940  ENSG00000156265       ENST00000419845 ENSE00001540907
3941  ENSG00000156265       ENST00000419845 ENSE00001801678
3942  ENSG00000156265       ENST00000419845 ENSE00003477047
3943  ENSG00000156265       ENST00000419845 ENSE00003788813
3944  ENSG00000156265       ENST00000492930 ENSE00003637621
3945  ENSG00000156265       ENST00000492930 ENSE00003506187
3946  ENSG00000156265       ENST00000492930 ENSE00003692591
3947  ENSG00000156265       ENST00000492930 ENSE00003592989
3948  ENSG00000156265       ENST00000492930 ENSE00001954687
3949  ENSG00000156265       ENST00000492930 ENSE00001920016
3950  ENSG00000156265       ENST00000341618 ENSE00003477047
3951  ENSG00000156265       ENST00000341618 ENSE00003788813
3952  ENSG00000156265       ENST00000341618 ENSE00001540930
3953  ENSG00000156265       ENST00000341618 ENSE00003688344
3954  ENSG00000156265       ENST00000341618 ENSE00003616566
3955  ENSG00000156265       ENST00000341618 ENSE00003505985
3956  ENSG00000156265       ENST00000341618 ENSE00003485631
3957  ENSG00000156265       ENST00000341618 ENSE00001540853
3958  ENSG00000156265       ENST00000399935 ENSE00003637621
3959  ENSG00000156265       ENST00000399935 ENSE00003506187
3960  ENSG00000156265       ENST00000399935 ENSE00003692591
3961  ENSG00000156265       ENST00000399935 ENSE00003592989
3962  ENSG00000156265       ENST00000399935 ENSE00001540930
3963  ENSG00000156265       ENST00000399935 ENSE00003505985
3964  ENSG00000156265       ENST00000399935 ENSE00003485631
3965  ENSG00000156265       ENST00000399935 ENSE00001540853
3966  ENSG00000156265       ENST00000399935 ENSE00001413060
3967  ENSG00000156265       ENST00000399935 ENSE00003577947
3968  ENSG00000156265       ENST00000399934 ENSE00003637621
3969  ENSG00000156265       ENST00000399934 ENSE00003506187
3970  ENSG00000156265       ENST00000399934 ENSE00003692591
3971  ENSG00000156265       ENST00000399934 ENSE00003592989
3972  ENSG00000156265       ENST00000399934 ENSE00001540930
3973  ENSG00000156265       ENST00000399934 ENSE00003505985
3974  ENSG00000156265       ENST00000399934 ENSE00003485631
3975  ENSG00000156265       ENST00000399934 ENSE00001540853
3976  ENSG00000156265       ENST00000399934 ENSE00003577947
3977  ENSG00000156265       ENST00000399947 ENSE00001540907
3978  ENSG00000156265       ENST00000399947 ENSE00003477047
3979  ENSG00000156265       ENST00000399947 ENSE00003788813
3980  ENSG00000156265       ENST00000399947 ENSE00003688344
3981  ENSG00000156265       ENST00000399947 ENSE00003616566
3982  ENSG00000156265       ENST00000399947 ENSE00003505985
3983  ENSG00000156265       ENST00000399947 ENSE00003485631
3984  ENSG00000156265       ENST00000399947 ENSE00001540853
3985  ENSG00000156265       ENST00000399947 ENSE00001540906
3986  ENSG00000156265       ENST00000339024 ENSE00003505985
3987  ENSG00000156265       ENST00000339024 ENSE00003485631
3988  ENSG00000156265       ENST00000339024 ENSE00001540853
3989  ENSG00000156265       ENST00000339024 ENSE00001413060
3990  ENSG00000156265       ENST00000339024 ENSE00003577947
3991  ENSG00000156265       ENST00000339024 ENSE00001493551
3992  ENSG00000156265       ENST00000339024 ENSE00003482924
3993  ENSG00000156265       ENST00000460883 ENSE00001929670
3994  ENSG00000156265       ENST00000460883 ENSE00003577225
3995  ENSG00000156265       ENST00000460883 ENSE00003686991
3996  ENSG00000156265       ENST00000460883 ENSE00001878413
3997  ENSG00000156265       ENST00000399928 ENSE00003505985
3998  ENSG00000156265       ENST00000399928 ENSE00003485631
3999  ENSG00000156265       ENST00000399928 ENSE00001540853
4000  ENSG00000156265       ENST00000399928 ENSE00003577947
4001  ENSG00000156265       ENST00000399928 ENSE00001540840
4002  ENSG00000156265       ENST00000399926 ENSE00003505985
4003  ENSG00000156265       ENST00000399926 ENSE00003485631
4004  ENSG00000156265       ENST00000399926 ENSE00001413060
4005  ENSG00000156265       ENST00000399926 ENSE00003577947
4006  ENSG00000156265       ENST00000399926 ENSE00001540834
4007  ENSG00000156265       ENST00000399926 ENSE00001540833
4008  ENSG00000156265       ENST00000399925 ENSE00003505985
4009  ENSG00000156265       ENST00000399925 ENSE00003485631
4010  ENSG00000156265       ENST00000399925 ENSE00003577947
4011  ENSG00000156265       ENST00000399925 ENSE00001540829
4012  ENSG00000156265       ENST00000399925 ENSE00001540828
4013  ENSG00000156265       ENST00000451489 ENSE00003505985
4014  ENSG00000156265       ENST00000451489 ENSE00003485631
4015  ENSG00000156265       ENST00000451489 ENSE00003577947
4016  ENSG00000156265       ENST00000451489 ENSE00001721677
4017  ENSG00000156265       ENST00000451489 ENSE00001692353
4018  ENSG00000156265       ENST00000470800 ENSE00003577225
4019  ENSG00000156265       ENST00000470800 ENSE00003686991
4020  ENSG00000156265       ENST00000470800 ENSE00001855228
4021  ENSG00000156265       ENST00000470800 ENSE00001953114
4022  ENSG00000156265       ENST00000286791 ENSE00003788813
4023  ENSG00000156265       ENST00000286791 ENSE00003688344
4024  ENSG00000156265       ENST00000286791 ENSE00003616566
4025  ENSG00000156265       ENST00000286791 ENSE00003505985
4026  ENSG00000156265       ENST00000286791 ENSE00003485631
4027  ENSG00000156265       ENST00000286791 ENSE00003734512
4028  ENSG00000156265       ENST00000286791 ENSE00001749481
4029  ENSG00000156265       ENST00000545939 ENSE00003505985
4030  ENSG00000156265       ENST00000545939 ENSE00003485631
4031  ENSG00000156265       ENST00000545939 ENSE00001749481
4032  ENSG00000156265       ENST00000545939 ENSE00003616261
4033  ENSG00000232687       ENST00000412942 ENSE00001799833
4034  ENSG00000280191       ENST00000624561 ENSE00003755445
4035  ENSG00000280191       ENST00000624561 ENSE00003758565
4036  ENSG00000280191       ENST00000624561 ENSE00003754900
4037  ENSG00000280191       ENST00000624561 ENSE00003759768
4038  ENSG00000280191       ENST00000624105 ENSE00003756793
4039  ENSG00000280191       ENST00000624105 ENSE00003758991
4040  ENSG00000280191       ENST00000624113 ENSE00003758109
4041  ENSG00000280191       ENST00000624113 ENSE00003758468
4042  ENSG00000280191       ENST00000623161 ENSE00003757687
4043  ENSG00000280191       ENST00000623161 ENSE00003757910
4044  ENSG00000280191       ENST00000623161 ENSE00003757588
4045  ENSG00000280191       ENST00000623161 ENSE00003754930
4046  ENSG00000280191       ENST00000623549 ENSE00003757910
4047  ENSG00000280191       ENST00000623549 ENSE00003756348
4048  ENSG00000280191       ENST00000623549 ENSE00003759668
4049  ENSG00000279186       ENST00000624506 ENSE00003756739
4050  ENSG00000279784       ENST00000623587 ENSE00003758868
4051  ENSG00000279784       ENST00000623587 ENSE00003757033
4052  ENSG00000230972       ENST00000421604 ENSE00001649771
4053  ENSG00000230972       ENST00000421604 ENSE00001709811
4054  ENSG00000230972       ENST00000421604 ENSE00001665289
4055  ENSG00000230972       ENST00000421604 ENSE00001669384
4056  ENSG00000230972       ENST00000421604 ENSE00001638286
4057  ENSG00000233215       ENST00000416327 ENSE00001644507
4058  ENSG00000233215       ENST00000416327 ENSE00001621289
4059  ENSG00000233215       ENST00000416327 ENSE00001772640
4060  ENSG00000233215       ENST00000420255 ENSE00001621289
4061  ENSG00000233215       ENST00000420255 ENSE00001744169
4062  ENSG00000233215       ENST00000420255 ENSE00001646364
4063  ENSG00000233215       ENST00000420255 ENSE00001723739
4064  ENSG00000233215       ENST00000420255 ENSE00001752387
4065  ENSG00000233215       ENST00000420255 ENSE00001654279
4066  ENSG00000233215       ENST00000419467 ENSE00001686615
4067  ENSG00000233215       ENST00000419467 ENSE00001725038
4068  ENSG00000233215       ENST00000419467 ENSE00001671087
4069  ENSG00000227075       ENST00000452500 ENSE00001794925
4070  ENSG00000227075       ENST00000452500 ENSE00001685738
4071  ENSG00000227075       ENST00000452500 ENSE00001616092
4072  ENSG00000236677       ENST00000436303 ENSE00001711920
4073  ENSG00000236677       ENST00000436303 ENSE00001788299
4074  ENSG00000236677       ENST00000436303 ENSE00001650043
4075  ENSG00000233480       ENST00000443479 ENSE00001650188
4076  ENSG00000233480       ENST00000443479 ENSE00001677715
4077  ENSG00000233480       ENST00000443479 ENSE00001705269
4078  ENSG00000166979       ENST00000469079 ENSE00001954046
4079  ENSG00000166979       ENST00000469079 ENSE00003506889
4080  ENSG00000166979       ENST00000469079 ENSE00003578865
4081  ENSG00000166979       ENST00000469079 ENSE00001887125
4082  ENSG00000166979       ENST00000459833 ENSE00003506889
4083  ENSG00000166979       ENST00000459833 ENSE00001932967
4084  ENSG00000166979       ENST00000459833 ENSE00003496455
4085  ENSG00000166979       ENST00000459833 ENSE00003548118
4086  ENSG00000166979       ENST00000459833 ENSE00001907656
4087  ENSG00000166979       ENST00000300255 ENSE00001840809
4088  ENSG00000166979       ENST00000300255 ENSE00003528501
4089  ENSG00000166979       ENST00000300255 ENSE00003593323
4090  ENSG00000166979       ENST00000300255 ENSE00003610773
4091  ENSG00000166979       ENST00000300255 ENSE00003640508
4092  ENSG00000166979       ENST00000300255 ENSE00003516969
4093  ENSG00000166979       ENST00000300255 ENSE00003488598
4094  ENSG00000166979       ENST00000300255 ENSE00003571881
4095  ENSG00000166979       ENST00000435323 ENSE00003496455
4096  ENSG00000166979       ENST00000435323 ENSE00001493039
4097  ENSG00000166979       ENST00000435323 ENSE00003651349
4098  ENSG00000166979       ENST00000435323 ENSE00003584501
4099  ENSG00000166979       ENST00000435323 ENSE00003477931
4100  ENSG00000166979       ENST00000435323 ENSE00003535755
4101  ENSG00000166979       ENST00000437338 ENSE00003496455
4102  ENSG00000166979       ENST00000437338 ENSE00003548118
4103  ENSG00000166979       ENST00000437338 ENSE00001493039
4104  ENSG00000166979       ENST00000437338 ENSE00003651349
4105  ENSG00000166979       ENST00000437338 ENSE00003584501
4106  ENSG00000166979       ENST00000437338 ENSE00003477931
4107  ENSG00000166979       ENST00000437338 ENSE00003535755
4108  ENSG00000166979       ENST00000457807 ENSE00003610773
4109  ENSG00000166979       ENST00000457807 ENSE00003640508
4110  ENSG00000166979       ENST00000457807 ENSE00003477931
4111  ENSG00000166979       ENST00000457807 ENSE00003535755
4112  ENSG00000166979       ENST00000457807 ENSE00001553789
4113  ENSG00000166979       ENST00000457807 ENSE00001789432
4114  ENSG00000166979       ENST00000401402 ENSE00003528501
4115  ENSG00000166979       ENST00000401402 ENSE00003593323
4116  ENSG00000166979       ENST00000401402 ENSE00003610773
4117  ENSG00000166979       ENST00000401402 ENSE00003516969
4118  ENSG00000166979       ENST00000401402 ENSE00003488598
4119  ENSG00000166979       ENST00000401402 ENSE00001944221
4120  ENSG00000166979       ENST00000401402 ENSE00001863083
4121  ENSG00000166979       ENST00000382699 ENSE00003528501
4122  ENSG00000166979       ENST00000382699 ENSE00003593323
4123  ENSG00000166979       ENST00000382699 ENSE00003610773
4124  ENSG00000166979       ENST00000382699 ENSE00003640508
4125  ENSG00000166979       ENST00000382699 ENSE00003488598
4126  ENSG00000166979       ENST00000382699 ENSE00003571881
4127  ENSG00000166979       ENST00000382699 ENSE00001901234
4128  ENSG00000166979       ENST00000382699 ENSE00001493037
4129  ENSG00000166979       ENST00000481638 ENSE00001816132
4130  ENSG00000166979       ENST00000481638 ENSE00001957162
4131  ENSG00000166979       ENST00000412833 ENSE00003593323
4132  ENSG00000166979       ENST00000412833 ENSE00003610773
4133  ENSG00000166979       ENST00000412833 ENSE00001736309
4134  ENSG00000166979       ENST00000412833 ENSE00003581613
4135  ENSG00000166979       ENST00000412833 ENSE00001702714
4136  ENSG00000166979       ENST00000464037 ENSE00003578865
4137  ENSG00000166979       ENST00000464037 ENSE00003496455
4138  ENSG00000166979       ENST00000464037 ENSE00003548118
4139  ENSG00000166979       ENST00000464037 ENSE00003584501
4140  ENSG00000166979       ENST00000464037 ENSE00003477931
4141  ENSG00000166979       ENST00000464037 ENSE00003535755
4142  ENSG00000166979       ENST00000464037 ENSE00001886268
4143  ENSG00000166979       ENST00000496615 ENSE00003548118
4144  ENSG00000166979       ENST00000496615 ENSE00003584501
4145  ENSG00000166979       ENST00000496615 ENSE00003477931
4146  ENSG00000166979       ENST00000496615 ENSE00001851200
4147  ENSG00000166979       ENST00000496615 ENSE00001928321
4148  ENSG00000166979       ENST00000485488 ENSE00003477931
4149  ENSG00000166979       ENST00000485488 ENSE00003535755
4150  ENSG00000166979       ENST00000485488 ENSE00001819450
4151  ENSG00000235888       ENST00000417335 ENSE00001688039
4152  ENSG00000235888       ENST00000417335 ENSE00001602024
4153  ENSG00000235888       ENST00000417335 ENSE00001798412
4154  ENSG00000249493       ENST00000359341 ENSE00002039080
4155  ENSG00000249493       ENST00000359341 ENSE00001609657
4156  ENSG00000249493       ENST00000359341 ENSE00002057291
4157  ENSG00000237202       ENST00000424255 ENSE00001727607
4158  ENSG00000156299       ENST00000286827 ENSE00001372551
4159  ENSG00000156299       ENST00000286827 ENSE00001367893
4160  ENSG00000156299       ENST00000286827 ENSE00001383160
4161  ENSG00000156299       ENST00000286827 ENSE00001365575
4162  ENSG00000156299       ENST00000286827 ENSE00001025653
4163  ENSG00000156299       ENST00000286827 ENSE00003665885
4164  ENSG00000156299       ENST00000286827 ENSE00003624335
4165  ENSG00000156299       ENST00000286827 ENSE00003540307
4166  ENSG00000156299       ENST00000286827 ENSE00003581255
4167  ENSG00000156299       ENST00000286827 ENSE00003609954
4168  ENSG00000156299       ENST00000286827 ENSE00001265070
4169  ENSG00000156299       ENST00000286827 ENSE00001025641
4170  ENSG00000156299       ENST00000286827 ENSE00001025658
4171  ENSG00000156299       ENST00000286827 ENSE00001025636
4172  ENSG00000156299       ENST00000286827 ENSE00001025648
4173  ENSG00000156299       ENST00000286827 ENSE00001025649
4174  ENSG00000156299       ENST00000286827 ENSE00001025650
4175  ENSG00000156299       ENST00000286827 ENSE00001025643
4176  ENSG00000156299       ENST00000286827 ENSE00001025638
4177  ENSG00000156299       ENST00000286827 ENSE00001025637
4178  ENSG00000156299       ENST00000286827 ENSE00001025651
4179  ENSG00000156299       ENST00000286827 ENSE00001610053
4180  ENSG00000156299       ENST00000286827 ENSE00001722006
4181  ENSG00000156299       ENST00000286827 ENSE00001700177
4182  ENSG00000156299       ENST00000286827 ENSE00001806004
4183  ENSG00000156299       ENST00000286827 ENSE00001667545
4184  ENSG00000156299       ENST00000286827 ENSE00003544916
4185  ENSG00000156299       ENST00000286827 ENSE00001769773
4186  ENSG00000156299       ENST00000286827 ENSE00001612577
4187  ENSG00000156299       ENST00000423206 ENSE00003544916
4188  ENSG00000156299       ENST00000423206 ENSE00001769773
4189  ENSG00000156299       ENST00000423206 ENSE00001637946
4190  ENSG00000156299       ENST00000423206 ENSE00001683059
4191  ENSG00000156299       ENST00000636887 ENSE00001025643
4192  ENSG00000156299       ENST00000636887 ENSE00001025638
4193  ENSG00000156299       ENST00000636887 ENSE00001025637
4194  ENSG00000156299       ENST00000636887 ENSE00001025651
4195  ENSG00000156299       ENST00000636887 ENSE00001610053
4196  ENSG00000156299       ENST00000636887 ENSE00001722006
4197  ENSG00000156299       ENST00000636887 ENSE00001700177
4198  ENSG00000156299       ENST00000636887 ENSE00001806004
4199  ENSG00000156299       ENST00000636887 ENSE00001667545
4200  ENSG00000156299       ENST00000636887 ENSE00003544916
4201  ENSG00000156299       ENST00000636887 ENSE00001769773
4202  ENSG00000156299       ENST00000636887 ENSE00003794617
4203  ENSG00000156299       ENST00000636887 ENSE00003799789
4204  ENSG00000156299       ENST00000491927 ENSE00001888014
4205  ENSG00000156299       ENST00000491927 ENSE00003543470
4206  ENSG00000156299       ENST00000491927 ENSE00001903329
4207  ENSG00000156299       ENST00000469412 ENSE00001367893
4208  ENSG00000156299       ENST00000469412 ENSE00001383160
4209  ENSG00000156299       ENST00000469412 ENSE00001895275
4210  ENSG00000156299       ENST00000469412 ENSE00003484349
4211  ENSG00000156299       ENST00000469412 ENSE00003671420
4212  ENSG00000156299       ENST00000469412 ENSE00003665677
4213  ENSG00000156299       ENST00000469412 ENSE00003511263
4214  ENSG00000156299       ENST00000469412 ENSE00003569946
4215  ENSG00000156299       ENST00000469412 ENSE00001941047
4216  ENSG00000156299       ENST00000455508 ENSE00001383160
4217  ENSG00000156299       ENST00000455508 ENSE00001365575
4218  ENSG00000156299       ENST00000455508 ENSE00001708609
4219  ENSG00000156299       ENST00000455508 ENSE00001678266
4220  ENSG00000156299       ENST00000541036 ENSE00001372551
4221  ENSG00000156299       ENST00000541036 ENSE00001367893
4222  ENSG00000156299       ENST00000541036 ENSE00001383160
4223  ENSG00000156299       ENST00000541036 ENSE00001365575
4224  ENSG00000156299       ENST00000541036 ENSE00001025653
4225  ENSG00000156299       ENST00000541036 ENSE00003665885
4226  ENSG00000156299       ENST00000541036 ENSE00003624335
4227  ENSG00000156299       ENST00000541036 ENSE00003540307
4228  ENSG00000156299       ENST00000541036 ENSE00003581255
4229  ENSG00000156299       ENST00000541036 ENSE00003609954
4230  ENSG00000156299       ENST00000541036 ENSE00001025641
4231  ENSG00000156299       ENST00000541036 ENSE00001025636
4232  ENSG00000156299       ENST00000541036 ENSE00001025648
4233  ENSG00000156299       ENST00000541036 ENSE00001025649
4234  ENSG00000156299       ENST00000541036 ENSE00001025650
4235  ENSG00000156299       ENST00000541036 ENSE00001025643
4236  ENSG00000156299       ENST00000541036 ENSE00001025638
4237  ENSG00000156299       ENST00000541036 ENSE00001025637
4238  ENSG00000156299       ENST00000541036 ENSE00001025651
4239  ENSG00000156299       ENST00000541036 ENSE00001610053
4240  ENSG00000156299       ENST00000541036 ENSE00001722006
4241  ENSG00000156299       ENST00000541036 ENSE00001700177
4242  ENSG00000156299       ENST00000541036 ENSE00001806004
4243  ENSG00000156299       ENST00000541036 ENSE00001667545
4244  ENSG00000156299       ENST00000541036 ENSE00003544916
4245  ENSG00000156299       ENST00000541036 ENSE00001769773
4246  ENSG00000156299       ENST00000541036 ENSE00002257089
4247  ENSG00000154721       ENST00000400532 ENSE00002192567
4248  ENSG00000154721       ENST00000400532 ENSE00001017308
4249  ENSG00000154721       ENST00000400532 ENSE00001017301
4250  ENSG00000154721       ENST00000400532 ENSE00001017300
4251  ENSG00000154721       ENST00000400532 ENSE00001017302
4252  ENSG00000154721       ENST00000400532 ENSE00001017305
4253  ENSG00000154721       ENST00000400532 ENSE00003679527
4254  ENSG00000154721       ENST00000400532 ENSE00001764187
4255  ENSG00000154721       ENST00000400532 ENSE00003467564
4256  ENSG00000154721       ENST00000400532 ENSE00001543360
4257  ENSG00000154721       ENST00000480456 ENSE00002192567
4258  ENSG00000154721       ENST00000480456 ENSE00001017308
4259  ENSG00000154721       ENST00000480456 ENSE00001017301
4260  ENSG00000154721       ENST00000480456 ENSE00001017300
4261  ENSG00000154721       ENST00000480456 ENSE00001017302
4262  ENSG00000154721       ENST00000480456 ENSE00001017305
4263  ENSG00000154721       ENST00000480456 ENSE00003679527
4264  ENSG00000154721       ENST00000480456 ENSE00001764187
4265  ENSG00000154721       ENST00000480456 ENSE00003467564
4266  ENSG00000154721       ENST00000480456 ENSE00001862906
4267  ENSG00000154721       ENST00000460679 ENSE00001017301
4268  ENSG00000154721       ENST00000460679 ENSE00001017300
4269  ENSG00000154721       ENST00000460679 ENSE00001017302
4270  ENSG00000154721       ENST00000460679 ENSE00001017305
4271  ENSG00000154721       ENST00000460679 ENSE00003679527
4272  ENSG00000154721       ENST00000460679 ENSE00001764187
4273  ENSG00000154721       ENST00000460679 ENSE00001945621
4274  ENSG00000154721       ENST00000460679 ENSE00003610477
4275  ENSG00000154721       ENST00000460679 ENSE00001889046
4276  ENSG00000154721       ENST00000492962 ENSE00001928073
4277  ENSG00000154721       ENST00000492962 ENSE00003665697
4278  ENSG00000154721       ENST00000492962 ENSE00001855937
4279  ENSG00000154721       ENST00000477351 ENSE00003610477
4280  ENSG00000154721       ENST00000477351 ENSE00001951699
4281  ENSG00000154721       ENST00000477351 ENSE00001949672
4282  ENSG00000154721       ENST00000471689 ENSE00001885439
4283  ENSG00000154721       ENST00000471689 ENSE00001852067
4284  ENSG00000154721       ENST00000312957 ENSE00001017308
4285  ENSG00000154721       ENST00000312957 ENSE00001017300
4286  ENSG00000154721       ENST00000312957 ENSE00001017302
4287  ENSG00000154721       ENST00000312957 ENSE00001017305
4288  ENSG00000154721       ENST00000312957 ENSE00003679527
4289  ENSG00000154721       ENST00000312957 ENSE00001764187
4290  ENSG00000154721       ENST00000312957 ENSE00003467564
4291  ENSG00000154721       ENST00000312957 ENSE00001250732
4292  ENSG00000154721       ENST00000312957 ENSE00002256602
4293  ENSG00000186977       ENST00000334151 ENSE00001338619
4294  ENSG00000230061       ENST00000423310 ENSE00001678346
4295  ENSG00000230061       ENST00000423310 ENSE00001670662
4296  ENSG00000230061       ENST00000423310 ENSE00001659958
4297  ENSG00000230061       ENST00000456880 ENSE00001767057
4298  ENSG00000230061       ENST00000456880 ENSE00001609549
4299  ENSG00000142185       ENST00000300482 ENSE00001483894
4300  ENSG00000142185       ENST00000300482 ENSE00001050762
4301  ENSG00000142185       ENST00000300482 ENSE00001211363
4302  ENSG00000142185       ENST00000300482 ENSE00001136423
4303  ENSG00000142185       ENST00000300482 ENSE00001050770
4304  ENSG00000142185       ENST00000300482 ENSE00001136239
4305  ENSG00000142185       ENST00000300482 ENSE00003563694
4306  ENSG00000142185       ENST00000300482 ENSE00003691176
4307  ENSG00000142185       ENST00000300482 ENSE00003509381
4308  ENSG00000142185       ENST00000300482 ENSE00003518763
4309  ENSG00000142185       ENST00000300482 ENSE00003500029
4310  ENSG00000142185       ENST00000300482 ENSE00003575443
4311  ENSG00000142185       ENST00000300482 ENSE00003484543
4312  ENSG00000142185       ENST00000300482 ENSE00003599280
4313  ENSG00000142185       ENST00000300482 ENSE00003597184
4314  ENSG00000142185       ENST00000300482 ENSE00003465034
4315  ENSG00000142185       ENST00000300482 ENSE00003636376
4316  ENSG00000142185       ENST00000300482 ENSE00003562029
4317  ENSG00000142185       ENST00000300482 ENSE00003529143
4318  ENSG00000142185       ENST00000300482 ENSE00003604228
4319  ENSG00000142185       ENST00000300482 ENSE00003621257
4320  ENSG00000142185       ENST00000300482 ENSE00003626924
4321  ENSG00000142185       ENST00000300482 ENSE00003534191
4322  ENSG00000142185       ENST00000300482 ENSE00003510537
4323  ENSG00000142185       ENST00000300482 ENSE00003547493
4324  ENSG00000142185       ENST00000300482 ENSE00003580935
4325  ENSG00000142185       ENST00000300482 ENSE00003546941
4326  ENSG00000142185       ENST00000300482 ENSE00003630131
4327  ENSG00000142185       ENST00000300482 ENSE00003488936
4328  ENSG00000142185       ENST00000300482 ENSE00003499642
4329  ENSG00000142185       ENST00000300482 ENSE00003538028
4330  ENSG00000142185       ENST00000300482 ENSE00003546538
4331  ENSG00000142185       ENST00000300482 ENSE00003693802
4332  ENSG00000142185       ENST00000431901 ENSE00001050762
4333  ENSG00000142185       ENST00000431901 ENSE00001211363
4334  ENSG00000142185       ENST00000431901 ENSE00001136423
4335  ENSG00000142185       ENST00000431901 ENSE00001733152
4336  ENSG00000142185       ENST00000431901 ENSE00002489935
4337  ENSG00000142185       ENST00000397928 ENSE00001211363
4338  ENSG00000142185       ENST00000397928 ENSE00001136423
4339  ENSG00000142185       ENST00000397928 ENSE00001050770
4340  ENSG00000142185       ENST00000397928 ENSE00001136239
4341  ENSG00000142185       ENST00000397928 ENSE00003563694
4342  ENSG00000142185       ENST00000397928 ENSE00003691176
4343  ENSG00000142185       ENST00000397928 ENSE00003509381
4344  ENSG00000142185       ENST00000397928 ENSE00003518763
4345  ENSG00000142185       ENST00000397928 ENSE00003500029
4346  ENSG00000142185       ENST00000397928 ENSE00003575443
4347  ENSG00000142185       ENST00000397928 ENSE00003484543
4348  ENSG00000142185       ENST00000397928 ENSE00003599280
4349  ENSG00000142185       ENST00000397928 ENSE00003597184
4350  ENSG00000142185       ENST00000397928 ENSE00003465034
4351  ENSG00000142185       ENST00000397928 ENSE00003636376
4352  ENSG00000142185       ENST00000397928 ENSE00003562029
4353  ENSG00000142185       ENST00000397928 ENSE00003529143
4354  ENSG00000142185       ENST00000397928 ENSE00003604228
4355  ENSG00000142185       ENST00000397928 ENSE00003621257
4356  ENSG00000142185       ENST00000397928 ENSE00003626924
4357  ENSG00000142185       ENST00000397928 ENSE00003534191
4358  ENSG00000142185       ENST00000397928 ENSE00003510537
4359  ENSG00000142185       ENST00000397928 ENSE00003547493
4360  ENSG00000142185       ENST00000397928 ENSE00003580935
4361  ENSG00000142185       ENST00000397928 ENSE00003546941
4362  ENSG00000142185       ENST00000397928 ENSE00003630131
4363  ENSG00000142185       ENST00000397928 ENSE00003488936
4364  ENSG00000142185       ENST00000397928 ENSE00003499642
4365  ENSG00000142185       ENST00000397928 ENSE00003538028
4366  ENSG00000142185       ENST00000397928 ENSE00003546538
4367  ENSG00000142185       ENST00000397928 ENSE00003693802
4368  ENSG00000142185       ENST00000397928 ENSE00001530923
4369  ENSG00000142185       ENST00000397932 ENSE00001211363
4370  ENSG00000142185       ENST00000397932 ENSE00001136423
4371  ENSG00000142185       ENST00000397932 ENSE00001050770
4372  ENSG00000142185       ENST00000397932 ENSE00001136239
4373  ENSG00000142185       ENST00000397932 ENSE00003563694
4374  ENSG00000142185       ENST00000397932 ENSE00003691176
4375  ENSG00000142185       ENST00000397932 ENSE00003509381
4376  ENSG00000142185       ENST00000397932 ENSE00003518763
4377  ENSG00000142185       ENST00000397932 ENSE00003500029
4378  ENSG00000142185       ENST00000397932 ENSE00003575443
4379  ENSG00000142185       ENST00000397932 ENSE00003484543
4380  ENSG00000142185       ENST00000397932 ENSE00003599280
4381  ENSG00000142185       ENST00000397932 ENSE00003597184
4382  ENSG00000142185       ENST00000397932 ENSE00003465034
4383  ENSG00000142185       ENST00000397932 ENSE00003636376
4384  ENSG00000142185       ENST00000397932 ENSE00003562029
4385  ENSG00000142185       ENST00000397932 ENSE00003529143
4386  ENSG00000142185       ENST00000397932 ENSE00003604228
4387  ENSG00000142185       ENST00000397932 ENSE00003621257
4388  ENSG00000142185       ENST00000397932 ENSE00003626924
4389  ENSG00000142185       ENST00000397932 ENSE00003534191
4390  ENSG00000142185       ENST00000397932 ENSE00003510537
4391  ENSG00000142185       ENST00000397932 ENSE00003547493
4392  ENSG00000142185       ENST00000397932 ENSE00003580935
4393  ENSG00000142185       ENST00000397932 ENSE00003546941
4394  ENSG00000142185       ENST00000397932 ENSE00003630131
4395  ENSG00000142185       ENST00000397932 ENSE00003488936
4396  ENSG00000142185       ENST00000397932 ENSE00003499642
4397  ENSG00000142185       ENST00000397932 ENSE00003538028
4398  ENSG00000142185       ENST00000397932 ENSE00003546538
4399  ENSG00000142185       ENST00000397932 ENSE00001877735
4400  ENSG00000142185       ENST00000397932 ENSE00001530839
4401  ENSG00000142185       ENST00000397932 ENSE00001876151
4402  ENSG00000142185       ENST00000300481 ENSE00001211363
4403  ENSG00000142185       ENST00000300481 ENSE00001136423
4404  ENSG00000142185       ENST00000300481 ENSE00001050770
4405  ENSG00000142185       ENST00000300481 ENSE00001136239
4406  ENSG00000142185       ENST00000300481 ENSE00003563694
4407  ENSG00000142185       ENST00000300481 ENSE00003691176
4408  ENSG00000142185       ENST00000300481 ENSE00003509381
4409  ENSG00000142185       ENST00000300481 ENSE00003518763
4410  ENSG00000142185       ENST00000300481 ENSE00003500029
4411  ENSG00000142185       ENST00000300481 ENSE00003484543
4412  ENSG00000142185       ENST00000300481 ENSE00003599280
4413  ENSG00000142185       ENST00000300481 ENSE00003597184
4414  ENSG00000142185       ENST00000300481 ENSE00003465034
4415  ENSG00000142185       ENST00000300481 ENSE00003636376
4416  ENSG00000142185       ENST00000300481 ENSE00003562029
4417  ENSG00000142185       ENST00000300481 ENSE00003529143
4418  ENSG00000142185       ENST00000300481 ENSE00003604228
4419  ENSG00000142185       ENST00000300481 ENSE00003621257
4420  ENSG00000142185       ENST00000300481 ENSE00003626924
4421  ENSG00000142185       ENST00000300481 ENSE00003534191
4422  ENSG00000142185       ENST00000300481 ENSE00003510537
4423  ENSG00000142185       ENST00000300481 ENSE00003547493
4424  ENSG00000142185       ENST00000300481 ENSE00003580935
4425  ENSG00000142185       ENST00000300481 ENSE00003546941
4426  ENSG00000142185       ENST00000300481 ENSE00003488936
4427  ENSG00000142185       ENST00000300481 ENSE00003499642
4428  ENSG00000142185       ENST00000300481 ENSE00003538028
4429  ENSG00000142185       ENST00000300481 ENSE00003546538
4430  ENSG00000142185       ENST00000300481 ENSE00003693802
4431  ENSG00000142185       ENST00000300481 ENSE00001877735
4432  ENSG00000142185       ENST00000300481 ENSE00001416218
4433  ENSG00000142185       ENST00000300481 ENSE00001414553
4434  ENSG00000142185       ENST00000498430 ENSE00001902244
4435  ENSG00000142185       ENST00000498430 ENSE00003471764
4436  ENSG00000142185       ENST00000498430 ENSE00003459665
4437  ENSG00000142185       ENST00000498430 ENSE00003651596
4438  ENSG00000142185       ENST00000498430 ENSE00003682501
4439  ENSG00000142185       ENST00000498430 ENSE00003675520
4440  ENSG00000142185       ENST00000498430 ENSE00003622879
4441  ENSG00000142185       ENST00000498430 ENSE00003691530
4442  ENSG00000142185       ENST00000498430 ENSE00003507409
4443  ENSG00000142185       ENST00000498430 ENSE00003623903
4444  ENSG00000142185       ENST00000498430 ENSE00003524621
4445  ENSG00000142185       ENST00000498430 ENSE00003524534
4446  ENSG00000142185       ENST00000498430 ENSE00003580616
4447  ENSG00000142185       ENST00000498430 ENSE00003549137
4448  ENSG00000142185       ENST00000498430 ENSE00003663649
4449  ENSG00000142185       ENST00000498430 ENSE00003578389
4450  ENSG00000142185       ENST00000498430 ENSE00003667346
4451  ENSG00000142185       ENST00000498430 ENSE00003520249
4452  ENSG00000142185       ENST00000498430 ENSE00003687397
4453  ENSG00000142185       ENST00000498430 ENSE00003632964
4454  ENSG00000142185       ENST00000498430 ENSE00003638286
4455  ENSG00000142185       ENST00000498430 ENSE00003578159
4456  ENSG00000142185       ENST00000498430 ENSE00003508814
4457  ENSG00000142185       ENST00000498430 ENSE00003465116
4458  ENSG00000142185       ENST00000498430 ENSE00003549495
4459  ENSG00000142185       ENST00000498430 ENSE00003653585
4460  ENSG00000142185       ENST00000498430 ENSE00003565672
4461  ENSG00000142185       ENST00000498430 ENSE00003636165
4462  ENSG00000142185       ENST00000490982 ENSE00003465116
4463  ENSG00000142185       ENST00000490982 ENSE00003549495
4464  ENSG00000142185       ENST00000490982 ENSE00003653585
4465  ENSG00000142185       ENST00000490982 ENSE00003565672
4466  ENSG00000142185       ENST00000490982 ENSE00001956052
4467  ENSG00000142185       ENST00000490982 ENSE00001881565
4468  ENSG00000142185       ENST00000490982 ENSE00001943881
4469  ENSG00000142185       ENST00000621064 ENSE00003546941
4470  ENSG00000142185       ENST00000621064 ENSE00003488936
4471  ENSG00000142185       ENST00000621064 ENSE00003499642
4472  ENSG00000142185       ENST00000621064 ENSE00003538028
4473  ENSG00000142185       ENST00000621064 ENSE00003546538
4474  ENSG00000142185       ENST00000621064 ENSE00003718749
4475  ENSG00000142185       ENST00000621064 ENSE00003715769
4476  ENSG00000142185       ENST00000621064 ENSE00003745506
4477  ENSG00000142185       ENST00000621064 ENSE00003750244
4478  ENSG00000142185       ENST00000621064 ENSE00003749845
4479  ENSG00000228404       ENST00000415026 ENSE00001804194
4480  ENSG00000228404       ENST00000415026 ENSE00001732405
4481  ENSG00000233756       ENST00000440363 ENSE00001764323
4482  ENSG00000233756       ENST00000440363 ENSE00001636286
4483  ENSG00000233756       ENST00000440363 ENSE00001753303
4484  ENSG00000233756       ENST00000440363 ENSE00001687067
4485  ENSG00000233756       ENST00000441910 ENSE00001764323
4486  ENSG00000233756       ENST00000441910 ENSE00001636286
4487  ENSG00000233756       ENST00000441910 ENSE00001753303
4488  ENSG00000233756       ENST00000441910 ENSE00001644795
4489  ENSG00000185437       ENST00000380637 ENSE00001485742
4490  ENSG00000185437       ENST00000380637 ENSE00003479361
4491  ENSG00000185437       ENST00000380637 ENSE00001325607
4492  ENSG00000185437       ENST00000380637 ENSE00001304806
4493  ENSG00000185437       ENST00000380637 ENSE00001291003
4494  ENSG00000185437       ENST00000380637 ENSE00001318388
4495  ENSG00000185437       ENST00000380637 ENSE00003616304
4496  ENSG00000185437       ENST00000380634 ENSE00003479361
4497  ENSG00000185437       ENST00000380634 ENSE00001325607
4498  ENSG00000185437       ENST00000380634 ENSE00001304806
4499  ENSG00000185437       ENST00000380634 ENSE00001291003
4500  ENSG00000185437       ENST00000380634 ENSE00001318388
4501  ENSG00000185437       ENST00000380634 ENSE00001485693
4502  ENSG00000185437       ENST00000380634 ENSE00001485691
4503  ENSG00000185437       ENST00000458295 ENSE00001325607
4504  ENSG00000185437       ENST00000458295 ENSE00001291003
4505  ENSG00000185437       ENST00000458295 ENSE00001318388
4506  ENSG00000185437       ENST00000458295 ENSE00001595390
4507  ENSG00000185437       ENST00000458295 ENSE00001746157
4508  ENSG00000185437       ENST00000458295 ENSE00001674565
4509  ENSG00000185437       ENST00000440288 ENSE00003479361
4510  ENSG00000185437       ENST00000440288 ENSE00001325607
4511  ENSG00000185437       ENST00000440288 ENSE00001304806
4512  ENSG00000185437       ENST00000440288 ENSE00001291003
4513  ENSG00000185437       ENST00000440288 ENSE00001674668
4514  ENSG00000185437       ENST00000440288 ENSE00001762104
4515  ENSG00000185437       ENST00000380631 ENSE00003479361
4516  ENSG00000185437       ENST00000380631 ENSE00001325607
4517  ENSG00000185437       ENST00000380631 ENSE00001304806
4518  ENSG00000185437       ENST00000380631 ENSE00001291003
4519  ENSG00000185437       ENST00000380631 ENSE00001318388
4520  ENSG00000185437       ENST00000380631 ENSE00001485686
4521  ENSG00000185437       ENST00000380631 ENSE00001485685
4522  ENSG00000185437       ENST00000333634 ENSE00001325607
4523  ENSG00000185437       ENST00000333634 ENSE00001304806
4524  ENSG00000185437       ENST00000333634 ENSE00001291003
4525  ENSG00000185437       ENST00000333634 ENSE00001318388
4526  ENSG00000185437       ENST00000333634 ENSE00003616304
4527  ENSG00000185437       ENST00000333634 ENSE00001290961
4528  ENSG00000185437       ENST00000333634 ENSE00003570356
4529  ENSG00000185437       ENST00000452550 ENSE00001325607
4530  ENSG00000185437       ENST00000452550 ENSE00001291003
4531  ENSG00000185437       ENST00000452550 ENSE00001318388
4532  ENSG00000185437       ENST00000452550 ENSE00003616304
4533  ENSG00000185437       ENST00000452550 ENSE00003570356
4534  ENSG00000185437       ENST00000452550 ENSE00002510123
4535  ENSG00000185437       ENST00000423596 ENSE00001304806
4536  ENSG00000185437       ENST00000423596 ENSE00001291003
4537  ENSG00000185437       ENST00000423596 ENSE00001628122
4538  ENSG00000185437       ENST00000423596 ENSE00001624370
4539  ENSG00000185437       ENST00000447939 ENSE00001304806
4540  ENSG00000185437       ENST00000447939 ENSE00003523025
4541  ENSG00000174680       ENST00000455392 ENSE00001699657
4542  ENSG00000174680       ENST00000455392 ENSE00001727818
4543  ENSG00000174680       ENST00000455392 ENSE00001191923
4544  ENSG00000174680       ENST00000455392 ENSE00001642182
4545  ENSG00000174680       ENST00000455392 ENSE00001678834
4546  ENSG00000174680       ENST00000309331 ENSE00001191923
4547  ENSG00000174680       ENST00000309331 ENSE00001429814
4548  ENSG00000174680       ENST00000309331 ENSE00001681171
4549  ENSG00000174680       ENST00000423221 ENSE00001681171
4550  ENSG00000174680       ENST00000423221 ENSE00001622569
4551  ENSG00000174680       ENST00000412579 ENSE00001642182
4552  ENSG00000174680       ENST00000412579 ENSE00001681171
4553  ENSG00000174680       ENST00000412579 ENSE00001650559
4554  ENSG00000174680       ENST00000412579 ENSE00001644342
4555  ENSG00000174680       ENST00000413131 ENSE00001681171
4556  ENSG00000174680       ENST00000413131 ENSE00001753021
4557  ENSG00000142173       ENST00000300527 ENSE00001902209
4558  ENSG00000142173       ENST00000300527 ENSE00000952665
4559  ENSG00000142173       ENST00000300527 ENSE00001134048
4560  ENSG00000142173       ENST00000300527 ENSE00000952667
4561  ENSG00000142173       ENST00000300527 ENSE00001219451
4562  ENSG00000142173       ENST00000300527 ENSE00003477309
4563  ENSG00000142173       ENST00000300527 ENSE00003473000
4564  ENSG00000142173       ENST00000300527 ENSE00003589368
4565  ENSG00000142173       ENST00000300527 ENSE00003564562
4566  ENSG00000142173       ENST00000300527 ENSE00003652273
4567  ENSG00000142173       ENST00000300527 ENSE00000952674
4568  ENSG00000142173       ENST00000300527 ENSE00000952704
4569  ENSG00000142173       ENST00000300527 ENSE00000952707
4570  ENSG00000142173       ENST00000300527 ENSE00000952695
4571  ENSG00000142173       ENST00000300527 ENSE00000952678
4572  ENSG00000142173       ENST00000300527 ENSE00000952696
4573  ENSG00000142173       ENST00000300527 ENSE00000952699
4574  ENSG00000142173       ENST00000300527 ENSE00001332369
4575  ENSG00000142173       ENST00000300527 ENSE00001219267
4576  ENSG00000142173       ENST00000300527 ENSE00000952683
4577  ENSG00000142173       ENST00000300527 ENSE00000952697
4578  ENSG00000142173       ENST00000300527 ENSE00001219263
4579  ENSG00000142173       ENST00000300527 ENSE00000952705
4580  ENSG00000142173       ENST00000300527 ENSE00001218880
4581  ENSG00000142173       ENST00000300527 ENSE00001219302
4582  ENSG00000142173       ENST00000300527 ENSE00001133859
4583  ENSG00000142173       ENST00000300527 ENSE00001110398
4584  ENSG00000142173       ENST00000300527 ENSE00000952691
4585  ENSG00000142173       ENST00000436769 ENSE00000952665
4586  ENSG00000142173       ENST00000436769 ENSE00001700317
4587  ENSG00000142173       ENST00000436769 ENSE00001719735
4588  ENSG00000142173       ENST00000409416 ENSE00001134048
4589  ENSG00000142173       ENST00000409416 ENSE00000952667
4590  ENSG00000142173       ENST00000409416 ENSE00001219451
4591  ENSG00000142173       ENST00000409416 ENSE00003477309
4592  ENSG00000142173       ENST00000409416 ENSE00003473000
4593  ENSG00000142173       ENST00000409416 ENSE00003589368
4594  ENSG00000142173       ENST00000409416 ENSE00003564562
4595  ENSG00000142173       ENST00000409416 ENSE00003652273
4596  ENSG00000142173       ENST00000409416 ENSE00000952674
4597  ENSG00000142173       ENST00000409416 ENSE00000952704
4598  ENSG00000142173       ENST00000409416 ENSE00000952707
4599  ENSG00000142173       ENST00000409416 ENSE00000952695
4600  ENSG00000142173       ENST00000409416 ENSE00000952678
4601  ENSG00000142173       ENST00000409416 ENSE00000952696
4602  ENSG00000142173       ENST00000409416 ENSE00000952699
4603  ENSG00000142173       ENST00000409416 ENSE00001332369
4604  ENSG00000142173       ENST00000409416 ENSE00001219267
4605  ENSG00000142173       ENST00000409416 ENSE00000952683
4606  ENSG00000142173       ENST00000409416 ENSE00000952697
4607  ENSG00000142173       ENST00000409416 ENSE00001219263
4608  ENSG00000142173       ENST00000409416 ENSE00000952705
4609  ENSG00000142173       ENST00000409416 ENSE00001218880
4610  ENSG00000142173       ENST00000409416 ENSE00001219302
4611  ENSG00000142173       ENST00000409416 ENSE00001133859
4612  ENSG00000142173       ENST00000409416 ENSE00001110398
4613  ENSG00000142173       ENST00000409416 ENSE00001584872
4614  ENSG00000142173       ENST00000409416 ENSE00001582755
4615  ENSG00000142173       ENST00000397763 ENSE00000952665
4616  ENSG00000142173       ENST00000397763 ENSE00001134048
4617  ENSG00000142173       ENST00000397763 ENSE00000952667
4618  ENSG00000142173       ENST00000397763 ENSE00001219451
4619  ENSG00000142173       ENST00000397763 ENSE00003477309
4620  ENSG00000142173       ENST00000397763 ENSE00003473000
4621  ENSG00000142173       ENST00000397763 ENSE00003589368
4622  ENSG00000142173       ENST00000397763 ENSE00003564562
4623  ENSG00000142173       ENST00000397763 ENSE00003652273
4624  ENSG00000142173       ENST00000397763 ENSE00000952674
4625  ENSG00000142173       ENST00000397763 ENSE00000952704
4626  ENSG00000142173       ENST00000397763 ENSE00000952707
4627  ENSG00000142173       ENST00000397763 ENSE00000952695
4628  ENSG00000142173       ENST00000397763 ENSE00000952678
4629  ENSG00000142173       ENST00000397763 ENSE00000952696
4630  ENSG00000142173       ENST00000397763 ENSE00000952699
4631  ENSG00000142173       ENST00000397763 ENSE00001332369
4632  ENSG00000142173       ENST00000397763 ENSE00001219267
4633  ENSG00000142173       ENST00000397763 ENSE00000952683
4634  ENSG00000142173       ENST00000397763 ENSE00000952697
4635  ENSG00000142173       ENST00000397763 ENSE00001219263
4636  ENSG00000142173       ENST00000397763 ENSE00000952705
4637  ENSG00000142173       ENST00000397763 ENSE00001218880
4638  ENSG00000142173       ENST00000397763 ENSE00001219302
4639  ENSG00000142173       ENST00000397763 ENSE00001133859
4640  ENSG00000142173       ENST00000397763 ENSE00001110398
4641  ENSG00000142173       ENST00000397763 ENSE00001530047
4642  ENSG00000142173       ENST00000460886 ENSE00001941337
4643  ENSG00000142173       ENST00000460886 ENSE00001895403
4644  ENSG00000142173       ENST00000485591 ENSE00001870884
4645  ENSG00000142173       ENST00000485591 ENSE00003511430
4646  ENSG00000142173       ENST00000485591 ENSE00003507459
4647  ENSG00000142173       ENST00000485591 ENSE00003569914
4648  ENSG00000142173       ENST00000485591 ENSE00003536878
4649  ENSG00000142173       ENST00000485591 ENSE00003677337
4650  ENSG00000142173       ENST00000485591 ENSE00001952021
4651  ENSG00000142173       ENST00000413758 ENSE00000952699
4652  ENSG00000142173       ENST00000413758 ENSE00001332369
4653  ENSG00000142173       ENST00000413758 ENSE00001219267
4654  ENSG00000142173       ENST00000413758 ENSE00000952683
4655  ENSG00000142173       ENST00000413758 ENSE00000952697
4656  ENSG00000142173       ENST00000413758 ENSE00001219263
4657  ENSG00000142173       ENST00000413758 ENSE00000952705
4658  ENSG00000142173       ENST00000413758 ENSE00001218880
4659  ENSG00000142173       ENST00000413758 ENSE00002492269
4660  ENSG00000142173       ENST00000413758 ENSE00001718972
4661  ENSG00000142173       ENST00000413758 ENSE00001643861
4662  ENSG00000142173       ENST00000310645 ENSE00000952665
4663  ENSG00000142173       ENST00000310645 ENSE00001134048
4664  ENSG00000142173       ENST00000310645 ENSE00000952667
4665  ENSG00000142173       ENST00000310645 ENSE00001219451
4666  ENSG00000142173       ENST00000310645 ENSE00003477309
4667  ENSG00000142173       ENST00000310645 ENSE00003473000
4668  ENSG00000142173       ENST00000310645 ENSE00003589368
4669  ENSG00000142173       ENST00000310645 ENSE00003564562
4670  ENSG00000142173       ENST00000310645 ENSE00003652273
4671  ENSG00000142173       ENST00000310645 ENSE00000952674
4672  ENSG00000142173       ENST00000310645 ENSE00000952704
4673  ENSG00000142173       ENST00000310645 ENSE00000952707
4674  ENSG00000142173       ENST00000310645 ENSE00000952695
4675  ENSG00000142173       ENST00000310645 ENSE00000952678
4676  ENSG00000142173       ENST00000310645 ENSE00000952696
4677  ENSG00000142173       ENST00000310645 ENSE00000952699
4678  ENSG00000142173       ENST00000310645 ENSE00001332369
4679  ENSG00000142173       ENST00000310645 ENSE00001219267
4680  ENSG00000142173       ENST00000310645 ENSE00000952683
4681  ENSG00000142173       ENST00000310645 ENSE00000952697
4682  ENSG00000142173       ENST00000310645 ENSE00001219263
4683  ENSG00000142173       ENST00000310645 ENSE00000952705
4684  ENSG00000142173       ENST00000310645 ENSE00001218880
4685  ENSG00000142173       ENST00000310645 ENSE00001219302
4686  ENSG00000142173       ENST00000310645 ENSE00001133859
4687  ENSG00000142173       ENST00000310645 ENSE00001110398
4688  ENSG00000142173       ENST00000310645 ENSE00001110410
4689  ENSG00000142173       ENST00000310645 ENSE00001314213
4690  ENSG00000249209       ENST00000429238 ENSE00003756449
4691  ENSG00000249209       ENST00000429238 ENSE00003756201
4692  ENSG00000249209       ENST00000429238 ENSE00003757768
4693  ENSG00000249209       ENST00000429238 ENSE00001713270
4694  ENSG00000249209       ENST00000429238 ENSE00003619177
4695  ENSG00000249209       ENST00000429238 ENSE00003476113
4696  ENSG00000249209       ENST00000429238 ENSE00003484190
4697  ENSG00000249209       ENST00000429238 ENSE00001767773
4698  ENSG00000160226       ENST00000397956 ENSE00003613299
4699  ENSG00000160226       ENST00000397956 ENSE00003567529
4700  ENSG00000160226       ENST00000397956 ENSE00003465964
4701  ENSG00000160226       ENST00000397956 ENSE00003623799
4702  ENSG00000160226       ENST00000397956 ENSE00001424924
4703  ENSG00000160226       ENST00000397956 ENSE00001376910
4704  ENSG00000160226       ENST00000397956 ENSE00003539176
4705  ENSG00000160226       ENST00000496321 ENSE00003689756
4706  ENSG00000160226       ENST00000496321 ENSE00001953648
4707  ENSG00000160226       ENST00000496321 ENSE00003630507
4708  ENSG00000160226       ENST00000496321 ENSE00001846530
4709  ENSG00000160226       ENST00000496321 ENSE00003571080
4710  ENSG00000160226       ENST00000496321 ENSE00001844561
4711  ENSG00000160226       ENST00000496321 ENSE00003520918
4712  ENSG00000160226       ENST00000496321 ENSE00003481879
4713  ENSG00000160226       ENST00000470196 ENSE00001874997
4714  ENSG00000160226       ENST00000470196 ENSE00003547241
4715  ENSG00000160226       ENST00000470196 ENSE00003689756
4716  ENSG00000160226       ENST00000478674 ENSE00001889989
4717  ENSG00000160226       ENST00000478674 ENSE00001946448
4718  ENSG00000160226       ENST00000325223 ENSE00001228467
4719  ENSG00000160226       ENST00000325223 ENSE00003613299
4720  ENSG00000160226       ENST00000325223 ENSE00003567529
4721  ENSG00000160226       ENST00000325223 ENSE00003465964
4722  ENSG00000160226       ENST00000325223 ENSE00003623799
4723  ENSG00000160226       ENST00000325223 ENSE00003539176
4724  ENSG00000160226       ENST00000325223 ENSE00003633104
4725  ENSG00000160226       ENST00000462742 ENSE00003689756
4726  ENSG00000160226       ENST00000462742 ENSE00003630507
4727  ENSG00000160226       ENST00000462742 ENSE00001927617
4728  ENSG00000160226       ENST00000462742 ENSE00001820612
4729  ENSG00000160226       ENST00000462742 ENSE00003485191
4730  ENSG00000160226       ENST00000462742 ENSE00001889941
4731  ENSG00000160226       ENST00000339818 ENSE00001228467
4732  ENSG00000160226       ENST00000339818 ENSE00003613299
4733  ENSG00000160226       ENST00000339818 ENSE00003567529
4734  ENSG00000160226       ENST00000339818 ENSE00003465964
4735  ENSG00000160226       ENST00000339818 ENSE00003623799
4736  ENSG00000160226       ENST00000339818 ENSE00003670111
4737  ENSG00000160226       ENST00000339818 ENSE00001136472
4738  ENSG00000160282       ENST00000483568 ENSE00003583249
4739  ENSG00000160282       ENST00000483568 ENSE00001945718
4740  ENSG00000160282       ENST00000483568 ENSE00003459852
4741  ENSG00000160282       ENST00000460011 ENSE00003583249
4742  ENSG00000160282       ENST00000460011 ENSE00003459852
4743  ENSG00000160282       ENST00000460011 ENSE00001822816
4744  ENSG00000160282       ENST00000460011 ENSE00003537411
4745  ENSG00000160282       ENST00000460011 ENSE00001954775
4746  ENSG00000160282       ENST00000498355 ENSE00003583249
4747  ENSG00000160282       ENST00000498355 ENSE00003459852
4748  ENSG00000160282       ENST00000498355 ENSE00003537411
4749  ENSG00000160282       ENST00000498355 ENSE00003496449
4750  ENSG00000160282       ENST00000498355 ENSE00003484320
4751  ENSG00000160282       ENST00000498355 ENSE00003684905
4752  ENSG00000160282       ENST00000498355 ENSE00001834425
4753  ENSG00000160282       ENST00000498355 ENSE00003583297
4754  ENSG00000160282       ENST00000498355 ENSE00003657756
4755  ENSG00000160282       ENST00000498355 ENSE00003471194
4756  ENSG00000160282       ENST00000498355 ENSE00003553506
4757  ENSG00000160282       ENST00000498355 ENSE00003548804
4758  ENSG00000160282       ENST00000498355 ENSE00003597812
4759  ENSG00000160282       ENST00000498355 ENSE00003668063
4760  ENSG00000160282       ENST00000498355 ENSE00001835896
4761  ENSG00000160282       ENST00000291670 ENSE00003459852
4762  ENSG00000160282       ENST00000291670 ENSE00003615828
4763  ENSG00000160282       ENST00000291670 ENSE00003597294
4764  ENSG00000160282       ENST00000291670 ENSE00003493394
4765  ENSG00000160282       ENST00000291670 ENSE00001051131
4766  ENSG00000160282       ENST00000291670 ENSE00003672954
4767  ENSG00000160282       ENST00000291670 ENSE00003595298
4768  ENSG00000160282       ENST00000291670 ENSE00003580136
4769  ENSG00000160282       ENST00000291670 ENSE00003613882
4770  ENSG00000160282       ENST00000291670 ENSE00003684003
4771  ENSG00000160282       ENST00000291670 ENSE00003506553
4772  ENSG00000160282       ENST00000291670 ENSE00003555273
4773  ENSG00000160282       ENST00000291670 ENSE00003606219
4774  ENSG00000160282       ENST00000291670 ENSE00003545440
4775  ENSG00000160282       ENST00000291670 ENSE00003712935
4776  ENSG00000160282       ENST00000397748 ENSE00003615828
4777  ENSG00000160282       ENST00000397748 ENSE00003597294
4778  ENSG00000160282       ENST00000397748 ENSE00003493394
4779  ENSG00000160282       ENST00000397748 ENSE00001051131
4780  ENSG00000160282       ENST00000397748 ENSE00003672954
4781  ENSG00000160282       ENST00000397748 ENSE00003595298
4782  ENSG00000160282       ENST00000397748 ENSE00003580136
4783  ENSG00000160282       ENST00000397748 ENSE00003613882
4784  ENSG00000160282       ENST00000397748 ENSE00003684003
4785  ENSG00000160282       ENST00000397748 ENSE00003506553
4786  ENSG00000160282       ENST00000397748 ENSE00003555273
4787  ENSG00000160282       ENST00000397748 ENSE00003606219
4788  ENSG00000160282       ENST00000397748 ENSE00003545440
4789  ENSG00000160282       ENST00000397748 ENSE00001385976
4790  ENSG00000160282       ENST00000397748 ENSE00003478862
4791  ENSG00000160282       ENST00000446405 ENSE00003545440
4792  ENSG00000160282       ENST00000446405 ENSE00001779518
4793  ENSG00000160282       ENST00000446405 ENSE00001734884
4794  ENSG00000160282       ENST00000397746 ENSE00003615828
4795  ENSG00000160282       ENST00000397746 ENSE00003597294
4796  ENSG00000160282       ENST00000397746 ENSE00003493394
4797  ENSG00000160282       ENST00000397746 ENSE00001051131
4798  ENSG00000160282       ENST00000397746 ENSE00003672954
4799  ENSG00000160282       ENST00000397746 ENSE00003595298
4800  ENSG00000160282       ENST00000397746 ENSE00003580136
4801  ENSG00000160282       ENST00000397746 ENSE00003613882
4802  ENSG00000160282       ENST00000397746 ENSE00003684003
4803  ENSG00000160282       ENST00000397746 ENSE00003506553
4804  ENSG00000160282       ENST00000397746 ENSE00003555273
4805  ENSG00000160282       ENST00000397746 ENSE00003606219
4806  ENSG00000160282       ENST00000397746 ENSE00003545440
4807  ENSG00000160282       ENST00000397746 ENSE00003681420
4808  ENSG00000160282       ENST00000397743 ENSE00003615828
4809  ENSG00000160282       ENST00000397743 ENSE00003597294
4810  ENSG00000160282       ENST00000397743 ENSE00003493394
4811  ENSG00000160282       ENST00000397743 ENSE00001051131
4812  ENSG00000160282       ENST00000397743 ENSE00003672954
4813  ENSG00000160282       ENST00000397743 ENSE00003595298
4814  ENSG00000160282       ENST00000397743 ENSE00003580136
4815  ENSG00000160282       ENST00000397743 ENSE00003613882
4816  ENSG00000160282       ENST00000397743 ENSE00003684003
4817  ENSG00000160282       ENST00000397743 ENSE00003506553
4818  ENSG00000160282       ENST00000397743 ENSE00003525931
4819  ENSG00000160282       ENST00000397743 ENSE00003578617
4820  ENSG00000160282       ENST00000397743 ENSE00003509476
4821  ENSG00000160282       ENST00000494498 ENSE00003583249
4822  ENSG00000160282       ENST00000494498 ENSE00003537411
4823  ENSG00000160282       ENST00000494498 ENSE00003668063
4824  ENSG00000160282       ENST00000494498 ENSE00001891398
4825  ENSG00000160282       ENST00000488577 ENSE00001919083
4826  ENSG00000160282       ENST00000488577 ENSE00001906631
4827  ENSG00000160282       ENST00000488577 ENSE00001954164
4828  ENSG00000160282       ENST00000480950 ENSE00003553506
4829  ENSG00000160282       ENST00000480950 ENSE00001958239
4830  ENSG00000160282       ENST00000480950 ENSE00001910597
4831  ENSG00000160282       ENST00000469240 ENSE00001935847
4832  ENSG00000160282       ENST00000469240 ENSE00001920442
4833  ENSG00000223431       ENST00000443620 ENSE00001696870
4834  ENSG00000223431       ENST00000443620 ENSE00001732080
4835  ENSG00000227999       ENST00000445440 ENSE00001616067
4836  ENSG00000225745       ENST00000430327 ENSE00002046002
4837  ENSG00000225745       ENST00000430327 ENSE00001802711
4838  ENSG00000225745       ENST00000430327 ENSE00002081182
4839  ENSG00000225745       ENST00000440221 ENSE00001802711
4840  ENSG00000225745       ENST00000440221 ENSE00002087631
4841  ENSG00000225745       ENST00000440221 ENSE00003463767
4842  ENSG00000225745       ENST00000440221 ENSE00001693577
4843  ENSG00000225745       ENST00000414699 ENSE00001752363
4844  ENSG00000225745       ENST00000414699 ENSE00001753386
4845  ENSG00000225745       ENST00000414699 ENSE00001690352
4846  ENSG00000236382       ENST00000412914 ENSE00001709572
4847  ENSG00000229086       ENST00000451980 ENSE00003800352
4848  ENSG00000229086       ENST00000451980 ENSE00003793721
4849  ENSG00000229086       ENST00000451980 ENSE00001626183
4850  ENSG00000229086       ENST00000451980 ENSE00001719305
4851  ENSG00000229086       ENST00000451980 ENSE00001745295
4852  ENSG00000229086       ENST00000637328 ENSE00001626183
4853  ENSG00000229086       ENST00000637328 ENSE00001719305
4854  ENSG00000229086       ENST00000637328 ENSE00001731986
4855  ENSG00000229086       ENST00000637328 ENSE00003796046
4856  ENSG00000275993       ENST00000613488 ENSE00003719700
4857  ENSG00000275993       ENST00000613488 ENSE00003721870
4858  ENSG00000275993       ENST00000613488 ENSE00003732806
4859  ENSG00000275993       ENST00000613488 ENSE00003751307
4860  ENSG00000275993       ENST00000613488 ENSE00003734764
4861  ENSG00000275993       ENST00000613488 ENSE00003715068
4862  ENSG00000275993       ENST00000613488 ENSE00003730883
4863  ENSG00000275993       ENST00000613488 ENSE00003738075
4864  ENSG00000275993       ENST00000613488 ENSE00003745922
4865  ENSG00000275993       ENST00000613488 ENSE00003714437
4866  ENSG00000275993       ENST00000613488 ENSE00003715905
4867  ENSG00000275993       ENST00000613488 ENSE00003752597
4868  ENSG00000275993       ENST00000613488 ENSE00003754375
4869  ENSG00000275993       ENST00000613488 ENSE00003742007
4870  ENSG00000275993       ENST00000624077 ENSE00003757113
4871  ENSG00000275993       ENST00000624077 ENSE00003756648
4872  ENSG00000275993       ENST00000624077 ENSE00003758830
4873  ENSG00000226043       ENST00000444130 ENSE00001742793
4874  ENSG00000226043       ENST00000444130 ENSE00001716227
4875  ENSG00000226043       ENST00000444130 ENSE00001672780
4876  ENSG00000184856       ENST00000419431 ENSE00001543427
4877  ENSG00000184856       ENST00000419431 ENSE00001643098
4878  ENSG00000184856       ENST00000419431 ENSE00001794212
4879  ENSG00000184856       ENST00000419431 ENSE00001798738
4880  ENSG00000184856       ENST00000419431 ENSE00001684289
4881  ENSG00000184856       ENST00000419431 ENSE00001612574
4882  ENSG00000231106       ENST00000457157 ENSE00001694810
4883  ENSG00000231106       ENST00000457157 ENSE00001621618
4884  ENSG00000239930       ENST00000416179 ENSE00001742222
4885  ENSG00000239930       ENST00000416179 ENSE00001740000
4886  ENSG00000239930       ENST00000416179 ENSE00001594678
4887  ENSG00000154645       ENST00000400128 ENSE00001541680
4888  ENSG00000154645       ENST00000400128 ENSE00001541679
4889  ENSG00000154645       ENST00000400128 ENSE00003555705
4890  ENSG00000154645       ENST00000400128 ENSE00001016990
4891  ENSG00000154645       ENST00000400128 ENSE00001016989
4892  ENSG00000154645       ENST00000400128 ENSE00001016988
4893  ENSG00000154645       ENST00000400128 ENSE00003543855
4894  ENSG00000154645       ENST00000400131 ENSE00003555705
4895  ENSG00000154645       ENST00000400131 ENSE00001016990
4896  ENSG00000154645       ENST00000400131 ENSE00001016989
4897  ENSG00000154645       ENST00000400131 ENSE00001541702
4898  ENSG00000154645       ENST00000400131 ENSE00003545796
4899  ENSG00000154645       ENST00000400135 ENSE00003555705
4900  ENSG00000154645       ENST00000400135 ENSE00001016990
4901  ENSG00000154645       ENST00000400135 ENSE00001016989
4902  ENSG00000154645       ENST00000400135 ENSE00001541702
4903  ENSG00000154645       ENST00000400135 ENSE00003545796
4904  ENSG00000154645       ENST00000400135 ENSE00001541701
4905  ENSG00000154645       ENST00000400127 ENSE00003555705
4906  ENSG00000154645       ENST00000400127 ENSE00001016990
4907  ENSG00000154645       ENST00000400127 ENSE00001016989
4908  ENSG00000154645       ENST00000400127 ENSE00001016988
4909  ENSG00000154645       ENST00000400127 ENSE00003543855
4910  ENSG00000154645       ENST00000400127 ENSE00001541702
4911  ENSG00000154645       ENST00000400127 ENSE00001541701
4912  ENSG00000154645       ENST00000299295 ENSE00001016990
4913  ENSG00000154645       ENST00000299295 ENSE00001016989
4914  ENSG00000154645       ENST00000299295 ENSE00001016988
4915  ENSG00000154645       ENST00000299295 ENSE00003543855
4916  ENSG00000154645       ENST00000299295 ENSE00003468151
4917  ENSG00000154645       ENST00000299295 ENSE00003659737
4918  ENSG00000154645       ENST00000543733 ENSE00001016990
4919  ENSG00000154645       ENST00000543733 ENSE00001016989
4920  ENSG00000154645       ENST00000543733 ENSE00001016988
4921  ENSG00000154645       ENST00000543733 ENSE00003659737
4922  ENSG00000154645       ENST00000543733 ENSE00002245925
4923  ENSG00000154645       ENST00000543733 ENSE00002217929
4924  ENSG00000154645       ENST00000338326 ENSE00001016990
4925  ENSG00000154645       ENST00000338326 ENSE00001016989
4926  ENSG00000154645       ENST00000338326 ENSE00003742672
4927  ENSG00000154645       ENST00000338326 ENSE00001633443
4928  ENSG00000227438       ENST00000454245 ENSE00001776573
4929  ENSG00000227438       ENST00000454245 ENSE00001661271
4930  ENSG00000280095       ENST00000623983 ENSE00003755041
4931  ENSG00000280095       ENST00000623983 ENSE00003758873
4932  ENSG00000228592       ENST00000262354 ENSE00001610852
4933  ENSG00000228592       ENST00000262354 ENSE00001599920
4934  ENSG00000228592       ENST00000262354 ENSE00001654047
4935  ENSG00000228592       ENST00000262354 ENSE00001687865
4936  ENSG00000228592       ENST00000262354 ENSE00001530006
4937  ENSG00000160190       ENST00000454800 ENSE00001677181
4938  ENSG00000160190       ENST00000454800 ENSE00001781553
4939  ENSG00000160190       ENST00000419522 ENSE00001532871
4940  ENSG00000160190       ENST00000419522 ENSE00001532813
4941  ENSG00000160190       ENST00000419522 ENSE00003614777
4942  ENSG00000160190       ENST00000398341 ENSE00001532813
4943  ENSG00000160190       ENST00000398341 ENSE00003614777
4944  ENSG00000160190       ENST00000398341 ENSE00001532814
4945  ENSG00000160190       ENST00000398341 ENSE00001050425
4946  ENSG00000160190       ENST00000398341 ENSE00001050414
4947  ENSG00000160190       ENST00000398341 ENSE00001050420
4948  ENSG00000160190       ENST00000398341 ENSE00001050423
4949  ENSG00000160190       ENST00000398341 ENSE00001050419
4950  ENSG00000160190       ENST00000398341 ENSE00001050430
4951  ENSG00000160190       ENST00000398341 ENSE00001050427
4952  ENSG00000160190       ENST00000398341 ENSE00001296458
4953  ENSG00000160190       ENST00000398341 ENSE00001050429
4954  ENSG00000160190       ENST00000398341 ENSE00002439789
4955  ENSG00000160190       ENST00000398341 ENSE00001050417
4956  ENSG00000160190       ENST00000398341 ENSE00001050431
4957  ENSG00000160190       ENST00000398341 ENSE00003531380
4958  ENSG00000160190       ENST00000398341 ENSE00003689795
4959  ENSG00000160190       ENST00000398341 ENSE00003509943
4960  ENSG00000160190       ENST00000398341 ENSE00003534969
4961  ENSG00000160190       ENST00000398341 ENSE00001050428
4962  ENSG00000160190       ENST00000398341 ENSE00001217629
4963  ENSG00000160190       ENST00000484887 ENSE00001532813
4964  ENSG00000160190       ENST00000484887 ENSE00001864255
4965  ENSG00000160190       ENST00000484887 ENSE00001915884
4966  ENSG00000160190       ENST00000471277 ENSE00001869930
4967  ENSG00000160190       ENST00000471277 ENSE00001927461
4968  ENSG00000160190       ENST00000471277 ENSE00003620799
4969  ENSG00000160190       ENST00000471277 ENSE00001896458
4970  ENSG00000160190       ENST00000352133 ENSE00003614777
4971  ENSG00000160190       ENST00000352133 ENSE00001050425
4972  ENSG00000160190       ENST00000352133 ENSE00001050414
4973  ENSG00000160190       ENST00000352133 ENSE00001050420
4974  ENSG00000160190       ENST00000352133 ENSE00001050423
4975  ENSG00000160190       ENST00000352133 ENSE00001050419
4976  ENSG00000160190       ENST00000352133 ENSE00001050430
4977  ENSG00000160190       ENST00000352133 ENSE00001050427
4978  ENSG00000160190       ENST00000352133 ENSE00001296458
4979  ENSG00000160190       ENST00000352133 ENSE00001050429
4980  ENSG00000160190       ENST00000352133 ENSE00002439789
4981  ENSG00000160190       ENST00000352133 ENSE00001050417
4982  ENSG00000160190       ENST00000352133 ENSE00001050431
4983  ENSG00000160190       ENST00000352133 ENSE00003531380
4984  ENSG00000160190       ENST00000352133 ENSE00003689795
4985  ENSG00000160190       ENST00000352133 ENSE00003509943
4986  ENSG00000160190       ENST00000352133 ENSE00003534969
4987  ENSG00000160190       ENST00000352133 ENSE00001050428
4988  ENSG00000160190       ENST00000352133 ENSE00001217629
4989  ENSG00000160190       ENST00000352133 ENSE00001138938
4990  ENSG00000160190       ENST00000398343 ENSE00003614777
4991  ENSG00000160190       ENST00000398343 ENSE00001654580
4992  ENSG00000160190       ENST00000398343 ENSE00001638547
4993  ENSG00000160190       ENST00000487951 ENSE00001906684
4994  ENSG00000160190       ENST00000487951 ENSE00001941605
4995  ENSG00000160190       ENST00000496416 ENSE00003484963
4996  ENSG00000160190       ENST00000496416 ENSE00003554080
4997  ENSG00000160190       ENST00000496416 ENSE00003461747
4998  ENSG00000160190       ENST00000496416 ENSE00003658486
4999  ENSG00000160190       ENST00000496416 ENSE00001923943
5000  ENSG00000205424       ENST00000380008 ENSE00001483375
5001  ENSG00000205424       ENST00000380008 ENSE00001483374
5002  ENSG00000205424       ENST00000380008 ENSE00001483372
5003  ENSG00000237373       ENST00000435608 ENSE00001651259
5004  ENSG00000237373       ENST00000435608 ENSE00001635289
5005  ENSG00000225502       ENST00000448152 ENSE00001722185
5006  ENSG00000235277       ENST00000430391 ENSE00001786136
5007  ENSG00000235277       ENST00000430391 ENSE00001726405
5008  ENSG00000235609       ENST00000432230 ENSE00003761756
5009  ENSG00000235609       ENST00000432230 ENSE00003768951
5010  ENSG00000235609       ENST00000432230 ENSE00001784162
5011  ENSG00000235609       ENST00000432230 ENSE00001699663
5012  ENSG00000281903       ENST00000630354 ENSE00003771565
5013  ENSG00000281903       ENST00000630354 ENSE00003773266
5014  ENSG00000281903       ENST00000593619 ENSE00003177498
5015  ENSG00000281903       ENST00000627623 ENSE00003763131
5016  ENSG00000281903       ENST00000627623 ENSE00003765785
5017  ENSG00000281903       ENST00000627623 ENSE00003764269
5018  ENSG00000281903       ENST00000630211 ENSE00003765785
5019  ENSG00000281903       ENST00000630211 ENSE00003768870
5020  ENSG00000281903       ENST00000630211 ENSE00003761914
5021  ENSG00000281903       ENST00000630211 ENSE00003764202
5022  ENSG00000281903       ENST00000630211 ENSE00003766821
5023  ENSG00000281903       ENST00000630211 ENSE00003760619
5024  ENSG00000281903       ENST00000625278 ENSE00003765785
5025  ENSG00000281903       ENST00000625278 ENSE00003766821
5026  ENSG00000281903       ENST00000625278 ENSE00003760619
5027  ENSG00000281903       ENST00000625278 ENSE00003770108
5028  ENSG00000281903       ENST00000412426 ENSE00003766821
5029  ENSG00000281903       ENST00000412426 ENSE00001686725
5030  ENSG00000281903       ENST00000412426 ENSE00001663376
5031  ENSG00000281903       ENST00000412426 ENSE00001746958
5032  ENSG00000281903       ENST00000418954 ENSE00003766821
5033  ENSG00000281903       ENST00000418954 ENSE00001700572
5034  ENSG00000281903       ENST00000418954 ENSE00001662129
5035  ENSG00000160179       ENST00000398457 ENSE00001533348
5036  ENSG00000160179       ENST00000398457 ENSE00003482497
5037  ENSG00000160179       ENST00000398457 ENSE00003506666
5038  ENSG00000160179       ENST00000398457 ENSE00003523195
5039  ENSG00000160179       ENST00000398457 ENSE00003543273
5040  ENSG00000160179       ENST00000398457 ENSE00003477889
5041  ENSG00000160179       ENST00000398457 ENSE00003547441
5042  ENSG00000160179       ENST00000398457 ENSE00003689634
5043  ENSG00000160179       ENST00000398457 ENSE00003505582
5044  ENSG00000160179       ENST00000398457 ENSE00003553101
5045  ENSG00000160179       ENST00000398457 ENSE00003544349
5046  ENSG00000160179       ENST00000398457 ENSE00003688085
5047  ENSG00000160179       ENST00000398457 ENSE00003670239
5048  ENSG00000160179       ENST00000398457 ENSE00003496464
5049  ENSG00000160179       ENST00000398457 ENSE00003674298
5050  ENSG00000160179       ENST00000398457 ENSE00003688526
5051  ENSG00000160179       ENST00000462050 ENSE00001917295
5052  ENSG00000160179       ENST00000462050 ENSE00003486574
5053  ENSG00000160179       ENST00000462050 ENSE00001848792
5054  ENSG00000160179       ENST00000462050 ENSE00003603253
5055  ENSG00000160179       ENST00000462050 ENSE00003610461
5056  ENSG00000160179       ENST00000462050 ENSE00003531861
5057  ENSG00000160179       ENST00000462050 ENSE00003611951
5058  ENSG00000160179       ENST00000462050 ENSE00003619236
5059  ENSG00000160179       ENST00000462050 ENSE00003502441
5060  ENSG00000160179       ENST00000462050 ENSE00003634060
5061  ENSG00000160179       ENST00000462050 ENSE00003472929
5062  ENSG00000160179       ENST00000462050 ENSE00003665058
5063  ENSG00000160179       ENST00000462050 ENSE00003640764
5064  ENSG00000160179       ENST00000462050 ENSE00003624267
5065  ENSG00000160179       ENST00000462050 ENSE00003531087
5066  ENSG00000160179       ENST00000462050 ENSE00003605681
5067  ENSG00000160179       ENST00000462050 ENSE00003499091
5068  ENSG00000160179       ENST00000347800 ENSE00003506666
5069  ENSG00000160179       ENST00000347800 ENSE00003523195
5070  ENSG00000160179       ENST00000347800 ENSE00003543273
5071  ENSG00000160179       ENST00000347800 ENSE00003477889
5072  ENSG00000160179       ENST00000347800 ENSE00003547441
5073  ENSG00000160179       ENST00000347800 ENSE00003689634
5074  ENSG00000160179       ENST00000347800 ENSE00003505582
5075  ENSG00000160179       ENST00000347800 ENSE00003553101
5076  ENSG00000160179       ENST00000347800 ENSE00003544349
5077  ENSG00000160179       ENST00000347800 ENSE00003688085
5078  ENSG00000160179       ENST00000347800 ENSE00003670239
5079  ENSG00000160179       ENST00000347800 ENSE00003496464
5080  ENSG00000160179       ENST00000347800 ENSE00003674298
5081  ENSG00000160179       ENST00000347800 ENSE00003688526
5082  ENSG00000160179       ENST00000347800 ENSE00001887087
5083  ENSG00000160179       ENST00000450121 ENSE00003506666
5084  ENSG00000160179       ENST00000450121 ENSE00003523195
5085  ENSG00000160179       ENST00000450121 ENSE00003543273
5086  ENSG00000160179       ENST00000450121 ENSE00003547441
5087  ENSG00000160179       ENST00000450121 ENSE00001533208
5088  ENSG00000160179       ENST00000450121 ENSE00001704849
5089  ENSG00000160179       ENST00000398449 ENSE00003506666
5090  ENSG00000160179       ENST00000398449 ENSE00003523195
5091  ENSG00000160179       ENST00000398449 ENSE00003543273
5092  ENSG00000160179       ENST00000398449 ENSE00003477889
5093  ENSG00000160179       ENST00000398449 ENSE00003547441
5094  ENSG00000160179       ENST00000398449 ENSE00003689634
5095  ENSG00000160179       ENST00000398449 ENSE00003505582
5096  ENSG00000160179       ENST00000398449 ENSE00003553101
5097  ENSG00000160179       ENST00000398449 ENSE00003544349
5098  ENSG00000160179       ENST00000398449 ENSE00003688085
5099  ENSG00000160179       ENST00000398449 ENSE00003670239
5100  ENSG00000160179       ENST00000398449 ENSE00003496464
5101  ENSG00000160179       ENST00000398449 ENSE00003674298
5102  ENSG00000160179       ENST00000398449 ENSE00003688526
5103  ENSG00000160179       ENST00000398449 ENSE00001179278
5104  ENSG00000160179       ENST00000361802 ENSE00003506666
5105  ENSG00000160179       ENST00000361802 ENSE00003523195
5106  ENSG00000160179       ENST00000361802 ENSE00003543273
5107  ENSG00000160179       ENST00000361802 ENSE00003477889
5108  ENSG00000160179       ENST00000361802 ENSE00003547441
5109  ENSG00000160179       ENST00000361802 ENSE00003689634
5110  ENSG00000160179       ENST00000361802 ENSE00003505582
5111  ENSG00000160179       ENST00000361802 ENSE00003544349
5112  ENSG00000160179       ENST00000361802 ENSE00003688085
5113  ENSG00000160179       ENST00000361802 ENSE00003670239
5114  ENSG00000160179       ENST00000361802 ENSE00003496464
5115  ENSG00000160179       ENST00000361802 ENSE00003674298
5116  ENSG00000160179       ENST00000361802 ENSE00003688526
5117  ENSG00000160179       ENST00000361802 ENSE00001179278
5118  ENSG00000160179       ENST00000361802 ENSE00003586318
5119  ENSG00000160179       ENST00000343687 ENSE00003506666
5120  ENSG00000160179       ENST00000343687 ENSE00003523195
5121  ENSG00000160179       ENST00000343687 ENSE00003543273
5122  ENSG00000160179       ENST00000343687 ENSE00003477889
5123  ENSG00000160179       ENST00000343687 ENSE00003547441
5124  ENSG00000160179       ENST00000343687 ENSE00003689634
5125  ENSG00000160179       ENST00000343687 ENSE00003505582
5126  ENSG00000160179       ENST00000343687 ENSE00003553101
5127  ENSG00000160179       ENST00000343687 ENSE00003544349
5128  ENSG00000160179       ENST00000343687 ENSE00003688085
5129  ENSG00000160179       ENST00000343687 ENSE00003670239
5130  ENSG00000160179       ENST00000343687 ENSE00003496464
5131  ENSG00000160179       ENST00000343687 ENSE00003674298
5132  ENSG00000160179       ENST00000343687 ENSE00003688526
5133  ENSG00000160179       ENST00000343687 ENSE00001384388
5134  ENSG00000160179       ENST00000398437 ENSE00003523195
5135  ENSG00000160179       ENST00000398437 ENSE00003543273
5136  ENSG00000160179       ENST00000398437 ENSE00003477889
5137  ENSG00000160179       ENST00000398437 ENSE00003547441
5138  ENSG00000160179       ENST00000398437 ENSE00003689634
5139  ENSG00000160179       ENST00000398437 ENSE00003505582
5140  ENSG00000160179       ENST00000398437 ENSE00003544349
5141  ENSG00000160179       ENST00000398437 ENSE00003688085
5142  ENSG00000160179       ENST00000398437 ENSE00003670239
5143  ENSG00000160179       ENST00000398437 ENSE00003496464
5144  ENSG00000160179       ENST00000398437 ENSE00003674298
5145  ENSG00000160179       ENST00000398437 ENSE00003688526
5146  ENSG00000160179       ENST00000398437 ENSE00003586318
5147  ENSG00000160179       ENST00000398437 ENSE00001109772
5148  ENSG00000160179       ENST00000398437 ENSE00001533178
5149  ENSG00000160179       ENST00000398437 ENSE00001109773
5150  ENSG00000160179       ENST00000472587 ENSE00003619236
5151  ENSG00000160179       ENST00000472587 ENSE00003502441
5152  ENSG00000160179       ENST00000472587 ENSE00003634060
5153  ENSG00000160179       ENST00000472587 ENSE00003665058
5154  ENSG00000160179       ENST00000472587 ENSE00003640764
5155  ENSG00000160179       ENST00000472587 ENSE00003624267
5156  ENSG00000160179       ENST00000472587 ENSE00003531087
5157  ENSG00000160179       ENST00000472587 ENSE00003605681
5158  ENSG00000160179       ENST00000472587 ENSE00003499091
5159  ENSG00000160179       ENST00000472587 ENSE00001866954
5160  ENSG00000160179       ENST00000472587 ENSE00003525583
5161  ENSG00000160179       ENST00000467818 ENSE00003619236
5162  ENSG00000160179       ENST00000467818 ENSE00003502441
5163  ENSG00000160179       ENST00000467818 ENSE00001887535
5164  ENSG00000160179       ENST00000467818 ENSE00001837452
5165  ENSG00000160179       ENST00000496783 ENSE00003640764
5166  ENSG00000160179       ENST00000496783 ENSE00003624267
5167  ENSG00000160179       ENST00000496783 ENSE00003531087
5168  ENSG00000160179       ENST00000496783 ENSE00001827552
5169  ENSG00000160179       ENST00000496783 ENSE00001956350
5170  ENSG00000160179       ENST00000496783 ENSE00001884617
5171  ENSG00000180530       ENST00000400199 ENSE00001541961
5172  ENSG00000180530       ENST00000400199 ENSE00001541960
5173  ENSG00000180530       ENST00000400199 ENSE00003773881
5174  ENSG00000180530       ENST00000400202 ENSE00003773881
5175  ENSG00000180530       ENST00000400202 ENSE00001541970
5176  ENSG00000180530       ENST00000400202 ENSE00001541969
5177  ENSG00000180530       ENST00000411932 ENSE00001707724
5178  ENSG00000180530       ENST00000411932 ENSE00001640139
5179  ENSG00000180530       ENST00000638122 ENSE00001541960
5180  ENSG00000180530       ENST00000638122 ENSE00003793238
5181  ENSG00000180530       ENST00000638122 ENSE00003800760
5182  ENSG00000180530       ENST00000637963 ENSE00001541960
5183  ENSG00000180530       ENST00000637963 ENSE00003799215
5184  ENSG00000180530       ENST00000637963 ENSE00003797209
5185  ENSG00000180530       ENST00000637630 ENSE00001541960
5186  ENSG00000180530       ENST00000637630 ENSE00001541969
5187  ENSG00000180530       ENST00000637630 ENSE00003800934
5188  ENSG00000180530       ENST00000637630 ENSE00003799518
5189  ENSG00000180530       ENST00000637630 ENSE00003798618
5190  ENSG00000180530       ENST00000318948 ENSE00001541960
5191  ENSG00000180530       ENST00000318948 ENSE00003773881
5192  ENSG00000180530       ENST00000318948 ENSE00001541969
5193  ENSG00000180530       ENST00000318948 ENSE00001561503
5194  ENSG00000226406       ENST00000454795 ENSE00001764397
5195  ENSG00000173638       ENST00000417954 ENSE00001638523
5196  ENSG00000173638       ENST00000417954 ENSE00001210607
5197  ENSG00000173638       ENST00000417954 ENSE00002299646
5198  ENSG00000173638       ENST00000417954 ENSE00001483422
5199  ENSG00000173638       ENST00000417954 ENSE00001795265
5200  ENSG00000173638       ENST00000567670 ENSE00001210607
5201  ENSG00000173638       ENST00000567670 ENSE00002299646
5202  ENSG00000173638       ENST00000567670 ENSE00002608273
5203  ENSG00000173638       ENST00000567670 ENSE00002734562
5204  ENSG00000173638       ENST00000567670 ENSE00002448210
5205  ENSG00000173638       ENST00000567670 ENSE00002618089
5206  ENSG00000173638       ENST00000461785 ENSE00001940589
5207  ENSG00000173638       ENST00000461785 ENSE00001958145
5208  ENSG00000173638       ENST00000468508 ENSE00001904088
5209  ENSG00000173638       ENST00000468508 ENSE00001888727
5210  ENSG00000173638       ENST00000460174 ENSE00001946834
5211  ENSG00000173638       ENST00000460174 ENSE00001711757
5212  ENSG00000173638       ENST00000460174 ENSE00001925563
5213  ENSG00000173638       ENST00000460174 ENSE00001881847
5214  ENSG00000173638       ENST00000311124 ENSE00001210607
5215  ENSG00000173638       ENST00000311124 ENSE00002299646
5216  ENSG00000173638       ENST00000311124 ENSE00002734562
5217  ENSG00000173638       ENST00000311124 ENSE00002448210
5218  ENSG00000173638       ENST00000311124 ENSE00001857378
5219  ENSG00000173638       ENST00000311124 ENSE00001210645
5220  ENSG00000173638       ENST00000380010 ENSE00001210607
5221  ENSG00000173638       ENST00000380010 ENSE00002299646
5222  ENSG00000173638       ENST00000380010 ENSE00002734562
5223  ENSG00000173638       ENST00000380010 ENSE00002448210
5224  ENSG00000173638       ENST00000380010 ENSE00001857378
5225  ENSG00000173638       ENST00000380010 ENSE00001880694
5226  ENSG00000173638       ENST00000485649 ENSE00001210607
5227  ENSG00000173638       ENST00000485649 ENSE00002299646
5228  ENSG00000173638       ENST00000485649 ENSE00002448210
5229  ENSG00000173638       ENST00000485649 ENSE00001949385
5230  ENSG00000173638       ENST00000485649 ENSE00002315751
5231  ENSG00000173638       ENST00000427839 ENSE00002734562
5232  ENSG00000173638       ENST00000427839 ENSE00001769708
5233  ENSG00000173638       ENST00000427839 ENSE00001789884
5234  ENSG00000173638       ENST00000443742 ENSE00002734562
5235  ENSG00000173638       ENST00000443742 ENSE00001609753
5236  ENSG00000173638       ENST00000443742 ENSE00001644617
5237  ENSG00000173638       ENST00000486303 ENSE00001872362
5238  ENSG00000173638       ENST00000486303 ENSE00001869151
5239  ENSG00000173638       ENST00000528477 ENSE00002140206
5240  ENSG00000173638       ENST00000528477 ENSE00002166597
5241  ENSG00000173638       ENST00000528477 ENSE00002184510
5242  ENSG00000229047       ENST00000446301 ENSE00001721303
5243  ENSG00000229047       ENST00000446301 ENSE00001679975
5244  ENSG00000279390       ENST00000623352 ENSE00003758400
5245  ENSG00000231201       ENST00000436429 ENSE00001771426
5246  ENSG00000231201       ENST00000436429 ENSE00001693515
5247  ENSG00000231201       ENST00000436429 ENSE00001607020
5248  ENSG00000183535       ENST00000397787 ENSE00001530162
5249  ENSG00000183535       ENST00000397787 ENSE00002084477
5250  ENSG00000183535       ENST00000397787 ENSE00001530161
5251  ENSG00000183535       ENST00000485206 ENSE00002084477
5252  ENSG00000183535       ENST00000485206 ENSE00001530161
5253  ENSG00000183535       ENST00000485206 ENSE00001327867
5254  ENSG00000235808       ENST00000450079 ENSE00001600829
5255  ENSG00000160298       ENST00000491666 ENSE00001670598
5256  ENSG00000160298       ENST00000491666 ENSE00003530408
5257  ENSG00000160298       ENST00000491666 ENSE00003567971
5258  ENSG00000160298       ENST00000491666 ENSE00001051246
5259  ENSG00000160298       ENST00000491666 ENSE00002244793
5260  ENSG00000160298       ENST00000491666 ENSE00003583756
5261  ENSG00000160298       ENST00000491666 ENSE00001836049
5262  ENSG00000160298       ENST00000491666 ENSE00001845892
5263  ENSG00000160298       ENST00000397683 ENSE00002244793
5264  ENSG00000160298       ENST00000397683 ENSE00003583756
5265  ENSG00000160298       ENST00000397683 ENSE00001529697
5266  ENSG00000160298       ENST00000397683 ENSE00003486245
5267  ENSG00000160298       ENST00000397683 ENSE00001529695
5268  ENSG00000160298       ENST00000397683 ENSE00003550419
5269  ENSG00000160298       ENST00000397683 ENSE00002319841
5270  ENSG00000160298       ENST00000397683 ENSE00001529703
5271  ENSG00000160298       ENST00000397683 ENSE00001529687
5272  ENSG00000160298       ENST00000417060 ENSE00001670598
5273  ENSG00000160298       ENST00000417060 ENSE00003530408
5274  ENSG00000160298       ENST00000417060 ENSE00003567971
5275  ENSG00000160298       ENST00000417060 ENSE00001051246
5276  ENSG00000160298       ENST00000417060 ENSE00002244793
5277  ENSG00000160298       ENST00000417060 ENSE00003583756
5278  ENSG00000160298       ENST00000417060 ENSE00001529703
5279  ENSG00000160298       ENST00000417060 ENSE00001777824
5280  ENSG00000160298       ENST00000397682 ENSE00002244793
5281  ENSG00000160298       ENST00000397682 ENSE00003583756
5282  ENSG00000160298       ENST00000397682 ENSE00003486245
5283  ENSG00000160298       ENST00000397682 ENSE00001529695
5284  ENSG00000160298       ENST00000397682 ENSE00003550419
5285  ENSG00000160298       ENST00000397682 ENSE00002319841
5286  ENSG00000160298       ENST00000397682 ENSE00001529703
5287  ENSG00000160298       ENST00000397682 ENSE00003555584
5288  ENSG00000160298       ENST00000397682 ENSE00001529701
5289  ENSG00000160298       ENST00000291691 ENSE00003530408
5290  ENSG00000160298       ENST00000291691 ENSE00003567971
5291  ENSG00000160298       ENST00000291691 ENSE00001051246
5292  ENSG00000160298       ENST00000291691 ENSE00002244793
5293  ENSG00000160298       ENST00000291691 ENSE00003583756
5294  ENSG00000160298       ENST00000291691 ENSE00003603708
5295  ENSG00000160298       ENST00000291691 ENSE00003625644
5296  ENSG00000160298       ENST00000291691 ENSE00001529699
5297  ENSG00000160298       ENST00000397679 ENSE00002244793
5298  ENSG00000160298       ENST00000397679 ENSE00003583756
5299  ENSG00000160298       ENST00000397679 ENSE00001529695
5300  ENSG00000160298       ENST00000397679 ENSE00003550419
5301  ENSG00000160298       ENST00000397679 ENSE00002319841
5302  ENSG00000160298       ENST00000397679 ENSE00001529675
5303  ENSG00000160298       ENST00000397679 ENSE00001271873
5304  ENSG00000160298       ENST00000397680 ENSE00002244793
5305  ENSG00000160298       ENST00000397680 ENSE00003583756
5306  ENSG00000160298       ENST00000397680 ENSE00003486245
5307  ENSG00000160298       ENST00000397680 ENSE00003550419
5308  ENSG00000160298       ENST00000397680 ENSE00002319841
5309  ENSG00000160298       ENST00000397680 ENSE00001271873
5310  ENSG00000160298       ENST00000397680 ENSE00001529681
5311  ENSG00000160298       ENST00000397680 ENSE00003621434
5312  ENSG00000160298       ENST00000472607 ENSE00001865923
5313  ENSG00000160298       ENST00000472607 ENSE00003471562
5314  ENSG00000160298       ENST00000472607 ENSE00001848575
5315  ENSG00000160298       ENST00000445935 ENSE00003486245
5316  ENSG00000160298       ENST00000445935 ENSE00003550419
5317  ENSG00000160298       ENST00000445935 ENSE00003621434
5318  ENSG00000160298       ENST00000445935 ENSE00001749376
5319  ENSG00000160298       ENST00000445935 ENSE00001654746
5320  ENSG00000160298       ENST00000445935 ENSE00003614855
5321  ENSG00000160298       ENST00000475776 ENSE00003486245
5322  ENSG00000160298       ENST00000475776 ENSE00003621434
5323  ENSG00000160298       ENST00000475776 ENSE00001749376
5324  ENSG00000160298       ENST00000475776 ENSE00001918011
5325  ENSG00000183486       ENST00000330714 ENSE00001890231
5326  ENSG00000183486       ENST00000330714 ENSE00001290756
5327  ENSG00000183486       ENST00000330714 ENSE00002502168
5328  ENSG00000183486       ENST00000330714 ENSE00001306785
5329  ENSG00000183486       ENST00000330714 ENSE00001328894
5330  ENSG00000183486       ENST00000330714 ENSE00002506138
5331  ENSG00000183486       ENST00000330714 ENSE00003670439
5332  ENSG00000183486       ENST00000330714 ENSE00003625443
5333  ENSG00000183486       ENST00000330714 ENSE00003659722
5334  ENSG00000183486       ENST00000330714 ENSE00003461072
5335  ENSG00000183486       ENST00000330714 ENSE00003486071
5336  ENSG00000183486       ENST00000330714 ENSE00003483351
5337  ENSG00000183486       ENST00000330714 ENSE00003494762
5338  ENSG00000183486       ENST00000330714 ENSE00003548437
5339  ENSG00000183486       ENST00000436410 ENSE00001290756
5340  ENSG00000183486       ENST00000436410 ENSE00001800362
5341  ENSG00000183486       ENST00000436410 ENSE00001662455
5342  ENSG00000183486       ENST00000436410 ENSE00001665952
5343  ENSG00000183486       ENST00000435611 ENSE00001290756
5344  ENSG00000183486       ENST00000435611 ENSE00001649361
5345  ENSG00000183486       ENST00000435611 ENSE00001761564
5346  ENSG00000183486       ENST00000435611 ENSE00002461157
5347  ENSG00000183486       ENST00000494252 ENSE00001813213
5348  ENSG00000183486       ENST00000494252 ENSE00001841427
5349  ENSG00000183486       ENST00000494252 ENSE00001852057
5350  ENSG00000183486       ENST00000495892 ENSE00002208472
5351  ENSG00000183486       ENST00000495892 ENSE00002202195
5352  ENSG00000183486       ENST00000416447 ENSE00001662455
5353  ENSG00000183486       ENST00000416447 ENSE00001673002
5354  ENSG00000183486       ENST00000416447 ENSE00001789052
5355  ENSG00000183486       ENST00000416447 ENSE00001752940
5356  ENSG00000183486       ENST00000418103 ENSE00001290756
5357  ENSG00000183486       ENST00000418103 ENSE00001726214
5358  ENSG00000183486       ENST00000418103 ENSE00001653112
5359  ENSG00000183486       ENST00000482953 ENSE00001888638
5360  ENSG00000183486       ENST00000482953 ENSE00003562160
5361  ENSG00000183486       ENST00000482953 ENSE00003581209
5362  ENSG00000183486       ENST00000482953 ENSE00003648119
5363  ENSG00000183486       ENST00000482953 ENSE00003513419
5364  ENSG00000183486       ENST00000482953 ENSE00003610392
5365  ENSG00000183486       ENST00000482953 ENSE00003527405
5366  ENSG00000183486       ENST00000482953 ENSE00003626175
5367  ENSG00000183486       ENST00000482953 ENSE00001923768
5368  ENSG00000183486       ENST00000496774 ENSE00003562160
5369  ENSG00000183486       ENST00000496774 ENSE00003581209
5370  ENSG00000183486       ENST00000496774 ENSE00003648119
5371  ENSG00000183486       ENST00000496774 ENSE00003513419
5372  ENSG00000183486       ENST00000496774 ENSE00001899985
5373  ENSG00000183486       ENST00000496774 ENSE00001887418
5374  ENSG00000183486       ENST00000493753 ENSE00003648119
5375  ENSG00000183486       ENST00000493753 ENSE00001944277
5376  ENSG00000183486       ENST00000493753 ENSE00001954134
5377  ENSG00000183486       ENST00000481838 ENSE00003610392
5378  ENSG00000183486       ENST00000481838 ENSE00003527405
5379  ENSG00000183486       ENST00000481838 ENSE00003626175
5380  ENSG00000183486       ENST00000481838 ENSE00001925533
5381  ENSG00000183486       ENST00000481838 ENSE00001902958
5382  ENSG00000183486       ENST00000474368 ENSE00001873282
5383  ENSG00000183486       ENST00000474368 ENSE00001848097
5384  ENSG00000183486       ENST00000398632 ENSE00003626175
5385  ENSG00000183486       ENST00000398632 ENSE00001645471
5386  ENSG00000183486       ENST00000398632 ENSE00003638781
5387  ENSG00000183036       ENST00000328619 ENSE00001938571
5388  ENSG00000183036       ENST00000328619 ENSE00003668461
5389  ENSG00000183036       ENST00000328619 ENSE00003509580
5390  ENSG00000183036       ENST00000462224 ENSE00003668461
5391  ENSG00000183036       ENST00000462224 ENSE00001297485
5392  ENSG00000183036       ENST00000462224 ENSE00001922702
5393  ENSG00000183036       ENST00000462224 ENSE00003577223
5394  ENSG00000183036       ENST00000468717 ENSE00003577223
5395  ENSG00000183036       ENST00000468717 ENSE00001909917
5396  ENSG00000183036       ENST00000468717 ENSE00001880963
5397  ENSG00000183036       ENST00000468717 ENSE00003620024
5398  ENSG00000183036       ENST00000467565 ENSE00003577223
5399  ENSG00000183036       ENST00000467565 ENSE00003620024
5400  ENSG00000183036       ENST00000467565 ENSE00001811785
5401  ENSG00000235012       ENST00000411867 ENSE00001734064
5402  ENSG00000235012       ENST00000411867 ENSE00001760174
5403  ENSG00000237945       ENST00000596365 ENSE00003124073
5404  ENSG00000237945       ENST00000596365 ENSE00001670666
5405  ENSG00000237945       ENST00000596365 ENSE00003172124
5406  ENSG00000237945       ENST00000597626 ENSE00001670666
5407  ENSG00000237945       ENST00000597626 ENSE00003178299
5408  ENSG00000237945       ENST00000597626 ENSE00002980010
5409  ENSG00000237945       ENST00000597626 ENSE00003135021
5410  ENSG00000237945       ENST00000597626 ENSE00003187413
5411  ENSG00000237945       ENST00000597626 ENSE00003216082
5412  ENSG00000237945       ENST00000616030 ENSE00003741815
5413  ENSG00000237945       ENST00000616030 ENSE00003728433
5414  ENSG00000237945       ENST00000616030 ENSE00003139331
5415  ENSG00000237945       ENST00000610236 ENSE00003708695
5416  ENSG00000237945       ENST00000610236 ENSE00003710879
5417  ENSG00000237945       ENST00000601471 ENSE00003115913
5418  ENSG00000237945       ENST00000601471 ENSE00003133909
5419  ENSG00000237945       ENST00000601471 ENSE00003056389
5420  ENSG00000237945       ENST00000427447 ENSE00001670666
5421  ENSG00000237945       ENST00000427447 ENSE00001741388
5422  ENSG00000237945       ENST00000427447 ENSE00001615684
5423  ENSG00000237945       ENST00000599421 ENSE00003134385
5424  ENSG00000237945       ENST00000599421 ENSE00003181378
5425  ENSG00000237945       ENST00000400353 ENSE00001670666
5426  ENSG00000237945       ENST00000400353 ENSE00001663992
5427  ENSG00000237945       ENST00000400353 ENSE00001796945
5428  ENSG00000237945       ENST00000622171 ENSE00002460708
5429  ENSG00000237945       ENST00000622171 ENSE00003744821
5430  ENSG00000237945       ENST00000628906 ENSE00001670666
5431  ENSG00000237945       ENST00000628906 ENSE00003765910
5432  ENSG00000237945       ENST00000628906 ENSE00003764620
5433  ENSG00000237945       ENST00000594752 ENSE00001670666
5434  ENSG00000237945       ENST00000594752 ENSE00003139331
5435  ENSG00000237945       ENST00000594752 ENSE00003111737
5436  ENSG00000237945       ENST00000594370 ENSE00001670666
5437  ENSG00000237945       ENST00000594370 ENSE00003139331
5438  ENSG00000237945       ENST00000594370 ENSE00003215400
5439  ENSG00000237945       ENST00000595747 ENSE00001670666
5440  ENSG00000237945       ENST00000595747 ENSE00003139331
5441  ENSG00000237945       ENST00000595747 ENSE00003005088
5442  ENSG00000237945       ENST00000608431 ENSE00001670666
5443  ENSG00000237945       ENST00000608431 ENSE00003702638
5444  ENSG00000237945       ENST00000593977 ENSE00003030697
5445  ENSG00000237945       ENST00000593977 ENSE00003191751
5446  ENSG00000237945       ENST00000593977 ENSE00002989601
5447  ENSG00000237945       ENST00000600155 ENSE00003043329
5448  ENSG00000237945       ENST00000600155 ENSE00003170413
5449  ENSG00000237945       ENST00000600155 ENSE00003149762
5450  ENSG00000237945       ENST00000381181 ENSE00001487744
5451  ENSG00000237945       ENST00000381181 ENSE00001487739
5452  ENSG00000237945       ENST00000620580 ENSE00003745774
5453  ENSG00000237945       ENST00000620580 ENSE00003753917
5454  ENSG00000237945       ENST00000613667 ENSE00003729314
5455  ENSG00000237945       ENST00000613667 ENSE00003754258
5456  ENSG00000237945       ENST00000609132 ENSE00003706565
5457  ENSG00000237945       ENST00000609132 ENSE00003704960
5458  ENSG00000237945       ENST00000609132 ENSE00003708550
5459  ENSG00000233956       ENST00000448054 ENSE00001644099
5460  ENSG00000183778       ENST00000380620 ENSE00001485659
5461  ENSG00000183778       ENST00000380620 ENSE00001485658
5462  ENSG00000183778       ENST00000380620 ENSE00001485657
5463  ENSG00000183778       ENST00000380620 ENSE00001485655
5464  ENSG00000183778       ENST00000380620 ENSE00003704093
5465  ENSG00000183778       ENST00000475838 ENSE00001943002
5466  ENSG00000183778       ENST00000475838 ENSE00001813619
5467  ENSG00000183778       ENST00000380618 ENSE00001485655
5468  ENSG00000183778       ENST00000380618 ENSE00001485640
5469  ENSG00000183778       ENST00000380618 ENSE00001485653
5470  ENSG00000183778       ENST00000398714 ENSE00003714074
5471  ENSG00000183778       ENST00000398714 ENSE00003754588
5472  ENSG00000183778       ENST00000615480 ENSE00001485655
5473  ENSG00000183778       ENST00000615480 ENSE00003719844
5474  ENSG00000183778       ENST00000615480 ENSE00003729165
5475  ENSG00000183778       ENST00000343118 ENSE00001485655
5476  ENSG00000183778       ENST00000343118 ENSE00003729165
5477  ENSG00000183778       ENST00000343118 ENSE00001534522
5478  ENSG00000159140       ENST00000356577 ENSE00001948678
5479  ENSG00000159140       ENST00000356577 ENSE00003672267
5480  ENSG00000159140       ENST00000356577 ENSE00001314216
5481  ENSG00000159140       ENST00000356577 ENSE00001043468
5482  ENSG00000159140       ENST00000356577 ENSE00001043475
5483  ENSG00000159140       ENST00000356577 ENSE00001178085
5484  ENSG00000159140       ENST00000356577 ENSE00001372796
5485  ENSG00000159140       ENST00000356577 ENSE00001379673
5486  ENSG00000159140       ENST00000356577 ENSE00003496844
5487  ENSG00000159140       ENST00000356577 ENSE00003612832
5488  ENSG00000159140       ENST00000356577 ENSE00003486708
5489  ENSG00000159140       ENST00000356577 ENSE00001938879
5490  ENSG00000159140       ENST00000475072 ENSE00003533300
5491  ENSG00000159140       ENST00000475072 ENSE00001954525
5492  ENSG00000159140       ENST00000381692 ENSE00003672267
5493  ENSG00000159140       ENST00000381692 ENSE00001043468
5494  ENSG00000159140       ENST00000381692 ENSE00001043475
5495  ENSG00000159140       ENST00000381692 ENSE00001178085
5496  ENSG00000159140       ENST00000381692 ENSE00001372796
5497  ENSG00000159140       ENST00000381692 ENSE00001379673
5498  ENSG00000159140       ENST00000381692 ENSE00003496844
5499  ENSG00000159140       ENST00000381692 ENSE00003612832
5500  ENSG00000159140       ENST00000381692 ENSE00003486708
5501  ENSG00000159140       ENST00000381692 ENSE00001938879
5502  ENSG00000159140       ENST00000381692 ENSE00003472004
5503  ENSG00000159140       ENST00000300278 ENSE00003672267
5504  ENSG00000159140       ENST00000300278 ENSE00001314216
5505  ENSG00000159140       ENST00000300278 ENSE00001043468
5506  ENSG00000159140       ENST00000300278 ENSE00001043475
5507  ENSG00000159140       ENST00000300278 ENSE00001178085
5508  ENSG00000159140       ENST00000300278 ENSE00001489445
5509  ENSG00000159140       ENST00000300278 ENSE00001223547
5510  ENSG00000159140       ENST00000455528 ENSE00003672267
5511  ENSG00000159140       ENST00000455528 ENSE00001314216
5512  ENSG00000159140       ENST00000455528 ENSE00001043468
5513  ENSG00000159140       ENST00000455528 ENSE00001043475
5514  ENSG00000159140       ENST00000455528 ENSE00001178085
5515  ENSG00000159140       ENST00000455528 ENSE00001372796
5516  ENSG00000159140       ENST00000455528 ENSE00001379673
5517  ENSG00000159140       ENST00000455528 ENSE00003613245
5518  ENSG00000159140       ENST00000455528 ENSE00003680040
5519  ENSG00000159140       ENST00000455528 ENSE00001489445
5520  ENSG00000159140       ENST00000455528 ENSE00003502064
5521  ENSG00000159140       ENST00000455528 ENSE00003473700
5522  ENSG00000159140       ENST00000455528 ENSE00003522025
5523  ENSG00000159140       ENST00000381679 ENSE00003672267
5524  ENSG00000159140       ENST00000381679 ENSE00001314216
5525  ENSG00000159140       ENST00000381679 ENSE00001043468
5526  ENSG00000159140       ENST00000381679 ENSE00001810356
5527  ENSG00000159140       ENST00000381679 ENSE00001800502
5528  ENSG00000159140       ENST00000492229 ENSE00003652074
5529  ENSG00000159140       ENST00000492229 ENSE00001834572
5530  ENSG00000159140       ENST00000492229 ENSE00001956474
5531  ENSG00000159140       ENST00000436227 ENSE00001043468
5532  ENSG00000159140       ENST00000436227 ENSE00001043475
5533  ENSG00000159140       ENST00000436227 ENSE00001178085
5534  ENSG00000159140       ENST00000436227 ENSE00001372796
5535  ENSG00000159140       ENST00000436227 ENSE00001379673
5536  ENSG00000159140       ENST00000436227 ENSE00003496844
5537  ENSG00000159140       ENST00000436227 ENSE00003612832
5538  ENSG00000159140       ENST00000436227 ENSE00003486708
5539  ENSG00000159140       ENST00000436227 ENSE00001489549
5540  ENSG00000159140       ENST00000436227 ENSE00003497392
5541  ENSG00000159140       ENST00000421541 ENSE00001043468
5542  ENSG00000159140       ENST00000421541 ENSE00001043475
5543  ENSG00000159140       ENST00000421541 ENSE00001178085
5544  ENSG00000159140       ENST00000421541 ENSE00001605864
5545  ENSG00000159140       ENST00000421541 ENSE00001660463
5546  ENSG00000159140       ENST00000429093 ENSE00001379673
5547  ENSG00000159140       ENST00000429093 ENSE00001771207
5548  ENSG00000159140       ENST00000429093 ENSE00001735512
5549  ENSG00000159140       ENST00000429093 ENSE00001726937
5550  ENSG00000159140       ENST00000474355 ENSE00001911365
5551  ENSG00000159140       ENST00000474355 ENSE00001831533
5552  ENSG00000159140       ENST00000457208 ENSE00001379673
5553  ENSG00000159140       ENST00000457208 ENSE00003613245
5554  ENSG00000159140       ENST00000457208 ENSE00003680040
5555  ENSG00000159140       ENST00000457208 ENSE00003502064
5556  ENSG00000159140       ENST00000457208 ENSE00003473700
5557  ENSG00000159140       ENST00000457208 ENSE00001782697
5558  ENSG00000159140       ENST00000457208 ENSE00001758425
5559  ENSG00000159140       ENST00000467616 ENSE00003631795
5560  ENSG00000159140       ENST00000467616 ENSE00003613245
5561  ENSG00000159140       ENST00000467616 ENSE00003680040
5562  ENSG00000159140       ENST00000467616 ENSE00001883356
5563  ENSG00000159140       ENST00000467616 ENSE00001644384
5564  ENSG00000159140       ENST00000467616 ENSE00003514358
5565  ENSG00000159140       ENST00000467616 ENSE00001929802
5566  ENSG00000159140       ENST00000484294 ENSE00003631795
5567  ENSG00000159140       ENST00000484294 ENSE00003613245
5568  ENSG00000159140       ENST00000484294 ENSE00003680040
5569  ENSG00000159140       ENST00000484294 ENSE00003514358
5570  ENSG00000159140       ENST00000484294 ENSE00001892372
5571  ENSG00000159140       ENST00000484294 ENSE00001811217
5572  ENSG00000159140       ENST00000473102 ENSE00003631795
5573  ENSG00000159140       ENST00000473102 ENSE00003613245
5574  ENSG00000159140       ENST00000473102 ENSE00003680040
5575  ENSG00000159140       ENST00000473102 ENSE00003514358
5576  ENSG00000159140       ENST00000473102 ENSE00001892372
5577  ENSG00000159140       ENST00000473102 ENSE00001906939
5578  ENSG00000159140       ENST00000470533 ENSE00003631795
5579  ENSG00000159140       ENST00000470533 ENSE00003613245
5580  ENSG00000159140       ENST00000470533 ENSE00003680040
5581  ENSG00000159140       ENST00000470533 ENSE00003514358
5582  ENSG00000159140       ENST00000470533 ENSE00001956629
5583  ENSG00000159140       ENST00000470533 ENSE00001829240
5584  ENSG00000159140       ENST00000478183 ENSE00003631795
5585  ENSG00000159140       ENST00000478183 ENSE00003613245
5586  ENSG00000159140       ENST00000478183 ENSE00003680040
5587  ENSG00000159140       ENST00000478183 ENSE00003522025
5588  ENSG00000159140       ENST00000478183 ENSE00001911649
5589  ENSG00000159140       ENST00000465834 ENSE00003631795
5590  ENSG00000159140       ENST00000465834 ENSE00003613245
5591  ENSG00000159140       ENST00000465834 ENSE00003680040
5592  ENSG00000159140       ENST00000465834 ENSE00001873837
5593  ENSG00000159140       ENST00000465834 ENSE00001933609
5594  ENSG00000159140       ENST00000477419 ENSE00003613245
5595  ENSG00000159140       ENST00000477419 ENSE00003680040
5596  ENSG00000159140       ENST00000477419 ENSE00001908556
5597  ENSG00000159140       ENST00000477419 ENSE00001952969
5598  ENSG00000159140       ENST00000491794 ENSE00003613245
5599  ENSG00000159140       ENST00000491794 ENSE00003680040
5600  ENSG00000159140       ENST00000491794 ENSE00001881361
5601  ENSG00000159140       ENST00000491794 ENSE00001838069
5602  ENSG00000237338       ENST00000446649 ENSE00001793539
5603  ENSG00000237338       ENST00000446649 ENSE00001749111
5604  ENSG00000225330       ENST00000416555 ENSE00001719289
5605  ENSG00000225330       ENST00000416555 ENSE00001615190
5606  ENSG00000225330       ENST00000416555 ENSE00001782898
5607  ENSG00000184809       ENST00000489821 ENSE00001867995
5608  ENSG00000184809       ENST00000489821 ENSE00003757115
5609  ENSG00000184809       ENST00000380612 ENSE00003757115
5610  ENSG00000184809       ENST00000380612 ENSE00001811621
5611  ENSG00000184809       ENST00000380612 ENSE00001295606
5612  ENSG00000184809       ENST00000380604 ENSE00001811621
5613  ENSG00000184809       ENST00000380604 ENSE00001295606
5614  ENSG00000184809       ENST00000380604 ENSE00001718741
5615  ENSG00000184809       ENST00000329618 ENSE00001295606
5616  ENSG00000184809       ENST00000329618 ENSE00001316494
5617  ENSG00000184809       ENST00000329618 ENSE00001719814
5618  ENSG00000231713       ENST00000457325 ENSE00001726936
5619  ENSG00000231713       ENST00000457325 ENSE00001751889
5620  ENSG00000231713       ENST00000457325 ENSE00001686404
5621  ENSG00000231713       ENST00000419826 ENSE00001793894
5622  ENSG00000231713       ENST00000419826 ENSE00001657959
5623  ENSG00000183067       ENST00000380588 ENSE00001769493
5624  ENSG00000183067       ENST00000380588 ENSE00001485574
5625  ENSG00000183067       ENST00000380588 ENSE00003604826
5626  ENSG00000183067       ENST00000380588 ENSE00003647311
5627  ENSG00000183067       ENST00000380588 ENSE00003495748
5628  ENSG00000183067       ENST00000380588 ENSE00003527190
5629  ENSG00000183067       ENST00000380588 ENSE00001290607
5630  ENSG00000183067       ENST00000380588 ENSE00003687559
5631  ENSG00000183067       ENST00000380588 ENSE00001328914
5632  ENSG00000183067       ENST00000479378 ENSE00001935100
5633  ENSG00000183067       ENST00000479378 ENSE00003581442
5634  ENSG00000183067       ENST00000479378 ENSE00003577494
5635  ENSG00000183067       ENST00000479378 ENSE00003612795
5636  ENSG00000183067       ENST00000479378 ENSE00003562860
5637  ENSG00000183067       ENST00000459922 ENSE00001917500
5638  ENSG00000183067       ENST00000459922 ENSE00003595409
5639  ENSG00000183067       ENST00000459922 ENSE00001863487
5640  ENSG00000232969       ENST00000426029 ENSE00001737329
5641  ENSG00000232969       ENST00000426029 ENSE00001772801
5642  ENSG00000184441       ENST00000448927 ENSE00001732904
5643  ENSG00000184441       ENST00000448927 ENSE00001701875
5644  ENSG00000241837       ENST00000431254 ENSE00003686413
5645  ENSG00000241837       ENST00000431254 ENSE00001777826
5646  ENSG00000241837       ENST00000431254 ENSE00003553754
5647  ENSG00000241837       ENST00000431254 ENSE00003664335
5648  ENSG00000241837       ENST00000431254 ENSE00003660834
5649  ENSG00000241837       ENST00000431254 ENSE00003505158
5650  ENSG00000241837       ENST00000491703 ENSE00003686413
5651  ENSG00000241837       ENST00000491703 ENSE00003505158
5652  ENSG00000241837       ENST00000491703 ENSE00001880491
5653  ENSG00000241837       ENST00000491703 ENSE00003484979
5654  ENSG00000241837       ENST00000491703 ENSE00003622069
5655  ENSG00000241837       ENST00000491703 ENSE00001840885
5656  ENSG00000241837       ENST00000290299 ENSE00003553754
5657  ENSG00000241837       ENST00000290299 ENSE00003664335
5658  ENSG00000241837       ENST00000290299 ENSE00001391666
5659  ENSG00000241837       ENST00000290299 ENSE00003658594
5660  ENSG00000241837       ENST00000290299 ENSE00003608641
5661  ENSG00000241837       ENST00000290299 ENSE00003477232
5662  ENSG00000241837       ENST00000290299 ENSE00003503253
5663  ENSG00000241837       ENST00000417181 ENSE00003505158
5664  ENSG00000241837       ENST00000417181 ENSE00001592610
5665  ENSG00000241837       ENST00000417181 ENSE00001688323
5666  ENSG00000241837       ENST00000417181 ENSE00001608844
5667  ENSG00000241837       ENST00000417181 ENSE00001792484
5668  ENSG00000241837       ENST00000418933 ENSE00003608641
5669  ENSG00000241837       ENST00000418933 ENSE00003477232
5670  ENSG00000241837       ENST00000418933 ENSE00002494347
5671  ENSG00000241837       ENST00000418933 ENSE00001714691
5672  ENSG00000241837       ENST00000429064 ENSE00003505158
5673  ENSG00000241837       ENST00000429064 ENSE00001671372
5674  ENSG00000241837       ENST00000429064 ENSE00001717647
5675  ENSG00000241837       ENST00000429064 ENSE00001632641
5676  ENSG00000241837       ENST00000495005 ENSE00003484979
5677  ENSG00000241837       ENST00000495005 ENSE00001868718
5678  ENSG00000241837       ENST00000495005 ENSE00003473248
5679  ENSG00000241837       ENST00000495005 ENSE00001917505
5680  ENSG00000241837       ENST00000496044 ENSE00003473248
5681  ENSG00000241837       ENST00000496044 ENSE00001948435
5682  ENSG00000241837       ENST00000496044 ENSE00001810366
5683  ENSG00000241837       ENST00000484627 ENSE00003473248
5684  ENSG00000241837       ENST00000484627 ENSE00001810366
5685  ENSG00000241837       ENST00000484627 ENSE00001896370
5686  ENSG00000241837       ENST00000487374 ENSE00003473248
5687  ENSG00000241837       ENST00000487374 ENSE00001927911
5688  ENSG00000241837       ENST00000487374 ENSE00001936688
5689  ENSG00000215533       ENST00000447125 ENSE00001543338
5690  ENSG00000215533       ENST00000447125 ENSE00001766934
5691  ENSG00000215533       ENST00000447125 ENSE00001686651
5692  ENSG00000215533       ENST00000420364 ENSE00001686651
5693  ENSG00000215533       ENST00000420364 ENSE00001806032
5694  ENSG00000215533       ENST00000431661 ENSE00001647948
5695  ENSG00000215533       ENST00000431661 ENSE00003549843
5696  ENSG00000215533       ENST00000431661 ENSE00001632640
5697  ENSG00000171587       ENST00000617870 ENSE00001174815
5698  ENSG00000171587       ENST00000617870 ENSE00001174811
5699  ENSG00000171587       ENST00000617870 ENSE00001174805
5700  ENSG00000171587       ENST00000617870 ENSE00001174802
5701  ENSG00000171587       ENST00000617870 ENSE00001303370
5702  ENSG00000171587       ENST00000617870 ENSE00001297675
5703  ENSG00000171587       ENST00000617870 ENSE00001299928
5704  ENSG00000171587       ENST00000617870 ENSE00001330905
5705  ENSG00000171587       ENST00000617870 ENSE00001301906
5706  ENSG00000171587       ENST00000617870 ENSE00001296378
5707  ENSG00000171587       ENST00000617870 ENSE00001318915
5708  ENSG00000171587       ENST00000617870 ENSE00001325865
5709  ENSG00000171587       ENST00000617870 ENSE00001305503
5710  ENSG00000171587       ENST00000617870 ENSE00001327150
5711  ENSG00000171587       ENST00000617870 ENSE00001306377
5712  ENSG00000171587       ENST00000617870 ENSE00001203423
5713  ENSG00000171587       ENST00000617870 ENSE00001175262
5714  ENSG00000171587       ENST00000617870 ENSE00001175254
5715  ENSG00000171587       ENST00000617870 ENSE00001175248
5716  ENSG00000171587       ENST00000617870 ENSE00001175244
5717  ENSG00000171587       ENST00000617870 ENSE00001175237
5718  ENSG00000171587       ENST00000617870 ENSE00001203412
5719  ENSG00000171587       ENST00000617870 ENSE00001290929
5720  ENSG00000171587       ENST00000617870 ENSE00002519798
5721  ENSG00000171587       ENST00000617870 ENSE00001301674
5722  ENSG00000171587       ENST00000617870 ENSE00001290276
5723  ENSG00000171587       ENST00000617870 ENSE00001317868
5724  ENSG00000171587       ENST00000617870 ENSE00001322604
5725  ENSG00000171587       ENST00000617870 ENSE00003731461
5726  ENSG00000171587       ENST00000617870 ENSE00003745904
5727  ENSG00000171587       ENST00000400454 ENSE00001543050
5728  ENSG00000171587       ENST00000400454 ENSE00001543045
5729  ENSG00000171587       ENST00000400454 ENSE00001300225
5730  ENSG00000171587       ENST00000400454 ENSE00001138378
5731  ENSG00000171587       ENST00000400454 ENSE00001174815
5732  ENSG00000171587       ENST00000400454 ENSE00001174811
5733  ENSG00000171587       ENST00000400454 ENSE00001174805
5734  ENSG00000171587       ENST00000400454 ENSE00001174802
5735  ENSG00000171587       ENST00000400454 ENSE00001303370
5736  ENSG00000171587       ENST00000400454 ENSE00001297675
5737  ENSG00000171587       ENST00000400454 ENSE00001299928
5738  ENSG00000171587       ENST00000400454 ENSE00001330905
5739  ENSG00000171587       ENST00000400454 ENSE00001301906
5740  ENSG00000171587       ENST00000400454 ENSE00001296378
5741  ENSG00000171587       ENST00000400454 ENSE00001318915
5742  ENSG00000171587       ENST00000400454 ENSE00001325865
5743  ENSG00000171587       ENST00000400454 ENSE00001305503
5744  ENSG00000171587       ENST00000400454 ENSE00001327150
5745  ENSG00000171587       ENST00000400454 ENSE00001306377
5746  ENSG00000171587       ENST00000400454 ENSE00001203423
5747  ENSG00000171587       ENST00000400454 ENSE00001175262
5748  ENSG00000171587       ENST00000400454 ENSE00001175254
5749  ENSG00000171587       ENST00000400454 ENSE00001175248
5750  ENSG00000171587       ENST00000400454 ENSE00001175244
5751  ENSG00000171587       ENST00000400454 ENSE00001175237
5752  ENSG00000171587       ENST00000400454 ENSE00001203412
5753  ENSG00000171587       ENST00000400454 ENSE00001290929
5754  ENSG00000171587       ENST00000400454 ENSE00002519798
5755  ENSG00000171587       ENST00000400454 ENSE00001301674
5756  ENSG00000171587       ENST00000400454 ENSE00001290276
5757  ENSG00000171587       ENST00000400454 ENSE00001317868
5758  ENSG00000171587       ENST00000400454 ENSE00001322604
5759  ENSG00000171587       ENST00000400454 ENSE00001542956
5760  ENSG00000171587       ENST00000404019 ENSE00001174811
5761  ENSG00000171587       ENST00000404019 ENSE00001174805
5762  ENSG00000171587       ENST00000404019 ENSE00001174802
5763  ENSG00000171587       ENST00000404019 ENSE00001303370
5764  ENSG00000171587       ENST00000404019 ENSE00001297675
5765  ENSG00000171587       ENST00000404019 ENSE00001299928
5766  ENSG00000171587       ENST00000404019 ENSE00001330905
5767  ENSG00000171587       ENST00000404019 ENSE00001301906
5768  ENSG00000171587       ENST00000404019 ENSE00001296378
5769  ENSG00000171587       ENST00000404019 ENSE00001318915
5770  ENSG00000171587       ENST00000404019 ENSE00001325865
5771  ENSG00000171587       ENST00000404019 ENSE00001305503
5772  ENSG00000171587       ENST00000404019 ENSE00001327150
5773  ENSG00000171587       ENST00000404019 ENSE00001306377
5774  ENSG00000171587       ENST00000404019 ENSE00001203423
5775  ENSG00000171587       ENST00000404019 ENSE00001175262
5776  ENSG00000171587       ENST00000404019 ENSE00001175254
5777  ENSG00000171587       ENST00000404019 ENSE00001175248
5778  ENSG00000171587       ENST00000404019 ENSE00001175244
5779  ENSG00000171587       ENST00000404019 ENSE00001175237
5780  ENSG00000171587       ENST00000404019 ENSE00001203412
5781  ENSG00000171587       ENST00000404019 ENSE00001290929
5782  ENSG00000171587       ENST00000404019 ENSE00002519798
5783  ENSG00000171587       ENST00000404019 ENSE00001301674
5784  ENSG00000171587       ENST00000404019 ENSE00001290276
5785  ENSG00000171587       ENST00000404019 ENSE00001317868
5786  ENSG00000171587       ENST00000404019 ENSE00001322604
5787  ENSG00000171587       ENST00000404019 ENSE00001712962
5788  ENSG00000171587       ENST00000404019 ENSE00001549129
5789  ENSG00000182670       ENST00000492275 ENSE00001926459
5790  ENSG00000182670       ENST00000492275 ENSE00003492829
5791  ENSG00000182670       ENST00000492275 ENSE00003616905
5792  ENSG00000182670       ENST00000492275 ENSE00003489082
5793  ENSG00000182670       ENST00000492275 ENSE00003506193
5794  ENSG00000182670       ENST00000492275 ENSE00003496994
5795  ENSG00000182670       ENST00000492275 ENSE00003608391
5796  ENSG00000182670       ENST00000492275 ENSE00003552849
5797  ENSG00000182670       ENST00000492275 ENSE00001867322
5798  ENSG00000182670       ENST00000418766 ENSE00001635826
5799  ENSG00000182670       ENST00000418766 ENSE00003656604
5800  ENSG00000182670       ENST00000418766 ENSE00003656402
5801  ENSG00000182670       ENST00000418766 ENSE00003612884
5802  ENSG00000182670       ENST00000418766 ENSE00003656477
5803  ENSG00000182670       ENST00000418766 ENSE00003675922
5804  ENSG00000182670       ENST00000418766 ENSE00003507071
5805  ENSG00000182670       ENST00000418766 ENSE00003482158
5806  ENSG00000182670       ENST00000418766 ENSE00003608941
5807  ENSG00000182670       ENST00000418766 ENSE00003565200
5808  ENSG00000182670       ENST00000418766 ENSE00003637056
5809  ENSG00000182670       ENST00000418766 ENSE00003465554
5810  ENSG00000182670       ENST00000418766 ENSE00003494877
5811  ENSG00000182670       ENST00000418766 ENSE00003476101
5812  ENSG00000182670       ENST00000418766 ENSE00003460189
5813  ENSG00000182670       ENST00000418766 ENSE00003511582
5814  ENSG00000182670       ENST00000418766 ENSE00003665746
5815  ENSG00000182670       ENST00000418766 ENSE00003690606
5816  ENSG00000182670       ENST00000418766 ENSE00003577978
5817  ENSG00000182670       ENST00000418766 ENSE00003628284
5818  ENSG00000182670       ENST00000418766 ENSE00003654536
5819  ENSG00000182670       ENST00000418766 ENSE00003473796
5820  ENSG00000182670       ENST00000418766 ENSE00003665897
5821  ENSG00000182670       ENST00000418766 ENSE00003500879
5822  ENSG00000182670       ENST00000418766 ENSE00003524799
5823  ENSG00000182670       ENST00000418766 ENSE00003628441
5824  ENSG00000182670       ENST00000418766 ENSE00003791477
5825  ENSG00000182670       ENST00000418766 ENSE00003530987
5826  ENSG00000182670       ENST00000418766 ENSE00003687576
5827  ENSG00000182670       ENST00000418766 ENSE00003536562
5828  ENSG00000182670       ENST00000418766 ENSE00003627255
5829  ENSG00000182670       ENST00000418766 ENSE00003661197
5830  ENSG00000182670       ENST00000418766 ENSE00001603321
5831  ENSG00000182670       ENST00000485402 ENSE00003492829
5832  ENSG00000182670       ENST00000485402 ENSE00003616905
5833  ENSG00000182670       ENST00000485402 ENSE00003489082
5834  ENSG00000182670       ENST00000485402 ENSE00003506193
5835  ENSG00000182670       ENST00000485402 ENSE00003496994
5836  ENSG00000182670       ENST00000485402 ENSE00003608391
5837  ENSG00000182670       ENST00000485402 ENSE00003552849
5838  ENSG00000182670       ENST00000485402 ENSE00001913164
5839  ENSG00000182670       ENST00000485402 ENSE00003553663
5840  ENSG00000182670       ENST00000485402 ENSE00003633215
5841  ENSG00000182670       ENST00000485402 ENSE00003628855
5842  ENSG00000182670       ENST00000485402 ENSE00003599881
5843  ENSG00000182670       ENST00000485402 ENSE00003473338
5844  ENSG00000182670       ENST00000485402 ENSE00003513098
5845  ENSG00000182670       ENST00000485402 ENSE00003593783
5846  ENSG00000182670       ENST00000485402 ENSE00003465547
5847  ENSG00000182670       ENST00000485402 ENSE00003482670
5848  ENSG00000182670       ENST00000485402 ENSE00003530526
5849  ENSG00000182670       ENST00000485402 ENSE00003576767
5850  ENSG00000182670       ENST00000485402 ENSE00003691391
5851  ENSG00000182670       ENST00000485402 ENSE00003521393
5852  ENSG00000182670       ENST00000485402 ENSE00003597362
5853  ENSG00000182670       ENST00000485402 ENSE00003595792
5854  ENSG00000182670       ENST00000485402 ENSE00003585112
5855  ENSG00000182670       ENST00000485402 ENSE00003584754
5856  ENSG00000182670       ENST00000485402 ENSE00003476752
5857  ENSG00000182670       ENST00000485402 ENSE00003674933
5858  ENSG00000182670       ENST00000485402 ENSE00003491750
5859  ENSG00000182670       ENST00000485402 ENSE00003515585
5860  ENSG00000182670       ENST00000485402 ENSE00003626252
5861  ENSG00000182670       ENST00000485402 ENSE00003559674
5862  ENSG00000182670       ENST00000485402 ENSE00003676478
5863  ENSG00000182670       ENST00000450533 ENSE00003656604
5864  ENSG00000182670       ENST00000450533 ENSE00003656402
5865  ENSG00000182670       ENST00000450533 ENSE00003612884
5866  ENSG00000182670       ENST00000450533 ENSE00003656477
5867  ENSG00000182670       ENST00000450533 ENSE00003675922
5868  ENSG00000182670       ENST00000450533 ENSE00003507071
5869  ENSG00000182670       ENST00000450533 ENSE00003482158
5870  ENSG00000182670       ENST00000450533 ENSE00003608941
5871  ENSG00000182670       ENST00000450533 ENSE00003565200
5872  ENSG00000182670       ENST00000450533 ENSE00003637056
5873  ENSG00000182670       ENST00000450533 ENSE00003465554
5874  ENSG00000182670       ENST00000450533 ENSE00003494877
5875  ENSG00000182670       ENST00000450533 ENSE00003476101
5876  ENSG00000182670       ENST00000450533 ENSE00003460189
5877  ENSG00000182670       ENST00000450533 ENSE00003511582
5878  ENSG00000182670       ENST00000450533 ENSE00003665746
5879  ENSG00000182670       ENST00000450533 ENSE00003690606
5880  ENSG00000182670       ENST00000450533 ENSE00003577978
5881  ENSG00000182670       ENST00000450533 ENSE00003628284
5882  ENSG00000182670       ENST00000450533 ENSE00003654536
5883  ENSG00000182670       ENST00000450533 ENSE00003473796
5884  ENSG00000182670       ENST00000450533 ENSE00003665897
5885  ENSG00000182670       ENST00000450533 ENSE00003500879
5886  ENSG00000182670       ENST00000450533 ENSE00003524799
5887  ENSG00000182670       ENST00000450533 ENSE00001430930
5888  ENSG00000182670       ENST00000450533 ENSE00001599328
5889  ENSG00000182670       ENST00000438055 ENSE00003656604
5890  ENSG00000182670       ENST00000438055 ENSE00003656402
5891  ENSG00000182670       ENST00000438055 ENSE00003612884
5892  ENSG00000182670       ENST00000438055 ENSE00003656477
5893  ENSG00000182670       ENST00000438055 ENSE00003507071
5894  ENSG00000182670       ENST00000438055 ENSE00003482158
5895  ENSG00000182670       ENST00000438055 ENSE00003608941
5896  ENSG00000182670       ENST00000438055 ENSE00003565200
5897  ENSG00000182670       ENST00000438055 ENSE00003637056
5898  ENSG00000182670       ENST00000438055 ENSE00003465554
5899  ENSG00000182670       ENST00000438055 ENSE00003494877
5900  ENSG00000182670       ENST00000438055 ENSE00003476101
5901  ENSG00000182670       ENST00000438055 ENSE00003460189
5902  ENSG00000182670       ENST00000438055 ENSE00003511582
5903  ENSG00000182670       ENST00000438055 ENSE00003665746
5904  ENSG00000182670       ENST00000438055 ENSE00003690606
5905  ENSG00000182670       ENST00000438055 ENSE00003577978
5906  ENSG00000182670       ENST00000438055 ENSE00003628284
5907  ENSG00000182670       ENST00000438055 ENSE00003654536
5908  ENSG00000182670       ENST00000438055 ENSE00003473796
5909  ENSG00000182670       ENST00000438055 ENSE00003665897
5910  ENSG00000182670       ENST00000438055 ENSE00003500879
5911  ENSG00000182670       ENST00000438055 ENSE00003524799
5912  ENSG00000182670       ENST00000438055 ENSE00003628441
5913  ENSG00000182670       ENST00000438055 ENSE00003791477
5914  ENSG00000182670       ENST00000438055 ENSE00003530987
5915  ENSG00000182670       ENST00000438055 ENSE00003687576
5916  ENSG00000182670       ENST00000438055 ENSE00003536562
5917  ENSG00000182670       ENST00000438055 ENSE00003627255
5918  ENSG00000182670       ENST00000438055 ENSE00003661197
5919  ENSG00000182670       ENST00000438055 ENSE00001430930
5920  ENSG00000182670       ENST00000438055 ENSE00003545372
5921  ENSG00000182670       ENST00000463216 ENSE00003492829
5922  ENSG00000182670       ENST00000463216 ENSE00003616905
5923  ENSG00000182670       ENST00000463216 ENSE00003489082
5924  ENSG00000182670       ENST00000463216 ENSE00003506193
5925  ENSG00000182670       ENST00000463216 ENSE00003496994
5926  ENSG00000182670       ENST00000463216 ENSE00003608391
5927  ENSG00000182670       ENST00000463216 ENSE00003552849
5928  ENSG00000182670       ENST00000463216 ENSE00001846091
5929  ENSG00000182670       ENST00000463216 ENSE00001893223
5930  ENSG00000182670       ENST00000481605 ENSE00003492829
5931  ENSG00000182670       ENST00000481605 ENSE00003489082
5932  ENSG00000182670       ENST00000481605 ENSE00003506193
5933  ENSG00000182670       ENST00000481605 ENSE00003496994
5934  ENSG00000182670       ENST00000481605 ENSE00003608391
5935  ENSG00000182670       ENST00000481605 ENSE00003552849
5936  ENSG00000182670       ENST00000481605 ENSE00003482670
5937  ENSG00000182670       ENST00000481605 ENSE00003530526
5938  ENSG00000182670       ENST00000481605 ENSE00003576767
5939  ENSG00000182670       ENST00000481605 ENSE00003691391
5940  ENSG00000182670       ENST00000481605 ENSE00003521393
5941  ENSG00000182670       ENST00000481605 ENSE00003597362
5942  ENSG00000182670       ENST00000481605 ENSE00003595792
5943  ENSG00000182670       ENST00000481605 ENSE00003585112
5944  ENSG00000182670       ENST00000481605 ENSE00001846091
5945  ENSG00000182670       ENST00000481605 ENSE00001846651
5946  ENSG00000182670       ENST00000494243 ENSE00003492829
5947  ENSG00000182670       ENST00000494243 ENSE00003616905
5948  ENSG00000182670       ENST00000494243 ENSE00003489082
5949  ENSG00000182670       ENST00000494243 ENSE00003506193
5950  ENSG00000182670       ENST00000494243 ENSE00003496994
5951  ENSG00000182670       ENST00000494243 ENSE00003608391
5952  ENSG00000182670       ENST00000494243 ENSE00003552849
5953  ENSG00000182670       ENST00000494243 ENSE00001810102
5954  ENSG00000182670       ENST00000494243 ENSE00001942305
5955  ENSG00000182670       ENST00000494243 ENSE00001893020
5956  ENSG00000182670       ENST00000540756 ENSE00003492829
5957  ENSG00000182670       ENST00000540756 ENSE00003494877
5958  ENSG00000182670       ENST00000540756 ENSE00003476101
5959  ENSG00000182670       ENST00000540756 ENSE00003460189
5960  ENSG00000182670       ENST00000540756 ENSE00003511582
5961  ENSG00000182670       ENST00000540756 ENSE00003665746
5962  ENSG00000182670       ENST00000540756 ENSE00003690606
5963  ENSG00000182670       ENST00000540756 ENSE00003577978
5964  ENSG00000182670       ENST00000540756 ENSE00003628284
5965  ENSG00000182670       ENST00000540756 ENSE00003654536
5966  ENSG00000182670       ENST00000540756 ENSE00003473796
5967  ENSG00000182670       ENST00000540756 ENSE00003665897
5968  ENSG00000182670       ENST00000540756 ENSE00003500879
5969  ENSG00000182670       ENST00000540756 ENSE00003524799
5970  ENSG00000182670       ENST00000540756 ENSE00003628441
5971  ENSG00000182670       ENST00000540756 ENSE00001810102
5972  ENSG00000182670       ENST00000540756 ENSE00003559648
5973  ENSG00000182670       ENST00000540756 ENSE00002281751
5974  ENSG00000182670       ENST00000399010 ENSE00003656604
5975  ENSG00000182670       ENST00000399010 ENSE00003656402
5976  ENSG00000182670       ENST00000399010 ENSE00003612884
5977  ENSG00000182670       ENST00000399010 ENSE00003656477
5978  ENSG00000182670       ENST00000399010 ENSE00003675922
5979  ENSG00000182670       ENST00000399010 ENSE00003507071
5980  ENSG00000182670       ENST00000399010 ENSE00003482158
5981  ENSG00000182670       ENST00000399010 ENSE00003608941
5982  ENSG00000182670       ENST00000399010 ENSE00003565200
5983  ENSG00000182670       ENST00000399010 ENSE00001535966
5984  ENSG00000182670       ENST00000399010 ENSE00001535965
5985  ENSG00000182670       ENST00000399017 ENSE00003656604
5986  ENSG00000182670       ENST00000399017 ENSE00003656402
5987  ENSG00000182670       ENST00000399017 ENSE00003612884
5988  ENSG00000182670       ENST00000399017 ENSE00003656477
5989  ENSG00000182670       ENST00000399017 ENSE00003675922
5990  ENSG00000182670       ENST00000399017 ENSE00003507071
5991  ENSG00000182670       ENST00000399017 ENSE00003482158
5992  ENSG00000182670       ENST00000399017 ENSE00003608941
5993  ENSG00000182670       ENST00000399017 ENSE00003565200
5994  ENSG00000182670       ENST00000399017 ENSE00003637056
5995  ENSG00000182670       ENST00000399017 ENSE00003465554
5996  ENSG00000182670       ENST00000399017 ENSE00003494877
5997  ENSG00000182670       ENST00000399017 ENSE00003476101
5998  ENSG00000182670       ENST00000399017 ENSE00003460189
5999  ENSG00000182670       ENST00000399017 ENSE00003511582
6000  ENSG00000182670       ENST00000399017 ENSE00003665746
6001  ENSG00000182670       ENST00000399017 ENSE00003690606
6002  ENSG00000182670       ENST00000399017 ENSE00003577978
6003  ENSG00000182670       ENST00000399017 ENSE00003628284
6004  ENSG00000182670       ENST00000399017 ENSE00003654536
6005  ENSG00000182670       ENST00000399017 ENSE00003473796
6006  ENSG00000182670       ENST00000399017 ENSE00003665897
6007  ENSG00000182670       ENST00000399017 ENSE00003500879
6008  ENSG00000182670       ENST00000399017 ENSE00003524799
6009  ENSG00000182670       ENST00000399017 ENSE00003628441
6010  ENSG00000182670       ENST00000399017 ENSE00003791477
6011  ENSG00000182670       ENST00000399017 ENSE00003530987
6012  ENSG00000182670       ENST00000399017 ENSE00003687576
6013  ENSG00000182670       ENST00000399017 ENSE00003536562
6014  ENSG00000182670       ENST00000399017 ENSE00003627255
6015  ENSG00000182670       ENST00000399017 ENSE00003661197
6016  ENSG00000182670       ENST00000399017 ENSE00001824890
6017  ENSG00000182670       ENST00000399017 ENSE00003636017
6018  ENSG00000182670       ENST00000399017 ENSE00003521313
6019  ENSG00000182670       ENST00000399017 ENSE00003643560
6020  ENSG00000182670       ENST00000399017 ENSE00003661677
6021  ENSG00000182670       ENST00000399017 ENSE00003479315
6022  ENSG00000182670       ENST00000399017 ENSE00003560308
6023  ENSG00000182670       ENST00000399017 ENSE00003561232
6024  ENSG00000182670       ENST00000399017 ENSE00003589692
6025  ENSG00000182670       ENST00000399017 ENSE00003492781
6026  ENSG00000182670       ENST00000399017 ENSE00003590736
6027  ENSG00000182670       ENST00000399017 ENSE00003688182
6028  ENSG00000182670       ENST00000399017 ENSE00003507263
6029  ENSG00000182670       ENST00000399017 ENSE00003636513
6030  ENSG00000182670       ENST00000399017 ENSE00003493492
6031  ENSG00000182670       ENST00000484047 ENSE00003553663
6032  ENSG00000182670       ENST00000484047 ENSE00003628855
6033  ENSG00000182670       ENST00000484047 ENSE00003599881
6034  ENSG00000182670       ENST00000484047 ENSE00001921180
6035  ENSG00000182670       ENST00000484047 ENSE00001868313
6036  ENSG00000182670       ENST00000484047 ENSE00001887719
6037  ENSG00000182670       ENST00000484047 ENSE00001939389
6038  ENSG00000182670       ENST00000354749 ENSE00003656402
6039  ENSG00000182670       ENST00000354749 ENSE00003612884
6040  ENSG00000182670       ENST00000354749 ENSE00003656477
6041  ENSG00000182670       ENST00000354749 ENSE00003675922
6042  ENSG00000182670       ENST00000354749 ENSE00003507071
6043  ENSG00000182670       ENST00000354749 ENSE00003482158
6044  ENSG00000182670       ENST00000354749 ENSE00003608941
6045  ENSG00000182670       ENST00000354749 ENSE00003565200
6046  ENSG00000182670       ENST00000354749 ENSE00003637056
6047  ENSG00000182670       ENST00000354749 ENSE00003465554
6048  ENSG00000182670       ENST00000354749 ENSE00003494877
6049  ENSG00000182670       ENST00000354749 ENSE00003476101
6050  ENSG00000182670       ENST00000354749 ENSE00003460189
6051  ENSG00000182670       ENST00000354749 ENSE00003511582
6052  ENSG00000182670       ENST00000354749 ENSE00003665746
6053  ENSG00000182670       ENST00000354749 ENSE00003690606
6054  ENSG00000182670       ENST00000354749 ENSE00003577978
6055  ENSG00000182670       ENST00000354749 ENSE00003628284
6056  ENSG00000182670       ENST00000354749 ENSE00003654536
6057  ENSG00000182670       ENST00000354749 ENSE00003473796
6058  ENSG00000182670       ENST00000354749 ENSE00003665897
6059  ENSG00000182670       ENST00000354749 ENSE00003500879
6060  ENSG00000182670       ENST00000354749 ENSE00003524799
6061  ENSG00000182670       ENST00000354749 ENSE00003628441
6062  ENSG00000182670       ENST00000354749 ENSE00003791477
6063  ENSG00000182670       ENST00000354749 ENSE00003530987
6064  ENSG00000182670       ENST00000354749 ENSE00003687576
6065  ENSG00000182670       ENST00000354749 ENSE00003536562
6066  ENSG00000182670       ENST00000354749 ENSE00003627255
6067  ENSG00000182670       ENST00000354749 ENSE00003661197
6068  ENSG00000182670       ENST00000354749 ENSE00003636017
6069  ENSG00000182670       ENST00000354749 ENSE00003521313
6070  ENSG00000182670       ENST00000354749 ENSE00003643560
6071  ENSG00000182670       ENST00000354749 ENSE00003661677
6072  ENSG00000182670       ENST00000354749 ENSE00003479315
6073  ENSG00000182670       ENST00000354749 ENSE00003560308
6074  ENSG00000182670       ENST00000354749 ENSE00003561232
6075  ENSG00000182670       ENST00000354749 ENSE00003589692
6076  ENSG00000182670       ENST00000354749 ENSE00003492781
6077  ENSG00000182670       ENST00000354749 ENSE00003590736
6078  ENSG00000182670       ENST00000354749 ENSE00003688182
6079  ENSG00000182670       ENST00000354749 ENSE00003507263
6080  ENSG00000182670       ENST00000354749 ENSE00003636513
6081  ENSG00000182670       ENST00000354749 ENSE00003493492
6082  ENSG00000182670       ENST00000354749 ENSE00003640322
6083  ENSG00000182670       ENST00000479930 ENSE00003492829
6084  ENSG00000182670       ENST00000479930 ENSE00003616905
6085  ENSG00000182670       ENST00000479930 ENSE00003489082
6086  ENSG00000182670       ENST00000479930 ENSE00003506193
6087  ENSG00000182670       ENST00000479930 ENSE00003496994
6088  ENSG00000182670       ENST00000479930 ENSE00003608391
6089  ENSG00000182670       ENST00000479930 ENSE00003552849
6090  ENSG00000182670       ENST00000479930 ENSE00003633215
6091  ENSG00000182670       ENST00000479930 ENSE00003628855
6092  ENSG00000182670       ENST00000479930 ENSE00003599881
6093  ENSG00000182670       ENST00000479930 ENSE00003473338
6094  ENSG00000182670       ENST00000479930 ENSE00003593783
6095  ENSG00000182670       ENST00000479930 ENSE00003465547
6096  ENSG00000182670       ENST00000479930 ENSE00003482670
6097  ENSG00000182670       ENST00000479930 ENSE00003530526
6098  ENSG00000182670       ENST00000479930 ENSE00003576767
6099  ENSG00000182670       ENST00000479930 ENSE00003691391
6100  ENSG00000182670       ENST00000479930 ENSE00003521393
6101  ENSG00000182670       ENST00000479930 ENSE00003597362
6102  ENSG00000182670       ENST00000479930 ENSE00003595792
6103  ENSG00000182670       ENST00000479930 ENSE00003585112
6104  ENSG00000182670       ENST00000479930 ENSE00003584754
6105  ENSG00000182670       ENST00000479930 ENSE00003476752
6106  ENSG00000182670       ENST00000479930 ENSE00003674933
6107  ENSG00000182670       ENST00000479930 ENSE00003491750
6108  ENSG00000182670       ENST00000479930 ENSE00003515585
6109  ENSG00000182670       ENST00000479930 ENSE00003626252
6110  ENSG00000182670       ENST00000479930 ENSE00003559674
6111  ENSG00000182670       ENST00000479930 ENSE00003587673
6112  ENSG00000182670       ENST00000479930 ENSE00003595729
6113  ENSG00000182670       ENST00000479930 ENSE00003479693
6114  ENSG00000182670       ENST00000479930 ENSE00003492321
6115  ENSG00000182670       ENST00000479930 ENSE00003603698
6116  ENSG00000182670       ENST00000479930 ENSE00003599612
6117  ENSG00000182670       ENST00000479930 ENSE00003568218
6118  ENSG00000182670       ENST00000479930 ENSE00003653003
6119  ENSG00000182670       ENST00000479930 ENSE00003627839
6120  ENSG00000182670       ENST00000479930 ENSE00003496809
6121  ENSG00000182670       ENST00000479930 ENSE00003552885
6122  ENSG00000182670       ENST00000479930 ENSE00003485866
6123  ENSG00000182670       ENST00000479930 ENSE00003619915
6124  ENSG00000182670       ENST00000479930 ENSE00003618329
6125  ENSG00000182670       ENST00000479930 ENSE00003617054
6126  ENSG00000182670       ENST00000479930 ENSE00003591319
6127  ENSG00000182670       ENST00000460328 ENSE00003513098
6128  ENSG00000182670       ENST00000460328 ENSE00003593783
6129  ENSG00000182670       ENST00000460328 ENSE00001888280
6130  ENSG00000182670       ENST00000460328 ENSE00001918908
6131  ENSG00000182670       ENST00000491952 ENSE00003513098
6132  ENSG00000182670       ENST00000491952 ENSE00001943458
6133  ENSG00000182670       ENST00000491952 ENSE00001921343
6134  ENSG00000182670       ENST00000476784 ENSE00003616905
6135  ENSG00000182670       ENST00000476784 ENSE00003489082
6136  ENSG00000182670       ENST00000476784 ENSE00003506193
6137  ENSG00000182670       ENST00000476784 ENSE00003496994
6138  ENSG00000182670       ENST00000476784 ENSE00003608391
6139  ENSG00000182670       ENST00000476784 ENSE00003552849
6140  ENSG00000182670       ENST00000476784 ENSE00003482670
6141  ENSG00000182670       ENST00000476784 ENSE00003530526
6142  ENSG00000182670       ENST00000476784 ENSE00003576767
6143  ENSG00000182670       ENST00000476784 ENSE00003691391
6144  ENSG00000182670       ENST00000476784 ENSE00003521393
6145  ENSG00000182670       ENST00000476784 ENSE00003597362
6146  ENSG00000182670       ENST00000476784 ENSE00003595792
6147  ENSG00000182670       ENST00000476784 ENSE00003585112
6148  ENSG00000182670       ENST00000476784 ENSE00003584754
6149  ENSG00000182670       ENST00000476784 ENSE00003476752
6150  ENSG00000182670       ENST00000476784 ENSE00003674933
6151  ENSG00000182670       ENST00000476784 ENSE00003491750
6152  ENSG00000182670       ENST00000476784 ENSE00003515585
6153  ENSG00000182670       ENST00000476784 ENSE00003626252
6154  ENSG00000182670       ENST00000476784 ENSE00003559674
6155  ENSG00000182670       ENST00000476784 ENSE00003479693
6156  ENSG00000182670       ENST00000476784 ENSE00003492321
6157  ENSG00000182670       ENST00000476784 ENSE00003603698
6158  ENSG00000182670       ENST00000476784 ENSE00003599612
6159  ENSG00000182670       ENST00000476784 ENSE00003568218
6160  ENSG00000182670       ENST00000476784 ENSE00003653003
6161  ENSG00000182670       ENST00000476784 ENSE00003627839
6162  ENSG00000182670       ENST00000476784 ENSE00003496809
6163  ENSG00000182670       ENST00000476784 ENSE00003552885
6164  ENSG00000182670       ENST00000476784 ENSE00003485866
6165  ENSG00000182670       ENST00000476784 ENSE00003619915
6166  ENSG00000182670       ENST00000476784 ENSE00003618329
6167  ENSG00000182670       ENST00000476784 ENSE00003617054
6168  ENSG00000182670       ENST00000476784 ENSE00003591319
6169  ENSG00000182670       ENST00000476784 ENSE00001917971
6170  ENSG00000182670       ENST00000414818 ENSE00003473796
6171  ENSG00000182670       ENST00000414818 ENSE00003500879
6172  ENSG00000182670       ENST00000414818 ENSE00003524799
6173  ENSG00000182670       ENST00000414818 ENSE00003628441
6174  ENSG00000182670       ENST00000414818 ENSE00003791477
6175  ENSG00000182670       ENST00000414818 ENSE00001769719
6176  ENSG00000182670       ENST00000411496 ENSE00003530987
6177  ENSG00000182670       ENST00000411496 ENSE00003687576
6178  ENSG00000182670       ENST00000411496 ENSE00003536562
6179  ENSG00000182670       ENST00000411496 ENSE00003627255
6180  ENSG00000182670       ENST00000411496 ENSE00003661197
6181  ENSG00000182670       ENST00000411496 ENSE00001703974
6182  ENSG00000182670       ENST00000411496 ENSE00001656025
6183  ENSG00000182670       ENST00000411496 ENSE00001677346
6184  ENSG00000182670       ENST00000487711 ENSE00003674933
6185  ENSG00000182670       ENST00000487711 ENSE00003491750
6186  ENSG00000182670       ENST00000487711 ENSE00003515585
6187  ENSG00000182670       ENST00000487711 ENSE00003626252
6188  ENSG00000182670       ENST00000487711 ENSE00003559674
6189  ENSG00000182670       ENST00000487711 ENSE00003676478
6190  ENSG00000182670       ENST00000487711 ENSE00001907290
6191  ENSG00000182670       ENST00000487711 ENSE00001908317
6192  ENSG00000182670       ENST00000472398 ENSE00003491750
6193  ENSG00000182670       ENST00000472398 ENSE00003515585
6194  ENSG00000182670       ENST00000472398 ENSE00003626252
6195  ENSG00000182670       ENST00000472398 ENSE00003559674
6196  ENSG00000182670       ENST00000472398 ENSE00003479693
6197  ENSG00000182670       ENST00000472398 ENSE00003492321
6198  ENSG00000182670       ENST00000472398 ENSE00003603698
6199  ENSG00000182670       ENST00000472398 ENSE00003599612
6200  ENSG00000182670       ENST00000472398 ENSE00001821106
6201  ENSG00000182670       ENST00000472398 ENSE00001927285
6202  ENSG00000182670       ENST00000469939 ENSE00003515585
6203  ENSG00000182670       ENST00000469939 ENSE00003626252
6204  ENSG00000182670       ENST00000469939 ENSE00003559674
6205  ENSG00000182670       ENST00000469939 ENSE00003676478
6206  ENSG00000182670       ENST00000469939 ENSE00001851140
6207  ENSG00000182670       ENST00000428693 ENSE00003589692
6208  ENSG00000182670       ENST00000428693 ENSE00003590736
6209  ENSG00000182670       ENST00000428693 ENSE00003688182
6210  ENSG00000182670       ENST00000428693 ENSE00003507263
6211  ENSG00000182670       ENST00000428693 ENSE00003636513
6212  ENSG00000182670       ENST00000428693 ENSE00001768326
6213  ENSG00000182670       ENST00000488522 ENSE00003485866
6214  ENSG00000182670       ENST00000488522 ENSE00003619915
6215  ENSG00000182670       ENST00000488522 ENSE00001946751
6216  ENSG00000182670       ENST00000488522 ENSE00001835324
6217  ENSG00000182670       ENST00000488522 ENSE00001896588
6218  ENSG00000182670       ENST00000355666 ENSE00003656604
6219  ENSG00000182670       ENST00000355666 ENSE00003656402
6220  ENSG00000182670       ENST00000355666 ENSE00003612884
6221  ENSG00000182670       ENST00000355666 ENSE00003656477
6222  ENSG00000182670       ENST00000355666 ENSE00003675922
6223  ENSG00000182670       ENST00000355666 ENSE00003507071
6224  ENSG00000182670       ENST00000355666 ENSE00003482158
6225  ENSG00000182670       ENST00000355666 ENSE00003608941
6226  ENSG00000182670       ENST00000355666 ENSE00003565200
6227  ENSG00000182670       ENST00000355666 ENSE00003637056
6228  ENSG00000182670       ENST00000355666 ENSE00003465554
6229  ENSG00000182670       ENST00000355666 ENSE00003494877
6230  ENSG00000182670       ENST00000355666 ENSE00003476101
6231  ENSG00000182670       ENST00000355666 ENSE00003460189
6232  ENSG00000182670       ENST00000355666 ENSE00003511582
6233  ENSG00000182670       ENST00000355666 ENSE00003665746
6234  ENSG00000182670       ENST00000355666 ENSE00003690606
6235  ENSG00000182670       ENST00000355666 ENSE00003577978
6236  ENSG00000182670       ENST00000355666 ENSE00003628284
6237  ENSG00000182670       ENST00000355666 ENSE00003654536
6238  ENSG00000182670       ENST00000355666 ENSE00003473796
6239  ENSG00000182670       ENST00000355666 ENSE00003665897
6240  ENSG00000182670       ENST00000355666 ENSE00003500879
6241  ENSG00000182670       ENST00000355666 ENSE00003524799
6242  ENSG00000182670       ENST00000355666 ENSE00003628441
6243  ENSG00000182670       ENST00000355666 ENSE00003791477
6244  ENSG00000182670       ENST00000355666 ENSE00003530987
6245  ENSG00000182670       ENST00000355666 ENSE00003687576
6246  ENSG00000182670       ENST00000355666 ENSE00003536562
6247  ENSG00000182670       ENST00000355666 ENSE00003627255
6248  ENSG00000182670       ENST00000355666 ENSE00003661197
6249  ENSG00000182670       ENST00000355666 ENSE00003636017
6250  ENSG00000182670       ENST00000355666 ENSE00003521313
6251  ENSG00000182670       ENST00000355666 ENSE00003643560
6252  ENSG00000182670       ENST00000355666 ENSE00003661677
6253  ENSG00000182670       ENST00000355666 ENSE00003479315
6254  ENSG00000182670       ENST00000355666 ENSE00003560308
6255  ENSG00000182670       ENST00000355666 ENSE00003561232
6256  ENSG00000182670       ENST00000355666 ENSE00003589692
6257  ENSG00000182670       ENST00000355666 ENSE00003492781
6258  ENSG00000182670       ENST00000355666 ENSE00003590736
6259  ENSG00000182670       ENST00000355666 ENSE00003688182
6260  ENSG00000182670       ENST00000355666 ENSE00003507263
6261  ENSG00000182670       ENST00000355666 ENSE00003636513
6262  ENSG00000182670       ENST00000355666 ENSE00001420440
6263  ENSG00000182670       ENST00000355666 ENSE00001367371
6264  ENSG00000279998       ENST00000623678 ENSE00003757566
6265  ENSG00000279998       ENST00000623678 ENSE00003760176
6266  ENSG00000279998       ENST00000623678 ENSE00003757437
6267  ENSG00000231125       ENST00000457162 ENSE00001599010
6268  ENSG00000231125       ENST00000457162 ENSE00001613545
6269  ENSG00000156261       ENST00000432178 ENSE00001607255
6270  ENSG00000156261       ENST00000432178 ENSE00003525940
6271  ENSG00000156261       ENST00000432178 ENSE00001754281
6272  ENSG00000156261       ENST00000432178 ENSE00001779330
6273  ENSG00000156261       ENST00000496121 ENSE00001904305
6274  ENSG00000156261       ENST00000496121 ENSE00003657826
6275  ENSG00000156261       ENST00000496121 ENSE00003590459
6276  ENSG00000156261       ENST00000496121 ENSE00003494714
6277  ENSG00000156261       ENST00000496121 ENSE00003648424
6278  ENSG00000156261       ENST00000470450 ENSE00003657826
6279  ENSG00000156261       ENST00000470450 ENSE00003590459
6280  ENSG00000156261       ENST00000470450 ENSE00003494714
6281  ENSG00000156261       ENST00000470450 ENSE00003648424
6282  ENSG00000156261       ENST00000470450 ENSE00001910427
6283  ENSG00000156261       ENST00000470450 ENSE00003606420
6284  ENSG00000156261       ENST00000470450 ENSE00003601749
6285  ENSG00000156261       ENST00000470450 ENSE00003514393
6286  ENSG00000156261       ENST00000470450 ENSE00003625237
6287  ENSG00000156261       ENST00000470450 ENSE00003569164
6288  ENSG00000156261       ENST00000470450 ENSE00003663644
6289  ENSG00000156261       ENST00000470450 ENSE00003590042
6290  ENSG00000156261       ENST00000470450 ENSE00003693955
6291  ENSG00000156261       ENST00000470450 ENSE00003463549
6292  ENSG00000156261       ENST00000470450 ENSE00003562158
6293  ENSG00000156261       ENST00000286788 ENSE00003525940
6294  ENSG00000156261       ENST00000286788 ENSE00001504993
6295  ENSG00000156261       ENST00000286788 ENSE00003645550
6296  ENSG00000156261       ENST00000286788 ENSE00003598993
6297  ENSG00000156261       ENST00000286788 ENSE00003610619
6298  ENSG00000156261       ENST00000286788 ENSE00003519479
6299  ENSG00000156261       ENST00000286788 ENSE00003487814
6300  ENSG00000156261       ENST00000286788 ENSE00003573390
6301  ENSG00000156261       ENST00000286788 ENSE00003511485
6302  ENSG00000156261       ENST00000286788 ENSE00003605829
6303  ENSG00000156261       ENST00000286788 ENSE00003689478
6304  ENSG00000156261       ENST00000286788 ENSE00003515090
6305  ENSG00000156261       ENST00000286788 ENSE00003537960
6306  ENSG00000156261       ENST00000286788 ENSE00003539207
6307  ENSG00000156261       ENST00000286788 ENSE00003573058
6308  ENSG00000156261       ENST00000626972 ENSE00003525940
6309  ENSG00000156261       ENST00000626972 ENSE00003645550
6310  ENSG00000156261       ENST00000626972 ENSE00003598993
6311  ENSG00000156261       ENST00000626972 ENSE00003610619
6312  ENSG00000156261       ENST00000626972 ENSE00003519479
6313  ENSG00000156261       ENST00000626972 ENSE00003487814
6314  ENSG00000156261       ENST00000626972 ENSE00003573390
6315  ENSG00000156261       ENST00000626972 ENSE00003511485
6316  ENSG00000156261       ENST00000626972 ENSE00003605829
6317  ENSG00000156261       ENST00000626972 ENSE00003689478
6318  ENSG00000156261       ENST00000626972 ENSE00003515090
6319  ENSG00000156261       ENST00000626972 ENSE00003537960
6320  ENSG00000156261       ENST00000626972 ENSE00003539207
6321  ENSG00000156261       ENST00000626972 ENSE00003770661
6322  ENSG00000156261       ENST00000626972 ENSE00003765957
6323  ENSG00000156261       ENST00000626972 ENSE00003774417
6324  ENSG00000156261       ENST00000480359 ENSE00003463549
6325  ENSG00000156261       ENST00000480359 ENSE00003562158
6326  ENSG00000156261       ENST00000480359 ENSE00001930283
6327  ENSG00000156261       ENST00000475205 ENSE00003693955
6328  ENSG00000156261       ENST00000475205 ENSE00001955002
6329  ENSG00000156261       ENST00000475205 ENSE00001897678
6330  ENSG00000156261       ENST00000431234 ENSE00003645550
6331  ENSG00000156261       ENST00000431234 ENSE00003598993
6332  ENSG00000156261       ENST00000431234 ENSE00003610619
6333  ENSG00000156261       ENST00000431234 ENSE00003519479
6334  ENSG00000156261       ENST00000431234 ENSE00003487814
6335  ENSG00000156261       ENST00000431234 ENSE00003511485
6336  ENSG00000156261       ENST00000431234 ENSE00003605829
6337  ENSG00000156261       ENST00000431234 ENSE00003689478
6338  ENSG00000156261       ENST00000431234 ENSE00001680303
6339  ENSG00000156261       ENST00000431234 ENSE00001608754
6340  ENSG00000156261       ENST00000484403 ENSE00003606420
6341  ENSG00000156261       ENST00000484403 ENSE00003601749
6342  ENSG00000156261       ENST00000484403 ENSE00003514393
6343  ENSG00000156261       ENST00000484403 ENSE00001137318
6344  ENSG00000156261       ENST00000484403 ENSE00001858582
6345  ENSG00000156261       ENST00000484403 ENSE00001923756
6346  ENSG00000156261       ENST00000481059 ENSE00003606420
6347  ENSG00000156261       ENST00000481059 ENSE00003601749
6348  ENSG00000156261       ENST00000481059 ENSE00003514393
6349  ENSG00000156261       ENST00000481059 ENSE00003625237
6350  ENSG00000156261       ENST00000481059 ENSE00003569164
6351  ENSG00000156261       ENST00000481059 ENSE00001837955
6352  ENSG00000156261       ENST00000481059 ENSE00001890619
6353  ENSG00000156261       ENST00000494296 ENSE00003606420
6354  ENSG00000156261       ENST00000494296 ENSE00003601749
6355  ENSG00000156261       ENST00000494296 ENSE00001949140
6356  ENSG00000156261       ENST00000494296 ENSE00001850453
6357  ENSG00000156261       ENST00000540844 ENSE00003525940
6358  ENSG00000156261       ENST00000540844 ENSE00003610619
6359  ENSG00000156261       ENST00000540844 ENSE00003519479
6360  ENSG00000156261       ENST00000540844 ENSE00003487814
6361  ENSG00000156261       ENST00000540844 ENSE00003573390
6362  ENSG00000156261       ENST00000540844 ENSE00003511485
6363  ENSG00000156261       ENST00000540844 ENSE00003605829
6364  ENSG00000156261       ENST00000540844 ENSE00003689478
6365  ENSG00000156261       ENST00000540844 ENSE00003515090
6366  ENSG00000156261       ENST00000540844 ENSE00003537960
6367  ENSG00000156261       ENST00000540844 ENSE00003539207
6368  ENSG00000156261       ENST00000540844 ENSE00002308759
6369  ENSG00000156261       ENST00000540844 ENSE00003644939
6370  ENSG00000156261       ENST00000540844 ENSE00002272827
6371  ENSG00000278955       ENST00000624937 ENSE00003759173
6372  ENSG00000278955       ENST00000624937 ENSE00003758401
6373  ENSG00000278955       ENST00000624937 ENSE00003759923
6374  ENSG00000226501       ENST00000451645 ENSE00001715177
6375  ENSG00000142166       ENST00000493503 ENSE00001855615
6376  ENSG00000142166       ENST00000493503 ENSE00001913247
6377  ENSG00000142166       ENST00000270139 ENSE00001958164
6378  ENSG00000142166       ENST00000270139 ENSE00003606171
6379  ENSG00000142166       ENST00000270139 ENSE00003575721
6380  ENSG00000142166       ENST00000270139 ENSE00000952626
6381  ENSG00000142166       ENST00000270139 ENSE00000952627
6382  ENSG00000142166       ENST00000270139 ENSE00000952628
6383  ENSG00000142166       ENST00000270139 ENSE00000952629
6384  ENSG00000142166       ENST00000270139 ENSE00000952630
6385  ENSG00000142166       ENST00000270139 ENSE00001043348
6386  ENSG00000142166       ENST00000270139 ENSE00000952632
6387  ENSG00000142166       ENST00000270139 ENSE00001842850
6388  ENSG00000142166       ENST00000442071 ENSE00003606171
6389  ENSG00000142166       ENST00000442071 ENSE00003575721
6390  ENSG00000142166       ENST00000442071 ENSE00001794726
6391  ENSG00000142166       ENST00000442071 ENSE00001656702
6392  ENSG00000280172       ENST00000623131 ENSE00003755973
6393  ENSG00000279751       ENST00000623720 ENSE00003756925
6394  ENSG00000279751       ENST00000623720 ENSE00003756884
6395  ENSG00000279313       ENST00000623347 ENSE00003756510
6396  ENSG00000279313       ENST00000623347 ENSE00003757157
6397  ENSG00000279313       ENST00000623347 ENSE00003755088
6398  ENSG00000280018       ENST00000623165 ENSE00003755095
6399  ENSG00000280018       ENST00000623165 ENSE00003756164
6400  ENSG00000280018       ENST00000623165 ENSE00003755730
6401  ENSG00000280018       ENST00000623165 ENSE00003756792
6402  ENSG00000280018       ENST00000623165 ENSE00003759370
6403  ENSG00000280018       ENST00000624519 ENSE00003756164
6404  ENSG00000280018       ENST00000624519 ENSE00003755773
6405  ENSG00000280018       ENST00000624519 ENSE00003756359
6406  ENSG00000280018       ENST00000624728 ENSE00003757442
6407  ENSG00000280018       ENST00000624728 ENSE00003757990
6408  ENSG00000280018       ENST00000624728 ENSE00003758270
6409  ENSG00000157578       ENST00000288350 ENSE00001485938
6410  ENSG00000157578       ENST00000288350 ENSE00001380142
6411  ENSG00000157578       ENST00000288350 ENSE00001391688
6412  ENSG00000157578       ENST00000288350 ENSE00001367319
6413  ENSG00000157578       ENST00000288350 ENSE00003787481
6414  ENSG00000157578       ENST00000288350 ENSE00001033593
6415  ENSG00000157578       ENST00000288350 ENSE00003503789
6416  ENSG00000157578       ENST00000288350 ENSE00003491574
6417  ENSG00000157578       ENST00000288350 ENSE00003604959
6418  ENSG00000157578       ENST00000288350 ENSE00003608880
6419  ENSG00000157578       ENST00000288350 ENSE00001033603
6420  ENSG00000157578       ENST00000358268 ENSE00001391688
6421  ENSG00000157578       ENST00000358268 ENSE00001367319
6422  ENSG00000157578       ENST00000358268 ENSE00003787481
6423  ENSG00000157578       ENST00000358268 ENSE00001033593
6424  ENSG00000157578       ENST00000358268 ENSE00003503789
6425  ENSG00000157578       ENST00000358268 ENSE00003491574
6426  ENSG00000157578       ENST00000358268 ENSE00003604959
6427  ENSG00000157578       ENST00000358268 ENSE00003608880
6428  ENSG00000157578       ENST00000358268 ENSE00001402234
6429  ENSG00000157578       ENST00000358268 ENSE00001485810
6430  ENSG00000157578       ENST00000495240 ENSE00001848538
6431  ENSG00000157578       ENST00000495240 ENSE00003563475
6432  ENSG00000157578       ENST00000495240 ENSE00003610886
6433  ENSG00000157578       ENST00000495240 ENSE00001893402
6434  ENSG00000157578       ENST00000484878 ENSE00001380142
6435  ENSG00000157578       ENST00000484878 ENSE00001391688
6436  ENSG00000157578       ENST00000484878 ENSE00001613374
6437  ENSG00000157578       ENST00000484878 ENSE00001625544
6438  ENSG00000157578       ENST00000484878 ENSE00001848196
6439  ENSG00000157578       ENST00000484878 ENSE00001877157
6440  ENSG00000157578       ENST00000484878 ENSE00003595828
6441  ENSG00000157578       ENST00000484878 ENSE00003539949
6442  ENSG00000157578       ENST00000485895 ENSE00001485938
6443  ENSG00000157578       ENST00000485895 ENSE00001391688
6444  ENSG00000157578       ENST00000485895 ENSE00001367319
6445  ENSG00000157578       ENST00000485895 ENSE00003787481
6446  ENSG00000157578       ENST00000485895 ENSE00003697933
6447  ENSG00000157578       ENST00000491625 ENSE00001380142
6448  ENSG00000157578       ENST00000491625 ENSE00001367319
6449  ENSG00000157578       ENST00000491625 ENSE00001937581
6450  ENSG00000157578       ENST00000491625 ENSE00001928148
6451  ENSG00000157578       ENST00000459939 ENSE00001391688
6452  ENSG00000157578       ENST00000459939 ENSE00001367319
6453  ENSG00000157578       ENST00000459939 ENSE00001810020
6454  ENSG00000157578       ENST00000459939 ENSE00001932346
6455  ENSG00000157578       ENST00000490184 ENSE00001380142
6456  ENSG00000157578       ENST00000490184 ENSE00001391688
6457  ENSG00000157578       ENST00000490184 ENSE00001367319
6458  ENSG00000157578       ENST00000490184 ENSE00001822113
6459  ENSG00000157578       ENST00000490184 ENSE00001791403
6460  ENSG00000157578       ENST00000490184 ENSE00001864188
6461  ENSG00000157578       ENST00000490184 ENSE00001864965
6462  ENSG00000157578       ENST00000418018 ENSE00001380142
6463  ENSG00000157578       ENST00000418018 ENSE00001367319
6464  ENSG00000157578       ENST00000418018 ENSE00003787481
6465  ENSG00000157578       ENST00000418018 ENSE00001663615
6466  ENSG00000157578       ENST00000418018 ENSE00001698170
6467  ENSG00000157578       ENST00000418018 ENSE00001736929
6468  ENSG00000157578       ENST00000466954 ENSE00001380142
6469  ENSG00000157578       ENST00000466954 ENSE00001402234
6470  ENSG00000157578       ENST00000466954 ENSE00001698170
6471  ENSG00000157578       ENST00000466954 ENSE00001732749
6472  ENSG00000157578       ENST00000466954 ENSE00001834842
6473  ENSG00000157578       ENST00000448288 ENSE00001391688
6474  ENSG00000157578       ENST00000448288 ENSE00003787481
6475  ENSG00000157578       ENST00000448288 ENSE00001732749
6476  ENSG00000157578       ENST00000448288 ENSE00001643940
6477  ENSG00000157578       ENST00000434281 ENSE00001380142
6478  ENSG00000157578       ENST00000434281 ENSE00001367319
6479  ENSG00000157578       ENST00000434281 ENSE00001768871
6480  ENSG00000157578       ENST00000434281 ENSE00001649696
6481  ENSG00000157578       ENST00000438404 ENSE00001380142
6482  ENSG00000157578       ENST00000438404 ENSE00001367319
6483  ENSG00000157578       ENST00000438404 ENSE00001791403
6484  ENSG00000157578       ENST00000438404 ENSE00001650724
6485  ENSG00000157578       ENST00000438404 ENSE00001663055
6486  ENSG00000157578       ENST00000438404 ENSE00001688947
6487  ENSG00000157578       ENST00000411566 ENSE00001391688
6488  ENSG00000157578       ENST00000411566 ENSE00001367319
6489  ENSG00000157578       ENST00000411566 ENSE00001402234
6490  ENSG00000157578       ENST00000411566 ENSE00001684484
6491  ENSG00000157578       ENST00000468009 ENSE00001367319
6492  ENSG00000157578       ENST00000468009 ENSE00001954372
6493  ENSG00000157578       ENST00000468009 ENSE00003182186
6494  ENSG00000157578       ENST00000415863 ENSE00001380142
6495  ENSG00000157578       ENST00000415863 ENSE00001391688
6496  ENSG00000157578       ENST00000415863 ENSE00001367319
6497  ENSG00000157578       ENST00000415863 ENSE00001601398
6498  ENSG00000157578       ENST00000415863 ENSE00001655912
6499  ENSG00000157578       ENST00000415863 ENSE00001641048
6500  ENSG00000157578       ENST00000426783 ENSE00001391688
6501  ENSG00000157578       ENST00000426783 ENSE00001367319
6502  ENSG00000157578       ENST00000426783 ENSE00001625544
6503  ENSG00000157578       ENST00000426783 ENSE00001601398
6504  ENSG00000157578       ENST00000426783 ENSE00001655912
6505  ENSG00000157578       ENST00000426783 ENSE00001693947
6506  ENSG00000157578       ENST00000456017 ENSE00001380142
6507  ENSG00000157578       ENST00000456017 ENSE00001698170
6508  ENSG00000157578       ENST00000456017 ENSE00001732749
6509  ENSG00000157578       ENST00000456017 ENSE00001796700
6510  ENSG00000157578       ENST00000456017 ENSE00001645080
6511  ENSG00000157578       ENST00000451131 ENSE00001380142
6512  ENSG00000157578       ENST00000451131 ENSE00001391688
6513  ENSG00000157578       ENST00000451131 ENSE00001613374
6514  ENSG00000157578       ENST00000451131 ENSE00001791403
6515  ENSG00000157578       ENST00000451131 ENSE00001732749
6516  ENSG00000157578       ENST00000451131 ENSE00001605897
6517  ENSG00000157578       ENST00000480612 ENSE00001923238
6518  ENSG00000157578       ENST00000480612 ENSE00001863071
6519  ENSG00000157578       ENST00000380671 ENSE00001033593
6520  ENSG00000157578       ENST00000380671 ENSE00003503789
6521  ENSG00000157578       ENST00000380671 ENSE00003491574
6522  ENSG00000157578       ENST00000380671 ENSE00003604959
6523  ENSG00000157578       ENST00000380671 ENSE00003608880
6524  ENSG00000157578       ENST00000380671 ENSE00001033603
6525  ENSG00000157578       ENST00000380671 ENSE00003733938
6526  ENSG00000279477       ENST00000623518 ENSE00003757180
6527  ENSG00000279477       ENST00000623518 ENSE00003760093
6528  ENSG00000279477       ENST00000623518 ENSE00003760314
6529  ENSG00000279477       ENST00000623518 ENSE00003756126
6530  ENSG00000279477       ENST00000623518 ENSE00003758804
6531  ENSG00000279477       ENST00000623518 ENSE00003759143
6532  ENSG00000279477       ENST00000623518 ENSE00003760299
6533  ENSG00000279477       ENST00000623518 ENSE00003754951
6534  ENSG00000279477       ENST00000623518 ENSE00003758686
6535  ENSG00000223799       ENST00000411998 ENSE00001712553
6536  ENSG00000223799       ENST00000411998 ENSE00001682874
6537  ENSG00000156256       ENST00000485067 ENSE00003506815
6538  ENSG00000156256       ENST00000485067 ENSE00001819682
6539  ENSG00000156256       ENST00000399973 ENSE00003626880
6540  ENSG00000156256       ENST00000399973 ENSE00003638792
6541  ENSG00000156256       ENST00000399973 ENSE00001541048
6542  ENSG00000156256       ENST00000399973 ENSE00001541047
6543  ENSG00000156256       ENST00000399973 ENSE00001541046
6544  ENSG00000156256       ENST00000399976 ENSE00001143616
6545  ENSG00000156256       ENST00000399976 ENSE00003626880
6546  ENSG00000156256       ENST00000399976 ENSE00003638792
6547  ENSG00000156256       ENST00000399976 ENSE00003603870
6548  ENSG00000156256       ENST00000399976 ENSE00003496277
6549  ENSG00000156256       ENST00000399976 ENSE00003525236
6550  ENSG00000156256       ENST00000399976 ENSE00003459896
6551  ENSG00000156256       ENST00000399976 ENSE00003551291
6552  ENSG00000156256       ENST00000399976 ENSE00003551154
6553  ENSG00000156256       ENST00000399976 ENSE00003463886
6554  ENSG00000156256       ENST00000399976 ENSE00001025441
6555  ENSG00000156256       ENST00000399976 ENSE00001025450
6556  ENSG00000156256       ENST00000399976 ENSE00003458546
6557  ENSG00000156256       ENST00000399976 ENSE00003539453
6558  ENSG00000156256       ENST00000399976 ENSE00003514567
6559  ENSG00000156256       ENST00000399976 ENSE00003460845
6560  ENSG00000156256       ENST00000399976 ENSE00003535264
6561  ENSG00000156256       ENST00000399976 ENSE00003520051
6562  ENSG00000156256       ENST00000474835 ENSE00001815863
6563  ENSG00000156256       ENST00000474835 ENSE00003674321
6564  ENSG00000156256       ENST00000474835 ENSE00003515742
6565  ENSG00000156256       ENST00000474835 ENSE00003658533
6566  ENSG00000156256       ENST00000474835 ENSE00003480929
6567  ENSG00000156256       ENST00000474835 ENSE00003567905
6568  ENSG00000156256       ENST00000474835 ENSE00003642376
6569  ENSG00000156256       ENST00000474835 ENSE00003585255
6570  ENSG00000156256       ENST00000474835 ENSE00003547460
6571  ENSG00000156256       ENST00000474835 ENSE00003646567
6572  ENSG00000156256       ENST00000474835 ENSE00003550367
6573  ENSG00000156256       ENST00000474835 ENSE00001824330
6574  ENSG00000156256       ENST00000474835 ENSE00003549861
6575  ENSG00000156256       ENST00000474835 ENSE00003670139
6576  ENSG00000156256       ENST00000474835 ENSE00003674400
6577  ENSG00000156256       ENST00000474835 ENSE00003474183
6578  ENSG00000156256       ENST00000474835 ENSE00003506815
6579  ENSG00000156256       ENST00000334352 ENSE00003626880
6580  ENSG00000156256       ENST00000334352 ENSE00003638792
6581  ENSG00000156256       ENST00000334352 ENSE00003603870
6582  ENSG00000156256       ENST00000334352 ENSE00003496277
6583  ENSG00000156256       ENST00000334352 ENSE00003525236
6584  ENSG00000156256       ENST00000334352 ENSE00003459896
6585  ENSG00000156256       ENST00000334352 ENSE00003551291
6586  ENSG00000156256       ENST00000334352 ENSE00003551154
6587  ENSG00000156256       ENST00000334352 ENSE00003463886
6588  ENSG00000156256       ENST00000334352 ENSE00001025441
6589  ENSG00000156256       ENST00000334352 ENSE00001025450
6590  ENSG00000156256       ENST00000334352 ENSE00003458546
6591  ENSG00000156256       ENST00000334352 ENSE00003539453
6592  ENSG00000156256       ENST00000334352 ENSE00003514567
6593  ENSG00000156256       ENST00000334352 ENSE00003460845
6594  ENSG00000156256       ENST00000334352 ENSE00003535264
6595  ENSG00000156256       ENST00000334352 ENSE00003520051
6596  ENSG00000156256       ENST00000334352 ENSE00001815863
6597  ENSG00000156256       ENST00000334352 ENSE00001493612
6598  ENSG00000156256       ENST00000399975 ENSE00001143616
6599  ENSG00000156256       ENST00000399975 ENSE00003626880
6600  ENSG00000156256       ENST00000399975 ENSE00003638792
6601  ENSG00000156256       ENST00000399975 ENSE00003603870
6602  ENSG00000156256       ENST00000399975 ENSE00003496277
6603  ENSG00000156256       ENST00000399975 ENSE00001541058
6604  ENSG00000156256       ENST00000399975 ENSE00003525236
6605  ENSG00000156256       ENST00000399975 ENSE00003459896
6606  ENSG00000156256       ENST00000399975 ENSE00003551291
6607  ENSG00000156256       ENST00000399975 ENSE00003551154
6608  ENSG00000156256       ENST00000399975 ENSE00003463886
6609  ENSG00000156256       ENST00000399975 ENSE00001025441
6610  ENSG00000156256       ENST00000399975 ENSE00001025450
6611  ENSG00000156256       ENST00000399975 ENSE00003458546
6612  ENSG00000156256       ENST00000399975 ENSE00003539453
6613  ENSG00000156256       ENST00000399975 ENSE00003514567
6614  ENSG00000156256       ENST00000399975 ENSE00003460845
6615  ENSG00000156256       ENST00000399975 ENSE00003535264
6616  ENSG00000205929       ENST00000490358 ENSE00001885790
6617  ENSG00000205929       ENST00000490358 ENSE00003634340
6618  ENSG00000205929       ENST00000490358 ENSE00001958608
6619  ENSG00000205929       ENST00000487113 ENSE00001829713
6620  ENSG00000205929       ENST00000487113 ENSE00001817582
6621  ENSG00000205929       ENST00000382373 ENSE00001491885
6622  ENSG00000205929       ENST00000382373 ENSE00003460207
6623  ENSG00000205929       ENST00000382373 ENSE00001915548
6624  ENSG00000205929       ENST00000479548 ENSE00003634340
6625  ENSG00000205929       ENST00000479548 ENSE00001915744
6626  ENSG00000205929       ENST00000479548 ENSE00001817822
6627  ENSG00000205929       ENST00000479548 ENSE00001491871
6628  ENSG00000223741       ENST00000433951 ENSE00001724634
6629  ENSG00000223741       ENST00000433951 ENSE00001794887
6630  ENSG00000219368       ENST00000406845 ENSE00001548463
6631  ENSG00000223488       ENST00000379571 ENSE00001553831
6632  ENSG00000238265       ENST00000419069 ENSE00001715952
6633  ENSG00000238265       ENST00000419069 ENSE00001759143
6634  ENSG00000238265       ENST00000419069 ENSE00001735958
6635  ENSG00000241945       ENST00000291576 ENSE00001367795
6636  ENSG00000241945       ENST00000291576 ENSE00001177844
6637  ENSG00000241945       ENST00000291576 ENSE00001050676
6638  ENSG00000241945       ENST00000291576 ENSE00001050672
6639  ENSG00000241945       ENST00000291576 ENSE00003579779
6640  ENSG00000241945       ENST00000291576 ENSE00003682861
6641  ENSG00000241945       ENST00000291576 ENSE00003660102
6642  ENSG00000241945       ENST00000291576 ENSE00001050670
6643  ENSG00000241945       ENST00000291576 ENSE00001050681
6644  ENSG00000241945       ENST00000291576 ENSE00001050669
6645  ENSG00000241945       ENST00000291576 ENSE00003612411
6646  ENSG00000241945       ENST00000291576 ENSE00003671210
6647  ENSG00000241945       ENST00000291576 ENSE00001050666
6648  ENSG00000241945       ENST00000291576 ENSE00001050680
6649  ENSG00000241945       ENST00000291576 ENSE00001050675
6650  ENSG00000241945       ENST00000291576 ENSE00003652919
6651  ENSG00000241945       ENST00000291576 ENSE00003469591
6652  ENSG00000241945       ENST00000291576 ENSE00003545412
6653  ENSG00000241945       ENST00000291576 ENSE00003592879
6654  ENSG00000241945       ENST00000291576 ENSE00003554676
6655  ENSG00000241945       ENST00000291576 ENSE00001050684
6656  ENSG00000241945       ENST00000456705 ENSE00001177844
6657  ENSG00000241945       ENST00000456705 ENSE00001050676
6658  ENSG00000241945       ENST00000456705 ENSE00001605720
6659  ENSG00000241945       ENST00000456705 ENSE00003646685
6660  ENSG00000241945       ENST00000456705 ENSE00003465236
6661  ENSG00000241945       ENST00000456705 ENSE00001738496
6662  ENSG00000241945       ENST00000486126 ENSE00001843881
6663  ENSG00000241945       ENST00000486126 ENSE00003485231
6664  ENSG00000241945       ENST00000486126 ENSE00003657793
6665  ENSG00000241945       ENST00000486126 ENSE00001907344
6666  ENSG00000241945       ENST00000471490 ENSE00001914183
6667  ENSG00000241945       ENST00000471490 ENSE00003620555
6668  ENSG00000241945       ENST00000471490 ENSE00003495215
6669  ENSG00000241945       ENST00000471490 ENSE00001899443
6670  ENSG00000241945       ENST00000471490 ENSE00001888031
6671  ENSG00000241945       ENST00000471490 ENSE00001908491
6672  ENSG00000241945       ENST00000494310 ENSE00003693408
6673  ENSG00000241945       ENST00000494310 ENSE00003498598
6674  ENSG00000241945       ENST00000494310 ENSE00001911388
6675  ENSG00000241945       ENST00000494310 ENSE00003535688
6676  ENSG00000241945       ENST00000494310 ENSE00003549438
6677  ENSG00000241945       ENST00000494310 ENSE00001936802
6678  ENSG00000241945       ENST00000476948 ENSE00003549438
6679  ENSG00000241945       ENST00000476948 ENSE00001937792
6680  ENSG00000241945       ENST00000476948 ENSE00001936461
6681  ENSG00000229289       ENST00000424219 ENSE00001764290
6682  ENSG00000229289       ENST00000424219 ENSE00001666620
6683  ENSG00000226818       ENST00000413933 ENSE00001605194
6684  ENSG00000142188       ENST00000484377 ENSE00001882914
6685  ENSG00000142188       ENST00000484377 ENSE00001759214
6686  ENSG00000142188       ENST00000484377 ENSE00001886293
6687  ENSG00000142188       ENST00000484377 ENSE00001780824
6688  ENSG00000142188       ENST00000420455 ENSE00001759214
6689  ENSG00000142188       ENST00000420455 ENSE00001780824
6690  ENSG00000142188       ENST00000420455 ENSE00001710937
6691  ENSG00000142188       ENST00000420455 ENSE00002433737
6692  ENSG00000142188       ENST00000420455 ENSE00002432940
6693  ENSG00000142188       ENST00000420455 ENSE00002464649
6694  ENSG00000142188       ENST00000420455 ENSE00003500050
6695  ENSG00000142188       ENST00000420455 ENSE00003620269
6696  ENSG00000142188       ENST00000420455 ENSE00001728160
6697  ENSG00000142188       ENST00000470682 ENSE00001759214
6698  ENSG00000142188       ENST00000470682 ENSE00001949319
6699  ENSG00000142188       ENST00000470682 ENSE00001931031
6700  ENSG00000142188       ENST00000470682 ENSE00002223591
6701  ENSG00000142188       ENST00000468874 ENSE00001759214
6702  ENSG00000142188       ENST00000468874 ENSE00002223653
6703  ENSG00000142188       ENST00000468874 ENSE00002480117
6704  ENSG00000142188       ENST00000468874 ENSE00001860876
6705  ENSG00000142188       ENST00000542230 ENSE00002433737
6706  ENSG00000142188       ENST00000542230 ENSE00002432940
6707  ENSG00000142188       ENST00000542230 ENSE00002464649
6708  ENSG00000142188       ENST00000542230 ENSE00003500050
6709  ENSG00000142188       ENST00000542230 ENSE00003620269
6710  ENSG00000142188       ENST00000542230 ENSE00001874127
6711  ENSG00000142188       ENST00000542230 ENSE00001490415
6712  ENSG00000142188       ENST00000441128 ENSE00002433737
6713  ENSG00000142188       ENST00000441128 ENSE00003681159
6714  ENSG00000142188       ENST00000441128 ENSE00003527592
6715  ENSG00000142188       ENST00000441128 ENSE00001796225
6716  ENSG00000142188       ENST00000442441 ENSE00002433737
6717  ENSG00000142188       ENST00000442441 ENSE00002432940
6718  ENSG00000142188       ENST00000442441 ENSE00002464649
6719  ENSG00000142188       ENST00000442441 ENSE00003500050
6720  ENSG00000142188       ENST00000442441 ENSE00003527592
6721  ENSG00000142188       ENST00000442441 ENSE00001661237
6722  ENSG00000142188       ENST00000442441 ENSE00001630493
6723  ENSG00000142188       ENST00000442441 ENSE00001733828
6724  ENSG00000142188       ENST00000474272 ENSE00001845831
6725  ENSG00000142188       ENST00000474272 ENSE00001868512
6726  ENSG00000142188       ENST00000432504 ENSE00002433737
6727  ENSG00000142188       ENST00000432504 ENSE00002432940
6728  ENSG00000142188       ENST00000432504 ENSE00001762249
6729  ENSG00000142188       ENST00000432504 ENSE00001725907
6730  ENSG00000142188       ENST00000432504 ENSE00001702748
6731  ENSG00000142188       ENST00000459909 ENSE00001921393
6732  ENSG00000142188       ENST00000459909 ENSE00001931991
6733  ENSG00000184221       ENST00000382348 ENSE00001491811
6734  ENSG00000184221       ENST00000426947 ENSE00001737506
6735  ENSG00000184221       ENST00000426947 ENSE00001636163
6736  ENSG00000184221       ENST00000498799 ENSE00001636163
6737  ENSG00000184221       ENST00000498799 ENSE00001819077
6738  ENSG00000232360       ENST00000427911 ENSE00001675851
6739  ENSG00000232360       ENST00000427911 ENSE00001597049
6740  ENSG00000279709       ENST00000623377 ENSE00003760287
6741  ENSG00000279709       ENST00000623377 ENSE00003755605
6742  ENSG00000279709       ENST00000623377 ENSE00003756426
6743  ENSG00000279709       ENST00000623377 ENSE00003755878
6744  ENSG00000279709       ENST00000623377 ENSE00003755120
6745  ENSG00000279709       ENST00000623377 ENSE00003758733
6746  ENSG00000159267       ENST00000336648 ENSE00001401604
6747  ENSG00000159267       ENST00000336648 ENSE00001282167
6748  ENSG00000159267       ENST00000336648 ENSE00001402516
6749  ENSG00000159267       ENST00000336648 ENSE00001282204
6750  ENSG00000159267       ENST00000336648 ENSE00001044408
6751  ENSG00000159267       ENST00000336648 ENSE00001044404
6752  ENSG00000159267       ENST00000336648 ENSE00001282176
6753  ENSG00000159267       ENST00000336648 ENSE00001108868
6754  ENSG00000159267       ENST00000336648 ENSE00001282128
6755  ENSG00000159267       ENST00000336648 ENSE00001108867
6756  ENSG00000159267       ENST00000336648 ENSE00001108871
6757  ENSG00000159267       ENST00000336648 ENSE00003709295
6758  ENSG00000159267       ENST00000399120 ENSE00001282167
6759  ENSG00000159267       ENST00000399120 ENSE00001282204
6760  ENSG00000159267       ENST00000399120 ENSE00001044408
6761  ENSG00000159267       ENST00000399120 ENSE00001044404
6762  ENSG00000159267       ENST00000399120 ENSE00001282176
6763  ENSG00000159267       ENST00000399120 ENSE00001108868
6764  ENSG00000159267       ENST00000399120 ENSE00001282128
6765  ENSG00000159267       ENST00000399120 ENSE00001108867
6766  ENSG00000159267       ENST00000399120 ENSE00001108871
6767  ENSG00000159267       ENST00000399120 ENSE00001536491
6768  ENSG00000159267       ENST00000399120 ENSE00001536490
6769  ENSG00000159267       ENST00000399120 ENSE00001536488
6770  ENSG00000159267       ENST00000482273 ENSE00001847098
6771  ENSG00000159267       ENST00000482273 ENSE00001897220
6772  ENSG00000159267       ENST00000448340 ENSE00001282167
6773  ENSG00000159267       ENST00000448340 ENSE00001282204
6774  ENSG00000159267       ENST00000448340 ENSE00001644544
6775  ENSG00000159267       ENST00000448340 ENSE00001685793
6776  ENSG00000159267       ENST00000419461 ENSE00001605772
6777  ENSG00000159267       ENST00000419461 ENSE00003793408
6778  ENSG00000159267       ENST00000419461 ENSE00003800504
6779  ENSG00000159267       ENST00000419461 ENSE00001630049
6780  ENSG00000159267       ENST00000427746 ENSE00001282167
6781  ENSG00000159267       ENST00000427746 ENSE00001282204
6782  ENSG00000159267       ENST00000427746 ENSE00001744646
6783  ENSG00000159267       ENST00000427746 ENSE00002506497
6784  ENSG00000159267       ENST00000427746 ENSE00001703983
6785  ENSG00000159267       ENST00000612277 ENSE00001282167
6786  ENSG00000159267       ENST00000612277 ENSE00001402516
6787  ENSG00000159267       ENST00000612277 ENSE00001282204
6788  ENSG00000159267       ENST00000612277 ENSE00001044408
6789  ENSG00000159267       ENST00000612277 ENSE00001044404
6790  ENSG00000159267       ENST00000612277 ENSE00001282176
6791  ENSG00000159267       ENST00000612277 ENSE00001108868
6792  ENSG00000159267       ENST00000612277 ENSE00001282128
6793  ENSG00000159267       ENST00000612277 ENSE00001108867
6794  ENSG00000159267       ENST00000612277 ENSE00001108871
6795  ENSG00000159267       ENST00000612277 ENSE00003709295
6796  ENSG00000159267       ENST00000612277 ENSE00003720755
6797  ENSG00000224269       ENST00000430607 ENSE00001664825
6798  ENSG00000224269       ENST00000430607 ENSE00001641594
6799  ENSG00000280013       ENST00000623928 ENSE00003755553
6800  ENSG00000278884       ENST00000625184 ENSE00003759051
6801  ENSG00000278884       ENST00000625184 ENSE00003755035
6802  ENSG00000156253       ENST00000493196 ENSE00001025429
6803  ENSG00000156253       ENST00000493196 ENSE00003681891
6804  ENSG00000156253       ENST00000493196 ENSE00003647905
6805  ENSG00000156253       ENST00000493196 ENSE00003538911
6806  ENSG00000156253       ENST00000493196 ENSE00001849080
6807  ENSG00000156253       ENST00000486719 ENSE00001918331
6808  ENSG00000156253       ENST00000486719 ENSE00001819118
6809  ENSG00000156253       ENST00000486719 ENSE00003474121
6810  ENSG00000156253       ENST00000486719 ENSE00003646383
6811  ENSG00000156253       ENST00000486719 ENSE00003465328
6812  ENSG00000156253       ENST00000486719 ENSE00001025423
6813  ENSG00000156253       ENST00000286777 ENSE00003474121
6814  ENSG00000156253       ENST00000286777 ENSE00003465328
6815  ENSG00000156253       ENST00000286777 ENSE00001025423
6816  ENSG00000156253       ENST00000286777 ENSE00001951088
6817  ENSG00000156253       ENST00000472184 ENSE00003465328
6818  ENSG00000156253       ENST00000472184 ENSE00001025423
6819  ENSG00000156253       ENST00000472184 ENSE00001815125
6820  ENSG00000156253       ENST00000472184 ENSE00001924738
6821  ENSG00000156253       ENST00000466746 ENSE00001957410
6822  ENSG00000156253       ENST00000466746 ENSE00001934433
6823  ENSG00000156253       ENST00000481411 ENSE00001819118
6824  ENSG00000156253       ENST00000481411 ENSE00001946229
6825  ENSG00000156253       ENST00000481411 ENSE00001847488
6826  ENSG00000156253       ENST00000471269 ENSE00003474121
6827  ENSG00000156253       ENST00000471269 ENSE00003646383
6828  ENSG00000156253       ENST00000471269 ENSE00001929590
6829  ENSG00000156253       ENST00000471269 ENSE00001820085
6830  ENSG00000156253       ENST00000471269 ENSE00001878184
6831  ENSG00000183145       ENST00000485272 ENSE00001882887
6832  ENSG00000183145       ENST00000485272 ENSE00003619477
6833  ENSG00000183145       ENST00000485272 ENSE00003657706
6834  ENSG00000183145       ENST00000485272 ENSE00003468590
6835  ENSG00000183145       ENST00000490393 ENSE00003619477
6836  ENSG00000183145       ENST00000490393 ENSE00003468590
6837  ENSG00000183145       ENST00000490393 ENSE00001833211
6838  ENSG00000183145       ENST00000329553 ENSE00001292766
6839  ENSG00000183145       ENST00000329553 ENSE00003623418
6840  ENSG00000183145       ENST00000329553 ENSE00003508393
6841  ENSG00000183145       ENST00000329553 ENSE00003500060
6842  ENSG00000159263       ENST00000460783 ENSE00001878503
6843  ENSG00000159263       ENST00000460783 ENSE00001818449
6844  ENSG00000159263       ENST00000481185 ENSE00003476435
6845  ENSG00000159263       ENST00000481185 ENSE00003493741
6846  ENSG00000159263       ENST00000481185 ENSE00003604799
6847  ENSG00000159263       ENST00000481185 ENSE00003602705
6848  ENSG00000159263       ENST00000481185 ENSE00003476887
6849  ENSG00000159263       ENST00000481185 ENSE00003560552
6850  ENSG00000159263       ENST00000481185 ENSE00003598751
6851  ENSG00000159263       ENST00000481185 ENSE00003585801
6852  ENSG00000159263       ENST00000481185 ENSE00003679691
6853  ENSG00000159263       ENST00000481185 ENSE00001929256
6854  ENSG00000159263       ENST00000290399 ENSE00003579996
6855  ENSG00000159263       ENST00000290399 ENSE00003635370
6856  ENSG00000159263       ENST00000290399 ENSE00003632648
6857  ENSG00000159263       ENST00000290399 ENSE00003575917
6858  ENSG00000159263       ENST00000290399 ENSE00003558601
6859  ENSG00000159263       ENST00000290399 ENSE00003598947
6860  ENSG00000159263       ENST00000290399 ENSE00003621494
6861  ENSG00000159263       ENST00000290399 ENSE00003474390
6862  ENSG00000159263       ENST00000290399 ENSE00003458994
6863  ENSG00000159263       ENST00000290399 ENSE00001284595
6864  ENSG00000159263       ENST00000290399 ENSE00001044382
6865  ENSG00000159263       ENST00000431229 ENSE00003632648
6866  ENSG00000159263       ENST00000431229 ENSE00003575917
6867  ENSG00000159263       ENST00000431229 ENSE00003558601
6868  ENSG00000159263       ENST00000431229 ENSE00003598947
6869  ENSG00000159263       ENST00000431229 ENSE00003621494
6870  ENSG00000159263       ENST00000431229 ENSE00003474390
6871  ENSG00000159263       ENST00000431229 ENSE00003458994
6872  ENSG00000159263       ENST00000431229 ENSE00001284595
6873  ENSG00000159263       ENST00000431229 ENSE00001596341
6874  ENSG00000159263       ENST00000431229 ENSE00001675188
6875  ENSG00000159263       ENST00000483178 ENSE00001948708
6876  ENSG00000159263       ENST00000483178 ENSE00001886731
6877  ENSG00000231324       ENST00000457669 ENSE00001613818
6878  ENSG00000231324       ENST00000457669 ENSE00001671260
6879  ENSG00000274559       ENST00000464664 ENSE00002211850
6880  ENSG00000226771       ENST00000425058 ENSE00001728521
6881  ENSG00000226771       ENST00000425058 ENSE00001700237
6882  ENSG00000229336       ENST00000282964 ENSE00001759787
6883  ENSG00000230198       ENST00000448908 ENSE00001657492
6884  ENSG00000224141       ENST00000437492 ENSE00001631540
6885  ENSG00000224141       ENST00000437492 ENSE00001764729
6886  ENSG00000224141       ENST00000437492 ENSE00001788014
6887  ENSG00000224141       ENST00000437492 ENSE00001750886
6888  ENSG00000224141       ENST00000355189 ENSE00001764729
6889  ENSG00000224141       ENST00000355189 ENSE00001788014
6890  ENSG00000224141       ENST00000355189 ENSE00001755702
6891  ENSG00000224141       ENST00000355189 ENSE00001518655
6892  ENSG00000224141       ENST00000355189 ENSE00001657136
6893  ENSG00000224141       ENST00000414582 ENSE00001764729
6894  ENSG00000224141       ENST00000414582 ENSE00001627822
6895  ENSG00000224141       ENST00000414582 ENSE00001799906
6896  ENSG00000225218       ENST00000431150 ENSE00001753290
6897  ENSG00000225218       ENST00000431150 ENSE00001683445
6898  ENSG00000225218       ENST00000431150 ENSE00001661955
6899  ENSG00000283051       ENST00000635001 ENSE00003791687
6900  ENSG00000283051       ENST00000635001 ENSE00003787512
6901  ENSG00000283051       ENST00000635001 ENSE00003789768
6902  ENSG00000160284       ENST00000291672 ENSE00001051147
6903  ENSG00000160284       ENST00000291672 ENSE00001309448
6904  ENSG00000160284       ENST00000291672 ENSE00002281221
6905  ENSG00000160284       ENST00000291672 ENSE00003479913
6906  ENSG00000160284       ENST00000291672 ENSE00002117665
6907  ENSG00000160284       ENST00000330205 ENSE00001846176
6908  ENSG00000160284       ENST00000330205 ENSE00003593001
6909  ENSG00000160284       ENST00000330205 ENSE00001051147
6910  ENSG00000160284       ENST00000330205 ENSE00001942963
6911  ENSG00000280109       ENST00000623119 ENSE00003755206
6912  ENSG00000280109       ENST00000624999 ENSE00003758813
6913  ENSG00000205726       ENST00000399353 ENSE00001537709
6914  ENSG00000205726       ENST00000399353 ENSE00003554783
6915  ENSG00000205726       ENST00000399353 ENSE00003636097
6916  ENSG00000205726       ENST00000399353 ENSE00003727180
6917  ENSG00000205726       ENST00000399353 ENSE00003789821
6918  ENSG00000205726       ENST00000399353 ENSE00001701224
6919  ENSG00000205726       ENST00000399353 ENSE00002306218
6920  ENSG00000205726       ENST00000399353 ENSE00003615598
6921  ENSG00000205726       ENST00000399353 ENSE00003660532
6922  ENSG00000205726       ENST00000399353 ENSE00003560708
6923  ENSG00000205726       ENST00000399353 ENSE00003582731
6924  ENSG00000205726       ENST00000399353 ENSE00002289133
6925  ENSG00000205726       ENST00000399353 ENSE00003754038
6926  ENSG00000205726       ENST00000399353 ENSE00003740685
6927  ENSG00000205726       ENST00000399353 ENSE00003748649
6928  ENSG00000205726       ENST00000399353 ENSE00003716255
6929  ENSG00000205726       ENST00000399353 ENSE00003716800
6930  ENSG00000205726       ENST00000399353 ENSE00003722466
6931  ENSG00000205726       ENST00000399353 ENSE00002294975
6932  ENSG00000205726       ENST00000399353 ENSE00003746393
6933  ENSG00000205726       ENST00000399353 ENSE00003629591
6934  ENSG00000205726       ENST00000399353 ENSE00002286409
6935  ENSG00000205726       ENST00000399353 ENSE00003550586
6936  ENSG00000205726       ENST00000399353 ENSE00003559784
6937  ENSG00000205726       ENST00000399353 ENSE00003604372
6938  ENSG00000205726       ENST00000399353 ENSE00003487819
6939  ENSG00000205726       ENST00000399353 ENSE00003694267
6940  ENSG00000205726       ENST00000399353 ENSE00003626830
6941  ENSG00000205726       ENST00000399353 ENSE00001537706
6942  ENSG00000205726       ENST00000444491 ENSE00003554783
6943  ENSG00000205726       ENST00000444491 ENSE00003636097
6944  ENSG00000205726       ENST00000444491 ENSE00003727180
6945  ENSG00000205726       ENST00000444491 ENSE00003789821
6946  ENSG00000205726       ENST00000444491 ENSE00001766438
6947  ENSG00000205726       ENST00000444491 ENSE00001725831
6948  ENSG00000205726       ENST00000444491 ENSE00001784317
6949  ENSG00000205726       ENST00000470742 ENSE00001907792
6950  ENSG00000205726       ENST00000470742 ENSE00003649049
6951  ENSG00000205726       ENST00000470742 ENSE00003617729
6952  ENSG00000205726       ENST00000470742 ENSE00001833384
6953  ENSG00000205726       ENST00000381318 ENSE00003554783
6954  ENSG00000205726       ENST00000381318 ENSE00003636097
6955  ENSG00000205726       ENST00000381318 ENSE00003727180
6956  ENSG00000205726       ENST00000381318 ENSE00003789821
6957  ENSG00000205726       ENST00000381318 ENSE00002306218
6958  ENSG00000205726       ENST00000381318 ENSE00003615598
6959  ENSG00000205726       ENST00000381318 ENSE00003660532
6960  ENSG00000205726       ENST00000381318 ENSE00003560708
6961  ENSG00000205726       ENST00000381318 ENSE00003582731
6962  ENSG00000205726       ENST00000381318 ENSE00002289133
6963  ENSG00000205726       ENST00000381318 ENSE00003754038
6964  ENSG00000205726       ENST00000381318 ENSE00003740685
6965  ENSG00000205726       ENST00000381318 ENSE00003748649
6966  ENSG00000205726       ENST00000381318 ENSE00003716255
6967  ENSG00000205726       ENST00000381318 ENSE00003716800
6968  ENSG00000205726       ENST00000381318 ENSE00003722466
6969  ENSG00000205726       ENST00000381318 ENSE00002294975
6970  ENSG00000205726       ENST00000381318 ENSE00003746393
6971  ENSG00000205726       ENST00000381318 ENSE00003629591
6972  ENSG00000205726       ENST00000381318 ENSE00002286409
6973  ENSG00000205726       ENST00000381318 ENSE00003550586
6974  ENSG00000205726       ENST00000381318 ENSE00003559784
6975  ENSG00000205726       ENST00000381318 ENSE00003604372
6976  ENSG00000205726       ENST00000381318 ENSE00003487819
6977  ENSG00000205726       ENST00000381318 ENSE00003694267
6978  ENSG00000205726       ENST00000381318 ENSE00003626830
6979  ENSG00000205726       ENST00000381318 ENSE00001867436
6980  ENSG00000205726       ENST00000381318 ENSE00003711579
6981  ENSG00000205726       ENST00000381318 ENSE00002528364
6982  ENSG00000205726       ENST00000381318 ENSE00003481950
6983  ENSG00000205726       ENST00000381318 ENSE00003516373
6984  ENSG00000205726       ENST00000381318 ENSE00003644095
6985  ENSG00000205726       ENST00000381318 ENSE00003529805
6986  ENSG00000205726       ENST00000381318 ENSE00003520853
6987  ENSG00000205726       ENST00000381318 ENSE00003507202
6988  ENSG00000205726       ENST00000381318 ENSE00003590878
6989  ENSG00000205726       ENST00000381318 ENSE00003543412
6990  ENSG00000205726       ENST00000381318 ENSE00003535724
6991  ENSG00000205726       ENST00000381318 ENSE00003673780
6992  ENSG00000205726       ENST00000381318 ENSE00001844175
6993  ENSG00000205726       ENST00000381291 ENSE00003554783
6994  ENSG00000205726       ENST00000381291 ENSE00003636097
6995  ENSG00000205726       ENST00000381291 ENSE00003727180
6996  ENSG00000205726       ENST00000381291 ENSE00003789821
6997  ENSG00000205726       ENST00000381291 ENSE00002306218
6998  ENSG00000205726       ENST00000381291 ENSE00003615598
6999  ENSG00000205726       ENST00000381291 ENSE00003660532
7000  ENSG00000205726       ENST00000381291 ENSE00003560708
7001  ENSG00000205726       ENST00000381291 ENSE00003582731
7002  ENSG00000205726       ENST00000381291 ENSE00002289133
7003  ENSG00000205726       ENST00000381291 ENSE00003754038
7004  ENSG00000205726       ENST00000381291 ENSE00003740685
7005  ENSG00000205726       ENST00000381291 ENSE00003748649
7006  ENSG00000205726       ENST00000381291 ENSE00003716255
7007  ENSG00000205726       ENST00000381291 ENSE00003716800
7008  ENSG00000205726       ENST00000381291 ENSE00003722466
7009  ENSG00000205726       ENST00000381291 ENSE00002294975
7010  ENSG00000205726       ENST00000381291 ENSE00003746393
7011  ENSG00000205726       ENST00000381291 ENSE00003629591
7012  ENSG00000205726       ENST00000381291 ENSE00002286409
7013  ENSG00000205726       ENST00000381291 ENSE00003550586
7014  ENSG00000205726       ENST00000381291 ENSE00003559784
7015  ENSG00000205726       ENST00000381291 ENSE00003604372
7016  ENSG00000205726       ENST00000381291 ENSE00003487819
7017  ENSG00000205726       ENST00000381291 ENSE00003694267
7018  ENSG00000205726       ENST00000381291 ENSE00003626830
7019  ENSG00000205726       ENST00000381291 ENSE00003711579
7020  ENSG00000205726       ENST00000381291 ENSE00002528364
7021  ENSG00000205726       ENST00000381291 ENSE00001488097
7022  ENSG00000205726       ENST00000381291 ENSE00001488096
7023  ENSG00000205726       ENST00000399367 ENSE00003554783
7024  ENSG00000205726       ENST00000399367 ENSE00003636097
7025  ENSG00000205726       ENST00000399367 ENSE00003727180
7026  ENSG00000205726       ENST00000399367 ENSE00003789821
7027  ENSG00000205726       ENST00000399367 ENSE00002306218
7028  ENSG00000205726       ENST00000399367 ENSE00003615598
7029  ENSG00000205726       ENST00000399367 ENSE00003660532
7030  ENSG00000205726       ENST00000399367 ENSE00003560708
7031  ENSG00000205726       ENST00000399367 ENSE00003582731
7032  ENSG00000205726       ENST00000399367 ENSE00002289133
7033  ENSG00000205726       ENST00000399367 ENSE00003754038
7034  ENSG00000205726       ENST00000399367 ENSE00003740685
7035  ENSG00000205726       ENST00000399367 ENSE00003748649
7036  ENSG00000205726       ENST00000399367 ENSE00003716255
7037  ENSG00000205726       ENST00000399367 ENSE00003716800
7038  ENSG00000205726       ENST00000399367 ENSE00003722466
7039  ENSG00000205726       ENST00000399367 ENSE00002294975
7040  ENSG00000205726       ENST00000399367 ENSE00003746393
7041  ENSG00000205726       ENST00000399367 ENSE00003629591
7042  ENSG00000205726       ENST00000399367 ENSE00002286409
7043  ENSG00000205726       ENST00000399367 ENSE00003550586
7044  ENSG00000205726       ENST00000399367 ENSE00003559784
7045  ENSG00000205726       ENST00000399367 ENSE00003604372
7046  ENSG00000205726       ENST00000399367 ENSE00003487819
7047  ENSG00000205726       ENST00000399367 ENSE00003694267
7048  ENSG00000205726       ENST00000399367 ENSE00003626830
7049  ENSG00000205726       ENST00000399367 ENSE00003711579
7050  ENSG00000205726       ENST00000399367 ENSE00003481950
7051  ENSG00000205726       ENST00000399367 ENSE00003516373
7052  ENSG00000205726       ENST00000399367 ENSE00003644095
7053  ENSG00000205726       ENST00000399367 ENSE00003529805
7054  ENSG00000205726       ENST00000399367 ENSE00003520853
7055  ENSG00000205726       ENST00000399367 ENSE00003507202
7056  ENSG00000205726       ENST00000399367 ENSE00003590878
7057  ENSG00000205726       ENST00000399367 ENSE00003543412
7058  ENSG00000205726       ENST00000399367 ENSE00003535724
7059  ENSG00000205726       ENST00000399367 ENSE00003673780
7060  ENSG00000205726       ENST00000399367 ENSE00001837439
7061  ENSG00000205726       ENST00000399367 ENSE00001937188
7062  ENSG00000205726       ENST00000399352 ENSE00003554783
7063  ENSG00000205726       ENST00000399352 ENSE00003636097
7064  ENSG00000205726       ENST00000399352 ENSE00003727180
7065  ENSG00000205726       ENST00000399352 ENSE00003789821
7066  ENSG00000205726       ENST00000399352 ENSE00002306218
7067  ENSG00000205726       ENST00000399352 ENSE00003615598
7068  ENSG00000205726       ENST00000399352 ENSE00003660532
7069  ENSG00000205726       ENST00000399352 ENSE00003560708
7070  ENSG00000205726       ENST00000399352 ENSE00003582731
7071  ENSG00000205726       ENST00000399352 ENSE00002289133
7072  ENSG00000205726       ENST00000399352 ENSE00003754038
7073  ENSG00000205726       ENST00000399352 ENSE00003740685
7074  ENSG00000205726       ENST00000399352 ENSE00003748649
7075  ENSG00000205726       ENST00000399352 ENSE00003716255
7076  ENSG00000205726       ENST00000399352 ENSE00003716800
7077  ENSG00000205726       ENST00000399352 ENSE00003722466
7078  ENSG00000205726       ENST00000399352 ENSE00002294975
7079  ENSG00000205726       ENST00000399352 ENSE00003746393
7080  ENSG00000205726       ENST00000399352 ENSE00003629591
7081  ENSG00000205726       ENST00000399352 ENSE00002286409
7082  ENSG00000205726       ENST00000399352 ENSE00003550586
7083  ENSG00000205726       ENST00000399352 ENSE00003559784
7084  ENSG00000205726       ENST00000399352 ENSE00003604372
7085  ENSG00000205726       ENST00000399352 ENSE00003487819
7086  ENSG00000205726       ENST00000399352 ENSE00003694267
7087  ENSG00000205726       ENST00000399352 ENSE00003626830
7088  ENSG00000205726       ENST00000399352 ENSE00003711579
7089  ENSG00000205726       ENST00000399352 ENSE00001537699
7090  ENSG00000205726       ENST00000399352 ENSE00001537698
7091  ENSG00000205726       ENST00000399355 ENSE00003554783
7092  ENSG00000205726       ENST00000399355 ENSE00003636097
7093  ENSG00000205726       ENST00000399355 ENSE00003727180
7094  ENSG00000205726       ENST00000399355 ENSE00003789821
7095  ENSG00000205726       ENST00000399355 ENSE00002306218
7096  ENSG00000205726       ENST00000399355 ENSE00003615598
7097  ENSG00000205726       ENST00000399355 ENSE00003660532
7098  ENSG00000205726       ENST00000399355 ENSE00003560708
7099  ENSG00000205726       ENST00000399355 ENSE00003582731
7100  ENSG00000205726       ENST00000399355 ENSE00002289133
7101  ENSG00000205726       ENST00000399355 ENSE00003754038
7102  ENSG00000205726       ENST00000399355 ENSE00003740685
7103  ENSG00000205726       ENST00000399355 ENSE00003748649
7104  ENSG00000205726       ENST00000399355 ENSE00003716255
7105  ENSG00000205726       ENST00000399355 ENSE00003716800
7106  ENSG00000205726       ENST00000399355 ENSE00003722466
7107  ENSG00000205726       ENST00000399355 ENSE00002294975
7108  ENSG00000205726       ENST00000399355 ENSE00003746393
7109  ENSG00000205726       ENST00000399355 ENSE00003629591
7110  ENSG00000205726       ENST00000399355 ENSE00002286409
7111  ENSG00000205726       ENST00000399355 ENSE00003550586
7112  ENSG00000205726       ENST00000399355 ENSE00003487819
7113  ENSG00000205726       ENST00000399355 ENSE00003694267
7114  ENSG00000205726       ENST00000399355 ENSE00003626830
7115  ENSG00000205726       ENST00000399355 ENSE00003711579
7116  ENSG00000205726       ENST00000399355 ENSE00002528364
7117  ENSG00000205726       ENST00000399355 ENSE00001537694
7118  ENSG00000205726       ENST00000399355 ENSE00001682575
7119  ENSG00000205726       ENST00000399349 ENSE00003554783
7120  ENSG00000205726       ENST00000399349 ENSE00003636097
7121  ENSG00000205726       ENST00000399349 ENSE00003727180
7122  ENSG00000205726       ENST00000399349 ENSE00003789821
7123  ENSG00000205726       ENST00000399349 ENSE00002306218
7124  ENSG00000205726       ENST00000399349 ENSE00003615598
7125  ENSG00000205726       ENST00000399349 ENSE00003660532
7126  ENSG00000205726       ENST00000399349 ENSE00003560708
7127  ENSG00000205726       ENST00000399349 ENSE00003582731
7128  ENSG00000205726       ENST00000399349 ENSE00002289133
7129  ENSG00000205726       ENST00000399349 ENSE00003754038
7130  ENSG00000205726       ENST00000399349 ENSE00003740685
7131  ENSG00000205726       ENST00000399349 ENSE00003748649
7132  ENSG00000205726       ENST00000399349 ENSE00003716255
7133  ENSG00000205726       ENST00000399349 ENSE00003716800
7134  ENSG00000205726       ENST00000399349 ENSE00003722466
7135  ENSG00000205726       ENST00000399349 ENSE00002294975
7136  ENSG00000205726       ENST00000399349 ENSE00003746393
7137  ENSG00000205726       ENST00000399349 ENSE00003629591
7138  ENSG00000205726       ENST00000399349 ENSE00002286409
7139  ENSG00000205726       ENST00000399349 ENSE00003550586
7140  ENSG00000205726       ENST00000399349 ENSE00003487819
7141  ENSG00000205726       ENST00000399349 ENSE00003694267
7142  ENSG00000205726       ENST00000399349 ENSE00003626830
7143  ENSG00000205726       ENST00000399349 ENSE00003711579
7144  ENSG00000205726       ENST00000399349 ENSE00001537694
7145  ENSG00000205726       ENST00000399349 ENSE00001537693
7146  ENSG00000205726       ENST00000451686 ENSE00003554783
7147  ENSG00000205726       ENST00000451686 ENSE00003636097
7148  ENSG00000205726       ENST00000451686 ENSE00003727180
7149  ENSG00000205726       ENST00000451686 ENSE00001725831
7150  ENSG00000205726       ENST00000451686 ENSE00001764225
7151  ENSG00000205726       ENST00000451686 ENSE00001713722
7152  ENSG00000205726       ENST00000381283 ENSE00003554783
7153  ENSG00000205726       ENST00000381283 ENSE00003636097
7154  ENSG00000205726       ENST00000381283 ENSE00003727180
7155  ENSG00000205726       ENST00000381283 ENSE00003789821
7156  ENSG00000205726       ENST00000381283 ENSE00002306218
7157  ENSG00000205726       ENST00000381283 ENSE00003615598
7158  ENSG00000205726       ENST00000381283 ENSE00003660532
7159  ENSG00000205726       ENST00000381283 ENSE00003560708
7160  ENSG00000205726       ENST00000381283 ENSE00003582731
7161  ENSG00000205726       ENST00000381283 ENSE00001754766
7162  ENSG00000205726       ENST00000456489 ENSE00001778198
7163  ENSG00000205726       ENST00000456489 ENSE00001696492
7164  ENSG00000205726       ENST00000488166 ENSE00003508603
7165  ENSG00000205726       ENST00000488166 ENSE00003583157
7166  ENSG00000205726       ENST00000488166 ENSE00003632990
7167  ENSG00000205726       ENST00000488166 ENSE00003505623
7168  ENSG00000205726       ENST00000488166 ENSE00001872002
7169  ENSG00000205726       ENST00000488166 ENSE00001857476
7170  ENSG00000205726       ENST00000488166 ENSE00001911086
7171  ENSG00000205726       ENST00000474132 ENSE00001815146
7172  ENSG00000205726       ENST00000474132 ENSE00001911561
7173  ENSG00000205726       ENST00000419241 ENSE00002294975
7174  ENSG00000205726       ENST00000419241 ENSE00003490444
7175  ENSG00000205726       ENST00000419241 ENSE00001658212
7176  ENSG00000205726       ENST00000419241 ENSE00002521154
7177  ENSG00000205726       ENST00000419241 ENSE00003597769
7178  ENSG00000205726       ENST00000419241 ENSE00001632947
7179  ENSG00000205726       ENST00000440794 ENSE00003746393
7180  ENSG00000205726       ENST00000440794 ENSE00003629591
7181  ENSG00000205726       ENST00000440794 ENSE00002528364
7182  ENSG00000205726       ENST00000440794 ENSE00002510832
7183  ENSG00000205726       ENST00000440794 ENSE00001653730
7184  ENSG00000205726       ENST00000465143 ENSE00002525954
7185  ENSG00000205726       ENST00000465143 ENSE00001949525
7186  ENSG00000205726       ENST00000487427 ENSE00003459835
7187  ENSG00000205726       ENST00000487427 ENSE00001874278
7188  ENSG00000205726       ENST00000487427 ENSE00003463149
7189  ENSG00000205726       ENST00000487427 ENSE00003617459
7190  ENSG00000205726       ENST00000487427 ENSE00002233835
7191  ENSG00000205726       ENST00000437126 ENSE00003550586
7192  ENSG00000205726       ENST00000437126 ENSE00003615431
7193  ENSG00000205726       ENST00000437126 ENSE00001780124
7194  ENSG00000205726       ENST00000437126 ENSE00003654428
7195  ENSG00000205726       ENST00000437126 ENSE00001766726
7196  ENSG00000205726       ENST00000437126 ENSE00001602683
7197  ENSG00000205726       ENST00000428240 ENSE00003459835
7198  ENSG00000205726       ENST00000428240 ENSE00003617459
7199  ENSG00000205726       ENST00000428240 ENSE00001645690
7200  ENSG00000205726       ENST00000428240 ENSE00001778723
7201  ENSG00000205726       ENST00000472548 ENSE00003615431
7202  ENSG00000205726       ENST00000472548 ENSE00003641021
7203  ENSG00000205726       ENST00000472548 ENSE00003497810
7204  ENSG00000205726       ENST00000472548 ENSE00001924934
7205  ENSG00000205726       ENST00000472548 ENSE00001924956
7206  ENSG00000205726       ENST00000479424 ENSE00003615431
7207  ENSG00000205726       ENST00000479424 ENSE00003641021
7208  ENSG00000205726       ENST00000479424 ENSE00003497810
7209  ENSG00000205726       ENST00000479424 ENSE00001924956
7210  ENSG00000205726       ENST00000479424 ENSE00001901752
7211  ENSG00000205726       ENST00000462212 ENSE00003641021
7212  ENSG00000205726       ENST00000462212 ENSE00003497810
7213  ENSG00000205726       ENST00000462212 ENSE00001924956
7214  ENSG00000205726       ENST00000462212 ENSE00001879685
7215  ENSG00000205726       ENST00000495656 ENSE00003615431
7216  ENSG00000205726       ENST00000495656 ENSE00003641021
7217  ENSG00000205726       ENST00000495656 ENSE00003497810
7218  ENSG00000205726       ENST00000495656 ENSE00001924934
7219  ENSG00000205726       ENST00000495656 ENSE00001828929
7220  ENSG00000205726       ENST00000475422 ENSE00001879685
7221  ENSG00000205726       ENST00000475422 ENSE00001828929
7222  ENSG00000205726       ENST00000489261 ENSE00003641021
7223  ENSG00000205726       ENST00000489261 ENSE00003497810
7224  ENSG00000205726       ENST00000489261 ENSE00001879685
7225  ENSG00000205726       ENST00000489261 ENSE00001828929
7226  ENSG00000205726       ENST00000381284 ENSE00003644095
7227  ENSG00000205726       ENST00000381284 ENSE00003529805
7228  ENSG00000205726       ENST00000381284 ENSE00003507202
7229  ENSG00000205726       ENST00000381284 ENSE00003590878
7230  ENSG00000205726       ENST00000381284 ENSE00003543412
7231  ENSG00000205726       ENST00000381284 ENSE00003535724
7232  ENSG00000205726       ENST00000381284 ENSE00001759724
7233  ENSG00000205726       ENST00000381284 ENSE00001794822
7234  ENSG00000205726       ENST00000420666 ENSE00001678440
7235  ENSG00000205726       ENST00000420666 ENSE00003672211
7236  ENSG00000205726       ENST00000420666 ENSE00003523032
7237  ENSG00000205726       ENST00000420666 ENSE00001623875
7238  ENSG00000205726       ENST00000415023 ENSE00003590878
7239  ENSG00000205726       ENST00000415023 ENSE00003543412
7240  ENSG00000205726       ENST00000415023 ENSE00003535724
7241  ENSG00000205726       ENST00000415023 ENSE00001794822
7242  ENSG00000205726       ENST00000415023 ENSE00001698022
7243  ENSG00000205726       ENST00000379960 ENSE00002306218
7244  ENSG00000205726       ENST00000379960 ENSE00003615598
7245  ENSG00000205726       ENST00000379960 ENSE00003660532
7246  ENSG00000205726       ENST00000379960 ENSE00003560708
7247  ENSG00000205726       ENST00000379960 ENSE00003582731
7248  ENSG00000205726       ENST00000379960 ENSE00003731962
7249  ENSG00000205726       ENST00000379960 ENSE00003717171
7250  ENSG00000205726       ENST00000379960 ENSE00003728232
7251  ENSG00000205726       ENST00000379960 ENSE00003726732
7252  ENSG00000205726       ENST00000379960 ENSE00003736560
7253  ENSG00000205726       ENST00000379960 ENSE00003731102
7254  ENSG00000205726       ENST00000379960 ENSE00002230721
7255  ENSG00000205726       ENST00000379960 ENSE00003720754
7256  ENSG00000205726       ENST00000379960 ENSE00003490444
7257  ENSG00000205726       ENST00000379960 ENSE00003750025
7258  ENSG00000205726       ENST00000379960 ENSE00003459835
7259  ENSG00000205726       ENST00000379960 ENSE00003641021
7260  ENSG00000205726       ENST00000379960 ENSE00003715155
7261  ENSG00000205726       ENST00000379960 ENSE00003717775
7262  ENSG00000205726       ENST00000379960 ENSE00003719460
7263  ENSG00000205726       ENST00000381285 ENSE00003554783
7264  ENSG00000205726       ENST00000381285 ENSE00003636097
7265  ENSG00000205726       ENST00000381285 ENSE00003727180
7266  ENSG00000205726       ENST00000381285 ENSE00003789821
7267  ENSG00000205726       ENST00000381285 ENSE00001701224
7268  ENSG00000205726       ENST00000381285 ENSE00002306218
7269  ENSG00000205726       ENST00000381285 ENSE00003615598
7270  ENSG00000205726       ENST00000381285 ENSE00003660532
7271  ENSG00000205726       ENST00000381285 ENSE00003560708
7272  ENSG00000205726       ENST00000381285 ENSE00003582731
7273  ENSG00000205726       ENST00000381285 ENSE00002289133
7274  ENSG00000205726       ENST00000381285 ENSE00003754038
7275  ENSG00000205726       ENST00000381285 ENSE00003740685
7276  ENSG00000205726       ENST00000381285 ENSE00003748649
7277  ENSG00000205726       ENST00000381285 ENSE00003716255
7278  ENSG00000205726       ENST00000381285 ENSE00003716800
7279  ENSG00000205726       ENST00000381285 ENSE00003722466
7280  ENSG00000205726       ENST00000381285 ENSE00002294975
7281  ENSG00000205726       ENST00000381285 ENSE00003746393
7282  ENSG00000205726       ENST00000381285 ENSE00003629591
7283  ENSG00000205726       ENST00000381285 ENSE00001488097
7284  ENSG00000205726       ENST00000381285 ENSE00003615431
7285  ENSG00000205726       ENST00000381285 ENSE00003641021
7286  ENSG00000205726       ENST00000381285 ENSE00003497810
7287  ENSG00000205726       ENST00000381285 ENSE00003463149
7288  ENSG00000205726       ENST00000381285 ENSE00003617459
7289  ENSG00000205726       ENST00000381285 ENSE00003523032
7290  ENSG00000205726       ENST00000381285 ENSE00003512396
7291  ENSG00000205726       ENST00000381285 ENSE00003522306
7292  ENSG00000205726       ENST00000381285 ENSE00003663309
7293  ENSG00000205726       ENST00000381285 ENSE00003521528
7294  ENSG00000205726       ENST00000381285 ENSE00003581231
7295  ENSG00000205726       ENST00000381285 ENSE00003519879
7296  ENSG00000205726       ENST00000381285 ENSE00003584313
7297  ENSG00000205726       ENST00000381285 ENSE00003675722
7298  ENSG00000205726       ENST00000381285 ENSE00003571526
7299  ENSG00000205726       ENST00000381285 ENSE00003682629
7300  ENSG00000205726       ENST00000381285 ENSE00001664654
7301  ENSG00000205726       ENST00000399338 ENSE00003636097
7302  ENSG00000205726       ENST00000399338 ENSE00003727180
7303  ENSG00000205726       ENST00000399338 ENSE00003789821
7304  ENSG00000205726       ENST00000399338 ENSE00002306218
7305  ENSG00000205726       ENST00000399338 ENSE00003615598
7306  ENSG00000205726       ENST00000399338 ENSE00003660532
7307  ENSG00000205726       ENST00000399338 ENSE00003560708
7308  ENSG00000205726       ENST00000399338 ENSE00003582731
7309  ENSG00000205726       ENST00000399338 ENSE00002289133
7310  ENSG00000205726       ENST00000399338 ENSE00003754038
7311  ENSG00000205726       ENST00000399338 ENSE00003740685
7312  ENSG00000205726       ENST00000399338 ENSE00003748649
7313  ENSG00000205726       ENST00000399338 ENSE00003716255
7314  ENSG00000205726       ENST00000399338 ENSE00003716800
7315  ENSG00000205726       ENST00000399338 ENSE00003722466
7316  ENSG00000205726       ENST00000399338 ENSE00002294975
7317  ENSG00000205726       ENST00000399338 ENSE00003746393
7318  ENSG00000205726       ENST00000399338 ENSE00003629591
7319  ENSG00000205726       ENST00000399338 ENSE00003711579
7320  ENSG00000205726       ENST00000399338 ENSE00002220213
7321  ENSG00000205726       ENST00000399338 ENSE00001719494
7322  ENSG00000279967       ENST00000624806 ENSE00003758113
7323  ENSG00000226543       ENST00000449877 ENSE00001599627
7324  ENSG00000275139       ENST00000617854 ENSE00003716006
7325  ENSG00000280604       ENST00000626237 ENSE00003774066
7326  ENSG00000280604       ENST00000626237 ENSE00003763886
7327  ENSG00000280604       ENST00000626237 ENSE00003760972
7328  ENSG00000166265       ENST00000299340 ENSE00001949957
7329  ENSG00000166265       ENST00000299340 ENSE00001101546
7330  ENSG00000166265       ENST00000299340 ENSE00003694569
7331  ENSG00000166265       ENST00000299340 ENSE00001149319
7332  ENSG00000166265       ENST00000400043 ENSE00001101546
7333  ENSG00000166265       ENST00000400043 ENSE00003694569
7334  ENSG00000166265       ENST00000400043 ENSE00001823282
7335  ENSG00000166265       ENST00000400043 ENSE00001674139
7336  ENSG00000232692       ENST00000429340 ENSE00001732848
7337  ENSG00000232692       ENST00000429340 ENSE00001790439
7338  ENSG00000232692       ENST00000429340 ENSE00001596262
7339  ENSG00000232692       ENST00000429340 ENSE00001635399
7340  ENSG00000232692       ENST00000429340 ENSE00001693292
7341  ENSG00000232692       ENST00000429340 ENSE00001737734
7342  ENSG00000232692       ENST00000452460 ENSE00001597055
7343  ENSG00000232692       ENST00000452460 ENSE00001675911
7344  ENSG00000232692       ENST00000452460 ENSE00001782152
7345  ENSG00000232692       ENST00000452460 ENSE00001773943
7346  ENSG00000232692       ENST00000421771 ENSE00001750896
7347  ENSG00000232692       ENST00000421771 ENSE00001729877
7348  ENSG00000232692       ENST00000444306 ENSE00001791544
7349  ENSG00000232692       ENST00000444306 ENSE00001721258
7350  ENSG00000228600       ENST00000453699 ENSE00001625311
7351  ENSG00000237138       ENST00000437109 ENSE00001717018
7352  ENSG00000237138       ENST00000437109 ENSE00001593911
7353  ENSG00000142149       ENST00000270112 ENSE00001191626
7354  ENSG00000142149       ENST00000270112 ENSE00001025755
7355  ENSG00000142149       ENST00000270112 ENSE00000952493
7356  ENSG00000142149       ENST00000270112 ENSE00000952494
7357  ENSG00000142149       ENST00000270112 ENSE00000952495
7358  ENSG00000142149       ENST00000270112 ENSE00001025758
7359  ENSG00000142149       ENST00000270112 ENSE00001025754
7360  ENSG00000142149       ENST00000270112 ENSE00003547885
7361  ENSG00000142149       ENST00000270112 ENSE00003508200
7362  ENSG00000142149       ENST00000270112 ENSE00001025753
7363  ENSG00000142149       ENST00000270112 ENSE00001191620
7364  ENSG00000142149       ENST00000430354 ENSE00000952493
7365  ENSG00000142149       ENST00000430354 ENSE00000952494
7366  ENSG00000142149       ENST00000430354 ENSE00001716705
7367  ENSG00000142149       ENST00000430354 ENSE00001601286
7368  ENSG00000142149       ENST00000465574 ENSE00001853426
7369  ENSG00000142149       ENST00000465574 ENSE00003653371
7370  ENSG00000142149       ENST00000465574 ENSE00003605677
7371  ENSG00000142149       ENST00000465574 ENSE00001863134
7372  ENSG00000142149       ENST00000439107 ENSE00003547885
7373  ENSG00000142149       ENST00000439107 ENSE00003508200
7374  ENSG00000142149       ENST00000439107 ENSE00001025753
7375  ENSG00000142149       ENST00000439107 ENSE00001624651
7376  ENSG00000142149       ENST00000439107 ENSE00001802814
7377  ENSG00000223806       ENST00000448579 ENSE00001738568
7378  ENSG00000223806       ENST00000448579 ENSE00001785567
7379  ENSG00000223806       ENST00000448579 ENSE00001662035
7380  ENSG00000223806       ENST00000448579 ENSE00001660742
7381  ENSG00000223806       ENST00000448579 ENSE00001610560
7382  ENSG00000223806       ENST00000411989 ENSE00001738568
7383  ENSG00000223806       ENST00000411989 ENSE00001660742
7384  ENSG00000223806       ENST00000411989 ENSE00001610560
7385  ENSG00000223806       ENST00000411989 ENSE00001640534
7386  ENSG00000223806       ENST00000429621 ENSE00002495358
7387  ENSG00000223806       ENST00000429621 ENSE00001738568
7388  ENSG00000223806       ENST00000429621 ENSE00001662035
7389  ENSG00000223806       ENST00000429621 ENSE00001660742
7390  ENSG00000223806       ENST00000429621 ENSE00001610560
7391  ENSG00000223806       ENST00000429621 ENSE00001634264
7392  ENSG00000278927       ENST00000623896 ENSE00003757836
7393  ENSG00000278927       ENST00000623896 ENSE00003757781
7394  ENSG00000278927       ENST00000623896 ENSE00003755470
7395  ENSG00000159110       ENST00000382264 ENSE00001918565
7396  ENSG00000159110       ENST00000382264 ENSE00003660426
7397  ENSG00000159110       ENST00000382264 ENSE00003535341
7398  ENSG00000159110       ENST00000382264 ENSE00003620483
7399  ENSG00000159110       ENST00000382264 ENSE00001733110
7400  ENSG00000159110       ENST00000382264 ENSE00003787406
7401  ENSG00000159110       ENST00000382264 ENSE00003542940
7402  ENSG00000159110       ENST00000382264 ENSE00003650647
7403  ENSG00000159110       ENST00000382264 ENSE00001491486
7404  ENSG00000159110       ENST00000404220 ENSE00003535341
7405  ENSG00000159110       ENST00000404220 ENSE00003620483
7406  ENSG00000159110       ENST00000404220 ENSE00001733110
7407  ENSG00000159110       ENST00000404220 ENSE00003787406
7408  ENSG00000159110       ENST00000404220 ENSE00003542940
7409  ENSG00000159110       ENST00000404220 ENSE00003650647
7410  ENSG00000159110       ENST00000404220 ENSE00001881451
7411  ENSG00000159110       ENST00000404220 ENSE00001366893
7412  ENSG00000159110       ENST00000404220 ENSE00001862690
7413  ENSG00000159110       ENST00000342136 ENSE00003535341
7414  ENSG00000159110       ENST00000342136 ENSE00003620483
7415  ENSG00000159110       ENST00000342136 ENSE00001733110
7416  ENSG00000159110       ENST00000342136 ENSE00003787406
7417  ENSG00000159110       ENST00000342136 ENSE00003542940
7418  ENSG00000159110       ENST00000342136 ENSE00003650647
7419  ENSG00000159110       ENST00000342136 ENSE00001366893
7420  ENSG00000159110       ENST00000342136 ENSE00001384199
7421  ENSG00000159110       ENST00000342136 ENSE00003460001
7422  ENSG00000159110       ENST00000420068 ENSE00001776929
7423  ENSG00000159110       ENST00000420068 ENSE00003531736
7424  ENSG00000159110       ENST00000420068 ENSE00003484390
7425  ENSG00000159110       ENST00000420068 ENSE00001734372
7426  ENSG00000159110       ENST00000342101 ENSE00003535341
7427  ENSG00000159110       ENST00000342101 ENSE00003620483
7428  ENSG00000159110       ENST00000342101 ENSE00001733110
7429  ENSG00000159110       ENST00000342101 ENSE00003787406
7430  ENSG00000159110       ENST00000342101 ENSE00003542940
7431  ENSG00000159110       ENST00000342101 ENSE00001366893
7432  ENSG00000159110       ENST00000342101 ENSE00001491360
7433  ENSG00000159110       ENST00000342101 ENSE00003581056
7434  ENSG00000159110       ENST00000382238 ENSE00003660426
7435  ENSG00000159110       ENST00000382238 ENSE00003535341
7436  ENSG00000159110       ENST00000382238 ENSE00003620483
7437  ENSG00000159110       ENST00000382238 ENSE00001733110
7438  ENSG00000159110       ENST00000382238 ENSE00003787406
7439  ENSG00000159110       ENST00000382238 ENSE00001434457
7440  ENSG00000159110       ENST00000382238 ENSE00003595336
7441  ENSG00000159110       ENST00000382238 ENSE00003477776
7442  ENSG00000159110       ENST00000382238 ENSE00003606777
7443  ENSG00000159110       ENST00000382238 ENSE00003547857
7444  ENSG00000159110       ENST00000413881 ENSE00001733110
7445  ENSG00000159110       ENST00000413881 ENSE00003787406
7446  ENSG00000159110       ENST00000413881 ENSE00003542940
7447  ENSG00000159110       ENST00000413881 ENSE00001635653
7448  ENSG00000159110       ENST00000413881 ENSE00003471951
7449  ENSG00000159110       ENST00000413881 ENSE00003475234
7450  ENSG00000159110       ENST00000443073 ENSE00001733110
7451  ENSG00000159110       ENST00000443073 ENSE00003787406
7452  ENSG00000159110       ENST00000443073 ENSE00003542940
7453  ENSG00000159110       ENST00000443073 ENSE00003650647
7454  ENSG00000159110       ENST00000443073 ENSE00001635653
7455  ENSG00000159110       ENST00000443073 ENSE00003471951
7456  ENSG00000159110       ENST00000443073 ENSE00003557392
7457  ENSG00000159110       ENST00000447980 ENSE00003535341
7458  ENSG00000159110       ENST00000447980 ENSE00003620483
7459  ENSG00000159110       ENST00000447980 ENSE00001733110
7460  ENSG00000159110       ENST00000447980 ENSE00003787406
7461  ENSG00000159110       ENST00000447980 ENSE00001635967
7462  ENSG00000159110       ENST00000447980 ENSE00003630943
7463  ENSG00000159110       ENST00000417007 ENSE00003595336
7464  ENSG00000159110       ENST00000417007 ENSE00003477776
7465  ENSG00000159110       ENST00000417007 ENSE00003606777
7466  ENSG00000159110       ENST00000417007 ENSE00001644621
7467  ENSG00000159110       ENST00000417007 ENSE00001666549
7468  ENSG00000225331       ENST00000411694 ENSE00001708764
7469  ENSG00000225331       ENST00000411694 ENSE00001605988
7470  ENSG00000225331       ENST00000424921 ENSE00001728626
7471  ENSG00000225331       ENST00000424921 ENSE00001690812
7472  ENSG00000225331       ENST00000424921 ENSE00001634931
7473  ENSG00000274276       ENST00000624691 ENSE00003756584
7474  ENSG00000274276       ENST00000624691 ENSE00003758366
7475  ENSG00000274276       ENST00000624691 ENSE00003759969
7476  ENSG00000274276       ENST00000624691 ENSE00003756688
7477  ENSG00000274276       ENST00000624691 ENSE00003756870
7478  ENSG00000274276       ENST00000624691 ENSE00003758226
7479  ENSG00000274276       ENST00000624691 ENSE00003760060
7480  ENSG00000274276       ENST00000624691 ENSE00003758069
7481  ENSG00000274276       ENST00000624691 ENSE00003758296
7482  ENSG00000274276       ENST00000624691 ENSE00003755191
7483  ENSG00000274276       ENST00000624691 ENSE00003755577
7484  ENSG00000274276       ENST00000624691 ENSE00003756767
7485  ENSG00000274276       ENST00000624691 ENSE00003757326
7486  ENSG00000274276       ENST00000624691 ENSE00003757429
7487  ENSG00000274276       ENST00000624406 ENSE00003755056
7488  ENSG00000274276       ENST00000624406 ENSE00003760135
7489  ENSG00000274276       ENST00000624406 ENSE00003733879
7490  ENSG00000274276       ENST00000624406 ENSE00003743930
7491  ENSG00000274276       ENST00000624406 ENSE00003734019
7492  ENSG00000274276       ENST00000624406 ENSE00003745764
7493  ENSG00000274276       ENST00000624406 ENSE00003736081
7494  ENSG00000274276       ENST00000624406 ENSE00003749155
7495  ENSG00000274276       ENST00000624406 ENSE00003729930
7496  ENSG00000274276       ENST00000624406 ENSE00003724250
7497  ENSG00000274276       ENST00000624406 ENSE00003742762
7498  ENSG00000274276       ENST00000624406 ENSE00003719221
7499  ENSG00000274276       ENST00000624406 ENSE00003746144
7500  ENSG00000274276       ENST00000624406 ENSE00003743266
7501  ENSG00000274276       ENST00000624406 ENSE00003747262
7502  ENSG00000274276       ENST00000624406 ENSE00003753596
7503  ENSG00000274276       ENST00000624406 ENSE00001531922
7504  ENSG00000274276       ENST00000398168 ENSE00003733879
7505  ENSG00000274276       ENST00000398168 ENSE00003743930
7506  ENSG00000274276       ENST00000398168 ENSE00003734019
7507  ENSG00000274276       ENST00000398168 ENSE00003745764
7508  ENSG00000274276       ENST00000398168 ENSE00003736081
7509  ENSG00000274276       ENST00000398168 ENSE00003749155
7510  ENSG00000274276       ENST00000398168 ENSE00003729930
7511  ENSG00000274276       ENST00000398168 ENSE00003724250
7512  ENSG00000274276       ENST00000398168 ENSE00003742762
7513  ENSG00000274276       ENST00000398168 ENSE00003719221
7514  ENSG00000274276       ENST00000398168 ENSE00003746144
7515  ENSG00000274276       ENST00000398168 ENSE00003743266
7516  ENSG00000274276       ENST00000398168 ENSE00003747262
7517  ENSG00000274276       ENST00000398168 ENSE00003753596
7518  ENSG00000274276       ENST00000398168 ENSE00001531922
7519  ENSG00000274276       ENST00000398168 ENSE00001532023
7520  ENSG00000274276       ENST00000398168 ENSE00003734456
7521  ENSG00000274276       ENST00000618024 ENSE00003733879
7522  ENSG00000274276       ENST00000618024 ENSE00003743930
7523  ENSG00000274276       ENST00000618024 ENSE00003734019
7524  ENSG00000274276       ENST00000618024 ENSE00003745764
7525  ENSG00000274276       ENST00000618024 ENSE00003736081
7526  ENSG00000274276       ENST00000618024 ENSE00003749155
7527  ENSG00000274276       ENST00000618024 ENSE00003729930
7528  ENSG00000274276       ENST00000618024 ENSE00003724250
7529  ENSG00000274276       ENST00000618024 ENSE00003742762
7530  ENSG00000274276       ENST00000618024 ENSE00003719221
7531  ENSG00000274276       ENST00000618024 ENSE00003746144
7532  ENSG00000274276       ENST00000618024 ENSE00003743266
7533  ENSG00000274276       ENST00000618024 ENSE00003747262
7534  ENSG00000274276       ENST00000618024 ENSE00003753596
7535  ENSG00000274276       ENST00000618024 ENSE00003734456
7536  ENSG00000274276       ENST00000618024 ENSE00003738801
7537  ENSG00000274276       ENST00000618024 ENSE00003737649
7538  ENSG00000274276       ENST00000618024 ENSE00003726168
7539  ENSG00000274276       ENST00000624934 ENSE00003733879
7540  ENSG00000274276       ENST00000624934 ENSE00003743930
7541  ENSG00000274276       ENST00000624934 ENSE00003734019
7542  ENSG00000274276       ENST00000624934 ENSE00003745764
7543  ENSG00000274276       ENST00000624934 ENSE00003736081
7544  ENSG00000274276       ENST00000624934 ENSE00003749155
7545  ENSG00000274276       ENST00000624934 ENSE00003729930
7546  ENSG00000274276       ENST00000624934 ENSE00003724250
7547  ENSG00000274276       ENST00000624934 ENSE00003742762
7548  ENSG00000274276       ENST00000624934 ENSE00003719221
7549  ENSG00000274276       ENST00000624934 ENSE00003746144
7550  ENSG00000274276       ENST00000624934 ENSE00003743266
7551  ENSG00000274276       ENST00000624934 ENSE00003747262
7552  ENSG00000274276       ENST00000624934 ENSE00003753596
7553  ENSG00000274276       ENST00000624934 ENSE00001532023
7554  ENSG00000274276       ENST00000624934 ENSE00003734456
7555  ENSG00000274276       ENST00000624934 ENSE00003756191
7556  ENSG00000274276       ENST00000624934 ENSE00003760064
7557  ENSG00000274276       ENST00000622914 ENSE00003758146
7558  ENSG00000274276       ENST00000622914 ENSE00003757104
7559  ENSG00000274276       ENST00000624808 ENSE00003756767
7560  ENSG00000274276       ENST00000624808 ENSE00003757326
7561  ENSG00000274276       ENST00000624808 ENSE00003759294
7562  ENSG00000274276       ENST00000624808 ENSE00003759014
7563  ENSG00000274276       ENST00000624808 ENSE00003758047
7564  ENSG00000274276       ENST00000623939 ENSE00003758366
7565  ENSG00000274276       ENST00000623939 ENSE00003759969
7566  ENSG00000274276       ENST00000623939 ENSE00003756688
7567  ENSG00000274276       ENST00000623939 ENSE00003758011
7568  ENSG00000274276       ENST00000623939 ENSE00003759764
7569  ENSG00000274276       ENST00000623939 ENSE00003758943
7570  ENSG00000274276       ENST00000624921 ENSE00003734456
7571  ENSG00000274276       ENST00000624921 ENSE00003759764
7572  ENSG00000274276       ENST00000624921 ENSE00003756051
7573  ENSG00000274276       ENST00000624921 ENSE00003755043
7574  ENSG00000274276       ENST00000624921 ENSE00003760384
7575  ENSG00000274276       ENST00000624921 ENSE00003759542
7576  ENSG00000274276       ENST00000617706 ENSE00003733879
7577  ENSG00000274276       ENST00000617706 ENSE00003743930
7578  ENSG00000274276       ENST00000617706 ENSE00003734019
7579  ENSG00000274276       ENST00000617706 ENSE00003745764
7580  ENSG00000274276       ENST00000617706 ENSE00003736081
7581  ENSG00000274276       ENST00000617706 ENSE00003749155
7582  ENSG00000274276       ENST00000617706 ENSE00003729930
7583  ENSG00000274276       ENST00000617706 ENSE00003724250
7584  ENSG00000274276       ENST00000617706 ENSE00003742762
7585  ENSG00000274276       ENST00000617706 ENSE00003719221
7586  ENSG00000274276       ENST00000617706 ENSE00003746144
7587  ENSG00000274276       ENST00000617706 ENSE00003743266
7588  ENSG00000274276       ENST00000617706 ENSE00003747262
7589  ENSG00000274276       ENST00000617706 ENSE00003753596
7590  ENSG00000274276       ENST00000617706 ENSE00003734456
7591  ENSG00000274276       ENST00000617706 ENSE00003738801
7592  ENSG00000274276       ENST00000617706 ENSE00002235271
7593  ENSG00000227757       ENST00000454622 ENSE00001684089
7594  ENSG00000227757       ENST00000454622 ENSE00001688113
7595  ENSG00000236119       ENST00000445464 ENSE00001680052
7596  ENSG00000236119       ENST00000445464 ENSE00001712529
7597  ENSG00000160191       ENST00000460905 ENSE00001882281
7598  ENSG00000160191       ENST00000460905 ENSE00001864622
7599  ENSG00000160191       ENST00000460905 ENSE00003517962
7600  ENSG00000160191       ENST00000460905 ENSE00003490488
7601  ENSG00000160191       ENST00000460905 ENSE00003510642
7602  ENSG00000160191       ENST00000460905 ENSE00003548951
7603  ENSG00000160191       ENST00000460905 ENSE00003488958
7604  ENSG00000160191       ENST00000472401 ENSE00001833420
7605  ENSG00000160191       ENST00000472401 ENSE00003620172
7606  ENSG00000160191       ENST00000472401 ENSE00003629203
7607  ENSG00000160191       ENST00000472401 ENSE00003602426
7608  ENSG00000160191       ENST00000472401 ENSE00001863986
7609  ENSG00000160191       ENST00000335512 ENSE00001864638
7610  ENSG00000160191       ENST00000335512 ENSE00003625815
7611  ENSG00000160191       ENST00000335512 ENSE00003565257
7612  ENSG00000160191       ENST00000335512 ENSE00003689265
7613  ENSG00000160191       ENST00000335512 ENSE00003492285
7614  ENSG00000160191       ENST00000335512 ENSE00003656908
7615  ENSG00000160191       ENST00000335512 ENSE00003667734
7616  ENSG00000160191       ENST00000335512 ENSE00003645170
7617  ENSG00000160191       ENST00000335512 ENSE00003642531
7618  ENSG00000160191       ENST00000335512 ENSE00003538925
7619  ENSG00000160191       ENST00000335512 ENSE00003602236
7620  ENSG00000160191       ENST00000335512 ENSE00003546441
7621  ENSG00000160191       ENST00000335512 ENSE00003586792
7622  ENSG00000160191       ENST00000335512 ENSE00003561153
7623  ENSG00000160191       ENST00000335512 ENSE00003611375
7624  ENSG00000160191       ENST00000335512 ENSE00003461715
7625  ENSG00000160191       ENST00000335512 ENSE00003490275
7626  ENSG00000160191       ENST00000335512 ENSE00003692648
7627  ENSG00000160191       ENST00000335512 ENSE00003643013
7628  ENSG00000160191       ENST00000470987 ENSE00003517962
7629  ENSG00000160191       ENST00000470987 ENSE00003490488
7630  ENSG00000160191       ENST00000470987 ENSE00003510642
7631  ENSG00000160191       ENST00000470987 ENSE00003548951
7632  ENSG00000160191       ENST00000470987 ENSE00003488958
7633  ENSG00000160191       ENST00000470987 ENSE00003620172
7634  ENSG00000160191       ENST00000470987 ENSE00003629203
7635  ENSG00000160191       ENST00000470987 ENSE00003602426
7636  ENSG00000160191       ENST00000470987 ENSE00003458519
7637  ENSG00000160191       ENST00000470987 ENSE00003686816
7638  ENSG00000160191       ENST00000470987 ENSE00003480474
7639  ENSG00000160191       ENST00000470987 ENSE00003684148
7640  ENSG00000160191       ENST00000470987 ENSE00003483886
7641  ENSG00000160191       ENST00000470987 ENSE00003466425
7642  ENSG00000160191       ENST00000470987 ENSE00003481356
7643  ENSG00000160191       ENST00000470987 ENSE00003641571
7644  ENSG00000160191       ENST00000470987 ENSE00003577931
7645  ENSG00000160191       ENST00000470987 ENSE00003676892
7646  ENSG00000160191       ENST00000470987 ENSE00003518456
7647  ENSG00000160191       ENST00000470987 ENSE00003694465
7648  ENSG00000160191       ENST00000291539 ENSE00003625815
7649  ENSG00000160191       ENST00000291539 ENSE00003565257
7650  ENSG00000160191       ENST00000291539 ENSE00003689265
7651  ENSG00000160191       ENST00000291539 ENSE00003492285
7652  ENSG00000160191       ENST00000291539 ENSE00003656908
7653  ENSG00000160191       ENST00000291539 ENSE00003667734
7654  ENSG00000160191       ENST00000291539 ENSE00003645170
7655  ENSG00000160191       ENST00000291539 ENSE00003642531
7656  ENSG00000160191       ENST00000291539 ENSE00003538925
7657  ENSG00000160191       ENST00000291539 ENSE00003602236
7658  ENSG00000160191       ENST00000291539 ENSE00003546441
7659  ENSG00000160191       ENST00000291539 ENSE00003586792
7660  ENSG00000160191       ENST00000291539 ENSE00003561153
7661  ENSG00000160191       ENST00000291539 ENSE00003611375
7662  ENSG00000160191       ENST00000291539 ENSE00003461715
7663  ENSG00000160191       ENST00000291539 ENSE00003490275
7664  ENSG00000160191       ENST00000291539 ENSE00003692648
7665  ENSG00000160191       ENST00000291539 ENSE00003643013
7666  ENSG00000160191       ENST00000291539 ENSE00003681162
7667  ENSG00000160191       ENST00000291539 ENSE00003691085
7668  ENSG00000160191       ENST00000490803 ENSE00003517962
7669  ENSG00000160191       ENST00000490803 ENSE00003490488
7670  ENSG00000160191       ENST00000490803 ENSE00003510642
7671  ENSG00000160191       ENST00000490803 ENSE00003548951
7672  ENSG00000160191       ENST00000490803 ENSE00003488958
7673  ENSG00000160191       ENST00000490803 ENSE00003458519
7674  ENSG00000160191       ENST00000490803 ENSE00003480474
7675  ENSG00000160191       ENST00000490803 ENSE00003684148
7676  ENSG00000160191       ENST00000490803 ENSE00003483886
7677  ENSG00000160191       ENST00000490803 ENSE00003466425
7678  ENSG00000160191       ENST00000490803 ENSE00003481356
7679  ENSG00000160191       ENST00000490803 ENSE00003641571
7680  ENSG00000160191       ENST00000490803 ENSE00003577931
7681  ENSG00000160191       ENST00000490803 ENSE00003676892
7682  ENSG00000160191       ENST00000490803 ENSE00003518456
7683  ENSG00000160191       ENST00000490803 ENSE00003694465
7684  ENSG00000160191       ENST00000490803 ENSE00003611483
7685  ENSG00000160191       ENST00000486902 ENSE00003620172
7686  ENSG00000160191       ENST00000486902 ENSE00003629203
7687  ENSG00000160191       ENST00000486902 ENSE00003686816
7688  ENSG00000160191       ENST00000486902 ENSE00003667235
7689  ENSG00000160191       ENST00000486902 ENSE00001917796
7690  ENSG00000160191       ENST00000380328 ENSE00003625815
7691  ENSG00000160191       ENST00000380328 ENSE00003565257
7692  ENSG00000160191       ENST00000380328 ENSE00003656908
7693  ENSG00000160191       ENST00000380328 ENSE00003667734
7694  ENSG00000160191       ENST00000380328 ENSE00003645170
7695  ENSG00000160191       ENST00000380328 ENSE00003642531
7696  ENSG00000160191       ENST00000380328 ENSE00003538925
7697  ENSG00000160191       ENST00000380328 ENSE00003602236
7698  ENSG00000160191       ENST00000380328 ENSE00003546441
7699  ENSG00000160191       ENST00000380328 ENSE00003586792
7700  ENSG00000160191       ENST00000380328 ENSE00003561153
7701  ENSG00000160191       ENST00000380328 ENSE00003611375
7702  ENSG00000160191       ENST00000380328 ENSE00003461715
7703  ENSG00000160191       ENST00000380328 ENSE00003490275
7704  ENSG00000160191       ENST00000380328 ENSE00003692648
7705  ENSG00000160191       ENST00000380328 ENSE00003643013
7706  ENSG00000160191       ENST00000380328 ENSE00003577781
7707  ENSG00000160191       ENST00000380328 ENSE00003668628
7708  ENSG00000160191       ENST00000380328 ENSE00003690236
7709  ENSG00000160191       ENST00000495521 ENSE00003490488
7710  ENSG00000160191       ENST00000495521 ENSE00003548951
7711  ENSG00000160191       ENST00000495521 ENSE00003488958
7712  ENSG00000160191       ENST00000495521 ENSE00003686816
7713  ENSG00000160191       ENST00000495521 ENSE00003480474
7714  ENSG00000160191       ENST00000495521 ENSE00003684148
7715  ENSG00000160191       ENST00000495521 ENSE00003483886
7716  ENSG00000160191       ENST00000495521 ENSE00003466425
7717  ENSG00000160191       ENST00000495521 ENSE00003481356
7718  ENSG00000160191       ENST00000495521 ENSE00003641571
7719  ENSG00000160191       ENST00000495521 ENSE00003577931
7720  ENSG00000160191       ENST00000495521 ENSE00003676892
7721  ENSG00000160191       ENST00000495521 ENSE00003518456
7722  ENSG00000160191       ENST00000495521 ENSE00003694465
7723  ENSG00000160191       ENST00000495521 ENSE00003667235
7724  ENSG00000160191       ENST00000398232 ENSE00003689265
7725  ENSG00000160191       ENST00000398232 ENSE00003492285
7726  ENSG00000160191       ENST00000398232 ENSE00003656908
7727  ENSG00000160191       ENST00000398232 ENSE00003667734
7728  ENSG00000160191       ENST00000398232 ENSE00003645170
7729  ENSG00000160191       ENST00000398232 ENSE00003642531
7730  ENSG00000160191       ENST00000398232 ENSE00003538925
7731  ENSG00000160191       ENST00000398232 ENSE00003602236
7732  ENSG00000160191       ENST00000398232 ENSE00003546441
7733  ENSG00000160191       ENST00000398232 ENSE00003586792
7734  ENSG00000160191       ENST00000398232 ENSE00003561153
7735  ENSG00000160191       ENST00000398232 ENSE00003611375
7736  ENSG00000160191       ENST00000398232 ENSE00003461715
7737  ENSG00000160191       ENST00000398232 ENSE00003490275
7738  ENSG00000160191       ENST00000398232 ENSE00003692648
7739  ENSG00000160191       ENST00000398232 ENSE00003643013
7740  ENSG00000160191       ENST00000398232 ENSE00003691085
7741  ENSG00000160191       ENST00000398232 ENSE00003522588
7742  ENSG00000160191       ENST00000462571 ENSE00003517962
7743  ENSG00000160191       ENST00000462571 ENSE00003490488
7744  ENSG00000160191       ENST00000462571 ENSE00003510642
7745  ENSG00000160191       ENST00000462571 ENSE00003548951
7746  ENSG00000160191       ENST00000462571 ENSE00003488958
7747  ENSG00000160191       ENST00000462571 ENSE00003686816
7748  ENSG00000160191       ENST00000462571 ENSE00003480474
7749  ENSG00000160191       ENST00000462571 ENSE00003684148
7750  ENSG00000160191       ENST00000462571 ENSE00003483886
7751  ENSG00000160191       ENST00000462571 ENSE00003466425
7752  ENSG00000160191       ENST00000462571 ENSE00003481356
7753  ENSG00000160191       ENST00000462571 ENSE00003641571
7754  ENSG00000160191       ENST00000462571 ENSE00003577931
7755  ENSG00000160191       ENST00000462571 ENSE00003676892
7756  ENSG00000160191       ENST00000462571 ENSE00003518456
7757  ENSG00000160191       ENST00000462571 ENSE00003694465
7758  ENSG00000160191       ENST00000462571 ENSE00003667235
7759  ENSG00000160191       ENST00000462571 ENSE00001899580
7760  ENSG00000160191       ENST00000398234 ENSE00003565257
7761  ENSG00000160191       ENST00000398234 ENSE00003689265
7762  ENSG00000160191       ENST00000398234 ENSE00003492285
7763  ENSG00000160191       ENST00000398234 ENSE00003656908
7764  ENSG00000160191       ENST00000398234 ENSE00003667734
7765  ENSG00000160191       ENST00000398234 ENSE00003645170
7766  ENSG00000160191       ENST00000398234 ENSE00003642531
7767  ENSG00000160191       ENST00000398234 ENSE00003538925
7768  ENSG00000160191       ENST00000398234 ENSE00003602236
7769  ENSG00000160191       ENST00000398234 ENSE00003546441
7770  ENSG00000160191       ENST00000398234 ENSE00003586792
7771  ENSG00000160191       ENST00000398234 ENSE00003561153
7772  ENSG00000160191       ENST00000398234 ENSE00003611375
7773  ENSG00000160191       ENST00000398234 ENSE00003461715
7774  ENSG00000160191       ENST00000398234 ENSE00003490275
7775  ENSG00000160191       ENST00000398234 ENSE00003692648
7776  ENSG00000160191       ENST00000398234 ENSE00003643013
7777  ENSG00000160191       ENST00000398234 ENSE00003522588
7778  ENSG00000160191       ENST00000398236 ENSE00003625815
7779  ENSG00000160191       ENST00000398236 ENSE00003689265
7780  ENSG00000160191       ENST00000398236 ENSE00003492285
7781  ENSG00000160191       ENST00000398236 ENSE00003656908
7782  ENSG00000160191       ENST00000398236 ENSE00003667734
7783  ENSG00000160191       ENST00000398236 ENSE00003645170
7784  ENSG00000160191       ENST00000398236 ENSE00003642531
7785  ENSG00000160191       ENST00000398236 ENSE00003538925
7786  ENSG00000160191       ENST00000398236 ENSE00003602236
7787  ENSG00000160191       ENST00000398236 ENSE00003546441
7788  ENSG00000160191       ENST00000398236 ENSE00003586792
7789  ENSG00000160191       ENST00000398236 ENSE00003561153
7790  ENSG00000160191       ENST00000398236 ENSE00003611375
7791  ENSG00000160191       ENST00000398236 ENSE00003461715
7792  ENSG00000160191       ENST00000398236 ENSE00003490275
7793  ENSG00000160191       ENST00000398236 ENSE00003692648
7794  ENSG00000160191       ENST00000398236 ENSE00003643013
7795  ENSG00000160191       ENST00000398236 ENSE00003577781
7796  ENSG00000160191       ENST00000468805 ENSE00003490488
7797  ENSG00000160191       ENST00000468805 ENSE00003510642
7798  ENSG00000160191       ENST00000468805 ENSE00003548951
7799  ENSG00000160191       ENST00000468805 ENSE00003488958
7800  ENSG00000160191       ENST00000468805 ENSE00003620172
7801  ENSG00000160191       ENST00000468805 ENSE00003686816
7802  ENSG00000160191       ENST00000468805 ENSE00003480474
7803  ENSG00000160191       ENST00000468805 ENSE00003684148
7804  ENSG00000160191       ENST00000468805 ENSE00003483886
7805  ENSG00000160191       ENST00000468805 ENSE00003466425
7806  ENSG00000160191       ENST00000468805 ENSE00003481356
7807  ENSG00000160191       ENST00000468805 ENSE00003641571
7808  ENSG00000160191       ENST00000468805 ENSE00003577931
7809  ENSG00000160191       ENST00000468805 ENSE00003676892
7810  ENSG00000160191       ENST00000468805 ENSE00003518456
7811  ENSG00000160191       ENST00000468805 ENSE00003694465
7812  ENSG00000160191       ENST00000468805 ENSE00003667235
7813  ENSG00000160191       ENST00000328862 ENSE00003625815
7814  ENSG00000160191       ENST00000328862 ENSE00003689265
7815  ENSG00000160191       ENST00000328862 ENSE00003492285
7816  ENSG00000160191       ENST00000328862 ENSE00003656908
7817  ENSG00000160191       ENST00000328862 ENSE00003667734
7818  ENSG00000160191       ENST00000328862 ENSE00003645170
7819  ENSG00000160191       ENST00000328862 ENSE00003642531
7820  ENSG00000160191       ENST00000328862 ENSE00003538925
7821  ENSG00000160191       ENST00000328862 ENSE00003602236
7822  ENSG00000160191       ENST00000328862 ENSE00003546441
7823  ENSG00000160191       ENST00000328862 ENSE00003586792
7824  ENSG00000160191       ENST00000328862 ENSE00003561153
7825  ENSG00000160191       ENST00000328862 ENSE00003611375
7826  ENSG00000160191       ENST00000328862 ENSE00003461715
7827  ENSG00000160191       ENST00000328862 ENSE00003490275
7828  ENSG00000160191       ENST00000328862 ENSE00003692648
7829  ENSG00000160191       ENST00000328862 ENSE00003643013
7830  ENSG00000160191       ENST00000328862 ENSE00003691085
7831  ENSG00000160191       ENST00000328862 ENSE00003577781
7832  ENSG00000160191       ENST00000335440 ENSE00003656908
7833  ENSG00000160191       ENST00000335440 ENSE00003667734
7834  ENSG00000160191       ENST00000335440 ENSE00003645170
7835  ENSG00000160191       ENST00000335440 ENSE00003642531
7836  ENSG00000160191       ENST00000335440 ENSE00003538925
7837  ENSG00000160191       ENST00000335440 ENSE00003602236
7838  ENSG00000160191       ENST00000335440 ENSE00003546441
7839  ENSG00000160191       ENST00000335440 ENSE00003586792
7840  ENSG00000160191       ENST00000335440 ENSE00003561153
7841  ENSG00000160191       ENST00000335440 ENSE00003611375
7842  ENSG00000160191       ENST00000335440 ENSE00003461715
7843  ENSG00000160191       ENST00000335440 ENSE00003490275
7844  ENSG00000160191       ENST00000335440 ENSE00003692648
7845  ENSG00000160191       ENST00000335440 ENSE00003643013
7846  ENSG00000160191       ENST00000335440 ENSE00003577781
7847  ENSG00000160191       ENST00000335440 ENSE00003690236
7848  ENSG00000160191       ENST00000335440 ENSE00003508313
7849  ENSG00000160191       ENST00000398225 ENSE00003565257
7850  ENSG00000160191       ENST00000398225 ENSE00003689265
7851  ENSG00000160191       ENST00000398225 ENSE00003492285
7852  ENSG00000160191       ENST00000398225 ENSE00003656908
7853  ENSG00000160191       ENST00000398225 ENSE00003667734
7854  ENSG00000160191       ENST00000398225 ENSE00003645170
7855  ENSG00000160191       ENST00000398225 ENSE00003642531
7856  ENSG00000160191       ENST00000398225 ENSE00003538925
7857  ENSG00000160191       ENST00000398225 ENSE00003602236
7858  ENSG00000160191       ENST00000398225 ENSE00003546441
7859  ENSG00000160191       ENST00000398225 ENSE00003586792
7860  ENSG00000160191       ENST00000398225 ENSE00003561153
7861  ENSG00000160191       ENST00000398225 ENSE00003611375
7862  ENSG00000160191       ENST00000398225 ENSE00003461715
7863  ENSG00000160191       ENST00000398225 ENSE00003490275
7864  ENSG00000160191       ENST00000398225 ENSE00003692648
7865  ENSG00000160191       ENST00000398225 ENSE00003643013
7866  ENSG00000160191       ENST00000398225 ENSE00003691085
7867  ENSG00000160191       ENST00000398225 ENSE00003522588
7868  ENSG00000160191       ENST00000497805 ENSE00003490488
7869  ENSG00000160191       ENST00000497805 ENSE00003510642
7870  ENSG00000160191       ENST00000497805 ENSE00003548951
7871  ENSG00000160191       ENST00000497805 ENSE00003488958
7872  ENSG00000160191       ENST00000497805 ENSE00003629203
7873  ENSG00000160191       ENST00000497805 ENSE00003686816
7874  ENSG00000160191       ENST00000497805 ENSE00003480474
7875  ENSG00000160191       ENST00000497805 ENSE00003684148
7876  ENSG00000160191       ENST00000497805 ENSE00003483886
7877  ENSG00000160191       ENST00000497805 ENSE00003466425
7878  ENSG00000160191       ENST00000497805 ENSE00003481356
7879  ENSG00000160191       ENST00000497805 ENSE00003641571
7880  ENSG00000160191       ENST00000497805 ENSE00003577931
7881  ENSG00000160191       ENST00000497805 ENSE00003676892
7882  ENSG00000160191       ENST00000497805 ENSE00003518456
7883  ENSG00000160191       ENST00000497805 ENSE00003694465
7884  ENSG00000160191       ENST00000497805 ENSE00003611483
7885  ENSG00000160191       ENST00000497805 ENSE00003667235
7886  ENSG00000160191       ENST00000398229 ENSE00003565257
7887  ENSG00000160191       ENST00000398229 ENSE00003656908
7888  ENSG00000160191       ENST00000398229 ENSE00003667734
7889  ENSG00000160191       ENST00000398229 ENSE00003645170
7890  ENSG00000160191       ENST00000398229 ENSE00003642531
7891  ENSG00000160191       ENST00000398229 ENSE00003538925
7892  ENSG00000160191       ENST00000398229 ENSE00003602236
7893  ENSG00000160191       ENST00000398229 ENSE00003546441
7894  ENSG00000160191       ENST00000398229 ENSE00003586792
7895  ENSG00000160191       ENST00000398229 ENSE00003561153
7896  ENSG00000160191       ENST00000398229 ENSE00003611375
7897  ENSG00000160191       ENST00000398229 ENSE00003461715
7898  ENSG00000160191       ENST00000398229 ENSE00003490275
7899  ENSG00000160191       ENST00000398229 ENSE00003692648
7900  ENSG00000160191       ENST00000398229 ENSE00003643013
7901  ENSG00000160191       ENST00000398229 ENSE00003522588
7902  ENSG00000160191       ENST00000398227 ENSE00003656908
7903  ENSG00000160191       ENST00000398227 ENSE00003667734
7904  ENSG00000160191       ENST00000398227 ENSE00003645170
7905  ENSG00000160191       ENST00000398227 ENSE00003642531
7906  ENSG00000160191       ENST00000398227 ENSE00003538925
7907  ENSG00000160191       ENST00000398227 ENSE00003602236
7908  ENSG00000160191       ENST00000398227 ENSE00003546441
7909  ENSG00000160191       ENST00000398227 ENSE00003586792
7910  ENSG00000160191       ENST00000398227 ENSE00003561153
7911  ENSG00000160191       ENST00000398227 ENSE00003611375
7912  ENSG00000160191       ENST00000398227 ENSE00003461715
7913  ENSG00000160191       ENST00000398227 ENSE00003490275
7914  ENSG00000160191       ENST00000398227 ENSE00003692648
7915  ENSG00000160191       ENST00000398227 ENSE00003643013
7916  ENSG00000160191       ENST00000398227 ENSE00003522588
7917  ENSG00000160191       ENST00000460989 ENSE00003490488
7918  ENSG00000160191       ENST00000460989 ENSE00003548951
7919  ENSG00000160191       ENST00000460989 ENSE00003488958
7920  ENSG00000160191       ENST00000460989 ENSE00003480474
7921  ENSG00000160191       ENST00000460989 ENSE00003684148
7922  ENSG00000160191       ENST00000460989 ENSE00003483886
7923  ENSG00000160191       ENST00000460989 ENSE00003466425
7924  ENSG00000160191       ENST00000460989 ENSE00003481356
7925  ENSG00000160191       ENST00000460989 ENSE00003641571
7926  ENSG00000160191       ENST00000460989 ENSE00003577931
7927  ENSG00000160191       ENST00000460989 ENSE00003676892
7928  ENSG00000160191       ENST00000460989 ENSE00003518456
7929  ENSG00000160191       ENST00000460989 ENSE00003694465
7930  ENSG00000160191       ENST00000460989 ENSE00003667235
7931  ENSG00000160191       ENST00000467403 ENSE00003517962
7932  ENSG00000160191       ENST00000467403 ENSE00003490488
7933  ENSG00000160191       ENST00000467403 ENSE00003510642
7934  ENSG00000160191       ENST00000467403 ENSE00003548951
7935  ENSG00000160191       ENST00000467403 ENSE00003488958
7936  ENSG00000160191       ENST00000467403 ENSE00003480474
7937  ENSG00000160191       ENST00000467403 ENSE00003684148
7938  ENSG00000160191       ENST00000467403 ENSE00003483886
7939  ENSG00000160191       ENST00000467403 ENSE00003466425
7940  ENSG00000160191       ENST00000467403 ENSE00003481356
7941  ENSG00000160191       ENST00000467403 ENSE00003641571
7942  ENSG00000160191       ENST00000467403 ENSE00003577931
7943  ENSG00000160191       ENST00000467403 ENSE00003676892
7944  ENSG00000160191       ENST00000467403 ENSE00003518456
7945  ENSG00000160191       ENST00000467403 ENSE00003694465
7946  ENSG00000160191       ENST00000467403 ENSE00003667235
7947  ENSG00000160191       ENST00000349112 ENSE00003656908
7948  ENSG00000160191       ENST00000349112 ENSE00003667734
7949  ENSG00000160191       ENST00000349112 ENSE00003645170
7950  ENSG00000160191       ENST00000349112 ENSE00003642531
7951  ENSG00000160191       ENST00000349112 ENSE00003538925
7952  ENSG00000160191       ENST00000349112 ENSE00003602236
7953  ENSG00000160191       ENST00000349112 ENSE00003546441
7954  ENSG00000160191       ENST00000349112 ENSE00003586792
7955  ENSG00000160191       ENST00000349112 ENSE00003561153
7956  ENSG00000160191       ENST00000349112 ENSE00003611375
7957  ENSG00000160191       ENST00000349112 ENSE00003461715
7958  ENSG00000160191       ENST00000349112 ENSE00003490275
7959  ENSG00000160191       ENST00000349112 ENSE00003692648
7960  ENSG00000160191       ENST00000349112 ENSE00003643013
7961  ENSG00000160191       ENST00000349112 ENSE00003690236
7962  ENSG00000160191       ENST00000349112 ENSE00003538927
7963  ENSG00000160191       ENST00000398224 ENSE00003689265
7964  ENSG00000160191       ENST00000398224 ENSE00003492285
7965  ENSG00000160191       ENST00000398224 ENSE00003656908
7966  ENSG00000160191       ENST00000398224 ENSE00003667734
7967  ENSG00000160191       ENST00000398224 ENSE00003645170
7968  ENSG00000160191       ENST00000398224 ENSE00003642531
7969  ENSG00000160191       ENST00000398224 ENSE00003538925
7970  ENSG00000160191       ENST00000398224 ENSE00003602236
7971  ENSG00000160191       ENST00000398224 ENSE00003546441
7972  ENSG00000160191       ENST00000398224 ENSE00003586792
7973  ENSG00000160191       ENST00000398224 ENSE00003561153
7974  ENSG00000160191       ENST00000398224 ENSE00003611375
7975  ENSG00000160191       ENST00000398224 ENSE00003461715
7976  ENSG00000160191       ENST00000398224 ENSE00003490275
7977  ENSG00000160191       ENST00000398224 ENSE00003692648
7978  ENSG00000160191       ENST00000398224 ENSE00003643013
7979  ENSG00000160191       ENST00000398224 ENSE00003628617
7980  ENSG00000160191       ENST00000467162 ENSE00003517962
7981  ENSG00000160191       ENST00000467162 ENSE00003490488
7982  ENSG00000160191       ENST00000467162 ENSE00003548951
7983  ENSG00000160191       ENST00000467162 ENSE00003488958
7984  ENSG00000160191       ENST00000467162 ENSE00003629203
7985  ENSG00000160191       ENST00000467162 ENSE00003686816
7986  ENSG00000160191       ENST00000467162 ENSE00003480474
7987  ENSG00000160191       ENST00000467162 ENSE00003684148
7988  ENSG00000160191       ENST00000467162 ENSE00003483886
7989  ENSG00000160191       ENST00000467162 ENSE00001895084
7990  ENSG00000160191       ENST00000467162 ENSE00001892956
7991  ENSG00000160191       ENST00000495343 ENSE00003517962
7992  ENSG00000160191       ENST00000495343 ENSE00003490488
7993  ENSG00000160191       ENST00000495343 ENSE00003548951
7994  ENSG00000160191       ENST00000495343 ENSE00003488958
7995  ENSG00000160191       ENST00000495343 ENSE00003480474
7996  ENSG00000160191       ENST00000495343 ENSE00003684148
7997  ENSG00000160191       ENST00000495343 ENSE00003483886
7998  ENSG00000160191       ENST00000495343 ENSE00003466425
7999  ENSG00000160191       ENST00000495343 ENSE00003481356
8000  ENSG00000160191       ENST00000495343 ENSE00003641571
8001  ENSG00000160191       ENST00000495343 ENSE00003577931
8002  ENSG00000160191       ENST00000495343 ENSE00003676892
8003  ENSG00000160191       ENST00000495343 ENSE00003518456
8004  ENSG00000160191       ENST00000495343 ENSE00003694465
8005  ENSG00000160191       ENST00000495343 ENSE00001867279
8006  ENSG00000160191       ENST00000489319 ENSE00003684148
8007  ENSG00000160191       ENST00000489319 ENSE00003483886
8008  ENSG00000160191       ENST00000489319 ENSE00003466425
8009  ENSG00000160191       ENST00000489319 ENSE00003481356
8010  ENSG00000160191       ENST00000489319 ENSE00003641571
8011  ENSG00000160191       ENST00000489319 ENSE00003577931
8012  ENSG00000160191       ENST00000489319 ENSE00003676892
8013  ENSG00000160191       ENST00000489319 ENSE00003518456
8014  ENSG00000160191       ENST00000489319 ENSE00003694465
8015  ENSG00000160191       ENST00000489319 ENSE00001943585
8016  ENSG00000160191       ENST00000466472 ENSE00003481356
8017  ENSG00000160191       ENST00000466472 ENSE00001934640
8018  ENSG00000160191       ENST00000466472 ENSE00001918948
8019  ENSG00000160188       ENST00000493019 ENSE00001872951
8020  ENSG00000160188       ENST00000493019 ENSE00003595360
8021  ENSG00000160188       ENST00000493019 ENSE00003526573
8022  ENSG00000160188       ENST00000493019 ENSE00001816987
8023  ENSG00000160188       ENST00000493019 ENSE00003580117
8024  ENSG00000160188       ENST00000493019 ENSE00003471308
8025  ENSG00000160188       ENST00000493019 ENSE00003481292
8026  ENSG00000160188       ENST00000493019 ENSE00003530493
8027  ENSG00000160188       ENST00000291536 ENSE00001327702
8028  ENSG00000160188       ENST00000291536 ENSE00003467057
8029  ENSG00000160188       ENST00000291536 ENSE00003642321
8030  ENSG00000160188       ENST00000291536 ENSE00001109814
8031  ENSG00000160188       ENST00000291536 ENSE00001109809
8032  ENSG00000160188       ENST00000291536 ENSE00003590447
8033  ENSG00000160188       ENST00000291536 ENSE00003488576
8034  ENSG00000160188       ENST00000291536 ENSE00003493888
8035  ENSG00000160188       ENST00000291536 ENSE00003645485
8036  ENSG00000160188       ENST00000398352 ENSE00003642321
8037  ENSG00000160188       ENST00000398352 ENSE00001109814
8038  ENSG00000160188       ENST00000398352 ENSE00001109809
8039  ENSG00000160188       ENST00000398352 ENSE00003590447
8040  ENSG00000160188       ENST00000398352 ENSE00003488576
8041  ENSG00000160188       ENST00000398352 ENSE00003493888
8042  ENSG00000160188       ENST00000398352 ENSE00001826404
8043  ENSG00000160188       ENST00000398352 ENSE00001855346
8044  ENSG00000223671       ENST00000421454 ENSE00001729205
8045  ENSG00000229761       ENST00000434853 ENSE00001628169
8046  ENSG00000230794       ENST00000412240 ENSE00001667321
8047  ENSG00000230794       ENST00000412240 ENSE00001690811
8048  ENSG00000159216       ENST00000344691 ENSE00001380483
8049  ENSG00000159216       ENST00000344691 ENSE00003519701
8050  ENSG00000159216       ENST00000344691 ENSE00003512550
8051  ENSG00000159216       ENST00000344691 ENSE00003788902
8052  ENSG00000159216       ENST00000344691 ENSE00003559527
8053  ENSG00000159216       ENST00000344691 ENSE00002287560
8054  ENSG00000159216       ENST00000300305 ENSE00003519701
8055  ENSG00000159216       ENST00000300305 ENSE00003512550
8056  ENSG00000159216       ENST00000300305 ENSE00003788902
8057  ENSG00000159216       ENST00000300305 ENSE00003559527
8058  ENSG00000159216       ENST00000300305 ENSE00002287560
8059  ENSG00000159216       ENST00000300305 ENSE00001317351
8060  ENSG00000159216       ENST00000300305 ENSE00003790369
8061  ENSG00000159216       ENST00000300305 ENSE00002454902
8062  ENSG00000159216       ENST00000482318 ENSE00001877026
8063  ENSG00000159216       ENST00000482318 ENSE00003704290
8064  ENSG00000159216       ENST00000482318 ENSE00003488338
8065  ENSG00000159216       ENST00000482318 ENSE00003661108
8066  ENSG00000159216       ENST00000482318 ENSE00003479797
8067  ENSG00000159216       ENST00000482318 ENSE00003535832
8068  ENSG00000159216       ENST00000482318 ENSE00001909211
8069  ENSG00000159216       ENST00000399240 ENSE00003519701
8070  ENSG00000159216       ENST00000399240 ENSE00003512550
8071  ENSG00000159216       ENST00000399240 ENSE00003559527
8072  ENSG00000159216       ENST00000399240 ENSE00001537135
8073  ENSG00000159216       ENST00000399240 ENSE00001537132
8074  ENSG00000159216       ENST00000479325 ENSE00001936216
8075  ENSG00000159216       ENST00000479325 ENSE00003608863
8076  ENSG00000159216       ENST00000358356 ENSE00001380483
8077  ENSG00000159216       ENST00000358356 ENSE00003519701
8078  ENSG00000159216       ENST00000358356 ENSE00003512550
8079  ENSG00000159216       ENST00000358356 ENSE00003788902
8080  ENSG00000159216       ENST00000358356 ENSE00003654721
8081  ENSG00000159216       ENST00000469087 ENSE00001887888
8082  ENSG00000159216       ENST00000469087 ENSE00001927669
8083  ENSG00000159216       ENST00000399237 ENSE00003519701
8084  ENSG00000159216       ENST00000399237 ENSE00003512550
8085  ENSG00000159216       ENST00000399237 ENSE00003788902
8086  ENSG00000159216       ENST00000399237 ENSE00002454902
8087  ENSG00000159216       ENST00000399237 ENSE00001780556
8088  ENSG00000159216       ENST00000467577 ENSE00003661108
8089  ENSG00000159216       ENST00000467577 ENSE00001817260
8090  ENSG00000159216       ENST00000455571 ENSE00002454902
8091  ENSG00000159216       ENST00000455571 ENSE00003704290
8092  ENSG00000159216       ENST00000455571 ENSE00001745508
8093  ENSG00000159216       ENST00000455571 ENSE00001802332
8094  ENSG00000159216       ENST00000475045 ENSE00003790369
8095  ENSG00000159216       ENST00000475045 ENSE00003704290
8096  ENSG00000159216       ENST00000475045 ENSE00003704169
8097  ENSG00000159216       ENST00000475045 ENSE00003707665
8098  ENSG00000159216       ENST00000475045 ENSE00001858910
8099  ENSG00000159216       ENST00000475045 ENSE00001840292
8100  ENSG00000159216       ENST00000475045 ENSE00002477305
8101  ENSG00000159216       ENST00000475045 ENSE00001841260
8102  ENSG00000159216       ENST00000475045 ENSE00001921911
8103  ENSG00000159216       ENST00000475045 ENSE00001851690
8104  ENSG00000159216       ENST00000475045 ENSE00001814878
8105  ENSG00000159216       ENST00000475045 ENSE00001822156
8106  ENSG00000159216       ENST00000475045 ENSE00001949821
8107  ENSG00000159216       ENST00000416754 ENSE00003790369
8108  ENSG00000159216       ENST00000416754 ENSE00003704290
8109  ENSG00000159216       ENST00000416754 ENSE00001595684
8110  ENSG00000159216       ENST00000468726 ENSE00001822156
8111  ENSG00000159216       ENST00000468726 ENSE00001819641
8112  ENSG00000159216       ENST00000467692 ENSE00001814878
8113  ENSG00000159216       ENST00000467692 ENSE00001858662
8114  ENSG00000159216       ENST00000467692 ENSE00001914443
8115  ENSG00000159216       ENST00000494829 ENSE00001814878
8116  ENSG00000159216       ENST00000494829 ENSE00001891207
8117  ENSG00000159216       ENST00000494829 ENSE00001869802
8118  ENSG00000159216       ENST00000460207 ENSE00001840292
8119  ENSG00000159216       ENST00000460207 ENSE00002477305
8120  ENSG00000159216       ENST00000460207 ENSE00001920158
8121  ENSG00000159216       ENST00000460207 ENSE00001889950
8122  ENSG00000159216       ENST00000437180 ENSE00003519701
8123  ENSG00000159216       ENST00000437180 ENSE00003512550
8124  ENSG00000159216       ENST00000437180 ENSE00003788902
8125  ENSG00000159216       ENST00000437180 ENSE00003559527
8126  ENSG00000159216       ENST00000437180 ENSE00002287560
8127  ENSG00000159216       ENST00000437180 ENSE00003790369
8128  ENSG00000159216       ENST00000437180 ENSE00002454902
8129  ENSG00000159216       ENST00000437180 ENSE00003704290
8130  ENSG00000159216       ENST00000437180 ENSE00001745508
8131  ENSG00000226054       ENST00000452572 ENSE00001655365
8132  ENSG00000244676       ENST00000428689 ENSE00001782668
8133  ENSG00000244676       ENST00000428689 ENSE00001713116
8134  ENSG00000244676       ENST00000454737 ENSE00001713116
8135  ENSG00000244676       ENST00000454737 ENSE00001689198
8136  ENSG00000215458       ENST00000437258 ENSE00001696564
8137  ENSG00000215458       ENST00000437258 ENSE00001542670
8138  ENSG00000215458       ENST00000448247 ENSE00001542670
8139  ENSG00000215458       ENST00000448247 ENSE00003678800
8140  ENSG00000215458       ENST00000448247 ENSE00001684957
8141  ENSG00000215458       ENST00000448247 ENSE00001538942
8142  ENSG00000215458       ENST00000400385 ENSE00001542670
8143  ENSG00000215458       ENST00000400385 ENSE00001542671
8144  ENSG00000273115       ENST00000608410 ENSE00003706216
8145  ENSG00000256073       ENST00000534991 ENSE00002210111
8146  ENSG00000160209       ENST00000398081 ENSE00001531495
8147  ENSG00000160209       ENST00000398081 ENSE00003585237
8148  ENSG00000160209       ENST00000398081 ENSE00001531493
8149  ENSG00000160209       ENST00000468090 ENSE00003585237
8150  ENSG00000160209       ENST00000468090 ENSE00001376263
8151  ENSG00000160209       ENST00000468090 ENSE00003670847
8152  ENSG00000160209       ENST00000468090 ENSE00003694032
8153  ENSG00000160209       ENST00000468090 ENSE00003534315
8154  ENSG00000160209       ENST00000468090 ENSE00003489627
8155  ENSG00000160209       ENST00000468090 ENSE00003583352
8156  ENSG00000160209       ENST00000468090 ENSE00003552597
8157  ENSG00000160209       ENST00000468090 ENSE00003647981
8158  ENSG00000160209       ENST00000468090 ENSE00003043881
8159  ENSG00000160209       ENST00000291565 ENSE00003585237
8160  ENSG00000160209       ENST00000291565 ENSE00003670847
8161  ENSG00000160209       ENST00000291565 ENSE00003694032
8162  ENSG00000160209       ENST00000291565 ENSE00003534315
8163  ENSG00000160209       ENST00000291565 ENSE00003489627
8164  ENSG00000160209       ENST00000291565 ENSE00003583352
8165  ENSG00000160209       ENST00000291565 ENSE00003552597
8166  ENSG00000160209       ENST00000291565 ENSE00003647981
8167  ENSG00000160209       ENST00000291565 ENSE00003043881
8168  ENSG00000160209       ENST00000291565 ENSE00001861574
8169  ENSG00000160209       ENST00000291565 ENSE00003511412
8170  ENSG00000160209       ENST00000398085 ENSE00001822483
8171  ENSG00000160209       ENST00000398085 ENSE00003478560
8172  ENSG00000160209       ENST00000398085 ENSE00003584320
8173  ENSG00000160209       ENST00000398085 ENSE00001865037
8174  ENSG00000160209       ENST00000398085 ENSE00003573041
8175  ENSG00000160209       ENST00000398085 ENSE00003633585
8176  ENSG00000160209       ENST00000398085 ENSE00003500846
8177  ENSG00000160209       ENST00000398085 ENSE00003573966
8178  ENSG00000160209       ENST00000476084 ENSE00001928563
8179  ENSG00000160209       ENST00000476084 ENSE00001949080
8180  ENSG00000160209       ENST00000470029 ENSE00003478560
8181  ENSG00000160209       ENST00000470029 ENSE00003584320
8182  ENSG00000160209       ENST00000470029 ENSE00001868734
8183  ENSG00000160209       ENST00000470029 ENSE00003617125
8184  ENSG00000160209       ENST00000470029 ENSE00001823145
8185  ENSG00000160209       ENST00000438837 ENSE00001736120
8186  ENSG00000160209       ENST00000438837 ENSE00001722546
8187  ENSG00000160209       ENST00000498040 ENSE00003478560
8188  ENSG00000160209       ENST00000498040 ENSE00003584320
8189  ENSG00000160209       ENST00000498040 ENSE00003573041
8190  ENSG00000160209       ENST00000498040 ENSE00003633585
8191  ENSG00000160209       ENST00000498040 ENSE00003500846
8192  ENSG00000160209       ENST00000498040 ENSE00003573966
8193  ENSG00000160209       ENST00000498040 ENSE00003617125
8194  ENSG00000160209       ENST00000498040 ENSE00001933485
8195  ENSG00000160209       ENST00000498040 ENSE00001926471
8196  ENSG00000160209       ENST00000327574 ENSE00003585237
8197  ENSG00000160209       ENST00000327574 ENSE00001531493
8198  ENSG00000160209       ENST00000327574 ENSE00001434352
8199  ENSG00000160209       ENST00000327574 ENSE00001432839
8200  ENSG00000160209       ENST00000472777 ENSE00003478560
8201  ENSG00000160209       ENST00000472777 ENSE00003584320
8202  ENSG00000160209       ENST00000472777 ENSE00003573041
8203  ENSG00000160209       ENST00000472777 ENSE00003617125
8204  ENSG00000160209       ENST00000472777 ENSE00001813503
8205  ENSG00000160209       ENST00000472777 ENSE00001881690
8206  ENSG00000160209       ENST00000476313 ENSE00003478560
8207  ENSG00000160209       ENST00000476313 ENSE00001920411
8208  ENSG00000160209       ENST00000476313 ENSE00001861531
8209  ENSG00000160209       ENST00000476313 ENSE00001880782
8210  ENSG00000160209       ENST00000481512 ENSE00003478560
8211  ENSG00000160209       ENST00000481512 ENSE00003584320
8212  ENSG00000160209       ENST00000481512 ENSE00003573041
8213  ENSG00000160209       ENST00000481512 ENSE00003633585
8214  ENSG00000160209       ENST00000481512 ENSE00003500846
8215  ENSG00000160209       ENST00000481512 ENSE00003573966
8216  ENSG00000160209       ENST00000481512 ENSE00003617125
8217  ENSG00000160209       ENST00000481512 ENSE00001954980
8218  ENSG00000160209       ENST00000481512 ENSE00002486241
8219  ENSG00000160209       ENST00000490666 ENSE00003584320
8220  ENSG00000160209       ENST00000490666 ENSE00003573041
8221  ENSG00000160209       ENST00000490666 ENSE00003633585
8222  ENSG00000160209       ENST00000490666 ENSE00003500846
8223  ENSG00000160209       ENST00000490666 ENSE00003573966
8224  ENSG00000160209       ENST00000490666 ENSE00003617125
8225  ENSG00000160209       ENST00000490666 ENSE00001926471
8226  ENSG00000160209       ENST00000490666 ENSE00001957154
8227  ENSG00000160209       ENST00000467908 ENSE00003670847
8228  ENSG00000160209       ENST00000467908 ENSE00003694032
8229  ENSG00000160209       ENST00000467908 ENSE00003534315
8230  ENSG00000160209       ENST00000467908 ENSE00003489627
8231  ENSG00000160209       ENST00000467908 ENSE00003583352
8232  ENSG00000160209       ENST00000467908 ENSE00003552597
8233  ENSG00000160209       ENST00000467908 ENSE00003647981
8234  ENSG00000160209       ENST00000467908 ENSE00003043881
8235  ENSG00000160209       ENST00000467908 ENSE00003511412
8236  ENSG00000160209       ENST00000467908 ENSE00001955629
8237  ENSG00000160209       ENST00000343528 ENSE00003584320
8238  ENSG00000160209       ENST00000343528 ENSE00003573041
8239  ENSG00000160209       ENST00000343528 ENSE00003633585
8240  ENSG00000160209       ENST00000343528 ENSE00003500846
8241  ENSG00000160209       ENST00000343528 ENSE00003573966
8242  ENSG00000160209       ENST00000343528 ENSE00003617125
8243  ENSG00000160209       ENST00000343528 ENSE00001757941
8244  ENSG00000160209       ENST00000343528 ENSE00003626994
8245  ENSG00000160209       ENST00000343528 ENSE00003610600
8246  ENSG00000160209       ENST00000343528 ENSE00001897856
8247  ENSG00000160209       ENST00000398078 ENSE00003573041
8248  ENSG00000160209       ENST00000398078 ENSE00003633585
8249  ENSG00000160209       ENST00000398078 ENSE00003500846
8250  ENSG00000160209       ENST00000398078 ENSE00003573966
8251  ENSG00000160209       ENST00000398078 ENSE00003617125
8252  ENSG00000160209       ENST00000398078 ENSE00003626994
8253  ENSG00000160209       ENST00000398078 ENSE00003610600
8254  ENSG00000160209       ENST00000398078 ENSE00001899869
8255  ENSG00000160209       ENST00000398078 ENSE00001899812
8256  ENSG00000160209       ENST00000468392 ENSE00003633585
8257  ENSG00000160209       ENST00000468392 ENSE00003500846
8258  ENSG00000160209       ENST00000468392 ENSE00003573966
8259  ENSG00000160209       ENST00000468392 ENSE00003626994
8260  ENSG00000160209       ENST00000468392 ENSE00003610600
8261  ENSG00000160209       ENST00000468392 ENSE00001951613
8262  ENSG00000160209       ENST00000468392 ENSE00001887017
8263  ENSG00000160209       ENST00000461123 ENSE00003626994
8264  ENSG00000160209       ENST00000461123 ENSE00001810387
8265  ENSG00000160209       ENST00000461123 ENSE00001828323
8266  ENSG00000160209       ENST00000621478 ENSE00003738484
8267  ENSG00000160209       ENST00000621478 ENSE00003728118
8268  ENSG00000228817       ENST00000626681 ENSE00003765546
8269  ENSG00000228817       ENST00000608072 ENSE00003704890
8270  ENSG00000228817       ENST00000608072 ENSE00003704865
8271  ENSG00000228817       ENST00000608072 ENSE00003710207
8272  ENSG00000228817       ENST00000608072 ENSE00003711393
8273  ENSG00000228817       ENST00000436529 ENSE00003142988
8274  ENSG00000228817       ENST00000436529 ENSE00001634016
8275  ENSG00000228817       ENST00000436529 ENSE00001673483
8276  ENSG00000279728       ENST00000623809 ENSE00003760235
8277  ENSG00000279728       ENST00000623809 ENSE00003756609
8278  ENSG00000279728       ENST00000623809 ENSE00003756282
8279  ENSG00000279728       ENST00000623809 ENSE00003759964
8280  ENSG00000279728       ENST00000623809 ENSE00003759867
8281  ENSG00000279728       ENST00000623809 ENSE00003756135
8282  ENSG00000279728       ENST00000623809 ENSE00003760015
8283  ENSG00000279728       ENST00000623809 ENSE00003756399
8284  ENSG00000279788       ENST00000624266 ENSE00003758739
8285  ENSG00000279788       ENST00000624266 ENSE00003758671
8286  ENSG00000279788       ENST00000624266 ENSE00003756773
8287  ENSG00000279788       ENST00000624266 ENSE00003759000
8288  ENSG00000279788       ENST00000624266 ENSE00003757866
8289  ENSG00000279788       ENST00000624266 ENSE00003757734
8290  ENSG00000279788       ENST00000624266 ENSE00003755969
8291  ENSG00000279788       ENST00000624266 ENSE00003757842
8292  ENSG00000279788       ENST00000624266 ENSE00003760032
8293  ENSG00000232124       ENST00000437557 ENSE00001601966
8294  ENSG00000232124       ENST00000437557 ENSE00001612223
8295  ENSG00000185808       ENST00000360525 ENSE00001419804
8296  ENSG00000185808       ENST00000360525 ENSE00003470276
8297  ENSG00000185808       ENST00000360525 ENSE00003788488
8298  ENSG00000185808       ENST00000360525 ENSE00003468709
8299  ENSG00000185808       ENST00000360525 ENSE00001875155
8300  ENSG00000185808       ENST00000464265 ENSE00003788488
8301  ENSG00000185808       ENST00000464265 ENSE00003468709
8302  ENSG00000185808       ENST00000464265 ENSE00001320201
8303  ENSG00000185808       ENST00000464265 ENSE00001818729
8304  ENSG00000185808       ENST00000329667 ENSE00003592147
8305  ENSG00000185808       ENST00000329667 ENSE00003541657
8306  ENSG00000185808       ENST00000329667 ENSE00003537149
8307  ENSG00000185808       ENST00000399102 ENSE00003470276
8308  ENSG00000185808       ENST00000399102 ENSE00003788488
8309  ENSG00000185808       ENST00000399102 ENSE00003468709
8310  ENSG00000185808       ENST00000399102 ENSE00001536420
8311  ENSG00000185808       ENST00000399102 ENSE00003526634
8312  ENSG00000185808       ENST00000399103 ENSE00003470276
8313  ENSG00000185808       ENST00000399103 ENSE00003788488
8314  ENSG00000185808       ENST00000399103 ENSE00003468709
8315  ENSG00000185808       ENST00000399103 ENSE00003526634
8316  ENSG00000185808       ENST00000399103 ENSE00001536427
8317  ENSG00000185808       ENST00000399098 ENSE00003788488
8318  ENSG00000185808       ENST00000399098 ENSE00003468709
8319  ENSG00000185808       ENST00000399098 ENSE00003592147
8320  ENSG00000185808       ENST00000399098 ENSE00003526634
8321  ENSG00000185808       ENST00000399098 ENSE00001536419
8322  ENSG00000185808       ENST00000399098 ENSE00001536408
8323  ENSG00000185808       ENST00000479152 ENSE00001936150
8324  ENSG00000185808       ENST00000479152 ENSE00001944308
8325  ENSG00000185808       ENST00000430792 ENSE00003788488
8326  ENSG00000185808       ENST00000430792 ENSE00001536408
8327  ENSG00000185808       ENST00000430792 ENSE00001616850
8328  ENSG00000280179       ENST00000623297 ENSE00003759249
8329  ENSG00000280179       ENST00000623297 ENSE00003757797
8330  ENSG00000280179       ENST00000623297 ENSE00003756788
8331  ENSG00000280179       ENST00000624872 ENSE00003760322
8332  ENSG00000280179       ENST00000624872 ENSE00003759178
8333  ENSG00000280179       ENST00000624872 ENSE00003755582
8334  ENSG00000280179       ENST00000624872 ENSE00003759999
8335  ENSG00000231058       ENST00000445341 ENSE00001673727
8336  ENSG00000231058       ENST00000445341 ENSE00001750674
8337  ENSG00000231058       ENST00000445341 ENSE00001685096
8338  ENSG00000225906       ENST00000438328 ENSE00001739640
8339  ENSG00000225906       ENST00000438328 ENSE00001591721
8340  ENSG00000225906       ENST00000438328 ENSE00001675402
8341  ENSG00000237527       ENST00000416182 ENSE00001772345
8342  ENSG00000237527       ENST00000416182 ENSE00001792306
8343  ENSG00000237527       ENST00000416182 ENSE00001749247
8344  ENSG00000237527       ENST00000416182 ENSE00001690468
8345  ENSG00000237527       ENST00000416182 ENSE00001726600
8346  ENSG00000234730       ENST00000428205 ENSE00001609710
8347  ENSG00000234730       ENST00000428205 ENSE00001712433
8348  ENSG00000185917       ENST00000399215 ENSE00001536988
8349  ENSG00000185917       ENST00000399215 ENSE00003682516
8350  ENSG00000185917       ENST00000399215 ENSE00003480255
8351  ENSG00000185917       ENST00000399215 ENSE00003545287
8352  ENSG00000185917       ENST00000399215 ENSE00003690844
8353  ENSG00000185917       ENST00000399215 ENSE00003582817
8354  ENSG00000185917       ENST00000399215 ENSE00003584489
8355  ENSG00000185917       ENST00000399215 ENSE00003594407
8356  ENSG00000185917       ENST00000399215 ENSE00003480317
8357  ENSG00000185917       ENST00000399215 ENSE00001536987
8358  ENSG00000185917       ENST00000481477 ENSE00001938468
8359  ENSG00000185917       ENST00000481477 ENSE00003555627
8360  ENSG00000185917       ENST00000481477 ENSE00003625862
8361  ENSG00000185917       ENST00000481477 ENSE00003530209
8362  ENSG00000185917       ENST00000481477 ENSE00003669031
8363  ENSG00000185917       ENST00000481477 ENSE00003620581
8364  ENSG00000185917       ENST00000481477 ENSE00003608660
8365  ENSG00000185917       ENST00000481477 ENSE00003502527
8366  ENSG00000185917       ENST00000481477 ENSE00003483155
8367  ENSG00000185917       ENST00000481477 ENSE00003520090
8368  ENSG00000185917       ENST00000481477 ENSE00001957727
8369  ENSG00000185917       ENST00000399212 ENSE00003682516
8370  ENSG00000185917       ENST00000399212 ENSE00003480255
8371  ENSG00000185917       ENST00000399212 ENSE00003545287
8372  ENSG00000185917       ENST00000399212 ENSE00003690844
8373  ENSG00000185917       ENST00000399212 ENSE00003582817
8374  ENSG00000185917       ENST00000399212 ENSE00003584489
8375  ENSG00000185917       ENST00000399212 ENSE00003594407
8376  ENSG00000185917       ENST00000399212 ENSE00003480317
8377  ENSG00000185917       ENST00000399212 ENSE00001536987
8378  ENSG00000185917       ENST00000399212 ENSE00001536980
8379  ENSG00000185917       ENST00000399212 ENSE00003671031
8380  ENSG00000185917       ENST00000399212 ENSE00001536969
8381  ENSG00000185917       ENST00000332131 ENSE00003682516
8382  ENSG00000185917       ENST00000332131 ENSE00003480255
8383  ENSG00000185917       ENST00000332131 ENSE00003545287
8384  ENSG00000185917       ENST00000332131 ENSE00003690844
8385  ENSG00000185917       ENST00000332131 ENSE00003582817
8386  ENSG00000185917       ENST00000332131 ENSE00003584489
8387  ENSG00000185917       ENST00000332131 ENSE00003594407
8388  ENSG00000185917       ENST00000332131 ENSE00003480317
8389  ENSG00000185917       ENST00000332131 ENSE00001957727
8390  ENSG00000185917       ENST00000332131 ENSE00001799578
8391  ENSG00000185917       ENST00000332131 ENSE00003468436
8392  ENSG00000185917       ENST00000332131 ENSE00003687277
8393  ENSG00000185917       ENST00000487297 ENSE00003502527
8394  ENSG00000185917       ENST00000487297 ENSE00003483155
8395  ENSG00000185917       ENST00000487297 ENSE00003520090
8396  ENSG00000185917       ENST00000487297 ENSE00001927148
8397  ENSG00000185917       ENST00000487297 ENSE00001330579
8398  ENSG00000185917       ENST00000469482 ENSE00003608660
8399  ENSG00000185917       ENST00000469482 ENSE00003502527
8400  ENSG00000185917       ENST00000469482 ENSE00003483155
8401  ENSG00000185917       ENST00000469482 ENSE00003520090
8402  ENSG00000185917       ENST00000469482 ENSE00001890945
8403  ENSG00000185917       ENST00000399205 ENSE00003682516
8404  ENSG00000185917       ENST00000399205 ENSE00003480255
8405  ENSG00000185917       ENST00000399205 ENSE00003545287
8406  ENSG00000185917       ENST00000399205 ENSE00003690844
8407  ENSG00000185917       ENST00000399205 ENSE00003671031
8408  ENSG00000185917       ENST00000399205 ENSE00001536969
8409  ENSG00000185917       ENST00000399205 ENSE00001536960
8410  ENSG00000185917       ENST00000399205 ENSE00001536954
8411  ENSG00000185917       ENST00000399208 ENSE00003682516
8412  ENSG00000185917       ENST00000399208 ENSE00003480255
8413  ENSG00000185917       ENST00000399208 ENSE00003545287
8414  ENSG00000185917       ENST00000399208 ENSE00003690844
8415  ENSG00000185917       ENST00000399208 ENSE00001536954
8416  ENSG00000185917       ENST00000399208 ENSE00001941692
8417  ENSG00000185917       ENST00000399208 ENSE00003592720
8418  ENSG00000185917       ENST00000399201 ENSE00003682516
8419  ENSG00000185917       ENST00000399201 ENSE00003480255
8420  ENSG00000185917       ENST00000399201 ENSE00003545287
8421  ENSG00000185917       ENST00000399201 ENSE00003690844
8422  ENSG00000185917       ENST00000399201 ENSE00003555627
8423  ENSG00000185917       ENST00000399201 ENSE00001536969
8424  ENSG00000185917       ENST00000399201 ENSE00001536954
8425  ENSG00000185917       ENST00000399201 ENSE00001536934
8426  ENSG00000185917       ENST00000399207 ENSE00003682516
8427  ENSG00000185917       ENST00000399207 ENSE00003480255
8428  ENSG00000185917       ENST00000399207 ENSE00003545287
8429  ENSG00000185917       ENST00000399207 ENSE00003690844
8430  ENSG00000185917       ENST00000399207 ENSE00003468436
8431  ENSG00000185917       ENST00000399207 ENSE00001536948
8432  ENSG00000185917       ENST00000399207 ENSE00001536946
8433  ENSG00000185917       ENST00000424303 ENSE00003682516
8434  ENSG00000185917       ENST00000424303 ENSE00003480255
8435  ENSG00000185917       ENST00000424303 ENSE00003545287
8436  ENSG00000185917       ENST00000424303 ENSE00003592720
8437  ENSG00000185917       ENST00000424303 ENSE00002517842
8438  ENSG00000185917       ENST00000424303 ENSE00001722077
8439  ENSG00000185917       ENST00000429161 ENSE00003682516
8440  ENSG00000185917       ENST00000429161 ENSE00003480255
8441  ENSG00000185917       ENST00000429161 ENSE00003545287
8442  ENSG00000185917       ENST00000429161 ENSE00003468436
8443  ENSG00000185917       ENST00000429161 ENSE00001536960
8444  ENSG00000185917       ENST00000429161 ENSE00001643676
8445  ENSG00000185917       ENST00000485865 ENSE00003530209
8446  ENSG00000185917       ENST00000485865 ENSE00001927489
8447  ENSG00000185917       ENST00000485865 ENSE00003477604
8448  ENSG00000185917       ENST00000485865 ENSE00001827880
8449  ENSG00000185917       ENST00000446166 ENSE00003682516
8450  ENSG00000185917       ENST00000446166 ENSE00003480255
8451  ENSG00000185917       ENST00000446166 ENSE00003545287
8452  ENSG00000185917       ENST00000446166 ENSE00003555627
8453  ENSG00000185917       ENST00000446166 ENSE00001536980
8454  ENSG00000185917       ENST00000446166 ENSE00001536969
8455  ENSG00000185917       ENST00000446166 ENSE00001786022
8456  ENSG00000185917       ENST00000442559 ENSE00003682516
8457  ENSG00000185917       ENST00000442559 ENSE00003480255
8458  ENSG00000185917       ENST00000442559 ENSE00003555627
8459  ENSG00000185917       ENST00000442559 ENSE00001536969
8460  ENSG00000185917       ENST00000442559 ENSE00002487387
8461  ENSG00000185917       ENST00000442559 ENSE00001798629
8462  ENSG00000185917       ENST00000460704 ENSE00001882789
8463  ENSG00000185917       ENST00000460704 ENSE00001869422
8464  ENSG00000185917       ENST00000443703 ENSE00003682516
8465  ENSG00000185917       ENST00000443703 ENSE00003592720
8466  ENSG00000185917       ENST00000443703 ENSE00001624437
8467  ENSG00000185917       ENST00000443703 ENSE00001763098
8468  ENSG00000276738       ENST00000615444 ENSE00003734790
8469  ENSG00000233206       ENST00000413190 ENSE00001788148
8470  ENSG00000234439       ENST00000447938 ENSE00001742157
8471  ENSG00000215353       ENST00000400117 ENSE00001541625
8472  ENSG00000159256       ENST00000492336 ENSE00003481905
8473  ENSG00000159256       ENST00000492336 ENSE00003542582
8474  ENSG00000159256       ENST00000492336 ENSE00003511660
8475  ENSG00000159256       ENST00000492336 ENSE00003612731
8476  ENSG00000159256       ENST00000492336 ENSE00001816746
8477  ENSG00000159256       ENST00000400485 ENSE00003657062
8478  ENSG00000159256       ENST00000400485 ENSE00003566823
8479  ENSG00000159256       ENST00000400485 ENSE00003482680
8480  ENSG00000159256       ENST00000400485 ENSE00003615780
8481  ENSG00000159256       ENST00000400485 ENSE00003667982
8482  ENSG00000159256       ENST00000400485 ENSE00003477961
8483  ENSG00000159256       ENST00000400485 ENSE00003579316
8484  ENSG00000159256       ENST00000400485 ENSE00003636120
8485  ENSG00000159256       ENST00000400485 ENSE00003621847
8486  ENSG00000159256       ENST00000400485 ENSE00003570014
8487  ENSG00000159256       ENST00000400485 ENSE00003623420
8488  ENSG00000159256       ENST00000400485 ENSE00003522346
8489  ENSG00000159256       ENST00000400485 ENSE00003620224
8490  ENSG00000159256       ENST00000400485 ENSE00003549856
8491  ENSG00000159256       ENST00000400485 ENSE00003676247
8492  ENSG00000159256       ENST00000400485 ENSE00003693820
8493  ENSG00000159256       ENST00000400485 ENSE00003663455
8494  ENSG00000159256       ENST00000487909 ENSE00003511660
8495  ENSG00000159256       ENST00000487909 ENSE00003612731
8496  ENSG00000159256       ENST00000487909 ENSE00001844409
8497  ENSG00000159256       ENST00000487909 ENSE00003633497
8498  ENSG00000159256       ENST00000487909 ENSE00003462510
8499  ENSG00000159256       ENST00000487909 ENSE00003629032
8500  ENSG00000159256       ENST00000487909 ENSE00003561106
8501  ENSG00000159256       ENST00000487909 ENSE00003623617
8502  ENSG00000159256       ENST00000487909 ENSE00003559718
8503  ENSG00000159256       ENST00000487909 ENSE00003470004
8504  ENSG00000159256       ENST00000487909 ENSE00003550917
8505  ENSG00000159256       ENST00000487909 ENSE00003661371
8506  ENSG00000159256       ENST00000487909 ENSE00003506559
8507  ENSG00000159256       ENST00000487909 ENSE00003492014
8508  ENSG00000159256       ENST00000487909 ENSE00003652189
8509  ENSG00000159256       ENST00000487909 ENSE00003555085
8510  ENSG00000159256       ENST00000485933 ENSE00001890132
8511  ENSG00000159256       ENST00000485933 ENSE00001928353
8512  ENSG00000159256       ENST00000485299 ENSE00003623617
8513  ENSG00000159256       ENST00000485299 ENSE00003559718
8514  ENSG00000159256       ENST00000485299 ENSE00001876771
8515  ENSG00000159256       ENST00000485299 ENSE00001827151
8516  ENSG00000159256       ENST00000484028 ENSE00003506559
8517  ENSG00000159256       ENST00000484028 ENSE00001859893
8518  ENSG00000159256       ENST00000484028 ENSE00001875331
8519  ENSG00000159256       ENST00000546482 ENSE00003693820
8520  ENSG00000159256       ENST00000546482 ENSE00003489439
8521  ENSG00000159256       ENST00000546482 ENSE00002350566
8522  ENSG00000159256       ENST00000546482 ENSE00003668379
8523  ENSG00000159256       ENST00000546482 ENSE00002410964
8524  ENSG00000159256       ENST00000546482 ENSE00002342944
8525  ENSG00000159256       ENST00000546482 ENSE00002355022
8526  ENSG00000159256       ENST00000546482 ENSE00002333753
8527  ENSG00000159256       ENST00000549948 ENSE00003693820
8528  ENSG00000159256       ENST00000549948 ENSE00003489439
8529  ENSG00000159256       ENST00000549948 ENSE00002350566
8530  ENSG00000159256       ENST00000549948 ENSE00002355022
8531  ENSG00000159256       ENST00000549948 ENSE00002333753
8532  ENSG00000159256       ENST00000549948 ENSE00003579232
8533  ENSG00000159256       ENST00000549948 ENSE00002388022
8534  ENSG00000159256       ENST00000551788 ENSE00003693820
8535  ENSG00000159256       ENST00000551788 ENSE00003489439
8536  ENSG00000159256       ENST00000551788 ENSE00002350566
8537  ENSG00000159256       ENST00000551788 ENSE00003668379
8538  ENSG00000159256       ENST00000551788 ENSE00002355022
8539  ENSG00000159256       ENST00000551788 ENSE00002333753
8540  ENSG00000159256       ENST00000551367 ENSE00003652189
8541  ENSG00000159256       ENST00000551367 ENSE00002333753
8542  ENSG00000159256       ENST00000551367 ENSE00003501266
8543  ENSG00000159256       ENST00000552581 ENSE00003693820
8544  ENSG00000159256       ENST00000552581 ENSE00002355022
8545  ENSG00000159256       ENST00000552581 ENSE00002333753
8546  ENSG00000159256       ENST00000552581 ENSE00003559346
8547  ENSG00000159256       ENST00000552581 ENSE00002372498
8548  ENSG00000159256       ENST00000552581 ENSE00003560391
8549  ENSG00000159256       ENST00000552581 ENSE00003463975
8550  ENSG00000159256       ENST00000547657 ENSE00003652189
8551  ENSG00000159256       ENST00000547657 ENSE00002410964
8552  ENSG00000159256       ENST00000547657 ENSE00002355022
8553  ENSG00000159256       ENST00000547657 ENSE00002333753
8554  ENSG00000159256       ENST00000547657 ENSE00003501266
8555  ENSG00000228107       ENST00000397184 ENSE00001723336
8556  ENSG00000228107       ENST00000397184 ENSE00001627362
8557  ENSG00000159259       ENST00000314103 ENSE00001384227
8558  ENSG00000159259       ENST00000314103 ENSE00003477571
8559  ENSG00000159259       ENST00000314103 ENSE00003613324
8560  ENSG00000159259       ENST00000314103 ENSE00003583414
8561  ENSG00000159259       ENST00000314103 ENSE00003480180
8562  ENSG00000159259       ENST00000314103 ENSE00003672161
8563  ENSG00000159259       ENST00000314103 ENSE00001044347
8564  ENSG00000159259       ENST00000314103 ENSE00003494204
8565  ENSG00000159259       ENST00000314103 ENSE00001044360
8566  ENSG00000159259       ENST00000314103 ENSE00001044354
8567  ENSG00000159259       ENST00000314103 ENSE00003561304
8568  ENSG00000159259       ENST00000314103 ENSE00001044359
8569  ENSG00000159259       ENST00000314103 ENSE00001044343
8570  ENSG00000159259       ENST00000314103 ENSE00001213718
8571  ENSG00000159259       ENST00000480486 ENSE00003562978
8572  ENSG00000159259       ENST00000480486 ENSE00003506630
8573  ENSG00000159259       ENST00000480486 ENSE00003610974
8574  ENSG00000159259       ENST00000480486 ENSE00003680325
8575  ENSG00000159259       ENST00000480486 ENSE00003552194
8576  ENSG00000159259       ENST00000480486 ENSE00001906268
8577  ENSG00000159259       ENST00000481458 ENSE00001953480
8578  ENSG00000159259       ENST00000481458 ENSE00003637834
8579  ENSG00000159259       ENST00000481458 ENSE00003621858
8580  ENSG00000159259       ENST00000481458 ENSE00001864121
8581  ENSG00000234008       ENST00000440405 ENSE00001678453
8582  ENSG00000228149       ENST00000437106 ENSE00001635423
8583  ENSG00000160214       ENST00000475534 ENSE00001931102
8584  ENSG00000160214       ENST00000475534 ENSE00003656454
8585  ENSG00000160214       ENST00000475534 ENSE00003550106
8586  ENSG00000160214       ENST00000475534 ENSE00003516124
8587  ENSG00000160214       ENST00000475534 ENSE00003535222
8588  ENSG00000160214       ENST00000475534 ENSE00001880625
8589  ENSG00000160214       ENST00000497547 ENSE00001867462
8590  ENSG00000160214       ENST00000497547 ENSE00003577332
8591  ENSG00000160214       ENST00000497547 ENSE00003564822
8592  ENSG00000160214       ENST00000497547 ENSE00003580595
8593  ENSG00000160214       ENST00000497547 ENSE00003460664
8594  ENSG00000160214       ENST00000497547 ENSE00003549420
8595  ENSG00000160214       ENST00000497547 ENSE00003626947
8596  ENSG00000160214       ENST00000497547 ENSE00003546458
8597  ENSG00000160214       ENST00000497547 ENSE00003493319
8598  ENSG00000160214       ENST00000497547 ENSE00003627514
8599  ENSG00000160214       ENST00000497547 ENSE00003527287
8600  ENSG00000160214       ENST00000497547 ENSE00003680163
8601  ENSG00000160214       ENST00000497547 ENSE00003497110
8602  ENSG00000160214       ENST00000483896 ENSE00003656454
8603  ENSG00000160214       ENST00000483896 ENSE00003550106
8604  ENSG00000160214       ENST00000483896 ENSE00003516124
8605  ENSG00000160214       ENST00000483896 ENSE00003535222
8606  ENSG00000160214       ENST00000483896 ENSE00001897232
8607  ENSG00000160214       ENST00000483896 ENSE00001818491
8608  ENSG00000160214       ENST00000483896 ENSE00003543761
8609  ENSG00000160214       ENST00000483896 ENSE00003519158
8610  ENSG00000160214       ENST00000483896 ENSE00001935204
8611  ENSG00000160214       ENST00000492638 ENSE00003656454
8612  ENSG00000160214       ENST00000492638 ENSE00001820769
8613  ENSG00000160214       ENST00000492638 ENSE00001845578
8614  ENSG00000160214       ENST00000473988 ENSE00001824364
8615  ENSG00000160214       ENST00000473988 ENSE00001893624
8616  ENSG00000160214       ENST00000467112 ENSE00003535222
8617  ENSG00000160214       ENST00000467112 ENSE00003543761
8618  ENSG00000160214       ENST00000467112 ENSE00003519158
8619  ENSG00000160214       ENST00000467112 ENSE00001920474
8620  ENSG00000160214       ENST00000467112 ENSE00003495573
8621  ENSG00000160214       ENST00000467112 ENSE00003676200
8622  ENSG00000160214       ENST00000467112 ENSE00003500627
8623  ENSG00000160214       ENST00000467112 ENSE00003681408
8624  ENSG00000160214       ENST00000467112 ENSE00003507179
8625  ENSG00000160214       ENST00000467112 ENSE00003478106
8626  ENSG00000160214       ENST00000471909 ENSE00003519158
8627  ENSG00000160214       ENST00000471909 ENSE00003495573
8628  ENSG00000160214       ENST00000471909 ENSE00003676200
8629  ENSG00000160214       ENST00000471909 ENSE00003500627
8630  ENSG00000160214       ENST00000471909 ENSE00003681408
8631  ENSG00000160214       ENST00000471909 ENSE00003507179
8632  ENSG00000160214       ENST00000471909 ENSE00003478106
8633  ENSG00000160214       ENST00000471909 ENSE00001872195
8634  ENSG00000234340       ENST00000433524 ENSE00001635068
8635  ENSG00000154646       ENST00000284885 ENSE00001017019
8636  ENSG00000154646       ENST00000284885 ENSE00001017017
8637  ENSG00000154646       ENST00000284885 ENSE00001017016
8638  ENSG00000154646       ENST00000284885 ENSE00003606729
8639  ENSG00000154646       ENST00000284885 ENSE00001017000
8640  ENSG00000154646       ENST00000284885 ENSE00003669261
8641  ENSG00000154646       ENST00000284885 ENSE00003787340
8642  ENSG00000154646       ENST00000284885 ENSE00001017001
8643  ENSG00000154646       ENST00000284885 ENSE00001017009
8644  ENSG00000154646       ENST00000284885 ENSE00001016995
8645  ENSG00000154646       ENST00000284885 ENSE00001017012
8646  ENSG00000154646       ENST00000284885 ENSE00001016999
8647  ENSG00000154646       ENST00000284885 ENSE00001016997
8648  ENSG00000154646       ENST00000284885 ENSE00001017015
8649  ENSG00000154646       ENST00000284885 ENSE00001017011
8650  ENSG00000154646       ENST00000284885 ENSE00001017002
8651  ENSG00000154646       ENST00000284885 ENSE00001017006
8652  ENSG00000154646       ENST00000284885 ENSE00001017014
8653  ENSG00000154646       ENST00000284885 ENSE00001016996
8654  ENSG00000154646       ENST00000284885 ENSE00001017005
8655  ENSG00000154646       ENST00000284885 ENSE00001017018
8656  ENSG00000154646       ENST00000284885 ENSE00001017004
8657  ENSG00000154646       ENST00000284885 ENSE00001016998
8658  ENSG00000154646       ENST00000284885 ENSE00001017003
8659  ENSG00000154646       ENST00000284885 ENSE00001017008
8660  ENSG00000154646       ENST00000422787 ENSE00001017017
8661  ENSG00000154646       ENST00000422787 ENSE00001017016
8662  ENSG00000154646       ENST00000422787 ENSE00003606729
8663  ENSG00000154646       ENST00000422787 ENSE00001017000
8664  ENSG00000154646       ENST00000422787 ENSE00003669261
8665  ENSG00000154646       ENST00000422787 ENSE00003787340
8666  ENSG00000154646       ENST00000422787 ENSE00001738585
8667  ENSG00000154646       ENST00000422787 ENSE00001643450
8668  ENSG00000154646       ENST00000474775 ENSE00001812633
8669  ENSG00000154646       ENST00000474775 ENSE00003604709
8670  ENSG00000154646       ENST00000474775 ENSE00003526428
8671  ENSG00000154646       ENST00000474775 ENSE00001890022
8672  ENSG00000231755       ENST00000447175 ENSE00001614466
8673  ENSG00000231755       ENST00000447175 ENSE00001760043
8674  ENSG00000231755       ENST00000447175 ENSE00001646083
8675  ENSG00000159082       ENST00000438952 ENSE00001640749
8676  ENSG00000159082       ENST00000438952 ENSE00001694887
8677  ENSG00000159082       ENST00000438952 ENSE00001716834
8678  ENSG00000159082       ENST00000438952 ENSE00001600415
8679  ENSG00000159082       ENST00000438952 ENSE00001672736
8680  ENSG00000159082       ENST00000438952 ENSE00001768777
8681  ENSG00000159082       ENST00000438952 ENSE00001659680
8682  ENSG00000159082       ENST00000438952 ENSE00001709732
8683  ENSG00000159082       ENST00000630077 ENSE00001600415
8684  ENSG00000159082       ENST00000630077 ENSE00001672736
8685  ENSG00000159082       ENST00000630077 ENSE00001768777
8686  ENSG00000159082       ENST00000630077 ENSE00003765054
8687  ENSG00000159082       ENST00000630077 ENSE00003633787
8688  ENSG00000159082       ENST00000630077 ENSE00001692945
8689  ENSG00000159082       ENST00000630077 ENSE00001594835
8690  ENSG00000159082       ENST00000630077 ENSE00001723440
8691  ENSG00000159082       ENST00000630077 ENSE00001711441
8692  ENSG00000159082       ENST00000630077 ENSE00001710675
8693  ENSG00000159082       ENST00000630077 ENSE00001660563
8694  ENSG00000159082       ENST00000630077 ENSE00001615936
8695  ENSG00000159082       ENST00000630077 ENSE00001719041
8696  ENSG00000159082       ENST00000630077 ENSE00001611870
8697  ENSG00000159082       ENST00000630077 ENSE00001539668
8698  ENSG00000159082       ENST00000630077 ENSE00001677991
8699  ENSG00000159082       ENST00000630077 ENSE00001695277
8700  ENSG00000159082       ENST00000630077 ENSE00001661250
8701  ENSG00000159082       ENST00000630077 ENSE00002276949
8702  ENSG00000159082       ENST00000630077 ENSE00001692306
8703  ENSG00000159082       ENST00000630077 ENSE00003510649
8704  ENSG00000159082       ENST00000630077 ENSE00003560819
8705  ENSG00000159082       ENST00000630077 ENSE00001706423
8706  ENSG00000159082       ENST00000630077 ENSE00001604255
8707  ENSG00000159082       ENST00000630077 ENSE00003584985
8708  ENSG00000159082       ENST00000630077 ENSE00001800575
8709  ENSG00000159082       ENST00000630077 ENSE00001628547
8710  ENSG00000159082       ENST00000630077 ENSE00003762064
8711  ENSG00000159082       ENST00000382499 ENSE00001694887
8712  ENSG00000159082       ENST00000382499 ENSE00001716834
8713  ENSG00000159082       ENST00000382499 ENSE00001600415
8714  ENSG00000159082       ENST00000382499 ENSE00001672736
8715  ENSG00000159082       ENST00000382499 ENSE00001768777
8716  ENSG00000159082       ENST00000382499 ENSE00001659680
8717  ENSG00000159082       ENST00000382499 ENSE00001692945
8718  ENSG00000159082       ENST00000382499 ENSE00001594835
8719  ENSG00000159082       ENST00000382499 ENSE00001723440
8720  ENSG00000159082       ENST00000382499 ENSE00001711441
8721  ENSG00000159082       ENST00000382499 ENSE00001710675
8722  ENSG00000159082       ENST00000382499 ENSE00001660563
8723  ENSG00000159082       ENST00000382499 ENSE00001615936
8724  ENSG00000159082       ENST00000382499 ENSE00001719041
8725  ENSG00000159082       ENST00000382499 ENSE00001611870
8726  ENSG00000159082       ENST00000382499 ENSE00001677991
8727  ENSG00000159082       ENST00000382499 ENSE00001695277
8728  ENSG00000159082       ENST00000382499 ENSE00001661250
8729  ENSG00000159082       ENST00000382499 ENSE00002276949
8730  ENSG00000159082       ENST00000382499 ENSE00001692306
8731  ENSG00000159082       ENST00000382499 ENSE00003510649
8732  ENSG00000159082       ENST00000382499 ENSE00003560819
8733  ENSG00000159082       ENST00000382499 ENSE00001706423
8734  ENSG00000159082       ENST00000382499 ENSE00001604255
8735  ENSG00000159082       ENST00000382499 ENSE00003584985
8736  ENSG00000159082       ENST00000382499 ENSE00001800575
8737  ENSG00000159082       ENST00000382499 ENSE00001628547
8738  ENSG00000159082       ENST00000382499 ENSE00001492364
8739  ENSG00000159082       ENST00000382499 ENSE00003514976
8740  ENSG00000159082       ENST00000382499 ENSE00001640014
8741  ENSG00000159082       ENST00000382499 ENSE00001619493
8742  ENSG00000159082       ENST00000382499 ENSE00001043068
8743  ENSG00000159082       ENST00000382499 ENSE00001492363
8744  ENSG00000159082       ENST00000433931 ENSE00001694887
8745  ENSG00000159082       ENST00000433931 ENSE00001716834
8746  ENSG00000159082       ENST00000433931 ENSE00001600415
8747  ENSG00000159082       ENST00000433931 ENSE00001672736
8748  ENSG00000159082       ENST00000433931 ENSE00001768777
8749  ENSG00000159082       ENST00000433931 ENSE00001692945
8750  ENSG00000159082       ENST00000433931 ENSE00001594835
8751  ENSG00000159082       ENST00000433931 ENSE00001723440
8752  ENSG00000159082       ENST00000433931 ENSE00001711441
8753  ENSG00000159082       ENST00000433931 ENSE00001710675
8754  ENSG00000159082       ENST00000433931 ENSE00001660563
8755  ENSG00000159082       ENST00000433931 ENSE00001615936
8756  ENSG00000159082       ENST00000433931 ENSE00001719041
8757  ENSG00000159082       ENST00000433931 ENSE00001611870
8758  ENSG00000159082       ENST00000433931 ENSE00001677991
8759  ENSG00000159082       ENST00000433931 ENSE00001695277
8760  ENSG00000159082       ENST00000433931 ENSE00001661250
8761  ENSG00000159082       ENST00000433931 ENSE00002276949
8762  ENSG00000159082       ENST00000433931 ENSE00001692306
8763  ENSG00000159082       ENST00000433931 ENSE00003510649
8764  ENSG00000159082       ENST00000433931 ENSE00003560819
8765  ENSG00000159082       ENST00000433931 ENSE00001706423
8766  ENSG00000159082       ENST00000433931 ENSE00001604255
8767  ENSG00000159082       ENST00000433931 ENSE00003584985
8768  ENSG00000159082       ENST00000433931 ENSE00001800575
8769  ENSG00000159082       ENST00000433931 ENSE00001628547
8770  ENSG00000159082       ENST00000433931 ENSE00003514976
8771  ENSG00000159082       ENST00000433931 ENSE00001640014
8772  ENSG00000159082       ENST00000433931 ENSE00001619493
8773  ENSG00000159082       ENST00000433931 ENSE00001043068
8774  ENSG00000159082       ENST00000433931 ENSE00001798903
8775  ENSG00000159082       ENST00000433931 ENSE00001707933
8776  ENSG00000159082       ENST00000418301 ENSE00001672736
8777  ENSG00000159082       ENST00000418301 ENSE00001768777
8778  ENSG00000159082       ENST00000418301 ENSE00001665192
8779  ENSG00000159082       ENST00000418301 ENSE00001597791
8780  ENSG00000159082       ENST00000418301 ENSE00001684229
8781  ENSG00000159082       ENST00000467445 ENSE00003581395
8782  ENSG00000159082       ENST00000467445 ENSE00001950509
8783  ENSG00000159082       ENST00000464778 ENSE00003519084
8784  ENSG00000159082       ENST00000464778 ENSE00003593335
8785  ENSG00000159082       ENST00000464778 ENSE00001950568
8786  ENSG00000159082       ENST00000464778 ENSE00001865588
8787  ENSG00000159082       ENST00000429236 ENSE00003633787
8788  ENSG00000159082       ENST00000429236 ENSE00001692945
8789  ENSG00000159082       ENST00000429236 ENSE00001594835
8790  ENSG00000159082       ENST00000429236 ENSE00001723440
8791  ENSG00000159082       ENST00000429236 ENSE00001711441
8792  ENSG00000159082       ENST00000429236 ENSE00001710675
8793  ENSG00000159082       ENST00000429236 ENSE00001660563
8794  ENSG00000159082       ENST00000429236 ENSE00001615936
8795  ENSG00000159082       ENST00000429236 ENSE00001719041
8796  ENSG00000159082       ENST00000429236 ENSE00001611870
8797  ENSG00000159082       ENST00000429236 ENSE00001539668
8798  ENSG00000159082       ENST00000429236 ENSE00001677991
8799  ENSG00000159082       ENST00000429236 ENSE00001695277
8800  ENSG00000159082       ENST00000429236 ENSE00001661250
8801  ENSG00000159082       ENST00000429236 ENSE00001801600
8802  ENSG00000159082       ENST00000429236 ENSE00001763897
8803  ENSG00000159082       ENST00000456084 ENSE00001692945
8804  ENSG00000159082       ENST00000456084 ENSE00001594835
8805  ENSG00000159082       ENST00000456084 ENSE00001685197
8806  ENSG00000159082       ENST00000456084 ENSE00001624962
8807  ENSG00000159082       ENST00000357345 ENSE00001694887
8808  ENSG00000159082       ENST00000357345 ENSE00001716834
8809  ENSG00000159082       ENST00000357345 ENSE00001600415
8810  ENSG00000159082       ENST00000357345 ENSE00001672736
8811  ENSG00000159082       ENST00000357345 ENSE00001768777
8812  ENSG00000159082       ENST00000357345 ENSE00001659680
8813  ENSG00000159082       ENST00000357345 ENSE00003633787
8814  ENSG00000159082       ENST00000357345 ENSE00001692945
8815  ENSG00000159082       ENST00000357345 ENSE00001594835
8816  ENSG00000159082       ENST00000357345 ENSE00001723440
8817  ENSG00000159082       ENST00000357345 ENSE00001711441
8818  ENSG00000159082       ENST00000357345 ENSE00001710675
8819  ENSG00000159082       ENST00000357345 ENSE00001660563
8820  ENSG00000159082       ENST00000357345 ENSE00001615936
8821  ENSG00000159082       ENST00000357345 ENSE00001719041
8822  ENSG00000159082       ENST00000357345 ENSE00001611870
8823  ENSG00000159082       ENST00000357345 ENSE00001677991
8824  ENSG00000159082       ENST00000357345 ENSE00001695277
8825  ENSG00000159082       ENST00000357345 ENSE00001661250
8826  ENSG00000159082       ENST00000357345 ENSE00002276949
8827  ENSG00000159082       ENST00000357345 ENSE00001692306
8828  ENSG00000159082       ENST00000357345 ENSE00003510649
8829  ENSG00000159082       ENST00000357345 ENSE00003560819
8830  ENSG00000159082       ENST00000357345 ENSE00001706423
8831  ENSG00000159082       ENST00000357345 ENSE00001604255
8832  ENSG00000159082       ENST00000357345 ENSE00003584985
8833  ENSG00000159082       ENST00000357345 ENSE00001800575
8834  ENSG00000159082       ENST00000357345 ENSE00001628547
8835  ENSG00000159082       ENST00000357345 ENSE00001640014
8836  ENSG00000159082       ENST00000357345 ENSE00001619493
8837  ENSG00000159082       ENST00000357345 ENSE00001801600
8838  ENSG00000159082       ENST00000357345 ENSE00003747770
8839  ENSG00000159082       ENST00000382491 ENSE00001600415
8840  ENSG00000159082       ENST00000382491 ENSE00001672736
8841  ENSG00000159082       ENST00000382491 ENSE00001768777
8842  ENSG00000159082       ENST00000382491 ENSE00001659680
8843  ENSG00000159082       ENST00000382491 ENSE00003633787
8844  ENSG00000159082       ENST00000382491 ENSE00001692945
8845  ENSG00000159082       ENST00000382491 ENSE00001594835
8846  ENSG00000159082       ENST00000382491 ENSE00001723440
8847  ENSG00000159082       ENST00000382491 ENSE00001711441
8848  ENSG00000159082       ENST00000382491 ENSE00001710675
8849  ENSG00000159082       ENST00000382491 ENSE00001660563
8850  ENSG00000159082       ENST00000382491 ENSE00001615936
8851  ENSG00000159082       ENST00000382491 ENSE00001719041
8852  ENSG00000159082       ENST00000382491 ENSE00001611870
8853  ENSG00000159082       ENST00000382491 ENSE00001539668
8854  ENSG00000159082       ENST00000382491 ENSE00001677991
8855  ENSG00000159082       ENST00000382491 ENSE00001695277
8856  ENSG00000159082       ENST00000382491 ENSE00001661250
8857  ENSG00000159082       ENST00000382491 ENSE00002276949
8858  ENSG00000159082       ENST00000382491 ENSE00001692306
8859  ENSG00000159082       ENST00000382491 ENSE00003510649
8860  ENSG00000159082       ENST00000382491 ENSE00003560819
8861  ENSG00000159082       ENST00000382491 ENSE00001706423
8862  ENSG00000159082       ENST00000382491 ENSE00001604255
8863  ENSG00000159082       ENST00000382491 ENSE00003584985
8864  ENSG00000159082       ENST00000382491 ENSE00001800575
8865  ENSG00000159082       ENST00000382491 ENSE00001628547
8866  ENSG00000159082       ENST00000382491 ENSE00003747770
8867  ENSG00000159082       ENST00000382491 ENSE00003717800
8868  ENSG00000185658       ENST00000333229 ENSE00001880434
8869  ENSG00000185658       ENST00000333229 ENSE00003515339
8870  ENSG00000185658       ENST00000333229 ENSE00003653232
8871  ENSG00000185658       ENST00000333229 ENSE00003641761
8872  ENSG00000185658       ENST00000333229 ENSE00002431924
8873  ENSG00000185658       ENST00000333229 ENSE00002497178
8874  ENSG00000185658       ENST00000333229 ENSE00002462623
8875  ENSG00000185658       ENST00000333229 ENSE00002458215
8876  ENSG00000185658       ENST00000333229 ENSE00002465628
8877  ENSG00000185658       ENST00000333229 ENSE00002482303
8878  ENSG00000185658       ENST00000333229 ENSE00002520544
8879  ENSG00000185658       ENST00000333229 ENSE00002433897
8880  ENSG00000185658       ENST00000333229 ENSE00002506458
8881  ENSG00000185658       ENST00000333229 ENSE00002521348
8882  ENSG00000185658       ENST00000333229 ENSE00002497896
8883  ENSG00000185658       ENST00000333229 ENSE00002446887
8884  ENSG00000185658       ENST00000333229 ENSE00003490914
8885  ENSG00000185658       ENST00000333229 ENSE00003536179
8886  ENSG00000185658       ENST00000333229 ENSE00003600281
8887  ENSG00000185658       ENST00000333229 ENSE00003655791
8888  ENSG00000185658       ENST00000333229 ENSE00003519259
8889  ENSG00000185658       ENST00000333229 ENSE00003584341
8890  ENSG00000185658       ENST00000333229 ENSE00002446443
8891  ENSG00000185658       ENST00000333229 ENSE00002470382
8892  ENSG00000185658       ENST00000333229 ENSE00002437169
8893  ENSG00000185658       ENST00000333229 ENSE00001788177
8894  ENSG00000185658       ENST00000333229 ENSE00001674297
8895  ENSG00000185658       ENST00000333229 ENSE00001651462
8896  ENSG00000185658       ENST00000333229 ENSE00001622845
8897  ENSG00000185658       ENST00000333229 ENSE00003582172
8898  ENSG00000185658       ENST00000333229 ENSE00003525602
8899  ENSG00000185658       ENST00000333229 ENSE00003677382
8900  ENSG00000185658       ENST00000333229 ENSE00003529207
8901  ENSG00000185658       ENST00000333229 ENSE00003621343
8902  ENSG00000185658       ENST00000333229 ENSE00003497316
8903  ENSG00000185658       ENST00000333229 ENSE00003520595
8904  ENSG00000185658       ENST00000333229 ENSE00003583448
8905  ENSG00000185658       ENST00000333229 ENSE00003562855
8906  ENSG00000185658       ENST00000333229 ENSE00003674456
8907  ENSG00000185658       ENST00000333229 ENSE00003675873
8908  ENSG00000185658       ENST00000333229 ENSE00003618132
8909  ENSG00000185658       ENST00000333229 ENSE00001780720
8910  ENSG00000185658       ENST00000446924 ENSE00003490914
8911  ENSG00000185658       ENST00000446924 ENSE00003536179
8912  ENSG00000185658       ENST00000446924 ENSE00003600281
8913  ENSG00000185658       ENST00000446924 ENSE00003655791
8914  ENSG00000185658       ENST00000446924 ENSE00003519259
8915  ENSG00000185658       ENST00000446924 ENSE00003584341
8916  ENSG00000185658       ENST00000446924 ENSE00002446443
8917  ENSG00000185658       ENST00000446924 ENSE00002470382
8918  ENSG00000185658       ENST00000446924 ENSE00002437169
8919  ENSG00000185658       ENST00000446924 ENSE00001788177
8920  ENSG00000185658       ENST00000446924 ENSE00001674297
8921  ENSG00000185658       ENST00000446924 ENSE00001651462
8922  ENSG00000185658       ENST00000446924 ENSE00001622845
8923  ENSG00000185658       ENST00000446924 ENSE00001794606
8924  ENSG00000185658       ENST00000446924 ENSE00001706237
8925  ENSG00000185658       ENST00000446924 ENSE00003622298
8926  ENSG00000185658       ENST00000446924 ENSE00003670759
8927  ENSG00000185658       ENST00000446924 ENSE00003580095
8928  ENSG00000185658       ENST00000446924 ENSE00003610171
8929  ENSG00000185658       ENST00000446924 ENSE00003596356
8930  ENSG00000185658       ENST00000446924 ENSE00003612392
8931  ENSG00000185658       ENST00000446924 ENSE00003672997
8932  ENSG00000185658       ENST00000446924 ENSE00003513288
8933  ENSG00000185658       ENST00000446924 ENSE00003545917
8934  ENSG00000185658       ENST00000446924 ENSE00003571434
8935  ENSG00000185658       ENST00000446924 ENSE00001696762
8936  ENSG00000185658       ENST00000342449 ENSE00003515339
8937  ENSG00000185658       ENST00000342449 ENSE00003653232
8938  ENSG00000185658       ENST00000342449 ENSE00003641761
8939  ENSG00000185658       ENST00000342449 ENSE00002431924
8940  ENSG00000185658       ENST00000342449 ENSE00002497178
8941  ENSG00000185658       ENST00000342449 ENSE00002462623
8942  ENSG00000185658       ENST00000342449 ENSE00002458215
8943  ENSG00000185658       ENST00000342449 ENSE00002465628
8944  ENSG00000185658       ENST00000342449 ENSE00002482303
8945  ENSG00000185658       ENST00000342449 ENSE00002520544
8946  ENSG00000185658       ENST00000342449 ENSE00002433897
8947  ENSG00000185658       ENST00000342449 ENSE00002506458
8948  ENSG00000185658       ENST00000342449 ENSE00002521348
8949  ENSG00000185658       ENST00000342449 ENSE00002497896
8950  ENSG00000185658       ENST00000342449 ENSE00002446887
8951  ENSG00000185658       ENST00000342449 ENSE00003490914
8952  ENSG00000185658       ENST00000342449 ENSE00003536179
8953  ENSG00000185658       ENST00000342449 ENSE00003600281
8954  ENSG00000185658       ENST00000342449 ENSE00003655791
8955  ENSG00000185658       ENST00000342449 ENSE00003519259
8956  ENSG00000185658       ENST00000342449 ENSE00003584341
8957  ENSG00000185658       ENST00000342449 ENSE00002446443
8958  ENSG00000185658       ENST00000342449 ENSE00002470382
8959  ENSG00000185658       ENST00000342449 ENSE00002437169
8960  ENSG00000185658       ENST00000342449 ENSE00001788177
8961  ENSG00000185658       ENST00000342449 ENSE00001674297
8962  ENSG00000185658       ENST00000342449 ENSE00001651462
8963  ENSG00000185658       ENST00000342449 ENSE00001622845
8964  ENSG00000185658       ENST00000342449 ENSE00003582172
8965  ENSG00000185658       ENST00000342449 ENSE00003525602
8966  ENSG00000185658       ENST00000342449 ENSE00003677382
8967  ENSG00000185658       ENST00000342449 ENSE00003529207
8968  ENSG00000185658       ENST00000342449 ENSE00003621343
8969  ENSG00000185658       ENST00000342449 ENSE00003497316
8970  ENSG00000185658       ENST00000342449 ENSE00003520595
8971  ENSG00000185658       ENST00000342449 ENSE00003583448
8972  ENSG00000185658       ENST00000342449 ENSE00003562855
8973  ENSG00000185658       ENST00000342449 ENSE00003674456
8974  ENSG00000185658       ENST00000342449 ENSE00003675873
8975  ENSG00000185658       ENST00000342449 ENSE00001883590
8976  ENSG00000185658       ENST00000342449 ENSE00001383767
8977  ENSG00000185658       ENST00000380800 ENSE00003515339
8978  ENSG00000185658       ENST00000380800 ENSE00003653232
8979  ENSG00000185658       ENST00000380800 ENSE00003641761
8980  ENSG00000185658       ENST00000380800 ENSE00002431924
8981  ENSG00000185658       ENST00000380800 ENSE00002497178
8982  ENSG00000185658       ENST00000380800 ENSE00002462623
8983  ENSG00000185658       ENST00000380800 ENSE00002458215
8984  ENSG00000185658       ENST00000380800 ENSE00002465628
8985  ENSG00000185658       ENST00000380800 ENSE00002482303
8986  ENSG00000185658       ENST00000380800 ENSE00002520544
8987  ENSG00000185658       ENST00000380800 ENSE00002433897
8988  ENSG00000185658       ENST00000380800 ENSE00002506458
8989  ENSG00000185658       ENST00000380800 ENSE00002521348
8990  ENSG00000185658       ENST00000380800 ENSE00002497896
8991  ENSG00000185658       ENST00000380800 ENSE00002446887
8992  ENSG00000185658       ENST00000380800 ENSE00003490914
8993  ENSG00000185658       ENST00000380800 ENSE00003536179
8994  ENSG00000185658       ENST00000380800 ENSE00003600281
8995  ENSG00000185658       ENST00000380800 ENSE00003655791
8996  ENSG00000185658       ENST00000380800 ENSE00003519259
8997  ENSG00000185658       ENST00000380800 ENSE00003584341
8998  ENSG00000185658       ENST00000380800 ENSE00002446443
8999  ENSG00000185658       ENST00000380800 ENSE00002470382
9000  ENSG00000185658       ENST00000380800 ENSE00002437169
9001  ENSG00000185658       ENST00000380800 ENSE00001788177
9002  ENSG00000185658       ENST00000380800 ENSE00001674297
9003  ENSG00000185658       ENST00000380800 ENSE00001651462
9004  ENSG00000185658       ENST00000380800 ENSE00001622845
9005  ENSG00000185658       ENST00000380800 ENSE00003582172
9006  ENSG00000185658       ENST00000380800 ENSE00003525602
9007  ENSG00000185658       ENST00000380800 ENSE00003677382
9008  ENSG00000185658       ENST00000380800 ENSE00003529207
9009  ENSG00000185658       ENST00000380800 ENSE00003621343
9010  ENSG00000185658       ENST00000380800 ENSE00003497316
9011  ENSG00000185658       ENST00000380800 ENSE00003520595
9012  ENSG00000185658       ENST00000380800 ENSE00003583448
9013  ENSG00000185658       ENST00000380800 ENSE00003562855
9014  ENSG00000185658       ENST00000380800 ENSE00003674456
9015  ENSG00000185658       ENST00000380800 ENSE00003675873
9016  ENSG00000185658       ENST00000380800 ENSE00003618132
9017  ENSG00000185658       ENST00000380800 ENSE00001897340
9018  ENSG00000185658       ENST00000380800 ENSE00001486321
9019  ENSG00000185658       ENST00000491564 ENSE00001852973
9020  ENSG00000185658       ENST00000491564 ENSE00001865375
9021  ENSG00000185658       ENST00000424441 ENSE00001674297
9022  ENSG00000185658       ENST00000424441 ENSE00001651462
9023  ENSG00000185658       ENST00000424441 ENSE00001622845
9024  ENSG00000185658       ENST00000424441 ENSE00003582172
9025  ENSG00000185658       ENST00000424441 ENSE00003525602
9026  ENSG00000185658       ENST00000424441 ENSE00003677382
9027  ENSG00000185658       ENST00000424441 ENSE00003529207
9028  ENSG00000185658       ENST00000424441 ENSE00003621343
9029  ENSG00000185658       ENST00000424441 ENSE00003520595
9030  ENSG00000185658       ENST00000424441 ENSE00003583448
9031  ENSG00000185658       ENST00000424441 ENSE00001731798
9032  ENSG00000185658       ENST00000424441 ENSE00001623960
9033  ENSG00000185658       ENST00000473813 ENSE00003670759
9034  ENSG00000185658       ENST00000473813 ENSE00003580095
9035  ENSG00000185658       ENST00000473813 ENSE00003686178
9036  ENSG00000185658       ENST00000473813 ENSE00003515471
9037  ENSG00000185658       ENST00000473813 ENSE00003676246
9038  ENSG00000185658       ENST00000473813 ENSE00001862816
9039  ENSG00000185658       ENST00000473813 ENSE00001827867
9040  ENSG00000185658       ENST00000445668 ENSE00002482303
9041  ENSG00000185658       ENST00000445668 ENSE00002520544
9042  ENSG00000185658       ENST00000445668 ENSE00002433897
9043  ENSG00000185658       ENST00000445668 ENSE00002506458
9044  ENSG00000185658       ENST00000445668 ENSE00002521348
9045  ENSG00000185658       ENST00000445668 ENSE00002497896
9046  ENSG00000185658       ENST00000445668 ENSE00002446887
9047  ENSG00000185658       ENST00000445668 ENSE00003490914
9048  ENSG00000185658       ENST00000445668 ENSE00003536179
9049  ENSG00000185658       ENST00000445668 ENSE00001735508
9050  ENSG00000185658       ENST00000445668 ENSE00003616362
9051  ENSG00000185658       ENST00000445668 ENSE00003575172
9052  ENSG00000185658       ENST00000445668 ENSE00003582397
9053  ENSG00000185658       ENST00000445668 ENSE00001619715
9054  ENSG00000185658       ENST00000430093 ENSE00002482303
9055  ENSG00000185658       ENST00000430093 ENSE00002520544
9056  ENSG00000185658       ENST00000430093 ENSE00002433897
9057  ENSG00000185658       ENST00000430093 ENSE00002506458
9058  ENSG00000185658       ENST00000430093 ENSE00002521348
9059  ENSG00000185658       ENST00000430093 ENSE00002497896
9060  ENSG00000185658       ENST00000430093 ENSE00002446887
9061  ENSG00000185658       ENST00000430093 ENSE00001735508
9062  ENSG00000185658       ENST00000430093 ENSE00003575172
9063  ENSG00000185658       ENST00000430093 ENSE00003582397
9064  ENSG00000185658       ENST00000430093 ENSE00001619715
9065  ENSG00000185658       ENST00000430093 ENSE00001783589
9066  ENSG00000185658       ENST00000430093 ENSE00003630425
9067  ENSG00000185658       ENST00000430093 ENSE00003687599
9068  ENSG00000185658       ENST00000430093 ENSE00003675221
9069  ENSG00000185658       ENST00000445245 ENSE00002482303
9070  ENSG00000185658       ENST00000445245 ENSE00002520544
9071  ENSG00000185658       ENST00000445245 ENSE00002433897
9072  ENSG00000185658       ENST00000445245 ENSE00002506458
9073  ENSG00000185658       ENST00000445245 ENSE00002521348
9074  ENSG00000185658       ENST00000445245 ENSE00002497896
9075  ENSG00000185658       ENST00000445245 ENSE00001735508
9076  ENSG00000185658       ENST00000445245 ENSE00003575172
9077  ENSG00000185658       ENST00000445245 ENSE00003582397
9078  ENSG00000185658       ENST00000445245 ENSE00001619715
9079  ENSG00000185658       ENST00000445245 ENSE00003630425
9080  ENSG00000185658       ENST00000445245 ENSE00003687599
9081  ENSG00000185658       ENST00000445245 ENSE00003675221
9082  ENSG00000185658       ENST00000445245 ENSE00001624112
9083  ENSG00000185658       ENST00000445245 ENSE00003495150
9084  ENSG00000185658       ENST00000455867 ENSE00002482303
9085  ENSG00000185658       ENST00000455867 ENSE00002520544
9086  ENSG00000185658       ENST00000455867 ENSE00002433897
9087  ENSG00000185658       ENST00000455867 ENSE00002506458
9088  ENSG00000185658       ENST00000455867 ENSE00002521348
9089  ENSG00000185658       ENST00000455867 ENSE00002497896
9090  ENSG00000185658       ENST00000455867 ENSE00002446887
9091  ENSG00000185658       ENST00000455867 ENSE00003490914
9092  ENSG00000185658       ENST00000455867 ENSE00003536179
9093  ENSG00000185658       ENST00000455867 ENSE00003600281
9094  ENSG00000185658       ENST00000455867 ENSE00003655791
9095  ENSG00000185658       ENST00000455867 ENSE00003584341
9096  ENSG00000185658       ENST00000455867 ENSE00001735508
9097  ENSG00000185658       ENST00000455867 ENSE00003564188
9098  ENSG00000185658       ENST00000412604 ENSE00002482303
9099  ENSG00000185658       ENST00000412604 ENSE00002520544
9100  ENSG00000185658       ENST00000412604 ENSE00002433897
9101  ENSG00000185658       ENST00000412604 ENSE00002506458
9102  ENSG00000185658       ENST00000412604 ENSE00002521348
9103  ENSG00000185658       ENST00000412604 ENSE00002497896
9104  ENSG00000185658       ENST00000412604 ENSE00002446887
9105  ENSG00000185658       ENST00000412604 ENSE00003490914
9106  ENSG00000185658       ENST00000412604 ENSE00003536179
9107  ENSG00000185658       ENST00000412604 ENSE00001735508
9108  ENSG00000185658       ENST00000412604 ENSE00003575172
9109  ENSG00000185658       ENST00000412604 ENSE00003582397
9110  ENSG00000185658       ENST00000412604 ENSE00002225679
9111  ENSG00000185658       ENST00000412604 ENSE00003540012
9112  ENSG00000185658       ENST00000412604 ENSE00003644923
9113  ENSG00000185658       ENST00000496759 ENSE00001851565
9114  ENSG00000185658       ENST00000496759 ENSE00001832241
9115  ENSG00000185658       ENST00000341322 ENSE00003515339
9116  ENSG00000185658       ENST00000341322 ENSE00003653232
9117  ENSG00000185658       ENST00000341322 ENSE00003641761
9118  ENSG00000185658       ENST00000341322 ENSE00001946259
9119  ENSG00000185658       ENST00000341322 ENSE00001486224
9120  ENSG00000185658       ENST00000470108 ENSE00001951079
9121  ENSG00000185658       ENST00000470108 ENSE00003497887
9122  ENSG00000185658       ENST00000470108 ENSE00003590815
9123  ENSG00000185658       ENST00000470108 ENSE00003594814
9124  ENSG00000185658       ENST00000470108 ENSE00001905226
9125  ENSG00000185658       ENST00000484090 ENSE00003590815
9126  ENSG00000185658       ENST00000484090 ENSE00001873973
9127  ENSG00000185658       ENST00000484090 ENSE00001871884
9128  ENSG00000255568       ENST00000603064 ENSE00003604103
9129  ENSG00000205622       ENST00000626259 ENSE00003767325
9130  ENSG00000205622       ENST00000626259 ENSE00003767488
9131  ENSG00000205622       ENST00000626259 ENSE00002440510
9132  ENSG00000205622       ENST00000626259 ENSE00003761206
9133  ENSG00000205622       ENST00000380931 ENSE00002440510
9134  ENSG00000205622       ENST00000380931 ENSE00001543058
9135  ENSG00000205622       ENST00000380931 ENSE00001543055
9136  ENSG00000205622       ENST00000380931 ENSE00001486856
9137  ENSG00000205622       ENST00000415824 ENSE00002440510
9138  ENSG00000205622       ENST00000415824 ENSE00001593766
9139  ENSG00000205622       ENST00000415824 ENSE00001718319
9140  ENSG00000205622       ENST00000415824 ENSE00001635974
9141  ENSG00000205622       ENST00000440379 ENSE00001717572
9142  ENSG00000205622       ENST00000440379 ENSE00001739866
9143  ENSG00000205622       ENST00000623098 ENSE00001543055
9144  ENSG00000205622       ENST00000623098 ENSE00003758780
9145  ENSG00000205622       ENST00000623098 ENSE00003759506
9146  ENSG00000205622       ENST00000623098 ENSE00003757941
9147  ENSG00000205622       ENST00000623098 ENSE00003757480
9148  ENSG00000205622       ENST00000623098 ENSE00003755442
9149  ENSG00000205622       ENST00000623098 ENSE00003722266
9150  ENSG00000205622       ENST00000623098 ENSE00003756083
9151  ENSG00000205622       ENST00000613045 ENSE00003722266
9152  ENSG00000205622       ENST00000613045 ENSE00003726544
9153  ENSG00000205622       ENST00000613045 ENSE00003735395
9154  ENSG00000205622       ENST00000613045 ENSE00003729674
9155  ENSG00000205622       ENST00000615324 ENSE00003717088
9156  ENSG00000229986       ENST00000416842 ENSE00001774031
9157  ENSG00000229986       ENST00000416842 ENSE00001650709
9158  ENSG00000243440       ENST00000435732 ENSE00001543502
9159  ENSG00000243440       ENST00000435732 ENSE00003598244
9160  ENSG00000243440       ENST00000435732 ENSE00003688243
9161  ENSG00000243440       ENST00000435732 ENSE00003203998
9162  ENSG00000243440       ENST00000435732 ENSE00003094519
9163  ENSG00000243440       ENST00000435732 ENSE00003122886
9164  ENSG00000243440       ENST00000435732 ENSE00001731205
9165  ENSG00000243440       ENST00000400562 ENSE00001543502
9166  ENSG00000243440       ENST00000400562 ENSE00003598244
9167  ENSG00000243440       ENST00000400562 ENSE00003688243
9168  ENSG00000243440       ENST00000400562 ENSE00003203998
9169  ENSG00000243440       ENST00000400562 ENSE00003094519
9170  ENSG00000243440       ENST00000400562 ENSE00001543504
9171  ENSG00000243440       ENST00000400562 ENSE00001543496
9172  ENSG00000243440       ENST00000469393 ENSE00003606206
9173  ENSG00000243440       ENST00000469393 ENSE00003626471
9174  ENSG00000243440       ENST00000469393 ENSE00001852661
9175  ENSG00000243440       ENST00000467280 ENSE00003606206
9176  ENSG00000243440       ENST00000467280 ENSE00001899848
9177  ENSG00000215088       ENST00000414617 ENSE00001687998
9178  ENSG00000142182       ENST00000436357 ENSE00001687519
9179  ENSG00000142182       ENST00000436357 ENSE00003790618
9180  ENSG00000142182       ENST00000436357 ENSE00000952766
9181  ENSG00000142182       ENST00000436357 ENSE00001678574
9182  ENSG00000142182       ENST00000270172 ENSE00003790618
9183  ENSG00000142182       ENST00000270172 ENSE00000952766
9184  ENSG00000142182       ENST00000270172 ENSE00001371054
9185  ENSG00000142182       ENST00000270172 ENSE00000952757
9186  ENSG00000142182       ENST00000270172 ENSE00000952758
9187  ENSG00000142182       ENST00000270172 ENSE00000952759
9188  ENSG00000142182       ENST00000270172 ENSE00000952760
9189  ENSG00000142182       ENST00000270172 ENSE00001286863
9190  ENSG00000142182       ENST00000270172 ENSE00001297260
9191  ENSG00000142182       ENST00000270172 ENSE00001311957
9192  ENSG00000142182       ENST00000270172 ENSE00001291091
9193  ENSG00000142182       ENST00000270172 ENSE00000952767
9194  ENSG00000142182       ENST00000628202 ENSE00003790618
9195  ENSG00000142182       ENST00000628202 ENSE00000952766
9196  ENSG00000142182       ENST00000628202 ENSE00000952757
9197  ENSG00000142182       ENST00000628202 ENSE00000952758
9198  ENSG00000142182       ENST00000628202 ENSE00000952759
9199  ENSG00000142182       ENST00000628202 ENSE00000952760
9200  ENSG00000142182       ENST00000628202 ENSE00001286863
9201  ENSG00000142182       ENST00000628202 ENSE00001297260
9202  ENSG00000142182       ENST00000628202 ENSE00001311957
9203  ENSG00000142182       ENST00000628202 ENSE00001291091
9204  ENSG00000142182       ENST00000628202 ENSE00003768543
9205  ENSG00000142182       ENST00000628202 ENSE00003767744
9206  ENSG00000142182       ENST00000431166 ENSE00003790618
9207  ENSG00000142182       ENST00000431166 ENSE00000952757
9208  ENSG00000142182       ENST00000431166 ENSE00000952759
9209  ENSG00000142182       ENST00000431166 ENSE00000952760
9210  ENSG00000142182       ENST00000431166 ENSE00001286863
9211  ENSG00000142182       ENST00000431166 ENSE00001297260
9212  ENSG00000142182       ENST00000431166 ENSE00001311957
9213  ENSG00000142182       ENST00000431166 ENSE00001291091
9214  ENSG00000142182       ENST00000431166 ENSE00001754418
9215  ENSG00000279690       ENST00000624800 ENSE00003755953
9216  ENSG00000280433       ENST00000623998 ENSE00003756000
9217  ENSG00000280433       ENST00000623998 ENSE00003757796
9218  ENSG00000280433       ENST00000623998 ENSE00003755430
9219  ENSG00000280433       ENST00000623744 ENSE00003758857
9220  ENSG00000280433       ENST00000623744 ENSE00003758141
9221  ENSG00000280433       ENST00000623744 ENSE00003758852
9222  ENSG00000224247       ENST00000433588 ENSE00001623810
9223  ENSG00000224247       ENST00000433588 ENSE00001795303
9224  ENSG00000224524       ENST00000450823 ENSE00001685999
9225  ENSG00000182871       ENST00000400337 ENSE00001758888
9226  ENSG00000182871       ENST00000400337 ENSE00001603969
9227  ENSG00000182871       ENST00000400337 ENSE00001654135
9228  ENSG00000182871       ENST00000400337 ENSE00001640622
9229  ENSG00000182871       ENST00000400337 ENSE00001722709
9230  ENSG00000182871       ENST00000400337 ENSE00001740104
9231  ENSG00000182871       ENST00000400337 ENSE00001627003
9232  ENSG00000182871       ENST00000400337 ENSE00001638049
9233  ENSG00000182871       ENST00000400337 ENSE00001595082
9234  ENSG00000182871       ENST00000400337 ENSE00001685925
9235  ENSG00000182871       ENST00000400337 ENSE00001758572
9236  ENSG00000182871       ENST00000400337 ENSE00001617212
9237  ENSG00000182871       ENST00000400337 ENSE00001619008
9238  ENSG00000182871       ENST00000400337 ENSE00001665017
9239  ENSG00000182871       ENST00000400337 ENSE00001748652
9240  ENSG00000182871       ENST00000400337 ENSE00001760845
9241  ENSG00000182871       ENST00000400337 ENSE00001705636
9242  ENSG00000182871       ENST00000400337 ENSE00001712155
9243  ENSG00000182871       ENST00000400337 ENSE00001677445
9244  ENSG00000182871       ENST00000400337 ENSE00001759875
9245  ENSG00000182871       ENST00000400337 ENSE00001792883
9246  ENSG00000182871       ENST00000400337 ENSE00001742681
9247  ENSG00000182871       ENST00000400337 ENSE00001649344
9248  ENSG00000182871       ENST00000400337 ENSE00001701626
9249  ENSG00000182871       ENST00000400337 ENSE00001654943
9250  ENSG00000182871       ENST00000400337 ENSE00003523340
9251  ENSG00000182871       ENST00000400337 ENSE00003594559
9252  ENSG00000182871       ENST00000400337 ENSE00003563378
9253  ENSG00000182871       ENST00000400337 ENSE00003601528
9254  ENSG00000182871       ENST00000400337 ENSE00003582147
9255  ENSG00000182871       ENST00000400337 ENSE00003624748
9256  ENSG00000182871       ENST00000400337 ENSE00001717282
9257  ENSG00000182871       ENST00000400337 ENSE00001638654
9258  ENSG00000182871       ENST00000400337 ENSE00001601591
9259  ENSG00000182871       ENST00000400337 ENSE00001761211
9260  ENSG00000182871       ENST00000400337 ENSE00001725836
9261  ENSG00000182871       ENST00000400337 ENSE00001717154
9262  ENSG00000182871       ENST00000400337 ENSE00002238826
9263  ENSG00000182871       ENST00000400337 ENSE00003582883
9264  ENSG00000182871       ENST00000400337 ENSE00003643178
9265  ENSG00000182871       ENST00000400337 ENSE00003588504
9266  ENSG00000182871       ENST00000400337 ENSE00001542501
9267  ENSG00000182871       ENST00000355480 ENSE00001654135
9268  ENSG00000182871       ENST00000355480 ENSE00001640622
9269  ENSG00000182871       ENST00000355480 ENSE00001722709
9270  ENSG00000182871       ENST00000355480 ENSE00001740104
9271  ENSG00000182871       ENST00000355480 ENSE00001627003
9272  ENSG00000182871       ENST00000355480 ENSE00001638049
9273  ENSG00000182871       ENST00000355480 ENSE00001595082
9274  ENSG00000182871       ENST00000355480 ENSE00001685925
9275  ENSG00000182871       ENST00000355480 ENSE00001758572
9276  ENSG00000182871       ENST00000355480 ENSE00001617212
9277  ENSG00000182871       ENST00000355480 ENSE00001619008
9278  ENSG00000182871       ENST00000355480 ENSE00001665017
9279  ENSG00000182871       ENST00000355480 ENSE00001748652
9280  ENSG00000182871       ENST00000355480 ENSE00001760845
9281  ENSG00000182871       ENST00000355480 ENSE00001705636
9282  ENSG00000182871       ENST00000355480 ENSE00001712155
9283  ENSG00000182871       ENST00000355480 ENSE00001677445
9284  ENSG00000182871       ENST00000355480 ENSE00001759875
9285  ENSG00000182871       ENST00000355480 ENSE00001792883
9286  ENSG00000182871       ENST00000355480 ENSE00001742681
9287  ENSG00000182871       ENST00000355480 ENSE00001649344
9288  ENSG00000182871       ENST00000355480 ENSE00001701626
9289  ENSG00000182871       ENST00000355480 ENSE00001654943
9290  ENSG00000182871       ENST00000355480 ENSE00003523340
9291  ENSG00000182871       ENST00000355480 ENSE00003594559
9292  ENSG00000182871       ENST00000355480 ENSE00003563378
9293  ENSG00000182871       ENST00000355480 ENSE00003601528
9294  ENSG00000182871       ENST00000355480 ENSE00003582147
9295  ENSG00000182871       ENST00000355480 ENSE00003624748
9296  ENSG00000182871       ENST00000355480 ENSE00001717282
9297  ENSG00000182871       ENST00000355480 ENSE00001638654
9298  ENSG00000182871       ENST00000355480 ENSE00001601591
9299  ENSG00000182871       ENST00000355480 ENSE00001761211
9300  ENSG00000182871       ENST00000355480 ENSE00001725836
9301  ENSG00000182871       ENST00000355480 ENSE00001717154
9302  ENSG00000182871       ENST00000355480 ENSE00002238826
9303  ENSG00000182871       ENST00000355480 ENSE00003582883
9304  ENSG00000182871       ENST00000355480 ENSE00003643178
9305  ENSG00000182871       ENST00000355480 ENSE00003588504
9306  ENSG00000182871       ENST00000355480 ENSE00001542501
9307  ENSG00000182871       ENST00000355480 ENSE00001428474
9308  ENSG00000182871       ENST00000342220 ENSE00001759875
9309  ENSG00000182871       ENST00000342220 ENSE00001792883
9310  ENSG00000182871       ENST00000342220 ENSE00001742681
9311  ENSG00000182871       ENST00000342220 ENSE00001649344
9312  ENSG00000182871       ENST00000342220 ENSE00001701626
9313  ENSG00000182871       ENST00000342220 ENSE00001654943
9314  ENSG00000182871       ENST00000342220 ENSE00003523340
9315  ENSG00000182871       ENST00000342220 ENSE00003594559
9316  ENSG00000182871       ENST00000342220 ENSE00003563378
9317  ENSG00000182871       ENST00000342220 ENSE00003601528
9318  ENSG00000182871       ENST00000342220 ENSE00003582147
9319  ENSG00000182871       ENST00000342220 ENSE00003624748
9320  ENSG00000182871       ENST00000342220 ENSE00001717282
9321  ENSG00000182871       ENST00000342220 ENSE00001638654
9322  ENSG00000182871       ENST00000342220 ENSE00001601591
9323  ENSG00000182871       ENST00000342220 ENSE00001761211
9324  ENSG00000182871       ENST00000342220 ENSE00001725836
9325  ENSG00000182871       ENST00000342220 ENSE00002238826
9326  ENSG00000182871       ENST00000342220 ENSE00003582883
9327  ENSG00000182871       ENST00000342220 ENSE00003643178
9328  ENSG00000182871       ENST00000342220 ENSE00003588504
9329  ENSG00000182871       ENST00000342220 ENSE00001542501
9330  ENSG00000182871       ENST00000342220 ENSE00001631330
9331  ENSG00000182871       ENST00000459895 ENSE00001830760
9332  ENSG00000182871       ENST00000459895 ENSE00003536172
9333  ENSG00000182871       ENST00000459895 ENSE00003508403
9334  ENSG00000182871       ENST00000459895 ENSE00003629018
9335  ENSG00000182871       ENST00000459895 ENSE00003552652
9336  ENSG00000182871       ENST00000459895 ENSE00003463075
9337  ENSG00000182871       ENST00000459895 ENSE00003465228
9338  ENSG00000182871       ENST00000459895 ENSE00001857655
9339  ENSG00000182871       ENST00000423214 ENSE00001725836
9340  ENSG00000182871       ENST00000423214 ENSE00001717154
9341  ENSG00000182871       ENST00000423214 ENSE00003582883
9342  ENSG00000182871       ENST00000423214 ENSE00003643178
9343  ENSG00000182871       ENST00000423214 ENSE00003588504
9344  ENSG00000182871       ENST00000423214 ENSE00001591664
9345  ENSG00000182871       ENST00000473212 ENSE00003575913
9346  ENSG00000182871       ENST00000473212 ENSE00003636018
9347  ENSG00000182871       ENST00000473212 ENSE00003613826
9348  ENSG00000182871       ENST00000473212 ENSE00001855789
9349  ENSG00000182871       ENST00000473212 ENSE00001875428
9350  ENSG00000182871       ENST00000359759 ENSE00001654135
9351  ENSG00000182871       ENST00000359759 ENSE00001640622
9352  ENSG00000182871       ENST00000359759 ENSE00001722709
9353  ENSG00000182871       ENST00000359759 ENSE00001740104
9354  ENSG00000182871       ENST00000359759 ENSE00001627003
9355  ENSG00000182871       ENST00000359759 ENSE00001638049
9356  ENSG00000182871       ENST00000359759 ENSE00001595082
9357  ENSG00000182871       ENST00000359759 ENSE00001685925
9358  ENSG00000182871       ENST00000359759 ENSE00001758572
9359  ENSG00000182871       ENST00000359759 ENSE00001617212
9360  ENSG00000182871       ENST00000359759 ENSE00001619008
9361  ENSG00000182871       ENST00000359759 ENSE00001665017
9362  ENSG00000182871       ENST00000359759 ENSE00001748652
9363  ENSG00000182871       ENST00000359759 ENSE00001760845
9364  ENSG00000182871       ENST00000359759 ENSE00001705636
9365  ENSG00000182871       ENST00000359759 ENSE00001712155
9366  ENSG00000182871       ENST00000359759 ENSE00001677445
9367  ENSG00000182871       ENST00000359759 ENSE00001759875
9368  ENSG00000182871       ENST00000359759 ENSE00001792883
9369  ENSG00000182871       ENST00000359759 ENSE00001742681
9370  ENSG00000182871       ENST00000359759 ENSE00001649344
9371  ENSG00000182871       ENST00000359759 ENSE00001701626
9372  ENSG00000182871       ENST00000359759 ENSE00001654943
9373  ENSG00000182871       ENST00000359759 ENSE00003523340
9374  ENSG00000182871       ENST00000359759 ENSE00003594559
9375  ENSG00000182871       ENST00000359759 ENSE00003563378
9376  ENSG00000182871       ENST00000359759 ENSE00003601528
9377  ENSG00000182871       ENST00000359759 ENSE00003582147
9378  ENSG00000182871       ENST00000359759 ENSE00003624748
9379  ENSG00000182871       ENST00000359759 ENSE00001717282
9380  ENSG00000182871       ENST00000359759 ENSE00001638654
9381  ENSG00000182871       ENST00000359759 ENSE00001601591
9382  ENSG00000182871       ENST00000359759 ENSE00001761211
9383  ENSG00000182871       ENST00000359759 ENSE00001725836
9384  ENSG00000182871       ENST00000359759 ENSE00001717154
9385  ENSG00000182871       ENST00000359759 ENSE00002238826
9386  ENSG00000182871       ENST00000359759 ENSE00003582883
9387  ENSG00000182871       ENST00000359759 ENSE00003643178
9388  ENSG00000182871       ENST00000359759 ENSE00003588504
9389  ENSG00000182871       ENST00000359759 ENSE00001299500
9390  ENSG00000182871       ENST00000359759 ENSE00001313674
9391  ENSG00000232837       ENST00000433952 ENSE00001718570
9392  ENSG00000232837       ENST00000433952 ENSE00001801407
9393  ENSG00000232837       ENST00000433952 ENSE00001660496
9394  ENSG00000227256       ENST00000453549 ENSE00001727266
9395  ENSG00000227256       ENST00000453549 ENSE00001762978
9396  ENSG00000227256       ENST00000453549 ENSE00001652395
9397  ENSG00000214326       ENST00000398116 ENSE00001610827
9398  ENSG00000228159       ENST00000427446 ENSE00001662293
9399  ENSG00000228159       ENST00000427446 ENSE00001678745
9400  ENSG00000228159       ENST00000427446 ENSE00001645333
9401  ENSG00000228159       ENST00000427446 ENSE00001733572
9402  ENSG00000219280       ENST00000407739 ENSE00001554923
9403  ENSG00000185390       ENST00000332473 ENSE00002040703
9404  ENSG00000185390       ENST00000332473 ENSE00001329082
9405  ENSG00000186866       ENST00000471540 ENSE00001833042
9406  ENSG00000186866       ENST00000471540 ENSE00003537856
9407  ENSG00000186866       ENST00000471540 ENSE00003553176
9408  ENSG00000186866       ENST00000471540 ENSE00001917296
9409  ENSG00000186866       ENST00000471540 ENSE00003653777
9410  ENSG00000186866       ENST00000471540 ENSE00003563296
9411  ENSG00000186866       ENST00000471540 ENSE00003608186
9412  ENSG00000186866       ENST00000471540 ENSE00003478059
9413  ENSG00000186866       ENST00000471540 ENSE00003568041
9414  ENSG00000186866       ENST00000331343 ENSE00001850690
9415  ENSG00000186866       ENST00000331343 ENSE00003614666
9416  ENSG00000186866       ENST00000331343 ENSE00003473928
9417  ENSG00000186866       ENST00000331343 ENSE00003522310
9418  ENSG00000186866       ENST00000331343 ENSE00003583701
9419  ENSG00000186866       ENST00000331343 ENSE00003530867
9420  ENSG00000186866       ENST00000331343 ENSE00003462591
9421  ENSG00000186866       ENST00000331343 ENSE00001350244
9422  ENSG00000186866       ENST00000334538 ENSE00003568041
9423  ENSG00000186866       ENST00000334538 ENSE00001850690
9424  ENSG00000186866       ENST00000334538 ENSE00003614666
9425  ENSG00000186866       ENST00000334538 ENSE00003473928
9426  ENSG00000186866       ENST00000334538 ENSE00003522310
9427  ENSG00000186866       ENST00000334538 ENSE00003583701
9428  ENSG00000186866       ENST00000334538 ENSE00003530867
9429  ENSG00000186866       ENST00000334538 ENSE00003462591
9430  ENSG00000186866       ENST00000334538 ENSE00003683659
9431  ENSG00000186866       ENST00000334538 ENSE00003567218
9432  ENSG00000186866       ENST00000349485 ENSE00001850690
9433  ENSG00000186866       ENST00000349485 ENSE00003614666
9434  ENSG00000186866       ENST00000349485 ENSE00003473928
9435  ENSG00000186866       ENST00000349485 ENSE00003522310
9436  ENSG00000186866       ENST00000349485 ENSE00003583701
9437  ENSG00000186866       ENST00000349485 ENSE00003530867
9438  ENSG00000186866       ENST00000349485 ENSE00003462591
9439  ENSG00000186866       ENST00000349485 ENSE00003683659
9440  ENSG00000186866       ENST00000349485 ENSE00003489621
9441  ENSG00000186866       ENST00000485190 ENSE00001820548
9442  ENSG00000186866       ENST00000485190 ENSE00001910129
9443  ENSG00000186866       ENST00000460932 ENSE00003608186
9444  ENSG00000186866       ENST00000460932 ENSE00001939547
9445  ENSG00000186866       ENST00000460932 ENSE00001902655
9446  ENSG00000186866       ENST00000463917 ENSE00001848517
9447  ENSG00000186866       ENST00000463917 ENSE00001880278
9448  ENSG00000186866       ENST00000451615 ENSE00003473928
9449  ENSG00000186866       ENST00000451615 ENSE00003522310
9450  ENSG00000186866       ENST00000451615 ENSE00003583701
9451  ENSG00000186866       ENST00000451615 ENSE00003530867
9452  ENSG00000186866       ENST00000451615 ENSE00003462591
9453  ENSG00000186866       ENST00000451615 ENSE00002442646
9454  ENSG00000186866       ENST00000451615 ENSE00001680898
9455  ENSG00000186866       ENST00000451615 ENSE00002468586
9456  ENSG00000186866       ENST00000493524 ENSE00003537856
9457  ENSG00000186866       ENST00000493524 ENSE00003553176
9458  ENSG00000186866       ENST00000493524 ENSE00003653777
9459  ENSG00000186866       ENST00000493524 ENSE00002025594
9460  ENSG00000186866       ENST00000493524 ENSE00003673509
9461  ENSG00000186866       ENST00000493524 ENSE00001935444
9462  ENSG00000186866       ENST00000468360 ENSE00003553176
9463  ENSG00000186866       ENST00000468360 ENSE00003653777
9464  ENSG00000186866       ENST00000468360 ENSE00003673509
9465  ENSG00000186866       ENST00000468360 ENSE00001902843
9466  ENSG00000186866       ENST00000468360 ENSE00001828687
9467  ENSG00000186866       ENST00000493811 ENSE00003673509
9468  ENSG00000186866       ENST00000493811 ENSE00001951160
9469  ENSG00000186866       ENST00000493811 ENSE00003690134
9470  ENSG00000186866       ENST00000493811 ENSE00001942075
9471  ENSG00000186866       ENST00000476653 ENSE00001956512
9472  ENSG00000186866       ENST00000476653 ENSE00001903333
9473  ENSG00000186866       ENST00000612472 ENSE00003553176
9474  ENSG00000186866       ENST00000612472 ENSE00003653777
9475  ENSG00000186866       ENST00000612472 ENSE00003563296
9476  ENSG00000186866       ENST00000612472 ENSE00003608186
9477  ENSG00000186866       ENST00000612472 ENSE00003614666
9478  ENSG00000186866       ENST00000612472 ENSE00003733514
9479  ENSG00000186866       ENST00000612472 ENSE00003748436
9480  ENSG00000186866       ENST00000612472 ENSE00003740519
9481  ENSG00000186866       ENST00000612472 ENSE00003716929
9482  ENSG00000186866       ENST00000612472 ENSE00003727744
9483  ENSG00000186866       ENST00000615172 ENSE00003462591
9484  ENSG00000186866       ENST00000615172 ENSE00003683659
9485  ENSG00000186866       ENST00000615172 ENSE00003567218
9486  ENSG00000186866       ENST00000615172 ENSE00003734930
9487  ENSG00000186866       ENST00000615172 ENSE00003718162
9488  ENSG00000186866       ENST00000615172 ENSE00003736828
9489  ENSG00000277282       ENST00000622028 ENSE00003742120
9490  ENSG00000277282       ENST00000622028 ENSE00003753345
9491  ENSG00000197381       ENST00000462214 ENSE00001840433
9492  ENSG00000197381       ENST00000462214 ENSE00001210927
9493  ENSG00000197381       ENST00000462214 ENSE00003777008
9494  ENSG00000197381       ENST00000462214 ENSE00001825818
9495  ENSG00000197381       ENST00000460734 ENSE00001210927
9496  ENSG00000197381       ENST00000460734 ENSE00003777008
9497  ENSG00000197381       ENST00000460734 ENSE00001890115
9498  ENSG00000197381       ENST00000460734 ENSE00001929777
9499  ENSG00000197381       ENST00000460734 ENSE00001888667
9500  ENSG00000197381       ENST00000460734 ENSE00001864664
9501  ENSG00000197381       ENST00000460734 ENSE00001935775
9502  ENSG00000197381       ENST00000460734 ENSE00001902790
9503  ENSG00000197381       ENST00000460734 ENSE00002456815
9504  ENSG00000197381       ENST00000460734 ENSE00001847313
9505  ENSG00000197381       ENST00000389861 ENSE00001210927
9506  ENSG00000197381       ENST00000389861 ENSE00003777008
9507  ENSG00000197381       ENST00000389861 ENSE00001210936
9508  ENSG00000197381       ENST00000389861 ENSE00003779805
9509  ENSG00000197381       ENST00000389861 ENSE00003781361
9510  ENSG00000197381       ENST00000389861 ENSE00003781814
9511  ENSG00000197381       ENST00000389861 ENSE00003776488
9512  ENSG00000197381       ENST00000389861 ENSE00003781665
9513  ENSG00000197381       ENST00000389861 ENSE00003783846
9514  ENSG00000197381       ENST00000389861 ENSE00003780616
9515  ENSG00000197381       ENST00000389861 ENSE00003782989
9516  ENSG00000197381       ENST00000389861 ENSE00003779854
9517  ENSG00000197381       ENST00000389861 ENSE00003562843
9518  ENSG00000197381       ENST00000492414 ENSE00001210927
9519  ENSG00000197381       ENST00000492414 ENSE00001210936
9520  ENSG00000197381       ENST00000492414 ENSE00003562843
9521  ENSG00000197381       ENST00000492414 ENSE00003625084
9522  ENSG00000197381       ENST00000492414 ENSE00001050989
9523  ENSG00000197381       ENST00000492414 ENSE00003721505
9524  ENSG00000197381       ENST00000492414 ENSE00003721925
9525  ENSG00000197381       ENST00000492414 ENSE00003732074
9526  ENSG00000197381       ENST00000492414 ENSE00003736672
9527  ENSG00000197381       ENST00000492414 ENSE00003745511
9528  ENSG00000197381       ENST00000492414 ENSE00003718967
9529  ENSG00000197381       ENST00000492414 ENSE00003711984
9530  ENSG00000197381       ENST00000496664 ENSE00001210927
9531  ENSG00000197381       ENST00000496664 ENSE00001210936
9532  ENSG00000197381       ENST00000496664 ENSE00003562843
9533  ENSG00000197381       ENST00000496664 ENSE00003625084
9534  ENSG00000197381       ENST00000496664 ENSE00001050989
9535  ENSG00000197381       ENST00000496664 ENSE00003721505
9536  ENSG00000197381       ENST00000496664 ENSE00003721925
9537  ENSG00000197381       ENST00000496664 ENSE00003732074
9538  ENSG00000197381       ENST00000496664 ENSE00003736672
9539  ENSG00000197381       ENST00000496664 ENSE00003745511
9540  ENSG00000197381       ENST00000496664 ENSE00003718967
9541  ENSG00000197381       ENST00000496664 ENSE00003711984
9542  ENSG00000197381       ENST00000496664 ENSE00001507134
9543  ENSG00000197381       ENST00000389863 ENSE00001210927
9544  ENSG00000197381       ENST00000389863 ENSE00001210936
9545  ENSG00000197381       ENST00000389863 ENSE00003625084
9546  ENSG00000197381       ENST00000389863 ENSE00001050989
9547  ENSG00000197381       ENST00000389863 ENSE00003721505
9548  ENSG00000197381       ENST00000389863 ENSE00003721925
9549  ENSG00000197381       ENST00000389863 ENSE00003732074
9550  ENSG00000197381       ENST00000389863 ENSE00003736672
9551  ENSG00000197381       ENST00000389863 ENSE00003745511
9552  ENSG00000197381       ENST00000389863 ENSE00003718967
9553  ENSG00000197381       ENST00000389863 ENSE00001507134
9554  ENSG00000197381       ENST00000389863 ENSE00001507132
9555  ENSG00000197381       ENST00000389863 ENSE00003651172
9556  ENSG00000197381       ENST00000348831 ENSE00001210927
9557  ENSG00000197381       ENST00000348831 ENSE00001210936
9558  ENSG00000197381       ENST00000348831 ENSE00003625084
9559  ENSG00000197381       ENST00000348831 ENSE00001050989
9560  ENSG00000197381       ENST00000348831 ENSE00003721505
9561  ENSG00000197381       ENST00000348831 ENSE00003721925
9562  ENSG00000197381       ENST00000348831 ENSE00003732074
9563  ENSG00000197381       ENST00000348831 ENSE00003736672
9564  ENSG00000197381       ENST00000348831 ENSE00003745511
9565  ENSG00000197381       ENST00000348831 ENSE00003718967
9566  ENSG00000197381       ENST00000348831 ENSE00001530203
9567  ENSG00000197381       ENST00000449478 ENSE00001210927
9568  ENSG00000197381       ENST00000449478 ENSE00003625084
9569  ENSG00000197381       ENST00000449478 ENSE00001631876
9570  ENSG00000197381       ENST00000449478 ENSE00001772958
9571  ENSG00000197381       ENST00000464215 ENSE00003777008
9572  ENSG00000197381       ENST00000464215 ENSE00001832701
9573  ENSG00000197381       ENST00000464215 ENSE00001871618
9574  ENSG00000197381       ENST00000360697 ENSE00001050989
9575  ENSG00000197381       ENST00000360697 ENSE00003721505
9576  ENSG00000197381       ENST00000360697 ENSE00003721925
9577  ENSG00000197381       ENST00000360697 ENSE00003732074
9578  ENSG00000197381       ENST00000360697 ENSE00003736672
9579  ENSG00000197381       ENST00000360697 ENSE00003745511
9580  ENSG00000197381       ENST00000360697 ENSE00003718967
9581  ENSG00000197381       ENST00000360697 ENSE00001507134
9582  ENSG00000197381       ENST00000360697 ENSE00001530203
9583  ENSG00000197381       ENST00000360697 ENSE00001507135
9584  ENSG00000197381       ENST00000481022 ENSE00001817612
9585  ENSG00000197381       ENST00000481022 ENSE00001894242
9586  ENSG00000197381       ENST00000631642 ENSE00003776488
9587  ENSG00000197381       ENST00000631642 ENSE00003782648
9588  ENSG00000197381       ENST00000631642 ENSE00003776594
9589  ENSG00000197381       ENST00000631642 ENSE00003779119
9590  ENSG00000197381       ENST00000437626 ENSE00001210927
9591  ENSG00000197381       ENST00000437626 ENSE00001210936
9592  ENSG00000197381       ENST00000437626 ENSE00003625084
9593  ENSG00000197381       ENST00000437626 ENSE00001050989
9594  ENSG00000197381       ENST00000437626 ENSE00003721505
9595  ENSG00000197381       ENST00000437626 ENSE00003721925
9596  ENSG00000197381       ENST00000437626 ENSE00003732074
9597  ENSG00000197381       ENST00000437626 ENSE00003736672
9598  ENSG00000197381       ENST00000437626 ENSE00003745511
9599  ENSG00000197381       ENST00000437626 ENSE00003718967
9600  ENSG00000197381       ENST00000437626 ENSE00003711984
9601  ENSG00000197381       ENST00000437626 ENSE00001507134
9602  ENSG00000197381       ENST00000437626 ENSE00001612728
9603  ENSG00000197381       ENST00000611195 ENSE00003723523
9604  ENSG00000197381       ENST00000611195 ENSE00003724758
9605  ENSG00000197381       ENST00000629643 ENSE00001050989
9606  ENSG00000197381       ENST00000629643 ENSE00003721505
9607  ENSG00000197381       ENST00000629643 ENSE00003721925
9608  ENSG00000197381       ENST00000629643 ENSE00003732074
9609  ENSG00000197381       ENST00000629643 ENSE00003736672
9610  ENSG00000197381       ENST00000629643 ENSE00003745511
9611  ENSG00000197381       ENST00000629643 ENSE00003718967
9612  ENSG00000197381       ENST00000629643 ENSE00003711984
9613  ENSG00000197381       ENST00000629643 ENSE00001612728
9614  ENSG00000197381       ENST00000629643 ENSE00003769076
9615  ENSG00000197381       ENST00000629643 ENSE00003587995
9616  ENSG00000160256       ENST00000291634 ENSE00001878719
9617  ENSG00000160256       ENST00000291634 ENSE00001050957
9618  ENSG00000160256       ENST00000291634 ENSE00003668740
9619  ENSG00000160256       ENST00000291634 ENSE00003550369
9620  ENSG00000160256       ENST00000291634 ENSE00003504383
9621  ENSG00000160256       ENST00000291634 ENSE00001819747
9622  ENSG00000160256       ENST00000397826 ENSE00003668740
9623  ENSG00000160256       ENST00000397826 ENSE00003550369
9624  ENSG00000160256       ENST00000397826 ENSE00003504383
9625  ENSG00000160256       ENST00000397826 ENSE00001819747
9626  ENSG00000160256       ENST00000397826 ENSE00001942549
9627  ENSG00000160256       ENST00000397826 ENSE00001530388
9628  ENSG00000160256       ENST00000458015 ENSE00003668740
9629  ENSG00000160256       ENST00000458015 ENSE00003550369
9630  ENSG00000160256       ENST00000458015 ENSE00001530388
9631  ENSG00000160256       ENST00000458015 ENSE00001530392
9632  ENSG00000160256       ENST00000458015 ENSE00001618394
9633  ENSG00000160256       ENST00000479127 ENSE00001809547
9634  ENSG00000160256       ENST00000479127 ENSE00003541861
9635  ENSG00000160256       ENST00000479127 ENSE00003653566
9636  ENSG00000160256       ENST00000479127 ENSE00003630684
9637  ENSG00000160256       ENST00000479127 ENSE00001050954
9638  ENSG00000160256       ENST00000485207 ENSE00001050954
9639  ENSG00000160256       ENST00000485207 ENSE00001911440
9640  ENSG00000186967       ENST00000334058 ENSE00001338568
9641  ENSG00000186965       ENST00000334055 ENSE00001338566
9642  ENSG00000159131       ENST00000381815 ENSE00001232541
9643  ENSG00000159131       ENST00000381815 ENSE00003564138
9644  ENSG00000159131       ENST00000381815 ENSE00003660742
9645  ENSG00000159131       ENST00000381815 ENSE00003786797
9646  ENSG00000159131       ENST00000381815 ENSE00003622385
9647  ENSG00000159131       ENST00000381815 ENSE00003636687
9648  ENSG00000159131       ENST00000381815 ENSE00003784675
9649  ENSG00000159131       ENST00000381815 ENSE00003466855
9650  ENSG00000159131       ENST00000381815 ENSE00003481319
9651  ENSG00000159131       ENST00000381815 ENSE00003513650
9652  ENSG00000159131       ENST00000381815 ENSE00003539927
9653  ENSG00000159131       ENST00000381815 ENSE00003674151
9654  ENSG00000159131       ENST00000381815 ENSE00003609172
9655  ENSG00000159131       ENST00000381815 ENSE00003468726
9656  ENSG00000159131       ENST00000381815 ENSE00003513723
9657  ENSG00000159131       ENST00000381815 ENSE00003675443
9658  ENSG00000159131       ENST00000381815 ENSE00003645473
9659  ENSG00000159131       ENST00000381815 ENSE00003680855
9660  ENSG00000159131       ENST00000381815 ENSE00003468374
9661  ENSG00000159131       ENST00000381815 ENSE00003687543
9662  ENSG00000159131       ENST00000381815 ENSE00003507973
9663  ENSG00000159131       ENST00000381815 ENSE00001736479
9664  ENSG00000159131       ENST00000381831 ENSE00003660742
9665  ENSG00000159131       ENST00000381831 ENSE00003786797
9666  ENSG00000159131       ENST00000381831 ENSE00003622385
9667  ENSG00000159131       ENST00000381831 ENSE00003636687
9668  ENSG00000159131       ENST00000381831 ENSE00003784675
9669  ENSG00000159131       ENST00000381831 ENSE00003466855
9670  ENSG00000159131       ENST00000381831 ENSE00003481319
9671  ENSG00000159131       ENST00000381831 ENSE00003513650
9672  ENSG00000159131       ENST00000381831 ENSE00003539927
9673  ENSG00000159131       ENST00000381831 ENSE00003674151
9674  ENSG00000159131       ENST00000381831 ENSE00003609172
9675  ENSG00000159131       ENST00000381831 ENSE00003468726
9676  ENSG00000159131       ENST00000381831 ENSE00003513723
9677  ENSG00000159131       ENST00000381831 ENSE00003675443
9678  ENSG00000159131       ENST00000381831 ENSE00003645473
9679  ENSG00000159131       ENST00000381831 ENSE00003680855
9680  ENSG00000159131       ENST00000381831 ENSE00003468374
9681  ENSG00000159131       ENST00000381831 ENSE00003687543
9682  ENSG00000159131       ENST00000381831 ENSE00003507973
9683  ENSG00000159131       ENST00000381831 ENSE00001736479
9684  ENSG00000159131       ENST00000381831 ENSE00001489989
9685  ENSG00000159131       ENST00000381831 ENSE00001489983
9686  ENSG00000159131       ENST00000381839 ENSE00003564138
9687  ENSG00000159131       ENST00000381839 ENSE00003660742
9688  ENSG00000159131       ENST00000381839 ENSE00003786797
9689  ENSG00000159131       ENST00000381839 ENSE00003622385
9690  ENSG00000159131       ENST00000381839 ENSE00003636687
9691  ENSG00000159131       ENST00000381839 ENSE00003784675
9692  ENSG00000159131       ENST00000381839 ENSE00003466855
9693  ENSG00000159131       ENST00000381839 ENSE00003481319
9694  ENSG00000159131       ENST00000381839 ENSE00003513650
9695  ENSG00000159131       ENST00000381839 ENSE00003539927
9696  ENSG00000159131       ENST00000381839 ENSE00003674151
9697  ENSG00000159131       ENST00000381839 ENSE00003609172
9698  ENSG00000159131       ENST00000381839 ENSE00003468726
9699  ENSG00000159131       ENST00000381839 ENSE00003513723
9700  ENSG00000159131       ENST00000381839 ENSE00003675443
9701  ENSG00000159131       ENST00000381839 ENSE00003645473
9702  ENSG00000159131       ENST00000381839 ENSE00003680855
9703  ENSG00000159131       ENST00000381839 ENSE00003468374
9704  ENSG00000159131       ENST00000381839 ENSE00003687543
9705  ENSG00000159131       ENST00000381839 ENSE00003507973
9706  ENSG00000159131       ENST00000381839 ENSE00001736479
9707  ENSG00000159131       ENST00000381839 ENSE00001490224
9708  ENSG00000159131       ENST00000424203 ENSE00003564138
9709  ENSG00000159131       ENST00000424203 ENSE00003660742
9710  ENSG00000159131       ENST00000424203 ENSE00003786797
9711  ENSG00000159131       ENST00000424203 ENSE00003622385
9712  ENSG00000159131       ENST00000424203 ENSE00003636687
9713  ENSG00000159131       ENST00000424203 ENSE00003784675
9714  ENSG00000159131       ENST00000424203 ENSE00003466855
9715  ENSG00000159131       ENST00000424203 ENSE00001701956
9716  ENSG00000159131       ENST00000424203 ENSE00001703277
9717  ENSG00000159131       ENST00000424203 ENSE00003607819
9718  ENSG00000159131       ENST00000424203 ENSE00003588672
9719  ENSG00000159131       ENST00000424203 ENSE00003504890
9720  ENSG00000159131       ENST00000424203 ENSE00003610380
9721  ENSG00000159131       ENST00000424203 ENSE00003462589
9722  ENSG00000159131       ENST00000424203 ENSE00003655742
9723  ENSG00000159131       ENST00000424203 ENSE00003592650
9724  ENSG00000159131       ENST00000424203 ENSE00003572508
9725  ENSG00000159131       ENST00000424203 ENSE00003577136
9726  ENSG00000159131       ENST00000424203 ENSE00003654291
9727  ENSG00000159131       ENST00000424203 ENSE00003694718
9728  ENSG00000159131       ENST00000424203 ENSE00003520124
9729  ENSG00000159131       ENST00000424203 ENSE00001804711
9730  ENSG00000159131       ENST00000482663 ENSE00001810179
9731  ENSG00000159131       ENST00000482663 ENSE00001915629
9732  ENSG00000159131       ENST00000487155 ENSE00001920078
9733  ENSG00000159131       ENST00000487155 ENSE00001946350
9734  ENSG00000159131       ENST00000460305 ENSE00003504890
9735  ENSG00000159131       ENST00000460305 ENSE00003610380
9736  ENSG00000159131       ENST00000460305 ENSE00001819885
9737  ENSG00000159131       ENST00000460305 ENSE00001869887
9738  ENSG00000159131       ENST00000467575 ENSE00003588672
9739  ENSG00000159131       ENST00000467575 ENSE00001956168
9740  ENSG00000159131       ENST00000467575 ENSE00001876807
9741  ENSG00000159131       ENST00000361093 ENSE00003564138
9742  ENSG00000159131       ENST00000361093 ENSE00003660742
9743  ENSG00000159131       ENST00000361093 ENSE00003786797
9744  ENSG00000159131       ENST00000361093 ENSE00003622385
9745  ENSG00000159131       ENST00000361093 ENSE00003636687
9746  ENSG00000159131       ENST00000361093 ENSE00003784675
9747  ENSG00000159131       ENST00000361093 ENSE00003466855
9748  ENSG00000159131       ENST00000361093 ENSE00003481319
9749  ENSG00000159131       ENST00000361093 ENSE00003513650
9750  ENSG00000159131       ENST00000361093 ENSE00001908678
9751  ENSG00000159131       ENST00000361093 ENSE00001489917
9752  ENSG00000159131       ENST00000366093 ENSE00003622385
9753  ENSG00000159131       ENST00000366093 ENSE00003636687
9754  ENSG00000159131       ENST00000366093 ENSE00003784675
9755  ENSG00000159131       ENST00000366093 ENSE00001626250
9756  ENSG00000159131       ENST00000366093 ENSE00001643587
9757  ENSG00000159131       ENST00000366093 ENSE00003649161
9758  ENSG00000159131       ENST00000366093 ENSE00003490233
9759  ENSG00000159131       ENST00000366093 ENSE00001602967
9760  ENSG00000159131       ENST00000466882 ENSE00003649161
9761  ENSG00000159131       ENST00000466882 ENSE00001916873
9762  ENSG00000159131       ENST00000466882 ENSE00001893045
9763  ENSG00000159131       ENST00000497313 ENSE00001809865
9764  ENSG00000159131       ENST00000497313 ENSE00003526660
9765  ENSG00000159131       ENST00000497313 ENSE00003558791
9766  ENSG00000159131       ENST00000497313 ENSE00001879494
9767  ENSG00000159131       ENST00000430874 ENSE00003564138
9768  ENSG00000159131       ENST00000430874 ENSE00003660742
9769  ENSG00000159131       ENST00000430874 ENSE00003786797
9770  ENSG00000159131       ENST00000430874 ENSE00003622385
9771  ENSG00000159131       ENST00000430874 ENSE00003636687
9772  ENSG00000159131       ENST00000430874 ENSE00003784675
9773  ENSG00000159131       ENST00000430874 ENSE00001759010
9774  ENSG00000159131       ENST00000426819 ENSE00003660742
9775  ENSG00000159131       ENST00000426819 ENSE00003786797
9776  ENSG00000159131       ENST00000426819 ENSE00003622385
9777  ENSG00000159131       ENST00000426819 ENSE00003636687
9778  ENSG00000159131       ENST00000426819 ENSE00001489983
9779  ENSG00000159131       ENST00000426819 ENSE00001635400
9780  ENSG00000159131       ENST00000426819 ENSE00001749701
9781  ENSG00000159131       ENST00000476524 ENSE00003526660
9782  ENSG00000159131       ENST00000476524 ENSE00002469634
9783  ENSG00000159131       ENST00000476524 ENSE00003613252
9784  ENSG00000159131       ENST00000476524 ENSE00003552692
9785  ENSG00000159131       ENST00000476524 ENSE00003678844
9786  ENSG00000159131       ENST00000476524 ENSE00001851277
9787  ENSG00000159131       ENST00000488791 ENSE00001912460
9788  ENSG00000159131       ENST00000488791 ENSE00001884219
9789  ENSG00000159131       ENST00000438059 ENSE00003660742
9790  ENSG00000159131       ENST00000438059 ENSE00003786797
9791  ENSG00000159131       ENST00000438059 ENSE00001489983
9792  ENSG00000159131       ENST00000438059 ENSE00001782476
9793  ENSG00000159131       ENST00000441403 ENSE00003660742
9794  ENSG00000159131       ENST00000441403 ENSE00001489983
9795  ENSG00000159131       ENST00000441403 ENSE00001667966
9796  ENSG00000159131       ENST00000441403 ENSE00001672116
9797  ENSG00000236056       ENST00000450472 ENSE00001607360
9798  ENSG00000276289       ENST00000618699 ENSE00003740911
9799  ENSG00000276289       ENST00000618699 ENSE00003758541
9800  ENSG00000276289       ENST00000618699 ENSE00003718509
9801  ENSG00000276289       ENST00000623803 ENSE00003753201
9802  ENSG00000276289       ENST00000623803 ENSE00003755363
9803  ENSG00000276289       ENST00000623803 ENSE00003755128
9804  ENSG00000276289       ENST00000617668 ENSE00003719853
9805  ENSG00000276289       ENST00000617668 ENSE00003757666
9806  ENSG00000276289       ENST00000622690 ENSE00003753201
9807  ENSG00000276289       ENST00000622690 ENSE00003752992
9808  ENSG00000276289       ENST00000622690 ENSE00003722011
9809  ENSG00000160224       ENST00000530812 ENSE00002196264
9810  ENSG00000160224       ENST00000530812 ENSE00003528176
9811  ENSG00000160224       ENST00000530812 ENSE00002149937
9812  ENSG00000160224       ENST00000530812 ENSE00002161949
9813  ENSG00000160224       ENST00000530812 ENSE00003661391
9814  ENSG00000160224       ENST00000530812 ENSE00002177605
9815  ENSG00000160224       ENST00000530812 ENSE00003547168
9816  ENSG00000160224       ENST00000530812 ENSE00003689225
9817  ENSG00000160224       ENST00000530812 ENSE00003565844
9818  ENSG00000160224       ENST00000530812 ENSE00003569029
9819  ENSG00000160224       ENST00000530812 ENSE00003557852
9820  ENSG00000160224       ENST00000530812 ENSE00002143741
9821  ENSG00000160224       ENST00000527919 ENSE00003528176
9822  ENSG00000160224       ENST00000527919 ENSE00002149937
9823  ENSG00000160224       ENST00000527919 ENSE00003661391
9824  ENSG00000160224       ENST00000527919 ENSE00002177605
9825  ENSG00000160224       ENST00000527919 ENSE00003547168
9826  ENSG00000160224       ENST00000527919 ENSE00003689225
9827  ENSG00000160224       ENST00000527919 ENSE00003565844
9828  ENSG00000160224       ENST00000527919 ENSE00003557852
9829  ENSG00000160224       ENST00000527919 ENSE00002157138
9830  ENSG00000160224       ENST00000527919 ENSE00003571459
9831  ENSG00000160224       ENST00000527919 ENSE00002197440
9832  ENSG00000160224       ENST00000527919 ENSE00003641315
9833  ENSG00000160224       ENST00000527919 ENSE00002141811
9834  ENSG00000160224       ENST00000527919 ENSE00002165283
9835  ENSG00000160224       ENST00000291582 ENSE00001050710
9836  ENSG00000160224       ENST00000291582 ENSE00003484440
9837  ENSG00000160224       ENST00000291582 ENSE00001050714
9838  ENSG00000160224       ENST00000291582 ENSE00001050716
9839  ENSG00000160224       ENST00000291582 ENSE00003524824
9840  ENSG00000160224       ENST00000291582 ENSE00003592619
9841  ENSG00000160224       ENST00000291582 ENSE00003685344
9842  ENSG00000160224       ENST00000291582 ENSE00001136688
9843  ENSG00000160224       ENST00000291582 ENSE00003560932
9844  ENSG00000160224       ENST00000291582 ENSE00003569099
9845  ENSG00000160224       ENST00000291582 ENSE00003600226
9846  ENSG00000160224       ENST00000291582 ENSE00003664932
9847  ENSG00000160224       ENST00000291582 ENSE00003586834
9848  ENSG00000160224       ENST00000291582 ENSE00003668332
9849  ENSG00000160224       ENST00000397994 ENSE00003547168
9850  ENSG00000160224       ENST00000397994 ENSE00003565844
9851  ENSG00000160224       ENST00000397994 ENSE00003569029
9852  ENSG00000160224       ENST00000397994 ENSE00003557852
9853  ENSG00000160224       ENST00000397994 ENSE00002168258
9854  ENSG00000160224       ENST00000397994 ENSE00003353237
9855  ENSG00000160224       ENST00000397994 ENSE00003529538
9856  ENSG00000160224       ENST00000397994 ENSE00003624155
9857  ENSG00000160224       ENST00000337909 ENSE00003547168
9858  ENSG00000160224       ENST00000337909 ENSE00003689225
9859  ENSG00000160224       ENST00000337909 ENSE00003565844
9860  ENSG00000160224       ENST00000337909 ENSE00003569029
9861  ENSG00000160224       ENST00000337909 ENSE00003557852
9862  ENSG00000160224       ENST00000337909 ENSE00002168258
9863  ENSG00000160224       ENST00000337909 ENSE00003353237
9864  ENSG00000182093       ENST00000333781 ENSE00001950073
9865  ENSG00000182093       ENST00000333781 ENSE00003757548
9866  ENSG00000182093       ENST00000333781 ENSE00003651735
9867  ENSG00000182093       ENST00000333781 ENSE00003788222
9868  ENSG00000182093       ENST00000333781 ENSE00001486004
9869  ENSG00000182093       ENST00000623703 ENSE00003757548
9870  ENSG00000182093       ENST00000623703 ENSE00003651735
9871  ENSG00000182093       ENST00000623703 ENSE00003788222
9872  ENSG00000182093       ENST00000623703 ENSE00003758746
9873  ENSG00000182093       ENST00000623703 ENSE00003759192
9874  ENSG00000182093       ENST00000623703 ENSE00003757934
9875  ENSG00000182093       ENST00000623703 ENSE00003758866
9876  ENSG00000182093       ENST00000623703 ENSE00003758202
9877  ENSG00000182093       ENST00000623703 ENSE00003756719
9878  ENSG00000182093       ENST00000487869 ENSE00001864930
9879  ENSG00000182093       ENST00000487869 ENSE00003563129
9880  ENSG00000182093       ENST00000487869 ENSE00001939130
9881  ENSG00000182093       ENST00000471468 ENSE00001813007
9882  ENSG00000182093       ENST00000471468 ENSE00001848335
9883  ENSG00000182093       ENST00000398753 ENSE00003757548
9884  ENSG00000182093       ENST00000398753 ENSE00003651735
9885  ENSG00000182093       ENST00000398753 ENSE00003788222
9886  ENSG00000182093       ENST00000398753 ENSE00001534725
9887  ENSG00000182093       ENST00000398753 ENSE00001534714
9888  ENSG00000182093       ENST00000442773 ENSE00001673646
9889  ENSG00000182093       ENST00000442773 ENSE00001630418
9890  ENSG00000182093       ENST00000380713 ENSE00003757548
9891  ENSG00000182093       ENST00000380713 ENSE00003651735
9892  ENSG00000182093       ENST00000380713 ENSE00003788222
9893  ENSG00000182093       ENST00000380713 ENSE00001650643
9894  ENSG00000182093       ENST00000380708 ENSE00003757548
9895  ENSG00000182093       ENST00000380708 ENSE00003651735
9896  ENSG00000182093       ENST00000380708 ENSE00003788222
9897  ENSG00000182093       ENST00000380708 ENSE00001486004
9898  ENSG00000182093       ENST00000380708 ENSE00001485985
9899  ENSG00000182093       ENST00000466787 ENSE00001915597
9900  ENSG00000182093       ENST00000466787 ENSE00001923036
9901  ENSG00000182093       ENST00000466787 ENSE00003589273
9902  ENSG00000182093       ENST00000466787 ENSE00003502214
9903  ENSG00000182093       ENST00000466787 ENSE00001882286
9904  ENSG00000182093       ENST00000415847 ENSE00003788222
9905  ENSG00000182093       ENST00000415847 ENSE00003711093
9906  ENSG00000182093       ENST00000415847 ENSE00001628955
9907  ENSG00000182093       ENST00000490860 ENSE00001855761
9908  ENSG00000182093       ENST00000490860 ENSE00001846736
9909  ENSG00000182093       ENST00000478273 ENSE00001853929
9910  ENSG00000182093       ENST00000478273 ENSE00001946548
9911  ENSG00000182093       ENST00000476914 ENSE00001946548
9912  ENSG00000182093       ENST00000476914 ENSE00001956940
9913  ENSG00000182093       ENST00000480690 ENSE00001945110
9914  ENSG00000182093       ENST00000480690 ENSE00001957650
9915  ENSG00000280346       ENST00000624353 ENSE00003756736
9916  ENSG00000243646       ENST00000290200 ENSE00001043281
9917  ENSG00000243646       ENST00000290200 ENSE00003554973
9918  ENSG00000243646       ENST00000290200 ENSE00003490674
9919  ENSG00000243646       ENST00000290200 ENSE00003519873
9920  ENSG00000243646       ENST00000290200 ENSE00003620117
9921  ENSG00000243646       ENST00000290200 ENSE00003628210
9922  ENSG00000243646       ENST00000290200 ENSE00001927323
9923  ENSG00000243646       ENST00000422891 ENSE00003554973
9924  ENSG00000243646       ENST00000422891 ENSE00001729591
9925  ENSG00000243646       ENST00000422891 ENSE00003540143
9926  ENSG00000243646       ENST00000422891 ENSE00003467460
9927  ENSG00000243646       ENST00000422891 ENSE00003460810
9928  ENSG00000243646       ENST00000422891 ENSE00001614880
9929  ENSG00000243646       ENST00000493295 ENSE00003467460
9930  ENSG00000243646       ENST00000493295 ENSE00003460810
9931  ENSG00000243646       ENST00000493295 ENSE00001860564
9932  ENSG00000243646       ENST00000493295 ENSE00003668610
9933  ENSG00000243646       ENST00000493295 ENSE00003561299
9934  ENSG00000243646       ENST00000493295 ENSE00001858828
9935  ENSG00000243646       ENST00000498371 ENSE00003467460
9936  ENSG00000243646       ENST00000498371 ENSE00003561299
9937  ENSG00000243646       ENST00000498371 ENSE00001834344
9938  ENSG00000243646       ENST00000498371 ENSE00002467116
9939  ENSG00000243646       ENST00000451065 ENSE00003519873
9940  ENSG00000243646       ENST00000451065 ENSE00003620117
9941  ENSG00000243646       ENST00000451065 ENSE00003628210
9942  ENSG00000243646       ENST00000451065 ENSE00001698964
9943  ENSG00000243646       ENST00000451065 ENSE00001796592
9944  ENSG00000243646       ENST00000451065 ENSE00001625180
9945  ENSG00000243646       ENST00000637650 ENSE00003797974
9946  ENSG00000243646       ENST00000637650 ENSE00003792920
9947  ENSG00000243646       ENST00000609556 ENSE00003797974
9948  ENSG00000243646       ENST00000609556 ENSE00003706288
9949  ENSG00000280614       ENST00000625598 ENSE00003762709
9950  ENSG00000280800       ENST00000631211 ENSE00003763487
9951  ENSG00000277277       ENST00000613894 ENSE00003726287
9952  ENSG00000275799       ENST00000620163 ENSE00003725912
9953  ENSG00000279303       ENST00000623962 ENSE00003756385
9954  ENSG00000280019       ENST00000624484 ENSE00003758953
9955  ENSG00000280019       ENST00000624484 ENSE00003759077
9956  ENSG00000280019       ENST00000624484 ENSE00003756023
9957  ENSG00000280019       ENST00000624484 ENSE00003758373
9958  ENSG00000280019       ENST00000624484 ENSE00003755687
9959  ENSG00000280019       ENST00000624484 ENSE00003759438
9960  ENSG00000280019       ENST00000624484 ENSE00003756613
9961  ENSG00000280019       ENST00000624484 ENSE00003757220
9962  ENSG00000280019       ENST00000624484 ENSE00003759611
9963  ENSG00000280019       ENST00000624484 ENSE00003758587
9964  ENSG00000230479       ENST00000429588 ENSE00001669981
9965  ENSG00000230479       ENST00000429588 ENSE00001614612
9966  ENSG00000279365       ENST00000624669 ENSE00003759761
9967  ENSG00000233236       ENST00000436373 ENSE00001642062
9968  ENSG00000233236       ENST00000436373 ENSE00001598199
9969  ENSG00000271486       ENST00000603349 ENSE00003648479
9970  ENSG00000235965       ENST00000450653 ENSE00001668592
9971  ENSG00000235965       ENST00000450653 ENSE00001613169
9972  ENSG00000234703       ENST00000455028 ENSE00001623290
9973  ENSG00000234703       ENST00000455028 ENSE00001764112
9974  ENSG00000154642       ENST00000284881 ENSE00001543482
9975  ENSG00000154642       ENST00000284881 ENSE00003679576
9976  ENSG00000154642       ENST00000284881 ENSE00001642880
9977  ENSG00000154642       ENST00000284881 ENSE00003784853
9978  ENSG00000154642       ENST00000284881 ENSE00001934909
9979  ENSG00000154642       ENST00000400559 ENSE00001543482
9980  ENSG00000154642       ENST00000400559 ENSE00003679576
9981  ENSG00000154642       ENST00000400559 ENSE00001642880
9982  ENSG00000154642       ENST00000400559 ENSE00003784853
9983  ENSG00000154642       ENST00000400559 ENSE00001836456
9984  ENSG00000154642       ENST00000400558 ENSE00001543482
9985  ENSG00000154642       ENST00000400558 ENSE00003679576
9986  ENSG00000154642       ENST00000400558 ENSE00001642880
9987  ENSG00000154642       ENST00000400558 ENSE00001925737
9988  ENSG00000154642       ENST00000405964 ENSE00003679576
9989  ENSG00000154642       ENST00000405964 ENSE00001642880
9990  ENSG00000154642       ENST00000405964 ENSE00003784853
9991  ENSG00000154642       ENST00000405964 ENSE00001757903
9992  ENSG00000154642       ENST00000493464 ENSE00001860985
9993  ENSG00000154642       ENST00000493464 ENSE00003540501
9994  ENSG00000154642       ENST00000493464 ENSE00001829026
9995  ENSG00000154642       ENST00000493464 ENSE00001924293
9996  ENSG00000154642       ENST00000493464 ENSE00001955959
9997  ENSG00000154642       ENST00000482915 ENSE00001896052
9998  ENSG00000154642       ENST00000482915 ENSE00001842658
9999  ENSG00000232855       ENST00000433310 ENSE00001638522
      chromosome_name start_position end_position  hgnc_symbol    hgnc_id
1                  22       44439036     44439111                        
2                  22        7092617      7092717                        
3                  22        8433086      8433175                        
4                  22       39171463     39171561                        
5                  22       41870634     41872055                        
6                  22       41870634     41872055                        
7                  22       44885954     44931990        ITGB2  HGNC:6155
8                  22       44885954     44931990        ITGB2  HGNC:6155
9                  22       44885954     44931990        ITGB2  HGNC:6155
10                 22       44885954     44931990        ITGB2  HGNC:6155
11                 22       44885954     44931990        ITGB2  HGNC:6155
12                 22       44885954     44931990        ITGB2  HGNC:6155
13                 22       44885954     44931990        ITGB2  HGNC:6155
14                 22       44885954     44931990        ITGB2  HGNC:6155
15                 22       44885954     44931990        ITGB2  HGNC:6155
16                 22       44885954     44931990        ITGB2  HGNC:6155
17                 22       44885954     44931990        ITGB2  HGNC:6155
18                 22       44885954     44931990        ITGB2  HGNC:6155
19                 22       44885954     44931990        ITGB2  HGNC:6155
20                 22       44885954     44931990        ITGB2  HGNC:6155
21                 22       44885954     44931990        ITGB2  HGNC:6155
22                 22       44885954     44931990        ITGB2  HGNC:6155
23                 22       44885954     44931990        ITGB2  HGNC:6155
24                 22       44885954     44931990        ITGB2  HGNC:6155
25                 22       44885954     44931990        ITGB2  HGNC:6155
26                 22       44885954     44931990        ITGB2  HGNC:6155
27                 22       44885954     44931990        ITGB2  HGNC:6155
28                 22       44885954     44931990        ITGB2  HGNC:6155
29                 22       44885954     44931990        ITGB2  HGNC:6155
30                 22       44885954     44931990        ITGB2  HGNC:6155
31                 22       44885954     44931990        ITGB2  HGNC:6155
32                 22       44885954     44931990        ITGB2  HGNC:6155
33                 22       44885954     44931990        ITGB2  HGNC:6155
34                 22       44885954     44931990        ITGB2  HGNC:6155
35                 22       44885954     44931990        ITGB2  HGNC:6155
36                 22       44885954     44931990        ITGB2  HGNC:6155
37                 22       44885954     44931990        ITGB2  HGNC:6155
38                 22       44885954     44931990        ITGB2  HGNC:6155
39                 22       44885954     44931990        ITGB2  HGNC:6155
40                 22       44885954     44931990        ITGB2  HGNC:6155
41                 22       44885954     44931990        ITGB2  HGNC:6155
42                 22       44885954     44931990        ITGB2  HGNC:6155
43                 22       44885954     44931990        ITGB2  HGNC:6155
44                 22       44885954     44931990        ITGB2  HGNC:6155
45                 22       44885954     44931990        ITGB2  HGNC:6155
46                 22       44885954     44931990        ITGB2  HGNC:6155
47                 22       44885954     44931990        ITGB2  HGNC:6155
48                 22       44885954     44931990        ITGB2  HGNC:6155
49                 22       44885954     44931990        ITGB2  HGNC:6155
50                 22       44885954     44931990        ITGB2  HGNC:6155
51                 22       44885954     44931990        ITGB2  HGNC:6155
52                 22       44885954     44931990        ITGB2  HGNC:6155
53                 22       44885954     44931990        ITGB2  HGNC:6155
54                 22       44885954     44931990        ITGB2  HGNC:6155
55                 22       44885954     44931990        ITGB2  HGNC:6155
56                 22       44885954     44931990        ITGB2  HGNC:6155
57                 22       44885954     44931990        ITGB2  HGNC:6155
58                 22       44885954     44931990        ITGB2  HGNC:6155
59                 22       44885954     44931990        ITGB2  HGNC:6155
60                 22       44885954     44931990        ITGB2  HGNC:6155
61                 22       44885954     44931990        ITGB2  HGNC:6155
62                 22       44885954     44931990        ITGB2  HGNC:6155
63                 22       44885954     44931990        ITGB2  HGNC:6155
64                 22       44885954     44931990        ITGB2  HGNC:6155
65                 22       44885954     44931990        ITGB2  HGNC:6155
66                 22       44885954     44931990        ITGB2  HGNC:6155
67                 22       44885954     44931990        ITGB2  HGNC:6155
68                 22       44885954     44931990        ITGB2  HGNC:6155
69                 22       44885954     44931990        ITGB2  HGNC:6155
70                 22       44885954     44931990        ITGB2  HGNC:6155
71                 22       44885954     44931990        ITGB2  HGNC:6155
72                 22       44885954     44931990        ITGB2  HGNC:6155
73                 22       44885954     44931990        ITGB2  HGNC:6155
74                 22       44885954     44931990        ITGB2  HGNC:6155
75                 22       44885954     44931990        ITGB2  HGNC:6155
76                 22       44885954     44931990        ITGB2  HGNC:6155
77                 22       44885954     44931990        ITGB2  HGNC:6155
78                 22       44885954     44931990        ITGB2  HGNC:6155
79                 22       44885954     44931990        ITGB2  HGNC:6155
80                 22       44885954     44931990        ITGB2  HGNC:6155
81                 22       44885954     44931990        ITGB2  HGNC:6155
82                 22       44885954     44931990        ITGB2  HGNC:6155
83                 22       44885954     44931990        ITGB2  HGNC:6155
84                 22       44885954     44931990        ITGB2  HGNC:6155
85                 22       44885954     44931990        ITGB2  HGNC:6155
86                 22       44885954     44931990        ITGB2  HGNC:6155
87                 22       44885954     44931990        ITGB2  HGNC:6155
88                 22       44885954     44931990        ITGB2  HGNC:6155
89                 22       44885954     44931990        ITGB2  HGNC:6155
90                 22       44885954     44931990        ITGB2  HGNC:6155
91                 22       44885954     44931990        ITGB2  HGNC:6155
92                 22       44885954     44931990        ITGB2  HGNC:6155
93                 22       44885954     44931990        ITGB2  HGNC:6155
94                 22       44885954     44931990        ITGB2  HGNC:6155
95                 22       44885954     44931990        ITGB2  HGNC:6155
96                 22       44885954     44931990        ITGB2  HGNC:6155
97                 22       44885954     44931990        ITGB2  HGNC:6155
98                 22       44885954     44931990        ITGB2  HGNC:6155
99                 22       44885954     44931990        ITGB2  HGNC:6155
100                22       44885954     44931990        ITGB2  HGNC:6155
101                22       44885954     44931990        ITGB2  HGNC:6155
102                22       44885954     44931990        ITGB2  HGNC:6155
103                22       44885954     44931990        ITGB2  HGNC:6155
104                22       44885954     44931990        ITGB2  HGNC:6155
105                22       44885954     44931990        ITGB2  HGNC:6155
106                22       44885954     44931990        ITGB2  HGNC:6155
107                22       44885954     44931990        ITGB2  HGNC:6155
108                22       44885954     44931990        ITGB2  HGNC:6155
109                22       44885954     44931990        ITGB2  HGNC:6155
110                22       44885954     44931990        ITGB2  HGNC:6155
111                22       44885954     44931990        ITGB2  HGNC:6155
112                22       44885954     44931990        ITGB2  HGNC:6155
113                22       44885954     44931990        ITGB2  HGNC:6155
114                22       44885954     44931990        ITGB2  HGNC:6155
115                22       44885954     44931990        ITGB2  HGNC:6155
116                22       44885954     44931990        ITGB2  HGNC:6155
117                22       44885954     44931990        ITGB2  HGNC:6155
118                22       44885954     44931990        ITGB2  HGNC:6155
119                22       44885954     44931990        ITGB2  HGNC:6155
120                22       44885954     44931990        ITGB2  HGNC:6155
121                22       44885954     44931990        ITGB2  HGNC:6155
122                22       44885954     44931990        ITGB2  HGNC:6155
123                22       44885954     44931990        ITGB2  HGNC:6155
124                22       44885954     44931990        ITGB2  HGNC:6155
125                22       44885954     44931990        ITGB2  HGNC:6155
126                22       44885954     44931990        ITGB2  HGNC:6155
127                22       44885954     44931990        ITGB2  HGNC:6155
128                22       44885954     44931990        ITGB2  HGNC:6155
129                22       44885954     44931990        ITGB2  HGNC:6155
130                22       44885954     44931990        ITGB2  HGNC:6155
131                22       44885954     44931990        ITGB2  HGNC:6155
132                22       44885954     44931990        ITGB2  HGNC:6155
133                22       44885954     44931990        ITGB2  HGNC:6155
134                22       44885954     44931990        ITGB2  HGNC:6155
135                22       44885954     44931990        ITGB2  HGNC:6155
136                22       44885954     44931990        ITGB2  HGNC:6155
137                22       44885954     44931990        ITGB2  HGNC:6155
138                22       44885954     44931990        ITGB2  HGNC:6155
139                22       44885954     44931990        ITGB2  HGNC:6155
140                22       44885954     44931990        ITGB2  HGNC:6155
141                22       44885954     44931990        ITGB2  HGNC:6155
142                22       44885954     44931990        ITGB2  HGNC:6155
143                22       44885954     44931990        ITGB2  HGNC:6155
144                22       44885954     44931990        ITGB2  HGNC:6155
145                22       44885954     44931990        ITGB2  HGNC:6155
146                22       44885954     44931990        ITGB2  HGNC:6155
147                22       44885954     44931990        ITGB2  HGNC:6155
148                22       44885954     44931990        ITGB2  HGNC:6155
149                22       44885954     44931990        ITGB2  HGNC:6155
150                22       44885954     44931990        ITGB2  HGNC:6155
151                22       44885954     44931990        ITGB2  HGNC:6155
152                22       44885954     44931990        ITGB2  HGNC:6155
153                22       44885954     44931990        ITGB2  HGNC:6155
154                22       44885954     44931990        ITGB2  HGNC:6155
155                22       44885954     44931990        ITGB2  HGNC:6155
156                22       44885954     44931990        ITGB2  HGNC:6155
157                22       44885954     44931990        ITGB2  HGNC:6155
158                22       44885954     44931990        ITGB2  HGNC:6155
159                22       44885954     44931990        ITGB2  HGNC:6155
160                22       44885954     44931990        ITGB2  HGNC:6155
161                22       44885954     44931990        ITGB2  HGNC:6155
162                22       44885954     44931990        ITGB2  HGNC:6155
163                22       44885954     44931990        ITGB2  HGNC:6155
164                22       44885954     44931990        ITGB2  HGNC:6155
165                22       44885954     44931990        ITGB2  HGNC:6155
166                22       44885954     44931990        ITGB2  HGNC:6155
167                22       44885954     44931990        ITGB2  HGNC:6155
168                22       44885954     44931990        ITGB2  HGNC:6155
169                22       44885954     44931990        ITGB2  HGNC:6155
170                22       44885954     44931990        ITGB2  HGNC:6155
171                22       44885954     44931990        ITGB2  HGNC:6155
172                22       44885954     44931990        ITGB2  HGNC:6155
173                22       44885954     44931990        ITGB2  HGNC:6155
174                22       44885954     44931990        ITGB2  HGNC:6155
175                22       44885954     44931990        ITGB2  HGNC:6155
176                22       44885954     44931990        ITGB2  HGNC:6155
177                22       44885954     44931990        ITGB2  HGNC:6155
178                22       44885954     44931990        ITGB2  HGNC:6155
179                22       44885954     44931990        ITGB2  HGNC:6155
180                22       44885954     44931990        ITGB2  HGNC:6155
181                22       44885954     44931990        ITGB2  HGNC:6155
182                22       44885954     44931990        ITGB2  HGNC:6155
183                22       44885954     44931990        ITGB2  HGNC:6155
184                22       44885954     44931990        ITGB2  HGNC:6155
185                22       44885954     44931990        ITGB2  HGNC:6155
186                22       44885954     44931990        ITGB2  HGNC:6155
187                22       44885954     44931990        ITGB2  HGNC:6155
188                22       44885954     44931990        ITGB2  HGNC:6155
189                22       44885954     44931990        ITGB2  HGNC:6155
190                22       44885954     44931990        ITGB2  HGNC:6155
191                22       44885954     44931990        ITGB2  HGNC:6155
192                22       44885954     44931990        ITGB2  HGNC:6155
193                22       44885954     44931990        ITGB2  HGNC:6155
194                22       44885954     44931990        ITGB2  HGNC:6155
195                22       44885954     44931990        ITGB2  HGNC:6155
196                22       44885954     44931990        ITGB2  HGNC:6155
197                22       44885954     44931990        ITGB2  HGNC:6155
198                22       44885954     44931990        ITGB2  HGNC:6155
199                22       44885954     44931990        ITGB2  HGNC:6155
200                22       44885954     44931990        ITGB2  HGNC:6155
201                22       44885954     44931990        ITGB2  HGNC:6155
202                22       44885954     44931990        ITGB2  HGNC:6155
203                22       25202208     25202316    RNA5SP489 HGNC:43389
204                22       42417498     42417594   RNU6-1149P HGNC:48112
205                22       43748366     43748469                        
206                22       43748366     43748469                        
207                22       35720716     35720809       MIR802 HGNC:33140
208                22       23281737     23281910     RNU2-55P HGNC:48548
209                22       17527141     17527248                        
210                22       28743209     28743292                        
211                22       40212353     40212432      MIR4760 HGNC:41698
212                22       46598963     46605209        S100B HGNC:10500
213                22       46598963     46605209        S100B HGNC:10500
214                22       46598963     46605209        S100B HGNC:10500
215                22       46598963     46605209        S100B HGNC:10500
216                22       46598963     46605209        S100B HGNC:10500
217                22       46598963     46605209        S100B HGNC:10500
218                22       46598963     46605209        S100B HGNC:10500
219                22       46598963     46605209        S100B HGNC:10500
220                22       46598963     46605209        S100B HGNC:10500
221                22       46458900     46569853        DIP2A HGNC:17217
222                22       46458900     46569853        DIP2A HGNC:17217
223                22       46458900     46569853        DIP2A HGNC:17217
224                22       46458900     46569853        DIP2A HGNC:17217
225                22       46458900     46569853        DIP2A HGNC:17217
226                22       46458900     46569853        DIP2A HGNC:17217
227                22       46458900     46569853        DIP2A HGNC:17217
228                22       46458900     46569853        DIP2A HGNC:17217
229                22       46458900     46569853        DIP2A HGNC:17217
230                22       46458900     46569853        DIP2A HGNC:17217
231                22       46458900     46569853        DIP2A HGNC:17217
232                22       46458900     46569853        DIP2A HGNC:17217
233                22       46458900     46569853        DIP2A HGNC:17217
234                22       46458900     46569853        DIP2A HGNC:17217
235                22       46458900     46569853        DIP2A HGNC:17217
236                22       46458900     46569853        DIP2A HGNC:17217
237                22       46458900     46569853        DIP2A HGNC:17217
238                22       46458900     46569853        DIP2A HGNC:17217
239                22       46458900     46569853        DIP2A HGNC:17217
240                22       46458900     46569853        DIP2A HGNC:17217
241                22       46458900     46569853        DIP2A HGNC:17217
242                22       46458900     46569853        DIP2A HGNC:17217
243                22       46458900     46569853        DIP2A HGNC:17217
244                22       46458900     46569853        DIP2A HGNC:17217
245                22       46458900     46569853        DIP2A HGNC:17217
246                22       46458900     46569853        DIP2A HGNC:17217
247                22       46458900     46569853        DIP2A HGNC:17217
248                22       46458900     46569853        DIP2A HGNC:17217
249                22       46458900     46569853        DIP2A HGNC:17217
250                22       46458900     46569853        DIP2A HGNC:17217
251                22       46458900     46569853        DIP2A HGNC:17217
252                22       46458900     46569853        DIP2A HGNC:17217
253                22       46458900     46569853        DIP2A HGNC:17217
254                22       46458900     46569853        DIP2A HGNC:17217
255                22       46458900     46569853        DIP2A HGNC:17217
256                22       46458900     46569853        DIP2A HGNC:17217
257                22       46458900     46569853        DIP2A HGNC:17217
258                22       46458900     46569853        DIP2A HGNC:17217
259                22       46458900     46569853        DIP2A HGNC:17217
260                22       46458900     46569853        DIP2A HGNC:17217
261                22       46458900     46569853        DIP2A HGNC:17217
262                22       46458900     46569853        DIP2A HGNC:17217
263                22       46458900     46569853        DIP2A HGNC:17217
264                22       46458900     46569853        DIP2A HGNC:17217
265                22       46458900     46569853        DIP2A HGNC:17217
266                22       46458900     46569853        DIP2A HGNC:17217
267                22       46458900     46569853        DIP2A HGNC:17217
268                22       46458900     46569853        DIP2A HGNC:17217
269                22       46458900     46569853        DIP2A HGNC:17217
270                22       46458900     46569853        DIP2A HGNC:17217
271                22       46458900     46569853        DIP2A HGNC:17217
272                22       46458900     46569853        DIP2A HGNC:17217
273                22       46458900     46569853        DIP2A HGNC:17217
274                22       46458900     46569853        DIP2A HGNC:17217
275                22       46458900     46569853        DIP2A HGNC:17217
276                22       46458900     46569853        DIP2A HGNC:17217
277                22       46458900     46569853        DIP2A HGNC:17217
278                22       46458900     46569853        DIP2A HGNC:17217
279                22       46458900     46569853        DIP2A HGNC:17217
280                22       46458900     46569853        DIP2A HGNC:17217
281                22       46458900     46569853        DIP2A HGNC:17217
282                22       46458900     46569853        DIP2A HGNC:17217
283                22       46458900     46569853        DIP2A HGNC:17217
284                22       46458900     46569853        DIP2A HGNC:17217
285                22       46458900     46569853        DIP2A HGNC:17217
286                22       46458900     46569853        DIP2A HGNC:17217
287                22       46458900     46569853        DIP2A HGNC:17217
288                22       46458900     46569853        DIP2A HGNC:17217
289                22       46458900     46569853        DIP2A HGNC:17217
290                22       46458900     46569853        DIP2A HGNC:17217
291                22       46458900     46569853        DIP2A HGNC:17217
292                22       46458900     46569853        DIP2A HGNC:17217
293                22       46458900     46569853        DIP2A HGNC:17217
294                22       46458900     46569853        DIP2A HGNC:17217
295                22       46458900     46569853        DIP2A HGNC:17217
296                22       46458900     46569853        DIP2A HGNC:17217
297                22       46458900     46569853        DIP2A HGNC:17217
298                22       46458900     46569853        DIP2A HGNC:17217
299                22       46458900     46569853        DIP2A HGNC:17217
300                22       46458900     46569853        DIP2A HGNC:17217
301                22       46458900     46569853        DIP2A HGNC:17217
302                22       46458900     46569853        DIP2A HGNC:17217
303                22       46458900     46569853        DIP2A HGNC:17217
304                22       46458900     46569853        DIP2A HGNC:17217
305                22       46458900     46569853        DIP2A HGNC:17217
306                22       46458900     46569853        DIP2A HGNC:17217
307                22       46458900     46569853        DIP2A HGNC:17217
308                22       46458900     46569853        DIP2A HGNC:17217
309                22       46458900     46569853        DIP2A HGNC:17217
310                22       46458900     46569853        DIP2A HGNC:17217
311                22       46458900     46569853        DIP2A HGNC:17217
312                22       46458900     46569853        DIP2A HGNC:17217
313                22       46458900     46569853        DIP2A HGNC:17217
314                22       46458900     46569853        DIP2A HGNC:17217
315                22       46458900     46569853        DIP2A HGNC:17217
316                22       46458900     46569853        DIP2A HGNC:17217
317                22       46458900     46569853        DIP2A HGNC:17217
318                22       46458900     46569853        DIP2A HGNC:17217
319                22       46458900     46569853        DIP2A HGNC:17217
320                22       46458900     46569853        DIP2A HGNC:17217
321                22       46458900     46569853        DIP2A HGNC:17217
322                22       46458900     46569853        DIP2A HGNC:17217
323                22       46458900     46569853        DIP2A HGNC:17217
324                22       46458900     46569853        DIP2A HGNC:17217
325                22       46458900     46569853        DIP2A HGNC:17217
326                22       46458900     46569853        DIP2A HGNC:17217
327                22       46458900     46569853        DIP2A HGNC:17217
328                22       46458900     46569853        DIP2A HGNC:17217
329                22       46458900     46569853        DIP2A HGNC:17217
330                22       46458900     46569853        DIP2A HGNC:17217
331                22       46458900     46569853        DIP2A HGNC:17217
332                22       46458900     46569853        DIP2A HGNC:17217
333                22       46458900     46569853        DIP2A HGNC:17217
334                22       46458900     46569853        DIP2A HGNC:17217
335                22       46458900     46569853        DIP2A HGNC:17217
336                22       46458900     46569853        DIP2A HGNC:17217
337                22       46458900     46569853        DIP2A HGNC:17217
338                22       46458900     46569853        DIP2A HGNC:17217
339                22       46458900     46569853        DIP2A HGNC:17217
340                22       46458900     46569853        DIP2A HGNC:17217
341                22       46458900     46569853        DIP2A HGNC:17217
342                22       46458900     46569853        DIP2A HGNC:17217
343                22       46458900     46569853        DIP2A HGNC:17217
344                22       46458900     46569853        DIP2A HGNC:17217
345                22       46458900     46569853        DIP2A HGNC:17217
346                22       46458900     46569853        DIP2A HGNC:17217
347                22       46458900     46569853        DIP2A HGNC:17217
348                22       46458900     46569853        DIP2A HGNC:17217
349                22       46458900     46569853        DIP2A HGNC:17217
350                22       46458900     46569853        DIP2A HGNC:17217
351                22       46458900     46569853        DIP2A HGNC:17217
352                22       46458900     46569853        DIP2A HGNC:17217
353                22       46458900     46569853        DIP2A HGNC:17217
354                22       46458900     46569853        DIP2A HGNC:17217
355                22       46458900     46569853        DIP2A HGNC:17217
356                22       46458900     46569853        DIP2A HGNC:17217
357                22       46458900     46569853        DIP2A HGNC:17217
358                22       46458900     46569853        DIP2A HGNC:17217
359                22       46458900     46569853        DIP2A HGNC:17217
360                22       46458900     46569853        DIP2A HGNC:17217
361                22       46458900     46569853        DIP2A HGNC:17217
362                22       46458900     46569853        DIP2A HGNC:17217
363                22       46458900     46569853        DIP2A HGNC:17217
364                22       46458900     46569853        DIP2A HGNC:17217
365                22       46458900     46569853        DIP2A HGNC:17217
366                22       46458900     46569853        DIP2A HGNC:17217
367                22       46458900     46569853        DIP2A HGNC:17217
368                22       46458900     46569853        DIP2A HGNC:17217
369                22       46458900     46569853        DIP2A HGNC:17217
370                22       46458900     46569853        DIP2A HGNC:17217
371                22       46458900     46569853        DIP2A HGNC:17217
372                22       46458900     46569853        DIP2A HGNC:17217
373                22       46458900     46569853        DIP2A HGNC:17217
374                22       46458900     46569853        DIP2A HGNC:17217
375                22       46458900     46569853        DIP2A HGNC:17217
376                22       46458900     46569853        DIP2A HGNC:17217
377                22       46458900     46569853        DIP2A HGNC:17217
378                22       46458900     46569853        DIP2A HGNC:17217
379                22       46458900     46569853        DIP2A HGNC:17217
380                22       46458900     46569853        DIP2A HGNC:17217
381                22       46458900     46569853        DIP2A HGNC:17217
382                22       46458900     46569853        DIP2A HGNC:17217
383                22       46458900     46569853        DIP2A HGNC:17217
384                22       46458900     46569853        DIP2A HGNC:17217
385                22       46458900     46569853        DIP2A HGNC:17217
386                22       46458900     46569853        DIP2A HGNC:17217
387                22       46458900     46569853        DIP2A HGNC:17217
388                22       46458900     46569853        DIP2A HGNC:17217
389                22       46458900     46569853        DIP2A HGNC:17217
390                22       46458900     46569853        DIP2A HGNC:17217
391                22       46458900     46569853        DIP2A HGNC:17217
392                22       46458900     46569853        DIP2A HGNC:17217
393                22       46458900     46569853        DIP2A HGNC:17217
394                22       46458900     46569853        DIP2A HGNC:17217
395                22       46458900     46569853        DIP2A HGNC:17217
396                22       46458900     46569853        DIP2A HGNC:17217
397                22       46458900     46569853        DIP2A HGNC:17217
398                22       46458900     46569853        DIP2A HGNC:17217
399                22       46458900     46569853        DIP2A HGNC:17217
400                22       46458900     46569853        DIP2A HGNC:17217
401                22       46458900     46569853        DIP2A HGNC:17217
402                22       46458900     46569853        DIP2A HGNC:17217
403                22       46458900     46569853        DIP2A HGNC:17217
404                22       46458900     46569853        DIP2A HGNC:17217
405                22       46458900     46569853        DIP2A HGNC:17217
406                22       46458900     46569853        DIP2A HGNC:17217
407                22       46458900     46569853        DIP2A HGNC:17217
408                22       46458900     46569853        DIP2A HGNC:17217
409                22       46458900     46569853        DIP2A HGNC:17217
410                22       46458900     46569853        DIP2A HGNC:17217
411                22       46458900     46569853        DIP2A HGNC:17217
412                22       20355749     20355853    RNU6-772P HGNC:47735
413                22        8987000      8987179    MIR3648-2 HGNC:50843
414                22       33550663     33550729      MIR6501 HGNC:50033
415                22       16284697     16284769                        
416                22       25573981     25574045       MIR155 HGNC:31542
417                22       13644776     13644851    MIR3118-1 HGNC:38265
418                22       42950929     42951015     MIR5692B HGNC:43535
419                22       44802578     44804718    LINC01424 HGNC:40558
420                22       44802578     44804718    LINC01424 HGNC:40558
421                22       44666190     44666928    KRTAP12-2 HGNC:20530
422                22       44654214     44654660    KRTAP12-4 HGNC:20532
423                22       37267785     37268498                        
424                22       46324123     46445770         PCNT HGNC:16068
425                22       46324123     46445770         PCNT HGNC:16068
426                22       46324123     46445770         PCNT HGNC:16068
427                22       46324123     46445770         PCNT HGNC:16068
428                22       46324123     46445770         PCNT HGNC:16068
429                22       46324123     46445770         PCNT HGNC:16068
430                22       46324123     46445770         PCNT HGNC:16068
431                22       46324123     46445770         PCNT HGNC:16068
432                22       46324123     46445770         PCNT HGNC:16068
433                22       46324123     46445770         PCNT HGNC:16068
434                22       46324123     46445770         PCNT HGNC:16068
435                22       46324123     46445770         PCNT HGNC:16068
436                22       46324123     46445770         PCNT HGNC:16068
437                22       46324123     46445770         PCNT HGNC:16068
438                22       46324123     46445770         PCNT HGNC:16068
439                22       46324123     46445770         PCNT HGNC:16068
440                22       46324123     46445770         PCNT HGNC:16068
441                22       46324123     46445770         PCNT HGNC:16068
442                22       46324123     46445770         PCNT HGNC:16068
443                22       46324123     46445770         PCNT HGNC:16068
444                22       46324123     46445770         PCNT HGNC:16068
445                22       46324123     46445770         PCNT HGNC:16068
446                22       46324123     46445770         PCNT HGNC:16068
447                22       46324123     46445770         PCNT HGNC:16068
448                22       46324123     46445770         PCNT HGNC:16068
449                22       46324123     46445770         PCNT HGNC:16068
450                22       46324123     46445770         PCNT HGNC:16068
451                22       46324123     46445770         PCNT HGNC:16068
452                22       46324123     46445770         PCNT HGNC:16068
453                22       46324123     46445770         PCNT HGNC:16068
454                22       46324123     46445770         PCNT HGNC:16068
455                22       46324123     46445770         PCNT HGNC:16068
456                22       46324123     46445770         PCNT HGNC:16068
457                22       46324123     46445770         PCNT HGNC:16068
458                22       46324123     46445770         PCNT HGNC:16068
459                22       46324123     46445770         PCNT HGNC:16068
460                22       46324123     46445770         PCNT HGNC:16068
461                22       46324123     46445770         PCNT HGNC:16068
462                22       46324123     46445770         PCNT HGNC:16068
463                22       46324123     46445770         PCNT HGNC:16068
464                22       46324123     46445770         PCNT HGNC:16068
465                22       46324123     46445770         PCNT HGNC:16068
466                22       46324123     46445770         PCNT HGNC:16068
467                22       46324123     46445770         PCNT HGNC:16068
468                22       46324123     46445770         PCNT HGNC:16068
469                22       46324123     46445770         PCNT HGNC:16068
470                22       46324123     46445770         PCNT HGNC:16068
471                22       46324123     46445770         PCNT HGNC:16068
472                22       46324123     46445770         PCNT HGNC:16068
473                22       46324123     46445770         PCNT HGNC:16068
474                22       46324123     46445770         PCNT HGNC:16068
475                22       46324123     46445770         PCNT HGNC:16068
476                22       46324123     46445770         PCNT HGNC:16068
477                22       46324123     46445770         PCNT HGNC:16068
478                22       46324123     46445770         PCNT HGNC:16068
479                22       46324123     46445770         PCNT HGNC:16068
480                22       46324123     46445770         PCNT HGNC:16068
481                22       46324123     46445770         PCNT HGNC:16068
482                22       46324123     46445770         PCNT HGNC:16068
483                22       46324123     46445770         PCNT HGNC:16068
484                22       46324123     46445770         PCNT HGNC:16068
485                22       46324123     46445770         PCNT HGNC:16068
486                22       46324123     46445770         PCNT HGNC:16068
487                22       46324123     46445770         PCNT HGNC:16068
488                22       46324123     46445770         PCNT HGNC:16068
489                22       46324123     46445770         PCNT HGNC:16068
490                22       46324123     46445770         PCNT HGNC:16068
491                22       46324123     46445770         PCNT HGNC:16068
492                22       46324123     46445770         PCNT HGNC:16068
493                22       46324123     46445770         PCNT HGNC:16068
494                22       46324123     46445770         PCNT HGNC:16068
495                22       46324123     46445770         PCNT HGNC:16068
496                22       46324123     46445770         PCNT HGNC:16068
497                22       46324123     46445770         PCNT HGNC:16068
498                22       46324123     46445770         PCNT HGNC:16068
499                22       46324123     46445770         PCNT HGNC:16068
500                22       46324123     46445770         PCNT HGNC:16068
501                22       46324123     46445770         PCNT HGNC:16068
502                22       46324123     46445770         PCNT HGNC:16068
503                22       46324123     46445770         PCNT HGNC:16068
504                22       46324123     46445770         PCNT HGNC:16068
505                22       46324123     46445770         PCNT HGNC:16068
506                22       46324123     46445770         PCNT HGNC:16068
507                22       46324123     46445770         PCNT HGNC:16068
508                22       46324123     46445770         PCNT HGNC:16068
509                22       46324123     46445770         PCNT HGNC:16068
510                22       46324123     46445770         PCNT HGNC:16068
511                22       46324123     46445770         PCNT HGNC:16068
512                22       46324123     46445770         PCNT HGNC:16068
513                22       46324123     46445770         PCNT HGNC:16068
514                22       46324123     46445770         PCNT HGNC:16068
515                22       46324123     46445770         PCNT HGNC:16068
516                22       46324123     46445770         PCNT HGNC:16068
517                22       46324123     46445770         PCNT HGNC:16068
518                22       46324123     46445770         PCNT HGNC:16068
519                22       46324123     46445770         PCNT HGNC:16068
520                22       46324123     46445770         PCNT HGNC:16068
521                22       46324123     46445770         PCNT HGNC:16068
522                22       46324123     46445770         PCNT HGNC:16068
523                22       46324123     46445770         PCNT HGNC:16068
524                22       46324123     46445770         PCNT HGNC:16068
525                22       46324123     46445770         PCNT HGNC:16068
526                22       46324123     46445770         PCNT HGNC:16068
527                22       46324123     46445770         PCNT HGNC:16068
528                22       46324123     46445770         PCNT HGNC:16068
529                22       46324123     46445770         PCNT HGNC:16068
530                22       46324123     46445770         PCNT HGNC:16068
531                22       46324123     46445770         PCNT HGNC:16068
532                22       46324123     46445770         PCNT HGNC:16068
533                22       46324123     46445770         PCNT HGNC:16068
534                22       46324123     46445770         PCNT HGNC:16068
535                22       46324123     46445770         PCNT HGNC:16068
536                22       46324123     46445770         PCNT HGNC:16068
537                22       46324123     46445770         PCNT HGNC:16068
538                22       46324123     46445770         PCNT HGNC:16068
539                22       46324123     46445770         PCNT HGNC:16068
540                22       46324123     46445770         PCNT HGNC:16068
541                22       46324123     46445770         PCNT HGNC:16068
542                22       46324123     46445770         PCNT HGNC:16068
543                22       46324123     46445770         PCNT HGNC:16068
544                22       46324123     46445770         PCNT HGNC:16068
545                22       46324123     46445770         PCNT HGNC:16068
546                22       46324123     46445770         PCNT HGNC:16068
547                22       44657933     44658342    KRTAP12-3 HGNC:20531
548                22       44591269     44592506    KRTAP10-6 HGNC:20523
549                22       44681577     44682164    KRTAP12-1 HGNC:20529
550                22       44550358     44551506    KRTAP10-2 HGNC:22967
551                22       44550358     44551506    KRTAP10-2 HGNC:22967
552                22       44550358     44551506    KRTAP10-2 HGNC:22967
553                22       44450987     44455285    LRRC3-AS1 HGNC:43636
554                22       44450987     44455285    LRRC3-AS1 HGNC:43636
555                22       44450987     44455285    LRRC3-AS1 HGNC:43636
556                22       44450987     44455285    LRRC3-AS1 HGNC:43636
557                22        8388899      8388988                        
558                22       36986740     36986852                        
559                22       41180098     41180627    BACE2-IT1 HGNC:16024
560                22       41180098     41180627    BACE2-IT1 HGNC:16024
561                22       33967102     33968574                        
562                22       33967102     33968574                        
563                22        8197621      8227647                        
564                22        8197621      8227647                        
565                22        8197621      8227647                        
566                22        8197621      8227647                        
567                22        8197621      8227647                        
568                22        8197621      8227647                        
569                22        8197621      8227647                        
570                22       29359003     29359454                        
571                22       29496048     29500387    BACH1-IT3 HGNC:16455
572                22       29496048     29500387    BACH1-IT3 HGNC:16455
573                22       29194072     29630752        BACH1   HGNC:935
574                22       29194072     29630752        BACH1   HGNC:935
575                22       29194072     29630752        BACH1   HGNC:935
576                22       29194072     29630752        BACH1   HGNC:935
577                22       29194072     29630752        BACH1   HGNC:935
578                22       29194072     29630752        BACH1   HGNC:935
579                22       29194072     29630752        BACH1   HGNC:935
580                22       29194072     29630752        BACH1   HGNC:935
581                22       29194072     29630752        BACH1   HGNC:935
582                22       29194072     29630752        BACH1   HGNC:935
583                22       29194072     29630752        BACH1   HGNC:935
584                22       29194072     29630752        BACH1   HGNC:935
585                22       29194072     29630752        BACH1   HGNC:935
586                22       29194072     29630752        BACH1   HGNC:935
587                22       29194072     29630752        BACH1   HGNC:935
588                22       29194072     29630752        BACH1   HGNC:935
589                22       29194072     29630752        BACH1   HGNC:935
590                22       29194072     29630752        BACH1   HGNC:935
591                22       29194072     29630752        BACH1   HGNC:935
592                22       29194072     29630752        BACH1   HGNC:935
593                22       29194072     29630752        BACH1   HGNC:935
594                22       29194072     29630752        BACH1   HGNC:935
595                22       29194072     29630752        BACH1   HGNC:935
596                22       29194072     29630752        BACH1   HGNC:935
597                22       29194072     29630752        BACH1   HGNC:935
598                22       29194072     29630752        BACH1   HGNC:935
599                22       29194072     29630752        BACH1   HGNC:935
600                22       29194072     29630752        BACH1   HGNC:935
601                22       29194072     29630752        BACH1   HGNC:935
602                22       29194072     29630752        BACH1   HGNC:935
603                22       29194072     29630752        BACH1   HGNC:935
604                22       29194072     29630752        BACH1   HGNC:935
605                22       29194072     29630752        BACH1   HGNC:935
606                22       29194072     29630752        BACH1   HGNC:935
607                22       29194072     29630752        BACH1   HGNC:935
608                22       29194072     29630752        BACH1   HGNC:935
609                22       29194072     29630752        BACH1   HGNC:935
610                22       29194072     29630752        BACH1   HGNC:935
611                22       29194072     29630752        BACH1   HGNC:935
612                22       29194072     29630752        BACH1   HGNC:935
613                22       29194072     29630752        BACH1   HGNC:935
614                22       29194072     29630752        BACH1   HGNC:935
615                22       29194072     29630752        BACH1   HGNC:935
616                22       29194072     29630752        BACH1   HGNC:935
617                22       29194072     29630752        BACH1   HGNC:935
618                22       37100815     37101344                        
619                22        7669398      7681743                        
620                22        7669398      7681743                        
621                22        7669398      7681743                        
622                22        7669398      7681743                        
623                22        7669398      7681743                        
624                22        7669398      7681743                        
625                22        7669398      7681743                        
626                22        7669398      7681743                        
627                22        7669398      7681743                        
628                22        7669398      7681743                        
629                22        7669398      7681743                        
630                22        7669398      7681743                        
631                22        7669398      7681743                        
632                22        7669398      7681743                        
633                22        7669398      7681743                        
634                22        7669398      7681743                        
635                22        7669398      7681743                        
636                22        7669398      7681743                        
637                22        7669398      7681743                        
638                22        7669398      7681743                        
639                22        7669398      7681743                        
640                22        8256782      8256934     RNA5-8S5 HGNC:37660
641                22        8205852      8205941                        
642                22       26953962     26954044      MIR4759 HGNC:41575
643                22       46420554     46421035     RPL18AP2 HGNC:23774
644                22       41711521     41715776    LINC00479 HGNC:19727
645                22       41711521     41715776    LINC00479 HGNC:19727
646                22       41711521     41715776    LINC00479 HGNC:19727
647                22       41711521     41715776    LINC00479 HGNC:19727
648                22       41711521     41715776    LINC00479 HGNC:19727
649                22       41711521     41715776    LINC00479 HGNC:19727
650                22       41711521     41715776    LINC00479 HGNC:19727
651                22       41711521     41715776    LINC00479 HGNC:19727
652                22       41711521     41715776    LINC00479 HGNC:19727
653                22       41711521     41715776    LINC00479 HGNC:19727
654                22       41711521     41715776    LINC00479 HGNC:19727
655                22       41711521     41715776    LINC00479 HGNC:19727
656                22       41711521     41715776    LINC00479 HGNC:19727
657                22       41711521     41715776    LINC00479 HGNC:19727
658                22       41711521     41715776    LINC00479 HGNC:19727
659                22       41711521     41715776    LINC00479 HGNC:19727
660                22       41711521     41715776    LINC00479 HGNC:19727
661                22       41711521     41715776    LINC00479 HGNC:19727
662                22       41711521     41715776    LINC00479 HGNC:19727
663                22       41711521     41715776    LINC00479 HGNC:19727
664                22       44517217     44525953   TSPEAR-AS2 HGNC:16428
665                22       44517217     44525953   TSPEAR-AS2 HGNC:16428
666                22       44517217     44525953   TSPEAR-AS2 HGNC:16428
667                22       44517217     44525953   TSPEAR-AS2 HGNC:16428
668                22       44517217     44525953   TSPEAR-AS2 HGNC:16428
669                22       44517217     44525953   TSPEAR-AS2 HGNC:16428
670                22       44517217     44525953   TSPEAR-AS2 HGNC:16428
671                22       44612080     44612955    KRTAP10-8 HGNC:20525
672                22       32841862     32841996                        
673                22        6859172      6859257    MIR8069-1 HGNC:50262
674                22       44768581     44802020       UBE2G2 HGNC:12483
675                22       44768581     44802020       UBE2G2 HGNC:12483
676                22       44768581     44802020       UBE2G2 HGNC:12483
677                22       44768581     44802020       UBE2G2 HGNC:12483
678                22       44768581     44802020       UBE2G2 HGNC:12483
679                22       44768581     44802020       UBE2G2 HGNC:12483
680                22       44768581     44802020       UBE2G2 HGNC:12483
681                22       44768581     44802020       UBE2G2 HGNC:12483
682                22       44768581     44802020       UBE2G2 HGNC:12483
683                22       44768581     44802020       UBE2G2 HGNC:12483
684                22       44768581     44802020       UBE2G2 HGNC:12483
685                22       44768581     44802020       UBE2G2 HGNC:12483
686                22       44768581     44802020       UBE2G2 HGNC:12483
687                22       44768581     44802020       UBE2G2 HGNC:12483
688                22       44768581     44802020       UBE2G2 HGNC:12483
689                22       44768581     44802020       UBE2G2 HGNC:12483
690                22       44768581     44802020       UBE2G2 HGNC:12483
691                22       44768581     44802020       UBE2G2 HGNC:12483
692                22       44768581     44802020       UBE2G2 HGNC:12483
693                22       44768581     44802020       UBE2G2 HGNC:12483
694                22       44768581     44802020       UBE2G2 HGNC:12483
695                22       44768581     44802020       UBE2G2 HGNC:12483
696                22       44768581     44802020       UBE2G2 HGNC:12483
697                22       44768581     44802020       UBE2G2 HGNC:12483
698                22       44768581     44802020       UBE2G2 HGNC:12483
699                22       44768581     44802020       UBE2G2 HGNC:12483
700                22       44768581     44802020       UBE2G2 HGNC:12483
701                22       44768581     44802020       UBE2G2 HGNC:12483
702                22       44768581     44802020       UBE2G2 HGNC:12483
703                22       44768581     44802020       UBE2G2 HGNC:12483
704                22       44768581     44802020       UBE2G2 HGNC:12483
705                22       44768581     44802020       UBE2G2 HGNC:12483
706                22       44768581     44802020       UBE2G2 HGNC:12483
707                22       44768581     44802020       UBE2G2 HGNC:12483
708                22       44768581     44802020       UBE2G2 HGNC:12483
709                22       44768581     44802020       UBE2G2 HGNC:12483
710                22       44768581     44802020       UBE2G2 HGNC:12483
711                22       44768581     44802020       UBE2G2 HGNC:12483
712                22       44768581     44802020       UBE2G2 HGNC:12483
713                22       44768581     44802020       UBE2G2 HGNC:12483
714                22       44768581     44802020       UBE2G2 HGNC:12483
715                22       44768581     44802020       UBE2G2 HGNC:12483
716                22       44768581     44802020       UBE2G2 HGNC:12483
717                22       44768581     44802020       UBE2G2 HGNC:12483
718                22       44768581     44802020       UBE2G2 HGNC:12483
719                22       44768581     44802020       UBE2G2 HGNC:12483
720                22       44768581     44802020       UBE2G2 HGNC:12483
721                22       44768581     44802020       UBE2G2 HGNC:12483
722                22       44768581     44802020       UBE2G2 HGNC:12483
723                22       44768581     44802020       UBE2G2 HGNC:12483
724                22       44768581     44802020       UBE2G2 HGNC:12483
725                22       44768581     44802020       UBE2G2 HGNC:12483
726                22       44768581     44802020       UBE2G2 HGNC:12483
727                22       44768581     44802020       UBE2G2 HGNC:12483
728                22       44768581     44802020       UBE2G2 HGNC:12483
729                22       44768581     44802020       UBE2G2 HGNC:12483
730                22       44768581     44802020       UBE2G2 HGNC:12483
731                22       44768581     44802020       UBE2G2 HGNC:12483
732                22       44768581     44802020       UBE2G2 HGNC:12483
733                22       44768581     44802020       UBE2G2 HGNC:12483
734                22       44557791     44558761    KRTAP10-3 HGNC:22968
735                22       44600598     44602175    KRTAP10-7 HGNC:22970
736                22       42781075     42782230                        
737                22       42781075     42782230                        
738                22       41167802     41282519        BACE2   HGNC:934
739                22       41167802     41282519        BACE2   HGNC:934
740                22       41167802     41282519        BACE2   HGNC:934
741                22       41167802     41282519        BACE2   HGNC:934
742                22       41167802     41282519        BACE2   HGNC:934
743                22       41167802     41282519        BACE2   HGNC:934
744                22       41167802     41282519        BACE2   HGNC:934
745                22       41167802     41282519        BACE2   HGNC:934
746                22       41167802     41282519        BACE2   HGNC:934
747                22       41167802     41282519        BACE2   HGNC:934
748                22       41167802     41282519        BACE2   HGNC:934
749                22       41167802     41282519        BACE2   HGNC:934
750                22       41167802     41282519        BACE2   HGNC:934
751                22       41167802     41282519        BACE2   HGNC:934
752                22       41167802     41282519        BACE2   HGNC:934
753                22       41167802     41282519        BACE2   HGNC:934
754                22       41167802     41282519        BACE2   HGNC:934
755                22       41167802     41282519        BACE2   HGNC:934
756                22       41167802     41282519        BACE2   HGNC:934
757                22       41167802     41282519        BACE2   HGNC:934
758                22       41167802     41282519        BACE2   HGNC:934
759                22       41167802     41282519        BACE2   HGNC:934
760                22       41167802     41282519        BACE2   HGNC:934
761                22       41167802     41282519        BACE2   HGNC:934
762                22       41167802     41282519        BACE2   HGNC:934
763                22       41167802     41282519        BACE2   HGNC:934
764                22       41167802     41282519        BACE2   HGNC:934
765                22       41167802     41282519        BACE2   HGNC:934
766                22       41167802     41282519        BACE2   HGNC:934
767                22       41167802     41282519        BACE2   HGNC:934
768                22       41167802     41282519        BACE2   HGNC:934
769                22       41167802     41282519        BACE2   HGNC:934
770                22       41167802     41282519        BACE2   HGNC:934
771                22       41167802     41282519        BACE2   HGNC:934
772                22       41167802     41282519        BACE2   HGNC:934
773                22       41167802     41282519        BACE2   HGNC:934
774                22       41167802     41282519        BACE2   HGNC:934
775                22       41167802     41282519        BACE2   HGNC:934
776                22       41167802     41282519        BACE2   HGNC:934
777                22       41167802     41282519        BACE2   HGNC:934
778                22       41167802     41282519        BACE2   HGNC:934
779                22       41167802     41282519        BACE2   HGNC:934
780                22       41167802     41282519        BACE2   HGNC:934
781                22       41167802     41282519        BACE2   HGNC:934
782                22       41167802     41282519        BACE2   HGNC:934
783                22       41167802     41282519        BACE2   HGNC:934
784                22       41167802     41282519        BACE2   HGNC:934
785                22       41167802     41282519        BACE2   HGNC:934
786                22       41167802     41282519        BACE2   HGNC:934
787                22       41167802     41282519        BACE2   HGNC:934
788                22       41167802     41282519        BACE2   HGNC:934
789                22       41167802     41282519        BACE2   HGNC:934
790                22       41167802     41282519        BACE2   HGNC:934
791                22       41167802     41282519        BACE2   HGNC:934
792                22       41167802     41282519        BACE2   HGNC:934
793                22       41167802     41282519        BACE2   HGNC:934
794                22       41167802     41282519        BACE2   HGNC:934
795                22       41167802     41282519        BACE2   HGNC:934
796                22       41167802     41282519        BACE2   HGNC:934
797                22       41167802     41282519        BACE2   HGNC:934
798                22       41167802     41282519        BACE2   HGNC:934
799                22       41167802     41282519        BACE2   HGNC:934
800                22       41167802     41282519        BACE2   HGNC:934
801                22       41167802     41282519        BACE2   HGNC:934
802                22       41167802     41282519        BACE2   HGNC:934
803                22       41141494     41148134    LINC00323 HGNC:19720
804                22       41141494     41148134    LINC00323 HGNC:19720
805                22       41141494     41148134    LINC00323 HGNC:19720
806                22       41141494     41148134    LINC00323 HGNC:19720
807                22       41141494     41148134    LINC00323 HGNC:19720
808                22       41141494     41148134    LINC00323 HGNC:19720
809                22       41141494     41148134    LINC00323 HGNC:19720
810                22       40863995     40864474       YRDCP3 HGNC:39921
811                22       13621578     13621684    RNU6-286P HGNC:47249
812                22        8250061      8250150                        
813                22       44929654     44930113                        
814                22       41739370     41767107        RIPK4   HGNC:496
815                22       41739370     41767107        RIPK4   HGNC:496
816                22       41739370     41767107        RIPK4   HGNC:496
817                22       41739370     41767107        RIPK4   HGNC:496
818                22       41739370     41767107        RIPK4   HGNC:496
819                22       41739370     41767107        RIPK4   HGNC:496
820                22       41739370     41767107        RIPK4   HGNC:496
821                22       41739370     41767107        RIPK4   HGNC:496
822                22       41739370     41767107        RIPK4   HGNC:496
823                22       41739370     41767107        RIPK4   HGNC:496
824                22       41739370     41767107        RIPK4   HGNC:496
825                22       41739370     41767107        RIPK4   HGNC:496
826                22       41739370     41767107        RIPK4   HGNC:496
827                22       41739370     41767107        RIPK4   HGNC:496
828                22       41739370     41767107        RIPK4   HGNC:496
829                22       41739370     41767107        RIPK4   HGNC:496
830                22       41739370     41767107        RIPK4   HGNC:496
831                22       41464552     41531117      TMPRSS2 HGNC:11876
832                22       41464552     41531117      TMPRSS2 HGNC:11876
833                22       41464552     41531117      TMPRSS2 HGNC:11876
834                22       41464552     41531117      TMPRSS2 HGNC:11876
835                22       41464552     41531117      TMPRSS2 HGNC:11876
836                22       41464552     41531117      TMPRSS2 HGNC:11876
837                22       41464552     41531117      TMPRSS2 HGNC:11876
838                22       41464552     41531117      TMPRSS2 HGNC:11876
839                22       41464552     41531117      TMPRSS2 HGNC:11876
840                22       41464552     41531117      TMPRSS2 HGNC:11876
841                22       41464552     41531117      TMPRSS2 HGNC:11876
842                22       41464552     41531117      TMPRSS2 HGNC:11876
843                22       41464552     41531117      TMPRSS2 HGNC:11876
844                22       41464552     41531117      TMPRSS2 HGNC:11876
845                22       41464552     41531117      TMPRSS2 HGNC:11876
846                22       41464552     41531117      TMPRSS2 HGNC:11876
847                22       41464552     41531117      TMPRSS2 HGNC:11876
848                22       41464552     41531117      TMPRSS2 HGNC:11876
849                22       41464552     41531117      TMPRSS2 HGNC:11876
850                22       41464552     41531117      TMPRSS2 HGNC:11876
851                22       41464552     41531117      TMPRSS2 HGNC:11876
852                22       41464552     41531117      TMPRSS2 HGNC:11876
853                22       41464552     41531117      TMPRSS2 HGNC:11876
854                22       41464552     41531117      TMPRSS2 HGNC:11876
855                22       41464552     41531117      TMPRSS2 HGNC:11876
856                22       41464552     41531117      TMPRSS2 HGNC:11876
857                22       41464552     41531117      TMPRSS2 HGNC:11876
858                22       41464552     41531117      TMPRSS2 HGNC:11876
859                22       41464552     41531117      TMPRSS2 HGNC:11876
860                22       41464552     41531117      TMPRSS2 HGNC:11876
861                22       41464552     41531117      TMPRSS2 HGNC:11876
862                22       41464552     41531117      TMPRSS2 HGNC:11876
863                22       41464552     41531117      TMPRSS2 HGNC:11876
864                22       41464552     41531117      TMPRSS2 HGNC:11876
865                22       41464552     41531117      TMPRSS2 HGNC:11876
866                22       41464552     41531117      TMPRSS2 HGNC:11876
867                22       41464552     41531117      TMPRSS2 HGNC:11876
868                22       41464552     41531117      TMPRSS2 HGNC:11876
869                22       41464552     41531117      TMPRSS2 HGNC:11876
870                22       41464552     41531117      TMPRSS2 HGNC:11876
871                22       41464552     41531117      TMPRSS2 HGNC:11876
872                22       41464552     41531117      TMPRSS2 HGNC:11876
873                22       41464552     41531117      TMPRSS2 HGNC:11876
874                22       41464552     41531117      TMPRSS2 HGNC:11876
875                22       41464552     41531117      TMPRSS2 HGNC:11876
876                22       41464552     41531117      TMPRSS2 HGNC:11876
877                22       41464552     41531117      TMPRSS2 HGNC:11876
878                22       41464552     41531117      TMPRSS2 HGNC:11876
879                22       41464552     41531117      TMPRSS2 HGNC:11876
880                22       41464552     41531117      TMPRSS2 HGNC:11876
881                22       41464552     41531117      TMPRSS2 HGNC:11876
882                22       41464552     41531117      TMPRSS2 HGNC:11876
883                22       41464552     41531117      TMPRSS2 HGNC:11876
884                22       41464552     41531117      TMPRSS2 HGNC:11876
885                22       41464552     41531117      TMPRSS2 HGNC:11876
886                22       41464552     41531117      TMPRSS2 HGNC:11876
887                22       41464552     41531117      TMPRSS2 HGNC:11876
888                22       41464552     41531117      TMPRSS2 HGNC:11876
889                22       41464552     41531117      TMPRSS2 HGNC:11876
890                22       41464552     41531117      TMPRSS2 HGNC:11876
891                22       41464552     41531117      TMPRSS2 HGNC:11876
892                22       41464552     41531117      TMPRSS2 HGNC:11876
893                22       41464552     41531117      TMPRSS2 HGNC:11876
894                22       41464552     41531117      TMPRSS2 HGNC:11876
895                22       41464552     41531117      TMPRSS2 HGNC:11876
896                22       41464552     41531117      TMPRSS2 HGNC:11876
897                22       41464552     41531117      TMPRSS2 HGNC:11876
898                22       41464552     41531117      TMPRSS2 HGNC:11876
899                22       41464552     41531117      TMPRSS2 HGNC:11876
900                22       41464552     41531117      TMPRSS2 HGNC:11876
901                22       41464552     41531117      TMPRSS2 HGNC:11876
902                22       41464552     41531117      TMPRSS2 HGNC:11876
903                22       41464552     41531117      TMPRSS2 HGNC:11876
904                22       41464552     41531117      TMPRSS2 HGNC:11876
905                22       41464552     41531117      TMPRSS2 HGNC:11876
906                22       41464552     41531117      TMPRSS2 HGNC:11876
907                22       41464552     41531117      TMPRSS2 HGNC:11876
908                22       41464552     41531117      TMPRSS2 HGNC:11876
909                22       41464552     41531117      TMPRSS2 HGNC:11876
910                22       41464552     41531117      TMPRSS2 HGNC:11876
911                22       44805618     44818780        SUMO3 HGNC:11124
912                22       44805618     44818780        SUMO3 HGNC:11124
913                22       44805618     44818780        SUMO3 HGNC:11124
914                22       44805618     44818780        SUMO3 HGNC:11124
915                22       44805618     44818780        SUMO3 HGNC:11124
916                22       44805618     44818780        SUMO3 HGNC:11124
917                22       44805618     44818780        SUMO3 HGNC:11124
918                22       44805618     44818780        SUMO3 HGNC:11124
919                22       44805618     44818780        SUMO3 HGNC:11124
920                22       44805618     44818780        SUMO3 HGNC:11124
921                22       44805618     44818780        SUMO3 HGNC:11124
922                22       44805618     44818780        SUMO3 HGNC:11124
923                22       44805618     44818780        SUMO3 HGNC:11124
924                22       44805618     44818780        SUMO3 HGNC:11124
925                22       44805618     44818780        SUMO3 HGNC:11124
926                22       44805618     44818780        SUMO3 HGNC:11124
927                22       44805618     44818780        SUMO3 HGNC:11124
928                22       44805618     44818780        SUMO3 HGNC:11124
929                22       44805618     44818780        SUMO3 HGNC:11124
930                22       44805618     44818780        SUMO3 HGNC:11124
931                22       44805618     44818780        SUMO3 HGNC:11124
932                22       44805618     44818780        SUMO3 HGNC:11124
933                22       13724190     13724275    MIR8069-2 HGNC:50836
934                22       23079285     23079393      MIR6130 HGNC:50156
935                22        8205316      8205407    MIR6724-1 HGNC:50837
936                22       37045531     37045637    RNU6-696P HGNC:47659
937                22       15614284     15614390   RNU6-1326P HGNC:48289
938                22       44646415     44647651   KRTAP10-11 HGNC:20528
939                22       44686359     44686630                        
940                22       40383084     40385359    DSCAM-AS1 HGNC:40197
941                22       40383084     40385359    DSCAM-AS1 HGNC:40197
942                22       40383084     40385359    DSCAM-AS1 HGNC:40197
943                22       40383084     40385359    DSCAM-AS1 HGNC:40197
944                22       40383084     40385359    DSCAM-AS1 HGNC:40197
945                22       40383084     40385359    DSCAM-AS1 HGNC:40197
946                22       40383084     40385359    DSCAM-AS1 HGNC:40197
947                22       40383084     40385359    DSCAM-AS1 HGNC:40197
948                22       40383084     40385359    DSCAM-AS1 HGNC:40197
949                22       40383084     40385359    DSCAM-AS1 HGNC:40197
950                22        8432531      8432622    MIR6724-4 HGNC:50830
951                22       25943045     25943146    RNU6-123P HGNC:47086
952                22       42221174     42221287    RNA5SP492 HGNC:43392
953                22       19345149     19345313    RNU1-139P HGNC:48481
954                22        8208474      8208653    MIR3648-1 HGNC:38941
955                22        6228967      6267318                        
956                22        6228967      6267318                        
957                22        6228967      6267318                        
958                22        6228967      6267318                        
959                22        6228967      6267318                        
960                22        6228967      6267318                        
961                22        6228967      6267318                        
962                22        6228967      6267318                        
963                22        6228967      6267318                        
964                22        6228967      6267318                        
965                22        6228967      6267318                        
966                22        6228967      6267318                        
967                22        6228967      6267318                        
968                22        6228967      6267318                        
969                22        6228967      6267318                        
970                22        6228967      6267318                        
971                22        6228967      6267318                        
972                22        6228967      6267318                        
973                22        6228967      6267318                        
974                22        6228967      6267318                        
975                22        6228967      6267318                        
976                22        5707005      5709457                        
977                22        5707005      5709457                        
978                22       44133606     44145724     C21orf33  HGNC:1273
979                22       44133606     44145724     C21orf33  HGNC:1273
980                22       44133606     44145724     C21orf33  HGNC:1273
981                22       44133606     44145724     C21orf33  HGNC:1273
982                22       44133606     44145724     C21orf33  HGNC:1273
983                22       44133606     44145724     C21orf33  HGNC:1273
984                22       44133606     44145724     C21orf33  HGNC:1273
985                22       44133606     44145724     C21orf33  HGNC:1273
986                22       44133606     44145724     C21orf33  HGNC:1273
987                22       44133606     44145724     C21orf33  HGNC:1273
988                22       44133606     44145724     C21orf33  HGNC:1273
989                22       44133606     44145724     C21orf33  HGNC:1273
990                22       44133606     44145724     C21orf33  HGNC:1273
991                22       44133606     44145724     C21orf33  HGNC:1273
992                22       44133606     44145724     C21orf33  HGNC:1273
993                22       44133606     44145724     C21orf33  HGNC:1273
994                22       44133606     44145724     C21orf33  HGNC:1273
995                22       44133606     44145724     C21orf33  HGNC:1273
996                22       44133606     44145724     C21orf33  HGNC:1273
997                22       44133606     44145724     C21orf33  HGNC:1273
998                22       44133606     44145724     C21orf33  HGNC:1273
999                22       44133606     44145724     C21orf33  HGNC:1273
1000               22       44133606     44145724     C21orf33  HGNC:1273
1001               22       44133606     44145724     C21orf33  HGNC:1273
1002               22       44133606     44145724     C21orf33  HGNC:1273
1003               22       44133606     44145724     C21orf33  HGNC:1273
1004               22       44133606     44145724     C21orf33  HGNC:1273
1005               22       44133606     44145724     C21orf33  HGNC:1273
1006               22       44133606     44145724     C21orf33  HGNC:1273
1007               22       44133606     44145724     C21orf33  HGNC:1273
1008               22       44133606     44145724     C21orf33  HGNC:1273
1009               22       44133606     44145724     C21orf33  HGNC:1273
1010               22       44133606     44145724     C21orf33  HGNC:1273
1011               22       44133606     44145724     C21orf33  HGNC:1273
1012               22       44133606     44145724     C21orf33  HGNC:1273
1013               22       44133606     44145724     C21orf33  HGNC:1273
1014               22       44133606     44145724     C21orf33  HGNC:1273
1015               22       44133606     44145724     C21orf33  HGNC:1273
1016               22       44133606     44145724     C21orf33  HGNC:1273
1017               22       44133606     44145724     C21orf33  HGNC:1273
1018               22       44133606     44145724     C21orf33  HGNC:1273
1019               22       44133606     44145724     C21orf33  HGNC:1273
1020               22       44133606     44145724     C21orf33  HGNC:1273
1021               22       44133606     44145724     C21orf33  HGNC:1273
1022               22       44133606     44145724     C21orf33  HGNC:1273
1023               22       44133606     44145724     C21orf33  HGNC:1273
1024               22       44133606     44145724     C21orf33  HGNC:1273
1025               22       44133606     44145724     C21orf33  HGNC:1273
1026               22       44133606     44145724     C21orf33  HGNC:1273
1027               22       44133606     44145724     C21orf33  HGNC:1273
1028               22       44133606     44145724     C21orf33  HGNC:1273
1029               22       44133606     44145724     C21orf33  HGNC:1273
1030               22       44133606     44145724     C21orf33  HGNC:1273
1031               22       44133606     44145724     C21orf33  HGNC:1273
1032               22       44133606     44145724     C21orf33  HGNC:1273
1033               22       44133606     44145724     C21orf33  HGNC:1273
1034               22       44133606     44145724     C21orf33  HGNC:1273
1035               22       44133606     44145724     C21orf33  HGNC:1273
1036               22       36069942     36073167         CBR1  HGNC:1548
1037               22       36069942     36073167         CBR1  HGNC:1548
1038               22       36069942     36073167         CBR1  HGNC:1548
1039               22       36069942     36073167         CBR1  HGNC:1548
1040               22       36069942     36073167         CBR1  HGNC:1548
1041               22       36069942     36073167         CBR1  HGNC:1548
1042               22       36069942     36073167         CBR1  HGNC:1548
1043               22       36069942     36073167         CBR1  HGNC:1548
1044               22       36069942     36073167         CBR1  HGNC:1548
1045               22       36069942     36073167         CBR1  HGNC:1548
1046               22       36069942     36073167         CBR1  HGNC:1548
1047               22       36069942     36073167         CBR1  HGNC:1548
1048               22       36069942     36073167         CBR1  HGNC:1548
1049               22       36069942     36073167         CBR1  HGNC:1548
1050               22       36388879     36389113     ATP5J2LP   HGNC:849
1051               22       36156783     36294275       DOPEY2  HGNC:1291
1052               22       36156783     36294275       DOPEY2  HGNC:1291
1053               22       36156783     36294275       DOPEY2  HGNC:1291
1054               22       36156783     36294275       DOPEY2  HGNC:1291
1055               22       36156783     36294275       DOPEY2  HGNC:1291
1056               22       36156783     36294275       DOPEY2  HGNC:1291
1057               22       36156783     36294275       DOPEY2  HGNC:1291
1058               22       36156783     36294275       DOPEY2  HGNC:1291
1059               22       36156783     36294275       DOPEY2  HGNC:1291
1060               22       36156783     36294275       DOPEY2  HGNC:1291
1061               22       36156783     36294275       DOPEY2  HGNC:1291
1062               22       36156783     36294275       DOPEY2  HGNC:1291
1063               22       36156783     36294275       DOPEY2  HGNC:1291
1064               22       36156783     36294275       DOPEY2  HGNC:1291
1065               22       36156783     36294275       DOPEY2  HGNC:1291
1066               22       36156783     36294275       DOPEY2  HGNC:1291
1067               22       36156783     36294275       DOPEY2  HGNC:1291
1068               22       36156783     36294275       DOPEY2  HGNC:1291
1069               22       36156783     36294275       DOPEY2  HGNC:1291
1070               22       36156783     36294275       DOPEY2  HGNC:1291
1071               22       36156783     36294275       DOPEY2  HGNC:1291
1072               22       36156783     36294275       DOPEY2  HGNC:1291
1073               22       36156783     36294275       DOPEY2  HGNC:1291
1074               22       36156783     36294275       DOPEY2  HGNC:1291
1075               22       36156783     36294275       DOPEY2  HGNC:1291
1076               22       36156783     36294275       DOPEY2  HGNC:1291
1077               22       36156783     36294275       DOPEY2  HGNC:1291
1078               22       36156783     36294275       DOPEY2  HGNC:1291
1079               22       36156783     36294275       DOPEY2  HGNC:1291
1080               22       36156783     36294275       DOPEY2  HGNC:1291
1081               22       36156783     36294275       DOPEY2  HGNC:1291
1082               22       36156783     36294275       DOPEY2  HGNC:1291
1083               22       36156783     36294275       DOPEY2  HGNC:1291
1084               22       36156783     36294275       DOPEY2  HGNC:1291
1085               22       36156783     36294275       DOPEY2  HGNC:1291
1086               22       36156783     36294275       DOPEY2  HGNC:1291
1087               22       36156783     36294275       DOPEY2  HGNC:1291
1088               22       36156783     36294275       DOPEY2  HGNC:1291
1089               22       36156783     36294275       DOPEY2  HGNC:1291
1090               22       36156783     36294275       DOPEY2  HGNC:1291
1091               22       36156783     36294275       DOPEY2  HGNC:1291
1092               22       36156783     36294275       DOPEY2  HGNC:1291
1093               22       36156783     36294275       DOPEY2  HGNC:1291
1094               22       36156783     36294275       DOPEY2  HGNC:1291
1095               22       36156783     36294275       DOPEY2  HGNC:1291
1096               22       36156783     36294275       DOPEY2  HGNC:1291
1097               22       36156783     36294275       DOPEY2  HGNC:1291
1098               22       36156783     36294275       DOPEY2  HGNC:1291
1099               22       36156783     36294275       DOPEY2  HGNC:1291
1100               22       36156783     36294275       DOPEY2  HGNC:1291
1101               22       36156783     36294275       DOPEY2  HGNC:1291
1102               22       34669390     34718228        CLIC6  HGNC:2065
1103               22       34669390     34718228        CLIC6  HGNC:2065
1104               22       34669390     34718228        CLIC6  HGNC:2065
1105               22       34669390     34718228        CLIC6  HGNC:2065
1106               22       34669390     34718228        CLIC6  HGNC:2065
1107               22       34669390     34718228        CLIC6  HGNC:2065
1108               22       34669390     34718228        CLIC6  HGNC:2065
1109               22       34669390     34718228        CLIC6  HGNC:2065
1110               22       34669390     34718228        CLIC6  HGNC:2065
1111               22       34669390     34718228        CLIC6  HGNC:2065
1112               22       34669390     34718228        CLIC6  HGNC:2065
1113               22       34669390     34718228        CLIC6  HGNC:2065
1114               22       34669390     34718228        CLIC6  HGNC:2065
1115               22       14371116     14383485       HSPA13 HGNC:11375
1116               22       14371116     14383485       HSPA13 HGNC:11375
1117               22       14371116     14383485       HSPA13 HGNC:11375
1118               22       14371116     14383485       HSPA13 HGNC:11375
1119               22       14371116     14383485       HSPA13 HGNC:11375
1120               22       14371116     14383485       HSPA13 HGNC:11375
1121               22       14371116     14383485       HSPA13 HGNC:11375
1122               22       14371116     14383485       HSPA13 HGNC:11375
1123               22       16630828     16640684                        
1124               22       16630828     16640684                        
1125               22       16630828     16640684                        
1126               22       16630828     16640684                        
1127               22       16643530     16645066                        
1128               22       16754520     16815689                        
1129               22       16754520     16815689                        
1130               22       16754520     16815689                        
1131               22       34364025     34371390        KCNE2  HGNC:6242
1132               22       34364025     34371390        KCNE2  HGNC:6242
1133               22       43865187     43986537       AGPAT3   HGNC:326
1134               22       43865187     43986537       AGPAT3   HGNC:326
1135               22       43865187     43986537       AGPAT3   HGNC:326
1136               22       43865187     43986537       AGPAT3   HGNC:326
1137               22       43865187     43986537       AGPAT3   HGNC:326
1138               22       43865187     43986537       AGPAT3   HGNC:326
1139               22       43865187     43986537       AGPAT3   HGNC:326
1140               22       43865187     43986537       AGPAT3   HGNC:326
1141               22       43865187     43986537       AGPAT3   HGNC:326
1142               22       43865187     43986537       AGPAT3   HGNC:326
1143               22       43865187     43986537       AGPAT3   HGNC:326
1144               22       43865187     43986537       AGPAT3   HGNC:326
1145               22       43865187     43986537       AGPAT3   HGNC:326
1146               22       43865187     43986537       AGPAT3   HGNC:326
1147               22       43865187     43986537       AGPAT3   HGNC:326
1148               22       43865187     43986537       AGPAT3   HGNC:326
1149               22       43865187     43986537       AGPAT3   HGNC:326
1150               22       43865187     43986537       AGPAT3   HGNC:326
1151               22       43865187     43986537       AGPAT3   HGNC:326
1152               22       43865187     43986537       AGPAT3   HGNC:326
1153               22       43865187     43986537       AGPAT3   HGNC:326
1154               22       43865187     43986537       AGPAT3   HGNC:326
1155               22       43865187     43986537       AGPAT3   HGNC:326
1156               22       43865187     43986537       AGPAT3   HGNC:326
1157               22       43865187     43986537       AGPAT3   HGNC:326
1158               22       43865187     43986537       AGPAT3   HGNC:326
1159               22       43865187     43986537       AGPAT3   HGNC:326
1160               22       43865187     43986537       AGPAT3   HGNC:326
1161               22       43865187     43986537       AGPAT3   HGNC:326
1162               22       43865187     43986537       AGPAT3   HGNC:326
1163               22       43865187     43986537       AGPAT3   HGNC:326
1164               22       43865187     43986537       AGPAT3   HGNC:326
1165               22       43865187     43986537       AGPAT3   HGNC:326
1166               22       43865187     43986537       AGPAT3   HGNC:326
1167               22       43865187     43986537       AGPAT3   HGNC:326
1168               22       43865187     43986537       AGPAT3   HGNC:326
1169               22       43865187     43986537       AGPAT3   HGNC:326
1170               22       43865187     43986537       AGPAT3   HGNC:326
1171               22       43865187     43986537       AGPAT3   HGNC:326
1172               22       43865187     43986537       AGPAT3   HGNC:326
1173               22       43865187     43986537       AGPAT3   HGNC:326
1174               22       43865187     43986537       AGPAT3   HGNC:326
1175               22       43865187     43986537       AGPAT3   HGNC:326
1176               22       43865187     43986537       AGPAT3   HGNC:326
1177               22       43865187     43986537       AGPAT3   HGNC:326
1178               22       43865187     43986537       AGPAT3   HGNC:326
1179               22       43865187     43986537       AGPAT3   HGNC:326
1180               22       43865187     43986537       AGPAT3   HGNC:326
1181               22       43865187     43986537       AGPAT3   HGNC:326
1182               22       43865187     43986537       AGPAT3   HGNC:326
1183               22       43865187     43986537       AGPAT3   HGNC:326
1184               22       43865187     43986537       AGPAT3   HGNC:326
1185               22       43865187     43986537       AGPAT3   HGNC:326
1186               22       43865187     43986537       AGPAT3   HGNC:326
1187               22       43865187     43986537       AGPAT3   HGNC:326
1188               22       43865187     43986537       AGPAT3   HGNC:326
1189               22       43865187     43986537       AGPAT3   HGNC:326
1190               22       43865187     43986537       AGPAT3   HGNC:326
1191               22       43865187     43986537       AGPAT3   HGNC:326
1192               22       43865187     43986537       AGPAT3   HGNC:326
1193               22       43865187     43986537       AGPAT3   HGNC:326
1194               22       43865187     43986537       AGPAT3   HGNC:326
1195               22       43865187     43986537       AGPAT3   HGNC:326
1196               22       43865187     43986537       AGPAT3   HGNC:326
1197               22       43865187     43986537       AGPAT3   HGNC:326
1198               22       43865187     43986537       AGPAT3   HGNC:326
1199               22       43865187     43986537       AGPAT3   HGNC:326
1200               22       43865187     43986537       AGPAT3   HGNC:326
1201               22       43865187     43986537       AGPAT3   HGNC:326
1202               22       43865187     43986537       AGPAT3   HGNC:326
1203               22       43865187     43986537       AGPAT3   HGNC:326
1204               22       43865187     43986537       AGPAT3   HGNC:326
1205               22       43865187     43986537       AGPAT3   HGNC:326
1206               22       43865187     43986537       AGPAT3   HGNC:326
1207               22       43865187     43986537       AGPAT3   HGNC:326
1208               22       43865187     43986537       AGPAT3   HGNC:326
1209               22       43865187     43986537       AGPAT3   HGNC:326
1210               22       43865187     43986537       AGPAT3   HGNC:326
1211               22       43865187     43986537       AGPAT3   HGNC:326
1212               22       43865187     43986537       AGPAT3   HGNC:326
1213               22       43865187     43986537       AGPAT3   HGNC:326
1214               22       43865187     43986537       AGPAT3   HGNC:326
1215               22       43865187     43986537       AGPAT3   HGNC:326
1216               22       43865187     43986537       AGPAT3   HGNC:326
1217               22       43865187     43986537       AGPAT3   HGNC:326
1218               22       43865187     43986537       AGPAT3   HGNC:326
1219               22       43865187     43986537       AGPAT3   HGNC:326
1220               22       43865187     43986537       AGPAT3   HGNC:326
1221               22       43865187     43986537       AGPAT3   HGNC:326
1222               22       43865187     43986537       AGPAT3   HGNC:326
1223               22       43865187     43986537       AGPAT3   HGNC:326
1224               22       43865187     43986537       AGPAT3   HGNC:326
1225               22       43865187     43986537       AGPAT3   HGNC:326
1226               22       43865187     43986537       AGPAT3   HGNC:326
1227               22       43865187     43986537       AGPAT3   HGNC:326
1228               22       43865187     43986537       AGPAT3   HGNC:326
1229               22       43865187     43986537       AGPAT3   HGNC:326
1230               22       43865187     43986537       AGPAT3   HGNC:326
1231               22       43865187     43986537       AGPAT3   HGNC:326
1232               22       43865187     43986537       AGPAT3   HGNC:326
1233               22       43865187     43986537       AGPAT3   HGNC:326
1234               22       43865187     43986537       AGPAT3   HGNC:326
1235               22       43865187     43986537       AGPAT3   HGNC:326
1236               22       43865187     43986537       AGPAT3   HGNC:326
1237               22       43865187     43986537       AGPAT3   HGNC:326
1238               22       43865187     43986537       AGPAT3   HGNC:326
1239               22       43865187     43986537       AGPAT3   HGNC:326
1240               22       43865187     43986537       AGPAT3   HGNC:326
1241               22       43865187     43986537       AGPAT3   HGNC:326
1242               22       43865187     43986537       AGPAT3   HGNC:326
1243               22       43865187     43986537       AGPAT3   HGNC:326
1244               22       43865187     43986537       AGPAT3   HGNC:326
1245               22       43865187     43986537       AGPAT3   HGNC:326
1246               22       34370803     34375349                        
1247               22       34370803     34375349                        
1248               22       45974490     45974954                        
1249               22       34400318     34401073    C21orf140 HGNC:39602
1250               22       34375481     34407867      SMIM11A  HGNC:1293
1251               22       34375481     34407867      SMIM11A  HGNC:1293
1252               22       34375481     34407867      SMIM11A  HGNC:1293
1253               22       34375481     34407867      SMIM11A  HGNC:1293
1254               22       34375481     34407867      SMIM11A  HGNC:1293
1255               22       34375481     34407867      SMIM11A  HGNC:1293
1256               22       34375481     34407867      SMIM11A  HGNC:1293
1257               22       34375481     34407867      SMIM11A  HGNC:1293
1258               22       34375481     34407867      SMIM11A  HGNC:1293
1259               22       34375481     34407867      SMIM11A  HGNC:1293
1260               22       34375481     34407867      SMIM11A  HGNC:1293
1261               22       34375481     34407867      SMIM11A  HGNC:1293
1262               22       34375481     34407867      SMIM11A  HGNC:1293
1263               22       34375481     34407867      SMIM11A  HGNC:1293
1264               22       34375481     34407867      SMIM11A  HGNC:1293
1265               22       34375481     34407867      SMIM11A  HGNC:1293
1266               22       34375481     34407867      SMIM11A  HGNC:1293
1267               22       34375481     34407867      SMIM11A  HGNC:1293
1268               22       34375481     34407867      SMIM11A  HGNC:1293
1269               22       34375481     34407867      SMIM11A  HGNC:1293
1270               22       34375481     34407867      SMIM11A  HGNC:1293
1271               22       34375481     34407867      SMIM11A  HGNC:1293
1272               22       34375481     34407867      SMIM11A  HGNC:1293
1273               22       34375481     34407867      SMIM11A  HGNC:1293
1274               22       34375481     34407867      SMIM11A  HGNC:1293
1275               22       34375481     34407867      SMIM11A  HGNC:1293
1276               22       34375481     34407867      SMIM11A  HGNC:1293
1277               22       34375481     34407867      SMIM11A  HGNC:1293
1278               22       34375481     34407867      SMIM11A  HGNC:1293
1279               22       34375481     34407867      SMIM11A  HGNC:1293
1280               22       42403448     42447682      UBASH3A HGNC:12462
1281               22       42403448     42447682      UBASH3A HGNC:12462
1282               22       42403448     42447682      UBASH3A HGNC:12462
1283               22       42403448     42447682      UBASH3A HGNC:12462
1284               22       42403448     42447682      UBASH3A HGNC:12462
1285               22       42403448     42447682      UBASH3A HGNC:12462
1286               22       42403448     42447682      UBASH3A HGNC:12462
1287               22       42403448     42447682      UBASH3A HGNC:12462
1288               22       42403448     42447682      UBASH3A HGNC:12462
1289               22       42403448     42447682      UBASH3A HGNC:12462
1290               22       42403448     42447682      UBASH3A HGNC:12462
1291               22       42403448     42447682      UBASH3A HGNC:12462
1292               22       42403448     42447682      UBASH3A HGNC:12462
1293               22       42403448     42447682      UBASH3A HGNC:12462
1294               22       42403448     42447682      UBASH3A HGNC:12462
1295               22       42403448     42447682      UBASH3A HGNC:12462
1296               22       42403448     42447682      UBASH3A HGNC:12462
1297               22       42403448     42447682      UBASH3A HGNC:12462
1298               22       42403448     42447682      UBASH3A HGNC:12462
1299               22       42403448     42447682      UBASH3A HGNC:12462
1300               22       42403448     42447682      UBASH3A HGNC:12462
1301               22       42403448     42447682      UBASH3A HGNC:12462
1302               22       42403448     42447682      UBASH3A HGNC:12462
1303               22       42403448     42447682      UBASH3A HGNC:12462
1304               22       42403448     42447682      UBASH3A HGNC:12462
1305               22       42403448     42447682      UBASH3A HGNC:12462
1306               22       42403448     42447682      UBASH3A HGNC:12462
1307               22       42403448     42447682      UBASH3A HGNC:12462
1308               22       42403448     42447682      UBASH3A HGNC:12462
1309               22       42403448     42447682      UBASH3A HGNC:12462
1310               22       42403448     42447682      UBASH3A HGNC:12462
1311               22       42403448     42447682      UBASH3A HGNC:12462
1312               22       42403448     42447682      UBASH3A HGNC:12462
1313               22       42403448     42447682      UBASH3A HGNC:12462
1314               22       42403448     42447682      UBASH3A HGNC:12462
1315               22       42403448     42447682      UBASH3A HGNC:12462
1316               22       42403448     42447682      UBASH3A HGNC:12462
1317               22       42403448     42447682      UBASH3A HGNC:12462
1318               22       42403448     42447682      UBASH3A HGNC:12462
1319               22       42403448     42447682      UBASH3A HGNC:12462
1320               22       42403448     42447682      UBASH3A HGNC:12462
1321               22       42403448     42447682      UBASH3A HGNC:12462
1322               22       42403448     42447682      UBASH3A HGNC:12462
1323               22       42403448     42447682      UBASH3A HGNC:12462
1324               22       42403448     42447682      UBASH3A HGNC:12462
1325               22       42403448     42447682      UBASH3A HGNC:12462
1326               22       42403448     42447682      UBASH3A HGNC:12462
1327               22       42403448     42447682      UBASH3A HGNC:12462
1328               22       42403448     42447682      UBASH3A HGNC:12462
1329               22       42403448     42447682      UBASH3A HGNC:12462
1330               22       42403448     42447682      UBASH3A HGNC:12462
1331               22       42403448     42447682      UBASH3A HGNC:12462
1332               22       42403448     42447682      UBASH3A HGNC:12462
1333               22       42403448     42447682      UBASH3A HGNC:12462
1334               22       42403448     42447682      UBASH3A HGNC:12462
1335               22       42403448     42447682      UBASH3A HGNC:12462
1336               22       42403448     42447682      UBASH3A HGNC:12462
1337               22       42403448     42447682      UBASH3A HGNC:12462
1338               22       42403448     42447682      UBASH3A HGNC:12462
1339               22       42403448     42447682      UBASH3A HGNC:12462
1340               22       42403448     42447682      UBASH3A HGNC:12462
1341               22       42403448     42447682      UBASH3A HGNC:12462
1342               22       42403448     42447682      UBASH3A HGNC:12462
1343               22       42403448     42447682      UBASH3A HGNC:12462
1344               22       42403448     42447682      UBASH3A HGNC:12462
1345               22       42403448     42447682      UBASH3A HGNC:12462
1346               22       42403448     42447682      UBASH3A HGNC:12462
1347               22       42403448     42447682      UBASH3A HGNC:12462
1348               22       42403448     42447682      UBASH3A HGNC:12462
1349               22       42403448     42447682      UBASH3A HGNC:12462
1350               22       42403448     42447682      UBASH3A HGNC:12462
1351               22       42403448     42447682      UBASH3A HGNC:12462
1352               22       42403448     42447682      UBASH3A HGNC:12462
1353               22       42403448     42447682      UBASH3A HGNC:12462
1354               22       42403448     42447682      UBASH3A HGNC:12462
1355               22       42403448     42447682      UBASH3A HGNC:12462
1356               22       42403448     42447682      UBASH3A HGNC:12462
1357               22       42403448     42447682      UBASH3A HGNC:12462
1358               22       42403448     42447682      UBASH3A HGNC:12462
1359               22       42403448     42447682      UBASH3A HGNC:12462
1360               22       42403448     42447682      UBASH3A HGNC:12462
1361               22       42403448     42447682      UBASH3A HGNC:12462
1362               22       42403448     42447682      UBASH3A HGNC:12462
1363               22       42403448     42447682      UBASH3A HGNC:12462
1364               22       42403448     42447682      UBASH3A HGNC:12462
1365               22       42403448     42447682      UBASH3A HGNC:12462
1366               22       34412201     34412588                        
1367               22       34418716     34423967                        
1368               22       34418716     34423967                        
1369               22       34425509     34426018                        
1370               22       14216131     14228373        RBM11  HGNC:9897
1371               22       14216131     14228373        RBM11  HGNC:9897
1372               22       14216131     14228373        RBM11  HGNC:9897
1373               22       14216131     14228373        RBM11  HGNC:9897
1374               22       14216131     14228373        RBM11  HGNC:9897
1375               22       14216131     14228373        RBM11  HGNC:9897
1376               22       14216131     14228373        RBM11  HGNC:9897
1377               22       14216131     14228373        RBM11  HGNC:9897
1378               22       14216131     14228373        RBM11  HGNC:9897
1379               22       14216131     14228373        RBM11  HGNC:9897
1380               22       14216131     14228373        RBM11  HGNC:9897
1381               22       14216131     14228373        RBM11  HGNC:9897
1382               22       14216131     14228373        RBM11  HGNC:9897
1383               22       14216131     14228373        RBM11  HGNC:9897
1384               22       14216131     14228373        RBM11  HGNC:9897
1385               22       14216131     14228373        RBM11  HGNC:9897
1386               22       14216131     14228373        RBM11  HGNC:9897
1387               22       14216131     14228373        RBM11  HGNC:9897
1388               22       14216131     14228373        RBM11  HGNC:9897
1389               22       14216131     14228373        RBM11  HGNC:9897
1390               22       14216131     14228373        RBM11  HGNC:9897
1391               22       14216131     14228373        RBM11  HGNC:9897
1392               22       14216131     14228373        RBM11  HGNC:9897
1393               22       14216131     14228373        RBM11  HGNC:9897
1394               22       16862876     16873692                        
1395               22       16862876     16873692                        
1396               22       16862876     16873692                        
1397               22       16862876     16873692                        
1398               22       45981738     46005051       COL6A1  HGNC:2211
1399               22       45981738     46005051       COL6A1  HGNC:2211
1400               22       45981738     46005051       COL6A1  HGNC:2211
1401               22       45981738     46005051       COL6A1  HGNC:2211
1402               22       45981738     46005051       COL6A1  HGNC:2211
1403               22       45981738     46005051       COL6A1  HGNC:2211
1404               22       45981738     46005051       COL6A1  HGNC:2211
1405               22       45981738     46005051       COL6A1  HGNC:2211
1406               22       45981738     46005051       COL6A1  HGNC:2211
1407               22       45981738     46005051       COL6A1  HGNC:2211
1408               22       45981738     46005051       COL6A1  HGNC:2211
1409               22       45981738     46005051       COL6A1  HGNC:2211
1410               22       45981738     46005051       COL6A1  HGNC:2211
1411               22       45981738     46005051       COL6A1  HGNC:2211
1412               22       45981738     46005051       COL6A1  HGNC:2211
1413               22       45981738     46005051       COL6A1  HGNC:2211
1414               22       45981738     46005051       COL6A1  HGNC:2211
1415               22       45981738     46005051       COL6A1  HGNC:2211
1416               22       45981738     46005051       COL6A1  HGNC:2211
1417               22       45981738     46005051       COL6A1  HGNC:2211
1418               22       45981738     46005051       COL6A1  HGNC:2211
1419               22       45981738     46005051       COL6A1  HGNC:2211
1420               22       45981738     46005051       COL6A1  HGNC:2211
1421               22       45981738     46005051       COL6A1  HGNC:2211
1422               22       45981738     46005051       COL6A1  HGNC:2211
1423               22       45981738     46005051       COL6A1  HGNC:2211
1424               22       45981738     46005051       COL6A1  HGNC:2211
1425               22       45981738     46005051       COL6A1  HGNC:2211
1426               22       45981738     46005051       COL6A1  HGNC:2211
1427               22       45981738     46005051       COL6A1  HGNC:2211
1428               22       45981738     46005051       COL6A1  HGNC:2211
1429               22       45981738     46005051       COL6A1  HGNC:2211
1430               22       45981738     46005051       COL6A1  HGNC:2211
1431               22       45981738     46005051       COL6A1  HGNC:2211
1432               22       45981738     46005051       COL6A1  HGNC:2211
1433               22       45981738     46005051       COL6A1  HGNC:2211
1434               22       45981738     46005051       COL6A1  HGNC:2211
1435               22       45981738     46005051       COL6A1  HGNC:2211
1436               22       45981738     46005051       COL6A1  HGNC:2211
1437               22       45981738     46005051       COL6A1  HGNC:2211
1438               22       45981738     46005051       COL6A1  HGNC:2211
1439               22       45981738     46005051       COL6A1  HGNC:2211
1440               22       45981738     46005051       COL6A1  HGNC:2211
1441               22       45981738     46005051       COL6A1  HGNC:2211
1442               22       45981738     46005051       COL6A1  HGNC:2211
1443               22       45981738     46005051       COL6A1  HGNC:2211
1444               22       45981738     46005051       COL6A1  HGNC:2211
1445               22       45981738     46005051       COL6A1  HGNC:2211
1446               22       45981738     46005051       COL6A1  HGNC:2211
1447               22       45981738     46005051       COL6A1  HGNC:2211
1448               22       45981738     46005051       COL6A1  HGNC:2211
1449               22       45981738     46005051       COL6A1  HGNC:2211
1450               22       45981738     46005051       COL6A1  HGNC:2211
1451               22       45981738     46005051       COL6A1  HGNC:2211
1452               22       45981738     46005051       COL6A1  HGNC:2211
1453               22       45981738     46005051       COL6A1  HGNC:2211
1454               22       45981738     46005051       COL6A1  HGNC:2211
1455               22       45981738     46005051       COL6A1  HGNC:2211
1456               22       45981738     46005051       COL6A1  HGNC:2211
1457               22       45981738     46005051       COL6A1  HGNC:2211
1458               22       45981738     46005051       COL6A1  HGNC:2211
1459               22       45981738     46005051       COL6A1  HGNC:2211
1460               22       45981738     46005051       COL6A1  HGNC:2211
1461               22       45981738     46005051       COL6A1  HGNC:2211
1462               22       45981738     46005051       COL6A1  HGNC:2211
1463               22       45981738     46005051       COL6A1  HGNC:2211
1464               22       45981738     46005051       COL6A1  HGNC:2211
1465               22       45981738     46005051       COL6A1  HGNC:2211
1466               22       45981738     46005051       COL6A1  HGNC:2211
1467               22       45981738     46005051       COL6A1  HGNC:2211
1468               22       45981738     46005051       COL6A1  HGNC:2211
1469               22       45981738     46005051       COL6A1  HGNC:2211
1470               22       45981738     46005051       COL6A1  HGNC:2211
1471               22       45981738     46005051       COL6A1  HGNC:2211
1472               22       45981738     46005051       COL6A1  HGNC:2211
1473               22       45981738     46005051       COL6A1  HGNC:2211
1474               22       45981738     46005051       COL6A1  HGNC:2211
1475               22       45981738     46005051       COL6A1  HGNC:2211
1476               22       45981738     46005051       COL6A1  HGNC:2211
1477               22       45981738     46005051       COL6A1  HGNC:2211
1478               22       45981738     46005051       COL6A1  HGNC:2211
1479               22       45981738     46005051       COL6A1  HGNC:2211
1480               22       45981738     46005051       COL6A1  HGNC:2211
1481               22       45981738     46005051       COL6A1  HGNC:2211
1482               22       45981738     46005051       COL6A1  HGNC:2211
1483               22       45981738     46005051       COL6A1  HGNC:2211
1484               22       45981738     46005051       COL6A1  HGNC:2211
1485               22       45981738     46005051       COL6A1  HGNC:2211
1486               22       45981738     46005051       COL6A1  HGNC:2211
1487               22       17210470     17211348       NEK4P1 HGNC:39649
1488               22       17296220     17296597                        
1489               22       17438891     17449186    LINC01549  HGNC:1277
1490               22       17438891     17449186    LINC01549  HGNC:1277
1491               22       17438891     17449186    LINC01549  HGNC:1277
1492               22       17438891     17449186    LINC01549  HGNC:1277
1493               22       17438891     17449186    LINC01549  HGNC:1277
1494               22       17438891     17449186    LINC01549  HGNC:1277
1495               22       17438891     17449186    LINC01549  HGNC:1277
1496               22       17500680     17500825     RPL39P40 HGNC:35823
1497               22       34446689     34512276        KCNE1  HGNC:6240
1498               22       34446689     34512276        KCNE1  HGNC:6240
1499               22       34446689     34512276        KCNE1  HGNC:6240
1500               22       34446689     34512276        KCNE1  HGNC:6240
1501               22       34446689     34512276        KCNE1  HGNC:6240
1502               22       34446689     34512276        KCNE1  HGNC:6240
1503               22       34446689     34512276        KCNE1  HGNC:6240
1504               22       34446689     34512276        KCNE1  HGNC:6240
1505               22       34446689     34512276        KCNE1  HGNC:6240
1506               22       34446689     34512276        KCNE1  HGNC:6240
1507               22       34446689     34512276        KCNE1  HGNC:6240
1508               22       34446689     34512276        KCNE1  HGNC:6240
1509               22       34446689     34512276        KCNE1  HGNC:6240
1510               22       34446689     34512276        KCNE1  HGNC:6240
1511               22       34446689     34512276        KCNE1  HGNC:6240
1512               22       34446689     34512276        KCNE1  HGNC:6240
1513               22       34446689     34512276        KCNE1  HGNC:6240
1514               22       34446689     34512276        KCNE1  HGNC:6240
1515               22       34446689     34512276        KCNE1  HGNC:6240
1516               22       34446689     34512276        KCNE1  HGNC:6240
1517               22       34446689     34512276        KCNE1  HGNC:6240
1518               22       34446689     34512276        KCNE1  HGNC:6240
1519               22       34446689     34512276        KCNE1  HGNC:6240
1520               22       34446689     34512276        KCNE1  HGNC:6240
1521               22       34446689     34512276        KCNE1  HGNC:6240
1522               22       17512383     17593580        CXADR  HGNC:2559
1523               22       17512383     17593580        CXADR  HGNC:2559
1524               22       17512383     17593580        CXADR  HGNC:2559
1525               22       17512383     17593580        CXADR  HGNC:2559
1526               22       17512383     17593580        CXADR  HGNC:2559
1527               22       17512383     17593580        CXADR  HGNC:2559
1528               22       17512383     17593580        CXADR  HGNC:2559
1529               22       17512383     17593580        CXADR  HGNC:2559
1530               22       17512383     17593580        CXADR  HGNC:2559
1531               22       17512383     17593580        CXADR  HGNC:2559
1532               22       17512383     17593580        CXADR  HGNC:2559
1533               22       17512383     17593580        CXADR  HGNC:2559
1534               22       17512383     17593580        CXADR  HGNC:2559
1535               22       17512383     17593580        CXADR  HGNC:2559
1536               22       17512383     17593580        CXADR  HGNC:2559
1537               22       17512383     17593580        CXADR  HGNC:2559
1538               22       17512383     17593580        CXADR  HGNC:2559
1539               22       17512383     17593580        CXADR  HGNC:2559
1540               22       17512383     17593580        CXADR  HGNC:2559
1541               22       17512383     17593580        CXADR  HGNC:2559
1542               22       17512383     17593580        CXADR  HGNC:2559
1543               22       17512383     17593580        CXADR  HGNC:2559
1544               22       17512383     17593580        CXADR  HGNC:2559
1545               22       17512383     17593580        CXADR  HGNC:2559
1546               22       17512383     17593580        CXADR  HGNC:2559
1547               22       17512383     17593580        CXADR  HGNC:2559
1548               22       17512383     17593580        CXADR  HGNC:2559
1549               22       17518527     17518994     BTF3L4P1 HGNC:39645
1550               22       46037053     46039808                        
1551               22       46037053     46039808                        
1552               22       46052597     46053106                        
1553               22       46052597     46053106                        
1554               22       46056517     46057568                        
1555               22       46056517     46057568                        
1556               22       14236207     14362755       ABCC13 HGNC:16022
1557               22       14236207     14362755       ABCC13 HGNC:16022
1558               22       14236207     14362755       ABCC13 HGNC:16022
1559               22       14236207     14362755       ABCC13 HGNC:16022
1560               22       14236207     14362755       ABCC13 HGNC:16022
1561               22       14236207     14362755       ABCC13 HGNC:16022
1562               22       14236207     14362755       ABCC13 HGNC:16022
1563               22       14236207     14362755       ABCC13 HGNC:16022
1564               22       14236207     14362755       ABCC13 HGNC:16022
1565               22       14236207     14362755       ABCC13 HGNC:16022
1566               22       14236207     14362755       ABCC13 HGNC:16022
1567               22       14236207     14362755       ABCC13 HGNC:16022
1568               22       14236207     14362755       ABCC13 HGNC:16022
1569               22       14236207     14362755       ABCC13 HGNC:16022
1570               22       14236207     14362755       ABCC13 HGNC:16022
1571               22       14236207     14362755       ABCC13 HGNC:16022
1572               22       14236207     14362755       ABCC13 HGNC:16022
1573               22       14236207     14362755       ABCC13 HGNC:16022
1574               22       14236207     14362755       ABCC13 HGNC:16022
1575               22       14236207     14362755       ABCC13 HGNC:16022
1576               22       14236207     14362755       ABCC13 HGNC:16022
1577               22       14236207     14362755       ABCC13 HGNC:16022
1578               22       14236207     14362755       ABCC13 HGNC:16022
1579               22       14236207     14362755       ABCC13 HGNC:16022
1580               22       14236207     14362755       ABCC13 HGNC:16022
1581               22       14236207     14362755       ABCC13 HGNC:16022
1582               22       14236207     14362755       ABCC13 HGNC:16022
1583               22       14236207     14362755       ABCC13 HGNC:16022
1584               22       14236207     14362755       ABCC13 HGNC:16022
1585               22       14236207     14362755       ABCC13 HGNC:16022
1586               22       14236207     14362755       ABCC13 HGNC:16022
1587               22       14236207     14362755       ABCC13 HGNC:16022
1588               22       14236207     14362755       ABCC13 HGNC:16022
1589               22       14236207     14362755       ABCC13 HGNC:16022
1590               22       14236207     14362755       ABCC13 HGNC:16022
1591               22       14236207     14362755       ABCC13 HGNC:16022
1592               22       14236207     14362755       ABCC13 HGNC:16022
1593               22       14236207     14362755       ABCC13 HGNC:16022
1594               22       14236207     14362755       ABCC13 HGNC:16022
1595               22       14236207     14362755       ABCC13 HGNC:16022
1596               22       14236207     14362755       ABCC13 HGNC:16022
1597               22       14236207     14362755       ABCC13 HGNC:16022
1598               22       14236207     14362755       ABCC13 HGNC:16022
1599               22       14236207     14362755       ABCC13 HGNC:16022
1600               22       14236207     14362755       ABCC13 HGNC:16022
1601               22       14236207     14362755       ABCC13 HGNC:16022
1602               22       14236207     14362755       ABCC13 HGNC:16022
1603               22       14236207     14362755       ABCC13 HGNC:16022
1604               22       14236207     14362755       ABCC13 HGNC:16022
1605               22       14236207     14362755       ABCC13 HGNC:16022
1606               22       14236207     14362755       ABCC13 HGNC:16022
1607               22       14236207     14362755       ABCC13 HGNC:16022
1608               22       14236207     14362755       ABCC13 HGNC:16022
1609               22       14236207     14362755       ABCC13 HGNC:16022
1610               22       14236207     14362755       ABCC13 HGNC:16022
1611               22       14236207     14362755       ABCC13 HGNC:16022
1612               22       14236207     14362755       ABCC13 HGNC:16022
1613               22       14236207     14362755       ABCC13 HGNC:16022
1614               22       14236207     14362755       ABCC13 HGNC:16022
1615               22       14236207     14362755       ABCC13 HGNC:16022
1616               22       14236207     14362755       ABCC13 HGNC:16022
1617               22       14236207     14362755       ABCC13 HGNC:16022
1618               22       14236207     14362755       ABCC13 HGNC:16022
1619               22       34513143     34615143        RCAN1  HGNC:3040
1620               22       34513143     34615143        RCAN1  HGNC:3040
1621               22       34513143     34615143        RCAN1  HGNC:3040
1622               22       34513143     34615143        RCAN1  HGNC:3040
1623               22       34513143     34615143        RCAN1  HGNC:3040
1624               22       34513143     34615143        RCAN1  HGNC:3040
1625               22       34513143     34615143        RCAN1  HGNC:3040
1626               22       34513143     34615143        RCAN1  HGNC:3040
1627               22       34513143     34615143        RCAN1  HGNC:3040
1628               22       34513143     34615143        RCAN1  HGNC:3040
1629               22       34513143     34615143        RCAN1  HGNC:3040
1630               22       34513143     34615143        RCAN1  HGNC:3040
1631               22       34513143     34615143        RCAN1  HGNC:3040
1632               22       34513143     34615143        RCAN1  HGNC:3040
1633               22       34513143     34615143        RCAN1  HGNC:3040
1634               22       34513143     34615143        RCAN1  HGNC:3040
1635               22       34513143     34615143        RCAN1  HGNC:3040
1636               22       34513143     34615143        RCAN1  HGNC:3040
1637               22       34513143     34615143        RCAN1  HGNC:3040
1638               22       34513143     34615143        RCAN1  HGNC:3040
1639               22       34513143     34615143        RCAN1  HGNC:3040
1640               22       34513143     34615143        RCAN1  HGNC:3040
1641               22       34513143     34615143        RCAN1  HGNC:3040
1642               22       34513143     34615143        RCAN1  HGNC:3040
1643               22       34513143     34615143        RCAN1  HGNC:3040
1644               22       34513143     34615143        RCAN1  HGNC:3040
1645               22       34513143     34615143        RCAN1  HGNC:3040
1646               22       34513143     34615143        RCAN1  HGNC:3040
1647               22       34513143     34615143        RCAN1  HGNC:3040
1648               22       34513143     34615143        RCAN1  HGNC:3040
1649               22       34513143     34615143        RCAN1  HGNC:3040
1650               22       34513143     34615143        RCAN1  HGNC:3040
1651               22       34513143     34615143        RCAN1  HGNC:3040
1652               22       34513143     34615143        RCAN1  HGNC:3040
1653               22       34513143     34615143        RCAN1  HGNC:3040
1654               22       34513143     34615143        RCAN1  HGNC:3040
1655               22       34513143     34615143        RCAN1  HGNC:3040
1656               22       34513143     34615143        RCAN1  HGNC:3040
1657               22       34513143     34615143        RCAN1  HGNC:3040
1658               22       34513143     34615143        RCAN1  HGNC:3040
1659               22       34513143     34615143        RCAN1  HGNC:3040
1660               22       34513143     34615143        RCAN1  HGNC:3040
1661               22       34513143     34615143        RCAN1  HGNC:3040
1662               22       34513143     34615143        RCAN1  HGNC:3040
1663               22       34513143     34615143        RCAN1  HGNC:3040
1664               22       34513143     34615143        RCAN1  HGNC:3040
1665               22       34513143     34615143        RCAN1  HGNC:3040
1666               22       34513143     34615143        RCAN1  HGNC:3040
1667               22       34513143     34615143        RCAN1  HGNC:3040
1668               22       46072086     46072249      PSMA6P3 HGNC:39608
1669               22       17593654     17612948         BTG3  HGNC:1132
1670               22       17593654     17612948         BTG3  HGNC:1132
1671               22       17593654     17612948         BTG3  HGNC:1132
1672               22       17593654     17612948         BTG3  HGNC:1132
1673               22       17593654     17612948         BTG3  HGNC:1132
1674               22       17593654     17612948         BTG3  HGNC:1132
1675               22       17593654     17612948         BTG3  HGNC:1132
1676               22       17593654     17612948         BTG3  HGNC:1132
1677               22       17593654     17612948         BTG3  HGNC:1132
1678               22       17593654     17612948         BTG3  HGNC:1132
1679               22       17593654     17612948         BTG3  HGNC:1132
1680               22       17593654     17612948         BTG3  HGNC:1132
1681               22       17593654     17612948         BTG3  HGNC:1132
1682               22       17593654     17612948         BTG3  HGNC:1132
1683               22       17593654     17612948         BTG3  HGNC:1132
1684               22       17593654     17612948         BTG3  HGNC:1132
1685               22       17593654     17612948         BTG3  HGNC:1132
1686               22       17593654     17612948         BTG3  HGNC:1132
1687               22       17593654     17612948         BTG3  HGNC:1132
1688               22       17593654     17612948         BTG3  HGNC:1132
1689               22       17611745     17633200                        
1690               22       17611745     17633200                        
1691               22       17611745     17633200                        
1692               22       17611745     17633200                        
1693               22       32728116     32743123   PAXBP1-AS1 HGNC:39603
1694               22       32728116     32743123   PAXBP1-AS1 HGNC:39603
1695               22       32728116     32743123   PAXBP1-AS1 HGNC:39603
1696               22       32728116     32743123   PAXBP1-AS1 HGNC:39603
1697               22       32728116     32743123   PAXBP1-AS1 HGNC:39603
1698               22       32728116     32743123   PAXBP1-AS1 HGNC:39603
1699               22       32728116     32743123   PAXBP1-AS1 HGNC:39603
1700               22       32728116     32743123   PAXBP1-AS1 HGNC:39603
1701               22       32728116     32743123   PAXBP1-AS1 HGNC:39603
1702               22       32733900     32771859       PAXBP1 HGNC:13579
1703               22       32733900     32771859       PAXBP1 HGNC:13579
1704               22       32733900     32771859       PAXBP1 HGNC:13579
1705               22       32733900     32771859       PAXBP1 HGNC:13579
1706               22       32733900     32771859       PAXBP1 HGNC:13579
1707               22       32733900     32771859       PAXBP1 HGNC:13579
1708               22       32733900     32771859       PAXBP1 HGNC:13579
1709               22       32733900     32771859       PAXBP1 HGNC:13579
1710               22       32733900     32771859       PAXBP1 HGNC:13579
1711               22       32733900     32771859       PAXBP1 HGNC:13579
1712               22       32733900     32771859       PAXBP1 HGNC:13579
1713               22       32733900     32771859       PAXBP1 HGNC:13579
1714               22       32733900     32771859       PAXBP1 HGNC:13579
1715               22       32733900     32771859       PAXBP1 HGNC:13579
1716               22       32733900     32771859       PAXBP1 HGNC:13579
1717               22       32733900     32771859       PAXBP1 HGNC:13579
1718               22       32733900     32771859       PAXBP1 HGNC:13579
1719               22       32733900     32771859       PAXBP1 HGNC:13579
1720               22       32733900     32771859       PAXBP1 HGNC:13579
1721               22       32733900     32771859       PAXBP1 HGNC:13579
1722               22       32733900     32771859       PAXBP1 HGNC:13579
1723               22       32733900     32771859       PAXBP1 HGNC:13579
1724               22       32733900     32771859       PAXBP1 HGNC:13579
1725               22       32733900     32771859       PAXBP1 HGNC:13579
1726               22       32733900     32771859       PAXBP1 HGNC:13579
1727               22       32733900     32771859       PAXBP1 HGNC:13579
1728               22       32733900     32771859       PAXBP1 HGNC:13579
1729               22       32733900     32771859       PAXBP1 HGNC:13579
1730               22       32733900     32771859       PAXBP1 HGNC:13579
1731               22       32733900     32771859       PAXBP1 HGNC:13579
1732               22       32733900     32771859       PAXBP1 HGNC:13579
1733               22       32733900     32771859       PAXBP1 HGNC:13579
1734               22       32733900     32771859       PAXBP1 HGNC:13579
1735               22       32733900     32771859       PAXBP1 HGNC:13579
1736               22       32733900     32771859       PAXBP1 HGNC:13579
1737               22       32733900     32771859       PAXBP1 HGNC:13579
1738               22       32733900     32771859       PAXBP1 HGNC:13579
1739               22       32733900     32771859       PAXBP1 HGNC:13579
1740               22       32733900     32771859       PAXBP1 HGNC:13579
1741               22       32733900     32771859       PAXBP1 HGNC:13579
1742               22       32733900     32771859       PAXBP1 HGNC:13579
1743               22       32733900     32771859       PAXBP1 HGNC:13579
1744               22       32733900     32771859       PAXBP1 HGNC:13579
1745               22       32733900     32771859       PAXBP1 HGNC:13579
1746               22       32733900     32771859       PAXBP1 HGNC:13579
1747               22       32733900     32771859       PAXBP1 HGNC:13579
1748               22       32733900     32771859       PAXBP1 HGNC:13579
1749               22       32733900     32771859       PAXBP1 HGNC:13579
1750               22       32733900     32771859       PAXBP1 HGNC:13579
1751               22       32733900     32771859       PAXBP1 HGNC:13579
1752               22       32733900     32771859       PAXBP1 HGNC:13579
1753               22       32733900     32771859       PAXBP1 HGNC:13579
1754               22       32733900     32771859       PAXBP1 HGNC:13579
1755               22       32733900     32771859       PAXBP1 HGNC:13579
1756               22       32733900     32771859       PAXBP1 HGNC:13579
1757               22       32733900     32771859       PAXBP1 HGNC:13579
1758               22       32733900     32771859       PAXBP1 HGNC:13579
1759               22       32733900     32771859       PAXBP1 HGNC:13579
1760               22       32733900     32771859       PAXBP1 HGNC:13579
1761               22       32733900     32771859       PAXBP1 HGNC:13579
1762               22       32733900     32771859       PAXBP1 HGNC:13579
1763               22       32733900     32771859       PAXBP1 HGNC:13579
1764               22       32733900     32771859       PAXBP1 HGNC:13579
1765               22       32733900     32771859       PAXBP1 HGNC:13579
1766               22       32733900     32771859       PAXBP1 HGNC:13579
1767               22       32733900     32771859       PAXBP1 HGNC:13579
1768               22       32733900     32771859       PAXBP1 HGNC:13579
1769               22       32733900     32771859       PAXBP1 HGNC:13579
1770               22       32733900     32771859       PAXBP1 HGNC:13579
1771               22       32733900     32771859       PAXBP1 HGNC:13579
1772               22       32733900     32771859       PAXBP1 HGNC:13579
1773               22       32733900     32771859       PAXBP1 HGNC:13579
1774               22       32733900     32771859       PAXBP1 HGNC:13579
1775               22       32733900     32771859       PAXBP1 HGNC:13579
1776               22       32733900     32771859       PAXBP1 HGNC:13579
1777               22       32733900     32771859       PAXBP1 HGNC:13579
1778               22       32733900     32771859       PAXBP1 HGNC:13579
1779               22       32733900     32771859       PAXBP1 HGNC:13579
1780               22       32733900     32771859       PAXBP1 HGNC:13579
1781               22       32733900     32771859       PAXBP1 HGNC:13579
1782               22       32733900     32771859       PAXBP1 HGNC:13579
1783               22       32733900     32771859       PAXBP1 HGNC:13579
1784               22       32733900     32771859       PAXBP1 HGNC:13579
1785               22       32733900     32771859       PAXBP1 HGNC:13579
1786               22       32733900     32771859       PAXBP1 HGNC:13579
1787               22       32733900     32771859       PAXBP1 HGNC:13579
1788               22       32733900     32771859       PAXBP1 HGNC:13579
1789               22       32733900     32771859       PAXBP1 HGNC:13579
1790               22       32733900     32771859       PAXBP1 HGNC:13579
1791               22       32733900     32771859       PAXBP1 HGNC:13579
1792               22       32733900     32771859       PAXBP1 HGNC:13579
1793               22       32733900     32771859       PAXBP1 HGNC:13579
1794               22       32733900     32771859       PAXBP1 HGNC:13579
1795               22       32733900     32771859       PAXBP1 HGNC:13579
1796               22       16718999     16719158     RNU1-98P HGNC:48440
1797               22        8987371      8987431    MIR3687-2 HGNC:50835
1798               22        7826099      7826226                        
1799               22       36851912     36852029    RNA5SP491 HGNC:43391
1800               22        8249506      8249597    MIR6724-2 HGNC:50832
1801               22       16035414     16035510    RNU6-426P HGNC:47389
1802               22       41304213     41357432        FAM3B  HGNC:1253
1803               22       41304213     41357432        FAM3B  HGNC:1253
1804               22       41304213     41357432        FAM3B  HGNC:1253
1805               22       41304213     41357432        FAM3B  HGNC:1253
1806               22       41304213     41357432        FAM3B  HGNC:1253
1807               22       41304213     41357432        FAM3B  HGNC:1253
1808               22       41304213     41357432        FAM3B  HGNC:1253
1809               22       41304213     41357432        FAM3B  HGNC:1253
1810               22       41304213     41357432        FAM3B  HGNC:1253
1811               22       41304213     41357432        FAM3B  HGNC:1253
1812               22       41304213     41357432        FAM3B  HGNC:1253
1813               22       41304213     41357432        FAM3B  HGNC:1253
1814               22       41304213     41357432        FAM3B  HGNC:1253
1815               22       41304213     41357432        FAM3B  HGNC:1253
1816               22       41304213     41357432        FAM3B  HGNC:1253
1817               22       41304213     41357432        FAM3B  HGNC:1253
1818               22       41304213     41357432        FAM3B  HGNC:1253
1819               22       41304213     41357432        FAM3B  HGNC:1253
1820               22       41304213     41357432        FAM3B  HGNC:1253
1821               22       41304213     41357432        FAM3B  HGNC:1253
1822               22       41304213     41357432        FAM3B  HGNC:1253
1823               22       41304213     41357432        FAM3B  HGNC:1253
1824               22       41304213     41357432        FAM3B  HGNC:1253
1825               22       41304213     41357432        FAM3B  HGNC:1253
1826               22       41304213     41357432        FAM3B  HGNC:1253
1827               22       41304213     41357432        FAM3B  HGNC:1253
1828               22       41304213     41357432        FAM3B  HGNC:1253
1829               22       41304213     41357432        FAM3B  HGNC:1253
1830               22       41304213     41357432        FAM3B  HGNC:1253
1831               22       41304213     41357432        FAM3B  HGNC:1253
1832               22       41304213     41357432        FAM3B  HGNC:1253
1833               22       41304213     41357432        FAM3B  HGNC:1253
1834               22       41304213     41357432        FAM3B  HGNC:1253
1835               22       41304213     41357432        FAM3B  HGNC:1253
1836               22       41304213     41357432        FAM3B  HGNC:1253
1837               22       41304213     41357432        FAM3B  HGNC:1253
1838               22       41304213     41357432        FAM3B  HGNC:1253
1839               22       41304213     41357432        FAM3B  HGNC:1253
1840               22       41304213     41357432        FAM3B  HGNC:1253
1841               22       41304213     41357432        FAM3B  HGNC:1253
1842               22       41304213     41357432        FAM3B  HGNC:1253
1843               22       41304213     41357432        FAM3B  HGNC:1253
1844               22       41304213     41357432        FAM3B  HGNC:1253
1845               22       41304213     41357432        FAM3B  HGNC:1253
1846               22       41304213     41357432        FAM3B  HGNC:1253
1847               22       41304213     41357432        FAM3B  HGNC:1253
1848               22       42964640     42965364                        
1849               22       42964640     42965364                        
1850               22       42843095     42879569         WDR4 HGNC:12756
1851               22       42843095     42879569         WDR4 HGNC:12756
1852               22       42843095     42879569         WDR4 HGNC:12756
1853               22       42843095     42879569         WDR4 HGNC:12756
1854               22       42843095     42879569         WDR4 HGNC:12756
1855               22       42843095     42879569         WDR4 HGNC:12756
1856               22       42843095     42879569         WDR4 HGNC:12756
1857               22       42843095     42879569         WDR4 HGNC:12756
1858               22       42843095     42879569         WDR4 HGNC:12756
1859               22       42843095     42879569         WDR4 HGNC:12756
1860               22       42843095     42879569         WDR4 HGNC:12756
1861               22       42843095     42879569         WDR4 HGNC:12756
1862               22       42843095     42879569         WDR4 HGNC:12756
1863               22       42843095     42879569         WDR4 HGNC:12756
1864               22       42843095     42879569         WDR4 HGNC:12756
1865               22       42843095     42879569         WDR4 HGNC:12756
1866               22       42843095     42879569         WDR4 HGNC:12756
1867               22       42843095     42879569         WDR4 HGNC:12756
1868               22       42843095     42879569         WDR4 HGNC:12756
1869               22       42843095     42879569         WDR4 HGNC:12756
1870               22       42843095     42879569         WDR4 HGNC:12756
1871               22       42843095     42879569         WDR4 HGNC:12756
1872               22       42843095     42879569         WDR4 HGNC:12756
1873               22       42843095     42879569         WDR4 HGNC:12756
1874               22       42843095     42879569         WDR4 HGNC:12756
1875               22       42843095     42879569         WDR4 HGNC:12756
1876               22       42843095     42879569         WDR4 HGNC:12756
1877               22       42843095     42879569         WDR4 HGNC:12756
1878               22       42843095     42879569         WDR4 HGNC:12756
1879               22       42843095     42879569         WDR4 HGNC:12756
1880               22       42843095     42879569         WDR4 HGNC:12756
1881               22       42843095     42879569         WDR4 HGNC:12756
1882               22       42843095     42879569         WDR4 HGNC:12756
1883               22       42843095     42879569         WDR4 HGNC:12756
1884               22       42843095     42879569         WDR4 HGNC:12756
1885               22       42843095     42879569         WDR4 HGNC:12756
1886               22       42843095     42879569         WDR4 HGNC:12756
1887               22       42843095     42879569         WDR4 HGNC:12756
1888               22       42843095     42879569         WDR4 HGNC:12756
1889               22       42843095     42879569         WDR4 HGNC:12756
1890               22       42843095     42879569         WDR4 HGNC:12756
1891               22       42843095     42879569         WDR4 HGNC:12756
1892               22       42843095     42879569         WDR4 HGNC:12756
1893               22       42843095     42879569         WDR4 HGNC:12756
1894               22       42843095     42879569         WDR4 HGNC:12756
1895               22       42843095     42879569         WDR4 HGNC:12756
1896               22       42843095     42879569         WDR4 HGNC:12756
1897               22       42843095     42879569         WDR4 HGNC:12756
1898               22       42843095     42879569         WDR4 HGNC:12756
1899               22       42843095     42879569         WDR4 HGNC:12756
1900               22       42843095     42879569         WDR4 HGNC:12756
1901               22       42843095     42879569         WDR4 HGNC:12756
1902               22       42843095     42879569         WDR4 HGNC:12756
1903               22       42843095     42879569         WDR4 HGNC:12756
1904               22       42843095     42879569         WDR4 HGNC:12756
1905               22       42843095     42879569         WDR4 HGNC:12756
1906               22       42843095     42879569         WDR4 HGNC:12756
1907               22       42843095     42879569         WDR4 HGNC:12756
1908               22       42843095     42879569         WDR4 HGNC:12756
1909               22       42843095     42879569         WDR4 HGNC:12756
1910               22       42843095     42879569         WDR4 HGNC:12756
1911               22       42843095     42879569         WDR4 HGNC:12756
1912               22       42843095     42879569         WDR4 HGNC:12756
1913               22       42843095     42879569         WDR4 HGNC:12756
1914               22       42843095     42879569         WDR4 HGNC:12756
1915               22       37187667     37193927     TTC3-AS1 HGNC:40595
1916               22       37187667     37193927     TTC3-AS1 HGNC:40595
1917               22       44250814     44251521                        
1918               22       44250814     44251521                        
1919               22        7626345      7627529                        
1920               22       44241848     44242082                        
1921               22        6560715      6564490                        
1922               22        6560715      6564490                        
1923               22        6560715      6564490                        
1924               22        6560715      6564490                        
1925               22        6560715      6564490                        
1926               22        6560715      6564490                        
1927               22        6560715      6564490                        
1928               22        6560715      6564490                        
1929               22        6560715      6564490                        
1930               22        6560715      6564490                        
1931               22        6560715      6564490                        
1932               22        6520345      6520671                        
1933               22       29024256     29024891                        
1934               22       41441057     41445709                        
1935               22       41441057     41445709                        
1936               22       41441057     41445709                        
1937               22       41420305     41459215          MX1  HGNC:7532
1938               22       41420305     41459215          MX1  HGNC:7532
1939               22       41420305     41459215          MX1  HGNC:7532
1940               22       41420305     41459215          MX1  HGNC:7532
1941               22       41420305     41459215          MX1  HGNC:7532
1942               22       41420305     41459215          MX1  HGNC:7532
1943               22       41420305     41459215          MX1  HGNC:7532
1944               22       41420305     41459215          MX1  HGNC:7532
1945               22       41420305     41459215          MX1  HGNC:7532
1946               22       41420305     41459215          MX1  HGNC:7532
1947               22       41420305     41459215          MX1  HGNC:7532
1948               22       41420305     41459215          MX1  HGNC:7532
1949               22       41420305     41459215          MX1  HGNC:7532
1950               22       41420305     41459215          MX1  HGNC:7532
1951               22       41420305     41459215          MX1  HGNC:7532
1952               22       41420305     41459215          MX1  HGNC:7532
1953               22       41420305     41459215          MX1  HGNC:7532
1954               22       41420305     41459215          MX1  HGNC:7532
1955               22       41420305     41459215          MX1  HGNC:7532
1956               22       41420305     41459215          MX1  HGNC:7532
1957               22       41420305     41459215          MX1  HGNC:7532
1958               22       41420305     41459215          MX1  HGNC:7532
1959               22       41420305     41459215          MX1  HGNC:7532
1960               22       41420305     41459215          MX1  HGNC:7532
1961               22       41420305     41459215          MX1  HGNC:7532
1962               22       41420305     41459215          MX1  HGNC:7532
1963               22       41420305     41459215          MX1  HGNC:7532
1964               22       41420305     41459215          MX1  HGNC:7532
1965               22       41420305     41459215          MX1  HGNC:7532
1966               22       41420305     41459215          MX1  HGNC:7532
1967               22       41420305     41459215          MX1  HGNC:7532
1968               22       41420305     41459215          MX1  HGNC:7532
1969               22       41420305     41459215          MX1  HGNC:7532
1970               22       41420305     41459215          MX1  HGNC:7532
1971               22       41420305     41459215          MX1  HGNC:7532
1972               22       41420305     41459215          MX1  HGNC:7532
1973               22       41420305     41459215          MX1  HGNC:7532
1974               22       41420305     41459215          MX1  HGNC:7532
1975               22       41420305     41459215          MX1  HGNC:7532
1976               22       41420305     41459215          MX1  HGNC:7532
1977               22       41420305     41459215          MX1  HGNC:7532
1978               22       41420305     41459215          MX1  HGNC:7532
1979               22       41420305     41459215          MX1  HGNC:7532
1980               22       41420305     41459215          MX1  HGNC:7532
1981               22       41420305     41459215          MX1  HGNC:7532
1982               22       41420305     41459215          MX1  HGNC:7532
1983               22       41420305     41459215          MX1  HGNC:7532
1984               22       41420305     41459215          MX1  HGNC:7532
1985               22       41420305     41459215          MX1  HGNC:7532
1986               22       41420305     41459215          MX1  HGNC:7532
1987               22       41420305     41459215          MX1  HGNC:7532
1988               22       41420305     41459215          MX1  HGNC:7532
1989               22       41420305     41459215          MX1  HGNC:7532
1990               22       41420305     41459215          MX1  HGNC:7532
1991               22       41420305     41459215          MX1  HGNC:7532
1992               22       41420305     41459215          MX1  HGNC:7532
1993               22       41420305     41459215          MX1  HGNC:7532
1994               22       41420305     41459215          MX1  HGNC:7532
1995               22       41420305     41459215          MX1  HGNC:7532
1996               22       41420305     41459215          MX1  HGNC:7532
1997               22       41420305     41459215          MX1  HGNC:7532
1998               22       41420305     41459215          MX1  HGNC:7532
1999               22       41420305     41459215          MX1  HGNC:7532
2000               22       41420305     41459215          MX1  HGNC:7532
2001               22       41420305     41459215          MX1  HGNC:7532
2002               22       41420305     41459215          MX1  HGNC:7532
2003               22       41420305     41459215          MX1  HGNC:7532
2004               22       41420305     41459215          MX1  HGNC:7532
2005               22       41420305     41459215          MX1  HGNC:7532
2006               22       41420305     41459215          MX1  HGNC:7532
2007               22       41420305     41459215          MX1  HGNC:7532
2008               22       41420305     41459215          MX1  HGNC:7532
2009               22       41420305     41459215          MX1  HGNC:7532
2010               22       41420305     41459215          MX1  HGNC:7532
2011               22       41420305     41459215          MX1  HGNC:7532
2012               22       41420305     41459215          MX1  HGNC:7532
2013               22       41420305     41459215          MX1  HGNC:7532
2014               22       41420305     41459215          MX1  HGNC:7532
2015               22       41420305     41459215          MX1  HGNC:7532
2016               22       41420305     41459215          MX1  HGNC:7532
2017               22       41420305     41459215          MX1  HGNC:7532
2018               22       41420305     41459215          MX1  HGNC:7532
2019               22       41420305     41459215          MX1  HGNC:7532
2020               22       41420305     41459215          MX1  HGNC:7532
2021               22       41420305     41459215          MX1  HGNC:7532
2022               22       41420305     41459215          MX1  HGNC:7532
2023               22       41420305     41459215          MX1  HGNC:7532
2024               22       41420305     41459215          MX1  HGNC:7532
2025               22       41420305     41459215          MX1  HGNC:7532
2026               22       41420305     41459215          MX1  HGNC:7532
2027               22       41420305     41459215          MX1  HGNC:7532
2028               22       41420305     41459215          MX1  HGNC:7532
2029               22       41420305     41459215          MX1  HGNC:7532
2030               22       41420305     41459215          MX1  HGNC:7532
2031               22       41420305     41459215          MX1  HGNC:7532
2032               22       41420305     41459215          MX1  HGNC:7532
2033               22       41420305     41459215          MX1  HGNC:7532
2034               22       41420305     41459215          MX1  HGNC:7532
2035               22       41420305     41459215          MX1  HGNC:7532
2036               22       41420305     41459215          MX1  HGNC:7532
2037               22       41420305     41459215          MX1  HGNC:7532
2038               22       41420305     41459215          MX1  HGNC:7532
2039               22       41420305     41459215          MX1  HGNC:7532
2040               22       41420305     41459215          MX1  HGNC:7532
2041               22       41420305     41459215          MX1  HGNC:7532
2042               22       41420305     41459215          MX1  HGNC:7532
2043               22       41420305     41459215          MX1  HGNC:7532
2044               22       41420305     41459215          MX1  HGNC:7532
2045               22       41420305     41459215          MX1  HGNC:7532
2046               22       41420305     41459215          MX1  HGNC:7532
2047               22       41420305     41459215          MX1  HGNC:7532
2048               22       41420305     41459215          MX1  HGNC:7532
2049               22       41420305     41459215          MX1  HGNC:7532
2050               22       41420305     41459215          MX1  HGNC:7532
2051               22       41420305     41459215          MX1  HGNC:7532
2052               22       41420305     41459215          MX1  HGNC:7532
2053               22       41420305     41459215          MX1  HGNC:7532
2054               22       41420305     41459215          MX1  HGNC:7532
2055               22       41420305     41459215          MX1  HGNC:7532
2056               22       41420305     41459215          MX1  HGNC:7532
2057               22       41420305     41459215          MX1  HGNC:7532
2058               22       41420305     41459215          MX1  HGNC:7532
2059               22       41420305     41459215          MX1  HGNC:7532
2060               22       41420305     41459215          MX1  HGNC:7532
2061               22       41420305     41459215          MX1  HGNC:7532
2062               22       41420305     41459215          MX1  HGNC:7532
2063               22       41420305     41459215          MX1  HGNC:7532
2064               22       41420305     41459215          MX1  HGNC:7532
2065               22       41420305     41459215          MX1  HGNC:7532
2066               22       41420305     41459215          MX1  HGNC:7532
2067               22       41420305     41459215          MX1  HGNC:7532
2068               22       41420305     41459215          MX1  HGNC:7532
2069               22       44477851     44478494                        
2070               22       44485578     44490289                        
2071               22       44485578     44490289                        
2072               22       44494875     44495520                        
2073               22       17506454     17506729    RN7SL163P HGNC:46179
2074               22        6365956      6366056                        
2075               22       46220270     46225365                        
2076               22       46220270     46225365                        
2077               22       46220270     46225365                        
2078               22       46220270     46225365                        
2079               22       46220270     46225365                        
2080               22       46220270     46225365                        
2081               22        7788704      7793955                        
2082               22        7788704      7793955                        
2083               22        7048892      7087230                        
2084               22        7048892      7087230                        
2085               22        7048892      7087230                        
2086               22        7048892      7087230                        
2087               22        7048892      7087230                        
2088               22        7048892      7087230                        
2089               22        7048892      7087230                        
2090               22        7048892      7087230                        
2091               22        7048892      7087230                        
2092               22        7048892      7087230                        
2093               22        7048892      7087230                        
2094               22        7048892      7087230                        
2095               22        7048892      7087230                        
2096               22        7048892      7087230                        
2097               22        7048892      7087230                        
2098               22        7048892      7087230                        
2099               22        7048892      7087230                        
2100               22        7048892      7087230                        
2101               22        7048892      7087230                        
2102               22       39373764     39377067       RNF6P1 HGNC:39922
2103               22       39373764     39377067       RNF6P1 HGNC:39922
2104               22       39373764     39377067       RNF6P1 HGNC:39922
2105               22       39373764     39377067       RNF6P1 HGNC:39922
2106               22       39373764     39377067       RNF6P1 HGNC:39922
2107               22       46286338     46297752         YBEY  HGNC:1299
2108               22       46286338     46297752         YBEY  HGNC:1299
2109               22       46286338     46297752         YBEY  HGNC:1299
2110               22       46286338     46297752         YBEY  HGNC:1299
2111               22       46286338     46297752         YBEY  HGNC:1299
2112               22       46286338     46297752         YBEY  HGNC:1299
2113               22       46286338     46297752         YBEY  HGNC:1299
2114               22       46286338     46297752         YBEY  HGNC:1299
2115               22       46286338     46297752         YBEY  HGNC:1299
2116               22       46286338     46297752         YBEY  HGNC:1299
2117               22       46286338     46297752         YBEY  HGNC:1299
2118               22       46286338     46297752         YBEY  HGNC:1299
2119               22       46286338     46297752         YBEY  HGNC:1299
2120               22       46286338     46297752         YBEY  HGNC:1299
2121               22       46286338     46297752         YBEY  HGNC:1299
2122               22       46286338     46297752         YBEY  HGNC:1299
2123               22       46286338     46297752         YBEY  HGNC:1299
2124               22       46286338     46297752         YBEY  HGNC:1299
2125               22       46286338     46297752         YBEY  HGNC:1299
2126               22       46286338     46297752         YBEY  HGNC:1299
2127               22       46286338     46297752         YBEY  HGNC:1299
2128               22       46286338     46297752         YBEY  HGNC:1299
2129               22       46286338     46297752         YBEY  HGNC:1299
2130               22       46286338     46297752         YBEY  HGNC:1299
2131               22       46286338     46297752         YBEY  HGNC:1299
2132               22       46286338     46297752         YBEY  HGNC:1299
2133               22       46286338     46297752         YBEY  HGNC:1299
2134               22       46286338     46297752         YBEY  HGNC:1299
2135               22       46286338     46297752         YBEY  HGNC:1299
2136               22       46286338     46297752         YBEY  HGNC:1299
2137               22       46286338     46297752         YBEY  HGNC:1299
2138               22       46286338     46297752         YBEY  HGNC:1299
2139               22       46286338     46297752         YBEY  HGNC:1299
2140               22       46286338     46297752         YBEY  HGNC:1299
2141               22       42879645     42913305       NDUFV3  HGNC:7719
2142               22       42879645     42913305       NDUFV3  HGNC:7719
2143               22       42879645     42913305       NDUFV3  HGNC:7719
2144               22       42879645     42913305       NDUFV3  HGNC:7719
2145               22       42879645     42913305       NDUFV3  HGNC:7719
2146               22       42879645     42913305       NDUFV3  HGNC:7719
2147               22       42879645     42913305       NDUFV3  HGNC:7719
2148               22       42879645     42913305       NDUFV3  HGNC:7719
2149               22       42879645     42913305       NDUFV3  HGNC:7719
2150               22       42879645     42913305       NDUFV3  HGNC:7719
2151               22       42879645     42913305       NDUFV3  HGNC:7719
2152               22       42879645     42913305       NDUFV3  HGNC:7719
2153               22       42879645     42913305       NDUFV3  HGNC:7719
2154               22       42879645     42913305       NDUFV3  HGNC:7719
2155               22       42879645     42913305       NDUFV3  HGNC:7719
2156               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2157               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2158               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2159               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2160               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2161               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2162               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2163               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2164               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2165               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2166               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2167               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2168               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2169               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2170               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2171               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2172               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2173               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2174               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2175               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2176               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2177               22       44921052     44929679    ITGB2-AS1 HGNC:44304
2178               22       41739374     41741309                        
2179               22       41739374     41741309                        
2180               22       26917913     26966514      ADAMTS5   HGNC:221
2181               22       26917913     26966514      ADAMTS5   HGNC:221
2182               22       26917913     26966514      ADAMTS5   HGNC:221
2183               22       26917913     26966514      ADAMTS5   HGNC:221
2184               22       26917913     26966514      ADAMTS5   HGNC:221
2185               22       26917913     26966514      ADAMTS5   HGNC:221
2186               22       26917913     26966514      ADAMTS5   HGNC:221
2187               22       26917913     26966514      ADAMTS5   HGNC:221
2188               22       43115335     43115710     MRPL51P2 HGNC:29724
2189               22       43140524     43141093        FRGCA HGNC:51844
2190               22       43140524     43141093        FRGCA HGNC:51844
2191               22       43159067     43162278                        
2192               22       43159067     43162278                        
2193               22       43159067     43162278                        
2194               22       43169009     43172806        CRYAA  HGNC:2388
2195               22       43169009     43172806        CRYAA  HGNC:2388
2196               22       43169009     43172806        CRYAA  HGNC:2388
2197               22       43169009     43172806        CRYAA  HGNC:2388
2198               22       43169009     43172806        CRYAA  HGNC:2388
2199               22       43169009     43172806        CRYAA  HGNC:2388
2200               22       43169009     43172806        CRYAA  HGNC:2388
2201               22       43169009     43172806        CRYAA  HGNC:2388
2202               22       43169009     43172806        CRYAA  HGNC:2388
2203               22       43169009     43172806        CRYAA  HGNC:2388
2204               22       43169009     43172806        CRYAA  HGNC:2388
2205               22       43169009     43172806        CRYAA  HGNC:2388
2206               22       43169009     43172806        CRYAA  HGNC:2388
2207               22       43169009     43172806        CRYAA  HGNC:2388
2208               22       43169009     43172806        CRYAA  HGNC:2388
2209               22       44849586     44873904      PTTG1IP HGNC:13524
2210               22       44849586     44873904      PTTG1IP HGNC:13524
2211               22       44849586     44873904      PTTG1IP HGNC:13524
2212               22       44849586     44873904      PTTG1IP HGNC:13524
2213               22       44849586     44873904      PTTG1IP HGNC:13524
2214               22       44849586     44873904      PTTG1IP HGNC:13524
2215               22       44849586     44873904      PTTG1IP HGNC:13524
2216               22       44849586     44873904      PTTG1IP HGNC:13524
2217               22       44849586     44873904      PTTG1IP HGNC:13524
2218               22       44849586     44873904      PTTG1IP HGNC:13524
2219               22       44849586     44873904      PTTG1IP HGNC:13524
2220               22       44849586     44873904      PTTG1IP HGNC:13524
2221               22       44849586     44873904      PTTG1IP HGNC:13524
2222               22       44849586     44873904      PTTG1IP HGNC:13524
2223               22       44849586     44873904      PTTG1IP HGNC:13524
2224               22       44849586     44873904      PTTG1IP HGNC:13524
2225               22       44849586     44873904      PTTG1IP HGNC:13524
2226               22       44849586     44873904      PTTG1IP HGNC:13524
2227               22       44849586     44873904      PTTG1IP HGNC:13524
2228               22       44849586     44873904      PTTG1IP HGNC:13524
2229               22       44849586     44873904      PTTG1IP HGNC:13524
2230               22       44849586     44873904      PTTG1IP HGNC:13524
2231               22       44849586     44873904      PTTG1IP HGNC:13524
2232               22       44849586     44873904      PTTG1IP HGNC:13524
2233               22       44849586     44873904      PTTG1IP HGNC:13524
2234               22       44849586     44873904      PTTG1IP HGNC:13524
2235               22       44849586     44873904      PTTG1IP HGNC:13524
2236               22       44849586     44873904      PTTG1IP HGNC:13524
2237               22       44849586     44873904      PTTG1IP HGNC:13524
2238               22       44849586     44873904      PTTG1IP HGNC:13524
2239               22       44849586     44873904      PTTG1IP HGNC:13524
2240               22       44849586     44873904      PTTG1IP HGNC:13524
2241               22       41679182     41697337    LINC00111  HGNC:1262
2242               22       41679182     41697337    LINC00111  HGNC:1262
2243               22       41679182     41697337    LINC00111  HGNC:1262
2244               22       44506808     44516576   TSPEAR-AS1  HGNC:1271
2245               22       44506808     44516576   TSPEAR-AS1  HGNC:1271
2246               22       44506808     44516576   TSPEAR-AS1  HGNC:1271
2247               22       44506808     44516576   TSPEAR-AS1  HGNC:1271
2248               22       44506808     44516576   TSPEAR-AS1  HGNC:1271
2249               22       44506808     44516576   TSPEAR-AS1  HGNC:1271
2250               22       44506808     44516576   TSPEAR-AS1  HGNC:1271
2251               22       44506808     44516576   TSPEAR-AS1  HGNC:1271
2252               22       44506808     44516576   TSPEAR-AS1  HGNC:1271
2253               22       44637357     44638456   KRTAP10-10 HGNC:22972
2254               22       46251550     46254134                        
2255               22       46251550     46254134                        
2256               22       46251550     46254134                        
2257               22       46251550     46254134                        
2258               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2259               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2260               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2261               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2262               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2263               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2264               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2265               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2266               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2267               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2268               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2269               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2270               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2271               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2272               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2273               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2274               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2275               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2276               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2277               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2278               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2279               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2280               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2281               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2282               22       46229218     46259391   MCM3AP-AS1 HGNC:16417
2283               22       46235127     46286298       MCM3AP  HGNC:6946
2284               22       46235127     46286298       MCM3AP  HGNC:6946
2285               22       46235127     46286298       MCM3AP  HGNC:6946
2286               22       46235127     46286298       MCM3AP  HGNC:6946
2287               22       46235127     46286298       MCM3AP  HGNC:6946
2288               22       46235127     46286298       MCM3AP  HGNC:6946
2289               22       46235127     46286298       MCM3AP  HGNC:6946
2290               22       46235127     46286298       MCM3AP  HGNC:6946
2291               22       46235127     46286298       MCM3AP  HGNC:6946
2292               22       46235127     46286298       MCM3AP  HGNC:6946
2293               22       46235127     46286298       MCM3AP  HGNC:6946
2294               22       46235127     46286298       MCM3AP  HGNC:6946
2295               22       46235127     46286298       MCM3AP  HGNC:6946
2296               22       46235127     46286298       MCM3AP  HGNC:6946
2297               22       46235127     46286298       MCM3AP  HGNC:6946
2298               22       46235127     46286298       MCM3AP  HGNC:6946
2299               22       46235127     46286298       MCM3AP  HGNC:6946
2300               22       46235127     46286298       MCM3AP  HGNC:6946
2301               22       46235127     46286298       MCM3AP  HGNC:6946
2302               22       46235127     46286298       MCM3AP  HGNC:6946
2303               22       46235127     46286298       MCM3AP  HGNC:6946
2304               22       46235127     46286298       MCM3AP  HGNC:6946
2305               22       46235127     46286298       MCM3AP  HGNC:6946
2306               22       46235127     46286298       MCM3AP  HGNC:6946
2307               22       46235127     46286298       MCM3AP  HGNC:6946
2308               22       46235127     46286298       MCM3AP  HGNC:6946
2309               22       46235127     46286298       MCM3AP  HGNC:6946
2310               22       46235127     46286298       MCM3AP  HGNC:6946
2311               22       46235127     46286298       MCM3AP  HGNC:6946
2312               22       46235127     46286298       MCM3AP  HGNC:6946
2313               22       46235127     46286298       MCM3AP  HGNC:6946
2314               22       46235127     46286298       MCM3AP  HGNC:6946
2315               22       46235127     46286298       MCM3AP  HGNC:6946
2316               22       46235127     46286298       MCM3AP  HGNC:6946
2317               22       46235127     46286298       MCM3AP  HGNC:6946
2318               22       46235127     46286298       MCM3AP  HGNC:6946
2319               22       46235127     46286298       MCM3AP  HGNC:6946
2320               22       46235127     46286298       MCM3AP  HGNC:6946
2321               22       46235127     46286298       MCM3AP  HGNC:6946
2322               22       46235127     46286298       MCM3AP  HGNC:6946
2323               22       46235127     46286298       MCM3AP  HGNC:6946
2324               22       46235127     46286298       MCM3AP  HGNC:6946
2325               22       46235127     46286298       MCM3AP  HGNC:6946
2326               22       46235127     46286298       MCM3AP  HGNC:6946
2327               22       46235127     46286298       MCM3AP  HGNC:6946
2328               22       46235127     46286298       MCM3AP  HGNC:6946
2329               22       46235127     46286298       MCM3AP  HGNC:6946
2330               22       46235127     46286298       MCM3AP  HGNC:6946
2331               22       46235127     46286298       MCM3AP  HGNC:6946
2332               22       46235127     46286298       MCM3AP  HGNC:6946
2333               22       46235127     46286298       MCM3AP  HGNC:6946
2334               22       46235127     46286298       MCM3AP  HGNC:6946
2335               22       46235127     46286298       MCM3AP  HGNC:6946
2336               22       46235127     46286298       MCM3AP  HGNC:6946
2337               22       46235127     46286298       MCM3AP  HGNC:6946
2338               22       46235127     46286298       MCM3AP  HGNC:6946
2339               22       46235127     46286298       MCM3AP  HGNC:6946
2340               22       46235127     46286298       MCM3AP  HGNC:6946
2341               22       46235127     46286298       MCM3AP  HGNC:6946
2342               22       46235127     46286298       MCM3AP  HGNC:6946
2343               22       46235127     46286298       MCM3AP  HGNC:6946
2344               22       46235127     46286298       MCM3AP  HGNC:6946
2345               22       46235127     46286298       MCM3AP  HGNC:6946
2346               22       46235127     46286298       MCM3AP  HGNC:6946
2347               22       46235127     46286298       MCM3AP  HGNC:6946
2348               22       46235127     46286298       MCM3AP  HGNC:6946
2349               22       46235127     46286298       MCM3AP  HGNC:6946
2350               22       46235127     46286298       MCM3AP  HGNC:6946
2351               22       46235127     46286298       MCM3AP  HGNC:6946
2352               22       46235127     46286298       MCM3AP  HGNC:6946
2353               22       46235127     46286298       MCM3AP  HGNC:6946
2354               22       46235127     46286298       MCM3AP  HGNC:6946
2355               22       46235127     46286298       MCM3AP  HGNC:6946
2356               22       46235127     46286298       MCM3AP  HGNC:6946
2357               22       46235127     46286298       MCM3AP  HGNC:6946
2358               22       46235127     46286298       MCM3AP  HGNC:6946
2359               22       46235127     46286298       MCM3AP  HGNC:6946
2360               22       46235127     46286298       MCM3AP  HGNC:6946
2361               22       46235127     46286298       MCM3AP  HGNC:6946
2362               22       46235127     46286298       MCM3AP  HGNC:6946
2363               22       46235127     46286298       MCM3AP  HGNC:6946
2364               22       46235127     46286298       MCM3AP  HGNC:6946
2365               22       46235127     46286298       MCM3AP  HGNC:6946
2366               22       46235127     46286298       MCM3AP  HGNC:6946
2367               22       46235127     46286298       MCM3AP  HGNC:6946
2368               22       46235127     46286298       MCM3AP  HGNC:6946
2369               22       46235127     46286298       MCM3AP  HGNC:6946
2370               22       46235127     46286298       MCM3AP  HGNC:6946
2371               22       46235127     46286298       MCM3AP  HGNC:6946
2372               22       46235127     46286298       MCM3AP  HGNC:6946
2373               22       46235127     46286298       MCM3AP  HGNC:6946
2374               22       46235127     46286298       MCM3AP  HGNC:6946
2375               22       46235127     46286298       MCM3AP  HGNC:6946
2376               22       46235127     46286298       MCM3AP  HGNC:6946
2377               22       46235127     46286298       MCM3AP  HGNC:6946
2378               22       46235127     46286298       MCM3AP  HGNC:6946
2379               22       46235127     46286298       MCM3AP  HGNC:6946
2380               22       46235127     46286298       MCM3AP  HGNC:6946
2381               22       46235127     46286298       MCM3AP  HGNC:6946
2382               22       46235127     46286298       MCM3AP  HGNC:6946
2383               22       46235127     46286298       MCM3AP  HGNC:6946
2384               22       46235127     46286298       MCM3AP  HGNC:6946
2385               22       46235127     46286298       MCM3AP  HGNC:6946
2386               22       46235127     46286298       MCM3AP  HGNC:6946
2387               22       46235127     46286298       MCM3AP  HGNC:6946
2388               22       46235127     46286298       MCM3AP  HGNC:6946
2389               22       46235127     46286298       MCM3AP  HGNC:6946
2390               22       46235127     46286298       MCM3AP  HGNC:6946
2391               22       46235127     46286298       MCM3AP  HGNC:6946
2392               22       46235127     46286298       MCM3AP  HGNC:6946
2393               22       46235127     46286298       MCM3AP  HGNC:6946
2394               22       46235127     46286298       MCM3AP  HGNC:6946
2395               22       46235127     46286298       MCM3AP  HGNC:6946
2396               22       46235127     46286298       MCM3AP  HGNC:6946
2397               22       46235127     46286298       MCM3AP  HGNC:6946
2398               22       46235127     46286298       MCM3AP  HGNC:6946
2399               22       46235127     46286298       MCM3AP  HGNC:6946
2400               22       46235127     46286298       MCM3AP  HGNC:6946
2401               22       42974511     43033932       PKNOX1  HGNC:9022
2402               22       42974511     43033932       PKNOX1  HGNC:9022
2403               22       42974511     43033932       PKNOX1  HGNC:9022
2404               22       42974511     43033932       PKNOX1  HGNC:9022
2405               22       42974511     43033932       PKNOX1  HGNC:9022
2406               22       42974511     43033932       PKNOX1  HGNC:9022
2407               22       42974511     43033932       PKNOX1  HGNC:9022
2408               22       42974511     43033932       PKNOX1  HGNC:9022
2409               22       42974511     43033932       PKNOX1  HGNC:9022
2410               22       42974511     43033932       PKNOX1  HGNC:9022
2411               22       42974511     43033932       PKNOX1  HGNC:9022
2412               22       42974511     43033932       PKNOX1  HGNC:9022
2413               22       42974511     43033932       PKNOX1  HGNC:9022
2414               22       42974511     43033932       PKNOX1  HGNC:9022
2415               22       42974511     43033932       PKNOX1  HGNC:9022
2416               22       42974511     43033932       PKNOX1  HGNC:9022
2417               22       42974511     43033932       PKNOX1  HGNC:9022
2418               22       42974511     43033932       PKNOX1  HGNC:9022
2419               22       42974511     43033932       PKNOX1  HGNC:9022
2420               22       42974511     43033932       PKNOX1  HGNC:9022
2421               22       42974511     43033932       PKNOX1  HGNC:9022
2422               22       42974511     43033932       PKNOX1  HGNC:9022
2423               22       42974511     43033932       PKNOX1  HGNC:9022
2424               22       42974511     43033932       PKNOX1  HGNC:9022
2425               22       42974511     43033932       PKNOX1  HGNC:9022
2426               22       42974511     43033932       PKNOX1  HGNC:9022
2427               22       42974511     43033932       PKNOX1  HGNC:9022
2428               22       42974511     43033932       PKNOX1  HGNC:9022
2429               22       42974511     43033932       PKNOX1  HGNC:9022
2430               22       42974511     43033932       PKNOX1  HGNC:9022
2431               22       42974511     43033932       PKNOX1  HGNC:9022
2432               22       42974511     43033932       PKNOX1  HGNC:9022
2433               22       42974511     43033932       PKNOX1  HGNC:9022
2434               22       42974511     43033932       PKNOX1  HGNC:9022
2435               22       42974511     43033932       PKNOX1  HGNC:9022
2436               22       42974511     43033932       PKNOX1  HGNC:9022
2437               22       42974511     43033932       PKNOX1  HGNC:9022
2438               22       42974511     43033932       PKNOX1  HGNC:9022
2439               22       42974511     43033932       PKNOX1  HGNC:9022
2440               22       42974511     43033932       PKNOX1  HGNC:9022
2441               22       42974511     43033932       PKNOX1  HGNC:9022
2442               22       42974511     43033932       PKNOX1  HGNC:9022
2443               22       42974511     43033932       PKNOX1  HGNC:9022
2444               22       42974511     43033932       PKNOX1  HGNC:9022
2445               22       42974511     43033932       PKNOX1  HGNC:9022
2446               22       42974511     43033932       PKNOX1  HGNC:9022
2447               22       42974511     43033932       PKNOX1  HGNC:9022
2448               22       42974511     43033932       PKNOX1  HGNC:9022
2449               22       42974511     43033932       PKNOX1  HGNC:9022
2450               22       42974511     43033932       PKNOX1  HGNC:9022
2451               22       42974511     43033932       PKNOX1  HGNC:9022
2452               22       42974511     43033932       PKNOX1  HGNC:9022
2453               22       42974511     43033932       PKNOX1  HGNC:9022
2454               22       42974511     43033932       PKNOX1  HGNC:9022
2455               22       42974511     43033932       PKNOX1  HGNC:9022
2456               22       42974511     43033932       PKNOX1  HGNC:9022
2457               22       42974511     43033932       PKNOX1  HGNC:9022
2458               22       42974511     43033932       PKNOX1  HGNC:9022
2459               22       42974511     43033932       PKNOX1  HGNC:9022
2460               22       41716437     41717581    LINC00112  HGNC:1263
2461               22       41716437     41717581    LINC00112  HGNC:1263
2462               22       41716437     41717581    LINC00112  HGNC:1263
2463               22       41576136     41581320                        
2464               22       41576136     41581320                        
2465               22       41559126     41562959                        
2466               22       41559126     41562959                        
2467               22       41559126     41562959                        
2468               22       46462472     46469307    DIP2A-IT1 HGNC:41430
2469               22       46462472     46469307    DIP2A-IT1 HGNC:41430
2470               22       46462472     46469307    DIP2A-IT1 HGNC:41430
2471               22       46462472     46469307    DIP2A-IT1 HGNC:41430
2472               22       44497893     44711581       TSPEAR  HGNC:1268
2473               22       44497893     44711581       TSPEAR  HGNC:1268
2474               22       44497893     44711581       TSPEAR  HGNC:1268
2475               22       44497893     44711581       TSPEAR  HGNC:1268
2476               22       44497893     44711581       TSPEAR  HGNC:1268
2477               22       44497893     44711581       TSPEAR  HGNC:1268
2478               22       44497893     44711581       TSPEAR  HGNC:1268
2479               22       44497893     44711581       TSPEAR  HGNC:1268
2480               22       44497893     44711581       TSPEAR  HGNC:1268
2481               22       44497893     44711581       TSPEAR  HGNC:1268
2482               22       44497893     44711581       TSPEAR  HGNC:1268
2483               22       44497893     44711581       TSPEAR  HGNC:1268
2484               22       44497893     44711581       TSPEAR  HGNC:1268
2485               22       44497893     44711581       TSPEAR  HGNC:1268
2486               22       44497893     44711581       TSPEAR  HGNC:1268
2487               22       44497893     44711581       TSPEAR  HGNC:1268
2488               22       44497893     44711581       TSPEAR  HGNC:1268
2489               22       44497893     44711581       TSPEAR  HGNC:1268
2490               22       44497893     44711581       TSPEAR  HGNC:1268
2491               22       44497893     44711581       TSPEAR  HGNC:1268
2492               22       44497893     44711581       TSPEAR  HGNC:1268
2493               22       44497893     44711581       TSPEAR  HGNC:1268
2494               22       44497893     44711581       TSPEAR  HGNC:1268
2495               22       44497893     44711581       TSPEAR  HGNC:1268
2496               22       44497893     44711581       TSPEAR  HGNC:1268
2497               22       44497893     44711581       TSPEAR  HGNC:1268
2498               22       44497893     44711581       TSPEAR  HGNC:1268
2499               22       44497893     44711581       TSPEAR  HGNC:1268
2500               22       44497893     44711581       TSPEAR  HGNC:1268
2501               22       44497893     44711581       TSPEAR  HGNC:1268
2502               22       44497893     44711581       TSPEAR  HGNC:1268
2503               22       44497893     44711581       TSPEAR  HGNC:1268
2504               22       44497893     44711581       TSPEAR  HGNC:1268
2505               22       44497893     44711581       TSPEAR  HGNC:1268
2506               22       44497893     44711581       TSPEAR  HGNC:1268
2507               22       44497893     44711581       TSPEAR  HGNC:1268
2508               22       44497893     44711581       TSPEAR  HGNC:1268
2509               22       44497893     44711581       TSPEAR  HGNC:1268
2510               22       44497893     44711581       TSPEAR  HGNC:1268
2511               22       44497893     44711581       TSPEAR  HGNC:1268
2512               22       44497893     44711581       TSPEAR  HGNC:1268
2513               22       44497893     44711581       TSPEAR  HGNC:1268
2514               22       44497893     44711581       TSPEAR  HGNC:1268
2515               22       44497893     44711581       TSPEAR  HGNC:1268
2516               22       44497893     44711581       TSPEAR  HGNC:1268
2517               22       44497893     44711581       TSPEAR  HGNC:1268
2518               22       44538982     44540196    KRTAP10-1 HGNC:22966
2519               22        8380666      8410646                        
2520               22        8380666      8410646                        
2521               22        8380666      8410646                        
2522               22        8380666      8410646                        
2523               22        8380666      8410646                        
2524               22        8380666      8410646                        
2525               22        8380666      8410646                        
2526               22       29182028     29187796                        
2527               22       29182028     29187796                        
2528               22        6223481      6223581                        
2529               22       41539207     41539327                        
2530               22       41746773     41746842      MIR6814 HGNC:50145
2531               22       20356654     20356897    RN7SKP147 HGNC:45871
2532               22       44573725     44638285    KRTAP10-4 HGNC:20521
2533               22       44573725     44638285    KRTAP10-4 HGNC:20521
2534               22       44573725     44638285    KRTAP10-4 HGNC:20521
2535               22       44573725     44638285    KRTAP10-4 HGNC:20521
2536               22       44573725     44638285    KRTAP10-4 HGNC:20521
2537               22       44573725     44638285    KRTAP10-4 HGNC:20521
2538               22       44573725     44638285    KRTAP10-4 HGNC:20521
2539               22       44573725     44638285    KRTAP10-4 HGNC:20521
2540               22       44573725     44638285    KRTAP10-4 HGNC:20521
2541               22       44573725     44638285    KRTAP10-4 HGNC:20521
2542               22       44675869     44678087       IMMTP1  HGNC:6048
2543               22       16590238     16590326     MIR125B2 HGNC:31507
2544               22        7663912      7664012                        
2545               22       29139284     29139385                        
2546               22       44437122     44437176                        
2547               22       44627124     44628294    KRTAP10-9 HGNC:22971
2548               22       44627124     44628294    KRTAP10-9 HGNC:22971
2549               22       44627124     44628294    KRTAP10-9 HGNC:22971
2550               22       44627124     44628294    KRTAP10-9 HGNC:22971
2551               22       44627124     44628294    KRTAP10-9 HGNC:22971
2552               22       44627124     44628294    KRTAP10-9 HGNC:22971
2553               22       43053192     43076944          CBS  HGNC:1550
2554               22       43053192     43076944          CBS  HGNC:1550
2555               22       43053192     43076944          CBS  HGNC:1550
2556               22       43053192     43076944          CBS  HGNC:1550
2557               22       43053192     43076944          CBS  HGNC:1550
2558               22       43053192     43076944          CBS  HGNC:1550
2559               22       43053192     43076944          CBS  HGNC:1550
2560               22       43053192     43076944          CBS  HGNC:1550
2561               22       43053192     43076944          CBS  HGNC:1550
2562               22       43053192     43076944          CBS  HGNC:1550
2563               22       43053192     43076944          CBS  HGNC:1550
2564               22       43053192     43076944          CBS  HGNC:1550
2565               22       43053192     43076944          CBS  HGNC:1550
2566               22       43053192     43076944          CBS  HGNC:1550
2567               22       43053192     43076944          CBS  HGNC:1550
2568               22       43053192     43076944          CBS  HGNC:1550
2569               22       43053192     43076944          CBS  HGNC:1550
2570               22       43053192     43076944          CBS  HGNC:1550
2571               22       43053192     43076944          CBS  HGNC:1550
2572               22       43053192     43076944          CBS  HGNC:1550
2573               22       43053192     43076944          CBS  HGNC:1550
2574               22       43053192     43076944          CBS  HGNC:1550
2575               22       43053192     43076944          CBS  HGNC:1550
2576               22       43053192     43076944          CBS  HGNC:1550
2577               22       43053192     43076944          CBS  HGNC:1550
2578               22       43053192     43076944          CBS  HGNC:1550
2579               22       43053192     43076944          CBS  HGNC:1550
2580               22       43053192     43076944          CBS  HGNC:1550
2581               22       43053192     43076944          CBS  HGNC:1550
2582               22       43053192     43076944          CBS  HGNC:1550
2583               22       43053192     43076944          CBS  HGNC:1550
2584               22       43053192     43076944          CBS  HGNC:1550
2585               22       43053192     43076944          CBS  HGNC:1550
2586               22       43053192     43076944          CBS  HGNC:1550
2587               22       43053192     43076944          CBS  HGNC:1550
2588               22       43053192     43076944          CBS  HGNC:1550
2589               22       43053192     43076944          CBS  HGNC:1550
2590               22       43053192     43076944          CBS  HGNC:1550
2591               22       43053192     43076944          CBS  HGNC:1550
2592               22       43053192     43076944          CBS  HGNC:1550
2593               22       43053192     43076944          CBS  HGNC:1550
2594               22       43053192     43076944          CBS  HGNC:1550
2595               22       43053192     43076944          CBS  HGNC:1550
2596               22       43053192     43076944          CBS  HGNC:1550
2597               22       43053192     43076944          CBS  HGNC:1550
2598               22       43053192     43076944          CBS  HGNC:1550
2599               22       43053192     43076944          CBS  HGNC:1550
2600               22       43053192     43076944          CBS  HGNC:1550
2601               22       43053192     43076944          CBS  HGNC:1550
2602               22       43053192     43076944          CBS  HGNC:1550
2603               22       43053192     43076944          CBS  HGNC:1550
2604               22       43053192     43076944          CBS  HGNC:1550
2605               22       43053192     43076944          CBS  HGNC:1550
2606               22       43053192     43076944          CBS  HGNC:1550
2607               22       43053192     43076944          CBS  HGNC:1550
2608               22       43053192     43076944          CBS  HGNC:1550
2609               22       43053192     43076944          CBS  HGNC:1550
2610               22       43053192     43076944          CBS  HGNC:1550
2611               22       43053192     43076944          CBS  HGNC:1550
2612               22       43053192     43076944          CBS  HGNC:1550
2613               22       43053192     43076944          CBS  HGNC:1550
2614               22       43053192     43076944          CBS  HGNC:1550
2615               22       43053192     43076944          CBS  HGNC:1550
2616               22       43053192     43076944          CBS  HGNC:1550
2617               22       43053192     43076944          CBS  HGNC:1550
2618               22       43053192     43076944          CBS  HGNC:1550
2619               22       43053192     43076944          CBS  HGNC:1550
2620               22       43053192     43076944          CBS  HGNC:1550
2621               22       43053192     43076944          CBS  HGNC:1550
2622               22       43053192     43076944          CBS  HGNC:1550
2623               22       43053192     43076944          CBS  HGNC:1550
2624               22       43053192     43076944          CBS  HGNC:1550
2625               22       43053192     43076944          CBS  HGNC:1550
2626               22       43053192     43076944          CBS  HGNC:1550
2627               22       43053192     43076944          CBS  HGNC:1550
2628               22       43053192     43076944          CBS  HGNC:1550
2629               22       43053192     43076944          CBS  HGNC:1550
2630               22       43053192     43076944          CBS  HGNC:1550
2631               22       43053192     43076944          CBS  HGNC:1550
2632               22       43053192     43076944          CBS  HGNC:1550
2633               22       43053192     43076944          CBS  HGNC:1550
2634               22       43053192     43076944          CBS  HGNC:1550
2635               22       43053192     43076944          CBS  HGNC:1550
2636               22       43053192     43076944          CBS  HGNC:1550
2637               22       43053192     43076944          CBS  HGNC:1550
2638               22       43053192     43076944          CBS  HGNC:1550
2639               22       43053192     43076944          CBS  HGNC:1550
2640               22       43053192     43076944          CBS  HGNC:1550
2641               22       43053192     43076944          CBS  HGNC:1550
2642               22       43053192     43076944          CBS  HGNC:1550
2643               22       43053192     43076944          CBS  HGNC:1550
2644               22       43053192     43076944          CBS  HGNC:1550
2645               22       43053192     43076944          CBS  HGNC:1550
2646               22       43053192     43076944          CBS  HGNC:1550
2647               22       43053192     43076944          CBS  HGNC:1550
2648               22       43053192     43076944          CBS  HGNC:1550
2649               22       43053192     43076944          CBS  HGNC:1550
2650               22       43053192     43076944          CBS  HGNC:1550
2651               22       43053192     43076944          CBS  HGNC:1550
2652               22       43053192     43076944          CBS  HGNC:1550
2653               22       43053192     43076944          CBS  HGNC:1550
2654               22       43053192     43076944          CBS  HGNC:1550
2655               22       43053192     43076944          CBS  HGNC:1550
2656               22       43053192     43076944          CBS  HGNC:1550
2657               22       43053192     43076944          CBS  HGNC:1550
2658               22       43053192     43076944          CBS  HGNC:1550
2659               22       43053192     43076944          CBS  HGNC:1550
2660               22       43053192     43076944          CBS  HGNC:1550
2661               22       43053192     43076944          CBS  HGNC:1550
2662               22       43053192     43076944          CBS  HGNC:1550
2663               22       43053192     43076944          CBS  HGNC:1550
2664               22       43053192     43076944          CBS  HGNC:1550
2665               22       43053192     43076944          CBS  HGNC:1550
2666               22       43053192     43076944          CBS  HGNC:1550
2667               22       43053192     43076944          CBS  HGNC:1550
2668               22       43053192     43076944          CBS  HGNC:1550
2669               22       43053192     43076944          CBS  HGNC:1550
2670               22       43053192     43076944          CBS  HGNC:1550
2671               22       43053192     43076944          CBS  HGNC:1550
2672               22       43053192     43076944          CBS  HGNC:1550
2673               22       43053192     43076944          CBS  HGNC:1550
2674               22       43053192     43076944          CBS  HGNC:1550
2675               22       43053192     43076944          CBS  HGNC:1550
2676               22       43053192     43076944          CBS  HGNC:1550
2677               22       43053192     43076944          CBS  HGNC:1550
2678               22       43053192     43076944          CBS  HGNC:1550
2679               22       43053192     43076944          CBS  HGNC:1550
2680               22       43053192     43076944          CBS  HGNC:1550
2681               22       43053192     43076944          CBS  HGNC:1550
2682               22       43053192     43076944          CBS  HGNC:1550
2683               22       43053192     43076944          CBS  HGNC:1550
2684               22       43053192     43076944          CBS  HGNC:1550
2685               22       43053192     43076944          CBS  HGNC:1550
2686               22       43053192     43076944          CBS  HGNC:1550
2687               22       43053192     43076944          CBS  HGNC:1550
2688               22       43053192     43076944          CBS  HGNC:1550
2689               22       43053192     43076944          CBS  HGNC:1550
2690               22       43053192     43076944          CBS  HGNC:1550
2691               22       43053192     43076944          CBS  HGNC:1550
2692               22       46246891     46247683                        
2693               22       46246891     46247683                        
2694               22       37208504     37221737        DSCR9 HGNC:16301
2695               22       37208504     37221737        DSCR9 HGNC:16301
2696               22       37208504     37221737        DSCR9 HGNC:16301
2697               22       37208504     37221737        DSCR9 HGNC:16301
2698               22       37208504     37221737        DSCR9 HGNC:16301
2699               22       37208504     37221737        DSCR9 HGNC:16301
2700               22       37208504     37221737        DSCR9 HGNC:16301
2701               22       37208504     37221737        DSCR9 HGNC:16301
2702               22       37208504     37221737        DSCR9 HGNC:16301
2703               22       37208504     37221737        DSCR9 HGNC:16301
2704               22       37208504     37221737        DSCR9 HGNC:16301
2705               22       37208504     37221737        DSCR9 HGNC:16301
2706               22       37208504     37221737        DSCR9 HGNC:16301
2707               22       37208504     37221737        DSCR9 HGNC:16301
2708               22       37208504     37221737        DSCR9 HGNC:16301
2709               22       37208504     37221737        DSCR9 HGNC:16301
2710               22       37208504     37221737        DSCR9 HGNC:16301
2711               22       37208504     37221737        DSCR9 HGNC:16301
2712               22       37208504     37221737        DSCR9 HGNC:16301
2713               22       37208504     37221737        DSCR9 HGNC:16301
2714               22       37208504     37221737        DSCR9 HGNC:16301
2715               22       37223421     37267920        DSCR3  HGNC:3044
2716               22       37223421     37267920        DSCR3  HGNC:3044
2717               22       37223421     37267920        DSCR3  HGNC:3044
2718               22       37223421     37267920        DSCR3  HGNC:3044
2719               22       37223421     37267920        DSCR3  HGNC:3044
2720               22       37223421     37267920        DSCR3  HGNC:3044
2721               22       37223421     37267920        DSCR3  HGNC:3044
2722               22       37223421     37267920        DSCR3  HGNC:3044
2723               22       37223421     37267920        DSCR3  HGNC:3044
2724               22       37223421     37267920        DSCR3  HGNC:3044
2725               22       37223421     37267920        DSCR3  HGNC:3044
2726               22       37223421     37267920        DSCR3  HGNC:3044
2727               22       37223421     37267920        DSCR3  HGNC:3044
2728               22       37223421     37267920        DSCR3  HGNC:3044
2729               22       37223421     37267920        DSCR3  HGNC:3044
2730               22       37223421     37267920        DSCR3  HGNC:3044
2731               22       37223421     37267920        DSCR3  HGNC:3044
2732               22       37223421     37267920        DSCR3  HGNC:3044
2733               22       37223421     37267920        DSCR3  HGNC:3044
2734               22       37223421     37267920        DSCR3  HGNC:3044
2735               22       37223421     37267920        DSCR3  HGNC:3044
2736               22       37223421     37267920        DSCR3  HGNC:3044
2737               22       37223421     37267920        DSCR3  HGNC:3044
2738               22       37223421     37267920        DSCR3  HGNC:3044
2739               22       37223421     37267920        DSCR3  HGNC:3044
2740               22       37223421     37267920        DSCR3  HGNC:3044
2741               22       37223421     37267920        DSCR3  HGNC:3044
2742               22       37223421     37267920        DSCR3  HGNC:3044
2743               22       37223421     37267920        DSCR3  HGNC:3044
2744               22       37223421     37267920        DSCR3  HGNC:3044
2745               22       37223421     37267920        DSCR3  HGNC:3044
2746               22       37223421     37267920        DSCR3  HGNC:3044
2747               22       37223421     37267920        DSCR3  HGNC:3044
2748               22       37223421     37267920        DSCR3  HGNC:3044
2749               22       37223421     37267920        DSCR3  HGNC:3044
2750               22       37223421     37267920        DSCR3  HGNC:3044
2751               22       37223421     37267920        DSCR3  HGNC:3044
2752               22       37223421     37267920        DSCR3  HGNC:3044
2753               22       37223421     37267920        DSCR3  HGNC:3044
2754               22       37223421     37267920        DSCR3  HGNC:3044
2755               22       37223421     37267920        DSCR3  HGNC:3044
2756               22       37223421     37267920        DSCR3  HGNC:3044
2757               22       37223421     37267920        DSCR3  HGNC:3044
2758               22       37223421     37267920        DSCR3  HGNC:3044
2759               22       37223421     37267920        DSCR3  HGNC:3044
2760               22       37223421     37267920        DSCR3  HGNC:3044
2761               22       37223421     37267920        DSCR3  HGNC:3044
2762               22       37223421     37267920        DSCR3  HGNC:3044
2763               22       37223421     37267920        DSCR3  HGNC:3044
2764               22       37223421     37267920        DSCR3  HGNC:3044
2765               22       37223421     37267920        DSCR3  HGNC:3044
2766               22       37223421     37267920        DSCR3  HGNC:3044
2767               22       37223421     37267920        DSCR3  HGNC:3044
2768               22       37223421     37267920        DSCR3  HGNC:3044
2769               22       37223421     37267920        DSCR3  HGNC:3044
2770               22       37223421     37267920        DSCR3  HGNC:3044
2771               22       37223421     37267920        DSCR3  HGNC:3044
2772               22       37223421     37267920        DSCR3  HGNC:3044
2773               22       37223421     37267920        DSCR3  HGNC:3044
2774               22       37223421     37267920        DSCR3  HGNC:3044
2775               22       37223421     37267920        DSCR3  HGNC:3044
2776               22       37223421     37267920        DSCR3  HGNC:3044
2777               22       37223421     37267920        DSCR3  HGNC:3044
2778               22       37223421     37267920        DSCR3  HGNC:3044
2779               22       37223421     37267920        DSCR3  HGNC:3044
2780               22       34456111     34456238                        
2781               22        8208845      8208905    MIR3687-1 HGNC:38946
2782               22       45478267     45478327      MIR6815 HGNC:50225
2783               22       41874757     41877614                        
2784               22       41874757     41877614                        
2785               22       41874757     41877614                        
2786               22       44579456     44580605    KRTAP10-5 HGNC:22969
2787               22       37221420     37237745                        
2788               22       37221420     37237745                        
2789               22       44206526     44207400                        
2790               22       44206526     44207400                        
2791               22       32841497     32841812                        
2792               22       20998316     21543330        NCAM2  HGNC:7657
2793               22       20998316     21543330        NCAM2  HGNC:7657
2794               22       20998316     21543330        NCAM2  HGNC:7657
2795               22       20998316     21543330        NCAM2  HGNC:7657
2796               22       20998316     21543330        NCAM2  HGNC:7657
2797               22       20998316     21543330        NCAM2  HGNC:7657
2798               22       20998316     21543330        NCAM2  HGNC:7657
2799               22       20998316     21543330        NCAM2  HGNC:7657
2800               22       20998316     21543330        NCAM2  HGNC:7657
2801               22       20998316     21543330        NCAM2  HGNC:7657
2802               22       20998316     21543330        NCAM2  HGNC:7657
2803               22       20998316     21543330        NCAM2  HGNC:7657
2804               22       20998316     21543330        NCAM2  HGNC:7657
2805               22       20998316     21543330        NCAM2  HGNC:7657
2806               22       20998316     21543330        NCAM2  HGNC:7657
2807               22       20998316     21543330        NCAM2  HGNC:7657
2808               22       20998316     21543330        NCAM2  HGNC:7657
2809               22       20998316     21543330        NCAM2  HGNC:7657
2810               22       20998316     21543330        NCAM2  HGNC:7657
2811               22       20998316     21543330        NCAM2  HGNC:7657
2812               22       20998316     21543330        NCAM2  HGNC:7657
2813               22       20998316     21543330        NCAM2  HGNC:7657
2814               22       20998316     21543330        NCAM2  HGNC:7657
2815               22       20998316     21543330        NCAM2  HGNC:7657
2816               22       20998316     21543330        NCAM2  HGNC:7657
2817               22       20998316     21543330        NCAM2  HGNC:7657
2818               22       20998316     21543330        NCAM2  HGNC:7657
2819               22       20998316     21543330        NCAM2  HGNC:7657
2820               22       20998316     21543330        NCAM2  HGNC:7657
2821               22       20998316     21543330        NCAM2  HGNC:7657
2822               22       20998316     21543330        NCAM2  HGNC:7657
2823               22       20998316     21543330        NCAM2  HGNC:7657
2824               22       20998316     21543330        NCAM2  HGNC:7657
2825               22       20998316     21543330        NCAM2  HGNC:7657
2826               22       20998316     21543330        NCAM2  HGNC:7657
2827               22       20998316     21543330        NCAM2  HGNC:7657
2828               22       20998316     21543330        NCAM2  HGNC:7657
2829               22       20998316     21543330        NCAM2  HGNC:7657
2830               22       20998316     21543330        NCAM2  HGNC:7657
2831               22       20998316     21543330        NCAM2  HGNC:7657
2832               22       20998316     21543330        NCAM2  HGNC:7657
2833               22       20998316     21543330        NCAM2  HGNC:7657
2834               22       20998316     21543330        NCAM2  HGNC:7657
2835               22       20998316     21543330        NCAM2  HGNC:7657
2836               22       20998316     21543330        NCAM2  HGNC:7657
2837               22       20998316     21543330        NCAM2  HGNC:7657
2838               22       20998316     21543330        NCAM2  HGNC:7657
2839               22       20998316     21543330        NCAM2  HGNC:7657
2840               22       36069643     36126641                        
2841               22       36069643     36126641                        
2842               22       36069643     36126641                        
2843               22       36069643     36126641                        
2844               22       36069643     36126641                        
2845               22       36069643     36126641                        
2846               22       36104882     36109691                        
2847               22       36104882     36109691                        
2848               22       36132451     36133033       RPS9P1 HGNC:10443
2849               22       39342316     39349648        HMGN1  HGNC:4984
2850               22       39342316     39349648        HMGN1  HGNC:4984
2851               22       39342316     39349648        HMGN1  HGNC:4984
2852               22       39342316     39349648        HMGN1  HGNC:4984
2853               22       39342316     39349648        HMGN1  HGNC:4984
2854               22       39342316     39349648        HMGN1  HGNC:4984
2855               22       39342316     39349648        HMGN1  HGNC:4984
2856               22       39342316     39349648        HMGN1  HGNC:4984
2857               22       39342316     39349648        HMGN1  HGNC:4984
2858               22       39342316     39349648        HMGN1  HGNC:4984
2859               22       39342316     39349648        HMGN1  HGNC:4984
2860               22       39342316     39349648        HMGN1  HGNC:4984
2861               22       39342316     39349648        HMGN1  HGNC:4984
2862               22       39342316     39349648        HMGN1  HGNC:4984
2863               22       39342316     39349648        HMGN1  HGNC:4984
2864               22       39342316     39349648        HMGN1  HGNC:4984
2865               22       39342316     39349648        HMGN1  HGNC:4984
2866               22       39342316     39349648        HMGN1  HGNC:4984
2867               22       39342316     39349648        HMGN1  HGNC:4984
2868               22       39342316     39349648        HMGN1  HGNC:4984
2869               22       39342316     39349648        HMGN1  HGNC:4984
2870               22       39342316     39349648        HMGN1  HGNC:4984
2871               22       39342316     39349648        HMGN1  HGNC:4984
2872               22       39342316     39349648        HMGN1  HGNC:4984
2873               22       39342316     39349648        HMGN1  HGNC:4984
2874               22       39342316     39349648        HMGN1  HGNC:4984
2875               22       39342316     39349648        HMGN1  HGNC:4984
2876               22       39342316     39349648        HMGN1  HGNC:4984
2877               22       39342316     39349648        HMGN1  HGNC:4984
2878               22       39342316     39349648        HMGN1  HGNC:4984
2879               22       39342316     39349648        HMGN1  HGNC:4984
2880               22       39342316     39349648        HMGN1  HGNC:4984
2881               22       39342316     39349648        HMGN1  HGNC:4984
2882               22       39342316     39349648        HMGN1  HGNC:4984
2883               22       39342316     39349648        HMGN1  HGNC:4984
2884               22       39342316     39349648        HMGN1  HGNC:4984
2885               22       39342316     39349648        HMGN1  HGNC:4984
2886               22       39342316     39349648        HMGN1  HGNC:4984
2887               22       39342316     39349648        HMGN1  HGNC:4984
2888               22       39342316     39349648        HMGN1  HGNC:4984
2889               22       39342316     39349648        HMGN1  HGNC:4984
2890               22       39342316     39349648        HMGN1  HGNC:4984
2891               22       39342316     39349648        HMGN1  HGNC:4984
2892               22       39342316     39349648        HMGN1  HGNC:4984
2893               22       39342316     39349648        HMGN1  HGNC:4984
2894               22       39342316     39349648        HMGN1  HGNC:4984
2895               22       39342316     39349648        HMGN1  HGNC:4984
2896               22       39342316     39349648        HMGN1  HGNC:4984
2897               22       39342316     39349648        HMGN1  HGNC:4984
2898               22       39342316     39349648        HMGN1  HGNC:4984
2899               22       39342316     39349648        HMGN1  HGNC:4984
2900               22       39342316     39349648        HMGN1  HGNC:4984
2901               22       39342316     39349648        HMGN1  HGNC:4984
2902               22       39342316     39349648        HMGN1  HGNC:4984
2903               22       39342316     39349648        HMGN1  HGNC:4984
2904               22       39342316     39349648        HMGN1  HGNC:4984
2905               22       39342316     39349648        HMGN1  HGNC:4984
2906               22       39342316     39349648        HMGN1  HGNC:4984
2907               22       39342316     39349648        HMGN1  HGNC:4984
2908               22       39342316     39349648        HMGN1  HGNC:4984
2909               22       39342316     39349648        HMGN1  HGNC:4984
2910               22       39342316     39349648        HMGN1  HGNC:4984
2911               22       39342316     39349648        HMGN1  HGNC:4984
2912               22       39342316     39349648        HMGN1  HGNC:4984
2913               22       39342316     39349648        HMGN1  HGNC:4984
2914               22       39342316     39349648        HMGN1  HGNC:4984
2915               22       39342316     39349648        HMGN1  HGNC:4984
2916               22       39342316     39349648        HMGN1  HGNC:4984
2917               22       39342316     39349648        HMGN1  HGNC:4984
2918               22       39342316     39349648        HMGN1  HGNC:4984
2919               22       39342316     39349648        HMGN1  HGNC:4984
2920               22       39342316     39349648        HMGN1  HGNC:4984
2921               22       39342316     39349648        HMGN1  HGNC:4984
2922               22       39342316     39349648        HMGN1  HGNC:4984
2923               22       39342316     39349648        HMGN1  HGNC:4984
2924               22       39342316     39349648        HMGN1  HGNC:4984
2925               22       39342316     39349648        HMGN1  HGNC:4984
2926               22       39342316     39349648        HMGN1  HGNC:4984
2927               22       39342316     39349648        HMGN1  HGNC:4984
2928               22       39342316     39349648        HMGN1  HGNC:4984
2929               22       39342316     39349648        HMGN1  HGNC:4984
2930               22       39342316     39349648        HMGN1  HGNC:4984
2931               22       39342316     39349648        HMGN1  HGNC:4984
2932               22       39342316     39349648        HMGN1  HGNC:4984
2933               22       39342316     39349648        HMGN1  HGNC:4984
2934               22       39342316     39349648        HMGN1  HGNC:4984
2935               22       39342316     39349648        HMGN1  HGNC:4984
2936               22       39342316     39349648        HMGN1  HGNC:4984
2937               22       39342316     39349648        HMGN1  HGNC:4984
2938               22       39342316     39349648        HMGN1  HGNC:4984
2939               22       39342316     39349648        HMGN1  HGNC:4984
2940               22       39342316     39349648        HMGN1  HGNC:4984
2941               22       39342316     39349648        HMGN1  HGNC:4984
2942               22       39342316     39349648        HMGN1  HGNC:4984
2943               22       39342316     39349648        HMGN1  HGNC:4984
2944               22       39342316     39349648        HMGN1  HGNC:4984
2945               22       39342316     39349648        HMGN1  HGNC:4984
2946               22       39342316     39349648        HMGN1  HGNC:4984
2947               22       39342316     39349648        HMGN1  HGNC:4984
2948               22       39342316     39349648        HMGN1  HGNC:4984
2949               22       39342316     39349648        HMGN1  HGNC:4984
2950               22       39342316     39349648        HMGN1  HGNC:4984
2951               22       39342316     39349648        HMGN1  HGNC:4984
2952               22       39342316     39349648        HMGN1  HGNC:4984
2953               22       39342316     39349648        HMGN1  HGNC:4984
2954               22       39342316     39349648        HMGN1  HGNC:4984
2955               22       39342316     39349648        HMGN1  HGNC:4984
2956               22       39342316     39349648        HMGN1  HGNC:4984
2957               22       39342316     39349648        HMGN1  HGNC:4984
2958               22       39342316     39349648        HMGN1  HGNC:4984
2959               22       39342316     39349648        HMGN1  HGNC:4984
2960               22       39342316     39349648        HMGN1  HGNC:4984
2961               22       39342316     39349648        HMGN1  HGNC:4984
2962               22       39342316     39349648        HMGN1  HGNC:4984
2963               22       39342316     39349648        HMGN1  HGNC:4984
2964               22       39342316     39349648        HMGN1  HGNC:4984
2965               22       39342316     39349648        HMGN1  HGNC:4984
2966               22       16121311     16121645      RPS26P5 HGNC:23776
2967               22       16525920     16527020                        
2968               22       16574719     16582638                        
2969               22       16574719     16582638                        
2970               22       16417140     16419081                        
2971               22       16417140     16419081                        
2972               22       16417140     16419081                        
2973               22       16291792     16308134                        
2974               22       16291792     16308134                        
2975               22       16291792     16308134                        
2976               22       44455487     44462197        LRRC3 HGNC:14965
2977               22       44455487     44462197        LRRC3 HGNC:14965
2978               22       42916804     42925647     ERVH48-1 HGNC:17216
2979               22       42916804     42925647     ERVH48-1 HGNC:17216
2980               22       42916804     42925647     ERVH48-1 HGNC:17216
2981               22       33589342     33643927       CRYZL1  HGNC:2420
2982               22       33589342     33643927       CRYZL1  HGNC:2420
2983               22       33589342     33643927       CRYZL1  HGNC:2420
2984               22       33589342     33643927       CRYZL1  HGNC:2420
2985               22       33589342     33643927       CRYZL1  HGNC:2420
2986               22       33589342     33643927       CRYZL1  HGNC:2420
2987               22       33589342     33643927       CRYZL1  HGNC:2420
2988               22       33589342     33643927       CRYZL1  HGNC:2420
2989               22       33589342     33643927       CRYZL1  HGNC:2420
2990               22       33589342     33643927       CRYZL1  HGNC:2420
2991               22       33589342     33643927       CRYZL1  HGNC:2420
2992               22       33589342     33643927       CRYZL1  HGNC:2420
2993               22       33589342     33643927       CRYZL1  HGNC:2420
2994               22       33589342     33643927       CRYZL1  HGNC:2420
2995               22       33589342     33643927       CRYZL1  HGNC:2420
2996               22       33589342     33643927       CRYZL1  HGNC:2420
2997               22       33589342     33643927       CRYZL1  HGNC:2420
2998               22       33589342     33643927       CRYZL1  HGNC:2420
2999               22       33589342     33643927       CRYZL1  HGNC:2420
3000               22       33589342     33643927       CRYZL1  HGNC:2420
3001               22       33589342     33643927       CRYZL1  HGNC:2420
3002               22       33589342     33643927       CRYZL1  HGNC:2420
3003               22       33589342     33643927       CRYZL1  HGNC:2420
3004               22       33589342     33643927       CRYZL1  HGNC:2420
3005               22       33589342     33643927       CRYZL1  HGNC:2420
3006               22       33589342     33643927       CRYZL1  HGNC:2420
3007               22       33589342     33643927       CRYZL1  HGNC:2420
3008               22       33589342     33643927       CRYZL1  HGNC:2420
3009               22       33589342     33643927       CRYZL1  HGNC:2420
3010               22       33589342     33643927       CRYZL1  HGNC:2420
3011               22       33589342     33643927       CRYZL1  HGNC:2420
3012               22       33589342     33643927       CRYZL1  HGNC:2420
3013               22       33589342     33643927       CRYZL1  HGNC:2420
3014               22       33589342     33643927       CRYZL1  HGNC:2420
3015               22       33589342     33643927       CRYZL1  HGNC:2420
3016               22       33589342     33643927       CRYZL1  HGNC:2420
3017               22       33589342     33643927       CRYZL1  HGNC:2420
3018               22       33589342     33643927       CRYZL1  HGNC:2420
3019               22       33589342     33643927       CRYZL1  HGNC:2420
3020               22       33589342     33643927       CRYZL1  HGNC:2420
3021               22       33589342     33643927       CRYZL1  HGNC:2420
3022               22       33589342     33643927       CRYZL1  HGNC:2420
3023               22       33589342     33643927       CRYZL1  HGNC:2420
3024               22       33589342     33643927       CRYZL1  HGNC:2420
3025               22       33589342     33643927       CRYZL1  HGNC:2420
3026               22       33589342     33643927       CRYZL1  HGNC:2420
3027               22       33589342     33643927       CRYZL1  HGNC:2420
3028               22       33589342     33643927       CRYZL1  HGNC:2420
3029               22       33589342     33643927       CRYZL1  HGNC:2420
3030               22       33589342     33643927       CRYZL1  HGNC:2420
3031               22       33589342     33643927       CRYZL1  HGNC:2420
3032               22       33589342     33643927       CRYZL1  HGNC:2420
3033               22       33589342     33643927       CRYZL1  HGNC:2420
3034               22       33589342     33643927       CRYZL1  HGNC:2420
3035               22       33589342     33643927       CRYZL1  HGNC:2420
3036               22       33589342     33643927       CRYZL1  HGNC:2420
3037               22       33589342     33643927       CRYZL1  HGNC:2420
3038               22       33589342     33643927       CRYZL1  HGNC:2420
3039               22       33589342     33643927       CRYZL1  HGNC:2420
3040               22       33589342     33643927       CRYZL1  HGNC:2420
3041               22       33589342     33643927       CRYZL1  HGNC:2420
3042               22       33589342     33643927       CRYZL1  HGNC:2420
3043               22       33589342     33643927       CRYZL1  HGNC:2420
3044               22       33589342     33643927       CRYZL1  HGNC:2420
3045               22       33589342     33643927       CRYZL1  HGNC:2420
3046               22       33589342     33643927       CRYZL1  HGNC:2420
3047               22       33589342     33643927       CRYZL1  HGNC:2420
3048               22       33589342     33643927       CRYZL1  HGNC:2420
3049               22       33589342     33643927       CRYZL1  HGNC:2420
3050               22       33589342     33643927       CRYZL1  HGNC:2420
3051               22       33589342     33643927       CRYZL1  HGNC:2420
3052               22       33589342     33643927       CRYZL1  HGNC:2420
3053               22       33589342     33643927       CRYZL1  HGNC:2420
3054               22       33589342     33643927       CRYZL1  HGNC:2420
3055               22       33589342     33643927       CRYZL1  HGNC:2420
3056               22       33589342     33643927       CRYZL1  HGNC:2420
3057               22       33589342     33643927       CRYZL1  HGNC:2420
3058               22       33589342     33643927       CRYZL1  HGNC:2420
3059               22       33589342     33643927       CRYZL1  HGNC:2420
3060               22       33589342     33643927       CRYZL1  HGNC:2420
3061               22       33589342     33643927       CRYZL1  HGNC:2420
3062               22       33589342     33643927       CRYZL1  HGNC:2420
3063               22       33589342     33643927       CRYZL1  HGNC:2420
3064               22       33589342     33643927       CRYZL1  HGNC:2420
3065               22       33589342     33643927       CRYZL1  HGNC:2420
3066               22       33589342     33643927       CRYZL1  HGNC:2420
3067               22       33589342     33643927       CRYZL1  HGNC:2420
3068               22       33589342     33643927       CRYZL1  HGNC:2420
3069               22       33589342     33643927       CRYZL1  HGNC:2420
3070               22       33589342     33643927       CRYZL1  HGNC:2420
3071               22       33589342     33643927       CRYZL1  HGNC:2420
3072               22       33589342     33643927       CRYZL1  HGNC:2420
3073               22       33589342     33643927       CRYZL1  HGNC:2420
3074               22       33589342     33643927       CRYZL1  HGNC:2420
3075               22       33589342     33643927       CRYZL1  HGNC:2420
3076               22       33589342     33643927       CRYZL1  HGNC:2420
3077               22       33589342     33643927       CRYZL1  HGNC:2420
3078               22       33589342     33643927       CRYZL1  HGNC:2420
3079               22       33589342     33643927       CRYZL1  HGNC:2420
3080               22       33589342     33643927       CRYZL1  HGNC:2420
3081               22       33589342     33643927       CRYZL1  HGNC:2420
3082               22       33589342     33643927       CRYZL1  HGNC:2420
3083               22       33589342     33643927       CRYZL1  HGNC:2420
3084               22       33589342     33643927       CRYZL1  HGNC:2420
3085               22       33589342     33643927       CRYZL1  HGNC:2420
3086               22       33589342     33643927       CRYZL1  HGNC:2420
3087               22       33589342     33643927       CRYZL1  HGNC:2420
3088               22       33589342     33643927       CRYZL1  HGNC:2420
3089               22       33589342     33643927       CRYZL1  HGNC:2420
3090               22       33589342     33643927       CRYZL1  HGNC:2420
3091               22       33589342     33643927       CRYZL1  HGNC:2420
3092               22       33589342     33643927       CRYZL1  HGNC:2420
3093               22       33589342     33643927       CRYZL1  HGNC:2420
3094               22       33589342     33643927       CRYZL1  HGNC:2420
3095               22       33589342     33643927       CRYZL1  HGNC:2420
3096               22       33589342     33643927       CRYZL1  HGNC:2420
3097               22       33589342     33643927       CRYZL1  HGNC:2420
3098               22       33589342     33643927       CRYZL1  HGNC:2420
3099               22       33589342     33643927       CRYZL1  HGNC:2420
3100               22       33589342     33643927       CRYZL1  HGNC:2420
3101               22       33589342     33643927       CRYZL1  HGNC:2420
3102               22       33589342     33643927       CRYZL1  HGNC:2420
3103               22       33589342     33643927       CRYZL1  HGNC:2420
3104               22       33589342     33643927       CRYZL1  HGNC:2420
3105               22       33589342     33643927       CRYZL1  HGNC:2420
3106               22       33589342     33643927       CRYZL1  HGNC:2420
3107               22       33589342     33643927       CRYZL1  HGNC:2420
3108               22       33589342     33643927       CRYZL1  HGNC:2420
3109               22       33589342     33643927       CRYZL1  HGNC:2420
3110               22       33589342     33643927       CRYZL1  HGNC:2420
3111               22       33589342     33643927       CRYZL1  HGNC:2420
3112               22       33589342     33643927       CRYZL1  HGNC:2420
3113               22       33589342     33643927       CRYZL1  HGNC:2420
3114               22       33589342     33643927       CRYZL1  HGNC:2420
3115               22       33589342     33643927       CRYZL1  HGNC:2420
3116               22       33589342     33643927       CRYZL1  HGNC:2420
3117               22       33589342     33643927       CRYZL1  HGNC:2420
3118               22       33589342     33643927       CRYZL1  HGNC:2420
3119               22       33589342     33643927       CRYZL1  HGNC:2420
3120               22       33589342     33643927       CRYZL1  HGNC:2420
3121               22       33589342     33643927       CRYZL1  HGNC:2420
3122               22       33589342     33643927       CRYZL1  HGNC:2420
3123               22       33589342     33643927       CRYZL1  HGNC:2420
3124               22       33589342     33643927       CRYZL1  HGNC:2420
3125               22       33589342     33643927       CRYZL1  HGNC:2420
3126               22       33589342     33643927       CRYZL1  HGNC:2420
3127               22       33589342     33643927       CRYZL1  HGNC:2420
3128               22       33589342     33643927       CRYZL1  HGNC:2420
3129               22       33589342     33643927       CRYZL1  HGNC:2420
3130               22       33589342     33643927       CRYZL1  HGNC:2420
3131               22       33589342     33643927       CRYZL1  HGNC:2420
3132               22       33589342     33643927       CRYZL1  HGNC:2420
3133               22       33589342     33643927       CRYZL1  HGNC:2420
3134               22       33589342     33643927       CRYZL1  HGNC:2420
3135               22       33589342     33643927       CRYZL1  HGNC:2420
3136               22       33589342     33643927       CRYZL1  HGNC:2420
3137               22       33589342     33643927       CRYZL1  HGNC:2420
3138               22       33589342     33643927       CRYZL1  HGNC:2420
3139               22       33589342     33643927       CRYZL1  HGNC:2420
3140               22       33589342     33643927       CRYZL1  HGNC:2420
3141               22       33589342     33643927       CRYZL1  HGNC:2420
3142               22       33589342     33643927       CRYZL1  HGNC:2420
3143               22       33589342     33643927       CRYZL1  HGNC:2420
3144               22       33589342     33643927       CRYZL1  HGNC:2420
3145               22       33589342     33643927       CRYZL1  HGNC:2420
3146               22       33589342     33643927       CRYZL1  HGNC:2420
3147               22       33589342     33643927       CRYZL1  HGNC:2420
3148               22       33589342     33643927       CRYZL1  HGNC:2420
3149               22       39491545     39491899      RPS26P4 HGNC:23775
3150               22       29370020     29376340    BACH1-AS1 HGNC:40008
3151               22       29370020     29376340    BACH1-AS1 HGNC:40008
3152               22       29370020     29376340    BACH1-AS1 HGNC:40008
3153               22       29370020     29376340    BACH1-AS1 HGNC:40008
3154               22       33559543     33588709       DONSON  HGNC:2993
3155               22       33559543     33588709       DONSON  HGNC:2993
3156               22       33559543     33588709       DONSON  HGNC:2993
3157               22       33559543     33588709       DONSON  HGNC:2993
3158               22       33559543     33588709       DONSON  HGNC:2993
3159               22       33559543     33588709       DONSON  HGNC:2993
3160               22       33559543     33588709       DONSON  HGNC:2993
3161               22       33559543     33588709       DONSON  HGNC:2993
3162               22       33559543     33588709       DONSON  HGNC:2993
3163               22       33559543     33588709       DONSON  HGNC:2993
3164               22       33559543     33588709       DONSON  HGNC:2993
3165               22       33559543     33588709       DONSON  HGNC:2993
3166               22       33559543     33588709       DONSON  HGNC:2993
3167               22       33559543     33588709       DONSON  HGNC:2993
3168               22       33559543     33588709       DONSON  HGNC:2993
3169               22       33559543     33588709       DONSON  HGNC:2993
3170               22       33559543     33588709       DONSON  HGNC:2993
3171               22       33559543     33588709       DONSON  HGNC:2993
3172               22       33559543     33588709       DONSON  HGNC:2993
3173               22       33559543     33588709       DONSON  HGNC:2993
3174               22       33559543     33588709       DONSON  HGNC:2993
3175               22       33559543     33588709       DONSON  HGNC:2993
3176               22       33559543     33588709       DONSON  HGNC:2993
3177               22       33559543     33588709       DONSON  HGNC:2993
3178               22       33559543     33588709       DONSON  HGNC:2993
3179               22       33559543     33588709       DONSON  HGNC:2993
3180               22       33559543     33588709       DONSON  HGNC:2993
3181               22       33559543     33588709       DONSON  HGNC:2993
3182               22       33559543     33588709       DONSON  HGNC:2993
3183               22       33559543     33588709       DONSON  HGNC:2993
3184               22       33559543     33588709       DONSON  HGNC:2993
3185               22       33559543     33588709       DONSON  HGNC:2993
3186               22       33559543     33588709       DONSON  HGNC:2993
3187               22       33559543     33588709       DONSON  HGNC:2993
3188               22       33559543     33588709       DONSON  HGNC:2993
3189               22       33559543     33588709       DONSON  HGNC:2993
3190               22       33559543     33588709       DONSON  HGNC:2993
3191               22       33559543     33588709       DONSON  HGNC:2993
3192               22       33559543     33588709       DONSON  HGNC:2993
3193               22       33559543     33588709       DONSON  HGNC:2993
3194               22       33559543     33588709       DONSON  HGNC:2993
3195               22       33559543     33588709       DONSON  HGNC:2993
3196               22       33559543     33588709       DONSON  HGNC:2993
3197               22       33559543     33588709       DONSON  HGNC:2993
3198               22       33559543     33588709       DONSON  HGNC:2993
3199               22       33559543     33588709       DONSON  HGNC:2993
3200               22       33559543     33588709       DONSON  HGNC:2993
3201               22       33559543     33588709       DONSON  HGNC:2993
3202               22       33559543     33588709       DONSON  HGNC:2993
3203               22       33559543     33588709       DONSON  HGNC:2993
3204               22       33559543     33588709       DONSON  HGNC:2993
3205               22       33559543     33588709       DONSON  HGNC:2993
3206               22       33559543     33588709       DONSON  HGNC:2993
3207               22       33559543     33588709       DONSON  HGNC:2993
3208               22       33559543     33588709       DONSON  HGNC:2993
3209               22       33559543     33588709       DONSON  HGNC:2993
3210               22       33559543     33588709       DONSON  HGNC:2993
3211               22       33559543     33588709       DONSON  HGNC:2993
3212               22       33559543     33588709       DONSON  HGNC:2993
3213               22       33559543     33588709       DONSON  HGNC:2993
3214               22       33559543     33588709       DONSON  HGNC:2993
3215               22       33559543     33588709       DONSON  HGNC:2993
3216               22       33559543     33588709       DONSON  HGNC:2993
3217               22       33559543     33588709       DONSON  HGNC:2993
3218               22       33559543     33588709       DONSON  HGNC:2993
3219               22       33559543     33588709       DONSON  HGNC:2993
3220               22       33559543     33588709       DONSON  HGNC:2993
3221               22       33559543     33588709       DONSON  HGNC:2993
3222               22       33559543     33588709       DONSON  HGNC:2993
3223               22       33559543     33588709       DONSON  HGNC:2993
3224               22       33559543     33588709       DONSON  HGNC:2993
3225               22       33559543     33588709       DONSON  HGNC:2993
3226               22       33559543     33588709       DONSON  HGNC:2993
3227               22       33559543     33588709       DONSON  HGNC:2993
3228               22       33559543     33588709       DONSON  HGNC:2993
3229               22       33559543     33588709       DONSON  HGNC:2993
3230               22       33559543     33588709       DONSON  HGNC:2993
3231               22       33559543     33588709       DONSON  HGNC:2993
3232               22       33559543     33588709       DONSON  HGNC:2993
3233               22       33559543     33588709       DONSON  HGNC:2993
3234               22       33559543     33588709       DONSON  HGNC:2993
3235               22       33559543     33588709       DONSON  HGNC:2993
3236               22       33559543     33588709       DONSON  HGNC:2993
3237               22       33559543     33588709       DONSON  HGNC:2993
3238               22       33559543     33588709       DONSON  HGNC:2993
3239               22       33559543     33588709       DONSON  HGNC:2993
3240               22       33559543     33588709       DONSON  HGNC:2993
3241               22       33559543     33588709       DONSON  HGNC:2993
3242               22       33559543     33588709       DONSON  HGNC:2993
3243               22       33559543     33588709       DONSON  HGNC:2993
3244               22       33559543     33588709       DONSON  HGNC:2993
3245               22       33559543     33588709       DONSON  HGNC:2993
3246               22       33559543     33588709       DONSON  HGNC:2993
3247               22       44300052     44327377         PFKL  HGNC:8876
3248               22       44300052     44327377         PFKL  HGNC:8876
3249               22       44300052     44327377         PFKL  HGNC:8876
3250               22       44300052     44327377         PFKL  HGNC:8876
3251               22       44300052     44327377         PFKL  HGNC:8876
3252               22       44300052     44327377         PFKL  HGNC:8876
3253               22       44300052     44327377         PFKL  HGNC:8876
3254               22       44300052     44327377         PFKL  HGNC:8876
3255               22       44300052     44327377         PFKL  HGNC:8876
3256               22       44300052     44327377         PFKL  HGNC:8876
3257               22       44300052     44327377         PFKL  HGNC:8876
3258               22       44300052     44327377         PFKL  HGNC:8876
3259               22       44300052     44327377         PFKL  HGNC:8876
3260               22       44300052     44327377         PFKL  HGNC:8876
3261               22       44300052     44327377         PFKL  HGNC:8876
3262               22       44300052     44327377         PFKL  HGNC:8876
3263               22       44300052     44327377         PFKL  HGNC:8876
3264               22       44300052     44327377         PFKL  HGNC:8876
3265               22       44300052     44327377         PFKL  HGNC:8876
3266               22       44300052     44327377         PFKL  HGNC:8876
3267               22       44300052     44327377         PFKL  HGNC:8876
3268               22       44300052     44327377         PFKL  HGNC:8876
3269               22       44300052     44327377         PFKL  HGNC:8876
3270               22       44300052     44327377         PFKL  HGNC:8876
3271               22       44300052     44327377         PFKL  HGNC:8876
3272               22       44300052     44327377         PFKL  HGNC:8876
3273               22       44300052     44327377         PFKL  HGNC:8876
3274               22       44300052     44327377         PFKL  HGNC:8876
3275               22       44300052     44327377         PFKL  HGNC:8876
3276               22       44300052     44327377         PFKL  HGNC:8876
3277               22       44300052     44327377         PFKL  HGNC:8876
3278               22       44300052     44327377         PFKL  HGNC:8876
3279               22       44300052     44327377         PFKL  HGNC:8876
3280               22       44300052     44327377         PFKL  HGNC:8876
3281               22       44300052     44327377         PFKL  HGNC:8876
3282               22       44300052     44327377         PFKL  HGNC:8876
3283               22       44300052     44327377         PFKL  HGNC:8876
3284               22       44300052     44327377         PFKL  HGNC:8876
3285               22       44300052     44327377         PFKL  HGNC:8876
3286               22       44300052     44327377         PFKL  HGNC:8876
3287               22       44300052     44327377         PFKL  HGNC:8876
3288               22       44300052     44327377         PFKL  HGNC:8876
3289               22       44300052     44327377         PFKL  HGNC:8876
3290               22       44300052     44327377         PFKL  HGNC:8876
3291               22       44300052     44327377         PFKL  HGNC:8876
3292               22       44300052     44327377         PFKL  HGNC:8876
3293               22       44300052     44327377         PFKL  HGNC:8876
3294               22       44300052     44327377         PFKL  HGNC:8876
3295               22       44300052     44327377         PFKL  HGNC:8876
3296               22       44300052     44327377         PFKL  HGNC:8876
3297               22       44300052     44327377         PFKL  HGNC:8876
3298               22       44300052     44327377         PFKL  HGNC:8876
3299               22       44300052     44327377         PFKL  HGNC:8876
3300               22       44300052     44327377         PFKL  HGNC:8876
3301               22       44300052     44327377         PFKL  HGNC:8876
3302               22       44300052     44327377         PFKL  HGNC:8876
3303               22       44300052     44327377         PFKL  HGNC:8876
3304               22       44300052     44327377         PFKL  HGNC:8876
3305               22       44300052     44327377         PFKL  HGNC:8876
3306               22       44300052     44327377         PFKL  HGNC:8876
3307               22       44300052     44327377         PFKL  HGNC:8876
3308               22       44300052     44327377         PFKL  HGNC:8876
3309               22       44300052     44327377         PFKL  HGNC:8876
3310               22       44300052     44327377         PFKL  HGNC:8876
3311               22       44300052     44327377         PFKL  HGNC:8876
3312               22       44300052     44327377         PFKL  HGNC:8876
3313               22       44300052     44327377         PFKL  HGNC:8876
3314               22       44300052     44327377         PFKL  HGNC:8876
3315               22       44300052     44327377         PFKL  HGNC:8876
3316               22       44300052     44327377         PFKL  HGNC:8876
3317               22       44300052     44327377         PFKL  HGNC:8876
3318               22       44300052     44327377         PFKL  HGNC:8876
3319               22       44300052     44327377         PFKL  HGNC:8876
3320               22       44300052     44327377         PFKL  HGNC:8876
3321               22       44300052     44327377         PFKL  HGNC:8876
3322               22       44300052     44327377         PFKL  HGNC:8876
3323               22       44300052     44327377         PFKL  HGNC:8876
3324               22       44300052     44327377         PFKL  HGNC:8876
3325               22       44300052     44327377         PFKL  HGNC:8876
3326               22       44300052     44327377         PFKL  HGNC:8876
3327               22       44300052     44327377         PFKL  HGNC:8876
3328               22       44300052     44327377         PFKL  HGNC:8876
3329               22       44300052     44327377         PFKL  HGNC:8876
3330               22       44300052     44327377         PFKL  HGNC:8876
3331               22       44300052     44327377         PFKL  HGNC:8876
3332               22       44300052     44327377         PFKL  HGNC:8876
3333               22       44300052     44327377         PFKL  HGNC:8876
3334               22       44300052     44327377         PFKL  HGNC:8876
3335               22       44300052     44327377         PFKL  HGNC:8876
3336               22       44300052     44327377         PFKL  HGNC:8876
3337               22       44300052     44327377         PFKL  HGNC:8876
3338               22       44300052     44327377         PFKL  HGNC:8876
3339               22       44300052     44327377         PFKL  HGNC:8876
3340               22       44300052     44327377         PFKL  HGNC:8876
3341               22       44300052     44327377         PFKL  HGNC:8876
3342               22       44300052     44327377         PFKL  HGNC:8876
3343               22       44300052     44327377         PFKL  HGNC:8876
3344               22       44300052     44327377         PFKL  HGNC:8876
3345               22       44300052     44327377         PFKL  HGNC:8876
3346               22       44300052     44327377         PFKL  HGNC:8876
3347               22       44300052     44327377         PFKL  HGNC:8876
3348               22       44300052     44327377         PFKL  HGNC:8876
3349               22       44300052     44327377         PFKL  HGNC:8876
3350               22       44300052     44327377         PFKL  HGNC:8876
3351               22       44300052     44327377         PFKL  HGNC:8876
3352               22       44300052     44327377         PFKL  HGNC:8876
3353               22       44300052     44327377         PFKL  HGNC:8876
3354               22       44300052     44327377         PFKL  HGNC:8876
3355               22       44300052     44327377         PFKL  HGNC:8876
3356               22       44300052     44327377         PFKL  HGNC:8876
3357               22       44300052     44327377         PFKL  HGNC:8876
3358               22       44300052     44327377         PFKL  HGNC:8876
3359               22       44300052     44327377         PFKL  HGNC:8876
3360               22       44300052     44327377         PFKL  HGNC:8876
3361               22       44300052     44327377         PFKL  HGNC:8876
3362               22       44300052     44327377         PFKL  HGNC:8876
3363               22       44300052     44327377         PFKL  HGNC:8876
3364               22       44300052     44327377         PFKL  HGNC:8876
3365               22       44300052     44327377         PFKL  HGNC:8876
3366               22       44300052     44327377         PFKL  HGNC:8876
3367               22       44300052     44327377         PFKL  HGNC:8876
3368               22       44300052     44327377         PFKL  HGNC:8876
3369               22       44300052     44327377         PFKL  HGNC:8876
3370               22       44300052     44327377         PFKL  HGNC:8876
3371               22       44300052     44327377         PFKL  HGNC:8876
3372               22       44300052     44327377         PFKL  HGNC:8876
3373               22       44300052     44327377         PFKL  HGNC:8876
3374               22       44300052     44327377         PFKL  HGNC:8876
3375               22       44300052     44327377         PFKL  HGNC:8876
3376               22       44300052     44327377         PFKL  HGNC:8876
3377               22       44300052     44327377         PFKL  HGNC:8876
3378               22       44300052     44327377         PFKL  HGNC:8876
3379               22       44300052     44327377         PFKL  HGNC:8876
3380               22       44300052     44327377         PFKL  HGNC:8876
3381               22       44300052     44327377         PFKL  HGNC:8876
3382               22       44300052     44327377         PFKL  HGNC:8876
3383               22       44300052     44327377         PFKL  HGNC:8876
3384               22        8254593      8255515                        
3385               22       29351635     29361895    BACH1-IT1 HGNC:40006
3386               22       29351635     29361895    BACH1-IT1 HGNC:40006
3387               22       29351635     29361895    BACH1-IT1 HGNC:40006
3388               22       29351635     29361895    BACH1-IT1 HGNC:40006
3389               22       44697173     44698045   KRTAP10-12 HGNC:20533
3390               22       44697173     44698045   KRTAP10-12 HGNC:20533
3391               22       44697173     44698045   KRTAP10-12 HGNC:20533
3392               22       44697173     44698045   KRTAP10-12 HGNC:20533
3393               22       44469930     44472517     MTCYBP21 HGNC:51977
3394               22       44469930     44472517     MTCYBP21 HGNC:51977
3395               22       44469930     44472517     MTCYBP21 HGNC:51977
3396               22       44347768     44348296                        
3397               22       44328945     44330222                        
3398               22       44328945     44330222                        
3399               22       44328945     44330222                        
3400               22       44328945     44330222                        
3401               22       44328945     44330222                        
3402               22       29536934     29940034        GRIK1  HGNC:4579
3403               22       29536934     29940034        GRIK1  HGNC:4579
3404               22       29536934     29940034        GRIK1  HGNC:4579
3405               22       29536934     29940034        GRIK1  HGNC:4579
3406               22       29536934     29940034        GRIK1  HGNC:4579
3407               22       29536934     29940034        GRIK1  HGNC:4579
3408               22       29536934     29940034        GRIK1  HGNC:4579
3409               22       29536934     29940034        GRIK1  HGNC:4579
3410               22       29536934     29940034        GRIK1  HGNC:4579
3411               22       29536934     29940034        GRIK1  HGNC:4579
3412               22       29536934     29940034        GRIK1  HGNC:4579
3413               22       29536934     29940034        GRIK1  HGNC:4579
3414               22       29536934     29940034        GRIK1  HGNC:4579
3415               22       29536934     29940034        GRIK1  HGNC:4579
3416               22       29536934     29940034        GRIK1  HGNC:4579
3417               22       29536934     29940034        GRIK1  HGNC:4579
3418               22       29536934     29940034        GRIK1  HGNC:4579
3419               22       29536934     29940034        GRIK1  HGNC:4579
3420               22       29536934     29940034        GRIK1  HGNC:4579
3421               22       29536934     29940034        GRIK1  HGNC:4579
3422               22       29536934     29940034        GRIK1  HGNC:4579
3423               22       29536934     29940034        GRIK1  HGNC:4579
3424               22       29536934     29940034        GRIK1  HGNC:4579
3425               22       29536934     29940034        GRIK1  HGNC:4579
3426               22       29536934     29940034        GRIK1  HGNC:4579
3427               22       29536934     29940034        GRIK1  HGNC:4579
3428               22       29536934     29940034        GRIK1  HGNC:4579
3429               22       29536934     29940034        GRIK1  HGNC:4579
3430               22       29536934     29940034        GRIK1  HGNC:4579
3431               22       29536934     29940034        GRIK1  HGNC:4579
3432               22       29536934     29940034        GRIK1  HGNC:4579
3433               22       29536934     29940034        GRIK1  HGNC:4579
3434               22       29536934     29940034        GRIK1  HGNC:4579
3435               22       29536934     29940034        GRIK1  HGNC:4579
3436               22       29536934     29940034        GRIK1  HGNC:4579
3437               22       29536934     29940034        GRIK1  HGNC:4579
3438               22       29536934     29940034        GRIK1  HGNC:4579
3439               22       29536934     29940034        GRIK1  HGNC:4579
3440               22       29536934     29940034        GRIK1  HGNC:4579
3441               22       29536934     29940034        GRIK1  HGNC:4579
3442               22       29536934     29940034        GRIK1  HGNC:4579
3443               22       29536934     29940034        GRIK1  HGNC:4579
3444               22       29536934     29940034        GRIK1  HGNC:4579
3445               22       29536934     29940034        GRIK1  HGNC:4579
3446               22       29536934     29940034        GRIK1  HGNC:4579
3447               22       29536934     29940034        GRIK1  HGNC:4579
3448               22       29536934     29940034        GRIK1  HGNC:4579
3449               22       29536934     29940034        GRIK1  HGNC:4579
3450               22       29536934     29940034        GRIK1  HGNC:4579
3451               22       29536934     29940034        GRIK1  HGNC:4579
3452               22       29536934     29940034        GRIK1  HGNC:4579
3453               22       29536934     29940034        GRIK1  HGNC:4579
3454               22       29536934     29940034        GRIK1  HGNC:4579
3455               22       29536934     29940034        GRIK1  HGNC:4579
3456               22       29536934     29940034        GRIK1  HGNC:4579
3457               22       29536934     29940034        GRIK1  HGNC:4579
3458               22       29536934     29940034        GRIK1  HGNC:4579
3459               22       29536934     29940034        GRIK1  HGNC:4579
3460               22       29536934     29940034        GRIK1  HGNC:4579
3461               22       29536934     29940034        GRIK1  HGNC:4579
3462               22       29536934     29940034        GRIK1  HGNC:4579
3463               22       29536934     29940034        GRIK1  HGNC:4579
3464               22       29536934     29940034        GRIK1  HGNC:4579
3465               22       29536934     29940034        GRIK1  HGNC:4579
3466               22       29536934     29940034        GRIK1  HGNC:4579
3467               22       29536934     29940034        GRIK1  HGNC:4579
3468               22       29536934     29940034        GRIK1  HGNC:4579
3469               22       29536934     29940034        GRIK1  HGNC:4579
3470               22       29536934     29940034        GRIK1  HGNC:4579
3471               22       29536934     29940034        GRIK1  HGNC:4579
3472               22       29536934     29940034        GRIK1  HGNC:4579
3473               22       29536934     29940034        GRIK1  HGNC:4579
3474               22       29536934     29940034        GRIK1  HGNC:4579
3475               22       29536934     29940034        GRIK1  HGNC:4579
3476               22       29536934     29940034        GRIK1  HGNC:4579
3477               22       29536934     29940034        GRIK1  HGNC:4579
3478               22       29536934     29940034        GRIK1  HGNC:4579
3479               22       29536934     29940034        GRIK1  HGNC:4579
3480               22       29536934     29940034        GRIK1  HGNC:4579
3481               22       29536934     29940034        GRIK1  HGNC:4579
3482               22       29536934     29940034        GRIK1  HGNC:4579
3483               22       29536934     29940034        GRIK1  HGNC:4579
3484               22       29536934     29940034        GRIK1  HGNC:4579
3485               22       29536934     29940034        GRIK1  HGNC:4579
3486               22       29536934     29940034        GRIK1  HGNC:4579
3487               22       29536934     29940034        GRIK1  HGNC:4579
3488               22       29536934     29940034        GRIK1  HGNC:4579
3489               22       29536934     29940034        GRIK1  HGNC:4579
3490               22       29536934     29940034        GRIK1  HGNC:4579
3491               22       29536934     29940034        GRIK1  HGNC:4579
3492               22       29536934     29940034        GRIK1  HGNC:4579
3493               22       29536934     29940034        GRIK1  HGNC:4579
3494               22       29536934     29940034        GRIK1  HGNC:4579
3495               22       29536934     29940034        GRIK1  HGNC:4579
3496               22       29536934     29940034        GRIK1  HGNC:4579
3497               22       29536934     29940034        GRIK1  HGNC:4579
3498               22       29536934     29940034        GRIK1  HGNC:4579
3499               22       29536934     29940034        GRIK1  HGNC:4579
3500               22       29536934     29940034        GRIK1  HGNC:4579
3501               22       29536934     29940034        GRIK1  HGNC:4579
3502               22       29536934     29940034        GRIK1  HGNC:4579
3503               22       29536934     29940034        GRIK1  HGNC:4579
3504               22       29536934     29940034        GRIK1  HGNC:4579
3505               22       29536934     29940034        GRIK1  HGNC:4579
3506               22       29536934     29940034        GRIK1  HGNC:4579
3507               22       29536934     29940034        GRIK1  HGNC:4579
3508               22       29536934     29940034        GRIK1  HGNC:4579
3509               22       29536934     29940034        GRIK1  HGNC:4579
3510               22       29536934     29940034        GRIK1  HGNC:4579
3511               22       29536934     29940034        GRIK1  HGNC:4579
3512               22       29536934     29940034        GRIK1  HGNC:4579
3513               22       29536934     29940034        GRIK1  HGNC:4579
3514               22       29536934     29940034        GRIK1  HGNC:4579
3515               22       29536934     29940034        GRIK1  HGNC:4579
3516               22       29536934     29940034        GRIK1  HGNC:4579
3517               22       29536934     29940034        GRIK1  HGNC:4579
3518               22       29536934     29940034        GRIK1  HGNC:4579
3519               22       29536934     29940034        GRIK1  HGNC:4579
3520               22       29536934     29940034        GRIK1  HGNC:4579
3521               22       29536934     29940034        GRIK1  HGNC:4579
3522               22       29536934     29940034        GRIK1  HGNC:4579
3523               22       29536934     29940034        GRIK1  HGNC:4579
3524               22       29536934     29940034        GRIK1  HGNC:4579
3525               22       29536934     29940034        GRIK1  HGNC:4579
3526               22       29536934     29940034        GRIK1  HGNC:4579
3527               22       29536934     29940034        GRIK1  HGNC:4579
3528               22        7744963      7777854      SMIM11B HGNC:51846
3529               22        7744963      7777854      SMIM11B HGNC:51846
3530               22        7744963      7777854      SMIM11B HGNC:51846
3531               22        7744963      7777854      SMIM11B HGNC:51846
3532               22        7744963      7777854      SMIM11B HGNC:51846
3533               22        7744963      7777854      SMIM11B HGNC:51846
3534               22        7744963      7777854      SMIM11B HGNC:51846
3535               22        7744963      7777854      SMIM11B HGNC:51846
3536               22        7744963      7777854      SMIM11B HGNC:51846
3537               22        7744963      7777854      SMIM11B HGNC:51846
3538               22        7744963      7777854      SMIM11B HGNC:51846
3539               22        7744963      7777854      SMIM11B HGNC:51846
3540               22        7744963      7777854      SMIM11B HGNC:51846
3541               22        7744963      7777854      SMIM11B HGNC:51846
3542               22        7744963      7777854      SMIM11B HGNC:51846
3543               22        7744963      7777854      SMIM11B HGNC:51846
3544               22        7744963      7777854      SMIM11B HGNC:51846
3545               22        7744963      7777854      SMIM11B HGNC:51846
3546               22        7744963      7777854      SMIM11B HGNC:51846
3547               22        7744963      7777854      SMIM11B HGNC:51846
3548               22        7744963      7777854      SMIM11B HGNC:51846
3549               22        7744963      7777854      SMIM11B HGNC:51846
3550               22        7744963      7777854      SMIM11B HGNC:51846
3551               22        7744963      7777854      SMIM11B HGNC:51846
3552               22        7744963      7777854      SMIM11B HGNC:51846
3553               22        7744963      7777854      SMIM11B HGNC:51846
3554               22        7744963      7777854      SMIM11B HGNC:51846
3555               22        7421443      7425840                        
3556               22        7421443      7425840                        
3557               22        7421443      7425840                        
3558               22        7421443      7425840                        
3559               22        7421443      7425840                        
3560               22        7421443      7425840                        
3561               22        7421443      7425840                        
3562               22        7421443      7425840                        
3563               22        7421443      7425840                        
3564               22        7421443      7425840                        
3565               22       28997614     28998034      RPL23P2 HGNC:10324
3566               22       46188142     46228825          LSS  HGNC:6708
3567               22       46188142     46228825          LSS  HGNC:6708
3568               22       46188142     46228825          LSS  HGNC:6708
3569               22       46188142     46228825          LSS  HGNC:6708
3570               22       46188142     46228825          LSS  HGNC:6708
3571               22       46188142     46228825          LSS  HGNC:6708
3572               22       46188142     46228825          LSS  HGNC:6708
3573               22       46188142     46228825          LSS  HGNC:6708
3574               22       46188142     46228825          LSS  HGNC:6708
3575               22       46188142     46228825          LSS  HGNC:6708
3576               22       46188142     46228825          LSS  HGNC:6708
3577               22       46188142     46228825          LSS  HGNC:6708
3578               22       46188142     46228825          LSS  HGNC:6708
3579               22       46188142     46228825          LSS  HGNC:6708
3580               22       46188142     46228825          LSS  HGNC:6708
3581               22       46188142     46228825          LSS  HGNC:6708
3582               22       46188142     46228825          LSS  HGNC:6708
3583               22       46188142     46228825          LSS  HGNC:6708
3584               22       46188142     46228825          LSS  HGNC:6708
3585               22       46188142     46228825          LSS  HGNC:6708
3586               22       46188142     46228825          LSS  HGNC:6708
3587               22       46188142     46228825          LSS  HGNC:6708
3588               22       46188142     46228825          LSS  HGNC:6708
3589               22       46188142     46228825          LSS  HGNC:6708
3590               22       46188142     46228825          LSS  HGNC:6708
3591               22       46188142     46228825          LSS  HGNC:6708
3592               22       46188142     46228825          LSS  HGNC:6708
3593               22       46188142     46228825          LSS  HGNC:6708
3594               22       46188142     46228825          LSS  HGNC:6708
3595               22       46188142     46228825          LSS  HGNC:6708
3596               22       46188142     46228825          LSS  HGNC:6708
3597               22       46188142     46228825          LSS  HGNC:6708
3598               22       46188142     46228825          LSS  HGNC:6708
3599               22       46188142     46228825          LSS  HGNC:6708
3600               22       46188142     46228825          LSS  HGNC:6708
3601               22       46188142     46228825          LSS  HGNC:6708
3602               22       46188142     46228825          LSS  HGNC:6708
3603               22       46188142     46228825          LSS  HGNC:6708
3604               22       46188142     46228825          LSS  HGNC:6708
3605               22       46188142     46228825          LSS  HGNC:6708
3606               22       46188142     46228825          LSS  HGNC:6708
3607               22       46188142     46228825          LSS  HGNC:6708
3608               22       46188142     46228825          LSS  HGNC:6708
3609               22       46188142     46228825          LSS  HGNC:6708
3610               22       46188142     46228825          LSS  HGNC:6708
3611               22       46188142     46228825          LSS  HGNC:6708
3612               22       46188142     46228825          LSS  HGNC:6708
3613               22       46188142     46228825          LSS  HGNC:6708
3614               22       46188142     46228825          LSS  HGNC:6708
3615               22       46188142     46228825          LSS  HGNC:6708
3616               22       46188142     46228825          LSS  HGNC:6708
3617               22       46188142     46228825          LSS  HGNC:6708
3618               22       46188142     46228825          LSS  HGNC:6708
3619               22       46188142     46228825          LSS  HGNC:6708
3620               22       46188142     46228825          LSS  HGNC:6708
3621               22       46188142     46228825          LSS  HGNC:6708
3622               22       46188142     46228825          LSS  HGNC:6708
3623               22       46188142     46228825          LSS  HGNC:6708
3624               22       46188142     46228825          LSS  HGNC:6708
3625               22       46188142     46228825          LSS  HGNC:6708
3626               22       46188142     46228825          LSS  HGNC:6708
3627               22       46188142     46228825          LSS  HGNC:6708
3628               22       46188142     46228825          LSS  HGNC:6708
3629               22       46188142     46228825          LSS  HGNC:6708
3630               22       46188142     46228825          LSS  HGNC:6708
3631               22       46188142     46228825          LSS  HGNC:6708
3632               22       46188142     46228825          LSS  HGNC:6708
3633               22       46188142     46228825          LSS  HGNC:6708
3634               22       46188142     46228825          LSS  HGNC:6708
3635               22       46188142     46228825          LSS  HGNC:6708
3636               22       46188142     46228825          LSS  HGNC:6708
3637               22       46188142     46228825          LSS  HGNC:6708
3638               22       46188142     46228825          LSS  HGNC:6708
3639               22       46188142     46228825          LSS  HGNC:6708
3640               22       46188142     46228825          LSS  HGNC:6708
3641               22       46188142     46228825          LSS  HGNC:6708
3642               22       46188142     46228825          LSS  HGNC:6708
3643               22       46188142     46228825          LSS  HGNC:6708
3644               22       46188142     46228825          LSS  HGNC:6708
3645               22       46188142     46228825          LSS  HGNC:6708
3646               22       46188142     46228825          LSS  HGNC:6708
3647               22       46188142     46228825          LSS  HGNC:6708
3648               22       46188142     46228825          LSS  HGNC:6708
3649               22       46188142     46228825          LSS  HGNC:6708
3650               22       46188142     46228825          LSS  HGNC:6708
3651               22       46188142     46228825          LSS  HGNC:6708
3652               22       46188142     46228825          LSS  HGNC:6708
3653               22       46188142     46228825          LSS  HGNC:6708
3654               22       46188142     46228825          LSS  HGNC:6708
3655               22       46188142     46228825          LSS  HGNC:6708
3656               22       46188142     46228825          LSS  HGNC:6708
3657               22       46188142     46228825          LSS  HGNC:6708
3658               22       46188142     46228825          LSS  HGNC:6708
3659               22       46188142     46228825          LSS  HGNC:6708
3660               22       46188142     46228825          LSS  HGNC:6708
3661               22       46188142     46228825          LSS  HGNC:6708
3662               22       46188142     46228825          LSS  HGNC:6708
3663               22       46188142     46228825          LSS  HGNC:6708
3664               22       46188142     46228825          LSS  HGNC:6708
3665               22       46188142     46228825          LSS  HGNC:6708
3666               22       46188142     46228825          LSS  HGNC:6708
3667               22       46188142     46228825          LSS  HGNC:6708
3668               22       46188142     46228825          LSS  HGNC:6708
3669               22       46188142     46228825          LSS  HGNC:6708
3670               22       46188142     46228825          LSS  HGNC:6708
3671               22       46188142     46228825          LSS  HGNC:6708
3672               22       46188142     46228825          LSS  HGNC:6708
3673               22       46188142     46228825          LSS  HGNC:6708
3674               22       46188142     46228825          LSS  HGNC:6708
3675               22       46188142     46228825          LSS  HGNC:6708
3676               22       46188142     46228825          LSS  HGNC:6708
3677               22       46188142     46228825          LSS  HGNC:6708
3678               22       46188142     46228825          LSS  HGNC:6708
3679               22       46188142     46228825          LSS  HGNC:6708
3680               22       46188142     46228825          LSS  HGNC:6708
3681               22       41798226     41879483       PRDM15 HGNC:13999
3682               22       41798226     41879483       PRDM15 HGNC:13999
3683               22       41798226     41879483       PRDM15 HGNC:13999
3684               22       41798226     41879483       PRDM15 HGNC:13999
3685               22       41798226     41879483       PRDM15 HGNC:13999
3686               22       41798226     41879483       PRDM15 HGNC:13999
3687               22       41798226     41879483       PRDM15 HGNC:13999
3688               22       41798226     41879483       PRDM15 HGNC:13999
3689               22       41798226     41879483       PRDM15 HGNC:13999
3690               22       41798226     41879483       PRDM15 HGNC:13999
3691               22       41798226     41879483       PRDM15 HGNC:13999
3692               22       41798226     41879483       PRDM15 HGNC:13999
3693               22       41798226     41879483       PRDM15 HGNC:13999
3694               22       41798226     41879483       PRDM15 HGNC:13999
3695               22       41798226     41879483       PRDM15 HGNC:13999
3696               22       41798226     41879483       PRDM15 HGNC:13999
3697               22       41798226     41879483       PRDM15 HGNC:13999
3698               22       41798226     41879483       PRDM15 HGNC:13999
3699               22       41798226     41879483       PRDM15 HGNC:13999
3700               22       41798226     41879483       PRDM15 HGNC:13999
3701               22       41798226     41879483       PRDM15 HGNC:13999
3702               22       41798226     41879483       PRDM15 HGNC:13999
3703               22       41798226     41879483       PRDM15 HGNC:13999
3704               22       41798226     41879483       PRDM15 HGNC:13999
3705               22       41798226     41879483       PRDM15 HGNC:13999
3706               22       41798226     41879483       PRDM15 HGNC:13999
3707               22       41798226     41879483       PRDM15 HGNC:13999
3708               22       41798226     41879483       PRDM15 HGNC:13999
3709               22       41798226     41879483       PRDM15 HGNC:13999
3710               22       41798226     41879483       PRDM15 HGNC:13999
3711               22       41798226     41879483       PRDM15 HGNC:13999
3712               22       41798226     41879483       PRDM15 HGNC:13999
3713               22       41798226     41879483       PRDM15 HGNC:13999
3714               22       41798226     41879483       PRDM15 HGNC:13999
3715               22       41798226     41879483       PRDM15 HGNC:13999
3716               22       41798226     41879483       PRDM15 HGNC:13999
3717               22       41798226     41879483       PRDM15 HGNC:13999
3718               22       41798226     41879483       PRDM15 HGNC:13999
3719               22       41798226     41879483       PRDM15 HGNC:13999
3720               22       41798226     41879483       PRDM15 HGNC:13999
3721               22       41798226     41879483       PRDM15 HGNC:13999
3722               22       41798226     41879483       PRDM15 HGNC:13999
3723               22       41798226     41879483       PRDM15 HGNC:13999
3724               22       41798226     41879483       PRDM15 HGNC:13999
3725               22       41798226     41879483       PRDM15 HGNC:13999
3726               22       41798226     41879483       PRDM15 HGNC:13999
3727               22       41798226     41879483       PRDM15 HGNC:13999
3728               22       41798226     41879483       PRDM15 HGNC:13999
3729               22       41798226     41879483       PRDM15 HGNC:13999
3730               22       41798226     41879483       PRDM15 HGNC:13999
3731               22       41798226     41879483       PRDM15 HGNC:13999
3732               22       41798226     41879483       PRDM15 HGNC:13999
3733               22       41798226     41879483       PRDM15 HGNC:13999
3734               22       41798226     41879483       PRDM15 HGNC:13999
3735               22       41798226     41879483       PRDM15 HGNC:13999
3736               22       41798226     41879483       PRDM15 HGNC:13999
3737               22       41798226     41879483       PRDM15 HGNC:13999
3738               22       41798226     41879483       PRDM15 HGNC:13999
3739               22       41798226     41879483       PRDM15 HGNC:13999
3740               22       41798226     41879483       PRDM15 HGNC:13999
3741               22       41798226     41879483       PRDM15 HGNC:13999
3742               22       41798226     41879483       PRDM15 HGNC:13999
3743               22       41798226     41879483       PRDM15 HGNC:13999
3744               22       41798226     41879483       PRDM15 HGNC:13999
3745               22       41798226     41879483       PRDM15 HGNC:13999
3746               22       41798226     41879483       PRDM15 HGNC:13999
3747               22       41798226     41879483       PRDM15 HGNC:13999
3748               22       41798226     41879483       PRDM15 HGNC:13999
3749               22       41798226     41879483       PRDM15 HGNC:13999
3750               22       41798226     41879483       PRDM15 HGNC:13999
3751               22       41798226     41879483       PRDM15 HGNC:13999
3752               22       41798226     41879483       PRDM15 HGNC:13999
3753               22       41798226     41879483       PRDM15 HGNC:13999
3754               22       41798226     41879483       PRDM15 HGNC:13999
3755               22       41798226     41879483       PRDM15 HGNC:13999
3756               22       41798226     41879483       PRDM15 HGNC:13999
3757               22       41798226     41879483       PRDM15 HGNC:13999
3758               22       41798226     41879483       PRDM15 HGNC:13999
3759               22       41798226     41879483       PRDM15 HGNC:13999
3760               22       41798226     41879483       PRDM15 HGNC:13999
3761               22       41798226     41879483       PRDM15 HGNC:13999
3762               22       41798226     41879483       PRDM15 HGNC:13999
3763               22       41798226     41879483       PRDM15 HGNC:13999
3764               22       41798226     41879483       PRDM15 HGNC:13999
3765               22       41798226     41879483       PRDM15 HGNC:13999
3766               22       41798226     41879483       PRDM15 HGNC:13999
3767               22       41798226     41879483       PRDM15 HGNC:13999
3768               22       41798226     41879483       PRDM15 HGNC:13999
3769               22       41798226     41879483       PRDM15 HGNC:13999
3770               22       41798226     41879483       PRDM15 HGNC:13999
3771               22       41798226     41879483       PRDM15 HGNC:13999
3772               22       41798226     41879483       PRDM15 HGNC:13999
3773               22       41798226     41879483       PRDM15 HGNC:13999
3774               22       41798226     41879483       PRDM15 HGNC:13999
3775               22       41798226     41879483       PRDM15 HGNC:13999
3776               22       41798226     41879483       PRDM15 HGNC:13999
3777               22       41798226     41879483       PRDM15 HGNC:13999
3778               22       41798226     41879483       PRDM15 HGNC:13999
3779               22       41798226     41879483       PRDM15 HGNC:13999
3780               22       41798226     41879483       PRDM15 HGNC:13999
3781               22       41798226     41879483       PRDM15 HGNC:13999
3782               22       41798226     41879483       PRDM15 HGNC:13999
3783               22       41798226     41879483       PRDM15 HGNC:13999
3784               22       41798226     41879483       PRDM15 HGNC:13999
3785               22       41798226     41879483       PRDM15 HGNC:13999
3786               22       41798226     41879483       PRDM15 HGNC:13999
3787               22       41798226     41879483       PRDM15 HGNC:13999
3788               22       41798226     41879483       PRDM15 HGNC:13999
3789               22       41798226     41879483       PRDM15 HGNC:13999
3790               22       41798226     41879483       PRDM15 HGNC:13999
3791               22       41798226     41879483       PRDM15 HGNC:13999
3792               22       41798226     41879483       PRDM15 HGNC:13999
3793               22       41798226     41879483       PRDM15 HGNC:13999
3794               22       41798226     41879483       PRDM15 HGNC:13999
3795               22       41798226     41879483       PRDM15 HGNC:13999
3796               22       41798226     41879483       PRDM15 HGNC:13999
3797               22       41798226     41879483       PRDM15 HGNC:13999
3798               22       41798226     41879483       PRDM15 HGNC:13999
3799               22       41798226     41879483       PRDM15 HGNC:13999
3800               22       41798226     41879483       PRDM15 HGNC:13999
3801               22       41798226     41879483       PRDM15 HGNC:13999
3802               22       41798226     41879483       PRDM15 HGNC:13999
3803               22       41798226     41879483       PRDM15 HGNC:13999
3804               22       41798226     41879483       PRDM15 HGNC:13999
3805               22       41798226     41879483       PRDM15 HGNC:13999
3806               22       41798226     41879483       PRDM15 HGNC:13999
3807               22       41798226     41879483       PRDM15 HGNC:13999
3808               22       41798226     41879483       PRDM15 HGNC:13999
3809               22       41798226     41879483       PRDM15 HGNC:13999
3810               22       41798226     41879483       PRDM15 HGNC:13999
3811               22       41798226     41879483       PRDM15 HGNC:13999
3812               22       41798226     41879483       PRDM15 HGNC:13999
3813               22       41798226     41879483       PRDM15 HGNC:13999
3814               22       41798226     41879483       PRDM15 HGNC:13999
3815               22       41798226     41879483       PRDM15 HGNC:13999
3816               22       41798226     41879483       PRDM15 HGNC:13999
3817               22       41798226     41879483       PRDM15 HGNC:13999
3818               22       41798226     41879483       PRDM15 HGNC:13999
3819               22       41798226     41879483       PRDM15 HGNC:13999
3820               22       41798226     41879483       PRDM15 HGNC:13999
3821               22       41798226     41879483       PRDM15 HGNC:13999
3822               22       41798226     41879483       PRDM15 HGNC:13999
3823               22       41798226     41879483       PRDM15 HGNC:13999
3824               22       41798226     41879483       PRDM15 HGNC:13999
3825               22       41798226     41879483       PRDM15 HGNC:13999
3826               22       41798226     41879483       PRDM15 HGNC:13999
3827               22       41798226     41879483       PRDM15 HGNC:13999
3828               22       41798226     41879483       PRDM15 HGNC:13999
3829               22       41798226     41879483       PRDM15 HGNC:13999
3830               22       41798226     41879483       PRDM15 HGNC:13999
3831               22       41798226     41879483       PRDM15 HGNC:13999
3832               22       41798226     41879483       PRDM15 HGNC:13999
3833               22       41798226     41879483       PRDM15 HGNC:13999
3834               22       41798226     41879483       PRDM15 HGNC:13999
3835               22       41798226     41879483       PRDM15 HGNC:13999
3836               22       41798226     41879483       PRDM15 HGNC:13999
3837               22       41798226     41879483       PRDM15 HGNC:13999
3838               22       41798226     41879483       PRDM15 HGNC:13999
3839               22       41798226     41879483       PRDM15 HGNC:13999
3840               22       41798226     41879483       PRDM15 HGNC:13999
3841               22       41798226     41879483       PRDM15 HGNC:13999
3842               22       41798226     41879483       PRDM15 HGNC:13999
3843               22       41798226     41879483       PRDM15 HGNC:13999
3844               22       41798226     41879483       PRDM15 HGNC:13999
3845               22       41798226     41879483       PRDM15 HGNC:13999
3846               22       41798226     41879483       PRDM15 HGNC:13999
3847               22       41798226     41879483       PRDM15 HGNC:13999
3848               22       41798226     41879483       PRDM15 HGNC:13999
3849               22       41798226     41879483       PRDM15 HGNC:13999
3850               22       41798226     41879483       PRDM15 HGNC:13999
3851               22       41798226     41879483       PRDM15 HGNC:13999
3852               22       41798226     41879483       PRDM15 HGNC:13999
3853               22       41798226     41879483       PRDM15 HGNC:13999
3854               22       41798226     41879483       PRDM15 HGNC:13999
3855               22       41798226     41879483       PRDM15 HGNC:13999
3856               22       41798226     41879483       PRDM15 HGNC:13999
3857               22       41798226     41879483       PRDM15 HGNC:13999
3858               22       41798226     41879483       PRDM15 HGNC:13999
3859               22       41798226     41879483       PRDM15 HGNC:13999
3860               22       41798226     41879483       PRDM15 HGNC:13999
3861               22       41798226     41879483       PRDM15 HGNC:13999
3862               22       41798226     41879483       PRDM15 HGNC:13999
3863               22       41798226     41879483       PRDM15 HGNC:13999
3864               22       41798226     41879483       PRDM15 HGNC:13999
3865               22       41798226     41879483       PRDM15 HGNC:13999
3866               22       41798226     41879483       PRDM15 HGNC:13999
3867               22       41798226     41879483       PRDM15 HGNC:13999
3868               22       41798226     41879483       PRDM15 HGNC:13999
3869               22       41798226     41879483       PRDM15 HGNC:13999
3870               22       41798226     41879483       PRDM15 HGNC:13999
3871               22       41798226     41879483       PRDM15 HGNC:13999
3872               22       41798226     41879483       PRDM15 HGNC:13999
3873               22       41798226     41879483       PRDM15 HGNC:13999
3874               22       41798226     41879483       PRDM15 HGNC:13999
3875               22       41798226     41879483       PRDM15 HGNC:13999
3876               22       41798226     41879483       PRDM15 HGNC:13999
3877               22       41798226     41879483       PRDM15 HGNC:13999
3878               22       41798226     41879483       PRDM15 HGNC:13999
3879               22       41798226     41879483       PRDM15 HGNC:13999
3880               22       41798226     41879483       PRDM15 HGNC:13999
3881               22       41798226     41879483       PRDM15 HGNC:13999
3882               22       41798226     41879483       PRDM15 HGNC:13999
3883               22       41798226     41879483       PRDM15 HGNC:13999
3884               22       41798226     41879483       PRDM15 HGNC:13999
3885               22       41798226     41879483       PRDM15 HGNC:13999
3886               22       41798226     41879483       PRDM15 HGNC:13999
3887               22       41798226     41879483       PRDM15 HGNC:13999
3888               22       41798226     41879483       PRDM15 HGNC:13999
3889               22       41798226     41879483       PRDM15 HGNC:13999
3890               22       41798226     41879483       PRDM15 HGNC:13999
3891               22       41798226     41879483       PRDM15 HGNC:13999
3892               22       41798226     41879483       PRDM15 HGNC:13999
3893               22       41798226     41879483       PRDM15 HGNC:13999
3894               22       41798226     41879483       PRDM15 HGNC:13999
3895               22       41798226     41879483       PRDM15 HGNC:13999
3896               22       41798226     41879483       PRDM15 HGNC:13999
3897               22       41798226     41879483       PRDM15 HGNC:13999
3898               22       41798226     41879483       PRDM15 HGNC:13999
3899               22       41798226     41879483       PRDM15 HGNC:13999
3900               22       41798226     41879483       PRDM15 HGNC:13999
3901               22       41798226     41879483       PRDM15 HGNC:13999
3902               22       41798226     41879483       PRDM15 HGNC:13999
3903               22       41798226     41879483       PRDM15 HGNC:13999
3904               22       41798226     41879483       PRDM15 HGNC:13999
3905               22       41798226     41879483       PRDM15 HGNC:13999
3906               22       41798226     41879483       PRDM15 HGNC:13999
3907               22       41798226     41879483       PRDM15 HGNC:13999
3908               22       41798226     41879483       PRDM15 HGNC:13999
3909               22       41798226     41879483       PRDM15 HGNC:13999
3910               22       41798226     41879483       PRDM15 HGNC:13999
3911               22       41798226     41879483       PRDM15 HGNC:13999
3912               22       41798226     41879483       PRDM15 HGNC:13999
3913               22       41798226     41879483       PRDM15 HGNC:13999
3914               22       41798226     41879483       PRDM15 HGNC:13999
3915               22       41798226     41879483       PRDM15 HGNC:13999
3916               22       41798226     41879483       PRDM15 HGNC:13999
3917               22       41798226     41879483       PRDM15 HGNC:13999
3918               22       41798226     41879483       PRDM15 HGNC:13999
3919               22       41798226     41879483       PRDM15 HGNC:13999
3920               22       41798226     41879483       PRDM15 HGNC:13999
3921               22       41798226     41879483       PRDM15 HGNC:13999
3922               22       41798226     41879483       PRDM15 HGNC:13999
3923               22       41798226     41879483       PRDM15 HGNC:13999
3924               22       41798226     41879483       PRDM15 HGNC:13999
3925               22       41798226     41879483       PRDM15 HGNC:13999
3926               22       41798226     41879483       PRDM15 HGNC:13999
3927               22       41798226     41879483       PRDM15 HGNC:13999
3928               22       41798226     41879483       PRDM15 HGNC:13999
3929               22       41798226     41879483       PRDM15 HGNC:13999
3930               22       41798226     41879483       PRDM15 HGNC:13999
3931               22       41798226     41879483       PRDM15 HGNC:13999
3932               22       41798226     41879483       PRDM15 HGNC:13999
3933               22       29077472     29175890     MAP3K7CL HGNC:16457
3934               22       29077472     29175890     MAP3K7CL HGNC:16457
3935               22       29077472     29175890     MAP3K7CL HGNC:16457
3936               22       29077472     29175890     MAP3K7CL HGNC:16457
3937               22       29077472     29175890     MAP3K7CL HGNC:16457
3938               22       29077472     29175890     MAP3K7CL HGNC:16457
3939               22       29077472     29175890     MAP3K7CL HGNC:16457
3940               22       29077472     29175890     MAP3K7CL HGNC:16457
3941               22       29077472     29175890     MAP3K7CL HGNC:16457
3942               22       29077472     29175890     MAP3K7CL HGNC:16457
3943               22       29077472     29175890     MAP3K7CL HGNC:16457
3944               22       29077472     29175890     MAP3K7CL HGNC:16457
3945               22       29077472     29175890     MAP3K7CL HGNC:16457
3946               22       29077472     29175890     MAP3K7CL HGNC:16457
3947               22       29077472     29175890     MAP3K7CL HGNC:16457
3948               22       29077472     29175890     MAP3K7CL HGNC:16457
3949               22       29077472     29175890     MAP3K7CL HGNC:16457
3950               22       29077472     29175890     MAP3K7CL HGNC:16457
3951               22       29077472     29175890     MAP3K7CL HGNC:16457
3952               22       29077472     29175890     MAP3K7CL HGNC:16457
3953               22       29077472     29175890     MAP3K7CL HGNC:16457
3954               22       29077472     29175890     MAP3K7CL HGNC:16457
3955               22       29077472     29175890     MAP3K7CL HGNC:16457
3956               22       29077472     29175890     MAP3K7CL HGNC:16457
3957               22       29077472     29175890     MAP3K7CL HGNC:16457
3958               22       29077472     29175890     MAP3K7CL HGNC:16457
3959               22       29077472     29175890     MAP3K7CL HGNC:16457
3960               22       29077472     29175890     MAP3K7CL HGNC:16457
3961               22       29077472     29175890     MAP3K7CL HGNC:16457
3962               22       29077472     29175890     MAP3K7CL HGNC:16457
3963               22       29077472     29175890     MAP3K7CL HGNC:16457
3964               22       29077472     29175890     MAP3K7CL HGNC:16457
3965               22       29077472     29175890     MAP3K7CL HGNC:16457
3966               22       29077472     29175890     MAP3K7CL HGNC:16457
3967               22       29077472     29175890     MAP3K7CL HGNC:16457
3968               22       29077472     29175890     MAP3K7CL HGNC:16457
3969               22       29077472     29175890     MAP3K7CL HGNC:16457
3970               22       29077472     29175890     MAP3K7CL HGNC:16457
3971               22       29077472     29175890     MAP3K7CL HGNC:16457
3972               22       29077472     29175890     MAP3K7CL HGNC:16457
3973               22       29077472     29175890     MAP3K7CL HGNC:16457
3974               22       29077472     29175890     MAP3K7CL HGNC:16457
3975               22       29077472     29175890     MAP3K7CL HGNC:16457
3976               22       29077472     29175890     MAP3K7CL HGNC:16457
3977               22       29077472     29175890     MAP3K7CL HGNC:16457
3978               22       29077472     29175890     MAP3K7CL HGNC:16457
3979               22       29077472     29175890     MAP3K7CL HGNC:16457
3980               22       29077472     29175890     MAP3K7CL HGNC:16457
3981               22       29077472     29175890     MAP3K7CL HGNC:16457
3982               22       29077472     29175890     MAP3K7CL HGNC:16457
3983               22       29077472     29175890     MAP3K7CL HGNC:16457
3984               22       29077472     29175890     MAP3K7CL HGNC:16457
3985               22       29077472     29175890     MAP3K7CL HGNC:16457
3986               22       29077472     29175890     MAP3K7CL HGNC:16457
3987               22       29077472     29175890     MAP3K7CL HGNC:16457
3988               22       29077472     29175890     MAP3K7CL HGNC:16457
3989               22       29077472     29175890     MAP3K7CL HGNC:16457
3990               22       29077472     29175890     MAP3K7CL HGNC:16457
3991               22       29077472     29175890     MAP3K7CL HGNC:16457
3992               22       29077472     29175890     MAP3K7CL HGNC:16457
3993               22       29077472     29175890     MAP3K7CL HGNC:16457
3994               22       29077472     29175890     MAP3K7CL HGNC:16457
3995               22       29077472     29175890     MAP3K7CL HGNC:16457
3996               22       29077472     29175890     MAP3K7CL HGNC:16457
3997               22       29077472     29175890     MAP3K7CL HGNC:16457
3998               22       29077472     29175890     MAP3K7CL HGNC:16457
3999               22       29077472     29175890     MAP3K7CL HGNC:16457
4000               22       29077472     29175890     MAP3K7CL HGNC:16457
4001               22       29077472     29175890     MAP3K7CL HGNC:16457
4002               22       29077472     29175890     MAP3K7CL HGNC:16457
4003               22       29077472     29175890     MAP3K7CL HGNC:16457
4004               22       29077472     29175890     MAP3K7CL HGNC:16457
4005               22       29077472     29175890     MAP3K7CL HGNC:16457
4006               22       29077472     29175890     MAP3K7CL HGNC:16457
4007               22       29077472     29175890     MAP3K7CL HGNC:16457
4008               22       29077472     29175890     MAP3K7CL HGNC:16457
4009               22       29077472     29175890     MAP3K7CL HGNC:16457
4010               22       29077472     29175890     MAP3K7CL HGNC:16457
4011               22       29077472     29175890     MAP3K7CL HGNC:16457
4012               22       29077472     29175890     MAP3K7CL HGNC:16457
4013               22       29077472     29175890     MAP3K7CL HGNC:16457
4014               22       29077472     29175890     MAP3K7CL HGNC:16457
4015               22       29077472     29175890     MAP3K7CL HGNC:16457
4016               22       29077472     29175890     MAP3K7CL HGNC:16457
4017               22       29077472     29175890     MAP3K7CL HGNC:16457
4018               22       29077472     29175890     MAP3K7CL HGNC:16457
4019               22       29077472     29175890     MAP3K7CL HGNC:16457
4020               22       29077472     29175890     MAP3K7CL HGNC:16457
4021               22       29077472     29175890     MAP3K7CL HGNC:16457
4022               22       29077472     29175890     MAP3K7CL HGNC:16457
4023               22       29077472     29175890     MAP3K7CL HGNC:16457
4024               22       29077472     29175890     MAP3K7CL HGNC:16457
4025               22       29077472     29175890     MAP3K7CL HGNC:16457
4026               22       29077472     29175890     MAP3K7CL HGNC:16457
4027               22       29077472     29175890     MAP3K7CL HGNC:16457
4028               22       29077472     29175890     MAP3K7CL HGNC:16457
4029               22       29077472     29175890     MAP3K7CL HGNC:16457
4030               22       29077472     29175890     MAP3K7CL HGNC:16457
4031               22       29077472     29175890     MAP3K7CL HGNC:16457
4032               22       29077472     29175890     MAP3K7CL HGNC:16457
4033               22       29127702     29128189      RPL12P9 HGNC:23766
4034               22        6060341      6076306    LINC01669 HGNC:52457
4035               22        6060341      6076306    LINC01669 HGNC:52457
4036               22        6060341      6076306    LINC01669 HGNC:52457
4037               22        6060341      6076306    LINC01669 HGNC:52457
4038               22        6060341      6076306    LINC01669 HGNC:52457
4039               22        6060341      6076306    LINC01669 HGNC:52457
4040               22        6060341      6076306    LINC01669 HGNC:52457
4041               22        6060341      6076306    LINC01669 HGNC:52457
4042               22        6060341      6076306    LINC01669 HGNC:52457
4043               22        6060341      6076306    LINC01669 HGNC:52457
4044               22        6060341      6076306    LINC01669 HGNC:52457
4045               22        6060341      6076306    LINC01669 HGNC:52457
4046               22        6060341      6076306    LINC01669 HGNC:52457
4047               22        6060341      6076306    LINC01669 HGNC:52457
4048               22        6060341      6076306    LINC01669 HGNC:52457
4049               22        5703183      5705638                        
4050               22        5705346      5707161                        
4051               22        5705346      5707161                        
4052               22       23065492     23131207                        
4053               22       23065492     23131207                        
4054               22       23065492     23131207                        
4055               22       23065492     23131207                        
4056               22       23065492     23131207                        
4057               22       22008945     22098460    LINC01687 HGNC:52474
4058               22       22008945     22098460    LINC01687 HGNC:52474
4059               22       22008945     22098460    LINC01687 HGNC:52474
4060               22       22008945     22098460    LINC01687 HGNC:52474
4061               22       22008945     22098460    LINC01687 HGNC:52474
4062               22       22008945     22098460    LINC01687 HGNC:52474
4063               22       22008945     22098460    LINC01687 HGNC:52474
4064               22       22008945     22098460    LINC01687 HGNC:52474
4065               22       22008945     22098460    LINC01687 HGNC:52474
4066               22       22008945     22098460    LINC01687 HGNC:52474
4067               22       22008945     22098460    LINC01687 HGNC:52474
4068               22       22008945     22098460    LINC01687 HGNC:52474
4069               22       21933316     21975682                        
4070               22       21933316     21975682                        
4071               22       21933316     21975682                        
4072               22       36060433     36064409                        
4073               22       36060433     36064409                        
4074               22       36060433     36064409                        
4075               22       19893280     19899756    LINC01683 HGNC:52471
4076               22       19893280     19899756    LINC01683 HGNC:52471
4077               22       19893280     19899756    LINC01683 HGNC:52471
4078               22       32412007     32515398        EVA1C HGNC:13239
4079               22       32412007     32515398        EVA1C HGNC:13239
4080               22       32412007     32515398        EVA1C HGNC:13239
4081               22       32412007     32515398        EVA1C HGNC:13239
4082               22       32412007     32515398        EVA1C HGNC:13239
4083               22       32412007     32515398        EVA1C HGNC:13239
4084               22       32412007     32515398        EVA1C HGNC:13239
4085               22       32412007     32515398        EVA1C HGNC:13239
4086               22       32412007     32515398        EVA1C HGNC:13239
4087               22       32412007     32515398        EVA1C HGNC:13239
4088               22       32412007     32515398        EVA1C HGNC:13239
4089               22       32412007     32515398        EVA1C HGNC:13239
4090               22       32412007     32515398        EVA1C HGNC:13239
4091               22       32412007     32515398        EVA1C HGNC:13239
4092               22       32412007     32515398        EVA1C HGNC:13239
4093               22       32412007     32515398        EVA1C HGNC:13239
4094               22       32412007     32515398        EVA1C HGNC:13239
4095               22       32412007     32515398        EVA1C HGNC:13239
4096               22       32412007     32515398        EVA1C HGNC:13239
4097               22       32412007     32515398        EVA1C HGNC:13239
4098               22       32412007     32515398        EVA1C HGNC:13239
4099               22       32412007     32515398        EVA1C HGNC:13239
4100               22       32412007     32515398        EVA1C HGNC:13239
4101               22       32412007     32515398        EVA1C HGNC:13239
4102               22       32412007     32515398        EVA1C HGNC:13239
4103               22       32412007     32515398        EVA1C HGNC:13239
4104               22       32412007     32515398        EVA1C HGNC:13239
4105               22       32412007     32515398        EVA1C HGNC:13239
4106               22       32412007     32515398        EVA1C HGNC:13239
4107               22       32412007     32515398        EVA1C HGNC:13239
4108               22       32412007     32515398        EVA1C HGNC:13239
4109               22       32412007     32515398        EVA1C HGNC:13239
4110               22       32412007     32515398        EVA1C HGNC:13239
4111               22       32412007     32515398        EVA1C HGNC:13239
4112               22       32412007     32515398        EVA1C HGNC:13239
4113               22       32412007     32515398        EVA1C HGNC:13239
4114               22       32412007     32515398        EVA1C HGNC:13239
4115               22       32412007     32515398        EVA1C HGNC:13239
4116               22       32412007     32515398        EVA1C HGNC:13239
4117               22       32412007     32515398        EVA1C HGNC:13239
4118               22       32412007     32515398        EVA1C HGNC:13239
4119               22       32412007     32515398        EVA1C HGNC:13239
4120               22       32412007     32515398        EVA1C HGNC:13239
4121               22       32412007     32515398        EVA1C HGNC:13239
4122               22       32412007     32515398        EVA1C HGNC:13239
4123               22       32412007     32515398        EVA1C HGNC:13239
4124               22       32412007     32515398        EVA1C HGNC:13239
4125               22       32412007     32515398        EVA1C HGNC:13239
4126               22       32412007     32515398        EVA1C HGNC:13239
4127               22       32412007     32515398        EVA1C HGNC:13239
4128               22       32412007     32515398        EVA1C HGNC:13239
4129               22       32412007     32515398        EVA1C HGNC:13239
4130               22       32412007     32515398        EVA1C HGNC:13239
4131               22       32412007     32515398        EVA1C HGNC:13239
4132               22       32412007     32515398        EVA1C HGNC:13239
4133               22       32412007     32515398        EVA1C HGNC:13239
4134               22       32412007     32515398        EVA1C HGNC:13239
4135               22       32412007     32515398        EVA1C HGNC:13239
4136               22       32412007     32515398        EVA1C HGNC:13239
4137               22       32412007     32515398        EVA1C HGNC:13239
4138               22       32412007     32515398        EVA1C HGNC:13239
4139               22       32412007     32515398        EVA1C HGNC:13239
4140               22       32412007     32515398        EVA1C HGNC:13239
4141               22       32412007     32515398        EVA1C HGNC:13239
4142               22       32412007     32515398        EVA1C HGNC:13239
4143               22       32412007     32515398        EVA1C HGNC:13239
4144               22       32412007     32515398        EVA1C HGNC:13239
4145               22       32412007     32515398        EVA1C HGNC:13239
4146               22       32412007     32515398        EVA1C HGNC:13239
4147               22       32412007     32515398        EVA1C HGNC:13239
4148               22       32412007     32515398        EVA1C HGNC:13239
4149               22       32412007     32515398        EVA1C HGNC:13239
4150               22       32412007     32515398        EVA1C HGNC:13239
4151               22       38988708     39006154                        
4152               22       38988708     39006154                        
4153               22       38988708     39006154                        
4154               22       14064326     14069088  ANKRD20A18P HGNC:23756
4155               22       14064326     14069088  ANKRD20A18P HGNC:23756
4156               22       14064326     14069088  ANKRD20A18P HGNC:23756
4157               22       13120245     13120808                        
4158               22       31118417     31559978        TIAM1 HGNC:11805
4159               22       31118417     31559978        TIAM1 HGNC:11805
4160               22       31118417     31559978        TIAM1 HGNC:11805
4161               22       31118417     31559978        TIAM1 HGNC:11805
4162               22       31118417     31559978        TIAM1 HGNC:11805
4163               22       31118417     31559978        TIAM1 HGNC:11805
4164               22       31118417     31559978        TIAM1 HGNC:11805
4165               22       31118417     31559978        TIAM1 HGNC:11805
4166               22       31118417     31559978        TIAM1 HGNC:11805
4167               22       31118417     31559978        TIAM1 HGNC:11805
4168               22       31118417     31559978        TIAM1 HGNC:11805
4169               22       31118417     31559978        TIAM1 HGNC:11805
4170               22       31118417     31559978        TIAM1 HGNC:11805
4171               22       31118417     31559978        TIAM1 HGNC:11805
4172               22       31118417     31559978        TIAM1 HGNC:11805
4173               22       31118417     31559978        TIAM1 HGNC:11805
4174               22       31118417     31559978        TIAM1 HGNC:11805
4175               22       31118417     31559978        TIAM1 HGNC:11805
4176               22       31118417     31559978        TIAM1 HGNC:11805
4177               22       31118417     31559978        TIAM1 HGNC:11805
4178               22       31118417     31559978        TIAM1 HGNC:11805
4179               22       31118417     31559978        TIAM1 HGNC:11805
4180               22       31118417     31559978        TIAM1 HGNC:11805
4181               22       31118417     31559978        TIAM1 HGNC:11805
4182               22       31118417     31559978        TIAM1 HGNC:11805
4183               22       31118417     31559978        TIAM1 HGNC:11805
4184               22       31118417     31559978        TIAM1 HGNC:11805
4185               22       31118417     31559978        TIAM1 HGNC:11805
4186               22       31118417     31559978        TIAM1 HGNC:11805
4187               22       31118417     31559978        TIAM1 HGNC:11805
4188               22       31118417     31559978        TIAM1 HGNC:11805
4189               22       31118417     31559978        TIAM1 HGNC:11805
4190               22       31118417     31559978        TIAM1 HGNC:11805
4191               22       31118417     31559978        TIAM1 HGNC:11805
4192               22       31118417     31559978        TIAM1 HGNC:11805
4193               22       31118417     31559978        TIAM1 HGNC:11805
4194               22       31118417     31559978        TIAM1 HGNC:11805
4195               22       31118417     31559978        TIAM1 HGNC:11805
4196               22       31118417     31559978        TIAM1 HGNC:11805
4197               22       31118417     31559978        TIAM1 HGNC:11805
4198               22       31118417     31559978        TIAM1 HGNC:11805
4199               22       31118417     31559978        TIAM1 HGNC:11805
4200               22       31118417     31559978        TIAM1 HGNC:11805
4201               22       31118417     31559978        TIAM1 HGNC:11805
4202               22       31118417     31559978        TIAM1 HGNC:11805
4203               22       31118417     31559978        TIAM1 HGNC:11805
4204               22       31118417     31559978        TIAM1 HGNC:11805
4205               22       31118417     31559978        TIAM1 HGNC:11805
4206               22       31118417     31559978        TIAM1 HGNC:11805
4207               22       31118417     31559978        TIAM1 HGNC:11805
4208               22       31118417     31559978        TIAM1 HGNC:11805
4209               22       31118417     31559978        TIAM1 HGNC:11805
4210               22       31118417     31559978        TIAM1 HGNC:11805
4211               22       31118417     31559978        TIAM1 HGNC:11805
4212               22       31118417     31559978        TIAM1 HGNC:11805
4213               22       31118417     31559978        TIAM1 HGNC:11805
4214               22       31118417     31559978        TIAM1 HGNC:11805
4215               22       31118417     31559978        TIAM1 HGNC:11805
4216               22       31118417     31559978        TIAM1 HGNC:11805
4217               22       31118417     31559978        TIAM1 HGNC:11805
4218               22       31118417     31559978        TIAM1 HGNC:11805
4219               22       31118417     31559978        TIAM1 HGNC:11805
4220               22       31118417     31559978        TIAM1 HGNC:11805
4221               22       31118417     31559978        TIAM1 HGNC:11805
4222               22       31118417     31559978        TIAM1 HGNC:11805
4223               22       31118417     31559978        TIAM1 HGNC:11805
4224               22       31118417     31559978        TIAM1 HGNC:11805
4225               22       31118417     31559978        TIAM1 HGNC:11805
4226               22       31118417     31559978        TIAM1 HGNC:11805
4227               22       31118417     31559978        TIAM1 HGNC:11805
4228               22       31118417     31559978        TIAM1 HGNC:11805
4229               22       31118417     31559978        TIAM1 HGNC:11805
4230               22       31118417     31559978        TIAM1 HGNC:11805
4231               22       31118417     31559978        TIAM1 HGNC:11805
4232               22       31118417     31559978        TIAM1 HGNC:11805
4233               22       31118417     31559978        TIAM1 HGNC:11805
4234               22       31118417     31559978        TIAM1 HGNC:11805
4235               22       31118417     31559978        TIAM1 HGNC:11805
4236               22       31118417     31559978        TIAM1 HGNC:11805
4237               22       31118417     31559978        TIAM1 HGNC:11805
4238               22       31118417     31559978        TIAM1 HGNC:11805
4239               22       31118417     31559978        TIAM1 HGNC:11805
4240               22       31118417     31559978        TIAM1 HGNC:11805
4241               22       31118417     31559978        TIAM1 HGNC:11805
4242               22       31118417     31559978        TIAM1 HGNC:11805
4243               22       31118417     31559978        TIAM1 HGNC:11805
4244               22       31118417     31559978        TIAM1 HGNC:11805
4245               22       31118417     31559978        TIAM1 HGNC:11805
4246               22       31118417     31559978        TIAM1 HGNC:11805
4247               22       25639273     25717563         JAM2 HGNC:14686
4248               22       25639273     25717563         JAM2 HGNC:14686
4249               22       25639273     25717563         JAM2 HGNC:14686
4250               22       25639273     25717563         JAM2 HGNC:14686
4251               22       25639273     25717563         JAM2 HGNC:14686
4252               22       25639273     25717563         JAM2 HGNC:14686
4253               22       25639273     25717563         JAM2 HGNC:14686
4254               22       25639273     25717563         JAM2 HGNC:14686
4255               22       25639273     25717563         JAM2 HGNC:14686
4256               22       25639273     25717563         JAM2 HGNC:14686
4257               22       25639273     25717563         JAM2 HGNC:14686
4258               22       25639273     25717563         JAM2 HGNC:14686
4259               22       25639273     25717563         JAM2 HGNC:14686
4260               22       25639273     25717563         JAM2 HGNC:14686
4261               22       25639273     25717563         JAM2 HGNC:14686
4262               22       25639273     25717563         JAM2 HGNC:14686
4263               22       25639273     25717563         JAM2 HGNC:14686
4264               22       25639273     25717563         JAM2 HGNC:14686
4265               22       25639273     25717563         JAM2 HGNC:14686
4266               22       25639273     25717563         JAM2 HGNC:14686
4267               22       25639273     25717563         JAM2 HGNC:14686
4268               22       25639273     25717563         JAM2 HGNC:14686
4269               22       25639273     25717563         JAM2 HGNC:14686
4270               22       25639273     25717563         JAM2 HGNC:14686
4271               22       25639273     25717563         JAM2 HGNC:14686
4272               22       25639273     25717563         JAM2 HGNC:14686
4273               22       25639273     25717563         JAM2 HGNC:14686
4274               22       25639273     25717563         JAM2 HGNC:14686
4275               22       25639273     25717563         JAM2 HGNC:14686
4276               22       25639273     25717563         JAM2 HGNC:14686
4277               22       25639273     25717563         JAM2 HGNC:14686
4278               22       25639273     25717563         JAM2 HGNC:14686
4279               22       25639273     25717563         JAM2 HGNC:14686
4280               22       25639273     25717563         JAM2 HGNC:14686
4281               22       25639273     25717563         JAM2 HGNC:14686
4282               22       25639273     25717563         JAM2 HGNC:14686
4283               22       25639273     25717563         JAM2 HGNC:14686
4284               22       25639273     25717563         JAM2 HGNC:14686
4285               22       25639273     25717563         JAM2 HGNC:14686
4286               22       25639273     25717563         JAM2 HGNC:14686
4287               22       25639273     25717563         JAM2 HGNC:14686
4288               22       25639273     25717563         JAM2 HGNC:14686
4289               22       25639273     25717563         JAM2 HGNC:14686
4290               22       25639273     25717563         JAM2 HGNC:14686
4291               22       25639273     25717563         JAM2 HGNC:14686
4292               22       25639273     25717563         JAM2 HGNC:14686
4293               22       30501658     30502118    KRTAP19-5 HGNC:18940
4294               22       44414589     44425273     TRPM2-AS HGNC:50758
4295               22       44414589     44425273     TRPM2-AS HGNC:50758
4296               22       44414589     44425273     TRPM2-AS HGNC:50758
4297               22       44414589     44425273     TRPM2-AS HGNC:50758
4298               22       44414589     44425273     TRPM2-AS HGNC:50758
4299               22       44350164     44443082        TRPM2 HGNC:12339
4300               22       44350164     44443082        TRPM2 HGNC:12339
4301               22       44350164     44443082        TRPM2 HGNC:12339
4302               22       44350164     44443082        TRPM2 HGNC:12339
4303               22       44350164     44443082        TRPM2 HGNC:12339
4304               22       44350164     44443082        TRPM2 HGNC:12339
4305               22       44350164     44443082        TRPM2 HGNC:12339
4306               22       44350164     44443082        TRPM2 HGNC:12339
4307               22       44350164     44443082        TRPM2 HGNC:12339
4308               22       44350164     44443082        TRPM2 HGNC:12339
4309               22       44350164     44443082        TRPM2 HGNC:12339
4310               22       44350164     44443082        TRPM2 HGNC:12339
4311               22       44350164     44443082        TRPM2 HGNC:12339
4312               22       44350164     44443082        TRPM2 HGNC:12339
4313               22       44350164     44443082        TRPM2 HGNC:12339
4314               22       44350164     44443082        TRPM2 HGNC:12339
4315               22       44350164     44443082        TRPM2 HGNC:12339
4316               22       44350164     44443082        TRPM2 HGNC:12339
4317               22       44350164     44443082        TRPM2 HGNC:12339
4318               22       44350164     44443082        TRPM2 HGNC:12339
4319               22       44350164     44443082        TRPM2 HGNC:12339
4320               22       44350164     44443082        TRPM2 HGNC:12339
4321               22       44350164     44443082        TRPM2 HGNC:12339
4322               22       44350164     44443082        TRPM2 HGNC:12339
4323               22       44350164     44443082        TRPM2 HGNC:12339
4324               22       44350164     44443082        TRPM2 HGNC:12339
4325               22       44350164     44443082        TRPM2 HGNC:12339
4326               22       44350164     44443082        TRPM2 HGNC:12339
4327               22       44350164     44443082        TRPM2 HGNC:12339
4328               22       44350164     44443082        TRPM2 HGNC:12339
4329               22       44350164     44443082        TRPM2 HGNC:12339
4330               22       44350164     44443082        TRPM2 HGNC:12339
4331               22       44350164     44443082        TRPM2 HGNC:12339
4332               22       44350164     44443082        TRPM2 HGNC:12339
4333               22       44350164     44443082        TRPM2 HGNC:12339
4334               22       44350164     44443082        TRPM2 HGNC:12339
4335               22       44350164     44443082        TRPM2 HGNC:12339
4336               22       44350164     44443082        TRPM2 HGNC:12339
4337               22       44350164     44443082        TRPM2 HGNC:12339
4338               22       44350164     44443082        TRPM2 HGNC:12339
4339               22       44350164     44443082        TRPM2 HGNC:12339
4340               22       44350164     44443082        TRPM2 HGNC:12339
4341               22       44350164     44443082        TRPM2 HGNC:12339
4342               22       44350164     44443082        TRPM2 HGNC:12339
4343               22       44350164     44443082        TRPM2 HGNC:12339
4344               22       44350164     44443082        TRPM2 HGNC:12339
4345               22       44350164     44443082        TRPM2 HGNC:12339
4346               22       44350164     44443082        TRPM2 HGNC:12339
4347               22       44350164     44443082        TRPM2 HGNC:12339
4348               22       44350164     44443082        TRPM2 HGNC:12339
4349               22       44350164     44443082        TRPM2 HGNC:12339
4350               22       44350164     44443082        TRPM2 HGNC:12339
4351               22       44350164     44443082        TRPM2 HGNC:12339
4352               22       44350164     44443082        TRPM2 HGNC:12339
4353               22       44350164     44443082        TRPM2 HGNC:12339
4354               22       44350164     44443082        TRPM2 HGNC:12339
4355               22       44350164     44443082        TRPM2 HGNC:12339
4356               22       44350164     44443082        TRPM2 HGNC:12339
4357               22       44350164     44443082        TRPM2 HGNC:12339
4358               22       44350164     44443082        TRPM2 HGNC:12339
4359               22       44350164     44443082        TRPM2 HGNC:12339
4360               22       44350164     44443082        TRPM2 HGNC:12339
4361               22       44350164     44443082        TRPM2 HGNC:12339
4362               22       44350164     44443082        TRPM2 HGNC:12339
4363               22       44350164     44443082        TRPM2 HGNC:12339
4364               22       44350164     44443082        TRPM2 HGNC:12339
4365               22       44350164     44443082        TRPM2 HGNC:12339
4366               22       44350164     44443082        TRPM2 HGNC:12339
4367               22       44350164     44443082        TRPM2 HGNC:12339
4368               22       44350164     44443082        TRPM2 HGNC:12339
4369               22       44350164     44443082        TRPM2 HGNC:12339
4370               22       44350164     44443082        TRPM2 HGNC:12339
4371               22       44350164     44443082        TRPM2 HGNC:12339
4372               22       44350164     44443082        TRPM2 HGNC:12339
4373               22       44350164     44443082        TRPM2 HGNC:12339
4374               22       44350164     44443082        TRPM2 HGNC:12339
4375               22       44350164     44443082        TRPM2 HGNC:12339
4376               22       44350164     44443082        TRPM2 HGNC:12339
4377               22       44350164     44443082        TRPM2 HGNC:12339
4378               22       44350164     44443082        TRPM2 HGNC:12339
4379               22       44350164     44443082        TRPM2 HGNC:12339
4380               22       44350164     44443082        TRPM2 HGNC:12339
4381               22       44350164     44443082        TRPM2 HGNC:12339
4382               22       44350164     44443082        TRPM2 HGNC:12339
4383               22       44350164     44443082        TRPM2 HGNC:12339
4384               22       44350164     44443082        TRPM2 HGNC:12339
4385               22       44350164     44443082        TRPM2 HGNC:12339
4386               22       44350164     44443082        TRPM2 HGNC:12339
4387               22       44350164     44443082        TRPM2 HGNC:12339
4388               22       44350164     44443082        TRPM2 HGNC:12339
4389               22       44350164     44443082        TRPM2 HGNC:12339
4390               22       44350164     44443082        TRPM2 HGNC:12339
4391               22       44350164     44443082        TRPM2 HGNC:12339
4392               22       44350164     44443082        TRPM2 HGNC:12339
4393               22       44350164     44443082        TRPM2 HGNC:12339
4394               22       44350164     44443082        TRPM2 HGNC:12339
4395               22       44350164     44443082        TRPM2 HGNC:12339
4396               22       44350164     44443082        TRPM2 HGNC:12339
4397               22       44350164     44443082        TRPM2 HGNC:12339
4398               22       44350164     44443082        TRPM2 HGNC:12339
4399               22       44350164     44443082        TRPM2 HGNC:12339
4400               22       44350164     44443082        TRPM2 HGNC:12339
4401               22       44350164     44443082        TRPM2 HGNC:12339
4402               22       44350164     44443082        TRPM2 HGNC:12339
4403               22       44350164     44443082        TRPM2 HGNC:12339
4404               22       44350164     44443082        TRPM2 HGNC:12339
4405               22       44350164     44443082        TRPM2 HGNC:12339
4406               22       44350164     44443082        TRPM2 HGNC:12339
4407               22       44350164     44443082        TRPM2 HGNC:12339
4408               22       44350164     44443082        TRPM2 HGNC:12339
4409               22       44350164     44443082        TRPM2 HGNC:12339
4410               22       44350164     44443082        TRPM2 HGNC:12339
4411               22       44350164     44443082        TRPM2 HGNC:12339
4412               22       44350164     44443082        TRPM2 HGNC:12339
4413               22       44350164     44443082        TRPM2 HGNC:12339
4414               22       44350164     44443082        TRPM2 HGNC:12339
4415               22       44350164     44443082        TRPM2 HGNC:12339
4416               22       44350164     44443082        TRPM2 HGNC:12339
4417               22       44350164     44443082        TRPM2 HGNC:12339
4418               22       44350164     44443082        TRPM2 HGNC:12339
4419               22       44350164     44443082        TRPM2 HGNC:12339
4420               22       44350164     44443082        TRPM2 HGNC:12339
4421               22       44350164     44443082        TRPM2 HGNC:12339
4422               22       44350164     44443082        TRPM2 HGNC:12339
4423               22       44350164     44443082        TRPM2 HGNC:12339
4424               22       44350164     44443082        TRPM2 HGNC:12339
4425               22       44350164     44443082        TRPM2 HGNC:12339
4426               22       44350164     44443082        TRPM2 HGNC:12339
4427               22       44350164     44443082        TRPM2 HGNC:12339
4428               22       44350164     44443082        TRPM2 HGNC:12339
4429               22       44350164     44443082        TRPM2 HGNC:12339
4430               22       44350164     44443082        TRPM2 HGNC:12339
4431               22       44350164     44443082        TRPM2 HGNC:12339
4432               22       44350164     44443082        TRPM2 HGNC:12339
4433               22       44350164     44443082        TRPM2 HGNC:12339
4434               22       44350164     44443082        TRPM2 HGNC:12339
4435               22       44350164     44443082        TRPM2 HGNC:12339
4436               22       44350164     44443082        TRPM2 HGNC:12339
4437               22       44350164     44443082        TRPM2 HGNC:12339
4438               22       44350164     44443082        TRPM2 HGNC:12339
4439               22       44350164     44443082        TRPM2 HGNC:12339
4440               22       44350164     44443082        TRPM2 HGNC:12339
4441               22       44350164     44443082        TRPM2 HGNC:12339
4442               22       44350164     44443082        TRPM2 HGNC:12339
4443               22       44350164     44443082        TRPM2 HGNC:12339
4444               22       44350164     44443082        TRPM2 HGNC:12339
4445               22       44350164     44443082        TRPM2 HGNC:12339
4446               22       44350164     44443082        TRPM2 HGNC:12339
4447               22       44350164     44443082        TRPM2 HGNC:12339
4448               22       44350164     44443082        TRPM2 HGNC:12339
4449               22       44350164     44443082        TRPM2 HGNC:12339
4450               22       44350164     44443082        TRPM2 HGNC:12339
4451               22       44350164     44443082        TRPM2 HGNC:12339
4452               22       44350164     44443082        TRPM2 HGNC:12339
4453               22       44350164     44443082        TRPM2 HGNC:12339
4454               22       44350164     44443082        TRPM2 HGNC:12339
4455               22       44350164     44443082        TRPM2 HGNC:12339
4456               22       44350164     44443082        TRPM2 HGNC:12339
4457               22       44350164     44443082        TRPM2 HGNC:12339
4458               22       44350164     44443082        TRPM2 HGNC:12339
4459               22       44350164     44443082        TRPM2 HGNC:12339
4460               22       44350164     44443082        TRPM2 HGNC:12339
4461               22       44350164     44443082        TRPM2 HGNC:12339
4462               22       44350164     44443082        TRPM2 HGNC:12339
4463               22       44350164     44443082        TRPM2 HGNC:12339
4464               22       44350164     44443082        TRPM2 HGNC:12339
4465               22       44350164     44443082        TRPM2 HGNC:12339
4466               22       44350164     44443082        TRPM2 HGNC:12339
4467               22       44350164     44443082        TRPM2 HGNC:12339
4468               22       44350164     44443082        TRPM2 HGNC:12339
4469               22       44350164     44443082        TRPM2 HGNC:12339
4470               22       44350164     44443082        TRPM2 HGNC:12339
4471               22       44350164     44443082        TRPM2 HGNC:12339
4472               22       44350164     44443082        TRPM2 HGNC:12339
4473               22       44350164     44443082        TRPM2 HGNC:12339
4474               22       44350164     44443082        TRPM2 HGNC:12339
4475               22       44350164     44443082        TRPM2 HGNC:12339
4476               22       44350164     44443082        TRPM2 HGNC:12339
4477               22       44350164     44443082        TRPM2 HGNC:12339
4478               22       44350164     44443082        TRPM2 HGNC:12339
4479               22       46185080     46188942                        
4480               22       46185080     46188942                        
4481               22       40615379     40630768    DSCAM-IT1 HGNC:41327
4482               22       40615379     40630768    DSCAM-IT1 HGNC:41327
4483               22       40615379     40630768    DSCAM-IT1 HGNC:41327
4484               22       40615379     40630768    DSCAM-IT1 HGNC:41327
4485               22       40615379     40630768    DSCAM-IT1 HGNC:41327
4486               22       40615379     40630768    DSCAM-IT1 HGNC:41327
4487               22       40615379     40630768    DSCAM-IT1 HGNC:41327
4488               22       40615379     40630768    DSCAM-IT1 HGNC:41327
4489               22       39445856     39515507       SH3BGR HGNC:10822
4490               22       39445856     39515507       SH3BGR HGNC:10822
4491               22       39445856     39515507       SH3BGR HGNC:10822
4492               22       39445856     39515507       SH3BGR HGNC:10822
4493               22       39445856     39515507       SH3BGR HGNC:10822
4494               22       39445856     39515507       SH3BGR HGNC:10822
4495               22       39445856     39515507       SH3BGR HGNC:10822
4496               22       39445856     39515507       SH3BGR HGNC:10822
4497               22       39445856     39515507       SH3BGR HGNC:10822
4498               22       39445856     39515507       SH3BGR HGNC:10822
4499               22       39445856     39515507       SH3BGR HGNC:10822
4500               22       39445856     39515507       SH3BGR HGNC:10822
4501               22       39445856     39515507       SH3BGR HGNC:10822
4502               22       39445856     39515507       SH3BGR HGNC:10822
4503               22       39445856     39515507       SH3BGR HGNC:10822
4504               22       39445856     39515507       SH3BGR HGNC:10822
4505               22       39445856     39515507       SH3BGR HGNC:10822
4506               22       39445856     39515507       SH3BGR HGNC:10822
4507               22       39445856     39515507       SH3BGR HGNC:10822
4508               22       39445856     39515507       SH3BGR HGNC:10822
4509               22       39445856     39515507       SH3BGR HGNC:10822
4510               22       39445856     39515507       SH3BGR HGNC:10822
4511               22       39445856     39515507       SH3BGR HGNC:10822
4512               22       39445856     39515507       SH3BGR HGNC:10822
4513               22       39445856     39515507       SH3BGR HGNC:10822
4514               22       39445856     39515507       SH3BGR HGNC:10822
4515               22       39445856     39515507       SH3BGR HGNC:10822
4516               22       39445856     39515507       SH3BGR HGNC:10822
4517               22       39445856     39515507       SH3BGR HGNC:10822
4518               22       39445856     39515507       SH3BGR HGNC:10822
4519               22       39445856     39515507       SH3BGR HGNC:10822
4520               22       39445856     39515507       SH3BGR HGNC:10822
4521               22       39445856     39515507       SH3BGR HGNC:10822
4522               22       39445856     39515507       SH3BGR HGNC:10822
4523               22       39445856     39515507       SH3BGR HGNC:10822
4524               22       39445856     39515507       SH3BGR HGNC:10822
4525               22       39445856     39515507       SH3BGR HGNC:10822
4526               22       39445856     39515507       SH3BGR HGNC:10822
4527               22       39445856     39515507       SH3BGR HGNC:10822
4528               22       39445856     39515507       SH3BGR HGNC:10822
4529               22       39445856     39515507       SH3BGR HGNC:10822
4530               22       39445856     39515507       SH3BGR HGNC:10822
4531               22       39445856     39515507       SH3BGR HGNC:10822
4532               22       39445856     39515507       SH3BGR HGNC:10822
4533               22       39445856     39515507       SH3BGR HGNC:10822
4534               22       39445856     39515507       SH3BGR HGNC:10822
4535               22       39445856     39515507       SH3BGR HGNC:10822
4536               22       39445856     39515507       SH3BGR HGNC:10822
4537               22       39445856     39515507       SH3BGR HGNC:10822
4538               22       39445856     39515507       SH3BGR HGNC:10822
4539               22       39445856     39515507       SH3BGR HGNC:10822
4540               22       39445856     39515507       SH3BGR HGNC:10822
4541               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4542               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4543               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4544               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4545               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4546               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4547               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4548               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4549               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4550               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4551               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4552               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4553               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4554               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4555               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4556               22       29748176     29764003    GRIK1-AS1 HGNC:16458
4557               22       46098098     46132850       COL6A2  HGNC:2212
4558               22       46098098     46132850       COL6A2  HGNC:2212
4559               22       46098098     46132850       COL6A2  HGNC:2212
4560               22       46098098     46132850       COL6A2  HGNC:2212
4561               22       46098098     46132850       COL6A2  HGNC:2212
4562               22       46098098     46132850       COL6A2  HGNC:2212
4563               22       46098098     46132850       COL6A2  HGNC:2212
4564               22       46098098     46132850       COL6A2  HGNC:2212
4565               22       46098098     46132850       COL6A2  HGNC:2212
4566               22       46098098     46132850       COL6A2  HGNC:2212
4567               22       46098098     46132850       COL6A2  HGNC:2212
4568               22       46098098     46132850       COL6A2  HGNC:2212
4569               22       46098098     46132850       COL6A2  HGNC:2212
4570               22       46098098     46132850       COL6A2  HGNC:2212
4571               22       46098098     46132850       COL6A2  HGNC:2212
4572               22       46098098     46132850       COL6A2  HGNC:2212
4573               22       46098098     46132850       COL6A2  HGNC:2212
4574               22       46098098     46132850       COL6A2  HGNC:2212
4575               22       46098098     46132850       COL6A2  HGNC:2212
4576               22       46098098     46132850       COL6A2  HGNC:2212
4577               22       46098098     46132850       COL6A2  HGNC:2212
4578               22       46098098     46132850       COL6A2  HGNC:2212
4579               22       46098098     46132850       COL6A2  HGNC:2212
4580               22       46098098     46132850       COL6A2  HGNC:2212
4581               22       46098098     46132850       COL6A2  HGNC:2212
4582               22       46098098     46132850       COL6A2  HGNC:2212
4583               22       46098098     46132850       COL6A2  HGNC:2212
4584               22       46098098     46132850       COL6A2  HGNC:2212
4585               22       46098098     46132850       COL6A2  HGNC:2212
4586               22       46098098     46132850       COL6A2  HGNC:2212
4587               22       46098098     46132850       COL6A2  HGNC:2212
4588               22       46098098     46132850       COL6A2  HGNC:2212
4589               22       46098098     46132850       COL6A2  HGNC:2212
4590               22       46098098     46132850       COL6A2  HGNC:2212
4591               22       46098098     46132850       COL6A2  HGNC:2212
4592               22       46098098     46132850       COL6A2  HGNC:2212
4593               22       46098098     46132850       COL6A2  HGNC:2212
4594               22       46098098     46132850       COL6A2  HGNC:2212
4595               22       46098098     46132850       COL6A2  HGNC:2212
4596               22       46098098     46132850       COL6A2  HGNC:2212
4597               22       46098098     46132850       COL6A2  HGNC:2212
4598               22       46098098     46132850       COL6A2  HGNC:2212
4599               22       46098098     46132850       COL6A2  HGNC:2212
4600               22       46098098     46132850       COL6A2  HGNC:2212
4601               22       46098098     46132850       COL6A2  HGNC:2212
4602               22       46098098     46132850       COL6A2  HGNC:2212
4603               22       46098098     46132850       COL6A2  HGNC:2212
4604               22       46098098     46132850       COL6A2  HGNC:2212
4605               22       46098098     46132850       COL6A2  HGNC:2212
4606               22       46098098     46132850       COL6A2  HGNC:2212
4607               22       46098098     46132850       COL6A2  HGNC:2212
4608               22       46098098     46132850       COL6A2  HGNC:2212
4609               22       46098098     46132850       COL6A2  HGNC:2212
4610               22       46098098     46132850       COL6A2  HGNC:2212
4611               22       46098098     46132850       COL6A2  HGNC:2212
4612               22       46098098     46132850       COL6A2  HGNC:2212
4613               22       46098098     46132850       COL6A2  HGNC:2212
4614               22       46098098     46132850       COL6A2  HGNC:2212
4615               22       46098098     46132850       COL6A2  HGNC:2212
4616               22       46098098     46132850       COL6A2  HGNC:2212
4617               22       46098098     46132850       COL6A2  HGNC:2212
4618               22       46098098     46132850       COL6A2  HGNC:2212
4619               22       46098098     46132850       COL6A2  HGNC:2212
4620               22       46098098     46132850       COL6A2  HGNC:2212
4621               22       46098098     46132850       COL6A2  HGNC:2212
4622               22       46098098     46132850       COL6A2  HGNC:2212
4623               22       46098098     46132850       COL6A2  HGNC:2212
4624               22       46098098     46132850       COL6A2  HGNC:2212
4625               22       46098098     46132850       COL6A2  HGNC:2212
4626               22       46098098     46132850       COL6A2  HGNC:2212
4627               22       46098098     46132850       COL6A2  HGNC:2212
4628               22       46098098     46132850       COL6A2  HGNC:2212
4629               22       46098098     46132850       COL6A2  HGNC:2212
4630               22       46098098     46132850       COL6A2  HGNC:2212
4631               22       46098098     46132850       COL6A2  HGNC:2212
4632               22       46098098     46132850       COL6A2  HGNC:2212
4633               22       46098098     46132850       COL6A2  HGNC:2212
4634               22       46098098     46132850       COL6A2  HGNC:2212
4635               22       46098098     46132850       COL6A2  HGNC:2212
4636               22       46098098     46132850       COL6A2  HGNC:2212
4637               22       46098098     46132850       COL6A2  HGNC:2212
4638               22       46098098     46132850       COL6A2  HGNC:2212
4639               22       46098098     46132850       COL6A2  HGNC:2212
4640               22       46098098     46132850       COL6A2  HGNC:2212
4641               22       46098098     46132850       COL6A2  HGNC:2212
4642               22       46098098     46132850       COL6A2  HGNC:2212
4643               22       46098098     46132850       COL6A2  HGNC:2212
4644               22       46098098     46132850       COL6A2  HGNC:2212
4645               22       46098098     46132850       COL6A2  HGNC:2212
4646               22       46098098     46132850       COL6A2  HGNC:2212
4647               22       46098098     46132850       COL6A2  HGNC:2212
4648               22       46098098     46132850       COL6A2  HGNC:2212
4649               22       46098098     46132850       COL6A2  HGNC:2212
4650               22       46098098     46132850       COL6A2  HGNC:2212
4651               22       46098098     46132850       COL6A2  HGNC:2212
4652               22       46098098     46132850       COL6A2  HGNC:2212
4653               22       46098098     46132850       COL6A2  HGNC:2212
4654               22       46098098     46132850       COL6A2  HGNC:2212
4655               22       46098098     46132850       COL6A2  HGNC:2212
4656               22       46098098     46132850       COL6A2  HGNC:2212
4657               22       46098098     46132850       COL6A2  HGNC:2212
4658               22       46098098     46132850       COL6A2  HGNC:2212
4659               22       46098098     46132850       COL6A2  HGNC:2212
4660               22       46098098     46132850       COL6A2  HGNC:2212
4661               22       46098098     46132850       COL6A2  HGNC:2212
4662               22       46098098     46132850       COL6A2  HGNC:2212
4663               22       46098098     46132850       COL6A2  HGNC:2212
4664               22       46098098     46132850       COL6A2  HGNC:2212
4665               22       46098098     46132850       COL6A2  HGNC:2212
4666               22       46098098     46132850       COL6A2  HGNC:2212
4667               22       46098098     46132850       COL6A2  HGNC:2212
4668               22       46098098     46132850       COL6A2  HGNC:2212
4669               22       46098098     46132850       COL6A2  HGNC:2212
4670               22       46098098     46132850       COL6A2  HGNC:2212
4671               22       46098098     46132850       COL6A2  HGNC:2212
4672               22       46098098     46132850       COL6A2  HGNC:2212
4673               22       46098098     46132850       COL6A2  HGNC:2212
4674               22       46098098     46132850       COL6A2  HGNC:2212
4675               22       46098098     46132850       COL6A2  HGNC:2212
4676               22       46098098     46132850       COL6A2  HGNC:2212
4677               22       46098098     46132850       COL6A2  HGNC:2212
4678               22       46098098     46132850       COL6A2  HGNC:2212
4679               22       46098098     46132850       COL6A2  HGNC:2212
4680               22       46098098     46132850       COL6A2  HGNC:2212
4681               22       46098098     46132850       COL6A2  HGNC:2212
4682               22       46098098     46132850       COL6A2  HGNC:2212
4683               22       46098098     46132850       COL6A2  HGNC:2212
4684               22       46098098     46132850       COL6A2  HGNC:2212
4685               22       46098098     46132850       COL6A2  HGNC:2212
4686               22       46098098     46132850       COL6A2  HGNC:2212
4687               22       46098098     46132850       COL6A2  HGNC:2212
4688               22       46098098     46132850       COL6A2  HGNC:2212
4689               22       46098098     46132850       COL6A2  HGNC:2212
4690               22       33584688     33931608                        
4691               22       33584688     33931608                        
4692               22       33584688     33931608                        
4693               22       33584688     33931608                        
4694               22       33584688     33931608                        
4695               22       33584688     33931608                        
4696               22       33584688     33931608                        
4697               22       33584688     33931608                        
4698               22       44328945     44339403      C21orf2  HGNC:1260
4699               22       44328945     44339403      C21orf2  HGNC:1260
4700               22       44328945     44339403      C21orf2  HGNC:1260
4701               22       44328945     44339403      C21orf2  HGNC:1260
4702               22       44328945     44339403      C21orf2  HGNC:1260
4703               22       44328945     44339403      C21orf2  HGNC:1260
4704               22       44328945     44339403      C21orf2  HGNC:1260
4705               22       44328945     44339403      C21orf2  HGNC:1260
4706               22       44328945     44339403      C21orf2  HGNC:1260
4707               22       44328945     44339403      C21orf2  HGNC:1260
4708               22       44328945     44339403      C21orf2  HGNC:1260
4709               22       44328945     44339403      C21orf2  HGNC:1260
4710               22       44328945     44339403      C21orf2  HGNC:1260
4711               22       44328945     44339403      C21orf2  HGNC:1260
4712               22       44328945     44339403      C21orf2  HGNC:1260
4713               22       44328945     44339403      C21orf2  HGNC:1260
4714               22       44328945     44339403      C21orf2  HGNC:1260
4715               22       44328945     44339403      C21orf2  HGNC:1260
4716               22       44328945     44339403      C21orf2  HGNC:1260
4717               22       44328945     44339403      C21orf2  HGNC:1260
4718               22       44328945     44339403      C21orf2  HGNC:1260
4719               22       44328945     44339403      C21orf2  HGNC:1260
4720               22       44328945     44339403      C21orf2  HGNC:1260
4721               22       44328945     44339403      C21orf2  HGNC:1260
4722               22       44328945     44339403      C21orf2  HGNC:1260
4723               22       44328945     44339403      C21orf2  HGNC:1260
4724               22       44328945     44339403      C21orf2  HGNC:1260
4725               22       44328945     44339403      C21orf2  HGNC:1260
4726               22       44328945     44339403      C21orf2  HGNC:1260
4727               22       44328945     44339403      C21orf2  HGNC:1260
4728               22       44328945     44339403      C21orf2  HGNC:1260
4729               22       44328945     44339403      C21orf2  HGNC:1260
4730               22       44328945     44339403      C21orf2  HGNC:1260
4731               22       44328945     44339403      C21orf2  HGNC:1260
4732               22       44328945     44339403      C21orf2  HGNC:1260
4733               22       44328945     44339403      C21orf2  HGNC:1260
4734               22       44328945     44339403      C21orf2  HGNC:1260
4735               22       44328945     44339403      C21orf2  HGNC:1260
4736               22       44328945     44339403      C21orf2  HGNC:1260
4737               22       44328945     44339403      C21orf2  HGNC:1260
4738               22       46136263     46155568         FTCD  HGNC:3974
4739               22       46136263     46155568         FTCD  HGNC:3974
4740               22       46136263     46155568         FTCD  HGNC:3974
4741               22       46136263     46155568         FTCD  HGNC:3974
4742               22       46136263     46155568         FTCD  HGNC:3974
4743               22       46136263     46155568         FTCD  HGNC:3974
4744               22       46136263     46155568         FTCD  HGNC:3974
4745               22       46136263     46155568         FTCD  HGNC:3974
4746               22       46136263     46155568         FTCD  HGNC:3974
4747               22       46136263     46155568         FTCD  HGNC:3974
4748               22       46136263     46155568         FTCD  HGNC:3974
4749               22       46136263     46155568         FTCD  HGNC:3974
4750               22       46136263     46155568         FTCD  HGNC:3974
4751               22       46136263     46155568         FTCD  HGNC:3974
4752               22       46136263     46155568         FTCD  HGNC:3974
4753               22       46136263     46155568         FTCD  HGNC:3974
4754               22       46136263     46155568         FTCD  HGNC:3974
4755               22       46136263     46155568         FTCD  HGNC:3974
4756               22       46136263     46155568         FTCD  HGNC:3974
4757               22       46136263     46155568         FTCD  HGNC:3974
4758               22       46136263     46155568         FTCD  HGNC:3974
4759               22       46136263     46155568         FTCD  HGNC:3974
4760               22       46136263     46155568         FTCD  HGNC:3974
4761               22       46136263     46155568         FTCD  HGNC:3974
4762               22       46136263     46155568         FTCD  HGNC:3974
4763               22       46136263     46155568         FTCD  HGNC:3974
4764               22       46136263     46155568         FTCD  HGNC:3974
4765               22       46136263     46155568         FTCD  HGNC:3974
4766               22       46136263     46155568         FTCD  HGNC:3974
4767               22       46136263     46155568         FTCD  HGNC:3974
4768               22       46136263     46155568         FTCD  HGNC:3974
4769               22       46136263     46155568         FTCD  HGNC:3974
4770               22       46136263     46155568         FTCD  HGNC:3974
4771               22       46136263     46155568         FTCD  HGNC:3974
4772               22       46136263     46155568         FTCD  HGNC:3974
4773               22       46136263     46155568         FTCD  HGNC:3974
4774               22       46136263     46155568         FTCD  HGNC:3974
4775               22       46136263     46155568         FTCD  HGNC:3974
4776               22       46136263     46155568         FTCD  HGNC:3974
4777               22       46136263     46155568         FTCD  HGNC:3974
4778               22       46136263     46155568         FTCD  HGNC:3974
4779               22       46136263     46155568         FTCD  HGNC:3974
4780               22       46136263     46155568         FTCD  HGNC:3974
4781               22       46136263     46155568         FTCD  HGNC:3974
4782               22       46136263     46155568         FTCD  HGNC:3974
4783               22       46136263     46155568         FTCD  HGNC:3974
4784               22       46136263     46155568         FTCD  HGNC:3974
4785               22       46136263     46155568         FTCD  HGNC:3974
4786               22       46136263     46155568         FTCD  HGNC:3974
4787               22       46136263     46155568         FTCD  HGNC:3974
4788               22       46136263     46155568         FTCD  HGNC:3974
4789               22       46136263     46155568         FTCD  HGNC:3974
4790               22       46136263     46155568         FTCD  HGNC:3974
4791               22       46136263     46155568         FTCD  HGNC:3974
4792               22       46136263     46155568         FTCD  HGNC:3974
4793               22       46136263     46155568         FTCD  HGNC:3974
4794               22       46136263     46155568         FTCD  HGNC:3974
4795               22       46136263     46155568         FTCD  HGNC:3974
4796               22       46136263     46155568         FTCD  HGNC:3974
4797               22       46136263     46155568         FTCD  HGNC:3974
4798               22       46136263     46155568         FTCD  HGNC:3974
4799               22       46136263     46155568         FTCD  HGNC:3974
4800               22       46136263     46155568         FTCD  HGNC:3974
4801               22       46136263     46155568         FTCD  HGNC:3974
4802               22       46136263     46155568         FTCD  HGNC:3974
4803               22       46136263     46155568         FTCD  HGNC:3974
4804               22       46136263     46155568         FTCD  HGNC:3974
4805               22       46136263     46155568         FTCD  HGNC:3974
4806               22       46136263     46155568         FTCD  HGNC:3974
4807               22       46136263     46155568         FTCD  HGNC:3974
4808               22       46136263     46155568         FTCD  HGNC:3974
4809               22       46136263     46155568         FTCD  HGNC:3974
4810               22       46136263     46155568         FTCD  HGNC:3974
4811               22       46136263     46155568         FTCD  HGNC:3974
4812               22       46136263     46155568         FTCD  HGNC:3974
4813               22       46136263     46155568         FTCD  HGNC:3974
4814               22       46136263     46155568         FTCD  HGNC:3974
4815               22       46136263     46155568         FTCD  HGNC:3974
4816               22       46136263     46155568         FTCD  HGNC:3974
4817               22       46136263     46155568         FTCD  HGNC:3974
4818               22       46136263     46155568         FTCD  HGNC:3974
4819               22       46136263     46155568         FTCD  HGNC:3974
4820               22       46136263     46155568         FTCD  HGNC:3974
4821               22       46136263     46155568         FTCD  HGNC:3974
4822               22       46136263     46155568         FTCD  HGNC:3974
4823               22       46136263     46155568         FTCD  HGNC:3974
4824               22       46136263     46155568         FTCD  HGNC:3974
4825               22       46136263     46155568         FTCD  HGNC:3974
4826               22       46136263     46155568         FTCD  HGNC:3974
4827               22       46136263     46155568         FTCD  HGNC:3974
4828               22       46136263     46155568         FTCD  HGNC:3974
4829               22       46136263     46155568         FTCD  HGNC:3974
4830               22       46136263     46155568         FTCD  HGNC:3974
4831               22       46136263     46155568         FTCD  HGNC:3974
4832               22       46136263     46155568         FTCD  HGNC:3974
4833               22       44472896     44473740     MTND6P21 HGNC:39639
4834               22       44472896     44473740     MTND6P21 HGNC:39639
4835               22       44473724     44475098      MTND5P1 HGNC:39644
4836               22       41176323     41186789                        
4837               22       41176323     41186789                        
4838               22       41176323     41186789                        
4839               22       41176323     41186789                        
4840               22       41176323     41186789                        
4841               22       41176323     41186789                        
4842               22       41176323     41186789                        
4843               22       41176323     41186789                        
4844               22       41176323     41186789                        
4845               22       41176323     41186789                        
4846               22       44702222     44702792  KRTAP10-13P HGNC:34213
4847               22       33165471     33170650    LINC01548  HGNC:1296
4848               22       33165471     33170650    LINC01548  HGNC:1296
4849               22       33165471     33170650    LINC01548  HGNC:1296
4850               22       33165471     33170650    LINC01548  HGNC:1296
4851               22       33165471     33170650    LINC01548  HGNC:1296
4852               22       33165471     33170650    LINC01548  HGNC:1296
4853               22       33165471     33170650    LINC01548  HGNC:1296
4854               22       33165471     33170650    LINC01548  HGNC:1296
4855               22       33165471     33170650    LINC01548  HGNC:1296
4856               22        6111135      6123740                        
4857               22        6111135      6123740                        
4858               22        6111135      6123740                        
4859               22        6111135      6123740                        
4860               22        6111135      6123740                        
4861               22        6111135      6123740                        
4862               22        6111135      6123740                        
4863               22        6111135      6123740                        
4864               22        6111135      6123740                        
4865               22        6111135      6123740                        
4866               22        6111135      6123740                        
4867               22        6111135      6123740                        
4868               22        6111135      6123740                        
4869               22        6111135      6123740                        
4870               22        6111135      6123740                        
4871               22        6111135      6123740                        
4872               22        6111135      6123740                        
4873               22       22209940     22420820                        
4874               22       22209940     22420820                        
4875               22       22209940     22420820                        
4876               22       22098618     22116529    LINC00308 HGNC:16023
4877               22       22098618     22116529    LINC00308 HGNC:16023
4878               22       22098618     22116529    LINC00308 HGNC:16023
4879               22       22098618     22116529    LINC00308 HGNC:16023
4880               22       22098618     22116529    LINC00308 HGNC:16023
4881               22       22098618     22116529    LINC00308 HGNC:16023
4882               22       36005339     36007839    LINC01436 HGNC:50754
4883               22       36005339     36007839    LINC01436 HGNC:50754
4884               22       42496540     42497444                        
4885               22       42496540     42497444                        
4886               22       42496540     42497444                        
4887               22       17901264     18267374        CHODL HGNC:17807
4888               22       17901264     18267374        CHODL HGNC:17807
4889               22       17901264     18267374        CHODL HGNC:17807
4890               22       17901264     18267374        CHODL HGNC:17807
4891               22       17901264     18267374        CHODL HGNC:17807
4892               22       17901264     18267374        CHODL HGNC:17807
4893               22       17901264     18267374        CHODL HGNC:17807
4894               22       17901264     18267374        CHODL HGNC:17807
4895               22       17901264     18267374        CHODL HGNC:17807
4896               22       17901264     18267374        CHODL HGNC:17807
4897               22       17901264     18267374        CHODL HGNC:17807
4898               22       17901264     18267374        CHODL HGNC:17807
4899               22       17901264     18267374        CHODL HGNC:17807
4900               22       17901264     18267374        CHODL HGNC:17807
4901               22       17901264     18267374        CHODL HGNC:17807
4902               22       17901264     18267374        CHODL HGNC:17807
4903               22       17901264     18267374        CHODL HGNC:17807
4904               22       17901264     18267374        CHODL HGNC:17807
4905               22       17901264     18267374        CHODL HGNC:17807
4906               22       17901264     18267374        CHODL HGNC:17807
4907               22       17901264     18267374        CHODL HGNC:17807
4908               22       17901264     18267374        CHODL HGNC:17807
4909               22       17901264     18267374        CHODL HGNC:17807
4910               22       17901264     18267374        CHODL HGNC:17807
4911               22       17901264     18267374        CHODL HGNC:17807
4912               22       17901264     18267374        CHODL HGNC:17807
4913               22       17901264     18267374        CHODL HGNC:17807
4914               22       17901264     18267374        CHODL HGNC:17807
4915               22       17901264     18267374        CHODL HGNC:17807
4916               22       17901264     18267374        CHODL HGNC:17807
4917               22       17901264     18267374        CHODL HGNC:17807
4918               22       17901264     18267374        CHODL HGNC:17807
4919               22       17901264     18267374        CHODL HGNC:17807
4920               22       17901264     18267374        CHODL HGNC:17807
4921               22       17901264     18267374        CHODL HGNC:17807
4922               22       17901264     18267374        CHODL HGNC:17807
4923               22       17901264     18267374        CHODL HGNC:17807
4924               22       17901264     18267374        CHODL HGNC:17807
4925               22       17901264     18267374        CHODL HGNC:17807
4926               22       17901264     18267374        CHODL HGNC:17807
4927               22       17901264     18267374        CHODL HGNC:17807
4928               22       46093265     46097531                        
4929               22       46093265     46097531                        
4930               22        6081194      6082586                        
4931               22        6081194      6082586                        
4932               22       23361105     23384862                        
4933               22       23361105     23384862                        
4934               22       23361105     23384862                        
4935               22       23361105     23384862                        
4936               22       23361105     23384862                        
4937               22       42496009     42581441      SLC37A1 HGNC:11024
4938               22       42496009     42581441      SLC37A1 HGNC:11024
4939               22       42496009     42581441      SLC37A1 HGNC:11024
4940               22       42496009     42581441      SLC37A1 HGNC:11024
4941               22       42496009     42581441      SLC37A1 HGNC:11024
4942               22       42496009     42581441      SLC37A1 HGNC:11024
4943               22       42496009     42581441      SLC37A1 HGNC:11024
4944               22       42496009     42581441      SLC37A1 HGNC:11024
4945               22       42496009     42581441      SLC37A1 HGNC:11024
4946               22       42496009     42581441      SLC37A1 HGNC:11024
4947               22       42496009     42581441      SLC37A1 HGNC:11024
4948               22       42496009     42581441      SLC37A1 HGNC:11024
4949               22       42496009     42581441      SLC37A1 HGNC:11024
4950               22       42496009     42581441      SLC37A1 HGNC:11024
4951               22       42496009     42581441      SLC37A1 HGNC:11024
4952               22       42496009     42581441      SLC37A1 HGNC:11024
4953               22       42496009     42581441      SLC37A1 HGNC:11024
4954               22       42496009     42581441      SLC37A1 HGNC:11024
4955               22       42496009     42581441      SLC37A1 HGNC:11024
4956               22       42496009     42581441      SLC37A1 HGNC:11024
4957               22       42496009     42581441      SLC37A1 HGNC:11024
4958               22       42496009     42581441      SLC37A1 HGNC:11024
4959               22       42496009     42581441      SLC37A1 HGNC:11024
4960               22       42496009     42581441      SLC37A1 HGNC:11024
4961               22       42496009     42581441      SLC37A1 HGNC:11024
4962               22       42496009     42581441      SLC37A1 HGNC:11024
4963               22       42496009     42581441      SLC37A1 HGNC:11024
4964               22       42496009     42581441      SLC37A1 HGNC:11024
4965               22       42496009     42581441      SLC37A1 HGNC:11024
4966               22       42496009     42581441      SLC37A1 HGNC:11024
4967               22       42496009     42581441      SLC37A1 HGNC:11024
4968               22       42496009     42581441      SLC37A1 HGNC:11024
4969               22       42496009     42581441      SLC37A1 HGNC:11024
4970               22       42496009     42581441      SLC37A1 HGNC:11024
4971               22       42496009     42581441      SLC37A1 HGNC:11024
4972               22       42496009     42581441      SLC37A1 HGNC:11024
4973               22       42496009     42581441      SLC37A1 HGNC:11024
4974               22       42496009     42581441      SLC37A1 HGNC:11024
4975               22       42496009     42581441      SLC37A1 HGNC:11024
4976               22       42496009     42581441      SLC37A1 HGNC:11024
4977               22       42496009     42581441      SLC37A1 HGNC:11024
4978               22       42496009     42581441      SLC37A1 HGNC:11024
4979               22       42496009     42581441      SLC37A1 HGNC:11024
4980               22       42496009     42581441      SLC37A1 HGNC:11024
4981               22       42496009     42581441      SLC37A1 HGNC:11024
4982               22       42496009     42581441      SLC37A1 HGNC:11024
4983               22       42496009     42581441      SLC37A1 HGNC:11024
4984               22       42496009     42581441      SLC37A1 HGNC:11024
4985               22       42496009     42581441      SLC37A1 HGNC:11024
4986               22       42496009     42581441      SLC37A1 HGNC:11024
4987               22       42496009     42581441      SLC37A1 HGNC:11024
4988               22       42496009     42581441      SLC37A1 HGNC:11024
4989               22       42496009     42581441      SLC37A1 HGNC:11024
4990               22       42496009     42581441      SLC37A1 HGNC:11024
4991               22       42496009     42581441      SLC37A1 HGNC:11024
4992               22       42496009     42581441      SLC37A1 HGNC:11024
4993               22       42496009     42581441      SLC37A1 HGNC:11024
4994               22       42496009     42581441      SLC37A1 HGNC:11024
4995               22       42496009     42581441      SLC37A1 HGNC:11024
4996               22       42496009     42581441      SLC37A1 HGNC:11024
4997               22       42496009     42581441      SLC37A1 HGNC:11024
4998               22       42496009     42581441      SLC37A1 HGNC:11024
4999               22       42496009     42581441      SLC37A1 HGNC:11024
5000               22       45827962     45836420                        
5001               22       45827962     45836420                        
5002               22       45827962     45836420                        
5003               22       39217094     39219806    BRWD1-IT1 HGNC:41920
5004               22       39217094     39219806    BRWD1-IT1 HGNC:41920
5005               22       14774302     14775263     GAPDHP16 HGNC:23768
5006               22       14918535     14947097                        
5007               22       14918535     14947097                        
5008               22       14818844     15014431                        
5009               22       14818844     15014431                        
5010               22       14818844     15014431                        
5011               22       14818844     15014431                        
5012               22       14819700     14918553                        
5013               22       14819700     14918553                        
5014               22       14819700     14918553                        
5015               22       14819700     14918553                        
5016               22       14819700     14918553                        
5017               22       14819700     14918553                        
5018               22       14819700     14918553                        
5019               22       14819700     14918553                        
5020               22       14819700     14918553                        
5021               22       14819700     14918553                        
5022               22       14819700     14918553                        
5023               22       14819700     14918553                        
5024               22       14819700     14918553                        
5025               22       14819700     14918553                        
5026               22       14819700     14918553                        
5027               22       14819700     14918553                        
5028               22       14819700     14918553                        
5029               22       14819700     14918553                        
5030               22       14819700     14918553                        
5031               22       14819700     14918553                        
5032               22       14819700     14918553                        
5033               22       14819700     14918553                        
5034               22       14819700     14918553                        
5035               22       42199690     42297245        ABCG1    HGNC:73
5036               22       42199690     42297245        ABCG1    HGNC:73
5037               22       42199690     42297245        ABCG1    HGNC:73
5038               22       42199690     42297245        ABCG1    HGNC:73
5039               22       42199690     42297245        ABCG1    HGNC:73
5040               22       42199690     42297245        ABCG1    HGNC:73
5041               22       42199690     42297245        ABCG1    HGNC:73
5042               22       42199690     42297245        ABCG1    HGNC:73
5043               22       42199690     42297245        ABCG1    HGNC:73
5044               22       42199690     42297245        ABCG1    HGNC:73
5045               22       42199690     42297245        ABCG1    HGNC:73
5046               22       42199690     42297245        ABCG1    HGNC:73
5047               22       42199690     42297245        ABCG1    HGNC:73
5048               22       42199690     42297245        ABCG1    HGNC:73
5049               22       42199690     42297245        ABCG1    HGNC:73
5050               22       42199690     42297245        ABCG1    HGNC:73
5051               22       42199690     42297245        ABCG1    HGNC:73
5052               22       42199690     42297245        ABCG1    HGNC:73
5053               22       42199690     42297245        ABCG1    HGNC:73
5054               22       42199690     42297245        ABCG1    HGNC:73
5055               22       42199690     42297245        ABCG1    HGNC:73
5056               22       42199690     42297245        ABCG1    HGNC:73
5057               22       42199690     42297245        ABCG1    HGNC:73
5058               22       42199690     42297245        ABCG1    HGNC:73
5059               22       42199690     42297245        ABCG1    HGNC:73
5060               22       42199690     42297245        ABCG1    HGNC:73
5061               22       42199690     42297245        ABCG1    HGNC:73
5062               22       42199690     42297245        ABCG1    HGNC:73
5063               22       42199690     42297245        ABCG1    HGNC:73
5064               22       42199690     42297245        ABCG1    HGNC:73
5065               22       42199690     42297245        ABCG1    HGNC:73
5066               22       42199690     42297245        ABCG1    HGNC:73
5067               22       42199690     42297245        ABCG1    HGNC:73
5068               22       42199690     42297245        ABCG1    HGNC:73
5069               22       42199690     42297245        ABCG1    HGNC:73
5070               22       42199690     42297245        ABCG1    HGNC:73
5071               22       42199690     42297245        ABCG1    HGNC:73
5072               22       42199690     42297245        ABCG1    HGNC:73
5073               22       42199690     42297245        ABCG1    HGNC:73
5074               22       42199690     42297245        ABCG1    HGNC:73
5075               22       42199690     42297245        ABCG1    HGNC:73
5076               22       42199690     42297245        ABCG1    HGNC:73
5077               22       42199690     42297245        ABCG1    HGNC:73
5078               22       42199690     42297245        ABCG1    HGNC:73
5079               22       42199690     42297245        ABCG1    HGNC:73
5080               22       42199690     42297245        ABCG1    HGNC:73
5081               22       42199690     42297245        ABCG1    HGNC:73
5082               22       42199690     42297245        ABCG1    HGNC:73
5083               22       42199690     42297245        ABCG1    HGNC:73
5084               22       42199690     42297245        ABCG1    HGNC:73
5085               22       42199690     42297245        ABCG1    HGNC:73
5086               22       42199690     42297245        ABCG1    HGNC:73
5087               22       42199690     42297245        ABCG1    HGNC:73
5088               22       42199690     42297245        ABCG1    HGNC:73
5089               22       42199690     42297245        ABCG1    HGNC:73
5090               22       42199690     42297245        ABCG1    HGNC:73
5091               22       42199690     42297245        ABCG1    HGNC:73
5092               22       42199690     42297245        ABCG1    HGNC:73
5093               22       42199690     42297245        ABCG1    HGNC:73
5094               22       42199690     42297245        ABCG1    HGNC:73
5095               22       42199690     42297245        ABCG1    HGNC:73
5096               22       42199690     42297245        ABCG1    HGNC:73
5097               22       42199690     42297245        ABCG1    HGNC:73
5098               22       42199690     42297245        ABCG1    HGNC:73
5099               22       42199690     42297245        ABCG1    HGNC:73
5100               22       42199690     42297245        ABCG1    HGNC:73
5101               22       42199690     42297245        ABCG1    HGNC:73
5102               22       42199690     42297245        ABCG1    HGNC:73
5103               22       42199690     42297245        ABCG1    HGNC:73
5104               22       42199690     42297245        ABCG1    HGNC:73
5105               22       42199690     42297245        ABCG1    HGNC:73
5106               22       42199690     42297245        ABCG1    HGNC:73
5107               22       42199690     42297245        ABCG1    HGNC:73
5108               22       42199690     42297245        ABCG1    HGNC:73
5109               22       42199690     42297245        ABCG1    HGNC:73
5110               22       42199690     42297245        ABCG1    HGNC:73
5111               22       42199690     42297245        ABCG1    HGNC:73
5112               22       42199690     42297245        ABCG1    HGNC:73
5113               22       42199690     42297245        ABCG1    HGNC:73
5114               22       42199690     42297245        ABCG1    HGNC:73
5115               22       42199690     42297245        ABCG1    HGNC:73
5116               22       42199690     42297245        ABCG1    HGNC:73
5117               22       42199690     42297245        ABCG1    HGNC:73
5118               22       42199690     42297245        ABCG1    HGNC:73
5119               22       42199690     42297245        ABCG1    HGNC:73
5120               22       42199690     42297245        ABCG1    HGNC:73
5121               22       42199690     42297245        ABCG1    HGNC:73
5122               22       42199690     42297245        ABCG1    HGNC:73
5123               22       42199690     42297245        ABCG1    HGNC:73
5124               22       42199690     42297245        ABCG1    HGNC:73
5125               22       42199690     42297245        ABCG1    HGNC:73
5126               22       42199690     42297245        ABCG1    HGNC:73
5127               22       42199690     42297245        ABCG1    HGNC:73
5128               22       42199690     42297245        ABCG1    HGNC:73
5129               22       42199690     42297245        ABCG1    HGNC:73
5130               22       42199690     42297245        ABCG1    HGNC:73
5131               22       42199690     42297245        ABCG1    HGNC:73
5132               22       42199690     42297245        ABCG1    HGNC:73
5133               22       42199690     42297245        ABCG1    HGNC:73
5134               22       42199690     42297245        ABCG1    HGNC:73
5135               22       42199690     42297245        ABCG1    HGNC:73
5136               22       42199690     42297245        ABCG1    HGNC:73
5137               22       42199690     42297245        ABCG1    HGNC:73
5138               22       42199690     42297245        ABCG1    HGNC:73
5139               22       42199690     42297245        ABCG1    HGNC:73
5140               22       42199690     42297245        ABCG1    HGNC:73
5141               22       42199690     42297245        ABCG1    HGNC:73
5142               22       42199690     42297245        ABCG1    HGNC:73
5143               22       42199690     42297245        ABCG1    HGNC:73
5144               22       42199690     42297245        ABCG1    HGNC:73
5145               22       42199690     42297245        ABCG1    HGNC:73
5146               22       42199690     42297245        ABCG1    HGNC:73
5147               22       42199690     42297245        ABCG1    HGNC:73
5148               22       42199690     42297245        ABCG1    HGNC:73
5149               22       42199690     42297245        ABCG1    HGNC:73
5150               22       42199690     42297245        ABCG1    HGNC:73
5151               22       42199690     42297245        ABCG1    HGNC:73
5152               22       42199690     42297245        ABCG1    HGNC:73
5153               22       42199690     42297245        ABCG1    HGNC:73
5154               22       42199690     42297245        ABCG1    HGNC:73
5155               22       42199690     42297245        ABCG1    HGNC:73
5156               22       42199690     42297245        ABCG1    HGNC:73
5157               22       42199690     42297245        ABCG1    HGNC:73
5158               22       42199690     42297245        ABCG1    HGNC:73
5159               22       42199690     42297245        ABCG1    HGNC:73
5160               22       42199690     42297245        ABCG1    HGNC:73
5161               22       42199690     42297245        ABCG1    HGNC:73
5162               22       42199690     42297245        ABCG1    HGNC:73
5163               22       42199690     42297245        ABCG1    HGNC:73
5164               22       42199690     42297245        ABCG1    HGNC:73
5165               22       42199690     42297245        ABCG1    HGNC:73
5166               22       42199690     42297245        ABCG1    HGNC:73
5167               22       42199690     42297245        ABCG1    HGNC:73
5168               22       42199690     42297245        ABCG1    HGNC:73
5169               22       42199690     42297245        ABCG1    HGNC:73
5170               22       42199690     42297245        ABCG1    HGNC:73
5171               22       14961236     15065937        NRIP1  HGNC:8001
5172               22       14961236     15065937        NRIP1  HGNC:8001
5173               22       14961236     15065937        NRIP1  HGNC:8001
5174               22       14961236     15065937        NRIP1  HGNC:8001
5175               22       14961236     15065937        NRIP1  HGNC:8001
5176               22       14961236     15065937        NRIP1  HGNC:8001
5177               22       14961236     15065937        NRIP1  HGNC:8001
5178               22       14961236     15065937        NRIP1  HGNC:8001
5179               22       14961236     15065937        NRIP1  HGNC:8001
5180               22       14961236     15065937        NRIP1  HGNC:8001
5181               22       14961236     15065937        NRIP1  HGNC:8001
5182               22       14961236     15065937        NRIP1  HGNC:8001
5183               22       14961236     15065937        NRIP1  HGNC:8001
5184               22       14961236     15065937        NRIP1  HGNC:8001
5185               22       14961236     15065937        NRIP1  HGNC:8001
5186               22       14961236     15065937        NRIP1  HGNC:8001
5187               22       14961236     15065937        NRIP1  HGNC:8001
5188               22       14961236     15065937        NRIP1  HGNC:8001
5189               22       14961236     15065937        NRIP1  HGNC:8001
5190               22       14961236     15065937        NRIP1  HGNC:8001
5191               22       14961236     15065937        NRIP1  HGNC:8001
5192               22       14961236     15065937        NRIP1  HGNC:8001
5193               22       14961236     15065937        NRIP1  HGNC:8001
5194               22       14829155     14829990      RBMX2P1 HGNC:39923
5195               22       45493573     45544412      SLC19A1 HGNC:10937
5196               22       45493573     45544412      SLC19A1 HGNC:10937
5197               22       45493573     45544412      SLC19A1 HGNC:10937
5198               22       45493573     45544412      SLC19A1 HGNC:10937
5199               22       45493573     45544412      SLC19A1 HGNC:10937
5200               22       45493573     45544412      SLC19A1 HGNC:10937
5201               22       45493573     45544412      SLC19A1 HGNC:10937
5202               22       45493573     45544412      SLC19A1 HGNC:10937
5203               22       45493573     45544412      SLC19A1 HGNC:10937
5204               22       45493573     45544412      SLC19A1 HGNC:10937
5205               22       45493573     45544412      SLC19A1 HGNC:10937
5206               22       45493573     45544412      SLC19A1 HGNC:10937
5207               22       45493573     45544412      SLC19A1 HGNC:10937
5208               22       45493573     45544412      SLC19A1 HGNC:10937
5209               22       45493573     45544412      SLC19A1 HGNC:10937
5210               22       45493573     45544412      SLC19A1 HGNC:10937
5211               22       45493573     45544412      SLC19A1 HGNC:10937
5212               22       45493573     45544412      SLC19A1 HGNC:10937
5213               22       45493573     45544412      SLC19A1 HGNC:10937
5214               22       45493573     45544412      SLC19A1 HGNC:10937
5215               22       45493573     45544412      SLC19A1 HGNC:10937
5216               22       45493573     45544412      SLC19A1 HGNC:10937
5217               22       45493573     45544412      SLC19A1 HGNC:10937
5218               22       45493573     45544412      SLC19A1 HGNC:10937
5219               22       45493573     45544412      SLC19A1 HGNC:10937
5220               22       45493573     45544412      SLC19A1 HGNC:10937
5221               22       45493573     45544412      SLC19A1 HGNC:10937
5222               22       45493573     45544412      SLC19A1 HGNC:10937
5223               22       45493573     45544412      SLC19A1 HGNC:10937
5224               22       45493573     45544412      SLC19A1 HGNC:10937
5225               22       45493573     45544412      SLC19A1 HGNC:10937
5226               22       45493573     45544412      SLC19A1 HGNC:10937
5227               22       45493573     45544412      SLC19A1 HGNC:10937
5228               22       45493573     45544412      SLC19A1 HGNC:10937
5229               22       45493573     45544412      SLC19A1 HGNC:10937
5230               22       45493573     45544412      SLC19A1 HGNC:10937
5231               22       45493573     45544412      SLC19A1 HGNC:10937
5232               22       45493573     45544412      SLC19A1 HGNC:10937
5233               22       45493573     45544412      SLC19A1 HGNC:10937
5234               22       45493573     45544412      SLC19A1 HGNC:10937
5235               22       45493573     45544412      SLC19A1 HGNC:10937
5236               22       45493573     45544412      SLC19A1 HGNC:10937
5237               22       45493573     45544412      SLC19A1 HGNC:10937
5238               22       45493573     45544412      SLC19A1 HGNC:10937
5239               22       45493573     45544412      SLC19A1 HGNC:10937
5240               22       45493573     45544412      SLC19A1 HGNC:10937
5241               22       45493573     45544412      SLC19A1 HGNC:10937
5242               22       14961310     14964234                        
5243               22       14961310     14964234                        
5244               22       15050190     15052380                        
5245               22       14971471     14992855                        
5246               22       14971471     14992855                        
5247               22       14971471     14992855                        
5248               22       45419717     45425071  COL18A1-AS1 HGNC:23132
5249               22       45419717     45425071  COL18A1-AS1 HGNC:23132
5250               22       45419717     45425071  COL18A1-AS1 HGNC:23132
5251               22       45419717     45425071  COL18A1-AS1 HGNC:23132
5252               22       45419717     45425071  COL18A1-AS1 HGNC:23132
5253               22       45419717     45425071  COL18A1-AS1 HGNC:23132
5254               22       39488328     39488761       MYL6P2 HGNC:23772
5255               22       46300182     46323876     C21orf58  HGNC:1300
5256               22       46300182     46323876     C21orf58  HGNC:1300
5257               22       46300182     46323876     C21orf58  HGNC:1300
5258               22       46300182     46323876     C21orf58  HGNC:1300
5259               22       46300182     46323876     C21orf58  HGNC:1300
5260               22       46300182     46323876     C21orf58  HGNC:1300
5261               22       46300182     46323876     C21orf58  HGNC:1300
5262               22       46300182     46323876     C21orf58  HGNC:1300
5263               22       46300182     46323876     C21orf58  HGNC:1300
5264               22       46300182     46323876     C21orf58  HGNC:1300
5265               22       46300182     46323876     C21orf58  HGNC:1300
5266               22       46300182     46323876     C21orf58  HGNC:1300
5267               22       46300182     46323876     C21orf58  HGNC:1300
5268               22       46300182     46323876     C21orf58  HGNC:1300
5269               22       46300182     46323876     C21orf58  HGNC:1300
5270               22       46300182     46323876     C21orf58  HGNC:1300
5271               22       46300182     46323876     C21orf58  HGNC:1300
5272               22       46300182     46323876     C21orf58  HGNC:1300
5273               22       46300182     46323876     C21orf58  HGNC:1300
5274               22       46300182     46323876     C21orf58  HGNC:1300
5275               22       46300182     46323876     C21orf58  HGNC:1300
5276               22       46300182     46323876     C21orf58  HGNC:1300
5277               22       46300182     46323876     C21orf58  HGNC:1300
5278               22       46300182     46323876     C21orf58  HGNC:1300
5279               22       46300182     46323876     C21orf58  HGNC:1300
5280               22       46300182     46323876     C21orf58  HGNC:1300
5281               22       46300182     46323876     C21orf58  HGNC:1300
5282               22       46300182     46323876     C21orf58  HGNC:1300
5283               22       46300182     46323876     C21orf58  HGNC:1300
5284               22       46300182     46323876     C21orf58  HGNC:1300
5285               22       46300182     46323876     C21orf58  HGNC:1300
5286               22       46300182     46323876     C21orf58  HGNC:1300
5287               22       46300182     46323876     C21orf58  HGNC:1300
5288               22       46300182     46323876     C21orf58  HGNC:1300
5289               22       46300182     46323876     C21orf58  HGNC:1300
5290               22       46300182     46323876     C21orf58  HGNC:1300
5291               22       46300182     46323876     C21orf58  HGNC:1300
5292               22       46300182     46323876     C21orf58  HGNC:1300
5293               22       46300182     46323876     C21orf58  HGNC:1300
5294               22       46300182     46323876     C21orf58  HGNC:1300
5295               22       46300182     46323876     C21orf58  HGNC:1300
5296               22       46300182     46323876     C21orf58  HGNC:1300
5297               22       46300182     46323876     C21orf58  HGNC:1300
5298               22       46300182     46323876     C21orf58  HGNC:1300
5299               22       46300182     46323876     C21orf58  HGNC:1300
5300               22       46300182     46323876     C21orf58  HGNC:1300
5301               22       46300182     46323876     C21orf58  HGNC:1300
5302               22       46300182     46323876     C21orf58  HGNC:1300
5303               22       46300182     46323876     C21orf58  HGNC:1300
5304               22       46300182     46323876     C21orf58  HGNC:1300
5305               22       46300182     46323876     C21orf58  HGNC:1300
5306               22       46300182     46323876     C21orf58  HGNC:1300
5307               22       46300182     46323876     C21orf58  HGNC:1300
5308               22       46300182     46323876     C21orf58  HGNC:1300
5309               22       46300182     46323876     C21orf58  HGNC:1300
5310               22       46300182     46323876     C21orf58  HGNC:1300
5311               22       46300182     46323876     C21orf58  HGNC:1300
5312               22       46300182     46323876     C21orf58  HGNC:1300
5313               22       46300182     46323876     C21orf58  HGNC:1300
5314               22       46300182     46323876     C21orf58  HGNC:1300
5315               22       46300182     46323876     C21orf58  HGNC:1300
5316               22       46300182     46323876     C21orf58  HGNC:1300
5317               22       46300182     46323876     C21orf58  HGNC:1300
5318               22       46300182     46323876     C21orf58  HGNC:1300
5319               22       46300182     46323876     C21orf58  HGNC:1300
5320               22       46300182     46323876     C21orf58  HGNC:1300
5321               22       46300182     46323876     C21orf58  HGNC:1300
5322               22       46300182     46323876     C21orf58  HGNC:1300
5323               22       46300182     46323876     C21orf58  HGNC:1300
5324               22       46300182     46323876     C21orf58  HGNC:1300
5325               22       41361944     41409391          MX2  HGNC:7533
5326               22       41361944     41409391          MX2  HGNC:7533
5327               22       41361944     41409391          MX2  HGNC:7533
5328               22       41361944     41409391          MX2  HGNC:7533
5329               22       41361944     41409391          MX2  HGNC:7533
5330               22       41361944     41409391          MX2  HGNC:7533
5331               22       41361944     41409391          MX2  HGNC:7533
5332               22       41361944     41409391          MX2  HGNC:7533
5333               22       41361944     41409391          MX2  HGNC:7533
5334               22       41361944     41409391          MX2  HGNC:7533
5335               22       41361944     41409391          MX2  HGNC:7533
5336               22       41361944     41409391          MX2  HGNC:7533
5337               22       41361944     41409391          MX2  HGNC:7533
5338               22       41361944     41409391          MX2  HGNC:7533
5339               22       41361944     41409391          MX2  HGNC:7533
5340               22       41361944     41409391          MX2  HGNC:7533
5341               22       41361944     41409391          MX2  HGNC:7533
5342               22       41361944     41409391          MX2  HGNC:7533
5343               22       41361944     41409391          MX2  HGNC:7533
5344               22       41361944     41409391          MX2  HGNC:7533
5345               22       41361944     41409391          MX2  HGNC:7533
5346               22       41361944     41409391          MX2  HGNC:7533
5347               22       41361944     41409391          MX2  HGNC:7533
5348               22       41361944     41409391          MX2  HGNC:7533
5349               22       41361944     41409391          MX2  HGNC:7533
5350               22       41361944     41409391          MX2  HGNC:7533
5351               22       41361944     41409391          MX2  HGNC:7533
5352               22       41361944     41409391          MX2  HGNC:7533
5353               22       41361944     41409391          MX2  HGNC:7533
5354               22       41361944     41409391          MX2  HGNC:7533
5355               22       41361944     41409391          MX2  HGNC:7533
5356               22       41361944     41409391          MX2  HGNC:7533
5357               22       41361944     41409391          MX2  HGNC:7533
5358               22       41361944     41409391          MX2  HGNC:7533
5359               22       41361944     41409391          MX2  HGNC:7533
5360               22       41361944     41409391          MX2  HGNC:7533
5361               22       41361944     41409391          MX2  HGNC:7533
5362               22       41361944     41409391          MX2  HGNC:7533
5363               22       41361944     41409391          MX2  HGNC:7533
5364               22       41361944     41409391          MX2  HGNC:7533
5365               22       41361944     41409391          MX2  HGNC:7533
5366               22       41361944     41409391          MX2  HGNC:7533
5367               22       41361944     41409391          MX2  HGNC:7533
5368               22       41361944     41409391          MX2  HGNC:7533
5369               22       41361944     41409391          MX2  HGNC:7533
5370               22       41361944     41409391          MX2  HGNC:7533
5371               22       41361944     41409391          MX2  HGNC:7533
5372               22       41361944     41409391          MX2  HGNC:7533
5373               22       41361944     41409391          MX2  HGNC:7533
5374               22       41361944     41409391          MX2  HGNC:7533
5375               22       41361944     41409391          MX2  HGNC:7533
5376               22       41361944     41409391          MX2  HGNC:7533
5377               22       41361944     41409391          MX2  HGNC:7533
5378               22       41361944     41409391          MX2  HGNC:7533
5379               22       41361944     41409391          MX2  HGNC:7533
5380               22       41361944     41409391          MX2  HGNC:7533
5381               22       41361944     41409391          MX2  HGNC:7533
5382               22       41361944     41409391          MX2  HGNC:7533
5383               22       41361944     41409391          MX2  HGNC:7533
5384               22       41361944     41409391          MX2  HGNC:7533
5385               22       41361944     41409391          MX2  HGNC:7533
5386               22       41361944     41409391          MX2  HGNC:7533
5387               22       39867318     39929398         PCP4  HGNC:8742
5388               22       39867318     39929398         PCP4  HGNC:8742
5389               22       39867318     39929398         PCP4  HGNC:8742
5390               22       39867318     39929398         PCP4  HGNC:8742
5391               22       39867318     39929398         PCP4  HGNC:8742
5392               22       39867318     39929398         PCP4  HGNC:8742
5393               22       39867318     39929398         PCP4  HGNC:8742
5394               22       39867318     39929398         PCP4  HGNC:8742
5395               22       39867318     39929398         PCP4  HGNC:8742
5396               22       39867318     39929398         PCP4  HGNC:8742
5397               22       39867318     39929398         PCP4  HGNC:8742
5398               22       39867318     39929398         PCP4  HGNC:8742
5399               22       39867318     39929398         PCP4  HGNC:8742
5400               22       39867318     39929398         PCP4  HGNC:8742
5401               22       39525584     39529856                        
5402               22       39525584     39529856                        
5403               22       33915535     33977692    LINC00649 HGNC:44305
5404               22       33915535     33977692    LINC00649 HGNC:44305
5405               22       33915535     33977692    LINC00649 HGNC:44305
5406               22       33915535     33977692    LINC00649 HGNC:44305
5407               22       33915535     33977692    LINC00649 HGNC:44305
5408               22       33915535     33977692    LINC00649 HGNC:44305
5409               22       33915535     33977692    LINC00649 HGNC:44305
5410               22       33915535     33977692    LINC00649 HGNC:44305
5411               22       33915535     33977692    LINC00649 HGNC:44305
5412               22       33915535     33977692    LINC00649 HGNC:44305
5413               22       33915535     33977692    LINC00649 HGNC:44305
5414               22       33915535     33977692    LINC00649 HGNC:44305
5415               22       33915535     33977692    LINC00649 HGNC:44305
5416               22       33915535     33977692    LINC00649 HGNC:44305
5417               22       33915535     33977692    LINC00649 HGNC:44305
5418               22       33915535     33977692    LINC00649 HGNC:44305
5419               22       33915535     33977692    LINC00649 HGNC:44305
5420               22       33915535     33977692    LINC00649 HGNC:44305
5421               22       33915535     33977692    LINC00649 HGNC:44305
5422               22       33915535     33977692    LINC00649 HGNC:44305
5423               22       33915535     33977692    LINC00649 HGNC:44305
5424               22       33915535     33977692    LINC00649 HGNC:44305
5425               22       33915535     33977692    LINC00649 HGNC:44305
5426               22       33915535     33977692    LINC00649 HGNC:44305
5427               22       33915535     33977692    LINC00649 HGNC:44305
5428               22       33915535     33977692    LINC00649 HGNC:44305
5429               22       33915535     33977692    LINC00649 HGNC:44305
5430               22       33915535     33977692    LINC00649 HGNC:44305
5431               22       33915535     33977692    LINC00649 HGNC:44305
5432               22       33915535     33977692    LINC00649 HGNC:44305
5433               22       33915535     33977692    LINC00649 HGNC:44305
5434               22       33915535     33977692    LINC00649 HGNC:44305
5435               22       33915535     33977692    LINC00649 HGNC:44305
5436               22       33915535     33977692    LINC00649 HGNC:44305
5437               22       33915535     33977692    LINC00649 HGNC:44305
5438               22       33915535     33977692    LINC00649 HGNC:44305
5439               22       33915535     33977692    LINC00649 HGNC:44305
5440               22       33915535     33977692    LINC00649 HGNC:44305
5441               22       33915535     33977692    LINC00649 HGNC:44305
5442               22       33915535     33977692    LINC00649 HGNC:44305
5443               22       33915535     33977692    LINC00649 HGNC:44305
5444               22       33915535     33977692    LINC00649 HGNC:44305
5445               22       33915535     33977692    LINC00649 HGNC:44305
5446               22       33915535     33977692    LINC00649 HGNC:44305
5447               22       33915535     33977692    LINC00649 HGNC:44305
5448               22       33915535     33977692    LINC00649 HGNC:44305
5449               22       33915535     33977692    LINC00649 HGNC:44305
5450               22       33915535     33977692    LINC00649 HGNC:44305
5451               22       33915535     33977692    LINC00649 HGNC:44305
5452               22       33915535     33977692    LINC00649 HGNC:44305
5453               22       33915535     33977692    LINC00649 HGNC:44305
5454               22       33915535     33977692    LINC00649 HGNC:44305
5455               22       33915535     33977692    LINC00649 HGNC:44305
5456               22       33915535     33977692    LINC00649 HGNC:44305
5457               22       33915535     33977692    LINC00649 HGNC:44305
5458               22       33915535     33977692    LINC00649 HGNC:44305
5459               22       33518611     33519109       BTF3P6 HGNC:23765
5460               22       39556443     39673138      B3GALT5   HGNC:920
5461               22       39556443     39673138      B3GALT5   HGNC:920
5462               22       39556443     39673138      B3GALT5   HGNC:920
5463               22       39556443     39673138      B3GALT5   HGNC:920
5464               22       39556443     39673138      B3GALT5   HGNC:920
5465               22       39556443     39673138      B3GALT5   HGNC:920
5466               22       39556443     39673138      B3GALT5   HGNC:920
5467               22       39556443     39673138      B3GALT5   HGNC:920
5468               22       39556443     39673138      B3GALT5   HGNC:920
5469               22       39556443     39673138      B3GALT5   HGNC:920
5470               22       39556443     39673138      B3GALT5   HGNC:920
5471               22       39556443     39673138      B3GALT5   HGNC:920
5472               22       39556443     39673138      B3GALT5   HGNC:920
5473               22       39556443     39673138      B3GALT5   HGNC:920
5474               22       39556443     39673138      B3GALT5   HGNC:920
5475               22       39556443     39673138      B3GALT5   HGNC:920
5476               22       39556443     39673138      B3GALT5   HGNC:920
5477               22       39556443     39673138      B3GALT5   HGNC:920
5478               22       33542619     33577482          SON HGNC:11183
5479               22       33542619     33577482          SON HGNC:11183
5480               22       33542619     33577482          SON HGNC:11183
5481               22       33542619     33577482          SON HGNC:11183
5482               22       33542619     33577482          SON HGNC:11183
5483               22       33542619     33577482          SON HGNC:11183
5484               22       33542619     33577482          SON HGNC:11183
5485               22       33542619     33577482          SON HGNC:11183
5486               22       33542619     33577482          SON HGNC:11183
5487               22       33542619     33577482          SON HGNC:11183
5488               22       33542619     33577482          SON HGNC:11183
5489               22       33542619     33577482          SON HGNC:11183
5490               22       33542619     33577482          SON HGNC:11183
5491               22       33542619     33577482          SON HGNC:11183
5492               22       33542619     33577482          SON HGNC:11183
5493               22       33542619     33577482          SON HGNC:11183
5494               22       33542619     33577482          SON HGNC:11183
5495               22       33542619     33577482          SON HGNC:11183
5496               22       33542619     33577482          SON HGNC:11183
5497               22       33542619     33577482          SON HGNC:11183
5498               22       33542619     33577482          SON HGNC:11183
5499               22       33542619     33577482          SON HGNC:11183
5500               22       33542619     33577482          SON HGNC:11183
5501               22       33542619     33577482          SON HGNC:11183
5502               22       33542619     33577482          SON HGNC:11183
5503               22       33542619     33577482          SON HGNC:11183
5504               22       33542619     33577482          SON HGNC:11183
5505               22       33542619     33577482          SON HGNC:11183
5506               22       33542619     33577482          SON HGNC:11183
5507               22       33542619     33577482          SON HGNC:11183
5508               22       33542619     33577482          SON HGNC:11183
5509               22       33542619     33577482          SON HGNC:11183
5510               22       33542619     33577482          SON HGNC:11183
5511               22       33542619     33577482          SON HGNC:11183
5512               22       33542619     33577482          SON HGNC:11183
5513               22       33542619     33577482          SON HGNC:11183
5514               22       33542619     33577482          SON HGNC:11183
5515               22       33542619     33577482          SON HGNC:11183
5516               22       33542619     33577482          SON HGNC:11183
5517               22       33542619     33577482          SON HGNC:11183
5518               22       33542619     33577482          SON HGNC:11183
5519               22       33542619     33577482          SON HGNC:11183
5520               22       33542619     33577482          SON HGNC:11183
5521               22       33542619     33577482          SON HGNC:11183
5522               22       33542619     33577482          SON HGNC:11183
5523               22       33542619     33577482          SON HGNC:11183
5524               22       33542619     33577482          SON HGNC:11183
5525               22       33542619     33577482          SON HGNC:11183
5526               22       33542619     33577482          SON HGNC:11183
5527               22       33542619     33577482          SON HGNC:11183
5528               22       33542619     33577482          SON HGNC:11183
5529               22       33542619     33577482          SON HGNC:11183
5530               22       33542619     33577482          SON HGNC:11183
5531               22       33542619     33577482          SON HGNC:11183
5532               22       33542619     33577482          SON HGNC:11183
5533               22       33542619     33577482          SON HGNC:11183
5534               22       33542619     33577482          SON HGNC:11183
5535               22       33542619     33577482          SON HGNC:11183
5536               22       33542619     33577482          SON HGNC:11183
5537               22       33542619     33577482          SON HGNC:11183
5538               22       33542619     33577482          SON HGNC:11183
5539               22       33542619     33577482          SON HGNC:11183
5540               22       33542619     33577482          SON HGNC:11183
5541               22       33542619     33577482          SON HGNC:11183
5542               22       33542619     33577482          SON HGNC:11183
5543               22       33542619     33577482          SON HGNC:11183
5544               22       33542619     33577482          SON HGNC:11183
5545               22       33542619     33577482          SON HGNC:11183
5546               22       33542619     33577482          SON HGNC:11183
5547               22       33542619     33577482          SON HGNC:11183
5548               22       33542619     33577482          SON HGNC:11183
5549               22       33542619     33577482          SON HGNC:11183
5550               22       33542619     33577482          SON HGNC:11183
5551               22       33542619     33577482          SON HGNC:11183
5552               22       33542619     33577482          SON HGNC:11183
5553               22       33542619     33577482          SON HGNC:11183
5554               22       33542619     33577482          SON HGNC:11183
5555               22       33542619     33577482          SON HGNC:11183
5556               22       33542619     33577482          SON HGNC:11183
5557               22       33542619     33577482          SON HGNC:11183
5558               22       33542619     33577482          SON HGNC:11183
5559               22       33542619     33577482          SON HGNC:11183
5560               22       33542619     33577482          SON HGNC:11183
5561               22       33542619     33577482          SON HGNC:11183
5562               22       33542619     33577482          SON HGNC:11183
5563               22       33542619     33577482          SON HGNC:11183
5564               22       33542619     33577482          SON HGNC:11183
5565               22       33542619     33577482          SON HGNC:11183
5566               22       33542619     33577482          SON HGNC:11183
5567               22       33542619     33577482          SON HGNC:11183
5568               22       33542619     33577482          SON HGNC:11183
5569               22       33542619     33577482          SON HGNC:11183
5570               22       33542619     33577482          SON HGNC:11183
5571               22       33542619     33577482          SON HGNC:11183
5572               22       33542619     33577482          SON HGNC:11183
5573               22       33542619     33577482          SON HGNC:11183
5574               22       33542619     33577482          SON HGNC:11183
5575               22       33542619     33577482          SON HGNC:11183
5576               22       33542619     33577482          SON HGNC:11183
5577               22       33542619     33577482          SON HGNC:11183
5578               22       33542619     33577482          SON HGNC:11183
5579               22       33542619     33577482          SON HGNC:11183
5580               22       33542619     33577482          SON HGNC:11183
5581               22       33542619     33577482          SON HGNC:11183
5582               22       33542619     33577482          SON HGNC:11183
5583               22       33542619     33577482          SON HGNC:11183
5584               22       33542619     33577482          SON HGNC:11183
5585               22       33542619     33577482          SON HGNC:11183
5586               22       33542619     33577482          SON HGNC:11183
5587               22       33542619     33577482          SON HGNC:11183
5588               22       33542619     33577482          SON HGNC:11183
5589               22       33542619     33577482          SON HGNC:11183
5590               22       33542619     33577482          SON HGNC:11183
5591               22       33542619     33577482          SON HGNC:11183
5592               22       33542619     33577482          SON HGNC:11183
5593               22       33542619     33577482          SON HGNC:11183
5594               22       33542619     33577482          SON HGNC:11183
5595               22       33542619     33577482          SON HGNC:11183
5596               22       33542619     33577482          SON HGNC:11183
5597               22       33542619     33577482          SON HGNC:11183
5598               22       33542619     33577482          SON HGNC:11183
5599               22       33542619     33577482          SON HGNC:11183
5600               22       33542619     33577482          SON HGNC:11183
5601               22       33542619     33577482          SON HGNC:11183
5602               22       46151615     46152648     FTCD-AS1 HGNC:40243
5603               22       46151615     46152648     FTCD-AS1 HGNC:40243
5604               22       39630272     39726086                        
5605               22       39630272     39726086                        
5606               22       39630272     39726086                        
5607               22       39597148     39612822  B3GALT5-AS1 HGNC:16424
5608               22       39597148     39612822  B3GALT5-AS1 HGNC:16424
5609               22       39597148     39612822  B3GALT5-AS1 HGNC:16424
5610               22       39597148     39612822  B3GALT5-AS1 HGNC:16424
5611               22       39597148     39612822  B3GALT5-AS1 HGNC:16424
5612               22       39597148     39612822  B3GALT5-AS1 HGNC:16424
5613               22       39597148     39612822  B3GALT5-AS1 HGNC:16424
5614               22       39597148     39612822  B3GALT5-AS1 HGNC:16424
5615               22       39597148     39612822  B3GALT5-AS1 HGNC:16424
5616               22       39597148     39612822  B3GALT5-AS1 HGNC:16424
5617               22       39597148     39612822  B3GALT5-AS1 HGNC:16424
5618               22       39727756     39730681                        
5619               22       39727756     39730681                        
5620               22       39727756     39730681                        
5621               22       39727756     39730681                        
5622               22       39727756     39730681                        
5623               22       39745408     39802097        IGSF5  HGNC:5952
5624               22       39745408     39802097        IGSF5  HGNC:5952
5625               22       39745408     39802097        IGSF5  HGNC:5952
5626               22       39745408     39802097        IGSF5  HGNC:5952
5627               22       39745408     39802097        IGSF5  HGNC:5952
5628               22       39745408     39802097        IGSF5  HGNC:5952
5629               22       39745408     39802097        IGSF5  HGNC:5952
5630               22       39745408     39802097        IGSF5  HGNC:5952
5631               22       39745408     39802097        IGSF5  HGNC:5952
5632               22       39745408     39802097        IGSF5  HGNC:5952
5633               22       39745408     39802097        IGSF5  HGNC:5952
5634               22       39745408     39802097        IGSF5  HGNC:5952
5635               22       39745408     39802097        IGSF5  HGNC:5952
5636               22       39745408     39802097        IGSF5  HGNC:5952
5637               22       39745408     39802097        IGSF5  HGNC:5952
5638               22       39745408     39802097        IGSF5  HGNC:5952
5639               22       39745408     39802097        IGSF5  HGNC:5952
5640               22       44339377     44340471                        
5641               22       44339377     44340471                        
5642               22       44331235     44335852                        
5643               22       44331235     44335852                        
5644               22       33903454     33915981        ATP5O   HGNC:850
5645               22       33903454     33915981        ATP5O   HGNC:850
5646               22       33903454     33915981        ATP5O   HGNC:850
5647               22       33903454     33915981        ATP5O   HGNC:850
5648               22       33903454     33915981        ATP5O   HGNC:850
5649               22       33903454     33915981        ATP5O   HGNC:850
5650               22       33903454     33915981        ATP5O   HGNC:850
5651               22       33903454     33915981        ATP5O   HGNC:850
5652               22       33903454     33915981        ATP5O   HGNC:850
5653               22       33903454     33915981        ATP5O   HGNC:850
5654               22       33903454     33915981        ATP5O   HGNC:850
5655               22       33903454     33915981        ATP5O   HGNC:850
5656               22       33903454     33915981        ATP5O   HGNC:850
5657               22       33903454     33915981        ATP5O   HGNC:850
5658               22       33903454     33915981        ATP5O   HGNC:850
5659               22       33903454     33915981        ATP5O   HGNC:850
5660               22       33903454     33915981        ATP5O   HGNC:850
5661               22       33903454     33915981        ATP5O   HGNC:850
5662               22       33903454     33915981        ATP5O   HGNC:850
5663               22       33903454     33915981        ATP5O   HGNC:850
5664               22       33903454     33915981        ATP5O   HGNC:850
5665               22       33903454     33915981        ATP5O   HGNC:850
5666               22       33903454     33915981        ATP5O   HGNC:850
5667               22       33903454     33915981        ATP5O   HGNC:850
5668               22       33903454     33915981        ATP5O   HGNC:850
5669               22       33903454     33915981        ATP5O   HGNC:850
5670               22       33903454     33915981        ATP5O   HGNC:850
5671               22       33903454     33915981        ATP5O   HGNC:850
5672               22       33903454     33915981        ATP5O   HGNC:850
5673               22       33903454     33915981        ATP5O   HGNC:850
5674               22       33903454     33915981        ATP5O   HGNC:850
5675               22       33903454     33915981        ATP5O   HGNC:850
5676               22       33903454     33915981        ATP5O   HGNC:850
5677               22       33903454     33915981        ATP5O   HGNC:850
5678               22       33903454     33915981        ATP5O   HGNC:850
5679               22       33903454     33915981        ATP5O   HGNC:850
5680               22       33903454     33915981        ATP5O   HGNC:850
5681               22       33903454     33915981        ATP5O   HGNC:850
5682               22       33903454     33915981        ATP5O   HGNC:850
5683               22       33903454     33915981        ATP5O   HGNC:850
5684               22       33903454     33915981        ATP5O   HGNC:850
5685               22       33903454     33915981        ATP5O   HGNC:850
5686               22       33903454     33915981        ATP5O   HGNC:850
5687               22       33903454     33915981        ATP5O   HGNC:850
5688               22       33903454     33915981        ATP5O   HGNC:850
5689               22       29193481     29288206    LINC00189 HGNC:18461
5690               22       29193481     29288206    LINC00189 HGNC:18461
5691               22       29193481     29288206    LINC00189 HGNC:18461
5692               22       29193481     29288206    LINC00189 HGNC:18461
5693               22       29193481     29288206    LINC00189 HGNC:18461
5694               22       29193481     29288206    LINC00189 HGNC:18461
5695               22       29193481     29288206    LINC00189 HGNC:18461
5696               22       29193481     29288206    LINC00189 HGNC:18461
5697               22       40011000     40847140        DSCAM  HGNC:3039
5698               22       40011000     40847140        DSCAM  HGNC:3039
5699               22       40011000     40847140        DSCAM  HGNC:3039
5700               22       40011000     40847140        DSCAM  HGNC:3039
5701               22       40011000     40847140        DSCAM  HGNC:3039
5702               22       40011000     40847140        DSCAM  HGNC:3039
5703               22       40011000     40847140        DSCAM  HGNC:3039
5704               22       40011000     40847140        DSCAM  HGNC:3039
5705               22       40011000     40847140        DSCAM  HGNC:3039
5706               22       40011000     40847140        DSCAM  HGNC:3039
5707               22       40011000     40847140        DSCAM  HGNC:3039
5708               22       40011000     40847140        DSCAM  HGNC:3039
5709               22       40011000     40847140        DSCAM  HGNC:3039
5710               22       40011000     40847140        DSCAM  HGNC:3039
5711               22       40011000     40847140        DSCAM  HGNC:3039
5712               22       40011000     40847140        DSCAM  HGNC:3039
5713               22       40011000     40847140        DSCAM  HGNC:3039
5714               22       40011000     40847140        DSCAM  HGNC:3039
5715               22       40011000     40847140        DSCAM  HGNC:3039
5716               22       40011000     40847140        DSCAM  HGNC:3039
5717               22       40011000     40847140        DSCAM  HGNC:3039
5718               22       40011000     40847140        DSCAM  HGNC:3039
5719               22       40011000     40847140        DSCAM  HGNC:3039
5720               22       40011000     40847140        DSCAM  HGNC:3039
5721               22       40011000     40847140        DSCAM  HGNC:3039
5722               22       40011000     40847140        DSCAM  HGNC:3039
5723               22       40011000     40847140        DSCAM  HGNC:3039
5724               22       40011000     40847140        DSCAM  HGNC:3039
5725               22       40011000     40847140        DSCAM  HGNC:3039
5726               22       40011000     40847140        DSCAM  HGNC:3039
5727               22       40011000     40847140        DSCAM  HGNC:3039
5728               22       40011000     40847140        DSCAM  HGNC:3039
5729               22       40011000     40847140        DSCAM  HGNC:3039
5730               22       40011000     40847140        DSCAM  HGNC:3039
5731               22       40011000     40847140        DSCAM  HGNC:3039
5732               22       40011000     40847140        DSCAM  HGNC:3039
5733               22       40011000     40847140        DSCAM  HGNC:3039
5734               22       40011000     40847140        DSCAM  HGNC:3039
5735               22       40011000     40847140        DSCAM  HGNC:3039
5736               22       40011000     40847140        DSCAM  HGNC:3039
5737               22       40011000     40847140        DSCAM  HGNC:3039
5738               22       40011000     40847140        DSCAM  HGNC:3039
5739               22       40011000     40847140        DSCAM  HGNC:3039
5740               22       40011000     40847140        DSCAM  HGNC:3039
5741               22       40011000     40847140        DSCAM  HGNC:3039
5742               22       40011000     40847140        DSCAM  HGNC:3039
5743               22       40011000     40847140        DSCAM  HGNC:3039
5744               22       40011000     40847140        DSCAM  HGNC:3039
5745               22       40011000     40847140        DSCAM  HGNC:3039
5746               22       40011000     40847140        DSCAM  HGNC:3039
5747               22       40011000     40847140        DSCAM  HGNC:3039
5748               22       40011000     40847140        DSCAM  HGNC:3039
5749               22       40011000     40847140        DSCAM  HGNC:3039
5750               22       40011000     40847140        DSCAM  HGNC:3039
5751               22       40011000     40847140        DSCAM  HGNC:3039
5752               22       40011000     40847140        DSCAM  HGNC:3039
5753               22       40011000     40847140        DSCAM  HGNC:3039
5754               22       40011000     40847140        DSCAM  HGNC:3039
5755               22       40011000     40847140        DSCAM  HGNC:3039
5756               22       40011000     40847140        DSCAM  HGNC:3039
5757               22       40011000     40847140        DSCAM  HGNC:3039
5758               22       40011000     40847140        DSCAM  HGNC:3039
5759               22       40011000     40847140        DSCAM  HGNC:3039
5760               22       40011000     40847140        DSCAM  HGNC:3039
5761               22       40011000     40847140        DSCAM  HGNC:3039
5762               22       40011000     40847140        DSCAM  HGNC:3039
5763               22       40011000     40847140        DSCAM  HGNC:3039
5764               22       40011000     40847140        DSCAM  HGNC:3039
5765               22       40011000     40847140        DSCAM  HGNC:3039
5766               22       40011000     40847140        DSCAM  HGNC:3039
5767               22       40011000     40847140        DSCAM  HGNC:3039
5768               22       40011000     40847140        DSCAM  HGNC:3039
5769               22       40011000     40847140        DSCAM  HGNC:3039
5770               22       40011000     40847140        DSCAM  HGNC:3039
5771               22       40011000     40847140        DSCAM  HGNC:3039
5772               22       40011000     40847140        DSCAM  HGNC:3039
5773               22       40011000     40847140        DSCAM  HGNC:3039
5774               22       40011000     40847140        DSCAM  HGNC:3039
5775               22       40011000     40847140        DSCAM  HGNC:3039
5776               22       40011000     40847140        DSCAM  HGNC:3039
5777               22       40011000     40847140        DSCAM  HGNC:3039
5778               22       40011000     40847140        DSCAM  HGNC:3039
5779               22       40011000     40847140        DSCAM  HGNC:3039
5780               22       40011000     40847140        DSCAM  HGNC:3039
5781               22       40011000     40847140        DSCAM  HGNC:3039
5782               22       40011000     40847140        DSCAM  HGNC:3039
5783               22       40011000     40847140        DSCAM  HGNC:3039
5784               22       40011000     40847140        DSCAM  HGNC:3039
5785               22       40011000     40847140        DSCAM  HGNC:3039
5786               22       40011000     40847140        DSCAM  HGNC:3039
5787               22       40011000     40847140        DSCAM  HGNC:3039
5788               22       40011000     40847140        DSCAM  HGNC:3039
5789               22       37073227     37203113         TTC3 HGNC:12393
5790               22       37073227     37203113         TTC3 HGNC:12393
5791               22       37073227     37203113         TTC3 HGNC:12393
5792               22       37073227     37203113         TTC3 HGNC:12393
5793               22       37073227     37203113         TTC3 HGNC:12393
5794               22       37073227     37203113         TTC3 HGNC:12393
5795               22       37073227     37203113         TTC3 HGNC:12393
5796               22       37073227     37203113         TTC3 HGNC:12393
5797               22       37073227     37203113         TTC3 HGNC:12393
5798               22       37073227     37203113         TTC3 HGNC:12393
5799               22       37073227     37203113         TTC3 HGNC:12393
5800               22       37073227     37203113         TTC3 HGNC:12393
5801               22       37073227     37203113         TTC3 HGNC:12393
5802               22       37073227     37203113         TTC3 HGNC:12393
5803               22       37073227     37203113         TTC3 HGNC:12393
5804               22       37073227     37203113         TTC3 HGNC:12393
5805               22       37073227     37203113         TTC3 HGNC:12393
5806               22       37073227     37203113         TTC3 HGNC:12393
5807               22       37073227     37203113         TTC3 HGNC:12393
5808               22       37073227     37203113         TTC3 HGNC:12393
5809               22       37073227     37203113         TTC3 HGNC:12393
5810               22       37073227     37203113         TTC3 HGNC:12393
5811               22       37073227     37203113         TTC3 HGNC:12393
5812               22       37073227     37203113         TTC3 HGNC:12393
5813               22       37073227     37203113         TTC3 HGNC:12393
5814               22       37073227     37203113         TTC3 HGNC:12393
5815               22       37073227     37203113         TTC3 HGNC:12393
5816               22       37073227     37203113         TTC3 HGNC:12393
5817               22       37073227     37203113         TTC3 HGNC:12393
5818               22       37073227     37203113         TTC3 HGNC:12393
5819               22       37073227     37203113         TTC3 HGNC:12393
5820               22       37073227     37203113         TTC3 HGNC:12393
5821               22       37073227     37203113         TTC3 HGNC:12393
5822               22       37073227     37203113         TTC3 HGNC:12393
5823               22       37073227     37203113         TTC3 HGNC:12393
5824               22       37073227     37203113         TTC3 HGNC:12393
5825               22       37073227     37203113         TTC3 HGNC:12393
5826               22       37073227     37203113         TTC3 HGNC:12393
5827               22       37073227     37203113         TTC3 HGNC:12393
5828               22       37073227     37203113         TTC3 HGNC:12393
5829               22       37073227     37203113         TTC3 HGNC:12393
5830               22       37073227     37203113         TTC3 HGNC:12393
5831               22       37073227     37203113         TTC3 HGNC:12393
5832               22       37073227     37203113         TTC3 HGNC:12393
5833               22       37073227     37203113         TTC3 HGNC:12393
5834               22       37073227     37203113         TTC3 HGNC:12393
5835               22       37073227     37203113         TTC3 HGNC:12393
5836               22       37073227     37203113         TTC3 HGNC:12393
5837               22       37073227     37203113         TTC3 HGNC:12393
5838               22       37073227     37203113         TTC3 HGNC:12393
5839               22       37073227     37203113         TTC3 HGNC:12393
5840               22       37073227     37203113         TTC3 HGNC:12393
5841               22       37073227     37203113         TTC3 HGNC:12393
5842               22       37073227     37203113         TTC3 HGNC:12393
5843               22       37073227     37203113         TTC3 HGNC:12393
5844               22       37073227     37203113         TTC3 HGNC:12393
5845               22       37073227     37203113         TTC3 HGNC:12393
5846               22       37073227     37203113         TTC3 HGNC:12393
5847               22       37073227     37203113         TTC3 HGNC:12393
5848               22       37073227     37203113         TTC3 HGNC:12393
5849               22       37073227     37203113         TTC3 HGNC:12393
5850               22       37073227     37203113         TTC3 HGNC:12393
5851               22       37073227     37203113         TTC3 HGNC:12393
5852               22       37073227     37203113         TTC3 HGNC:12393
5853               22       37073227     37203113         TTC3 HGNC:12393
5854               22       37073227     37203113         TTC3 HGNC:12393
5855               22       37073227     37203113         TTC3 HGNC:12393
5856               22       37073227     37203113         TTC3 HGNC:12393
5857               22       37073227     37203113         TTC3 HGNC:12393
5858               22       37073227     37203113         TTC3 HGNC:12393
5859               22       37073227     37203113         TTC3 HGNC:12393
5860               22       37073227     37203113         TTC3 HGNC:12393
5861               22       37073227     37203113         TTC3 HGNC:12393
5862               22       37073227     37203113         TTC3 HGNC:12393
5863               22       37073227     37203113         TTC3 HGNC:12393
5864               22       37073227     37203113         TTC3 HGNC:12393
5865               22       37073227     37203113         TTC3 HGNC:12393
5866               22       37073227     37203113         TTC3 HGNC:12393
5867               22       37073227     37203113         TTC3 HGNC:12393
5868               22       37073227     37203113         TTC3 HGNC:12393
5869               22       37073227     37203113         TTC3 HGNC:12393
5870               22       37073227     37203113         TTC3 HGNC:12393
5871               22       37073227     37203113         TTC3 HGNC:12393
5872               22       37073227     37203113         TTC3 HGNC:12393
5873               22       37073227     37203113         TTC3 HGNC:12393
5874               22       37073227     37203113         TTC3 HGNC:12393
5875               22       37073227     37203113         TTC3 HGNC:12393
5876               22       37073227     37203113         TTC3 HGNC:12393
5877               22       37073227     37203113         TTC3 HGNC:12393
5878               22       37073227     37203113         TTC3 HGNC:12393
5879               22       37073227     37203113         TTC3 HGNC:12393
5880               22       37073227     37203113         TTC3 HGNC:12393
5881               22       37073227     37203113         TTC3 HGNC:12393
5882               22       37073227     37203113         TTC3 HGNC:12393
5883               22       37073227     37203113         TTC3 HGNC:12393
5884               22       37073227     37203113         TTC3 HGNC:12393
5885               22       37073227     37203113         TTC3 HGNC:12393
5886               22       37073227     37203113         TTC3 HGNC:12393
5887               22       37073227     37203113         TTC3 HGNC:12393
5888               22       37073227     37203113         TTC3 HGNC:12393
5889               22       37073227     37203113         TTC3 HGNC:12393
5890               22       37073227     37203113         TTC3 HGNC:12393
5891               22       37073227     37203113         TTC3 HGNC:12393
5892               22       37073227     37203113         TTC3 HGNC:12393
5893               22       37073227     37203113         TTC3 HGNC:12393
5894               22       37073227     37203113         TTC3 HGNC:12393
5895               22       37073227     37203113         TTC3 HGNC:12393
5896               22       37073227     37203113         TTC3 HGNC:12393
5897               22       37073227     37203113         TTC3 HGNC:12393
5898               22       37073227     37203113         TTC3 HGNC:12393
5899               22       37073227     37203113         TTC3 HGNC:12393
5900               22       37073227     37203113         TTC3 HGNC:12393
5901               22       37073227     37203113         TTC3 HGNC:12393
5902               22       37073227     37203113         TTC3 HGNC:12393
5903               22       37073227     37203113         TTC3 HGNC:12393
5904               22       37073227     37203113         TTC3 HGNC:12393
5905               22       37073227     37203113         TTC3 HGNC:12393
5906               22       37073227     37203113         TTC3 HGNC:12393
5907               22       37073227     37203113         TTC3 HGNC:12393
5908               22       37073227     37203113         TTC3 HGNC:12393
5909               22       37073227     37203113         TTC3 HGNC:12393
5910               22       37073227     37203113         TTC3 HGNC:12393
5911               22       37073227     37203113         TTC3 HGNC:12393
5912               22       37073227     37203113         TTC3 HGNC:12393
5913               22       37073227     37203113         TTC3 HGNC:12393
5914               22       37073227     37203113         TTC3 HGNC:12393
5915               22       37073227     37203113         TTC3 HGNC:12393
5916               22       37073227     37203113         TTC3 HGNC:12393
5917               22       37073227     37203113         TTC3 HGNC:12393
5918               22       37073227     37203113         TTC3 HGNC:12393
5919               22       37073227     37203113         TTC3 HGNC:12393
5920               22       37073227     37203113         TTC3 HGNC:12393
5921               22       37073227     37203113         TTC3 HGNC:12393
5922               22       37073227     37203113         TTC3 HGNC:12393
5923               22       37073227     37203113         TTC3 HGNC:12393
5924               22       37073227     37203113         TTC3 HGNC:12393
5925               22       37073227     37203113         TTC3 HGNC:12393
5926               22       37073227     37203113         TTC3 HGNC:12393
5927               22       37073227     37203113         TTC3 HGNC:12393
5928               22       37073227     37203113         TTC3 HGNC:12393
5929               22       37073227     37203113         TTC3 HGNC:12393
5930               22       37073227     37203113         TTC3 HGNC:12393
5931               22       37073227     37203113         TTC3 HGNC:12393
5932               22       37073227     37203113         TTC3 HGNC:12393
5933               22       37073227     37203113         TTC3 HGNC:12393
5934               22       37073227     37203113         TTC3 HGNC:12393
5935               22       37073227     37203113         TTC3 HGNC:12393
5936               22       37073227     37203113         TTC3 HGNC:12393
5937               22       37073227     37203113         TTC3 HGNC:12393
5938               22       37073227     37203113         TTC3 HGNC:12393
5939               22       37073227     37203113         TTC3 HGNC:12393
5940               22       37073227     37203113         TTC3 HGNC:12393
5941               22       37073227     37203113         TTC3 HGNC:12393
5942               22       37073227     37203113         TTC3 HGNC:12393
5943               22       37073227     37203113         TTC3 HGNC:12393
5944               22       37073227     37203113         TTC3 HGNC:12393
5945               22       37073227     37203113         TTC3 HGNC:12393
5946               22       37073227     37203113         TTC3 HGNC:12393
5947               22       37073227     37203113         TTC3 HGNC:12393
5948               22       37073227     37203113         TTC3 HGNC:12393
5949               22       37073227     37203113         TTC3 HGNC:12393
5950               22       37073227     37203113         TTC3 HGNC:12393
5951               22       37073227     37203113         TTC3 HGNC:12393
5952               22       37073227     37203113         TTC3 HGNC:12393
5953               22       37073227     37203113         TTC3 HGNC:12393
5954               22       37073227     37203113         TTC3 HGNC:12393
5955               22       37073227     37203113         TTC3 HGNC:12393
5956               22       37073227     37203113         TTC3 HGNC:12393
5957               22       37073227     37203113         TTC3 HGNC:12393
5958               22       37073227     37203113         TTC3 HGNC:12393
5959               22       37073227     37203113         TTC3 HGNC:12393
5960               22       37073227     37203113         TTC3 HGNC:12393
5961               22       37073227     37203113         TTC3 HGNC:12393
5962               22       37073227     37203113         TTC3 HGNC:12393
5963               22       37073227     37203113         TTC3 HGNC:12393
5964               22       37073227     37203113         TTC3 HGNC:12393
5965               22       37073227     37203113         TTC3 HGNC:12393
5966               22       37073227     37203113         TTC3 HGNC:12393
5967               22       37073227     37203113         TTC3 HGNC:12393
5968               22       37073227     37203113         TTC3 HGNC:12393
5969               22       37073227     37203113         TTC3 HGNC:12393
5970               22       37073227     37203113         TTC3 HGNC:12393
5971               22       37073227     37203113         TTC3 HGNC:12393
5972               22       37073227     37203113         TTC3 HGNC:12393
5973               22       37073227     37203113         TTC3 HGNC:12393
5974               22       37073227     37203113         TTC3 HGNC:12393
5975               22       37073227     37203113         TTC3 HGNC:12393
5976               22       37073227     37203113         TTC3 HGNC:12393
5977               22       37073227     37203113         TTC3 HGNC:12393
5978               22       37073227     37203113         TTC3 HGNC:12393
5979               22       37073227     37203113         TTC3 HGNC:12393
5980               22       37073227     37203113         TTC3 HGNC:12393
5981               22       37073227     37203113         TTC3 HGNC:12393
5982               22       37073227     37203113         TTC3 HGNC:12393
5983               22       37073227     37203113         TTC3 HGNC:12393
5984               22       37073227     37203113         TTC3 HGNC:12393
5985               22       37073227     37203113         TTC3 HGNC:12393
5986               22       37073227     37203113         TTC3 HGNC:12393
5987               22       37073227     37203113         TTC3 HGNC:12393
5988               22       37073227     37203113         TTC3 HGNC:12393
5989               22       37073227     37203113         TTC3 HGNC:12393
5990               22       37073227     37203113         TTC3 HGNC:12393
5991               22       37073227     37203113         TTC3 HGNC:12393
5992               22       37073227     37203113         TTC3 HGNC:12393
5993               22       37073227     37203113         TTC3 HGNC:12393
5994               22       37073227     37203113         TTC3 HGNC:12393
5995               22       37073227     37203113         TTC3 HGNC:12393
5996               22       37073227     37203113         TTC3 HGNC:12393
5997               22       37073227     37203113         TTC3 HGNC:12393
5998               22       37073227     37203113         TTC3 HGNC:12393
5999               22       37073227     37203113         TTC3 HGNC:12393
6000               22       37073227     37203113         TTC3 HGNC:12393
6001               22       37073227     37203113         TTC3 HGNC:12393
6002               22       37073227     37203113         TTC3 HGNC:12393
6003               22       37073227     37203113         TTC3 HGNC:12393
6004               22       37073227     37203113         TTC3 HGNC:12393
6005               22       37073227     37203113         TTC3 HGNC:12393
6006               22       37073227     37203113         TTC3 HGNC:12393
6007               22       37073227     37203113         TTC3 HGNC:12393
6008               22       37073227     37203113         TTC3 HGNC:12393
6009               22       37073227     37203113         TTC3 HGNC:12393
6010               22       37073227     37203113         TTC3 HGNC:12393
6011               22       37073227     37203113         TTC3 HGNC:12393
6012               22       37073227     37203113         TTC3 HGNC:12393
6013               22       37073227     37203113         TTC3 HGNC:12393
6014               22       37073227     37203113         TTC3 HGNC:12393
6015               22       37073227     37203113         TTC3 HGNC:12393
6016               22       37073227     37203113         TTC3 HGNC:12393
6017               22       37073227     37203113         TTC3 HGNC:12393
6018               22       37073227     37203113         TTC3 HGNC:12393
6019               22       37073227     37203113         TTC3 HGNC:12393
6020               22       37073227     37203113         TTC3 HGNC:12393
6021               22       37073227     37203113         TTC3 HGNC:12393
6022               22       37073227     37203113         TTC3 HGNC:12393
6023               22       37073227     37203113         TTC3 HGNC:12393
6024               22       37073227     37203113         TTC3 HGNC:12393
6025               22       37073227     37203113         TTC3 HGNC:12393
6026               22       37073227     37203113         TTC3 HGNC:12393
6027               22       37073227     37203113         TTC3 HGNC:12393
6028               22       37073227     37203113         TTC3 HGNC:12393
6029               22       37073227     37203113         TTC3 HGNC:12393
6030               22       37073227     37203113         TTC3 HGNC:12393
6031               22       37073227     37203113         TTC3 HGNC:12393
6032               22       37073227     37203113         TTC3 HGNC:12393
6033               22       37073227     37203113         TTC3 HGNC:12393
6034               22       37073227     37203113         TTC3 HGNC:12393
6035               22       37073227     37203113         TTC3 HGNC:12393
6036               22       37073227     37203113         TTC3 HGNC:12393
6037               22       37073227     37203113         TTC3 HGNC:12393
6038               22       37073227     37203113         TTC3 HGNC:12393
6039               22       37073227     37203113         TTC3 HGNC:12393
6040               22       37073227     37203113         TTC3 HGNC:12393
6041               22       37073227     37203113         TTC3 HGNC:12393
6042               22       37073227     37203113         TTC3 HGNC:12393
6043               22       37073227     37203113         TTC3 HGNC:12393
6044               22       37073227     37203113         TTC3 HGNC:12393
6045               22       37073227     37203113         TTC3 HGNC:12393
6046               22       37073227     37203113         TTC3 HGNC:12393
6047               22       37073227     37203113         TTC3 HGNC:12393
6048               22       37073227     37203113         TTC3 HGNC:12393
6049               22       37073227     37203113         TTC3 HGNC:12393
6050               22       37073227     37203113         TTC3 HGNC:12393
6051               22       37073227     37203113         TTC3 HGNC:12393
6052               22       37073227     37203113         TTC3 HGNC:12393
6053               22       37073227     37203113         TTC3 HGNC:12393
6054               22       37073227     37203113         TTC3 HGNC:12393
6055               22       37073227     37203113         TTC3 HGNC:12393
6056               22       37073227     37203113         TTC3 HGNC:12393
6057               22       37073227     37203113         TTC3 HGNC:12393
6058               22       37073227     37203113         TTC3 HGNC:12393
6059               22       37073227     37203113         TTC3 HGNC:12393
6060               22       37073227     37203113         TTC3 HGNC:12393
6061               22       37073227     37203113         TTC3 HGNC:12393
6062               22       37073227     37203113         TTC3 HGNC:12393
6063               22       37073227     37203113         TTC3 HGNC:12393
6064               22       37073227     37203113         TTC3 HGNC:12393
6065               22       37073227     37203113         TTC3 HGNC:12393
6066               22       37073227     37203113         TTC3 HGNC:12393
6067               22       37073227     37203113         TTC3 HGNC:12393
6068               22       37073227     37203113         TTC3 HGNC:12393
6069               22       37073227     37203113         TTC3 HGNC:12393
6070               22       37073227     37203113         TTC3 HGNC:12393
6071               22       37073227     37203113         TTC3 HGNC:12393
6072               22       37073227     37203113         TTC3 HGNC:12393
6073               22       37073227     37203113         TTC3 HGNC:12393
6074               22       37073227     37203113         TTC3 HGNC:12393
6075               22       37073227     37203113         TTC3 HGNC:12393
6076               22       37073227     37203113         TTC3 HGNC:12393
6077               22       37073227     37203113         TTC3 HGNC:12393
6078               22       37073227     37203113         TTC3 HGNC:12393
6079               22       37073227     37203113         TTC3 HGNC:12393
6080               22       37073227     37203113         TTC3 HGNC:12393
6081               22       37073227     37203113         TTC3 HGNC:12393
6082               22       37073227     37203113         TTC3 HGNC:12393
6083               22       37073227     37203113         TTC3 HGNC:12393
6084               22       37073227     37203113         TTC3 HGNC:12393
6085               22       37073227     37203113         TTC3 HGNC:12393
6086               22       37073227     37203113         TTC3 HGNC:12393
6087               22       37073227     37203113         TTC3 HGNC:12393
6088               22       37073227     37203113         TTC3 HGNC:12393
6089               22       37073227     37203113         TTC3 HGNC:12393
6090               22       37073227     37203113         TTC3 HGNC:12393
6091               22       37073227     37203113         TTC3 HGNC:12393
6092               22       37073227     37203113         TTC3 HGNC:12393
6093               22       37073227     37203113         TTC3 HGNC:12393
6094               22       37073227     37203113         TTC3 HGNC:12393
6095               22       37073227     37203113         TTC3 HGNC:12393
6096               22       37073227     37203113         TTC3 HGNC:12393
6097               22       37073227     37203113         TTC3 HGNC:12393
6098               22       37073227     37203113         TTC3 HGNC:12393
6099               22       37073227     37203113         TTC3 HGNC:12393
6100               22       37073227     37203113         TTC3 HGNC:12393
6101               22       37073227     37203113         TTC3 HGNC:12393
6102               22       37073227     37203113         TTC3 HGNC:12393
6103               22       37073227     37203113         TTC3 HGNC:12393
6104               22       37073227     37203113         TTC3 HGNC:12393
6105               22       37073227     37203113         TTC3 HGNC:12393
6106               22       37073227     37203113         TTC3 HGNC:12393
6107               22       37073227     37203113         TTC3 HGNC:12393
6108               22       37073227     37203113         TTC3 HGNC:12393
6109               22       37073227     37203113         TTC3 HGNC:12393
6110               22       37073227     37203113         TTC3 HGNC:12393
6111               22       37073227     37203113         TTC3 HGNC:12393
6112               22       37073227     37203113         TTC3 HGNC:12393
6113               22       37073227     37203113         TTC3 HGNC:12393
6114               22       37073227     37203113         TTC3 HGNC:12393
6115               22       37073227     37203113         TTC3 HGNC:12393
6116               22       37073227     37203113         TTC3 HGNC:12393
6117               22       37073227     37203113         TTC3 HGNC:12393
6118               22       37073227     37203113         TTC3 HGNC:12393
6119               22       37073227     37203113         TTC3 HGNC:12393
6120               22       37073227     37203113         TTC3 HGNC:12393
6121               22       37073227     37203113         TTC3 HGNC:12393
6122               22       37073227     37203113         TTC3 HGNC:12393
6123               22       37073227     37203113         TTC3 HGNC:12393
6124               22       37073227     37203113         TTC3 HGNC:12393
6125               22       37073227     37203113         TTC3 HGNC:12393
6126               22       37073227     37203113         TTC3 HGNC:12393
6127               22       37073227     37203113         TTC3 HGNC:12393
6128               22       37073227     37203113         TTC3 HGNC:12393
6129               22       37073227     37203113         TTC3 HGNC:12393
6130               22       37073227     37203113         TTC3 HGNC:12393
6131               22       37073227     37203113         TTC3 HGNC:12393
6132               22       37073227     37203113         TTC3 HGNC:12393
6133               22       37073227     37203113         TTC3 HGNC:12393
6134               22       37073227     37203113         TTC3 HGNC:12393
6135               22       37073227     37203113         TTC3 HGNC:12393
6136               22       37073227     37203113         TTC3 HGNC:12393
6137               22       37073227     37203113         TTC3 HGNC:12393
6138               22       37073227     37203113         TTC3 HGNC:12393
6139               22       37073227     37203113         TTC3 HGNC:12393
6140               22       37073227     37203113         TTC3 HGNC:12393
6141               22       37073227     37203113         TTC3 HGNC:12393
6142               22       37073227     37203113         TTC3 HGNC:12393
6143               22       37073227     37203113         TTC3 HGNC:12393
6144               22       37073227     37203113         TTC3 HGNC:12393
6145               22       37073227     37203113         TTC3 HGNC:12393
6146               22       37073227     37203113         TTC3 HGNC:12393
6147               22       37073227     37203113         TTC3 HGNC:12393
6148               22       37073227     37203113         TTC3 HGNC:12393
6149               22       37073227     37203113         TTC3 HGNC:12393
6150               22       37073227     37203113         TTC3 HGNC:12393
6151               22       37073227     37203113         TTC3 HGNC:12393
6152               22       37073227     37203113         TTC3 HGNC:12393
6153               22       37073227     37203113         TTC3 HGNC:12393
6154               22       37073227     37203113         TTC3 HGNC:12393
6155               22       37073227     37203113         TTC3 HGNC:12393
6156               22       37073227     37203113         TTC3 HGNC:12393
6157               22       37073227     37203113         TTC3 HGNC:12393
6158               22       37073227     37203113         TTC3 HGNC:12393
6159               22       37073227     37203113         TTC3 HGNC:12393
6160               22       37073227     37203113         TTC3 HGNC:12393
6161               22       37073227     37203113         TTC3 HGNC:12393
6162               22       37073227     37203113         TTC3 HGNC:12393
6163               22       37073227     37203113         TTC3 HGNC:12393
6164               22       37073227     37203113         TTC3 HGNC:12393
6165               22       37073227     37203113         TTC3 HGNC:12393
6166               22       37073227     37203113         TTC3 HGNC:12393
6167               22       37073227     37203113         TTC3 HGNC:12393
6168               22       37073227     37203113         TTC3 HGNC:12393
6169               22       37073227     37203113         TTC3 HGNC:12393
6170               22       37073227     37203113         TTC3 HGNC:12393
6171               22       37073227     37203113         TTC3 HGNC:12393
6172               22       37073227     37203113         TTC3 HGNC:12393
6173               22       37073227     37203113         TTC3 HGNC:12393
6174               22       37073227     37203113         TTC3 HGNC:12393
6175               22       37073227     37203113         TTC3 HGNC:12393
6176               22       37073227     37203113         TTC3 HGNC:12393
6177               22       37073227     37203113         TTC3 HGNC:12393
6178               22       37073227     37203113         TTC3 HGNC:12393
6179               22       37073227     37203113         TTC3 HGNC:12393
6180               22       37073227     37203113         TTC3 HGNC:12393
6181               22       37073227     37203113         TTC3 HGNC:12393
6182               22       37073227     37203113         TTC3 HGNC:12393
6183               22       37073227     37203113         TTC3 HGNC:12393
6184               22       37073227     37203113         TTC3 HGNC:12393
6185               22       37073227     37203113         TTC3 HGNC:12393
6186               22       37073227     37203113         TTC3 HGNC:12393
6187               22       37073227     37203113         TTC3 HGNC:12393
6188               22       37073227     37203113         TTC3 HGNC:12393
6189               22       37073227     37203113         TTC3 HGNC:12393
6190               22       37073227     37203113         TTC3 HGNC:12393
6191               22       37073227     37203113         TTC3 HGNC:12393
6192               22       37073227     37203113         TTC3 HGNC:12393
6193               22       37073227     37203113         TTC3 HGNC:12393
6194               22       37073227     37203113         TTC3 HGNC:12393
6195               22       37073227     37203113         TTC3 HGNC:12393
6196               22       37073227     37203113         TTC3 HGNC:12393
6197               22       37073227     37203113         TTC3 HGNC:12393
6198               22       37073227     37203113         TTC3 HGNC:12393
6199               22       37073227     37203113         TTC3 HGNC:12393
6200               22       37073227     37203113         TTC3 HGNC:12393
6201               22       37073227     37203113         TTC3 HGNC:12393
6202               22       37073227     37203113         TTC3 HGNC:12393
6203               22       37073227     37203113         TTC3 HGNC:12393
6204               22       37073227     37203113         TTC3 HGNC:12393
6205               22       37073227     37203113         TTC3 HGNC:12393
6206               22       37073227     37203113         TTC3 HGNC:12393
6207               22       37073227     37203113         TTC3 HGNC:12393
6208               22       37073227     37203113         TTC3 HGNC:12393
6209               22       37073227     37203113         TTC3 HGNC:12393
6210               22       37073227     37203113         TTC3 HGNC:12393
6211               22       37073227     37203113         TTC3 HGNC:12393
6212               22       37073227     37203113         TTC3 HGNC:12393
6213               22       37073227     37203113         TTC3 HGNC:12393
6214               22       37073227     37203113         TTC3 HGNC:12393
6215               22       37073227     37203113         TTC3 HGNC:12393
6216               22       37073227     37203113         TTC3 HGNC:12393
6217               22       37073227     37203113         TTC3 HGNC:12393
6218               22       37073227     37203113         TTC3 HGNC:12393
6219               22       37073227     37203113         TTC3 HGNC:12393
6220               22       37073227     37203113         TTC3 HGNC:12393
6221               22       37073227     37203113         TTC3 HGNC:12393
6222               22       37073227     37203113         TTC3 HGNC:12393
6223               22       37073227     37203113         TTC3 HGNC:12393
6224               22       37073227     37203113         TTC3 HGNC:12393
6225               22       37073227     37203113         TTC3 HGNC:12393
6226               22       37073227     37203113         TTC3 HGNC:12393
6227               22       37073227     37203113         TTC3 HGNC:12393
6228               22       37073227     37203113         TTC3 HGNC:12393
6229               22       37073227     37203113         TTC3 HGNC:12393
6230               22       37073227     37203113         TTC3 HGNC:12393
6231               22       37073227     37203113         TTC3 HGNC:12393
6232               22       37073227     37203113         TTC3 HGNC:12393
6233               22       37073227     37203113         TTC3 HGNC:12393
6234               22       37073227     37203113         TTC3 HGNC:12393
6235               22       37073227     37203113         TTC3 HGNC:12393
6236               22       37073227     37203113         TTC3 HGNC:12393
6237               22       37073227     37203113         TTC3 HGNC:12393
6238               22       37073227     37203113         TTC3 HGNC:12393
6239               22       37073227     37203113         TTC3 HGNC:12393
6240               22       37073227     37203113         TTC3 HGNC:12393
6241               22       37073227     37203113         TTC3 HGNC:12393
6242               22       37073227     37203113         TTC3 HGNC:12393
6243               22       37073227     37203113         TTC3 HGNC:12393
6244               22       37073227     37203113         TTC3 HGNC:12393
6245               22       37073227     37203113         TTC3 HGNC:12393
6246               22       37073227     37203113         TTC3 HGNC:12393
6247               22       37073227     37203113         TTC3 HGNC:12393
6248               22       37073227     37203113         TTC3 HGNC:12393
6249               22       37073227     37203113         TTC3 HGNC:12393
6250               22       37073227     37203113         TTC3 HGNC:12393
6251               22       37073227     37203113         TTC3 HGNC:12393
6252               22       37073227     37203113         TTC3 HGNC:12393
6253               22       37073227     37203113         TTC3 HGNC:12393
6254               22       37073227     37203113         TTC3 HGNC:12393
6255               22       37073227     37203113         TTC3 HGNC:12393
6256               22       37073227     37203113         TTC3 HGNC:12393
6257               22       37073227     37203113         TTC3 HGNC:12393
6258               22       37073227     37203113         TTC3 HGNC:12393
6259               22       37073227     37203113         TTC3 HGNC:12393
6260               22       37073227     37203113         TTC3 HGNC:12393
6261               22       37073227     37203113         TTC3 HGNC:12393
6262               22       37073227     37203113         TTC3 HGNC:12393
6263               22       37073227     37203113         TTC3 HGNC:12393
6264               22        6789593      6812298                        
6265               22        6789593      6812298                        
6266               22        6789593      6812298                        
6267               22       29058074     29060096                        
6268               22       29058074     29060096                        
6269               22       29055806     29073798         CCT8  HGNC:1623
6270               22       29055806     29073798         CCT8  HGNC:1623
6271               22       29055806     29073798         CCT8  HGNC:1623
6272               22       29055806     29073798         CCT8  HGNC:1623
6273               22       29055806     29073798         CCT8  HGNC:1623
6274               22       29055806     29073798         CCT8  HGNC:1623
6275               22       29055806     29073798         CCT8  HGNC:1623
6276               22       29055806     29073798         CCT8  HGNC:1623
6277               22       29055806     29073798         CCT8  HGNC:1623
6278               22       29055806     29073798         CCT8  HGNC:1623
6279               22       29055806     29073798         CCT8  HGNC:1623
6280               22       29055806     29073798         CCT8  HGNC:1623
6281               22       29055806     29073798         CCT8  HGNC:1623
6282               22       29055806     29073798         CCT8  HGNC:1623
6283               22       29055806     29073798         CCT8  HGNC:1623
6284               22       29055806     29073798         CCT8  HGNC:1623
6285               22       29055806     29073798         CCT8  HGNC:1623
6286               22       29055806     29073798         CCT8  HGNC:1623
6287               22       29055806     29073798         CCT8  HGNC:1623
6288               22       29055806     29073798         CCT8  HGNC:1623
6289               22       29055806     29073798         CCT8  HGNC:1623
6290               22       29055806     29073798         CCT8  HGNC:1623
6291               22       29055806     29073798         CCT8  HGNC:1623
6292               22       29055806     29073798         CCT8  HGNC:1623
6293               22       29055806     29073798         CCT8  HGNC:1623
6294               22       29055806     29073798         CCT8  HGNC:1623
6295               22       29055806     29073798         CCT8  HGNC:1623
6296               22       29055806     29073798         CCT8  HGNC:1623
6297               22       29055806     29073798         CCT8  HGNC:1623
6298               22       29055806     29073798         CCT8  HGNC:1623
6299               22       29055806     29073798         CCT8  HGNC:1623
6300               22       29055806     29073798         CCT8  HGNC:1623
6301               22       29055806     29073798         CCT8  HGNC:1623
6302               22       29055806     29073798         CCT8  HGNC:1623
6303               22       29055806     29073798         CCT8  HGNC:1623
6304               22       29055806     29073798         CCT8  HGNC:1623
6305               22       29055806     29073798         CCT8  HGNC:1623
6306               22       29055806     29073798         CCT8  HGNC:1623
6307               22       29055806     29073798         CCT8  HGNC:1623
6308               22       29055806     29073798         CCT8  HGNC:1623
6309               22       29055806     29073798         CCT8  HGNC:1623
6310               22       29055806     29073798         CCT8  HGNC:1623
6311               22       29055806     29073798         CCT8  HGNC:1623
6312               22       29055806     29073798         CCT8  HGNC:1623
6313               22       29055806     29073798         CCT8  HGNC:1623
6314               22       29055806     29073798         CCT8  HGNC:1623
6315               22       29055806     29073798         CCT8  HGNC:1623
6316               22       29055806     29073798         CCT8  HGNC:1623
6317               22       29055806     29073798         CCT8  HGNC:1623
6318               22       29055806     29073798         CCT8  HGNC:1623
6319               22       29055806     29073798         CCT8  HGNC:1623
6320               22       29055806     29073798         CCT8  HGNC:1623
6321               22       29055806     29073798         CCT8  HGNC:1623
6322               22       29055806     29073798         CCT8  HGNC:1623
6323               22       29055806     29073798         CCT8  HGNC:1623
6324               22       29055806     29073798         CCT8  HGNC:1623
6325               22       29055806     29073798         CCT8  HGNC:1623
6326               22       29055806     29073798         CCT8  HGNC:1623
6327               22       29055806     29073798         CCT8  HGNC:1623
6328               22       29055806     29073798         CCT8  HGNC:1623
6329               22       29055806     29073798         CCT8  HGNC:1623
6330               22       29055806     29073798         CCT8  HGNC:1623
6331               22       29055806     29073798         CCT8  HGNC:1623
6332               22       29055806     29073798         CCT8  HGNC:1623
6333               22       29055806     29073798         CCT8  HGNC:1623
6334               22       29055806     29073798         CCT8  HGNC:1623
6335               22       29055806     29073798         CCT8  HGNC:1623
6336               22       29055806     29073798         CCT8  HGNC:1623
6337               22       29055806     29073798         CCT8  HGNC:1623
6338               22       29055806     29073798         CCT8  HGNC:1623
6339               22       29055806     29073798         CCT8  HGNC:1623
6340               22       29055806     29073798         CCT8  HGNC:1623
6341               22       29055806     29073798         CCT8  HGNC:1623
6342               22       29055806     29073798         CCT8  HGNC:1623
6343               22       29055806     29073798         CCT8  HGNC:1623
6344               22       29055806     29073798         CCT8  HGNC:1623
6345               22       29055806     29073798         CCT8  HGNC:1623
6346               22       29055806     29073798         CCT8  HGNC:1623
6347               22       29055806     29073798         CCT8  HGNC:1623
6348               22       29055806     29073798         CCT8  HGNC:1623
6349               22       29055806     29073798         CCT8  HGNC:1623
6350               22       29055806     29073798         CCT8  HGNC:1623
6351               22       29055806     29073798         CCT8  HGNC:1623
6352               22       29055806     29073798         CCT8  HGNC:1623
6353               22       29055806     29073798         CCT8  HGNC:1623
6354               22       29055806     29073798         CCT8  HGNC:1623
6355               22       29055806     29073798         CCT8  HGNC:1623
6356               22       29055806     29073798         CCT8  HGNC:1623
6357               22       29055806     29073798         CCT8  HGNC:1623
6358               22       29055806     29073798         CCT8  HGNC:1623
6359               22       29055806     29073798         CCT8  HGNC:1623
6360               22       29055806     29073798         CCT8  HGNC:1623
6361               22       29055806     29073798         CCT8  HGNC:1623
6362               22       29055806     29073798         CCT8  HGNC:1623
6363               22       29055806     29073798         CCT8  HGNC:1623
6364               22       29055806     29073798         CCT8  HGNC:1623
6365               22       29055806     29073798         CCT8  HGNC:1623
6366               22       29055806     29073798         CCT8  HGNC:1623
6367               22       29055806     29073798         CCT8  HGNC:1623
6368               22       29055806     29073798         CCT8  HGNC:1623
6369               22       29055806     29073798         CCT8  HGNC:1623
6370               22       29055806     29073798         CCT8  HGNC:1623
6371               22        6858540      6897264                        
6372               22        6858540      6897264                        
6373               22        6858540      6897264                        
6374               22       33334572     33335097       USF1P1 HGNC:23773
6375               22       33324478     33359863       IFNAR1  HGNC:5432
6376               22       33324478     33359863       IFNAR1  HGNC:5432
6377               22       33324478     33359863       IFNAR1  HGNC:5432
6378               22       33324478     33359863       IFNAR1  HGNC:5432
6379               22       33324478     33359863       IFNAR1  HGNC:5432
6380               22       33324478     33359863       IFNAR1  HGNC:5432
6381               22       33324478     33359863       IFNAR1  HGNC:5432
6382               22       33324478     33359863       IFNAR1  HGNC:5432
6383               22       33324478     33359863       IFNAR1  HGNC:5432
6384               22       33324478     33359863       IFNAR1  HGNC:5432
6385               22       33324478     33359863       IFNAR1  HGNC:5432
6386               22       33324478     33359863       IFNAR1  HGNC:5432
6387               22       33324478     33359863       IFNAR1  HGNC:5432
6388               22       33324478     33359863       IFNAR1  HGNC:5432
6389               22       33324478     33359863       IFNAR1  HGNC:5432
6390               22       33324478     33359863       IFNAR1  HGNC:5432
6391               22       33324478     33359863       IFNAR1  HGNC:5432
6392               22        6897292      6899281                        
6393               22        6904885      6906693                        
6394               22        6904885      6906693                        
6395               22        6994375      6997738                        
6396               22        6994375      6997738                        
6397               22        6994375      6997738                        
6398               22        6986451      6997766                        
6399               22        6986451      6997766                        
6400               22        6986451      6997766                        
6401               22        6986451      6997766                        
6402               22        6986451      6997766                        
6403               22        6986451      6997766                        
6404               22        6986451      6997766                        
6405               22        6986451      6997766                        
6406               22        6986451      6997766                        
6407               22        6986451      6997766                        
6408               22        6986451      6997766                        
6409               22       39405845     39445806        LCA5L  HGNC:1255
6410               22       39405845     39445806        LCA5L  HGNC:1255
6411               22       39405845     39445806        LCA5L  HGNC:1255
6412               22       39405845     39445806        LCA5L  HGNC:1255
6413               22       39405845     39445806        LCA5L  HGNC:1255
6414               22       39405845     39445806        LCA5L  HGNC:1255
6415               22       39405845     39445806        LCA5L  HGNC:1255
6416               22       39405845     39445806        LCA5L  HGNC:1255
6417               22       39405845     39445806        LCA5L  HGNC:1255
6418               22       39405845     39445806        LCA5L  HGNC:1255
6419               22       39405845     39445806        LCA5L  HGNC:1255
6420               22       39405845     39445806        LCA5L  HGNC:1255
6421               22       39405845     39445806        LCA5L  HGNC:1255
6422               22       39405845     39445806        LCA5L  HGNC:1255
6423               22       39405845     39445806        LCA5L  HGNC:1255
6424               22       39405845     39445806        LCA5L  HGNC:1255
6425               22       39405845     39445806        LCA5L  HGNC:1255
6426               22       39405845     39445806        LCA5L  HGNC:1255
6427               22       39405845     39445806        LCA5L  HGNC:1255
6428               22       39405845     39445806        LCA5L  HGNC:1255
6429               22       39405845     39445806        LCA5L  HGNC:1255
6430               22       39405845     39445806        LCA5L  HGNC:1255
6431               22       39405845     39445806        LCA5L  HGNC:1255
6432               22       39405845     39445806        LCA5L  HGNC:1255
6433               22       39405845     39445806        LCA5L  HGNC:1255
6434               22       39405845     39445806        LCA5L  HGNC:1255
6435               22       39405845     39445806        LCA5L  HGNC:1255
6436               22       39405845     39445806        LCA5L  HGNC:1255
6437               22       39405845     39445806        LCA5L  HGNC:1255
6438               22       39405845     39445806        LCA5L  HGNC:1255
6439               22       39405845     39445806        LCA5L  HGNC:1255
6440               22       39405845     39445806        LCA5L  HGNC:1255
6441               22       39405845     39445806        LCA5L  HGNC:1255
6442               22       39405845     39445806        LCA5L  HGNC:1255
6443               22       39405845     39445806        LCA5L  HGNC:1255
6444               22       39405845     39445806        LCA5L  HGNC:1255
6445               22       39405845     39445806        LCA5L  HGNC:1255
6446               22       39405845     39445806        LCA5L  HGNC:1255
6447               22       39405845     39445806        LCA5L  HGNC:1255
6448               22       39405845     39445806        LCA5L  HGNC:1255
6449               22       39405845     39445806        LCA5L  HGNC:1255
6450               22       39405845     39445806        LCA5L  HGNC:1255
6451               22       39405845     39445806        LCA5L  HGNC:1255
6452               22       39405845     39445806        LCA5L  HGNC:1255
6453               22       39405845     39445806        LCA5L  HGNC:1255
6454               22       39405845     39445806        LCA5L  HGNC:1255
6455               22       39405845     39445806        LCA5L  HGNC:1255
6456               22       39405845     39445806        LCA5L  HGNC:1255
6457               22       39405845     39445806        LCA5L  HGNC:1255
6458               22       39405845     39445806        LCA5L  HGNC:1255
6459               22       39405845     39445806        LCA5L  HGNC:1255
6460               22       39405845     39445806        LCA5L  HGNC:1255
6461               22       39405845     39445806        LCA5L  HGNC:1255
6462               22       39405845     39445806        LCA5L  HGNC:1255
6463               22       39405845     39445806        LCA5L  HGNC:1255
6464               22       39405845     39445806        LCA5L  HGNC:1255
6465               22       39405845     39445806        LCA5L  HGNC:1255
6466               22       39405845     39445806        LCA5L  HGNC:1255
6467               22       39405845     39445806        LCA5L  HGNC:1255
6468               22       39405845     39445806        LCA5L  HGNC:1255
6469               22       39405845     39445806        LCA5L  HGNC:1255
6470               22       39405845     39445806        LCA5L  HGNC:1255
6471               22       39405845     39445806        LCA5L  HGNC:1255
6472               22       39405845     39445806        LCA5L  HGNC:1255
6473               22       39405845     39445806        LCA5L  HGNC:1255
6474               22       39405845     39445806        LCA5L  HGNC:1255
6475               22       39405845     39445806        LCA5L  HGNC:1255
6476               22       39405845     39445806        LCA5L  HGNC:1255
6477               22       39405845     39445806        LCA5L  HGNC:1255
6478               22       39405845     39445806        LCA5L  HGNC:1255
6479               22       39405845     39445806        LCA5L  HGNC:1255
6480               22       39405845     39445806        LCA5L  HGNC:1255
6481               22       39405845     39445806        LCA5L  HGNC:1255
6482               22       39405845     39445806        LCA5L  HGNC:1255
6483               22       39405845     39445806        LCA5L  HGNC:1255
6484               22       39405845     39445806        LCA5L  HGNC:1255
6485               22       39405845     39445806        LCA5L  HGNC:1255
6486               22       39405845     39445806        LCA5L  HGNC:1255
6487               22       39405845     39445806        LCA5L  HGNC:1255
6488               22       39405845     39445806        LCA5L  HGNC:1255
6489               22       39405845     39445806        LCA5L  HGNC:1255
6490               22       39405845     39445806        LCA5L  HGNC:1255
6491               22       39405845     39445806        LCA5L  HGNC:1255
6492               22       39405845     39445806        LCA5L  HGNC:1255
6493               22       39405845     39445806        LCA5L  HGNC:1255
6494               22       39405845     39445806        LCA5L  HGNC:1255
6495               22       39405845     39445806        LCA5L  HGNC:1255
6496               22       39405845     39445806        LCA5L  HGNC:1255
6497               22       39405845     39445806        LCA5L  HGNC:1255
6498               22       39405845     39445806        LCA5L  HGNC:1255
6499               22       39405845     39445806        LCA5L  HGNC:1255
6500               22       39405845     39445806        LCA5L  HGNC:1255
6501               22       39405845     39445806        LCA5L  HGNC:1255
6502               22       39405845     39445806        LCA5L  HGNC:1255
6503               22       39405845     39445806        LCA5L  HGNC:1255
6504               22       39405845     39445806        LCA5L  HGNC:1255
6505               22       39405845     39445806        LCA5L  HGNC:1255
6506               22       39405845     39445806        LCA5L  HGNC:1255
6507               22       39405845     39445806        LCA5L  HGNC:1255
6508               22       39405845     39445806        LCA5L  HGNC:1255
6509               22       39405845     39445806        LCA5L  HGNC:1255
6510               22       39405845     39445806        LCA5L  HGNC:1255
6511               22       39405845     39445806        LCA5L  HGNC:1255
6512               22       39405845     39445806        LCA5L  HGNC:1255
6513               22       39405845     39445806        LCA5L  HGNC:1255
6514               22       39405845     39445806        LCA5L  HGNC:1255
6515               22       39405845     39445806        LCA5L  HGNC:1255
6516               22       39405845     39445806        LCA5L  HGNC:1255
6517               22       39405845     39445806        LCA5L  HGNC:1255
6518               22       39405845     39445806        LCA5L  HGNC:1255
6519               22       39405845     39445806        LCA5L  HGNC:1255
6520               22       39405845     39445806        LCA5L  HGNC:1255
6521               22       39405845     39445806        LCA5L  HGNC:1255
6522               22       39405845     39445806        LCA5L  HGNC:1255
6523               22       39405845     39445806        LCA5L  HGNC:1255
6524               22       39405845     39445806        LCA5L  HGNC:1255
6525               22       39405845     39445806        LCA5L  HGNC:1255
6526               22        7003249      7007023                        
6527               22        7003249      7007023                        
6528               22        7003249      7007023                        
6529               22        7003249      7007023                        
6530               22        7003249      7007023                        
6531               22        7003249      7007023                        
6532               22        7003249      7007023                        
6533               22        7003249      7007023                        
6534               22        7003249      7007023                        
6535               22       33263874     33266261   IL10RB-AS1 HGNC:44303
6536               22       33263874     33266261   IL10RB-AS1 HGNC:44303
6537               22       29024630     29054489        USP16 HGNC:12614
6538               22       29024630     29054489        USP16 HGNC:12614
6539               22       29024630     29054489        USP16 HGNC:12614
6540               22       29024630     29054489        USP16 HGNC:12614
6541               22       29024630     29054489        USP16 HGNC:12614
6542               22       29024630     29054489        USP16 HGNC:12614
6543               22       29024630     29054489        USP16 HGNC:12614
6544               22       29024630     29054489        USP16 HGNC:12614
6545               22       29024630     29054489        USP16 HGNC:12614
6546               22       29024630     29054489        USP16 HGNC:12614
6547               22       29024630     29054489        USP16 HGNC:12614
6548               22       29024630     29054489        USP16 HGNC:12614
6549               22       29024630     29054489        USP16 HGNC:12614
6550               22       29024630     29054489        USP16 HGNC:12614
6551               22       29024630     29054489        USP16 HGNC:12614
6552               22       29024630     29054489        USP16 HGNC:12614
6553               22       29024630     29054489        USP16 HGNC:12614
6554               22       29024630     29054489        USP16 HGNC:12614
6555               22       29024630     29054489        USP16 HGNC:12614
6556               22       29024630     29054489        USP16 HGNC:12614
6557               22       29024630     29054489        USP16 HGNC:12614
6558               22       29024630     29054489        USP16 HGNC:12614
6559               22       29024630     29054489        USP16 HGNC:12614
6560               22       29024630     29054489        USP16 HGNC:12614
6561               22       29024630     29054489        USP16 HGNC:12614
6562               22       29024630     29054489        USP16 HGNC:12614
6563               22       29024630     29054489        USP16 HGNC:12614
6564               22       29024630     29054489        USP16 HGNC:12614
6565               22       29024630     29054489        USP16 HGNC:12614
6566               22       29024630     29054489        USP16 HGNC:12614
6567               22       29024630     29054489        USP16 HGNC:12614
6568               22       29024630     29054489        USP16 HGNC:12614
6569               22       29024630     29054489        USP16 HGNC:12614
6570               22       29024630     29054489        USP16 HGNC:12614
6571               22       29024630     29054489        USP16 HGNC:12614
6572               22       29024630     29054489        USP16 HGNC:12614
6573               22       29024630     29054489        USP16 HGNC:12614
6574               22       29024630     29054489        USP16 HGNC:12614
6575               22       29024630     29054489        USP16 HGNC:12614
6576               22       29024630     29054489        USP16 HGNC:12614
6577               22       29024630     29054489        USP16 HGNC:12614
6578               22       29024630     29054489        USP16 HGNC:12614
6579               22       29024630     29054489        USP16 HGNC:12614
6580               22       29024630     29054489        USP16 HGNC:12614
6581               22       29024630     29054489        USP16 HGNC:12614
6582               22       29024630     29054489        USP16 HGNC:12614
6583               22       29024630     29054489        USP16 HGNC:12614
6584               22       29024630     29054489        USP16 HGNC:12614
6585               22       29024630     29054489        USP16 HGNC:12614
6586               22       29024630     29054489        USP16 HGNC:12614
6587               22       29024630     29054489        USP16 HGNC:12614
6588               22       29024630     29054489        USP16 HGNC:12614
6589               22       29024630     29054489        USP16 HGNC:12614
6590               22       29024630     29054489        USP16 HGNC:12614
6591               22       29024630     29054489        USP16 HGNC:12614
6592               22       29024630     29054489        USP16 HGNC:12614
6593               22       29024630     29054489        USP16 HGNC:12614
6594               22       29024630     29054489        USP16 HGNC:12614
6595               22       29024630     29054489        USP16 HGNC:12614
6596               22       29024630     29054489        USP16 HGNC:12614
6597               22       29024630     29054489        USP16 HGNC:12614
6598               22       29024630     29054489        USP16 HGNC:12614
6599               22       29024630     29054489        USP16 HGNC:12614
6600               22       29024630     29054489        USP16 HGNC:12614
6601               22       29024630     29054489        USP16 HGNC:12614
6602               22       29024630     29054489        USP16 HGNC:12614
6603               22       29024630     29054489        USP16 HGNC:12614
6604               22       29024630     29054489        USP16 HGNC:12614
6605               22       29024630     29054489        USP16 HGNC:12614
6606               22       29024630     29054489        USP16 HGNC:12614
6607               22       29024630     29054489        USP16 HGNC:12614
6608               22       29024630     29054489        USP16 HGNC:12614
6609               22       29024630     29054489        USP16 HGNC:12614
6610               22       29024630     29054489        USP16 HGNC:12614
6611               22       29024630     29054489        USP16 HGNC:12614
6612               22       29024630     29054489        USP16 HGNC:12614
6613               22       29024630     29054489        USP16 HGNC:12614
6614               22       29024630     29054489        USP16 HGNC:12614
6615               22       29024630     29054489        USP16 HGNC:12614
6616               22       32793565     32813744     C21orf62  HGNC:1305
6617               22       32793565     32813744     C21orf62  HGNC:1305
6618               22       32793565     32813744     C21orf62  HGNC:1305
6619               22       32793565     32813744     C21orf62  HGNC:1305
6620               22       32793565     32813744     C21orf62  HGNC:1305
6621               22       32793565     32813744     C21orf62  HGNC:1305
6622               22       32793565     32813744     C21orf62  HGNC:1305
6623               22       32793565     32813744     C21orf62  HGNC:1305
6624               22       32793565     32813744     C21orf62  HGNC:1305
6625               22       32793565     32813744     C21orf62  HGNC:1305
6626               22       32793565     32813744     C21orf62  HGNC:1305
6627               22       32793565     32813744     C21orf62  HGNC:1305
6628               22       36485984     36487412      PSMD4P1  HGNC:9562
6629               22       36485984     36487412      PSMD4P1  HGNC:9562
6630               22       23090029     23091832      ZNF299P HGNC:13088
6631               22       22436291     22438350     MAPK6PS2 HGNC:16756
6632               22       21723294     21737320    LINC00317 HGNC:23126
6633               22       21723294     21737320    LINC00317 HGNC:23126
6634               22       21723294     21737320    LINC00317 HGNC:23126
6635               22       44107291     44131182         PWP2  HGNC:9711
6636               22       44107291     44131182         PWP2  HGNC:9711
6637               22       44107291     44131182         PWP2  HGNC:9711
6638               22       44107291     44131182         PWP2  HGNC:9711
6639               22       44107291     44131182         PWP2  HGNC:9711
6640               22       44107291     44131182         PWP2  HGNC:9711
6641               22       44107291     44131182         PWP2  HGNC:9711
6642               22       44107291     44131182         PWP2  HGNC:9711
6643               22       44107291     44131182         PWP2  HGNC:9711
6644               22       44107291     44131182         PWP2  HGNC:9711
6645               22       44107291     44131182         PWP2  HGNC:9711
6646               22       44107291     44131182         PWP2  HGNC:9711
6647               22       44107291     44131182         PWP2  HGNC:9711
6648               22       44107291     44131182         PWP2  HGNC:9711
6649               22       44107291     44131182         PWP2  HGNC:9711
6650               22       44107291     44131182         PWP2  HGNC:9711
6651               22       44107291     44131182         PWP2  HGNC:9711
6652               22       44107291     44131182         PWP2  HGNC:9711
6653               22       44107291     44131182         PWP2  HGNC:9711
6654               22       44107291     44131182         PWP2  HGNC:9711
6655               22       44107291     44131182         PWP2  HGNC:9711
6656               22       44107291     44131182         PWP2  HGNC:9711
6657               22       44107291     44131182         PWP2  HGNC:9711
6658               22       44107291     44131182         PWP2  HGNC:9711
6659               22       44107291     44131182         PWP2  HGNC:9711
6660               22       44107291     44131182         PWP2  HGNC:9711
6661               22       44107291     44131182         PWP2  HGNC:9711
6662               22       44107291     44131182         PWP2  HGNC:9711
6663               22       44107291     44131182         PWP2  HGNC:9711
6664               22       44107291     44131182         PWP2  HGNC:9711
6665               22       44107291     44131182         PWP2  HGNC:9711
6666               22       44107291     44131182         PWP2  HGNC:9711
6667               22       44107291     44131182         PWP2  HGNC:9711
6668               22       44107291     44131182         PWP2  HGNC:9711
6669               22       44107291     44131182         PWP2  HGNC:9711
6670               22       44107291     44131182         PWP2  HGNC:9711
6671               22       44107291     44131182         PWP2  HGNC:9711
6672               22       44107291     44131182         PWP2  HGNC:9711
6673               22       44107291     44131182         PWP2  HGNC:9711
6674               22       44107291     44131182         PWP2  HGNC:9711
6675               22       44107291     44131182         PWP2  HGNC:9711
6676               22       44107291     44131182         PWP2  HGNC:9711
6677               22       44107291     44131182         PWP2  HGNC:9711
6678               22       44107291     44131182         PWP2  HGNC:9711
6679               22       44107291     44131182         PWP2  HGNC:9711
6680               22       44107291     44131182         PWP2  HGNC:9711
6681               22       19130524     19134424                        
6682               22       19130524     19134424                        
6683               22       19244544     19246393     SLC6A6P1 HGNC:11053
6684               22       33432486     33480012      TMEM50B  HGNC:1280
6685               22       33432486     33480012      TMEM50B  HGNC:1280
6686               22       33432486     33480012      TMEM50B  HGNC:1280
6687               22       33432486     33480012      TMEM50B  HGNC:1280
6688               22       33432486     33480012      TMEM50B  HGNC:1280
6689               22       33432486     33480012      TMEM50B  HGNC:1280
6690               22       33432486     33480012      TMEM50B  HGNC:1280
6691               22       33432486     33480012      TMEM50B  HGNC:1280
6692               22       33432486     33480012      TMEM50B  HGNC:1280
6693               22       33432486     33480012      TMEM50B  HGNC:1280
6694               22       33432486     33480012      TMEM50B  HGNC:1280
6695               22       33432486     33480012      TMEM50B  HGNC:1280
6696               22       33432486     33480012      TMEM50B  HGNC:1280
6697               22       33432486     33480012      TMEM50B  HGNC:1280
6698               22       33432486     33480012      TMEM50B  HGNC:1280
6699               22       33432486     33480012      TMEM50B  HGNC:1280
6700               22       33432486     33480012      TMEM50B  HGNC:1280
6701               22       33432486     33480012      TMEM50B  HGNC:1280
6702               22       33432486     33480012      TMEM50B  HGNC:1280
6703               22       33432486     33480012      TMEM50B  HGNC:1280
6704               22       33432486     33480012      TMEM50B  HGNC:1280
6705               22       33432486     33480012      TMEM50B  HGNC:1280
6706               22       33432486     33480012      TMEM50B  HGNC:1280
6707               22       33432486     33480012      TMEM50B  HGNC:1280
6708               22       33432486     33480012      TMEM50B  HGNC:1280
6709               22       33432486     33480012      TMEM50B  HGNC:1280
6710               22       33432486     33480012      TMEM50B  HGNC:1280
6711               22       33432486     33480012      TMEM50B  HGNC:1280
6712               22       33432486     33480012      TMEM50B  HGNC:1280
6713               22       33432486     33480012      TMEM50B  HGNC:1280
6714               22       33432486     33480012      TMEM50B  HGNC:1280
6715               22       33432486     33480012      TMEM50B  HGNC:1280
6716               22       33432486     33480012      TMEM50B  HGNC:1280
6717               22       33432486     33480012      TMEM50B  HGNC:1280
6718               22       33432486     33480012      TMEM50B  HGNC:1280
6719               22       33432486     33480012      TMEM50B  HGNC:1280
6720               22       33432486     33480012      TMEM50B  HGNC:1280
6721               22       33432486     33480012      TMEM50B  HGNC:1280
6722               22       33432486     33480012      TMEM50B  HGNC:1280
6723               22       33432486     33480012      TMEM50B  HGNC:1280
6724               22       33432486     33480012      TMEM50B  HGNC:1280
6725               22       33432486     33480012      TMEM50B  HGNC:1280
6726               22       33432486     33480012      TMEM50B  HGNC:1280
6727               22       33432486     33480012      TMEM50B  HGNC:1280
6728               22       33432486     33480012      TMEM50B  HGNC:1280
6729               22       33432486     33480012      TMEM50B  HGNC:1280
6730               22       33432486     33480012      TMEM50B  HGNC:1280
6731               22       33432486     33480012      TMEM50B  HGNC:1280
6732               22       33432486     33480012      TMEM50B  HGNC:1280
6733               22       33070145     33072421        OLIG1 HGNC:16983
6734               22       33070145     33072421        OLIG1 HGNC:16983
6735               22       33070145     33072421        OLIG1 HGNC:16983
6736               22       33070145     33072421        OLIG1 HGNC:16983
6737               22       33070145     33072421        OLIG1 HGNC:16983
6738               22       32844368     32849935                        
6739               22       32844368     32849935                        
6740               22        6309162      6312949                        
6741               22        6309162      6312949                        
6742               22        6309162      6312949                        
6743               22        6309162      6312949                        
6744               22        6309162      6312949                        
6745               22        6309162      6312949                        
6746               22       36750889     36990237         HLCS  HGNC:4976
6747               22       36750889     36990237         HLCS  HGNC:4976
6748               22       36750889     36990237         HLCS  HGNC:4976
6749               22       36750889     36990237         HLCS  HGNC:4976
6750               22       36750889     36990237         HLCS  HGNC:4976
6751               22       36750889     36990237         HLCS  HGNC:4976
6752               22       36750889     36990237         HLCS  HGNC:4976
6753               22       36750889     36990237         HLCS  HGNC:4976
6754               22       36750889     36990237         HLCS  HGNC:4976
6755               22       36750889     36990237         HLCS  HGNC:4976
6756               22       36750889     36990237         HLCS  HGNC:4976
6757               22       36750889     36990237         HLCS  HGNC:4976
6758               22       36750889     36990237         HLCS  HGNC:4976
6759               22       36750889     36990237         HLCS  HGNC:4976
6760               22       36750889     36990237         HLCS  HGNC:4976
6761               22       36750889     36990237         HLCS  HGNC:4976
6762               22       36750889     36990237         HLCS  HGNC:4976
6763               22       36750889     36990237         HLCS  HGNC:4976
6764               22       36750889     36990237         HLCS  HGNC:4976
6765               22       36750889     36990237         HLCS  HGNC:4976
6766               22       36750889     36990237         HLCS  HGNC:4976
6767               22       36750889     36990237         HLCS  HGNC:4976
6768               22       36750889     36990237         HLCS  HGNC:4976
6769               22       36750889     36990237         HLCS  HGNC:4976
6770               22       36750889     36990237         HLCS  HGNC:4976
6771               22       36750889     36990237         HLCS  HGNC:4976
6772               22       36750889     36990237         HLCS  HGNC:4976
6773               22       36750889     36990237         HLCS  HGNC:4976
6774               22       36750889     36990237         HLCS  HGNC:4976
6775               22       36750889     36990237         HLCS  HGNC:4976
6776               22       36750889     36990237         HLCS  HGNC:4976
6777               22       36750889     36990237         HLCS  HGNC:4976
6778               22       36750889     36990237         HLCS  HGNC:4976
6779               22       36750889     36990237         HLCS  HGNC:4976
6780               22       36750889     36990237         HLCS  HGNC:4976
6781               22       36750889     36990237         HLCS  HGNC:4976
6782               22       36750889     36990237         HLCS  HGNC:4976
6783               22       36750889     36990237         HLCS  HGNC:4976
6784               22       36750889     36990237         HLCS  HGNC:4976
6785               22       36750889     36990237         HLCS  HGNC:4976
6786               22       36750889     36990237         HLCS  HGNC:4976
6787               22       36750889     36990237         HLCS  HGNC:4976
6788               22       36750889     36990237         HLCS  HGNC:4976
6789               22       36750889     36990237         HLCS  HGNC:4976
6790               22       36750889     36990237         HLCS  HGNC:4976
6791               22       36750889     36990237         HLCS  HGNC:4976
6792               22       36750889     36990237         HLCS  HGNC:4976
6793               22       36750889     36990237         HLCS  HGNC:4976
6794               22       36750889     36990237         HLCS  HGNC:4976
6795               22       36750889     36990237         HLCS  HGNC:4976
6796               22       36750889     36990237         HLCS  HGNC:4976
6797               22       36698774     36701565                        
6798               22       36698774     36701565                        
6799               22        6008605      6008811                        
6800               22        7020600      7025167                        
6801               22        7020600      7025167                        
6802               22       29004385     29019379       RWDD2B  HGNC:1302
6803               22       29004385     29019379       RWDD2B  HGNC:1302
6804               22       29004385     29019379       RWDD2B  HGNC:1302
6805               22       29004385     29019379       RWDD2B  HGNC:1302
6806               22       29004385     29019379       RWDD2B  HGNC:1302
6807               22       29004385     29019379       RWDD2B  HGNC:1302
6808               22       29004385     29019379       RWDD2B  HGNC:1302
6809               22       29004385     29019379       RWDD2B  HGNC:1302
6810               22       29004385     29019379       RWDD2B  HGNC:1302
6811               22       29004385     29019379       RWDD2B  HGNC:1302
6812               22       29004385     29019379       RWDD2B  HGNC:1302
6813               22       29004385     29019379       RWDD2B  HGNC:1302
6814               22       29004385     29019379       RWDD2B  HGNC:1302
6815               22       29004385     29019379       RWDD2B  HGNC:1302
6816               22       29004385     29019379       RWDD2B  HGNC:1302
6817               22       29004385     29019379       RWDD2B  HGNC:1302
6818               22       29004385     29019379       RWDD2B  HGNC:1302
6819               22       29004385     29019379       RWDD2B  HGNC:1302
6820               22       29004385     29019379       RWDD2B  HGNC:1302
6821               22       29004385     29019379       RWDD2B  HGNC:1302
6822               22       29004385     29019379       RWDD2B  HGNC:1302
6823               22       29004385     29019379       RWDD2B  HGNC:1302
6824               22       29004385     29019379       RWDD2B  HGNC:1302
6825               22       29004385     29019379       RWDD2B  HGNC:1302
6826               22       29004385     29019379       RWDD2B  HGNC:1302
6827               22       29004385     29019379       RWDD2B  HGNC:1302
6828               22       29004385     29019379       RWDD2B  HGNC:1302
6829               22       29004385     29019379       RWDD2B  HGNC:1302
6830               22       29004385     29019379       RWDD2B  HGNC:1302
6831               22       37006151     37019660      RIPPLY3  HGNC:3047
6832               22       37006151     37019660      RIPPLY3  HGNC:3047
6833               22       37006151     37019660      RIPPLY3  HGNC:3047
6834               22       37006151     37019660      RIPPLY3  HGNC:3047
6835               22       37006151     37019660      RIPPLY3  HGNC:3047
6836               22       37006151     37019660      RIPPLY3  HGNC:3047
6837               22       37006151     37019660      RIPPLY3  HGNC:3047
6838               22       37006151     37019660      RIPPLY3  HGNC:3047
6839               22       37006151     37019660      RIPPLY3  HGNC:3047
6840               22       37006151     37019660      RIPPLY3  HGNC:3047
6841               22       37006151     37019660      RIPPLY3  HGNC:3047
6842               22       36699134     36749918         SIM2 HGNC:10883
6843               22       36699134     36749918         SIM2 HGNC:10883
6844               22       36699134     36749918         SIM2 HGNC:10883
6845               22       36699134     36749918         SIM2 HGNC:10883
6846               22       36699134     36749918         SIM2 HGNC:10883
6847               22       36699134     36749918         SIM2 HGNC:10883
6848               22       36699134     36749918         SIM2 HGNC:10883
6849               22       36699134     36749918         SIM2 HGNC:10883
6850               22       36699134     36749918         SIM2 HGNC:10883
6851               22       36699134     36749918         SIM2 HGNC:10883
6852               22       36699134     36749918         SIM2 HGNC:10883
6853               22       36699134     36749918         SIM2 HGNC:10883
6854               22       36699134     36749918         SIM2 HGNC:10883
6855               22       36699134     36749918         SIM2 HGNC:10883
6856               22       36699134     36749918         SIM2 HGNC:10883
6857               22       36699134     36749918         SIM2 HGNC:10883
6858               22       36699134     36749918         SIM2 HGNC:10883
6859               22       36699134     36749918         SIM2 HGNC:10883
6860               22       36699134     36749918         SIM2 HGNC:10883
6861               22       36699134     36749918         SIM2 HGNC:10883
6862               22       36699134     36749918         SIM2 HGNC:10883
6863               22       36699134     36749918         SIM2 HGNC:10883
6864               22       36699134     36749918         SIM2 HGNC:10883
6865               22       36699134     36749918         SIM2 HGNC:10883
6866               22       36699134     36749918         SIM2 HGNC:10883
6867               22       36699134     36749918         SIM2 HGNC:10883
6868               22       36699134     36749918         SIM2 HGNC:10883
6869               22       36699134     36749918         SIM2 HGNC:10883
6870               22       36699134     36749918         SIM2 HGNC:10883
6871               22       36699134     36749918         SIM2 HGNC:10883
6872               22       36699134     36749918         SIM2 HGNC:10883
6873               22       36699134     36749918         SIM2 HGNC:10883
6874               22       36699134     36749918         SIM2 HGNC:10883
6875               22       36699134     36749918         SIM2 HGNC:10883
6876               22       36699134     36749918         SIM2 HGNC:10883
6877               22       36632682     36637034                        
6878               22       36632682     36637034                        
6879               22        5972925      5973384                        
6880               22       21223296     21226830                        
6881               22       21223296     21226830                        
6882               22       19739710     19740151                        
6883               22       19593842     19594109      RPL37P4 HGNC:17239
6884               22       18561266     18760004    MIR548XHG HGNC:52006
6885               22       18561266     18760004    MIR548XHG HGNC:52006
6886               22       18561266     18760004    MIR548XHG HGNC:52006
6887               22       18561266     18760004    MIR548XHG HGNC:52006
6888               22       18561266     18760004    MIR548XHG HGNC:52006
6889               22       18561266     18760004    MIR548XHG HGNC:52006
6890               22       18561266     18760004    MIR548XHG HGNC:52006
6891               22       18561266     18760004    MIR548XHG HGNC:52006
6892               22       18561266     18760004    MIR548XHG HGNC:52006
6893               22       18561266     18760004    MIR548XHG HGNC:52006
6894               22       18561266     18760004    MIR548XHG HGNC:52006
6895               22       18561266     18760004    MIR548XHG HGNC:52006
6896               22       42831041     42836478                        
6897               22       42831041     42836478                        
6898               22       42831041     42836478                        
6899               22       42777820     42779995    LINC01668 HGNC:52456
6900               22       42777820     42779995    LINC01668 HGNC:52456
6901               22       42777820     42779995    LINC01668 HGNC:52456
6902               22       46161149     46184477      SPATC1L  HGNC:1298
6903               22       46161149     46184477      SPATC1L  HGNC:1298
6904               22       46161149     46184477      SPATC1L  HGNC:1298
6905               22       46161149     46184477      SPATC1L  HGNC:1298
6906               22       46161149     46184477      SPATC1L  HGNC:1298
6907               22       46161149     46184477      SPATC1L  HGNC:1298
6908               22       46161149     46184477      SPATC1L  HGNC:1298
6909               22       46161149     46184477      SPATC1L  HGNC:1298
6910               22       46161149     46184477      SPATC1L  HGNC:1298
6911               22       41175232     41185240        PLAC4 HGNC:14616
6912               22       41175232     41185240        PLAC4 HGNC:14616
6913               22       33642401     33899862        ITSN1  HGNC:6183
6914               22       33642401     33899862        ITSN1  HGNC:6183
6915               22       33642401     33899862        ITSN1  HGNC:6183
6916               22       33642401     33899862        ITSN1  HGNC:6183
6917               22       33642401     33899862        ITSN1  HGNC:6183
6918               22       33642401     33899862        ITSN1  HGNC:6183
6919               22       33642401     33899862        ITSN1  HGNC:6183
6920               22       33642401     33899862        ITSN1  HGNC:6183
6921               22       33642401     33899862        ITSN1  HGNC:6183
6922               22       33642401     33899862        ITSN1  HGNC:6183
6923               22       33642401     33899862        ITSN1  HGNC:6183
6924               22       33642401     33899862        ITSN1  HGNC:6183
6925               22       33642401     33899862        ITSN1  HGNC:6183
6926               22       33642401     33899862        ITSN1  HGNC:6183
6927               22       33642401     33899862        ITSN1  HGNC:6183
6928               22       33642401     33899862        ITSN1  HGNC:6183
6929               22       33642401     33899862        ITSN1  HGNC:6183
6930               22       33642401     33899862        ITSN1  HGNC:6183
6931               22       33642401     33899862        ITSN1  HGNC:6183
6932               22       33642401     33899862        ITSN1  HGNC:6183
6933               22       33642401     33899862        ITSN1  HGNC:6183
6934               22       33642401     33899862        ITSN1  HGNC:6183
6935               22       33642401     33899862        ITSN1  HGNC:6183
6936               22       33642401     33899862        ITSN1  HGNC:6183
6937               22       33642401     33899862        ITSN1  HGNC:6183
6938               22       33642401     33899862        ITSN1  HGNC:6183
6939               22       33642401     33899862        ITSN1  HGNC:6183
6940               22       33642401     33899862        ITSN1  HGNC:6183
6941               22       33642401     33899862        ITSN1  HGNC:6183
6942               22       33642401     33899862        ITSN1  HGNC:6183
6943               22       33642401     33899862        ITSN1  HGNC:6183
6944               22       33642401     33899862        ITSN1  HGNC:6183
6945               22       33642401     33899862        ITSN1  HGNC:6183
6946               22       33642401     33899862        ITSN1  HGNC:6183
6947               22       33642401     33899862        ITSN1  HGNC:6183
6948               22       33642401     33899862        ITSN1  HGNC:6183
6949               22       33642401     33899862        ITSN1  HGNC:6183
6950               22       33642401     33899862        ITSN1  HGNC:6183
6951               22       33642401     33899862        ITSN1  HGNC:6183
6952               22       33642401     33899862        ITSN1  HGNC:6183
6953               22       33642401     33899862        ITSN1  HGNC:6183
6954               22       33642401     33899862        ITSN1  HGNC:6183
6955               22       33642401     33899862        ITSN1  HGNC:6183
6956               22       33642401     33899862        ITSN1  HGNC:6183
6957               22       33642401     33899862        ITSN1  HGNC:6183
6958               22       33642401     33899862        ITSN1  HGNC:6183
6959               22       33642401     33899862        ITSN1  HGNC:6183
6960               22       33642401     33899862        ITSN1  HGNC:6183
6961               22       33642401     33899862        ITSN1  HGNC:6183
6962               22       33642401     33899862        ITSN1  HGNC:6183
6963               22       33642401     33899862        ITSN1  HGNC:6183
6964               22       33642401     33899862        ITSN1  HGNC:6183
6965               22       33642401     33899862        ITSN1  HGNC:6183
6966               22       33642401     33899862        ITSN1  HGNC:6183
6967               22       33642401     33899862        ITSN1  HGNC:6183
6968               22       33642401     33899862        ITSN1  HGNC:6183
6969               22       33642401     33899862        ITSN1  HGNC:6183
6970               22       33642401     33899862        ITSN1  HGNC:6183
6971               22       33642401     33899862        ITSN1  HGNC:6183
6972               22       33642401     33899862        ITSN1  HGNC:6183
6973               22       33642401     33899862        ITSN1  HGNC:6183
6974               22       33642401     33899862        ITSN1  HGNC:6183
6975               22       33642401     33899862        ITSN1  HGNC:6183
6976               22       33642401     33899862        ITSN1  HGNC:6183
6977               22       33642401     33899862        ITSN1  HGNC:6183
6978               22       33642401     33899862        ITSN1  HGNC:6183
6979               22       33642401     33899862        ITSN1  HGNC:6183
6980               22       33642401     33899862        ITSN1  HGNC:6183
6981               22       33642401     33899862        ITSN1  HGNC:6183
6982               22       33642401     33899862        ITSN1  HGNC:6183
6983               22       33642401     33899862        ITSN1  HGNC:6183
6984               22       33642401     33899862        ITSN1  HGNC:6183
6985               22       33642401     33899862        ITSN1  HGNC:6183
6986               22       33642401     33899862        ITSN1  HGNC:6183
6987               22       33642401     33899862        ITSN1  HGNC:6183
6988               22       33642401     33899862        ITSN1  HGNC:6183
6989               22       33642401     33899862        ITSN1  HGNC:6183
6990               22       33642401     33899862        ITSN1  HGNC:6183
6991               22       33642401     33899862        ITSN1  HGNC:6183
6992               22       33642401     33899862        ITSN1  HGNC:6183
6993               22       33642401     33899862        ITSN1  HGNC:6183
6994               22       33642401     33899862        ITSN1  HGNC:6183
6995               22       33642401     33899862        ITSN1  HGNC:6183
6996               22       33642401     33899862        ITSN1  HGNC:6183
6997               22       33642401     33899862        ITSN1  HGNC:6183
6998               22       33642401     33899862        ITSN1  HGNC:6183
6999               22       33642401     33899862        ITSN1  HGNC:6183
7000               22       33642401     33899862        ITSN1  HGNC:6183
7001               22       33642401     33899862        ITSN1  HGNC:6183
7002               22       33642401     33899862        ITSN1  HGNC:6183
7003               22       33642401     33899862        ITSN1  HGNC:6183
7004               22       33642401     33899862        ITSN1  HGNC:6183
7005               22       33642401     33899862        ITSN1  HGNC:6183
7006               22       33642401     33899862        ITSN1  HGNC:6183
7007               22       33642401     33899862        ITSN1  HGNC:6183
7008               22       33642401     33899862        ITSN1  HGNC:6183
7009               22       33642401     33899862        ITSN1  HGNC:6183
7010               22       33642401     33899862        ITSN1  HGNC:6183
7011               22       33642401     33899862        ITSN1  HGNC:6183
7012               22       33642401     33899862        ITSN1  HGNC:6183
7013               22       33642401     33899862        ITSN1  HGNC:6183
7014               22       33642401     33899862        ITSN1  HGNC:6183
7015               22       33642401     33899862        ITSN1  HGNC:6183
7016               22       33642401     33899862        ITSN1  HGNC:6183
7017               22       33642401     33899862        ITSN1  HGNC:6183
7018               22       33642401     33899862        ITSN1  HGNC:6183
7019               22       33642401     33899862        ITSN1  HGNC:6183
7020               22       33642401     33899862        ITSN1  HGNC:6183
7021               22       33642401     33899862        ITSN1  HGNC:6183
7022               22       33642401     33899862        ITSN1  HGNC:6183
7023               22       33642401     33899862        ITSN1  HGNC:6183
7024               22       33642401     33899862        ITSN1  HGNC:6183
7025               22       33642401     33899862        ITSN1  HGNC:6183
7026               22       33642401     33899862        ITSN1  HGNC:6183
7027               22       33642401     33899862        ITSN1  HGNC:6183
7028               22       33642401     33899862        ITSN1  HGNC:6183
7029               22       33642401     33899862        ITSN1  HGNC:6183
7030               22       33642401     33899862        ITSN1  HGNC:6183
7031               22       33642401     33899862        ITSN1  HGNC:6183
7032               22       33642401     33899862        ITSN1  HGNC:6183
7033               22       33642401     33899862        ITSN1  HGNC:6183
7034               22       33642401     33899862        ITSN1  HGNC:6183
7035               22       33642401     33899862        ITSN1  HGNC:6183
7036               22       33642401     33899862        ITSN1  HGNC:6183
7037               22       33642401     33899862        ITSN1  HGNC:6183
7038               22       33642401     33899862        ITSN1  HGNC:6183
7039               22       33642401     33899862        ITSN1  HGNC:6183
7040               22       33642401     33899862        ITSN1  HGNC:6183
7041               22       33642401     33899862        ITSN1  HGNC:6183
7042               22       33642401     33899862        ITSN1  HGNC:6183
7043               22       33642401     33899862        ITSN1  HGNC:6183
7044               22       33642401     33899862        ITSN1  HGNC:6183
7045               22       33642401     33899862        ITSN1  HGNC:6183
7046               22       33642401     33899862        ITSN1  HGNC:6183
7047               22       33642401     33899862        ITSN1  HGNC:6183
7048               22       33642401     33899862        ITSN1  HGNC:6183
7049               22       33642401     33899862        ITSN1  HGNC:6183
7050               22       33642401     33899862        ITSN1  HGNC:6183
7051               22       33642401     33899862        ITSN1  HGNC:6183
7052               22       33642401     33899862        ITSN1  HGNC:6183
7053               22       33642401     33899862        ITSN1  HGNC:6183
7054               22       33642401     33899862        ITSN1  HGNC:6183
7055               22       33642401     33899862        ITSN1  HGNC:6183
7056               22       33642401     33899862        ITSN1  HGNC:6183
7057               22       33642401     33899862        ITSN1  HGNC:6183
7058               22       33642401     33899862        ITSN1  HGNC:6183
7059               22       33642401     33899862        ITSN1  HGNC:6183
7060               22       33642401     33899862        ITSN1  HGNC:6183
7061               22       33642401     33899862        ITSN1  HGNC:6183
7062               22       33642401     33899862        ITSN1  HGNC:6183
7063               22       33642401     33899862        ITSN1  HGNC:6183
7064               22       33642401     33899862        ITSN1  HGNC:6183
7065               22       33642401     33899862        ITSN1  HGNC:6183
7066               22       33642401     33899862        ITSN1  HGNC:6183
7067               22       33642401     33899862        ITSN1  HGNC:6183
7068               22       33642401     33899862        ITSN1  HGNC:6183
7069               22       33642401     33899862        ITSN1  HGNC:6183
7070               22       33642401     33899862        ITSN1  HGNC:6183
7071               22       33642401     33899862        ITSN1  HGNC:6183
7072               22       33642401     33899862        ITSN1  HGNC:6183
7073               22       33642401     33899862        ITSN1  HGNC:6183
7074               22       33642401     33899862        ITSN1  HGNC:6183
7075               22       33642401     33899862        ITSN1  HGNC:6183
7076               22       33642401     33899862        ITSN1  HGNC:6183
7077               22       33642401     33899862        ITSN1  HGNC:6183
7078               22       33642401     33899862        ITSN1  HGNC:6183
7079               22       33642401     33899862        ITSN1  HGNC:6183
7080               22       33642401     33899862        ITSN1  HGNC:6183
7081               22       33642401     33899862        ITSN1  HGNC:6183
7082               22       33642401     33899862        ITSN1  HGNC:6183
7083               22       33642401     33899862        ITSN1  HGNC:6183
7084               22       33642401     33899862        ITSN1  HGNC:6183
7085               22       33642401     33899862        ITSN1  HGNC:6183
7086               22       33642401     33899862        ITSN1  HGNC:6183
7087               22       33642401     33899862        ITSN1  HGNC:6183
7088               22       33642401     33899862        ITSN1  HGNC:6183
7089               22       33642401     33899862        ITSN1  HGNC:6183
7090               22       33642401     33899862        ITSN1  HGNC:6183
7091               22       33642401     33899862        ITSN1  HGNC:6183
7092               22       33642401     33899862        ITSN1  HGNC:6183
7093               22       33642401     33899862        ITSN1  HGNC:6183
7094               22       33642401     33899862        ITSN1  HGNC:6183
7095               22       33642401     33899862        ITSN1  HGNC:6183
7096               22       33642401     33899862        ITSN1  HGNC:6183
7097               22       33642401     33899862        ITSN1  HGNC:6183
7098               22       33642401     33899862        ITSN1  HGNC:6183
7099               22       33642401     33899862        ITSN1  HGNC:6183
7100               22       33642401     33899862        ITSN1  HGNC:6183
7101               22       33642401     33899862        ITSN1  HGNC:6183
7102               22       33642401     33899862        ITSN1  HGNC:6183
7103               22       33642401     33899862        ITSN1  HGNC:6183
7104               22       33642401     33899862        ITSN1  HGNC:6183
7105               22       33642401     33899862        ITSN1  HGNC:6183
7106               22       33642401     33899862        ITSN1  HGNC:6183
7107               22       33642401     33899862        ITSN1  HGNC:6183
7108               22       33642401     33899862        ITSN1  HGNC:6183
7109               22       33642401     33899862        ITSN1  HGNC:6183
7110               22       33642401     33899862        ITSN1  HGNC:6183
7111               22       33642401     33899862        ITSN1  HGNC:6183
7112               22       33642401     33899862        ITSN1  HGNC:6183
7113               22       33642401     33899862        ITSN1  HGNC:6183
7114               22       33642401     33899862        ITSN1  HGNC:6183
7115               22       33642401     33899862        ITSN1  HGNC:6183
7116               22       33642401     33899862        ITSN1  HGNC:6183
7117               22       33642401     33899862        ITSN1  HGNC:6183
7118               22       33642401     33899862        ITSN1  HGNC:6183
7119               22       33642401     33899862        ITSN1  HGNC:6183
7120               22       33642401     33899862        ITSN1  HGNC:6183
7121               22       33642401     33899862        ITSN1  HGNC:6183
7122               22       33642401     33899862        ITSN1  HGNC:6183
7123               22       33642401     33899862        ITSN1  HGNC:6183
7124               22       33642401     33899862        ITSN1  HGNC:6183
7125               22       33642401     33899862        ITSN1  HGNC:6183
7126               22       33642401     33899862        ITSN1  HGNC:6183
7127               22       33642401     33899862        ITSN1  HGNC:6183
7128               22       33642401     33899862        ITSN1  HGNC:6183
7129               22       33642401     33899862        ITSN1  HGNC:6183
7130               22       33642401     33899862        ITSN1  HGNC:6183
7131               22       33642401     33899862        ITSN1  HGNC:6183
7132               22       33642401     33899862        ITSN1  HGNC:6183
7133               22       33642401     33899862        ITSN1  HGNC:6183
7134               22       33642401     33899862        ITSN1  HGNC:6183
7135               22       33642401     33899862        ITSN1  HGNC:6183
7136               22       33642401     33899862        ITSN1  HGNC:6183
7137               22       33642401     33899862        ITSN1  HGNC:6183
7138               22       33642401     33899862        ITSN1  HGNC:6183
7139               22       33642401     33899862        ITSN1  HGNC:6183
7140               22       33642401     33899862        ITSN1  HGNC:6183
7141               22       33642401     33899862        ITSN1  HGNC:6183
7142               22       33642401     33899862        ITSN1  HGNC:6183
7143               22       33642401     33899862        ITSN1  HGNC:6183
7144               22       33642401     33899862        ITSN1  HGNC:6183
7145               22       33642401     33899862        ITSN1  HGNC:6183
7146               22       33642401     33899862        ITSN1  HGNC:6183
7147               22       33642401     33899862        ITSN1  HGNC:6183
7148               22       33642401     33899862        ITSN1  HGNC:6183
7149               22       33642401     33899862        ITSN1  HGNC:6183
7150               22       33642401     33899862        ITSN1  HGNC:6183
7151               22       33642401     33899862        ITSN1  HGNC:6183
7152               22       33642401     33899862        ITSN1  HGNC:6183
7153               22       33642401     33899862        ITSN1  HGNC:6183
7154               22       33642401     33899862        ITSN1  HGNC:6183
7155               22       33642401     33899862        ITSN1  HGNC:6183
7156               22       33642401     33899862        ITSN1  HGNC:6183
7157               22       33642401     33899862        ITSN1  HGNC:6183
7158               22       33642401     33899862        ITSN1  HGNC:6183
7159               22       33642401     33899862        ITSN1  HGNC:6183
7160               22       33642401     33899862        ITSN1  HGNC:6183
7161               22       33642401     33899862        ITSN1  HGNC:6183
7162               22       33642401     33899862        ITSN1  HGNC:6183
7163               22       33642401     33899862        ITSN1  HGNC:6183
7164               22       33642401     33899862        ITSN1  HGNC:6183
7165               22       33642401     33899862        ITSN1  HGNC:6183
7166               22       33642401     33899862        ITSN1  HGNC:6183
7167               22       33642401     33899862        ITSN1  HGNC:6183
7168               22       33642401     33899862        ITSN1  HGNC:6183
7169               22       33642401     33899862        ITSN1  HGNC:6183
7170               22       33642401     33899862        ITSN1  HGNC:6183
7171               22       33642401     33899862        ITSN1  HGNC:6183
7172               22       33642401     33899862        ITSN1  HGNC:6183
7173               22       33642401     33899862        ITSN1  HGNC:6183
7174               22       33642401     33899862        ITSN1  HGNC:6183
7175               22       33642401     33899862        ITSN1  HGNC:6183
7176               22       33642401     33899862        ITSN1  HGNC:6183
7177               22       33642401     33899862        ITSN1  HGNC:6183
7178               22       33642401     33899862        ITSN1  HGNC:6183
7179               22       33642401     33899862        ITSN1  HGNC:6183
7180               22       33642401     33899862        ITSN1  HGNC:6183
7181               22       33642401     33899862        ITSN1  HGNC:6183
7182               22       33642401     33899862        ITSN1  HGNC:6183
7183               22       33642401     33899862        ITSN1  HGNC:6183
7184               22       33642401     33899862        ITSN1  HGNC:6183
7185               22       33642401     33899862        ITSN1  HGNC:6183
7186               22       33642401     33899862        ITSN1  HGNC:6183
7187               22       33642401     33899862        ITSN1  HGNC:6183
7188               22       33642401     33899862        ITSN1  HGNC:6183
7189               22       33642401     33899862        ITSN1  HGNC:6183
7190               22       33642401     33899862        ITSN1  HGNC:6183
7191               22       33642401     33899862        ITSN1  HGNC:6183
7192               22       33642401     33899862        ITSN1  HGNC:6183
7193               22       33642401     33899862        ITSN1  HGNC:6183
7194               22       33642401     33899862        ITSN1  HGNC:6183
7195               22       33642401     33899862        ITSN1  HGNC:6183
7196               22       33642401     33899862        ITSN1  HGNC:6183
7197               22       33642401     33899862        ITSN1  HGNC:6183
7198               22       33642401     33899862        ITSN1  HGNC:6183
7199               22       33642401     33899862        ITSN1  HGNC:6183
7200               22       33642401     33899862        ITSN1  HGNC:6183
7201               22       33642401     33899862        ITSN1  HGNC:6183
7202               22       33642401     33899862        ITSN1  HGNC:6183
7203               22       33642401     33899862        ITSN1  HGNC:6183
7204               22       33642401     33899862        ITSN1  HGNC:6183
7205               22       33642401     33899862        ITSN1  HGNC:6183
7206               22       33642401     33899862        ITSN1  HGNC:6183
7207               22       33642401     33899862        ITSN1  HGNC:6183
7208               22       33642401     33899862        ITSN1  HGNC:6183
7209               22       33642401     33899862        ITSN1  HGNC:6183
7210               22       33642401     33899862        ITSN1  HGNC:6183
7211               22       33642401     33899862        ITSN1  HGNC:6183
7212               22       33642401     33899862        ITSN1  HGNC:6183
7213               22       33642401     33899862        ITSN1  HGNC:6183
7214               22       33642401     33899862        ITSN1  HGNC:6183
7215               22       33642401     33899862        ITSN1  HGNC:6183
7216               22       33642401     33899862        ITSN1  HGNC:6183
7217               22       33642401     33899862        ITSN1  HGNC:6183
7218               22       33642401     33899862        ITSN1  HGNC:6183
7219               22       33642401     33899862        ITSN1  HGNC:6183
7220               22       33642401     33899862        ITSN1  HGNC:6183
7221               22       33642401     33899862        ITSN1  HGNC:6183
7222               22       33642401     33899862        ITSN1  HGNC:6183
7223               22       33642401     33899862        ITSN1  HGNC:6183
7224               22       33642401     33899862        ITSN1  HGNC:6183
7225               22       33642401     33899862        ITSN1  HGNC:6183
7226               22       33642401     33899862        ITSN1  HGNC:6183
7227               22       33642401     33899862        ITSN1  HGNC:6183
7228               22       33642401     33899862        ITSN1  HGNC:6183
7229               22       33642401     33899862        ITSN1  HGNC:6183
7230               22       33642401     33899862        ITSN1  HGNC:6183
7231               22       33642401     33899862        ITSN1  HGNC:6183
7232               22       33642401     33899862        ITSN1  HGNC:6183
7233               22       33642401     33899862        ITSN1  HGNC:6183
7234               22       33642401     33899862        ITSN1  HGNC:6183
7235               22       33642401     33899862        ITSN1  HGNC:6183
7236               22       33642401     33899862        ITSN1  HGNC:6183
7237               22       33642401     33899862        ITSN1  HGNC:6183
7238               22       33642401     33899862        ITSN1  HGNC:6183
7239               22       33642401     33899862        ITSN1  HGNC:6183
7240               22       33642401     33899862        ITSN1  HGNC:6183
7241               22       33642401     33899862        ITSN1  HGNC:6183
7242               22       33642401     33899862        ITSN1  HGNC:6183
7243               22       33642401     33899862        ITSN1  HGNC:6183
7244               22       33642401     33899862        ITSN1  HGNC:6183
7245               22       33642401     33899862        ITSN1  HGNC:6183
7246               22       33642401     33899862        ITSN1  HGNC:6183
7247               22       33642401     33899862        ITSN1  HGNC:6183
7248               22       33642401     33899862        ITSN1  HGNC:6183
7249               22       33642401     33899862        ITSN1  HGNC:6183
7250               22       33642401     33899862        ITSN1  HGNC:6183
7251               22       33642401     33899862        ITSN1  HGNC:6183
7252               22       33642401     33899862        ITSN1  HGNC:6183
7253               22       33642401     33899862        ITSN1  HGNC:6183
7254               22       33642401     33899862        ITSN1  HGNC:6183
7255               22       33642401     33899862        ITSN1  HGNC:6183
7256               22       33642401     33899862        ITSN1  HGNC:6183
7257               22       33642401     33899862        ITSN1  HGNC:6183
7258               22       33642401     33899862        ITSN1  HGNC:6183
7259               22       33642401     33899862        ITSN1  HGNC:6183
7260               22       33642401     33899862        ITSN1  HGNC:6183
7261               22       33642401     33899862        ITSN1  HGNC:6183
7262               22       33642401     33899862        ITSN1  HGNC:6183
7263               22       33642401     33899862        ITSN1  HGNC:6183
7264               22       33642401     33899862        ITSN1  HGNC:6183
7265               22       33642401     33899862        ITSN1  HGNC:6183
7266               22       33642401     33899862        ITSN1  HGNC:6183
7267               22       33642401     33899862        ITSN1  HGNC:6183
7268               22       33642401     33899862        ITSN1  HGNC:6183
7269               22       33642401     33899862        ITSN1  HGNC:6183
7270               22       33642401     33899862        ITSN1  HGNC:6183
7271               22       33642401     33899862        ITSN1  HGNC:6183
7272               22       33642401     33899862        ITSN1  HGNC:6183
7273               22       33642401     33899862        ITSN1  HGNC:6183
7274               22       33642401     33899862        ITSN1  HGNC:6183
7275               22       33642401     33899862        ITSN1  HGNC:6183
7276               22       33642401     33899862        ITSN1  HGNC:6183
7277               22       33642401     33899862        ITSN1  HGNC:6183
7278               22       33642401     33899862        ITSN1  HGNC:6183
7279               22       33642401     33899862        ITSN1  HGNC:6183
7280               22       33642401     33899862        ITSN1  HGNC:6183
7281               22       33642401     33899862        ITSN1  HGNC:6183
7282               22       33642401     33899862        ITSN1  HGNC:6183
7283               22       33642401     33899862        ITSN1  HGNC:6183
7284               22       33642401     33899862        ITSN1  HGNC:6183
7285               22       33642401     33899862        ITSN1  HGNC:6183
7286               22       33642401     33899862        ITSN1  HGNC:6183
7287               22       33642401     33899862        ITSN1  HGNC:6183
7288               22       33642401     33899862        ITSN1  HGNC:6183
7289               22       33642401     33899862        ITSN1  HGNC:6183
7290               22       33642401     33899862        ITSN1  HGNC:6183
7291               22       33642401     33899862        ITSN1  HGNC:6183
7292               22       33642401     33899862        ITSN1  HGNC:6183
7293               22       33642401     33899862        ITSN1  HGNC:6183
7294               22       33642401     33899862        ITSN1  HGNC:6183
7295               22       33642401     33899862        ITSN1  HGNC:6183
7296               22       33642401     33899862        ITSN1  HGNC:6183
7297               22       33642401     33899862        ITSN1  HGNC:6183
7298               22       33642401     33899862        ITSN1  HGNC:6183
7299               22       33642401     33899862        ITSN1  HGNC:6183
7300               22       33642401     33899862        ITSN1  HGNC:6183
7301               22       33642401     33899862        ITSN1  HGNC:6183
7302               22       33642401     33899862        ITSN1  HGNC:6183
7303               22       33642401     33899862        ITSN1  HGNC:6183
7304               22       33642401     33899862        ITSN1  HGNC:6183
7305               22       33642401     33899862        ITSN1  HGNC:6183
7306               22       33642401     33899862        ITSN1  HGNC:6183
7307               22       33642401     33899862        ITSN1  HGNC:6183
7308               22       33642401     33899862        ITSN1  HGNC:6183
7309               22       33642401     33899862        ITSN1  HGNC:6183
7310               22       33642401     33899862        ITSN1  HGNC:6183
7311               22       33642401     33899862        ITSN1  HGNC:6183
7312               22       33642401     33899862        ITSN1  HGNC:6183
7313               22       33642401     33899862        ITSN1  HGNC:6183
7314               22       33642401     33899862        ITSN1  HGNC:6183
7315               22       33642401     33899862        ITSN1  HGNC:6183
7316               22       33642401     33899862        ITSN1  HGNC:6183
7317               22       33642401     33899862        ITSN1  HGNC:6183
7318               22       33642401     33899862        ITSN1  HGNC:6183
7319               22       33642401     33899862        ITSN1  HGNC:6183
7320               22       33642401     33899862        ITSN1  HGNC:6183
7321               22       33642401     33899862        ITSN1  HGNC:6183
7322               22        8101252      8103707                        
7323               22       43855891     43856343       MYL6P1  HGNC:7588
7324               22       45759805     45763759                        
7325               22       45914297     45919484                        
7326               22       45914297     45919484                        
7327               22       45914297     45919484                        
7328               22       26466210     26573285        CYYR1 HGNC:16274
7329               22       26466210     26573285        CYYR1 HGNC:16274
7330               22       26466210     26573285        CYYR1 HGNC:16274
7331               22       26466210     26573285        CYYR1 HGNC:16274
7332               22       26466210     26573285        CYYR1 HGNC:16274
7333               22       26466210     26573285        CYYR1 HGNC:16274
7334               22       26466210     26573285        CYYR1 HGNC:16274
7335               22       26466210     26573285        CYYR1 HGNC:16274
7336               22       26378553     26471699                        
7337               22       26378553     26471699                        
7338               22       26378553     26471699                        
7339               22       26378553     26471699                        
7340               22       26378553     26471699                        
7341               22       26378553     26471699                        
7342               22       26378553     26471699                        
7343               22       26378553     26471699                        
7344               22       26378553     26471699                        
7345               22       26378553     26471699                        
7346               22       26378553     26471699                        
7347               22       26378553     26471699                        
7348               22       26378553     26471699                        
7349               22       26378553     26471699                        
7350               22       14757589     14758353     POLR2CP1  HGNC:9190
7351               22       32020967     32021783     HUNK-AS1 HGNC:40631
7352               22       32020967     32021783     HUNK-AS1 HGNC:40631
7353               22       31873316     32044634         HUNK HGNC:13326
7354               22       31873316     32044634         HUNK HGNC:13326
7355               22       31873316     32044634         HUNK HGNC:13326
7356               22       31873316     32044634         HUNK HGNC:13326
7357               22       31873316     32044634         HUNK HGNC:13326
7358               22       31873316     32044634         HUNK HGNC:13326
7359               22       31873316     32044634         HUNK HGNC:13326
7360               22       31873316     32044634         HUNK HGNC:13326
7361               22       31873316     32044634         HUNK HGNC:13326
7362               22       31873316     32044634         HUNK HGNC:13326
7363               22       31873316     32044634         HUNK HGNC:13326
7364               22       31873316     32044634         HUNK HGNC:13326
7365               22       31873316     32044634         HUNK HGNC:13326
7366               22       31873316     32044634         HUNK HGNC:13326
7367               22       31873316     32044634         HUNK HGNC:13326
7368               22       31873316     32044634         HUNK HGNC:13326
7369               22       31873316     32044634         HUNK HGNC:13326
7370               22       31873316     32044634         HUNK HGNC:13326
7371               22       31873316     32044634         HUNK HGNC:13326
7372               22       31873316     32044634         HUNK HGNC:13326
7373               22       31873316     32044634         HUNK HGNC:13326
7374               22       31873316     32044634         HUNK HGNC:13326
7375               22       31873316     32044634         HUNK HGNC:13326
7376               22       31873316     32044634         HUNK HGNC:13326
7377               22       38739022     38747461    LINC00114  HGNC:1265
7378               22       38739022     38747461    LINC00114  HGNC:1265
7379               22       38739022     38747461    LINC00114  HGNC:1265
7380               22       38739022     38747461    LINC00114  HGNC:1265
7381               22       38739022     38747461    LINC00114  HGNC:1265
7382               22       38739022     38747461    LINC00114  HGNC:1265
7383               22       38739022     38747461    LINC00114  HGNC:1265
7384               22       38739022     38747461    LINC00114  HGNC:1265
7385               22       38739022     38747461    LINC00114  HGNC:1265
7386               22       38739022     38747461    LINC00114  HGNC:1265
7387               22       38739022     38747461    LINC00114  HGNC:1265
7388               22       38739022     38747461    LINC00114  HGNC:1265
7389               22       38739022     38747461    LINC00114  HGNC:1265
7390               22       38739022     38747461    LINC00114  HGNC:1265
7391               22       38739022     38747461    LINC00114  HGNC:1265
7392               22        6550750      6553956                        
7393               22        6550750      6553956                        
7394               22        6550750      6553956                        
7395               22       33229902     33265676       IFNAR2  HGNC:5433
7396               22       33229902     33265676       IFNAR2  HGNC:5433
7397               22       33229902     33265676       IFNAR2  HGNC:5433
7398               22       33229902     33265676       IFNAR2  HGNC:5433
7399               22       33229902     33265676       IFNAR2  HGNC:5433
7400               22       33229902     33265676       IFNAR2  HGNC:5433
7401               22       33229902     33265676       IFNAR2  HGNC:5433
7402               22       33229902     33265676       IFNAR2  HGNC:5433
7403               22       33229902     33265676       IFNAR2  HGNC:5433
7404               22       33229902     33265676       IFNAR2  HGNC:5433
7405               22       33229902     33265676       IFNAR2  HGNC:5433
7406               22       33229902     33265676       IFNAR2  HGNC:5433
7407               22       33229902     33265676       IFNAR2  HGNC:5433
7408               22       33229902     33265676       IFNAR2  HGNC:5433
7409               22       33229902     33265676       IFNAR2  HGNC:5433
7410               22       33229902     33265676       IFNAR2  HGNC:5433
7411               22       33229902     33265676       IFNAR2  HGNC:5433
7412               22       33229902     33265676       IFNAR2  HGNC:5433
7413               22       33229902     33265676       IFNAR2  HGNC:5433
7414               22       33229902     33265676       IFNAR2  HGNC:5433
7415               22       33229902     33265676       IFNAR2  HGNC:5433
7416               22       33229902     33265676       IFNAR2  HGNC:5433
7417               22       33229902     33265676       IFNAR2  HGNC:5433
7418               22       33229902     33265676       IFNAR2  HGNC:5433
7419               22       33229902     33265676       IFNAR2  HGNC:5433
7420               22       33229902     33265676       IFNAR2  HGNC:5433
7421               22       33229902     33265676       IFNAR2  HGNC:5433
7422               22       33229902     33265676       IFNAR2  HGNC:5433
7423               22       33229902     33265676       IFNAR2  HGNC:5433
7424               22       33229902     33265676       IFNAR2  HGNC:5433
7425               22       33229902     33265676       IFNAR2  HGNC:5433
7426               22       33229902     33265676       IFNAR2  HGNC:5433
7427               22       33229902     33265676       IFNAR2  HGNC:5433
7428               22       33229902     33265676       IFNAR2  HGNC:5433
7429               22       33229902     33265676       IFNAR2  HGNC:5433
7430               22       33229902     33265676       IFNAR2  HGNC:5433
7431               22       33229902     33265676       IFNAR2  HGNC:5433
7432               22       33229902     33265676       IFNAR2  HGNC:5433
7433               22       33229902     33265676       IFNAR2  HGNC:5433
7434               22       33229902     33265676       IFNAR2  HGNC:5433
7435               22       33229902     33265676       IFNAR2  HGNC:5433
7436               22       33229902     33265676       IFNAR2  HGNC:5433
7437               22       33229902     33265676       IFNAR2  HGNC:5433
7438               22       33229902     33265676       IFNAR2  HGNC:5433
7439               22       33229902     33265676       IFNAR2  HGNC:5433
7440               22       33229902     33265676       IFNAR2  HGNC:5433
7441               22       33229902     33265676       IFNAR2  HGNC:5433
7442               22       33229902     33265676       IFNAR2  HGNC:5433
7443               22       33229902     33265676       IFNAR2  HGNC:5433
7444               22       33229902     33265676       IFNAR2  HGNC:5433
7445               22       33229902     33265676       IFNAR2  HGNC:5433
7446               22       33229902     33265676       IFNAR2  HGNC:5433
7447               22       33229902     33265676       IFNAR2  HGNC:5433
7448               22       33229902     33265676       IFNAR2  HGNC:5433
7449               22       33229902     33265676       IFNAR2  HGNC:5433
7450               22       33229902     33265676       IFNAR2  HGNC:5433
7451               22       33229902     33265676       IFNAR2  HGNC:5433
7452               22       33229902     33265676       IFNAR2  HGNC:5433
7453               22       33229902     33265676       IFNAR2  HGNC:5433
7454               22       33229902     33265676       IFNAR2  HGNC:5433
7455               22       33229902     33265676       IFNAR2  HGNC:5433
7456               22       33229902     33265676       IFNAR2  HGNC:5433
7457               22       33229902     33265676       IFNAR2  HGNC:5433
7458               22       33229902     33265676       IFNAR2  HGNC:5433
7459               22       33229902     33265676       IFNAR2  HGNC:5433
7460               22       33229902     33265676       IFNAR2  HGNC:5433
7461               22       33229902     33265676       IFNAR2  HGNC:5433
7462               22       33229902     33265676       IFNAR2  HGNC:5433
7463               22       33229902     33265676       IFNAR2  HGNC:5433
7464               22       33229902     33265676       IFNAR2  HGNC:5433
7465               22       33229902     33265676       IFNAR2  HGNC:5433
7466               22       33229902     33265676       IFNAR2  HGNC:5433
7467               22       33229902     33265676       IFNAR2  HGNC:5433
7468               22       44158741     44160077    LINC01678 HGNC:52466
7469               22       44158741     44160077    LINC01678 HGNC:52466
7470               22       44158741     44160077    LINC01678 HGNC:52466
7471               22       44158741     44160077    LINC01678 HGNC:52466
7472               22       44158741     44160077    LINC01678 HGNC:52466
7473               22        6444870      6468041         CBSL HGNC:51829
7474               22        6444870      6468041         CBSL HGNC:51829
7475               22        6444870      6468041         CBSL HGNC:51829
7476               22        6444870      6468041         CBSL HGNC:51829
7477               22        6444870      6468041         CBSL HGNC:51829
7478               22        6444870      6468041         CBSL HGNC:51829
7479               22        6444870      6468041         CBSL HGNC:51829
7480               22        6444870      6468041         CBSL HGNC:51829
7481               22        6444870      6468041         CBSL HGNC:51829
7482               22        6444870      6468041         CBSL HGNC:51829
7483               22        6444870      6468041         CBSL HGNC:51829
7484               22        6444870      6468041         CBSL HGNC:51829
7485               22        6444870      6468041         CBSL HGNC:51829
7486               22        6444870      6468041         CBSL HGNC:51829
7487               22        6444870      6468041         CBSL HGNC:51829
7488               22        6444870      6468041         CBSL HGNC:51829
7489               22        6444870      6468041         CBSL HGNC:51829
7490               22        6444870      6468041         CBSL HGNC:51829
7491               22        6444870      6468041         CBSL HGNC:51829
7492               22        6444870      6468041         CBSL HGNC:51829
7493               22        6444870      6468041         CBSL HGNC:51829
7494               22        6444870      6468041         CBSL HGNC:51829
7495               22        6444870      6468041         CBSL HGNC:51829
7496               22        6444870      6468041         CBSL HGNC:51829
7497               22        6444870      6468041         CBSL HGNC:51829
7498               22        6444870      6468041         CBSL HGNC:51829
7499               22        6444870      6468041         CBSL HGNC:51829
7500               22        6444870      6468041         CBSL HGNC:51829
7501               22        6444870      6468041         CBSL HGNC:51829
7502               22        6444870      6468041         CBSL HGNC:51829
7503               22        6444870      6468041         CBSL HGNC:51829
7504               22        6444870      6468041         CBSL HGNC:51829
7505               22        6444870      6468041         CBSL HGNC:51829
7506               22        6444870      6468041         CBSL HGNC:51829
7507               22        6444870      6468041         CBSL HGNC:51829
7508               22        6444870      6468041         CBSL HGNC:51829
7509               22        6444870      6468041         CBSL HGNC:51829
7510               22        6444870      6468041         CBSL HGNC:51829
7511               22        6444870      6468041         CBSL HGNC:51829
7512               22        6444870      6468041         CBSL HGNC:51829
7513               22        6444870      6468041         CBSL HGNC:51829
7514               22        6444870      6468041         CBSL HGNC:51829
7515               22        6444870      6468041         CBSL HGNC:51829
7516               22        6444870      6468041         CBSL HGNC:51829
7517               22        6444870      6468041         CBSL HGNC:51829
7518               22        6444870      6468041         CBSL HGNC:51829
7519               22        6444870      6468041         CBSL HGNC:51829
7520               22        6444870      6468041         CBSL HGNC:51829
7521               22        6444870      6468041         CBSL HGNC:51829
7522               22        6444870      6468041         CBSL HGNC:51829
7523               22        6444870      6468041         CBSL HGNC:51829
7524               22        6444870      6468041         CBSL HGNC:51829
7525               22        6444870      6468041         CBSL HGNC:51829
7526               22        6444870      6468041         CBSL HGNC:51829
7527               22        6444870      6468041         CBSL HGNC:51829
7528               22        6444870      6468041         CBSL HGNC:51829
7529               22        6444870      6468041         CBSL HGNC:51829
7530               22        6444870      6468041         CBSL HGNC:51829
7531               22        6444870      6468041         CBSL HGNC:51829
7532               22        6444870      6468041         CBSL HGNC:51829
7533               22        6444870      6468041         CBSL HGNC:51829
7534               22        6444870      6468041         CBSL HGNC:51829
7535               22        6444870      6468041         CBSL HGNC:51829
7536               22        6444870      6468041         CBSL HGNC:51829
7537               22        6444870      6468041         CBSL HGNC:51829
7538               22        6444870      6468041         CBSL HGNC:51829
7539               22        6444870      6468041         CBSL HGNC:51829
7540               22        6444870      6468041         CBSL HGNC:51829
7541               22        6444870      6468041         CBSL HGNC:51829
7542               22        6444870      6468041         CBSL HGNC:51829
7543               22        6444870      6468041         CBSL HGNC:51829
7544               22        6444870      6468041         CBSL HGNC:51829
7545               22        6444870      6468041         CBSL HGNC:51829
7546               22        6444870      6468041         CBSL HGNC:51829
7547               22        6444870      6468041         CBSL HGNC:51829
7548               22        6444870      6468041         CBSL HGNC:51829
7549               22        6444870      6468041         CBSL HGNC:51829
7550               22        6444870      6468041         CBSL HGNC:51829
7551               22        6444870      6468041         CBSL HGNC:51829
7552               22        6444870      6468041         CBSL HGNC:51829
7553               22        6444870      6468041         CBSL HGNC:51829
7554               22        6444870      6468041         CBSL HGNC:51829
7555               22        6444870      6468041         CBSL HGNC:51829
7556               22        6444870      6468041         CBSL HGNC:51829
7557               22        6444870      6468041         CBSL HGNC:51829
7558               22        6444870      6468041         CBSL HGNC:51829
7559               22        6444870      6468041         CBSL HGNC:51829
7560               22        6444870      6468041         CBSL HGNC:51829
7561               22        6444870      6468041         CBSL HGNC:51829
7562               22        6444870      6468041         CBSL HGNC:51829
7563               22        6444870      6468041         CBSL HGNC:51829
7564               22        6444870      6468041         CBSL HGNC:51829
7565               22        6444870      6468041         CBSL HGNC:51829
7566               22        6444870      6468041         CBSL HGNC:51829
7567               22        6444870      6468041         CBSL HGNC:51829
7568               22        6444870      6468041         CBSL HGNC:51829
7569               22        6444870      6468041         CBSL HGNC:51829
7570               22        6444870      6468041         CBSL HGNC:51829
7571               22        6444870      6468041         CBSL HGNC:51829
7572               22        6444870      6468041         CBSL HGNC:51829
7573               22        6444870      6468041         CBSL HGNC:51829
7574               22        6444870      6468041         CBSL HGNC:51829
7575               22        6444870      6468041         CBSL HGNC:51829
7576               22        6444870      6468041         CBSL HGNC:51829
7577               22        6444870      6468041         CBSL HGNC:51829
7578               22        6444870      6468041         CBSL HGNC:51829
7579               22        6444870      6468041         CBSL HGNC:51829
7580               22        6444870      6468041         CBSL HGNC:51829
7581               22        6444870      6468041         CBSL HGNC:51829
7582               22        6444870      6468041         CBSL HGNC:51829
7583               22        6444870      6468041         CBSL HGNC:51829
7584               22        6444870      6468041         CBSL HGNC:51829
7585               22        6444870      6468041         CBSL HGNC:51829
7586               22        6444870      6468041         CBSL HGNC:51829
7587               22        6444870      6468041         CBSL HGNC:51829
7588               22        6444870      6468041         CBSL HGNC:51829
7589               22        6444870      6468041         CBSL HGNC:51829
7590               22        6444870      6468041         CBSL HGNC:51829
7591               22        6444870      6468041         CBSL HGNC:51829
7592               22        6444870      6468041         CBSL HGNC:51829
7593               22       32913650     33071105                        
7594               22       32913650     33071105                        
7595               22       36082860     36090415                        
7596               22       36082860     36090415                        
7597               22       42653637     42775510        PDE9A  HGNC:8795
7598               22       42653637     42775510        PDE9A  HGNC:8795
7599               22       42653637     42775510        PDE9A  HGNC:8795
7600               22       42653637     42775510        PDE9A  HGNC:8795
7601               22       42653637     42775510        PDE9A  HGNC:8795
7602               22       42653637     42775510        PDE9A  HGNC:8795
7603               22       42653637     42775510        PDE9A  HGNC:8795
7604               22       42653637     42775510        PDE9A  HGNC:8795
7605               22       42653637     42775510        PDE9A  HGNC:8795
7606               22       42653637     42775510        PDE9A  HGNC:8795
7607               22       42653637     42775510        PDE9A  HGNC:8795
7608               22       42653637     42775510        PDE9A  HGNC:8795
7609               22       42653637     42775510        PDE9A  HGNC:8795
7610               22       42653637     42775510        PDE9A  HGNC:8795
7611               22       42653637     42775510        PDE9A  HGNC:8795
7612               22       42653637     42775510        PDE9A  HGNC:8795
7613               22       42653637     42775510        PDE9A  HGNC:8795
7614               22       42653637     42775510        PDE9A  HGNC:8795
7615               22       42653637     42775510        PDE9A  HGNC:8795
7616               22       42653637     42775510        PDE9A  HGNC:8795
7617               22       42653637     42775510        PDE9A  HGNC:8795
7618               22       42653637     42775510        PDE9A  HGNC:8795
7619               22       42653637     42775510        PDE9A  HGNC:8795
7620               22       42653637     42775510        PDE9A  HGNC:8795
7621               22       42653637     42775510        PDE9A  HGNC:8795
7622               22       42653637     42775510        PDE9A  HGNC:8795
7623               22       42653637     42775510        PDE9A  HGNC:8795
7624               22       42653637     42775510        PDE9A  HGNC:8795
7625               22       42653637     42775510        PDE9A  HGNC:8795
7626               22       42653637     42775510        PDE9A  HGNC:8795
7627               22       42653637     42775510        PDE9A  HGNC:8795
7628               22       42653637     42775510        PDE9A  HGNC:8795
7629               22       42653637     42775510        PDE9A  HGNC:8795
7630               22       42653637     42775510        PDE9A  HGNC:8795
7631               22       42653637     42775510        PDE9A  HGNC:8795
7632               22       42653637     42775510        PDE9A  HGNC:8795
7633               22       42653637     42775510        PDE9A  HGNC:8795
7634               22       42653637     42775510        PDE9A  HGNC:8795
7635               22       42653637     42775510        PDE9A  HGNC:8795
7636               22       42653637     42775510        PDE9A  HGNC:8795
7637               22       42653637     42775510        PDE9A  HGNC:8795
7638               22       42653637     42775510        PDE9A  HGNC:8795
7639               22       42653637     42775510        PDE9A  HGNC:8795
7640               22       42653637     42775510        PDE9A  HGNC:8795
7641               22       42653637     42775510        PDE9A  HGNC:8795
7642               22       42653637     42775510        PDE9A  HGNC:8795
7643               22       42653637     42775510        PDE9A  HGNC:8795
7644               22       42653637     42775510        PDE9A  HGNC:8795
7645               22       42653637     42775510        PDE9A  HGNC:8795
7646               22       42653637     42775510        PDE9A  HGNC:8795
7647               22       42653637     42775510        PDE9A  HGNC:8795
7648               22       42653637     42775510        PDE9A  HGNC:8795
7649               22       42653637     42775510        PDE9A  HGNC:8795
7650               22       42653637     42775510        PDE9A  HGNC:8795
7651               22       42653637     42775510        PDE9A  HGNC:8795
7652               22       42653637     42775510        PDE9A  HGNC:8795
7653               22       42653637     42775510        PDE9A  HGNC:8795
7654               22       42653637     42775510        PDE9A  HGNC:8795
7655               22       42653637     42775510        PDE9A  HGNC:8795
7656               22       42653637     42775510        PDE9A  HGNC:8795
7657               22       42653637     42775510        PDE9A  HGNC:8795
7658               22       42653637     42775510        PDE9A  HGNC:8795
7659               22       42653637     42775510        PDE9A  HGNC:8795
7660               22       42653637     42775510        PDE9A  HGNC:8795
7661               22       42653637     42775510        PDE9A  HGNC:8795
7662               22       42653637     42775510        PDE9A  HGNC:8795
7663               22       42653637     42775510        PDE9A  HGNC:8795
7664               22       42653637     42775510        PDE9A  HGNC:8795
7665               22       42653637     42775510        PDE9A  HGNC:8795
7666               22       42653637     42775510        PDE9A  HGNC:8795
7667               22       42653637     42775510        PDE9A  HGNC:8795
7668               22       42653637     42775510        PDE9A  HGNC:8795
7669               22       42653637     42775510        PDE9A  HGNC:8795
7670               22       42653637     42775510        PDE9A  HGNC:8795
7671               22       42653637     42775510        PDE9A  HGNC:8795
7672               22       42653637     42775510        PDE9A  HGNC:8795
7673               22       42653637     42775510        PDE9A  HGNC:8795
7674               22       42653637     42775510        PDE9A  HGNC:8795
7675               22       42653637     42775510        PDE9A  HGNC:8795
7676               22       42653637     42775510        PDE9A  HGNC:8795
7677               22       42653637     42775510        PDE9A  HGNC:8795
7678               22       42653637     42775510        PDE9A  HGNC:8795
7679               22       42653637     42775510        PDE9A  HGNC:8795
7680               22       42653637     42775510        PDE9A  HGNC:8795
7681               22       42653637     42775510        PDE9A  HGNC:8795
7682               22       42653637     42775510        PDE9A  HGNC:8795
7683               22       42653637     42775510        PDE9A  HGNC:8795
7684               22       42653637     42775510        PDE9A  HGNC:8795
7685               22       42653637     42775510        PDE9A  HGNC:8795
7686               22       42653637     42775510        PDE9A  HGNC:8795
7687               22       42653637     42775510        PDE9A  HGNC:8795
7688               22       42653637     42775510        PDE9A  HGNC:8795
7689               22       42653637     42775510        PDE9A  HGNC:8795
7690               22       42653637     42775510        PDE9A  HGNC:8795
7691               22       42653637     42775510        PDE9A  HGNC:8795
7692               22       42653637     42775510        PDE9A  HGNC:8795
7693               22       42653637     42775510        PDE9A  HGNC:8795
7694               22       42653637     42775510        PDE9A  HGNC:8795
7695               22       42653637     42775510        PDE9A  HGNC:8795
7696               22       42653637     42775510        PDE9A  HGNC:8795
7697               22       42653637     42775510        PDE9A  HGNC:8795
7698               22       42653637     42775510        PDE9A  HGNC:8795
7699               22       42653637     42775510        PDE9A  HGNC:8795
7700               22       42653637     42775510        PDE9A  HGNC:8795
7701               22       42653637     42775510        PDE9A  HGNC:8795
7702               22       42653637     42775510        PDE9A  HGNC:8795
7703               22       42653637     42775510        PDE9A  HGNC:8795
7704               22       42653637     42775510        PDE9A  HGNC:8795
7705               22       42653637     42775510        PDE9A  HGNC:8795
7706               22       42653637     42775510        PDE9A  HGNC:8795
7707               22       42653637     42775510        PDE9A  HGNC:8795
7708               22       42653637     42775510        PDE9A  HGNC:8795
7709               22       42653637     42775510        PDE9A  HGNC:8795
7710               22       42653637     42775510        PDE9A  HGNC:8795
7711               22       42653637     42775510        PDE9A  HGNC:8795
7712               22       42653637     42775510        PDE9A  HGNC:8795
7713               22       42653637     42775510        PDE9A  HGNC:8795
7714               22       42653637     42775510        PDE9A  HGNC:8795
7715               22       42653637     42775510        PDE9A  HGNC:8795
7716               22       42653637     42775510        PDE9A  HGNC:8795
7717               22       42653637     42775510        PDE9A  HGNC:8795
7718               22       42653637     42775510        PDE9A  HGNC:8795
7719               22       42653637     42775510        PDE9A  HGNC:8795
7720               22       42653637     42775510        PDE9A  HGNC:8795
7721               22       42653637     42775510        PDE9A  HGNC:8795
7722               22       42653637     42775510        PDE9A  HGNC:8795
7723               22       42653637     42775510        PDE9A  HGNC:8795
7724               22       42653637     42775510        PDE9A  HGNC:8795
7725               22       42653637     42775510        PDE9A  HGNC:8795
7726               22       42653637     42775510        PDE9A  HGNC:8795
7727               22       42653637     42775510        PDE9A  HGNC:8795
7728               22       42653637     42775510        PDE9A  HGNC:8795
7729               22       42653637     42775510        PDE9A  HGNC:8795
7730               22       42653637     42775510        PDE9A  HGNC:8795
7731               22       42653637     42775510        PDE9A  HGNC:8795
7732               22       42653637     42775510        PDE9A  HGNC:8795
7733               22       42653637     42775510        PDE9A  HGNC:8795
7734               22       42653637     42775510        PDE9A  HGNC:8795
7735               22       42653637     42775510        PDE9A  HGNC:8795
7736               22       42653637     42775510        PDE9A  HGNC:8795
7737               22       42653637     42775510        PDE9A  HGNC:8795
7738               22       42653637     42775510        PDE9A  HGNC:8795
7739               22       42653637     42775510        PDE9A  HGNC:8795
7740               22       42653637     42775510        PDE9A  HGNC:8795
7741               22       42653637     42775510        PDE9A  HGNC:8795
7742               22       42653637     42775510        PDE9A  HGNC:8795
7743               22       42653637     42775510        PDE9A  HGNC:8795
7744               22       42653637     42775510        PDE9A  HGNC:8795
7745               22       42653637     42775510        PDE9A  HGNC:8795
7746               22       42653637     42775510        PDE9A  HGNC:8795
7747               22       42653637     42775510        PDE9A  HGNC:8795
7748               22       42653637     42775510        PDE9A  HGNC:8795
7749               22       42653637     42775510        PDE9A  HGNC:8795
7750               22       42653637     42775510        PDE9A  HGNC:8795
7751               22       42653637     42775510        PDE9A  HGNC:8795
7752               22       42653637     42775510        PDE9A  HGNC:8795
7753               22       42653637     42775510        PDE9A  HGNC:8795
7754               22       42653637     42775510        PDE9A  HGNC:8795
7755               22       42653637     42775510        PDE9A  HGNC:8795
7756               22       42653637     42775510        PDE9A  HGNC:8795
7757               22       42653637     42775510        PDE9A  HGNC:8795
7758               22       42653637     42775510        PDE9A  HGNC:8795
7759               22       42653637     42775510        PDE9A  HGNC:8795
7760               22       42653637     42775510        PDE9A  HGNC:8795
7761               22       42653637     42775510        PDE9A  HGNC:8795
7762               22       42653637     42775510        PDE9A  HGNC:8795
7763               22       42653637     42775510        PDE9A  HGNC:8795
7764               22       42653637     42775510        PDE9A  HGNC:8795
7765               22       42653637     42775510        PDE9A  HGNC:8795
7766               22       42653637     42775510        PDE9A  HGNC:8795
7767               22       42653637     42775510        PDE9A  HGNC:8795
7768               22       42653637     42775510        PDE9A  HGNC:8795
7769               22       42653637     42775510        PDE9A  HGNC:8795
7770               22       42653637     42775510        PDE9A  HGNC:8795
7771               22       42653637     42775510        PDE9A  HGNC:8795
7772               22       42653637     42775510        PDE9A  HGNC:8795
7773               22       42653637     42775510        PDE9A  HGNC:8795
7774               22       42653637     42775510        PDE9A  HGNC:8795
7775               22       42653637     42775510        PDE9A  HGNC:8795
7776               22       42653637     42775510        PDE9A  HGNC:8795
7777               22       42653637     42775510        PDE9A  HGNC:8795
7778               22       42653637     42775510        PDE9A  HGNC:8795
7779               22       42653637     42775510        PDE9A  HGNC:8795
7780               22       42653637     42775510        PDE9A  HGNC:8795
7781               22       42653637     42775510        PDE9A  HGNC:8795
7782               22       42653637     42775510        PDE9A  HGNC:8795
7783               22       42653637     42775510        PDE9A  HGNC:8795
7784               22       42653637     42775510        PDE9A  HGNC:8795
7785               22       42653637     42775510        PDE9A  HGNC:8795
7786               22       42653637     42775510        PDE9A  HGNC:8795
7787               22       42653637     42775510        PDE9A  HGNC:8795
7788               22       42653637     42775510        PDE9A  HGNC:8795
7789               22       42653637     42775510        PDE9A  HGNC:8795
7790               22       42653637     42775510        PDE9A  HGNC:8795
7791               22       42653637     42775510        PDE9A  HGNC:8795
7792               22       42653637     42775510        PDE9A  HGNC:8795
7793               22       42653637     42775510        PDE9A  HGNC:8795
7794               22       42653637     42775510        PDE9A  HGNC:8795
7795               22       42653637     42775510        PDE9A  HGNC:8795
7796               22       42653637     42775510        PDE9A  HGNC:8795
7797               22       42653637     42775510        PDE9A  HGNC:8795
7798               22       42653637     42775510        PDE9A  HGNC:8795
7799               22       42653637     42775510        PDE9A  HGNC:8795
7800               22       42653637     42775510        PDE9A  HGNC:8795
7801               22       42653637     42775510        PDE9A  HGNC:8795
7802               22       42653637     42775510        PDE9A  HGNC:8795
7803               22       42653637     42775510        PDE9A  HGNC:8795
7804               22       42653637     42775510        PDE9A  HGNC:8795
7805               22       42653637     42775510        PDE9A  HGNC:8795
7806               22       42653637     42775510        PDE9A  HGNC:8795
7807               22       42653637     42775510        PDE9A  HGNC:8795
7808               22       42653637     42775510        PDE9A  HGNC:8795
7809               22       42653637     42775510        PDE9A  HGNC:8795
7810               22       42653637     42775510        PDE9A  HGNC:8795
7811               22       42653637     42775510        PDE9A  HGNC:8795
7812               22       42653637     42775510        PDE9A  HGNC:8795
7813               22       42653637     42775510        PDE9A  HGNC:8795
7814               22       42653637     42775510        PDE9A  HGNC:8795
7815               22       42653637     42775510        PDE9A  HGNC:8795
7816               22       42653637     42775510        PDE9A  HGNC:8795
7817               22       42653637     42775510        PDE9A  HGNC:8795
7818               22       42653637     42775510        PDE9A  HGNC:8795
7819               22       42653637     42775510        PDE9A  HGNC:8795
7820               22       42653637     42775510        PDE9A  HGNC:8795
7821               22       42653637     42775510        PDE9A  HGNC:8795
7822               22       42653637     42775510        PDE9A  HGNC:8795
7823               22       42653637     42775510        PDE9A  HGNC:8795
7824               22       42653637     42775510        PDE9A  HGNC:8795
7825               22       42653637     42775510        PDE9A  HGNC:8795
7826               22       42653637     42775510        PDE9A  HGNC:8795
7827               22       42653637     42775510        PDE9A  HGNC:8795
7828               22       42653637     42775510        PDE9A  HGNC:8795
7829               22       42653637     42775510        PDE9A  HGNC:8795
7830               22       42653637     42775510        PDE9A  HGNC:8795
7831               22       42653637     42775510        PDE9A  HGNC:8795
7832               22       42653637     42775510        PDE9A  HGNC:8795
7833               22       42653637     42775510        PDE9A  HGNC:8795
7834               22       42653637     42775510        PDE9A  HGNC:8795
7835               22       42653637     42775510        PDE9A  HGNC:8795
7836               22       42653637     42775510        PDE9A  HGNC:8795
7837               22       42653637     42775510        PDE9A  HGNC:8795
7838               22       42653637     42775510        PDE9A  HGNC:8795
7839               22       42653637     42775510        PDE9A  HGNC:8795
7840               22       42653637     42775510        PDE9A  HGNC:8795
7841               22       42653637     42775510        PDE9A  HGNC:8795
7842               22       42653637     42775510        PDE9A  HGNC:8795
7843               22       42653637     42775510        PDE9A  HGNC:8795
7844               22       42653637     42775510        PDE9A  HGNC:8795
7845               22       42653637     42775510        PDE9A  HGNC:8795
7846               22       42653637     42775510        PDE9A  HGNC:8795
7847               22       42653637     42775510        PDE9A  HGNC:8795
7848               22       42653637     42775510        PDE9A  HGNC:8795
7849               22       42653637     42775510        PDE9A  HGNC:8795
7850               22       42653637     42775510        PDE9A  HGNC:8795
7851               22       42653637     42775510        PDE9A  HGNC:8795
7852               22       42653637     42775510        PDE9A  HGNC:8795
7853               22       42653637     42775510        PDE9A  HGNC:8795
7854               22       42653637     42775510        PDE9A  HGNC:8795
7855               22       42653637     42775510        PDE9A  HGNC:8795
7856               22       42653637     42775510        PDE9A  HGNC:8795
7857               22       42653637     42775510        PDE9A  HGNC:8795
7858               22       42653637     42775510        PDE9A  HGNC:8795
7859               22       42653637     42775510        PDE9A  HGNC:8795
7860               22       42653637     42775510        PDE9A  HGNC:8795
7861               22       42653637     42775510        PDE9A  HGNC:8795
7862               22       42653637     42775510        PDE9A  HGNC:8795
7863               22       42653637     42775510        PDE9A  HGNC:8795
7864               22       42653637     42775510        PDE9A  HGNC:8795
7865               22       42653637     42775510        PDE9A  HGNC:8795
7866               22       42653637     42775510        PDE9A  HGNC:8795
7867               22       42653637     42775510        PDE9A  HGNC:8795
7868               22       42653637     42775510        PDE9A  HGNC:8795
7869               22       42653637     42775510        PDE9A  HGNC:8795
7870               22       42653637     42775510        PDE9A  HGNC:8795
7871               22       42653637     42775510        PDE9A  HGNC:8795
7872               22       42653637     42775510        PDE9A  HGNC:8795
7873               22       42653637     42775510        PDE9A  HGNC:8795
7874               22       42653637     42775510        PDE9A  HGNC:8795
7875               22       42653637     42775510        PDE9A  HGNC:8795
7876               22       42653637     42775510        PDE9A  HGNC:8795
7877               22       42653637     42775510        PDE9A  HGNC:8795
7878               22       42653637     42775510        PDE9A  HGNC:8795
7879               22       42653637     42775510        PDE9A  HGNC:8795
7880               22       42653637     42775510        PDE9A  HGNC:8795
7881               22       42653637     42775510        PDE9A  HGNC:8795
7882               22       42653637     42775510        PDE9A  HGNC:8795
7883               22       42653637     42775510        PDE9A  HGNC:8795
7884               22       42653637     42775510        PDE9A  HGNC:8795
7885               22       42653637     42775510        PDE9A  HGNC:8795
7886               22       42653637     42775510        PDE9A  HGNC:8795
7887               22       42653637     42775510        PDE9A  HGNC:8795
7888               22       42653637     42775510        PDE9A  HGNC:8795
7889               22       42653637     42775510        PDE9A  HGNC:8795
7890               22       42653637     42775510        PDE9A  HGNC:8795
7891               22       42653637     42775510        PDE9A  HGNC:8795
7892               22       42653637     42775510        PDE9A  HGNC:8795
7893               22       42653637     42775510        PDE9A  HGNC:8795
7894               22       42653637     42775510        PDE9A  HGNC:8795
7895               22       42653637     42775510        PDE9A  HGNC:8795
7896               22       42653637     42775510        PDE9A  HGNC:8795
7897               22       42653637     42775510        PDE9A  HGNC:8795
7898               22       42653637     42775510        PDE9A  HGNC:8795
7899               22       42653637     42775510        PDE9A  HGNC:8795
7900               22       42653637     42775510        PDE9A  HGNC:8795
7901               22       42653637     42775510        PDE9A  HGNC:8795
7902               22       42653637     42775510        PDE9A  HGNC:8795
7903               22       42653637     42775510        PDE9A  HGNC:8795
7904               22       42653637     42775510        PDE9A  HGNC:8795
7905               22       42653637     42775510        PDE9A  HGNC:8795
7906               22       42653637     42775510        PDE9A  HGNC:8795
7907               22       42653637     42775510        PDE9A  HGNC:8795
7908               22       42653637     42775510        PDE9A  HGNC:8795
7909               22       42653637     42775510        PDE9A  HGNC:8795
7910               22       42653637     42775510        PDE9A  HGNC:8795
7911               22       42653637     42775510        PDE9A  HGNC:8795
7912               22       42653637     42775510        PDE9A  HGNC:8795
7913               22       42653637     42775510        PDE9A  HGNC:8795
7914               22       42653637     42775510        PDE9A  HGNC:8795
7915               22       42653637     42775510        PDE9A  HGNC:8795
7916               22       42653637     42775510        PDE9A  HGNC:8795
7917               22       42653637     42775510        PDE9A  HGNC:8795
7918               22       42653637     42775510        PDE9A  HGNC:8795
7919               22       42653637     42775510        PDE9A  HGNC:8795
7920               22       42653637     42775510        PDE9A  HGNC:8795
7921               22       42653637     42775510        PDE9A  HGNC:8795
7922               22       42653637     42775510        PDE9A  HGNC:8795
7923               22       42653637     42775510        PDE9A  HGNC:8795
7924               22       42653637     42775510        PDE9A  HGNC:8795
7925               22       42653637     42775510        PDE9A  HGNC:8795
7926               22       42653637     42775510        PDE9A  HGNC:8795
7927               22       42653637     42775510        PDE9A  HGNC:8795
7928               22       42653637     42775510        PDE9A  HGNC:8795
7929               22       42653637     42775510        PDE9A  HGNC:8795
7930               22       42653637     42775510        PDE9A  HGNC:8795
7931               22       42653637     42775510        PDE9A  HGNC:8795
7932               22       42653637     42775510        PDE9A  HGNC:8795
7933               22       42653637     42775510        PDE9A  HGNC:8795
7934               22       42653637     42775510        PDE9A  HGNC:8795
7935               22       42653637     42775510        PDE9A  HGNC:8795
7936               22       42653637     42775510        PDE9A  HGNC:8795
7937               22       42653637     42775510        PDE9A  HGNC:8795
7938               22       42653637     42775510        PDE9A  HGNC:8795
7939               22       42653637     42775510        PDE9A  HGNC:8795
7940               22       42653637     42775510        PDE9A  HGNC:8795
7941               22       42653637     42775510        PDE9A  HGNC:8795
7942               22       42653637     42775510        PDE9A  HGNC:8795
7943               22       42653637     42775510        PDE9A  HGNC:8795
7944               22       42653637     42775510        PDE9A  HGNC:8795
7945               22       42653637     42775510        PDE9A  HGNC:8795
7946               22       42653637     42775510        PDE9A  HGNC:8795
7947               22       42653637     42775510        PDE9A  HGNC:8795
7948               22       42653637     42775510        PDE9A  HGNC:8795
7949               22       42653637     42775510        PDE9A  HGNC:8795
7950               22       42653637     42775510        PDE9A  HGNC:8795
7951               22       42653637     42775510        PDE9A  HGNC:8795
7952               22       42653637     42775510        PDE9A  HGNC:8795
7953               22       42653637     42775510        PDE9A  HGNC:8795
7954               22       42653637     42775510        PDE9A  HGNC:8795
7955               22       42653637     42775510        PDE9A  HGNC:8795
7956               22       42653637     42775510        PDE9A  HGNC:8795
7957               22       42653637     42775510        PDE9A  HGNC:8795
7958               22       42653637     42775510        PDE9A  HGNC:8795
7959               22       42653637     42775510        PDE9A  HGNC:8795
7960               22       42653637     42775510        PDE9A  HGNC:8795
7961               22       42653637     42775510        PDE9A  HGNC:8795
7962               22       42653637     42775510        PDE9A  HGNC:8795
7963               22       42653637     42775510        PDE9A  HGNC:8795
7964               22       42653637     42775510        PDE9A  HGNC:8795
7965               22       42653637     42775510        PDE9A  HGNC:8795
7966               22       42653637     42775510        PDE9A  HGNC:8795
7967               22       42653637     42775510        PDE9A  HGNC:8795
7968               22       42653637     42775510        PDE9A  HGNC:8795
7969               22       42653637     42775510        PDE9A  HGNC:8795
7970               22       42653637     42775510        PDE9A  HGNC:8795
7971               22       42653637     42775510        PDE9A  HGNC:8795
7972               22       42653637     42775510        PDE9A  HGNC:8795
7973               22       42653637     42775510        PDE9A  HGNC:8795
7974               22       42653637     42775510        PDE9A  HGNC:8795
7975               22       42653637     42775510        PDE9A  HGNC:8795
7976               22       42653637     42775510        PDE9A  HGNC:8795
7977               22       42653637     42775510        PDE9A  HGNC:8795
7978               22       42653637     42775510        PDE9A  HGNC:8795
7979               22       42653637     42775510        PDE9A  HGNC:8795
7980               22       42653637     42775510        PDE9A  HGNC:8795
7981               22       42653637     42775510        PDE9A  HGNC:8795
7982               22       42653637     42775510        PDE9A  HGNC:8795
7983               22       42653637     42775510        PDE9A  HGNC:8795
7984               22       42653637     42775510        PDE9A  HGNC:8795
7985               22       42653637     42775510        PDE9A  HGNC:8795
7986               22       42653637     42775510        PDE9A  HGNC:8795
7987               22       42653637     42775510        PDE9A  HGNC:8795
7988               22       42653637     42775510        PDE9A  HGNC:8795
7989               22       42653637     42775510        PDE9A  HGNC:8795
7990               22       42653637     42775510        PDE9A  HGNC:8795
7991               22       42653637     42775510        PDE9A  HGNC:8795
7992               22       42653637     42775510        PDE9A  HGNC:8795
7993               22       42653637     42775510        PDE9A  HGNC:8795
7994               22       42653637     42775510        PDE9A  HGNC:8795
7995               22       42653637     42775510        PDE9A  HGNC:8795
7996               22       42653637     42775510        PDE9A  HGNC:8795
7997               22       42653637     42775510        PDE9A  HGNC:8795
7998               22       42653637     42775510        PDE9A  HGNC:8795
7999               22       42653637     42775510        PDE9A  HGNC:8795
8000               22       42653637     42775510        PDE9A  HGNC:8795
8001               22       42653637     42775510        PDE9A  HGNC:8795
8002               22       42653637     42775510        PDE9A  HGNC:8795
8003               22       42653637     42775510        PDE9A  HGNC:8795
8004               22       42653637     42775510        PDE9A  HGNC:8795
8005               22       42653637     42775510        PDE9A  HGNC:8795
8006               22       42653637     42775510        PDE9A  HGNC:8795
8007               22       42653637     42775510        PDE9A  HGNC:8795
8008               22       42653637     42775510        PDE9A  HGNC:8795
8009               22       42653637     42775510        PDE9A  HGNC:8795
8010               22       42653637     42775510        PDE9A  HGNC:8795
8011               22       42653637     42775510        PDE9A  HGNC:8795
8012               22       42653637     42775510        PDE9A  HGNC:8795
8013               22       42653637     42775510        PDE9A  HGNC:8795
8014               22       42653637     42775510        PDE9A  HGNC:8795
8015               22       42653637     42775510        PDE9A  HGNC:8795
8016               22       42653637     42775510        PDE9A  HGNC:8795
8017               22       42653637     42775510        PDE9A  HGNC:8795
8018               22       42653637     42775510        PDE9A  HGNC:8795
8019               22       42472487     42496355        RSPH1 HGNC:12371
8020               22       42472487     42496355        RSPH1 HGNC:12371
8021               22       42472487     42496355        RSPH1 HGNC:12371
8022               22       42472487     42496355        RSPH1 HGNC:12371
8023               22       42472487     42496355        RSPH1 HGNC:12371
8024               22       42472487     42496355        RSPH1 HGNC:12371
8025               22       42472487     42496355        RSPH1 HGNC:12371
8026               22       42472487     42496355        RSPH1 HGNC:12371
8027               22       42472487     42496355        RSPH1 HGNC:12371
8028               22       42472487     42496355        RSPH1 HGNC:12371
8029               22       42472487     42496355        RSPH1 HGNC:12371
8030               22       42472487     42496355        RSPH1 HGNC:12371
8031               22       42472487     42496355        RSPH1 HGNC:12371
8032               22       42472487     42496355        RSPH1 HGNC:12371
8033               22       42472487     42496355        RSPH1 HGNC:12371
8034               22       42472487     42496355        RSPH1 HGNC:12371
8035               22       42472487     42496355        RSPH1 HGNC:12371
8036               22       42472487     42496355        RSPH1 HGNC:12371
8037               22       42472487     42496355        RSPH1 HGNC:12371
8038               22       42472487     42496355        RSPH1 HGNC:12371
8039               22       42472487     42496355        RSPH1 HGNC:12371
8040               22       42472487     42496355        RSPH1 HGNC:12371
8041               22       42472487     42496355        RSPH1 HGNC:12371
8042               22       42472487     42496355        RSPH1 HGNC:12371
8043               22       42472487     42496355        RSPH1 HGNC:12371
8044               22       35472096     35472433      RPL34P3 HGNC:10343
8045               22       35724748     35725101      RPS20P1 HGNC:10408
8046               22       35713140     35732943                        
8047               22       35713140     35732943                        
8048               22       34787802     36004668        RUNX1 HGNC:10471
8049               22       34787802     36004668        RUNX1 HGNC:10471
8050               22       34787802     36004668        RUNX1 HGNC:10471
8051               22       34787802     36004668        RUNX1 HGNC:10471
8052               22       34787802     36004668        RUNX1 HGNC:10471
8053               22       34787802     36004668        RUNX1 HGNC:10471
8054               22       34787802     36004668        RUNX1 HGNC:10471
8055               22       34787802     36004668        RUNX1 HGNC:10471
8056               22       34787802     36004668        RUNX1 HGNC:10471
8057               22       34787802     36004668        RUNX1 HGNC:10471
8058               22       34787802     36004668        RUNX1 HGNC:10471
8059               22       34787802     36004668        RUNX1 HGNC:10471
8060               22       34787802     36004668        RUNX1 HGNC:10471
8061               22       34787802     36004668        RUNX1 HGNC:10471
8062               22       34787802     36004668        RUNX1 HGNC:10471
8063               22       34787802     36004668        RUNX1 HGNC:10471
8064               22       34787802     36004668        RUNX1 HGNC:10471
8065               22       34787802     36004668        RUNX1 HGNC:10471
8066               22       34787802     36004668        RUNX1 HGNC:10471
8067               22       34787802     36004668        RUNX1 HGNC:10471
8068               22       34787802     36004668        RUNX1 HGNC:10471
8069               22       34787802     36004668        RUNX1 HGNC:10471
8070               22       34787802     36004668        RUNX1 HGNC:10471
8071               22       34787802     36004668        RUNX1 HGNC:10471
8072               22       34787802     36004668        RUNX1 HGNC:10471
8073               22       34787802     36004668        RUNX1 HGNC:10471
8074               22       34787802     36004668        RUNX1 HGNC:10471
8075               22       34787802     36004668        RUNX1 HGNC:10471
8076               22       34787802     36004668        RUNX1 HGNC:10471
8077               22       34787802     36004668        RUNX1 HGNC:10471
8078               22       34787802     36004668        RUNX1 HGNC:10471
8079               22       34787802     36004668        RUNX1 HGNC:10471
8080               22       34787802     36004668        RUNX1 HGNC:10471
8081               22       34787802     36004668        RUNX1 HGNC:10471
8082               22       34787802     36004668        RUNX1 HGNC:10471
8083               22       34787802     36004668        RUNX1 HGNC:10471
8084               22       34787802     36004668        RUNX1 HGNC:10471
8085               22       34787802     36004668        RUNX1 HGNC:10471
8086               22       34787802     36004668        RUNX1 HGNC:10471
8087               22       34787802     36004668        RUNX1 HGNC:10471
8088               22       34787802     36004668        RUNX1 HGNC:10471
8089               22       34787802     36004668        RUNX1 HGNC:10471
8090               22       34787802     36004668        RUNX1 HGNC:10471
8091               22       34787802     36004668        RUNX1 HGNC:10471
8092               22       34787802     36004668        RUNX1 HGNC:10471
8093               22       34787802     36004668        RUNX1 HGNC:10471
8094               22       34787802     36004668        RUNX1 HGNC:10471
8095               22       34787802     36004668        RUNX1 HGNC:10471
8096               22       34787802     36004668        RUNX1 HGNC:10471
8097               22       34787802     36004668        RUNX1 HGNC:10471
8098               22       34787802     36004668        RUNX1 HGNC:10471
8099               22       34787802     36004668        RUNX1 HGNC:10471
8100               22       34787802     36004668        RUNX1 HGNC:10471
8101               22       34787802     36004668        RUNX1 HGNC:10471
8102               22       34787802     36004668        RUNX1 HGNC:10471
8103               22       34787802     36004668        RUNX1 HGNC:10471
8104               22       34787802     36004668        RUNX1 HGNC:10471
8105               22       34787802     36004668        RUNX1 HGNC:10471
8106               22       34787802     36004668        RUNX1 HGNC:10471
8107               22       34787802     36004668        RUNX1 HGNC:10471
8108               22       34787802     36004668        RUNX1 HGNC:10471
8109               22       34787802     36004668        RUNX1 HGNC:10471
8110               22       34787802     36004668        RUNX1 HGNC:10471
8111               22       34787802     36004668        RUNX1 HGNC:10471
8112               22       34787802     36004668        RUNX1 HGNC:10471
8113               22       34787802     36004668        RUNX1 HGNC:10471
8114               22       34787802     36004668        RUNX1 HGNC:10471
8115               22       34787802     36004668        RUNX1 HGNC:10471
8116               22       34787802     36004668        RUNX1 HGNC:10471
8117               22       34787802     36004668        RUNX1 HGNC:10471
8118               22       34787802     36004668        RUNX1 HGNC:10471
8119               22       34787802     36004668        RUNX1 HGNC:10471
8120               22       34787802     36004668        RUNX1 HGNC:10471
8121               22       34787802     36004668        RUNX1 HGNC:10471
8122               22       34787802     36004668        RUNX1 HGNC:10471
8123               22       34787802     36004668        RUNX1 HGNC:10471
8124               22       34787802     36004668        RUNX1 HGNC:10471
8125               22       34787802     36004668        RUNX1 HGNC:10471
8126               22       34787802     36004668        RUNX1 HGNC:10471
8127               22       34787802     36004668        RUNX1 HGNC:10471
8128               22       34787802     36004668        RUNX1 HGNC:10471
8129               22       34787802     36004668        RUNX1 HGNC:10471
8130               22       34787802     36004668        RUNX1 HGNC:10471
8131               22       36130490     36131377      MEMO1P1 HGNC:23274
8132               22       17793489     17810846                        
8133               22       17793489     17810846                        
8134               22       17793489     17810846                        
8135               22       17793489     17810846                        
8136               22       43805759     43812568        AATBC HGNC:51526
8137               22       43805759     43812568        AATBC HGNC:51526
8138               22       43805759     43812568        AATBC HGNC:51526
8139               22       43805759     43812568        AATBC HGNC:51526
8140               22       43805759     43812568        AATBC HGNC:51526
8141               22       43805759     43812568        AATBC HGNC:51526
8142               22       43805759     43812568        AATBC HGNC:51526
8143               22       43805759     43812568        AATBC HGNC:51526
8144               22       26459904     26460215                        
8145               22       32393131     32393961     URB1-AS1 HGNC:23128
8146               22       43719095     43762308         PDXK  HGNC:8819
8147               22       43719095     43762308         PDXK  HGNC:8819
8148               22       43719095     43762308         PDXK  HGNC:8819
8149               22       43719095     43762308         PDXK  HGNC:8819
8150               22       43719095     43762308         PDXK  HGNC:8819
8151               22       43719095     43762308         PDXK  HGNC:8819
8152               22       43719095     43762308         PDXK  HGNC:8819
8153               22       43719095     43762308         PDXK  HGNC:8819
8154               22       43719095     43762308         PDXK  HGNC:8819
8155               22       43719095     43762308         PDXK  HGNC:8819
8156               22       43719095     43762308         PDXK  HGNC:8819
8157               22       43719095     43762308         PDXK  HGNC:8819
8158               22       43719095     43762308         PDXK  HGNC:8819
8159               22       43719095     43762308         PDXK  HGNC:8819
8160               22       43719095     43762308         PDXK  HGNC:8819
8161               22       43719095     43762308         PDXK  HGNC:8819
8162               22       43719095     43762308         PDXK  HGNC:8819
8163               22       43719095     43762308         PDXK  HGNC:8819
8164               22       43719095     43762308         PDXK  HGNC:8819
8165               22       43719095     43762308         PDXK  HGNC:8819
8166               22       43719095     43762308         PDXK  HGNC:8819
8167               22       43719095     43762308         PDXK  HGNC:8819
8168               22       43719095     43762308         PDXK  HGNC:8819
8169               22       43719095     43762308         PDXK  HGNC:8819
8170               22       43719095     43762308         PDXK  HGNC:8819
8171               22       43719095     43762308         PDXK  HGNC:8819
8172               22       43719095     43762308         PDXK  HGNC:8819
8173               22       43719095     43762308         PDXK  HGNC:8819
8174               22       43719095     43762308         PDXK  HGNC:8819
8175               22       43719095     43762308         PDXK  HGNC:8819
8176               22       43719095     43762308         PDXK  HGNC:8819
8177               22       43719095     43762308         PDXK  HGNC:8819
8178               22       43719095     43762308         PDXK  HGNC:8819
8179               22       43719095     43762308         PDXK  HGNC:8819
8180               22       43719095     43762308         PDXK  HGNC:8819
8181               22       43719095     43762308         PDXK  HGNC:8819
8182               22       43719095     43762308         PDXK  HGNC:8819
8183               22       43719095     43762308         PDXK  HGNC:8819
8184               22       43719095     43762308         PDXK  HGNC:8819
8185               22       43719095     43762308         PDXK  HGNC:8819
8186               22       43719095     43762308         PDXK  HGNC:8819
8187               22       43719095     43762308         PDXK  HGNC:8819
8188               22       43719095     43762308         PDXK  HGNC:8819
8189               22       43719095     43762308         PDXK  HGNC:8819
8190               22       43719095     43762308         PDXK  HGNC:8819
8191               22       43719095     43762308         PDXK  HGNC:8819
8192               22       43719095     43762308         PDXK  HGNC:8819
8193               22       43719095     43762308         PDXK  HGNC:8819
8194               22       43719095     43762308         PDXK  HGNC:8819
8195               22       43719095     43762308         PDXK  HGNC:8819
8196               22       43719095     43762308         PDXK  HGNC:8819
8197               22       43719095     43762308         PDXK  HGNC:8819
8198               22       43719095     43762308         PDXK  HGNC:8819
8199               22       43719095     43762308         PDXK  HGNC:8819
8200               22       43719095     43762308         PDXK  HGNC:8819
8201               22       43719095     43762308         PDXK  HGNC:8819
8202               22       43719095     43762308         PDXK  HGNC:8819
8203               22       43719095     43762308         PDXK  HGNC:8819
8204               22       43719095     43762308         PDXK  HGNC:8819
8205               22       43719095     43762308         PDXK  HGNC:8819
8206               22       43719095     43762308         PDXK  HGNC:8819
8207               22       43719095     43762308         PDXK  HGNC:8819
8208               22       43719095     43762308         PDXK  HGNC:8819
8209               22       43719095     43762308         PDXK  HGNC:8819
8210               22       43719095     43762308         PDXK  HGNC:8819
8211               22       43719095     43762308         PDXK  HGNC:8819
8212               22       43719095     43762308         PDXK  HGNC:8819
8213               22       43719095     43762308         PDXK  HGNC:8819
8214               22       43719095     43762308         PDXK  HGNC:8819
8215               22       43719095     43762308         PDXK  HGNC:8819
8216               22       43719095     43762308         PDXK  HGNC:8819
8217               22       43719095     43762308         PDXK  HGNC:8819
8218               22       43719095     43762308         PDXK  HGNC:8819
8219               22       43719095     43762308         PDXK  HGNC:8819
8220               22       43719095     43762308         PDXK  HGNC:8819
8221               22       43719095     43762308         PDXK  HGNC:8819
8222               22       43719095     43762308         PDXK  HGNC:8819
8223               22       43719095     43762308         PDXK  HGNC:8819
8224               22       43719095     43762308         PDXK  HGNC:8819
8225               22       43719095     43762308         PDXK  HGNC:8819
8226               22       43719095     43762308         PDXK  HGNC:8819
8227               22       43719095     43762308         PDXK  HGNC:8819
8228               22       43719095     43762308         PDXK  HGNC:8819
8229               22       43719095     43762308         PDXK  HGNC:8819
8230               22       43719095     43762308         PDXK  HGNC:8819
8231               22       43719095     43762308         PDXK  HGNC:8819
8232               22       43719095     43762308         PDXK  HGNC:8819
8233               22       43719095     43762308         PDXK  HGNC:8819
8234               22       43719095     43762308         PDXK  HGNC:8819
8235               22       43719095     43762308         PDXK  HGNC:8819
8236               22       43719095     43762308         PDXK  HGNC:8819
8237               22       43719095     43762308         PDXK  HGNC:8819
8238               22       43719095     43762308         PDXK  HGNC:8819
8239               22       43719095     43762308         PDXK  HGNC:8819
8240               22       43719095     43762308         PDXK  HGNC:8819
8241               22       43719095     43762308         PDXK  HGNC:8819
8242               22       43719095     43762308         PDXK  HGNC:8819
8243               22       43719095     43762308         PDXK  HGNC:8819
8244               22       43719095     43762308         PDXK  HGNC:8819
8245               22       43719095     43762308         PDXK  HGNC:8819
8246               22       43719095     43762308         PDXK  HGNC:8819
8247               22       43719095     43762308         PDXK  HGNC:8819
8248               22       43719095     43762308         PDXK  HGNC:8819
8249               22       43719095     43762308         PDXK  HGNC:8819
8250               22       43719095     43762308         PDXK  HGNC:8819
8251               22       43719095     43762308         PDXK  HGNC:8819
8252               22       43719095     43762308         PDXK  HGNC:8819
8253               22       43719095     43762308         PDXK  HGNC:8819
8254               22       43719095     43762308         PDXK  HGNC:8819
8255               22       43719095     43762308         PDXK  HGNC:8819
8256               22       43719095     43762308         PDXK  HGNC:8819
8257               22       43719095     43762308         PDXK  HGNC:8819
8258               22       43719095     43762308         PDXK  HGNC:8819
8259               22       43719095     43762308         PDXK  HGNC:8819
8260               22       43719095     43762308         PDXK  HGNC:8819
8261               22       43719095     43762308         PDXK  HGNC:8819
8262               22       43719095     43762308         PDXK  HGNC:8819
8263               22       43719095     43762308         PDXK  HGNC:8819
8264               22       43719095     43762308         PDXK  HGNC:8819
8265               22       43719095     43762308         PDXK  HGNC:8819
8266               22       43719095     43762308         PDXK  HGNC:8819
8267               22       43719095     43762308         PDXK  HGNC:8819
8268               22       29370498     29373710    BACH1-IT2 HGNC:40007
8269               22       29370498     29373710    BACH1-IT2 HGNC:40007
8270               22       29370498     29373710    BACH1-IT2 HGNC:40007
8271               22       29370498     29373710    BACH1-IT2 HGNC:40007
8272               22       29370498     29373710    BACH1-IT2 HGNC:40007
8273               22       29370498     29373710    BACH1-IT2 HGNC:40007
8274               22       29370498     29373710    BACH1-IT2 HGNC:40007
8275               22       29370498     29373710    BACH1-IT2 HGNC:40007
8276               22        6712597      6716362                        
8277               22        6712597      6716362                        
8278               22        6712597      6716362                        
8279               22        6712597      6716362                        
8280               22        6712597      6716362                        
8281               22        6712597      6716362                        
8282               22        6712597      6716362                        
8283               22        6712597      6716362                        
8284               22        6676179      6679963                        
8285               22        6676179      6679963                        
8286               22        6676179      6679963                        
8287               22        6676179      6679963                        
8288               22        6676179      6679963                        
8289               22        6676179      6679963                        
8290               22        6676179      6679963                        
8291               22        6676179      6679963                        
8292               22        6676179      6679963                        
8293               22       44201291     44202697                        
8294               22       44201291     44202697                        
8295               22       37059171     37073171         PIGP  HGNC:3046
8296               22       37059171     37073171         PIGP  HGNC:3046
8297               22       37059171     37073171         PIGP  HGNC:3046
8298               22       37059171     37073171         PIGP  HGNC:3046
8299               22       37059171     37073171         PIGP  HGNC:3046
8300               22       37059171     37073171         PIGP  HGNC:3046
8301               22       37059171     37073171         PIGP  HGNC:3046
8302               22       37059171     37073171         PIGP  HGNC:3046
8303               22       37059171     37073171         PIGP  HGNC:3046
8304               22       37059171     37073171         PIGP  HGNC:3046
8305               22       37059171     37073171         PIGP  HGNC:3046
8306               22       37059171     37073171         PIGP  HGNC:3046
8307               22       37059171     37073171         PIGP  HGNC:3046
8308               22       37059171     37073171         PIGP  HGNC:3046
8309               22       37059171     37073171         PIGP  HGNC:3046
8310               22       37059171     37073171         PIGP  HGNC:3046
8311               22       37059171     37073171         PIGP  HGNC:3046
8312               22       37059171     37073171         PIGP  HGNC:3046
8313               22       37059171     37073171         PIGP  HGNC:3046
8314               22       37059171     37073171         PIGP  HGNC:3046
8315               22       37059171     37073171         PIGP  HGNC:3046
8316               22       37059171     37073171         PIGP  HGNC:3046
8317               22       37059171     37073171         PIGP  HGNC:3046
8318               22       37059171     37073171         PIGP  HGNC:3046
8319               22       37059171     37073171         PIGP  HGNC:3046
8320               22       37059171     37073171         PIGP  HGNC:3046
8321               22       37059171     37073171         PIGP  HGNC:3046
8322               22       37059171     37073171         PIGP  HGNC:3046
8323               22       37059171     37073171         PIGP  HGNC:3046
8324               22       37059171     37073171         PIGP  HGNC:3046
8325               22       37059171     37073171         PIGP  HGNC:3046
8326               22       37059171     37073171         PIGP  HGNC:3046
8327               22       37059171     37073171         PIGP  HGNC:3046
8328               22        6084365      6091408                        
8329               22        6084365      6091408                        
8330               22        6084365      6091408                        
8331               22        6084365      6091408                        
8332               22        6084365      6091408                        
8333               22        6084365      6091408                        
8334               22        6084365      6091408                        
8335               22       23101224     23103075    MSANTD2P1 HGNC:39637
8336               22       23101224     23103075    MSANTD2P1 HGNC:39637
8337               22       23101224     23103075    MSANTD2P1 HGNC:39637
8338               22       22882583     22884001                        
8339               22       22882583     22884001                        
8340               22       22882583     22884001                        
8341               22       21655039     21686330                        
8342               22       21655039     21686330                        
8343               22       21655039     21686330                        
8344               22       21655039     21686330                        
8345               22       21655039     21686330                        
8346               22       21566764     21615438                        
8347               22       21566764     21615438                        
8348               22       36034542     36079390        SETD4  HGNC:1258
8349               22       36034542     36079390        SETD4  HGNC:1258
8350               22       36034542     36079390        SETD4  HGNC:1258
8351               22       36034542     36079390        SETD4  HGNC:1258
8352               22       36034542     36079390        SETD4  HGNC:1258
8353               22       36034542     36079390        SETD4  HGNC:1258
8354               22       36034542     36079390        SETD4  HGNC:1258
8355               22       36034542     36079390        SETD4  HGNC:1258
8356               22       36034542     36079390        SETD4  HGNC:1258
8357               22       36034542     36079390        SETD4  HGNC:1258
8358               22       36034542     36079390        SETD4  HGNC:1258
8359               22       36034542     36079390        SETD4  HGNC:1258
8360               22       36034542     36079390        SETD4  HGNC:1258
8361               22       36034542     36079390        SETD4  HGNC:1258
8362               22       36034542     36079390        SETD4  HGNC:1258
8363               22       36034542     36079390        SETD4  HGNC:1258
8364               22       36034542     36079390        SETD4  HGNC:1258
8365               22       36034542     36079390        SETD4  HGNC:1258
8366               22       36034542     36079390        SETD4  HGNC:1258
8367               22       36034542     36079390        SETD4  HGNC:1258
8368               22       36034542     36079390        SETD4  HGNC:1258
8369               22       36034542     36079390        SETD4  HGNC:1258
8370               22       36034542     36079390        SETD4  HGNC:1258
8371               22       36034542     36079390        SETD4  HGNC:1258
8372               22       36034542     36079390        SETD4  HGNC:1258
8373               22       36034542     36079390        SETD4  HGNC:1258
8374               22       36034542     36079390        SETD4  HGNC:1258
8375               22       36034542     36079390        SETD4  HGNC:1258
8376               22       36034542     36079390        SETD4  HGNC:1258
8377               22       36034542     36079390        SETD4  HGNC:1258
8378               22       36034542     36079390        SETD4  HGNC:1258
8379               22       36034542     36079390        SETD4  HGNC:1258
8380               22       36034542     36079390        SETD4  HGNC:1258
8381               22       36034542     36079390        SETD4  HGNC:1258
8382               22       36034542     36079390        SETD4  HGNC:1258
8383               22       36034542     36079390        SETD4  HGNC:1258
8384               22       36034542     36079390        SETD4  HGNC:1258
8385               22       36034542     36079390        SETD4  HGNC:1258
8386               22       36034542     36079390        SETD4  HGNC:1258
8387               22       36034542     36079390        SETD4  HGNC:1258
8388               22       36034542     36079390        SETD4  HGNC:1258
8389               22       36034542     36079390        SETD4  HGNC:1258
8390               22       36034542     36079390        SETD4  HGNC:1258
8391               22       36034542     36079390        SETD4  HGNC:1258
8392               22       36034542     36079390        SETD4  HGNC:1258
8393               22       36034542     36079390        SETD4  HGNC:1258
8394               22       36034542     36079390        SETD4  HGNC:1258
8395               22       36034542     36079390        SETD4  HGNC:1258
8396               22       36034542     36079390        SETD4  HGNC:1258
8397               22       36034542     36079390        SETD4  HGNC:1258
8398               22       36034542     36079390        SETD4  HGNC:1258
8399               22       36034542     36079390        SETD4  HGNC:1258
8400               22       36034542     36079390        SETD4  HGNC:1258
8401               22       36034542     36079390        SETD4  HGNC:1258
8402               22       36034542     36079390        SETD4  HGNC:1258
8403               22       36034542     36079390        SETD4  HGNC:1258
8404               22       36034542     36079390        SETD4  HGNC:1258
8405               22       36034542     36079390        SETD4  HGNC:1258
8406               22       36034542     36079390        SETD4  HGNC:1258
8407               22       36034542     36079390        SETD4  HGNC:1258
8408               22       36034542     36079390        SETD4  HGNC:1258
8409               22       36034542     36079390        SETD4  HGNC:1258
8410               22       36034542     36079390        SETD4  HGNC:1258
8411               22       36034542     36079390        SETD4  HGNC:1258
8412               22       36034542     36079390        SETD4  HGNC:1258
8413               22       36034542     36079390        SETD4  HGNC:1258
8414               22       36034542     36079390        SETD4  HGNC:1258
8415               22       36034542     36079390        SETD4  HGNC:1258
8416               22       36034542     36079390        SETD4  HGNC:1258
8417               22       36034542     36079390        SETD4  HGNC:1258
8418               22       36034542     36079390        SETD4  HGNC:1258
8419               22       36034542     36079390        SETD4  HGNC:1258
8420               22       36034542     36079390        SETD4  HGNC:1258
8421               22       36034542     36079390        SETD4  HGNC:1258
8422               22       36034542     36079390        SETD4  HGNC:1258
8423               22       36034542     36079390        SETD4  HGNC:1258
8424               22       36034542     36079390        SETD4  HGNC:1258
8425               22       36034542     36079390        SETD4  HGNC:1258
8426               22       36034542     36079390        SETD4  HGNC:1258
8427               22       36034542     36079390        SETD4  HGNC:1258
8428               22       36034542     36079390        SETD4  HGNC:1258
8429               22       36034542     36079390        SETD4  HGNC:1258
8430               22       36034542     36079390        SETD4  HGNC:1258
8431               22       36034542     36079390        SETD4  HGNC:1258
8432               22       36034542     36079390        SETD4  HGNC:1258
8433               22       36034542     36079390        SETD4  HGNC:1258
8434               22       36034542     36079390        SETD4  HGNC:1258
8435               22       36034542     36079390        SETD4  HGNC:1258
8436               22       36034542     36079390        SETD4  HGNC:1258
8437               22       36034542     36079390        SETD4  HGNC:1258
8438               22       36034542     36079390        SETD4  HGNC:1258
8439               22       36034542     36079390        SETD4  HGNC:1258
8440               22       36034542     36079390        SETD4  HGNC:1258
8441               22       36034542     36079390        SETD4  HGNC:1258
8442               22       36034542     36079390        SETD4  HGNC:1258
8443               22       36034542     36079390        SETD4  HGNC:1258
8444               22       36034542     36079390        SETD4  HGNC:1258
8445               22       36034542     36079390        SETD4  HGNC:1258
8446               22       36034542     36079390        SETD4  HGNC:1258
8447               22       36034542     36079390        SETD4  HGNC:1258
8448               22       36034542     36079390        SETD4  HGNC:1258
8449               22       36034542     36079390        SETD4  HGNC:1258
8450               22       36034542     36079390        SETD4  HGNC:1258
8451               22       36034542     36079390        SETD4  HGNC:1258
8452               22       36034542     36079390        SETD4  HGNC:1258
8453               22       36034542     36079390        SETD4  HGNC:1258
8454               22       36034542     36079390        SETD4  HGNC:1258
8455               22       36034542     36079390        SETD4  HGNC:1258
8456               22       36034542     36079390        SETD4  HGNC:1258
8457               22       36034542     36079390        SETD4  HGNC:1258
8458               22       36034542     36079390        SETD4  HGNC:1258
8459               22       36034542     36079390        SETD4  HGNC:1258
8460               22       36034542     36079390        SETD4  HGNC:1258
8461               22       36034542     36079390        SETD4  HGNC:1258
8462               22       36034542     36079390        SETD4  HGNC:1258
8463               22       36034542     36079390        SETD4  HGNC:1258
8464               22       36034542     36079390        SETD4  HGNC:1258
8465               22       36034542     36079390        SETD4  HGNC:1258
8466               22       36034542     36079390        SETD4  HGNC:1258
8467               22       36034542     36079390        SETD4  HGNC:1258
8468               22       20597954     20598164                        
8469               22       20430444     20430763      RPS3AP1 HGNC:10422
8470               22       20424950     20426207      KRT18P2  HGNC:6435
8471               22       19759360     19760129      C1QBPP1  HGNC:1244
8472               22       36320190     36386149        MORC3 HGNC:23572
8473               22       36320190     36386149        MORC3 HGNC:23572
8474               22       36320190     36386149        MORC3 HGNC:23572
8475               22       36320190     36386149        MORC3 HGNC:23572
8476               22       36320190     36386149        MORC3 HGNC:23572
8477               22       36320190     36386149        MORC3 HGNC:23572
8478               22       36320190     36386149        MORC3 HGNC:23572
8479               22       36320190     36386149        MORC3 HGNC:23572
8480               22       36320190     36386149        MORC3 HGNC:23572
8481               22       36320190     36386149        MORC3 HGNC:23572
8482               22       36320190     36386149        MORC3 HGNC:23572
8483               22       36320190     36386149        MORC3 HGNC:23572
8484               22       36320190     36386149        MORC3 HGNC:23572
8485               22       36320190     36386149        MORC3 HGNC:23572
8486               22       36320190     36386149        MORC3 HGNC:23572
8487               22       36320190     36386149        MORC3 HGNC:23572
8488               22       36320190     36386149        MORC3 HGNC:23572
8489               22       36320190     36386149        MORC3 HGNC:23572
8490               22       36320190     36386149        MORC3 HGNC:23572
8491               22       36320190     36386149        MORC3 HGNC:23572
8492               22       36320190     36386149        MORC3 HGNC:23572
8493               22       36320190     36386149        MORC3 HGNC:23572
8494               22       36320190     36386149        MORC3 HGNC:23572
8495               22       36320190     36386149        MORC3 HGNC:23572
8496               22       36320190     36386149        MORC3 HGNC:23572
8497               22       36320190     36386149        MORC3 HGNC:23572
8498               22       36320190     36386149        MORC3 HGNC:23572
8499               22       36320190     36386149        MORC3 HGNC:23572
8500               22       36320190     36386149        MORC3 HGNC:23572
8501               22       36320190     36386149        MORC3 HGNC:23572
8502               22       36320190     36386149        MORC3 HGNC:23572
8503               22       36320190     36386149        MORC3 HGNC:23572
8504               22       36320190     36386149        MORC3 HGNC:23572
8505               22       36320190     36386149        MORC3 HGNC:23572
8506               22       36320190     36386149        MORC3 HGNC:23572
8507               22       36320190     36386149        MORC3 HGNC:23572
8508               22       36320190     36386149        MORC3 HGNC:23572
8509               22       36320190     36386149        MORC3 HGNC:23572
8510               22       36320190     36386149        MORC3 HGNC:23572
8511               22       36320190     36386149        MORC3 HGNC:23572
8512               22       36320190     36386149        MORC3 HGNC:23572
8513               22       36320190     36386149        MORC3 HGNC:23572
8514               22       36320190     36386149        MORC3 HGNC:23572
8515               22       36320190     36386149        MORC3 HGNC:23572
8516               22       36320190     36386149        MORC3 HGNC:23572
8517               22       36320190     36386149        MORC3 HGNC:23572
8518               22       36320190     36386149        MORC3 HGNC:23572
8519               22       36320190     36386149        MORC3 HGNC:23572
8520               22       36320190     36386149        MORC3 HGNC:23572
8521               22       36320190     36386149        MORC3 HGNC:23572
8522               22       36320190     36386149        MORC3 HGNC:23572
8523               22       36320190     36386149        MORC3 HGNC:23572
8524               22       36320190     36386149        MORC3 HGNC:23572
8525               22       36320190     36386149        MORC3 HGNC:23572
8526               22       36320190     36386149        MORC3 HGNC:23572
8527               22       36320190     36386149        MORC3 HGNC:23572
8528               22       36320190     36386149        MORC3 HGNC:23572
8529               22       36320190     36386149        MORC3 HGNC:23572
8530               22       36320190     36386149        MORC3 HGNC:23572
8531               22       36320190     36386149        MORC3 HGNC:23572
8532               22       36320190     36386149        MORC3 HGNC:23572
8533               22       36320190     36386149        MORC3 HGNC:23572
8534               22       36320190     36386149        MORC3 HGNC:23572
8535               22       36320190     36386149        MORC3 HGNC:23572
8536               22       36320190     36386149        MORC3 HGNC:23572
8537               22       36320190     36386149        MORC3 HGNC:23572
8538               22       36320190     36386149        MORC3 HGNC:23572
8539               22       36320190     36386149        MORC3 HGNC:23572
8540               22       36320190     36386149        MORC3 HGNC:23572
8541               22       36320190     36386149        MORC3 HGNC:23572
8542               22       36320190     36386149        MORC3 HGNC:23572
8543               22       36320190     36386149        MORC3 HGNC:23572
8544               22       36320190     36386149        MORC3 HGNC:23572
8545               22       36320190     36386149        MORC3 HGNC:23572
8546               22       36320190     36386149        MORC3 HGNC:23572
8547               22       36320190     36386149        MORC3 HGNC:23572
8548               22       36320190     36386149        MORC3 HGNC:23572
8549               22       36320190     36386149        MORC3 HGNC:23572
8550               22       36320190     36386149        MORC3 HGNC:23572
8551               22       36320190     36386149        MORC3 HGNC:23572
8552               22       36320190     36386149        MORC3 HGNC:23572
8553               22       36320190     36386149        MORC3 HGNC:23572
8554               22       36320190     36386149        MORC3 HGNC:23572
8555               22       36360631     36362041                        
8556               22       36360631     36362041                        
8557               22       36385379     36419016       CHAF1B  HGNC:1911
8558               22       36385379     36419016       CHAF1B  HGNC:1911
8559               22       36385379     36419016       CHAF1B  HGNC:1911
8560               22       36385379     36419016       CHAF1B  HGNC:1911
8561               22       36385379     36419016       CHAF1B  HGNC:1911
8562               22       36385379     36419016       CHAF1B  HGNC:1911
8563               22       36385379     36419016       CHAF1B  HGNC:1911
8564               22       36385379     36419016       CHAF1B  HGNC:1911
8565               22       36385379     36419016       CHAF1B  HGNC:1911
8566               22       36385379     36419016       CHAF1B  HGNC:1911
8567               22       36385379     36419016       CHAF1B  HGNC:1911
8568               22       36385379     36419016       CHAF1B  HGNC:1911
8569               22       36385379     36419016       CHAF1B  HGNC:1911
8570               22       36385379     36419016       CHAF1B  HGNC:1911
8571               22       36385379     36419016       CHAF1B  HGNC:1911
8572               22       36385379     36419016       CHAF1B  HGNC:1911
8573               22       36385379     36419016       CHAF1B  HGNC:1911
8574               22       36385379     36419016       CHAF1B  HGNC:1911
8575               22       36385379     36419016       CHAF1B  HGNC:1911
8576               22       36385379     36419016       CHAF1B  HGNC:1911
8577               22       36385379     36419016       CHAF1B  HGNC:1911
8578               22       36385379     36419016       CHAF1B  HGNC:1911
8579               22       36385379     36419016       CHAF1B  HGNC:1911
8580               22       36385379     36419016       CHAF1B  HGNC:1911
8581               22       35887196     35887808     PPP1R2P2  HGNC:9290
8582               22       36168971     36170181       RPL3P1 HGNC:10352
8583               22       43789514     43805294         RRP1 HGNC:18785
8584               22       43789514     43805294         RRP1 HGNC:18785
8585               22       43789514     43805294         RRP1 HGNC:18785
8586               22       43789514     43805294         RRP1 HGNC:18785
8587               22       43789514     43805294         RRP1 HGNC:18785
8588               22       43789514     43805294         RRP1 HGNC:18785
8589               22       43789514     43805294         RRP1 HGNC:18785
8590               22       43789514     43805294         RRP1 HGNC:18785
8591               22       43789514     43805294         RRP1 HGNC:18785
8592               22       43789514     43805294         RRP1 HGNC:18785
8593               22       43789514     43805294         RRP1 HGNC:18785
8594               22       43789514     43805294         RRP1 HGNC:18785
8595               22       43789514     43805294         RRP1 HGNC:18785
8596               22       43789514     43805294         RRP1 HGNC:18785
8597               22       43789514     43805294         RRP1 HGNC:18785
8598               22       43789514     43805294         RRP1 HGNC:18785
8599               22       43789514     43805294         RRP1 HGNC:18785
8600               22       43789514     43805294         RRP1 HGNC:18785
8601               22       43789514     43805294         RRP1 HGNC:18785
8602               22       43789514     43805294         RRP1 HGNC:18785
8603               22       43789514     43805294         RRP1 HGNC:18785
8604               22       43789514     43805294         RRP1 HGNC:18785
8605               22       43789514     43805294         RRP1 HGNC:18785
8606               22       43789514     43805294         RRP1 HGNC:18785
8607               22       43789514     43805294         RRP1 HGNC:18785
8608               22       43789514     43805294         RRP1 HGNC:18785
8609               22       43789514     43805294         RRP1 HGNC:18785
8610               22       43789514     43805294         RRP1 HGNC:18785
8611               22       43789514     43805294         RRP1 HGNC:18785
8612               22       43789514     43805294         RRP1 HGNC:18785
8613               22       43789514     43805294         RRP1 HGNC:18785
8614               22       43789514     43805294         RRP1 HGNC:18785
8615               22       43789514     43805294         RRP1 HGNC:18785
8616               22       43789514     43805294         RRP1 HGNC:18785
8617               22       43789514     43805294         RRP1 HGNC:18785
8618               22       43789514     43805294         RRP1 HGNC:18785
8619               22       43789514     43805294         RRP1 HGNC:18785
8620               22       43789514     43805294         RRP1 HGNC:18785
8621               22       43789514     43805294         RRP1 HGNC:18785
8622               22       43789514     43805294         RRP1 HGNC:18785
8623               22       43789514     43805294         RRP1 HGNC:18785
8624               22       43789514     43805294         RRP1 HGNC:18785
8625               22       43789514     43805294         RRP1 HGNC:18785
8626               22       43789514     43805294         RRP1 HGNC:18785
8627               22       43789514     43805294         RRP1 HGNC:18785
8628               22       43789514     43805294         RRP1 HGNC:18785
8629               22       43789514     43805294         RRP1 HGNC:18785
8630               22       43789514     43805294         RRP1 HGNC:18785
8631               22       43789514     43805294         RRP1 HGNC:18785
8632               22       43789514     43805294         RRP1 HGNC:18785
8633               22       43789514     43805294         RRP1 HGNC:18785
8634               22       22134699     22136084                        
8635               22       18269117     18485880     TMPRSS15  HGNC:9490
8636               22       18269117     18485880     TMPRSS15  HGNC:9490
8637               22       18269117     18485880     TMPRSS15  HGNC:9490
8638               22       18269117     18485880     TMPRSS15  HGNC:9490
8639               22       18269117     18485880     TMPRSS15  HGNC:9490
8640               22       18269117     18485880     TMPRSS15  HGNC:9490
8641               22       18269117     18485880     TMPRSS15  HGNC:9490
8642               22       18269117     18485880     TMPRSS15  HGNC:9490
8643               22       18269117     18485880     TMPRSS15  HGNC:9490
8644               22       18269117     18485880     TMPRSS15  HGNC:9490
8645               22       18269117     18485880     TMPRSS15  HGNC:9490
8646               22       18269117     18485880     TMPRSS15  HGNC:9490
8647               22       18269117     18485880     TMPRSS15  HGNC:9490
8648               22       18269117     18485880     TMPRSS15  HGNC:9490
8649               22       18269117     18485880     TMPRSS15  HGNC:9490
8650               22       18269117     18485880     TMPRSS15  HGNC:9490
8651               22       18269117     18485880     TMPRSS15  HGNC:9490
8652               22       18269117     18485880     TMPRSS15  HGNC:9490
8653               22       18269117     18485880     TMPRSS15  HGNC:9490
8654               22       18269117     18485880     TMPRSS15  HGNC:9490
8655               22       18269117     18485880     TMPRSS15  HGNC:9490
8656               22       18269117     18485880     TMPRSS15  HGNC:9490
8657               22       18269117     18485880     TMPRSS15  HGNC:9490
8658               22       18269117     18485880     TMPRSS15  HGNC:9490
8659               22       18269117     18485880     TMPRSS15  HGNC:9490
8660               22       18269117     18485880     TMPRSS15  HGNC:9490
8661               22       18269117     18485880     TMPRSS15  HGNC:9490
8662               22       18269117     18485880     TMPRSS15  HGNC:9490
8663               22       18269117     18485880     TMPRSS15  HGNC:9490
8664               22       18269117     18485880     TMPRSS15  HGNC:9490
8665               22       18269117     18485880     TMPRSS15  HGNC:9490
8666               22       18269117     18485880     TMPRSS15  HGNC:9490
8667               22       18269117     18485880     TMPRSS15  HGNC:9490
8668               22       18269117     18485880     TMPRSS15  HGNC:9490
8669               22       18269117     18485880     TMPRSS15  HGNC:9490
8670               22       18269117     18485880     TMPRSS15  HGNC:9490
8671               22       18269117     18485880     TMPRSS15  HGNC:9490
8672               22       17835017     17885609    CHODL-AS1  HGNC:1279
8673               22       17835017     17885609    CHODL-AS1  HGNC:1279
8674               22       17835017     17885609    CHODL-AS1  HGNC:1279
8675               22       32628760     32728049        SYNJ1 HGNC:11503
8676               22       32628760     32728049        SYNJ1 HGNC:11503
8677               22       32628760     32728049        SYNJ1 HGNC:11503
8678               22       32628760     32728049        SYNJ1 HGNC:11503
8679               22       32628760     32728049        SYNJ1 HGNC:11503
8680               22       32628760     32728049        SYNJ1 HGNC:11503
8681               22       32628760     32728049        SYNJ1 HGNC:11503
8682               22       32628760     32728049        SYNJ1 HGNC:11503
8683               22       32628760     32728049        SYNJ1 HGNC:11503
8684               22       32628760     32728049        SYNJ1 HGNC:11503
8685               22       32628760     32728049        SYNJ1 HGNC:11503
8686               22       32628760     32728049        SYNJ1 HGNC:11503
8687               22       32628760     32728049        SYNJ1 HGNC:11503
8688               22       32628760     32728049        SYNJ1 HGNC:11503
8689               22       32628760     32728049        SYNJ1 HGNC:11503
8690               22       32628760     32728049        SYNJ1 HGNC:11503
8691               22       32628760     32728049        SYNJ1 HGNC:11503
8692               22       32628760     32728049        SYNJ1 HGNC:11503
8693               22       32628760     32728049        SYNJ1 HGNC:11503
8694               22       32628760     32728049        SYNJ1 HGNC:11503
8695               22       32628760     32728049        SYNJ1 HGNC:11503
8696               22       32628760     32728049        SYNJ1 HGNC:11503
8697               22       32628760     32728049        SYNJ1 HGNC:11503
8698               22       32628760     32728049        SYNJ1 HGNC:11503
8699               22       32628760     32728049        SYNJ1 HGNC:11503
8700               22       32628760     32728049        SYNJ1 HGNC:11503
8701               22       32628760     32728049        SYNJ1 HGNC:11503
8702               22       32628760     32728049        SYNJ1 HGNC:11503
8703               22       32628760     32728049        SYNJ1 HGNC:11503
8704               22       32628760     32728049        SYNJ1 HGNC:11503
8705               22       32628760     32728049        SYNJ1 HGNC:11503
8706               22       32628760     32728049        SYNJ1 HGNC:11503
8707               22       32628760     32728049        SYNJ1 HGNC:11503
8708               22       32628760     32728049        SYNJ1 HGNC:11503
8709               22       32628760     32728049        SYNJ1 HGNC:11503
8710               22       32628760     32728049        SYNJ1 HGNC:11503
8711               22       32628760     32728049        SYNJ1 HGNC:11503
8712               22       32628760     32728049        SYNJ1 HGNC:11503
8713               22       32628760     32728049        SYNJ1 HGNC:11503
8714               22       32628760     32728049        SYNJ1 HGNC:11503
8715               22       32628760     32728049        SYNJ1 HGNC:11503
8716               22       32628760     32728049        SYNJ1 HGNC:11503
8717               22       32628760     32728049        SYNJ1 HGNC:11503
8718               22       32628760     32728049        SYNJ1 HGNC:11503
8719               22       32628760     32728049        SYNJ1 HGNC:11503
8720               22       32628760     32728049        SYNJ1 HGNC:11503
8721               22       32628760     32728049        SYNJ1 HGNC:11503
8722               22       32628760     32728049        SYNJ1 HGNC:11503
8723               22       32628760     32728049        SYNJ1 HGNC:11503
8724               22       32628760     32728049        SYNJ1 HGNC:11503
8725               22       32628760     32728049        SYNJ1 HGNC:11503
8726               22       32628760     32728049        SYNJ1 HGNC:11503
8727               22       32628760     32728049        SYNJ1 HGNC:11503
8728               22       32628760     32728049        SYNJ1 HGNC:11503
8729               22       32628760     32728049        SYNJ1 HGNC:11503
8730               22       32628760     32728049        SYNJ1 HGNC:11503
8731               22       32628760     32728049        SYNJ1 HGNC:11503
8732               22       32628760     32728049        SYNJ1 HGNC:11503
8733               22       32628760     32728049        SYNJ1 HGNC:11503
8734               22       32628760     32728049        SYNJ1 HGNC:11503
8735               22       32628760     32728049        SYNJ1 HGNC:11503
8736               22       32628760     32728049        SYNJ1 HGNC:11503
8737               22       32628760     32728049        SYNJ1 HGNC:11503
8738               22       32628760     32728049        SYNJ1 HGNC:11503
8739               22       32628760     32728049        SYNJ1 HGNC:11503
8740               22       32628760     32728049        SYNJ1 HGNC:11503
8741               22       32628760     32728049        SYNJ1 HGNC:11503
8742               22       32628760     32728049        SYNJ1 HGNC:11503
8743               22       32628760     32728049        SYNJ1 HGNC:11503
8744               22       32628760     32728049        SYNJ1 HGNC:11503
8745               22       32628760     32728049        SYNJ1 HGNC:11503
8746               22       32628760     32728049        SYNJ1 HGNC:11503
8747               22       32628760     32728049        SYNJ1 HGNC:11503
8748               22       32628760     32728049        SYNJ1 HGNC:11503
8749               22       32628760     32728049        SYNJ1 HGNC:11503
8750               22       32628760     32728049        SYNJ1 HGNC:11503
8751               22       32628760     32728049        SYNJ1 HGNC:11503
8752               22       32628760     32728049        SYNJ1 HGNC:11503
8753               22       32628760     32728049        SYNJ1 HGNC:11503
8754               22       32628760     32728049        SYNJ1 HGNC:11503
8755               22       32628760     32728049        SYNJ1 HGNC:11503
8756               22       32628760     32728049        SYNJ1 HGNC:11503
8757               22       32628760     32728049        SYNJ1 HGNC:11503
8758               22       32628760     32728049        SYNJ1 HGNC:11503
8759               22       32628760     32728049        SYNJ1 HGNC:11503
8760               22       32628760     32728049        SYNJ1 HGNC:11503
8761               22       32628760     32728049        SYNJ1 HGNC:11503
8762               22       32628760     32728049        SYNJ1 HGNC:11503
8763               22       32628760     32728049        SYNJ1 HGNC:11503
8764               22       32628760     32728049        SYNJ1 HGNC:11503
8765               22       32628760     32728049        SYNJ1 HGNC:11503
8766               22       32628760     32728049        SYNJ1 HGNC:11503
8767               22       32628760     32728049        SYNJ1 HGNC:11503
8768               22       32628760     32728049        SYNJ1 HGNC:11503
8769               22       32628760     32728049        SYNJ1 HGNC:11503
8770               22       32628760     32728049        SYNJ1 HGNC:11503
8771               22       32628760     32728049        SYNJ1 HGNC:11503
8772               22       32628760     32728049        SYNJ1 HGNC:11503
8773               22       32628760     32728049        SYNJ1 HGNC:11503
8774               22       32628760     32728049        SYNJ1 HGNC:11503
8775               22       32628760     32728049        SYNJ1 HGNC:11503
8776               22       32628760     32728049        SYNJ1 HGNC:11503
8777               22       32628760     32728049        SYNJ1 HGNC:11503
8778               22       32628760     32728049        SYNJ1 HGNC:11503
8779               22       32628760     32728049        SYNJ1 HGNC:11503
8780               22       32628760     32728049        SYNJ1 HGNC:11503
8781               22       32628760     32728049        SYNJ1 HGNC:11503
8782               22       32628760     32728049        SYNJ1 HGNC:11503
8783               22       32628760     32728049        SYNJ1 HGNC:11503
8784               22       32628760     32728049        SYNJ1 HGNC:11503
8785               22       32628760     32728049        SYNJ1 HGNC:11503
8786               22       32628760     32728049        SYNJ1 HGNC:11503
8787               22       32628760     32728049        SYNJ1 HGNC:11503
8788               22       32628760     32728049        SYNJ1 HGNC:11503
8789               22       32628760     32728049        SYNJ1 HGNC:11503
8790               22       32628760     32728049        SYNJ1 HGNC:11503
8791               22       32628760     32728049        SYNJ1 HGNC:11503
8792               22       32628760     32728049        SYNJ1 HGNC:11503
8793               22       32628760     32728049        SYNJ1 HGNC:11503
8794               22       32628760     32728049        SYNJ1 HGNC:11503
8795               22       32628760     32728049        SYNJ1 HGNC:11503
8796               22       32628760     32728049        SYNJ1 HGNC:11503
8797               22       32628760     32728049        SYNJ1 HGNC:11503
8798               22       32628760     32728049        SYNJ1 HGNC:11503
8799               22       32628760     32728049        SYNJ1 HGNC:11503
8800               22       32628760     32728049        SYNJ1 HGNC:11503
8801               22       32628760     32728049        SYNJ1 HGNC:11503
8802               22       32628760     32728049        SYNJ1 HGNC:11503
8803               22       32628760     32728049        SYNJ1 HGNC:11503
8804               22       32628760     32728049        SYNJ1 HGNC:11503
8805               22       32628760     32728049        SYNJ1 HGNC:11503
8806               22       32628760     32728049        SYNJ1 HGNC:11503
8807               22       32628760     32728049        SYNJ1 HGNC:11503
8808               22       32628760     32728049        SYNJ1 HGNC:11503
8809               22       32628760     32728049        SYNJ1 HGNC:11503
8810               22       32628760     32728049        SYNJ1 HGNC:11503
8811               22       32628760     32728049        SYNJ1 HGNC:11503
8812               22       32628760     32728049        SYNJ1 HGNC:11503
8813               22       32628760     32728049        SYNJ1 HGNC:11503
8814               22       32628760     32728049        SYNJ1 HGNC:11503
8815               22       32628760     32728049        SYNJ1 HGNC:11503
8816               22       32628760     32728049        SYNJ1 HGNC:11503
8817               22       32628760     32728049        SYNJ1 HGNC:11503
8818               22       32628760     32728049        SYNJ1 HGNC:11503
8819               22       32628760     32728049        SYNJ1 HGNC:11503
8820               22       32628760     32728049        SYNJ1 HGNC:11503
8821               22       32628760     32728049        SYNJ1 HGNC:11503
8822               22       32628760     32728049        SYNJ1 HGNC:11503
8823               22       32628760     32728049        SYNJ1 HGNC:11503
8824               22       32628760     32728049        SYNJ1 HGNC:11503
8825               22       32628760     32728049        SYNJ1 HGNC:11503
8826               22       32628760     32728049        SYNJ1 HGNC:11503
8827               22       32628760     32728049        SYNJ1 HGNC:11503
8828               22       32628760     32728049        SYNJ1 HGNC:11503
8829               22       32628760     32728049        SYNJ1 HGNC:11503
8830               22       32628760     32728049        SYNJ1 HGNC:11503
8831               22       32628760     32728049        SYNJ1 HGNC:11503
8832               22       32628760     32728049        SYNJ1 HGNC:11503
8833               22       32628760     32728049        SYNJ1 HGNC:11503
8834               22       32628760     32728049        SYNJ1 HGNC:11503
8835               22       32628760     32728049        SYNJ1 HGNC:11503
8836               22       32628760     32728049        SYNJ1 HGNC:11503
8837               22       32628760     32728049        SYNJ1 HGNC:11503
8838               22       32628760     32728049        SYNJ1 HGNC:11503
8839               22       32628760     32728049        SYNJ1 HGNC:11503
8840               22       32628760     32728049        SYNJ1 HGNC:11503
8841               22       32628760     32728049        SYNJ1 HGNC:11503
8842               22       32628760     32728049        SYNJ1 HGNC:11503
8843               22       32628760     32728049        SYNJ1 HGNC:11503
8844               22       32628760     32728049        SYNJ1 HGNC:11503
8845               22       32628760     32728049        SYNJ1 HGNC:11503
8846               22       32628760     32728049        SYNJ1 HGNC:11503
8847               22       32628760     32728049        SYNJ1 HGNC:11503
8848               22       32628760     32728049        SYNJ1 HGNC:11503
8849               22       32628760     32728049        SYNJ1 HGNC:11503
8850               22       32628760     32728049        SYNJ1 HGNC:11503
8851               22       32628760     32728049        SYNJ1 HGNC:11503
8852               22       32628760     32728049        SYNJ1 HGNC:11503
8853               22       32628760     32728049        SYNJ1 HGNC:11503
8854               22       32628760     32728049        SYNJ1 HGNC:11503
8855               22       32628760     32728049        SYNJ1 HGNC:11503
8856               22       32628760     32728049        SYNJ1 HGNC:11503
8857               22       32628760     32728049        SYNJ1 HGNC:11503
8858               22       32628760     32728049        SYNJ1 HGNC:11503
8859               22       32628760     32728049        SYNJ1 HGNC:11503
8860               22       32628760     32728049        SYNJ1 HGNC:11503
8861               22       32628760     32728049        SYNJ1 HGNC:11503
8862               22       32628760     32728049        SYNJ1 HGNC:11503
8863               22       32628760     32728049        SYNJ1 HGNC:11503
8864               22       32628760     32728049        SYNJ1 HGNC:11503
8865               22       32628760     32728049        SYNJ1 HGNC:11503
8866               22       32628760     32728049        SYNJ1 HGNC:11503
8867               22       32628760     32728049        SYNJ1 HGNC:11503
8868               22       39184177     39321560        BRWD1 HGNC:12760
8869               22       39184177     39321560        BRWD1 HGNC:12760
8870               22       39184177     39321560        BRWD1 HGNC:12760
8871               22       39184177     39321560        BRWD1 HGNC:12760
8872               22       39184177     39321560        BRWD1 HGNC:12760
8873               22       39184177     39321560        BRWD1 HGNC:12760
8874               22       39184177     39321560        BRWD1 HGNC:12760
8875               22       39184177     39321560        BRWD1 HGNC:12760
8876               22       39184177     39321560        BRWD1 HGNC:12760
8877               22       39184177     39321560        BRWD1 HGNC:12760
8878               22       39184177     39321560        BRWD1 HGNC:12760
8879               22       39184177     39321560        BRWD1 HGNC:12760
8880               22       39184177     39321560        BRWD1 HGNC:12760
8881               22       39184177     39321560        BRWD1 HGNC:12760
8882               22       39184177     39321560        BRWD1 HGNC:12760
8883               22       39184177     39321560        BRWD1 HGNC:12760
8884               22       39184177     39321560        BRWD1 HGNC:12760
8885               22       39184177     39321560        BRWD1 HGNC:12760
8886               22       39184177     39321560        BRWD1 HGNC:12760
8887               22       39184177     39321560        BRWD1 HGNC:12760
8888               22       39184177     39321560        BRWD1 HGNC:12760
8889               22       39184177     39321560        BRWD1 HGNC:12760
8890               22       39184177     39321560        BRWD1 HGNC:12760
8891               22       39184177     39321560        BRWD1 HGNC:12760
8892               22       39184177     39321560        BRWD1 HGNC:12760
8893               22       39184177     39321560        BRWD1 HGNC:12760
8894               22       39184177     39321560        BRWD1 HGNC:12760
8895               22       39184177     39321560        BRWD1 HGNC:12760
8896               22       39184177     39321560        BRWD1 HGNC:12760
8897               22       39184177     39321560        BRWD1 HGNC:12760
8898               22       39184177     39321560        BRWD1 HGNC:12760
8899               22       39184177     39321560        BRWD1 HGNC:12760
8900               22       39184177     39321560        BRWD1 HGNC:12760
8901               22       39184177     39321560        BRWD1 HGNC:12760
8902               22       39184177     39321560        BRWD1 HGNC:12760
8903               22       39184177     39321560        BRWD1 HGNC:12760
8904               22       39184177     39321560        BRWD1 HGNC:12760
8905               22       39184177     39321560        BRWD1 HGNC:12760
8906               22       39184177     39321560        BRWD1 HGNC:12760
8907               22       39184177     39321560        BRWD1 HGNC:12760
8908               22       39184177     39321560        BRWD1 HGNC:12760
8909               22       39184177     39321560        BRWD1 HGNC:12760
8910               22       39184177     39321560        BRWD1 HGNC:12760
8911               22       39184177     39321560        BRWD1 HGNC:12760
8912               22       39184177     39321560        BRWD1 HGNC:12760
8913               22       39184177     39321560        BRWD1 HGNC:12760
8914               22       39184177     39321560        BRWD1 HGNC:12760
8915               22       39184177     39321560        BRWD1 HGNC:12760
8916               22       39184177     39321560        BRWD1 HGNC:12760
8917               22       39184177     39321560        BRWD1 HGNC:12760
8918               22       39184177     39321560        BRWD1 HGNC:12760
8919               22       39184177     39321560        BRWD1 HGNC:12760
8920               22       39184177     39321560        BRWD1 HGNC:12760
8921               22       39184177     39321560        BRWD1 HGNC:12760
8922               22       39184177     39321560        BRWD1 HGNC:12760
8923               22       39184177     39321560        BRWD1 HGNC:12760
8924               22       39184177     39321560        BRWD1 HGNC:12760
8925               22       39184177     39321560        BRWD1 HGNC:12760
8926               22       39184177     39321560        BRWD1 HGNC:12760
8927               22       39184177     39321560        BRWD1 HGNC:12760
8928               22       39184177     39321560        BRWD1 HGNC:12760
8929               22       39184177     39321560        BRWD1 HGNC:12760
8930               22       39184177     39321560        BRWD1 HGNC:12760
8931               22       39184177     39321560        BRWD1 HGNC:12760
8932               22       39184177     39321560        BRWD1 HGNC:12760
8933               22       39184177     39321560        BRWD1 HGNC:12760
8934               22       39184177     39321560        BRWD1 HGNC:12760
8935               22       39184177     39321560        BRWD1 HGNC:12760
8936               22       39184177     39321560        BRWD1 HGNC:12760
8937               22       39184177     39321560        BRWD1 HGNC:12760
8938               22       39184177     39321560        BRWD1 HGNC:12760
8939               22       39184177     39321560        BRWD1 HGNC:12760
8940               22       39184177     39321560        BRWD1 HGNC:12760
8941               22       39184177     39321560        BRWD1 HGNC:12760
8942               22       39184177     39321560        BRWD1 HGNC:12760
8943               22       39184177     39321560        BRWD1 HGNC:12760
8944               22       39184177     39321560        BRWD1 HGNC:12760
8945               22       39184177     39321560        BRWD1 HGNC:12760
8946               22       39184177     39321560        BRWD1 HGNC:12760
8947               22       39184177     39321560        BRWD1 HGNC:12760
8948               22       39184177     39321560        BRWD1 HGNC:12760
8949               22       39184177     39321560        BRWD1 HGNC:12760
8950               22       39184177     39321560        BRWD1 HGNC:12760
8951               22       39184177     39321560        BRWD1 HGNC:12760
8952               22       39184177     39321560        BRWD1 HGNC:12760
8953               22       39184177     39321560        BRWD1 HGNC:12760
8954               22       39184177     39321560        BRWD1 HGNC:12760
8955               22       39184177     39321560        BRWD1 HGNC:12760
8956               22       39184177     39321560        BRWD1 HGNC:12760
8957               22       39184177     39321560        BRWD1 HGNC:12760
8958               22       39184177     39321560        BRWD1 HGNC:12760
8959               22       39184177     39321560        BRWD1 HGNC:12760
8960               22       39184177     39321560        BRWD1 HGNC:12760
8961               22       39184177     39321560        BRWD1 HGNC:12760
8962               22       39184177     39321560        BRWD1 HGNC:12760
8963               22       39184177     39321560        BRWD1 HGNC:12760
8964               22       39184177     39321560        BRWD1 HGNC:12760
8965               22       39184177     39321560        BRWD1 HGNC:12760
8966               22       39184177     39321560        BRWD1 HGNC:12760
8967               22       39184177     39321560        BRWD1 HGNC:12760
8968               22       39184177     39321560        BRWD1 HGNC:12760
8969               22       39184177     39321560        BRWD1 HGNC:12760
8970               22       39184177     39321560        BRWD1 HGNC:12760
8971               22       39184177     39321560        BRWD1 HGNC:12760
8972               22       39184177     39321560        BRWD1 HGNC:12760
8973               22       39184177     39321560        BRWD1 HGNC:12760
8974               22       39184177     39321560        BRWD1 HGNC:12760
8975               22       39184177     39321560        BRWD1 HGNC:12760
8976               22       39184177     39321560        BRWD1 HGNC:12760
8977               22       39184177     39321560        BRWD1 HGNC:12760
8978               22       39184177     39321560        BRWD1 HGNC:12760
8979               22       39184177     39321560        BRWD1 HGNC:12760
8980               22       39184177     39321560        BRWD1 HGNC:12760
8981               22       39184177     39321560        BRWD1 HGNC:12760
8982               22       39184177     39321560        BRWD1 HGNC:12760
8983               22       39184177     39321560        BRWD1 HGNC:12760
8984               22       39184177     39321560        BRWD1 HGNC:12760
8985               22       39184177     39321560        BRWD1 HGNC:12760
8986               22       39184177     39321560        BRWD1 HGNC:12760
8987               22       39184177     39321560        BRWD1 HGNC:12760
8988               22       39184177     39321560        BRWD1 HGNC:12760
8989               22       39184177     39321560        BRWD1 HGNC:12760
8990               22       39184177     39321560        BRWD1 HGNC:12760
8991               22       39184177     39321560        BRWD1 HGNC:12760
8992               22       39184177     39321560        BRWD1 HGNC:12760
8993               22       39184177     39321560        BRWD1 HGNC:12760
8994               22       39184177     39321560        BRWD1 HGNC:12760
8995               22       39184177     39321560        BRWD1 HGNC:12760
8996               22       39184177     39321560        BRWD1 HGNC:12760
8997               22       39184177     39321560        BRWD1 HGNC:12760
8998               22       39184177     39321560        BRWD1 HGNC:12760
8999               22       39184177     39321560        BRWD1 HGNC:12760
9000               22       39184177     39321560        BRWD1 HGNC:12760
9001               22       39184177     39321560        BRWD1 HGNC:12760
9002               22       39184177     39321560        BRWD1 HGNC:12760
9003               22       39184177     39321560        BRWD1 HGNC:12760
9004               22       39184177     39321560        BRWD1 HGNC:12760
9005               22       39184177     39321560        BRWD1 HGNC:12760
9006               22       39184177     39321560        BRWD1 HGNC:12760
9007               22       39184177     39321560        BRWD1 HGNC:12760
9008               22       39184177     39321560        BRWD1 HGNC:12760
9009               22       39184177     39321560        BRWD1 HGNC:12760
9010               22       39184177     39321560        BRWD1 HGNC:12760
9011               22       39184177     39321560        BRWD1 HGNC:12760
9012               22       39184177     39321560        BRWD1 HGNC:12760
9013               22       39184177     39321560        BRWD1 HGNC:12760
9014               22       39184177     39321560        BRWD1 HGNC:12760
9015               22       39184177     39321560        BRWD1 HGNC:12760
9016               22       39184177     39321560        BRWD1 HGNC:12760
9017               22       39184177     39321560        BRWD1 HGNC:12760
9018               22       39184177     39321560        BRWD1 HGNC:12760
9019               22       39184177     39321560        BRWD1 HGNC:12760
9020               22       39184177     39321560        BRWD1 HGNC:12760
9021               22       39184177     39321560        BRWD1 HGNC:12760
9022               22       39184177     39321560        BRWD1 HGNC:12760
9023               22       39184177     39321560        BRWD1 HGNC:12760
9024               22       39184177     39321560        BRWD1 HGNC:12760
9025               22       39184177     39321560        BRWD1 HGNC:12760
9026               22       39184177     39321560        BRWD1 HGNC:12760
9027               22       39184177     39321560        BRWD1 HGNC:12760
9028               22       39184177     39321560        BRWD1 HGNC:12760
9029               22       39184177     39321560        BRWD1 HGNC:12760
9030               22       39184177     39321560        BRWD1 HGNC:12760
9031               22       39184177     39321560        BRWD1 HGNC:12760
9032               22       39184177     39321560        BRWD1 HGNC:12760
9033               22       39184177     39321560        BRWD1 HGNC:12760
9034               22       39184177     39321560        BRWD1 HGNC:12760
9035               22       39184177     39321560        BRWD1 HGNC:12760
9036               22       39184177     39321560        BRWD1 HGNC:12760
9037               22       39184177     39321560        BRWD1 HGNC:12760
9038               22       39184177     39321560        BRWD1 HGNC:12760
9039               22       39184177     39321560        BRWD1 HGNC:12760
9040               22       39184177     39321560        BRWD1 HGNC:12760
9041               22       39184177     39321560        BRWD1 HGNC:12760
9042               22       39184177     39321560        BRWD1 HGNC:12760
9043               22       39184177     39321560        BRWD1 HGNC:12760
9044               22       39184177     39321560        BRWD1 HGNC:12760
9045               22       39184177     39321560        BRWD1 HGNC:12760
9046               22       39184177     39321560        BRWD1 HGNC:12760
9047               22       39184177     39321560        BRWD1 HGNC:12760
9048               22       39184177     39321560        BRWD1 HGNC:12760
9049               22       39184177     39321560        BRWD1 HGNC:12760
9050               22       39184177     39321560        BRWD1 HGNC:12760
9051               22       39184177     39321560        BRWD1 HGNC:12760
9052               22       39184177     39321560        BRWD1 HGNC:12760
9053               22       39184177     39321560        BRWD1 HGNC:12760
9054               22       39184177     39321560        BRWD1 HGNC:12760
9055               22       39184177     39321560        BRWD1 HGNC:12760
9056               22       39184177     39321560        BRWD1 HGNC:12760
9057               22       39184177     39321560        BRWD1 HGNC:12760
9058               22       39184177     39321560        BRWD1 HGNC:12760
9059               22       39184177     39321560        BRWD1 HGNC:12760
9060               22       39184177     39321560        BRWD1 HGNC:12760
9061               22       39184177     39321560        BRWD1 HGNC:12760
9062               22       39184177     39321560        BRWD1 HGNC:12760
9063               22       39184177     39321560        BRWD1 HGNC:12760
9064               22       39184177     39321560        BRWD1 HGNC:12760
9065               22       39184177     39321560        BRWD1 HGNC:12760
9066               22       39184177     39321560        BRWD1 HGNC:12760
9067               22       39184177     39321560        BRWD1 HGNC:12760
9068               22       39184177     39321560        BRWD1 HGNC:12760
9069               22       39184177     39321560        BRWD1 HGNC:12760
9070               22       39184177     39321560        BRWD1 HGNC:12760
9071               22       39184177     39321560        BRWD1 HGNC:12760
9072               22       39184177     39321560        BRWD1 HGNC:12760
9073               22       39184177     39321560        BRWD1 HGNC:12760
9074               22       39184177     39321560        BRWD1 HGNC:12760
9075               22       39184177     39321560        BRWD1 HGNC:12760
9076               22       39184177     39321560        BRWD1 HGNC:12760
9077               22       39184177     39321560        BRWD1 HGNC:12760
9078               22       39184177     39321560        BRWD1 HGNC:12760
9079               22       39184177     39321560        BRWD1 HGNC:12760
9080               22       39184177     39321560        BRWD1 HGNC:12760
9081               22       39184177     39321560        BRWD1 HGNC:12760
9082               22       39184177     39321560        BRWD1 HGNC:12760
9083               22       39184177     39321560        BRWD1 HGNC:12760
9084               22       39184177     39321560        BRWD1 HGNC:12760
9085               22       39184177     39321560        BRWD1 HGNC:12760
9086               22       39184177     39321560        BRWD1 HGNC:12760
9087               22       39184177     39321560        BRWD1 HGNC:12760
9088               22       39184177     39321560        BRWD1 HGNC:12760
9089               22       39184177     39321560        BRWD1 HGNC:12760
9090               22       39184177     39321560        BRWD1 HGNC:12760
9091               22       39184177     39321560        BRWD1 HGNC:12760
9092               22       39184177     39321560        BRWD1 HGNC:12760
9093               22       39184177     39321560        BRWD1 HGNC:12760
9094               22       39184177     39321560        BRWD1 HGNC:12760
9095               22       39184177     39321560        BRWD1 HGNC:12760
9096               22       39184177     39321560        BRWD1 HGNC:12760
9097               22       39184177     39321560        BRWD1 HGNC:12760
9098               22       39184177     39321560        BRWD1 HGNC:12760
9099               22       39184177     39321560        BRWD1 HGNC:12760
9100               22       39184177     39321560        BRWD1 HGNC:12760
9101               22       39184177     39321560        BRWD1 HGNC:12760
9102               22       39184177     39321560        BRWD1 HGNC:12760
9103               22       39184177     39321560        BRWD1 HGNC:12760
9104               22       39184177     39321560        BRWD1 HGNC:12760
9105               22       39184177     39321560        BRWD1 HGNC:12760
9106               22       39184177     39321560        BRWD1 HGNC:12760
9107               22       39184177     39321560        BRWD1 HGNC:12760
9108               22       39184177     39321560        BRWD1 HGNC:12760
9109               22       39184177     39321560        BRWD1 HGNC:12760
9110               22       39184177     39321560        BRWD1 HGNC:12760
9111               22       39184177     39321560        BRWD1 HGNC:12760
9112               22       39184177     39321560        BRWD1 HGNC:12760
9113               22       39184177     39321560        BRWD1 HGNC:12760
9114               22       39184177     39321560        BRWD1 HGNC:12760
9115               22       39184177     39321560        BRWD1 HGNC:12760
9116               22       39184177     39321560        BRWD1 HGNC:12760
9117               22       39184177     39321560        BRWD1 HGNC:12760
9118               22       39184177     39321560        BRWD1 HGNC:12760
9119               22       39184177     39321560        BRWD1 HGNC:12760
9120               22       39184177     39321560        BRWD1 HGNC:12760
9121               22       39184177     39321560        BRWD1 HGNC:12760
9122               22       39184177     39321560        BRWD1 HGNC:12760
9123               22       39184177     39321560        BRWD1 HGNC:12760
9124               22       39184177     39321560        BRWD1 HGNC:12760
9125               22       39184177     39321560        BRWD1 HGNC:12760
9126               22       39184177     39321560        BRWD1 HGNC:12760
9127               22       39184177     39321560        BRWD1 HGNC:12760
9128               22       39313936     39314963    BRWD1-AS2 HGNC:16423
9129               22       38863677     38956468                        
9130               22       38863677     38956468                        
9131               22       38863677     38956468                        
9132               22       38863677     38956468                        
9133               22       38863677     38956468                        
9134               22       38863677     38956468                        
9135               22       38863677     38956468                        
9136               22       38863677     38956468                        
9137               22       38863677     38956468                        
9138               22       38863677     38956468                        
9139               22       38863677     38956468                        
9140               22       38863677     38956468                        
9141               22       38863677     38956468                        
9142               22       38863677     38956468                        
9143               22       38863677     38956468                        
9144               22       38863677     38956468                        
9145               22       38863677     38956468                        
9146               22       38863677     38956468                        
9147               22       38863677     38956468                        
9148               22       38863677     38956468                        
9149               22       38863677     38956468                        
9150               22       38863677     38956468                        
9151               22       38863677     38956468                        
9152               22       38863677     38956468                        
9153               22       38863677     38956468                        
9154               22       38863677     38956468                        
9155               22       38863677     38956468                        
9156               22       38846248     38848645                        
9157               22       38846248     38848645                        
9158               22       14591931     14658822                        
9159               22       14591931     14658822                        
9160               22       14591931     14658822                        
9161               22       14591931     14658822                        
9162               22       14591931     14658822                        
9163               22       14591931     14658822                        
9164               22       14591931     14658822                        
9165               22       14591931     14658822                        
9166               22       14591931     14658822                        
9167               22       14591931     14658822                        
9168               22       14591931     14658822                        
9169               22       14591931     14658822                        
9170               22       14591931     14658822                        
9171               22       14591931     14658822                        
9172               22       14591931     14658822                        
9173               22       14591931     14658822                        
9174               22       14591931     14658822                        
9175               22       14591931     14658822                        
9176               22       14591931     14658822                        
9177               22       33481581     33482196       RPS5P3 HGNC:10427
9178               22       44246340     44262217       DNMT3L  HGNC:2980
9179               22       44246340     44262217       DNMT3L  HGNC:2980
9180               22       44246340     44262217       DNMT3L  HGNC:2980
9181               22       44246340     44262217       DNMT3L  HGNC:2980
9182               22       44246340     44262217       DNMT3L  HGNC:2980
9183               22       44246340     44262217       DNMT3L  HGNC:2980
9184               22       44246340     44262217       DNMT3L  HGNC:2980
9185               22       44246340     44262217       DNMT3L  HGNC:2980
9186               22       44246340     44262217       DNMT3L  HGNC:2980
9187               22       44246340     44262217       DNMT3L  HGNC:2980
9188               22       44246340     44262217       DNMT3L  HGNC:2980
9189               22       44246340     44262217       DNMT3L  HGNC:2980
9190               22       44246340     44262217       DNMT3L  HGNC:2980
9191               22       44246340     44262217       DNMT3L  HGNC:2980
9192               22       44246340     44262217       DNMT3L  HGNC:2980
9193               22       44246340     44262217       DNMT3L  HGNC:2980
9194               22       44246340     44262217       DNMT3L  HGNC:2980
9195               22       44246340     44262217       DNMT3L  HGNC:2980
9196               22       44246340     44262217       DNMT3L  HGNC:2980
9197               22       44246340     44262217       DNMT3L  HGNC:2980
9198               22       44246340     44262217       DNMT3L  HGNC:2980
9199               22       44246340     44262217       DNMT3L  HGNC:2980
9200               22       44246340     44262217       DNMT3L  HGNC:2980
9201               22       44246340     44262217       DNMT3L  HGNC:2980
9202               22       44246340     44262217       DNMT3L  HGNC:2980
9203               22       44246340     44262217       DNMT3L  HGNC:2980
9204               22       44246340     44262217       DNMT3L  HGNC:2980
9205               22       44246340     44262217       DNMT3L  HGNC:2980
9206               22       44246340     44262217       DNMT3L  HGNC:2980
9207               22       44246340     44262217       DNMT3L  HGNC:2980
9208               22       44246340     44262217       DNMT3L  HGNC:2980
9209               22       44246340     44262217       DNMT3L  HGNC:2980
9210               22       44246340     44262217       DNMT3L  HGNC:2980
9211               22       44246340     44262217       DNMT3L  HGNC:2980
9212               22       44246340     44262217       DNMT3L  HGNC:2980
9213               22       44246340     44262217       DNMT3L  HGNC:2980
9214               22       44246340     44262217       DNMT3L  HGNC:2980
9215               22       32790674     32791505                        
9216               22        5155500      5165473                        
9217               22        5155500      5165473                        
9218               22        5155500      5165473                        
9219               22        5155500      5165473                        
9220               22        5155500      5165473                        
9221               22        5155500      5165473                        
9222               22       15493933     15496125                        
9223               22       15493933     15496125                        
9224               22       15490531     15490768      CYCSP42  HGNC:2581
9225               22       45405138     45513721      COL18A1  HGNC:2195
9226               22       45405138     45513721      COL18A1  HGNC:2195
9227               22       45405138     45513721      COL18A1  HGNC:2195
9228               22       45405138     45513721      COL18A1  HGNC:2195
9229               22       45405138     45513721      COL18A1  HGNC:2195
9230               22       45405138     45513721      COL18A1  HGNC:2195
9231               22       45405138     45513721      COL18A1  HGNC:2195
9232               22       45405138     45513721      COL18A1  HGNC:2195
9233               22       45405138     45513721      COL18A1  HGNC:2195
9234               22       45405138     45513721      COL18A1  HGNC:2195
9235               22       45405138     45513721      COL18A1  HGNC:2195
9236               22       45405138     45513721      COL18A1  HGNC:2195
9237               22       45405138     45513721      COL18A1  HGNC:2195
9238               22       45405138     45513721      COL18A1  HGNC:2195
9239               22       45405138     45513721      COL18A1  HGNC:2195
9240               22       45405138     45513721      COL18A1  HGNC:2195
9241               22       45405138     45513721      COL18A1  HGNC:2195
9242               22       45405138     45513721      COL18A1  HGNC:2195
9243               22       45405138     45513721      COL18A1  HGNC:2195
9244               22       45405138     45513721      COL18A1  HGNC:2195
9245               22       45405138     45513721      COL18A1  HGNC:2195
9246               22       45405138     45513721      COL18A1  HGNC:2195
9247               22       45405138     45513721      COL18A1  HGNC:2195
9248               22       45405138     45513721      COL18A1  HGNC:2195
9249               22       45405138     45513721      COL18A1  HGNC:2195
9250               22       45405138     45513721      COL18A1  HGNC:2195
9251               22       45405138     45513721      COL18A1  HGNC:2195
9252               22       45405138     45513721      COL18A1  HGNC:2195
9253               22       45405138     45513721      COL18A1  HGNC:2195
9254               22       45405138     45513721      COL18A1  HGNC:2195
9255               22       45405138     45513721      COL18A1  HGNC:2195
9256               22       45405138     45513721      COL18A1  HGNC:2195
9257               22       45405138     45513721      COL18A1  HGNC:2195
9258               22       45405138     45513721      COL18A1  HGNC:2195
9259               22       45405138     45513721      COL18A1  HGNC:2195
9260               22       45405138     45513721      COL18A1  HGNC:2195
9261               22       45405138     45513721      COL18A1  HGNC:2195
9262               22       45405138     45513721      COL18A1  HGNC:2195
9263               22       45405138     45513721      COL18A1  HGNC:2195
9264               22       45405138     45513721      COL18A1  HGNC:2195
9265               22       45405138     45513721      COL18A1  HGNC:2195
9266               22       45405138     45513721      COL18A1  HGNC:2195
9267               22       45405138     45513721      COL18A1  HGNC:2195
9268               22       45405138     45513721      COL18A1  HGNC:2195
9269               22       45405138     45513721      COL18A1  HGNC:2195
9270               22       45405138     45513721      COL18A1  HGNC:2195
9271               22       45405138     45513721      COL18A1  HGNC:2195
9272               22       45405138     45513721      COL18A1  HGNC:2195
9273               22       45405138     45513721      COL18A1  HGNC:2195
9274               22       45405138     45513721      COL18A1  HGNC:2195
9275               22       45405138     45513721      COL18A1  HGNC:2195
9276               22       45405138     45513721      COL18A1  HGNC:2195
9277               22       45405138     45513721      COL18A1  HGNC:2195
9278               22       45405138     45513721      COL18A1  HGNC:2195
9279               22       45405138     45513721      COL18A1  HGNC:2195
9280               22       45405138     45513721      COL18A1  HGNC:2195
9281               22       45405138     45513721      COL18A1  HGNC:2195
9282               22       45405138     45513721      COL18A1  HGNC:2195
9283               22       45405138     45513721      COL18A1  HGNC:2195
9284               22       45405138     45513721      COL18A1  HGNC:2195
9285               22       45405138     45513721      COL18A1  HGNC:2195
9286               22       45405138     45513721      COL18A1  HGNC:2195
9287               22       45405138     45513721      COL18A1  HGNC:2195
9288               22       45405138     45513721      COL18A1  HGNC:2195
9289               22       45405138     45513721      COL18A1  HGNC:2195
9290               22       45405138     45513721      COL18A1  HGNC:2195
9291               22       45405138     45513721      COL18A1  HGNC:2195
9292               22       45405138     45513721      COL18A1  HGNC:2195
9293               22       45405138     45513721      COL18A1  HGNC:2195
9294               22       45405138     45513721      COL18A1  HGNC:2195
9295               22       45405138     45513721      COL18A1  HGNC:2195
9296               22       45405138     45513721      COL18A1  HGNC:2195
9297               22       45405138     45513721      COL18A1  HGNC:2195
9298               22       45405138     45513721      COL18A1  HGNC:2195
9299               22       45405138     45513721      COL18A1  HGNC:2195
9300               22       45405138     45513721      COL18A1  HGNC:2195
9301               22       45405138     45513721      COL18A1  HGNC:2195
9302               22       45405138     45513721      COL18A1  HGNC:2195
9303               22       45405138     45513721      COL18A1  HGNC:2195
9304               22       45405138     45513721      COL18A1  HGNC:2195
9305               22       45405138     45513721      COL18A1  HGNC:2195
9306               22       45405138     45513721      COL18A1  HGNC:2195
9307               22       45405138     45513721      COL18A1  HGNC:2195
9308               22       45405138     45513721      COL18A1  HGNC:2195
9309               22       45405138     45513721      COL18A1  HGNC:2195
9310               22       45405138     45513721      COL18A1  HGNC:2195
9311               22       45405138     45513721      COL18A1  HGNC:2195
9312               22       45405138     45513721      COL18A1  HGNC:2195
9313               22       45405138     45513721      COL18A1  HGNC:2195
9314               22       45405138     45513721      COL18A1  HGNC:2195
9315               22       45405138     45513721      COL18A1  HGNC:2195
9316               22       45405138     45513721      COL18A1  HGNC:2195
9317               22       45405138     45513721      COL18A1  HGNC:2195
9318               22       45405138     45513721      COL18A1  HGNC:2195
9319               22       45405138     45513721      COL18A1  HGNC:2195
9320               22       45405138     45513721      COL18A1  HGNC:2195
9321               22       45405138     45513721      COL18A1  HGNC:2195
9322               22       45405138     45513721      COL18A1  HGNC:2195
9323               22       45405138     45513721      COL18A1  HGNC:2195
9324               22       45405138     45513721      COL18A1  HGNC:2195
9325               22       45405138     45513721      COL18A1  HGNC:2195
9326               22       45405138     45513721      COL18A1  HGNC:2195
9327               22       45405138     45513721      COL18A1  HGNC:2195
9328               22       45405138     45513721      COL18A1  HGNC:2195
9329               22       45405138     45513721      COL18A1  HGNC:2195
9330               22       45405138     45513721      COL18A1  HGNC:2195
9331               22       45405138     45513721      COL18A1  HGNC:2195
9332               22       45405138     45513721      COL18A1  HGNC:2195
9333               22       45405138     45513721      COL18A1  HGNC:2195
9334               22       45405138     45513721      COL18A1  HGNC:2195
9335               22       45405138     45513721      COL18A1  HGNC:2195
9336               22       45405138     45513721      COL18A1  HGNC:2195
9337               22       45405138     45513721      COL18A1  HGNC:2195
9338               22       45405138     45513721      COL18A1  HGNC:2195
9339               22       45405138     45513721      COL18A1  HGNC:2195
9340               22       45405138     45513721      COL18A1  HGNC:2195
9341               22       45405138     45513721      COL18A1  HGNC:2195
9342               22       45405138     45513721      COL18A1  HGNC:2195
9343               22       45405138     45513721      COL18A1  HGNC:2195
9344               22       45405138     45513721      COL18A1  HGNC:2195
9345               22       45405138     45513721      COL18A1  HGNC:2195
9346               22       45405138     45513721      COL18A1  HGNC:2195
9347               22       45405138     45513721      COL18A1  HGNC:2195
9348               22       45405138     45513721      COL18A1  HGNC:2195
9349               22       45405138     45513721      COL18A1  HGNC:2195
9350               22       45405138     45513721      COL18A1  HGNC:2195
9351               22       45405138     45513721      COL18A1  HGNC:2195
9352               22       45405138     45513721      COL18A1  HGNC:2195
9353               22       45405138     45513721      COL18A1  HGNC:2195
9354               22       45405138     45513721      COL18A1  HGNC:2195
9355               22       45405138     45513721      COL18A1  HGNC:2195
9356               22       45405138     45513721      COL18A1  HGNC:2195
9357               22       45405138     45513721      COL18A1  HGNC:2195
9358               22       45405138     45513721      COL18A1  HGNC:2195
9359               22       45405138     45513721      COL18A1  HGNC:2195
9360               22       45405138     45513721      COL18A1  HGNC:2195
9361               22       45405138     45513721      COL18A1  HGNC:2195
9362               22       45405138     45513721      COL18A1  HGNC:2195
9363               22       45405138     45513721      COL18A1  HGNC:2195
9364               22       45405138     45513721      COL18A1  HGNC:2195
9365               22       45405138     45513721      COL18A1  HGNC:2195
9366               22       45405138     45513721      COL18A1  HGNC:2195
9367               22       45405138     45513721      COL18A1  HGNC:2195
9368               22       45405138     45513721      COL18A1  HGNC:2195
9369               22       45405138     45513721      COL18A1  HGNC:2195
9370               22       45405138     45513721      COL18A1  HGNC:2195
9371               22       45405138     45513721      COL18A1  HGNC:2195
9372               22       45405138     45513721      COL18A1  HGNC:2195
9373               22       45405138     45513721      COL18A1  HGNC:2195
9374               22       45405138     45513721      COL18A1  HGNC:2195
9375               22       45405138     45513721      COL18A1  HGNC:2195
9376               22       45405138     45513721      COL18A1  HGNC:2195
9377               22       45405138     45513721      COL18A1  HGNC:2195
9378               22       45405138     45513721      COL18A1  HGNC:2195
9379               22       45405138     45513721      COL18A1  HGNC:2195
9380               22       45405138     45513721      COL18A1  HGNC:2195
9381               22       45405138     45513721      COL18A1  HGNC:2195
9382               22       45405138     45513721      COL18A1  HGNC:2195
9383               22       45405138     45513721      COL18A1  HGNC:2195
9384               22       45405138     45513721      COL18A1  HGNC:2195
9385               22       45405138     45513721      COL18A1  HGNC:2195
9386               22       45405138     45513721      COL18A1  HGNC:2195
9387               22       45405138     45513721      COL18A1  HGNC:2195
9388               22       45405138     45513721      COL18A1  HGNC:2195
9389               22       45405138     45513721      COL18A1  HGNC:2195
9390               22       45405138     45513721      COL18A1  HGNC:2195
9391               22       38974430     38977775    LINC01700 HGNC:52488
9392               22       38974430     38977775    LINC01700 HGNC:52488
9393               22       38974430     38977775    LINC01700 HGNC:52488
9394               22       32277864     32280989   MIS18A-AS1 HGNC:40106
9395               22       32277864     32280989   MIS18A-AS1 HGNC:40106
9396               22       32277864     32280989   MIS18A-AS1 HGNC:40106
9397               22       43551230     43551601      RPL31P1 HGNC:10335
9398               22       13546034     13558462    LINC01674 HGNC:52462
9399               22       13546034     13558462    LINC01674 HGNC:52462
9400               22       13546034     13558462    LINC01674 HGNC:52462
9401               22       13546034     13558462    LINC01674 HGNC:52462
9402               22       13476372     13477264       VN1R8P  HGNC:8497
9403               22       13349266     13350649       FGF7P2 HGNC:17193
9404               22       13349266     13350649       FGF7P2 HGNC:17193
9405               22       45263929     45287899       POFUT2 HGNC:14683
9406               22       45263929     45287899       POFUT2 HGNC:14683
9407               22       45263929     45287899       POFUT2 HGNC:14683
9408               22       45263929     45287899       POFUT2 HGNC:14683
9409               22       45263929     45287899       POFUT2 HGNC:14683
9410               22       45263929     45287899       POFUT2 HGNC:14683
9411               22       45263929     45287899       POFUT2 HGNC:14683
9412               22       45263929     45287899       POFUT2 HGNC:14683
9413               22       45263929     45287899       POFUT2 HGNC:14683
9414               22       45263929     45287899       POFUT2 HGNC:14683
9415               22       45263929     45287899       POFUT2 HGNC:14683
9416               22       45263929     45287899       POFUT2 HGNC:14683
9417               22       45263929     45287899       POFUT2 HGNC:14683
9418               22       45263929     45287899       POFUT2 HGNC:14683
9419               22       45263929     45287899       POFUT2 HGNC:14683
9420               22       45263929     45287899       POFUT2 HGNC:14683
9421               22       45263929     45287899       POFUT2 HGNC:14683
9422               22       45263929     45287899       POFUT2 HGNC:14683
9423               22       45263929     45287899       POFUT2 HGNC:14683
9424               22       45263929     45287899       POFUT2 HGNC:14683
9425               22       45263929     45287899       POFUT2 HGNC:14683
9426               22       45263929     45287899       POFUT2 HGNC:14683
9427               22       45263929     45287899       POFUT2 HGNC:14683
9428               22       45263929     45287899       POFUT2 HGNC:14683
9429               22       45263929     45287899       POFUT2 HGNC:14683
9430               22       45263929     45287899       POFUT2 HGNC:14683
9431               22       45263929     45287899       POFUT2 HGNC:14683
9432               22       45263929     45287899       POFUT2 HGNC:14683
9433               22       45263929     45287899       POFUT2 HGNC:14683
9434               22       45263929     45287899       POFUT2 HGNC:14683
9435               22       45263929     45287899       POFUT2 HGNC:14683
9436               22       45263929     45287899       POFUT2 HGNC:14683
9437               22       45263929     45287899       POFUT2 HGNC:14683
9438               22       45263929     45287899       POFUT2 HGNC:14683
9439               22       45263929     45287899       POFUT2 HGNC:14683
9440               22       45263929     45287899       POFUT2 HGNC:14683
9441               22       45263929     45287899       POFUT2 HGNC:14683
9442               22       45263929     45287899       POFUT2 HGNC:14683
9443               22       45263929     45287899       POFUT2 HGNC:14683
9444               22       45263929     45287899       POFUT2 HGNC:14683
9445               22       45263929     45287899       POFUT2 HGNC:14683
9446               22       45263929     45287899       POFUT2 HGNC:14683
9447               22       45263929     45287899       POFUT2 HGNC:14683
9448               22       45263929     45287899       POFUT2 HGNC:14683
9449               22       45263929     45287899       POFUT2 HGNC:14683
9450               22       45263929     45287899       POFUT2 HGNC:14683
9451               22       45263929     45287899       POFUT2 HGNC:14683
9452               22       45263929     45287899       POFUT2 HGNC:14683
9453               22       45263929     45287899       POFUT2 HGNC:14683
9454               22       45263929     45287899       POFUT2 HGNC:14683
9455               22       45263929     45287899       POFUT2 HGNC:14683
9456               22       45263929     45287899       POFUT2 HGNC:14683
9457               22       45263929     45287899       POFUT2 HGNC:14683
9458               22       45263929     45287899       POFUT2 HGNC:14683
9459               22       45263929     45287899       POFUT2 HGNC:14683
9460               22       45263929     45287899       POFUT2 HGNC:14683
9461               22       45263929     45287899       POFUT2 HGNC:14683
9462               22       45263929     45287899       POFUT2 HGNC:14683
9463               22       45263929     45287899       POFUT2 HGNC:14683
9464               22       45263929     45287899       POFUT2 HGNC:14683
9465               22       45263929     45287899       POFUT2 HGNC:14683
9466               22       45263929     45287899       POFUT2 HGNC:14683
9467               22       45263929     45287899       POFUT2 HGNC:14683
9468               22       45263929     45287899       POFUT2 HGNC:14683
9469               22       45263929     45287899       POFUT2 HGNC:14683
9470               22       45263929     45287899       POFUT2 HGNC:14683
9471               22       45263929     45287899       POFUT2 HGNC:14683
9472               22       45263929     45287899       POFUT2 HGNC:14683
9473               22       45263929     45287899       POFUT2 HGNC:14683
9474               22       45263929     45287899       POFUT2 HGNC:14683
9475               22       45263929     45287899       POFUT2 HGNC:14683
9476               22       45263929     45287899       POFUT2 HGNC:14683
9477               22       45263929     45287899       POFUT2 HGNC:14683
9478               22       45263929     45287899       POFUT2 HGNC:14683
9479               22       45263929     45287899       POFUT2 HGNC:14683
9480               22       45263929     45287899       POFUT2 HGNC:14683
9481               22       45263929     45287899       POFUT2 HGNC:14683
9482               22       45263929     45287899       POFUT2 HGNC:14683
9483               22       45263929     45287899       POFUT2 HGNC:14683
9484               22       45263929     45287899       POFUT2 HGNC:14683
9485               22       45263929     45287899       POFUT2 HGNC:14683
9486               22       45263929     45287899       POFUT2 HGNC:14683
9487               22       45263929     45287899       POFUT2 HGNC:14683
9488               22       45263929     45287899       POFUT2 HGNC:14683
9489               22       10649401     10649836  IGHV1OR21-1 HGNC:38040
9490               22       10649401     10649836  IGHV1OR21-1 HGNC:38040
9491               22       45073854     45226561       ADARB1   HGNC:226
9492               22       45073854     45226561       ADARB1   HGNC:226
9493               22       45073854     45226561       ADARB1   HGNC:226
9494               22       45073854     45226561       ADARB1   HGNC:226
9495               22       45073854     45226561       ADARB1   HGNC:226
9496               22       45073854     45226561       ADARB1   HGNC:226
9497               22       45073854     45226561       ADARB1   HGNC:226
9498               22       45073854     45226561       ADARB1   HGNC:226
9499               22       45073854     45226561       ADARB1   HGNC:226
9500               22       45073854     45226561       ADARB1   HGNC:226
9501               22       45073854     45226561       ADARB1   HGNC:226
9502               22       45073854     45226561       ADARB1   HGNC:226
9503               22       45073854     45226561       ADARB1   HGNC:226
9504               22       45073854     45226561       ADARB1   HGNC:226
9505               22       45073854     45226561       ADARB1   HGNC:226
9506               22       45073854     45226561       ADARB1   HGNC:226
9507               22       45073854     45226561       ADARB1   HGNC:226
9508               22       45073854     45226561       ADARB1   HGNC:226
9509               22       45073854     45226561       ADARB1   HGNC:226
9510               22       45073854     45226561       ADARB1   HGNC:226
9511               22       45073854     45226561       ADARB1   HGNC:226
9512               22       45073854     45226561       ADARB1   HGNC:226
9513               22       45073854     45226561       ADARB1   HGNC:226
9514               22       45073854     45226561       ADARB1   HGNC:226
9515               22       45073854     45226561       ADARB1   HGNC:226
9516               22       45073854     45226561       ADARB1   HGNC:226
9517               22       45073854     45226561       ADARB1   HGNC:226
9518               22       45073854     45226561       ADARB1   HGNC:226
9519               22       45073854     45226561       ADARB1   HGNC:226
9520               22       45073854     45226561       ADARB1   HGNC:226
9521               22       45073854     45226561       ADARB1   HGNC:226
9522               22       45073854     45226561       ADARB1   HGNC:226
9523               22       45073854     45226561       ADARB1   HGNC:226
9524               22       45073854     45226561       ADARB1   HGNC:226
9525               22       45073854     45226561       ADARB1   HGNC:226
9526               22       45073854     45226561       ADARB1   HGNC:226
9527               22       45073854     45226561       ADARB1   HGNC:226
9528               22       45073854     45226561       ADARB1   HGNC:226
9529               22       45073854     45226561       ADARB1   HGNC:226
9530               22       45073854     45226561       ADARB1   HGNC:226
9531               22       45073854     45226561       ADARB1   HGNC:226
9532               22       45073854     45226561       ADARB1   HGNC:226
9533               22       45073854     45226561       ADARB1   HGNC:226
9534               22       45073854     45226561       ADARB1   HGNC:226
9535               22       45073854     45226561       ADARB1   HGNC:226
9536               22       45073854     45226561       ADARB1   HGNC:226
9537               22       45073854     45226561       ADARB1   HGNC:226
9538               22       45073854     45226561       ADARB1   HGNC:226
9539               22       45073854     45226561       ADARB1   HGNC:226
9540               22       45073854     45226561       ADARB1   HGNC:226
9541               22       45073854     45226561       ADARB1   HGNC:226
9542               22       45073854     45226561       ADARB1   HGNC:226
9543               22       45073854     45226561       ADARB1   HGNC:226
9544               22       45073854     45226561       ADARB1   HGNC:226
9545               22       45073854     45226561       ADARB1   HGNC:226
9546               22       45073854     45226561       ADARB1   HGNC:226
9547               22       45073854     45226561       ADARB1   HGNC:226
9548               22       45073854     45226561       ADARB1   HGNC:226
9549               22       45073854     45226561       ADARB1   HGNC:226
9550               22       45073854     45226561       ADARB1   HGNC:226
9551               22       45073854     45226561       ADARB1   HGNC:226
9552               22       45073854     45226561       ADARB1   HGNC:226
9553               22       45073854     45226561       ADARB1   HGNC:226
9554               22       45073854     45226561       ADARB1   HGNC:226
9555               22       45073854     45226561       ADARB1   HGNC:226
9556               22       45073854     45226561       ADARB1   HGNC:226
9557               22       45073854     45226561       ADARB1   HGNC:226
9558               22       45073854     45226561       ADARB1   HGNC:226
9559               22       45073854     45226561       ADARB1   HGNC:226
9560               22       45073854     45226561       ADARB1   HGNC:226
9561               22       45073854     45226561       ADARB1   HGNC:226
9562               22       45073854     45226561       ADARB1   HGNC:226
9563               22       45073854     45226561       ADARB1   HGNC:226
9564               22       45073854     45226561       ADARB1   HGNC:226
9565               22       45073854     45226561       ADARB1   HGNC:226
9566               22       45073854     45226561       ADARB1   HGNC:226
9567               22       45073854     45226561       ADARB1   HGNC:226
9568               22       45073854     45226561       ADARB1   HGNC:226
9569               22       45073854     45226561       ADARB1   HGNC:226
9570               22       45073854     45226561       ADARB1   HGNC:226
9571               22       45073854     45226561       ADARB1   HGNC:226
9572               22       45073854     45226561       ADARB1   HGNC:226
9573               22       45073854     45226561       ADARB1   HGNC:226
9574               22       45073854     45226561       ADARB1   HGNC:226
9575               22       45073854     45226561       ADARB1   HGNC:226
9576               22       45073854     45226561       ADARB1   HGNC:226
9577               22       45073854     45226561       ADARB1   HGNC:226
9578               22       45073854     45226561       ADARB1   HGNC:226
9579               22       45073854     45226561       ADARB1   HGNC:226
9580               22       45073854     45226561       ADARB1   HGNC:226
9581               22       45073854     45226561       ADARB1   HGNC:226
9582               22       45073854     45226561       ADARB1   HGNC:226
9583               22       45073854     45226561       ADARB1   HGNC:226
9584               22       45073854     45226561       ADARB1   HGNC:226
9585               22       45073854     45226561       ADARB1   HGNC:226
9586               22       45073854     45226561       ADARB1   HGNC:226
9587               22       45073854     45226561       ADARB1   HGNC:226
9588               22       45073854     45226561       ADARB1   HGNC:226
9589               22       45073854     45226561       ADARB1   HGNC:226
9590               22       45073854     45226561       ADARB1   HGNC:226
9591               22       45073854     45226561       ADARB1   HGNC:226
9592               22       45073854     45226561       ADARB1   HGNC:226
9593               22       45073854     45226561       ADARB1   HGNC:226
9594               22       45073854     45226561       ADARB1   HGNC:226
9595               22       45073854     45226561       ADARB1   HGNC:226
9596               22       45073854     45226561       ADARB1   HGNC:226
9597               22       45073854     45226561       ADARB1   HGNC:226
9598               22       45073854     45226561       ADARB1   HGNC:226
9599               22       45073854     45226561       ADARB1   HGNC:226
9600               22       45073854     45226561       ADARB1   HGNC:226
9601               22       45073854     45226561       ADARB1   HGNC:226
9602               22       45073854     45226561       ADARB1   HGNC:226
9603               22       45073854     45226561       ADARB1   HGNC:226
9604               22       45073854     45226561       ADARB1   HGNC:226
9605               22       45073854     45226561       ADARB1   HGNC:226
9606               22       45073854     45226561       ADARB1   HGNC:226
9607               22       45073854     45226561       ADARB1   HGNC:226
9608               22       45073854     45226561       ADARB1   HGNC:226
9609               22       45073854     45226561       ADARB1   HGNC:226
9610               22       45073854     45226561       ADARB1   HGNC:226
9611               22       45073854     45226561       ADARB1   HGNC:226
9612               22       45073854     45226561       ADARB1   HGNC:226
9613               22       45073854     45226561       ADARB1   HGNC:226
9614               22       45073854     45226561       ADARB1   HGNC:226
9615               22       45073854     45226561       ADARB1   HGNC:226
9616               22       44940011     44976990      FAM207A HGNC:15811
9617               22       44940011     44976990      FAM207A HGNC:15811
9618               22       44940011     44976990      FAM207A HGNC:15811
9619               22       44940011     44976990      FAM207A HGNC:15811
9620               22       44940011     44976990      FAM207A HGNC:15811
9621               22       44940011     44976990      FAM207A HGNC:15811
9622               22       44940011     44976990      FAM207A HGNC:15811
9623               22       44940011     44976990      FAM207A HGNC:15811
9624               22       44940011     44976990      FAM207A HGNC:15811
9625               22       44940011     44976990      FAM207A HGNC:15811
9626               22       44940011     44976990      FAM207A HGNC:15811
9627               22       44940011     44976990      FAM207A HGNC:15811
9628               22       44940011     44976990      FAM207A HGNC:15811
9629               22       44940011     44976990      FAM207A HGNC:15811
9630               22       44940011     44976990      FAM207A HGNC:15811
9631               22       44940011     44976990      FAM207A HGNC:15811
9632               22       44940011     44976990      FAM207A HGNC:15811
9633               22       44940011     44976990      FAM207A HGNC:15811
9634               22       44940011     44976990      FAM207A HGNC:15811
9635               22       44940011     44976990      FAM207A HGNC:15811
9636               22       44940011     44976990      FAM207A HGNC:15811
9637               22       44940011     44976990      FAM207A HGNC:15811
9638               22       44940011     44976990      FAM207A HGNC:15811
9639               22       44940011     44976990      FAM207A HGNC:15811
9640               22       30496825     30497134    KRTAP19-4 HGNC:18939
9641               22       30487058     30487437    KRTAP19-2 HGNC:18937
9642               22       33503932     33543492         GART  HGNC:4163
9643               22       33503932     33543492         GART  HGNC:4163
9644               22       33503932     33543492         GART  HGNC:4163
9645               22       33503932     33543492         GART  HGNC:4163
9646               22       33503932     33543492         GART  HGNC:4163
9647               22       33503932     33543492         GART  HGNC:4163
9648               22       33503932     33543492         GART  HGNC:4163
9649               22       33503932     33543492         GART  HGNC:4163
9650               22       33503932     33543492         GART  HGNC:4163
9651               22       33503932     33543492         GART  HGNC:4163
9652               22       33503932     33543492         GART  HGNC:4163
9653               22       33503932     33543492         GART  HGNC:4163
9654               22       33503932     33543492         GART  HGNC:4163
9655               22       33503932     33543492         GART  HGNC:4163
9656               22       33503932     33543492         GART  HGNC:4163
9657               22       33503932     33543492         GART  HGNC:4163
9658               22       33503932     33543492         GART  HGNC:4163
9659               22       33503932     33543492         GART  HGNC:4163
9660               22       33503932     33543492         GART  HGNC:4163
9661               22       33503932     33543492         GART  HGNC:4163
9662               22       33503932     33543492         GART  HGNC:4163
9663               22       33503932     33543492         GART  HGNC:4163
9664               22       33503932     33543492         GART  HGNC:4163
9665               22       33503932     33543492         GART  HGNC:4163
9666               22       33503932     33543492         GART  HGNC:4163
9667               22       33503932     33543492         GART  HGNC:4163
9668               22       33503932     33543492         GART  HGNC:4163
9669               22       33503932     33543492         GART  HGNC:4163
9670               22       33503932     33543492         GART  HGNC:4163
9671               22       33503932     33543492         GART  HGNC:4163
9672               22       33503932     33543492         GART  HGNC:4163
9673               22       33503932     33543492         GART  HGNC:4163
9674               22       33503932     33543492         GART  HGNC:4163
9675               22       33503932     33543492         GART  HGNC:4163
9676               22       33503932     33543492         GART  HGNC:4163
9677               22       33503932     33543492         GART  HGNC:4163
9678               22       33503932     33543492         GART  HGNC:4163
9679               22       33503932     33543492         GART  HGNC:4163
9680               22       33503932     33543492         GART  HGNC:4163
9681               22       33503932     33543492         GART  HGNC:4163
9682               22       33503932     33543492         GART  HGNC:4163
9683               22       33503932     33543492         GART  HGNC:4163
9684               22       33503932     33543492         GART  HGNC:4163
9685               22       33503932     33543492         GART  HGNC:4163
9686               22       33503932     33543492         GART  HGNC:4163
9687               22       33503932     33543492         GART  HGNC:4163
9688               22       33503932     33543492         GART  HGNC:4163
9689               22       33503932     33543492         GART  HGNC:4163
9690               22       33503932     33543492         GART  HGNC:4163
9691               22       33503932     33543492         GART  HGNC:4163
9692               22       33503932     33543492         GART  HGNC:4163
9693               22       33503932     33543492         GART  HGNC:4163
9694               22       33503932     33543492         GART  HGNC:4163
9695               22       33503932     33543492         GART  HGNC:4163
9696               22       33503932     33543492         GART  HGNC:4163
9697               22       33503932     33543492         GART  HGNC:4163
9698               22       33503932     33543492         GART  HGNC:4163
9699               22       33503932     33543492         GART  HGNC:4163
9700               22       33503932     33543492         GART  HGNC:4163
9701               22       33503932     33543492         GART  HGNC:4163
9702               22       33503932     33543492         GART  HGNC:4163
9703               22       33503932     33543492         GART  HGNC:4163
9704               22       33503932     33543492         GART  HGNC:4163
9705               22       33503932     33543492         GART  HGNC:4163
9706               22       33503932     33543492         GART  HGNC:4163
9707               22       33503932     33543492         GART  HGNC:4163
9708               22       33503932     33543492         GART  HGNC:4163
9709               22       33503932     33543492         GART  HGNC:4163
9710               22       33503932     33543492         GART  HGNC:4163
9711               22       33503932     33543492         GART  HGNC:4163
9712               22       33503932     33543492         GART  HGNC:4163
9713               22       33503932     33543492         GART  HGNC:4163
9714               22       33503932     33543492         GART  HGNC:4163
9715               22       33503932     33543492         GART  HGNC:4163
9716               22       33503932     33543492         GART  HGNC:4163
9717               22       33503932     33543492         GART  HGNC:4163
9718               22       33503932     33543492         GART  HGNC:4163
9719               22       33503932     33543492         GART  HGNC:4163
9720               22       33503932     33543492         GART  HGNC:4163
9721               22       33503932     33543492         GART  HGNC:4163
9722               22       33503932     33543492         GART  HGNC:4163
9723               22       33503932     33543492         GART  HGNC:4163
9724               22       33503932     33543492         GART  HGNC:4163
9725               22       33503932     33543492         GART  HGNC:4163
9726               22       33503932     33543492         GART  HGNC:4163
9727               22       33503932     33543492         GART  HGNC:4163
9728               22       33503932     33543492         GART  HGNC:4163
9729               22       33503932     33543492         GART  HGNC:4163
9730               22       33503932     33543492         GART  HGNC:4163
9731               22       33503932     33543492         GART  HGNC:4163
9732               22       33503932     33543492         GART  HGNC:4163
9733               22       33503932     33543492         GART  HGNC:4163
9734               22       33503932     33543492         GART  HGNC:4163
9735               22       33503932     33543492         GART  HGNC:4163
9736               22       33503932     33543492         GART  HGNC:4163
9737               22       33503932     33543492         GART  HGNC:4163
9738               22       33503932     33543492         GART  HGNC:4163
9739               22       33503932     33543492         GART  HGNC:4163
9740               22       33503932     33543492         GART  HGNC:4163
9741               22       33503932     33543492         GART  HGNC:4163
9742               22       33503932     33543492         GART  HGNC:4163
9743               22       33503932     33543492         GART  HGNC:4163
9744               22       33503932     33543492         GART  HGNC:4163
9745               22       33503932     33543492         GART  HGNC:4163
9746               22       33503932     33543492         GART  HGNC:4163
9747               22       33503932     33543492         GART  HGNC:4163
9748               22       33503932     33543492         GART  HGNC:4163
9749               22       33503932     33543492         GART  HGNC:4163
9750               22       33503932     33543492         GART  HGNC:4163
9751               22       33503932     33543492         GART  HGNC:4163
9752               22       33503932     33543492         GART  HGNC:4163
9753               22       33503932     33543492         GART  HGNC:4163
9754               22       33503932     33543492         GART  HGNC:4163
9755               22       33503932     33543492         GART  HGNC:4163
9756               22       33503932     33543492         GART  HGNC:4163
9757               22       33503932     33543492         GART  HGNC:4163
9758               22       33503932     33543492         GART  HGNC:4163
9759               22       33503932     33543492         GART  HGNC:4163
9760               22       33503932     33543492         GART  HGNC:4163
9761               22       33503932     33543492         GART  HGNC:4163
9762               22       33503932     33543492         GART  HGNC:4163
9763               22       33503932     33543492         GART  HGNC:4163
9764               22       33503932     33543492         GART  HGNC:4163
9765               22       33503932     33543492         GART  HGNC:4163
9766               22       33503932     33543492         GART  HGNC:4163
9767               22       33503932     33543492         GART  HGNC:4163
9768               22       33503932     33543492         GART  HGNC:4163
9769               22       33503932     33543492         GART  HGNC:4163
9770               22       33503932     33543492         GART  HGNC:4163
9771               22       33503932     33543492         GART  HGNC:4163
9772               22       33503932     33543492         GART  HGNC:4163
9773               22       33503932     33543492         GART  HGNC:4163
9774               22       33503932     33543492         GART  HGNC:4163
9775               22       33503932     33543492         GART  HGNC:4163
9776               22       33503932     33543492         GART  HGNC:4163
9777               22       33503932     33543492         GART  HGNC:4163
9778               22       33503932     33543492         GART  HGNC:4163
9779               22       33503932     33543492         GART  HGNC:4163
9780               22       33503932     33543492         GART  HGNC:4163
9781               22       33503932     33543492         GART  HGNC:4163
9782               22       33503932     33543492         GART  HGNC:4163
9783               22       33503932     33543492         GART  HGNC:4163
9784               22       33503932     33543492         GART  HGNC:4163
9785               22       33503932     33543492         GART  HGNC:4163
9786               22       33503932     33543492         GART  HGNC:4163
9787               22       33503932     33543492         GART  HGNC:4163
9788               22       33503932     33543492         GART  HGNC:4163
9789               22       33503932     33543492         GART  HGNC:4163
9790               22       33503932     33543492         GART  HGNC:4163
9791               22       33503932     33543492         GART  HGNC:4163
9792               22       33503932     33543492         GART  HGNC:4163
9793               22       33503932     33543492         GART  HGNC:4163
9794               22       33503932     33543492         GART  HGNC:4163
9795               22       33503932     33543492         GART  HGNC:4163
9796               22       33503932     33543492         GART  HGNC:4163
9797               22       29222322     29223258     GAPDHP14  HGNC:4160
9798               22        7816676      7829927       KCNE1B HGNC:52280
9799               22        7816676      7829927       KCNE1B HGNC:52280
9800               22        7816676      7829927       KCNE1B HGNC:52280
9801               22        7816676      7829927       KCNE1B HGNC:52280
9802               22        7816676      7829927       KCNE1B HGNC:52280
9803               22        7816676      7829927       KCNE1B HGNC:52280
9804               22        7816676      7829927       KCNE1B HGNC:52280
9805               22        7816676      7829927       KCNE1B HGNC:52280
9806               22        7816676      7829927       KCNE1B HGNC:52280
9807               22        7816676      7829927       KCNE1B HGNC:52280
9808               22        7816676      7829927       KCNE1B HGNC:52280
9809               22       44285839     44298649         AIRE   HGNC:360
9810               22       44285839     44298649         AIRE   HGNC:360
9811               22       44285839     44298649         AIRE   HGNC:360
9812               22       44285839     44298649         AIRE   HGNC:360
9813               22       44285839     44298649         AIRE   HGNC:360
9814               22       44285839     44298649         AIRE   HGNC:360
9815               22       44285839     44298649         AIRE   HGNC:360
9816               22       44285839     44298649         AIRE   HGNC:360
9817               22       44285839     44298649         AIRE   HGNC:360
9818               22       44285839     44298649         AIRE   HGNC:360
9819               22       44285839     44298649         AIRE   HGNC:360
9820               22       44285839     44298649         AIRE   HGNC:360
9821               22       44285839     44298649         AIRE   HGNC:360
9822               22       44285839     44298649         AIRE   HGNC:360
9823               22       44285839     44298649         AIRE   HGNC:360
9824               22       44285839     44298649         AIRE   HGNC:360
9825               22       44285839     44298649         AIRE   HGNC:360
9826               22       44285839     44298649         AIRE   HGNC:360
9827               22       44285839     44298649         AIRE   HGNC:360
9828               22       44285839     44298649         AIRE   HGNC:360
9829               22       44285839     44298649         AIRE   HGNC:360
9830               22       44285839     44298649         AIRE   HGNC:360
9831               22       44285839     44298649         AIRE   HGNC:360
9832               22       44285839     44298649         AIRE   HGNC:360
9833               22       44285839     44298649         AIRE   HGNC:360
9834               22       44285839     44298649         AIRE   HGNC:360
9835               22       44285839     44298649         AIRE   HGNC:360
9836               22       44285839     44298649         AIRE   HGNC:360
9837               22       44285839     44298649         AIRE   HGNC:360
9838               22       44285839     44298649         AIRE   HGNC:360
9839               22       44285839     44298649         AIRE   HGNC:360
9840               22       44285839     44298649         AIRE   HGNC:360
9841               22       44285839     44298649         AIRE   HGNC:360
9842               22       44285839     44298649         AIRE   HGNC:360
9843               22       44285839     44298649         AIRE   HGNC:360
9844               22       44285839     44298649         AIRE   HGNC:360
9845               22       44285839     44298649         AIRE   HGNC:360
9846               22       44285839     44298649         AIRE   HGNC:360
9847               22       44285839     44298649         AIRE   HGNC:360
9848               22       44285839     44298649         AIRE   HGNC:360
9849               22       44285839     44298649         AIRE   HGNC:360
9850               22       44285839     44298649         AIRE   HGNC:360
9851               22       44285839     44298649         AIRE   HGNC:360
9852               22       44285839     44298649         AIRE   HGNC:360
9853               22       44285839     44298649         AIRE   HGNC:360
9854               22       44285839     44298649         AIRE   HGNC:360
9855               22       44285839     44298649         AIRE   HGNC:360
9856               22       44285839     44298649         AIRE   HGNC:360
9857               22       44285839     44298649         AIRE   HGNC:360
9858               22       44285839     44298649         AIRE   HGNC:360
9859               22       44285839     44298649         AIRE   HGNC:360
9860               22       44285839     44298649         AIRE   HGNC:360
9861               22       44285839     44298649         AIRE   HGNC:360
9862               22       44285839     44298649         AIRE   HGNC:360
9863               22       44285839     44298649         AIRE   HGNC:360
9864               22       39380245     39428529          WRB HGNC:12790
9865               22       39380245     39428529          WRB HGNC:12790
9866               22       39380245     39428529          WRB HGNC:12790
9867               22       39380245     39428529          WRB HGNC:12790
9868               22       39380245     39428529          WRB HGNC:12790
9869               22       39380245     39428529          WRB HGNC:12790
9870               22       39380245     39428529          WRB HGNC:12790
9871               22       39380245     39428529          WRB HGNC:12790
9872               22       39380245     39428529          WRB HGNC:12790
9873               22       39380245     39428529          WRB HGNC:12790
9874               22       39380245     39428529          WRB HGNC:12790
9875               22       39380245     39428529          WRB HGNC:12790
9876               22       39380245     39428529          WRB HGNC:12790
9877               22       39380245     39428529          WRB HGNC:12790
9878               22       39380245     39428529          WRB HGNC:12790
9879               22       39380245     39428529          WRB HGNC:12790
9880               22       39380245     39428529          WRB HGNC:12790
9881               22       39380245     39428529          WRB HGNC:12790
9882               22       39380245     39428529          WRB HGNC:12790
9883               22       39380245     39428529          WRB HGNC:12790
9884               22       39380245     39428529          WRB HGNC:12790
9885               22       39380245     39428529          WRB HGNC:12790
9886               22       39380245     39428529          WRB HGNC:12790
9887               22       39380245     39428529          WRB HGNC:12790
9888               22       39380245     39428529          WRB HGNC:12790
9889               22       39380245     39428529          WRB HGNC:12790
9890               22       39380245     39428529          WRB HGNC:12790
9891               22       39380245     39428529          WRB HGNC:12790
9892               22       39380245     39428529          WRB HGNC:12790
9893               22       39380245     39428529          WRB HGNC:12790
9894               22       39380245     39428529          WRB HGNC:12790
9895               22       39380245     39428529          WRB HGNC:12790
9896               22       39380245     39428529          WRB HGNC:12790
9897               22       39380245     39428529          WRB HGNC:12790
9898               22       39380245     39428529          WRB HGNC:12790
9899               22       39380245     39428529          WRB HGNC:12790
9900               22       39380245     39428529          WRB HGNC:12790
9901               22       39380245     39428529          WRB HGNC:12790
9902               22       39380245     39428529          WRB HGNC:12790
9903               22       39380245     39428529          WRB HGNC:12790
9904               22       39380245     39428529          WRB HGNC:12790
9905               22       39380245     39428529          WRB HGNC:12790
9906               22       39380245     39428529          WRB HGNC:12790
9907               22       39380245     39428529          WRB HGNC:12790
9908               22       39380245     39428529          WRB HGNC:12790
9909               22       39380245     39428529          WRB HGNC:12790
9910               22       39380245     39428529          WRB HGNC:12790
9911               22       39380245     39428529          WRB HGNC:12790
9912               22       39380245     39428529          WRB HGNC:12790
9913               22       39380245     39428529          WRB HGNC:12790
9914               22       39380245     39428529          WRB HGNC:12790
9915               22        6507018      6507390                        
9916               22       33266359     33310188       IL10RB  HGNC:5965
9917               22       33266359     33310188       IL10RB  HGNC:5965
9918               22       33266359     33310188       IL10RB  HGNC:5965
9919               22       33266359     33310188       IL10RB  HGNC:5965
9920               22       33266359     33310188       IL10RB  HGNC:5965
9921               22       33266359     33310188       IL10RB  HGNC:5965
9922               22       33266359     33310188       IL10RB  HGNC:5965
9923               22       33266359     33310188       IL10RB  HGNC:5965
9924               22       33266359     33310188       IL10RB  HGNC:5965
9925               22       33266359     33310188       IL10RB  HGNC:5965
9926               22       33266359     33310188       IL10RB  HGNC:5965
9927               22       33266359     33310188       IL10RB  HGNC:5965
9928               22       33266359     33310188       IL10RB  HGNC:5965
9929               22       33266359     33310188       IL10RB  HGNC:5965
9930               22       33266359     33310188       IL10RB  HGNC:5965
9931               22       33266359     33310188       IL10RB  HGNC:5965
9932               22       33266359     33310188       IL10RB  HGNC:5965
9933               22       33266359     33310188       IL10RB  HGNC:5965
9934               22       33266359     33310188       IL10RB  HGNC:5965
9935               22       33266359     33310188       IL10RB  HGNC:5965
9936               22       33266359     33310188       IL10RB  HGNC:5965
9937               22       33266359     33310188       IL10RB  HGNC:5965
9938               22       33266359     33310188       IL10RB  HGNC:5965
9939               22       33266359     33310188       IL10RB  HGNC:5965
9940               22       33266359     33310188       IL10RB  HGNC:5965
9941               22       33266359     33310188       IL10RB  HGNC:5965
9942               22       33266359     33310188       IL10RB  HGNC:5965
9943               22       33266359     33310188       IL10RB  HGNC:5965
9944               22       33266359     33310188       IL10RB  HGNC:5965
9945               22       33266359     33310188       IL10RB  HGNC:5965
9946               22       33266359     33310188       IL10RB  HGNC:5965
9947               22       33266359     33310188       IL10RB  HGNC:5965
9948               22       33266359     33310188       IL10RB  HGNC:5965
9949               22        8393420      8394342                        
9950               22        8210385      8211307                        
9951               22        7768885      7770592                        
9952               22       44244546     44244994                        
9953               22        7135335      7137790                        
9954               22        6272136      6276533                        
9955               22        6272136      6276533                        
9956               22        6272136      6276533                        
9957               22        6272136      6276533                        
9958               22        6272136      6276533                        
9959               22        6272136      6276533                        
9960               22        6272136      6276533                        
9961               22        6272136      6276533                        
9962               22        6272136      6276533                        
9963               22        6272136      6276533                        
9964               22       36430361     36481071                        
9965               22       36430361     36481071                        
9966               22       36485868     36487761                        
9967               22       20256753     20258821                        
9968               22       20256753     20258821                        
9969               22       19620696     19621546                        
9970               22       19046311     19047685                        
9971               22       19046311     19047685                        
9972               22       35136639     35139223                        
9973               22       35136639     35139223                        
9974               22       17788968     17819387     C21orf91 HGNC:16459
9975               22       17788968     17819387     C21orf91 HGNC:16459
9976               22       17788968     17819387     C21orf91 HGNC:16459
9977               22       17788968     17819387     C21orf91 HGNC:16459
9978               22       17788968     17819387     C21orf91 HGNC:16459
9979               22       17788968     17819387     C21orf91 HGNC:16459
9980               22       17788968     17819387     C21orf91 HGNC:16459
9981               22       17788968     17819387     C21orf91 HGNC:16459
9982               22       17788968     17819387     C21orf91 HGNC:16459
9983               22       17788968     17819387     C21orf91 HGNC:16459
9984               22       17788968     17819387     C21orf91 HGNC:16459
9985               22       17788968     17819387     C21orf91 HGNC:16459
9986               22       17788968     17819387     C21orf91 HGNC:16459
9987               22       17788968     17819387     C21orf91 HGNC:16459
9988               22       17788968     17819387     C21orf91 HGNC:16459
9989               22       17788968     17819387     C21orf91 HGNC:16459
9990               22       17788968     17819387     C21orf91 HGNC:16459
9991               22       17788968     17819387     C21orf91 HGNC:16459
9992               22       17788968     17819387     C21orf91 HGNC:16459
9993               22       17788968     17819387     C21orf91 HGNC:16459
9994               22       17788968     17819387     C21orf91 HGNC:16459
9995               22       17788968     17819387     C21orf91 HGNC:16459
9996               22       17788968     17819387     C21orf91 HGNC:16459
9997               22       17788968     17819387     C21orf91 HGNC:16459
9998               22       17788968     17819387     C21orf91 HGNC:16459
9999               22       28439347     28674849                        
      strand                       gene_biotype
1          2                             snoRNA
2          2                           misc_RNA
3          2                           misc_RNA
4          0                           misc_RNA
5          2                          antisense
6          2                          antisense
7          0                     protein_coding
8          0                     protein_coding
9          0                     protein_coding
10         0                     protein_coding
11         0                     protein_coding
12         0                     protein_coding
13         0                     protein_coding
14         0                     protein_coding
15         0                     protein_coding
16         0                     protein_coding
17         0                     protein_coding
18         0                     protein_coding
19         0                     protein_coding
20         0                     protein_coding
21         0                     protein_coding
22         0                     protein_coding
23         0                     protein_coding
24         0                     protein_coding
25         0                     protein_coding
26         0                     protein_coding
27         0                     protein_coding
28         0                     protein_coding
29         0                     protein_coding
30         0                     protein_coding
31         0                     protein_coding
32         0                     protein_coding
33         0                     protein_coding
34         0                     protein_coding
35         0                     protein_coding
36         0                     protein_coding
37         0                     protein_coding
38         0                     protein_coding
39         0                     protein_coding
40         0                     protein_coding
41         0                     protein_coding
42         0                     protein_coding
43         0                     protein_coding
44         0                     protein_coding
45         0                     protein_coding
46         0                     protein_coding
47         0                     protein_coding
48         0                     protein_coding
49         0                     protein_coding
50         0                     protein_coding
51         0                     protein_coding
52         0                     protein_coding
53         0                     protein_coding
54         0                     protein_coding
55         0                     protein_coding
56         0                     protein_coding
57         0                     protein_coding
58         0                     protein_coding
59         0                     protein_coding
60         0                     protein_coding
61         0                     protein_coding
62         0                     protein_coding
63         0                     protein_coding
64         0                     protein_coding
65         0                     protein_coding
66         0                     protein_coding
67         0                     protein_coding
68         0                     protein_coding
69         0                     protein_coding
70         0                     protein_coding
71         0                     protein_coding
72         0                     protein_coding
73         0                     protein_coding
74         0                     protein_coding
75         0                     protein_coding
76         0                     protein_coding
77         0                     protein_coding
78         0                     protein_coding
79         0                     protein_coding
80         0                     protein_coding
81         0                     protein_coding
82         0                     protein_coding
83         0                     protein_coding
84         0                     protein_coding
85         0                     protein_coding
86         0                     protein_coding
87         0                     protein_coding
88         0                     protein_coding
89         0                     protein_coding
90         0                     protein_coding
91         0                     protein_coding
92         0                     protein_coding
93         0                     protein_coding
94         0                     protein_coding
95         0                     protein_coding
96         0                     protein_coding
97         0                     protein_coding
98         0                     protein_coding
99         0                     protein_coding
100        0                     protein_coding
101        0                     protein_coding
102        0                     protein_coding
103        0                     protein_coding
104        0                     protein_coding
105        0                     protein_coding
106        0                     protein_coding
107        0                     protein_coding
108        0                     protein_coding
109        0                     protein_coding
110        0                     protein_coding
111        0                     protein_coding
112        0                     protein_coding
113        0                     protein_coding
114        0                     protein_coding
115        0                     protein_coding
116        0                     protein_coding
117        0                     protein_coding
118        0                     protein_coding
119        0                     protein_coding
120        0                     protein_coding
121        0                     protein_coding
122        0                     protein_coding
123        0                     protein_coding
124        0                     protein_coding
125        0                     protein_coding
126        0                     protein_coding
127        0                     protein_coding
128        0                     protein_coding
129        0                     protein_coding
130        0                     protein_coding
131        0                     protein_coding
132        0                     protein_coding
133        0                     protein_coding
134        0                     protein_coding
135        0                     protein_coding
136        0                     protein_coding
137        0                     protein_coding
138        0                     protein_coding
139        0                     protein_coding
140        0                     protein_coding
141        0                     protein_coding
142        0                     protein_coding
143        0                     protein_coding
144        0                     protein_coding
145        0                     protein_coding
146        0                     protein_coding
147        0                     protein_coding
148        0                     protein_coding
149        0                     protein_coding
150        0                     protein_coding
151        0                     protein_coding
152        0                     protein_coding
153        0                     protein_coding
154        0                     protein_coding
155        0                     protein_coding
156        0                     protein_coding
157        0                     protein_coding
158        0                     protein_coding
159        0                     protein_coding
160        0                     protein_coding
161        0                     protein_coding
162        0                     protein_coding
163        0                     protein_coding
164        0                     protein_coding
165        0                     protein_coding
166        0                     protein_coding
167        0                     protein_coding
168        0                     protein_coding
169        0                     protein_coding
170        0                     protein_coding
171        0                     protein_coding
172        0                     protein_coding
173        0                     protein_coding
174        0                     protein_coding
175        0                     protein_coding
176        0                     protein_coding
177        0                     protein_coding
178        0                     protein_coding
179        0                     protein_coding
180        0                     protein_coding
181        0                     protein_coding
182        0                     protein_coding
183        0                     protein_coding
184        0                     protein_coding
185        0                     protein_coding
186        0                     protein_coding
187        0                     protein_coding
188        0                     protein_coding
189        0                     protein_coding
190        0                     protein_coding
191        0                     protein_coding
192        0                     protein_coding
193        0                     protein_coding
194        0                     protein_coding
195        0                     protein_coding
196        0                     protein_coding
197        0                     protein_coding
198        0                     protein_coding
199        0                     protein_coding
200        0                     protein_coding
201        0                     protein_coding
202        0                     protein_coding
203        2                               rRNA
204        0                              snRNA
205        0                         pseudogene
206        0                         pseudogene
207        2                              miRNA
208        0                              snRNA
209        0                           misc_RNA
210        2                              snRNA
211        0                              miRNA
212        0                     protein_coding
213        0                     protein_coding
214        0                     protein_coding
215        0                     protein_coding
216        0                     protein_coding
217        0                     protein_coding
218        0                     protein_coding
219        0                     protein_coding
220        0                     protein_coding
221        2                     protein_coding
222        2                     protein_coding
223        2                     protein_coding
224        2                     protein_coding
225        2                     protein_coding
226        2                     protein_coding
227        2                     protein_coding
228        2                     protein_coding
229        2                     protein_coding
230        2                     protein_coding
231        2                     protein_coding
232        2                     protein_coding
233        2                     protein_coding
234        2                     protein_coding
235        2                     protein_coding
236        2                     protein_coding
237        2                     protein_coding
238        2                     protein_coding
239        2                     protein_coding
240        2                     protein_coding
241        2                     protein_coding
242        2                     protein_coding
243        2                     protein_coding
244        2                     protein_coding
245        2                     protein_coding
246        2                     protein_coding
247        2                     protein_coding
248        2                     protein_coding
249        2                     protein_coding
250        2                     protein_coding
251        2                     protein_coding
252        2                     protein_coding
253        2                     protein_coding
254        2                     protein_coding
255        2                     protein_coding
256        2                     protein_coding
257        2                     protein_coding
258        2                     protein_coding
259        2                     protein_coding
260        2                     protein_coding
261        2                     protein_coding
262        2                     protein_coding
263        2                     protein_coding
264        2                     protein_coding
265        2                     protein_coding
266        2                     protein_coding
267        2                     protein_coding
268        2                     protein_coding
269        2                     protein_coding
270        2                     protein_coding
271        2                     protein_coding
272        2                     protein_coding
273        2                     protein_coding
274        2                     protein_coding
275        2                     protein_coding
276        2                     protein_coding
277        2                     protein_coding
278        2                     protein_coding
279        2                     protein_coding
280        2                     protein_coding
281        2                     protein_coding
282        2                     protein_coding
283        2                     protein_coding
284        2                     protein_coding
285        2                     protein_coding
286        2                     protein_coding
287        2                     protein_coding
288        2                     protein_coding
289        2                     protein_coding
290        2                     protein_coding
291        2                     protein_coding
292        2                     protein_coding
293        2                     protein_coding
294        2                     protein_coding
295        2                     protein_coding
296        2                     protein_coding
297        2                     protein_coding
298        2                     protein_coding
299        2                     protein_coding
300        2                     protein_coding
301        2                     protein_coding
302        2                     protein_coding
303        2                     protein_coding
304        2                     protein_coding
305        2                     protein_coding
306        2                     protein_coding
307        2                     protein_coding
308        2                     protein_coding
309        2                     protein_coding
310        2                     protein_coding
311        2                     protein_coding
312        2                     protein_coding
313        2                     protein_coding
314        2                     protein_coding
315        2                     protein_coding
316        2                     protein_coding
317        2                     protein_coding
318        2                     protein_coding
319        2                     protein_coding
320        2                     protein_coding
321        2                     protein_coding
322        2                     protein_coding
323        2                     protein_coding
324        2                     protein_coding
325        2                     protein_coding
326        2                     protein_coding
327        2                     protein_coding
328        2                     protein_coding
329        2                     protein_coding
330        2                     protein_coding
331        2                     protein_coding
332        2                     protein_coding
333        2                     protein_coding
334        2                     protein_coding
335        2                     protein_coding
336        2                     protein_coding
337        2                     protein_coding
338        2                     protein_coding
339        2                     protein_coding
340        2                     protein_coding
341        2                     protein_coding
342        2                     protein_coding
343        2                     protein_coding
344        2                     protein_coding
345        2                     protein_coding
346        2                     protein_coding
347        2                     protein_coding
348        2                     protein_coding
349        2                     protein_coding
350        2                     protein_coding
351        2                     protein_coding
352        2                     protein_coding
353        2                     protein_coding
354        2                     protein_coding
355        2                     protein_coding
356        2                     protein_coding
357        2                     protein_coding
358        2                     protein_coding
359        2                     protein_coding
360        2                     protein_coding
361        2                     protein_coding
362        2                     protein_coding
363        2                     protein_coding
364        2                     protein_coding
365        2                     protein_coding
366        2                     protein_coding
367        2                     protein_coding
368        2                     protein_coding
369        2                     protein_coding
370        2                     protein_coding
371        2                     protein_coding
372        2                     protein_coding
373        2                     protein_coding
374        2                     protein_coding
375        2                     protein_coding
376        2                     protein_coding
377        2                     protein_coding
378        2                     protein_coding
379        2                     protein_coding
380        2                     protein_coding
381        2                     protein_coding
382        2                     protein_coding
383        2                     protein_coding
384        2                     protein_coding
385        2                     protein_coding
386        2                     protein_coding
387        2                     protein_coding
388        2                     protein_coding
389        2                     protein_coding
390        2                     protein_coding
391        2                     protein_coding
392        2                     protein_coding
393        2                     protein_coding
394        2                     protein_coding
395        2                     protein_coding
396        2                     protein_coding
397        2                     protein_coding
398        2                     protein_coding
399        2                     protein_coding
400        2                     protein_coding
401        2                     protein_coding
402        2                     protein_coding
403        2                     protein_coding
404        2                     protein_coding
405        2                     protein_coding
406        2                     protein_coding
407        2                     protein_coding
408        2                     protein_coding
409        2                     protein_coding
410        2                     protein_coding
411        2                     protein_coding
412        0                              snRNA
413        2                              miRNA
414        2                              miRNA
415        0                             snoRNA
416        2                              miRNA
417        0                              miRNA
418        0                              miRNA
419        2                          antisense
420        2                          antisense
421        0                     protein_coding
422        0                     protein_coding
423        2                          antisense
424        2                     protein_coding
425        2                     protein_coding
426        2                     protein_coding
427        2                     protein_coding
428        2                     protein_coding
429        2                     protein_coding
430        2                     protein_coding
431        2                     protein_coding
432        2                     protein_coding
433        2                     protein_coding
434        2                     protein_coding
435        2                     protein_coding
436        2                     protein_coding
437        2                     protein_coding
438        2                     protein_coding
439        2                     protein_coding
440        2                     protein_coding
441        2                     protein_coding
442        2                     protein_coding
443        2                     protein_coding
444        2                     protein_coding
445        2                     protein_coding
446        2                     protein_coding
447        2                     protein_coding
448        2                     protein_coding
449        2                     protein_coding
450        2                     protein_coding
451        2                     protein_coding
452        2                     protein_coding
453        2                     protein_coding
454        2                     protein_coding
455        2                     protein_coding
456        2                     protein_coding
457        2                     protein_coding
458        2                     protein_coding
459        2                     protein_coding
460        2                     protein_coding
461        2                     protein_coding
462        2                     protein_coding
463        2                     protein_coding
464        2                     protein_coding
465        2                     protein_coding
466        2                     protein_coding
467        2                     protein_coding
468        2                     protein_coding
469        2                     protein_coding
470        2                     protein_coding
471        2                     protein_coding
472        2                     protein_coding
473        2                     protein_coding
474        2                     protein_coding
475        2                     protein_coding
476        2                     protein_coding
477        2                     protein_coding
478        2                     protein_coding
479        2                     protein_coding
480        2                     protein_coding
481        2                     protein_coding
482        2                     protein_coding
483        2                     protein_coding
484        2                     protein_coding
485        2                     protein_coding
486        2                     protein_coding
487        2                     protein_coding
488        2                     protein_coding
489        2                     protein_coding
490        2                     protein_coding
491        2                     protein_coding
492        2                     protein_coding
493        2                     protein_coding
494        2                     protein_coding
495        2                     protein_coding
496        2                     protein_coding
497        2                     protein_coding
498        2                     protein_coding
499        2                     protein_coding
500        2                     protein_coding
501        2                     protein_coding
502        2                     protein_coding
503        2                     protein_coding
504        2                     protein_coding
505        2                     protein_coding
506        2                     protein_coding
507        2                     protein_coding
508        2                     protein_coding
509        2                     protein_coding
510        2                     protein_coding
511        2                     protein_coding
512        2                     protein_coding
513        2                     protein_coding
514        2                     protein_coding
515        2                     protein_coding
516        2                     protein_coding
517        2                     protein_coding
518        2                     protein_coding
519        2                     protein_coding
520        2                     protein_coding
521        2                     protein_coding
522        2                     protein_coding
523        2                     protein_coding
524        2                     protein_coding
525        2                     protein_coding
526        2                     protein_coding
527        2                     protein_coding
528        2                     protein_coding
529        2                     protein_coding
530        2                     protein_coding
531        2                     protein_coding
532        2                     protein_coding
533        2                     protein_coding
534        2                     protein_coding
535        2                     protein_coding
536        2                     protein_coding
537        2                     protein_coding
538        2                     protein_coding
539        2                     protein_coding
540        2                     protein_coding
541        2                     protein_coding
542        2                     protein_coding
543        2                     protein_coding
544        2                     protein_coding
545        2                     protein_coding
546        2                     protein_coding
547        2                     protein_coding
548        0                     protein_coding
549        0                     protein_coding
550        0                     protein_coding
551        0                     protein_coding
552        0                     protein_coding
553        0                          antisense
554        0                          antisense
555        0                          antisense
556        0                          antisense
557        2                           misc_RNA
558        0                           misc_RNA
559        2                          antisense
560        2                          antisense
561        0                            lincRNA
562        0                            lincRNA
563        2                            lincRNA
564        2                            lincRNA
565        2                            lincRNA
566        2                            lincRNA
567        2                            lincRNA
568        2                            lincRNA
569        2                            lincRNA
570        2                     sense_intronic
571        2                     sense_intronic
572        2                     sense_intronic
573        2                     protein_coding
574        2                     protein_coding
575        2                     protein_coding
576        2                     protein_coding
577        2                     protein_coding
578        2                     protein_coding
579        2                     protein_coding
580        2                     protein_coding
581        2                     protein_coding
582        2                     protein_coding
583        2                     protein_coding
584        2                     protein_coding
585        2                     protein_coding
586        2                     protein_coding
587        2                     protein_coding
588        2                     protein_coding
589        2                     protein_coding
590        2                     protein_coding
591        2                     protein_coding
592        2                     protein_coding
593        2                     protein_coding
594        2                     protein_coding
595        2                     protein_coding
596        2                     protein_coding
597        2                     protein_coding
598        2                     protein_coding
599        2                     protein_coding
600        2                     protein_coding
601        2                     protein_coding
602        2                     protein_coding
603        2                     protein_coding
604        2                     protein_coding
605        2                     protein_coding
606        2                     protein_coding
607        2                     protein_coding
608        2                     protein_coding
609        2                     protein_coding
610        2                     protein_coding
611        2                     protein_coding
612        2                     protein_coding
613        2                     protein_coding
614        2                     protein_coding
615        2                     protein_coding
616        2                     protein_coding
617        2                     protein_coding
618        2                     sense_intronic
619        0                            lincRNA
620        0                            lincRNA
621        0                            lincRNA
622        0                            lincRNA
623        0                            lincRNA
624        0                            lincRNA
625        0                            lincRNA
626        0                            lincRNA
627        0                            lincRNA
628        0                            lincRNA
629        0                            lincRNA
630        0                            lincRNA
631        0                            lincRNA
632        0                            lincRNA
633        0                            lincRNA
634        0                            lincRNA
635        0                            lincRNA
636        0                            lincRNA
637        0                            lincRNA
638        0                            lincRNA
639        0                            lincRNA
640        2                               rRNA
641        2                           misc_RNA
642        2                              miRNA
643        0               processed_pseudogene
644        0                            lincRNA
645        0                            lincRNA
646        0                            lincRNA
647        0                            lincRNA
648        0                            lincRNA
649        0                            lincRNA
650        0                            lincRNA
651        0                            lincRNA
652        0                            lincRNA
653        0                            lincRNA
654        0                            lincRNA
655        0                            lincRNA
656        0                            lincRNA
657        0                            lincRNA
658        0                            lincRNA
659        0                            lincRNA
660        0                            lincRNA
661        0                            lincRNA
662        0                            lincRNA
663        0                            lincRNA
664        2                          antisense
665        2                          antisense
666        2                          antisense
667        2                          antisense
668        2                          antisense
669        2                          antisense
670        2                          antisense
671        2                     protein_coding
672        0                             snoRNA
673        2                              miRNA
674        0                     protein_coding
675        0                     protein_coding
676        0                     protein_coding
677        0                     protein_coding
678        0                     protein_coding
679        0                     protein_coding
680        0                     protein_coding
681        0                     protein_coding
682        0                     protein_coding
683        0                     protein_coding
684        0                     protein_coding
685        0                     protein_coding
686        0                     protein_coding
687        0                     protein_coding
688        0                     protein_coding
689        0                     protein_coding
690        0                     protein_coding
691        0                     protein_coding
692        0                     protein_coding
693        0                     protein_coding
694        0                     protein_coding
695        0                     protein_coding
696        0                     protein_coding
697        0                     protein_coding
698        0                     protein_coding
699        0                     protein_coding
700        0                     protein_coding
701        0                     protein_coding
702        0                     protein_coding
703        0                     protein_coding
704        0                     protein_coding
705        0                     protein_coding
706        0                     protein_coding
707        0                     protein_coding
708        0                     protein_coding
709        0                     protein_coding
710        0                     protein_coding
711        0                     protein_coding
712        0                     protein_coding
713        0                     protein_coding
714        0                     protein_coding
715        0                     protein_coding
716        0                     protein_coding
717        0                     protein_coding
718        0                     protein_coding
719        0                     protein_coding
720        0                     protein_coding
721        0                     protein_coding
722        0                     protein_coding
723        0                     protein_coding
724        0                     protein_coding
725        0                     protein_coding
726        0                     protein_coding
727        0                     protein_coding
728        0                     protein_coding
729        0                     protein_coding
730        0                     protein_coding
731        0                     protein_coding
732        0                     protein_coding
733        0                     protein_coding
734        0                     protein_coding
735        2                     protein_coding
736        0                            lincRNA
737        0                            lincRNA
738        2                     protein_coding
739        2                     protein_coding
740        2                     protein_coding
741        2                     protein_coding
742        2                     protein_coding
743        2                     protein_coding
744        2                     protein_coding
745        2                     protein_coding
746        2                     protein_coding
747        2                     protein_coding
748        2                     protein_coding
749        2                     protein_coding
750        2                     protein_coding
751        2                     protein_coding
752        2                     protein_coding
753        2                     protein_coding
754        2                     protein_coding
755        2                     protein_coding
756        2                     protein_coding
757        2                     protein_coding
758        2                     protein_coding
759        2                     protein_coding
760        2                     protein_coding
761        2                     protein_coding
762        2                     protein_coding
763        2                     protein_coding
764        2                     protein_coding
765        2                     protein_coding
766        2                     protein_coding
767        2                     protein_coding
768        2                     protein_coding
769        2                     protein_coding
770        2                     protein_coding
771        2                     protein_coding
772        2                     protein_coding
773        2                     protein_coding
774        2                     protein_coding
775        2                     protein_coding
776        2                     protein_coding
777        2                     protein_coding
778        2                     protein_coding
779        2                     protein_coding
780        2                     protein_coding
781        2                     protein_coding
782        2                     protein_coding
783        2                     protein_coding
784        2                     protein_coding
785        2                     protein_coding
786        2                     protein_coding
787        2                     protein_coding
788        2                     protein_coding
789        2                     protein_coding
790        2                     protein_coding
791        2                     protein_coding
792        2                     protein_coding
793        2                     protein_coding
794        2                     protein_coding
795        2                     protein_coding
796        2                     protein_coding
797        2                     protein_coding
798        2                     protein_coding
799        2                     protein_coding
800        2                     protein_coding
801        2                     protein_coding
802        2                     protein_coding
803        0                          antisense
804        0                          antisense
805        0                          antisense
806        0                          antisense
807        0                          antisense
808        0                          antisense
809        0                          antisense
810        2               processed_pseudogene
811        2                              snRNA
812        2                           misc_RNA
813        0                     sense_intronic
814        0                     protein_coding
815        0                     protein_coding
816        0                     protein_coding
817        0                     protein_coding
818        0                     protein_coding
819        0                     protein_coding
820        0                     protein_coding
821        0                     protein_coding
822        0                     protein_coding
823        0                     protein_coding
824        0                     protein_coding
825        0                     protein_coding
826        0                     protein_coding
827        0                     protein_coding
828        0                     protein_coding
829        0                     protein_coding
830        0                     protein_coding
831        0                     protein_coding
832        0                     protein_coding
833        0                     protein_coding
834        0                     protein_coding
835        0                     protein_coding
836        0                     protein_coding
837        0                     protein_coding
838        0                     protein_coding
839        0                     protein_coding
840        0                     protein_coding
841        0                     protein_coding
842        0                     protein_coding
843        0                     protein_coding
844        0                     protein_coding
845        0                     protein_coding
846        0                     protein_coding
847        0                     protein_coding
848        0                     protein_coding
849        0                     protein_coding
850        0                     protein_coding
851        0                     protein_coding
852        0                     protein_coding
853        0                     protein_coding
854        0                     protein_coding
855        0                     protein_coding
856        0                     protein_coding
857        0                     protein_coding
858        0                     protein_coding
859        0                     protein_coding
860        0                     protein_coding
861        0                     protein_coding
862        0                     protein_coding
863        0                     protein_coding
864        0                     protein_coding
865        0                     protein_coding
866        0                     protein_coding
867        0                     protein_coding
868        0                     protein_coding
869        0                     protein_coding
870        0                     protein_coding
871        0                     protein_coding
872        0                     protein_coding
873        0                     protein_coding
874        0                     protein_coding
875        0                     protein_coding
876        0                     protein_coding
877        0                     protein_coding
878        0                     protein_coding
879        0                     protein_coding
880        0                     protein_coding
881        0                     protein_coding
882        0                     protein_coding
883        0                     protein_coding
884        0                     protein_coding
885        0                     protein_coding
886        0                     protein_coding
887        0                     protein_coding
888        0                     protein_coding
889        0                     protein_coding
890        0                     protein_coding
891        0                     protein_coding
892        0                     protein_coding
893        0                     protein_coding
894        0                     protein_coding
895        0                     protein_coding
896        0                     protein_coding
897        0                     protein_coding
898        0                     protein_coding
899        0                     protein_coding
900        0                     protein_coding
901        0                     protein_coding
902        0                     protein_coding
903        0                     protein_coding
904        0                     protein_coding
905        0                     protein_coding
906        0                     protein_coding
907        0                     protein_coding
908        0                     protein_coding
909        0                     protein_coding
910        0                     protein_coding
911        0                     protein_coding
912        0                     protein_coding
913        0                     protein_coding
914        0                     protein_coding
915        0                     protein_coding
916        0                     protein_coding
917        0                     protein_coding
918        0                     protein_coding
919        0                     protein_coding
920        0                     protein_coding
921        0                     protein_coding
922        0                     protein_coding
923        0                     protein_coding
924        0                     protein_coding
925        0                     protein_coding
926        0                     protein_coding
927        0                     protein_coding
928        0                     protein_coding
929        0                     protein_coding
930        0                     protein_coding
931        0                     protein_coding
932        0                     protein_coding
933        2                              miRNA
934        2                              miRNA
935        2                              miRNA
936        2                              snRNA
937        2                              snRNA
938        2                     protein_coding
939        2               processed_pseudogene
940        2                          antisense
941        2                          antisense
942        2                          antisense
943        2                          antisense
944        2                          antisense
945        2                          antisense
946        2                          antisense
947        2                          antisense
948        2                          antisense
949        2                          antisense
950        2                              miRNA
951        0                              snRNA
952        2                               rRNA
953        2                              snRNA
954        2                              miRNA
955        0                            lincRNA
956        0                            lincRNA
957        0                            lincRNA
958        0                            lincRNA
959        0                            lincRNA
960        0                            lincRNA
961        0                            lincRNA
962        0                            lincRNA
963        0                            lincRNA
964        0                            lincRNA
965        0                            lincRNA
966        0                            lincRNA
967        0                            lincRNA
968        0                            lincRNA
969        0                            lincRNA
970        0                            lincRNA
971        0                            lincRNA
972        0                            lincRNA
973        0                            lincRNA
974        0                            lincRNA
975        0                            lincRNA
976        0                            lincRNA
977        0                            lincRNA
978        2                     protein_coding
979        2                     protein_coding
980        2                     protein_coding
981        2                     protein_coding
982        2                     protein_coding
983        2                     protein_coding
984        2                     protein_coding
985        2                     protein_coding
986        2                     protein_coding
987        2                     protein_coding
988        2                     protein_coding
989        2                     protein_coding
990        2                     protein_coding
991        2                     protein_coding
992        2                     protein_coding
993        2                     protein_coding
994        2                     protein_coding
995        2                     protein_coding
996        2                     protein_coding
997        2                     protein_coding
998        2                     protein_coding
999        2                     protein_coding
1000       2                     protein_coding
1001       2                     protein_coding
1002       2                     protein_coding
1003       2                     protein_coding
1004       2                     protein_coding
1005       2                     protein_coding
1006       2                     protein_coding
1007       2                     protein_coding
1008       2                     protein_coding
1009       2                     protein_coding
1010       2                     protein_coding
1011       2                     protein_coding
1012       2                     protein_coding
1013       2                     protein_coding
1014       2                     protein_coding
1015       2                     protein_coding
1016       2                     protein_coding
1017       2                     protein_coding
1018       2                     protein_coding
1019       2                     protein_coding
1020       2                     protein_coding
1021       2                     protein_coding
1022       2                     protein_coding
1023       2                     protein_coding
1024       2                     protein_coding
1025       2                     protein_coding
1026       2                     protein_coding
1027       2                     protein_coding
1028       2                     protein_coding
1029       2                     protein_coding
1030       2                     protein_coding
1031       2                     protein_coding
1032       2                     protein_coding
1033       2                     protein_coding
1034       2                     protein_coding
1035       2                     protein_coding
1036       2                     protein_coding
1037       2                     protein_coding
1038       2                     protein_coding
1039       2                     protein_coding
1040       2                     protein_coding
1041       2                     protein_coding
1042       2                     protein_coding
1043       2                     protein_coding
1044       2                     protein_coding
1045       2                     protein_coding
1046       2                     protein_coding
1047       2                     protein_coding
1048       2                     protein_coding
1049       2                     protein_coding
1050       0               processed_pseudogene
1051       2                     protein_coding
1052       2                     protein_coding
1053       2                     protein_coding
1054       2                     protein_coding
1055       2                     protein_coding
1056       2                     protein_coding
1057       2                     protein_coding
1058       2                     protein_coding
1059       2                     protein_coding
1060       2                     protein_coding
1061       2                     protein_coding
1062       2                     protein_coding
1063       2                     protein_coding
1064       2                     protein_coding
1065       2                     protein_coding
1066       2                     protein_coding
1067       2                     protein_coding
1068       2                     protein_coding
1069       2                     protein_coding
1070       2                     protein_coding
1071       2                     protein_coding
1072       2                     protein_coding
1073       2                     protein_coding
1074       2                     protein_coding
1075       2                     protein_coding
1076       2                     protein_coding
1077       2                     protein_coding
1078       2                     protein_coding
1079       2                     protein_coding
1080       2                     protein_coding
1081       2                     protein_coding
1082       2                     protein_coding
1083       2                     protein_coding
1084       2                     protein_coding
1085       2                     protein_coding
1086       2                     protein_coding
1087       2                     protein_coding
1088       2                     protein_coding
1089       2                     protein_coding
1090       2                     protein_coding
1091       2                     protein_coding
1092       2                     protein_coding
1093       2                     protein_coding
1094       2                     protein_coding
1095       2                     protein_coding
1096       2                     protein_coding
1097       2                     protein_coding
1098       2                     protein_coding
1099       2                     protein_coding
1100       2                     protein_coding
1101       2                     protein_coding
1102       2                     protein_coding
1103       2                     protein_coding
1104       2                     protein_coding
1105       2                     protein_coding
1106       2                     protein_coding
1107       2                     protein_coding
1108       2                     protein_coding
1109       2                     protein_coding
1110       2                     protein_coding
1111       2                     protein_coding
1112       2                     protein_coding
1113       2                     protein_coding
1114       2                     protein_coding
1115       0                     protein_coding
1116       0                     protein_coding
1117       0                     protein_coding
1118       0                     protein_coding
1119       0                     protein_coding
1120       0                     protein_coding
1121       0                     protein_coding
1122       0                     protein_coding
1123       2                            lincRNA
1124       2                            lincRNA
1125       2                            lincRNA
1126       2                            lincRNA
1127       2                            lincRNA
1128       0                            lincRNA
1129       0                            lincRNA
1130       0                            lincRNA
1131       2                     protein_coding
1132       2                     protein_coding
1133       2                     protein_coding
1134       2                     protein_coding
1135       2                     protein_coding
1136       2                     protein_coding
1137       2                     protein_coding
1138       2                     protein_coding
1139       2                     protein_coding
1140       2                     protein_coding
1141       2                     protein_coding
1142       2                     protein_coding
1143       2                     protein_coding
1144       2                     protein_coding
1145       2                     protein_coding
1146       2                     protein_coding
1147       2                     protein_coding
1148       2                     protein_coding
1149       2                     protein_coding
1150       2                     protein_coding
1151       2                     protein_coding
1152       2                     protein_coding
1153       2                     protein_coding
1154       2                     protein_coding
1155       2                     protein_coding
1156       2                     protein_coding
1157       2                     protein_coding
1158       2                     protein_coding
1159       2                     protein_coding
1160       2                     protein_coding
1161       2                     protein_coding
1162       2                     protein_coding
1163       2                     protein_coding
1164       2                     protein_coding
1165       2                     protein_coding
1166       2                     protein_coding
1167       2                     protein_coding
1168       2                     protein_coding
1169       2                     protein_coding
1170       2                     protein_coding
1171       2                     protein_coding
1172       2                     protein_coding
1173       2                     protein_coding
1174       2                     protein_coding
1175       2                     protein_coding
1176       2                     protein_coding
1177       2                     protein_coding
1178       2                     protein_coding
1179       2                     protein_coding
1180       2                     protein_coding
1181       2                     protein_coding
1182       2                     protein_coding
1183       2                     protein_coding
1184       2                     protein_coding
1185       2                     protein_coding
1186       2                     protein_coding
1187       2                     protein_coding
1188       2                     protein_coding
1189       2                     protein_coding
1190       2                     protein_coding
1191       2                     protein_coding
1192       2                     protein_coding
1193       2                     protein_coding
1194       2                     protein_coding
1195       2                     protein_coding
1196       2                     protein_coding
1197       2                     protein_coding
1198       2                     protein_coding
1199       2                     protein_coding
1200       2                     protein_coding
1201       2                     protein_coding
1202       2                     protein_coding
1203       2                     protein_coding
1204       2                     protein_coding
1205       2                     protein_coding
1206       2                     protein_coding
1207       2                     protein_coding
1208       2                     protein_coding
1209       2                     protein_coding
1210       2                     protein_coding
1211       2                     protein_coding
1212       2                     protein_coding
1213       2                     protein_coding
1214       2                     protein_coding
1215       2                     protein_coding
1216       2                     protein_coding
1217       2                     protein_coding
1218       2                     protein_coding
1219       2                     protein_coding
1220       2                     protein_coding
1221       2                     protein_coding
1222       2                     protein_coding
1223       2                     protein_coding
1224       2                     protein_coding
1225       2                     protein_coding
1226       2                     protein_coding
1227       2                     protein_coding
1228       2                     protein_coding
1229       2                     protein_coding
1230       2                     protein_coding
1231       2                     protein_coding
1232       2                     protein_coding
1233       2                     protein_coding
1234       2                     protein_coding
1235       2                     protein_coding
1236       2                     protein_coding
1237       2                     protein_coding
1238       2                     protein_coding
1239       2                     protein_coding
1240       2                     protein_coding
1241       2                     protein_coding
1242       2                     protein_coding
1243       2                     protein_coding
1244       2                     protein_coding
1245       2                     protein_coding
1246       0                          antisense
1247       0                          antisense
1248       2                            lincRNA
1249       0                     protein_coding
1250       2                     protein_coding
1251       2                     protein_coding
1252       2                     protein_coding
1253       2                     protein_coding
1254       2                     protein_coding
1255       2                     protein_coding
1256       2                     protein_coding
1257       2                     protein_coding
1258       2                     protein_coding
1259       2                     protein_coding
1260       2                     protein_coding
1261       2                     protein_coding
1262       2                     protein_coding
1263       2                     protein_coding
1264       2                     protein_coding
1265       2                     protein_coding
1266       2                     protein_coding
1267       2                     protein_coding
1268       2                     protein_coding
1269       2                     protein_coding
1270       2                     protein_coding
1271       2                     protein_coding
1272       2                     protein_coding
1273       2                     protein_coding
1274       2                     protein_coding
1275       2                     protein_coding
1276       2                     protein_coding
1277       2                     protein_coding
1278       2                     protein_coding
1279       2                     protein_coding
1280       2                     protein_coding
1281       2                     protein_coding
1282       2                     protein_coding
1283       2                     protein_coding
1284       2                     protein_coding
1285       2                     protein_coding
1286       2                     protein_coding
1287       2                     protein_coding
1288       2                     protein_coding
1289       2                     protein_coding
1290       2                     protein_coding
1291       2                     protein_coding
1292       2                     protein_coding
1293       2                     protein_coding
1294       2                     protein_coding
1295       2                     protein_coding
1296       2                     protein_coding
1297       2                     protein_coding
1298       2                     protein_coding
1299       2                     protein_coding
1300       2                     protein_coding
1301       2                     protein_coding
1302       2                     protein_coding
1303       2                     protein_coding
1304       2                     protein_coding
1305       2                     protein_coding
1306       2                     protein_coding
1307       2                     protein_coding
1308       2                     protein_coding
1309       2                     protein_coding
1310       2                     protein_coding
1311       2                     protein_coding
1312       2                     protein_coding
1313       2                     protein_coding
1314       2                     protein_coding
1315       2                     protein_coding
1316       2                     protein_coding
1317       2                     protein_coding
1318       2                     protein_coding
1319       2                     protein_coding
1320       2                     protein_coding
1321       2                     protein_coding
1322       2                     protein_coding
1323       2                     protein_coding
1324       2                     protein_coding
1325       2                     protein_coding
1326       2                     protein_coding
1327       2                     protein_coding
1328       2                     protein_coding
1329       2                     protein_coding
1330       2                     protein_coding
1331       2                     protein_coding
1332       2                     protein_coding
1333       2                     protein_coding
1334       2                     protein_coding
1335       2                     protein_coding
1336       2                     protein_coding
1337       2                     protein_coding
1338       2                     protein_coding
1339       2                     protein_coding
1340       2                     protein_coding
1341       2                     protein_coding
1342       2                     protein_coding
1343       2                     protein_coding
1344       2                     protein_coding
1345       2                     protein_coding
1346       2                     protein_coding
1347       2                     protein_coding
1348       2                     protein_coding
1349       2                     protein_coding
1350       2                     protein_coding
1351       2                     protein_coding
1352       2                     protein_coding
1353       2                     protein_coding
1354       2                     protein_coding
1355       2                     protein_coding
1356       2                     protein_coding
1357       2                     protein_coding
1358       2                     protein_coding
1359       2                     protein_coding
1360       2                     protein_coding
1361       2                     protein_coding
1362       2                     protein_coding
1363       2                     protein_coding
1364       2                     protein_coding
1365       2                     protein_coding
1366       2                            lincRNA
1367       0                     protein_coding
1368       0                     protein_coding
1369       2                            lincRNA
1370       2                     protein_coding
1371       2                     protein_coding
1372       2                     protein_coding
1373       2                     protein_coding
1374       2                     protein_coding
1375       2                     protein_coding
1376       2                     protein_coding
1377       2                     protein_coding
1378       2                     protein_coding
1379       2                     protein_coding
1380       2                     protein_coding
1381       2                     protein_coding
1382       2                     protein_coding
1383       2                     protein_coding
1384       2                     protein_coding
1385       2                     protein_coding
1386       2                     protein_coding
1387       2                     protein_coding
1388       2                     protein_coding
1389       2                     protein_coding
1390       2                     protein_coding
1391       2                     protein_coding
1392       2                     protein_coding
1393       2                     protein_coding
1394       0                            lincRNA
1395       0                            lincRNA
1396       0                            lincRNA
1397       0                            lincRNA
1398       2                     protein_coding
1399       2                     protein_coding
1400       2                     protein_coding
1401       2                     protein_coding
1402       2                     protein_coding
1403       2                     protein_coding
1404       2                     protein_coding
1405       2                     protein_coding
1406       2                     protein_coding
1407       2                     protein_coding
1408       2                     protein_coding
1409       2                     protein_coding
1410       2                     protein_coding
1411       2                     protein_coding
1412       2                     protein_coding
1413       2                     protein_coding
1414       2                     protein_coding
1415       2                     protein_coding
1416       2                     protein_coding
1417       2                     protein_coding
1418       2                     protein_coding
1419       2                     protein_coding
1420       2                     protein_coding
1421       2                     protein_coding
1422       2                     protein_coding
1423       2                     protein_coding
1424       2                     protein_coding
1425       2                     protein_coding
1426       2                     protein_coding
1427       2                     protein_coding
1428       2                     protein_coding
1429       2                     protein_coding
1430       2                     protein_coding
1431       2                     protein_coding
1432       2                     protein_coding
1433       2                     protein_coding
1434       2                     protein_coding
1435       2                     protein_coding
1436       2                     protein_coding
1437       2                     protein_coding
1438       2                     protein_coding
1439       2                     protein_coding
1440       2                     protein_coding
1441       2                     protein_coding
1442       2                     protein_coding
1443       2                     protein_coding
1444       2                     protein_coding
1445       2                     protein_coding
1446       2                     protein_coding
1447       2                     protein_coding
1448       2                     protein_coding
1449       2                     protein_coding
1450       2                     protein_coding
1451       2                     protein_coding
1452       2                     protein_coding
1453       2                     protein_coding
1454       2                     protein_coding
1455       2                     protein_coding
1456       2                     protein_coding
1457       2                     protein_coding
1458       2                     protein_coding
1459       2                     protein_coding
1460       2                     protein_coding
1461       2                     protein_coding
1462       2                     protein_coding
1463       2                     protein_coding
1464       2                     protein_coding
1465       2                     protein_coding
1466       2                     protein_coding
1467       2                     protein_coding
1468       2                     protein_coding
1469       2                     protein_coding
1470       2                     protein_coding
1471       2                     protein_coding
1472       2                     protein_coding
1473       2                     protein_coding
1474       2                     protein_coding
1475       2                     protein_coding
1476       2                     protein_coding
1477       2                     protein_coding
1478       2                     protein_coding
1479       2                     protein_coding
1480       2                     protein_coding
1481       2                     protein_coding
1482       2                     protein_coding
1483       2                     protein_coding
1484       2                     protein_coding
1485       2                     protein_coding
1486       2                     protein_coding
1487       0               processed_pseudogene
1488       2               processed_pseudogene
1489       2                            lincRNA
1490       2                            lincRNA
1491       2                            lincRNA
1492       2                            lincRNA
1493       2                            lincRNA
1494       2                            lincRNA
1495       2                            lincRNA
1496       0               processed_pseudogene
1497       0                     protein_coding
1498       0                     protein_coding
1499       0                     protein_coding
1500       0                     protein_coding
1501       0                     protein_coding
1502       0                     protein_coding
1503       0                     protein_coding
1504       0                     protein_coding
1505       0                     protein_coding
1506       0                     protein_coding
1507       0                     protein_coding
1508       0                     protein_coding
1509       0                     protein_coding
1510       0                     protein_coding
1511       0                     protein_coding
1512       0                     protein_coding
1513       0                     protein_coding
1514       0                     protein_coding
1515       0                     protein_coding
1516       0                     protein_coding
1517       0                     protein_coding
1518       0                     protein_coding
1519       0                     protein_coding
1520       0                     protein_coding
1521       0                     protein_coding
1522       2                     protein_coding
1523       2                     protein_coding
1524       2                     protein_coding
1525       2                     protein_coding
1526       2                     protein_coding
1527       2                     protein_coding
1528       2                     protein_coding
1529       2                     protein_coding
1530       2                     protein_coding
1531       2                     protein_coding
1532       2                     protein_coding
1533       2                     protein_coding
1534       2                     protein_coding
1535       2                     protein_coding
1536       2                     protein_coding
1537       2                     protein_coding
1538       2                     protein_coding
1539       2                     protein_coding
1540       2                     protein_coding
1541       2                     protein_coding
1542       2                     protein_coding
1543       2                     protein_coding
1544       2                     protein_coding
1545       2                     protein_coding
1546       2                     protein_coding
1547       2                     protein_coding
1548       2                     protein_coding
1549       0               processed_pseudogene
1550       2                            lincRNA
1551       2                            lincRNA
1552       2                            lincRNA
1553       2                            lincRNA
1554       2                            lincRNA
1555       2                            lincRNA
1556       2 transcribed_unprocessed_pseudogene
1557       2 transcribed_unprocessed_pseudogene
1558       2 transcribed_unprocessed_pseudogene
1559       2 transcribed_unprocessed_pseudogene
1560       2 transcribed_unprocessed_pseudogene
1561       2 transcribed_unprocessed_pseudogene
1562       2 transcribed_unprocessed_pseudogene
1563       2 transcribed_unprocessed_pseudogene
1564       2 transcribed_unprocessed_pseudogene
1565       2 transcribed_unprocessed_pseudogene
1566       2 transcribed_unprocessed_pseudogene
1567       2 transcribed_unprocessed_pseudogene
1568       2 transcribed_unprocessed_pseudogene
1569       2 transcribed_unprocessed_pseudogene
1570       2 transcribed_unprocessed_pseudogene
1571       2 transcribed_unprocessed_pseudogene
1572       2 transcribed_unprocessed_pseudogene
1573       2 transcribed_unprocessed_pseudogene
1574       2 transcribed_unprocessed_pseudogene
1575       2 transcribed_unprocessed_pseudogene
1576       2 transcribed_unprocessed_pseudogene
1577       2 transcribed_unprocessed_pseudogene
1578       2 transcribed_unprocessed_pseudogene
1579       2 transcribed_unprocessed_pseudogene
1580       2 transcribed_unprocessed_pseudogene
1581       2 transcribed_unprocessed_pseudogene
1582       2 transcribed_unprocessed_pseudogene
1583       2 transcribed_unprocessed_pseudogene
1584       2 transcribed_unprocessed_pseudogene
1585       2 transcribed_unprocessed_pseudogene
1586       2 transcribed_unprocessed_pseudogene
1587       2 transcribed_unprocessed_pseudogene
1588       2 transcribed_unprocessed_pseudogene
1589       2 transcribed_unprocessed_pseudogene
1590       2 transcribed_unprocessed_pseudogene
1591       2 transcribed_unprocessed_pseudogene
1592       2 transcribed_unprocessed_pseudogene
1593       2 transcribed_unprocessed_pseudogene
1594       2 transcribed_unprocessed_pseudogene
1595       2 transcribed_unprocessed_pseudogene
1596       2 transcribed_unprocessed_pseudogene
1597       2 transcribed_unprocessed_pseudogene
1598       2 transcribed_unprocessed_pseudogene
1599       2 transcribed_unprocessed_pseudogene
1600       2 transcribed_unprocessed_pseudogene
1601       2 transcribed_unprocessed_pseudogene
1602       2 transcribed_unprocessed_pseudogene
1603       2 transcribed_unprocessed_pseudogene
1604       2 transcribed_unprocessed_pseudogene
1605       2 transcribed_unprocessed_pseudogene
1606       2 transcribed_unprocessed_pseudogene
1607       2 transcribed_unprocessed_pseudogene
1608       2 transcribed_unprocessed_pseudogene
1609       2 transcribed_unprocessed_pseudogene
1610       2 transcribed_unprocessed_pseudogene
1611       2 transcribed_unprocessed_pseudogene
1612       2 transcribed_unprocessed_pseudogene
1613       2 transcribed_unprocessed_pseudogene
1614       2 transcribed_unprocessed_pseudogene
1615       2 transcribed_unprocessed_pseudogene
1616       2 transcribed_unprocessed_pseudogene
1617       2 transcribed_unprocessed_pseudogene
1618       2 transcribed_unprocessed_pseudogene
1619       0                     protein_coding
1620       0                     protein_coding
1621       0                     protein_coding
1622       0                     protein_coding
1623       0                     protein_coding
1624       0                     protein_coding
1625       0                     protein_coding
1626       0                     protein_coding
1627       0                     protein_coding
1628       0                     protein_coding
1629       0                     protein_coding
1630       0                     protein_coding
1631       0                     protein_coding
1632       0                     protein_coding
1633       0                     protein_coding
1634       0                     protein_coding
1635       0                     protein_coding
1636       0                     protein_coding
1637       0                     protein_coding
1638       0                     protein_coding
1639       0                     protein_coding
1640       0                     protein_coding
1641       0                     protein_coding
1642       0                     protein_coding
1643       0                     protein_coding
1644       0                     protein_coding
1645       0                     protein_coding
1646       0                     protein_coding
1647       0                     protein_coding
1648       0                     protein_coding
1649       0                     protein_coding
1650       0                     protein_coding
1651       0                     protein_coding
1652       0                     protein_coding
1653       0                     protein_coding
1654       0                     protein_coding
1655       0                     protein_coding
1656       0                     protein_coding
1657       0                     protein_coding
1658       0                     protein_coding
1659       0                     protein_coding
1660       0                     protein_coding
1661       0                     protein_coding
1662       0                     protein_coding
1663       0                     protein_coding
1664       0                     protein_coding
1665       0                     protein_coding
1666       0                     protein_coding
1667       0                     protein_coding
1668       0               processed_pseudogene
1669       0                     protein_coding
1670       0                     protein_coding
1671       0                     protein_coding
1672       0                     protein_coding
1673       0                     protein_coding
1674       0                     protein_coding
1675       0                     protein_coding
1676       0                     protein_coding
1677       0                     protein_coding
1678       0                     protein_coding
1679       0                     protein_coding
1680       0                     protein_coding
1681       0                     protein_coding
1682       0                     protein_coding
1683       0                     protein_coding
1684       0                     protein_coding
1685       0                     protein_coding
1686       0                     protein_coding
1687       0                     protein_coding
1688       0                     protein_coding
1689       2               processed_transcript
1690       2               processed_transcript
1691       2               processed_transcript
1692       2               processed_transcript
1693       2                          antisense
1694       2                          antisense
1695       2                          antisense
1696       2                          antisense
1697       2                          antisense
1698       2                          antisense
1699       2                          antisense
1700       2                          antisense
1701       2                          antisense
1702       0                     protein_coding
1703       0                     protein_coding
1704       0                     protein_coding
1705       0                     protein_coding
1706       0                     protein_coding
1707       0                     protein_coding
1708       0                     protein_coding
1709       0                     protein_coding
1710       0                     protein_coding
1711       0                     protein_coding
1712       0                     protein_coding
1713       0                     protein_coding
1714       0                     protein_coding
1715       0                     protein_coding
1716       0                     protein_coding
1717       0                     protein_coding
1718       0                     protein_coding
1719       0                     protein_coding
1720       0                     protein_coding
1721       0                     protein_coding
1722       0                     protein_coding
1723       0                     protein_coding
1724       0                     protein_coding
1725       0                     protein_coding
1726       0                     protein_coding
1727       0                     protein_coding
1728       0                     protein_coding
1729       0                     protein_coding
1730       0                     protein_coding
1731       0                     protein_coding
1732       0                     protein_coding
1733       0                     protein_coding
1734       0                     protein_coding
1735       0                     protein_coding
1736       0                     protein_coding
1737       0                     protein_coding
1738       0                     protein_coding
1739       0                     protein_coding
1740       0                     protein_coding
1741       0                     protein_coding
1742       0                     protein_coding
1743       0                     protein_coding
1744       0                     protein_coding
1745       0                     protein_coding
1746       0                     protein_coding
1747       0                     protein_coding
1748       0                     protein_coding
1749       0                     protein_coding
1750       0                     protein_coding
1751       0                     protein_coding
1752       0                     protein_coding
1753       0                     protein_coding
1754       0                     protein_coding
1755       0                     protein_coding
1756       0                     protein_coding
1757       0                     protein_coding
1758       0                     protein_coding
1759       0                     protein_coding
1760       0                     protein_coding
1761       0                     protein_coding
1762       0                     protein_coding
1763       0                     protein_coding
1764       0                     protein_coding
1765       0                     protein_coding
1766       0                     protein_coding
1767       0                     protein_coding
1768       0                     protein_coding
1769       0                     protein_coding
1770       0                     protein_coding
1771       0                     protein_coding
1772       0                     protein_coding
1773       0                     protein_coding
1774       0                     protein_coding
1775       0                     protein_coding
1776       0                     protein_coding
1777       0                     protein_coding
1778       0                     protein_coding
1779       0                     protein_coding
1780       0                     protein_coding
1781       0                     protein_coding
1782       0                     protein_coding
1783       0                     protein_coding
1784       0                     protein_coding
1785       0                     protein_coding
1786       0                     protein_coding
1787       0                     protein_coding
1788       0                     protein_coding
1789       0                     protein_coding
1790       0                     protein_coding
1791       0                     protein_coding
1792       0                     protein_coding
1793       0                     protein_coding
1794       0                     protein_coding
1795       0                     protein_coding
1796       2                              snRNA
1797       2                              miRNA
1798       0                             snoRNA
1799       2                               rRNA
1800       2                              miRNA
1801       0                              snRNA
1802       2                     protein_coding
1803       2                     protein_coding
1804       2                     protein_coding
1805       2                     protein_coding
1806       2                     protein_coding
1807       2                     protein_coding
1808       2                     protein_coding
1809       2                     protein_coding
1810       2                     protein_coding
1811       2                     protein_coding
1812       2                     protein_coding
1813       2                     protein_coding
1814       2                     protein_coding
1815       2                     protein_coding
1816       2                     protein_coding
1817       2                     protein_coding
1818       2                     protein_coding
1819       2                     protein_coding
1820       2                     protein_coding
1821       2                     protein_coding
1822       2                     protein_coding
1823       2                     protein_coding
1824       2                     protein_coding
1825       2                     protein_coding
1826       2                     protein_coding
1827       2                     protein_coding
1828       2                     protein_coding
1829       2                     protein_coding
1830       2                     protein_coding
1831       2                     protein_coding
1832       2                     protein_coding
1833       2                     protein_coding
1834       2                     protein_coding
1835       2                     protein_coding
1836       2                     protein_coding
1837       2                     protein_coding
1838       2                     protein_coding
1839       2                     protein_coding
1840       2                     protein_coding
1841       2                     protein_coding
1842       2                     protein_coding
1843       2                     protein_coding
1844       2                     protein_coding
1845       2                     protein_coding
1846       2                     protein_coding
1847       2                     protein_coding
1848       0                          antisense
1849       0                          antisense
1850       0                     protein_coding
1851       0                     protein_coding
1852       0                     protein_coding
1853       0                     protein_coding
1854       0                     protein_coding
1855       0                     protein_coding
1856       0                     protein_coding
1857       0                     protein_coding
1858       0                     protein_coding
1859       0                     protein_coding
1860       0                     protein_coding
1861       0                     protein_coding
1862       0                     protein_coding
1863       0                     protein_coding
1864       0                     protein_coding
1865       0                     protein_coding
1866       0                     protein_coding
1867       0                     protein_coding
1868       0                     protein_coding
1869       0                     protein_coding
1870       0                     protein_coding
1871       0                     protein_coding
1872       0                     protein_coding
1873       0                     protein_coding
1874       0                     protein_coding
1875       0                     protein_coding
1876       0                     protein_coding
1877       0                     protein_coding
1878       0                     protein_coding
1879       0                     protein_coding
1880       0                     protein_coding
1881       0                     protein_coding
1882       0                     protein_coding
1883       0                     protein_coding
1884       0                     protein_coding
1885       0                     protein_coding
1886       0                     protein_coding
1887       0                     protein_coding
1888       0                     protein_coding
1889       0                     protein_coding
1890       0                     protein_coding
1891       0                     protein_coding
1892       0                     protein_coding
1893       0                     protein_coding
1894       0                     protein_coding
1895       0                     protein_coding
1896       0                     protein_coding
1897       0                     protein_coding
1898       0                     protein_coding
1899       0                     protein_coding
1900       0                     protein_coding
1901       0                     protein_coding
1902       0                     protein_coding
1903       0                     protein_coding
1904       0                     protein_coding
1905       0                     protein_coding
1906       0                     protein_coding
1907       0                     protein_coding
1908       0                     protein_coding
1909       0                     protein_coding
1910       0                     protein_coding
1911       0                     protein_coding
1912       0                     protein_coding
1913       0                     protein_coding
1914       0                     protein_coding
1915       0                          antisense
1916       0                          antisense
1917       2                          antisense
1918       2                          antisense
1919       0               processed_pseudogene
1920       2                            lincRNA
1921       2                     protein_coding
1922       2                     protein_coding
1923       2                     protein_coding
1924       2                     protein_coding
1925       2                     protein_coding
1926       2                     protein_coding
1927       2                     protein_coding
1928       2                     protein_coding
1929       2                     protein_coding
1930       2                     protein_coding
1931       2                     protein_coding
1932       0                                TEC
1933       0                          antisense
1934       0                          antisense
1935       0                          antisense
1936       0                          antisense
1937       2                     protein_coding
1938       2                     protein_coding
1939       2                     protein_coding
1940       2                     protein_coding
1941       2                     protein_coding
1942       2                     protein_coding
1943       2                     protein_coding
1944       2                     protein_coding
1945       2                     protein_coding
1946       2                     protein_coding
1947       2                     protein_coding
1948       2                     protein_coding
1949       2                     protein_coding
1950       2                     protein_coding
1951       2                     protein_coding
1952       2                     protein_coding
1953       2                     protein_coding
1954       2                     protein_coding
1955       2                     protein_coding
1956       2                     protein_coding
1957       2                     protein_coding
1958       2                     protein_coding
1959       2                     protein_coding
1960       2                     protein_coding
1961       2                     protein_coding
1962       2                     protein_coding
1963       2                     protein_coding
1964       2                     protein_coding
1965       2                     protein_coding
1966       2                     protein_coding
1967       2                     protein_coding
1968       2                     protein_coding
1969       2                     protein_coding
1970       2                     protein_coding
1971       2                     protein_coding
1972       2                     protein_coding
1973       2                     protein_coding
1974       2                     protein_coding
1975       2                     protein_coding
1976       2                     protein_coding
1977       2                     protein_coding
1978       2                     protein_coding
1979       2                     protein_coding
1980       2                     protein_coding
1981       2                     protein_coding
1982       2                     protein_coding
1983       2                     protein_coding
1984       2                     protein_coding
1985       2                     protein_coding
1986       2                     protein_coding
1987       2                     protein_coding
1988       2                     protein_coding
1989       2                     protein_coding
1990       2                     protein_coding
1991       2                     protein_coding
1992       2                     protein_coding
1993       2                     protein_coding
1994       2                     protein_coding
1995       2                     protein_coding
1996       2                     protein_coding
1997       2                     protein_coding
1998       2                     protein_coding
1999       2                     protein_coding
2000       2                     protein_coding
2001       2                     protein_coding
2002       2                     protein_coding
2003       2                     protein_coding
2004       2                     protein_coding
2005       2                     protein_coding
2006       2                     protein_coding
2007       2                     protein_coding
2008       2                     protein_coding
2009       2                     protein_coding
2010       2                     protein_coding
2011       2                     protein_coding
2012       2                     protein_coding
2013       2                     protein_coding
2014       2                     protein_coding
2015       2                     protein_coding
2016       2                     protein_coding
2017       2                     protein_coding
2018       2                     protein_coding
2019       2                     protein_coding
2020       2                     protein_coding
2021       2                     protein_coding
2022       2                     protein_coding
2023       2                     protein_coding
2024       2                     protein_coding
2025       2                     protein_coding
2026       2                     protein_coding
2027       2                     protein_coding
2028       2                     protein_coding
2029       2                     protein_coding
2030       2                     protein_coding
2031       2                     protein_coding
2032       2                     protein_coding
2033       2                     protein_coding
2034       2                     protein_coding
2035       2                     protein_coding
2036       2                     protein_coding
2037       2                     protein_coding
2038       2                     protein_coding
2039       2                     protein_coding
2040       2                     protein_coding
2041       2                     protein_coding
2042       2                     protein_coding
2043       2                     protein_coding
2044       2                     protein_coding
2045       2                     protein_coding
2046       2                     protein_coding
2047       2                     protein_coding
2048       2                     protein_coding
2049       2                     protein_coding
2050       2                     protein_coding
2051       2                     protein_coding
2052       2                     protein_coding
2053       2                     protein_coding
2054       2                     protein_coding
2055       2                     protein_coding
2056       2                     protein_coding
2057       2                     protein_coding
2058       2                     protein_coding
2059       2                     protein_coding
2060       2                     protein_coding
2061       2                     protein_coding
2062       2                     protein_coding
2063       2                     protein_coding
2064       2                     protein_coding
2065       2                     protein_coding
2066       2                     protein_coding
2067       2                     protein_coding
2068       2                     protein_coding
2069       2                            lincRNA
2070       2                            lincRNA
2071       2                            lincRNA
2072       2                            lincRNA
2073       2                           misc_RNA
2074       2                           misc_RNA
2075       2                          antisense
2076       2                          antisense
2077       2                          antisense
2078       2                          antisense
2079       2                          antisense
2080       2                          antisense
2081       0                     protein_coding
2082       0                     protein_coding
2083       2                            lincRNA
2084       2                            lincRNA
2085       2                            lincRNA
2086       2                            lincRNA
2087       2                            lincRNA
2088       2                            lincRNA
2089       2                            lincRNA
2090       2                            lincRNA
2091       2                            lincRNA
2092       2                            lincRNA
2093       2                            lincRNA
2094       2                            lincRNA
2095       2                            lincRNA
2096       2                            lincRNA
2097       2                            lincRNA
2098       2                            lincRNA
2099       2                            lincRNA
2100       2                            lincRNA
2101       2                            lincRNA
2102       0               processed_pseudogene
2103       0               processed_pseudogene
2104       0               processed_pseudogene
2105       0               processed_pseudogene
2106       0               processed_pseudogene
2107       2                     protein_coding
2108       2                     protein_coding
2109       2                     protein_coding
2110       2                     protein_coding
2111       2                     protein_coding
2112       2                     protein_coding
2113       2                     protein_coding
2114       2                     protein_coding
2115       2                     protein_coding
2116       2                     protein_coding
2117       2                     protein_coding
2118       2                     protein_coding
2119       2                     protein_coding
2120       2                     protein_coding
2121       2                     protein_coding
2122       2                     protein_coding
2123       2                     protein_coding
2124       2                     protein_coding
2125       2                     protein_coding
2126       2                     protein_coding
2127       2                     protein_coding
2128       2                     protein_coding
2129       2                     protein_coding
2130       2                     protein_coding
2131       2                     protein_coding
2132       2                     protein_coding
2133       2                     protein_coding
2134       2                     protein_coding
2135       2                     protein_coding
2136       2                     protein_coding
2137       2                     protein_coding
2138       2                     protein_coding
2139       2                     protein_coding
2140       2                     protein_coding
2141       2                     protein_coding
2142       2                     protein_coding
2143       2                     protein_coding
2144       2                     protein_coding
2145       2                     protein_coding
2146       2                     protein_coding
2147       2                     protein_coding
2148       2                     protein_coding
2149       2                     protein_coding
2150       2                     protein_coding
2151       2                     protein_coding
2152       2                     protein_coding
2153       2                     protein_coding
2154       2                     protein_coding
2155       2                     protein_coding
2156       2                          antisense
2157       2                          antisense
2158       2                          antisense
2159       2                          antisense
2160       2                          antisense
2161       2                          antisense
2162       2                          antisense
2163       2                          antisense
2164       2                          antisense
2165       2                          antisense
2166       2                          antisense
2167       2                          antisense
2168       2                          antisense
2169       2                          antisense
2170       2                          antisense
2171       2                          antisense
2172       2                          antisense
2173       2                          antisense
2174       2                          antisense
2175       2                          antisense
2176       2                          antisense
2177       2                          antisense
2178       2                          antisense
2179       2                          antisense
2180       0                     protein_coding
2181       0                     protein_coding
2182       0                     protein_coding
2183       0                     protein_coding
2184       0                     protein_coding
2185       0                     protein_coding
2186       0                     protein_coding
2187       0                     protein_coding
2188       0               processed_pseudogene
2189       0                          antisense
2190       0                          antisense
2191       0                            lincRNA
2192       0                            lincRNA
2193       0                            lincRNA
2194       2                     protein_coding
2195       2                     protein_coding
2196       2                     protein_coding
2197       2                     protein_coding
2198       2                     protein_coding
2199       2                     protein_coding
2200       2                     protein_coding
2201       2                     protein_coding
2202       2                     protein_coding
2203       2                     protein_coding
2204       2                     protein_coding
2205       2                     protein_coding
2206       2                     protein_coding
2207       2                     protein_coding
2208       2                     protein_coding
2209       0                     protein_coding
2210       0                     protein_coding
2211       0                     protein_coding
2212       0                     protein_coding
2213       0                     protein_coding
2214       0                     protein_coding
2215       0                     protein_coding
2216       0                     protein_coding
2217       0                     protein_coding
2218       0                     protein_coding
2219       0                     protein_coding
2220       0                     protein_coding
2221       0                     protein_coding
2222       0                     protein_coding
2223       0                     protein_coding
2224       0                     protein_coding
2225       0                     protein_coding
2226       0                     protein_coding
2227       0                     protein_coding
2228       0                     protein_coding
2229       0                     protein_coding
2230       0                     protein_coding
2231       0                     protein_coding
2232       0                     protein_coding
2233       0                     protein_coding
2234       0                     protein_coding
2235       0                     protein_coding
2236       0                     protein_coding
2237       0                     protein_coding
2238       0                     protein_coding
2239       0                     protein_coding
2240       0                     protein_coding
2241       2                            lincRNA
2242       2                            lincRNA
2243       2                            lincRNA
2244       2                          antisense
2245       2                          antisense
2246       2                          antisense
2247       2                          antisense
2248       2                          antisense
2249       2                          antisense
2250       2                          antisense
2251       2                          antisense
2252       2                          antisense
2253       2                     protein_coding
2254       0                          antisense
2255       0                          antisense
2256       0                          antisense
2257       0                          antisense
2258       2                          antisense
2259       2                          antisense
2260       2                          antisense
2261       2                          antisense
2262       2                          antisense
2263       2                          antisense
2264       2                          antisense
2265       2                          antisense
2266       2                          antisense
2267       2                          antisense
2268       2                          antisense
2269       2                          antisense
2270       2                          antisense
2271       2                          antisense
2272       2                          antisense
2273       2                          antisense
2274       2                          antisense
2275       2                          antisense
2276       2                          antisense
2277       2                          antisense
2278       2                          antisense
2279       2                          antisense
2280       2                          antisense
2281       2                          antisense
2282       2                          antisense
2283       0                     protein_coding
2284       0                     protein_coding
2285       0                     protein_coding
2286       0                     protein_coding
2287       0                     protein_coding
2288       0                     protein_coding
2289       0                     protein_coding
2290       0                     protein_coding
2291       0                     protein_coding
2292       0                     protein_coding
2293       0                     protein_coding
2294       0                     protein_coding
2295       0                     protein_coding
2296       0                     protein_coding
2297       0                     protein_coding
2298       0                     protein_coding
2299       0                     protein_coding
2300       0                     protein_coding
2301       0                     protein_coding
2302       0                     protein_coding
2303       0                     protein_coding
2304       0                     protein_coding
2305       0                     protein_coding
2306       0                     protein_coding
2307       0                     protein_coding
2308       0                     protein_coding
2309       0                     protein_coding
2310       0                     protein_coding
2311       0                     protein_coding
2312       0                     protein_coding
2313       0                     protein_coding
2314       0                     protein_coding
2315       0                     protein_coding
2316       0                     protein_coding
2317       0                     protein_coding
2318       0                     protein_coding
2319       0                     protein_coding
2320       0                     protein_coding
2321       0                     protein_coding
2322       0                     protein_coding
2323       0                     protein_coding
2324       0                     protein_coding
2325       0                     protein_coding
2326       0                     protein_coding
2327       0                     protein_coding
2328       0                     protein_coding
2329       0                     protein_coding
2330       0                     protein_coding
2331       0                     protein_coding
2332       0                     protein_coding
2333       0                     protein_coding
2334       0                     protein_coding
2335       0                     protein_coding
2336       0                     protein_coding
2337       0                     protein_coding
2338       0                     protein_coding
2339       0                     protein_coding
2340       0                     protein_coding
2341       0                     protein_coding
2342       0                     protein_coding
2343       0                     protein_coding
2344       0                     protein_coding
2345       0                     protein_coding
2346       0                     protein_coding
2347       0                     protein_coding
2348       0                     protein_coding
2349       0                     protein_coding
2350       0                     protein_coding
2351       0                     protein_coding
2352       0                     protein_coding
2353       0                     protein_coding
2354       0                     protein_coding
2355       0                     protein_coding
2356       0                     protein_coding
2357       0                     protein_coding
2358       0                     protein_coding
2359       0                     protein_coding
2360       0                     protein_coding
2361       0                     protein_coding
2362       0                     protein_coding
2363       0                     protein_coding
2364       0                     protein_coding
2365       0                     protein_coding
2366       0                     protein_coding
2367       0                     protein_coding
2368       0                     protein_coding
2369       0                     protein_coding
2370       0                     protein_coding
2371       0                     protein_coding
2372       0                     protein_coding
2373       0                     protein_coding
2374       0                     protein_coding
2375       0                     protein_coding
2376       0                     protein_coding
2377       0                     protein_coding
2378       0                     protein_coding
2379       0                     protein_coding
2380       0                     protein_coding
2381       0                     protein_coding
2382       0                     protein_coding
2383       0                     protein_coding
2384       0                     protein_coding
2385       0                     protein_coding
2386       0                     protein_coding
2387       0                     protein_coding
2388       0                     protein_coding
2389       0                     protein_coding
2390       0                     protein_coding
2391       0                     protein_coding
2392       0                     protein_coding
2393       0                     protein_coding
2394       0                     protein_coding
2395       0                     protein_coding
2396       0                     protein_coding
2397       0                     protein_coding
2398       0                     protein_coding
2399       0                     protein_coding
2400       0                     protein_coding
2401       2                     protein_coding
2402       2                     protein_coding
2403       2                     protein_coding
2404       2                     protein_coding
2405       2                     protein_coding
2406       2                     protein_coding
2407       2                     protein_coding
2408       2                     protein_coding
2409       2                     protein_coding
2410       2                     protein_coding
2411       2                     protein_coding
2412       2                     protein_coding
2413       2                     protein_coding
2414       2                     protein_coding
2415       2                     protein_coding
2416       2                     protein_coding
2417       2                     protein_coding
2418       2                     protein_coding
2419       2                     protein_coding
2420       2                     protein_coding
2421       2                     protein_coding
2422       2                     protein_coding
2423       2                     protein_coding
2424       2                     protein_coding
2425       2                     protein_coding
2426       2                     protein_coding
2427       2                     protein_coding
2428       2                     protein_coding
2429       2                     protein_coding
2430       2                     protein_coding
2431       2                     protein_coding
2432       2                     protein_coding
2433       2                     protein_coding
2434       2                     protein_coding
2435       2                     protein_coding
2436       2                     protein_coding
2437       2                     protein_coding
2438       2                     protein_coding
2439       2                     protein_coding
2440       2                     protein_coding
2441       2                     protein_coding
2442       2                     protein_coding
2443       2                     protein_coding
2444       2                     protein_coding
2445       2                     protein_coding
2446       2                     protein_coding
2447       2                     protein_coding
2448       2                     protein_coding
2449       2                     protein_coding
2450       2                     protein_coding
2451       2                     protein_coding
2452       2                     protein_coding
2453       2                     protein_coding
2454       2                     protein_coding
2455       2                     protein_coding
2456       2                     protein_coding
2457       2                     protein_coding
2458       2                     protein_coding
2459       2                     protein_coding
2460       2                          antisense
2461       2                          antisense
2462       2                          antisense
2463       0                            lincRNA
2464       0                            lincRNA
2465       0                            lincRNA
2466       0                            lincRNA
2467       0                            lincRNA
2468       2                     sense_intronic
2469       2                     sense_intronic
2470       2                     sense_intronic
2471       2                     sense_intronic
2472       0                     protein_coding
2473       0                     protein_coding
2474       0                     protein_coding
2475       0                     protein_coding
2476       0                     protein_coding
2477       0                     protein_coding
2478       0                     protein_coding
2479       0                     protein_coding
2480       0                     protein_coding
2481       0                     protein_coding
2482       0                     protein_coding
2483       0                     protein_coding
2484       0                     protein_coding
2485       0                     protein_coding
2486       0                     protein_coding
2487       0                     protein_coding
2488       0                     protein_coding
2489       0                     protein_coding
2490       0                     protein_coding
2491       0                     protein_coding
2492       0                     protein_coding
2493       0                     protein_coding
2494       0                     protein_coding
2495       0                     protein_coding
2496       0                     protein_coding
2497       0                     protein_coding
2498       0                     protein_coding
2499       0                     protein_coding
2500       0                     protein_coding
2501       0                     protein_coding
2502       0                     protein_coding
2503       0                     protein_coding
2504       0                     protein_coding
2505       0                     protein_coding
2506       0                     protein_coding
2507       0                     protein_coding
2508       0                     protein_coding
2509       0                     protein_coding
2510       0                     protein_coding
2511       0                     protein_coding
2512       0                     protein_coding
2513       0                     protein_coding
2514       0                     protein_coding
2515       0                     protein_coding
2516       0                     protein_coding
2517       0                     protein_coding
2518       0                     protein_coding
2519       2                            lincRNA
2520       2                            lincRNA
2521       2                            lincRNA
2522       2                            lincRNA
2523       2                            lincRNA
2524       2                            lincRNA
2525       2                            lincRNA
2526       0                          antisense
2527       0                          antisense
2528       0                           misc_RNA
2529       2                             snoRNA
2530       0                              miRNA
2531       2                           misc_RNA
2532       2                     protein_coding
2533       2                     protein_coding
2534       2                     protein_coding
2535       2                     protein_coding
2536       2                     protein_coding
2537       2                     protein_coding
2538       2                     protein_coding
2539       2                     protein_coding
2540       2                     protein_coding
2541       2                     protein_coding
2542       0               processed_pseudogene
2543       2                              miRNA
2544       0                           misc_RNA
2545       0                           misc_RNA
2546       2                             snoRNA
2547       2                     protein_coding
2548       2                     protein_coding
2549       2                     protein_coding
2550       2                     protein_coding
2551       2                     protein_coding
2552       2                     protein_coding
2553       0                     protein_coding
2554       0                     protein_coding
2555       0                     protein_coding
2556       0                     protein_coding
2557       0                     protein_coding
2558       0                     protein_coding
2559       0                     protein_coding
2560       0                     protein_coding
2561       0                     protein_coding
2562       0                     protein_coding
2563       0                     protein_coding
2564       0                     protein_coding
2565       0                     protein_coding
2566       0                     protein_coding
2567       0                     protein_coding
2568       0                     protein_coding
2569       0                     protein_coding
2570       0                     protein_coding
2571       0                     protein_coding
2572       0                     protein_coding
2573       0                     protein_coding
2574       0                     protein_coding
2575       0                     protein_coding
2576       0                     protein_coding
2577       0                     protein_coding
2578       0                     protein_coding
2579       0                     protein_coding
2580       0                     protein_coding
2581       0                     protein_coding
2582       0                     protein_coding
2583       0                     protein_coding
2584       0                     protein_coding
2585       0                     protein_coding
2586       0                     protein_coding
2587       0                     protein_coding
2588       0                     protein_coding
2589       0                     protein_coding
2590       0                     protein_coding
2591       0                     protein_coding
2592       0                     protein_coding
2593       0                     protein_coding
2594       0                     protein_coding
2595       0                     protein_coding
2596       0                     protein_coding
2597       0                     protein_coding
2598       0                     protein_coding
2599       0                     protein_coding
2600       0                     protein_coding
2601       0                     protein_coding
2602       0                     protein_coding
2603       0                     protein_coding
2604       0                     protein_coding
2605       0                     protein_coding
2606       0                     protein_coding
2607       0                     protein_coding
2608       0                     protein_coding
2609       0                     protein_coding
2610       0                     protein_coding
2611       0                     protein_coding
2612       0                     protein_coding
2613       0                     protein_coding
2614       0                     protein_coding
2615       0                     protein_coding
2616       0                     protein_coding
2617       0                     protein_coding
2618       0                     protein_coding
2619       0                     protein_coding
2620       0                     protein_coding
2621       0                     protein_coding
2622       0                     protein_coding
2623       0                     protein_coding
2624       0                     protein_coding
2625       0                     protein_coding
2626       0                     protein_coding
2627       0                     protein_coding
2628       0                     protein_coding
2629       0                     protein_coding
2630       0                     protein_coding
2631       0                     protein_coding
2632       0                     protein_coding
2633       0                     protein_coding
2634       0                     protein_coding
2635       0                     protein_coding
2636       0                     protein_coding
2637       0                     protein_coding
2638       0                     protein_coding
2639       0                     protein_coding
2640       0                     protein_coding
2641       0                     protein_coding
2642       0                     protein_coding
2643       0                     protein_coding
2644       0                     protein_coding
2645       0                     protein_coding
2646       0                     protein_coding
2647       0                     protein_coding
2648       0                     protein_coding
2649       0                     protein_coding
2650       0                     protein_coding
2651       0                     protein_coding
2652       0                     protein_coding
2653       0                     protein_coding
2654       0                     protein_coding
2655       0                     protein_coding
2656       0                     protein_coding
2657       0                     protein_coding
2658       0                     protein_coding
2659       0                     protein_coding
2660       0                     protein_coding
2661       0                     protein_coding
2662       0                     protein_coding
2663       0                     protein_coding
2664       0                     protein_coding
2665       0                     protein_coding
2666       0                     protein_coding
2667       0                     protein_coding
2668       0                     protein_coding
2669       0                     protein_coding
2670       0                     protein_coding
2671       0                     protein_coding
2672       0                     protein_coding
2673       0                     protein_coding
2674       0                     protein_coding
2675       0                     protein_coding
2676       0                     protein_coding
2677       0                     protein_coding
2678       0                     protein_coding
2679       0                     protein_coding
2680       0                     protein_coding
2681       0                     protein_coding
2682       0                     protein_coding
2683       0                     protein_coding
2684       0                     protein_coding
2685       0                     protein_coding
2686       0                     protein_coding
2687       0                     protein_coding
2688       0                     protein_coding
2689       0                     protein_coding
2690       0                     protein_coding
2691       0                     protein_coding
2692       2                          antisense
2693       2                          antisense
2694       2                            lincRNA
2695       2                            lincRNA
2696       2                            lincRNA
2697       2                            lincRNA
2698       2                            lincRNA
2699       2                            lincRNA
2700       2                            lincRNA
2701       2                            lincRNA
2702       2                            lincRNA
2703       2                            lincRNA
2704       2                            lincRNA
2705       2                            lincRNA
2706       2                            lincRNA
2707       2                            lincRNA
2708       2                            lincRNA
2709       2                            lincRNA
2710       2                            lincRNA
2711       2                            lincRNA
2712       2                            lincRNA
2713       2                            lincRNA
2714       2                            lincRNA
2715       0                     protein_coding
2716       0                     protein_coding
2717       0                     protein_coding
2718       0                     protein_coding
2719       0                     protein_coding
2720       0                     protein_coding
2721       0                     protein_coding
2722       0                     protein_coding
2723       0                     protein_coding
2724       0                     protein_coding
2725       0                     protein_coding
2726       0                     protein_coding
2727       0                     protein_coding
2728       0                     protein_coding
2729       0                     protein_coding
2730       0                     protein_coding
2731       0                     protein_coding
2732       0                     protein_coding
2733       0                     protein_coding
2734       0                     protein_coding
2735       0                     protein_coding
2736       0                     protein_coding
2737       0                     protein_coding
2738       0                     protein_coding
2739       0                     protein_coding
2740       0                     protein_coding
2741       0                     protein_coding
2742       0                     protein_coding
2743       0                     protein_coding
2744       0                     protein_coding
2745       0                     protein_coding
2746       0                     protein_coding
2747       0                     protein_coding
2748       0                     protein_coding
2749       0                     protein_coding
2750       0                     protein_coding
2751       0                     protein_coding
2752       0                     protein_coding
2753       0                     protein_coding
2754       0                     protein_coding
2755       0                     protein_coding
2756       0                     protein_coding
2757       0                     protein_coding
2758       0                     protein_coding
2759       0                     protein_coding
2760       0                     protein_coding
2761       0                     protein_coding
2762       0                     protein_coding
2763       0                     protein_coding
2764       0                     protein_coding
2765       0                     protein_coding
2766       0                     protein_coding
2767       0                     protein_coding
2768       0                     protein_coding
2769       0                     protein_coding
2770       0                     protein_coding
2771       0                     protein_coding
2772       0                     protein_coding
2773       0                     protein_coding
2774       0                     protein_coding
2775       0                     protein_coding
2776       0                     protein_coding
2777       0                     protein_coding
2778       0                     protein_coding
2779       0                     protein_coding
2780       0                             snoRNA
2781       2                              miRNA
2782       2                              miRNA
2783       0                     sense_intronic
2784       0                     sense_intronic
2785       0                     sense_intronic
2786       0                     protein_coding
2787       2                            lincRNA
2788       2                            lincRNA
2789       0                            lincRNA
2790       0                            lincRNA
2791       0               processed_pseudogene
2792       2                     protein_coding
2793       2                     protein_coding
2794       2                     protein_coding
2795       2                     protein_coding
2796       2                     protein_coding
2797       2                     protein_coding
2798       2                     protein_coding
2799       2                     protein_coding
2800       2                     protein_coding
2801       2                     protein_coding
2802       2                     protein_coding
2803       2                     protein_coding
2804       2                     protein_coding
2805       2                     protein_coding
2806       2                     protein_coding
2807       2                     protein_coding
2808       2                     protein_coding
2809       2                     protein_coding
2810       2                     protein_coding
2811       2                     protein_coding
2812       2                     protein_coding
2813       2                     protein_coding
2814       2                     protein_coding
2815       2                     protein_coding
2816       2                     protein_coding
2817       2                     protein_coding
2818       2                     protein_coding
2819       2                     protein_coding
2820       2                     protein_coding
2821       2                     protein_coding
2822       2                     protein_coding
2823       2                     protein_coding
2824       2                     protein_coding
2825       2                     protein_coding
2826       2                     protein_coding
2827       2                     protein_coding
2828       2                     protein_coding
2829       2                     protein_coding
2830       2                     protein_coding
2831       2                     protein_coding
2832       2                     protein_coding
2833       2                     protein_coding
2834       2                     protein_coding
2835       2                     protein_coding
2836       2                     protein_coding
2837       2                     protein_coding
2838       2                     protein_coding
2839       2                     protein_coding
2840       0                     sense_intronic
2841       0                     sense_intronic
2842       0                     sense_intronic
2843       0                     sense_intronic
2844       0                     sense_intronic
2845       0                     sense_intronic
2846       2                            lincRNA
2847       2                            lincRNA
2848       2               processed_pseudogene
2849       0                     protein_coding
2850       0                     protein_coding
2851       0                     protein_coding
2852       0                     protein_coding
2853       0                     protein_coding
2854       0                     protein_coding
2855       0                     protein_coding
2856       0                     protein_coding
2857       0                     protein_coding
2858       0                     protein_coding
2859       0                     protein_coding
2860       0                     protein_coding
2861       0                     protein_coding
2862       0                     protein_coding
2863       0                     protein_coding
2864       0                     protein_coding
2865       0                     protein_coding
2866       0                     protein_coding
2867       0                     protein_coding
2868       0                     protein_coding
2869       0                     protein_coding
2870       0                     protein_coding
2871       0                     protein_coding
2872       0                     protein_coding
2873       0                     protein_coding
2874       0                     protein_coding
2875       0                     protein_coding
2876       0                     protein_coding
2877       0                     protein_coding
2878       0                     protein_coding
2879       0                     protein_coding
2880       0                     protein_coding
2881       0                     protein_coding
2882       0                     protein_coding
2883       0                     protein_coding
2884       0                     protein_coding
2885       0                     protein_coding
2886       0                     protein_coding
2887       0                     protein_coding
2888       0                     protein_coding
2889       0                     protein_coding
2890       0                     protein_coding
2891       0                     protein_coding
2892       0                     protein_coding
2893       0                     protein_coding
2894       0                     protein_coding
2895       0                     protein_coding
2896       0                     protein_coding
2897       0                     protein_coding
2898       0                     protein_coding
2899       0                     protein_coding
2900       0                     protein_coding
2901       0                     protein_coding
2902       0                     protein_coding
2903       0                     protein_coding
2904       0                     protein_coding
2905       0                     protein_coding
2906       0                     protein_coding
2907       0                     protein_coding
2908       0                     protein_coding
2909       0                     protein_coding
2910       0                     protein_coding
2911       0                     protein_coding
2912       0                     protein_coding
2913       0                     protein_coding
2914       0                     protein_coding
2915       0                     protein_coding
2916       0                     protein_coding
2917       0                     protein_coding
2918       0                     protein_coding
2919       0                     protein_coding
2920       0                     protein_coding
2921       0                     protein_coding
2922       0                     protein_coding
2923       0                     protein_coding
2924       0                     protein_coding
2925       0                     protein_coding
2926       0                     protein_coding
2927       0                     protein_coding
2928       0                     protein_coding
2929       0                     protein_coding
2930       0                     protein_coding
2931       0                     protein_coding
2932       0                     protein_coding
2933       0                     protein_coding
2934       0                     protein_coding
2935       0                     protein_coding
2936       0                     protein_coding
2937       0                     protein_coding
2938       0                     protein_coding
2939       0                     protein_coding
2940       0                     protein_coding
2941       0                     protein_coding
2942       0                     protein_coding
2943       0                     protein_coding
2944       0                     protein_coding
2945       0                     protein_coding
2946       0                     protein_coding
2947       0                     protein_coding
2948       0                     protein_coding
2949       0                     protein_coding
2950       0                     protein_coding
2951       0                     protein_coding
2952       0                     protein_coding
2953       0                     protein_coding
2954       0                     protein_coding
2955       0                     protein_coding
2956       0                     protein_coding
2957       0                     protein_coding
2958       0                     protein_coding
2959       0                     protein_coding
2960       0                     protein_coding
2961       0                     protein_coding
2962       0                     protein_coding
2963       0                     protein_coding
2964       0                     protein_coding
2965       0                     protein_coding
2966       0               processed_pseudogene
2967       2                                TEC
2968       0                            lincRNA
2969       0                            lincRNA
2970       0                            lincRNA
2971       0                            lincRNA
2972       0                            lincRNA
2973       0                            lincRNA
2974       0                            lincRNA
2975       0                            lincRNA
2976       2                     protein_coding
2977       2                     protein_coding
2978       0                            lincRNA
2979       0                            lincRNA
2980       0                            lincRNA
2981       0                     protein_coding
2982       0                     protein_coding
2983       0                     protein_coding
2984       0                     protein_coding
2985       0                     protein_coding
2986       0                     protein_coding
2987       0                     protein_coding
2988       0                     protein_coding
2989       0                     protein_coding
2990       0                     protein_coding
2991       0                     protein_coding
2992       0                     protein_coding
2993       0                     protein_coding
2994       0                     protein_coding
2995       0                     protein_coding
2996       0                     protein_coding
2997       0                     protein_coding
2998       0                     protein_coding
2999       0                     protein_coding
3000       0                     protein_coding
3001       0                     protein_coding
3002       0                     protein_coding
3003       0                     protein_coding
3004       0                     protein_coding
3005       0                     protein_coding
3006       0                     protein_coding
3007       0                     protein_coding
3008       0                     protein_coding
3009       0                     protein_coding
3010       0                     protein_coding
3011       0                     protein_coding
3012       0                     protein_coding
3013       0                     protein_coding
3014       0                     protein_coding
3015       0                     protein_coding
3016       0                     protein_coding
3017       0                     protein_coding
3018       0                     protein_coding
3019       0                     protein_coding
3020       0                     protein_coding
3021       0                     protein_coding
3022       0                     protein_coding
3023       0                     protein_coding
3024       0                     protein_coding
3025       0                     protein_coding
3026       0                     protein_coding
3027       0                     protein_coding
3028       0                     protein_coding
3029       0                     protein_coding
3030       0                     protein_coding
3031       0                     protein_coding
3032       0                     protein_coding
3033       0                     protein_coding
3034       0                     protein_coding
3035       0                     protein_coding
3036       0                     protein_coding
3037       0                     protein_coding
3038       0                     protein_coding
3039       0                     protein_coding
3040       0                     protein_coding
3041       0                     protein_coding
3042       0                     protein_coding
3043       0                     protein_coding
3044       0                     protein_coding
3045       0                     protein_coding
3046       0                     protein_coding
3047       0                     protein_coding
3048       0                     protein_coding
3049       0                     protein_coding
3050       0                     protein_coding
3051       0                     protein_coding
3052       0                     protein_coding
3053       0                     protein_coding
3054       0                     protein_coding
3055       0                     protein_coding
3056       0                     protein_coding
3057       0                     protein_coding
3058       0                     protein_coding
3059       0                     protein_coding
3060       0                     protein_coding
3061       0                     protein_coding
3062       0                     protein_coding
3063       0                     protein_coding
3064       0                     protein_coding
3065       0                     protein_coding
3066       0                     protein_coding
3067       0                     protein_coding
3068       0                     protein_coding
3069       0                     protein_coding
3070       0                     protein_coding
3071       0                     protein_coding
3072       0                     protein_coding
3073       0                     protein_coding
3074       0                     protein_coding
3075       0                     protein_coding
3076       0                     protein_coding
3077       0                     protein_coding
3078       0                     protein_coding
3079       0                     protein_coding
3080       0                     protein_coding
3081       0                     protein_coding
3082       0                     protein_coding
3083       0                     protein_coding
3084       0                     protein_coding
3085       0                     protein_coding
3086       0                     protein_coding
3087       0                     protein_coding
3088       0                     protein_coding
3089       0                     protein_coding
3090       0                     protein_coding
3091       0                     protein_coding
3092       0                     protein_coding
3093       0                     protein_coding
3094       0                     protein_coding
3095       0                     protein_coding
3096       0                     protein_coding
3097       0                     protein_coding
3098       0                     protein_coding
3099       0                     protein_coding
3100       0                     protein_coding
3101       0                     protein_coding
3102       0                     protein_coding
3103       0                     protein_coding
3104       0                     protein_coding
3105       0                     protein_coding
3106       0                     protein_coding
3107       0                     protein_coding
3108       0                     protein_coding
3109       0                     protein_coding
3110       0                     protein_coding
3111       0                     protein_coding
3112       0                     protein_coding
3113       0                     protein_coding
3114       0                     protein_coding
3115       0                     protein_coding
3116       0                     protein_coding
3117       0                     protein_coding
3118       0                     protein_coding
3119       0                     protein_coding
3120       0                     protein_coding
3121       0                     protein_coding
3122       0                     protein_coding
3123       0                     protein_coding
3124       0                     protein_coding
3125       0                     protein_coding
3126       0                     protein_coding
3127       0                     protein_coding
3128       0                     protein_coding
3129       0                     protein_coding
3130       0                     protein_coding
3131       0                     protein_coding
3132       0                     protein_coding
3133       0                     protein_coding
3134       0                     protein_coding
3135       0                     protein_coding
3136       0                     protein_coding
3137       0                     protein_coding
3138       0                     protein_coding
3139       0                     protein_coding
3140       0                     protein_coding
3141       0                     protein_coding
3142       0                     protein_coding
3143       0                     protein_coding
3144       0                     protein_coding
3145       0                     protein_coding
3146       0                     protein_coding
3147       0                     protein_coding
3148       0                     protein_coding
3149       0               processed_pseudogene
3150       0                            lincRNA
3151       0                            lincRNA
3152       0                            lincRNA
3153       0                            lincRNA
3154       0                     protein_coding
3155       0                     protein_coding
3156       0                     protein_coding
3157       0                     protein_coding
3158       0                     protein_coding
3159       0                     protein_coding
3160       0                     protein_coding
3161       0                     protein_coding
3162       0                     protein_coding
3163       0                     protein_coding
3164       0                     protein_coding
3165       0                     protein_coding
3166       0                     protein_coding
3167       0                     protein_coding
3168       0                     protein_coding
3169       0                     protein_coding
3170       0                     protein_coding
3171       0                     protein_coding
3172       0                     protein_coding
3173       0                     protein_coding
3174       0                     protein_coding
3175       0                     protein_coding
3176       0                     protein_coding
3177       0                     protein_coding
3178       0                     protein_coding
3179       0                     protein_coding
3180       0                     protein_coding
3181       0                     protein_coding
3182       0                     protein_coding
3183       0                     protein_coding
3184       0                     protein_coding
3185       0                     protein_coding
3186       0                     protein_coding
3187       0                     protein_coding
3188       0                     protein_coding
3189       0                     protein_coding
3190       0                     protein_coding
3191       0                     protein_coding
3192       0                     protein_coding
3193       0                     protein_coding
3194       0                     protein_coding
3195       0                     protein_coding
3196       0                     protein_coding
3197       0                     protein_coding
3198       0                     protein_coding
3199       0                     protein_coding
3200       0                     protein_coding
3201       0                     protein_coding
3202       0                     protein_coding
3203       0                     protein_coding
3204       0                     protein_coding
3205       0                     protein_coding
3206       0                     protein_coding
3207       0                     protein_coding
3208       0                     protein_coding
3209       0                     protein_coding
3210       0                     protein_coding
3211       0                     protein_coding
3212       0                     protein_coding
3213       0                     protein_coding
3214       0                     protein_coding
3215       0                     protein_coding
3216       0                     protein_coding
3217       0                     protein_coding
3218       0                     protein_coding
3219       0                     protein_coding
3220       0                     protein_coding
3221       0                     protein_coding
3222       0                     protein_coding
3223       0                     protein_coding
3224       0                     protein_coding
3225       0                     protein_coding
3226       0                     protein_coding
3227       0                     protein_coding
3228       0                     protein_coding
3229       0                     protein_coding
3230       0                     protein_coding
3231       0                     protein_coding
3232       0                     protein_coding
3233       0                     protein_coding
3234       0                     protein_coding
3235       0                     protein_coding
3236       0                     protein_coding
3237       0                     protein_coding
3238       0                     protein_coding
3239       0                     protein_coding
3240       0                     protein_coding
3241       0                     protein_coding
3242       0                     protein_coding
3243       0                     protein_coding
3244       0                     protein_coding
3245       0                     protein_coding
3246       0                     protein_coding
3247       2                     protein_coding
3248       2                     protein_coding
3249       2                     protein_coding
3250       2                     protein_coding
3251       2                     protein_coding
3252       2                     protein_coding
3253       2                     protein_coding
3254       2                     protein_coding
3255       2                     protein_coding
3256       2                     protein_coding
3257       2                     protein_coding
3258       2                     protein_coding
3259       2                     protein_coding
3260       2                     protein_coding
3261       2                     protein_coding
3262       2                     protein_coding
3263       2                     protein_coding
3264       2                     protein_coding
3265       2                     protein_coding
3266       2                     protein_coding
3267       2                     protein_coding
3268       2                     protein_coding
3269       2                     protein_coding
3270       2                     protein_coding
3271       2                     protein_coding
3272       2                     protein_coding
3273       2                     protein_coding
3274       2                     protein_coding
3275       2                     protein_coding
3276       2                     protein_coding
3277       2                     protein_coding
3278       2                     protein_coding
3279       2                     protein_coding
3280       2                     protein_coding
3281       2                     protein_coding
3282       2                     protein_coding
3283       2                     protein_coding
3284       2                     protein_coding
3285       2                     protein_coding
3286       2                     protein_coding
3287       2                     protein_coding
3288       2                     protein_coding
3289       2                     protein_coding
3290       2                     protein_coding
3291       2                     protein_coding
3292       2                     protein_coding
3293       2                     protein_coding
3294       2                     protein_coding
3295       2                     protein_coding
3296       2                     protein_coding
3297       2                     protein_coding
3298       2                     protein_coding
3299       2                     protein_coding
3300       2                     protein_coding
3301       2                     protein_coding
3302       2                     protein_coding
3303       2                     protein_coding
3304       2                     protein_coding
3305       2                     protein_coding
3306       2                     protein_coding
3307       2                     protein_coding
3308       2                     protein_coding
3309       2                     protein_coding
3310       2                     protein_coding
3311       2                     protein_coding
3312       2                     protein_coding
3313       2                     protein_coding
3314       2                     protein_coding
3315       2                     protein_coding
3316       2                     protein_coding
3317       2                     protein_coding
3318       2                     protein_coding
3319       2                     protein_coding
3320       2                     protein_coding
3321       2                     protein_coding
3322       2                     protein_coding
3323       2                     protein_coding
3324       2                     protein_coding
3325       2                     protein_coding
3326       2                     protein_coding
3327       2                     protein_coding
3328       2                     protein_coding
3329       2                     protein_coding
3330       2                     protein_coding
3331       2                     protein_coding
3332       2                     protein_coding
3333       2                     protein_coding
3334       2                     protein_coding
3335       2                     protein_coding
3336       2                     protein_coding
3337       2                     protein_coding
3338       2                     protein_coding
3339       2                     protein_coding
3340       2                     protein_coding
3341       2                     protein_coding
3342       2                     protein_coding
3343       2                     protein_coding
3344       2                     protein_coding
3345       2                     protein_coding
3346       2                     protein_coding
3347       2                     protein_coding
3348       2                     protein_coding
3349       2                     protein_coding
3350       2                     protein_coding
3351       2                     protein_coding
3352       2                     protein_coding
3353       2                     protein_coding
3354       2                     protein_coding
3355       2                     protein_coding
3356       2                     protein_coding
3357       2                     protein_coding
3358       2                     protein_coding
3359       2                     protein_coding
3360       2                     protein_coding
3361       2                     protein_coding
3362       2                     protein_coding
3363       2                     protein_coding
3364       2                     protein_coding
3365       2                     protein_coding
3366       2                     protein_coding
3367       2                     protein_coding
3368       2                     protein_coding
3369       2                     protein_coding
3370       2                     protein_coding
3371       2                     protein_coding
3372       2                     protein_coding
3373       2                     protein_coding
3374       2                     protein_coding
3375       2                     protein_coding
3376       2                     protein_coding
3377       2                     protein_coding
3378       2                     protein_coding
3379       2                     protein_coding
3380       2                     protein_coding
3381       2                     protein_coding
3382       2                     protein_coding
3383       2                     protein_coding
3384       0                            lincRNA
3385       2                     sense_intronic
3386       2                     sense_intronic
3387       2                     sense_intronic
3388       2                     sense_intronic
3389       2                     protein_coding
3390       2                     protein_coding
3391       2                     protein_coding
3392       2                     protein_coding
3393       0               processed_pseudogene
3394       0               processed_pseudogene
3395       0               processed_pseudogene
3396       0                            lincRNA
3397       0                  sense_overlapping
3398       0                  sense_overlapping
3399       0                  sense_overlapping
3400       0                  sense_overlapping
3401       0                  sense_overlapping
3402       0                     protein_coding
3403       0                     protein_coding
3404       0                     protein_coding
3405       0                     protein_coding
3406       0                     protein_coding
3407       0                     protein_coding
3408       0                     protein_coding
3409       0                     protein_coding
3410       0                     protein_coding
3411       0                     protein_coding
3412       0                     protein_coding
3413       0                     protein_coding
3414       0                     protein_coding
3415       0                     protein_coding
3416       0                     protein_coding
3417       0                     protein_coding
3418       0                     protein_coding
3419       0                     protein_coding
3420       0                     protein_coding
3421       0                     protein_coding
3422       0                     protein_coding
3423       0                     protein_coding
3424       0                     protein_coding
3425       0                     protein_coding
3426       0                     protein_coding
3427       0                     protein_coding
3428       0                     protein_coding
3429       0                     protein_coding
3430       0                     protein_coding
3431       0                     protein_coding
3432       0                     protein_coding
3433       0                     protein_coding
3434       0                     protein_coding
3435       0                     protein_coding
3436       0                     protein_coding
3437       0                     protein_coding
3438       0                     protein_coding
3439       0                     protein_coding
3440       0                     protein_coding
3441       0                     protein_coding
3442       0                     protein_coding
3443       0                     protein_coding
3444       0                     protein_coding
3445       0                     protein_coding
3446       0                     protein_coding
3447       0                     protein_coding
3448       0                     protein_coding
3449       0                     protein_coding
3450       0                     protein_coding
3451       0                     protein_coding
3452       0                     protein_coding
3453       0                     protein_coding
3454       0                     protein_coding
3455       0                     protein_coding
3456       0                     protein_coding
3457       0                     protein_coding
3458       0                     protein_coding
3459       0                     protein_coding
3460       0                     protein_coding
3461       0                     protein_coding
3462       0                     protein_coding
3463       0                     protein_coding
3464       0                     protein_coding
3465       0                     protein_coding
3466       0                     protein_coding
3467       0                     protein_coding
3468       0                     protein_coding
3469       0                     protein_coding
3470       0                     protein_coding
3471       0                     protein_coding
3472       0                     protein_coding
3473       0                     protein_coding
3474       0                     protein_coding
3475       0                     protein_coding
3476       0                     protein_coding
3477       0                     protein_coding
3478       0                     protein_coding
3479       0                     protein_coding
3480       0                     protein_coding
3481       0                     protein_coding
3482       0                     protein_coding
3483       0                     protein_coding
3484       0                     protein_coding
3485       0                     protein_coding
3486       0                     protein_coding
3487       0                     protein_coding
3488       0                     protein_coding
3489       0                     protein_coding
3490       0                     protein_coding
3491       0                     protein_coding
3492       0                     protein_coding
3493       0                     protein_coding
3494       0                     protein_coding
3495       0                     protein_coding
3496       0                     protein_coding
3497       0                     protein_coding
3498       0                     protein_coding
3499       0                     protein_coding
3500       0                     protein_coding
3501       0                     protein_coding
3502       0                     protein_coding
3503       0                     protein_coding
3504       0                     protein_coding
3505       0                     protein_coding
3506       0                     protein_coding
3507       0                     protein_coding
3508       0                     protein_coding
3509       0                     protein_coding
3510       0                     protein_coding
3511       0                     protein_coding
3512       0                     protein_coding
3513       0                     protein_coding
3514       0                     protein_coding
3515       0                     protein_coding
3516       0                     protein_coding
3517       0                     protein_coding
3518       0                     protein_coding
3519       0                     protein_coding
3520       0                     protein_coding
3521       0                     protein_coding
3522       0                     protein_coding
3523       0                     protein_coding
3524       0                     protein_coding
3525       0                     protein_coding
3526       0                     protein_coding
3527       0                     protein_coding
3528       2                     protein_coding
3529       2                     protein_coding
3530       2                     protein_coding
3531       2                     protein_coding
3532       2                     protein_coding
3533       2                     protein_coding
3534       2                     protein_coding
3535       2                     protein_coding
3536       2                     protein_coding
3537       2                     protein_coding
3538       2                     protein_coding
3539       2                     protein_coding
3540       2                     protein_coding
3541       2                     protein_coding
3542       2                     protein_coding
3543       2                     protein_coding
3544       2                     protein_coding
3545       2                     protein_coding
3546       2                     protein_coding
3547       2                     protein_coding
3548       2                     protein_coding
3549       2                     protein_coding
3550       2                     protein_coding
3551       2                     protein_coding
3552       2                     protein_coding
3553       2                     protein_coding
3554       2                     protein_coding
3555       0             unprocessed_pseudogene
3556       0             unprocessed_pseudogene
3557       0             unprocessed_pseudogene
3558       0             unprocessed_pseudogene
3559       0             unprocessed_pseudogene
3560       0             unprocessed_pseudogene
3561       0             unprocessed_pseudogene
3562       0             unprocessed_pseudogene
3563       0             unprocessed_pseudogene
3564       0             unprocessed_pseudogene
3565       0               processed_pseudogene
3566       0                     protein_coding
3567       0                     protein_coding
3568       0                     protein_coding
3569       0                     protein_coding
3570       0                     protein_coding
3571       0                     protein_coding
3572       0                     protein_coding
3573       0                     protein_coding
3574       0                     protein_coding
3575       0                     protein_coding
3576       0                     protein_coding
3577       0                     protein_coding
3578       0                     protein_coding
3579       0                     protein_coding
3580       0                     protein_coding
3581       0                     protein_coding
3582       0                     protein_coding
3583       0                     protein_coding
3584       0                     protein_coding
3585       0                     protein_coding
3586       0                     protein_coding
3587       0                     protein_coding
3588       0                     protein_coding
3589       0                     protein_coding
3590       0                     protein_coding
3591       0                     protein_coding
3592       0                     protein_coding
3593       0                     protein_coding
3594       0                     protein_coding
3595       0                     protein_coding
3596       0                     protein_coding
3597       0                     protein_coding
3598       0                     protein_coding
3599       0                     protein_coding
3600       0                     protein_coding
3601       0                     protein_coding
3602       0                     protein_coding
3603       0                     protein_coding
3604       0                     protein_coding
3605       0                     protein_coding
3606       0                     protein_coding
3607       0                     protein_coding
3608       0                     protein_coding
3609       0                     protein_coding
3610       0                     protein_coding
3611       0                     protein_coding
3612       0                     protein_coding
3613       0                     protein_coding
3614       0                     protein_coding
3615       0                     protein_coding
3616       0                     protein_coding
3617       0                     protein_coding
3618       0                     protein_coding
3619       0                     protein_coding
3620       0                     protein_coding
3621       0                     protein_coding
3622       0                     protein_coding
3623       0                     protein_coding
3624       0                     protein_coding
3625       0                     protein_coding
3626       0                     protein_coding
3627       0                     protein_coding
3628       0                     protein_coding
3629       0                     protein_coding
3630       0                     protein_coding
3631       0                     protein_coding
3632       0                     protein_coding
3633       0                     protein_coding
3634       0                     protein_coding
3635       0                     protein_coding
3636       0                     protein_coding
3637       0                     protein_coding
3638       0                     protein_coding
3639       0                     protein_coding
3640       0                     protein_coding
3641       0                     protein_coding
3642       0                     protein_coding
3643       0                     protein_coding
3644       0                     protein_coding
3645       0                     protein_coding
3646       0                     protein_coding
3647       0                     protein_coding
3648       0                     protein_coding
3649       0                     protein_coding
3650       0                     protein_coding
3651       0                     protein_coding
3652       0                     protein_coding
3653       0                     protein_coding
3654       0                     protein_coding
3655       0                     protein_coding
3656       0                     protein_coding
3657       0                     protein_coding
3658       0                     protein_coding
3659       0                     protein_coding
3660       0                     protein_coding
3661       0                     protein_coding
3662       0                     protein_coding
3663       0                     protein_coding
3664       0                     protein_coding
3665       0                     protein_coding
3666       0                     protein_coding
3667       0                     protein_coding
3668       0                     protein_coding
3669       0                     protein_coding
3670       0                     protein_coding
3671       0                     protein_coding
3672       0                     protein_coding
3673       0                     protein_coding
3674       0                     protein_coding
3675       0                     protein_coding
3676       0                     protein_coding
3677       0                     protein_coding
3678       0                     protein_coding
3679       0                     protein_coding
3680       0                     protein_coding
3681       0                     protein_coding
3682       0                     protein_coding
3683       0                     protein_coding
3684       0                     protein_coding
3685       0                     protein_coding
3686       0                     protein_coding
3687       0                     protein_coding
3688       0                     protein_coding
3689       0                     protein_coding
3690       0                     protein_coding
3691       0                     protein_coding
3692       0                     protein_coding
3693       0                     protein_coding
3694       0                     protein_coding
3695       0                     protein_coding
3696       0                     protein_coding
3697       0                     protein_coding
3698       0                     protein_coding
3699       0                     protein_coding
3700       0                     protein_coding
3701       0                     protein_coding
3702       0                     protein_coding
3703       0                     protein_coding
3704       0                     protein_coding
3705       0                     protein_coding
3706       0                     protein_coding
3707       0                     protein_coding
3708       0                     protein_coding
3709       0                     protein_coding
3710       0                     protein_coding
3711       0                     protein_coding
3712       0                     protein_coding
3713       0                     protein_coding
3714       0                     protein_coding
3715       0                     protein_coding
3716       0                     protein_coding
3717       0                     protein_coding
3718       0                     protein_coding
3719       0                     protein_coding
3720       0                     protein_coding
3721       0                     protein_coding
3722       0                     protein_coding
3723       0                     protein_coding
3724       0                     protein_coding
3725       0                     protein_coding
3726       0                     protein_coding
3727       0                     protein_coding
3728       0                     protein_coding
3729       0                     protein_coding
3730       0                     protein_coding
3731       0                     protein_coding
3732       0                     protein_coding
3733       0                     protein_coding
3734       0                     protein_coding
3735       0                     protein_coding
3736       0                     protein_coding
3737       0                     protein_coding
3738       0                     protein_coding
3739       0                     protein_coding
3740       0                     protein_coding
3741       0                     protein_coding
3742       0                     protein_coding
3743       0                     protein_coding
3744       0                     protein_coding
3745       0                     protein_coding
3746       0                     protein_coding
3747       0                     protein_coding
3748       0                     protein_coding
3749       0                     protein_coding
3750       0                     protein_coding
3751       0                     protein_coding
3752       0                     protein_coding
3753       0                     protein_coding
3754       0                     protein_coding
3755       0                     protein_coding
3756       0                     protein_coding
3757       0                     protein_coding
3758       0                     protein_coding
3759       0                     protein_coding
3760       0                     protein_coding
3761       0                     protein_coding
3762       0                     protein_coding
3763       0                     protein_coding
3764       0                     protein_coding
3765       0                     protein_coding
3766       0                     protein_coding
3767       0                     protein_coding
3768       0                     protein_coding
3769       0                     protein_coding
3770       0                     protein_coding
3771       0                     protein_coding
3772       0                     protein_coding
3773       0                     protein_coding
3774       0                     protein_coding
3775       0                     protein_coding
3776       0                     protein_coding
3777       0                     protein_coding
3778       0                     protein_coding
3779       0                     protein_coding
3780       0                     protein_coding
3781       0                     protein_coding
3782       0                     protein_coding
3783       0                     protein_coding
3784       0                     protein_coding
3785       0                     protein_coding
3786       0                     protein_coding
3787       0                     protein_coding
3788       0                     protein_coding
3789       0                     protein_coding
3790       0                     protein_coding
3791       0                     protein_coding
3792       0                     protein_coding
3793       0                     protein_coding
3794       0                     protein_coding
3795       0                     protein_coding
3796       0                     protein_coding
3797       0                     protein_coding
3798       0                     protein_coding
3799       0                     protein_coding
3800       0                     protein_coding
3801       0                     protein_coding
3802       0                     protein_coding
3803       0                     protein_coding
3804       0                     protein_coding
3805       0                     protein_coding
3806       0                     protein_coding
3807       0                     protein_coding
3808       0                     protein_coding
3809       0                     protein_coding
3810       0                     protein_coding
3811       0                     protein_coding
3812       0                     protein_coding
3813       0                     protein_coding
3814       0                     protein_coding
3815       0                     protein_coding
3816       0                     protein_coding
3817       0                     protein_coding
3818       0                     protein_coding
3819       0                     protein_coding
3820       0                     protein_coding
3821       0                     protein_coding
3822       0                     protein_coding
3823       0                     protein_coding
3824       0                     protein_coding
3825       0                     protein_coding
3826       0                     protein_coding
3827       0                     protein_coding
3828       0                     protein_coding
3829       0                     protein_coding
3830       0                     protein_coding
3831       0                     protein_coding
3832       0                     protein_coding
3833       0                     protein_coding
3834       0                     protein_coding
3835       0                     protein_coding
3836       0                     protein_coding
3837       0                     protein_coding
3838       0                     protein_coding
3839       0                     protein_coding
3840       0                     protein_coding
3841       0                     protein_coding
3842       0                     protein_coding
3843       0                     protein_coding
3844       0                     protein_coding
3845       0                     protein_coding
3846       0                     protein_coding
3847       0                     protein_coding
3848       0                     protein_coding
3849       0                     protein_coding
3850       0                     protein_coding
3851       0                     protein_coding
3852       0                     protein_coding
3853       0                     protein_coding
3854       0                     protein_coding
3855       0                     protein_coding
3856       0                     protein_coding
3857       0                     protein_coding
3858       0                     protein_coding
3859       0                     protein_coding
3860       0                     protein_coding
3861       0                     protein_coding
3862       0                     protein_coding
3863       0                     protein_coding
3864       0                     protein_coding
3865       0                     protein_coding
3866       0                     protein_coding
3867       0                     protein_coding
3868       0                     protein_coding
3869       0                     protein_coding
3870       0                     protein_coding
3871       0                     protein_coding
3872       0                     protein_coding
3873       0                     protein_coding
3874       0                     protein_coding
3875       0                     protein_coding
3876       0                     protein_coding
3877       0                     protein_coding
3878       0                     protein_coding
3879       0                     protein_coding
3880       0                     protein_coding
3881       0                     protein_coding
3882       0                     protein_coding
3883       0                     protein_coding
3884       0                     protein_coding
3885       0                     protein_coding
3886       0                     protein_coding
3887       0                     protein_coding
3888       0                     protein_coding
3889       0                     protein_coding
3890       0                     protein_coding
3891       0                     protein_coding
3892       0                     protein_coding
3893       0                     protein_coding
3894       0                     protein_coding
3895       0                     protein_coding
3896       0                     protein_coding
3897       0                     protein_coding
3898       0                     protein_coding
3899       0                     protein_coding
3900       0                     protein_coding
3901       0                     protein_coding
3902       0                     protein_coding
3903       0                     protein_coding
3904       0                     protein_coding
3905       0                     protein_coding
3906       0                     protein_coding
3907       0                     protein_coding
3908       0                     protein_coding
3909       0                     protein_coding
3910       0                     protein_coding
3911       0                     protein_coding
3912       0                     protein_coding
3913       0                     protein_coding
3914       0                     protein_coding
3915       0                     protein_coding
3916       0                     protein_coding
3917       0                     protein_coding
3918       0                     protein_coding
3919       0                     protein_coding
3920       0                     protein_coding
3921       0                     protein_coding
3922       0                     protein_coding
3923       0                     protein_coding
3924       0                     protein_coding
3925       0                     protein_coding
3926       0                     protein_coding
3927       0                     protein_coding
3928       0                     protein_coding
3929       0                     protein_coding
3930       0                     protein_coding
3931       0                     protein_coding
3932       0                     protein_coding
3933       2                     protein_coding
3934       2                     protein_coding
3935       2                     protein_coding
3936       2                     protein_coding
3937       2                     protein_coding
3938       2                     protein_coding
3939       2                     protein_coding
3940       2                     protein_coding
3941       2                     protein_coding
3942       2                     protein_coding
3943       2                     protein_coding
3944       2                     protein_coding
3945       2                     protein_coding
3946       2                     protein_coding
3947       2                     protein_coding
3948       2                     protein_coding
3949       2                     protein_coding
3950       2                     protein_coding
3951       2                     protein_coding
3952       2                     protein_coding
3953       2                     protein_coding
3954       2                     protein_coding
3955       2                     protein_coding
3956       2                     protein_coding
3957       2                     protein_coding
3958       2                     protein_coding
3959       2                     protein_coding
3960       2                     protein_coding
3961       2                     protein_coding
3962       2                     protein_coding
3963       2                     protein_coding
3964       2                     protein_coding
3965       2                     protein_coding
3966       2                     protein_coding
3967       2                     protein_coding
3968       2                     protein_coding
3969       2                     protein_coding
3970       2                     protein_coding
3971       2                     protein_coding
3972       2                     protein_coding
3973       2                     protein_coding
3974       2                     protein_coding
3975       2                     protein_coding
3976       2                     protein_coding
3977       2                     protein_coding
3978       2                     protein_coding
3979       2                     protein_coding
3980       2                     protein_coding
3981       2                     protein_coding
3982       2                     protein_coding
3983       2                     protein_coding
3984       2                     protein_coding
3985       2                     protein_coding
3986       2                     protein_coding
3987       2                     protein_coding
3988       2                     protein_coding
3989       2                     protein_coding
3990       2                     protein_coding
3991       2                     protein_coding
3992       2                     protein_coding
3993       2                     protein_coding
3994       2                     protein_coding
3995       2                     protein_coding
3996       2                     protein_coding
3997       2                     protein_coding
3998       2                     protein_coding
3999       2                     protein_coding
4000       2                     protein_coding
4001       2                     protein_coding
4002       2                     protein_coding
4003       2                     protein_coding
4004       2                     protein_coding
4005       2                     protein_coding
4006       2                     protein_coding
4007       2                     protein_coding
4008       2                     protein_coding
4009       2                     protein_coding
4010       2                     protein_coding
4011       2                     protein_coding
4012       2                     protein_coding
4013       2                     protein_coding
4014       2                     protein_coding
4015       2                     protein_coding
4016       2                     protein_coding
4017       2                     protein_coding
4018       2                     protein_coding
4019       2                     protein_coding
4020       2                     protein_coding
4021       2                     protein_coding
4022       2                     protein_coding
4023       2                     protein_coding
4024       2                     protein_coding
4025       2                     protein_coding
4026       2                     protein_coding
4027       2                     protein_coding
4028       2                     protein_coding
4029       2                     protein_coding
4030       2                     protein_coding
4031       2                     protein_coding
4032       2                     protein_coding
4033       0               processed_pseudogene
4034       2                            lincRNA
4035       2                            lincRNA
4036       2                            lincRNA
4037       2                            lincRNA
4038       2                            lincRNA
4039       2                            lincRNA
4040       2                            lincRNA
4041       2                            lincRNA
4042       2                            lincRNA
4043       2                            lincRNA
4044       2                            lincRNA
4045       2                            lincRNA
4046       2                            lincRNA
4047       2                            lincRNA
4048       2                            lincRNA
4049       0                                TEC
4050       2                            lincRNA
4051       2                            lincRNA
4052       2                            lincRNA
4053       2                            lincRNA
4054       2                            lincRNA
4055       2                            lincRNA
4056       2                            lincRNA
4057       0                            lincRNA
4058       0                            lincRNA
4059       0                            lincRNA
4060       0                            lincRNA
4061       0                            lincRNA
4062       0                            lincRNA
4063       0                            lincRNA
4064       0                            lincRNA
4065       0                            lincRNA
4066       0                            lincRNA
4067       0                            lincRNA
4068       0                            lincRNA
4069       0                            lincRNA
4070       0                            lincRNA
4071       0                            lincRNA
4072       2                          antisense
4073       2                          antisense
4074       2                          antisense
4075       0                            lincRNA
4076       0                            lincRNA
4077       0                            lincRNA
4078       2                     protein_coding
4079       2                     protein_coding
4080       2                     protein_coding
4081       2                     protein_coding
4082       2                     protein_coding
4083       2                     protein_coding
4084       2                     protein_coding
4085       2                     protein_coding
4086       2                     protein_coding
4087       2                     protein_coding
4088       2                     protein_coding
4089       2                     protein_coding
4090       2                     protein_coding
4091       2                     protein_coding
4092       2                     protein_coding
4093       2                     protein_coding
4094       2                     protein_coding
4095       2                     protein_coding
4096       2                     protein_coding
4097       2                     protein_coding
4098       2                     protein_coding
4099       2                     protein_coding
4100       2                     protein_coding
4101       2                     protein_coding
4102       2                     protein_coding
4103       2                     protein_coding
4104       2                     protein_coding
4105       2                     protein_coding
4106       2                     protein_coding
4107       2                     protein_coding
4108       2                     protein_coding
4109       2                     protein_coding
4110       2                     protein_coding
4111       2                     protein_coding
4112       2                     protein_coding
4113       2                     protein_coding
4114       2                     protein_coding
4115       2                     protein_coding
4116       2                     protein_coding
4117       2                     protein_coding
4118       2                     protein_coding
4119       2                     protein_coding
4120       2                     protein_coding
4121       2                     protein_coding
4122       2                     protein_coding
4123       2                     protein_coding
4124       2                     protein_coding
4125       2                     protein_coding
4126       2                     protein_coding
4127       2                     protein_coding
4128       2                     protein_coding
4129       2                     protein_coding
4130       2                     protein_coding
4131       2                     protein_coding
4132       2                     protein_coding
4133       2                     protein_coding
4134       2                     protein_coding
4135       2                     protein_coding
4136       2                     protein_coding
4137       2                     protein_coding
4138       2                     protein_coding
4139       2                     protein_coding
4140       2                     protein_coding
4141       2                     protein_coding
4142       2                     protein_coding
4143       2                     protein_coding
4144       2                     protein_coding
4145       2                     protein_coding
4146       2                     protein_coding
4147       2                     protein_coding
4148       2                     protein_coding
4149       2                     protein_coding
4150       2                     protein_coding
4151       0                            lincRNA
4152       0                            lincRNA
4153       0                            lincRNA
4154       2             unprocessed_pseudogene
4155       2             unprocessed_pseudogene
4156       2             unprocessed_pseudogene
4157       2               processed_pseudogene
4158       0                     protein_coding
4159       0                     protein_coding
4160       0                     protein_coding
4161       0                     protein_coding
4162       0                     protein_coding
4163       0                     protein_coding
4164       0                     protein_coding
4165       0                     protein_coding
4166       0                     protein_coding
4167       0                     protein_coding
4168       0                     protein_coding
4169       0                     protein_coding
4170       0                     protein_coding
4171       0                     protein_coding
4172       0                     protein_coding
4173       0                     protein_coding
4174       0                     protein_coding
4175       0                     protein_coding
4176       0                     protein_coding
4177       0                     protein_coding
4178       0                     protein_coding
4179       0                     protein_coding
4180       0                     protein_coding
4181       0                     protein_coding
4182       0                     protein_coding
4183       0                     protein_coding
4184       0                     protein_coding
4185       0                     protein_coding
4186       0                     protein_coding
4187       0                     protein_coding
4188       0                     protein_coding
4189       0                     protein_coding
4190       0                     protein_coding
4191       0                     protein_coding
4192       0                     protein_coding
4193       0                     protein_coding
4194       0                     protein_coding
4195       0                     protein_coding
4196       0                     protein_coding
4197       0                     protein_coding
4198       0                     protein_coding
4199       0                     protein_coding
4200       0                     protein_coding
4201       0                     protein_coding
4202       0                     protein_coding
4203       0                     protein_coding
4204       0                     protein_coding
4205       0                     protein_coding
4206       0                     protein_coding
4207       0                     protein_coding
4208       0                     protein_coding
4209       0                     protein_coding
4210       0                     protein_coding
4211       0                     protein_coding
4212       0                     protein_coding
4213       0                     protein_coding
4214       0                     protein_coding
4215       0                     protein_coding
4216       0                     protein_coding
4217       0                     protein_coding
4218       0                     protein_coding
4219       0                     protein_coding
4220       0                     protein_coding
4221       0                     protein_coding
4222       0                     protein_coding
4223       0                     protein_coding
4224       0                     protein_coding
4225       0                     protein_coding
4226       0                     protein_coding
4227       0                     protein_coding
4228       0                     protein_coding
4229       0                     protein_coding
4230       0                     protein_coding
4231       0                     protein_coding
4232       0                     protein_coding
4233       0                     protein_coding
4234       0                     protein_coding
4235       0                     protein_coding
4236       0                     protein_coding
4237       0                     protein_coding
4238       0                     protein_coding
4239       0                     protein_coding
4240       0                     protein_coding
4241       0                     protein_coding
4242       0                     protein_coding
4243       0                     protein_coding
4244       0                     protein_coding
4245       0                     protein_coding
4246       0                     protein_coding
4247       2                     protein_coding
4248       2                     protein_coding
4249       2                     protein_coding
4250       2                     protein_coding
4251       2                     protein_coding
4252       2                     protein_coding
4253       2                     protein_coding
4254       2                     protein_coding
4255       2                     protein_coding
4256       2                     protein_coding
4257       2                     protein_coding
4258       2                     protein_coding
4259       2                     protein_coding
4260       2                     protein_coding
4261       2                     protein_coding
4262       2                     protein_coding
4263       2                     protein_coding
4264       2                     protein_coding
4265       2                     protein_coding
4266       2                     protein_coding
4267       2                     protein_coding
4268       2                     protein_coding
4269       2                     protein_coding
4270       2                     protein_coding
4271       2                     protein_coding
4272       2                     protein_coding
4273       2                     protein_coding
4274       2                     protein_coding
4275       2                     protein_coding
4276       2                     protein_coding
4277       2                     protein_coding
4278       2                     protein_coding
4279       2                     protein_coding
4280       2                     protein_coding
4281       2                     protein_coding
4282       2                     protein_coding
4283       2                     protein_coding
4284       2                     protein_coding
4285       2                     protein_coding
4286       2                     protein_coding
4287       2                     protein_coding
4288       2                     protein_coding
4289       2                     protein_coding
4290       2                     protein_coding
4291       2                     protein_coding
4292       2                     protein_coding
4293       0                     protein_coding
4294       0                          antisense
4295       0                          antisense
4296       0                          antisense
4297       0                          antisense
4298       0                          antisense
4299       2                     protein_coding
4300       2                     protein_coding
4301       2                     protein_coding
4302       2                     protein_coding
4303       2                     protein_coding
4304       2                     protein_coding
4305       2                     protein_coding
4306       2                     protein_coding
4307       2                     protein_coding
4308       2                     protein_coding
4309       2                     protein_coding
4310       2                     protein_coding
4311       2                     protein_coding
4312       2                     protein_coding
4313       2                     protein_coding
4314       2                     protein_coding
4315       2                     protein_coding
4316       2                     protein_coding
4317       2                     protein_coding
4318       2                     protein_coding
4319       2                     protein_coding
4320       2                     protein_coding
4321       2                     protein_coding
4322       2                     protein_coding
4323       2                     protein_coding
4324       2                     protein_coding
4325       2                     protein_coding
4326       2                     protein_coding
4327       2                     protein_coding
4328       2                     protein_coding
4329       2                     protein_coding
4330       2                     protein_coding
4331       2                     protein_coding
4332       2                     protein_coding
4333       2                     protein_coding
4334       2                     protein_coding
4335       2                     protein_coding
4336       2                     protein_coding
4337       2                     protein_coding
4338       2                     protein_coding
4339       2                     protein_coding
4340       2                     protein_coding
4341       2                     protein_coding
4342       2                     protein_coding
4343       2                     protein_coding
4344       2                     protein_coding
4345       2                     protein_coding
4346       2                     protein_coding
4347       2                     protein_coding
4348       2                     protein_coding
4349       2                     protein_coding
4350       2                     protein_coding
4351       2                     protein_coding
4352       2                     protein_coding
4353       2                     protein_coding
4354       2                     protein_coding
4355       2                     protein_coding
4356       2                     protein_coding
4357       2                     protein_coding
4358       2                     protein_coding
4359       2                     protein_coding
4360       2                     protein_coding
4361       2                     protein_coding
4362       2                     protein_coding
4363       2                     protein_coding
4364       2                     protein_coding
4365       2                     protein_coding
4366       2                     protein_coding
4367       2                     protein_coding
4368       2                     protein_coding
4369       2                     protein_coding
4370       2                     protein_coding
4371       2                     protein_coding
4372       2                     protein_coding
4373       2                     protein_coding
4374       2                     protein_coding
4375       2                     protein_coding
4376       2                     protein_coding
4377       2                     protein_coding
4378       2                     protein_coding
4379       2                     protein_coding
4380       2                     protein_coding
4381       2                     protein_coding
4382       2                     protein_coding
4383       2                     protein_coding
4384       2                     protein_coding
4385       2                     protein_coding
4386       2                     protein_coding
4387       2                     protein_coding
4388       2                     protein_coding
4389       2                     protein_coding
4390       2                     protein_coding
4391       2                     protein_coding
4392       2                     protein_coding
4393       2                     protein_coding
4394       2                     protein_coding
4395       2                     protein_coding
4396       2                     protein_coding
4397       2                     protein_coding
4398       2                     protein_coding
4399       2                     protein_coding
4400       2                     protein_coding
4401       2                     protein_coding
4402       2                     protein_coding
4403       2                     protein_coding
4404       2                     protein_coding
4405       2                     protein_coding
4406       2                     protein_coding
4407       2                     protein_coding
4408       2                     protein_coding
4409       2                     protein_coding
4410       2                     protein_coding
4411       2                     protein_coding
4412       2                     protein_coding
4413       2                     protein_coding
4414       2                     protein_coding
4415       2                     protein_coding
4416       2                     protein_coding
4417       2                     protein_coding
4418       2                     protein_coding
4419       2                     protein_coding
4420       2                     protein_coding
4421       2                     protein_coding
4422       2                     protein_coding
4423       2                     protein_coding
4424       2                     protein_coding
4425       2                     protein_coding
4426       2                     protein_coding
4427       2                     protein_coding
4428       2                     protein_coding
4429       2                     protein_coding
4430       2                     protein_coding
4431       2                     protein_coding
4432       2                     protein_coding
4433       2                     protein_coding
4434       2                     protein_coding
4435       2                     protein_coding
4436       2                     protein_coding
4437       2                     protein_coding
4438       2                     protein_coding
4439       2                     protein_coding
4440       2                     protein_coding
4441       2                     protein_coding
4442       2                     protein_coding
4443       2                     protein_coding
4444       2                     protein_coding
4445       2                     protein_coding
4446       2                     protein_coding
4447       2                     protein_coding
4448       2                     protein_coding
4449       2                     protein_coding
4450       2                     protein_coding
4451       2                     protein_coding
4452       2                     protein_coding
4453       2                     protein_coding
4454       2                     protein_coding
4455       2                     protein_coding
4456       2                     protein_coding
4457       2                     protein_coding
4458       2                     protein_coding
4459       2                     protein_coding
4460       2                     protein_coding
4461       2                     protein_coding
4462       2                     protein_coding
4463       2                     protein_coding
4464       2                     protein_coding
4465       2                     protein_coding
4466       2                     protein_coding
4467       2                     protein_coding
4468       2                     protein_coding
4469       2                     protein_coding
4470       2                     protein_coding
4471       2                     protein_coding
4472       2                     protein_coding
4473       2                     protein_coding
4474       2                     protein_coding
4475       2                     protein_coding
4476       2                     protein_coding
4477       2                     protein_coding
4478       2                     protein_coding
4479       2                          antisense
4480       2                          antisense
4481       0                     sense_intronic
4482       0                     sense_intronic
4483       0                     sense_intronic
4484       0                     sense_intronic
4485       0                     sense_intronic
4486       0                     sense_intronic
4487       0                     sense_intronic
4488       0                     sense_intronic
4489       2                     protein_coding
4490       2                     protein_coding
4491       2                     protein_coding
4492       2                     protein_coding
4493       2                     protein_coding
4494       2                     protein_coding
4495       2                     protein_coding
4496       2                     protein_coding
4497       2                     protein_coding
4498       2                     protein_coding
4499       2                     protein_coding
4500       2                     protein_coding
4501       2                     protein_coding
4502       2                     protein_coding
4503       2                     protein_coding
4504       2                     protein_coding
4505       2                     protein_coding
4506       2                     protein_coding
4507       2                     protein_coding
4508       2                     protein_coding
4509       2                     protein_coding
4510       2                     protein_coding
4511       2                     protein_coding
4512       2                     protein_coding
4513       2                     protein_coding
4514       2                     protein_coding
4515       2                     protein_coding
4516       2                     protein_coding
4517       2                     protein_coding
4518       2                     protein_coding
4519       2                     protein_coding
4520       2                     protein_coding
4521       2                     protein_coding
4522       2                     protein_coding
4523       2                     protein_coding
4524       2                     protein_coding
4525       2                     protein_coding
4526       2                     protein_coding
4527       2                     protein_coding
4528       2                     protein_coding
4529       2                     protein_coding
4530       2                     protein_coding
4531       2                     protein_coding
4532       2                     protein_coding
4533       2                     protein_coding
4534       2                     protein_coding
4535       2                     protein_coding
4536       2                     protein_coding
4537       2                     protein_coding
4538       2                     protein_coding
4539       2                     protein_coding
4540       2                     protein_coding
4541       2                          antisense
4542       2                          antisense
4543       2                          antisense
4544       2                          antisense
4545       2                          antisense
4546       2                          antisense
4547       2                          antisense
4548       2                          antisense
4549       2                          antisense
4550       2                          antisense
4551       2                          antisense
4552       2                          antisense
4553       2                          antisense
4554       2                          antisense
4555       2                          antisense
4556       2                          antisense
4557       2                     protein_coding
4558       2                     protein_coding
4559       2                     protein_coding
4560       2                     protein_coding
4561       2                     protein_coding
4562       2                     protein_coding
4563       2                     protein_coding
4564       2                     protein_coding
4565       2                     protein_coding
4566       2                     protein_coding
4567       2                     protein_coding
4568       2                     protein_coding
4569       2                     protein_coding
4570       2                     protein_coding
4571       2                     protein_coding
4572       2                     protein_coding
4573       2                     protein_coding
4574       2                     protein_coding
4575       2                     protein_coding
4576       2                     protein_coding
4577       2                     protein_coding
4578       2                     protein_coding
4579       2                     protein_coding
4580       2                     protein_coding
4581       2                     protein_coding
4582       2                     protein_coding
4583       2                     protein_coding
4584       2                     protein_coding
4585       2                     protein_coding
4586       2                     protein_coding
4587       2                     protein_coding
4588       2                     protein_coding
4589       2                     protein_coding
4590       2                     protein_coding
4591       2                     protein_coding
4592       2                     protein_coding
4593       2                     protein_coding
4594       2                     protein_coding
4595       2                     protein_coding
4596       2                     protein_coding
4597       2                     protein_coding
4598       2                     protein_coding
4599       2                     protein_coding
4600       2                     protein_coding
4601       2                     protein_coding
4602       2                     protein_coding
4603       2                     protein_coding
4604       2                     protein_coding
4605       2                     protein_coding
4606       2                     protein_coding
4607       2                     protein_coding
4608       2                     protein_coding
4609       2                     protein_coding
4610       2                     protein_coding
4611       2                     protein_coding
4612       2                     protein_coding
4613       2                     protein_coding
4614       2                     protein_coding
4615       2                     protein_coding
4616       2                     protein_coding
4617       2                     protein_coding
4618       2                     protein_coding
4619       2                     protein_coding
4620       2                     protein_coding
4621       2                     protein_coding
4622       2                     protein_coding
4623       2                     protein_coding
4624       2                     protein_coding
4625       2                     protein_coding
4626       2                     protein_coding
4627       2                     protein_coding
4628       2                     protein_coding
4629       2                     protein_coding
4630       2                     protein_coding
4631       2                     protein_coding
4632       2                     protein_coding
4633       2                     protein_coding
4634       2                     protein_coding
4635       2                     protein_coding
4636       2                     protein_coding
4637       2                     protein_coding
4638       2                     protein_coding
4639       2                     protein_coding
4640       2                     protein_coding
4641       2                     protein_coding
4642       2                     protein_coding
4643       2                     protein_coding
4644       2                     protein_coding
4645       2                     protein_coding
4646       2                     protein_coding
4647       2                     protein_coding
4648       2                     protein_coding
4649       2                     protein_coding
4650       2                     protein_coding
4651       2                     protein_coding
4652       2                     protein_coding
4653       2                     protein_coding
4654       2                     protein_coding
4655       2                     protein_coding
4656       2                     protein_coding
4657       2                     protein_coding
4658       2                     protein_coding
4659       2                     protein_coding
4660       2                     protein_coding
4661       2                     protein_coding
4662       2                     protein_coding
4663       2                     protein_coding
4664       2                     protein_coding
4665       2                     protein_coding
4666       2                     protein_coding
4667       2                     protein_coding
4668       2                     protein_coding
4669       2                     protein_coding
4670       2                     protein_coding
4671       2                     protein_coding
4672       2                     protein_coding
4673       2                     protein_coding
4674       2                     protein_coding
4675       2                     protein_coding
4676       2                     protein_coding
4677       2                     protein_coding
4678       2                     protein_coding
4679       2                     protein_coding
4680       2                     protein_coding
4681       2                     protein_coding
4682       2                     protein_coding
4683       2                     protein_coding
4684       2                     protein_coding
4685       2                     protein_coding
4686       2                     protein_coding
4687       2                     protein_coding
4688       2                     protein_coding
4689       2                     protein_coding
4690       0                     protein_coding
4691       0                     protein_coding
4692       0                     protein_coding
4693       0                     protein_coding
4694       0                     protein_coding
4695       0                     protein_coding
4696       0                     protein_coding
4697       0                     protein_coding
4698       0                     protein_coding
4699       0                     protein_coding
4700       0                     protein_coding
4701       0                     protein_coding
4702       0                     protein_coding
4703       0                     protein_coding
4704       0                     protein_coding
4705       0                     protein_coding
4706       0                     protein_coding
4707       0                     protein_coding
4708       0                     protein_coding
4709       0                     protein_coding
4710       0                     protein_coding
4711       0                     protein_coding
4712       0                     protein_coding
4713       0                     protein_coding
4714       0                     protein_coding
4715       0                     protein_coding
4716       0                     protein_coding
4717       0                     protein_coding
4718       0                     protein_coding
4719       0                     protein_coding
4720       0                     protein_coding
4721       0                     protein_coding
4722       0                     protein_coding
4723       0                     protein_coding
4724       0                     protein_coding
4725       0                     protein_coding
4726       0                     protein_coding
4727       0                     protein_coding
4728       0                     protein_coding
4729       0                     protein_coding
4730       0                     protein_coding
4731       0                     protein_coding
4732       0                     protein_coding
4733       0                     protein_coding
4734       0                     protein_coding
4735       0                     protein_coding
4736       0                     protein_coding
4737       0                     protein_coding
4738       0                     protein_coding
4739       0                     protein_coding
4740       0                     protein_coding
4741       0                     protein_coding
4742       0                     protein_coding
4743       0                     protein_coding
4744       0                     protein_coding
4745       0                     protein_coding
4746       0                     protein_coding
4747       0                     protein_coding
4748       0                     protein_coding
4749       0                     protein_coding
4750       0                     protein_coding
4751       0                     protein_coding
4752       0                     protein_coding
4753       0                     protein_coding
4754       0                     protein_coding
4755       0                     protein_coding
4756       0                     protein_coding
4757       0                     protein_coding
4758       0                     protein_coding
4759       0                     protein_coding
4760       0                     protein_coding
4761       0                     protein_coding
4762       0                     protein_coding
4763       0                     protein_coding
4764       0                     protein_coding
4765       0                     protein_coding
4766       0                     protein_coding
4767       0                     protein_coding
4768       0                     protein_coding
4769       0                     protein_coding
4770       0                     protein_coding
4771       0                     protein_coding
4772       0                     protein_coding
4773       0                     protein_coding
4774       0                     protein_coding
4775       0                     protein_coding
4776       0                     protein_coding
4777       0                     protein_coding
4778       0                     protein_coding
4779       0                     protein_coding
4780       0                     protein_coding
4781       0                     protein_coding
4782       0                     protein_coding
4783       0                     protein_coding
4784       0                     protein_coding
4785       0                     protein_coding
4786       0                     protein_coding
4787       0                     protein_coding
4788       0                     protein_coding
4789       0                     protein_coding
4790       0                     protein_coding
4791       0                     protein_coding
4792       0                     protein_coding
4793       0                     protein_coding
4794       0                     protein_coding
4795       0                     protein_coding
4796       0                     protein_coding
4797       0                     protein_coding
4798       0                     protein_coding
4799       0                     protein_coding
4800       0                     protein_coding
4801       0                     protein_coding
4802       0                     protein_coding
4803       0                     protein_coding
4804       0                     protein_coding
4805       0                     protein_coding
4806       0                     protein_coding
4807       0                     protein_coding
4808       0                     protein_coding
4809       0                     protein_coding
4810       0                     protein_coding
4811       0                     protein_coding
4812       0                     protein_coding
4813       0                     protein_coding
4814       0                     protein_coding
4815       0                     protein_coding
4816       0                     protein_coding
4817       0                     protein_coding
4818       0                     protein_coding
4819       0                     protein_coding
4820       0                     protein_coding
4821       0                     protein_coding
4822       0                     protein_coding
4823       0                     protein_coding
4824       0                     protein_coding
4825       0                     protein_coding
4826       0                     protein_coding
4827       0                     protein_coding
4828       0                     protein_coding
4829       0                     protein_coding
4830       0                     protein_coding
4831       0                     protein_coding
4832       0                     protein_coding
4833       2               processed_pseudogene
4834       2               processed_pseudogene
4835       0               processed_pseudogene
4836       0                          antisense
4837       0                          antisense
4838       0                          antisense
4839       0                          antisense
4840       0                          antisense
4841       0                          antisense
4842       0                          antisense
4843       0                          antisense
4844       0                          antisense
4845       0                          antisense
4846       2             unprocessed_pseudogene
4847       0                            lincRNA
4848       0                            lincRNA
4849       0                            lincRNA
4850       0                            lincRNA
4851       0                            lincRNA
4852       0                            lincRNA
4853       0                            lincRNA
4854       0                            lincRNA
4855       0                            lincRNA
4856       2                     protein_coding
4857       2                     protein_coding
4858       2                     protein_coding
4859       2                     protein_coding
4860       2                     protein_coding
4861       2                     protein_coding
4862       2                     protein_coding
4863       2                     protein_coding
4864       2                     protein_coding
4865       2                     protein_coding
4866       2                     protein_coding
4867       2                     protein_coding
4868       2                     protein_coding
4869       2                     protein_coding
4870       2                     protein_coding
4871       2                     protein_coding
4872       2                     protein_coding
4873       2                            lincRNA
4874       2                            lincRNA
4875       2                            lincRNA
4876       2                            lincRNA
4877       2                            lincRNA
4878       2                            lincRNA
4879       2                            lincRNA
4880       2                            lincRNA
4881       2                            lincRNA
4882       2                            lincRNA
4883       2                            lincRNA
4884       2                     sense_intronic
4885       2                     sense_intronic
4886       2                     sense_intronic
4887       2                     protein_coding
4888       2                     protein_coding
4889       2                     protein_coding
4890       2                     protein_coding
4891       2                     protein_coding
4892       2                     protein_coding
4893       2                     protein_coding
4894       2                     protein_coding
4895       2                     protein_coding
4896       2                     protein_coding
4897       2                     protein_coding
4898       2                     protein_coding
4899       2                     protein_coding
4900       2                     protein_coding
4901       2                     protein_coding
4902       2                     protein_coding
4903       2                     protein_coding
4904       2                     protein_coding
4905       2                     protein_coding
4906       2                     protein_coding
4907       2                     protein_coding
4908       2                     protein_coding
4909       2                     protein_coding
4910       2                     protein_coding
4911       2                     protein_coding
4912       2                     protein_coding
4913       2                     protein_coding
4914       2                     protein_coding
4915       2                     protein_coding
4916       2                     protein_coding
4917       2                     protein_coding
4918       2                     protein_coding
4919       2                     protein_coding
4920       2                     protein_coding
4921       2                     protein_coding
4922       2                     protein_coding
4923       2                     protein_coding
4924       2                     protein_coding
4925       2                     protein_coding
4926       2                     protein_coding
4927       2                     protein_coding
4928       0                          antisense
4929       0                          antisense
4930       2                            lincRNA
4931       2                            lincRNA
4932       0                            lincRNA
4933       0                            lincRNA
4934       0                            lincRNA
4935       0                            lincRNA
4936       0                            lincRNA
4937       2                     protein_coding
4938       2                     protein_coding
4939       2                     protein_coding
4940       2                     protein_coding
4941       2                     protein_coding
4942       2                     protein_coding
4943       2                     protein_coding
4944       2                     protein_coding
4945       2                     protein_coding
4946       2                     protein_coding
4947       2                     protein_coding
4948       2                     protein_coding
4949       2                     protein_coding
4950       2                     protein_coding
4951       2                     protein_coding
4952       2                     protein_coding
4953       2                     protein_coding
4954       2                     protein_coding
4955       2                     protein_coding
4956       2                     protein_coding
4957       2                     protein_coding
4958       2                     protein_coding
4959       2                     protein_coding
4960       2                     protein_coding
4961       2                     protein_coding
4962       2                     protein_coding
4963       2                     protein_coding
4964       2                     protein_coding
4965       2                     protein_coding
4966       2                     protein_coding
4967       2                     protein_coding
4968       2                     protein_coding
4969       2                     protein_coding
4970       2                     protein_coding
4971       2                     protein_coding
4972       2                     protein_coding
4973       2                     protein_coding
4974       2                     protein_coding
4975       2                     protein_coding
4976       2                     protein_coding
4977       2                     protein_coding
4978       2                     protein_coding
4979       2                     protein_coding
4980       2                     protein_coding
4981       2                     protein_coding
4982       2                     protein_coding
4983       2                     protein_coding
4984       2                     protein_coding
4985       2                     protein_coding
4986       2                     protein_coding
4987       2                     protein_coding
4988       2                     protein_coding
4989       2                     protein_coding
4990       2                     protein_coding
4991       2                     protein_coding
4992       2                     protein_coding
4993       2                     protein_coding
4994       2                     protein_coding
4995       2                     protein_coding
4996       2                     protein_coding
4997       2                     protein_coding
4998       2                     protein_coding
4999       2                     protein_coding
5000       0                          antisense
5001       0                          antisense
5002       0                          antisense
5003       0                  sense_overlapping
5004       0                  sense_overlapping
5005       2               processed_pseudogene
5006       2                          antisense
5007       2                          antisense
5008       0                            lincRNA
5009       0                            lincRNA
5010       0                            lincRNA
5011       0                            lincRNA
5012       0                            lincRNA
5013       0                            lincRNA
5014       0                            lincRNA
5015       0                            lincRNA
5016       0                            lincRNA
5017       0                            lincRNA
5018       0                            lincRNA
5019       0                            lincRNA
5020       0                            lincRNA
5021       0                            lincRNA
5022       0                            lincRNA
5023       0                            lincRNA
5024       0                            lincRNA
5025       0                            lincRNA
5026       0                            lincRNA
5027       0                            lincRNA
5028       0                            lincRNA
5029       0                            lincRNA
5030       0                            lincRNA
5031       0                            lincRNA
5032       0                            lincRNA
5033       0                            lincRNA
5034       0                            lincRNA
5035       2                     protein_coding
5036       2                     protein_coding
5037       2                     protein_coding
5038       2                     protein_coding
5039       2                     protein_coding
5040       2                     protein_coding
5041       2                     protein_coding
5042       2                     protein_coding
5043       2                     protein_coding
5044       2                     protein_coding
5045       2                     protein_coding
5046       2                     protein_coding
5047       2                     protein_coding
5048       2                     protein_coding
5049       2                     protein_coding
5050       2                     protein_coding
5051       2                     protein_coding
5052       2                     protein_coding
5053       2                     protein_coding
5054       2                     protein_coding
5055       2                     protein_coding
5056       2                     protein_coding
5057       2                     protein_coding
5058       2                     protein_coding
5059       2                     protein_coding
5060       2                     protein_coding
5061       2                     protein_coding
5062       2                     protein_coding
5063       2                     protein_coding
5064       2                     protein_coding
5065       2                     protein_coding
5066       2                     protein_coding
5067       2                     protein_coding
5068       2                     protein_coding
5069       2                     protein_coding
5070       2                     protein_coding
5071       2                     protein_coding
5072       2                     protein_coding
5073       2                     protein_coding
5074       2                     protein_coding
5075       2                     protein_coding
5076       2                     protein_coding
5077       2                     protein_coding
5078       2                     protein_coding
5079       2                     protein_coding
5080       2                     protein_coding
5081       2                     protein_coding
5082       2                     protein_coding
5083       2                     protein_coding
5084       2                     protein_coding
5085       2                     protein_coding
5086       2                     protein_coding
5087       2                     protein_coding
5088       2                     protein_coding
5089       2                     protein_coding
5090       2                     protein_coding
5091       2                     protein_coding
5092       2                     protein_coding
5093       2                     protein_coding
5094       2                     protein_coding
5095       2                     protein_coding
5096       2                     protein_coding
5097       2                     protein_coding
5098       2                     protein_coding
5099       2                     protein_coding
5100       2                     protein_coding
5101       2                     protein_coding
5102       2                     protein_coding
5103       2                     protein_coding
5104       2                     protein_coding
5105       2                     protein_coding
5106       2                     protein_coding
5107       2                     protein_coding
5108       2                     protein_coding
5109       2                     protein_coding
5110       2                     protein_coding
5111       2                     protein_coding
5112       2                     protein_coding
5113       2                     protein_coding
5114       2                     protein_coding
5115       2                     protein_coding
5116       2                     protein_coding
5117       2                     protein_coding
5118       2                     protein_coding
5119       2                     protein_coding
5120       2                     protein_coding
5121       2                     protein_coding
5122       2                     protein_coding
5123       2                     protein_coding
5124       2                     protein_coding
5125       2                     protein_coding
5126       2                     protein_coding
5127       2                     protein_coding
5128       2                     protein_coding
5129       2                     protein_coding
5130       2                     protein_coding
5131       2                     protein_coding
5132       2                     protein_coding
5133       2                     protein_coding
5134       2                     protein_coding
5135       2                     protein_coding
5136       2                     protein_coding
5137       2                     protein_coding
5138       2                     protein_coding
5139       2                     protein_coding
5140       2                     protein_coding
5141       2                     protein_coding
5142       2                     protein_coding
5143       2                     protein_coding
5144       2                     protein_coding
5145       2                     protein_coding
5146       2                     protein_coding
5147       2                     protein_coding
5148       2                     protein_coding
5149       2                     protein_coding
5150       2                     protein_coding
5151       2                     protein_coding
5152       2                     protein_coding
5153       2                     protein_coding
5154       2                     protein_coding
5155       2                     protein_coding
5156       2                     protein_coding
5157       2                     protein_coding
5158       2                     protein_coding
5159       2                     protein_coding
5160       2                     protein_coding
5161       2                     protein_coding
5162       2                     protein_coding
5163       2                     protein_coding
5164       2                     protein_coding
5165       2                     protein_coding
5166       2                     protein_coding
5167       2                     protein_coding
5168       2                     protein_coding
5169       2                     protein_coding
5170       2                     protein_coding
5171       0                     protein_coding
5172       0                     protein_coding
5173       0                     protein_coding
5174       0                     protein_coding
5175       0                     protein_coding
5176       0                     protein_coding
5177       0                     protein_coding
5178       0                     protein_coding
5179       0                     protein_coding
5180       0                     protein_coding
5181       0                     protein_coding
5182       0                     protein_coding
5183       0                     protein_coding
5184       0                     protein_coding
5185       0                     protein_coding
5186       0                     protein_coding
5187       0                     protein_coding
5188       0                     protein_coding
5189       0                     protein_coding
5190       0                     protein_coding
5191       0                     protein_coding
5192       0                     protein_coding
5193       0                     protein_coding
5194       0               processed_pseudogene
5195       0                     protein_coding
5196       0                     protein_coding
5197       0                     protein_coding
5198       0                     protein_coding
5199       0                     protein_coding
5200       0                     protein_coding
5201       0                     protein_coding
5202       0                     protein_coding
5203       0                     protein_coding
5204       0                     protein_coding
5205       0                     protein_coding
5206       0                     protein_coding
5207       0                     protein_coding
5208       0                     protein_coding
5209       0                     protein_coding
5210       0                     protein_coding
5211       0                     protein_coding
5212       0                     protein_coding
5213       0                     protein_coding
5214       0                     protein_coding
5215       0                     protein_coding
5216       0                     protein_coding
5217       0                     protein_coding
5218       0                     protein_coding
5219       0                     protein_coding
5220       0                     protein_coding
5221       0                     protein_coding
5222       0                     protein_coding
5223       0                     protein_coding
5224       0                     protein_coding
5225       0                     protein_coding
5226       0                     protein_coding
5227       0                     protein_coding
5228       0                     protein_coding
5229       0                     protein_coding
5230       0                     protein_coding
5231       0                     protein_coding
5232       0                     protein_coding
5233       0                     protein_coding
5234       0                     protein_coding
5235       0                     protein_coding
5236       0                     protein_coding
5237       0                     protein_coding
5238       0                     protein_coding
5239       0                     protein_coding
5240       0                     protein_coding
5241       0                     protein_coding
5242       2                          antisense
5243       2                          antisense
5244       2                                TEC
5245       2                          antisense
5246       2                          antisense
5247       2                          antisense
5248       0                          antisense
5249       0                          antisense
5250       0                          antisense
5251       0                          antisense
5252       0                          antisense
5253       0                          antisense
5254       2               processed_pseudogene
5255       0                     protein_coding
5256       0                     protein_coding
5257       0                     protein_coding
5258       0                     protein_coding
5259       0                     protein_coding
5260       0                     protein_coding
5261       0                     protein_coding
5262       0                     protein_coding
5263       0                     protein_coding
5264       0                     protein_coding
5265       0                     protein_coding
5266       0                     protein_coding
5267       0                     protein_coding
5268       0                     protein_coding
5269       0                     protein_coding
5270       0                     protein_coding
5271       0                     protein_coding
5272       0                     protein_coding
5273       0                     protein_coding
5274       0                     protein_coding
5275       0                     protein_coding
5276       0                     protein_coding
5277       0                     protein_coding
5278       0                     protein_coding
5279       0                     protein_coding
5280       0                     protein_coding
5281       0                     protein_coding
5282       0                     protein_coding
5283       0                     protein_coding
5284       0                     protein_coding
5285       0                     protein_coding
5286       0                     protein_coding
5287       0                     protein_coding
5288       0                     protein_coding
5289       0                     protein_coding
5290       0                     protein_coding
5291       0                     protein_coding
5292       0                     protein_coding
5293       0                     protein_coding
5294       0                     protein_coding
5295       0                     protein_coding
5296       0                     protein_coding
5297       0                     protein_coding
5298       0                     protein_coding
5299       0                     protein_coding
5300       0                     protein_coding
5301       0                     protein_coding
5302       0                     protein_coding
5303       0                     protein_coding
5304       0                     protein_coding
5305       0                     protein_coding
5306       0                     protein_coding
5307       0                     protein_coding
5308       0                     protein_coding
5309       0                     protein_coding
5310       0                     protein_coding
5311       0                     protein_coding
5312       0                     protein_coding
5313       0                     protein_coding
5314       0                     protein_coding
5315       0                     protein_coding
5316       0                     protein_coding
5317       0                     protein_coding
5318       0                     protein_coding
5319       0                     protein_coding
5320       0                     protein_coding
5321       0                     protein_coding
5322       0                     protein_coding
5323       0                     protein_coding
5324       0                     protein_coding
5325       2                     protein_coding
5326       2                     protein_coding
5327       2                     protein_coding
5328       2                     protein_coding
5329       2                     protein_coding
5330       2                     protein_coding
5331       2                     protein_coding
5332       2                     protein_coding
5333       2                     protein_coding
5334       2                     protein_coding
5335       2                     protein_coding
5336       2                     protein_coding
5337       2                     protein_coding
5338       2                     protein_coding
5339       2                     protein_coding
5340       2                     protein_coding
5341       2                     protein_coding
5342       2                     protein_coding
5343       2                     protein_coding
5344       2                     protein_coding
5345       2                     protein_coding
5346       2                     protein_coding
5347       2                     protein_coding
5348       2                     protein_coding
5349       2                     protein_coding
5350       2                     protein_coding
5351       2                     protein_coding
5352       2                     protein_coding
5353       2                     protein_coding
5354       2                     protein_coding
5355       2                     protein_coding
5356       2                     protein_coding
5357       2                     protein_coding
5358       2                     protein_coding
5359       2                     protein_coding
5360       2                     protein_coding
5361       2                     protein_coding
5362       2                     protein_coding
5363       2                     protein_coding
5364       2                     protein_coding
5365       2                     protein_coding
5366       2                     protein_coding
5367       2                     protein_coding
5368       2                     protein_coding
5369       2                     protein_coding
5370       2                     protein_coding
5371       2                     protein_coding
5372       2                     protein_coding
5373       2                     protein_coding
5374       2                     protein_coding
5375       2                     protein_coding
5376       2                     protein_coding
5377       2                     protein_coding
5378       2                     protein_coding
5379       2                     protein_coding
5380       2                     protein_coding
5381       2                     protein_coding
5382       2                     protein_coding
5383       2                     protein_coding
5384       2                     protein_coding
5385       2                     protein_coding
5386       2                     protein_coding
5387       2                     protein_coding
5388       2                     protein_coding
5389       2                     protein_coding
5390       2                     protein_coding
5391       2                     protein_coding
5392       2                     protein_coding
5393       2                     protein_coding
5394       2                     protein_coding
5395       2                     protein_coding
5396       2                     protein_coding
5397       2                     protein_coding
5398       2                     protein_coding
5399       2                     protein_coding
5400       2                     protein_coding
5401       2               processed_pseudogene
5402       2               processed_pseudogene
5403       2                          antisense
5404       2                          antisense
5405       2                          antisense
5406       2                          antisense
5407       2                          antisense
5408       2                          antisense
5409       2                          antisense
5410       2                          antisense
5411       2                          antisense
5412       2                          antisense
5413       2                          antisense
5414       2                          antisense
5415       2                          antisense
5416       2                          antisense
5417       2                          antisense
5418       2                          antisense
5419       2                          antisense
5420       2                          antisense
5421       2                          antisense
5422       2                          antisense
5423       2                          antisense
5424       2                          antisense
5425       2                          antisense
5426       2                          antisense
5427       2                          antisense
5428       2                          antisense
5429       2                          antisense
5430       2                          antisense
5431       2                          antisense
5432       2                          antisense
5433       2                          antisense
5434       2                          antisense
5435       2                          antisense
5436       2                          antisense
5437       2                          antisense
5438       2                          antisense
5439       2                          antisense
5440       2                          antisense
5441       2                          antisense
5442       2                          antisense
5443       2                          antisense
5444       2                          antisense
5445       2                          antisense
5446       2                          antisense
5447       2                          antisense
5448       2                          antisense
5449       2                          antisense
5450       2                          antisense
5451       2                          antisense
5452       2                          antisense
5453       2                          antisense
5454       2                          antisense
5455       2                          antisense
5456       2                          antisense
5457       2                          antisense
5458       2                          antisense
5459       0               processed_pseudogene
5460       2                     protein_coding
5461       2                     protein_coding
5462       2                     protein_coding
5463       2                     protein_coding
5464       2                     protein_coding
5465       2                     protein_coding
5466       2                     protein_coding
5467       2                     protein_coding
5468       2                     protein_coding
5469       2                     protein_coding
5470       2                     protein_coding
5471       2                     protein_coding
5472       2                     protein_coding
5473       2                     protein_coding
5474       2                     protein_coding
5475       2                     protein_coding
5476       2                     protein_coding
5477       2                     protein_coding
5478       2                     protein_coding
5479       2                     protein_coding
5480       2                     protein_coding
5481       2                     protein_coding
5482       2                     protein_coding
5483       2                     protein_coding
5484       2                     protein_coding
5485       2                     protein_coding
5486       2                     protein_coding
5487       2                     protein_coding
5488       2                     protein_coding
5489       2                     protein_coding
5490       2                     protein_coding
5491       2                     protein_coding
5492       2                     protein_coding
5493       2                     protein_coding
5494       2                     protein_coding
5495       2                     protein_coding
5496       2                     protein_coding
5497       2                     protein_coding
5498       2                     protein_coding
5499       2                     protein_coding
5500       2                     protein_coding
5501       2                     protein_coding
5502       2                     protein_coding
5503       2                     protein_coding
5504       2                     protein_coding
5505       2                     protein_coding
5506       2                     protein_coding
5507       2                     protein_coding
5508       2                     protein_coding
5509       2                     protein_coding
5510       2                     protein_coding
5511       2                     protein_coding
5512       2                     protein_coding
5513       2                     protein_coding
5514       2                     protein_coding
5515       2                     protein_coding
5516       2                     protein_coding
5517       2                     protein_coding
5518       2                     protein_coding
5519       2                     protein_coding
5520       2                     protein_coding
5521       2                     protein_coding
5522       2                     protein_coding
5523       2                     protein_coding
5524       2                     protein_coding
5525       2                     protein_coding
5526       2                     protein_coding
5527       2                     protein_coding
5528       2                     protein_coding
5529       2                     protein_coding
5530       2                     protein_coding
5531       2                     protein_coding
5532       2                     protein_coding
5533       2                     protein_coding
5534       2                     protein_coding
5535       2                     protein_coding
5536       2                     protein_coding
5537       2                     protein_coding
5538       2                     protein_coding
5539       2                     protein_coding
5540       2                     protein_coding
5541       2                     protein_coding
5542       2                     protein_coding
5543       2                     protein_coding
5544       2                     protein_coding
5545       2                     protein_coding
5546       2                     protein_coding
5547       2                     protein_coding
5548       2                     protein_coding
5549       2                     protein_coding
5550       2                     protein_coding
5551       2                     protein_coding
5552       2                     protein_coding
5553       2                     protein_coding
5554       2                     protein_coding
5555       2                     protein_coding
5556       2                     protein_coding
5557       2                     protein_coding
5558       2                     protein_coding
5559       2                     protein_coding
5560       2                     protein_coding
5561       2                     protein_coding
5562       2                     protein_coding
5563       2                     protein_coding
5564       2                     protein_coding
5565       2                     protein_coding
5566       2                     protein_coding
5567       2                     protein_coding
5568       2                     protein_coding
5569       2                     protein_coding
5570       2                     protein_coding
5571       2                     protein_coding
5572       2                     protein_coding
5573       2                     protein_coding
5574       2                     protein_coding
5575       2                     protein_coding
5576       2                     protein_coding
5577       2                     protein_coding
5578       2                     protein_coding
5579       2                     protein_coding
5580       2                     protein_coding
5581       2                     protein_coding
5582       2                     protein_coding
5583       2                     protein_coding
5584       2                     protein_coding
5585       2                     protein_coding
5586       2                     protein_coding
5587       2                     protein_coding
5588       2                     protein_coding
5589       2                     protein_coding
5590       2                     protein_coding
5591       2                     protein_coding
5592       2                     protein_coding
5593       2                     protein_coding
5594       2                     protein_coding
5595       2                     protein_coding
5596       2                     protein_coding
5597       2                     protein_coding
5598       2                     protein_coding
5599       2                     protein_coding
5600       2                     protein_coding
5601       2                     protein_coding
5602       2                          antisense
5603       2                          antisense
5604       2                  sense_overlapping
5605       2                  sense_overlapping
5606       2                  sense_overlapping
5607       0                          antisense
5608       0                          antisense
5609       0                          antisense
5610       0                          antisense
5611       0                          antisense
5612       0                          antisense
5613       0                          antisense
5614       0                          antisense
5615       0                          antisense
5616       0                          antisense
5617       0                          antisense
5618       2                            lincRNA
5619       2                            lincRNA
5620       2                            lincRNA
5621       2                            lincRNA
5622       2                            lincRNA
5623       2                     protein_coding
5624       2                     protein_coding
5625       2                     protein_coding
5626       2                     protein_coding
5627       2                     protein_coding
5628       2                     protein_coding
5629       2                     protein_coding
5630       2                     protein_coding
5631       2                     protein_coding
5632       2                     protein_coding
5633       2                     protein_coding
5634       2                     protein_coding
5635       2                     protein_coding
5636       2                     protein_coding
5637       2                     protein_coding
5638       2                     protein_coding
5639       2                     protein_coding
5640       2                          antisense
5641       2                          antisense
5642       2                          antisense
5643       2                          antisense
5644       0                     protein_coding
5645       0                     protein_coding
5646       0                     protein_coding
5647       0                     protein_coding
5648       0                     protein_coding
5649       0                     protein_coding
5650       0                     protein_coding
5651       0                     protein_coding
5652       0                     protein_coding
5653       0                     protein_coding
5654       0                     protein_coding
5655       0                     protein_coding
5656       0                     protein_coding
5657       0                     protein_coding
5658       0                     protein_coding
5659       0                     protein_coding
5660       0                     protein_coding
5661       0                     protein_coding
5662       0                     protein_coding
5663       0                     protein_coding
5664       0                     protein_coding
5665       0                     protein_coding
5666       0                     protein_coding
5667       0                     protein_coding
5668       0                     protein_coding
5669       0                     protein_coding
5670       0                     protein_coding
5671       0                     protein_coding
5672       0                     protein_coding
5673       0                     protein_coding
5674       0                     protein_coding
5675       0                     protein_coding
5676       0                     protein_coding
5677       0                     protein_coding
5678       0                     protein_coding
5679       0                     protein_coding
5680       0                     protein_coding
5681       0                     protein_coding
5682       0                     protein_coding
5683       0                     protein_coding
5684       0                     protein_coding
5685       0                     protein_coding
5686       0                     protein_coding
5687       0                     protein_coding
5688       0                     protein_coding
5689       2                  sense_overlapping
5690       2                  sense_overlapping
5691       2                  sense_overlapping
5692       2                  sense_overlapping
5693       2                  sense_overlapping
5694       2                  sense_overlapping
5695       2                  sense_overlapping
5696       2                  sense_overlapping
5697       0                     protein_coding
5698       0                     protein_coding
5699       0                     protein_coding
5700       0                     protein_coding
5701       0                     protein_coding
5702       0                     protein_coding
5703       0                     protein_coding
5704       0                     protein_coding
5705       0                     protein_coding
5706       0                     protein_coding
5707       0                     protein_coding
5708       0                     protein_coding
5709       0                     protein_coding
5710       0                     protein_coding
5711       0                     protein_coding
5712       0                     protein_coding
5713       0                     protein_coding
5714       0                     protein_coding
5715       0                     protein_coding
5716       0                     protein_coding
5717       0                     protein_coding
5718       0                     protein_coding
5719       0                     protein_coding
5720       0                     protein_coding
5721       0                     protein_coding
5722       0                     protein_coding
5723       0                     protein_coding
5724       0                     protein_coding
5725       0                     protein_coding
5726       0                     protein_coding
5727       0                     protein_coding
5728       0                     protein_coding
5729       0                     protein_coding
5730       0                     protein_coding
5731       0                     protein_coding
5732       0                     protein_coding
5733       0                     protein_coding
5734       0                     protein_coding
5735       0                     protein_coding
5736       0                     protein_coding
5737       0                     protein_coding
5738       0                     protein_coding
5739       0                     protein_coding
5740       0                     protein_coding
5741       0                     protein_coding
5742       0                     protein_coding
5743       0                     protein_coding
5744       0                     protein_coding
5745       0                     protein_coding
5746       0                     protein_coding
5747       0                     protein_coding
5748       0                     protein_coding
5749       0                     protein_coding
5750       0                     protein_coding
5751       0                     protein_coding
5752       0                     protein_coding
5753       0                     protein_coding
5754       0                     protein_coding
5755       0                     protein_coding
5756       0                     protein_coding
5757       0                     protein_coding
5758       0                     protein_coding
5759       0                     protein_coding
5760       0                     protein_coding
5761       0                     protein_coding
5762       0                     protein_coding
5763       0                     protein_coding
5764       0                     protein_coding
5765       0                     protein_coding
5766       0                     protein_coding
5767       0                     protein_coding
5768       0                     protein_coding
5769       0                     protein_coding
5770       0                     protein_coding
5771       0                     protein_coding
5772       0                     protein_coding
5773       0                     protein_coding
5774       0                     protein_coding
5775       0                     protein_coding
5776       0                     protein_coding
5777       0                     protein_coding
5778       0                     protein_coding
5779       0                     protein_coding
5780       0                     protein_coding
5781       0                     protein_coding
5782       0                     protein_coding
5783       0                     protein_coding
5784       0                     protein_coding
5785       0                     protein_coding
5786       0                     protein_coding
5787       0                     protein_coding
5788       0                     protein_coding
5789       2                     protein_coding
5790       2                     protein_coding
5791       2                     protein_coding
5792       2                     protein_coding
5793       2                     protein_coding
5794       2                     protein_coding
5795       2                     protein_coding
5796       2                     protein_coding
5797       2                     protein_coding
5798       2                     protein_coding
5799       2                     protein_coding
5800       2                     protein_coding
5801       2                     protein_coding
5802       2                     protein_coding
5803       2                     protein_coding
5804       2                     protein_coding
5805       2                     protein_coding
5806       2                     protein_coding
5807       2                     protein_coding
5808       2                     protein_coding
5809       2                     protein_coding
5810       2                     protein_coding
5811       2                     protein_coding
5812       2                     protein_coding
5813       2                     protein_coding
5814       2                     protein_coding
5815       2                     protein_coding
5816       2                     protein_coding
5817       2                     protein_coding
5818       2                     protein_coding
5819       2                     protein_coding
5820       2                     protein_coding
5821       2                     protein_coding
5822       2                     protein_coding
5823       2                     protein_coding
5824       2                     protein_coding
5825       2                     protein_coding
5826       2                     protein_coding
5827       2                     protein_coding
5828       2                     protein_coding
5829       2                     protein_coding
5830       2                     protein_coding
5831       2                     protein_coding
5832       2                     protein_coding
5833       2                     protein_coding
5834       2                     protein_coding
5835       2                     protein_coding
5836       2                     protein_coding
5837       2                     protein_coding
5838       2                     protein_coding
5839       2                     protein_coding
5840       2                     protein_coding
5841       2                     protein_coding
5842       2                     protein_coding
5843       2                     protein_coding
5844       2                     protein_coding
5845       2                     protein_coding
5846       2                     protein_coding
5847       2                     protein_coding
5848       2                     protein_coding
5849       2                     protein_coding
5850       2                     protein_coding
5851       2                     protein_coding
5852       2                     protein_coding
5853       2                     protein_coding
5854       2                     protein_coding
5855       2                     protein_coding
5856       2                     protein_coding
5857       2                     protein_coding
5858       2                     protein_coding
5859       2                     protein_coding
5860       2                     protein_coding
5861       2                     protein_coding
5862       2                     protein_coding
5863       2                     protein_coding
5864       2                     protein_coding
5865       2                     protein_coding
5866       2                     protein_coding
5867       2                     protein_coding
5868       2                     protein_coding
5869       2                     protein_coding
5870       2                     protein_coding
5871       2                     protein_coding
5872       2                     protein_coding
5873       2                     protein_coding
5874       2                     protein_coding
5875       2                     protein_coding
5876       2                     protein_coding
5877       2                     protein_coding
5878       2                     protein_coding
5879       2                     protein_coding
5880       2                     protein_coding
5881       2                     protein_coding
5882       2                     protein_coding
5883       2                     protein_coding
5884       2                     protein_coding
5885       2                     protein_coding
5886       2                     protein_coding
5887       2                     protein_coding
5888       2                     protein_coding
5889       2                     protein_coding
5890       2                     protein_coding
5891       2                     protein_coding
5892       2                     protein_coding
5893       2                     protein_coding
5894       2                     protein_coding
5895       2                     protein_coding
5896       2                     protein_coding
5897       2                     protein_coding
5898       2                     protein_coding
5899       2                     protein_coding
5900       2                     protein_coding
5901       2                     protein_coding
5902       2                     protein_coding
5903       2                     protein_coding
5904       2                     protein_coding
5905       2                     protein_coding
5906       2                     protein_coding
5907       2                     protein_coding
5908       2                     protein_coding
5909       2                     protein_coding
5910       2                     protein_coding
5911       2                     protein_coding
5912       2                     protein_coding
5913       2                     protein_coding
5914       2                     protein_coding
5915       2                     protein_coding
5916       2                     protein_coding
5917       2                     protein_coding
5918       2                     protein_coding
5919       2                     protein_coding
5920       2                     protein_coding
5921       2                     protein_coding
5922       2                     protein_coding
5923       2                     protein_coding
5924       2                     protein_coding
5925       2                     protein_coding
5926       2                     protein_coding
5927       2                     protein_coding
5928       2                     protein_coding
5929       2                     protein_coding
5930       2                     protein_coding
5931       2                     protein_coding
5932       2                     protein_coding
5933       2                     protein_coding
5934       2                     protein_coding
5935       2                     protein_coding
5936       2                     protein_coding
5937       2                     protein_coding
5938       2                     protein_coding
5939       2                     protein_coding
5940       2                     protein_coding
5941       2                     protein_coding
5942       2                     protein_coding
5943       2                     protein_coding
5944       2                     protein_coding
5945       2                     protein_coding
5946       2                     protein_coding
5947       2                     protein_coding
5948       2                     protein_coding
5949       2                     protein_coding
5950       2                     protein_coding
5951       2                     protein_coding
5952       2                     protein_coding
5953       2                     protein_coding
5954       2                     protein_coding
5955       2                     protein_coding
5956       2                     protein_coding
5957       2                     protein_coding
5958       2                     protein_coding
5959       2                     protein_coding
5960       2                     protein_coding
5961       2                     protein_coding
5962       2                     protein_coding
5963       2                     protein_coding
5964       2                     protein_coding
5965       2                     protein_coding
5966       2                     protein_coding
5967       2                     protein_coding
5968       2                     protein_coding
5969       2                     protein_coding
5970       2                     protein_coding
5971       2                     protein_coding
5972       2                     protein_coding
5973       2                     protein_coding
5974       2                     protein_coding
5975       2                     protein_coding
5976       2                     protein_coding
5977       2                     protein_coding
5978       2                     protein_coding
5979       2                     protein_coding
5980       2                     protein_coding
5981       2                     protein_coding
5982       2                     protein_coding
5983       2                     protein_coding
5984       2                     protein_coding
5985       2                     protein_coding
5986       2                     protein_coding
5987       2                     protein_coding
5988       2                     protein_coding
5989       2                     protein_coding
5990       2                     protein_coding
5991       2                     protein_coding
5992       2                     protein_coding
5993       2                     protein_coding
5994       2                     protein_coding
5995       2                     protein_coding
5996       2                     protein_coding
5997       2                     protein_coding
5998       2                     protein_coding
5999       2                     protein_coding
6000       2                     protein_coding
6001       2                     protein_coding
6002       2                     protein_coding
6003       2                     protein_coding
6004       2                     protein_coding
6005       2                     protein_coding
6006       2                     protein_coding
6007       2                     protein_coding
6008       2                     protein_coding
6009       2                     protein_coding
6010       2                     protein_coding
6011       2                     protein_coding
6012       2                     protein_coding
6013       2                     protein_coding
6014       2                     protein_coding
6015       2                     protein_coding
6016       2                     protein_coding
6017       2                     protein_coding
6018       2                     protein_coding
6019       2                     protein_coding
6020       2                     protein_coding
6021       2                     protein_coding
6022       2                     protein_coding
6023       2                     protein_coding
6024       2                     protein_coding
6025       2                     protein_coding
6026       2                     protein_coding
6027       2                     protein_coding
6028       2                     protein_coding
6029       2                     protein_coding
6030       2                     protein_coding
6031       2                     protein_coding
6032       2                     protein_coding
6033       2                     protein_coding
6034       2                     protein_coding
6035       2                     protein_coding
6036       2                     protein_coding
6037       2                     protein_coding
6038       2                     protein_coding
6039       2                     protein_coding
6040       2                     protein_coding
6041       2                     protein_coding
6042       2                     protein_coding
6043       2                     protein_coding
6044       2                     protein_coding
6045       2                     protein_coding
6046       2                     protein_coding
6047       2                     protein_coding
6048       2                     protein_coding
6049       2                     protein_coding
6050       2                     protein_coding
6051       2                     protein_coding
6052       2                     protein_coding
6053       2                     protein_coding
6054       2                     protein_coding
6055       2                     protein_coding
6056       2                     protein_coding
6057       2                     protein_coding
6058       2                     protein_coding
6059       2                     protein_coding
6060       2                     protein_coding
6061       2                     protein_coding
6062       2                     protein_coding
6063       2                     protein_coding
6064       2                     protein_coding
6065       2                     protein_coding
6066       2                     protein_coding
6067       2                     protein_coding
6068       2                     protein_coding
6069       2                     protein_coding
6070       2                     protein_coding
6071       2                     protein_coding
6072       2                     protein_coding
6073       2                     protein_coding
6074       2                     protein_coding
6075       2                     protein_coding
6076       2                     protein_coding
6077       2                     protein_coding
6078       2                     protein_coding
6079       2                     protein_coding
6080       2                     protein_coding
6081       2                     protein_coding
6082       2                     protein_coding
6083       2                     protein_coding
6084       2                     protein_coding
6085       2                     protein_coding
6086       2                     protein_coding
6087       2                     protein_coding
6088       2                     protein_coding
6089       2                     protein_coding
6090       2                     protein_coding
6091       2                     protein_coding
6092       2                     protein_coding
6093       2                     protein_coding
6094       2                     protein_coding
6095       2                     protein_coding
6096       2                     protein_coding
6097       2                     protein_coding
6098       2                     protein_coding
6099       2                     protein_coding
6100       2                     protein_coding
6101       2                     protein_coding
6102       2                     protein_coding
6103       2                     protein_coding
6104       2                     protein_coding
6105       2                     protein_coding
6106       2                     protein_coding
6107       2                     protein_coding
6108       2                     protein_coding
6109       2                     protein_coding
6110       2                     protein_coding
6111       2                     protein_coding
6112       2                     protein_coding
6113       2                     protein_coding
6114       2                     protein_coding
6115       2                     protein_coding
6116       2                     protein_coding
6117       2                     protein_coding
6118       2                     protein_coding
6119       2                     protein_coding
6120       2                     protein_coding
6121       2                     protein_coding
6122       2                     protein_coding
6123       2                     protein_coding
6124       2                     protein_coding
6125       2                     protein_coding
6126       2                     protein_coding
6127       2                     protein_coding
6128       2                     protein_coding
6129       2                     protein_coding
6130       2                     protein_coding
6131       2                     protein_coding
6132       2                     protein_coding
6133       2                     protein_coding
6134       2                     protein_coding
6135       2                     protein_coding
6136       2                     protein_coding
6137       2                     protein_coding
6138       2                     protein_coding
6139       2                     protein_coding
6140       2                     protein_coding
6141       2                     protein_coding
6142       2                     protein_coding
6143       2                     protein_coding
6144       2                     protein_coding
6145       2                     protein_coding
6146       2                     protein_coding
6147       2                     protein_coding
6148       2                     protein_coding
6149       2                     protein_coding
6150       2                     protein_coding
6151       2                     protein_coding
6152       2                     protein_coding
6153       2                     protein_coding
6154       2                     protein_coding
6155       2                     protein_coding
6156       2                     protein_coding
6157       2                     protein_coding
6158       2                     protein_coding
6159       2                     protein_coding
6160       2                     protein_coding
6161       2                     protein_coding
6162       2                     protein_coding
6163       2                     protein_coding
6164       2                     protein_coding
6165       2                     protein_coding
6166       2                     protein_coding
6167       2                     protein_coding
6168       2                     protein_coding
6169       2                     protein_coding
6170       2                     protein_coding
6171       2                     protein_coding
6172       2                     protein_coding
6173       2                     protein_coding
6174       2                     protein_coding
6175       2                     protein_coding
6176       2                     protein_coding
6177       2                     protein_coding
6178       2                     protein_coding
6179       2                     protein_coding
6180       2                     protein_coding
6181       2                     protein_coding
6182       2                     protein_coding
6183       2                     protein_coding
6184       2                     protein_coding
6185       2                     protein_coding
6186       2                     protein_coding
6187       2                     protein_coding
6188       2                     protein_coding
6189       2                     protein_coding
6190       2                     protein_coding
6191       2                     protein_coding
6192       2                     protein_coding
6193       2                     protein_coding
6194       2                     protein_coding
6195       2                     protein_coding
6196       2                     protein_coding
6197       2                     protein_coding
6198       2                     protein_coding
6199       2                     protein_coding
6200       2                     protein_coding
6201       2                     protein_coding
6202       2                     protein_coding
6203       2                     protein_coding
6204       2                     protein_coding
6205       2                     protein_coding
6206       2                     protein_coding
6207       2                     protein_coding
6208       2                     protein_coding
6209       2                     protein_coding
6210       2                     protein_coding
6211       2                     protein_coding
6212       2                     protein_coding
6213       2                     protein_coding
6214       2                     protein_coding
6215       2                     protein_coding
6216       2                     protein_coding
6217       2                     protein_coding
6218       2                     protein_coding
6219       2                     protein_coding
6220       2                     protein_coding
6221       2                     protein_coding
6222       2                     protein_coding
6223       2                     protein_coding
6224       2                     protein_coding
6225       2                     protein_coding
6226       2                     protein_coding
6227       2                     protein_coding
6228       2                     protein_coding
6229       2                     protein_coding
6230       2                     protein_coding
6231       2                     protein_coding
6232       2                     protein_coding
6233       2                     protein_coding
6234       2                     protein_coding
6235       2                     protein_coding
6236       2                     protein_coding
6237       2                     protein_coding
6238       2                     protein_coding
6239       2                     protein_coding
6240       2                     protein_coding
6241       2                     protein_coding
6242       2                     protein_coding
6243       2                     protein_coding
6244       2                     protein_coding
6245       2                     protein_coding
6246       2                     protein_coding
6247       2                     protein_coding
6248       2                     protein_coding
6249       2                     protein_coding
6250       2                     protein_coding
6251       2                     protein_coding
6252       2                     protein_coding
6253       2                     protein_coding
6254       2                     protein_coding
6255       2                     protein_coding
6256       2                     protein_coding
6257       2                     protein_coding
6258       2                     protein_coding
6259       2                     protein_coding
6260       2                     protein_coding
6261       2                     protein_coding
6262       2                     protein_coding
6263       2                     protein_coding
6264       2                            lincRNA
6265       2                            lincRNA
6266       2                            lincRNA
6267       0                     sense_intronic
6268       0                     sense_intronic
6269       0                     protein_coding
6270       0                     protein_coding
6271       0                     protein_coding
6272       0                     protein_coding
6273       0                     protein_coding
6274       0                     protein_coding
6275       0                     protein_coding
6276       0                     protein_coding
6277       0                     protein_coding
6278       0                     protein_coding
6279       0                     protein_coding
6280       0                     protein_coding
6281       0                     protein_coding
6282       0                     protein_coding
6283       0                     protein_coding
6284       0                     protein_coding
6285       0                     protein_coding
6286       0                     protein_coding
6287       0                     protein_coding
6288       0                     protein_coding
6289       0                     protein_coding
6290       0                     protein_coding
6291       0                     protein_coding
6292       0                     protein_coding
6293       0                     protein_coding
6294       0                     protein_coding
6295       0                     protein_coding
6296       0                     protein_coding
6297       0                     protein_coding
6298       0                     protein_coding
6299       0                     protein_coding
6300       0                     protein_coding
6301       0                     protein_coding
6302       0                     protein_coding
6303       0                     protein_coding
6304       0                     protein_coding
6305       0                     protein_coding
6306       0                     protein_coding
6307       0                     protein_coding
6308       0                     protein_coding
6309       0                     protein_coding
6310       0                     protein_coding
6311       0                     protein_coding
6312       0                     protein_coding
6313       0                     protein_coding
6314       0                     protein_coding
6315       0                     protein_coding
6316       0                     protein_coding
6317       0                     protein_coding
6318       0                     protein_coding
6319       0                     protein_coding
6320       0                     protein_coding
6321       0                     protein_coding
6322       0                     protein_coding
6323       0                     protein_coding
6324       0                     protein_coding
6325       0                     protein_coding
6326       0                     protein_coding
6327       0                     protein_coding
6328       0                     protein_coding
6329       0                     protein_coding
6330       0                     protein_coding
6331       0                     protein_coding
6332       0                     protein_coding
6333       0                     protein_coding
6334       0                     protein_coding
6335       0                     protein_coding
6336       0                     protein_coding
6337       0                     protein_coding
6338       0                     protein_coding
6339       0                     protein_coding
6340       0                     protein_coding
6341       0                     protein_coding
6342       0                     protein_coding
6343       0                     protein_coding
6344       0                     protein_coding
6345       0                     protein_coding
6346       0                     protein_coding
6347       0                     protein_coding
6348       0                     protein_coding
6349       0                     protein_coding
6350       0                     protein_coding
6351       0                     protein_coding
6352       0                     protein_coding
6353       0                     protein_coding
6354       0                     protein_coding
6355       0                     protein_coding
6356       0                     protein_coding
6357       0                     protein_coding
6358       0                     protein_coding
6359       0                     protein_coding
6360       0                     protein_coding
6361       0                     protein_coding
6362       0                     protein_coding
6363       0                     protein_coding
6364       0                     protein_coding
6365       0                     protein_coding
6366       0                     protein_coding
6367       0                     protein_coding
6368       0                     protein_coding
6369       0                     protein_coding
6370       0                     protein_coding
6371       2                            lincRNA
6372       2                            lincRNA
6373       2                            lincRNA
6374       2               processed_pseudogene
6375       2                     protein_coding
6376       2                     protein_coding
6377       2                     protein_coding
6378       2                     protein_coding
6379       2                     protein_coding
6380       2                     protein_coding
6381       2                     protein_coding
6382       2                     protein_coding
6383       2                     protein_coding
6384       2                     protein_coding
6385       2                     protein_coding
6386       2                     protein_coding
6387       2                     protein_coding
6388       2                     protein_coding
6389       2                     protein_coding
6390       2                     protein_coding
6391       2                     protein_coding
6392       2               processed_pseudogene
6393       2                            lincRNA
6394       2                            lincRNA
6395       0                            lincRNA
6396       0                            lincRNA
6397       0                            lincRNA
6398       0                            lincRNA
6399       0                            lincRNA
6400       0                            lincRNA
6401       0                            lincRNA
6402       0                            lincRNA
6403       0                            lincRNA
6404       0                            lincRNA
6405       0                            lincRNA
6406       0                            lincRNA
6407       0                            lincRNA
6408       0                            lincRNA
6409       0                     protein_coding
6410       0                     protein_coding
6411       0                     protein_coding
6412       0                     protein_coding
6413       0                     protein_coding
6414       0                     protein_coding
6415       0                     protein_coding
6416       0                     protein_coding
6417       0                     protein_coding
6418       0                     protein_coding
6419       0                     protein_coding
6420       0                     protein_coding
6421       0                     protein_coding
6422       0                     protein_coding
6423       0                     protein_coding
6424       0                     protein_coding
6425       0                     protein_coding
6426       0                     protein_coding
6427       0                     protein_coding
6428       0                     protein_coding
6429       0                     protein_coding
6430       0                     protein_coding
6431       0                     protein_coding
6432       0                     protein_coding
6433       0                     protein_coding
6434       0                     protein_coding
6435       0                     protein_coding
6436       0                     protein_coding
6437       0                     protein_coding
6438       0                     protein_coding
6439       0                     protein_coding
6440       0                     protein_coding
6441       0                     protein_coding
6442       0                     protein_coding
6443       0                     protein_coding
6444       0                     protein_coding
6445       0                     protein_coding
6446       0                     protein_coding
6447       0                     protein_coding
6448       0                     protein_coding
6449       0                     protein_coding
6450       0                     protein_coding
6451       0                     protein_coding
6452       0                     protein_coding
6453       0                     protein_coding
6454       0                     protein_coding
6455       0                     protein_coding
6456       0                     protein_coding
6457       0                     protein_coding
6458       0                     protein_coding
6459       0                     protein_coding
6460       0                     protein_coding
6461       0                     protein_coding
6462       0                     protein_coding
6463       0                     protein_coding
6464       0                     protein_coding
6465       0                     protein_coding
6466       0                     protein_coding
6467       0                     protein_coding
6468       0                     protein_coding
6469       0                     protein_coding
6470       0                     protein_coding
6471       0                     protein_coding
6472       0                     protein_coding
6473       0                     protein_coding
6474       0                     protein_coding
6475       0                     protein_coding
6476       0                     protein_coding
6477       0                     protein_coding
6478       0                     protein_coding
6479       0                     protein_coding
6480       0                     protein_coding
6481       0                     protein_coding
6482       0                     protein_coding
6483       0                     protein_coding
6484       0                     protein_coding
6485       0                     protein_coding
6486       0                     protein_coding
6487       0                     protein_coding
6488       0                     protein_coding
6489       0                     protein_coding
6490       0                     protein_coding
6491       0                     protein_coding
6492       0                     protein_coding
6493       0                     protein_coding
6494       0                     protein_coding
6495       0                     protein_coding
6496       0                     protein_coding
6497       0                     protein_coding
6498       0                     protein_coding
6499       0                     protein_coding
6500       0                     protein_coding
6501       0                     protein_coding
6502       0                     protein_coding
6503       0                     protein_coding
6504       0                     protein_coding
6505       0                     protein_coding
6506       0                     protein_coding
6507       0                     protein_coding
6508       0                     protein_coding
6509       0                     protein_coding
6510       0                     protein_coding
6511       0                     protein_coding
6512       0                     protein_coding
6513       0                     protein_coding
6514       0                     protein_coding
6515       0                     protein_coding
6516       0                     protein_coding
6517       0                     protein_coding
6518       0                     protein_coding
6519       0                     protein_coding
6520       0                     protein_coding
6521       0                     protein_coding
6522       0                     protein_coding
6523       0                     protein_coding
6524       0                     protein_coding
6525       0                     protein_coding
6526       0             unprocessed_pseudogene
6527       0             unprocessed_pseudogene
6528       0             unprocessed_pseudogene
6529       0             unprocessed_pseudogene
6530       0             unprocessed_pseudogene
6531       0             unprocessed_pseudogene
6532       0             unprocessed_pseudogene
6533       0             unprocessed_pseudogene
6534       0             unprocessed_pseudogene
6535       0                          antisense
6536       0                          antisense
6537       2                     protein_coding
6538       2                     protein_coding
6539       2                     protein_coding
6540       2                     protein_coding
6541       2                     protein_coding
6542       2                     protein_coding
6543       2                     protein_coding
6544       2                     protein_coding
6545       2                     protein_coding
6546       2                     protein_coding
6547       2                     protein_coding
6548       2                     protein_coding
6549       2                     protein_coding
6550       2                     protein_coding
6551       2                     protein_coding
6552       2                     protein_coding
6553       2                     protein_coding
6554       2                     protein_coding
6555       2                     protein_coding
6556       2                     protein_coding
6557       2                     protein_coding
6558       2                     protein_coding
6559       2                     protein_coding
6560       2                     protein_coding
6561       2                     protein_coding
6562       2                     protein_coding
6563       2                     protein_coding
6564       2                     protein_coding
6565       2                     protein_coding
6566       2                     protein_coding
6567       2                     protein_coding
6568       2                     protein_coding
6569       2                     protein_coding
6570       2                     protein_coding
6571       2                     protein_coding
6572       2                     protein_coding
6573       2                     protein_coding
6574       2                     protein_coding
6575       2                     protein_coding
6576       2                     protein_coding
6577       2                     protein_coding
6578       2                     protein_coding
6579       2                     protein_coding
6580       2                     protein_coding
6581       2                     protein_coding
6582       2                     protein_coding
6583       2                     protein_coding
6584       2                     protein_coding
6585       2                     protein_coding
6586       2                     protein_coding
6587       2                     protein_coding
6588       2                     protein_coding
6589       2                     protein_coding
6590       2                     protein_coding
6591       2                     protein_coding
6592       2                     protein_coding
6593       2                     protein_coding
6594       2                     protein_coding
6595       2                     protein_coding
6596       2                     protein_coding
6597       2                     protein_coding
6598       2                     protein_coding
6599       2                     protein_coding
6600       2                     protein_coding
6601       2                     protein_coding
6602       2                     protein_coding
6603       2                     protein_coding
6604       2                     protein_coding
6605       2                     protein_coding
6606       2                     protein_coding
6607       2                     protein_coding
6608       2                     protein_coding
6609       2                     protein_coding
6610       2                     protein_coding
6611       2                     protein_coding
6612       2                     protein_coding
6613       2                     protein_coding
6614       2                     protein_coding
6615       2                     protein_coding
6616       0                     protein_coding
6617       0                     protein_coding
6618       0                     protein_coding
6619       0                     protein_coding
6620       0                     protein_coding
6621       0                     protein_coding
6622       0                     protein_coding
6623       0                     protein_coding
6624       0                     protein_coding
6625       0                     protein_coding
6626       0                     protein_coding
6627       0                     protein_coding
6628       0               processed_pseudogene
6629       0               processed_pseudogene
6630       0               processed_pseudogene
6631       0               processed_pseudogene
6632       0                            lincRNA
6633       0                            lincRNA
6634       0                            lincRNA
6635       2                     protein_coding
6636       2                     protein_coding
6637       2                     protein_coding
6638       2                     protein_coding
6639       2                     protein_coding
6640       2                     protein_coding
6641       2                     protein_coding
6642       2                     protein_coding
6643       2                     protein_coding
6644       2                     protein_coding
6645       2                     protein_coding
6646       2                     protein_coding
6647       2                     protein_coding
6648       2                     protein_coding
6649       2                     protein_coding
6650       2                     protein_coding
6651       2                     protein_coding
6652       2                     protein_coding
6653       2                     protein_coding
6654       2                     protein_coding
6655       2                     protein_coding
6656       2                     protein_coding
6657       2                     protein_coding
6658       2                     protein_coding
6659       2                     protein_coding
6660       2                     protein_coding
6661       2                     protein_coding
6662       2                     protein_coding
6663       2                     protein_coding
6664       2                     protein_coding
6665       2                     protein_coding
6666       2                     protein_coding
6667       2                     protein_coding
6668       2                     protein_coding
6669       2                     protein_coding
6670       2                     protein_coding
6671       2                     protein_coding
6672       2                     protein_coding
6673       2                     protein_coding
6674       2                     protein_coding
6675       2                     protein_coding
6676       2                     protein_coding
6677       2                     protein_coding
6678       2                     protein_coding
6679       2                     protein_coding
6680       2                     protein_coding
6681       2                            lincRNA
6682       2                            lincRNA
6683       2               processed_pseudogene
6684       0                     protein_coding
6685       0                     protein_coding
6686       0                     protein_coding
6687       0                     protein_coding
6688       0                     protein_coding
6689       0                     protein_coding
6690       0                     protein_coding
6691       0                     protein_coding
6692       0                     protein_coding
6693       0                     protein_coding
6694       0                     protein_coding
6695       0                     protein_coding
6696       0                     protein_coding
6697       0                     protein_coding
6698       0                     protein_coding
6699       0                     protein_coding
6700       0                     protein_coding
6701       0                     protein_coding
6702       0                     protein_coding
6703       0                     protein_coding
6704       0                     protein_coding
6705       0                     protein_coding
6706       0                     protein_coding
6707       0                     protein_coding
6708       0                     protein_coding
6709       0                     protein_coding
6710       0                     protein_coding
6711       0                     protein_coding
6712       0                     protein_coding
6713       0                     protein_coding
6714       0                     protein_coding
6715       0                     protein_coding
6716       0                     protein_coding
6717       0                     protein_coding
6718       0                     protein_coding
6719       0                     protein_coding
6720       0                     protein_coding
6721       0                     protein_coding
6722       0                     protein_coding
6723       0                     protein_coding
6724       0                     protein_coding
6725       0                     protein_coding
6726       0                     protein_coding
6727       0                     protein_coding
6728       0                     protein_coding
6729       0                     protein_coding
6730       0                     protein_coding
6731       0                     protein_coding
6732       0                     protein_coding
6733       2                     protein_coding
6734       2                     protein_coding
6735       2                     protein_coding
6736       2                     protein_coding
6737       2                     protein_coding
6738       0                          antisense
6739       0                          antisense
6740       2             unprocessed_pseudogene
6741       2             unprocessed_pseudogene
6742       2             unprocessed_pseudogene
6743       2             unprocessed_pseudogene
6744       2             unprocessed_pseudogene
6745       2             unprocessed_pseudogene
6746       0                     protein_coding
6747       0                     protein_coding
6748       0                     protein_coding
6749       0                     protein_coding
6750       0                     protein_coding
6751       0                     protein_coding
6752       0                     protein_coding
6753       0                     protein_coding
6754       0                     protein_coding
6755       0                     protein_coding
6756       0                     protein_coding
6757       0                     protein_coding
6758       0                     protein_coding
6759       0                     protein_coding
6760       0                     protein_coding
6761       0                     protein_coding
6762       0                     protein_coding
6763       0                     protein_coding
6764       0                     protein_coding
6765       0                     protein_coding
6766       0                     protein_coding
6767       0                     protein_coding
6768       0                     protein_coding
6769       0                     protein_coding
6770       0                     protein_coding
6771       0                     protein_coding
6772       0                     protein_coding
6773       0                     protein_coding
6774       0                     protein_coding
6775       0                     protein_coding
6776       0                     protein_coding
6777       0                     protein_coding
6778       0                     protein_coding
6779       0                     protein_coding
6780       0                     protein_coding
6781       0                     protein_coding
6782       0                     protein_coding
6783       0                     protein_coding
6784       0                     protein_coding
6785       0                     protein_coding
6786       0                     protein_coding
6787       0                     protein_coding
6788       0                     protein_coding
6789       0                     protein_coding
6790       0                     protein_coding
6791       0                     protein_coding
6792       0                     protein_coding
6793       0                     protein_coding
6794       0                     protein_coding
6795       0                     protein_coding
6796       0                     protein_coding
6797       0                          antisense
6798       0                          antisense
6799       2               processed_pseudogene
6800       2                            lincRNA
6801       2                            lincRNA
6802       0                     protein_coding
6803       0                     protein_coding
6804       0                     protein_coding
6805       0                     protein_coding
6806       0                     protein_coding
6807       0                     protein_coding
6808       0                     protein_coding
6809       0                     protein_coding
6810       0                     protein_coding
6811       0                     protein_coding
6812       0                     protein_coding
6813       0                     protein_coding
6814       0                     protein_coding
6815       0                     protein_coding
6816       0                     protein_coding
6817       0                     protein_coding
6818       0                     protein_coding
6819       0                     protein_coding
6820       0                     protein_coding
6821       0                     protein_coding
6822       0                     protein_coding
6823       0                     protein_coding
6824       0                     protein_coding
6825       0                     protein_coding
6826       0                     protein_coding
6827       0                     protein_coding
6828       0                     protein_coding
6829       0                     protein_coding
6830       0                     protein_coding
6831       2                     protein_coding
6832       2                     protein_coding
6833       2                     protein_coding
6834       2                     protein_coding
6835       2                     protein_coding
6836       2                     protein_coding
6837       2                     protein_coding
6838       2                     protein_coding
6839       2                     protein_coding
6840       2                     protein_coding
6841       2                     protein_coding
6842       2                     protein_coding
6843       2                     protein_coding
6844       2                     protein_coding
6845       2                     protein_coding
6846       2                     protein_coding
6847       2                     protein_coding
6848       2                     protein_coding
6849       2                     protein_coding
6850       2                     protein_coding
6851       2                     protein_coding
6852       2                     protein_coding
6853       2                     protein_coding
6854       2                     protein_coding
6855       2                     protein_coding
6856       2                     protein_coding
6857       2                     protein_coding
6858       2                     protein_coding
6859       2                     protein_coding
6860       2                     protein_coding
6861       2                     protein_coding
6862       2                     protein_coding
6863       2                     protein_coding
6864       2                     protein_coding
6865       2                     protein_coding
6866       2                     protein_coding
6867       2                     protein_coding
6868       2                     protein_coding
6869       2                     protein_coding
6870       2                     protein_coding
6871       2                     protein_coding
6872       2                     protein_coding
6873       2                     protein_coding
6874       2                     protein_coding
6875       2                     protein_coding
6876       2                     protein_coding
6877       0                            lincRNA
6878       0                            lincRNA
6879       0                     protein_coding
6880       0                          antisense
6881       0                          antisense
6882       2               processed_pseudogene
6883       2               processed_pseudogene
6884       0                            lincRNA
6885       0                            lincRNA
6886       0                            lincRNA
6887       0                            lincRNA
6888       0                            lincRNA
6889       0                            lincRNA
6890       0                            lincRNA
6891       0                            lincRNA
6892       0                            lincRNA
6893       0                            lincRNA
6894       0                            lincRNA
6895       0                            lincRNA
6896       0                            lincRNA
6897       0                            lincRNA
6898       0                            lincRNA
6899       0                            lincRNA
6900       0                            lincRNA
6901       0                            lincRNA
6902       0                     protein_coding
6903       0                     protein_coding
6904       0                     protein_coding
6905       0                     protein_coding
6906       0                     protein_coding
6907       0                     protein_coding
6908       0                     protein_coding
6909       0                     protein_coding
6910       0                     protein_coding
6911       0                                TEC
6912       0                                TEC
6913       2                     protein_coding
6914       2                     protein_coding
6915       2                     protein_coding
6916       2                     protein_coding
6917       2                     protein_coding
6918       2                     protein_coding
6919       2                     protein_coding
6920       2                     protein_coding
6921       2                     protein_coding
6922       2                     protein_coding
6923       2                     protein_coding
6924       2                     protein_coding
6925       2                     protein_coding
6926       2                     protein_coding
6927       2                     protein_coding
6928       2                     protein_coding
6929       2                     protein_coding
6930       2                     protein_coding
6931       2                     protein_coding
6932       2                     protein_coding
6933       2                     protein_coding
6934       2                     protein_coding
6935       2                     protein_coding
6936       2                     protein_coding
6937       2                     protein_coding
6938       2                     protein_coding
6939       2                     protein_coding
6940       2                     protein_coding
6941       2                     protein_coding
6942       2                     protein_coding
6943       2                     protein_coding
6944       2                     protein_coding
6945       2                     protein_coding
6946       2                     protein_coding
6947       2                     protein_coding
6948       2                     protein_coding
6949       2                     protein_coding
6950       2                     protein_coding
6951       2                     protein_coding
6952       2                     protein_coding
6953       2                     protein_coding
6954       2                     protein_coding
6955       2                     protein_coding
6956       2                     protein_coding
6957       2                     protein_coding
6958       2                     protein_coding
6959       2                     protein_coding
6960       2                     protein_coding
6961       2                     protein_coding
6962       2                     protein_coding
6963       2                     protein_coding
6964       2                     protein_coding
6965       2                     protein_coding
6966       2                     protein_coding
6967       2                     protein_coding
6968       2                     protein_coding
6969       2                     protein_coding
6970       2                     protein_coding
6971       2                     protein_coding
6972       2                     protein_coding
6973       2                     protein_coding
6974       2                     protein_coding
6975       2                     protein_coding
6976       2                     protein_coding
6977       2                     protein_coding
6978       2                     protein_coding
6979       2                     protein_coding
6980       2                     protein_coding
6981       2                     protein_coding
6982       2                     protein_coding
6983       2                     protein_coding
6984       2                     protein_coding
6985       2                     protein_coding
6986       2                     protein_coding
6987       2                     protein_coding
6988       2                     protein_coding
6989       2                     protein_coding
6990       2                     protein_coding
6991       2                     protein_coding
6992       2                     protein_coding
6993       2                     protein_coding
6994       2                     protein_coding
6995       2                     protein_coding
6996       2                     protein_coding
6997       2                     protein_coding
6998       2                     protein_coding
6999       2                     protein_coding
7000       2                     protein_coding
7001       2                     protein_coding
7002       2                     protein_coding
7003       2                     protein_coding
7004       2                     protein_coding
7005       2                     protein_coding
7006       2                     protein_coding
7007       2                     protein_coding
7008       2                     protein_coding
7009       2                     protein_coding
7010       2                     protein_coding
7011       2                     protein_coding
7012       2                     protein_coding
7013       2                     protein_coding
7014       2                     protein_coding
7015       2                     protein_coding
7016       2                     protein_coding
7017       2                     protein_coding
7018       2                     protein_coding
7019       2                     protein_coding
7020       2                     protein_coding
7021       2                     protein_coding
7022       2                     protein_coding
7023       2                     protein_coding
7024       2                     protein_coding
7025       2                     protein_coding
7026       2                     protein_coding
7027       2                     protein_coding
7028       2                     protein_coding
7029       2                     protein_coding
7030       2                     protein_coding
7031       2                     protein_coding
7032       2                     protein_coding
7033       2                     protein_coding
7034       2                     protein_coding
7035       2                     protein_coding
7036       2                     protein_coding
7037       2                     protein_coding
7038       2                     protein_coding
7039       2                     protein_coding
7040       2                     protein_coding
7041       2                     protein_coding
7042       2                     protein_coding
7043       2                     protein_coding
7044       2                     protein_coding
7045       2                     protein_coding
7046       2                     protein_coding
7047       2                     protein_coding
7048       2                     protein_coding
7049       2                     protein_coding
7050       2                     protein_coding
7051       2                     protein_coding
7052       2                     protein_coding
7053       2                     protein_coding
7054       2                     protein_coding
7055       2                     protein_coding
7056       2                     protein_coding
7057       2                     protein_coding
7058       2                     protein_coding
7059       2                     protein_coding
7060       2                     protein_coding
7061       2                     protein_coding
7062       2                     protein_coding
7063       2                     protein_coding
7064       2                     protein_coding
7065       2                     protein_coding
7066       2                     protein_coding
7067       2                     protein_coding
7068       2                     protein_coding
7069       2                     protein_coding
7070       2                     protein_coding
7071       2                     protein_coding
7072       2                     protein_coding
7073       2                     protein_coding
7074       2                     protein_coding
7075       2                     protein_coding
7076       2                     protein_coding
7077       2                     protein_coding
7078       2                     protein_coding
7079       2                     protein_coding
7080       2                     protein_coding
7081       2                     protein_coding
7082       2                     protein_coding
7083       2                     protein_coding
7084       2                     protein_coding
7085       2                     protein_coding
7086       2                     protein_coding
7087       2                     protein_coding
7088       2                     protein_coding
7089       2                     protein_coding
7090       2                     protein_coding
7091       2                     protein_coding
7092       2                     protein_coding
7093       2                     protein_coding
7094       2                     protein_coding
7095       2                     protein_coding
7096       2                     protein_coding
7097       2                     protein_coding
7098       2                     protein_coding
7099       2                     protein_coding
7100       2                     protein_coding
7101       2                     protein_coding
7102       2                     protein_coding
7103       2                     protein_coding
7104       2                     protein_coding
7105       2                     protein_coding
7106       2                     protein_coding
7107       2                     protein_coding
7108       2                     protein_coding
7109       2                     protein_coding
7110       2                     protein_coding
7111       2                     protein_coding
7112       2                     protein_coding
7113       2                     protein_coding
7114       2                     protein_coding
7115       2                     protein_coding
7116       2                     protein_coding
7117       2                     protein_coding
7118       2                     protein_coding
7119       2                     protein_coding
7120       2                     protein_coding
7121       2                     protein_coding
7122       2                     protein_coding
7123       2                     protein_coding
7124       2                     protein_coding
7125       2                     protein_coding
7126       2                     protein_coding
7127       2                     protein_coding
7128       2                     protein_coding
7129       2                     protein_coding
7130       2                     protein_coding
7131       2                     protein_coding
7132       2                     protein_coding
7133       2                     protein_coding
7134       2                     protein_coding
7135       2                     protein_coding
7136       2                     protein_coding
7137       2                     protein_coding
7138       2                     protein_coding
7139       2                     protein_coding
7140       2                     protein_coding
7141       2                     protein_coding
7142       2                     protein_coding
7143       2                     protein_coding
7144       2                     protein_coding
7145       2                     protein_coding
7146       2                     protein_coding
7147       2                     protein_coding
7148       2                     protein_coding
7149       2                     protein_coding
7150       2                     protein_coding
7151       2                     protein_coding
7152       2                     protein_coding
7153       2                     protein_coding
7154       2                     protein_coding
7155       2                     protein_coding
7156       2                     protein_coding
7157       2                     protein_coding
7158       2                     protein_coding
7159       2                     protein_coding
7160       2                     protein_coding
7161       2                     protein_coding
7162       2                     protein_coding
7163       2                     protein_coding
7164       2                     protein_coding
7165       2                     protein_coding
7166       2                     protein_coding
7167       2                     protein_coding
7168       2                     protein_coding
7169       2                     protein_coding
7170       2                     protein_coding
7171       2                     protein_coding
7172       2                     protein_coding
7173       2                     protein_coding
7174       2                     protein_coding
7175       2                     protein_coding
7176       2                     protein_coding
7177       2                     protein_coding
7178       2                     protein_coding
7179       2                     protein_coding
7180       2                     protein_coding
7181       2                     protein_coding
7182       2                     protein_coding
7183       2                     protein_coding
7184       2                     protein_coding
7185       2                     protein_coding
7186       2                     protein_coding
7187       2                     protein_coding
7188       2                     protein_coding
7189       2                     protein_coding
7190       2                     protein_coding
7191       2                     protein_coding
7192       2                     protein_coding
7193       2                     protein_coding
7194       2                     protein_coding
7195       2                     protein_coding
7196       2                     protein_coding
7197       2                     protein_coding
7198       2                     protein_coding
7199       2                     protein_coding
7200       2                     protein_coding
7201       2                     protein_coding
7202       2                     protein_coding
7203       2                     protein_coding
7204       2                     protein_coding
7205       2                     protein_coding
7206       2                     protein_coding
7207       2                     protein_coding
7208       2                     protein_coding
7209       2                     protein_coding
7210       2                     protein_coding
7211       2                     protein_coding
7212       2                     protein_coding
7213       2                     protein_coding
7214       2                     protein_coding
7215       2                     protein_coding
7216       2                     protein_coding
7217       2                     protein_coding
7218       2                     protein_coding
7219       2                     protein_coding
7220       2                     protein_coding
7221       2                     protein_coding
7222       2                     protein_coding
7223       2                     protein_coding
7224       2                     protein_coding
7225       2                     protein_coding
7226       2                     protein_coding
7227       2                     protein_coding
7228       2                     protein_coding
7229       2                     protein_coding
7230       2                     protein_coding
7231       2                     protein_coding
7232       2                     protein_coding
7233       2                     protein_coding
7234       2                     protein_coding
7235       2                     protein_coding
7236       2                     protein_coding
7237       2                     protein_coding
7238       2                     protein_coding
7239       2                     protein_coding
7240       2                     protein_coding
7241       2                     protein_coding
7242       2                     protein_coding
7243       2                     protein_coding
7244       2                     protein_coding
7245       2                     protein_coding
7246       2                     protein_coding
7247       2                     protein_coding
7248       2                     protein_coding
7249       2                     protein_coding
7250       2                     protein_coding
7251       2                     protein_coding
7252       2                     protein_coding
7253       2                     protein_coding
7254       2                     protein_coding
7255       2                     protein_coding
7256       2                     protein_coding
7257       2                     protein_coding
7258       2                     protein_coding
7259       2                     protein_coding
7260       2                     protein_coding
7261       2                     protein_coding
7262       2                     protein_coding
7263       2                     protein_coding
7264       2                     protein_coding
7265       2                     protein_coding
7266       2                     protein_coding
7267       2                     protein_coding
7268       2                     protein_coding
7269       2                     protein_coding
7270       2                     protein_coding
7271       2                     protein_coding
7272       2                     protein_coding
7273       2                     protein_coding
7274       2                     protein_coding
7275       2                     protein_coding
7276       2                     protein_coding
7277       2                     protein_coding
7278       2                     protein_coding
7279       2                     protein_coding
7280       2                     protein_coding
7281       2                     protein_coding
7282       2                     protein_coding
7283       2                     protein_coding
7284       2                     protein_coding
7285       2                     protein_coding
7286       2                     protein_coding
7287       2                     protein_coding
7288       2                     protein_coding
7289       2                     protein_coding
7290       2                     protein_coding
7291       2                     protein_coding
7292       2                     protein_coding
7293       2                     protein_coding
7294       2                     protein_coding
7295       2                     protein_coding
7296       2                     protein_coding
7297       2                     protein_coding
7298       2                     protein_coding
7299       2                     protein_coding
7300       2                     protein_coding
7301       2                     protein_coding
7302       2                     protein_coding
7303       2                     protein_coding
7304       2                     protein_coding
7305       2                     protein_coding
7306       2                     protein_coding
7307       2                     protein_coding
7308       2                     protein_coding
7309       2                     protein_coding
7310       2                     protein_coding
7311       2                     protein_coding
7312       2                     protein_coding
7313       2                     protein_coding
7314       2                     protein_coding
7315       2                     protein_coding
7316       2                     protein_coding
7317       2                     protein_coding
7318       2                     protein_coding
7319       2                     protein_coding
7320       2                     protein_coding
7321       2                     protein_coding
7322       0                                TEC
7323       0               processed_pseudogene
7324       0                          antisense
7325       2                  sense_overlapping
7326       2                  sense_overlapping
7327       2                  sense_overlapping
7328       0                     protein_coding
7329       0                     protein_coding
7330       0                     protein_coding
7331       0                     protein_coding
7332       0                     protein_coding
7333       0                     protein_coding
7334       0                     protein_coding
7335       0                     protein_coding
7336       2                          antisense
7337       2                          antisense
7338       2                          antisense
7339       2                          antisense
7340       2                          antisense
7341       2                          antisense
7342       2                          antisense
7343       2                          antisense
7344       2                          antisense
7345       2                          antisense
7346       2                          antisense
7347       2                          antisense
7348       2                          antisense
7349       2                          antisense
7350       2               processed_pseudogene
7351       0                          antisense
7352       0                          antisense
7353       2                     protein_coding
7354       2                     protein_coding
7355       2                     protein_coding
7356       2                     protein_coding
7357       2                     protein_coding
7358       2                     protein_coding
7359       2                     protein_coding
7360       2                     protein_coding
7361       2                     protein_coding
7362       2                     protein_coding
7363       2                     protein_coding
7364       2                     protein_coding
7365       2                     protein_coding
7366       2                     protein_coding
7367       2                     protein_coding
7368       2                     protein_coding
7369       2                     protein_coding
7370       2                     protein_coding
7371       2                     protein_coding
7372       2                     protein_coding
7373       2                     protein_coding
7374       2                     protein_coding
7375       2                     protein_coding
7376       2                     protein_coding
7377       0                            lincRNA
7378       0                            lincRNA
7379       0                            lincRNA
7380       0                            lincRNA
7381       0                            lincRNA
7382       0                            lincRNA
7383       0                            lincRNA
7384       0                            lincRNA
7385       0                            lincRNA
7386       0                            lincRNA
7387       0                            lincRNA
7388       0                            lincRNA
7389       0                            lincRNA
7390       0                            lincRNA
7391       0                            lincRNA
7392       0                            lincRNA
7393       0                            lincRNA
7394       0                            lincRNA
7395       2                     protein_coding
7396       2                     protein_coding
7397       2                     protein_coding
7398       2                     protein_coding
7399       2                     protein_coding
7400       2                     protein_coding
7401       2                     protein_coding
7402       2                     protein_coding
7403       2                     protein_coding
7404       2                     protein_coding
7405       2                     protein_coding
7406       2                     protein_coding
7407       2                     protein_coding
7408       2                     protein_coding
7409       2                     protein_coding
7410       2                     protein_coding
7411       2                     protein_coding
7412       2                     protein_coding
7413       2                     protein_coding
7414       2                     protein_coding
7415       2                     protein_coding
7416       2                     protein_coding
7417       2                     protein_coding
7418       2                     protein_coding
7419       2                     protein_coding
7420       2                     protein_coding
7421       2                     protein_coding
7422       2                     protein_coding
7423       2                     protein_coding
7424       2                     protein_coding
7425       2                     protein_coding
7426       2                     protein_coding
7427       2                     protein_coding
7428       2                     protein_coding
7429       2                     protein_coding
7430       2                     protein_coding
7431       2                     protein_coding
7432       2                     protein_coding
7433       2                     protein_coding
7434       2                     protein_coding
7435       2                     protein_coding
7436       2                     protein_coding
7437       2                     protein_coding
7438       2                     protein_coding
7439       2                     protein_coding
7440       2                     protein_coding
7441       2                     protein_coding
7442       2                     protein_coding
7443       2                     protein_coding
7444       2                     protein_coding
7445       2                     protein_coding
7446       2                     protein_coding
7447       2                     protein_coding
7448       2                     protein_coding
7449       2                     protein_coding
7450       2                     protein_coding
7451       2                     protein_coding
7452       2                     protein_coding
7453       2                     protein_coding
7454       2                     protein_coding
7455       2                     protein_coding
7456       2                     protein_coding
7457       2                     protein_coding
7458       2                     protein_coding
7459       2                     protein_coding
7460       2                     protein_coding
7461       2                     protein_coding
7462       2                     protein_coding
7463       2                     protein_coding
7464       2                     protein_coding
7465       2                     protein_coding
7466       2                     protein_coding
7467       2                     protein_coding
7468       0                            lincRNA
7469       0                            lincRNA
7470       0                            lincRNA
7471       0                            lincRNA
7472       0                            lincRNA
7473       0                     protein_coding
7474       0                     protein_coding
7475       0                     protein_coding
7476       0                     protein_coding
7477       0                     protein_coding
7478       0                     protein_coding
7479       0                     protein_coding
7480       0                     protein_coding
7481       0                     protein_coding
7482       0                     protein_coding
7483       0                     protein_coding
7484       0                     protein_coding
7485       0                     protein_coding
7486       0                     protein_coding
7487       0                     protein_coding
7488       0                     protein_coding
7489       0                     protein_coding
7490       0                     protein_coding
7491       0                     protein_coding
7492       0                     protein_coding
7493       0                     protein_coding
7494       0                     protein_coding
7495       0                     protein_coding
7496       0                     protein_coding
7497       0                     protein_coding
7498       0                     protein_coding
7499       0                     protein_coding
7500       0                     protein_coding
7501       0                     protein_coding
7502       0                     protein_coding
7503       0                     protein_coding
7504       0                     protein_coding
7505       0                     protein_coding
7506       0                     protein_coding
7507       0                     protein_coding
7508       0                     protein_coding
7509       0                     protein_coding
7510       0                     protein_coding
7511       0                     protein_coding
7512       0                     protein_coding
7513       0                     protein_coding
7514       0                     protein_coding
7515       0                     protein_coding
7516       0                     protein_coding
7517       0                     protein_coding
7518       0                     protein_coding
7519       0                     protein_coding
7520       0                     protein_coding
7521       0                     protein_coding
7522       0                     protein_coding
7523       0                     protein_coding
7524       0                     protein_coding
7525       0                     protein_coding
7526       0                     protein_coding
7527       0                     protein_coding
7528       0                     protein_coding
7529       0                     protein_coding
7530       0                     protein_coding
7531       0                     protein_coding
7532       0                     protein_coding
7533       0                     protein_coding
7534       0                     protein_coding
7535       0                     protein_coding
7536       0                     protein_coding
7537       0                     protein_coding
7538       0                     protein_coding
7539       0                     protein_coding
7540       0                     protein_coding
7541       0                     protein_coding
7542       0                     protein_coding
7543       0                     protein_coding
7544       0                     protein_coding
7545       0                     protein_coding
7546       0                     protein_coding
7547       0                     protein_coding
7548       0                     protein_coding
7549       0                     protein_coding
7550       0                     protein_coding
7551       0                     protein_coding
7552       0                     protein_coding
7553       0                     protein_coding
7554       0                     protein_coding
7555       0                     protein_coding
7556       0                     protein_coding
7557       0                     protein_coding
7558       0                     protein_coding
7559       0                     protein_coding
7560       0                     protein_coding
7561       0                     protein_coding
7562       0                     protein_coding
7563       0                     protein_coding
7564       0                     protein_coding
7565       0                     protein_coding
7566       0                     protein_coding
7567       0                     protein_coding
7568       0                     protein_coding
7569       0                     protein_coding
7570       0                     protein_coding
7571       0                     protein_coding
7572       0                     protein_coding
7573       0                     protein_coding
7574       0                     protein_coding
7575       0                     protein_coding
7576       0                     protein_coding
7577       0                     protein_coding
7578       0                     protein_coding
7579       0                     protein_coding
7580       0                     protein_coding
7581       0                     protein_coding
7582       0                     protein_coding
7583       0                     protein_coding
7584       0                     protein_coding
7585       0                     protein_coding
7586       0                     protein_coding
7587       0                     protein_coding
7588       0                     protein_coding
7589       0                     protein_coding
7590       0                     protein_coding
7591       0                     protein_coding
7592       0                     protein_coding
7593       0                          antisense
7594       0                          antisense
7595       2                            lincRNA
7596       2                            lincRNA
7597       2                     protein_coding
7598       2                     protein_coding
7599       2                     protein_coding
7600       2                     protein_coding
7601       2                     protein_coding
7602       2                     protein_coding
7603       2                     protein_coding
7604       2                     protein_coding
7605       2                     protein_coding
7606       2                     protein_coding
7607       2                     protein_coding
7608       2                     protein_coding
7609       2                     protein_coding
7610       2                     protein_coding
7611       2                     protein_coding
7612       2                     protein_coding
7613       2                     protein_coding
7614       2                     protein_coding
7615       2                     protein_coding
7616       2                     protein_coding
7617       2                     protein_coding
7618       2                     protein_coding
7619       2                     protein_coding
7620       2                     protein_coding
7621       2                     protein_coding
7622       2                     protein_coding
7623       2                     protein_coding
7624       2                     protein_coding
7625       2                     protein_coding
7626       2                     protein_coding
7627       2                     protein_coding
7628       2                     protein_coding
7629       2                     protein_coding
7630       2                     protein_coding
7631       2                     protein_coding
7632       2                     protein_coding
7633       2                     protein_coding
7634       2                     protein_coding
7635       2                     protein_coding
7636       2                     protein_coding
7637       2                     protein_coding
7638       2                     protein_coding
7639       2                     protein_coding
7640       2                     protein_coding
7641       2                     protein_coding
7642       2                     protein_coding
7643       2                     protein_coding
7644       2                     protein_coding
7645       2                     protein_coding
7646       2                     protein_coding
7647       2                     protein_coding
7648       2                     protein_coding
7649       2                     protein_coding
7650       2                     protein_coding
7651       2                     protein_coding
7652       2                     protein_coding
7653       2                     protein_coding
7654       2                     protein_coding
7655       2                     protein_coding
7656       2                     protein_coding
7657       2                     protein_coding
7658       2                     protein_coding
7659       2                     protein_coding
7660       2                     protein_coding
7661       2                     protein_coding
7662       2                     protein_coding
7663       2                     protein_coding
7664       2                     protein_coding
7665       2                     protein_coding
7666       2                     protein_coding
7667       2                     protein_coding
7668       2                     protein_coding
7669       2                     protein_coding
7670       2                     protein_coding
7671       2                     protein_coding
7672       2                     protein_coding
7673       2                     protein_coding
7674       2                     protein_coding
7675       2                     protein_coding
7676       2                     protein_coding
7677       2                     protein_coding
7678       2                     protein_coding
7679       2                     protein_coding
7680       2                     protein_coding
7681       2                     protein_coding
7682       2                     protein_coding
7683       2                     protein_coding
7684       2                     protein_coding
7685       2                     protein_coding
7686       2                     protein_coding
7687       2                     protein_coding
7688       2                     protein_coding
7689       2                     protein_coding
7690       2                     protein_coding
7691       2                     protein_coding
7692       2                     protein_coding
7693       2                     protein_coding
7694       2                     protein_coding
7695       2                     protein_coding
7696       2                     protein_coding
7697       2                     protein_coding
7698       2                     protein_coding
7699       2                     protein_coding
7700       2                     protein_coding
7701       2                     protein_coding
7702       2                     protein_coding
7703       2                     protein_coding
7704       2                     protein_coding
7705       2                     protein_coding
7706       2                     protein_coding
7707       2                     protein_coding
7708       2                     protein_coding
7709       2                     protein_coding
7710       2                     protein_coding
7711       2                     protein_coding
7712       2                     protein_coding
7713       2                     protein_coding
7714       2                     protein_coding
7715       2                     protein_coding
7716       2                     protein_coding
7717       2                     protein_coding
7718       2                     protein_coding
7719       2                     protein_coding
7720       2                     protein_coding
7721       2                     protein_coding
7722       2                     protein_coding
7723       2                     protein_coding
7724       2                     protein_coding
7725       2                     protein_coding
7726       2                     protein_coding
7727       2                     protein_coding
7728       2                     protein_coding
7729       2                     protein_coding
7730       2                     protein_coding
7731       2                     protein_coding
7732       2                     protein_coding
7733       2                     protein_coding
7734       2                     protein_coding
7735       2                     protein_coding
7736       2                     protein_coding
7737       2                     protein_coding
7738       2                     protein_coding
7739       2                     protein_coding
7740       2                     protein_coding
7741       2                     protein_coding
7742       2                     protein_coding
7743       2                     protein_coding
7744       2                     protein_coding
7745       2                     protein_coding
7746       2                     protein_coding
7747       2                     protein_coding
7748       2                     protein_coding
7749       2                     protein_coding
7750       2                     protein_coding
7751       2                     protein_coding
7752       2                     protein_coding
7753       2                     protein_coding
7754       2                     protein_coding
7755       2                     protein_coding
7756       2                     protein_coding
7757       2                     protein_coding
7758       2                     protein_coding
7759       2                     protein_coding
7760       2                     protein_coding
7761       2                     protein_coding
7762       2                     protein_coding
7763       2                     protein_coding
7764       2                     protein_coding
7765       2                     protein_coding
7766       2                     protein_coding
7767       2                     protein_coding
7768       2                     protein_coding
7769       2                     protein_coding
7770       2                     protein_coding
7771       2                     protein_coding
7772       2                     protein_coding
7773       2                     protein_coding
7774       2                     protein_coding
7775       2                     protein_coding
7776       2                     protein_coding
7777       2                     protein_coding
7778       2                     protein_coding
7779       2                     protein_coding
7780       2                     protein_coding
7781       2                     protein_coding
7782       2                     protein_coding
7783       2                     protein_coding
7784       2                     protein_coding
7785       2                     protein_coding
7786       2                     protein_coding
7787       2                     protein_coding
7788       2                     protein_coding
7789       2                     protein_coding
7790       2                     protein_coding
7791       2                     protein_coding
7792       2                     protein_coding
7793       2                     protein_coding
7794       2                     protein_coding
7795       2                     protein_coding
7796       2                     protein_coding
7797       2                     protein_coding
7798       2                     protein_coding
7799       2                     protein_coding
7800       2                     protein_coding
7801       2                     protein_coding
7802       2                     protein_coding
7803       2                     protein_coding
7804       2                     protein_coding
7805       2                     protein_coding
7806       2                     protein_coding
7807       2                     protein_coding
7808       2                     protein_coding
7809       2                     protein_coding
7810       2                     protein_coding
7811       2                     protein_coding
7812       2                     protein_coding
7813       2                     protein_coding
7814       2                     protein_coding
7815       2                     protein_coding
7816       2                     protein_coding
7817       2                     protein_coding
7818       2                     protein_coding
7819       2                     protein_coding
7820       2                     protein_coding
7821       2                     protein_coding
7822       2                     protein_coding
7823       2                     protein_coding
7824       2                     protein_coding
7825       2                     protein_coding
7826       2                     protein_coding
7827       2                     protein_coding
7828       2                     protein_coding
7829       2                     protein_coding
7830       2                     protein_coding
7831       2                     protein_coding
7832       2                     protein_coding
7833       2                     protein_coding
7834       2                     protein_coding
7835       2                     protein_coding
7836       2                     protein_coding
7837       2                     protein_coding
7838       2                     protein_coding
7839       2                     protein_coding
7840       2                     protein_coding
7841       2                     protein_coding
7842       2                     protein_coding
7843       2                     protein_coding
7844       2                     protein_coding
7845       2                     protein_coding
7846       2                     protein_coding
7847       2                     protein_coding
7848       2                     protein_coding
7849       2                     protein_coding
7850       2                     protein_coding
7851       2                     protein_coding
7852       2                     protein_coding
7853       2                     protein_coding
7854       2                     protein_coding
7855       2                     protein_coding
7856       2                     protein_coding
7857       2                     protein_coding
7858       2                     protein_coding
7859       2                     protein_coding
7860       2                     protein_coding
7861       2                     protein_coding
7862       2                     protein_coding
7863       2                     protein_coding
7864       2                     protein_coding
7865       2                     protein_coding
7866       2                     protein_coding
7867       2                     protein_coding
7868       2                     protein_coding
7869       2                     protein_coding
7870       2                     protein_coding
7871       2                     protein_coding
7872       2                     protein_coding
7873       2                     protein_coding
7874       2                     protein_coding
7875       2                     protein_coding
7876       2                     protein_coding
7877       2                     protein_coding
7878       2                     protein_coding
7879       2                     protein_coding
7880       2                     protein_coding
7881       2                     protein_coding
7882       2                     protein_coding
7883       2                     protein_coding
7884       2                     protein_coding
7885       2                     protein_coding
7886       2                     protein_coding
7887       2                     protein_coding
7888       2                     protein_coding
7889       2                     protein_coding
7890       2                     protein_coding
7891       2                     protein_coding
7892       2                     protein_coding
7893       2                     protein_coding
7894       2                     protein_coding
7895       2                     protein_coding
7896       2                     protein_coding
7897       2                     protein_coding
7898       2                     protein_coding
7899       2                     protein_coding
7900       2                     protein_coding
7901       2                     protein_coding
7902       2                     protein_coding
7903       2                     protein_coding
7904       2                     protein_coding
7905       2                     protein_coding
7906       2                     protein_coding
7907       2                     protein_coding
7908       2                     protein_coding
7909       2                     protein_coding
7910       2                     protein_coding
7911       2                     protein_coding
7912       2                     protein_coding
7913       2                     protein_coding
7914       2                     protein_coding
7915       2                     protein_coding
7916       2                     protein_coding
7917       2                     protein_coding
7918       2                     protein_coding
7919       2                     protein_coding
7920       2                     protein_coding
7921       2                     protein_coding
7922       2                     protein_coding
7923       2                     protein_coding
7924       2                     protein_coding
7925       2                     protein_coding
7926       2                     protein_coding
7927       2                     protein_coding
7928       2                     protein_coding
7929       2                     protein_coding
7930       2                     protein_coding
7931       2                     protein_coding
7932       2                     protein_coding
7933       2                     protein_coding
7934       2                     protein_coding
7935       2                     protein_coding
7936       2                     protein_coding
7937       2                     protein_coding
7938       2                     protein_coding
7939       2                     protein_coding
7940       2                     protein_coding
7941       2                     protein_coding
7942       2                     protein_coding
7943       2                     protein_coding
7944       2                     protein_coding
7945       2                     protein_coding
7946       2                     protein_coding
7947       2                     protein_coding
7948       2                     protein_coding
7949       2                     protein_coding
7950       2                     protein_coding
7951       2                     protein_coding
7952       2                     protein_coding
7953       2                     protein_coding
7954       2                     protein_coding
7955       2                     protein_coding
7956       2                     protein_coding
7957       2                     protein_coding
7958       2                     protein_coding
7959       2                     protein_coding
7960       2                     protein_coding
7961       2                     protein_coding
7962       2                     protein_coding
7963       2                     protein_coding
7964       2                     protein_coding
7965       2                     protein_coding
7966       2                     protein_coding
7967       2                     protein_coding
7968       2                     protein_coding
7969       2                     protein_coding
7970       2                     protein_coding
7971       2                     protein_coding
7972       2                     protein_coding
7973       2                     protein_coding
7974       2                     protein_coding
7975       2                     protein_coding
7976       2                     protein_coding
7977       2                     protein_coding
7978       2                     protein_coding
7979       2                     protein_coding
7980       2                     protein_coding
7981       2                     protein_coding
7982       2                     protein_coding
7983       2                     protein_coding
7984       2                     protein_coding
7985       2                     protein_coding
7986       2                     protein_coding
7987       2                     protein_coding
7988       2                     protein_coding
7989       2                     protein_coding
7990       2                     protein_coding
7991       2                     protein_coding
7992       2                     protein_coding
7993       2                     protein_coding
7994       2                     protein_coding
7995       2                     protein_coding
7996       2                     protein_coding
7997       2                     protein_coding
7998       2                     protein_coding
7999       2                     protein_coding
8000       2                     protein_coding
8001       2                     protein_coding
8002       2                     protein_coding
8003       2                     protein_coding
8004       2                     protein_coding
8005       2                     protein_coding
8006       2                     protein_coding
8007       2                     protein_coding
8008       2                     protein_coding
8009       2                     protein_coding
8010       2                     protein_coding
8011       2                     protein_coding
8012       2                     protein_coding
8013       2                     protein_coding
8014       2                     protein_coding
8015       2                     protein_coding
8016       2                     protein_coding
8017       2                     protein_coding
8018       2                     protein_coding
8019       0                     protein_coding
8020       0                     protein_coding
8021       0                     protein_coding
8022       0                     protein_coding
8023       0                     protein_coding
8024       0                     protein_coding
8025       0                     protein_coding
8026       0                     protein_coding
8027       0                     protein_coding
8028       0                     protein_coding
8029       0                     protein_coding
8030       0                     protein_coding
8031       0                     protein_coding
8032       0                     protein_coding
8033       0                     protein_coding
8034       0                     protein_coding
8035       0                     protein_coding
8036       0                     protein_coding
8037       0                     protein_coding
8038       0                     protein_coding
8039       0                     protein_coding
8040       0                     protein_coding
8041       0                     protein_coding
8042       0                     protein_coding
8043       0                     protein_coding
8044       0               processed_pseudogene
8045       0               processed_pseudogene
8046       0                            lincRNA
8047       0                            lincRNA
8048       0                     protein_coding
8049       0                     protein_coding
8050       0                     protein_coding
8051       0                     protein_coding
8052       0                     protein_coding
8053       0                     protein_coding
8054       0                     protein_coding
8055       0                     protein_coding
8056       0                     protein_coding
8057       0                     protein_coding
8058       0                     protein_coding
8059       0                     protein_coding
8060       0                     protein_coding
8061       0                     protein_coding
8062       0                     protein_coding
8063       0                     protein_coding
8064       0                     protein_coding
8065       0                     protein_coding
8066       0                     protein_coding
8067       0                     protein_coding
8068       0                     protein_coding
8069       0                     protein_coding
8070       0                     protein_coding
8071       0                     protein_coding
8072       0                     protein_coding
8073       0                     protein_coding
8074       0                     protein_coding
8075       0                     protein_coding
8076       0                     protein_coding
8077       0                     protein_coding
8078       0                     protein_coding
8079       0                     protein_coding
8080       0                     protein_coding
8081       0                     protein_coding
8082       0                     protein_coding
8083       0                     protein_coding
8084       0                     protein_coding
8085       0                     protein_coding
8086       0                     protein_coding
8087       0                     protein_coding
8088       0                     protein_coding
8089       0                     protein_coding
8090       0                     protein_coding
8091       0                     protein_coding
8092       0                     protein_coding
8093       0                     protein_coding
8094       0                     protein_coding
8095       0                     protein_coding
8096       0                     protein_coding
8097       0                     protein_coding
8098       0                     protein_coding
8099       0                     protein_coding
8100       0                     protein_coding
8101       0                     protein_coding
8102       0                     protein_coding
8103       0                     protein_coding
8104       0                     protein_coding
8105       0                     protein_coding
8106       0                     protein_coding
8107       0                     protein_coding
8108       0                     protein_coding
8109       0                     protein_coding
8110       0                     protein_coding
8111       0                     protein_coding
8112       0                     protein_coding
8113       0                     protein_coding
8114       0                     protein_coding
8115       0                     protein_coding
8116       0                     protein_coding
8117       0                     protein_coding
8118       0                     protein_coding
8119       0                     protein_coding
8120       0                     protein_coding
8121       0                     protein_coding
8122       0                     protein_coding
8123       0                     protein_coding
8124       0                     protein_coding
8125       0                     protein_coding
8126       0                     protein_coding
8127       0                     protein_coding
8128       0                     protein_coding
8129       0                     protein_coding
8130       0                     protein_coding
8131       2               processed_pseudogene
8132       2                          antisense
8133       2                          antisense
8134       2                          antisense
8135       2                          antisense
8136       0                          antisense
8137       0                          antisense
8138       0                          antisense
8139       0                          antisense
8140       0                          antisense
8141       0                          antisense
8142       0                          antisense
8143       0                          antisense
8144       0                            lincRNA
8145       2                            lincRNA
8146       2                     protein_coding
8147       2                     protein_coding
8148       2                     protein_coding
8149       2                     protein_coding
8150       2                     protein_coding
8151       2                     protein_coding
8152       2                     protein_coding
8153       2                     protein_coding
8154       2                     protein_coding
8155       2                     protein_coding
8156       2                     protein_coding
8157       2                     protein_coding
8158       2                     protein_coding
8159       2                     protein_coding
8160       2                     protein_coding
8161       2                     protein_coding
8162       2                     protein_coding
8163       2                     protein_coding
8164       2                     protein_coding
8165       2                     protein_coding
8166       2                     protein_coding
8167       2                     protein_coding
8168       2                     protein_coding
8169       2                     protein_coding
8170       2                     protein_coding
8171       2                     protein_coding
8172       2                     protein_coding
8173       2                     protein_coding
8174       2                     protein_coding
8175       2                     protein_coding
8176       2                     protein_coding
8177       2                     protein_coding
8178       2                     protein_coding
8179       2                     protein_coding
8180       2                     protein_coding
8181       2                     protein_coding
8182       2                     protein_coding
8183       2                     protein_coding
8184       2                     protein_coding
8185       2                     protein_coding
8186       2                     protein_coding
8187       2                     protein_coding
8188       2                     protein_coding
8189       2                     protein_coding
8190       2                     protein_coding
8191       2                     protein_coding
8192       2                     protein_coding
8193       2                     protein_coding
8194       2                     protein_coding
8195       2                     protein_coding
8196       2                     protein_coding
8197       2                     protein_coding
8198       2                     protein_coding
8199       2                     protein_coding
8200       2                     protein_coding
8201       2                     protein_coding
8202       2                     protein_coding
8203       2                     protein_coding
8204       2                     protein_coding
8205       2                     protein_coding
8206       2                     protein_coding
8207       2                     protein_coding
8208       2                     protein_coding
8209       2                     protein_coding
8210       2                     protein_coding
8211       2                     protein_coding
8212       2                     protein_coding
8213       2                     protein_coding
8214       2                     protein_coding
8215       2                     protein_coding
8216       2                     protein_coding
8217       2                     protein_coding
8218       2                     protein_coding
8219       2                     protein_coding
8220       2                     protein_coding
8221       2                     protein_coding
8222       2                     protein_coding
8223       2                     protein_coding
8224       2                     protein_coding
8225       2                     protein_coding
8226       2                     protein_coding
8227       2                     protein_coding
8228       2                     protein_coding
8229       2                     protein_coding
8230       2                     protein_coding
8231       2                     protein_coding
8232       2                     protein_coding
8233       2                     protein_coding
8234       2                     protein_coding
8235       2                     protein_coding
8236       2                     protein_coding
8237       2                     protein_coding
8238       2                     protein_coding
8239       2                     protein_coding
8240       2                     protein_coding
8241       2                     protein_coding
8242       2                     protein_coding
8243       2                     protein_coding
8244       2                     protein_coding
8245       2                     protein_coding
8246       2                     protein_coding
8247       2                     protein_coding
8248       2                     protein_coding
8249       2                     protein_coding
8250       2                     protein_coding
8251       2                     protein_coding
8252       2                     protein_coding
8253       2                     protein_coding
8254       2                     protein_coding
8255       2                     protein_coding
8256       2                     protein_coding
8257       2                     protein_coding
8258       2                     protein_coding
8259       2                     protein_coding
8260       2                     protein_coding
8261       2                     protein_coding
8262       2                     protein_coding
8263       2                     protein_coding
8264       2                     protein_coding
8265       2                     protein_coding
8266       2                     protein_coding
8267       2                     protein_coding
8268       2                            lincRNA
8269       2                            lincRNA
8270       2                            lincRNA
8271       2                            lincRNA
8272       2                            lincRNA
8273       2                            lincRNA
8274       2                            lincRNA
8275       2                            lincRNA
8276       2             unprocessed_pseudogene
8277       2             unprocessed_pseudogene
8278       2             unprocessed_pseudogene
8279       2             unprocessed_pseudogene
8280       2             unprocessed_pseudogene
8281       2             unprocessed_pseudogene
8282       2             unprocessed_pseudogene
8283       2             unprocessed_pseudogene
8284       0             unprocessed_pseudogene
8285       0             unprocessed_pseudogene
8286       0             unprocessed_pseudogene
8287       0             unprocessed_pseudogene
8288       0             unprocessed_pseudogene
8289       0             unprocessed_pseudogene
8290       0             unprocessed_pseudogene
8291       0             unprocessed_pseudogene
8292       0             unprocessed_pseudogene
8293       2                          antisense
8294       2                          antisense
8295       0                     protein_coding
8296       0                     protein_coding
8297       0                     protein_coding
8298       0                     protein_coding
8299       0                     protein_coding
8300       0                     protein_coding
8301       0                     protein_coding
8302       0                     protein_coding
8303       0                     protein_coding
8304       0                     protein_coding
8305       0                     protein_coding
8306       0                     protein_coding
8307       0                     protein_coding
8308       0                     protein_coding
8309       0                     protein_coding
8310       0                     protein_coding
8311       0                     protein_coding
8312       0                     protein_coding
8313       0                     protein_coding
8314       0                     protein_coding
8315       0                     protein_coding
8316       0                     protein_coding
8317       0                     protein_coding
8318       0                     protein_coding
8319       0                     protein_coding
8320       0                     protein_coding
8321       0                     protein_coding
8322       0                     protein_coding
8323       0                     protein_coding
8324       0                     protein_coding
8325       0                     protein_coding
8326       0                     protein_coding
8327       0                     protein_coding
8328       0                            lincRNA
8329       0                            lincRNA
8330       0                            lincRNA
8331       0                            lincRNA
8332       0                            lincRNA
8333       0                            lincRNA
8334       0                            lincRNA
8335       2               processed_pseudogene
8336       2               processed_pseudogene
8337       2               processed_pseudogene
8338       2               processed_pseudogene
8339       2               processed_pseudogene
8340       2               processed_pseudogene
8341       0                            lincRNA
8342       0                            lincRNA
8343       0                            lincRNA
8344       0                            lincRNA
8345       0                            lincRNA
8346       2                            lincRNA
8347       2                            lincRNA
8348       0                     protein_coding
8349       0                     protein_coding
8350       0                     protein_coding
8351       0                     protein_coding
8352       0                     protein_coding
8353       0                     protein_coding
8354       0                     protein_coding
8355       0                     protein_coding
8356       0                     protein_coding
8357       0                     protein_coding
8358       0                     protein_coding
8359       0                     protein_coding
8360       0                     protein_coding
8361       0                     protein_coding
8362       0                     protein_coding
8363       0                     protein_coding
8364       0                     protein_coding
8365       0                     protein_coding
8366       0                     protein_coding
8367       0                     protein_coding
8368       0                     protein_coding
8369       0                     protein_coding
8370       0                     protein_coding
8371       0                     protein_coding
8372       0                     protein_coding
8373       0                     protein_coding
8374       0                     protein_coding
8375       0                     protein_coding
8376       0                     protein_coding
8377       0                     protein_coding
8378       0                     protein_coding
8379       0                     protein_coding
8380       0                     protein_coding
8381       0                     protein_coding
8382       0                     protein_coding
8383       0                     protein_coding
8384       0                     protein_coding
8385       0                     protein_coding
8386       0                     protein_coding
8387       0                     protein_coding
8388       0                     protein_coding
8389       0                     protein_coding
8390       0                     protein_coding
8391       0                     protein_coding
8392       0                     protein_coding
8393       0                     protein_coding
8394       0                     protein_coding
8395       0                     protein_coding
8396       0                     protein_coding
8397       0                     protein_coding
8398       0                     protein_coding
8399       0                     protein_coding
8400       0                     protein_coding
8401       0                     protein_coding
8402       0                     protein_coding
8403       0                     protein_coding
8404       0                     protein_coding
8405       0                     protein_coding
8406       0                     protein_coding
8407       0                     protein_coding
8408       0                     protein_coding
8409       0                     protein_coding
8410       0                     protein_coding
8411       0                     protein_coding
8412       0                     protein_coding
8413       0                     protein_coding
8414       0                     protein_coding
8415       0                     protein_coding
8416       0                     protein_coding
8417       0                     protein_coding
8418       0                     protein_coding
8419       0                     protein_coding
8420       0                     protein_coding
8421       0                     protein_coding
8422       0                     protein_coding
8423       0                     protein_coding
8424       0                     protein_coding
8425       0                     protein_coding
8426       0                     protein_coding
8427       0                     protein_coding
8428       0                     protein_coding
8429       0                     protein_coding
8430       0                     protein_coding
8431       0                     protein_coding
8432       0                     protein_coding
8433       0                     protein_coding
8434       0                     protein_coding
8435       0                     protein_coding
8436       0                     protein_coding
8437       0                     protein_coding
8438       0                     protein_coding
8439       0                     protein_coding
8440       0                     protein_coding
8441       0                     protein_coding
8442       0                     protein_coding
8443       0                     protein_coding
8444       0                     protein_coding
8445       0                     protein_coding
8446       0                     protein_coding
8447       0                     protein_coding
8448       0                     protein_coding
8449       0                     protein_coding
8450       0                     protein_coding
8451       0                     protein_coding
8452       0                     protein_coding
8453       0                     protein_coding
8454       0                     protein_coding
8455       0                     protein_coding
8456       0                     protein_coding
8457       0                     protein_coding
8458       0                     protein_coding
8459       0                     protein_coding
8460       0                     protein_coding
8461       0                     protein_coding
8462       0                     protein_coding
8463       0                     protein_coding
8464       0                     protein_coding
8465       0                     protein_coding
8466       0                     protein_coding
8467       0                     protein_coding
8468       2               processed_pseudogene
8469       0               processed_pseudogene
8470       0               processed_pseudogene
8471       0               processed_pseudogene
8472       2                     protein_coding
8473       2                     protein_coding
8474       2                     protein_coding
8475       2                     protein_coding
8476       2                     protein_coding
8477       2                     protein_coding
8478       2                     protein_coding
8479       2                     protein_coding
8480       2                     protein_coding
8481       2                     protein_coding
8482       2                     protein_coding
8483       2                     protein_coding
8484       2                     protein_coding
8485       2                     protein_coding
8486       2                     protein_coding
8487       2                     protein_coding
8488       2                     protein_coding
8489       2                     protein_coding
8490       2                     protein_coding
8491       2                     protein_coding
8492       2                     protein_coding
8493       2                     protein_coding
8494       2                     protein_coding
8495       2                     protein_coding
8496       2                     protein_coding
8497       2                     protein_coding
8498       2                     protein_coding
8499       2                     protein_coding
8500       2                     protein_coding
8501       2                     protein_coding
8502       2                     protein_coding
8503       2                     protein_coding
8504       2                     protein_coding
8505       2                     protein_coding
8506       2                     protein_coding
8507       2                     protein_coding
8508       2                     protein_coding
8509       2                     protein_coding
8510       2                     protein_coding
8511       2                     protein_coding
8512       2                     protein_coding
8513       2                     protein_coding
8514       2                     protein_coding
8515       2                     protein_coding
8516       2                     protein_coding
8517       2                     protein_coding
8518       2                     protein_coding
8519       2                     protein_coding
8520       2                     protein_coding
8521       2                     protein_coding
8522       2                     protein_coding
8523       2                     protein_coding
8524       2                     protein_coding
8525       2                     protein_coding
8526       2                     protein_coding
8527       2                     protein_coding
8528       2                     protein_coding
8529       2                     protein_coding
8530       2                     protein_coding
8531       2                     protein_coding
8532       2                     protein_coding
8533       2                     protein_coding
8534       2                     protein_coding
8535       2                     protein_coding
8536       2                     protein_coding
8537       2                     protein_coding
8538       2                     protein_coding
8539       2                     protein_coding
8540       2                     protein_coding
8541       2                     protein_coding
8542       2                     protein_coding
8543       2                     protein_coding
8544       2                     protein_coding
8545       2                     protein_coding
8546       2                     protein_coding
8547       2                     protein_coding
8548       2                     protein_coding
8549       2                     protein_coding
8550       2                     protein_coding
8551       2                     protein_coding
8552       2                     protein_coding
8553       2                     protein_coding
8554       2                     protein_coding
8555       2                  sense_overlapping
8556       2                  sense_overlapping
8557       2                     protein_coding
8558       2                     protein_coding
8559       2                     protein_coding
8560       2                     protein_coding
8561       2                     protein_coding
8562       2                     protein_coding
8563       2                     protein_coding
8564       2                     protein_coding
8565       2                     protein_coding
8566       2                     protein_coding
8567       2                     protein_coding
8568       2                     protein_coding
8569       2                     protein_coding
8570       2                     protein_coding
8571       2                     protein_coding
8572       2                     protein_coding
8573       2                     protein_coding
8574       2                     protein_coding
8575       2                     protein_coding
8576       2                     protein_coding
8577       2                     protein_coding
8578       2                     protein_coding
8579       2                     protein_coding
8580       2                     protein_coding
8581       2               processed_pseudogene
8582       0               processed_pseudogene
8583       2                     protein_coding
8584       2                     protein_coding
8585       2                     protein_coding
8586       2                     protein_coding
8587       2                     protein_coding
8588       2                     protein_coding
8589       2                     protein_coding
8590       2                     protein_coding
8591       2                     protein_coding
8592       2                     protein_coding
8593       2                     protein_coding
8594       2                     protein_coding
8595       2                     protein_coding
8596       2                     protein_coding
8597       2                     protein_coding
8598       2                     protein_coding
8599       2                     protein_coding
8600       2                     protein_coding
8601       2                     protein_coding
8602       2                     protein_coding
8603       2                     protein_coding
8604       2                     protein_coding
8605       2                     protein_coding
8606       2                     protein_coding
8607       2                     protein_coding
8608       2                     protein_coding
8609       2                     protein_coding
8610       2                     protein_coding
8611       2                     protein_coding
8612       2                     protein_coding
8613       2                     protein_coding
8614       2                     protein_coding
8615       2                     protein_coding
8616       2                     protein_coding
8617       2                     protein_coding
8618       2                     protein_coding
8619       2                     protein_coding
8620       2                     protein_coding
8621       2                     protein_coding
8622       2                     protein_coding
8623       2                     protein_coding
8624       2                     protein_coding
8625       2                     protein_coding
8626       2                     protein_coding
8627       2                     protein_coding
8628       2                     protein_coding
8629       2                     protein_coding
8630       2                     protein_coding
8631       2                     protein_coding
8632       2                     protein_coding
8633       2                     protein_coding
8634       0               processed_pseudogene
8635       0                     protein_coding
8636       0                     protein_coding
8637       0                     protein_coding
8638       0                     protein_coding
8639       0                     protein_coding
8640       0                     protein_coding
8641       0                     protein_coding
8642       0                     protein_coding
8643       0                     protein_coding
8644       0                     protein_coding
8645       0                     protein_coding
8646       0                     protein_coding
8647       0                     protein_coding
8648       0                     protein_coding
8649       0                     protein_coding
8650       0                     protein_coding
8651       0                     protein_coding
8652       0                     protein_coding
8653       0                     protein_coding
8654       0                     protein_coding
8655       0                     protein_coding
8656       0                     protein_coding
8657       0                     protein_coding
8658       0                     protein_coding
8659       0                     protein_coding
8660       0                     protein_coding
8661       0                     protein_coding
8662       0                     protein_coding
8663       0                     protein_coding
8664       0                     protein_coding
8665       0                     protein_coding
8666       0                     protein_coding
8667       0                     protein_coding
8668       0                     protein_coding
8669       0                     protein_coding
8670       0                     protein_coding
8671       0                     protein_coding
8672       0                            lincRNA
8673       0                            lincRNA
8674       0                            lincRNA
8675       0                     protein_coding
8676       0                     protein_coding
8677       0                     protein_coding
8678       0                     protein_coding
8679       0                     protein_coding
8680       0                     protein_coding
8681       0                     protein_coding
8682       0                     protein_coding
8683       0                     protein_coding
8684       0                     protein_coding
8685       0                     protein_coding
8686       0                     protein_coding
8687       0                     protein_coding
8688       0                     protein_coding
8689       0                     protein_coding
8690       0                     protein_coding
8691       0                     protein_coding
8692       0                     protein_coding
8693       0                     protein_coding
8694       0                     protein_coding
8695       0                     protein_coding
8696       0                     protein_coding
8697       0                     protein_coding
8698       0                     protein_coding
8699       0                     protein_coding
8700       0                     protein_coding
8701       0                     protein_coding
8702       0                     protein_coding
8703       0                     protein_coding
8704       0                     protein_coding
8705       0                     protein_coding
8706       0                     protein_coding
8707       0                     protein_coding
8708       0                     protein_coding
8709       0                     protein_coding
8710       0                     protein_coding
8711       0                     protein_coding
8712       0                     protein_coding
8713       0                     protein_coding
8714       0                     protein_coding
8715       0                     protein_coding
8716       0                     protein_coding
8717       0                     protein_coding
8718       0                     protein_coding
8719       0                     protein_coding
8720       0                     protein_coding
8721       0                     protein_coding
8722       0                     protein_coding
8723       0                     protein_coding
8724       0                     protein_coding
8725       0                     protein_coding
8726       0                     protein_coding
8727       0                     protein_coding
8728       0                     protein_coding
8729       0                     protein_coding
8730       0                     protein_coding
8731       0                     protein_coding
8732       0                     protein_coding
8733       0                     protein_coding
8734       0                     protein_coding
8735       0                     protein_coding
8736       0                     protein_coding
8737       0                     protein_coding
8738       0                     protein_coding
8739       0                     protein_coding
8740       0                     protein_coding
8741       0                     protein_coding
8742       0                     protein_coding
8743       0                     protein_coding
8744       0                     protein_coding
8745       0                     protein_coding
8746       0                     protein_coding
8747       0                     protein_coding
8748       0                     protein_coding
8749       0                     protein_coding
8750       0                     protein_coding
8751       0                     protein_coding
8752       0                     protein_coding
8753       0                     protein_coding
8754       0                     protein_coding
8755       0                     protein_coding
8756       0                     protein_coding
8757       0                     protein_coding
8758       0                     protein_coding
8759       0                     protein_coding
8760       0                     protein_coding
8761       0                     protein_coding
8762       0                     protein_coding
8763       0                     protein_coding
8764       0                     protein_coding
8765       0                     protein_coding
8766       0                     protein_coding
8767       0                     protein_coding
8768       0                     protein_coding
8769       0                     protein_coding
8770       0                     protein_coding
8771       0                     protein_coding
8772       0                     protein_coding
8773       0                     protein_coding
8774       0                     protein_coding
8775       0                     protein_coding
8776       0                     protein_coding
8777       0                     protein_coding
8778       0                     protein_coding
8779       0                     protein_coding
8780       0                     protein_coding
8781       0                     protein_coding
8782       0                     protein_coding
8783       0                     protein_coding
8784       0                     protein_coding
8785       0                     protein_coding
8786       0                     protein_coding
8787       0                     protein_coding
8788       0                     protein_coding
8789       0                     protein_coding
8790       0                     protein_coding
8791       0                     protein_coding
8792       0                     protein_coding
8793       0                     protein_coding
8794       0                     protein_coding
8795       0                     protein_coding
8796       0                     protein_coding
8797       0                     protein_coding
8798       0                     protein_coding
8799       0                     protein_coding
8800       0                     protein_coding
8801       0                     protein_coding
8802       0                     protein_coding
8803       0                     protein_coding
8804       0                     protein_coding
8805       0                     protein_coding
8806       0                     protein_coding
8807       0                     protein_coding
8808       0                     protein_coding
8809       0                     protein_coding
8810       0                     protein_coding
8811       0                     protein_coding
8812       0                     protein_coding
8813       0                     protein_coding
8814       0                     protein_coding
8815       0                     protein_coding
8816       0                     protein_coding
8817       0                     protein_coding
8818       0                     protein_coding
8819       0                     protein_coding
8820       0                     protein_coding
8821       0                     protein_coding
8822       0                     protein_coding
8823       0                     protein_coding
8824       0                     protein_coding
8825       0                     protein_coding
8826       0                     protein_coding
8827       0                     protein_coding
8828       0                     protein_coding
8829       0                     protein_coding
8830       0                     protein_coding
8831       0                     protein_coding
8832       0                     protein_coding
8833       0                     protein_coding
8834       0                     protein_coding
8835       0                     protein_coding
8836       0                     protein_coding
8837       0                     protein_coding
8838       0                     protein_coding
8839       0                     protein_coding
8840       0                     protein_coding
8841       0                     protein_coding
8842       0                     protein_coding
8843       0                     protein_coding
8844       0                     protein_coding
8845       0                     protein_coding
8846       0                     protein_coding
8847       0                     protein_coding
8848       0                     protein_coding
8849       0                     protein_coding
8850       0                     protein_coding
8851       0                     protein_coding
8852       0                     protein_coding
8853       0                     protein_coding
8854       0                     protein_coding
8855       0                     protein_coding
8856       0                     protein_coding
8857       0                     protein_coding
8858       0                     protein_coding
8859       0                     protein_coding
8860       0                     protein_coding
8861       0                     protein_coding
8862       0                     protein_coding
8863       0                     protein_coding
8864       0                     protein_coding
8865       0                     protein_coding
8866       0                     protein_coding
8867       0                     protein_coding
8868       0                     protein_coding
8869       0                     protein_coding
8870       0                     protein_coding
8871       0                     protein_coding
8872       0                     protein_coding
8873       0                     protein_coding
8874       0                     protein_coding
8875       0                     protein_coding
8876       0                     protein_coding
8877       0                     protein_coding
8878       0                     protein_coding
8879       0                     protein_coding
8880       0                     protein_coding
8881       0                     protein_coding
8882       0                     protein_coding
8883       0                     protein_coding
8884       0                     protein_coding
8885       0                     protein_coding
8886       0                     protein_coding
8887       0                     protein_coding
8888       0                     protein_coding
8889       0                     protein_coding
8890       0                     protein_coding
8891       0                     protein_coding
8892       0                     protein_coding
8893       0                     protein_coding
8894       0                     protein_coding
8895       0                     protein_coding
8896       0                     protein_coding
8897       0                     protein_coding
8898       0                     protein_coding
8899       0                     protein_coding
8900       0                     protein_coding
8901       0                     protein_coding
8902       0                     protein_coding
8903       0                     protein_coding
8904       0                     protein_coding
8905       0                     protein_coding
8906       0                     protein_coding
8907       0                     protein_coding
8908       0                     protein_coding
8909       0                     protein_coding
8910       0                     protein_coding
8911       0                     protein_coding
8912       0                     protein_coding
8913       0                     protein_coding
8914       0                     protein_coding
8915       0                     protein_coding
8916       0                     protein_coding
8917       0                     protein_coding
8918       0                     protein_coding
8919       0                     protein_coding
8920       0                     protein_coding
8921       0                     protein_coding
8922       0                     protein_coding
8923       0                     protein_coding
8924       0                     protein_coding
8925       0                     protein_coding
8926       0                     protein_coding
8927       0                     protein_coding
8928       0                     protein_coding
8929       0                     protein_coding
8930       0                     protein_coding
8931       0                     protein_coding
8932       0                     protein_coding
8933       0                     protein_coding
8934       0                     protein_coding
8935       0                     protein_coding
8936       0                     protein_coding
8937       0                     protein_coding
8938       0                     protein_coding
8939       0                     protein_coding
8940       0                     protein_coding
8941       0                     protein_coding
8942       0                     protein_coding
8943       0                     protein_coding
8944       0                     protein_coding
8945       0                     protein_coding
8946       0                     protein_coding
8947       0                     protein_coding
8948       0                     protein_coding
8949       0                     protein_coding
8950       0                     protein_coding
8951       0                     protein_coding
8952       0                     protein_coding
8953       0                     protein_coding
8954       0                     protein_coding
8955       0                     protein_coding
8956       0                     protein_coding
8957       0                     protein_coding
8958       0                     protein_coding
8959       0                     protein_coding
8960       0                     protein_coding
8961       0                     protein_coding
8962       0                     protein_coding
8963       0                     protein_coding
8964       0                     protein_coding
8965       0                     protein_coding
8966       0                     protein_coding
8967       0                     protein_coding
8968       0                     protein_coding
8969       0                     protein_coding
8970       0                     protein_coding
8971       0                     protein_coding
8972       0                     protein_coding
8973       0                     protein_coding
8974       0                     protein_coding
8975       0                     protein_coding
8976       0                     protein_coding
8977       0                     protein_coding
8978       0                     protein_coding
8979       0                     protein_coding
8980       0                     protein_coding
8981       0                     protein_coding
8982       0                     protein_coding
8983       0                     protein_coding
8984       0                     protein_coding
8985       0                     protein_coding
8986       0                     protein_coding
8987       0                     protein_coding
8988       0                     protein_coding
8989       0                     protein_coding
8990       0                     protein_coding
8991       0                     protein_coding
8992       0                     protein_coding
8993       0                     protein_coding
8994       0                     protein_coding
8995       0                     protein_coding
8996       0                     protein_coding
8997       0                     protein_coding
8998       0                     protein_coding
8999       0                     protein_coding
9000       0                     protein_coding
9001       0                     protein_coding
9002       0                     protein_coding
9003       0                     protein_coding
9004       0                     protein_coding
9005       0                     protein_coding
9006       0                     protein_coding
9007       0                     protein_coding
9008       0                     protein_coding
9009       0                     protein_coding
9010       0                     protein_coding
9011       0                     protein_coding
9012       0                     protein_coding
9013       0                     protein_coding
9014       0                     protein_coding
9015       0                     protein_coding
9016       0                     protein_coding
9017       0                     protein_coding
9018       0                     protein_coding
9019       0                     protein_coding
9020       0                     protein_coding
9021       0                     protein_coding
9022       0                     protein_coding
9023       0                     protein_coding
9024       0                     protein_coding
9025       0                     protein_coding
9026       0                     protein_coding
9027       0                     protein_coding
9028       0                     protein_coding
9029       0                     protein_coding
9030       0                     protein_coding
9031       0                     protein_coding
9032       0                     protein_coding
9033       0                     protein_coding
9034       0                     protein_coding
9035       0                     protein_coding
9036       0                     protein_coding
9037       0                     protein_coding
9038       0                     protein_coding
9039       0                     protein_coding
9040       0                     protein_coding
9041       0                     protein_coding
9042       0                     protein_coding
9043       0                     protein_coding
9044       0                     protein_coding
9045       0                     protein_coding
9046       0                     protein_coding
9047       0                     protein_coding
9048       0                     protein_coding
9049       0                     protein_coding
9050       0                     protein_coding
9051       0                     protein_coding
9052       0                     protein_coding
9053       0                     protein_coding
9054       0                     protein_coding
9055       0                     protein_coding
9056       0                     protein_coding
9057       0                     protein_coding
9058       0                     protein_coding
9059       0                     protein_coding
9060       0                     protein_coding
9061       0                     protein_coding
9062       0                     protein_coding
9063       0                     protein_coding
9064       0                     protein_coding
9065       0                     protein_coding
9066       0                     protein_coding
9067       0                     protein_coding
9068       0                     protein_coding
9069       0                     protein_coding
9070       0                     protein_coding
9071       0                     protein_coding
9072       0                     protein_coding
9073       0                     protein_coding
9074       0                     protein_coding
9075       0                     protein_coding
9076       0                     protein_coding
9077       0                     protein_coding
9078       0                     protein_coding
9079       0                     protein_coding
9080       0                     protein_coding
9081       0                     protein_coding
9082       0                     protein_coding
9083       0                     protein_coding
9084       0                     protein_coding
9085       0                     protein_coding
9086       0                     protein_coding
9087       0                     protein_coding
9088       0                     protein_coding
9089       0                     protein_coding
9090       0                     protein_coding
9091       0                     protein_coding
9092       0                     protein_coding
9093       0                     protein_coding
9094       0                     protein_coding
9095       0                     protein_coding
9096       0                     protein_coding
9097       0                     protein_coding
9098       0                     protein_coding
9099       0                     protein_coding
9100       0                     protein_coding
9101       0                     protein_coding
9102       0                     protein_coding
9103       0                     protein_coding
9104       0                     protein_coding
9105       0                     protein_coding
9106       0                     protein_coding
9107       0                     protein_coding
9108       0                     protein_coding
9109       0                     protein_coding
9110       0                     protein_coding
9111       0                     protein_coding
9112       0                     protein_coding
9113       0                     protein_coding
9114       0                     protein_coding
9115       0                     protein_coding
9116       0                     protein_coding
9117       0                     protein_coding
9118       0                     protein_coding
9119       0                     protein_coding
9120       0                     protein_coding
9121       0                     protein_coding
9122       0                     protein_coding
9123       0                     protein_coding
9124       0                     protein_coding
9125       0                     protein_coding
9126       0                     protein_coding
9127       0                     protein_coding
9128       2                          antisense
9129       0                            lincRNA
9130       0                            lincRNA
9131       0                            lincRNA
9132       0                            lincRNA
9133       0                            lincRNA
9134       0                            lincRNA
9135       0                            lincRNA
9136       0                            lincRNA
9137       0                            lincRNA
9138       0                            lincRNA
9139       0                            lincRNA
9140       0                            lincRNA
9141       0                            lincRNA
9142       0                            lincRNA
9143       0                            lincRNA
9144       0                            lincRNA
9145       0                            lincRNA
9146       0                            lincRNA
9147       0                            lincRNA
9148       0                            lincRNA
9149       0                            lincRNA
9150       0                            lincRNA
9151       0                            lincRNA
9152       0                            lincRNA
9153       0                            lincRNA
9154       0                            lincRNA
9155       0                            lincRNA
9156       2                            lincRNA
9157       2                            lincRNA
9158       0                     protein_coding
9159       0                     protein_coding
9160       0                     protein_coding
9161       0                     protein_coding
9162       0                     protein_coding
9163       0                     protein_coding
9164       0                     protein_coding
9165       0                     protein_coding
9166       0                     protein_coding
9167       0                     protein_coding
9168       0                     protein_coding
9169       0                     protein_coding
9170       0                     protein_coding
9171       0                     protein_coding
9172       0                     protein_coding
9173       0                     protein_coding
9174       0                     protein_coding
9175       0                     protein_coding
9176       0                     protein_coding
9177       0               processed_pseudogene
9178       0                     protein_coding
9179       0                     protein_coding
9180       0                     protein_coding
9181       0                     protein_coding
9182       0                     protein_coding
9183       0                     protein_coding
9184       0                     protein_coding
9185       0                     protein_coding
9186       0                     protein_coding
9187       0                     protein_coding
9188       0                     protein_coding
9189       0                     protein_coding
9190       0                     protein_coding
9191       0                     protein_coding
9192       0                     protein_coding
9193       0                     protein_coding
9194       0                     protein_coding
9195       0                     protein_coding
9196       0                     protein_coding
9197       0                     protein_coding
9198       0                     protein_coding
9199       0                     protein_coding
9200       0                     protein_coding
9201       0                     protein_coding
9202       0                     protein_coding
9203       0                     protein_coding
9204       0                     protein_coding
9205       0                     protein_coding
9206       0                     protein_coding
9207       0                     protein_coding
9208       0                     protein_coding
9209       0                     protein_coding
9210       0                     protein_coding
9211       0                     protein_coding
9212       0                     protein_coding
9213       0                     protein_coding
9214       0                     protein_coding
9215       0                                TEC
9216       0                     protein_coding
9217       0                     protein_coding
9218       0                     protein_coding
9219       0                     protein_coding
9220       0                     protein_coding
9221       0                     protein_coding
9222       0                            lincRNA
9223       0                            lincRNA
9224       0               processed_pseudogene
9225       2                     protein_coding
9226       2                     protein_coding
9227       2                     protein_coding
9228       2                     protein_coding
9229       2                     protein_coding
9230       2                     protein_coding
9231       2                     protein_coding
9232       2                     protein_coding
9233       2                     protein_coding
9234       2                     protein_coding
9235       2                     protein_coding
9236       2                     protein_coding
9237       2                     protein_coding
9238       2                     protein_coding
9239       2                     protein_coding
9240       2                     protein_coding
9241       2                     protein_coding
9242       2                     protein_coding
9243       2                     protein_coding
9244       2                     protein_coding
9245       2                     protein_coding
9246       2                     protein_coding
9247       2                     protein_coding
9248       2                     protein_coding
9249       2                     protein_coding
9250       2                     protein_coding
9251       2                     protein_coding
9252       2                     protein_coding
9253       2                     protein_coding
9254       2                     protein_coding
9255       2                     protein_coding
9256       2                     protein_coding
9257       2                     protein_coding
9258       2                     protein_coding
9259       2                     protein_coding
9260       2                     protein_coding
9261       2                     protein_coding
9262       2                     protein_coding
9263       2                     protein_coding
9264       2                     protein_coding
9265       2                     protein_coding
9266       2                     protein_coding
9267       2                     protein_coding
9268       2                     protein_coding
9269       2                     protein_coding
9270       2                     protein_coding
9271       2                     protein_coding
9272       2                     protein_coding
9273       2                     protein_coding
9274       2                     protein_coding
9275       2                     protein_coding
9276       2                     protein_coding
9277       2                     protein_coding
9278       2                     protein_coding
9279       2                     protein_coding
9280       2                     protein_coding
9281       2                     protein_coding
9282       2                     protein_coding
9283       2                     protein_coding
9284       2                     protein_coding
9285       2                     protein_coding
9286       2                     protein_coding
9287       2                     protein_coding
9288       2                     protein_coding
9289       2                     protein_coding
9290       2                     protein_coding
9291       2                     protein_coding
9292       2                     protein_coding
9293       2                     protein_coding
9294       2                     protein_coding
9295       2                     protein_coding
9296       2                     protein_coding
9297       2                     protein_coding
9298       2                     protein_coding
9299       2                     protein_coding
9300       2                     protein_coding
9301       2                     protein_coding
9302       2                     protein_coding
9303       2                     protein_coding
9304       2                     protein_coding
9305       2                     protein_coding
9306       2                     protein_coding
9307       2                     protein_coding
9308       2                     protein_coding
9309       2                     protein_coding
9310       2                     protein_coding
9311       2                     protein_coding
9312       2                     protein_coding
9313       2                     protein_coding
9314       2                     protein_coding
9315       2                     protein_coding
9316       2                     protein_coding
9317       2                     protein_coding
9318       2                     protein_coding
9319       2                     protein_coding
9320       2                     protein_coding
9321       2                     protein_coding
9322       2                     protein_coding
9323       2                     protein_coding
9324       2                     protein_coding
9325       2                     protein_coding
9326       2                     protein_coding
9327       2                     protein_coding
9328       2                     protein_coding
9329       2                     protein_coding
9330       2                     protein_coding
9331       2                     protein_coding
9332       2                     protein_coding
9333       2                     protein_coding
9334       2                     protein_coding
9335       2                     protein_coding
9336       2                     protein_coding
9337       2                     protein_coding
9338       2                     protein_coding
9339       2                     protein_coding
9340       2                     protein_coding
9341       2                     protein_coding
9342       2                     protein_coding
9343       2                     protein_coding
9344       2                     protein_coding
9345       2                     protein_coding
9346       2                     protein_coding
9347       2                     protein_coding
9348       2                     protein_coding
9349       2                     protein_coding
9350       2                     protein_coding
9351       2                     protein_coding
9352       2                     protein_coding
9353       2                     protein_coding
9354       2                     protein_coding
9355       2                     protein_coding
9356       2                     protein_coding
9357       2                     protein_coding
9358       2                     protein_coding
9359       2                     protein_coding
9360       2                     protein_coding
9361       2                     protein_coding
9362       2                     protein_coding
9363       2                     protein_coding
9364       2                     protein_coding
9365       2                     protein_coding
9366       2                     protein_coding
9367       2                     protein_coding
9368       2                     protein_coding
9369       2                     protein_coding
9370       2                     protein_coding
9371       2                     protein_coding
9372       2                     protein_coding
9373       2                     protein_coding
9374       2                     protein_coding
9375       2                     protein_coding
9376       2                     protein_coding
9377       2                     protein_coding
9378       2                     protein_coding
9379       2                     protein_coding
9380       2                     protein_coding
9381       2                     protein_coding
9382       2                     protein_coding
9383       2                     protein_coding
9384       2                     protein_coding
9385       2                     protein_coding
9386       2                     protein_coding
9387       2                     protein_coding
9388       2                     protein_coding
9389       2                     protein_coding
9390       2                     protein_coding
9391       0                            lincRNA
9392       0                            lincRNA
9393       0                            lincRNA
9394       2                          antisense
9395       2                          antisense
9396       2                          antisense
9397       2               processed_pseudogene
9398       2                            lincRNA
9399       2                            lincRNA
9400       2                            lincRNA
9401       2                            lincRNA
9402       2               processed_pseudogene
9403       2             unprocessed_pseudogene
9404       2             unprocessed_pseudogene
9405       0                     protein_coding
9406       0                     protein_coding
9407       0                     protein_coding
9408       0                     protein_coding
9409       0                     protein_coding
9410       0                     protein_coding
9411       0                     protein_coding
9412       0                     protein_coding
9413       0                     protein_coding
9414       0                     protein_coding
9415       0                     protein_coding
9416       0                     protein_coding
9417       0                     protein_coding
9418       0                     protein_coding
9419       0                     protein_coding
9420       0                     protein_coding
9421       0                     protein_coding
9422       0                     protein_coding
9423       0                     protein_coding
9424       0                     protein_coding
9425       0                     protein_coding
9426       0                     protein_coding
9427       0                     protein_coding
9428       0                     protein_coding
9429       0                     protein_coding
9430       0                     protein_coding
9431       0                     protein_coding
9432       0                     protein_coding
9433       0                     protein_coding
9434       0                     protein_coding
9435       0                     protein_coding
9436       0                     protein_coding
9437       0                     protein_coding
9438       0                     protein_coding
9439       0                     protein_coding
9440       0                     protein_coding
9441       0                     protein_coding
9442       0                     protein_coding
9443       0                     protein_coding
9444       0                     protein_coding
9445       0                     protein_coding
9446       0                     protein_coding
9447       0                     protein_coding
9448       0                     protein_coding
9449       0                     protein_coding
9450       0                     protein_coding
9451       0                     protein_coding
9452       0                     protein_coding
9453       0                     protein_coding
9454       0                     protein_coding
9455       0                     protein_coding
9456       0                     protein_coding
9457       0                     protein_coding
9458       0                     protein_coding
9459       0                     protein_coding
9460       0                     protein_coding
9461       0                     protein_coding
9462       0                     protein_coding
9463       0                     protein_coding
9464       0                     protein_coding
9465       0                     protein_coding
9466       0                     protein_coding
9467       0                     protein_coding
9468       0                     protein_coding
9469       0                     protein_coding
9470       0                     protein_coding
9471       0                     protein_coding
9472       0                     protein_coding
9473       0                     protein_coding
9474       0                     protein_coding
9475       0                     protein_coding
9476       0                     protein_coding
9477       0                     protein_coding
9478       0                     protein_coding
9479       0                     protein_coding
9480       0                     protein_coding
9481       0                     protein_coding
9482       0                     protein_coding
9483       0                     protein_coding
9484       0                     protein_coding
9485       0                     protein_coding
9486       0                     protein_coding
9487       0                     protein_coding
9488       0                     protein_coding
9489       0                          IG_V_gene
9490       0                          IG_V_gene
9491       2                     protein_coding
9492       2                     protein_coding
9493       2                     protein_coding
9494       2                     protein_coding
9495       2                     protein_coding
9496       2                     protein_coding
9497       2                     protein_coding
9498       2                     protein_coding
9499       2                     protein_coding
9500       2                     protein_coding
9501       2                     protein_coding
9502       2                     protein_coding
9503       2                     protein_coding
9504       2                     protein_coding
9505       2                     protein_coding
9506       2                     protein_coding
9507       2                     protein_coding
9508       2                     protein_coding
9509       2                     protein_coding
9510       2                     protein_coding
9511       2                     protein_coding
9512       2                     protein_coding
9513       2                     protein_coding
9514       2                     protein_coding
9515       2                     protein_coding
9516       2                     protein_coding
9517       2                     protein_coding
9518       2                     protein_coding
9519       2                     protein_coding
9520       2                     protein_coding
9521       2                     protein_coding
9522       2                     protein_coding
9523       2                     protein_coding
9524       2                     protein_coding
9525       2                     protein_coding
9526       2                     protein_coding
9527       2                     protein_coding
9528       2                     protein_coding
9529       2                     protein_coding
9530       2                     protein_coding
9531       2                     protein_coding
9532       2                     protein_coding
9533       2                     protein_coding
9534       2                     protein_coding
9535       2                     protein_coding
9536       2                     protein_coding
9537       2                     protein_coding
9538       2                     protein_coding
9539       2                     protein_coding
9540       2                     protein_coding
9541       2                     protein_coding
9542       2                     protein_coding
9543       2                     protein_coding
9544       2                     protein_coding
9545       2                     protein_coding
9546       2                     protein_coding
9547       2                     protein_coding
9548       2                     protein_coding
9549       2                     protein_coding
9550       2                     protein_coding
9551       2                     protein_coding
9552       2                     protein_coding
9553       2                     protein_coding
9554       2                     protein_coding
9555       2                     protein_coding
9556       2                     protein_coding
9557       2                     protein_coding
9558       2                     protein_coding
9559       2                     protein_coding
9560       2                     protein_coding
9561       2                     protein_coding
9562       2                     protein_coding
9563       2                     protein_coding
9564       2                     protein_coding
9565       2                     protein_coding
9566       2                     protein_coding
9567       2                     protein_coding
9568       2                     protein_coding
9569       2                     protein_coding
9570       2                     protein_coding
9571       2                     protein_coding
9572       2                     protein_coding
9573       2                     protein_coding
9574       2                     protein_coding
9575       2                     protein_coding
9576       2                     protein_coding
9577       2                     protein_coding
9578       2                     protein_coding
9579       2                     protein_coding
9580       2                     protein_coding
9581       2                     protein_coding
9582       2                     protein_coding
9583       2                     protein_coding
9584       2                     protein_coding
9585       2                     protein_coding
9586       2                     protein_coding
9587       2                     protein_coding
9588       2                     protein_coding
9589       2                     protein_coding
9590       2                     protein_coding
9591       2                     protein_coding
9592       2                     protein_coding
9593       2                     protein_coding
9594       2                     protein_coding
9595       2                     protein_coding
9596       2                     protein_coding
9597       2                     protein_coding
9598       2                     protein_coding
9599       2                     protein_coding
9600       2                     protein_coding
9601       2                     protein_coding
9602       2                     protein_coding
9603       2                     protein_coding
9604       2                     protein_coding
9605       2                     protein_coding
9606       2                     protein_coding
9607       2                     protein_coding
9608       2                     protein_coding
9609       2                     protein_coding
9610       2                     protein_coding
9611       2                     protein_coding
9612       2                     protein_coding
9613       2                     protein_coding
9614       2                     protein_coding
9615       2                     protein_coding
9616       2                     protein_coding
9617       2                     protein_coding
9618       2                     protein_coding
9619       2                     protein_coding
9620       2                     protein_coding
9621       2                     protein_coding
9622       2                     protein_coding
9623       2                     protein_coding
9624       2                     protein_coding
9625       2                     protein_coding
9626       2                     protein_coding
9627       2                     protein_coding
9628       2                     protein_coding
9629       2                     protein_coding
9630       2                     protein_coding
9631       2                     protein_coding
9632       2                     protein_coding
9633       2                     protein_coding
9634       2                     protein_coding
9635       2                     protein_coding
9636       2                     protein_coding
9637       2                     protein_coding
9638       2                     protein_coding
9639       2                     protein_coding
9640       0                     protein_coding
9641       0                     protein_coding
9642       0                     protein_coding
9643       0                     protein_coding
9644       0                     protein_coding
9645       0                     protein_coding
9646       0                     protein_coding
9647       0                     protein_coding
9648       0                     protein_coding
9649       0                     protein_coding
9650       0                     protein_coding
9651       0                     protein_coding
9652       0                     protein_coding
9653       0                     protein_coding
9654       0                     protein_coding
9655       0                     protein_coding
9656       0                     protein_coding
9657       0                     protein_coding
9658       0                     protein_coding
9659       0                     protein_coding
9660       0                     protein_coding
9661       0                     protein_coding
9662       0                     protein_coding
9663       0                     protein_coding
9664       0                     protein_coding
9665       0                     protein_coding
9666       0                     protein_coding
9667       0                     protein_coding
9668       0                     protein_coding
9669       0                     protein_coding
9670       0                     protein_coding
9671       0                     protein_coding
9672       0                     protein_coding
9673       0                     protein_coding
9674       0                     protein_coding
9675       0                     protein_coding
9676       0                     protein_coding
9677       0                     protein_coding
9678       0                     protein_coding
9679       0                     protein_coding
9680       0                     protein_coding
9681       0                     protein_coding
9682       0                     protein_coding
9683       0                     protein_coding
9684       0                     protein_coding
9685       0                     protein_coding
9686       0                     protein_coding
9687       0                     protein_coding
9688       0                     protein_coding
9689       0                     protein_coding
9690       0                     protein_coding
9691       0                     protein_coding
9692       0                     protein_coding
9693       0                     protein_coding
9694       0                     protein_coding
9695       0                     protein_coding
9696       0                     protein_coding
9697       0                     protein_coding
9698       0                     protein_coding
9699       0                     protein_coding
9700       0                     protein_coding
9701       0                     protein_coding
9702       0                     protein_coding
9703       0                     protein_coding
9704       0                     protein_coding
9705       0                     protein_coding
9706       0                     protein_coding
9707       0                     protein_coding
9708       0                     protein_coding
9709       0                     protein_coding
9710       0                     protein_coding
9711       0                     protein_coding
9712       0                     protein_coding
9713       0                     protein_coding
9714       0                     protein_coding
9715       0                     protein_coding
9716       0                     protein_coding
9717       0                     protein_coding
9718       0                     protein_coding
9719       0                     protein_coding
9720       0                     protein_coding
9721       0                     protein_coding
9722       0                     protein_coding
9723       0                     protein_coding
9724       0                     protein_coding
9725       0                     protein_coding
9726       0                     protein_coding
9727       0                     protein_coding
9728       0                     protein_coding
9729       0                     protein_coding
9730       0                     protein_coding
9731       0                     protein_coding
9732       0                     protein_coding
9733       0                     protein_coding
9734       0                     protein_coding
9735       0                     protein_coding
9736       0                     protein_coding
9737       0                     protein_coding
9738       0                     protein_coding
9739       0                     protein_coding
9740       0                     protein_coding
9741       0                     protein_coding
9742       0                     protein_coding
9743       0                     protein_coding
9744       0                     protein_coding
9745       0                     protein_coding
9746       0                     protein_coding
9747       0                     protein_coding
9748       0                     protein_coding
9749       0                     protein_coding
9750       0                     protein_coding
9751       0                     protein_coding
9752       0                     protein_coding
9753       0                     protein_coding
9754       0                     protein_coding
9755       0                     protein_coding
9756       0                     protein_coding
9757       0                     protein_coding
9758       0                     protein_coding
9759       0                     protein_coding
9760       0                     protein_coding
9761       0                     protein_coding
9762       0                     protein_coding
9763       0                     protein_coding
9764       0                     protein_coding
9765       0                     protein_coding
9766       0                     protein_coding
9767       0                     protein_coding
9768       0                     protein_coding
9769       0                     protein_coding
9770       0                     protein_coding
9771       0                     protein_coding
9772       0                     protein_coding
9773       0                     protein_coding
9774       0                     protein_coding
9775       0                     protein_coding
9776       0                     protein_coding
9777       0                     protein_coding
9778       0                     protein_coding
9779       0                     protein_coding
9780       0                     protein_coding
9781       0                     protein_coding
9782       0                     protein_coding
9783       0                     protein_coding
9784       0                     protein_coding
9785       0                     protein_coding
9786       0                     protein_coding
9787       0                     protein_coding
9788       0                     protein_coding
9789       0                     protein_coding
9790       0                     protein_coding
9791       0                     protein_coding
9792       0                     protein_coding
9793       0                     protein_coding
9794       0                     protein_coding
9795       0                     protein_coding
9796       0                     protein_coding
9797       2               processed_pseudogene
9798       0                     protein_coding
9799       0                     protein_coding
9800       0                     protein_coding
9801       0                     protein_coding
9802       0                     protein_coding
9803       0                     protein_coding
9804       0                     protein_coding
9805       0                     protein_coding
9806       0                     protein_coding
9807       0                     protein_coding
9808       0                     protein_coding
9809       2                     protein_coding
9810       2                     protein_coding
9811       2                     protein_coding
9812       2                     protein_coding
9813       2                     protein_coding
9814       2                     protein_coding
9815       2                     protein_coding
9816       2                     protein_coding
9817       2                     protein_coding
9818       2                     protein_coding
9819       2                     protein_coding
9820       2                     protein_coding
9821       2                     protein_coding
9822       2                     protein_coding
9823       2                     protein_coding
9824       2                     protein_coding
9825       2                     protein_coding
9826       2                     protein_coding
9827       2                     protein_coding
9828       2                     protein_coding
9829       2                     protein_coding
9830       2                     protein_coding
9831       2                     protein_coding
9832       2                     protein_coding
9833       2                     protein_coding
9834       2                     protein_coding
9835       2                     protein_coding
9836       2                     protein_coding
9837       2                     protein_coding
9838       2                     protein_coding
9839       2                     protein_coding
9840       2                     protein_coding
9841       2                     protein_coding
9842       2                     protein_coding
9843       2                     protein_coding
9844       2                     protein_coding
9845       2                     protein_coding
9846       2                     protein_coding
9847       2                     protein_coding
9848       2                     protein_coding
9849       2                     protein_coding
9850       2                     protein_coding
9851       2                     protein_coding
9852       2                     protein_coding
9853       2                     protein_coding
9854       2                     protein_coding
9855       2                     protein_coding
9856       2                     protein_coding
9857       2                     protein_coding
9858       2                     protein_coding
9859       2                     protein_coding
9860       2                     protein_coding
9861       2                     protein_coding
9862       2                     protein_coding
9863       2                     protein_coding
9864       2                     protein_coding
9865       2                     protein_coding
9866       2                     protein_coding
9867       2                     protein_coding
9868       2                     protein_coding
9869       2                     protein_coding
9870       2                     protein_coding
9871       2                     protein_coding
9872       2                     protein_coding
9873       2                     protein_coding
9874       2                     protein_coding
9875       2                     protein_coding
9876       2                     protein_coding
9877       2                     protein_coding
9878       2                     protein_coding
9879       2                     protein_coding
9880       2                     protein_coding
9881       2                     protein_coding
9882       2                     protein_coding
9883       2                     protein_coding
9884       2                     protein_coding
9885       2                     protein_coding
9886       2                     protein_coding
9887       2                     protein_coding
9888       2                     protein_coding
9889       2                     protein_coding
9890       2                     protein_coding
9891       2                     protein_coding
9892       2                     protein_coding
9893       2                     protein_coding
9894       2                     protein_coding
9895       2                     protein_coding
9896       2                     protein_coding
9897       2                     protein_coding
9898       2                     protein_coding
9899       2                     protein_coding
9900       2                     protein_coding
9901       2                     protein_coding
9902       2                     protein_coding
9903       2                     protein_coding
9904       2                     protein_coding
9905       2                     protein_coding
9906       2                     protein_coding
9907       2                     protein_coding
9908       2                     protein_coding
9909       2                     protein_coding
9910       2                     protein_coding
9911       2                     protein_coding
9912       2                     protein_coding
9913       2                     protein_coding
9914       2                     protein_coding
9915       0               processed_pseudogene
9916       2                     protein_coding
9917       2                     protein_coding
9918       2                     protein_coding
9919       2                     protein_coding
9920       2                     protein_coding
9921       2                     protein_coding
9922       2                     protein_coding
9923       2                     protein_coding
9924       2                     protein_coding
9925       2                     protein_coding
9926       2                     protein_coding
9927       2                     protein_coding
9928       2                     protein_coding
9929       2                     protein_coding
9930       2                     protein_coding
9931       2                     protein_coding
9932       2                     protein_coding
9933       2                     protein_coding
9934       2                     protein_coding
9935       2                     protein_coding
9936       2                     protein_coding
9937       2                     protein_coding
9938       2                     protein_coding
9939       2                     protein_coding
9940       2                     protein_coding
9941       2                     protein_coding
9942       2                     protein_coding
9943       2                     protein_coding
9944       2                     protein_coding
9945       2                     protein_coding
9946       2                     protein_coding
9947       2                     protein_coding
9948       2                     protein_coding
9949       0                            lincRNA
9950       0                            lincRNA
9951       0                     protein_coding
9952       2                            lincRNA
9953       0                                TEC
9954       0             unprocessed_pseudogene
9955       0             unprocessed_pseudogene
9956       0             unprocessed_pseudogene
9957       0             unprocessed_pseudogene
9958       0             unprocessed_pseudogene
9959       0             unprocessed_pseudogene
9960       0             unprocessed_pseudogene
9961       0             unprocessed_pseudogene
9962       0             unprocessed_pseudogene
9963       0             unprocessed_pseudogene
9964       2                          antisense
9965       2                          antisense
9966       2                                TEC
9967       0                            lincRNA
9968       0                            lincRNA
9969       2               processed_pseudogene
9970       0                            lincRNA
9971       0                            lincRNA
9972       2                            lincRNA
9973       2                            lincRNA
9974       0                     protein_coding
9975       0                     protein_coding
9976       0                     protein_coding
9977       0                     protein_coding
9978       0                     protein_coding
9979       0                     protein_coding
9980       0                     protein_coding
9981       0                     protein_coding
9982       0                     protein_coding
9983       0                     protein_coding
9984       0                     protein_coding
9985       0                     protein_coding
9986       0                     protein_coding
9987       0                     protein_coding
9988       0                     protein_coding
9989       0                     protein_coding
9990       0                     protein_coding
9991       0                     protein_coding
9992       0                     protein_coding
9993       0                     protein_coding
9994       0                     protein_coding
9995       0                     protein_coding
9996       0                     protein_coding
9997       0                     protein_coding
9998       0                     protein_coding
9999       0                            lincRNA
 [ reached getOption("max.print") -- omitted 3979 rows ]

Grouping and summarizing

group_by()

Grouping

  • Not a summarising transformation but frequently used in conjunction
  • Grouping by more than one or more variables
  • Use ungroup()

Let's compute the average number of exons

gene_by_exon %>%
  group_by(ensembl_gene_id, hgnc_symbol) %>% 
  summarise(nexon =n_distinct(ensembl_exon_id)) %>% 
  head(5)
Source: local data frame [5 x 3]
Groups: ensembl_gene_id [5]

  ensembl_gene_id hgnc_symbol nexon
            <chr>       <chr> <int>
1 ENSG00000141956      PRDM15    78
2 ENSG00000141959        PFKL    65
3 ENSG00000142149        HUNK    19
4 ENSG00000142156      COL6A1    53
5 ENSG00000142166      IFNAR1    15

tally / count

tally is a shortcut to counting the number of items per group.

gene_by_exon %>%
  group_by(hgnc_symbol) %>%
  tally() %>% head(3) # could sum up with multiple tally calls
# A tibble: 3 × 2
  hgnc_symbol     n
        <chr> <int>
1              1319
2       AATBC     8
3      ABCC13    63

count does the grouping for you

gene_by_exon %>%
  count(hgnc_symbol) %>% head(3)
# A tibble: 3 × 2
  hgnc_symbol     n
        <chr> <int>
1              1319
2       AATBC     8
3      ABCC13    63

Joining data frames

Sample data from Clinvar

clinvar <- tribble(~symbol, ~gene_interest, 
                   "ATP50", "yes",
                   "APP",   "yes",
                   "DIP2A", "yes")

Join two data frames

gene_annotation <- gene_by_exon %>% 
  inner_join(clinvar, by = c("hgnc_symbol"="symbol")) # provide the equivalence since columns have a different name
gene_annotation

Relational operations

mutating joins

lead() and lag()

Comparing rows above and below

Calculate intergenic distance

gene_by_exon %>%
  dplyr::select(ensembl_gene_id, start_position, end_position) %>% 
  distinct() %>% 
  arrange(start_position) %>% 
  mutate(intergenic_length = start_position - lag(end_position)) 
    ensembl_gene_id start_position end_position intergenic_length
1   ENSG00000279493        5011799      5017145                NA
2   ENSG00000277117        5022493      5040666              5348
3   ENSG00000279687        5073458      5087867             32792
4   ENSG00000280071        5079294      5128425             -8573
5   ENSG00000276612        5116343      5133805            -12082
6   ENSG00000275464        5130871      5154734             -2934
7   ENSG00000280433        5155499      5165472               765
8   ENSG00000279669        5232668      5243833             67196
9   ENSG00000279094        5499151      5502542            255318
10  ENSG00000274333        5553637      5614880             51095
11  ENSG00000277777        5597390      5597490            -17490
12  ENSG00000279186        5703182      5705637            105692
13  ENSG00000279784        5705345      5707160              -292
14  ENSG00000279064        5707004      5709456              -156
15  ENSG00000274559        5972924      5973383            263468
16  ENSG00000280013        6008604      6008810             35221
17  ENSG00000279769        6034690      6036093             25880
18  ENSG00000280191        6060340      6076305             24247
19  ENSG00000280095        6081193      6082585              4888
20  ENSG00000280179        6084364      6091407              1779
21  ENSG00000275993        6111134      6123739             19727
22  ENSG00000274790        6223480      6223580             99741
23  ENSG00000275496        6228966      6267317              5386
24  ENSG00000280019        6272135      6276532              4818
25  ENSG00000279709        6309161      6312948             32629
26  ENSG00000278903        6318434      6360415              5486
27  ENSG00000276902        6365955      6366055              5540
28  ENSG00000274276        6444869      6468040             78814
29  ENSG00000275895        6484623      6499261             16583
30  ENSG00000280346        6507017      6507389              7756
31  ENSG00000279226        6520344      6520670             12955
32  ENSG00000278927        6550749      6553955             30079
33  ENSG00000276076        6560714      6564489              6759
34  ENSG00000280145        6630182      6670695             65693
35  ENSG00000278878        6667304      6670667             -3391
36  ENSG00000279788        6676178      6679962              5511
37  ENSG00000279728        6712596      6716361             32634
38  ENSG00000280164        6721812      6725209              5451
39  ENSG00000279998        6789592      6812297             64383
40  ENSG00000278955        6858539      6897263             46242
41  ENSG00000284550        6859171      6859256            -38092
42  ENSG00000280172        6897291      6899280             38035
43  ENSG00000279751        6904884      6906692              5604
44  ENSG00000280018        6986450      6997765             79758
45  ENSG00000279313        6994374      6997737             -3391
46  ENSG00000279477        7003248      7007022              5511
47  ENSG00000278884        7020599      7025166             13577
48  ENSG00000277067        7048891      7087229             23725
49  ENSG00000274046        7092616      7092716              5387
50  ENSG00000280330        7129103      7130287             36387
51  ENSG00000279303        7135334      7137789              5047
52  ENSG00000279647        7385058      7388799            247269
53  ENSG00000279895        7421442      7425839             32643
54  ENSG00000276077        7430659      7469007              4820
55  ENSG00000274484        7474394      7474494              5387
56  ENSG00000279177        7626344      7627528            151850
57  ENSG00000276546        7663911      7664011             36383
58  ENSG00000277991        7669397      7681742              5386
59  ENSG00000273590        7744962      7777853             63220
60  ENSG00000277277        7768884      7770591             -8969
61  ENSG00000278961        7788703      7793954             18112
62  ENSG00000276289        7816675      7829926             22721
63  ENSG00000273614        7826098      7826225             -3828
64  ENSG00000279967        8101251      8103706            275026
65  ENSG00000278996        8197620      8227646             93914
66  ENSG00000275950        8205315      8205406            -22331
67  ENSG00000275664        8205851      8205940               445
68  ENSG00000275708        8208473      8208652              2533
69  ENSG00000277437        8208844      8208904               192
70  ENSG00000280800        8210384      8211306              1480
71  ENSG00000278233        8212572      8212724              1266
72  ENSG00000274060        8249505      8249596             36781
73  ENSG00000277671        8250060      8250149               464
74  ENSG00000281383        8254592      8255514              4443
75  ENSG00000277739        8256781      8256933              1267
76  ENSG00000280441        8380665      8410645            123732
77  ENSG00000277379        8388362      8388453            -22283
78  ENSG00000274868        8388898      8388987               445
79  ENSG00000280614        8393419      8394341              4432
80  ENSG00000275215        8395607      8395759              1266
81  ENSG00000275692        8432530      8432621             36771
82  ENSG00000278775        8433085      8433174               464
83  ENSG00000281181        8437629      8438551              4455
84  ENSG00000278189        8439823      8439975              1272
85  ENSG00000279990        8603547      8603984            163572
86  ENSG00000279615        8680538      8680934             76554
87  ENSG00000279167        8701461      8701562             20527
88  ENSG00000279579        8759077      8761335             57515
89  ENSG00000279213        8801362      8801880             40027
90  ENSG00000280243        8845566      8846646             43686
91  ENSG00000278931        8857260      8880976             10614
92  ENSG00000264462        8986999      8987178            106023
93  ENSG00000264063        8987370      8987430               192
94  ENSG00000279501        8996496      9018670              9066
95  ENSG00000279414        9026821      9027329              8151
96  ENSG00000280436        9053122      9059060             25793
97  ENSG00000188681        9068361      9129752              9301
98  ENSG00000279720        9082601      9083101            -47151
99  ENSG00000279381        9088188      9088391              5087
100 ENSG00000278932        9325013      9368775            236622
101 ENSG00000279718        9364467      9365225             -4308
102 ENSG00000279208        9369285      9376645              4060
103 ENSG00000279864        9558970      9559155            182325
104 ENSG00000279211        9580024      9580415             20869
105 ENSG00000275631        9646825      9647000             66410
106 ENSG00000280081        9781918      9814009            134918
107 ENSG00000280075        9810381      9810503             -3628
108 ENSG00000279783        9810501      9810848                -2
109 ENSG00000264002        9902344      9902627             91496
110 ENSG00000252199        9907916      9908010              5289
111 ENSG00000279321        9913117      9914846              5107
112 ENSG00000270533        9975017     10119309             60171
113 ENSG00000280372       10028361     10029855            -90948
114 ENSG00000279851       10122273     10129029             92418
115 ENSG00000279062       10136419     10137004              7390
116 ENSG00000277693       10328411     10342737            191407
117 ENSG00000275945       10330732     10331537            -12005
118 ENSG00000275592       10357400     10358620             25863
119 ENSG00000278106       10397644     10397778             39024
120 ENSG00000187172       10413477     10516431             15699
121 ENSG00000273840       10482738     10605716            -33693
122 ENSG00000274391       10521553     10606140            -84163
123 ENSG00000278678       10576292     10576587            -29848
124 ENSG00000273872       10612455     10613379             35868
125 ENSG00000276556       10640028     10640338             26649
126 ENSG00000277282       10649400     10649835              9062
127 ENSG00000229306       12999676     13016692           2349841
128 ENSG00000224309       13038160     13067033             21468
129 ENSG00000207097       13047583     13047689            -19450
130 ENSG00000168122       13095305     13113790             47616
131 ENSG00000237202       13120244     13120807              6454
132 ENSG00000280108       13305152     13314944            184345
133 ENSG00000185390       13349265     13350648             34321
134 ENSG00000175302       13384249     13427773             33601
135 ENSG00000266211       13406384     13406460            -21389
136 ENSG00000226930       13443373     13489176             36913
137 ENSG00000219280       13476371     13477263            -12805
138 ENSG00000228184       13525599     13528579             48336
139 ENSG00000179381       13544282     13545185             15703
140 ENSG00000228159       13546033     13558461               848
141 ENSG00000218549       13581044     13582004             22583
142 ENSG00000166351       13609858     13641585             27854
143 ENSG00000207476       13621577     13621683            -20008
144 ENSG00000266299       13644775     13644850             23092
145 ENSG00000278381       13654073     13654356              9223
146 ENSG00000227874       13665868     13667546             11512
147 ENSG00000214319       13676022     13677116              8476
148 ENSG00000279773       13679300     13681138              2184
149 ENSG00000273692       13704853     13705518             23715
150 ENSG00000278618       13724189     13724274             18671
151 ENSG00000229231       13762338     13764332             38064
152 ENSG00000224922       13769932     13771740              5600
153 ENSG00000173231       13776086     13777266              4346
154 ENSG00000232797       13792635     13793141             15369
155 ENSG00000224860       13824406     13825635             31265
156 ENSG00000215562       13826696     13827627              1061
157 ENSG00000234538       13839118     13839409             11491
158 ENSG00000228314       13843133     13848364              3724
159 ENSG00000230965       13905960     13906488             57596
160 ENSG00000215559       13909574     13980437              3086
161 ENSG00000203616       13936993     13937325            -43444
162 ENSG00000223287       13968489     13968595             31164
163 ENSG00000183249       14000927     14005279             32332
164 ENSG00000233442       14007134     14014880              1855
165 ENSG00000275170       14019060     14020725              4180
166 ENSG00000224905       14027421     14144468              6696
167 ENSG00000249493       14064325     14069087            -80143
168 ENSG00000201812       14070871     14070986              1784
169 ENSG00000277572       14075950     14076038              4964
170 ENSG00000188992       14108813     14210891             32775
171 ENSG00000240755       14143581     14144158            -67310
172 ENSG00000185272       14216130     14228372             71972
173 ENSG00000243064       14236206     14362754              7834
174 ENSG00000155304       14371115     14383484              8361
175 ENSG00000155307       14485228     14583402            101744
176 ENSG00000223662       14582202     14598303             -1200
177 ENSG00000243440       14591930     14658821             -6373
178 ENSG00000232884       14746762     14753863             87941
179 ENSG00000228600       14757588     14758352              3725
180 ENSG00000226751       14761710     14763090              3358
181 ENSG00000225502       14774301     14775262             11211
182 ENSG00000235609       14818843     15014430             43581
183 ENSG00000281903       14819699     14918552           -194731
184 ENSG00000226406       14829154     14829989            -89398
185 ENSG00000235277       14918534     14947096             88545
186 ENSG00000180530       14961235     15065936             14139
187 ENSG00000229047       14961309     14964233           -104627
188 ENSG00000231201       14971470     14992854              7237
189 ENSG00000279390       15050189     15052379             57335
190 ENSG00000236471       15067070     15067837             14691
191 ENSG00000280082       15346652     15346738            278815
192 ENSG00000229425       15370500     15627342             23762
193 ENSG00000224524       15490530     15490767           -136812
194 ENSG00000224247       15493932     15496124              3165
195 ENSG00000212564       15614283     15614389            118159
196 ENSG00000226298       15694300     15696581             79911
197 ENSG00000155313       15730025     15880069             33444
198 ENSG00000234159       15744004     15745080           -136065
199 ENSG00000215386       15928296     16627397            183216
200 ENSG00000252273       16035413     16035509           -591984
201 ENSG00000214976       16094415     16095372             58906
202 ENSG00000224602       16121310     16121644             25938
203 ENSG00000201025       16284696     16284768            163052
204 ENSG00000270071       16291791     16308133              7023
205 ENSG00000270139       16417139     16419080            109006
206 ENSG00000280432       16525919     16527019            106839
207 ENSG00000207638       16539089     16539169             12070
208 ENSG00000199030       16539828     16539911               659
209 ENSG00000269950       16574718     16582637             34807
210 ENSG00000207863       16590237     16590325              7600
211 ENSG00000228798       16630827     16640683             40502
212 ENSG00000270093       16643529     16645065              2846
213 ENSG00000239023       16718998     16719157             73933
214 ENSG00000237735       16754519     16815688             35362
215 ENSG00000232886       16862875     16873691             47187
216 ENSG00000225735       17210469     17211347            336778
217 ENSG00000278181       17296219     17296596             84872
218 ENSG00000252462       17431547     17431647            134951
219 ENSG00000232560       17438890     17449185              7243
220 ENSG00000226580       17500679     17500824             51494
221 ENSG00000266195       17506453     17506728              5629
222 ENSG00000154639       17512382     17593579              5654
223 ENSG00000232260       17518526     17518993            -75053
224 ENSG00000200754       17527140     17527247              8147
225 ENSG00000199962       17576798     17576906             49551
226 ENSG00000154640       17593653     17612947             16747
227 ENSG00000280594       17611744     17633199             -1203
228 ENSG00000226956       17659276     17660384             26077
229 ENSG00000279648       17705408     17707455             45024
230 ENSG00000240770       17763315     17792523             55860
231 ENSG00000154642       17788967     17819386             -3556
232 ENSG00000244676       17793488     17810845            -25898
233 ENSG00000231755       17835016     17885608             24171
234 ENSG00000215369       17894193     17894485              8585
235 ENSG00000154645       17901263     18267373              6778
236 ENSG00000227330       18022370     18114904           -245003
237 ENSG00000154646       18269116     18485879            154212
238 ENSG00000228708       18477358     18486599             -8521
239 ENSG00000224141       18561265     18760003             74666
240 ENSG00000230233       18614431     18650360           -145572
241 ENSG00000265841       18686090     18686164             35730
242 ENSG00000198618       18857779     18858276            171615
243 ENSG00000279156       18917213     18917429             58937
244 ENSG00000232193       18917934     18935859               505
245 ENSG00000226204       18953264     18967058             17405
246 ENSG00000235965       19046310     19047684             79252
247 ENSG00000229289       19130523     19134423             82839
248 ENSG00000226818       19244543     19246392            110120
249 ENSG00000231620       19301613     19303739             55221
250 ENSG00000212609       19345148     19345312             41409
251 ENSG00000230198       19593841     19594108            248529
252 ENSG00000271486       19620695     19621545             26587
253 ENSG00000229336       19739709     19740150            118164
254 ENSG00000215353       19759359     19760128             19209
255 ENSG00000233480       19893279     19899755            133151
256 ENSG00000233236       20256752     20258820            356997
257 ENSG00000251851       20355748     20355852             96928
258 ENSG00000252963       20356653     20356896               801
259 ENSG00000233676       20388334     20388845             31438
260 ENSG00000234439       20424949     20426206             36104
261 ENSG00000233206       20430443     20430762              4237
262 ENSG00000276738       20597953     20598163            167191
263 ENSG00000224924       20742590     20803216            144427
264 ENSG00000215351       20828127     20828622             24911
265 ENSG00000154654       20998315     21543329            169693
266 ENSG00000226771       21223295     21226829           -320034
267 ENSG00000234730       21566763     21615437            339934
268 ENSG00000237527       21655038     21686329             39601
269 ENSG00000238265       21723293     21737319             36964
270 ENSG00000233997       21746973     21797415              9654
271 ENSG00000227075       21933315     21975681            135900
272 ENSG00000233215       22008944     22098459             33263
273 ENSG00000184856       22098617     22116528               158
274 ENSG00000234340       22134698     22136083             18170
275 ENSG00000231136       22153950     22154299             17867
276 ENSG00000202339       22205192     22205332             50893
277 ENSG00000226043       22209939     22420819              4607
278 ENSG00000223488       22436290     22438349             15471
279 ENSG00000234034       22500604     22520058             62255
280 ENSG00000225906       22882582     22884000            362524
281 ENSG00000230972       23065491     23131206            181491
282 ENSG00000275469       23079284     23079392            -51922
283 ENSG00000219368       23090028     23091831             10636
284 ENSG00000231058       23101223     23103074              9392
285 ENSG00000223078       23281736     23281909            178662
286 ENSG00000228592       23361104     23384861             79195
287 ENSG00000223822       23390258     23390996              5397
288 ENSG00000237569       23407658     23409128             16662
289 ENSG00000199698       23432181     23432282             23053
290 ENSG00000227716       23477641     23490724             45359
291 ENSG00000231986       23888798     23890541            398074
292 ENSG00000235564       23960905     23967273             70364
293 ENSG00000226996       24043257     24050286             75984
294 ENSG00000224018       24155170     24188342            104884
295 ENSG00000224832       24304550     24321377            116208
296 ENSG00000237484       24428740     24547942            107363
297 ENSG00000226983       24840550     25057746            292608
298 ENSG00000227090       24886676     24902756           -171070
299 ENSG00000230379       24938431     24992817             35675
300 ENSG00000237444       25031005     25031529             38188
301 ENSG00000244278       25055535     25069906             24006
302 ENSG00000232512       25095022     25103670             25116
303 ENSG00000274662       25101132     25101415             -2538
304 ENSG00000223870       25127469     25135247             26054
305 ENSG00000222042       25169431     25333825             34184
306 ENSG00000238627       25202207     25202315           -131618
307 ENSG00000213885       25361821     25362431            159506
308 ENSG00000279534       25371827     25372043              9396
309 ENSG00000185433       25385820     25431701             13777
310 ENSG00000229962       25515473     25518338             83772
311 ENSG00000234883       25561909     25575168             43571
312 ENSG00000283904       25573980     25574044             -1188
313 ENSG00000260583       25582770     25583326              8726
314 ENSG00000154719       25585656     25607517              2330
315 ENSG00000154721       25639272     25717562             31755
316 ENSG00000237731       25643489     25644216            -74073
317 ENSG00000227054       25692180     25692554             47964
318 ENSG00000154723       25716503     25735673             23949
319 ENSG00000154727       25734570     25772460             -1103
320 ENSG00000235514       25762938     25763333             -9522
321 ENSG00000142192       25880550     26171128            117217
322 ENSG00000233783       25928754     25942686           -242374
323 ENSG00000251972       25943044     25943145               358
324 ENSG00000224541       26158091     26175824            214946
325 ENSG00000273492       26170871     26217381             -4953
326 ENSG00000206802       26190707     26190813            -26674
327 ENSG00000229025       26349780     26350634            158967
328 ENSG00000232692       26378552     26471698             27918
329 ENSG00000197934       26393635     26569252            -78063
330 ENSG00000273115       26459903     26460214           -109349
331 ENSG00000166265       26466209     26573284              5995
332 ENSG00000154734       26835747     26845409            262463
333 ENSG00000223563       26889376     26939742             43967
334 ENSG00000154736       26917912     26966513            -21830
335 ENSG00000266133       26953961     26954043            -12552
336 ENSG00000215326       27143344     27143949            189301
337 ENSG00000231236       27358885     27448579            214936
338 ENSG00000236332       27361164     27395787            -87415
339 ENSG00000233300       27367014     27367947            -28773
340 ENSG00000217026       27420380     27421023             52433
341 ENSG00000219592       27492118     27492261             71095
342 ENSG00000234052       27638693     27653491            146432
343 ENSG00000225298       27722379     27751233             68888
344 ENSG00000234083       27954922     27985295            203689
345 ENSG00000178457       28013363     28023233             28068
346 ENSG00000232079       28048404     28137611             25171
347 ENSG00000236532       28116094     28228667            -21517
348 ENSG00000232855       28439346     28674848            210679
349 ENSG00000226935       28539318     28540355           -135530
350 ENSG00000283300       28743208     28743291            202853
351 ENSG00000156239       28872191     28885371            128900
352 ENSG00000215005       28887280     28889272              1909
353 ENSG00000215317       28901779     28903697             12507
354 ENSG00000198862       28928144     28992956             24447
355 ENSG00000176054       28997613     28998033              4657
356 ENSG00000156253       29004384     29019378              6351
357 ENSG00000273254       29024255     29024890              4877
358 ENSG00000156256       29024629     29054488              -261
359 ENSG00000156261       29055805     29073797              1317
360 ENSG00000231125       29058073     29060095            -15724
361 ENSG00000156265       29077471     29175889             17376
362 ENSG00000232687       29127701     29128188            -48188
363 ENSG00000201984       29139283     29139384             11095
364 ENSG00000212479       29180425     29180639             41041
365 ENSG00000224649       29182027     29187795              1388
366 ENSG00000215533       29193480     29288205              5685
367 ENSG00000156273       29194071     29630751            -94134
368 ENSG00000236056       29222321     29223257           -408430
369 ENSG00000248476       29351634     29361894            128377
370 ENSG00000273017       29359002     29359453             -2892
371 ENSG00000232118       29370019     29376339             10566
372 ENSG00000228817       29370497     29373709             -5842
373 ENSG00000234293       29496047     29500386            122338
374 ENSG00000171189       29536933     29940033             36547
375 ENSG00000273464       29657406     29657831           -282627
376 ENSG00000174680       29748175     29764002             90344
377 ENSG00000259981       30089717     30097836            325715
378 ENSG00000156282       30165564     30166756             67728
379 ENSG00000227342       30209151     30211783             42395
380 ENSG00000156284       30214006     30216073              2223
381 ENSG00000225267       30263380     30263881             47307
382 ENSG00000188694       30281309     30282958             17428
383 ENSG00000232263       30289145     30289514              6187
384 ENSG00000197683       30319124     30320316             29610
385 ENSG00000206107       30337013     30337694             16697
386 ENSG00000186980       30348399     30348609             10705
387 ENSG00000250973       30356515     30356885              7906
388 ENSG00000182816       30371391     30372257             14506
389 ENSG00000265007       30375294     30375378              3037
390 ENSG00000198390       30396074     30396822             20696
391 ENSG00000240432       30425265     30425968             28443
392 ENSG00000186971       30430230     30431026              4262
393 ENSG00000233640       30436466     30436964              5440
394 ENSG00000186970       30440275     30440945              3311
395 ENSG00000184351       30479699     30480344             38754
396 ENSG00000186965       30487057     30487436              6713
397 ENSG00000244025       30491464     30491985              4028
398 ENSG00000186967       30496824     30497133              4839
399 ENSG00000186977       30501657     30502117              4524
400 ENSG00000237841       30510307     30510497              8190
401 ENSG00000235312       30514613     30514799              4116
402 ENSG00000218125       30526546     30526701             11747
403 ENSG00000236612       30537278     30537381             10577
404 ENSG00000186925       30541535     30541864              4154
405 ENSG00000244362       30560875     30561314             19011
406 ENSG00000206106       30590105     30590397             28791
407 ENSG00000212938       30592440     30593075              2043
408 ENSG00000186930       30598590     30598902              5515
409 ENSG00000186924       30601087     30601382              2185
410 ENSG00000184724       30613431     30613930             12049
411 ENSG00000244624       30616425     30616699              2495
412 ENSG00000206105       30620627     30620850              3928
413 ENSG00000184032       30635236     30635619             14386
414 ENSG00000206104       30642864     30643136              7245
415 ENSG00000231068       30718525     30718777             75389
416 ENSG00000236400       30741780     30742595             23003
417 ENSG00000187026       30746794     30747233              4199
418 ENSG00000187005       30754830     30755428              7597
419 ENSG00000238257       30762682     30762882              7254
420 ENSG00000233036       30802242     30802427             39360
421 ENSG00000227840       30806932     30807119              4505
422 ENSG00000183640       30812697     30813252              5578
423 ENSG00000274749       30829039     30829759             15787
424 ENSG00000182591       30880644     30881555             50885
425 ENSG00000206102       31038159     31038476            156604
426 ENSG00000228941       31060600     31063168             22124
427 ENSG00000156299       31118416     31559977             55248
428 ENSG00000237325       31452466     31453223           -107511
429 ENSG00000237594       31559245     31560487            106022
430 ENSG00000230870       31627127     31628600             66640
431 ENSG00000234509       31653593     31659500             24993
432 ENSG00000142168       31659622     31668931               122
433 ENSG00000238390       31664306     31664482             -4625
434 ENSG00000273271       31666728     31667247              2246
435 ENSG00000156304       31671033     31732075              3786
436 ENSG00000229046       31706555     31706864            -25520
437 ENSG00000273091       31735732     31736407             28868
438 ENSG00000234107       31840341     31840858            103934
439 ENSG00000142149       31873315     32044633             32457
440 ENSG00000237138       32020966     32021782            -23667
441 ENSG00000230323       32080316     32197813             58534
442 ENSG00000261610       32259804     32261585             61991
443 ENSG00000159055       32268219     32279069              6634
444 ENSG00000227256       32277863     32280988             -1206
445 ENSG00000170262       32291813     32314784             10825
446 ENSG00000232623       32306464     32308737             -8320
447 ENSG00000142207       32311018     32393026              2281
448 ENSG00000200792       32377187     32377322            -15839
449 ENSG00000256073       32393130     32393960             15808
450 ENSG00000166979       32412006     32515397             18046
451 ENSG00000229007       32496812     32497311            -18585
452 ENSG00000252045       32538299     32538434             40988
453 ENSG00000252950       32563075     32563210             24641
454 ENSG00000186842       32572238     32575881              9028
455 ENSG00000242220       32574841     32587373             -1040
456 ENSG00000265590       32578822     32612281             -8551
457 ENSG00000159079       32592079     32612866            -20202
458 ENSG00000228433       32621049     32622096              8183
459 ENSG00000238220       32624416     32625096              2320
460 ENSG00000159082       32628759     32728048              3663
461 ENSG00000238197       32728115     32743122                67
462 ENSG00000159086       32733899     32771858             -9223
463 ENSG00000205930       32772100     32893735               242
464 ENSG00000279690       32790673     32791504           -103062
465 ENSG00000205929       32793564     32813743              2060
466 ENSG00000224427       32841496     32841811             27753
467 ENSG00000207098       32841861     32841995                50
468 ENSG00000232360       32844367     32849934              2372
469 ENSG00000227757       32913649     33071104             63715
470 ENSG00000228961       32958888     32960566           -112216
471 ENSG00000205927       33025845     33029196             65279
472 ENSG00000232539       33057829     33064983             28633
473 ENSG00000184221       33070144     33072420              5161
474 ENSG00000226527       33111699     33123703             39279
475 ENSG00000226433       33156632     33159110             32929
476 ENSG00000229086       33165470     33170649              6360
477 ENSG00000159110       33229901     33265675             59252
478 ENSG00000249624       33246774     33283212            -18901
479 ENSG00000223799       33263873     33266260            -19339
480 ENSG00000243646       33266358     33310187                98
481 ENSG00000142166       33324477     33359862             14290
482 ENSG00000226501       33334571     33335096            -25291
483 ENSG00000159128       33402896     33479348             67800
484 ENSG00000142188       33432485     33480011            -46863
485 ENSG00000215088       33481580     33482195              1569
486 ENSG00000231355       33482499     33484258               304
487 ENSG00000177692       33485530     33491720              1272
488 ENSG00000159131       33503931     33543491             12211
489 ENSG00000233956       33518610     33519108            -24881
490 ENSG00000159140       33542618     33577481             23510
491 ENSG00000284448       33550662     33550728            -26819
492 ENSG00000159147       33559542     33588708              8814
493 ENSG00000249209       33584687     33931607             -4021
494 ENSG00000205758       33589341     33643926           -342266
495 ENSG00000205726       33642400     33899861             -1526
496 ENSG00000241837       33903453     33915980              3592
497 ENSG00000237945       33915534     33977691              -446
498 ENSG00000244294       33918995     33919338            -58696
499 ENSG00000273102       33967101     33968573             47763
500 ENSG00000243927       34073224     34143034            104651
501 ENSG00000198743       34073570     34106262            -69464
502 ENSG00000272657       34073592     34360033            -32670
503 ENSG00000224598       34135432     34136071           -224601
504 ENSG00000227456       34157724     34190244             21653
505 ENSG00000214955       34205055     34325034             14811
506 ENSG00000159197       34364024     34371389             38990
507 ENSG00000225555       34370802     34375348              -587
508 ENSG00000205670       34375480     34407866               132
509 ENSG00000222018       34400317     34401072             -7549
510 ENSG00000273104       34412200     34412587             11128
511 ENSG00000243627       34418715     34423966              6128
512 ENSG00000272958       34425508     34426017              1542
513 ENSG00000180509       34446688     34512275             20671
514 ENSG00000221398       34456110     34456237            -56165
515 ENSG00000159200       34513142     34615142             56905
516 ENSG00000159212       34669389     34718227             54247
517 ENSG00000230978       34723807     34737181              5580
518 ENSG00000234380       34745757     34784886              8576
519 ENSG00000159216       34787801     36004667              2915
520 ENSG00000234703       35136638     35139222           -868029
521 ENSG00000223671       35472095     35472432            332873
522 ENSG00000231300       35599732     35600022            127300
523 ENSG00000230794       35713139     35732942            113117
524 ENSG00000211590       35720715     35720808            -12227
525 ENSG00000229761       35724747     35725100              3939
526 ENSG00000234008       35887195     35887807            162095
527 ENSG00000231106       36005338     36007838            117531
528 ENSG00000214914       36016079     36016546              8241
529 ENSG00000185917       36034541     36079389             17995
530 ENSG00000189089       36050214     36051377            -29175
531 ENSG00000236677       36060432     36064408              9055
532 ENSG00000200213       36066545     36066652              2137
533 ENSG00000230212       36069642     36126640              2990
534 ENSG00000159228       36069941     36073166            -56699
535 ENSG00000236119       36082859     36090414              9693
536 ENSG00000233393       36104881     36109690             14467
537 ENSG00000226054       36130489     36131376             20799
538 ENSG00000236830       36131767     36175815               391
539 ENSG00000214889       36132450     36133032            -43365
540 ENSG00000159231       36134912     36146566              1880
541 ENSG00000142197       36156782     36294274             10216
542 ENSG00000228149       36168970     36170180           -125304
543 ENSG00000214867       36295173     36295702            124993
544 ENSG00000273199       36319792     36320670             24090
545 ENSG00000159256       36320189     36386148              -481
546 ENSG00000228107       36360630     36362040            -25518
547 ENSG00000159259       36385378     36419015             23338
548 ENSG00000224421       36388878     36389112            -30137
549 ENSG00000230479       36430360     36481070             41248
550 ENSG00000233818       36445731     36532408            -35339
551 ENSG00000159261       36460621     36576569            -71787
552 ENSG00000279365       36485867     36487760            -90702
553 ENSG00000223741       36485983     36487411             -1777
554 ENSG00000231324       36632681     36637033            145270
555 ENSG00000224269       36698773     36701564             61740
556 ENSG00000159263       36699133     36749917             -2431
557 ENSG00000159267       36750888     36990236               971
558 ENSG00000237646       36803984     36806284           -186252
559 ENSG00000199806       36851911     36852028             45627
560 ENSG00000270652       36943267     36944125             91239
561 ENSG00000224790       36966492     36975164             22367
562 ENSG00000207416       36986739     36986851             11575
563 ENSG00000215734       36994643     36995075              7792
564 ENSG00000183145       37006150     37019659             11075
565 ENSG00000212136       37045530     37045636             25871
566 ENSG00000185808       37059170     37073170             13534
567 ENSG00000182670       37073226     37203112                56
568 ENSG00000270116       37100814     37101343           -102298
569 ENSG00000228677       37187666     37193926             86323
570 ENSG00000230366       37208503     37221736             14577
571 ENSG00000263969       37215605     37215903             -6131
572 ENSG00000242553       37221419     37237744              5516
573 ENSG00000157538       37223420     37267919            -14324
574 ENSG00000272948       37267784     37268497              -135
575 ENSG00000273210       37365477     37365932             96980
576 ENSG00000157540       37365790     37517450              -142
577 ENSG00000157542       37607376     37916446             89926
578 ENSG00000233213       37717102     37719569           -199344
579 ENSG00000184029       37951425     38121360            231856
580 ENSG00000223608       38006544     38010618           -114816
581 ENSG00000198054       38121451     38188016            110833
582 ENSG00000157551       38157034     38307357            -30982
583 ENSG00000270835       38204141     38206080           -103216
584 ENSG00000233316       38206156     38208644                76
585 ENSG00000226012       38237217     38238201             28573
586 ENSG00000231123       38238227     38238664                26
587 ENSG00000231231       38323635     38333421             84971
588 ENSG00000157554       38380027     38661780             46606
589 ENSG00000231480       38502445     38502621           -159335
590 ENSG00000223806       38739021     38747460            236400
591 ENSG00000157557       38805307     38824955             57847
592 ENSG00000229986       38846247     38848644             21292
593 ENSG00000205622       38863676     38956467             15032
594 ENSG00000229925       38888772     38903905            -67695
595 ENSG00000272015       38894785     38894867             -9120
596 ENSG00000227721       38894917     38895252                50
597 ENSG00000232837       38974429     38977774             79177
598 ENSG00000235888       38988707     39006153             10933
599 ENSG00000237721       39006648     39011329               495
600 ENSG00000237609       39028536     39029128             17207
601 ENSG00000228861       39127568     39128040             98440
602 ENSG00000235701       39171130     39172106             43090
603 ENSG00000276873       39171462     39171560              -644
604 ENSG00000183527       39174769     39183851              3209
605 ENSG00000185658       39184176     39321559               325
606 ENSG00000272991       39184469     39184899           -137090
607 ENSG00000232608       39216624     39217506             31725
608 ENSG00000237373       39217093     39219805              -413
609 ENSG00000229623       39235386     39236020             15581
610 ENSG00000255568       39313935     39314962             77915
611 ENSG00000238141       39315707     39323218               745
612 ENSG00000205581       39342315     39349647             19097
613 ENSG00000252915       39344537     39344628             -5110
614 ENSG00000227406       39373763     39377066             29135
615 ENSG00000182093       39380244     39428528              3178
616 ENSG00000157578       39405844     39445805            -22684
617 ENSG00000185437       39445855     39515506                50
618 ENSG00000275523       39447010     39447069            -68496
619 ENSG00000235808       39488327     39488760             41258
620 ENSG00000228349       39491544     39491898              2784
621 ENSG00000235012       39525583     39529855             33685
622 ENSG00000183778       39556442     39673137             26587
623 ENSG00000184809       39597147     39612821            -75990
624 ENSG00000225330       39630271     39726085             17450
625 ENSG00000231713       39727755     39730680              1670
626 ENSG00000183067       39745407     39802096             14727
627 ENSG00000183036       39867317     39929397             65221
628 ENSG00000171587       40010999     40847139             81602
629 ENSG00000263973       40212352     40212431           -634787
630 ENSG00000235123       40383083     40385358            170652
631 ENSG00000207147       40513144     40513279            127786
632 ENSG00000233756       40615378     40630767            102099
633 ENSG00000230859       40863994     40864473            233227
634 ENSG00000226496       41141493     41148133            277020
635 ENSG00000263681       41167557     41167629             19424
636 ENSG00000182240       41167801     41282518               172
637 ENSG00000280109       41175231     41185239           -107287
638 ENSG00000225745       41176322     41186788             -8917
639 ENSG00000224388       41180097     41180626             -6691
640 ENSG00000183844       41304212     41357431            123586
641 ENSG00000183486       41361943     41409390              4512
642 ENSG00000157601       41420304     41459214             10914
643 ENSG00000228318       41441056     41445708            -18158
644 ENSG00000184012       41464551     41531116             18843
645 ENSG00000207503       41539206     41539326              8090
646 ENSG00000232806       41559125     41562958             19799
647 ENSG00000223400       41576135     41581319             13177
648 ENSG00000227702       41679181     41697336             97862
649 ENSG00000236384       41711520     41715775             14184
650 ENSG00000232401       41716436     41717580               661
651 ENSG00000183421       41739369     41767106             21789
652 ENSG00000236883       41739373     41741308            -27733
653 ENSG00000275166       41746772     41746841              5464
654 ENSG00000141956       41798225     41879482             51384
655 ENSG00000236545       41870633     41872054             -8849
656 ENSG00000227698       41874756     41877613              2702
657 ENSG00000251778       41882205     41882300              4592
658 ENSG00000157617       41885112     41953890              2812
659 ENSG00000173276       41986831     42010387             32941
660 ENSG00000237232       42009194     42024924             -1193
661 ENSG00000177398       42062959     42143453             38035
662 ENSG00000184385       42102134     42108534            -41319
663 ENSG00000160179       42199689     42297244             91155
664 ENSG00000223262       42221173     42221286            -76071
665 ENSG00000160180       42311667     42315651             90381
666 ENSG00000160181       42346357     42351128             30706
667 ENSG00000160182       42362282     42366594             11154
668 ENSG00000160183       42371890     42396846              5296
669 ENSG00000160185       42403447     42447681              6601
670 ENSG00000252619       42417497     42417593            -30184
671 ENSG00000160188       42472486     42496354             54893
672 ENSG00000160190       42496008     42581440              -346
673 ENSG00000239930       42496539     42497443            -84901
674 ENSG00000231867       42508624     42509661             11181
675 ENSG00000235772       42560374     42561934             50713
676 ENSG00000225431       42599280     42615058             37346
677 ENSG00000235023       42648271     42651244             33213
678 ENSG00000160191       42653636     42775509              2392
679 ENSG00000225731       42733594     42741758            -41915
680 ENSG00000283051       42777819     42779994             36061
681 ENSG00000233754       42781074     42782229              1080
682 ENSG00000225218       42831040     42836477             48811
683 ENSG00000160193       42843094     42879568              6617
684 ENSG00000160194       42879644     42913304                76
685 ENSG00000233056       42916803     42925646              3499
686 ENSG00000264580       42950928     42951014             25282
687 ENSG00000224100       42964639     42965363             13625
688 ENSG00000160199       42974510     43033931              9147
689 ENSG00000160200       43053191     43076943             19260
690 ENSG00000160201       43092956     43107587             16013
691 ENSG00000232777       43115334     43115709              7747
692 ENSG00000236663       43140523     43141092             24814
693 ENSG00000228120       43159066     43162277             17974
694 ENSG00000160202       43169008     43172805              6731
695 ENSG00000237864       43322417     43332039            149612
696 ENSG00000237989       43358147     43362349             26108
697 ENSG00000225637       43363332     43366566               983
698 ENSG00000142178       43414515     43427128             47949
699 ENSG00000188660       43446601     43453893             19473
700 ENSG00000185186       43462094     43479534              8201
701 ENSG00000223975       43465309     43467298            -14225
702 ENSG00000160207       43529192     43659493             61894
703 ENSG00000214326       43551229     43551600           -108264
704 ENSG00000234289       43565189     43565648             13589
705 ENSG00000278433       43609887     43609989             44239
706 ENSG00000160208       43659548     43696079             49559
707 ENSG00000160209       43719094     43762307             23015
708 ENSG00000281420       43748365     43748468            -13942
709 ENSG00000160213       43772511     43776445             24043
710 ENSG00000234030       43783123     43783573              6678
711 ENSG00000160214       43789513     43805293              5940
712 ENSG00000215458       43805758     43812567               465
713 ENSG00000226543       43855890     43856342             43323
714 ENSG00000160216       43865186     43986536              8844
715 ENSG00000199598       43919795     43919901            -66741
716 ENSG00000252606       43996322     43996420             76421
717 ENSG00000160218       44012319     44106552             15899
718 ENSG00000213440       44046347     44047041            -60205
719 ENSG00000241945       44107290     44131181             60249
720 ENSG00000160221       44133605     44145723              2424
721 ENSG00000225331       44158740     44160076             13017
722 ENSG00000237604       44175489     44176453             15413
723 ENSG00000232124       44201290     44202696             24837
724 ENSG00000232698       44206525     44207399              3829
725 ENSG00000160223       44222991     44240966             15592
726 ENSG00000278158       44241847     44242081               881
727 ENSG00000275799       44244545     44244993              2464
728 ENSG00000142182       44246339     44262216              1346
729 ENSG00000232010       44250813     44251520            -11403
730 ENSG00000160224       44285838     44298648             34318
731 ENSG00000141959       44300051     44327376              1403
732 ENSG00000241728       44328944     44330221              1568
733 ENSG00000160226       44328944     44339402             -1277
734 ENSG00000184441       44331234     44335851             -8168
735 ENSG00000232969       44339376     44340470              3525
736 ENSG00000260256       44347767     44348295              7297
737 ENSG00000142185       44350163     44443081              1868
738 ENSG00000230061       44414588     44425272            -28493
739 ENSG00000266692       44437121     44437175             11849
740 ENSG00000264452       44439035     44439110              1860
741 ENSG00000229356       44450986     44455284             11876
742 ENSG00000160233       44455486     44462196               202
743 ENSG00000224747       44469929     44472516              7733
744 ENSG00000223431       44472895     44473739               379
745 ENSG00000227999       44473723     44475097               -16
746 ENSG00000274225       44477850     44478493              2753
747 ENSG00000228709       44485577     44490288              7084
748 ENSG00000277352       44494874     44495519              4586
749 ENSG00000175894       44497892     44711580              2373
750 ENSG00000235890       44506807     44516575           -204773
751 ENSG00000182912       44517216     44525952               641
752 ENSG00000215455       44538981     44540195             13029
753 ENSG00000205445       44550357     44551505             10162
754 ENSG00000212935       44557790     44558760              6285
755 ENSG00000215454       44573724     44638284             14964
756 ENSG00000241123       44579455     44580604            -58829
757 ENSG00000188155       44591268     44592505             10664
758 ENSG00000272804       44600597     44602174              8092
759 ENSG00000187766       44612079     44612954              9905
760 ENSG00000221837       44627123     44628293             14169
761 ENSG00000221859       44637356     44638455              9063
762 ENSG00000243489       44646414     44647650              7959
763 ENSG00000212933       44654213     44654659              6563
764 ENSG00000205439       44657932     44658341              3273
765 ENSG00000221864       44666189     44666927              7848
766 ENSG00000229880       44675868     44678086              8941
767 ENSG00000187175       44681576     44682163              3490
768 ENSG00000276647       44686358     44686629              4195
769 ENSG00000189169       44697172     44698044             10543
770 ENSG00000236382       44702221     44702791              4177
771 ENSG00000184787       44768580     44802019             65789
772 ENSG00000236519       44802577     44804717               558
773 ENSG00000184900       44805617     44818779               900
774 ENSG00000183255       44849585     44873903             30806
775 ENSG00000160255       44885953     44931989             12050
776 ENSG00000227039       44921051     44929678            -10938
777 ENSG00000273027       44929653     44930112               -25
778 ENSG00000183250       44932814     44939913              2702
779 ENSG00000272825       44936303     44936954             -3610
780 ENSG00000160256       44940010     44976989              3056
781 ENSG00000276529       44978832     44979274              1843
782 ENSG00000234880       44989864     44994086             10590
783 ENSG00000261706       44994362     44995185               276
784 ENSG00000275874       44999208     45004727              4023
785 ENSG00000235374       45070952     45074165             66225
786 ENSG00000197381       45073853     45226560              -312
787 ENSG00000267857       45100487     45101094           -126073
788 ENSG00000182586       45234340     45264548            133246
789 ENSG00000186866       45263928     45287898              -620
790 ENSG00000215447       45288052     45291738               154
791 ENSG00000223768       45293285     45297354              1547
792 ENSG00000184274       45300245     45305257              2891
793 ENSG00000229382       45336707     45338665             31450
794 ENSG00000237664       45338590     45341990               -75
795 ENSG00000228930       45376191     45376382             34201
796 ENSG00000228355       45378201     45379635              1819
797 ENSG00000273796       45403809     45404369             24174
798 ENSG00000182871       45405137     45513720               768
799 ENSG00000224574       45407386     45410065           -106334
800 ENSG00000183535       45419716     45425070              9651
801 ENSG00000275167       45478266     45478326             53196
802 ENSG00000173638       45493572     45544411             15246
803 ENSG00000233922       45593654     45603056             49243
804 ENSG00000183570       45643694     45942454             40638
805 ENSG00000275139       45759804     45763758           -182650
806 ENSG00000205424       45827961     45836419             64203
807 ENSG00000276633       45870854     45873345             34435
808 ENSG00000280604       45914296     45919483             40951
809 ENSG00000274248       45974489     45974953             55006
810 ENSG00000142156       45981737     46005050              6784
811 ENSG00000224413       46037052     46039807             32002
812 ENSG00000228235       46052596     46053105             12789
813 ENSG00000226115       46056516     46057567              3411
814 ENSG00000233767       46072085     46072248             14518
815 ENSG00000227438       46093264     46097530             21016
816 ENSG00000142173       46098097     46132849               567
817 ENSG00000160282       46136262     46155567              3413
818 ENSG00000237338       46151614     46152647             -3953
819 ENSG00000160284       46161148     46184476              8501
820 ENSG00000228404       46185079     46188941               603
821 ENSG00000160285       46188141     46228824              -800
822 ENSG00000223901       46220269     46225364             -8555
823 ENSG00000215424       46229217     46259390              3853
824 ENSG00000160294       46235126     46286297            -24264
825 ENSG00000228137       46246890     46247682            -39407
826 ENSG00000239415       46251549     46254133              3867
827 ENSG00000182362       46286337     46297751             32204
828 ENSG00000160298       46300181     46323875              2430
829 ENSG00000160299       46324122     46445769               247
830 ENSG00000225043       46420553     46421034            -25216
831 ENSG00000160305       46458899     46569852             37865
832 ENSG00000223692       46462471     46469306           -107381
833 ENSG00000202239       46525618     46525722             56312
834 ENSG00000160307       46598962     46605208             73240
835 ENSG00000160310       46635167     46665124             29959
836 ENSG00000230982       46653558     46654022            -11566
837 ENSG00000212932       46690764     46691226             36742

That covers 80% of dplyr

  • select
  • filter
  • arrange
  • glimpse
  • rename
  • mutate
  • group_by, ungroup
  • summarise

Other 20%

  • assembly: bind_rows, bind_cols
  • windows function, min_rank, dense_rank, cumsum. See vignette
  • do: arbitrary code on each chunk. To be replaced by tidyr::nest() %>% mutate(purrr::map()) data.tables)

Data base access

SQL mapping

  • dplyr code can be translated into SQL and query databases online (using dbplyr)
  • different types of tabular data (dplyr SQL backend, databases,

Bigger data, go for data.table

  • See this interesting thread about comparing data.table versus dplyr
  • data.table, see introduction is very efficient but the syntax is not so easy.
  • Main advantage: inline replacement (tidyverse is frequently copying)
  • As a summary: tl;dr data.table for speed, dplyr for readability and convenience Prashanth Sriram
  • Hadley recommends that for data > 1-2 Gb, if speed is your main matter, go for data.table
  • dtplyr is a dplyr interface to data.table but slower than native data.table